diff --git a/src/english/AdjectiveEng.gf b/src/english/AdjectiveEng.gf
index e94a36d3..455c3ef6 100644
--- a/src/english/AdjectiveEng.gf
+++ b/src/english/AdjectiveEng.gf
@@ -7,11 +7,11 @@ concrete AdjectiveEng of Adjective = CatEng ** open ResEng, Prelude in {
isPre = a.isPre
} ;
ComparA a np = {
- s = \\_ => a.s ! AAdj Compar Nom ++ "than" ++ np.s ! npNom ;
+ s = \\_ => getCompar Nom a ++ "than" ++ np.s ! npNom ;
isPre = False
} ;
UseComparA a = {
- s = \\_ => a.s ! AAdj Compar Nom ;
+ s = \\_ => getCompar Nom a ;
isPre = a.isPre
} ;
@@ -21,22 +21,22 @@ concrete AdjectiveEng of Adjective = CatEng ** open ResEng, Prelude in {
} ;
CAdvAP ad ap np = {
- s = \\a => ad.s ! Pos ++ ap.s ! a ++ ad.p ++ np.s ! npNom ;
+ s = \\a => ad.s ! Pos ++ ap.s ! a ++ ad.p ++ np.s ! npNom ;
isPre = False
} ;
ComplA2 a np = {
- s = \\_ => a.s ! AAdj Posit Nom ++ a.c2 ++ np.s ! NPAcc ;
+ s = \\_ => a.s ! AAdj Posit Nom ++ a.c2 ++ np.s ! NPAcc ;
isPre = False
} ;
ReflA2 a = {
- s = \\ag => a.s ! AAdj Posit Nom ++ a.c2 ++ reflPron ! ag ;
+ s = \\ag => a.s ! AAdj Posit Nom ++ a.c2 ++ reflPron ! ag ;
isPre = False
} ;
SentAP ap sc = {
- s = \\a => ap.s ! a ++ sc.s ;
+ s = \\a => ap.s ! a ++ sc.s ;
isPre = False
} ;
diff --git a/src/english/BackwardEng.gf b/src/english/BackwardEng.gf
index cc17d7ea..57d2f084 100644
--- a/src/english/BackwardEng.gf
+++ b/src/english/BackwardEng.gf
@@ -10,44 +10,44 @@ concrete BackwardEng of Backward = CatEng ** open ResEng in {
-- from Verb 19/4/2008
ComplV2 v np = insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v) ;
- ComplV3 v np np2 =
+ ComplV3 v np np2 =
insertObj (\\_ => v.c2 ++ np.s ! Acc ++ v.c3 ++ np2.s ! Acc) (predV v) ;
- ComplV2V v np vp =
+ ComplV2V v np vp =
insertObj (\\a => infVP v.isAux vp False Simul CPos a)
(insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v)) ;
- ComplV2S v np s =
+ ComplV2S v np s =
insertObj (\\_ => conjThat ++ s.s)
(insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v)) ;
- ComplV2Q v np q =
- insertObj (\\_ => q.s ! QIndir)
+ ComplV2Q v np q =
+ insertObj (\\_ => q.s ! QIndir)
(insertObj (\\_ => v.c2 ++ np.s ! Acc) (predV v)) ;
- ComplV2A v np ap =
+ ComplV2A v np ap =
insertObj (\\_ => v.c2 ++ np.s ! Acc ++ ap.s ! np.a) (predV v) ;
ReflV2 v = insertObj (\\a => v.c2 ++ reflPron ! a) (predV v) ;
-- from Sentence 19/4/2008
- SlashV2 np v2 =
+ SlashV2 np v2 =
mkClause (np.s ! Nom) np.a (predV v2) ** {c2 = v2.c2} ;
- SlashVVV2 np vv v2 =
- mkClause (np.s ! Nom) np.a
+ SlashVVV2 np vv v2 =
+ mkClause (np.s ! Nom) np.a
(insertObj (\\a => infVP vv.isAux (predV v2) False Simul CPos a) (predVV vv)) **
{c2 = v2.c2} ;
-- from Noun 19/4/2008
- NumInt n = {s = n.s ; n = Pl} ;
+ NumInt n = {s = n.s ; n = Pl} ;
OrdInt n = {s = n.s ++ "th"} ; --- DEPRECATED
DetSg quant ord = {
- s = quant.s ! Sg ++ ord.s ;
+ s = quant.s ! Sg ++ ord.s ;
n = Sg
} ;
DetPl quant num ord = {
- s = quant.s ! num.n ++ num.s ++ ord.s ;
+ s = quant.s ! num.n ++ num.s ++ ord.s ;
n = num.n
} ;
@@ -57,7 +57,7 @@ concrete BackwardEng of Backward = CatEng ** open ResEng in {
IndefArt = {
s = table {
- Sg => artIndef ;
+ Sg => artIndef ;
Pl => []
}
} ;
diff --git a/src/english/CatEng.gf b/src/english/CatEng.gf
index 6b154860..cf50524d 100644
--- a/src/english/CatEng.gf
+++ b/src/english/CatEng.gf
@@ -28,14 +28,14 @@ concrete CatEng of Cat = CommonX - [Pol,CAdv] ** open ResEng, Prelude in {
QCl = {s : ResEng.Tense => Anteriority => CPolarity => QForm => Str} ;
IP = {s : NPCase => Str ; n : Number} ;
- IComp = {s : Str} ;
+ IComp = {s : Str} ;
IDet = {s : Str ; n : Number} ;
IQuant = {s : Number => Str} ;
-- Relative
RCl = {
- s : ResEng.Tense => Anteriority => CPolarity => Agr => Str ;
+ s : ResEng.Tense => Anteriority => CPolarity => Agr => Str ;
c : NPCase
} ;
RP = {s : RCase => Str ; a : RAgr} ;
@@ -44,11 +44,11 @@ concrete CatEng of Cat = CommonX - [Pol,CAdv] ** open ResEng, Prelude in {
VP = ResEng.VP ;
VPSlash = ResEng.SlashVP ;
- Comp = {s : Agr => Str} ;
+ Comp = {s : Agr => Str} ;
-- Adjective
- AP = {s : Agr => Str ; isPre : Bool} ;
+ AP = {s : Agr => Str ; isPre : Bool} ;
-- Noun
@@ -97,8 +97,8 @@ concrete CatEng of Cat = CommonX - [Pol,CAdv] ** open ResEng, Prelude in {
VV = {s : VVForm => Str ; p : Str ; typ : VVType} ;
V2V = Verb ** {c2,c3 : Str ; typ : VVType} ;
- A = {s : AForm => Str ; isPre : Bool} ;
- A2 = {s : AForm => Str ; c2 : Str ; isPre : Bool} ;
+ A = ResEng.Adjective ;
+ A2 = ResEng.Adjective ** {c2 : Str} ;
N = {s : Number => Case => Str ; g : Gender} ;
N2 = {s : Number => Case => Str ; g : Gender} ** {c2 : Str} ;
@@ -118,8 +118,8 @@ concrete CatEng of Cat = CommonX - [Pol,CAdv] ** open ResEng, Prelude in {
VV = \s -> {s = \\_ => s; p = ""; isRefl = False; typ = VVInf} ;
V2V = \s -> {s = \\_ => s; p = ""; isRefl = False; c2,c3="" ; typ = VVInf} ;
- A = \s -> {s = \\_ => s; isPre = True} ;
- A2 = \s -> {s = \\_ => s; c2 = ""; isPre = True} ;
+ A = \s -> {s = \\_ => s; isPre = True ; isMost = False} ;
+ A2 = \s -> {s = \\_ => s; c2 = ""; isPre = True ; isMost = False} ;
N = \s -> {s = \\_,_ => s; g = Neutr} ;
N2 = \s -> {s = \\_,_ => s; c2 = ""; g = Neutr} ;
diff --git a/src/english/CompatibilityEng.gf b/src/english/CompatibilityEng.gf
index 1efad7a9..a5df94af 100644
--- a/src/english/CompatibilityEng.gf
+++ b/src/english/CompatibilityEng.gf
@@ -5,13 +5,13 @@ concrete CompatibilityEng of Compatibility = CatEng ** open Prelude, ResEng in {
-- from Noun 19/4/2008
lin
- NumInt n = {s,sp = \\_ => addGenitiveS n.s ; n = Pl ; hasCard = True} ;
+ NumInt n = {s,sp = \\_ => addGenitiveS n.s ; n = Pl ; hasCard = True} ;
OrdInt n = {s = \\c => n.s ++ (regGenitiveS "th")!c } ;
oper
-- Note: this results in a space before 's, but there's
-- not mauch we can do about that.
- addGenitiveS : Str -> Case => Str = \s ->
+ addGenitiveS : Str -> Case => Str = \s ->
table { Gen => s ++ "'s"; _ => s } ;
}
diff --git a/src/english/ConjunctionEng.gf b/src/english/ConjunctionEng.gf
index 93284af6..e5ef0834 100644
--- a/src/english/ConjunctionEng.gf
+++ b/src/english/ConjunctionEng.gf
@@ -1,4 +1,4 @@
-concrete ConjunctionEng of Conjunction =
+concrete ConjunctionEng of Conjunction =
CatEng ** open ResEng, Coordination, Prelude in {
flags optimize=all_subs ;
@@ -22,11 +22,11 @@ concrete ConjunctionEng of Conjunction =
c = ss.c
} ;
- ConjIAdv = conjunctDistrSS ;
+ ConjIAdv = conjunctDistrSS ;
ConjCN co ns = conjunctDistrTable2 Number Case co ns ** {g = Neutr} ; --- gender?
- ConjDet c xs = let cxs = (conjunctDistrSS c xs).s in {s = cxs ; sp = \\_,_,_ => cxs ++ "one" ; hasNum = False ; n = xs.n} ;
+ ConjDet c xs = let cxs = (conjunctDistrSS c xs).s in {s = cxs ; sp = \\_,_,_ => cxs ++ "one" ; hasNum = False ; n = xs.n} ;
-- These fun's are generated from the list cat's.
diff --git a/src/english/DocumentationEng.gf b/src/english/DocumentationEng.gf
index 44a6d4e1..5de58b0c 100644
--- a/src/english/DocumentationEng.gf
+++ b/src/english/DocumentationEng.gf
@@ -44,8 +44,8 @@ lin
s2 = frameTable (
tr (th "" ++ th "nom" ++ th "gen") ++
tr (th "posit" ++ td (adj.s ! AAdj Posit Nom) ++ td (adj.s ! AAdj Posit Gen)) ++
- tr (th "compar" ++ td (adj.s ! AAdj Compar Nom) ++ td (adj.s ! AAdj Compar Gen)) ++
- tr (th "superl" ++ td (adj.s ! AAdj Superl Nom) ++ td (adj.s ! AAdj Superl Gen))
+ tr (th "compar" ++ td (getCompar Nom adj) ++ td (getCompar Gen adj)) ++
+ tr (th "superl" ++ td (getSuperl Nom adj) ++ td (getSuperl Gen adj))
) ++
heading1 "Adverb" ++
paragraph (adj.s ! AAdv)
@@ -83,7 +83,7 @@ lin
InflectionV3 v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
v.c2 ++ pp "arg1" ++
@@ -93,7 +93,7 @@ lin
InflectionV2V v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
v.c2 ++ pp "object" ++
@@ -107,7 +107,7 @@ lin
InflectionV2S v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
v.c2 ++ pp "object" ++
@@ -117,7 +117,7 @@ lin
InflectionV2Q v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
pp "question") ;
@@ -126,7 +126,7 @@ lin
InflectionV2A v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
v.c2 ++ pp "object" ++
@@ -136,7 +136,7 @@ lin
InflectionVV v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VVF VInf ++ v.p ++
case v.typ of {
@@ -155,7 +155,7 @@ lin
InflectionVS v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
"that" ++ pp "sentence") ;
@@ -164,7 +164,7 @@ lin
InflectionVQ v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
pp "question") ;
@@ -173,7 +173,7 @@ lin
InflectionVA v = {
t = "v" ;
- s1= heading1 "Verb" ++
+ s1= heading1 "Verb" ++
paragraph (pp "subject" ++
v.s ! VInf ++ v.p ++
pp "adjective") ;
diff --git a/src/english/DocumentationEngFunctor.gf b/src/english/DocumentationEngFunctor.gf
index d1be94b3..0051b222 100644
--- a/src/english/DocumentationEngFunctor.gf
+++ b/src/english/DocumentationEngFunctor.gf
@@ -2,7 +2,7 @@
-- documentation of English in any language instantiating Terminology
-incomplete concrete DocumentationEngFunctor of Documentation = CatEng ** open
+incomplete concrete DocumentationEngFunctor of Documentation = CatEng ** open
Terminology,
ResEng,
ParadigmsEng,
@@ -16,18 +16,18 @@ in {
lincat
Inflection = {s1,s2 : Str} ;
- Document = {s : Str} ;
-
+ Document = {s : Str} ;
+
oper
tdf : Str -> Str = \s -> td (intag "i" s) ;
heading : N -> Str = \n -> (nounHeading n).s ;
lin
InflectionN noun = {
s1 = heading1 (heading noun_Category) ;
- s2 = frameTable (
+ s2 = frameTable (
tr (th "" ++ th (heading singular_Parameter) ++ th (heading plural_Parameter) ) ++
tr (th (heading nominative_Parameter) ++ tdf (noun.s ! Sg ! Nom) ++ tdf (noun.s ! Pl ! Nom)) ++
- tr (th (heading genitive_Parameter) ++ tdf (noun.s ! Sg ! Gen) ++ tdf (noun.s ! Pl ! Gen))
+ tr (th (heading genitive_Parameter) ++ tdf (noun.s ! Sg ! Gen) ++ tdf (noun.s ! Pl ! Gen))
)
} ;
@@ -35,26 +35,26 @@ lin
s1 = heading1 (heading adjective_Category) ;
s2 = frameTable (
tr (th (heading positive_Parameter) ++ tdf (adj.s ! AAdj Posit Nom)) ++
- tr (th (heading comparative_Parameter) ++ tdf (adj.s ! AAdj Compar Nom)) ++
- tr (th (heading superlative_Parameter) ++ tdf (adj.s ! AAdj Superl Nom)) ++
- tr (th (heading adverb_Category) ++ tdf (adj.s ! AAdv))
+ tr (th (heading comparative_Parameter) ++ tdf (getCompar Nom adj)) ++
+ tr (th (heading superlative_Parameter) ++ tdf (getSuperl Nom adj)) ++
+ tr (th (heading adverb_Category) ++ tdf (adj.s ! AAdv))
)
} ;
InflectionV v = {
- s1= heading1 (heading verb_Category) ++
+ s1= heading1 (heading verb_Category) ++
paragraph (intag "b" (heading exampleGr_N ++ ":") ++ intag "i" (verbExample (S.mkCl S.she_NP (lin V v)))) ;
s2= inflVerb v
} ;
InflectionV2 v = {
- s1= heading1 (heading verb_Category) ++
+ s1= heading1 (heading verb_Category) ++
paragraph (intag "b" (heading exampleGr_N ++ ":") ++ intag "i" (verbExample (S.mkCl S.she_NP (lin V2 v) S.something_NP))) ;
s2= inflVerb v
} ;
InflectionV2V v = {
- s1= heading1 (heading verb_Category) ++
+ s1= heading1 (heading verb_Category) ++
paragraph (intag "b" (heading exampleGr_N ++ ":") ++ intag "i" (verbExample (S.mkCl S.she_NP (lin V2V v) S.we_NP (S.mkVP (L.sleep_V))))) ;
s2= inflVerb v
} ;
@@ -63,7 +63,7 @@ lin
MkDocument b i e = ss (i.s1 ++ "
"++b.s++"
" ++ i.s2 ++ paragraph e.s) ;
-oper
+oper
verbExample : CatEng.Cl -> Str = \cl -> (S.mkUtt cl).s ;
inflVerb : Verb -> Str = \verb ->
@@ -72,7 +72,7 @@ oper
tr (th (heading present_Parameter) ++ tdf (verb.s ! VPres)) ++
tr (th (heading past_Parameter) ++ tdf (verb.s ! VPast)) ++ --# notpresent
tr (th (heading past_Parameter ++ heading participle_Parameter) ++ tdf (verb.s ! VPPart)) ++
- tr (th (heading present_Parameter ++ heading participle_Parameter) ++ tdf (verb.s ! VPresPart))
+ tr (th (heading present_Parameter ++ heading participle_Parameter) ++ tdf (verb.s ! VPresPart))
) ;
}
diff --git a/src/english/ExtendEng.gf b/src/english/ExtendEng.gf
index db301014..5149a825 100644
--- a/src/english/ExtendEng.gf
+++ b/src/english/ExtendEng.gf
@@ -416,7 +416,7 @@ lin BaseImp = twoTable2 CPolarity ImpForm ;
AdvRAP ap prep rnp = {s = \\a => ap.s ! a ++ prep.s ++ rnp.s ! a ; isPre = False} ;
ReflA2RNP a rnp = {
- s = \\ag => a.s ! AAdj Posit Nom ++ a.c2 ++ rnp.s ! ag ;
+ s = \\ag => a.s ! AAdj Posit Nom ++ a.c2 ++ rnp.s ! ag ;
isPre = False
} ;
diff --git a/src/english/ExtraEng.gf b/src/english/ExtraEng.gf
index 4f016d3a..248fb666 100644
--- a/src/english/ExtraEng.gf
+++ b/src/english/ExtraEng.gf
@@ -1,11 +1,11 @@
-concrete ExtraEng of ExtraEngAbs = CatEng **
+concrete ExtraEng of ExtraEngAbs = CatEng **
open ResEng, Coordination, Prelude, MorphoEng, ParadigmsEng in {
lin
GenNP np = {s = \\_,_ => np.s ! npGen ; sp = \\_,_,_,_ => np.s ! npGen; isDef = True} ;
GenIP ip = {s = \\_ => ip.s ! NCase Gen} ;
GenRP nu cn = {
- s = \\c => "whose" ++ nu.s ! False ! Nom ++
+ s = \\c => "whose" ++ nu.s ! False ! Nom ++
case c of {
RC _ (NCase Gen) => cn.s ! nu.n ! Gen ;
_ => cn.s ! nu.n ! Nom
@@ -14,12 +14,12 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
} ;
PiedPipingRelSlash rp slash = {
- s = \\t,a,p,agr =>
+ s = \\t,a,p,agr =>
slash.c2 ++ rp.s ! RPrep (fromAgr agr).g ++ slash.s ! t ! a ! p ! oDir ;
c = NPAcc
} ;
StrandRelSlash rp slash = {
- s = \\t,a,p,ag =>
+ s = \\t,a,p,ag =>
rp.s ! RC (fromAgr ag).g NPAcc ++ slash.s ! t ! a ! p ! oDir ++ slash.c2 ;
c = NPAcc
} ;
@@ -28,11 +28,11 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
c = NPAcc
} ;
- PiedPipingQuestSlash ip slash =
+ PiedPipingQuestSlash ip slash =
mkQuestion (ss (slash.c2 ++ ip.s ! NPAcc)) slash ;
- StrandQuestSlash ip slash =
- {s = \\t,a,b,q =>
+ StrandQuestSlash ip slash =
+ {s = \\t,a,b,q =>
(mkQuestion (ss (ip.s ! NPAcc)) slash).s ! t ! a ! b ! q ++ slash.c2
};
@@ -52,7 +52,7 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
}
} ;
ConjVPI = conjunctDistrTable2 VVType Agr ;
- ComplVPIVV vv vpi =
+ ComplVPIVV vv vpi =
insertObj (\\a => vpi.s ! vv.typ ! a) (predVV vv) ;
lin
@@ -73,8 +73,8 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
PredVPS np vpi = {s = np.s ! npNom ++ vpi.s ! np.a} ;
MkVPS t p vp = {
- s = \\a =>
- let
+ s = \\a =>
+ let
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 ! a ++ verbf ++ vp.p ++ vp.s2 ! a ++ vp.ext
@@ -110,7 +110,7 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
} ;
may_VV = lin VV {
- s = table {
+ s = table {
VVF VInf => ["be allowed to"] ;
VVF VPres => "may" ;
VVF VPPart => ["been allowed to"] ;
@@ -124,21 +124,21 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
} ;
shall_VV = lin VV {
- s = table {
+ s = table {
VVF VInf => ["be obliged to"] ; ---
VVF VPres => "shall" ;
VVF VPPart => ["been obliged to"] ;
VVF VPresPart => ["being obliged to"] ;
VVF VPast => "should" ; --# notpresent
VVPastNeg => "shouldn't" ; --# notpresent
- VVPresNeg => "shan't"
+ VVPresNeg => "shan't"
} ;
p = [] ;
typ = VVAux
} ;
ought_VV = lin VV {
- s = table {
+ s = table {
VVF VInf => ["be obliged to"] ; ---
VVF VPres => "ought to" ;
VVF VPPart => ["been obliged to"] ;
@@ -152,37 +152,37 @@ concrete ExtraEng of ExtraEngAbs = CatEng **
} ;
used_VV = lin VV {
- s = table {
+ s = table {
VVF VInf => Predef.nonExist ; ---
VVF VPres => Predef.nonExist ;
VVF VPPart => ["used to"] ;
VVF VPresPart => ["being used to"] ;
VVF VPast => "used to" ; --# notpresent
VVPastNeg => "used not to" ; --# notpresent
- VVPresNeg => Predef.nonExist
+ VVPresNeg => Predef.nonExist
} ;
p = [] ;
typ = VVAux
} ;
- NominalizeVPSlashNP vpslash np =
+ NominalizeVPSlashNP vpslash np =
let vp : ResEng.VP = insertObjPre (\\_ => vpslash.c2 ++ np.s ! NPAcc) vpslash ;
a = AgP3Sg Neutr
- in
- lin NP {s = \\_ => vp.ad ! a ++ vp.prp ++ vp.s2 ! a ; a = a} ;
+ in
+ lin NP {s = \\_ => vp.ad ! a ++ vp.prp ++ vp.s2 ! a ; a = a} ;
lin
- UncNeg = {s = [] ; p = CNeg False} ;
+ UncNeg = {s = [] ; p = CNeg False} ;
- oper passVPSlash : VPSlash -> Str -> ResEng.VP =
- \vps,ag ->
- let
+ oper passVPSlash : VPSlash -> Str -> ResEng.VP =
+ \vps,ag ->
+ let
be = predAux auxBe ;
ppt = vps.ptp
in {
s = be.s ;
- p = [] ;
+ p = [] ;
prp = be.prp ;
ptp = be.ptp ;
inf = be.inf ;
@@ -192,7 +192,7 @@ lin
ext = vps.ext
} ;
- lin
+ lin
PassVPSlash vps = passVPSlash vps [] ;
PassAgentVPSlash vps np = passVPSlash vps ("by" ++ np.s ! NPAcc) ;
@@ -202,8 +202,8 @@ lin
} ;
--- AR 22/5/2013
- ExistsNP np =
- mkClause "there" (agrP3 (fromAgr np.a).n)
+ ExistsNP np =
+ mkClause "there" (agrP3 (fromAgr np.a).n)
(insertObj (\\_ => np.s ! NPAcc) (predV (regV "exist"))) ;
PurposeVP vp = {s = infVP VVInf vp False Simul CPos (agrP3 Sg)} ; --- agr
@@ -238,8 +238,8 @@ lin
CompoundCN a b = {s = \\n,c => a.s ! Sg ! Nom ++ b.s ! n ! c ; g = b.g} ;
FrontExtPredVP np vp = {
- s = \\t,a,b,o =>
- let
+ s = \\t,a,b,o =>
+ let
subj = np.s ! npNom ;
agr = np.a ;
verb = vp.s ! t ! a ! b ! o ! agr ;
@@ -252,8 +252,8 @@ lin
} ;
InvFrontExtPredVP np vp = {
- s = \\t,a,b,o =>
- let
+ s = \\t,a,b,o =>
+ let
subj = np.s ! npNom ;
agr = np.a ;
verb = vp.s ! t ! a ! b ! o ! agr ;
@@ -269,7 +269,7 @@ lin
oper
unc : CPolarity -> CPolarity = \x -> case x of {
- CNeg _ => CNeg False ;
+ CNeg _ => CNeg False ;
_ => x
} ;
-------
@@ -285,7 +285,7 @@ lin
RNP = {s : Agr => Str} ;
RNPList = {s1,s2 : Agr => Str} ;
- lin
+ lin
ReflRNP vps rnp = insertObjPre (\\a => vps.c2 ++ rnp.s ! a) vps ;
ReflPron = {s = reflPron} ;
ReflPoss num cn = {s = \\a => possPron ! a ++ num.s ! True ! Nom ++ cn.s ! num.n ! Nom} ;
@@ -299,7 +299,7 @@ lin
Cons_rr_RNP x xs = consrTable Agr comma x xs ;
Cons_nr_RNP x xs = consrTable Agr comma {s = \\a => x.s ! NPAcc} xs ;
-
+
---- TODO: RNPList construction
@@ -307,7 +307,7 @@ lin
that_RP =
{ s = table {
- RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
+ RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
RC Neutr _ => "that" ;
RC _ NPAcc => "that" ;
RC _ (NCase Nom) => "that" ;
@@ -319,7 +319,7 @@ lin
which_who_RP =
{ s = table {
- RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
+ RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
RC Neutr _ => "which" ;
RC _ NPAcc => "whom" ;
RC _ (NCase Nom) => "who" ;
@@ -328,18 +328,18 @@ lin
} ;
a = RNoAg
} ;
-
+
who_RP =
{ s = table {
- RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
+ RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
_ => "who"
} ;
a = RNoAg
} ;
-
+
which_RP =
{ s = table {
- RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
+ RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
_ => "which"
} ;
a = RNoAg
@@ -347,7 +347,7 @@ lin
emptyRP =
{ s = table {
- RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
+ RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
RC _ NPAcc => [] ;
RC _ (NCase Nom) => "that" ;
RPrep Neutr => "which" ;
diff --git a/src/english/ExtraEngAbs.gf b/src/english/ExtraEngAbs.gf
index b9b6642a..69a7bca5 100644
--- a/src/english/ExtraEngAbs.gf
+++ b/src/english/ExtraEngAbs.gf
@@ -1,14 +1,14 @@
abstract ExtraEngAbs = Extra - [ProDrop] ** {
-- uncontracted negative polarity; contracted is the default for PNeg
- fun
+ fun
UncNeg : Pol ;
-- freely compounded nouns
CompoundCN : CN -> CN -> CN ; -- rock album
- which_who_RP : RP ; -- "which" / "who" as a relative pronoun (used to be the default for IdRP)
+ which_who_RP : RP ; -- "which" / "who" as a relative pronoun (used to be the default for IdRP)
that_RP : RP ; -- "that" as a relational pronoun (since 5/6/2016 default for IdRP)
which_RP : RP ; -- force "which"
who_RP : RP ; -- force "who" ; in Acc, also "who": "the girl who I saw"
diff --git a/src/english/GrammarEng.gf b/src/english/GrammarEng.gf
index 3e273229..c2600a7b 100644
--- a/src/english/GrammarEng.gf
+++ b/src/english/GrammarEng.gf
@@ -1,8 +1,8 @@
--# -path=.:../abstract:../common:prelude
-concrete GrammarEng of Grammar =
- NounEng,
- VerbEng,
+concrete GrammarEng of Grammar =
+ NounEng,
+ VerbEng,
AdjectiveEng,
AdverbEng,
NumeralEng,
diff --git a/src/english/IdiomEng.gf b/src/english/IdiomEng.gf
index 05f40d16..eefc0307 100644
--- a/src/english/IdiomEng.gf
+++ b/src/english/IdiomEng.gf
@@ -6,28 +6,28 @@ concrete IdiomEng of Idiom = CatEng ** open Prelude, ResEng in {
ImpersCl vp = mkClause "it" (agrP3 Sg) vp ;
GenericCl vp = mkClause "one" (agrP3 Sg) vp ;
- CleftNP np rs = mkClause "it" (agrP3 Sg)
+ 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)
+ 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)
+ ExistNP np =
+ mkClause "there" (agrP3 (fromAgr np.a).n)
(insertObj (\\_ => np.s ! NPAcc) (predAux auxBe)) ;
- ExistIP ip =
- mkQuestion (ss (ip.s ! npNom))
+ ExistIP ip =
+ mkQuestion (ss (ip.s ! npNom))
(mkClause "there" (agrP3 ip.n) (predAux auxBe)) ;
- ExistNPAdv np adv =
- mkClause "there" (agrP3 (fromAgr np.a).n)
+ ExistNPAdv np adv =
+ mkClause "there" (agrP3 (fromAgr np.a).n)
(insertObj (\\_ => np.s ! NPAcc ++ adv.s) (predAux auxBe)) ;
- ExistIPAdv ip adv =
- mkQuestion (ss (ip.s ! npNom))
+ ExistIPAdv ip adv =
+ mkQuestion (ss (ip.s ! npNom))
(mkClause "there" (agrP3 ip.n) (insertObj (\\_ => adv.s) (predAux auxBe))) ;
ProgrVP vp = insertObj (\\a => vp.ad ! a ++ vp.prp ++ vp.p ++ vp.s2 ! a) (predAux auxBe) ;
@@ -39,7 +39,7 @@ concrete IdiomEng of Idiom = CatEng ** open Prelude, ResEng in {
SelfAdvVP vp = insertObj reflPron vp ;
SelfAdVVP vp = insertAdVAgr reflPron vp ;
SelfNP np = {
- s = \\c => np.s ! c ++ reflPron ! np.a ;
+ s = \\c => np.s ! c ++ reflPron ! np.a ;
a = np.a
} ;
diff --git a/src/english/LangEng.gf b/src/english/LangEng.gf
index 7446f469..e7d716e9 100644
--- a/src/english/LangEng.gf
+++ b/src/english/LangEng.gf
@@ -1,6 +1,6 @@
--# -path=.:../abstract:../common:../api:../prelude
-concrete LangEng of Lang =
+concrete LangEng of Lang =
GrammarEng,
LexiconEng
,ConstructionEng
diff --git a/src/english/MakeStructuralEng.gf b/src/english/MakeStructuralEng.gf
index 40c50f8d..13bbb761 100644
--- a/src/english/MakeStructuralEng.gf
+++ b/src/english/MakeStructuralEng.gf
@@ -2,8 +2,8 @@
resource MakeStructuralEng = open CatEng, ParadigmsEng, ResEng, MorphoEng, Prelude in {
-oper
- mkSubj : Str -> Subj = \x ->
+oper
+ mkSubj : Str -> Subj = \x ->
lin Subj {s = x} ;
mkNP : Str -> ParadigmsEng.Number -> NP = \s,n ->
lin NP (regNP s n) ;
@@ -11,7 +11,7 @@ oper
lin IDet {s = s ; n = n} ;
mkIQuant : Str -> Str -> IQuant = \s,n ->
lin IQuant {s = table {Sg => s ; Pl => n}} ;
-
+
mkDet = overload {
mkDet : Str -> Det = \s ->
lin Det (mkDeterminer singular s) ;
diff --git a/src/english/MorphoEng.gf b/src/english/MorphoEng.gf
index 6a0d2fad..707beb95 100644
--- a/src/english/MorphoEng.gf
+++ b/src/english/MorphoEng.gf
@@ -14,9 +14,9 @@ resource MorphoEng = open Prelude, (Predef=Predef), ResEng in {
--2 Determiners
- oper
+ oper
- mkDeterminer : Number -> Str ->
+ mkDeterminer : Number -> Str ->
{s : Str ; sp : Gender => Bool => NPCase => Str; n : Number ; hasNum : Bool} = \n,s -> mkDeterminerSpec n s s s False ; --- was True!?
mkDeterminerSpec : Number -> Str -> Str -> Str -> Bool ->
@@ -30,7 +30,7 @@ resource MorphoEng = open Prelude, (Predef=Predef), ResEng in {
--2 Pronouns
- mkPron : (i,me,my,mine : Str) -> Number -> Person -> Gender ->
+ 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 {
diff --git a/src/english/NounEng.gf b/src/english/NounEng.gf
index 1c09fe54..fb5a3df1 100644
--- a/src/english/NounEng.gf
+++ b/src/english/NounEng.gf
@@ -3,8 +3,8 @@ concrete NounEng of Noun = CatEng ** open MorphoEng, ResEng, Prelude in {
flags optimize=all_subs ;
lin
- DetCN det cn = {
- s = \\c => det.s ++ cn.s ! det.n ! npcase2case c ;
+ DetCN det cn = {
+ s = \\c => det.s ++ cn.s ! det.n ! npcase2case c ;
a = agrgP3 det.n cn.g
} ;
@@ -48,8 +48,8 @@ concrete NounEng of Noun = CatEng ** open MorphoEng, ResEng, Prelude in {
} ;
DetQuantOrd quant num ord = {
- s = quant.s ! num.hasCard ! num.n ++ num.s ! quant.isDef ! Nom ++ ord.s ! Nom;
- sp = \\g,_,c => quant.s ! num.hasCard ! num.n ++ num.s ! quant.isDef ! Nom ++ ord.s ! npcase2case c ;
+ s = quant.s ! num.hasCard ! num.n ++ num.s ! quant.isDef ! Nom ++ ord.s ! Nom;
+ sp = \\g,_,c => quant.s ! num.hasCard ! num.n ++ num.s ! quant.isDef ! Nom ++ ord.s ! npcase2case c ;
n = num.n ;
hasNum = True
} ;
@@ -84,9 +84,9 @@ concrete NounEng of Noun = CatEng ** open MorphoEng, ResEng, Prelude in {
sp = \\_,c => adn.s ++ num.sp!False!c ;
n = num.n} ;
- OrdSuperl a = {s = \\c => a.s ! AAdj Superl c } ;
+ OrdSuperl a = {s = \\c => getSuperl c a} ;
- OrdNumeralSuperl n a = {s = \\c => n.s ! True ! NOrd ! Nom ++ a.s ! AAdj Superl c } ;
+ OrdNumeralSuperl n a = {s = \\c => n.s ! True ! NOrd ! Nom ++ getSuperl c a} ;
DefArt = {
s = \\hasCard,n => artDef ;
diff --git a/src/english/NumeralEng.gf b/src/english/NumeralEng.gf
index ce801908..47fc1c35 100644
--- a/src/english/NumeralEng.gf
+++ b/src/english/NumeralEng.gf
@@ -1,6 +1,6 @@
concrete NumeralEng of Numeral = CatEng [Numeral,Digits] ** open Prelude, ResEng in {
-lincat
+lincat
Digit = {s : DForm => CardOrd => Case => Str} ;
Sub10 = {s : DForm => CardOrd => Case => Str ; n : Number} ;
Sub100 = {s : CardOrd => Case => Str ; n : Number} ;
@@ -44,7 +44,7 @@ lin pot3plus n m = {
-- numerals as sequences of digits
- lincat
+ lincat
Dig = TDigit ;
lin
diff --git a/src/english/ParadigmsEng.gf b/src/english/ParadigmsEng.gf
index 1ba055c2..4582d4d8 100644
--- a/src/english/ParadigmsEng.gf
+++ b/src/english/ParadigmsEng.gf
@@ -4,12 +4,12 @@
--
-- Aarne Ranta 2003--2005
--
--- This is an API for the user of the resource grammar
+-- 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$.
+-- 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
@@ -21,22 +21,22 @@
-- 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],
+-- separate module [``IrregEng`` ../../english/IrregEng.gf],
-- which covers irregular verbss.
-resource ParadigmsEng = open
- (Predef=Predef),
- Prelude,
+resource ParadigmsEng = open
+ (Predef=Predef),
+ Prelude,
MorphoEng,
ResEng,
CatEng
in {
---2 Parameters
+--2 Parameters
--
-- To abstract over gender names, we define the following identifiers.
oper
- Gender : Type ;
+ Gender : Type ;
human : Gender ;
nonhuman : Gender ;
@@ -45,9 +45,9 @@ oper
-- To abstract over number names, we define the following.
- Number : Type ;
+ Number : Type ;
- singular : Number ;
+ singular : Number ;
plural : Number ;
-- To abstract over case names, we define the following.
@@ -74,10 +74,10 @@ oper
mkN : overload {
-- The regular function captures the variants for nouns ending with
--- "s","sh","x","z" or "y": "kiss - kisses", "flash - flashes";
+-- "s","sh","x","z" or "y": "kiss - kisses", "flash - flashes";
-- "fly - flies" (but "toy - toys"),
- mkN : (flash : Str) -> N ; -- plural s, incl. flash-flashes, fly-flies
+ mkN : (flash : Str) -> N ; -- plural s, incl. flash-flashes, fly-flies
-- In practice the worst case is to give singular and plural nominative.
@@ -91,7 +91,7 @@ oper
mkN : Gender -> N -> N ; -- default nonhuman
---3 Compound nouns
+--3 Compound nouns
--
-- A compound noun is an uninflected string attached to an inflected noun,
-- such as "baby boom", "chief executive officer".
@@ -106,17 +106,17 @@ oper
verbalN : V -> N ; -- e.g. sing -> singing
---3 Relational nouns
+--3 Relational nouns
mkN2 : overload {
- mkN2 : Str -> N2 ; -- reg. noun, prep. "of" --%
+ mkN2 : Str -> N2 ; -- reg. noun, prep. "of" --%
mkN2 : N -> N2 ; -- e.g. wife of (default prep. to)
mkN2 : N -> Str -> N2 ; -- access to --%
mkN2 : N -> Prep -> N2 ; -- e.g. access to
mkN2 : Str -> Str -> N2 ; -- access to (regular noun) --%
} ;
--- Use the function $mkPrep$ or see the section on prepositions below to
+-- 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.
@@ -168,8 +168,8 @@ oper
} ;
-- 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:
+-- and terminated by some other letters. To force this or the opposite,
+-- the following can be used:
compoundA : A -> A ; -- force comparison with more/most
simpleA : A -> A ; -- force comparison with -er,-est
@@ -179,7 +179,7 @@ oper
--3 Two-place adjectives
mkA2 : overload {
- mkA2 : A -> Prep -> A2 ; -- absent from
+ mkA2 : A -> Prep -> A2 ; -- absent from
mkA2 : A -> Str -> A2 ; -- absent from --%
mkA2 : Str -> Prep -> A2 ; -- absent from --%
mkA2 : Str -> Str -> A2 -- absent from --%
@@ -235,7 +235,7 @@ oper
-- 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",
+-- ("kiss-"kisses", "jazz-jazzes", "rush-rushes", "munch - munches",
-- "fix - fixes").
mkV : (cry : Str) -> V ; -- regular, incl. cry-cries, kiss-kisses etc
@@ -247,13 +247,13 @@ oper
mkV : (stop, stopped : Str) -> V ; -- reg. with consonant duplication
-- There is an extensive list of irregular verbs in the module $IrregularEng$.
--- In practice, it is enough to give three forms,
+-- In practice, it is enough to give three forms,
-- e.g. "drink - drank - drunk".
mkV : (drink, drank, drunk : Str) -> V ; -- ordinary irregular
-- Irregular verbs with duplicated consonant in the present participle.
-
+
mkV : (run, ran, run, running : Str) -> V ; -- irregular with duplication --%
-- Except for "be", the worst case needs five forms: the infinitive and
@@ -360,10 +360,10 @@ mkInterj : Str -> Interj
-- The definitions should not bother the user of the API. So they are
-- hidden from the document.
- Gender = ResEng.Gender ;
+ Gender = ResEng.Gender ;
Number = ResEng.Number ;
Case = ResEng.NPCase ;
- human = Masc ;
+ human = Masc ;
nonhuman = Neutr ;
masculine = Masc ;
feminine = Fem ;
@@ -376,7 +376,7 @@ mkInterj : Str -> Interj
Preposition : Type = Str ; -- obsolete
- regN = \ray ->
+ regN = \ray ->
let rays = add_s ray
in
mk2N ray rays ;
@@ -392,12 +392,12 @@ mkInterj : Str -> Interj
duplFinal : Str -> Str = \w -> case w of {
_ + ("a" | "e" | "o") + ("a" | "e" | "i" | "o" | "u") + ? => w ; -- waited, needed
- _ + ("a" | "e" | "i" | "o" | "u") +
+ _ + ("a" | "e" | "i" | "o" | "u") +
c@("b"|"d"|"g"|"m"|"n"|"p"|"r"|"t") => w + c ; -- omitted, manned
_ => w
} ;
- mk2N = \man,men ->
+ mk2N = \man,men ->
let mens = case last men of {
"s" => men + "'" ;
_ => men + "'s"
@@ -405,7 +405,7 @@ mkInterj : Str -> Interj
in
mk4N man men (man + "'s") mens ;
- mk4N = \man,men,man's,men's ->
+ 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} ;
@@ -432,7 +432,7 @@ mkInterj : Str -> Interj
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")
+ mkN2 : Str -> N2 = \s -> prepN2 (regN s) (mkPrep "of")
} ;
prepN2 = \n,p -> lin N2 (n ** {c2 = p.s}) ;
@@ -461,11 +461,11 @@ mkInterj : Str -> Interj
mkQuant : (no_sg, no_pl, none_sg, non_pl : Str) -> Quant = \sg,pl,sg',pl' -> mkQuantifier sg pl sg' pl' sg' pl';
} ;
- mkQuantifier : Str -> Str -> Str -> Str -> Str -> Str -> Quant =
+ mkQuantifier : Str -> Str -> Str -> Str -> Str -> Str -> Quant =
\sg,pl,sg1',pl1',sg2',pl2' -> lin Quant {
s = \\_ => table { Sg => sg ; Pl => pl } ;
sp = \\g,_ => table {
- Sg => \\c => regGenitiveS (case g of {Masc=>sg1'; Fem=>sg1'; Neutr=>sg2'}) ! npcase2case c ;
+ Sg => \\c => regGenitiveS (case g of {Masc=>sg1'; Fem=>sg1'; Neutr=>sg2'}) ! npcase2case c ;
Pl => \\c => regGenitiveS (case g of {Masc=>pl1'; Fem=>pl1'; Neutr=>pl2'}) ! npcase2case c} ;
isDef = True
} ;
@@ -474,8 +474,8 @@ mkInterj : Str -> Interj
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") + ? + _ =>
+ _ + ("a" | "e" | "i" | "o" | "u" | "y") + ? + _ +
+ ("a" | "e" | "i" | "o" | "u" | "y") + ? + _ =>
lin A (compoundADeg (regADeg a)) ;
_ => lin A (regADeg a)
} ;
@@ -486,7 +486,7 @@ mkInterj : Str -> Interj
mkADeg a b c d = mkAdjective a b c d ;
- regADeg happy =
+ regADeg happy =
let
happ = init happy ;
y = last happy ;
@@ -496,7 +496,7 @@ mkInterj : Str -> Interj
_ => duplFinal happy + "e"
} ;
in mkADeg happy (happie + "r") (happie + "st") (adj2adv happy) ;
-
+
adj2adv : Str -> Str = \happy ->
case happy of {
_ + "ble" => init happy + "y" ;
@@ -505,13 +505,14 @@ mkInterj : Str -> Interj
_ => happy + "ly"
} ;
- duplADeg fat =
- mkADeg fat
+ duplADeg fat =
+ mkADeg fat
(fat + last fat + "er") (fat + last fat + "est") (adj2adv fat) ;
compoundADeg a =
- let ad = (a.s ! AAdj Posit Nom)
- in mkADeg ad ("more" ++ ad) ("most" ++ ad) (a.s ! AAdv) ;
+ let ad : Str = a.s ! AAdj Posit Nom ;
+ a' : Adjective = mkADeg ad nonExist nonExist (a.s ! AAdv) ;
+ in a' ** {isMost = True} ;
adegA a = a ;
@@ -528,7 +529,7 @@ mkInterj : Str -> Interj
mk5V a b c d e = lin V (mkVerb a b c d e ** {s1 = []}) ;
- regV cry =
+ regV cry =
let
cries = (regN cry).s ! Pl ! Nom ; -- !
cried : Str = case cries of {
@@ -539,7 +540,7 @@ mkInterj : Str -> Interj
crying : Str = case cry of {
_ + "ee" => cry + "ing" ;
d + "ie" => d + "ying" ;
- us + "e" => us + "ing" ;
+ us + "e" => us + "ing" ;
ent + "er" => ent + "ering" ;
_ => duplFinal cry + "ing"
}
@@ -547,14 +548,14 @@ mkInterj : Str -> Interj
reg2V fit fitted =
let fitt = Predef.tk 2 fitted ;
- in
+ in
if_then_else V (pbool2bool (Predef.eqStr (last fit) (last fitt)))
- (mk5V fit (fit + "s") (fitt + "ed") (fitt + "ed") (fitt + "ing"))
+ (mk5V fit (fit + "s") (fitt + "ed") (fitt + "ed") (fitt + "ing"))
(regV fit) ;
- regDuplV fit =
+ regDuplV fit =
case last fit of {
- ("a" | "e" | "i" | "o" | "u" | "y") =>
+ ("a" | "e" | "i" | "o" | "u" | "y") =>
Predef.error (["final duplication makes no sense for"] ++ fit) ;
t =>
let fitt = fit + t in
@@ -567,8 +568,8 @@ mkInterj : Str -> Interj
irreg4V x y z w = let reg = (regV x).s in
mk5V x (reg ! VPres) y z w ** {s1 = []} ;
- irregDuplV fit y z =
- let
+ irregDuplV fit y z =
+ let
fitting = (regDuplV fit).s ! VPresPart
in
mk5V fit (fit + "s") y z fitting ;
@@ -585,7 +586,7 @@ mkInterj : Str -> Interj
prepV2 v p = lin V2 {s = v.s ; p = v.p ; c2 = p.s ; isRefl = v.isRefl} ;
dirV2 v = prepV2 v noPrep ;
- prepPrepV3 v p q =
+ prepPrepV3 v p q =
lin V3 {s = v.s ; p = v.p ; c2 = p.s ; c3 = q.s ; isRefl = v.isRefl} ;
dirV3 v p = prepPrepV3 v noPrep p ;
dirdirV3 v = dirV3 v noPrep ;
@@ -593,22 +594,22 @@ mkInterj : Str -> Interj
mkVS v = lin VS v ;
mkVV v = lin VV {
s = table {VVF vf => v.s ! vf ; _ => v.s ! VInf} ;
- p = v.p ;
+ p = v.p ;
typ = VVInf
} ;
auxVV, infVV = \v -> lin VV {
s = table {
- VVF vf => v.s ! vf ;
- VVPresNeg => v.s ! VPres ++ "not" ;
+ VVF vf => v.s ! vf ;
+ VVPresNeg => v.s ! VPres ++ "not" ;
VVPastNeg => v.s ! VPast ++ "not" ; --# notpresent
_ => v.s ! VInf
} ;
- p = v.p ;
+ p = v.p ;
typ = VVAux
} ;
ingVV v = lin VV {
s = table {VVF vf => v.s ! vf ; _ => v.s ! VInf} ;
- p = v.p ;
+ p = v.p ;
typ = VVPresPart
} ;
mkVQ v = lin VQ v ;
@@ -657,7 +658,7 @@ mkInterj : Str -> Interj
mkN : Str -> N -> N = compoundN
} ;
--- Relational nouns ("daughter of x") need a preposition.
+-- Relational nouns ("daughter of x") need a preposition.
prepN2 : N -> Prep -> N2 ;
@@ -671,20 +672,23 @@ mkInterj : Str -> Interj
mkA = overload {
mkA : Str -> A = regA ;
- mkA : (fat,fatter : Str) -> A = \fat,fatter ->
+ mkA : (fat,fatter : Str) -> A = \fat,fatter ->
mkAdjective fat fatter (init fatter + "st") (adj2adv fat) ;
mkA : (good,better,best,well : Str) -> A = \a,b,c,d ->
mkAdjective a b c d
} ;
- invarA s = mkAdjective s s s s ;
+ invarA s = lin A {
+ s = \\_ => s ;
+ isPre = True ;
+ isMost = False} ;
compoundA = compoundADeg ;
- simpleA a =
- let ad = (a.s ! AAdj Posit Nom)
+ simpleA a =
+ let ad = (a.s ! AAdj Posit Nom)
in regADeg ad ;
-
- irregAdv a adv = lin A {s = table {AAdv => adv; aform => a.s ! aform}; isPre = a.isPre} ;
+
+ irregAdv a adv = a ** {s = table {AAdv => adv; aform => a.s ! aform}} ;
prepA2 : A -> Prep -> A2 ;
@@ -726,7 +730,7 @@ mkInterj : Str -> Interj
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 ;
@@ -748,18 +752,18 @@ mkInterj : Str -> Interj
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}) ;
---- obsolete
--- Comparison adjectives may two more forms.
+-- Comparison adjectives may two more forms.
ADeg : Type ;
mkADeg : (good,better,best,well : Str) -> ADeg ;
--- The regular pattern recognizes two common variations:
+-- The regular pattern recognizes two common variations:
-- "-e" ("rude" - "ruder" - "rudest") and
-- "-y" ("happy - happier - happiest - happily")
@@ -780,7 +784,7 @@ mkInterj : Str -> Interj
adegA : ADeg -> A ;
- regPN : Str -> PN ;
+ regPN : Str -> PN ;
regGenPN : Str -> Gender -> PN ; -- John, John's
-- Sometimes you can reuse a common noun as a proper name, e.g. "Bank".
diff --git a/src/english/QuestionEng.gf b/src/english/QuestionEng.gf
index a2f478d8..775a8f86 100644
--- a/src/english/QuestionEng.gf
+++ b/src/english/QuestionEng.gf
@@ -5,8 +5,8 @@ concrete QuestionEng of Question = CatEng ** open ResEng, Prelude in {
lin
QuestCl cl = {
- s = \\t,a,p =>
- let cls = cl.s ! t ! a ! p
+ s = \\t,a,p =>
+ let cls = cl.s ! t ! a ! p
in table {
QDir => cls ! OQuest ;
QIndir => "if" ++ cls ! oDir ----
@@ -17,15 +17,15 @@ concrete QuestionEng of Question = CatEng ** open ResEng, Prelude in {
let cl = mkClause (qp.s ! npNom) (agrP3 qp.n) vp
in {s = \\t,a,b,_ => cl.s ! t ! a ! b ! oDir} ; ----
- QuestSlash ip slash =
- {s = \\t,a,b,q =>
+ QuestSlash ip slash =
+ {s = \\t,a,b,q =>
(mkQuestion (ss (ip.s ! NPAcc)) slash).s ! t ! a ! b ! q ++ slash.c2
} ;
--- changed AR 5/6/2016: uses stranding; pied-piping in ExtraEng
-
+
QuestIAdv iadv cl = mkQuestion iadv cl ;
- QuestIComp icomp np =
+ QuestIComp icomp np =
mkQuestion icomp (mkClause (np.s ! npNom) np.a (predAux auxBe)) ;
@@ -35,19 +35,19 @@ concrete QuestionEng of Question = CatEng ** open ResEng, Prelude in {
s = \\c => ip.s ! c ++ adv.s ;
n = ip.n
} ;
-
+
IdetCN idet cn = {
- s = \\c => idet.s ++ cn.s ! idet.n ! npcase2case c ;
+ s = \\c => idet.s ++ cn.s ! idet.n ! npcase2case c ;
n = idet.n
} ;
IdetIP idet = {
- s = \\c => idet.s ;
+ s = \\c => idet.s ;
n = idet.n
} ;
IdetQuant idet num = {
- s = idet.s ! num.n ++ num.s ! False ! Nom ;
+ s = idet.s ! num.n ++ num.s ! False ! Nom ;
n = num.n
} ;
@@ -56,14 +56,14 @@ concrete QuestionEng of Question = CatEng ** open ResEng, Prelude in {
CompIAdv a = a ;
CompIP p = ss (p.s ! npNom) ;
- lincat
+ lincat
QVP = ResEng.VP ;
lin
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 =
+ QuestQVP qp 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/src/english/RelativeEng.gf b/src/english/RelativeEng.gf
index eb597d7c..5a0888e4 100644
--- a/src/english/RelativeEng.gf
+++ b/src/english/RelativeEng.gf
@@ -5,13 +5,13 @@ concrete RelativeEng of Relative = CatEng ** open ResEng in {
lin
RelCl cl = {
- s = \\t,a,p,_ => "such" ++ "that" ++ cl.s ! t ! a ! p ! oDir ;
+ s = \\t,a,p,_ => "such" ++ "that" ++ cl.s ! t ! a ! p ! oDir ;
c = npNom
} ;
RelVP rp vp = {
- s = \\t,ant,b,ag =>
- let
+ s = \\t,ant,b,ag =>
+ let
agr = case rp.a of {
RNoAg => ag ;
RAg a => a
@@ -23,11 +23,11 @@ concrete RelativeEng of Relative = CatEng ** open ResEng in {
} ;
-- Pied piping: "that we are looking at". Pied piping and empty
--- relative are defined in $ExtraEng.gf$ ("at which we are looking",
+-- relative are defined in $ExtraEng.gf$ ("at which we are looking",
-- "we are looking at").
RelSlash rp slash = {
- s = \\t,a,p,ag =>
+ s = \\t,a,p,ag =>
rp.s ! RC (fromAgr ag).g NPAcc ++ slash.s ! t ! a ! p ! oDir ++ slash.c2 ;
c = NPAcc
} ;
@@ -42,7 +42,7 @@ concrete RelativeEng of Relative = CatEng ** open ResEng in {
IdRP =
{ s = table {
- RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
+ RC _ (NCase Gen) | RC _ NPNomPoss => "whose" ;
RC Neutr _ => "that" ;
RC _ NPAcc => "that" ;
RC _ (NCase Nom) => "that" ;
diff --git a/src/english/ResEng.gf b/src/english/ResEng.gf
index 0608fdac..f6965740 100644
--- a/src/english/ResEng.gf
+++ b/src/english/ResEng.gf
@@ -39,7 +39,7 @@ resource ResEng = ParamX ** open Prelude in {
param
Agr = AgP1 Number | AgP2 Number | AgP3Sg Gender | AgP3Pl Gender ;
- param
+ param
Gender = Neutr | Masc | Fem ;
@@ -48,7 +48,7 @@ resource ResEng = ParamX ** open Prelude in {
-- Only these five forms are needed for open-lexicon verbs.
param
- VForm =
+ VForm =
VInf
| VPres
| VPPart
@@ -58,13 +58,13 @@ resource ResEng = ParamX ** open Prelude in {
-- Auxiliary verbs have special negative forms.
- VVForm =
+ VVForm =
VVF VForm
| VVPresNeg
| VVPastNeg --# notpresent
;
--- The order of sentence is needed already in $VP$ because the need of "do" depends on it.
+-- The order of sentence is needed already in $VP$ because the need of "do" depends on it.
-- $ODir True$ means contracted forms ("'s", "'d", "'ve". "'re").
-- Notice that inverted forms ($OQuest$) don't allow verb contractions: *"'s he arrived".
@@ -83,7 +83,7 @@ param
AForm = AAdj Degree Case | AAdv ;
--2 For $Relative$
-
+
RAgr = RNoAg | RAg Agr ;
RCase = RPrep Gender | RC Gender NPCase ;
@@ -95,7 +95,7 @@ param
--2 Transformations between parameter types
oper
- toAgr : Number -> Person -> Gender -> Agr = \n,p,g ->
+ toAgr : Number -> Person -> Gender -> Agr = \n,p,g ->
case p of {
P1 => AgP1 n ;
P2 => AgP2 n ;
@@ -116,8 +116,8 @@ param
agrgP3 : Number -> Gender -> Agr = \n,g -> toAgr n P3 g ;
- conjAgr : Agr -> Agr -> Agr = \a0,b0 ->
- let a = fromAgr a0 ; b = fromAgr b0
+ conjAgr : Agr -> Agr -> Agr = \a0,b0 ->
+ let a = fromAgr a0 ; b = fromAgr b0
in
toAgr
(conjNumber a.n b.n)
@@ -127,7 +127,7 @@ param
-- For each lexical category, here are the worst-case constructors.
- mkNoun : (_,_,_,_ : Str) -> {s : Number => Case => Str} =
+ mkNoun : (_,_,_,_ : Str) -> {s : Number => Case => Str} =
\man,mans,men,mens -> {
s = table {
Sg => table {
@@ -141,18 +141,40 @@ param
}
} ;
- mkAdjective : (_,_,_,_ : Str) -> {s : AForm => Str; isPre : Bool; 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
- } ;
- isPre = True
+ Adjective : Type = {s : AForm => Str ; isPre, isMost : Bool} ;
+ mkAdjective : (_,_,_,_ : Str) -> Adjective = \good,better,best,well ->
+ let adjCompar : Adjective = {
+ s = table {
+ AAdj Posit c => (regGenitiveS good) ! c ;
+ AAdj Compar c => (regGenitiveS better) ! c ;
+ AAdj Superl c => (regGenitiveS best) ! c ;
+ AAdv => well
+ } ;
+ isPre = True ;
+ isMost = False ;
+ } ;
+ in case better of {
+ "more" + _
+ => adjCompar ** {
+ s = table {
+ AAdj Posit c => adjCompar.s ! AAdj Posit c ;
+ AAdv => adjCompar.s ! AAdv ;
+ _ => nonExist } ; -- IL 06/2021. Replace with an actual string, if this causes problems.
+ isMost = True } ;
+ _ => adjCompar
+ } ;
+
+ -- IL 06/2021: remove "more" and "most" from A & A2's inflection table
+ getCompar : Case -> Adjective -> Str = \c,a -> case a.isMost of {
+ True => "more" ++ a.s ! AAdj Posit c ;
+ False => a.s ! AAdj Compar c
+ } ;
+ getSuperl : Case -> Adjective -> Str = \c,a -> case a.isMost of {
+ True => "most" ++ a.s ! AAdj Posit c ;
+ False => a.s ! AAdj Superl c
} ;
- mkVerb : (_,_,_,_,_ : Str) -> Verb =
+ mkVerb : (_,_,_,_,_ : Str) -> Verb =
\go,goes,went,gone,going -> {
s = table {
VInf => go ;
@@ -167,12 +189,12 @@ param
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 ;
+ s = who.s ;
n = n
} ;
- mkNP : (i,me,my : Str) -> Number -> Person -> Gender ->
- {s : NPCase => Str ; a : Agr} = \i,me,my,n,p,g ->
+ mkNP : (i,me,my : Str) -> Number -> Person -> Gender ->
+ {s : NPCase => Str ; a : Agr} = \i,me,my,n,p,g ->
{ s = table {
NCase Nom => i ;
NPAcc => me ;
@@ -184,7 +206,7 @@ param
regNP : Str -> Number -> {s : NPCase => Str ; a : Agr} = \that,n ->
mkNP that that (that + "'s") n P3 Neutr ;
- regGenitiveS : Str -> Case => Str = \s ->
+ regGenitiveS : Str -> Case => Str = \s ->
table { Gen => genitiveS s; _ => s } ;
genitiveS : Str -> Str = \dog ->
@@ -199,7 +221,7 @@ param
artIndef = pre {
"eu" | "Eu" | "uni" | "up" => "a" ;
- "un" => "an" ;
+ "un" => "an" ;
"a" | "e" | "i" | "o" | "A" | "E" | "I" | "O" => "an" ;
"SMS" | "sms" => "an" ; ---
_ => "a"
@@ -216,7 +238,7 @@ param
} ;
param
- CPolarity =
+ CPolarity =
CPos
| CNeg Bool ; -- contracted or not
@@ -227,13 +249,13 @@ param
} ;
VerbForms : Type =
- Tense => Anteriority => CPolarity => Order => Agr =>
+ Tense => Anteriority => CPolarity => Order => Agr =>
{aux, adv, fin, inf : Str} ; -- would, not, sleeps, slept
VP : Type = {
s : VerbForms ;
p : Str ; -- verb particle
- prp : Str ; -- present participle
+ prp : Str ; -- present participle
ptp : Str ; -- past participle
inf : Str ; -- the infinitive form ; VerbForms would be the logical place
ad : Agr => Str ; -- sentence adverb (can be Xself, hence Agr)
@@ -248,13 +270,13 @@ param
missingAdv : Bool -- The sentence has been through VPSlashPrep, and the only missing thing is just an adverbial and shouldn't affect the agreement.
} ;
- predVc : (Verb ** {c2 : Str}) -> SlashVP = \verb ->
+ predVc : (Verb ** {c2 : Str}) -> SlashVP = \verb ->
predV verb ** {c2 = verb.c2 ; gapInMiddle = True; missingAdv = False} ;
cBind : Str -> Str = \s -> Predef.BIND ++ ("'" + s) ;
predV : Verb -> VP = \verb -> {
- s = \\t,ant,b,ord,agr =>
+ s = \\t,ant,b,ord,agr =>
let
inf = verb.s ! VInf ;
fin = presVerb verb agr ;
@@ -303,8 +325,8 @@ param
} ;
predAux : Aux -> VP = \verb -> {
- s = \\t,ant,cb,ord,agr =>
- let
+ s = \\t,ant,cb,ord,agr =>
+ let
b = case cb of {
CPos => Pos ;
_ => Neg
@@ -321,7 +343,7 @@ param
=> vf (have agr) part ; --# notpresent
=> vfn c (haveContr agr) (haventContr agr) part ; --# notpresent
=> vfn c (have agr) (havent agr) part ; --# notpresent
-
+
=> vf (cBind "d") part ; --# notpresent
=> vf "had" part ; --# notpresent
=> vfn c (cBind "d") (cBind "d not") part ; --# notpresent
@@ -349,7 +371,7 @@ param
=> vf fin [] ;
=> vfn c cfinp fin [] ;
=> vfn c finp fin []
-
+
} ;
p = [] ;
prp = verb.prpart ;
@@ -360,14 +382,14 @@ param
isSimple = True ;
s2 = \\_ => []
} ;
-
- vff : Str -> Str -> {aux, adv, fin, inf : Str} = \x,y ->
+
+ 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 ->
+ 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}
@@ -393,9 +415,9 @@ param
isSimple = False ;
} ;
- insertObjc : (Agr => Str) -> SlashVP -> SlashVP = \obj,vp ->
+ insertObjc : (Agr => Str) -> SlashVP -> SlashVP = \obj,vp ->
insertObj obj vp ** {c2 = vp.c2 ; gapInMiddle = vp.gapInMiddle ; missingAdv = vp.missingAdv } ;
- insertExtrac : Str -> SlashVP -> SlashVP = \obj,vp ->
+ insertExtrac : Str -> SlashVP -> SlashVP = \obj,vp ->
insertExtra obj vp ** {c2 = vp.c2 ; gapInMiddle = vp.gapInMiddle ; missingAdv = vp.missingAdv } ;
--- AR 7/3/2013 move the particle after the object
@@ -408,7 +430,7 @@ param
ad = vp.ad ;
s2 = \\a => obj ! a ++ vp.s2 ! a ++ vp.p ; -- and put it here ; corresponds to insertObjPre
isSimple = False ;
- ext = vp.ext
+ ext = vp.ext
} ;
--- The adverb should be before the finite verb.
@@ -439,7 +461,7 @@ param
ext = vp.ext ++ e --- there should be at most one, one might think; but: I would say that it will be raining if I saw clouds
} ;
---
+--
predVV : {s : VVForm => Str ; p : Str ; typ : VVType} -> VP = \verb ->
let verbs = verb.s
@@ -462,14 +484,14 @@ param
_ => predV {s = \\vf => verbs ! VVF vf ; p = verb.p ; isRefl = False}
} ;
- presVerb : {s : VForm => Str} -> Agr -> Str = \verb ->
+ presVerb : {s : VForm => Str} -> Agr -> Str = \verb ->
agrVerb (verb.s ! VPres) (verb.s ! VInf) ;
infVP : VVType -> VP -> Bool -> Anteriority -> CPolarity -> Agr -> Str = \typ,vp,ad_pos,ant,cb,a ->
case cb of {CPos => ""; _ => "not"} ++
case ant of {
Simul => case typ of {
- VVAux => vp.ad ! a ++ vp.inf ;
+ VVAux => vp.ad ! a ++ vp.inf ;
VVInf => case ad_pos of { ---- this is the "split infinitive"
True => vp.ad ! a ++ "to" ++ vp.inf ;
False => "to" ++ vp.ad ! a ++ vp.inf
@@ -487,7 +509,7 @@ param
} ++ vp.p ++
vp.s2 ! a ++ vp.ext ;
- agrVerb : Str -> Str -> Agr -> Str = \has,have,agr ->
+ agrVerb : Str -> Str -> Agr -> Str = \has,have,agr ->
case agr of {
AgP3Sg _ => has ;
_ => have
@@ -502,20 +524,20 @@ param
haventContr = agrVerb (cBind "s not") (cBind "ve not") ;
Aux = {
- pres : Polarity => Agr => Str ;
- contr : Polarity => Agr => Str ; -- contracted forms
+ pres : Polarity => Agr => Str ;
+ contr : Polarity => Agr => Str ; -- contracted forms
past : Polarity => Agr => Str ; --# notpresent
inf,ppart,prpart : Str
} ;
auxBe : Aux = {
pres = \\b,a => case of {
- => "am" ;
+ => "am" ;
=> ["am not"] ; --- am not I
_ => agrVerb (posneg b "is") (posneg b "are") a
} ;
contr = \\b,a => case of {
- => cBind "m" ;
+ => cBind "m" ;
=> cBind "m not" ; --- am not I
_ => agrVerb (posneg b (cBind "s")) (posneg b (cBind "re")) a
} ;
@@ -545,7 +567,7 @@ param
AgP2 Pl => "yourselves" ;
AgP3Pl _ => "themselves"
} ;
-
+
possPron : Agr => Str = table {
AgP1 Sg => "my" ;
AgP2 Sg => "your" ;
@@ -565,8 +587,8 @@ param
mkClause : Str -> Agr -> VP -> Clause =
\subj,agr,vp -> {
- s = \\t,a,b,o =>
- let
+ s = \\t,a,b,o =>
+ let
verb = vp.s ! t ! a ! b ! o ! agr ;
compl = vp.s2 ! agr ++ vp.ext
in
@@ -583,41 +605,41 @@ param
_ => neg.s ! t ! a ! CPos ! o
}
} ;
-
+
-- For $Numeral$.
- mkNum : Str -> Str -> Str -> Str -> {s : DForm => CardOrd => Case => Str} =
+ 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 ;
+ 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} =
+ 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 ;
+ {s = table {NCard => regGenitiveS ten ;
NOrd => regGenitiveS (regOrd ten)} } ;
- mkCard : CardOrd -> Str -> Case => Str = \o,ten ->
- (regCardOrd ten).s ! o ;
+ mkCard : CardOrd -> Str -> Case => Str = \o,ten ->
+ (regCardOrd ten).s ! o ;
- regOrd : Str -> Str = \ten ->
+ regOrd : Str -> Str = \ten ->
case last ten of {
"y" => init ten + "ieth" ;
_ => ten + "th"
} ;
- mkQuestion :
- {s : Str} -> Clause ->
+ mkQuestion :
+ {s : Str} -> Clause ->
{s : Tense => Anteriority => CPolarity => QForm => Str} = \wh,cl ->
{
- s = \\t,a,p =>
- let
+ s = \\t,a,p =>
+ let
cls = cl.s ! t ! a ! p ;
why = wh.s
in table {
diff --git a/src/english/SentenceEng.gf b/src/english/SentenceEng.gf
index 70d649bd..1ef5f335 100644
--- a/src/english/SentenceEng.gf
+++ b/src/english/SentenceEng.gf
@@ -9,8 +9,8 @@ concrete SentenceEng of Sentence = CatEng ** open Prelude, ResEng in {
PredSCVP sc vp = mkClause sc.s (agrP3 Sg) vp ;
ImpVP vp = {
- s = \\pol,n =>
- let
+ s = \\pol,n =>
+ let
agr = AgP2 (numImp n) ;
verb = infVP VVAux vp False Simul CPos agr ;
dont = case pol of {
@@ -26,7 +26,7 @@ concrete SentenceEng of Sentence = CatEng ** open Prelude, ResEng in {
s = \\pol,impform => adv.s ++ imp.s ! pol ! impform
} ;
- SlashVP np vp =
+ SlashVP np vp =
mkClause (np.s ! npNom) np.a vp ** {c2 = vp.c2} ;
AdvSlash slash adv = {
@@ -36,8 +36,8 @@ concrete SentenceEng of Sentence = CatEng ** open Prelude, ResEng in {
SlashPrep cl prep = cl ** {c2 = prep.s} ;
- SlashVS np vs slash =
- mkClause (np.s ! npNom) np.a
+ SlashVS np vs slash =
+ mkClause (np.s ! npNom) np.a
(insertObj (\\_ => conjThat ++ slash.s) (predV vs)) **
{c2 = slash.c2} ;
diff --git a/src/english/StructuralEng.gf b/src/english/StructuralEng.gf
index 97241b45..c77a90cf 100644
--- a/src/english/StructuralEng.gf
+++ b/src/english/StructuralEng.gf
@@ -1,4 +1,4 @@
-concrete StructuralEng of Structural = CatEng **
+concrete StructuralEng of Structural = CatEng **
open MorphoEng, ResEng, ParadigmsEng, MakeStructuralEng, Prelude in {
flags optimize=all ;
@@ -38,7 +38,7 @@ concrete StructuralEng of Structural = CatEng **
typ = VVAux
} |
{
- s = table {
+ s = table {
VVF VInf => ["be able to"] ;
VVF VPres => "can" ;
VVF VPPart => ["been able to"] ;
diff --git a/src/english/SymbolEng.gf b/src/english/SymbolEng.gf
index 6da69adf..a8f333f4 100644
--- a/src/english/SymbolEng.gf
+++ b/src/english/SymbolEng.gf
@@ -12,7 +12,7 @@ lin
a = agrgP3 Sg cn.g
} ;
CNSymbNP det cn xs = {
- s = \\c => det.s ++ cn.s ! det.n ! Nom ++ (addGenitiveS xs.s) ! npcase2case c ;
+ s = \\c => det.s ++ cn.s ! det.n ! Nom ++ (addGenitiveS xs.s) ! npcase2case c ;
a = agrgP3 det.n cn.g
} ;
CNNumNP cn i = {
@@ -20,12 +20,12 @@ lin
a = agrgP3 Sg cn.g
} ;
- SymbS sy = sy ;
+ SymbS sy = sy ;
SymbNum sy = { s,sp = \\_ => addGenitiveS sy.s ; n = Pl ; hasCard = True } ;
SymbOrd sy = { s = \\c => sy.s ++ (regGenitiveS "th")!c} ;
-lincat
+lincat
Symb, [Symb] = SS ;
@@ -38,7 +38,7 @@ lin
oper
-- Note: this results in a space before 's, but there's
-- not mauch we can do about that.
- addGenitiveS : Str -> Case => Str = \s ->
+ addGenitiveS : Str -> Case => Str = \s ->
table { Gen => s ++ BIND ++ "'s"; _ => s } ;
}
diff --git a/src/english/TerminologyEng.gf b/src/english/TerminologyEng.gf
index 5a17c234..903c07f6 100644
--- a/src/english/TerminologyEng.gf
+++ b/src/english/TerminologyEng.gf
@@ -1,6 +1,6 @@
--# -path=.:../abstract:../common
-concrete TerminologyEng of Terminology = CatEng ** open
+concrete TerminologyEng of Terminology = CatEng ** open
ResEng,
ParadigmsEng,
(G = GrammarEng),
@@ -60,7 +60,7 @@ lin
active_Parameter = mkN "active" ;
passive_Parameter = mkN "passive" ;
middle_Parameter = mkN "middle" ;
-
+
imperative_Parameter = mkN "imperative" ;
indicative_Parameter = mkN "indicative" ;
conjunctive_Parameter = mkN "conjunctive" ;
diff --git a/src/english/VerbEng.gf b/src/english/VerbEng.gf
index cf397e8c..05f14057 100644
--- a/src/english/VerbEng.gf
+++ b/src/english/VerbEng.gf
@@ -6,13 +6,13 @@ concrete VerbEng of Verb = CatEng ** open ResEng, Prelude in {
UseV = predV ;
SlashV2a v = predVc v ** {c2 = v.c2 ; gapInMiddle = False} ;
- Slash2V3 v np =
+ Slash2V3 v np =
insertObjc (\\_ => v.c2 ++ np.s ! NPAcc) (predVc v ** {c2 = v.c3 ; gapInMiddle = False}) ;
- Slash3V3 v np =
+ Slash3V3 v np =
insertObjc (\\_ => v.c3 ++ np.s ! NPAcc) (predVc v) ; ----
ComplVV v vp = insertObj (\\a => infVP v.typ vp False Simul CPos a) (predVV v) ; ---- insertExtra?
- ComplVS v s = insertExtra (conjThat ++ s.s) (predV v) ;
+ ComplVS v s = insertExtra (conjThat ++ s.s) (predV v) ;
--- ComplVS v s = insertObj (variants {\\_ => conjThat ++ s.s; \\_ => s.s}) (predV v) ;
ComplVQ v q = insertExtra (q.s ! QIndir) (predV v) ;
ComplVA v ap = insertObj (ap.s) (predV v) ;
@@ -62,7 +62,7 @@ concrete VerbEng of Verb = CatEng ** open ResEng, Prelude in {
CompAP ap = ap ;
CompNP np = {s = \\_ => np.s ! NPAcc} ;
CompAdv a = {s = \\_ => a.s} ;
- CompCN cn = {s = \\a => case (fromAgr a).n of {
+ CompCN cn = {s = \\a => case (fromAgr a).n of {
Sg => artIndef ++ cn.s ! Sg ! Nom ;
Pl => cn.s ! Pl ! Nom
}
diff --git a/src/morphodict/MorphoDictEng.gf b/src/morphodict/MorphoDictEng.gf
index 26d99c69..4cf05b16 100644
--- a/src/morphodict/MorphoDictEng.gf
+++ b/src/morphodict/MorphoDictEng.gf
@@ -1,56607 +1,56608 @@
+--# -path=.:alltenses
concrete MorphoDictEng of MorphoDictEngAbs =
CatEng [N,A,V,Adv,Prep] **
open
ParadigmsEng
in
{
+oper mkAMost : Str -> Str -> A = \ajar,ly -> mkA ajar ("more" ++ ajar) ("most" ++ ajar) ly ;
-lin 'd.o.a._A' = mkA "d.o.a." "more d.o.a." "most d.o.a." "d.o.a.ly" ;
-lin 'la-di-da_A' = mkA "la-di-da" "more la-di-da" "most la-di-da" "la-di-daly" ;
-lin 'deep-sea_A' = mkA "deep-sea" "more deep-sea" "most deep-sea" "deep-sealy" ;
-lin undersea_A = mkA "undersea" "more undersea" "most undersea" "undersealy" ;
-lin oversea_A = mkA "oversea" "more oversea" "most oversea" "oversealy" ;
-lin gaga_A = mkA "gaga" "more gaga" "most gaga" "gagaly" ;
-lin 'ex gratia_A' = mkA "ex gratia" "more ex gratia" "most ex gratia" "ex gratialy" ;
-lin pukka_A = mkA "pukka" "more pukka" "most pukka" "pukkaly" ;
-lin umbrella_A = mkA "umbrella" "more umbrella" "most umbrella" "umbrellaly" ;
-lin vanilla_A = mkA "vanilla" "more vanilla" "most vanilla" "vanillaly" ;
-lin pyjama_A = mkA "pyjama" "more pyjama" "most pyjama" "pyjamaly" ;
-lin prima_A = mkA "prima" "more prima" "most prima" "primaly" ;
-lin 'pro forma_A' = mkA "pro forma" "more pro forma" "most pro forma" "pro formaly" ;
-lin tswana_A = mkA "tswana" "more tswana" "most tswana" "tswanaly" ;
-lin extra_A = mkA "extra" "more extra" "most extra" "extraly" ;
-lin magenta_A = mkA "magenta" "more magenta" "most magenta" "magentaly" ;
-lin alpha_A = mkA "alpha" "alphaer" "alphaest" "alphaly" ;
-lin beta_A = mkA "beta" "betaer" "betaest" "betaly" ;
-lin fab_A = mkA "fab" "more fab" "most fab" "fably" ;
-lin prefab_A = mkA "prefab" "more prefab" "most prefab" "prefably" ;
-lin 'ad-lib_A' = mkA "ad-lib" "more ad-lib" "most ad-lib" "ad-libly" ;
-lin numb_A = mkA "numb" "more numb" "most numb" "numbly" ;
-lin 'odd-job_A' = mkA "odd-job" "more odd-job" "most odd-job" "odd-jobly" ;
-lin acerb_A = mkA "acerb" "more acerb" "most acerb" "acerbly" ;
-lin superb_A = mkA "superb" "more superb" "most superb" "superbly" ;
-lin snub_A = mkA "snub" "more snub" "most snub" "snubly" ;
-lin drab_A = mkA "drab" "drabber" "drabbest" "drably" ;
-lin squab_A = mkA "squab" "squabber" "squabbest" "squably" ;
-lin glib_A = mkA "glib" "glibber" "glibbest" "glibly" ;
-lin dumb_A = mkA "dumb" "dumber" "dumbest" "dumbly" ;
-lin plumb_A = mkA "plumb" "plumber" "plumbest" "plumbly" ;
-lin scrub_A = mkA "scrub" "scrubber" "scrubbest" "scrubly" ;
-lin cardiac_A = mkA "cardiac" "more cardiac" "most cardiac" "cardiacly" ;
-lin elegiac_A = mkA "elegiac" "more elegiac" "most elegiac" "elegiacly" ;
-lin celiac_A = mkA "celiac" "more celiac" "most celiac" "celiacly" ;
-lin coeliac_A = mkA "coeliac" "more coeliac" "most coeliac" "coeliacly" ;
-lin iliac_A = mkA "iliac" "more iliac" "most iliac" "iliacly" ;
-lin nymphomaniac_A = mkA "nymphomaniac" "more nymphomaniac" "most nymphomaniac" "nymphomaniacly" ;
-lin insomniac_A = mkA "insomniac" "more insomniac" "most insomniac" "insomniacly" ;
-lin demoniac_A = mkA "demoniac" "more demoniac" "most demoniac" "demoniacly" ;
-lin ammoniac_A = mkA "ammoniac" "more ammoniac" "most ammoniac" "ammoniacly" ;
-lin hypochondriac_A = mkA "hypochondriac" "more hypochondriac" "most hypochondriac" "hypochondriacly" ;
-lin paradisiac_A = mkA "paradisiac" "more paradisiac" "most paradisiac" "paradisiacly" ;
-lin aphrodisiac_A = mkA "aphrodisiac" "more aphrodisiac" "most aphrodisiac" "aphrodisiacly" ;
-lin anaphrodisiac_A = mkA "anaphrodisiac" "more anaphrodisiac" "most anaphrodisiac" "anaphrodisiacly" ;
-lin spondaic_A = mkA "spondaic" "more spondaic" "most spondaic" "spondaicly" ;
-lin judaic_A = mkA "judaic" "more judaic" "most judaic" "judaicly" ;
-lin trochaic_A = mkA "trochaic" "more trochaic" "most trochaic" "trochaicly" ;
-lin archaic_A = mkA "archaic" "more archaic" "most archaic" "archaicly" ;
-lin laic_A = mkA "laic" "more laic" "most laic" "laicly" ;
-lin formulaic_A = mkA "formulaic" "more formulaic" "most formulaic" "formulaicly" ;
-lin romaic_A = mkA "romaic" "more romaic" "most romaic" "romaicly" ;
-lin apotropaic_A = mkA "apotropaic" "more apotropaic" "most apotropaic" "apotropaicly" ;
-lin algebraic_A = mkA "algebraic" "more algebraic" "most algebraic" "algebraicly" ;
-lin hebraic_A = mkA "hebraic" "more hebraic" "most hebraic" "hebraicly" ;
-lin choleraic_A = mkA "choleraic" "more choleraic" "most choleraic" "choleraicly" ;
-lin mithraic_A = mkA "mithraic" "more mithraic" "most mithraic" "mithraicly" ;
-lin pharisaic_A = mkA "pharisaic" "more pharisaic" "most pharisaic" "pharisaicly" ;
-lin mosaic_A = mkA "mosaic" "more mosaic" "most mosaic" "mosaicly" ;
-lin prosaic_A = mkA "prosaic" "more prosaic" "most prosaic" "prosaicly" ;
-lin voltaic_A = mkA "voltaic" "more voltaic" "most voltaic" "voltaicly" ;
-lin photovoltaic_A = mkA "photovoltaic" "more photovoltaic" "most photovoltaic" "photovoltaicly" ;
-lin syllabic_A = mkA "syllabic" "more syllabic" "most syllabic" "syllabicly" ;
-lin decasyllabic_A = mkA "decasyllabic" "more decasyllabic" "most decasyllabic" "decasyllabicly" ;
-lin pentasyllabic_A = mkA "pentasyllabic" "more pentasyllabic" "most pentasyllabic" "pentasyllabicly" ;
-lin disyllabic_A = mkA "disyllabic" "more disyllabic" "most disyllabic" "disyllabicly" ;
-lin nonsyllabic_A = mkA "nonsyllabic" "more nonsyllabic" "most nonsyllabic" "nonsyllabicly" ;
-lin unsyllabic_A = mkA "unsyllabic" "more unsyllabic" "most unsyllabic" "unsyllabicly" ;
-lin monosyllabic_A = mkA "monosyllabic" "more monosyllabic" "most monosyllabic" "monosyllabicly" ;
-lin octosyllabic_A = mkA "octosyllabic" "more octosyllabic" "most octosyllabic" "octosyllabicly" ;
-lin polysyllabic_A = mkA "polysyllabic" "more polysyllabic" "most polysyllabic" "polysyllabicly" ;
-lin Arabic_A = mkA "Arabic" "more Arabic" "most Arabic" "Arabicly" ;
-lin amoebic_A = mkA "amoebic" "more amoebic" "most amoebic" "amoebicly" ;
-lin iambic_A = mkA "iambic" "more iambic" "most iambic" "iambicly" ;
-lin dithyrambic_A = mkA "dithyrambic" "more dithyrambic" "most dithyrambic" "dithyrambicly" ;
-lin limbic_A = mkA "limbic" "more limbic" "most limbic" "limbicly" ;
-lin rhombic_A = mkA "rhombic" "more rhombic" "most rhombic" "rhombicly" ;
-lin plumbic_A = mkA "plumbic" "more plumbic" "most plumbic" "plumbicly" ;
-lin phobic_A = mkA "phobic" "more phobic" "most phobic" "phobicly" ;
-lin triskaidekaphobic_A = mkA "triskaidekaphobic" "more triskaidekaphobic" "most triskaidekaphobic" "triskaidekaphobicly" ;
-lin agoraphobic_A = mkA "agoraphobic" "more agoraphobic" "most agoraphobic" "agoraphobicly" ;
-lin oleophobic_A = mkA "oleophobic" "more oleophobic" "most oleophobic" "oleophobicly" ;
-lin algophobic_A = mkA "algophobic" "more algophobic" "most algophobic" "algophobicly" ;
-lin homophobic_A = mkA "homophobic" "more homophobic" "most homophobic" "homophobicly" ;
-lin xenophobic_A = mkA "xenophobic" "more xenophobic" "most xenophobic" "xenophobicly" ;
-lin technophobic_A = mkA "technophobic" "more technophobic" "most technophobic" "technophobicly" ;
-lin acrophobic_A = mkA "acrophobic" "more acrophobic" "most acrophobic" "acrophobicly" ;
-lin hydrophobic_A = mkA "hydrophobic" "more hydrophobic" "most hydrophobic" "hydrophobicly" ;
-lin claustrophobic_A = mkA "claustrophobic" "more claustrophobic" "most claustrophobic" "claustrophobicly" ;
-lin mysophobic_A = mkA "mysophobic" "more mysophobic" "most mysophobic" "mysophobicly" ;
-lin katharobic_A = mkA "katharobic" "more katharobic" "most katharobic" "katharobicly" ;
-lin aerobic_A = mkA "aerobic" "more aerobic" "most aerobic" "aerobicly" ;
-lin anaerobic_A = mkA "anaerobic" "more anaerobic" "most anaerobic" "anaerobicly" ;
-lin saprobic_A = mkA "saprobic" "more saprobic" "most saprobic" "saprobicly" ;
-lin ascorbic_A = mkA "ascorbic" "more ascorbic" "most ascorbic" "ascorbicly" ;
-lin cubic_A = mkA "cubic" "more cubic" "most cubic" "cubicly" ;
-lin pubic_A = mkA "pubic" "more pubic" "most pubic" "pubicly" ;
-lin cherubic_A = mkA "cherubic" "more cherubic" "most cherubic" "cherubicly" ;
-lin boracic_A = mkA "boracic" "more boracic" "most boracic" "boracicly" ;
-lin alopecic_A = mkA "alopecic" "more alopecic" "most alopecic" "alopecicly" ;
-lin calcic_A = mkA "calcic" "more calcic" "most calcic" "calcicly" ;
-lin saccadic_A = mkA "saccadic" "more saccadic" "most saccadic" "saccadicly" ;
-lin nomadic_A = mkA "nomadic" "more nomadic" "most nomadic" "nomadicly" ;
-lin nonnomadic_A = mkA "nonnomadic" "more nonnomadic" "most nonnomadic" "nonnomadicly" ;
-lin sporadic_A = mkA "sporadic" "more sporadic" "most sporadic" "sporadicly" ;
-lin dyadic_A = mkA "dyadic" "more dyadic" "most dyadic" "dyadicly" ;
-lin orthopaedic_A = mkA "orthopaedic" "more orthopaedic" "most orthopaedic" "orthopaedicly" ;
-lin encyclopaedic_A = mkA "encyclopaedic" "more encyclopaedic" "most encyclopaedic" "encyclopaedicly" ;
-lin orthopedic_A = mkA "orthopedic" "more orthopedic" "most orthopedic" "orthopedicly" ;
-lin encyclopedic_A = mkA "encyclopedic" "more encyclopedic" "most encyclopedic" "encyclopedicly" ;
-lin acidic_A = mkA "acidic" "more acidic" "most acidic" "acidicly" ;
-lin bromidic_A = mkA "bromidic" "more bromidic" "most bromidic" "bromidicly" ;
-lin iridic_A = mkA "iridic" "more iridic" "most iridic" "iridicly" ;
-lin heraldic_A = mkA "heraldic" "more heraldic" "most heraldic" "heraldicly" ;
-lin icelandic_A = mkA "icelandic" "more icelandic" "most icelandic" "icelandicly" ;
-lin ergodic_A = mkA "ergodic" "more ergodic" "most ergodic" "ergodicly" ;
-lin cathodic_A = mkA "cathodic" "more cathodic" "most cathodic" "cathodicly" ;
-lin periodic_A = mkA "periodic" "more periodic" "most periodic" "periodicly" ;
-lin aperiodic_A = mkA "aperiodic" "more aperiodic" "most aperiodic" "aperiodicly" ;
-lin melodic_A = mkA "melodic" "more melodic" "most melodic" "melodicly" ;
-lin spasmodic_A = mkA "spasmodic" "more spasmodic" "most spasmodic" "spasmodicly" ;
-lin anodic_A = mkA "anodic" "more anodic" "most anodic" "anodicly" ;
-lin monodic_A = mkA "monodic" "more monodic" "most monodic" "monodicly" ;
-lin episodic_A = mkA "episodic" "more episodic" "most episodic" "episodicly" ;
-lin prosodic_A = mkA "prosodic" "more prosodic" "most prosodic" "prosodicly" ;
-lin bardic_A = mkA "bardic" "more bardic" "most bardic" "bardicly" ;
-lin nordic_A = mkA "nordic" "more nordic" "most nordic" "nordicly" ;
-lin aldehydic_A = mkA "aldehydic" "more aldehydic" "most aldehydic" "aldehydicly" ;
-lin amenorrheic_A = mkA "amenorrheic" "more amenorrheic" "most amenorrheic" "amenorrheicly" ;
-lin nucleic_A = mkA "nucleic" "more nucleic" "most nucleic" "nucleicly" ;
-lin allogeneic_A = mkA "allogeneic" "more allogeneic" "most allogeneic" "allogeneicly" ;
-lin xenogeneic_A = mkA "xenogeneic" "more xenogeneic" "most xenogeneic" "xenogeneicly" ;
-lin apneic_A = mkA "apneic" "more apneic" "most apneic" "apneicly" ;
-lin onomatopoeic_A = mkA "onomatopoeic" "more onomatopoeic" "most onomatopoeic" "onomatopoeicly" ;
-lin malefic_A = mkA "malefic" "more malefic" "most malefic" "maleficly" ;
-lin benefic_A = mkA "benefic" "more benefic" "most benefic" "beneficly" ;
-lin pacific_A = mkA "pacific" "more pacific" "most pacific" "pacificly" ;
-lin conspecific_A = mkA "conspecific" "more conspecific" "most conspecific" "conspecificly" ;
-lin nonspecific_A = mkA "nonspecific" "more nonspecific" "most nonspecific" "nonspecificly" ;
-lin unspecific_A = mkA "unspecific" "more unspecific" "most unspecific" "unspecificly" ;
-lin calcific_A = mkA "calcific" "more calcific" "most calcific" "calcificly" ;
-lin fibrocalcific_A = mkA "fibrocalcific" "more fibrocalcific" "most fibrocalcific" "fibrocalcificly" ;
-lin deific_A = mkA "deific" "more deific" "most deific" "deificly" ;
-lin prolific_A = mkA "prolific" "more prolific" "most prolific" "prolificly" ;
-lin chylific_A = mkA "chylific" "more chylific" "most chylific" "chylificly" ;
-lin frigorific_A = mkA "frigorific" "more frigorific" "most frigorific" "frigorificly" ;
-lin calorific_A = mkA "calorific" "more calorific" "most calorific" "calorificly" ;
-lin honorific_A = mkA "honorific" "more honorific" "most honorific" "honorificly" ;
-lin vaporific_A = mkA "vaporific" "more vaporific" "most vaporific" "vaporificly" ;
-lin soporific_A = mkA "soporific" "more soporific" "most soporific" "soporificly" ;
-lin terrific_A = mkA "terrific" "more terrific" "most terrific" "terrificly" ;
-lin horrific_A = mkA "horrific" "more horrific" "most horrific" "horrificly" ;
-lin beatific_A = mkA "beatific" "more beatific" "most beatific" "beatificly" ;
-lin scientific_A = mkA "scientific" "more scientific" "most scientific" "scientificly" ;
-lin unscientific_A = mkA "unscientific" "more unscientific" "most unscientific" "unscientificly" ;
-lin pseudoscientific_A = mkA "pseudoscientific" "more pseudoscientific" "most pseudoscientific" "pseudoscientificly" ;
-lin salvific_A = mkA "salvific" "more salvific" "most salvific" "salvificly" ;
-lin specific_A = mkA "specific" "more specific" "most specific" "specifically" ;
-lin bacteriophagic_A = mkA "bacteriophagic" "more bacteriophagic" "most bacteriophagic" "bacteriophagicly" ;
-lin hemorrhagic_A = mkA "hemorrhagic" "more hemorrhagic" "most hemorrhagic" "hemorrhagicly" ;
-lin archipelagic_A = mkA "archipelagic" "more archipelagic" "most archipelagic" "archipelagicly" ;
-lin magic_A = mkA "magic" "more magic" "most magic" "magicly" ;
-lin choragic_A = mkA "choragic" "more choragic" "most choragic" "choragicly" ;
-lin tragic_A = mkA "tragic" "more tragic" "most tragic" "tragicly" ;
-lin paraplegic_A = mkA "paraplegic" "more paraplegic" "most paraplegic" "paraplegicly" ;
-lin strategic_A = mkA "strategic" "more strategic" "most strategic" "strategicly" ;
-lin geostrategic_A = mkA "geostrategic" "more geostrategic" "most geostrategic" "geostrategicly" ;
-lin arthralgic_A = mkA "arthralgic" "more arthralgic" "most arthralgic" "arthralgicly" ;
-lin neuralgic_A = mkA "neuralgic" "more neuralgic" "most neuralgic" "neuralgicly" ;
-lin nostalgic_A = mkA "nostalgic" "more nostalgic" "most nostalgic" "nostalgicly" ;
-lin myalgic_A = mkA "myalgic" "more myalgic" "most myalgic" "myalgicly" ;
-lin pedagogic_A = mkA "pedagogic" "more pedagogic" "most pedagogic" "pedagogicly" ;
-lin demagogic_A = mkA "demagogic" "more demagogic" "most demagogic" "demagogicly" ;
-lin anagogic_A = mkA "anagogic" "more anagogic" "most anagogic" "anagogicly" ;
-lin genealogic_A = mkA "genealogic" "more genealogic" "most genealogic" "genealogicly" ;
-lin rheologic_A = mkA "rheologic" "more rheologic" "most rheologic" "rheologicly" ;
-lin morphologic_A = mkA "morphologic" "more morphologic" "most morphologic" "morphologicly" ;
-lin geomorphologic_A = mkA "geomorphologic" "more geomorphologic" "most geomorphologic" "geomorphologicly" ;
-lin sociobiologic_A = mkA "sociobiologic" "more sociobiologic" "most sociobiologic" "sociobiologicly" ;
-lin agrobiologic_A = mkA "agrobiologic" "more agrobiologic" "most agrobiologic" "agrobiologicly" ;
-lin cardiologic_A = mkA "cardiologic" "more cardiologic" "most cardiologic" "cardiologicly" ;
-lin epidemiologic_A = mkA "epidemiologic" "more epidemiologic" "most epidemiologic" "epidemiologicly" ;
-lin physiologic_A = mkA "physiologic" "more physiologic" "most physiologic" "physiologicly" ;
-lin homologic_A = mkA "homologic" "more homologic" "most homologic" "homologicly" ;
-lin cosmologic_A = mkA "cosmologic" "more cosmologic" "most cosmologic" "cosmologicly" ;
-lin serologic_A = mkA "serologic" "more serologic" "most serologic" "serologicly" ;
-lin agrologic_A = mkA "agrologic" "more agrologic" "most agrologic" "agrologicly" ;
-lin meteorologic_A = mkA "meteorologic" "more meteorologic" "most meteorologic" "meteorologicly" ;
-lin hematologic_A = mkA "hematologic" "more hematologic" "most hematologic" "hematologicly" ;
-lin dermatologic_A = mkA "dermatologic" "more dermatologic" "most dermatologic" "dermatologicly" ;
-lin lethargic_A = mkA "lethargic" "more lethargic" "most lethargic" "lethargicly" ;
-lin allergic_A = mkA "allergic" "more allergic" "most allergic" "allergicly" ;
-lin adrenergic_A = mkA "adrenergic" "more adrenergic" "most adrenergic" "adrenergicly" ;
-lin antiadrenergic_A = mkA "antiadrenergic" "more antiadrenergic" "most antiadrenergic" "antiadrenergicly" ;
-lin cholinergic_A = mkA "cholinergic" "more cholinergic" "most cholinergic" "cholinergicly" ;
-lin anticholinergic_A = mkA "anticholinergic" "more anticholinergic" "most anticholinergic" "anticholinergicly" ;
-lin asynergic_A = mkA "asynergic" "more asynergic" "most asynergic" "asynergicly" ;
-lin endoergic_A = mkA "endoergic" "more endoergic" "most endoergic" "endoergicly" ;
-lin exoergic_A = mkA "exoergic" "more exoergic" "most exoergic" "exoergicly" ;
-lin dramaturgic_A = mkA "dramaturgic" "more dramaturgic" "most dramaturgic" "dramaturgicly" ;
-lin chic_A = mkA "chic" "more chic" "most chic" "chicly" ;
-lin synecdochic_A = mkA "synecdochic" "more synecdochic" "most synecdochic" "synecdochicly" ;
-lin oligarchic_A = mkA "oligarchic" "more oligarchic" "most oligarchic" "oligarchicly" ;
-lin matriarchic_A = mkA "matriarchic" "more matriarchic" "most matriarchic" "matriarchicly" ;
-lin patriarchic_A = mkA "patriarchic" "more patriarchic" "most patriarchic" "patriarchicly" ;
-lin anarchic_A = mkA "anarchic" "more anarchic" "most anarchic" "anarchicly" ;
-lin monarchic_A = mkA "monarchic" "more monarchic" "most monarchic" "monarchicly" ;
-lin hierarchic_A = mkA "hierarchic" "more hierarchic" "most hierarchic" "hierarchicly" ;
-lin autarchic_A = mkA "autarchic" "more autarchic" "most autarchic" "autarchicly" ;
-lin psychic_A = mkA "psychic" "more psychic" "most psychic" "psychicly" ;
-lin seraphic_A = mkA "seraphic" "more seraphic" "most seraphic" "seraphicly" ;
-lin graphic_A = mkA "graphic" "more graphic" "most graphic" "graphicly" ;
-lin agraphic_A = mkA "agraphic" "more agraphic" "most agraphic" "agraphicly" ;
-lin telegraphic_A = mkA "telegraphic" "more telegraphic" "most telegraphic" "telegraphicly" ;
-lin calligraphic_A = mkA "calligraphic" "more calligraphic" "most calligraphic" "calligraphicly" ;
-lin lexicographic_A = mkA "lexicographic" "more lexicographic" "most lexicographic" "lexicographicly" ;
-lin ideographic_A = mkA "ideographic" "more ideographic" "most ideographic" "ideographicly" ;
-lin geographic_A = mkA "geographic" "more geographic" "most geographic" "geographicly" ;
-lin biogeographic_A = mkA "biogeographic" "more biogeographic" "most biogeographic" "biogeographicly" ;
-lin choreographic_A = mkA "choreographic" "more choreographic" "most choreographic" "choreographicly" ;
-lin lithographic_A = mkA "lithographic" "more lithographic" "most lithographic" "lithographicly" ;
-lin orthographic_A = mkA "orthographic" "more orthographic" "most orthographic" "orthographicly" ;
-lin biographic_A = mkA "biographic" "more biographic" "most biographic" "biographicly" ;
-lin autobiographic_A = mkA "autobiographic" "more autobiographic" "most autobiographic" "autobiographicly" ;
-lin radiographic_A = mkA "radiographic" "more radiographic" "most radiographic" "radiographicly" ;
-lin autoradiographic_A = mkA "autoradiographic" "more autoradiographic" "most autoradiographic" "autoradiographicly" ;
-lin idiographic_A = mkA "idiographic" "more idiographic" "most idiographic" "idiographicly" ;
-lin cardiographic_A = mkA "cardiographic" "more cardiographic" "most cardiographic" "cardiographicly" ;
-lin electrocardiographic_A = mkA "electrocardiographic" "more electrocardiographic" "most electrocardiographic" "electrocardiographicly" ;
-lin bibliographic_A = mkA "bibliographic" "more bibliographic" "most bibliographic" "bibliographicly" ;
-lin electroencephalographic_A = mkA "electroencephalographic" "more electroencephalographic" "most electroencephalographic" "electroencephalographicly" ;
-lin allographic_A = mkA "allographic" "more allographic" "most allographic" "allographicly" ;
-lin bolographic_A = mkA "bolographic" "more bolographic" "most bolographic" "bolographicly" ;
-lin holographic_A = mkA "holographic" "more holographic" "most holographic" "holographicly" ;
-lin demographic_A = mkA "demographic" "more demographic" "most demographic" "demographicly" ;
-lin anemographic_A = mkA "anemographic" "more anemographic" "most anemographic" "anemographicly" ;
-lin planographic_A = mkA "planographic" "more planographic" "most planographic" "planographicly" ;
-lin roentgenographic_A = mkA "roentgenographic" "more roentgenographic" "most roentgenographic" "roentgenographicly" ;
-lin stenographic_A = mkA "stenographic" "more stenographic" "most stenographic" "stenographicly" ;
-lin ethnographic_A = mkA "ethnographic" "more ethnographic" "most ethnographic" "ethnographicly" ;
-lin pornographic_A = mkA "pornographic" "more pornographic" "most pornographic" "pornographicly" ;
-lin typographic_A = mkA "typographic" "more typographic" "most typographic" "typographicly" ;
-lin barographic_A = mkA "barographic" "more barographic" "most barographic" "barographicly" ;
-lin polarographic_A = mkA "polarographic" "more polarographic" "most polarographic" "polarographicly" ;
-lin hydrographic_A = mkA "hydrographic" "more hydrographic" "most hydrographic" "hydrographicly" ;
-lin xerographic_A = mkA "xerographic" "more xerographic" "most xerographic" "xerographicly" ;
-lin spectrographic_A = mkA "spectrographic" "more spectrographic" "most spectrographic" "spectrographicly" ;
-lin pyrographic_A = mkA "pyrographic" "more pyrographic" "most pyrographic" "pyrographicly" ;
-lin chromatographic_A = mkA "chromatographic" "more chromatographic" "most chromatographic" "chromatographicly" ;
-lin pictographic_A = mkA "pictographic" "more pictographic" "most pictographic" "pictographicly" ;
-lin photographic_A = mkA "photographic" "more photographic" "most photographic" "photographicly" ;
-lin cartographic_A = mkA "cartographic" "more cartographic" "most cartographic" "cartographicly" ;
-lin autographic_A = mkA "autographic" "more autographic" "most autographic" "autographicly" ;
-lin delphic_A = mkA "delphic" "more delphic" "most delphic" "delphicly" ;
-lin trophic_A = mkA "trophic" "more trophic" "most trophic" "trophicly" ;
-lin atrophic_A = mkA "atrophic" "more atrophic" "most atrophic" "atrophicly" ;
-lin heterotrophic_A = mkA "heterotrophic" "more heterotrophic" "most heterotrophic" "heterotrophicly" ;
-lin autotrophic_A = mkA "autotrophic" "more autotrophic" "most autotrophic" "autotrophicly" ;
-lin catastrophic_A = mkA "catastrophic" "more catastrophic" "most catastrophic" "catastrophicly" ;
-lin antistrophic_A = mkA "antistrophic" "more antistrophic" "most antistrophic" "antistrophicly" ;
-lin apostrophic_A = mkA "apostrophic" "more apostrophic" "most apostrophic" "apostrophicly" ;
-lin eutrophic_A = mkA "eutrophic" "more eutrophic" "most eutrophic" "eutrophicly" ;
-lin philosophic_A = mkA "philosophic" "more philosophic" "most philosophic" "philosophicly" ;
-lin sapphic_A = mkA "sapphic" "more sapphic" "most sapphic" "sapphicly" ;
-lin anamorphic_A = mkA "anamorphic" "more anamorphic" "most anamorphic" "anamorphicly" ;
-lin metamorphic_A = mkA "metamorphic" "more metamorphic" "most metamorphic" "metamorphicly" ;
-lin nonmetamorphic_A = mkA "nonmetamorphic" "more nonmetamorphic" "most nonmetamorphic" "nonmetamorphicly" ;
-lin dimorphic_A = mkA "dimorphic" "more dimorphic" "most dimorphic" "dimorphicly" ;
-lin epimorphic_A = mkA "epimorphic" "more epimorphic" "most epimorphic" "epimorphicly" ;
-lin endomorphic_A = mkA "endomorphic" "more endomorphic" "most endomorphic" "endomorphicly" ;
-lin pleomorphic_A = mkA "pleomorphic" "more pleomorphic" "most pleomorphic" "pleomorphicly" ;
-lin zygomorphic_A = mkA "zygomorphic" "more zygomorphic" "most zygomorphic" "zygomorphicly" ;
-lin allomorphic_A = mkA "allomorphic" "more allomorphic" "most allomorphic" "allomorphicly" ;
-lin actinomorphic_A = mkA "actinomorphic" "more actinomorphic" "most actinomorphic" "actinomorphicly" ;
-lin anthropomorphic_A = mkA "anthropomorphic" "more anthropomorphic" "most anthropomorphic" "anthropomorphicly" ;
-lin gynandromorphic_A = mkA "gynandromorphic" "more gynandromorphic" "most gynandromorphic" "gynandromorphicly" ;
-lin mesomorphic_A = mkA "mesomorphic" "more mesomorphic" "most mesomorphic" "mesomorphicly" ;
-lin ectomorphic_A = mkA "ectomorphic" "more ectomorphic" "most ectomorphic" "ectomorphicly" ;
-lin polymorphic_A = mkA "polymorphic" "more polymorphic" "most polymorphic" "polymorphicly" ;
-lin anaglyphic_A = mkA "anaglyphic" "more anaglyphic" "most anaglyphic" "anaglyphicly" ;
-lin hieroglyphic_A = mkA "hieroglyphic" "more hieroglyphic" "most hieroglyphic" "hieroglyphicly" ;
-lin pyrrhic_A = mkA "pyrrhic" "more pyrrhic" "most pyrrhic" "pyrrhicly" ;
-lin telepathic_A = mkA "telepathic" "more telepathic" "most telepathic" "telepathicly" ;
-lin empathic_A = mkA "empathic" "more empathic" "most empathic" "empathicly" ;
-lin homeopathic_A = mkA "homeopathic" "more homeopathic" "most homeopathic" "homeopathicly" ;
-lin psychopathic_A = mkA "psychopathic" "more psychopathic" "most psychopathic" "psychopathicly" ;
-lin sociopathic_A = mkA "sociopathic" "more sociopathic" "most sociopathic" "sociopathicly" ;
-lin idiopathic_A = mkA "idiopathic" "more idiopathic" "most idiopathic" "idiopathicly" ;
-lin allopathic_A = mkA "allopathic" "more allopathic" "most allopathic" "allopathicly" ;
-lin hydropathic_A = mkA "hydropathic" "more hydropathic" "most hydropathic" "hydropathicly" ;
-lin myopathic_A = mkA "myopathic" "more myopathic" "most myopathic" "myopathicly" ;
-lin lithic_A = mkA "lithic" "more lithic" "most lithic" "lithicly" ;
-lin megalithic_A = mkA "megalithic" "more megalithic" "most megalithic" "megalithicly" ;
-lin epilithic_A = mkA "epilithic" "more epilithic" "most epilithic" "epilithicly" ;
-lin eolithic_A = mkA "eolithic" "more eolithic" "most eolithic" "eolithicly" ;
-lin palaeolithic_A = mkA "palaeolithic" "more palaeolithic" "most palaeolithic" "palaeolithicly" ;
-lin paleolithic_A = mkA "paleolithic" "more paleolithic" "most paleolithic" "paleolithicly" ;
-lin neolithic_A = mkA "neolithic" "more neolithic" "most neolithic" "neolithicly" ;
-lin batholithic_A = mkA "batholithic" "more batholithic" "most batholithic" "batholithicly" ;
-lin monolithic_A = mkA "monolithic" "more monolithic" "most monolithic" "monolithicly" ;
-lin mesolithic_A = mkA "mesolithic" "more mesolithic" "most mesolithic" "mesolithicly" ;
-lin benthic_A = mkA "benthic" "more benthic" "most benthic" "benthicly" ;
-lin gothic_A = mkA "gothic" "more gothic" "most gothic" "gothicly" ;
-lin anacoluthic_A = mkA "anacoluthic" "more anacoluthic" "most anacoluthic" "anacoluthicly" ;
-lin bismuthic_A = mkA "bismuthic" "more bismuthic" "most bismuthic" "bismuthicly" ;
-lin mythic_A = mkA "mythic" "more mythic" "most mythic" "mythicly" ;
-lin aphakic_A = mkA "aphakic" "more aphakic" "most aphakic" "aphakicly" ;
-lin autarkic_A = mkA "autarkic" "more autarkic" "most autarkic" "autarkicly" ;
-lin cannibalic_A = mkA "cannibalic" "more cannibalic" "most cannibalic" "cannibalicly" ;
-lin vocalic_A = mkA "vocalic" "more vocalic" "most vocalic" "vocalicly" ;
-lin scalic_A = mkA "scalic" "more scalic" "most scalic" "scalicly" ;
-lin acromegalic_A = mkA "acromegalic" "more acromegalic" "most acromegalic" "acromegalicly" ;
-lin cytomegalic_A = mkA "cytomegalic" "more cytomegalic" "most cytomegalic" "cytomegalicly" ;
-lin cephalic_A = mkA "cephalic" "more cephalic" "most cephalic" "cephalicly" ;
-lin anencephalic_A = mkA "anencephalic" "more anencephalic" "most anencephalic" "anencephalicly" ;
-lin macrencephalic_A = mkA "macrencephalic" "more macrencephalic" "most macrencephalic" "macrencephalicly" ;
-lin dolichocephalic_A = mkA "dolichocephalic" "more dolichocephalic" "most dolichocephalic" "dolichocephalicly" ;
-lin macrocephalic_A = mkA "macrocephalic" "more macrocephalic" "most macrocephalic" "macrocephalicly" ;
-lin microcephalic_A = mkA "microcephalic" "more microcephalic" "most microcephalic" "microcephalicly" ;
-lin hydrocephalic_A = mkA "hydrocephalic" "more hydrocephalic" "most hydrocephalic" "hydrocephalicly" ;
-lin brachycephalic_A = mkA "brachycephalic" "more brachycephalic" "most brachycephalic" "brachycephalicly" ;
-lin italic_A = mkA "italic" "more italic" "most italic" "italicly" ;
-lin public_A = mkA "public" "more public" "most public" "publicly" ;
-lin semipublic_A = mkA "semipublic" "more semipublic" "most semipublic" "semipublicly" ;
-lin nonpublic_A = mkA "nonpublic" "more nonpublic" "most nonpublic" "nonpublicly" ;
-lin cyclic_A = mkA "cyclic" "more cyclic" "most cyclic" "cyclicly" ;
-lin acyclic_A = mkA "acyclic" "more acyclic" "most acyclic" "acyclicly" ;
-lin bicyclic_A = mkA "bicyclic" "more bicyclic" "most bicyclic" "bicyclicly" ;
-lin epicyclic_A = mkA "epicyclic" "more epicyclic" "most epicyclic" "epicyclicly" ;
-lin noncyclic_A = mkA "noncyclic" "more noncyclic" "most noncyclic" "noncyclicly" ;
-lin carbocyclic_A = mkA "carbocyclic" "more carbocyclic" "most carbocyclic" "carbocyclicly" ;
-lin homocyclic_A = mkA "homocyclic" "more homocyclic" "most homocyclic" "homocyclicly" ;
-lin heterocyclic_A = mkA "heterocyclic" "more heterocyclic" "most heterocyclic" "heterocyclicly" ;
-lin gaelic_A = mkA "gaelic" "more gaelic" "most gaelic" "gaelicly" ;
-lin psychedelic_A = mkA "psychedelic" "more psychedelic" "most psychedelic" "psychedelicly" ;
-lin angelic_A = mkA "angelic" "more angelic" "most angelic" "angelicly" ;
-lin archangelic_A = mkA "archangelic" "more archangelic" "most archangelic" "archangelicly" ;
-lin parhelic_A = mkA "parhelic" "more parhelic" "most parhelic" "parhelicly" ;
-lin allelic_A = mkA "allelic" "more allelic" "most allelic" "allelicly" ;
-lin blastocoelic_A = mkA "blastocoelic" "more blastocoelic" "most blastocoelic" "blastocoelicly" ;
-lin philatelic_A = mkA "philatelic" "more philatelic" "most philatelic" "philatelicly" ;
-lin aerophilatelic_A = mkA "aerophilatelic" "more aerophilatelic" "most aerophilatelic" "aerophilatelicly" ;
-lin autotelic_A = mkA "autotelic" "more autotelic" "most autotelic" "autotelicly" ;
-lin myelic_A = mkA "myelic" "more myelic" "most myelic" "myelicly" ;
-lin acidophilic_A = mkA "acidophilic" "more acidophilic" "most acidophilic" "acidophilicly" ;
-lin oleophilic_A = mkA "oleophilic" "more oleophilic" "most oleophilic" "oleophilicly" ;
-lin bibliophilic_A = mkA "bibliophilic" "more bibliophilic" "most bibliophilic" "bibliophilicly" ;
-lin haemophilic_A = mkA "haemophilic" "more haemophilic" "most haemophilic" "haemophilicly" ;
-lin technophilic_A = mkA "technophilic" "more technophilic" "most technophilic" "technophilicly" ;
-lin eosinophilic_A = mkA "eosinophilic" "more eosinophilic" "most eosinophilic" "eosinophilicly" ;
-lin lipophilic_A = mkA "lipophilic" "more lipophilic" "most lipophilic" "lipophilicly" ;
-lin hydrophilic_A = mkA "hydrophilic" "more hydrophilic" "most hydrophilic" "hydrophilicly" ;
-lin basophilic_A = mkA "basophilic" "more basophilic" "most basophilic" "basophilicly" ;
-lin exilic_A = mkA "exilic" "more exilic" "most exilic" "exilicly" ;
-lin postexilic_A = mkA "postexilic" "more postexilic" "most postexilic" "postexilicly" ;
-lin gallic_A = mkA "gallic" "more gallic" "most gallic" "gallicly" ;
-lin pyrogallic_A = mkA "pyrogallic" "more pyrogallic" "most pyrogallic" "pyrogallicly" ;
-lin phallic_A = mkA "phallic" "more phallic" "most phallic" "phallicly" ;
-lin metallic_A = mkA "metallic" "more metallic" "most metallic" "metallicly" ;
-lin bimetallic_A = mkA "bimetallic" "more bimetallic" "most bimetallic" "bimetallicly" ;
-lin nonmetallic_A = mkA "nonmetallic" "more nonmetallic" "most nonmetallic" "nonmetallicly" ;
-lin monometallic_A = mkA "monometallic" "more monometallic" "most monometallic" "monometallicly" ;
-lin cyrillic_A = mkA "cyrillic" "more cyrillic" "most cyrillic" "cyrillicly" ;
-lin idyllic_A = mkA "idyllic" "more idyllic" "most idyllic" "idyllicly" ;
-lin diabolic_A = mkA "diabolic" "more diabolic" "most diabolic" "diabolicly" ;
-lin anabolic_A = mkA "anabolic" "more anabolic" "most anabolic" "anabolicly" ;
-lin parabolic_A = mkA "parabolic" "more parabolic" "most parabolic" "parabolicly" ;
-lin catabolic_A = mkA "catabolic" "more catabolic" "most catabolic" "catabolicly" ;
-lin metabolic_A = mkA "metabolic" "more metabolic" "most metabolic" "metabolicly" ;
-lin ametabolic_A = mkA "ametabolic" "more ametabolic" "most ametabolic" "ametabolicly" ;
-lin holometabolic_A = mkA "holometabolic" "more holometabolic" "most holometabolic" "holometabolicly" ;
-lin shambolic_A = mkA "shambolic" "more shambolic" "most shambolic" "shambolicly" ;
-lin embolic_A = mkA "embolic" "more embolic" "most embolic" "embolicly" ;
-lin symbolic_A = mkA "symbolic" "more symbolic" "most symbolic" "symbolicly" ;
-lin carbolic_A = mkA "carbolic" "more carbolic" "most carbolic" "carbolicly" ;
-lin hyperbolic_A = mkA "hyperbolic" "more hyperbolic" "most hyperbolic" "hyperbolicly" ;
-lin bucolic_A = mkA "bucolic" "more bucolic" "most bucolic" "bucolicly" ;
-lin melancholic_A = mkA "melancholic" "more melancholic" "most melancholic" "melancholicly" ;
-lin alcoholic_A = mkA "alcoholic" "more alcoholic" "most alcoholic" "alcoholicly" ;
-lin nonalcoholic_A = mkA "nonalcoholic" "more nonalcoholic" "most nonalcoholic" "nonalcoholicly" ;
-lin Catholic_A = mkA "Catholic" "more Catholic" "most Catholic" "Catholicly" ;
-lin 'anglo-catholic_A' = mkA "anglo-catholic" "more anglo-catholic" "most anglo-catholic" "anglo-catholicly" ;
-lin vitriolic_A = mkA "vitriolic" "more vitriolic" "most vitriolic" "vitriolicly" ;
-lin enolic_A = mkA "enolic" "more enolic" "most enolic" "enolicly" ;
-lin bibliopolic_A = mkA "bibliopolic" "more bibliopolic" "most bibliopolic" "bibliopolicly" ;
-lin diastolic_A = mkA "diastolic" "more diastolic" "most diastolic" "diastolicly" ;
-lin apostolic_A = mkA "apostolic" "more apostolic" "most apostolic" "apostolicly" ;
-lin systolic_A = mkA "systolic" "more systolic" "most systolic" "systolicly" ;
-lin extrasystolic_A = mkA "extrasystolic" "more extrasystolic" "most extrasystolic" "extrasystolicly" ;
-lin hydraulic_A = mkA "hydraulic" "more hydraulic" "most hydraulic" "hydraulicly" ;
-lin abulic_A = mkA "abulic" "more abulic" "most abulic" "abulicly" ;
-lin cacodylic_A = mkA "cacodylic" "more cacodylic" "most cacodylic" "cacodylicly" ;
-lin alkylic_A = mkA "alkylic" "more alkylic" "most alkylic" "alkylicly" ;
-lin allylic_A = mkA "allylic" "more allylic" "most allylic" "allylicly" ;
-lin dactylic_A = mkA "dactylic" "more dactylic" "most dactylic" "dactylicly" ;
-lin brachydactylic_A = mkA "brachydactylic" "more brachydactylic" "most brachydactylic" "brachydactylicly" ;
-lin acetylic_A = mkA "acetylic" "more acetylic" "most acetylic" "acetylicly" ;
-lin dicarboxylic_A = mkA "dicarboxylic" "more dicarboxylic" "most dicarboxylic" "dicarboxylicly" ;
-lin monocarboxylic_A = mkA "monocarboxylic" "more monocarboxylic" "most monocarboxylic" "monocarboxylicly" ;
-lin benzylic_A = mkA "benzylic" "more benzylic" "most benzylic" "benzylicly" ;
-lin agamic_A = mkA "agamic" "more agamic" "most agamic" "agamicly" ;
-lin apogamic_A = mkA "apogamic" "more apogamic" "most apogamic" "apogamicly" ;
-lin anisogamic_A = mkA "anisogamic" "more anisogamic" "most anisogamic" "anisogamicly" ;
-lin cryptogamic_A = mkA "cryptogamic" "more cryptogamic" "most cryptogamic" "cryptogamicly" ;
-lin hypothalamic_A = mkA "hypothalamic" "more hypothalamic" "most hypothalamic" "hypothalamicly" ;
-lin Islamic_A = mkA "Islamic" "more Islamic" "most Islamic" "Islamicly" ;
-lin dynamic_A = mkA "dynamic" "more dynamic" "most dynamic" "dynamicly" ;
-lin adynamic_A = mkA "adynamic" "more adynamic" "most adynamic" "adynamicly" ;
-lin undynamic_A = mkA "undynamic" "more undynamic" "most undynamic" "undynamicly" ;
-lin hemodynamic_A = mkA "hemodynamic" "more hemodynamic" "most hemodynamic" "hemodynamicly" ;
-lin thermodynamic_A = mkA "thermodynamic" "more thermodynamic" "most thermodynamic" "thermodynamicly" ;
-lin hydrodynamic_A = mkA "hydrodynamic" "more hydrodynamic" "most hydrodynamic" "hydrodynamicly" ;
-lin aerodynamic_A = mkA "aerodynamic" "more aerodynamic" "most aerodynamic" "aerodynamicly" ;
-lin ceramic_A = mkA "ceramic" "more ceramic" "most ceramic" "ceramicly" ;
-lin phonogramic_A = mkA "phonogramic" "more phonogramic" "most phonogramic" "phonogramicly" ;
-lin panoramic_A = mkA "panoramic" "more panoramic" "most panoramic" "panoramicly" ;
-lin balsamic_A = mkA "balsamic" "more balsamic" "most balsamic" "balsamicly" ;
-lin anaemic_A = mkA "anaemic" "more anaemic" "most anaemic" "anaemicly" ;
-lin septicemic_A = mkA "septicemic" "more septicemic" "most septicemic" "septicemicly" ;
-lin hypoglycemic_A = mkA "hypoglycemic" "more hypoglycemic" "most hypoglycemic" "hypoglycemicly" ;
-lin academic_A = mkA "academic" "more academic" "most academic" "academicly" ;
-lin ecdemic_A = mkA "ecdemic" "more ecdemic" "most ecdemic" "ecdemicly" ;
-lin epidemic_A = mkA "epidemic" "more epidemic" "most epidemic" "epidemicly" ;
-lin pandemic_A = mkA "pandemic" "more pandemic" "most pandemic" "pandemicly" ;
-lin endemic_A = mkA "endemic" "more endemic" "most endemic" "endemicly" ;
-lin hemic_A = mkA "hemic" "more hemic" "most hemic" "hemicly" ;
-lin alchemic_A = mkA "alchemic" "more alchemic" "most alchemic" "alchemicly" ;
-lin ischemic_A = mkA "ischemic" "more ischemic" "most ischemic" "ischemicly" ;
-lin morphemic_A = mkA "morphemic" "more morphemic" "most morphemic" "morphemicly" ;
-lin bimorphemic_A = mkA "bimorphemic" "more bimorphemic" "most bimorphemic" "bimorphemicly" ;
-lin monomorphemic_A = mkA "monomorphemic" "more monomorphemic" "most monomorphemic" "monomorphemicly" ;
-lin polymorphemic_A = mkA "polymorphemic" "more polymorphemic" "most polymorphemic" "polymorphemicly" ;
-lin polemic_A = mkA "polemic" "more polemic" "most polemic" "polemicly" ;
-lin hypovolemic_A = mkA "hypovolemic" "more hypovolemic" "most hypovolemic" "hypovolemicly" ;
-lin anemic_A = mkA "anemic" "more anemic" "most anemic" "anemicly" ;
-lin phonemic_A = mkA "phonemic" "more phonemic" "most phonemic" "phonemicly" ;
-lin morphophonemic_A = mkA "morphophonemic" "more morphophonemic" "most morphophonemic" "morphophonemicly" ;
-lin hyperemic_A = mkA "hyperemic" "more hyperemic" "most hyperemic" "hyperemicly" ;
-lin bacteremic_A = mkA "bacteremic" "more bacteremic" "most bacteremic" "bacteremicly" ;
-lin totemic_A = mkA "totemic" "more totemic" "most totemic" "totemicly" ;
-lin azotemic_A = mkA "azotemic" "more azotemic" "most azotemic" "azotemicly" ;
-lin epistemic_A = mkA "epistemic" "more epistemic" "most epistemic" "epistemicly" ;
-lin systemic_A = mkA "systemic" "more systemic" "most systemic" "systemicly" ;
-lin anoxemic_A = mkA "anoxemic" "more anoxemic" "most anoxemic" "anoxemicly" ;
-lin pyemic_A = mkA "pyemic" "more pyemic" "most pyemic" "pyemicly" ;
-lin ohmic_A = mkA "ohmic" "more ohmic" "most ohmic" "ohmicly" ;
-lin logarithmic_A = mkA "logarithmic" "more logarithmic" "most logarithmic" "logarithmicly" ;
-lin algorithmic_A = mkA "algorithmic" "more algorithmic" "most algorithmic" "algorithmicly" ;
-lin rhythmic_A = mkA "rhythmic" "more rhythmic" "most rhythmic" "rhythmicly" ;
-lin nonrhythmic_A = mkA "nonrhythmic" "more nonrhythmic" "most nonrhythmic" "nonrhythmicly" ;
-lin arrhythmic_A = mkA "arrhythmic" "more arrhythmic" "most arrhythmic" "arrhythmicly" ;
-lin bulimic_A = mkA "bulimic" "more bulimic" "most bulimic" "bulimicly" ;
-lin mimic_A = mkA "mimic" "more mimic" "most mimic" "mimicly" ;
-lin ophthalmic_A = mkA "ophthalmic" "more ophthalmic" "most ophthalmic" "ophthalmicly" ;
-lin sarcolemmic_A = mkA "sarcolemmic" "more sarcolemmic" "most sarcolemmic" "sarcolemmicly" ;
-lin comic_A = mkA "comic" "more comic" "most comic" "comicly" ;
-lin tragicomic_A = mkA "tragicomic" "more tragicomic" "most tragicomic" "tragicomicly" ;
-lin seriocomic_A = mkA "seriocomic" "more seriocomic" "most seriocomic" "seriocomicly" ;
-lin gnomic_A = mkA "gnomic" "more gnomic" "most gnomic" "gnomicly" ;
-lin economic_A = mkA "economic" "more economic" "most economic" "economicly" ;
-lin uneconomic_A = mkA "uneconomic" "more uneconomic" "most uneconomic" "uneconomicly" ;
-lin socioeconomic_A = mkA "socioeconomic" "more socioeconomic" "most socioeconomic" "socioeconomicly" ;
-lin macroeconomic_A = mkA "macroeconomic" "more macroeconomic" "most macroeconomic" "macroeconomicly" ;
-lin microeconomic_A = mkA "microeconomic" "more microeconomic" "most microeconomic" "microeconomicly" ;
-lin ergonomic_A = mkA "ergonomic" "more ergonomic" "most ergonomic" "ergonomicly" ;
-lin agronomic_A = mkA "agronomic" "more agronomic" "most agronomic" "agronomicly" ;
-lin astronomic_A = mkA "astronomic" "more astronomic" "most astronomic" "astronomicly" ;
-lin gastronomic_A = mkA "gastronomic" "more gastronomic" "most gastronomic" "gastronomicly" ;
-lin autonomic_A = mkA "autonomic" "more autonomic" "most autonomic" "autonomicly" ;
-lin taxonomic_A = mkA "taxonomic" "more taxonomic" "most taxonomic" "taxonomicly" ;
-lin bromic_A = mkA "bromic" "more bromic" "most bromic" "bromicly" ;
-lin antidromic_A = mkA "antidromic" "more antidromic" "most antidromic" "antidromicly" ;
-lin achromic_A = mkA "achromic" "more achromic" "most achromic" "achromicly" ;
-lin centrosomic_A = mkA "centrosomic" "more centrosomic" "most centrosomic" "centrosomicly" ;
-lin atomic_A = mkA "atomic" "more atomic" "most atomic" "atomicly" ;
-lin subatomic_A = mkA "subatomic" "more subatomic" "most subatomic" "subatomicly" ;
-lin diatomic_A = mkA "diatomic" "more diatomic" "most diatomic" "diatomicly" ;
-lin anatomic_A = mkA "anatomic" "more anatomic" "most anatomic" "anatomicly" ;
-lin neuroanatomic_A = mkA "neuroanatomic" "more neuroanatomic" "most neuroanatomic" "neuroanatomicly" ;
-lin monatomic_A = mkA "monatomic" "more monatomic" "most monatomic" "monatomicly" ;
-lin polyatomic_A = mkA "polyatomic" "more polyatomic" "most polyatomic" "polyatomicly" ;
-lin autotomic_A = mkA "autotomic" "more autotomic" "most autotomic" "autotomicly" ;
-lin endermic_A = mkA "endermic" "more endermic" "most endermic" "endermicly" ;
-lin hypodermic_A = mkA "hypodermic" "more hypodermic" "most hypodermic" "hypodermicly" ;
-lin endothermic_A = mkA "endothermic" "more endothermic" "most endothermic" "endothermicly" ;
-lin homoiothermic_A = mkA "homoiothermic" "more homoiothermic" "most homoiothermic" "homoiothermicly" ;
-lin poikilothermic_A = mkA "poikilothermic" "more poikilothermic" "most poikilothermic" "poikilothermicly" ;
-lin hypothermic_A = mkA "hypothermic" "more hypothermic" "most hypothermic" "hypothermicly" ;
-lin isothermic_A = mkA "isothermic" "more isothermic" "most isothermic" "isothermicly" ;
-lin exothermic_A = mkA "exothermic" "more exothermic" "most exothermic" "exothermicly" ;
-lin formic_A = mkA "formic" "more formic" "most formic" "formicly" ;
-lin miasmic_A = mkA "miasmic" "more miasmic" "most miasmic" "miasmicly" ;
-lin hyaloplasmic_A = mkA "hyaloplasmic" "more hyaloplasmic" "most hyaloplasmic" "hyaloplasmicly" ;
-lin cytoplasmic_A = mkA "cytoplasmic" "more cytoplasmic" "most cytoplasmic" "cytoplasmicly" ;
-lin seismic_A = mkA "seismic" "more seismic" "most seismic" "seismicly" ;
-lin coseismic_A = mkA "coseismic" "more coseismic" "most coseismic" "coseismicly" ;
-lin cosmic_A = mkA "cosmic" "more cosmic" "most cosmic" "cosmicly" ;
-lin macrocosmic_A = mkA "macrocosmic" "more macrocosmic" "most macrocosmic" "macrocosmicly" ;
-lin microcosmic_A = mkA "microcosmic" "more microcosmic" "most microcosmic" "microcosmicly" ;
-lin anosmic_A = mkA "anosmic" "more anosmic" "most anosmic" "anosmicly" ;
-lin cataclysmic_A = mkA "cataclysmic" "more cataclysmic" "most cataclysmic" "cataclysmicly" ;
-lin humic_A = mkA "humic" "more humic" "most humic" "humicly" ;
-lin cyclothymic_A = mkA "cyclothymic" "more cyclothymic" "most cyclothymic" "cyclothymicly" ;
-lin homonymic_A = mkA "homonymic" "more homonymic" "most homonymic" "homonymicly" ;
-lin acronymic_A = mkA "acronymic" "more acronymic" "most acronymic" "acronymicly" ;
-lin patronymic_A = mkA "patronymic" "more patronymic" "most patronymic" "patronymicly" ;
-lin metonymic_A = mkA "metonymic" "more metonymic" "most metonymic" "metonymicly" ;
-lin volcanic_A = mkA "volcanic" "more volcanic" "most volcanic" "volcanicly" ;
-lin oceanic_A = mkA "oceanic" "more oceanic" "most oceanic" "oceanicly" ;
-lin suboceanic_A = mkA "suboceanic" "more suboceanic" "most suboceanic" "suboceanicly" ;
-lin transoceanic_A = mkA "transoceanic" "more transoceanic" "most transoceanic" "transoceanicly" ;
-lin organic_A = mkA "organic" "more organic" "most organic" "organicly" ;
-lin inorganic_A = mkA "inorganic" "more inorganic" "most inorganic" "inorganicly" ;
-lin mechanic_A = mkA "mechanic" "more mechanic" "most mechanic" "mechanicly" ;
-lin aeromechanic_A = mkA "aeromechanic" "more aeromechanic" "most aeromechanic" "aeromechanicly" ;
-lin messianic_A = mkA "messianic" "more messianic" "most messianic" "messianicly" ;
-lin aldermanic_A = mkA "aldermanic" "more aldermanic" "most aldermanic" "aldermanicly" ;
-lin germanic_A = mkA "germanic" "more germanic" "most germanic" "germanicly" ;
-lin talismanic_A = mkA "talismanic" "more talismanic" "most talismanic" "talismanicly" ;
-lin tympanic_A = mkA "tympanic" "more tympanic" "most tympanic" "tympanicly" ;
-lin koranic_A = mkA "koranic" "more koranic" "most koranic" "koranicly" ;
-lin transuranic_A = mkA "transuranic" "more transuranic" "most transuranic" "transuranicly" ;
-lin satanic_A = mkA "satanic" "more satanic" "most satanic" "satanicly" ;
-lin tetanic_A = mkA "tetanic" "more tetanic" "most tetanic" "tetanicly" ;
-lin titanic_A = mkA "titanic" "more titanic" "most titanic" "titanicly" ;
-lin botanic_A = mkA "botanic" "more botanic" "most botanic" "botanicly" ;
-lin galvanic_A = mkA "galvanic" "more galvanic" "most galvanic" "galvanicly" ;
-lin scenic_A = mkA "scenic" "more scenic" "most scenic" "scenicly" ;
-lin genic_A = mkA "genic" "more genic" "most genic" "genicly" ;
-lin mutagenic_A = mkA "mutagenic" "more mutagenic" "most mutagenic" "mutagenicly" ;
-lin antigenic_A = mkA "antigenic" "more antigenic" "most antigenic" "antigenicly" ;
-lin glycogenic_A = mkA "glycogenic" "more glycogenic" "most glycogenic" "glycogenicly" ;
-lin endogenic_A = mkA "endogenic" "more endogenic" "most endogenic" "endogenicly" ;
-lin psychogenic_A = mkA "psychogenic" "more psychogenic" "most psychogenic" "psychogenicly" ;
-lin cytopathogenic_A = mkA "cytopathogenic" "more cytopathogenic" "most cytopathogenic" "cytopathogenicly" ;
-lin biogenic_A = mkA "biogenic" "more biogenic" "most biogenic" "biogenicly" ;
-lin carcinogenic_A = mkA "carcinogenic" "more carcinogenic" "most carcinogenic" "carcinogenicly" ;
-lin hallucinogenic_A = mkA "hallucinogenic" "more hallucinogenic" "most hallucinogenic" "hallucinogenicly" ;
-lin monogenic_A = mkA "monogenic" "more monogenic" "most monogenic" "monogenicly" ;
-lin immunogenic_A = mkA "immunogenic" "more immunogenic" "most immunogenic" "immunogenicly" ;
-lin acrogenic_A = mkA "acrogenic" "more acrogenic" "most acrogenic" "acrogenicly" ;
-lin androgenic_A = mkA "androgenic" "more androgenic" "most androgenic" "androgenicly" ;
-lin icterogenic_A = mkA "icterogenic" "more icterogenic" "most icterogenic" "icterogenicly" ;
-lin iatrogenic_A = mkA "iatrogenic" "more iatrogenic" "most iatrogenic" "iatrogenicly" ;
-lin estrogenic_A = mkA "estrogenic" "more estrogenic" "most estrogenic" "estrogenicly" ;
-lin neurogenic_A = mkA "neurogenic" "more neurogenic" "most neurogenic" "neurogenicly" ;
-lin pyrogenic_A = mkA "pyrogenic" "more pyrogenic" "most pyrogenic" "pyrogenicly" ;
-lin lysogenic_A = mkA "lysogenic" "more lysogenic" "most lysogenic" "lysogenicly" ;
-lin somatogenic_A = mkA "somatogenic" "more somatogenic" "most somatogenic" "somatogenicly" ;
-lin teratogenic_A = mkA "teratogenic" "more teratogenic" "most teratogenic" "teratogenicly" ;
-lin lactogenic_A = mkA "lactogenic" "more lactogenic" "most lactogenic" "lactogenicly" ;
-lin photogenic_A = mkA "photogenic" "more photogenic" "most photogenic" "photogenicly" ;
-lin pyogenic_A = mkA "pyogenic" "more pyogenic" "most pyogenic" "pyogenicly" ;
-lin cryogenic_A = mkA "cryogenic" "more cryogenic" "most cryogenic" "cryogenicly" ;
-lin allergenic_A = mkA "allergenic" "more allergenic" "most allergenic" "allergenicly" ;
-lin dysgenic_A = mkA "dysgenic" "more dysgenic" "most dysgenic" "dysgenicly" ;
-lin eugenic_A = mkA "eugenic" "more eugenic" "most eugenic" "eugenicly" ;
-lin polygenic_A = mkA "polygenic" "more polygenic" "most polygenic" "polygenicly" ;
-lin asthenic_A = mkA "asthenic" "more asthenic" "most asthenic" "asthenicly" ;
-lin neurasthenic_A = mkA "neurasthenic" "more neurasthenic" "most neurasthenic" "neurasthenicly" ;
-lin calisthenic_A = mkA "calisthenic" "more calisthenic" "most calisthenic" "calisthenicly" ;
-lin hygienic_A = mkA "hygienic" "more hygienic" "most hygienic" "hygienicly" ;
-lin unhygienic_A = mkA "unhygienic" "more unhygienic" "most unhygienic" "unhygienicly" ;
-lin hellenic_A = mkA "hellenic" "more hellenic" "most hellenic" "hellenicly" ;
-lin philhellenic_A = mkA "philhellenic" "more philhellenic" "most philhellenic" "philhellenicly" ;
-lin splenic_A = mkA "splenic" "more splenic" "most splenic" "splenicly" ;
-lin acetylenic_A = mkA "acetylenic" "more acetylenic" "most acetylenic" "acetylenicly" ;
-lin ecumenic_A = mkA "ecumenic" "more ecumenic" "most ecumenic" "ecumenicly" ;
-lin phrenic_A = mkA "phrenic" "more phrenic" "most phrenic" "phrenicly" ;
-lin hebephrenic_A = mkA "hebephrenic" "more hebephrenic" "most hebephrenic" "hebephrenicly" ;
-lin schizophrenic_A = mkA "schizophrenic" "more schizophrenic" "most schizophrenic" "schizophrenicly" ;
-lin irenic_A = mkA "irenic" "more irenic" "most irenic" "irenicly" ;
-lin neotenic_A = mkA "neotenic" "more neotenic" "most neotenic" "neotenicly" ;
-lin axenic_A = mkA "axenic" "more axenic" "most axenic" "axenicly" ;
-lin algolagnic_A = mkA "algolagnic" "more algolagnic" "most algolagnic" "algolagnicly" ;
-lin pyrotechnic_A = mkA "pyrotechnic" "more pyrotechnic" "most pyrotechnic" "pyrotechnicly" ;
-lin ethnic_A = mkA "ethnic" "more ethnic" "most ethnic" "ethnicly" ;
-lin multiethnic_A = mkA "multiethnic" "more multiethnic" "most multiethnic" "multiethnicly" ;
-lin succinic_A = mkA "succinic" "more succinic" "most succinic" "succinicly" ;
-lin caffeinic_A = mkA "caffeinic" "more caffeinic" "most caffeinic" "caffeinicly" ;
-lin triclinic_A = mkA "triclinic" "more triclinic" "most triclinic" "triclinicly" ;
-lin monoclinic_A = mkA "monoclinic" "more monoclinic" "most monoclinic" "monoclinicly" ;
-lin myelinic_A = mkA "myelinic" "more myelinic" "most myelinic" "myelinicly" ;
-lin brahminic_A = mkA "brahminic" "more brahminic" "most brahminic" "brahminicly" ;
-lin chromatinic_A = mkA "chromatinic" "more chromatinic" "most chromatinic" "chromatinicly" ;
-lin achromatinic_A = mkA "achromatinic" "more achromatinic" "most achromatinic" "achromatinicly" ;
-lin actinic_A = mkA "actinic" "more actinic" "most actinic" "actinicly" ;
-lin auxinic_A = mkA "auxinic" "more auxinic" "most auxinic" "auxinicly" ;
-lin tannic_A = mkA "tannic" "more tannic" "most tannic" "tannicly" ;
-lin britannic_A = mkA "britannic" "more britannic" "most britannic" "britannicly" ;
-lin stannic_A = mkA "stannic" "more stannic" "most stannic" "stannicly" ;
-lin carbonic_A = mkA "carbonic" "more carbonic" "most carbonic" "carbonicly" ;
-lin bubonic_A = mkA "bubonic" "more bubonic" "most bubonic" "bubonicly" ;
-lin conic_A = mkA "conic" "more conic" "most conic" "conicly" ;
-lin laconic_A = mkA "laconic" "more laconic" "most laconic" "laconicly" ;
-lin iconic_A = mkA "iconic" "more iconic" "most iconic" "iconicly" ;
-lin hedonic_A = mkA "hedonic" "more hedonic" "most hedonic" "hedonicly" ;
-lin boustrophedonic_A = mkA "boustrophedonic" "more boustrophedonic" "most boustrophedonic" "boustrophedonicly" ;
-lin sardonic_A = mkA "sardonic" "more sardonic" "most sardonic" "sardonicly" ;
-lin napoleonic_A = mkA "napoleonic" "more napoleonic" "most napoleonic" "napoleonicly" ;
-lin isogonic_A = mkA "isogonic" "more isogonic" "most isogonic" "isogonicly" ;
-lin endergonic_A = mkA "endergonic" "more endergonic" "most endergonic" "endergonicly" ;
-lin exergonic_A = mkA "exergonic" "more exergonic" "most exergonic" "exergonicly" ;
-lin phonic_A = mkA "phonic" "more phonic" "most phonic" "phonicly" ;
-lin aphonic_A = mkA "aphonic" "more aphonic" "most aphonic" "aphonicly" ;
-lin quadraphonic_A = mkA "quadraphonic" "more quadraphonic" "most quadraphonic" "quadraphonicly" ;
-lin telephonic_A = mkA "telephonic" "more telephonic" "most telephonic" "telephonicly" ;
-lin radiotelephonic_A = mkA "radiotelephonic" "more radiotelephonic" "most radiotelephonic" "radiotelephonicly" ;
-lin symphonic_A = mkA "symphonic" "more symphonic" "most symphonic" "symphonicly" ;
-lin stereophonic_A = mkA "stereophonic" "more stereophonic" "most stereophonic" "stereophonicly" ;
-lin allophonic_A = mkA "allophonic" "more allophonic" "most allophonic" "allophonicly" ;
-lin homophonic_A = mkA "homophonic" "more homophonic" "most homophonic" "homophonicly" ;
-lin monophonic_A = mkA "monophonic" "more monophonic" "most monophonic" "monophonicly" ;
-lin quadrophonic_A = mkA "quadrophonic" "more quadrophonic" "most quadrophonic" "quadrophonicly" ;
-lin euphonic_A = mkA "euphonic" "more euphonic" "most euphonic" "euphonicly" ;
-lin polyphonic_A = mkA "polyphonic" "more polyphonic" "most polyphonic" "polyphonicly" ;
-lin ionic_A = mkA "ionic" "more ionic" "most ionic" "ionicly" ;
-lin bionic_A = mkA "bionic" "more bionic" "most bionic" "bionicly" ;
-lin postganglionic_A = mkA "postganglionic" "more postganglionic" "most postganglionic" "postganglionicly" ;
-lin thermionic_A = mkA "thermionic" "more thermionic" "most thermionic" "thermionicly" ;
-lin anionic_A = mkA "anionic" "more anionic" "most anionic" "anionicly" ;
-lin nonionic_A = mkA "nonionic" "more nonionic" "most nonionic" "nonionicly" ;
-lin vibrionic_A = mkA "vibrionic" "more vibrionic" "most vibrionic" "vibrionicly" ;
-lin chorionic_A = mkA "chorionic" "more chorionic" "most chorionic" "chorionicly" ;
-lin histrionic_A = mkA "histrionic" "more histrionic" "most histrionic" "histrionicly" ;
-lin cationic_A = mkA "cationic" "more cationic" "most cationic" "cationicly" ;
-lin avionic_A = mkA "avionic" "more avionic" "most avionic" "avionicly" ;
-lin aniseikonic_A = mkA "aniseikonic" "more aniseikonic" "most aniseikonic" "aniseikonicly" ;
-lin clonic_A = mkA "clonic" "more clonic" "most clonic" "clonicly" ;
-lin cyclonic_A = mkA "cyclonic" "more cyclonic" "most cyclonic" "cyclonicly" ;
-lin anticyclonic_A = mkA "anticyclonic" "more anticyclonic" "most anticyclonic" "anticyclonicly" ;
-lin colonic_A = mkA "colonic" "more colonic" "most colonic" "colonicly" ;
-lin demonic_A = mkA "demonic" "more demonic" "most demonic" "demonicly" ;
-lin cacodemonic_A = mkA "cacodemonic" "more cacodemonic" "most cacodemonic" "cacodemonicly" ;
-lin eudemonic_A = mkA "eudemonic" "more eudemonic" "most eudemonic" "eudemonicly" ;
-lin mnemonic_A = mkA "mnemonic" "more mnemonic" "most mnemonic" "mnemonicly" ;
-lin antimonic_A = mkA "antimonic" "more antimonic" "most antimonic" "antimonicly" ;
-lin harmonic_A = mkA "harmonic" "more harmonic" "most harmonic" "harmonicly" ;
-lin philharmonic_A = mkA "philharmonic" "more philharmonic" "most philharmonic" "philharmonicly" ;
-lin nonharmonic_A = mkA "nonharmonic" "more nonharmonic" "most nonharmonic" "nonharmonicly" ;
-lin pneumonic_A = mkA "pneumonic" "more pneumonic" "most pneumonic" "pneumonicly" ;
-lin canonic_A = mkA "canonic" "more canonic" "most canonic" "canonicly" ;
-lin macaronic_A = mkA "macaronic" "more macaronic" "most macaronic" "macaronicly" ;
-lin chronic_A = mkA "chronic" "more chronic" "most chronic" "chronicly" ;
-lin diachronic_A = mkA "diachronic" "more diachronic" "most diachronic" "diachronicly" ;
-lin anachronic_A = mkA "anachronic" "more anachronic" "most anachronic" "anachronicly" ;
-lin synchronic_A = mkA "synchronic" "more synchronic" "most synchronic" "synchronicly" ;
-lin allochronic_A = mkA "allochronic" "more allochronic" "most allochronic" "allochronicly" ;
-lin ironic_A = mkA "ironic" "more ironic" "most ironic" "ironicly" ;
-lin boronic_A = mkA "boronic" "more boronic" "most boronic" "boronicly" ;
-lin moronic_A = mkA "moronic" "more moronic" "most moronic" "moronicly" ;
-lin electronic_A = mkA "electronic" "more electronic" "most electronic" "electronicly" ;
-lin microelectronic_A = mkA "microelectronic" "more microelectronic" "most microelectronic" "microelectronicly" ;
-lin aleuronic_A = mkA "aleuronic" "more aleuronic" "most aleuronic" "aleuronicly" ;
-lin sonic_A = mkA "sonic" "more sonic" "most sonic" "sonicly" ;
-lin masonic_A = mkA "masonic" "more masonic" "most masonic" "masonicly" ;
-lin infrasonic_A = mkA "infrasonic" "more infrasonic" "most infrasonic" "infrasonicly" ;
-lin ultrasonic_A = mkA "ultrasonic" "more ultrasonic" "most ultrasonic" "ultrasonicly" ;
-lin subsonic_A = mkA "subsonic" "more subsonic" "most subsonic" "subsonicly" ;
-lin mesonic_A = mkA "mesonic" "more mesonic" "most mesonic" "mesonicly" ;
-lin supersonic_A = mkA "supersonic" "more supersonic" "most supersonic" "supersonicly" ;
-lin tonic_A = mkA "tonic" "more tonic" "most tonic" "tonicly" ;
-lin atonic_A = mkA "atonic" "more atonic" "most atonic" "atonicly" ;
-lin diatonic_A = mkA "diatonic" "more diatonic" "most diatonic" "diatonicly" ;
-lin platonic_A = mkA "platonic" "more platonic" "most platonic" "platonicly" ;
-lin catatonic_A = mkA "catatonic" "more catatonic" "most catatonic" "catatonicly" ;
-lin pentatonic_A = mkA "pentatonic" "more pentatonic" "most pentatonic" "pentatonicly" ;
-lin tectonic_A = mkA "tectonic" "more tectonic" "most tectonic" "tectonicly" ;
-lin acetonic_A = mkA "acetonic" "more acetonic" "most acetonic" "acetonicly" ;
-lin planktonic_A = mkA "planktonic" "more planktonic" "most planktonic" "planktonicly" ;
-lin monotonic_A = mkA "monotonic" "more monotonic" "most monotonic" "monotonicly" ;
-lin nonmonotonic_A = mkA "nonmonotonic" "more nonmonotonic" "most nonmonotonic" "nonmonotonicly" ;
-lin hypotonic_A = mkA "hypotonic" "more hypotonic" "most hypotonic" "hypotonicly" ;
-lin isotonic_A = mkA "isotonic" "more isotonic" "most isotonic" "isotonicly" ;
-lin myotonic_A = mkA "myotonic" "more myotonic" "most myotonic" "myotonicly" ;
-lin hypertonic_A = mkA "hypertonic" "more hypertonic" "most hypertonic" "hypertonicly" ;
-lin teutonic_A = mkA "teutonic" "more teutonic" "most teutonic" "teutonicly" ;
-lin slavonic_A = mkA "slavonic" "more slavonic" "most slavonic" "slavonicly" ;
-lin embryonic_A = mkA "embryonic" "more embryonic" "most embryonic" "embryonicly" ;
-lin cryonic_A = mkA "cryonic" "more cryonic" "most cryonic" "cryonicly" ;
-lin azonic_A = mkA "azonic" "more azonic" "most azonic" "azonicly" ;
-lin acapnic_A = mkA "acapnic" "more acapnic" "most acapnic" "acapnicly" ;
-lin punic_A = mkA "punic" "more punic" "most punic" "punicly" ;
-lin runic_A = mkA "runic" "more runic" "most runic" "runicly" ;
-lin misogynic_A = mkA "misogynic" "more misogynic" "most misogynic" "misogynicly" ;
-lin echoic_A = mkA "echoic" "more echoic" "most echoic" "echoicly" ;
-lin anechoic_A = mkA "anechoic" "more anechoic" "most anechoic" "anechoicly" ;
-lin nonechoic_A = mkA "nonechoic" "more nonechoic" "most nonechoic" "nonechoicly" ;
-lin heroic_A = mkA "heroic" "more heroic" "most heroic" "heroicly" ;
-lin pleochroic_A = mkA "pleochroic" "more pleochroic" "most pleochroic" "pleochroicly" ;
-lin bistroic_A = mkA "bistroic" "more bistroic" "most bistroic" "bistroicly" ;
-lin allantoic_A = mkA "allantoic" "more allantoic" "most allantoic" "allantoicly" ;
-lin azoic_A = mkA "azoic" "more azoic" "most azoic" "azoicly" ;
-lin epizoic_A = mkA "epizoic" "more epizoic" "most epizoic" "epizoicly" ;
-lin benzoic_A = mkA "benzoic" "more benzoic" "most benzoic" "benzoicly" ;
-lin archeozoic_A = mkA "archeozoic" "more archeozoic" "most archeozoic" "archeozoicly" ;
-lin holozoic_A = mkA "holozoic" "more holozoic" "most holozoic" "holozoicly" ;
-lin proterozoic_A = mkA "proterozoic" "more proterozoic" "most proterozoic" "proterozoicly" ;
-lin entozoic_A = mkA "entozoic" "more entozoic" "most entozoic" "entozoicly" ;
-lin priapic_A = mkA "priapic" "more priapic" "most priapic" "priapicly" ;
-lin epic_A = mkA "epic" "more epic" "most epic" "epicly" ;
-lin olympic_A = mkA "olympic" "more olympic" "most olympic" "olympicly" ;
-lin megascopic_A = mkA "megascopic" "more megascopic" "most megascopic" "megascopicly" ;
-lin telescopic_A = mkA "telescopic" "more telescopic" "most telescopic" "telescopicly" ;
-lin nontelescopic_A = mkA "nontelescopic" "more nontelescopic" "most nontelescopic" "nontelescopicly" ;
-lin basiscopic_A = mkA "basiscopic" "more basiscopic" "most basiscopic" "basiscopicly" ;
-lin kaleidoscopic_A = mkA "kaleidoscopic" "more kaleidoscopic" "most kaleidoscopic" "kaleidoscopicly" ;
-lin endoscopic_A = mkA "endoscopic" "more endoscopic" "most endoscopic" "endoscopicly" ;
-lin stereoscopic_A = mkA "stereoscopic" "more stereoscopic" "most stereoscopic" "stereoscopicly" ;
-lin bronchoscopic_A = mkA "bronchoscopic" "more bronchoscopic" "most bronchoscopic" "bronchoscopicly" ;
-lin acroscopic_A = mkA "acroscopic" "more acroscopic" "most acroscopic" "acroscopicly" ;
-lin macroscopic_A = mkA "macroscopic" "more macroscopic" "most macroscopic" "macroscopicly" ;
-lin microscopic_A = mkA "microscopic" "more microscopic" "most microscopic" "microscopicly" ;
-lin ultramicroscopic_A = mkA "ultramicroscopic" "more ultramicroscopic" "most ultramicroscopic" "ultramicroscopicly" ;
-lin hygroscopic_A = mkA "hygroscopic" "more hygroscopic" "most hygroscopic" "hygroscopicly" ;
-lin spectroscopic_A = mkA "spectroscopic" "more spectroscopic" "most spectroscopic" "spectroscopicly" ;
-lin gyroscopic_A = mkA "gyroscopic" "more gyroscopic" "most gyroscopic" "gyroscopicly" ;
-lin deuteranopic_A = mkA "deuteranopic" "more deuteranopic" "most deuteranopic" "deuteranopicly" ;
-lin tritanopic_A = mkA "tritanopic" "more tritanopic" "most tritanopic" "tritanopicly" ;
-lin protanopic_A = mkA "protanopic" "more protanopic" "most protanopic" "protanopicly" ;
-lin hyperopic_A = mkA "hyperopic" "more hyperopic" "most hyperopic" "hyperopicly" ;
-lin anthropic_A = mkA "anthropic" "more anthropic" "most anthropic" "anthropicly" ;
-lin philanthropic_A = mkA "philanthropic" "more philanthropic" "most philanthropic" "philanthropicly" ;
-lin misanthropic_A = mkA "misanthropic" "more misanthropic" "most misanthropic" "misanthropicly" ;
-lin ametropic_A = mkA "ametropic" "more ametropic" "most ametropic" "ametropicly" ;
-lin emmetropic_A = mkA "emmetropic" "more emmetropic" "most emmetropic" "emmetropicly" ;
-lin anisometropic_A = mkA "anisometropic" "more anisometropic" "most anisometropic" "anisometropicly" ;
-lin isentropic_A = mkA "isentropic" "more isentropic" "most isentropic" "isentropicly" ;
-lin adrenocorticotropic_A = mkA "adrenocorticotropic" "more adrenocorticotropic" "most adrenocorticotropic" "adrenocorticotropicly" ;
-lin gonadotropic_A = mkA "gonadotropic" "more gonadotropic" "most gonadotropic" "gonadotropicly" ;
-lin ergotropic_A = mkA "ergotropic" "more ergotropic" "most ergotropic" "ergotropicly" ;
-lin trophotropic_A = mkA "trophotropic" "more trophotropic" "most trophotropic" "trophotropicly" ;
-lin allotropic_A = mkA "allotropic" "more allotropic" "most allotropic" "allotropicly" ;
-lin aeolotropic_A = mkA "aeolotropic" "more aeolotropic" "most aeolotropic" "aeolotropicly" ;
-lin neurotropic_A = mkA "neurotropic" "more neurotropic" "most neurotropic" "neurotropicly" ;
-lin isotropic_A = mkA "isotropic" "more isotropic" "most isotropic" "isotropicly" ;
-lin anisotropic_A = mkA "anisotropic" "more anisotropic" "most anisotropic" "anisotropicly" ;
-lin extropic_A = mkA "extropic" "more extropic" "most extropic" "extropicly" ;
-lin ectopic_A = mkA "ectopic" "more ectopic" "most ectopic" "ectopicly" ;
-lin isotopic_A = mkA "isotopic" "more isotopic" "most isotopic" "isotopicly" ;
-lin amblyopic_A = mkA "amblyopic" "more amblyopic" "most amblyopic" "amblyopicly" ;
-lin myopic_A = mkA "myopic" "more myopic" "most myopic" "myopicly" ;
-lin angiocarpic_A = mkA "angiocarpic" "more angiocarpic" "most angiocarpic" "angiocarpicly" ;
-lin monocarpic_A = mkA "monocarpic" "more monocarpic" "most monocarpic" "monocarpicly" ;
-lin antitypic_A = mkA "antitypic" "more antitypic" "most antitypic" "antitypicly" ;
-lin biotypic_A = mkA "biotypic" "more biotypic" "most biotypic" "biotypicly" ;
-lin monotypic_A = mkA "monotypic" "more monotypic" "most monotypic" "monotypicly" ;
-lin autotypic_A = mkA "autotypic" "more autotypic" "most autotypic" "autotypicly" ;
-lin baric_A = mkA "baric" "more baric" "most baric" "baricly" ;
-lin barbaric_A = mkA "barbaric" "more barbaric" "most barbaric" "barbaricly" ;
-lin stearic_A = mkA "stearic" "more stearic" "most stearic" "stearicly" ;
-lin tartaric_A = mkA "tartaric" "more tartaric" "most tartaric" "tartaricly" ;
-lin picric_A = mkA "picric" "more picric" "most picric" "picricly" ;
-lin calendric_A = mkA "calendric" "more calendric" "most calendric" "calendricly" ;
-lin hydric_A = mkA "hydric" "more hydric" "most hydric" "hydricly" ;
-lin achlorhydric_A = mkA "achlorhydric" "more achlorhydric" "most achlorhydric" "achlorhydricly" ;
-lin ceric_A = mkA "ceric" "more ceric" "most ceric" "cericly" ;
-lin aspheric_A = mkA "aspheric" "more aspheric" "most aspheric" "asphericly" ;
-lin hemispheric_A = mkA "hemispheric" "more hemispheric" "most hemispheric" "hemisphericly" ;
-lin atmospheric_A = mkA "atmospheric" "more atmospheric" "most atmospheric" "atmosphericly" ;
-lin blastospheric_A = mkA "blastospheric" "more blastospheric" "most blastospheric" "blastosphericly" ;
-lin choleric_A = mkA "choleric" "more choleric" "most choleric" "cholericly" ;
-lin metameric_A = mkA "metameric" "more metameric" "most metameric" "metamericly" ;
-lin chimeric_A = mkA "chimeric" "more chimeric" "most chimeric" "chimericly" ;
-lin homeric_A = mkA "homeric" "more homeric" "most homeric" "homericly" ;
-lin arthromeric_A = mkA "arthromeric" "more arthromeric" "most arthromeric" "arthromericly" ;
-lin centromeric_A = mkA "centromeric" "more centromeric" "most centromeric" "centromericly" ;
-lin isomeric_A = mkA "isomeric" "more isomeric" "most isomeric" "isomericly" ;
-lin blastomeric_A = mkA "blastomeric" "more blastomeric" "most blastomeric" "blastomericly" ;
-lin mesmeric_A = mkA "mesmeric" "more mesmeric" "most mesmeric" "mesmericly" ;
-lin numeric_A = mkA "numeric" "more numeric" "most numeric" "numericly" ;
-lin alphanumeric_A = mkA "alphanumeric" "more alphanumeric" "most alphanumeric" "alphanumericly" ;
-lin polymeric_A = mkA "polymeric" "more polymeric" "most polymeric" "polymericly" ;
-lin generic_A = mkA "generic" "more generic" "most generic" "genericly" ;
-lin bigeneric_A = mkA "bigeneric" "more bigeneric" "most bigeneric" "bigenericly" ;
-lin congeneric_A = mkA "congeneric" "more congeneric" "most congeneric" "congenericly" ;
-lin anicteric_A = mkA "anicteric" "more anicteric" "most anicteric" "anictericly" ;
-lin enteric_A = mkA "enteric" "more enteric" "most enteric" "entericly" ;
-lin mesenteric_A = mkA "mesenteric" "more mesenteric" "most mesenteric" "mesentericly" ;
-lin amphoteric_A = mkA "amphoteric" "more amphoteric" "most amphoteric" "amphotericly" ;
-lin esoteric_A = mkA "esoteric" "more esoteric" "most esoteric" "esotericly" ;
-lin exoteric_A = mkA "exoteric" "more exoteric" "most exoteric" "exotericly" ;
-lin hysteric_A = mkA "hysteric" "more hysteric" "most hysteric" "hystericly" ;
-lin xeric_A = mkA "xeric" "more xeric" "most xeric" "xericly" ;
-lin oneiric_A = mkA "oneiric" "more oneiric" "most oneiric" "oneiricly" ;
-lin empiric_A = mkA "empiric" "more empiric" "most empiric" "empiricly" ;
-lin chivalric_A = mkA "chivalric" "more chivalric" "most chivalric" "chivalricly" ;
-lin boric_A = mkA "boric" "more boric" "most boric" "boricly" ;
-lin doric_A = mkA "doric" "more doric" "most doric" "doricly" ;
-lin meteoric_A = mkA "meteoric" "more meteoric" "most meteoric" "meteoricly" ;
-lin micrometeoric_A = mkA "micrometeoric" "more micrometeoric" "most micrometeoric" "micrometeoricly" ;
-lin phantasmagoric_A = mkA "phantasmagoric" "more phantasmagoric" "most phantasmagoric" "phantasmagoricly" ;
-lin allegoric_A = mkA "allegoric" "more allegoric" "most allegoric" "allegoricly" ;
-lin categoric_A = mkA "categoric" "more categoric" "most categoric" "categoricly" ;
-lin choric_A = mkA "choric" "more choric" "most choric" "choricly" ;
-lin anaphoric_A = mkA "anaphoric" "more anaphoric" "most anaphoric" "anaphoricly" ;
-lin amphoric_A = mkA "amphoric" "more amphoric" "most amphoric" "amphoricly" ;
-lin camphoric_A = mkA "camphoric" "more camphoric" "most camphoric" "camphoricly" ;
-lin phosphoric_A = mkA "phosphoric" "more phosphoric" "most phosphoric" "phosphoricly" ;
-lin dysphoric_A = mkA "dysphoric" "more dysphoric" "most dysphoric" "dysphoricly" ;
-lin euphoric_A = mkA "euphoric" "more euphoric" "most euphoric" "euphoricly" ;
-lin caloric_A = mkA "caloric" "more caloric" "most caloric" "caloricly" ;
-lin noncaloric_A = mkA "noncaloric" "more noncaloric" "most noncaloric" "noncaloricly" ;
-lin hydrochloric_A = mkA "hydrochloric" "more hydrochloric" "most hydrochloric" "hydrochloricly" ;
-lin pyloric_A = mkA "pyloric" "more pyloric" "most pyloric" "pyloricly" ;
-lin ascosporic_A = mkA "ascosporic" "more ascosporic" "most ascosporic" "ascosporicly" ;
-lin carposporic_A = mkA "carposporic" "more carposporic" "most carposporic" "carposporicly" ;
-lin arthrosporic_A = mkA "arthrosporic" "more arthrosporic" "most arthrosporic" "arthrosporicly" ;
-lin historic_A = mkA "historic" "more historic" "most historic" "historicly" ;
-lin prehistoric_A = mkA "prehistoric" "more prehistoric" "most prehistoric" "prehistoricly" ;
-lin cupric_A = mkA "cupric" "more cupric" "most cupric" "cupricly" ;
-lin ferric_A = mkA "ferric" "more ferric" "most ferric" "ferricly" ;
-lin amphitheatric_A = mkA "amphitheatric" "more amphitheatric" "most amphitheatric" "amphitheatricly" ;
-lin pediatric_A = mkA "pediatric" "more pediatric" "most pediatric" "pediatricly" ;
-lin psychiatric_A = mkA "psychiatric" "more psychiatric" "most psychiatric" "psychiatricly" ;
-lin neuropsychiatric_A = mkA "neuropsychiatric" "more neuropsychiatric" "most neuropsychiatric" "neuropsychiatricly" ;
-lin geriatric_A = mkA "geriatric" "more geriatric" "most geriatric" "geriatricly" ;
-lin sympatric_A = mkA "sympatric" "more sympatric" "most sympatric" "sympatricly" ;
-lin allopatric_A = mkA "allopatric" "more allopatric" "most allopatric" "allopatricly" ;
-lin electric_A = mkA "electric" "more electric" "most electric" "electricly" ;
-lin thermoelectric_A = mkA "thermoelectric" "more thermoelectric" "most thermoelectric" "thermoelectricly" ;
-lin hydroelectric_A = mkA "hydroelectric" "more hydroelectric" "most hydroelectric" "hydroelectricly" ;
-lin pyroelectric_A = mkA "pyroelectric" "more pyroelectric" "most pyroelectric" "pyroelectricly" ;
-lin photoelectric_A = mkA "photoelectric" "more photoelectric" "most photoelectric" "photoelectricly" ;
-lin piezoelectric_A = mkA "piezoelectric" "more piezoelectric" "most piezoelectric" "piezoelectricly" ;
-lin metric_A = mkA "metric" "more metric" "most metric" "metricly" ;
-lin diametric_A = mkA "diametric" "more diametric" "most diametric" "diametricly" ;
-lin parametric_A = mkA "parametric" "more parametric" "most parametric" "parametricly" ;
-lin nonparametric_A = mkA "nonparametric" "more nonparametric" "most nonparametric" "nonparametricly" ;
-lin tetrametric_A = mkA "tetrametric" "more tetrametric" "most tetrametric" "tetrametricly" ;
-lin acidimetric_A = mkA "acidimetric" "more acidimetric" "most acidimetric" "acidimetricly" ;
-lin calorimetric_A = mkA "calorimetric" "more calorimetric" "most calorimetric" "calorimetricly" ;
-lin colorimetric_A = mkA "colorimetric" "more colorimetric" "most colorimetric" "colorimetricly" ;
-lin symmetric_A = mkA "symmetric" "more symmetric" "most symmetric" "symmetricly" ;
-lin asymmetric_A = mkA "asymmetric" "more asymmetric" "most asymmetric" "asymmetricly" ;
-lin unsymmetric_A = mkA "unsymmetric" "more unsymmetric" "most unsymmetric" "unsymmetricly" ;
-lin viscometric_A = mkA "viscometric" "more viscometric" "most viscometric" "viscometricly" ;
-lin geometric_A = mkA "geometric" "more geometric" "most geometric" "geometricly" ;
-lin protogeometric_A = mkA "protogeometric" "more protogeometric" "most protogeometric" "protogeometricly" ;
-lin algometric_A = mkA "algometric" "more algometric" "most algometric" "algometricly" ;
-lin psychometric_A = mkA "psychometric" "more psychometric" "most psychometric" "psychometricly" ;
-lin audiometric_A = mkA "audiometric" "more audiometric" "most audiometric" "audiometricly" ;
-lin stoichiometric_A = mkA "stoichiometric" "more stoichiometric" "most stoichiometric" "stoichiometricly" ;
-lin craniometric_A = mkA "craniometric" "more craniometric" "most craniometric" "craniometricly" ;
-lin allometric_A = mkA "allometric" "more allometric" "most allometric" "allometricly" ;
-lin bolometric_A = mkA "bolometric" "more bolometric" "most bolometric" "bolometricly" ;
-lin anemometric_A = mkA "anemometric" "more anemometric" "most anemometric" "anemometricly" ;
-lin thermometric_A = mkA "thermometric" "more thermometric" "most thermometric" "thermometricly" ;
-lin actinometric_A = mkA "actinometric" "more actinometric" "most actinometric" "actinometricly" ;
-lin econometric_A = mkA "econometric" "more econometric" "most econometric" "econometricly" ;
-lin trigonometric_A = mkA "trigonometric" "more trigonometric" "most trigonometric" "trigonometricly" ;
-lin anthropometric_A = mkA "anthropometric" "more anthropometric" "most anthropometric" "anthropometricly" ;
-lin barometric_A = mkA "barometric" "more barometric" "most barometric" "barometricly" ;
-lin hydrometric_A = mkA "hydrometric" "more hydrometric" "most hydrometric" "hydrometricly" ;
-lin thermohydrometric_A = mkA "thermohydrometric" "more thermohydrometric" "most thermohydrometric" "thermohydrometricly" ;
-lin spectrometric_A = mkA "spectrometric" "more spectrometric" "most spectrometric" "spectrometricly" ;
-lin isometric_A = mkA "isometric" "more isometric" "most isometric" "isometricly" ;
-lin anisometric_A = mkA "anisometric" "more anisometric" "most anisometric" "anisometricly" ;
-lin photometric_A = mkA "photometric" "more photometric" "most photometric" "photometricly" ;
-lin cytophotometric_A = mkA "cytophotometric" "more cytophotometric" "most cytophotometric" "cytophotometricly" ;
-lin volumetric_A = mkA "volumetric" "more volumetric" "most volumetric" "volumetricly" ;
-lin bathymetric_A = mkA "bathymetric" "more bathymetric" "most bathymetric" "bathymetricly" ;
-lin obstetric_A = mkA "obstetric" "more obstetric" "most obstetric" "obstetricly" ;
-lin citric_A = mkA "citric" "more citric" "most citric" "citricly" ;
-lin nitric_A = mkA "nitric" "more nitric" "most nitric" "nitricly" ;
-lin centric_A = mkA "centric" "more centric" "most centric" "centricly" ;
-lin acentric_A = mkA "acentric" "more acentric" "most acentric" "acentricly" ;
-lin metacentric_A = mkA "metacentric" "more metacentric" "most metacentric" "metacentricly" ;
-lin eccentric_A = mkA "eccentric" "more eccentric" "most eccentric" "eccentricly" ;
-lin bicentric_A = mkA "bicentric" "more bicentric" "most bicentric" "bicentricly" ;
-lin matricentric_A = mkA "matricentric" "more matricentric" "most matricentric" "matricentricly" ;
-lin patricentric_A = mkA "patricentric" "more patricentric" "most patricentric" "patricentricly" ;
-lin concentric_A = mkA "concentric" "more concentric" "most concentric" "concentricly" ;
-lin endocentric_A = mkA "endocentric" "more endocentric" "most endocentric" "endocentricly" ;
-lin geocentric_A = mkA "geocentric" "more geocentric" "most geocentric" "geocentricly" ;
-lin egocentric_A = mkA "egocentric" "more egocentric" "most egocentric" "egocentricly" ;
-lin heliocentric_A = mkA "heliocentric" "more heliocentric" "most heliocentric" "heliocentricly" ;
-lin telocentric_A = mkA "telocentric" "more telocentric" "most telocentric" "telocentricly" ;
-lin ethnocentric_A = mkA "ethnocentric" "more ethnocentric" "most ethnocentric" "ethnocentricly" ;
-lin anthropocentric_A = mkA "anthropocentric" "more anthropocentric" "most anthropocentric" "anthropocentricly" ;
-lin acrocentric_A = mkA "acrocentric" "more acrocentric" "most acrocentric" "acrocentricly" ;
-lin exocentric_A = mkA "exocentric" "more exocentric" "most exocentric" "exocentricly" ;
-lin catoptric_A = mkA "catoptric" "more catoptric" "most catoptric" "catoptricly" ;
-lin gastric_A = mkA "gastric" "more gastric" "most gastric" "gastricly" ;
-lin epigastric_A = mkA "epigastric" "more epigastric" "most epigastric" "epigastricly" ;
-lin pneumogastric_A = mkA "pneumogastric" "more pneumogastric" "most pneumogastric" "pneumogastricly" ;
-lin uric_A = mkA "uric" "more uric" "most uric" "uricly" ;
-lin mercuric_A = mkA "mercuric" "more mercuric" "most mercuric" "mercuricly" ;
-lin sulphuric_A = mkA "sulphuric" "more sulphuric" "most sulphuric" "sulphuricly" ;
-lin telluric_A = mkA "telluric" "more telluric" "most telluric" "telluricly" ;
-lin albuminuric_A = mkA "albuminuric" "more albuminuric" "most albuminuric" "albuminuricly" ;
-lin uricosuric_A = mkA "uricosuric" "more uricosuric" "most uricosuric" "uricosuricly" ;
-lin lyric_A = mkA "lyric" "more lyric" "most lyric" "lyricly" ;
-lin satyric_A = mkA "satyric" "more satyric" "most satyric" "satyricly" ;
-lin butyric_A = mkA "butyric" "more butyric" "most butyric" "butyricly" ;
-lin basic_A = mkA "basic" "more basic" "most basic" "basicly" ;
-lin abasic_A = mkA "abasic" "more abasic" "most abasic" "abasicly" ;
-lin aphasic_A = mkA "aphasic" "more aphasic" "most aphasic" "aphasicly" ;
-lin anaphasic_A = mkA "anaphasic" "more anaphasic" "most anaphasic" "anaphasicly" ;
-lin analgesic_A = mkA "analgesic" "more analgesic" "most analgesic" "analgesicly" ;
-lin mesic_A = mkA "mesic" "more mesic" "most mesic" "mesicly" ;
-lin amnesic_A = mkA "amnesic" "more amnesic" "most amnesic" "amnesicly" ;
-lin forensic_A = mkA "forensic" "more forensic" "most forensic" "forensicly" ;
-lin intrinsic_A = mkA "intrinsic" "more intrinsic" "most intrinsic" "intrinsicly" ;
-lin extrinsic_A = mkA "extrinsic" "more extrinsic" "most extrinsic" "extrinsicly" ;
-lin thalassic_A = mkA "thalassic" "more thalassic" "most thalassic" "thalassicly" ;
-lin classic_A = mkA "classic" "more classic" "most classic" "classicly" ;
-lin neoclassic_A = mkA "neoclassic" "more neoclassic" "most neoclassic" "neoclassicly" ;
-lin prussic_A = mkA "prussic" "more prussic" "most prussic" "prussicly" ;
-lin banausic_A = mkA "banausic" "more banausic" "most banausic" "banausicly" ;
-lin diabatic_A = mkA "diabatic" "more diabatic" "most diabatic" "diabaticly" ;
-lin adiabatic_A = mkA "adiabatic" "more adiabatic" "most adiabatic" "adiabaticly" ;
-lin anabatic_A = mkA "anabatic" "more anabatic" "most anabatic" "anabaticly" ;
-lin katabatic_A = mkA "katabatic" "more katabatic" "most katabatic" "katabaticly" ;
-lin acrobatic_A = mkA "acrobatic" "more acrobatic" "most acrobatic" "acrobaticly" ;
-lin pancreatic_A = mkA "pancreatic" "more pancreatic" "most pancreatic" "pancreaticly" ;
-lin phreatic_A = mkA "phreatic" "more phreatic" "most phreatic" "phreaticly" ;
-lin cataphatic_A = mkA "cataphatic" "more cataphatic" "most cataphatic" "cataphaticly" ;
-lin aliphatic_A = mkA "aliphatic" "more aliphatic" "most aliphatic" "aliphaticly" ;
-lin emphatic_A = mkA "emphatic" "more emphatic" "most emphatic" "emphaticly" ;
-lin unemphatic_A = mkA "unemphatic" "more unemphatic" "most unemphatic" "unemphaticly" ;
-lin lymphatic_A = mkA "lymphatic" "more lymphatic" "most lymphatic" "lymphaticly" ;
-lin apophatic_A = mkA "apophatic" "more apophatic" "most apophatic" "apophaticly" ;
-lin sciatic_A = mkA "sciatic" "more sciatic" "most sciatic" "sciaticly" ;
-lin asiatic_A = mkA "asiatic" "more asiatic" "most asiatic" "asiaticly" ;
-lin catalatic_A = mkA "catalatic" "more catalatic" "most catalatic" "catalaticly" ;
-lin dramatic_A = mkA "dramatic" "more dramatic" "most dramatic" "dramaticly" ;
-lin undramatic_A = mkA "undramatic" "more undramatic" "most undramatic" "undramaticly" ;
-lin melodramatic_A = mkA "melodramatic" "more melodramatic" "most melodramatic" "melodramaticly" ;
-lin schematic_A = mkA "schematic" "more schematic" "most schematic" "schematicly" ;
-lin thematic_A = mkA "thematic" "more thematic" "most thematic" "thematicly" ;
-lin unthematic_A = mkA "unthematic" "more unthematic" "most unthematic" "unthematicly" ;
-lin emblematic_A = mkA "emblematic" "more emblematic" "most emblematic" "emblematicly" ;
-lin problematic_A = mkA "problematic" "more problematic" "most problematic" "problematicly" ;
-lin cinematic_A = mkA "cinematic" "more cinematic" "most cinematic" "cinematicly" ;
-lin categorematic_A = mkA "categorematic" "more categorematic" "most categorematic" "categorematicly" ;
-lin syncategorematic_A = mkA "syncategorematic" "more syncategorematic" "most syncategorematic" "syncategorematicly" ;
-lin systematic_A = mkA "systematic" "more systematic" "most systematic" "systematicly" ;
-lin unsystematic_A = mkA "unsystematic" "more unsystematic" "most unsystematic" "unsystematicly" ;
-lin biosystematic_A = mkA "biosystematic" "more biosystematic" "most biosystematic" "biosystematicly" ;
-lin pragmatic_A = mkA "pragmatic" "more pragmatic" "most pragmatic" "pragmaticly" ;
-lin syntagmatic_A = mkA "syntagmatic" "more syntagmatic" "most syntagmatic" "syntagmaticly" ;
-lin apothegmatic_A = mkA "apothegmatic" "more apothegmatic" "most apothegmatic" "apothegmaticly" ;
-lin phlegmatic_A = mkA "phlegmatic" "more phlegmatic" "most phlegmatic" "phlegmaticly" ;
-lin bregmatic_A = mkA "bregmatic" "more bregmatic" "most bregmatic" "bregmaticly" ;
-lin paradigmatic_A = mkA "paradigmatic" "more paradigmatic" "most paradigmatic" "paradigmaticly" ;
-lin enigmatic_A = mkA "enigmatic" "more enigmatic" "most enigmatic" "enigmaticly" ;
-lin stigmatic_A = mkA "stigmatic" "more stigmatic" "most stigmatic" "stigmaticly" ;
-lin astigmatic_A = mkA "astigmatic" "more astigmatic" "most astigmatic" "astigmaticly" ;
-lin anastigmatic_A = mkA "anastigmatic" "more anastigmatic" "most anastigmatic" "anastigmaticly" ;
-lin dogmatic_A = mkA "dogmatic" "more dogmatic" "most dogmatic" "dogmaticly" ;
-lin undogmatic_A = mkA "undogmatic" "more undogmatic" "most undogmatic" "undogmaticly" ;
-lin asthmatic_A = mkA "asthmatic" "more asthmatic" "most asthmatic" "asthmaticly" ;
-lin climatic_A = mkA "climatic" "more climatic" "most climatic" "climaticly" ;
-lin bioclimatic_A = mkA "bioclimatic" "more bioclimatic" "most bioclimatic" "bioclimaticly" ;
-lin diagrammatic_A = mkA "diagrammatic" "more diagrammatic" "most diagrammatic" "diagrammaticly" ;
-lin anagrammatic_A = mkA "anagrammatic" "more anagrammatic" "most anagrammatic" "anagrammaticly" ;
-lin epigrammatic_A = mkA "epigrammatic" "more epigrammatic" "most epigrammatic" "epigrammaticly" ;
-lin logogrammatic_A = mkA "logogrammatic" "more logogrammatic" "most logogrammatic" "logogrammaticly" ;
-lin stemmatic_A = mkA "stemmatic" "more stemmatic" "most stemmatic" "stemmaticly" ;
-lin zygomatic_A = mkA "zygomatic" "more zygomatic" "most zygomatic" "zygomaticly" ;
-lin idiomatic_A = mkA "idiomatic" "more idiomatic" "most idiomatic" "idiomaticly" ;
-lin axiomatic_A = mkA "axiomatic" "more axiomatic" "most axiomatic" "axiomaticly" ;
-lin undiplomatic_A = mkA "undiplomatic" "more undiplomatic" "most undiplomatic" "undiplomaticly" ;
-lin aromatic_A = mkA "aromatic" "more aromatic" "most aromatic" "aromaticly" ;
-lin chromatic_A = mkA "chromatic" "more chromatic" "most chromatic" "chromaticly" ;
-lin achromatic_A = mkA "achromatic" "more achromatic" "most achromatic" "achromaticly" ;
-lin dichromatic_A = mkA "dichromatic" "more dichromatic" "most dichromatic" "dichromaticly" ;
-lin trichromatic_A = mkA "trichromatic" "more trichromatic" "most trichromatic" "trichromaticly" ;
-lin panchromatic_A = mkA "panchromatic" "more panchromatic" "most panchromatic" "panchromaticly" ;
-lin monochromatic_A = mkA "monochromatic" "more monochromatic" "most monochromatic" "monochromaticly" ;
-lin apochromatic_A = mkA "apochromatic" "more apochromatic" "most apochromatic" "apochromaticly" ;
-lin polychromatic_A = mkA "polychromatic" "more polychromatic" "most polychromatic" "polychromaticly" ;
-lin somatic_A = mkA "somatic" "more somatic" "most somatic" "somaticly" ;
-lin psychosomatic_A = mkA "psychosomatic" "more psychosomatic" "most psychosomatic" "psychosomaticly" ;
-lin symptomatic_A = mkA "symptomatic" "more symptomatic" "most symptomatic" "symptomaticly" ;
-lin asymptomatic_A = mkA "asymptomatic" "more asymptomatic" "most asymptomatic" "asymptomaticly" ;
-lin automatic_A = mkA "automatic" "more automatic" "most automatic" "automaticly" ;
-lin semiautomatic_A = mkA "semiautomatic" "more semiautomatic" "most semiautomatic" "semiautomaticly" ;
-lin blastodermatic_A = mkA "blastodermatic" "more blastodermatic" "most blastodermatic" "blastodermaticly" ;
-lin schismatic_A = mkA "schismatic" "more schismatic" "most schismatic" "schismaticly" ;
-lin charismatic_A = mkA "charismatic" "more charismatic" "most charismatic" "charismaticly" ;
-lin prismatic_A = mkA "prismatic" "more prismatic" "most prismatic" "prismaticly" ;
-lin traumatic_A = mkA "traumatic" "more traumatic" "most traumatic" "traumaticly" ;
-lin rheumatic_A = mkA "rheumatic" "more rheumatic" "most rheumatic" "rheumaticly" ;
-lin pneumatic_A = mkA "pneumatic" "more pneumatic" "most pneumatic" "pneumaticly" ;
-lin enzymatic_A = mkA "enzymatic" "more enzymatic" "most enzymatic" "enzymaticly" ;
-lin nonenzymatic_A = mkA "nonenzymatic" "more nonenzymatic" "most nonenzymatic" "nonenzymaticly" ;
-lin fanatic_A = mkA "fanatic" "more fanatic" "most fanatic" "fanaticly" ;
-lin morganatic_A = mkA "morganatic" "more morganatic" "most morganatic" "morganaticly" ;
-lin aplanatic_A = mkA "aplanatic" "more aplanatic" "most aplanatic" "aplanaticly" ;
-lin lunatic_A = mkA "lunatic" "more lunatic" "most lunatic" "lunaticly" ;
-lin hepatic_A = mkA "hepatic" "more hepatic" "most hepatic" "hepaticly" ;
-lin idiosyncratic_A = mkA "idiosyncratic" "more idiosyncratic" "most idiosyncratic" "idiosyncraticly" ;
-lin theocratic_A = mkA "theocratic" "more theocratic" "most theocratic" "theocraticly" ;
-lin democratic_A = mkA "democratic" "more democratic" "most democratic" "democraticly" ;
-lin undemocratic_A = mkA "undemocratic" "more undemocratic" "most undemocratic" "undemocraticly" ;
-lin hippocratic_A = mkA "hippocratic" "more hippocratic" "most hippocratic" "hippocraticly" ;
-lin socratic_A = mkA "socratic" "more socratic" "most socratic" "socraticly" ;
-lin presocratic_A = mkA "presocratic" "more presocratic" "most presocratic" "presocraticly" ;
-lin meritocratic_A = mkA "meritocratic" "more meritocratic" "most meritocratic" "meritocraticly" ;
-lin aristocratic_A = mkA "aristocratic" "more aristocratic" "most aristocratic" "aristocraticly" ;
-lin autocratic_A = mkA "autocratic" "more autocratic" "most autocratic" "autocraticly" ;
-lin plutocratic_A = mkA "plutocratic" "more plutocratic" "most plutocratic" "plutocraticly" ;
-lin bureaucratic_A = mkA "bureaucratic" "more bureaucratic" "most bureaucratic" "bureaucraticly" ;
-lin quadratic_A = mkA "quadratic" "more quadratic" "most quadratic" "quadraticly" ;
-lin biquadratic_A = mkA "biquadratic" "more biquadratic" "most biquadratic" "biquadraticly" ;
-lin hieratic_A = mkA "hieratic" "more hieratic" "most hieratic" "hieraticly" ;
-lin operatic_A = mkA "operatic" "more operatic" "most operatic" "operaticly" ;
-lin erratic_A = mkA "erratic" "more erratic" "most erratic" "erraticly" ;
-lin static_A = mkA "static" "more static" "most static" "staticly" ;
-lin astatic_A = mkA "astatic" "more astatic" "most astatic" "astaticly" ;
-lin metastatic_A = mkA "metastatic" "more metastatic" "most metastatic" "metastaticly" ;
-lin ecstatic_A = mkA "ecstatic" "more ecstatic" "most ecstatic" "ecstaticly" ;
-lin homeostatic_A = mkA "homeostatic" "more homeostatic" "most homeostatic" "homeostaticly" ;
-lin orthostatic_A = mkA "orthostatic" "more orthostatic" "most orthostatic" "orthostaticly" ;
-lin bacteriostatic_A = mkA "bacteriostatic" "more bacteriostatic" "most bacteriostatic" "bacteriostaticly" ;
-lin thermostatic_A = mkA "thermostatic" "more thermostatic" "most thermostatic" "thermostaticly" ;
-lin hydrostatic_A = mkA "hydrostatic" "more hydrostatic" "most hydrostatic" "hydrostaticly" ;
-lin electrostatic_A = mkA "electrostatic" "more electrostatic" "most electrostatic" "electrostaticly" ;
-lin aquatic_A = mkA "aquatic" "more aquatic" "most aquatic" "aquaticly" ;
-lin semiaquatic_A = mkA "semiaquatic" "more semiaquatic" "most semiaquatic" "semiaquaticly" ;
-lin didactic_A = mkA "didactic" "more didactic" "most didactic" "didacticly" ;
-lin autodidactic_A = mkA "autodidactic" "more autodidactic" "most autodidactic" "autodidacticly" ;
-lin lactic_A = mkA "lactic" "more lactic" "most lactic" "lacticly" ;
-lin galactic_A = mkA "galactic" "more galactic" "most galactic" "galacticly" ;
-lin extragalactic_A = mkA "extragalactic" "more extragalactic" "most extragalactic" "extragalacticly" ;
-lin intergalactic_A = mkA "intergalactic" "more intergalactic" "most intergalactic" "intergalacticly" ;
-lin anaphylactic_A = mkA "anaphylactic" "more anaphylactic" "most anaphylactic" "anaphylacticly" ;
-lin prophylactic_A = mkA "prophylactic" "more prophylactic" "most prophylactic" "prophylacticly" ;
-lin climactic_A = mkA "climactic" "more climactic" "most climactic" "climacticly" ;
-lin anticlimactic_A = mkA "anticlimactic" "more anticlimactic" "most anticlimactic" "anticlimacticly" ;
-lin ataractic_A = mkA "ataractic" "more ataractic" "most ataractic" "ataracticly" ;
-lin apractic_A = mkA "apractic" "more apractic" "most apractic" "apracticly" ;
-lin syntactic_A = mkA "syntactic" "more syntactic" "most syntactic" "syntacticly" ;
-lin hectic_A = mkA "hectic" "more hectic" "most hectic" "hecticly" ;
-lin cachectic_A = mkA "cachectic" "more cachectic" "most cachectic" "cachecticly" ;
-lin cathectic_A = mkA "cathectic" "more cathectic" "most cathectic" "cathecticly" ;
-lin dialectic_A = mkA "dialectic" "more dialectic" "most dialectic" "dialecticly" ;
-lin catalectic_A = mkA "catalectic" "more catalectic" "most catalectic" "catalecticly" ;
-lin acatalectic_A = mkA "acatalectic" "more acatalectic" "most acatalectic" "acatalecticly" ;
-lin hypercatalectic_A = mkA "hypercatalectic" "more hypercatalectic" "most hypercatalectic" "hypercatalecticly" ;
-lin eclectic_A = mkA "eclectic" "more eclectic" "most eclectic" "eclecticly" ;
-lin apoplectic_A = mkA "apoplectic" "more apoplectic" "most apoplectic" "apoplecticly" ;
-lin dyslectic_A = mkA "dyslectic" "more dyslectic" "most dyslectic" "dyslecticly" ;
-lin pectic_A = mkA "pectic" "more pectic" "most pectic" "pecticly" ;
-lin anorectic_A = mkA "anorectic" "more anorectic" "most anorectic" "anorecticly" ;
-lin pyrectic_A = mkA "pyrectic" "more pyrectic" "most pyrectic" "pyrecticly" ;
-lin apodictic_A = mkA "apodictic" "more apodictic" "most apodictic" "apodicticly" ;
-lin deictic_A = mkA "deictic" "more deictic" "most deictic" "deicticly" ;
-lin epideictic_A = mkA "epideictic" "more epideictic" "most epideictic" "epideicticly" ;
-lin apomictic_A = mkA "apomictic" "more apomictic" "most apomictic" "apomicticly" ;
-lin arctic_A = mkA "arctic" "more arctic" "most arctic" "arcticly" ;
-lin subarctic_A = mkA "subarctic" "more subarctic" "most subarctic" "subarcticly" ;
-lin antarctic_A = mkA "antarctic" "more antarctic" "most antarctic" "antarcticly" ;
-lin alphabetic_A = mkA "alphabetic" "more alphabetic" "most alphabetic" "alphabeticly" ;
-lin analphabetic_A = mkA "analphabetic" "more analphabetic" "most analphabetic" "analphabeticly" ;
-lin diabetic_A = mkA "diabetic" "more diabetic" "most diabetic" "diabeticly" ;
-lin acetic_A = mkA "acetic" "more acetic" "most acetic" "aceticly" ;
-lin copacetic_A = mkA "copacetic" "more copacetic" "most copacetic" "copaceticly" ;
-lin ascetic_A = mkA "ascetic" "more ascetic" "most ascetic" "asceticly" ;
-lin eidetic_A = mkA "eidetic" "more eidetic" "most eidetic" "eideticly" ;
-lin syndetic_A = mkA "syndetic" "more syndetic" "most syndetic" "syndeticly" ;
-lin asyndetic_A = mkA "asyndetic" "more asyndetic" "most asyndetic" "asyndeticly" ;
-lin geodetic_A = mkA "geodetic" "more geodetic" "most geodetic" "geodeticly" ;
-lin exegetic_A = mkA "exegetic" "more exegetic" "most exegetic" "exegeticly" ;
-lin apologetic_A = mkA "apologetic" "more apologetic" "most apologetic" "apologeticly" ;
-lin unapologetic_A = mkA "unapologetic" "more unapologetic" "most unapologetic" "unapologeticly" ;
-lin energetic_A = mkA "energetic" "more energetic" "most energetic" "energeticly" ;
-lin synergetic_A = mkA "synergetic" "more synergetic" "most synergetic" "synergeticly" ;
-lin aphetic_A = mkA "aphetic" "more aphetic" "most aphetic" "apheticly" ;
-lin prophetic_A = mkA "prophetic" "more prophetic" "most prophetic" "propheticly" ;
-lin unprophetic_A = mkA "unprophetic" "more unprophetic" "most unprophetic" "unpropheticly" ;
-lin bathetic_A = mkA "bathetic" "more bathetic" "most bathetic" "batheticly" ;
-lin pathetic_A = mkA "pathetic" "more pathetic" "most pathetic" "patheticly" ;
-lin apathetic_A = mkA "apathetic" "more apathetic" "most apathetic" "apatheticly" ;
-lin antipathetic_A = mkA "antipathetic" "more antipathetic" "most antipathetic" "antipatheticly" ;
-lin sympathetic_A = mkA "sympathetic" "more sympathetic" "most sympathetic" "sympatheticly" ;
-lin parasympathetic_A = mkA "parasympathetic" "more parasympathetic" "most parasympathetic" "parasympatheticly" ;
-lin unsympathetic_A = mkA "unsympathetic" "more unsympathetic" "most unsympathetic" "unsympatheticly" ;
-lin antithetic_A = mkA "antithetic" "more antithetic" "most antithetic" "antitheticly" ;
-lin epenthetic_A = mkA "epenthetic" "more epenthetic" "most epenthetic" "epentheticly" ;
-lin parenthetic_A = mkA "parenthetic" "more parenthetic" "most parenthetic" "parentheticly" ;
-lin synthetic_A = mkA "synthetic" "more synthetic" "most synthetic" "syntheticly" ;
-lin nonsynthetic_A = mkA "nonsynthetic" "more nonsynthetic" "most nonsynthetic" "nonsyntheticly" ;
-lin biosynthetic_A = mkA "biosynthetic" "more biosynthetic" "most biosynthetic" "biosyntheticly" ;
-lin photosynthetic_A = mkA "photosynthetic" "more photosynthetic" "most photosynthetic" "photosyntheticly" ;
-lin nonphotosynthetic_A = mkA "nonphotosynthetic" "more nonphotosynthetic" "most nonphotosynthetic" "nonphotosyntheticly" ;
-lin nomothetic_A = mkA "nomothetic" "more nomothetic" "most nomothetic" "nomotheticly" ;
-lin esthetic_A = mkA "esthetic" "more esthetic" "most esthetic" "estheticly" ;
-lin aesthetic_A = mkA "aesthetic" "more aesthetic" "most aesthetic" "aestheticly" ;
-lin anaesthetic_A = mkA "anaesthetic" "more anaesthetic" "most anaesthetic" "anaestheticly" ;
-lin inaesthetic_A = mkA "inaesthetic" "more inaesthetic" "most inaesthetic" "inaestheticly" ;
-lin anesthetic_A = mkA "anesthetic" "more anesthetic" "most anesthetic" "anestheticly" ;
-lin kinesthetic_A = mkA "kinesthetic" "more kinesthetic" "most kinesthetic" "kinestheticly" ;
-lin synesthetic_A = mkA "synesthetic" "more synesthetic" "most synesthetic" "synestheticly" ;
-lin prosthetic_A = mkA "prosthetic" "more prosthetic" "most prosthetic" "prostheticly" ;
-lin erythropoietic_A = mkA "erythropoietic" "more erythropoietic" "most erythropoietic" "erythropoieticly" ;
-lin hematopoietic_A = mkA "hematopoietic" "more hematopoietic" "most hematopoietic" "hematopoieticly" ;
-lin athletic_A = mkA "athletic" "more athletic" "most athletic" "athleticly" ;
-lin homiletic_A = mkA "homiletic" "more homiletic" "most homiletic" "homileticly" ;
-lin balletic_A = mkA "balletic" "more balletic" "most balletic" "balleticly" ;
-lin anisogametic_A = mkA "anisogametic" "more anisogametic" "most anisogametic" "anisogameticly" ;
-lin mimetic_A = mkA "mimetic" "more mimetic" "most mimetic" "mimeticly" ;
-lin parasympathomimetic_A = mkA "parasympathomimetic" "more parasympathomimetic" "most parasympathomimetic" "parasympathomimeticly" ;
-lin hermetic_A = mkA "hermetic" "more hermetic" "most hermetic" "hermeticly" ;
-lin cosmetic_A = mkA "cosmetic" "more cosmetic" "most cosmetic" "cosmeticly" ;
-lin genetic_A = mkA "genetic" "more genetic" "most genetic" "geneticly" ;
-lin palingenetic_A = mkA "palingenetic" "more palingenetic" "most palingenetic" "palingeneticly" ;
-lin psychogenetic_A = mkA "psychogenetic" "more psychogenetic" "most psychogenetic" "psychogeneticly" ;
-lin biogenetic_A = mkA "biogenetic" "more biogenetic" "most biogenetic" "biogeneticly" ;
-lin abiogenetic_A = mkA "abiogenetic" "more abiogenetic" "most abiogenetic" "abiogeneticly" ;
-lin phylogenetic_A = mkA "phylogenetic" "more phylogenetic" "most phylogenetic" "phylogeneticly" ;
-lin cyanogenetic_A = mkA "cyanogenetic" "more cyanogenetic" "most cyanogenetic" "cyanogeneticly" ;
-lin cenogenetic_A = mkA "cenogenetic" "more cenogenetic" "most cenogenetic" "cenogeneticly" ;
-lin anthropogenetic_A = mkA "anthropogenetic" "more anthropogenetic" "most anthropogenetic" "anthropogeneticly" ;
-lin androgenetic_A = mkA "androgenetic" "more androgenetic" "most androgenetic" "androgeneticly" ;
-lin ontogenetic_A = mkA "ontogenetic" "more ontogenetic" "most ontogenetic" "ontogeneticly" ;
-lin blastogenetic_A = mkA "blastogenetic" "more blastogenetic" "most blastogenetic" "blastogeneticly" ;
-lin autogenetic_A = mkA "autogenetic" "more autogenetic" "most autogenetic" "autogeneticly" ;
-lin cytogenetic_A = mkA "cytogenetic" "more cytogenetic" "most cytogenetic" "cytogeneticly" ;
-lin splenetic_A = mkA "splenetic" "more splenetic" "most splenetic" "spleneticly" ;
-lin frenetic_A = mkA "frenetic" "more frenetic" "most frenetic" "freneticly" ;
-lin phrenetic_A = mkA "phrenetic" "more phrenetic" "most phrenetic" "phreneticly" ;
-lin magnetic_A = mkA "magnetic" "more magnetic" "most magnetic" "magneticly" ;
-lin diamagnetic_A = mkA "diamagnetic" "more diamagnetic" "most diamagnetic" "diamagneticly" ;
-lin paramagnetic_A = mkA "paramagnetic" "more paramagnetic" "most paramagnetic" "paramagneticly" ;
-lin antimagnetic_A = mkA "antimagnetic" "more antimagnetic" "most antimagnetic" "antimagneticly" ;
-lin nonmagnetic_A = mkA "nonmagnetic" "more nonmagnetic" "most nonmagnetic" "nonmagneticly" ;
-lin ferromagnetic_A = mkA "ferromagnetic" "more ferromagnetic" "most ferromagnetic" "ferromagneticly" ;
-lin antiferromagnetic_A = mkA "antiferromagnetic" "more antiferromagnetic" "most antiferromagnetic" "antiferromagneticly" ;
-lin electromagnetic_A = mkA "electromagnetic" "more electromagnetic" "most electromagnetic" "electromagneticly" ;
-lin kinetic_A = mkA "kinetic" "more kinetic" "most kinetic" "kineticly" ;
-lin psychokinetic_A = mkA "psychokinetic" "more psychokinetic" "most psychokinetic" "psychokineticly" ;
-lin hydrokinetic_A = mkA "hydrokinetic" "more hydrokinetic" "most hydrokinetic" "hydrokineticly" ;
-lin cytokinetic_A = mkA "cytokinetic" "more cytokinetic" "most cytokinetic" "cytokineticly" ;
-lin karyokinetic_A = mkA "karyokinetic" "more karyokinetic" "most karyokinetic" "karyokineticly" ;
-lin phonetic_A = mkA "phonetic" "more phonetic" "most phonetic" "phoneticly" ;
-lin cybernetic_A = mkA "cybernetic" "more cybernetic" "most cybernetic" "cyberneticly" ;
-lin dianoetic_A = mkA "dianoetic" "more dianoetic" "most dianoetic" "dianoeticly" ;
-lin poetic_A = mkA "poetic" "more poetic" "most poetic" "poeticly" ;
-lin aposiopetic_A = mkA "aposiopetic" "more aposiopetic" "most aposiopetic" "aposiopeticly" ;
-lin syncretic_A = mkA "syncretic" "more syncretic" "most syncretic" "syncreticly" ;
-lin aphaeretic_A = mkA "aphaeretic" "more aphaeretic" "most aphaeretic" "aphaereticly" ;
-lin theoretic_A = mkA "theoretic" "more theoretic" "most theoretic" "theoreticly" ;
-lin diaphoretic_A = mkA "diaphoretic" "more diaphoretic" "most diaphoretic" "diaphoreticly" ;
-lin electrophoretic_A = mkA "electrophoretic" "more electrophoretic" "most electrophoretic" "electrophoreticly" ;
-lin natriuretic_A = mkA "natriuretic" "more natriuretic" "most natriuretic" "natriureticly" ;
-lin anuretic_A = mkA "anuretic" "more anuretic" "most anuretic" "anureticly" ;
-lin pyretic_A = mkA "pyretic" "more pyretic" "most pyretic" "pyreticly" ;
-lin antipyretic_A = mkA "antipyretic" "more antipyretic" "most antipyretic" "antipyreticly" ;
-lin peripatetic_A = mkA "peripatetic" "more peripatetic" "most peripatetic" "peripateticly" ;
-lin auxetic_A = mkA "auxetic" "more auxetic" "most auxetic" "auxeticly" ;
-lin albitic_A = mkA "albitic" "more albitic" "most albitic" "albiticly" ;
-lin cenobitic_A = mkA "cenobitic" "more cenobitic" "most cenobitic" "cenobiticly" ;
-lin dacitic_A = mkA "dacitic" "more dacitic" "most dacitic" "daciticly" ;
-lin anthracitic_A = mkA "anthracitic" "more anthracitic" "most anthracitic" "anthraciticly" ;
-lin calcitic_A = mkA "calcitic" "more calcitic" "most calcitic" "calciticly" ;
-lin ascitic_A = mkA "ascitic" "more ascitic" "most ascitic" "asciticly" ;
-lin hermaphroditic_A = mkA "hermaphroditic" "more hermaphroditic" "most hermaphroditic" "hermaphroditicly" ;
-lin pseudohermaphroditic_A = mkA "pseudohermaphroditic" "more pseudohermaphroditic" "most pseudohermaphroditic" "pseudohermaphroditicly" ;
-lin augitic_A = mkA "augitic" "more augitic" "most augitic" "augiticly" ;
-lin bronchitic_A = mkA "bronchitic" "more bronchitic" "most bronchitic" "bronchiticly" ;
-lin anorthitic_A = mkA "anorthitic" "more anorthitic" "most anorthitic" "anorthiticly" ;
-lin anaclitic_A = mkA "anaclitic" "more anaclitic" "most anaclitic" "anacliticly" ;
-lin syphilitic_A = mkA "syphilitic" "more syphilitic" "most syphilitic" "syphiliticly" ;
-lin politic_A = mkA "politic" "more politic" "most politic" "politicly" ;
-lin impolitic_A = mkA "impolitic" "more impolitic" "most impolitic" "impoliticly" ;
-lin aerolitic_A = mkA "aerolitic" "more aerolitic" "most aerolitic" "aeroliticly" ;
-lin aplitic_A = mkA "aplitic" "more aplitic" "most aplitic" "apliticly" ;
-lin eremitic_A = mkA "eremitic" "more eremitic" "most eremitic" "eremiticly" ;
-lin semitic_A = mkA "semitic" "more semitic" "most semitic" "semiticly" ;
-lin 'anti-semitic_A' = mkA "anti-semitic" "more anti-semitic" "most anti-semitic" "anti-semiticly" ;
-lin dolomitic_A = mkA "dolomitic" "more dolomitic" "most dolomitic" "dolomiticly" ;
-lin aphanitic_A = mkA "aphanitic" "more aphanitic" "most aphanitic" "aphaniticly" ;
-lin tympanitic_A = mkA "tympanitic" "more tympanitic" "most tympanitic" "tympaniticly" ;
-lin granitic_A = mkA "granitic" "more granitic" "most granitic" "graniticly" ;
-lin austenitic_A = mkA "austenitic" "more austenitic" "most austenitic" "austeniticly" ;
-lin belemnitic_A = mkA "belemnitic" "more belemnitic" "most belemnitic" "belemniticly" ;
-lin ammonitic_A = mkA "ammonitic" "more ammonitic" "most ammonitic" "ammoniticly" ;
-lin bentonitic_A = mkA "bentonitic" "more bentonitic" "most bentonitic" "bentoniticly" ;
-lin sybaritic_A = mkA "sybaritic" "more sybaritic" "most sybaritic" "sybariticly" ;
-lin diacritic_A = mkA "diacritic" "more diacritic" "most diacritic" "diacriticly" ;
-lin dendritic_A = mkA "dendritic" "more dendritic" "most dendritic" "dendriticly" ;
-lin chondritic_A = mkA "chondritic" "more chondritic" "most chondritic" "chondriticly" ;
-lin achondritic_A = mkA "achondritic" "more achondritic" "most achondritic" "achondriticly" ;
-lin neritic_A = mkA "neritic" "more neritic" "most neritic" "neriticly" ;
-lin nephritic_A = mkA "nephritic" "more nephritic" "most nephritic" "nephriticly" ;
-lin arthritic_A = mkA "arthritic" "more arthritic" "most arthritic" "arthriticly" ;
-lin iritic_A = mkA "iritic" "more iritic" "most iritic" "iriticly" ;
-lin meteoritic_A = mkA "meteoritic" "more meteoritic" "most meteoritic" "meteoriticly" ;
-lin micrometeoritic_A = mkA "micrometeoritic" "more micrometeoritic" "most micrometeoritic" "micrometeoriticly" ;
-lin anchoritic_A = mkA "anchoritic" "more anchoritic" "most anchoritic" "anchoriticly" ;
-lin porphyritic_A = mkA "porphyritic" "more porphyritic" "most porphyritic" "porphyriticly" ;
-lin parasitic_A = mkA "parasitic" "more parasitic" "most parasitic" "parasiticly" ;
-lin hemiparasitic_A = mkA "hemiparasitic" "more hemiparasitic" "most hemiparasitic" "hemiparasiticly" ;
-lin semiparasitic_A = mkA "semiparasitic" "more semiparasitic" "most semiparasitic" "semiparasiticly" ;
-lin endoparasitic_A = mkA "endoparasitic" "more endoparasitic" "most endoparasitic" "endoparasiticly" ;
-lin biotitic_A = mkA "biotitic" "more biotitic" "most biotitic" "biotiticly" ;
-lin bauxitic_A = mkA "bauxitic" "more bauxitic" "most bauxitic" "bauxiticly" ;
-lin asphaltic_A = mkA "asphaltic" "more asphaltic" "most asphaltic" "asphalticly" ;
-lin basaltic_A = mkA "basaltic" "more basaltic" "most basaltic" "basalticly" ;
-lin celtic_A = mkA "celtic" "more celtic" "most celtic" "celticly" ;
-lin catapultic_A = mkA "catapultic" "more catapultic" "most catapultic" "catapulticly" ;
-lin antic_A = mkA "antic" "more antic" "most antic" "anticly" ;
-lin pedantic_A = mkA "pedantic" "more pedantic" "most pedantic" "pedanticly" ;
-lin gigantic_A = mkA "gigantic" "more gigantic" "most gigantic" "giganticly" ;
-lin bacchantic_A = mkA "bacchantic" "more bacchantic" "most bacchantic" "bacchanticly" ;
-lin sycophantic_A = mkA "sycophantic" "more sycophantic" "most sycophantic" "sycophanticly" ;
-lin transatlantic_A = mkA "transatlantic" "more transatlantic" "most transatlantic" "transatlanticly" ;
-lin semantic_A = mkA "semantic" "more semantic" "most semantic" "semanticly" ;
-lin synsemantic_A = mkA "synsemantic" "more synsemantic" "most synsemantic" "synsemanticly" ;
-lin autosemantic_A = mkA "autosemantic" "more autosemantic" "most autosemantic" "autosemanticly" ;
-lin lithomantic_A = mkA "lithomantic" "more lithomantic" "most lithomantic" "lithomanticly" ;
-lin romantic_A = mkA "romantic" "more romantic" "most romantic" "romanticly" ;
-lin necromantic_A = mkA "necromantic" "more necromantic" "most necromantic" "necromanticly" ;
-lin chiromantic_A = mkA "chiromantic" "more chiromantic" "most chiromantic" "chiromanticly" ;
-lin unromantic_A = mkA "unromantic" "more unromantic" "most unromantic" "unromanticly" ;
-lin frantic_A = mkA "frantic" "more frantic" "most frantic" "franticly" ;
-lin argentic_A = mkA "argentic" "more argentic" "most argentic" "argenticly" ;
-lin authentic_A = mkA "authentic" "more authentic" "most authentic" "authenticly" ;
-lin inauthentic_A = mkA "inauthentic" "more inauthentic" "most inauthentic" "inauthenticly" ;
-lin lentic_A = mkA "lentic" "more lentic" "most lentic" "lenticly" ;
-lin anthelmintic_A = mkA "anthelmintic" "more anthelmintic" "most anthelmintic" "anthelminticly" ;
-lin endodontic_A = mkA "endodontic" "more endodontic" "most endodontic" "endodonticly" ;
-lin orthodontic_A = mkA "orthodontic" "more orthodontic" "most orthodontic" "orthodonticly" ;
-lin prosthodontic_A = mkA "prosthodontic" "more prosthodontic" "most prosthodontic" "prosthodonticly" ;
-lin periodontic_A = mkA "periodontic" "more periodontic" "most periodontic" "periodonticly" ;
-lin exodontic_A = mkA "exodontic" "more exodontic" "most exodontic" "exodonticly" ;
-lin otic_A = mkA "otic" "more otic" "most otic" "oticly" ;
-lin chaotic_A = mkA "chaotic" "more chaotic" "most chaotic" "chaoticly" ;
-lin robotic_A = mkA "robotic" "more robotic" "most robotic" "roboticly" ;
-lin narcotic_A = mkA "narcotic" "more narcotic" "most narcotic" "narcoticly" ;
-lin actinomycotic_A = mkA "actinomycotic" "more actinomycotic" "most actinomycotic" "actinomycoticly" ;
-lin blastomycotic_A = mkA "blastomycotic" "more blastomycotic" "most blastomycotic" "blastomycoticly" ;
-lin anecdotic_A = mkA "anecdotic" "more anecdotic" "most anecdotic" "anecdoticly" ;
-lin acidotic_A = mkA "acidotic" "more acidotic" "most acidotic" "acidoticly" ;
-lin ergotic_A = mkA "ergotic" "more ergotic" "most ergotic" "ergoticly" ;
-lin zygotic_A = mkA "zygotic" "more zygotic" "most zygotic" "zygoticly" ;
-lin dizygotic_A = mkA "dizygotic" "more dizygotic" "most dizygotic" "dizygoticly" ;
-lin monozygotic_A = mkA "monozygotic" "more monozygotic" "most monozygotic" "monozygoticly" ;
-lin psychotic_A = mkA "psychotic" "more psychotic" "most psychotic" "psychoticly" ;
-lin photic_A = mkA "photic" "more photic" "most photic" "photicly" ;
-lin aphotic_A = mkA "aphotic" "more aphotic" "most aphotic" "aphoticly" ;
-lin acanthotic_A = mkA "acanthotic" "more acanthotic" "most acanthotic" "acanthoticly" ;
-lin biotic_A = mkA "biotic" "more biotic" "most biotic" "bioticly" ;
-lin anabiotic_A = mkA "anabiotic" "more anabiotic" "most anabiotic" "anabioticly" ;
-lin amphibiotic_A = mkA "amphibiotic" "more amphibiotic" "most amphibiotic" "amphibioticly" ;
-lin antibiotic_A = mkA "antibiotic" "more antibiotic" "most antibiotic" "antibioticly" ;
-lin symbiotic_A = mkA "symbiotic" "more symbiotic" "most symbiotic" "symbioticly" ;
-lin macrobiotic_A = mkA "macrobiotic" "more macrobiotic" "most macrobiotic" "macrobioticly" ;
-lin aerobiotic_A = mkA "aerobiotic" "more aerobiotic" "most aerobiotic" "aerobioticly" ;
-lin cryptobiotic_A = mkA "cryptobiotic" "more cryptobiotic" "most cryptobiotic" "cryptobioticly" ;
-lin idiotic_A = mkA "idiotic" "more idiotic" "most idiotic" "idioticly" ;
-lin ateleiotic_A = mkA "ateleiotic" "more ateleiotic" "most ateleiotic" "ateleioticly" ;
-lin meiotic_A = mkA "meiotic" "more meiotic" "most meiotic" "meioticly" ;
-lin bibliotic_A = mkA "bibliotic" "more bibliotic" "most bibliotic" "biblioticly" ;
-lin miotic_A = mkA "miotic" "more miotic" "most miotic" "mioticly" ;
-lin semiotic_A = mkA "semiotic" "more semiotic" "most semiotic" "semioticly" ;
-lin amniotic_A = mkA "amniotic" "more amniotic" "most amniotic" "amnioticly" ;
-lin patriotic_A = mkA "patriotic" "more patriotic" "most patriotic" "patrioticly" ;
-lin unpatriotic_A = mkA "unpatriotic" "more unpatriotic" "most unpatriotic" "unpatrioticly" ;
-lin lotic_A = mkA "lotic" "more lotic" "most lotic" "loticly" ;
-lin alkalotic_A = mkA "alkalotic" "more alkalotic" "most alkalotic" "alkaloticly" ;
-lin nilotic_A = mkA "nilotic" "more nilotic" "most nilotic" "niloticly" ;
-lin ankylotic_A = mkA "ankylotic" "more ankylotic" "most ankylotic" "ankyloticly" ;
-lin demotic_A = mkA "demotic" "more demotic" "most demotic" "demoticly" ;
-lin anastomotic_A = mkA "anastomotic" "more anastomotic" "most anastomotic" "anastomoticly" ;
-lin osmotic_A = mkA "osmotic" "more osmotic" "most osmotic" "osmoticly" ;
-lin zymotic_A = mkA "zymotic" "more zymotic" "most zymotic" "zymoticly" ;
-lin avitaminotic_A = mkA "avitaminotic" "more avitaminotic" "most avitaminotic" "avitaminoticly" ;
-lin pyknotic_A = mkA "pyknotic" "more pyknotic" "most pyknotic" "pyknoticly" ;
-lin zoonotic_A = mkA "zoonotic" "more zoonotic" "most zoonotic" "zoonoticly" ;
-lin hypnotic_A = mkA "hypnotic" "more hypnotic" "most hypnotic" "hypnoticly" ;
-lin agrypnotic_A = mkA "agrypnotic" "more agrypnotic" "most agrypnotic" "agrypnoticly" ;
-lin epizootic_A = mkA "epizootic" "more epizootic" "most epizootic" "epizooticly" ;
-lin enzootic_A = mkA "enzootic" "more enzootic" "most enzootic" "enzooticly" ;
-lin despotic_A = mkA "despotic" "more despotic" "most despotic" "despoticly" ;
-lin necrotic_A = mkA "necrotic" "more necrotic" "most necrotic" "necroticly" ;
-lin hidrotic_A = mkA "hidrotic" "more hidrotic" "most hidrotic" "hidroticly" ;
-lin erotic_A = mkA "erotic" "more erotic" "most erotic" "eroticly" ;
-lin sclerotic_A = mkA "sclerotic" "more sclerotic" "most sclerotic" "scleroticly" ;
-lin arteriosclerotic_A = mkA "arteriosclerotic" "more arteriosclerotic" "most arteriosclerotic" "arterioscleroticly" ;
-lin atherosclerotic_A = mkA "atherosclerotic" "more atherosclerotic" "most atherosclerotic" "atheroscleroticly" ;
-lin homoerotic_A = mkA "homoerotic" "more homoerotic" "most homoerotic" "homoeroticly" ;
-lin autoerotic_A = mkA "autoerotic" "more autoerotic" "most autoerotic" "autoeroticly" ;
-lin chlorotic_A = mkA "chlorotic" "more chlorotic" "most chlorotic" "chloroticly" ;
-lin amaurotic_A = mkA "amaurotic" "more amaurotic" "most amaurotic" "amauroticly" ;
-lin neurotic_A = mkA "neurotic" "more neurotic" "most neurotic" "neuroticly" ;
-lin unneurotic_A = mkA "unneurotic" "more unneurotic" "most unneurotic" "unneuroticly" ;
-lin aponeurotic_A = mkA "aponeurotic" "more aponeurotic" "most aponeurotic" "aponeuroticly" ;
-lin mitotic_A = mkA "mitotic" "more mitotic" "most mitotic" "mitoticly" ;
-lin amitotic_A = mkA "amitotic" "more amitotic" "most amitotic" "amitoticly" ;
-lin asymptotic_A = mkA "asymptotic" "more asymptotic" "most asymptotic" "asymptoticly" ;
-lin epiphytotic_A = mkA "epiphytotic" "more epiphytotic" "most epiphytotic" "epiphytoticly" ;
-lin exotic_A = mkA "exotic" "more exotic" "most exotic" "exoticly" ;
-lin quixotic_A = mkA "quixotic" "more quixotic" "most quixotic" "quixoticly" ;
-lin prokaryotic_A = mkA "prokaryotic" "more prokaryotic" "most prokaryotic" "prokaryoticly" ;
-lin eukaryotic_A = mkA "eukaryotic" "more eukaryotic" "most eukaryotic" "eukaryoticly" ;
-lin azotic_A = mkA "azotic" "more azotic" "most azotic" "azoticly" ;
-lin haptic_A = mkA "haptic" "more haptic" "most haptic" "hapticly" ;
-lin synaptic_A = mkA "synaptic" "more synaptic" "most synaptic" "synapticly" ;
-lin analeptic_A = mkA "analeptic" "more analeptic" "most analeptic" "analepticly" ;
-lin cataleptic_A = mkA "cataleptic" "more cataleptic" "most cataleptic" "catalepticly" ;
-lin epileptic_A = mkA "epileptic" "more epileptic" "most epileptic" "epilepticly" ;
-lin narcoleptic_A = mkA "narcoleptic" "more narcoleptic" "most narcoleptic" "narcolepticly" ;
-lin peptic_A = mkA "peptic" "more peptic" "most peptic" "pepticly" ;
-lin dyspeptic_A = mkA "dyspeptic" "more dyspeptic" "most dyspeptic" "dyspepticly" ;
-lin septic_A = mkA "septic" "more septic" "most septic" "septicly" ;
-lin aseptic_A = mkA "aseptic" "more aseptic" "most aseptic" "asepticly" ;
-lin antiseptic_A = mkA "antiseptic" "more antiseptic" "most antiseptic" "antisepticly" ;
-lin elliptic_A = mkA "elliptic" "more elliptic" "most elliptic" "ellipticly" ;
-lin apopemptic_A = mkA "apopemptic" "more apopemptic" "most apopemptic" "apopempticly" ;
-lin optic_A = mkA "optic" "more optic" "most optic" "opticly" ;
-lin orthoptic_A = mkA "orthoptic" "more orthoptic" "most orthoptic" "orthopticly" ;
-lin panoptic_A = mkA "panoptic" "more panoptic" "most panoptic" "panopticly" ;
-lin synoptic_A = mkA "synoptic" "more synoptic" "most synoptic" "synopticly" ;
-lin apocalyptic_A = mkA "apocalyptic" "more apocalyptic" "most apocalyptic" "apocalypticly" ;
-lin cryptic_A = mkA "cryptic" "more cryptic" "most cryptic" "crypticly" ;
-lin styptic_A = mkA "styptic" "more styptic" "most styptic" "stypticly" ;
-lin cathartic_A = mkA "cathartic" "more cathartic" "most cathartic" "catharticly" ;
-lin bombastic_A = mkA "bombastic" "more bombastic" "most bombastic" "bombasticly" ;
-lin sarcastic_A = mkA "sarcastic" "more sarcastic" "most sarcastic" "sarcasticly" ;
-lin unsarcastic_A = mkA "unsarcastic" "more unsarcastic" "most unsarcastic" "unsarcasticly" ;
-lin stochastic_A = mkA "stochastic" "more stochastic" "most stochastic" "stochasticly" ;
-lin orgiastic_A = mkA "orgiastic" "more orgiastic" "most orgiastic" "orgiasticly" ;
-lin encomiastic_A = mkA "encomiastic" "more encomiastic" "most encomiastic" "encomiasticly" ;
-lin enthusiastic_2_A = mkA "enthusiastic" "more enthusiastic" "most enthusiastic" "enthusiasticly" ;
-lin unenthusiastic_A = mkA "unenthusiastic" "more unenthusiastic" "most unenthusiastic" "unenthusiasticly" ;
-lin overenthusiastic_A = mkA "overenthusiastic" "more overenthusiastic" "most overenthusiastic" "overenthusiasticly" ;
-lin trophoblastic_A = mkA "trophoblastic" "more trophoblastic" "most trophoblastic" "trophoblasticly" ;
-lin megaloblastic_A = mkA "megaloblastic" "more megaloblastic" "most megaloblastic" "megaloblasticly" ;
-lin mesoblastic_A = mkA "mesoblastic" "more mesoblastic" "most mesoblastic" "mesoblasticly" ;
-lin clastic_A = mkA "clastic" "more clastic" "most clastic" "clasticly" ;
-lin plagioclastic_A = mkA "plagioclastic" "more plagioclastic" "most plagioclastic" "plagioclasticly" ;
-lin iconoclastic_A = mkA "iconoclastic" "more iconoclastic" "most iconoclastic" "iconoclasticly" ;
-lin elastic_A = mkA "elastic" "more elastic" "most elastic" "elasticly" ;
-lin inelastic_A = mkA "inelastic" "more inelastic" "most inelastic" "inelasticly" ;
-lin viscoelastic_A = mkA "viscoelastic" "more viscoelastic" "most viscoelastic" "viscoelasticly" ;
-lin scholastic_A = mkA "scholastic" "more scholastic" "most scholastic" "scholasticly" ;
-lin interscholastic_A = mkA "interscholastic" "more interscholastic" "most interscholastic" "interscholasticly" ;
-lin plastic_A = mkA "plastic" "more plastic" "most plastic" "plasticly" ;
-lin anaplastic_A = mkA "anaplastic" "more anaplastic" "most anaplastic" "anaplasticly" ;
-lin cataplastic_A = mkA "cataplastic" "more cataplastic" "most cataplastic" "cataplasticly" ;
-lin neoplastic_A = mkA "neoplastic" "more neoplastic" "most neoplastic" "neoplasticly" ;
-lin thermoplastic_A = mkA "thermoplastic" "more thermoplastic" "most thermoplastic" "thermoplasticly" ;
-lin achondroplastic_A = mkA "achondroplastic" "more achondroplastic" "most achondroplastic" "achondroplasticly" ;
-lin autoplastic_A = mkA "autoplastic" "more autoplastic" "most autoplastic" "autoplasticly" ;
-lin cytoplastic_A = mkA "cytoplastic" "more cytoplastic" "most cytoplastic" "cytoplasticly" ;
-lin dysplastic_A = mkA "dysplastic" "more dysplastic" "most dysplastic" "dysplasticly" ;
-lin onomastic_A = mkA "onomastic" "more onomastic" "most onomastic" "onomasticly" ;
-lin gymnastic_A = mkA "gymnastic" "more gymnastic" "most gymnastic" "gymnasticly" ;
-lin pleonastic_A = mkA "pleonastic" "more pleonastic" "most pleonastic" "pleonasticly" ;
-lin monastic_A = mkA "monastic" "more monastic" "most monastic" "monasticly" ;
-lin dynastic_A = mkA "dynastic" "more dynastic" "most dynastic" "dynasticly" ;
-lin spastic_A = mkA "spastic" "more spastic" "most spastic" "spasticly" ;
-lin drastic_A = mkA "drastic" "more drastic" "most drastic" "drasticly" ;
-lin pederastic_A = mkA "pederastic" "more pederastic" "most pederastic" "pederasticly" ;
-lin paraphrastic_A = mkA "paraphrastic" "more paraphrastic" "most paraphrastic" "paraphrasticly" ;
-lin periphrastic_A = mkA "periphrastic" "more periphrastic" "most periphrastic" "periphrasticly" ;
-lin fantastic_A = mkA "fantastic" "more fantastic" "most fantastic" "fantasticly" ;
-lin anapaestic_A = mkA "anapaestic" "more anapaestic" "most anapaestic" "anapaesticly" ;
-lin alkahestic_A = mkA "alkahestic" "more alkahestic" "most alkahestic" "alkahesticly" ;
-lin majestic_A = mkA "majestic" "more majestic" "most majestic" "majesticly" ;
-lin domestic_A = mkA "domestic" "more domestic" "most domestic" "domesticly" ;
-lin undomestic_A = mkA "undomestic" "more undomestic" "most undomestic" "undomesticly" ;
-lin amnestic_A = mkA "amnestic" "more amnestic" "most amnestic" "amnesticly" ;
-lin anamnestic_A = mkA "anamnestic" "more anamnestic" "most anamnestic" "anamnesticly" ;
-lin anapestic_A = mkA "anapestic" "more anapestic" "most anapestic" "anapesticly" ;
-lin agrestic_A = mkA "agrestic" "more agrestic" "most agrestic" "agresticly" ;
-lin catachrestic_A = mkA "catachrestic" "more catachrestic" "most catachrestic" "catachresticly" ;
-lin transvestic_A = mkA "transvestic" "more transvestic" "most transvestic" "transvesticly" ;
-lin archaistic_A = mkA "archaistic" "more archaistic" "most archaistic" "archaisticly" ;
-lin organicistic_A = mkA "organicistic" "more organicistic" "most organicistic" "organicisticly" ;
-lin classicistic_A = mkA "classicistic" "more classicistic" "most classicistic" "classicisticly" ;
-lin tribadistic_A = mkA "tribadistic" "more tribadistic" "most tribadistic" "tribadisticly" ;
-lin sadistic_A = mkA "sadistic" "more sadistic" "most sadistic" "sadisticly" ;
-lin theistic_A = mkA "theistic" "more theistic" "most theistic" "theisticly" ;
-lin atheistic_A = mkA "atheistic" "more atheistic" "most atheistic" "atheisticly" ;
-lin pantheistic_A = mkA "pantheistic" "more pantheistic" "most pantheistic" "pantheisticly" ;
-lin monotheistic_A = mkA "monotheistic" "more monotheistic" "most monotheistic" "monotheisticly" ;
-lin polytheistic_A = mkA "polytheistic" "more polytheistic" "most polytheistic" "polytheisticly" ;
-lin logistic_A = mkA "logistic" "more logistic" "most logistic" "logisticly" ;
-lin antiphlogistic_A = mkA "antiphlogistic" "more antiphlogistic" "most antiphlogistic" "antiphlogisticly" ;
-lin syllogistic_A = mkA "syllogistic" "more syllogistic" "most syllogistic" "syllogisticly" ;
-lin biologistic_A = mkA "biologistic" "more biologistic" "most biologistic" "biologisticly" ;
-lin dyslogistic_A = mkA "dyslogistic" "more dyslogistic" "most dyslogistic" "dyslogisticly" ;
-lin eulogistic_A = mkA "eulogistic" "more eulogistic" "most eulogistic" "eulogisticly" ;
-lin yogistic_A = mkA "yogistic" "more yogistic" "most yogistic" "yogisticly" ;
-lin synergistic_A = mkA "synergistic" "more synergistic" "most synergistic" "synergisticly" ;
-lin catechistic_A = mkA "catechistic" "more catechistic" "most catechistic" "catechisticly" ;
-lin masochistic_A = mkA "masochistic" "more masochistic" "most masochistic" "masochisticly" ;
-lin sadomasochistic_A = mkA "sadomasochistic" "more sadomasochistic" "most sadomasochistic" "sadomasochisticly" ;
-lin anarchistic_A = mkA "anarchistic" "more anarchistic" "most anarchistic" "anarchisticly" ;
-lin sophistic_A = mkA "sophistic" "more sophistic" "most sophistic" "sophisticly" ;
-lin cabalistic_A = mkA "cabalistic" "more cabalistic" "most cabalistic" "cabalisticly" ;
-lin cannibalistic_A = mkA "cannibalistic" "more cannibalistic" "most cannibalistic" "cannibalisticly" ;
-lin idealistic_A = mkA "idealistic" "more idealistic" "most idealistic" "idealisticly" ;
-lin realistic_A = mkA "realistic" "more realistic" "most realistic" "realisticly" ;
-lin unrealistic_2_A = mkA "unrealistic" "more unrealistic" "most unrealistic" "unrealisticly" ;
-lin surrealistic_A = mkA "surrealistic" "more surrealistic" "most surrealistic" "surrealisticly" ;
-lin legalistic_A = mkA "legalistic" "more legalistic" "most legalistic" "legalisticly" ;
-lin specialistic_A = mkA "specialistic" "more specialistic" "most specialistic" "specialisticly" ;
-lin socialistic_A = mkA "socialistic" "more socialistic" "most socialistic" "socialisticly" ;
-lin imperialistic_A = mkA "imperialistic" "more imperialistic" "most imperialistic" "imperialisticly" ;
-lin materialistic_A = mkA "materialistic" "more materialistic" "most materialistic" "materialisticly" ;
-lin animalistic_A = mkA "animalistic" "more animalistic" "most animalistic" "animalisticly" ;
-lin formalistic_A = mkA "formalistic" "more formalistic" "most formalistic" "formalisticly" ;
-lin nominalistic_A = mkA "nominalistic" "more nominalistic" "most nominalistic" "nominalisticly" ;
-lin annalistic_A = mkA "annalistic" "more annalistic" "most annalistic" "annalisticly" ;
-lin nationalistic_A = mkA "nationalistic" "more nationalistic" "most nationalistic" "nationalisticly" ;
-lin rationalistic_A = mkA "rationalistic" "more rationalistic" "most rationalistic" "rationalisticly" ;
-lin traditionalistic_A = mkA "traditionalistic" "more traditionalistic" "most traditionalistic" "traditionalisticly" ;
-lin atonalistic_A = mkA "atonalistic" "more atonalistic" "most atonalistic" "atonalisticly" ;
-lin maternalistic_A = mkA "maternalistic" "more maternalistic" "most maternalistic" "maternalisticly" ;
-lin paternalistic_A = mkA "paternalistic" "more paternalistic" "most paternalistic" "paternalisticly" ;
-lin journalistic_A = mkA "journalistic" "more journalistic" "most journalistic" "journalisticly" ;
-lin liberalistic_A = mkA "liberalistic" "more liberalistic" "most liberalistic" "liberalisticly" ;
-lin moralistic_A = mkA "moralistic" "more moralistic" "most moralistic" "moralisticly" ;
-lin pluralistic_A = mkA "pluralistic" "more pluralistic" "most pluralistic" "pluralisticly" ;
-lin naturalistic_A = mkA "naturalistic" "more naturalistic" "most naturalistic" "naturalisticly" ;
-lin universalistic_A = mkA "universalistic" "more universalistic" "most universalistic" "universalisticly" ;
-lin fatalistic_A = mkA "fatalistic" "more fatalistic" "most fatalistic" "fatalisticly" ;
-lin capitalistic_A = mkA "capitalistic" "more capitalistic" "most capitalistic" "capitalisticly" ;
-lin dualistic_A = mkA "dualistic" "more dualistic" "most dualistic" "dualisticly" ;
-lin individualistic_A = mkA "individualistic" "more individualistic" "most individualistic" "individualisticly" ;
-lin ritualistic_A = mkA "ritualistic" "more ritualistic" "most ritualistic" "ritualisticly" ;
-lin spiritualistic_A = mkA "spiritualistic" "more spiritualistic" "most spiritualistic" "spiritualisticly" ;
-lin conceptualistic_A = mkA "conceptualistic" "more conceptualistic" "most conceptualistic" "conceptualisticly" ;
-lin revivalistic_A = mkA "revivalistic" "more revivalistic" "most revivalistic" "revivalisticly" ;
-lin evangelistic_A = mkA "evangelistic" "more evangelistic" "most evangelistic" "evangelisticly" ;
-lin probabilistic_A = mkA "probabilistic" "more probabilistic" "most probabilistic" "probabilisticly" ;
-lin pugilistic_A = mkA "pugilistic" "more pugilistic" "most pugilistic" "pugilisticly" ;
-lin nihilistic_A = mkA "nihilistic" "more nihilistic" "most nihilistic" "nihilisticly" ;
-lin ballistic_A = mkA "ballistic" "more ballistic" "most ballistic" "ballisticly" ;
-lin bimetallistic_A = mkA "bimetallistic" "more bimetallistic" "most bimetallistic" "bimetallisticly" ;
-lin holistic_A = mkA "holistic" "more holistic" "most holistic" "holisticly" ;
-lin monopolistic_A = mkA "monopolistic" "more monopolistic" "most monopolistic" "monopolisticly" ;
-lin simplistic_A = mkA "simplistic" "more simplistic" "most simplistic" "simplisticly" ;
-lin stylistic_A = mkA "stylistic" "more stylistic" "most stylistic" "stylisticly" ;
-lin alchemistic_A = mkA "alchemistic" "more alchemistic" "most alchemistic" "alchemisticly" ;
-lin dysphemistic_A = mkA "dysphemistic" "more dysphemistic" "most dysphemistic" "dysphemisticly" ;
-lin euphemistic_A = mkA "euphemistic" "more euphemistic" "most euphemistic" "euphemisticly" ;
-lin pessimistic_A = mkA "pessimistic" "more pessimistic" "most pessimistic" "pessimisticly" ;
-lin optimistic_A = mkA "optimistic" "more optimistic" "most optimistic" "optimisticly" ;
-lin atomistic_A = mkA "atomistic" "more atomistic" "most atomistic" "atomisticly" ;
-lin mechanistic_A = mkA "mechanistic" "more mechanistic" "most mechanistic" "mechanisticly" ;
-lin nonmechanistic_A = mkA "nonmechanistic" "more nonmechanistic" "most nonmechanistic" "nonmechanisticly" ;
-lin pianistic_A = mkA "pianistic" "more pianistic" "most pianistic" "pianisticly" ;
-lin humanistic_A = mkA "humanistic" "more humanistic" "most humanistic" "humanisticly" ;
-lin deterministic_A = mkA "deterministic" "more deterministic" "most deterministic" "deterministicly" ;
-lin chauvinistic_A = mkA "chauvinistic" "more chauvinistic" "most chauvinistic" "chauvinisticly" ;
-lin hedonistic_A = mkA "hedonistic" "more hedonistic" "most hedonistic" "hedonisticly" ;
-lin agonistic_A = mkA "agonistic" "more agonistic" "most agonistic" "agonisticly" ;
-lin antagonistic_A = mkA "antagonistic" "more antagonistic" "most antagonistic" "antagonisticly" ;
-lin impressionistic_A = mkA "impressionistic" "more impressionistic" "most impressionistic" "impressionisticly" ;
-lin exhibitionistic_A = mkA "exhibitionistic" "more exhibitionistic" "most exhibitionistic" "exhibitionisticly" ;
-lin monistic_A = mkA "monistic" "more monistic" "most monistic" "monisticly" ;
-lin anachronistic_A = mkA "anachronistic" "more anachronistic" "most anachronistic" "anachronisticly" ;
-lin modernistic_A = mkA "modernistic" "more modernistic" "most modernistic" "modernisticly" ;
-lin egoistic_A = mkA "egoistic" "more egoistic" "most egoistic" "egoisticly" ;
-lin jingoistic_A = mkA "jingoistic" "more jingoistic" "most jingoistic" "jingoisticly" ;
-lin plagiaristic_A = mkA "plagiaristic" "more plagiaristic" "most plagiaristic" "plagiaristicly" ;
-lin particularistic_A = mkA "particularistic" "more particularistic" "most particularistic" "particularisticly" ;
-lin militaristic_A = mkA "militaristic" "more militaristic" "most militaristic" "militaristicly" ;
-lin eristic_A = mkA "eristic" "more eristic" "most eristic" "eristicly" ;
-lin characteristic_A = mkA "characteristic" "more characteristic" "most characteristic" "characteristicly" ;
-lin uncharacteristic_A = mkA "uncharacteristic" "more uncharacteristic" "most uncharacteristic" "uncharacteristicly" ;
-lin aoristic_A = mkA "aoristic" "more aoristic" "most aoristic" "aoristicly" ;
-lin aphoristic_A = mkA "aphoristic" "more aphoristic" "most aphoristic" "aphoristicly" ;
-lin behavioristic_A = mkA "behavioristic" "more behavioristic" "most behavioristic" "behavioristicly" ;
-lin amoristic_A = mkA "amoristic" "more amoristic" "most amoristic" "amoristicly" ;
-lin patristic_A = mkA "patristic" "more patristic" "most patristic" "patristicly" ;
-lin belletristic_A = mkA "belletristic" "more belletristic" "most belletristic" "belletristicly" ;
-lin heuristic_A = mkA "heuristic" "more heuristic" "most heuristic" "heuristicly" ;
-lin voyeuristic_A = mkA "voyeuristic" "more voyeuristic" "most voyeuristic" "voyeuristicly" ;
-lin naturistic_A = mkA "naturistic" "more naturistic" "most naturistic" "naturisticly" ;
-lin adventuristic_A = mkA "adventuristic" "more adventuristic" "most adventuristic" "adventuristicly" ;
-lin futuristic_A = mkA "futuristic" "more futuristic" "most futuristic" "futuristicly" ;
-lin animatistic_A = mkA "animatistic" "more animatistic" "most animatistic" "animatisticly" ;
-lin lexicostatistic_A = mkA "lexicostatistic" "more lexicostatistic" "most lexicostatistic" "lexicostatisticly" ;
-lin pietistic_A = mkA "pietistic" "more pietistic" "most pietistic" "pietisticly" ;
-lin concretistic_A = mkA "concretistic" "more concretistic" "most concretistic" "concretisticly" ;
-lin egotistic_A = mkA "egotistic" "more egotistic" "most egotistic" "egotisticly" ;
-lin artistic_A = mkA "artistic" "more artistic" "most artistic" "artisticly" ;
-lin inartistic_A = mkA "inartistic" "more inartistic" "most inartistic" "inartisticly" ;
-lin autistic_A = mkA "autistic" "more autistic" "most autistic" "autisticly" ;
-lin linguistic_A = mkA "linguistic" "more linguistic" "most linguistic" "linguisticly" ;
-lin intralinguistic_A = mkA "intralinguistic" "more intralinguistic" "most intralinguistic" "intralinguisticly" ;
-lin extralinguistic_A = mkA "extralinguistic" "more extralinguistic" "most extralinguistic" "extralinguisticly" ;
-lin nonlinguistic_A = mkA "nonlinguistic" "more nonlinguistic" "most nonlinguistic" "nonlinguisticly" ;
-lin psycholinguistic_A = mkA "psycholinguistic" "more psycholinguistic" "most psycholinguistic" "psycholinguisticly" ;
-lin sociolinguistic_A = mkA "sociolinguistic" "more sociolinguistic" "most sociolinguistic" "sociolinguisticly" ;
-lin altruistic_A = mkA "altruistic" "more altruistic" "most altruistic" "altruisticly" ;
-lin casuistic_A = mkA "casuistic" "more casuistic" "most casuistic" "casuisticly" ;
-lin atavistic_A = mkA "atavistic" "more atavistic" "most atavistic" "atavisticly" ;
-lin relativistic_A = mkA "relativistic" "more relativistic" "most relativistic" "relativisticly" ;
-lin gnostic_A = mkA "gnostic" "more gnostic" "most gnostic" "gnosticly" ;
-lin agnostic_A = mkA "agnostic" "more agnostic" "most agnostic" "agnosticly" ;
-lin diagnostic_A = mkA "diagnostic" "more diagnostic" "most diagnostic" "diagnosticly" ;
-lin telegnostic_A = mkA "telegnostic" "more telegnostic" "most telegnostic" "telegnosticly" ;
-lin prognostic_A = mkA "prognostic" "more prognostic" "most prognostic" "prognosticly" ;
-lin caustic_A = mkA "caustic" "more caustic" "most caustic" "causticly" ;
-lin encaustic_A = mkA "encaustic" "more encaustic" "most encaustic" "encausticly" ;
-lin acoustic_A = mkA "acoustic" "more acoustic" "most acoustic" "acousticly" ;
-lin rustic_A = mkA "rustic" "more rustic" "most rustic" "rusticly" ;
-lin cystic_A = mkA "cystic" "more cystic" "most cystic" "cysticly" ;
-lin mystic_A = mkA "mystic" "more mystic" "most mystic" "mysticly" ;
-lin attic_A = mkA "attic" "more attic" "most attic" "atticly" ;
-lin astronautic_A = mkA "astronautic" "more astronautic" "most astronautic" "astronauticly" ;
-lin scorbutic_A = mkA "scorbutic" "more scorbutic" "most scorbutic" "scorbuticly" ;
-lin hermeneutic_A = mkA "hermeneutic" "more hermeneutic" "most hermeneutic" "hermeneuticly" ;
-lin therapeutic_A = mkA "therapeutic" "more therapeutic" "most therapeutic" "therapeuticly" ;
-lin psychotherapeutic_A = mkA "psychotherapeutic" "more psychotherapeutic" "most psychotherapeutic" "psychotherapeuticly" ;
-lin physiotherapeutic_A = mkA "physiotherapeutic" "more physiotherapeutic" "most physiotherapeutic" "physiotherapeuticly" ;
-lin chemotherapeutic_A = mkA "chemotherapeutic" "more chemotherapeutic" "most chemotherapeutic" "chemotherapeuticly" ;
-lin immunotherapeutic_A = mkA "immunotherapeutic" "more immunotherapeutic" "most immunotherapeutic" "immunotherapeuticly" ;
-lin phagocytic_A = mkA "phagocytic" "more phagocytic" "most phagocytic" "phagocyticly" ;
-lin lymphocytic_A = mkA "lymphocytic" "more lymphocytic" "most lymphocytic" "lymphocyticly" ;
-lin granulocytic_A = mkA "granulocytic" "more granulocytic" "most granulocytic" "granulocyticly" ;
-lin agranulocytic_A = mkA "agranulocytic" "more agranulocytic" "most agranulocytic" "agranulocyticly" ;
-lin astrocytic_A = mkA "astrocytic" "more astrocytic" "most astrocytic" "astrocyticly" ;
-lin megakaryocytic_A = mkA "megakaryocytic" "more megakaryocytic" "most megakaryocytic" "megakaryocyticly" ;
-lin epiphytic_A = mkA "epiphytic" "more epiphytic" "most epiphytic" "epiphyticly" ;
-lin myrmecophytic_A = mkA "myrmecophytic" "more myrmecophytic" "most myrmecophytic" "myrmecophyticly" ;
-lin geophytic_A = mkA "geophytic" "more geophytic" "most geophytic" "geophyticly" ;
-lin lithophytic_A = mkA "lithophytic" "more lithophytic" "most lithophytic" "lithophyticly" ;
-lin thallophytic_A = mkA "thallophytic" "more thallophytic" "most thallophytic" "thallophyticly" ;
-lin holophytic_A = mkA "holophytic" "more holophytic" "most holophytic" "holophyticly" ;
-lin hydrophytic_A = mkA "hydrophytic" "more hydrophytic" "most hydrophytic" "hydrophyticly" ;
-lin xerophytic_A = mkA "xerophytic" "more xerophytic" "most xerophytic" "xerophyticly" ;
-lin hygrophytic_A = mkA "hygrophytic" "more hygrophytic" "most hygrophytic" "hygrophyticly" ;
-lin saprophytic_A = mkA "saprophytic" "more saprophytic" "most saprophytic" "saprophyticly" ;
-lin mesophytic_A = mkA "mesophytic" "more mesophytic" "most mesophytic" "mesophyticly" ;
-lin bryophytic_A = mkA "bryophytic" "more bryophytic" "most bryophytic" "bryophyticly" ;
-lin analytic_A = mkA "analytic" "more analytic" "most analytic" "analyticly" ;
-lin psychoanalytic_A = mkA "psychoanalytic" "more psychoanalytic" "most psychoanalytic" "psychoanalyticly" ;
-lin cryptanalytic_A = mkA "cryptanalytic" "more cryptanalytic" "most cryptanalytic" "cryptanalyticly" ;
-lin paralytic_A = mkA "paralytic" "more paralytic" "most paralytic" "paralyticly" ;
-lin catalytic_A = mkA "catalytic" "more catalytic" "most catalytic" "catalyticly" ;
-lin biocatalytic_A = mkA "biocatalytic" "more biocatalytic" "most biocatalytic" "biocatalyticly" ;
-lin autocatalytic_A = mkA "autocatalytic" "more autocatalytic" "most autocatalytic" "autocatalyticly" ;
-lin proteolytic_A = mkA "proteolytic" "more proteolytic" "most proteolytic" "proteolyticly" ;
-lin bacteriolytic_A = mkA "bacteriolytic" "more bacteriolytic" "most bacteriolytic" "bacteriolyticly" ;
-lin anxiolytic_A = mkA "anxiolytic" "more anxiolytic" "most anxiolytic" "anxiolyticly" ;
-lin amylolytic_A = mkA "amylolytic" "more amylolytic" "most amylolytic" "amylolyticly" ;
-lin hemolytic_A = mkA "hemolytic" "more hemolytic" "most hemolytic" "hemolyticly" ;
-lin electrolytic_A = mkA "electrolytic" "more electrolytic" "most electrolytic" "electrolyticly" ;
-lin pyrolytic_A = mkA "pyrolytic" "more pyrolytic" "most pyrolytic" "pyrolyticly" ;
-lin autolytic_A = mkA "autolytic" "more autolytic" "most autolytic" "autolyticly" ;
-lin cytolytic_A = mkA "cytolytic" "more cytolytic" "most cytolytic" "cytolyticly" ;
-lin barytic_A = mkA "barytic" "more barytic" "most barytic" "baryticly" ;
-lin diplomatic_A = mkA "diplomatic" "more diplomatic" "most diplomatic" "diplomatically" ;
-lin enthusiastic_1_A = mkA "enthusiastic" "more enthusiastic" "most enthusiastic" "enthusiastically" ;
-lin unrealistic_1_A = mkA "unrealistic" "more unrealistic" "most unrealistic" "unrealistically" ;
-lin civic_A = mkA "civic" "more civic" "most civic" "civicly" ;
-lin pelvic_A = mkA "pelvic" "more pelvic" "most pelvic" "pelvicly" ;
-lin ataxic_A = mkA "ataxic" "more ataxic" "most ataxic" "ataxicly" ;
-lin alexic_A = mkA "alexic" "more alexic" "most alexic" "alexicly" ;
-lin dyslexic_A = mkA "dyslexic" "more dyslexic" "most dyslexic" "dyslexicly" ;
-lin anorexic_A = mkA "anorexic" "more anorexic" "most anorexic" "anorexicly" ;
-lin anoxic_A = mkA "anoxic" "more anoxic" "most anoxic" "anoxicly" ;
-lin toxic_A = mkA "toxic" "more toxic" "most toxic" "toxicly" ;
-lin antitoxic_A = mkA "antitoxic" "more antitoxic" "most antitoxic" "antitoxicly" ;
-lin nontoxic_A = mkA "nontoxic" "more nontoxic" "most nontoxic" "nontoxicly" ;
-lin nephrotoxic_A = mkA "nephrotoxic" "more nephrotoxic" "most nephrotoxic" "nephrotoxicly" ;
-lin neurotoxic_A = mkA "neurotoxic" "more neurotoxic" "most neurotoxic" "neurotoxicly" ;
-lin thyrotoxic_A = mkA "thyrotoxic" "more thyrotoxic" "most thyrotoxic" "thyrotoxicly" ;
-lin hepatotoxic_A = mkA "hepatotoxic" "more hepatotoxic" "most hepatotoxic" "hepatotoxicly" ;
-lin ototoxic_A = mkA "ototoxic" "more ototoxic" "most ototoxic" "ototoxicly" ;
-lin cytotoxic_A = mkA "cytotoxic" "more cytotoxic" "most cytotoxic" "cytotoxicly" ;
-lin 'ad hoc_A' = mkA "ad hoc" "more ad hoc" "most ad hoc" "ad hocly" ;
-lin subfusc_A = mkA "subfusc" "more subfusc" "most subfusc" "subfuscly" ;
-lin sec_A = mkA "sec" "secer" "secest" "secly" ;
-lin stoic_A = mkA "stoic" "stoicer" "stoicest" "stoicly" ;
-lin zoic_A = mkA "zoic" "zoicer" "zoicest" "zoicly" ;
-lin 'one-idea\'d_A' = mkA "one-idea'd" "more one-idea'd" "most one-idea'd" "one-idea'dly" ;
-lin 'three-d_A' = mkA "three-d" "more three-d" "most three-d" "three-dly" ;
-lin dead_A = mkA "dead" "more dead" "most dead" "deadly" ;
-lin 'stone-dead_A' = mkA "stone-dead" "more stone-dead" "most stone-dead" "stone-deadly" ;
-lin drumhead_A = mkA "drumhead" "more drumhead" "most drumhead" "drumheadly" ;
-lin overhead_A = mkA "overhead" "more overhead" "most overhead" "overheadly" ;
-lin 'well-read_A' = mkA "well-read" "more well-read" "most well-read" "well-readly" ;
-lin unread_A = mkA "unread" "more unread" "most unread" "unreadly" ;
-lin widespread_A = mkA "widespread" "more widespread" "most widespread" "widespreadly" ;
-lin thickspread_A = mkA "thickspread" "more thickspread" "most thickspread" "thickspreadly" ;
-lin outspread_A = mkA "outspread" "more outspread" "most outspread" "outspreadly" ;
-lin myriad_A = mkA "myriad" "more myriad" "most myriad" "myriadly" ;
-lin 'steel-clad_A' = mkA "steel-clad" "more steel-clad" "most steel-clad" "steel-cladly" ;
-lin 'snow-clad_A' = mkA "snow-clad" "more snow-clad" "most snow-clad" "snow-cladly" ;
-lin ironclad_A = mkA "ironclad" "more ironclad" "most ironclad" "ironcladly" ;
-lin 'middle-of-the-road_A' = mkA "middle-of-the-road" "more middle-of-the-road" "most middle-of-the-road" "middle-of-the-roadly" ;
-lin abroad_A = mkA "abroad" "more abroad" "most abroad" "abroadly" ;
-lin hennaed_A = mkA "hennaed" "more hennaed" "most hennaed" "hennaedly" ;
-lin blebbed_A = mkA "blebbed" "more blebbed" "most blebbed" "blebbedly" ;
-lin webbed_A = mkA "webbed" "more webbed" "most webbed" "webbedly" ;
-lin unwebbed_A = mkA "unwebbed" "more unwebbed" "most unwebbed" "unwebbedly" ;
-lin bibbed_A = mkA "bibbed" "more bibbed" "most bibbed" "bibbedly" ;
-lin nibbed_A = mkA "nibbed" "more nibbed" "most nibbed" "nibbedly" ;
-lin bulbed_A = mkA "bulbed" "more bulbed" "most bulbed" "bulbedly" ;
-lin limbed_A = mkA "limbed" "more limbed" "most limbed" "limbedly" ;
-lin 'clean-limbed_A' = mkA "clean-limbed" "more clean-limbed" "most clean-limbed" "clean-limbedly" ;
-lin uncombed_A = mkA "uncombed" "more uncombed" "most uncombed" "uncombedly" ;
-lin unplumbed_A = mkA "unplumbed" "more unplumbed" "most unplumbed" "unplumbedly" ;
-lin benumbed_A = mkA "benumbed" "more benumbed" "most benumbed" "benumbedly" ;
-lin lobed_A = mkA "lobed" "more lobed" "most lobed" "lobedly" ;
-lin unlobed_A = mkA "unlobed" "more unlobed" "most unlobed" "unlobedly" ;
-lin barbed_A = mkA "barbed" "more barbed" "most barbed" "barbedly" ;
-lin 'self-absorbed_A' = mkA "self-absorbed" "more self-absorbed" "most self-absorbed" "self-absorbedly" ;
-lin unperturbed_A = mkA "unperturbed" "more unperturbed" "most unperturbed" "unperturbedly" ;
-lin undisturbed_A = mkA "undisturbed" "more undisturbed" "most undisturbed" "undisturbedly" ;
-lin bedaubed_A = mkA "bedaubed" "more bedaubed" "most bedaubed" "bedaubedly" ;
-lin tubed_A = mkA "tubed" "more tubed" "most tubed" "tubedly" ;
-lin 'double-faced_A' = mkA "double-faced" "more double-faced" "most double-faced" "double-facedly" ;
-lin 'smooth-faced_A' = mkA "smooth-faced" "more smooth-faced" "most smooth-faced" "smooth-facedly" ;
-lin 'brazen-faced_A' = mkA "brazen-faced" "more brazen-faced" "most brazen-faced" "brazen-facedly" ;
-lin 'two-faced_A' = mkA "two-faced" "more two-faced" "most two-faced" "two-facedly" ;
-lin 'baby-faced_A' = mkA "baby-faced" "more baby-faced" "most baby-faced" "baby-facedly" ;
-lin shamefaced_A = mkA "shamefaced" "more shamefaced" "most shamefaced" "shamefacedly" ;
-lin barefaced_A = mkA "barefaced" "more barefaced" "most barefaced" "barefacedly" ;
-lin 'tight-laced_A' = mkA "tight-laced" "more tight-laced" "most tight-laced" "tight-lacedly" ;
-lin 'strait-laced_A' = mkA "strait-laced" "more strait-laced" "most strait-laced" "strait-lacedly" ;
-lin unlaced_A = mkA "unlaced" "more unlaced" "most unlaced" "unlacedly" ;
-lin unplaced_A = mkA "unplaced" "more unplaced" "most unplaced" "unplacedly" ;
-lin unspaced_A = mkA "unspaced" "more unspaced" "most unspaced" "unspacedly" ;
-lin unbraced_A = mkA "unbraced" "more unbraced" "most unbraced" "unbracedly" ;
-lin unprejudiced_A = mkA "unprejudiced" "more unprejudiced" "most unprejudiced" "unprejudicedly" ;
-lin beneficed_A = mkA "beneficed" "more beneficed" "most beneficed" "beneficedly" ;
-lin unbeneficed_A = mkA "unbeneficed" "more unbeneficed" "most unbeneficed" "unbeneficedly" ;
-lin surpliced_A = mkA "surpliced" "more surpliced" "most surpliced" "surplicedly" ;
-lin unvoiced_A = mkA "unvoiced" "more unvoiced" "most unvoiced" "unvoicedly" ;
-lin 'high-priced_A' = mkA "high-priced" "more high-priced" "most high-priced" "high-pricedly" ;
-lin unpracticed_A = mkA "unpracticed" "more unpracticed" "most unpracticed" "unpracticedly" ;
-lin unnoticed_A = mkA "unnoticed" "more unnoticed" "most unnoticed" "unnoticedly" ;
-lin latticed_A = mkA "latticed" "more latticed" "most latticed" "latticedly" ;
-lin calced_A = mkA "calced" "more calced" "most calced" "calcedly" ;
-lin discalced_A = mkA "discalced" "more discalced" "most discalced" "discalcedly" ;
-lin 'well-balanced_A' = mkA "well-balanced" "more well-balanced" "most well-balanced" "well-balancedly" ;
-lin cadenced_A = mkA "cadenced" "more cadenced" "most cadenced" "cadencedly" ;
-lin unfenced_A = mkA "unfenced" "more unfenced" "most unfenced" "unfencedly" ;
-lin experienced_A = mkA "experienced" "more experienced" "most experienced" "experiencedly" ;
-lin inexperienced_A = mkA "inexperienced" "more inexperienced" "most inexperienced" "inexperiencedly" ;
-lin unsilenced_A = mkA "unsilenced" "more unsilenced" "most unsilenced" "unsilencedly" ;
-lin referenced_A = mkA "referenced" "more referenced" "most referenced" "referencedly" ;
-lin uninfluenced_A = mkA "uninfluenced" "more uninfluenced" "most uninfluenced" "uninfluencedly" ;
-lin unconvinced_A = mkA "unconvinced" "more unconvinced" "most unconvinced" "unconvincedly" ;
-lin unannounced_A = mkA "unannounced" "more unannounced" "most unannounced" "unannouncedly" ;
-lin pronounced_A = mkA "pronounced" "more pronounced" "most pronounced" "pronouncedly" ;
-lin arced_A = mkA "arced" "more arced" "most arced" "arcedly" ;
-lin unpierced_A = mkA "unpierced" "more unpierced" "most unpierced" "unpiercedly" ;
-lin uncoerced_A = mkA "uncoerced" "more uncoerced" "most uncoerced" "uncoercedly" ;
-lin unenforced_A = mkA "unenforced" "more unenforced" "most unenforced" "unenforcedly" ;
-lin unforced_A = mkA "unforced" "more unforced" "most unforced" "unforcedly" ;
-lin unreduced_A = mkA "unreduced" "more unreduced" "most unreduced" "unreducedly" ;
-lin deuced_A = mkA "deuced" "more deuced" "most deuced" "deucedly" ;
-lin beaded_A = mkA "beaded" "more beaded" "most beaded" "beadedly" ;
-lin 'hard-headed_A' = mkA "hard-headed" "more hard-headed" "most hard-headed" "hard-headedly" ;
-lin 'muddle-headed_A' = mkA "muddle-headed" "more muddle-headed" "most muddle-headed" "muddle-headedly" ;
-lin 'pig-headed_A' = mkA "pig-headed" "more pig-headed" "most pig-headed" "pig-headedly" ;
-lin 'long-headed_A' = mkA "long-headed" "more long-headed" "most long-headed" "long-headedly" ;
-lin 'wrong-headed_A' = mkA "wrong-headed" "more wrong-headed" "most wrong-headed" "wrong-headedly" ;
-lin 'thick-headed_A' = mkA "thick-headed" "more thick-headed" "most thick-headed" "thick-headedly" ;
-lin 'shock-headed_A' = mkA "shock-headed" "more shock-headed" "most shock-headed" "shock-headedly" ;
-lin 'level-headed_A' = mkA "level-headed" "more level-headed" "most level-headed" "level-headedly" ;
-lin 'bull-headed_A' = mkA "bull-headed" "more bull-headed" "most bull-headed" "bull-headedly" ;
-lin 'cool-headed_A' = mkA "cool-headed" "more cool-headed" "most cool-headed" "cool-headedly" ;
-lin 'swollen-headed_A' = mkA "swollen-headed" "more swollen-headed" "most swollen-headed" "swollen-headedly" ;
-lin 'clear-headed_A' = mkA "clear-headed" "more clear-headed" "most clear-headed" "clear-headedly" ;
-lin 'bullet-headed_A' = mkA "bullet-headed" "more bullet-headed" "most bullet-headed" "bullet-headedly" ;
-lin 'soft-headed_A' = mkA "soft-headed" "more soft-headed" "most soft-headed" "soft-headedly" ;
-lin 'light-headed_A' = mkA "light-headed" "more light-headed" "most light-headed" "light-headedly" ;
-lin 'hot-headed_A' = mkA "hot-headed" "more hot-headed" "most hot-headed" "hot-headedly" ;
-lin 'grey-headed_A' = mkA "grey-headed" "more grey-headed" "most grey-headed" "grey-headedly" ;
-lin 'empty-headed_A' = mkA "empty-headed" "more empty-headed" "most empty-headed" "empty-headedly" ;
-lin redheaded_A = mkA "redheaded" "more redheaded" "most redheaded" "redheadedly" ;
-lin hardheaded_A = mkA "hardheaded" "more hardheaded" "most hardheaded" "hardheadedly" ;
-lin bareheaded_A = mkA "bareheaded" "more bareheaded" "most bareheaded" "bareheadedly" ;
-lin bigheaded_A = mkA "bigheaded" "more bigheaded" "most bigheaded" "bigheadedly" ;
-lin wrongheaded_A = mkA "wrongheaded" "more wrongheaded" "most wrongheaded" "wrongheadedly" ;
-lin blockheaded_A = mkA "blockheaded" "more blockheaded" "most blockheaded" "blockheadedly" ;
-lin bullheaded_A = mkA "bullheaded" "more bullheaded" "most bullheaded" "bullheadedly" ;
-lin woodenheaded_A = mkA "woodenheaded" "more woodenheaded" "most woodenheaded" "woodenheadedly" ;
-lin unheaded_A = mkA "unheaded" "more unheaded" "most unheaded" "unheadedly" ;
-lin clearheaded_A = mkA "clearheaded" "more clearheaded" "most clearheaded" "clearheadedly" ;
-lin airheaded_A = mkA "airheaded" "more airheaded" "most airheaded" "airheadedly" ;
-lin hotheaded_A = mkA "hotheaded" "more hotheaded" "most hotheaded" "hotheadedly" ;
-lin leaded_A = mkA "leaded" "more leaded" "most leaded" "leadedly" ;
-lin unleaded_A = mkA "unleaded" "more unleaded" "most unleaded" "unleadedly" ;
-lin prefaded_A = mkA "prefaded" "more prefaded" "most prefaded" "prefadedly" ;
-lin unshaded_A = mkA "unshaded" "more unshaded" "most unshaded" "unshadedly" ;
-lin jaded_A = mkA "jaded" "more jaded" "most jaded" "jadedly" ;
-lin bladed_A = mkA "bladed" "more bladed" "most bladed" "bladedly" ;
-lin colonnaded_A = mkA "colonnaded" "more colonnaded" "most colonnaded" "colonnadedly" ;
-lin ungraded_A = mkA "ungraded" "more ungraded" "most ungraded" "ungradedly" ;
-lin unpersuaded_A = mkA "unpersuaded" "more unpersuaded" "most unpersuaded" "unpersuadedly" ;
-lin 'value-added_A' = mkA "value-added" "more value-added" "most value-added" "value-addedly" ;
-lin 'double-bedded_A' = mkA "double-bedded" "more double-bedded" "most double-bedded" "double-beddedly" ;
-lin lidded_A = mkA "lidded" "more lidded" "most lidded" "liddedly" ;
-lin unexceeded_A = mkA "unexceeded" "more unexceeded" "most unexceeded" "unexceededly" ;
-lin unheeded_A = mkA "unheeded" "more unheeded" "most unheeded" "unheededly" ;
-lin unseeded_A = mkA "unseeded" "more unseeded" "most unseeded" "unseededly" ;
-lin unimpeded_A = mkA "unimpeded" "more unimpeded" "most unimpeded" "unimpededly" ;
-lin unaided_A = mkA "unaided" "more unaided" "most unaided" "unaidedly" ;
-lin decided_A = mkA "decided" "more decided" "most decided" "decidedly" ;
-lin undecided_A = mkA "undecided" "more undecided" "most undecided" "undecidedly" ;
-lin 'one-sided_A' = mkA "one-sided" "more one-sided" "most one-sided" "one-sidedly" ;
-lin 'many-sided_A' = mkA "many-sided" "more many-sided" "most many-sided" "many-sidedly" ;
-lin lopsided_A = mkA "lopsided" "more lopsided" "most lopsided" "lopsidedly" ;
-lin sobersided_A = mkA "sobersided" "more sobersided" "most sobersided" "sobersidedly" ;
-lin unguided_A = mkA "unguided" "more unguided" "most unguided" "unguidedly" ;
-lin undivided_A = mkA "undivided" "more undivided" "most undivided" "undividedly" ;
-lin unprovided_A = mkA "unprovided" "more unprovided" "most unprovided" "unprovidedly" ;
-lin unheralded_A = mkA "unheralded" "more unheralded" "most unheralded" "unheraldedly" ;
-lin unshielded_A = mkA "unshielded" "more unshielded" "most unshielded" "unshieldedly" ;
-lin unbanded_A = mkA "unbanded" "more unbanded" "most unbanded" "unbandedly" ;
-lin 'free-handed_A' = mkA "free-handed" "more free-handed" "most free-handed" "free-handedly" ;
-lin 'single-handed_A' = mkA "single-handed" "more single-handed" "most single-handed" "single-handedly" ;
-lin 'high-handed_A' = mkA "high-handed" "more high-handed" "most high-handed" "high-handedly" ;
-lin 'ham-handed_A' = mkA "ham-handed" "more ham-handed" "most ham-handed" "ham-handedly" ;
-lin 'open-handed_A' = mkA "open-handed" "more open-handed" "most open-handed" "open-handedly" ;
-lin 'even-handed_A' = mkA "even-handed" "more even-handed" "most even-handed" "even-handedly" ;
-lin 'two-handed_A' = mkA "two-handed" "more two-handed" "most two-handed" "two-handedly" ;
-lin 'left-handed_A' = mkA "left-handed" "more left-handed" "most left-handed" "left-handedly" ;
-lin 'light-handed_A' = mkA "light-handed" "more light-handed" "most light-handed" "light-handedly" ;
-lin 'right-handed_A' = mkA "right-handed" "more right-handed" "most right-handed" "right-handedly" ;
-lin 'short-handed_A' = mkA "short-handed" "more short-handed" "most short-handed" "short-handedly" ;
-lin 'empty-handed_A' = mkA "empty-handed" "more empty-handed" "most empty-handed" "empty-handedly" ;
-lin 'heavy-handed_A' = mkA "heavy-handed" "more heavy-handed" "most heavy-handed" "heavy-handedly" ;
-lin barehanded_A = mkA "barehanded" "more barehanded" "most barehanded" "barehandedly" ;
-lin forehanded_A = mkA "forehanded" "more forehanded" "most forehanded" "forehandedly" ;
-lin offhanded_A = mkA "offhanded" "more offhanded" "most offhanded" "offhandedly" ;
-lin backhanded_A = mkA "backhanded" "more backhanded" "most backhanded" "backhandedly" ;
-lin evenhanded_A = mkA "evenhanded" "more evenhanded" "most evenhanded" "evenhandedly" ;
-lin underhanded_A = mkA "underhanded" "more underhanded" "most underhanded" "underhandedly" ;
-lin fourhanded_A = mkA "fourhanded" "more fourhanded" "most fourhanded" "fourhandedly" ;
-lin unbranded_A = mkA "unbranded" "more unbranded" "most unbranded" "unbrandedly" ;
-lin misbranded_A = mkA "misbranded" "more misbranded" "most misbranded" "misbrandedly" ;
-lin 'open-ended_A' = mkA "open-ended" "more open-ended" "most open-ended" "open-endedly" ;
-lin undescended_A = mkA "undescended" "more undescended" "most undescended" "undescendedly" ;
-lin undefended_A = mkA "undefended" "more undefended" "most undefended" "undefendedly" ;
-lin uncomprehended_A = mkA "uncomprehended" "more uncomprehended" "most uncomprehended" "uncomprehendedly" ;
-lin unblended_A = mkA "unblended" "more unblended" "most unblended" "unblendedly" ;
-lin unamended_A = mkA "unamended" "more unamended" "most unamended" "unamendedly" ;
-lin unended_A = mkA "unended" "more unended" "most unended" "unendedly" ;
-lin upended_A = mkA "upended" "more upended" "most upended" "upendedly" ;
-lin unintended_A = mkA "unintended" "more unintended" "most unintended" "unintendedly" ;
-lin untended_A = mkA "untended" "more untended" "most untended" "untendedly" ;
-lin unattended_A = mkA "unattended" "more unattended" "most unattended" "unattendedly" ;
-lin unextended_A = mkA "unextended" "more unextended" "most unextended" "unextendedly" ;
-lin 'broad-minded_A' = mkA "broad-minded" "more broad-minded" "most broad-minded" "broad-mindedly" ;
-lin 'like-minded_A' = mkA "like-minded" "more like-minded" "most like-minded" "like-mindedly" ;
-lin 'feeble-minded_A' = mkA "feeble-minded" "more feeble-minded" "most feeble-minded" "feeble-mindedly" ;
-lin 'single-minded_A' = mkA "single-minded" "more single-minded" "most single-minded" "single-mindedly" ;
-lin 'simple-minded_A' = mkA "simple-minded" "more simple-minded" "most simple-minded" "simple-mindedly" ;
-lin 'strong-minded_A' = mkA "strong-minded" "more strong-minded" "most strong-minded" "strong-mindedly" ;
-lin 'high-minded_A' = mkA "high-minded" "more high-minded" "most high-minded" "high-mindedly" ;
-lin 'evil-minded_A' = mkA "evil-minded" "more evil-minded" "most evil-minded" "evil-mindedly" ;
-lin 'small-minded_A' = mkA "small-minded" "more small-minded" "most small-minded" "small-mindedly" ;
-lin 'open-minded_A' = mkA "open-minded" "more open-minded" "most open-minded" "open-mindedly" ;
-lin 'air-minded_A' = mkA "air-minded" "more air-minded" "most air-minded" "air-mindedly" ;
-lin 'fair-minded_A' = mkA "fair-minded" "more fair-minded" "most fair-minded" "fair-mindedly" ;
-lin 'light-minded_A' = mkA "light-minded" "more light-minded" "most light-minded" "light-mindedly" ;
-lin 'right-minded_A' = mkA "right-minded" "more right-minded" "most right-minded" "right-mindedly" ;
-lin 'absent-minded_A' = mkA "absent-minded" "more absent-minded" "most absent-minded" "absent-mindedly" ;
-lin 'narrow-minded_A' = mkA "narrow-minded" "more narrow-minded" "most narrow-minded" "narrow-mindedly" ;
-lin 'bloody-minded_A' = mkA "bloody-minded" "more bloody-minded" "most bloody-minded" "bloody-mindedly" ;
-lin 'long-winded_A' = mkA "long-winded" "more long-winded" "most long-winded" "long-windedly" ;
-lin 'short-winded_A' = mkA "short-winded" "more short-winded" "most short-winded" "short-windedly" ;
-lin unfunded_A = mkA "unfunded" "more unfunded" "most unfunded" "unfundedly" ;
-lin unbounded_A = mkA "unbounded" "more unbounded" "most unbounded" "unboundedly" ;
-lin 'well-founded_A' = mkA "well-founded" "more well-founded" "most well-founded" "well-foundedly" ;
-lin unfounded_A = mkA "unfounded" "more unfounded" "most unfounded" "unfoundedly" ;
-lin uncompounded_A = mkA "uncompounded" "more uncompounded" "most uncompounded" "uncompoundedly" ;
-lin 'well-rounded_A' = mkA "well-rounded" "more well-rounded" "most well-rounded" "well-roundedly" ;
-lin 'well-grounded_A' = mkA "well-grounded" "more well-grounded" "most well-grounded" "well-groundedly" ;
-lin unwounded_A = mkA "unwounded" "more unwounded" "most unwounded" "unwoundedly" ;
-lin outmoded_A = mkA "outmoded" "more outmoded" "most outmoded" "outmodedly" ;
-lin 'cold-blooded_A' = mkA "cold-blooded" "more cold-blooded" "most cold-blooded" "cold-bloodedly" ;
-lin 'full-blooded_A' = mkA "full-blooded" "more full-blooded" "most full-blooded" "full-bloodedly" ;
-lin 'warm-blooded_A' = mkA "warm-blooded" "more warm-blooded" "most warm-blooded" "warm-bloodedly" ;
-lin 'hot-blooded_A' = mkA "hot-blooded" "more hot-blooded" "most hot-blooded" "hot-bloodedly" ;
-lin wooded_A = mkA "wooded" "more wooded" "most wooded" "woodedly" ;
-lin unwooded_A = mkA "unwooded" "more unwooded" "most unwooded" "unwoodedly" ;
-lin unguarded_A = mkA "unguarded" "more unguarded" "most unguarded" "unguardedly" ;
-lin unrewarded_A = mkA "unrewarded" "more unrewarded" "most unrewarded" "unrewardedly" ;
-lin unrecorded_A = mkA "unrecorded" "more unrecorded" "most unrecorded" "unrecordedly" ;
-lin occluded_A = mkA "occluded" "more occluded" "most occluded" "occludedly" ;
-lin unclouded_A = mkA "unclouded" "more unclouded" "most unclouded" "uncloudedly" ;
-lin uncrowded_A = mkA "uncrowded" "more uncrowded" "most uncrowded" "uncrowdedly" ;
-lin 'weak-kneed_A' = mkA "weak-kneed" "more weak-kneed" "most weak-kneed" "weak-kneedly" ;
-lin 'knock-kneed_A' = mkA "knock-kneed" "more knock-kneed" "most knock-kneed" "knock-kneedly" ;
-lin 'high-speed_A' = mkA "high-speed" "more high-speed" "most high-speed" "high-speedly" ;
-lin toupeed_A = mkA "toupeed" "more toupeed" "most toupeed" "toupeedly" ;
-lin goateed_A = mkA "goateed" "more goateed" "most goateed" "goateedly" ;
-lin unguaranteed_A = mkA "unguaranteed" "more unguaranteed" "most unguaranteed" "unguaranteedly" ;
-lin 'bottle-fed_A' = mkA "bottle-fed" "more bottle-fed" "most bottle-fed" "bottle-fedly" ;
-lin 'stall-fed_A' = mkA "stall-fed" "more stall-fed" "most stall-fed" "stall-fedly" ;
-lin 'breast-fed_A' = mkA "breast-fed" "more breast-fed" "most breast-fed" "breast-fedly" ;
-lin leafed_A = mkA "leafed" "more leafed" "most leafed" "leafedly" ;
-lin understaffed_A = mkA "understaffed" "more understaffed" "most understaffed" "understaffedly" ;
-lin chuffed_A = mkA "chuffed" "more chuffed" "most chuffed" "chuffedly" ;
-lin overstuffed_A = mkA "overstuffed" "more overstuffed" "most overstuffed" "overstuffedly" ;
-lin unfed_A = mkA "unfed" "more unfed" "most unfed" "unfedly" ;
-lin unroofed_A = mkA "unroofed" "more unroofed" "most unroofed" "unroofedly" ;
-lin underfed_A = mkA "underfed" "more underfed" "most underfed" "underfedly" ;
-lin overfed_A = mkA "overfed" "more overfed" "most overfed" "overfedly" ;
-lin 'middle-aged_A' = mkA "middle-aged" "more middle-aged" "most middle-aged" "middle-agedly" ;
-lin appendaged_A = mkA "appendaged" "more appendaged" "most appendaged" "appendagedly" ;
-lin unappendaged_A = mkA "unappendaged" "more unappendaged" "most unappendaged" "unappendagedly" ;
-lin unengaged_A = mkA "unengaged" "more unengaged" "most unengaged" "unengagedly" ;
-lin 'pre-packaged_A' = mkA "pre-packaged" "more pre-packaged" "most pre-packaged" "pre-packagedly" ;
-lin prepackaged_A = mkA "prepackaged" "more prepackaged" "most prepackaged" "prepackagedly" ;
-lin unpackaged_A = mkA "unpackaged" "more unpackaged" "most unpackaged" "unpackagedly" ;
-lin undamaged_A = mkA "undamaged" "more undamaged" "most undamaged" "undamagedly" ;
-lin plumaged_A = mkA "plumaged" "more plumaged" "most plumaged" "plumagedly" ;
-lin unaged_A = mkA "unaged" "more unaged" "most unaged" "unagedly" ;
-lin visaged_A = mkA "visaged" "more visaged" "most visaged" "visagedly" ;
-lin unstaged_A = mkA "unstaged" "more unstaged" "most unstaged" "unstagedly" ;
-lin 'double-edged_A' = mkA "double-edged" "more double-edged" "most double-edged" "double-edgedly" ;
-lin 'deckle-edged_A' = mkA "deckle-edged" "more deckle-edged" "most deckle-edged" "deckle-edgedly" ;
-lin 'two-edged_A' = mkA "two-edged" "more two-edged" "most two-edged" "two-edgedly" ;
-lin 'gilt-edged_A' = mkA "gilt-edged" "more gilt-edged" "most gilt-edged" "gilt-edgedly" ;
-lin fledged_A = mkA "fledged" "more fledged" "most fledged" "fledgedly" ;
-lin 'full-fledged_A' = mkA "full-fledged" "more full-fledged" "most full-fledged" "full-fledgedly" ;
-lin 'fully-fledged_A' = mkA "fully-fledged" "more fully-fledged" "most fully-fledged" "fully-fledgedly" ;
-lin unfledged_A = mkA "unfledged" "more unfledged" "most unfledged" "unfledgedly" ;
-lin unacknowledged_A = mkA "unacknowledged" "more unacknowledged" "most unacknowledged" "unacknowledgedly" ;
-lin unabridged_A = mkA "unabridged" "more unabridged" "most unabridged" "unabridgedly" ;
-lin 'ill-judged_A' = mkA "ill-judged" "more ill-judged" "most ill-judged" "ill-judgedly" ;
-lin privileged_A = mkA "privileged" "more privileged" "most privileged" "privilegedly" ;
-lin underprivileged_A = mkA "underprivileged" "more underprivileged" "most underprivileged" "underprivilegedly" ;
-lin cragged_A = mkA "cragged" "more cragged" "most cragged" "craggedly" ;
-lin legged_A = mkA "legged" "more legged" "most legged" "leggedly" ;
-lin 'three-legged_A' = mkA "three-legged" "more three-legged" "most three-legged" "three-leggedly" ;
-lin 'spindle-legged_A' = mkA "spindle-legged" "more spindle-legged" "most spindle-legged" "spindle-leggedly" ;
-lin 'bandy-legged_A' = mkA "bandy-legged" "more bandy-legged" "most bandy-legged" "bandy-leggedly" ;
-lin barelegged_A = mkA "barelegged" "more barelegged" "most barelegged" "bareleggedly" ;
-lin 'square-rigged_A' = mkA "square-rigged" "more square-rigged" "most square-rigged" "square-riggedly" ;
-lin unrigged_A = mkA "unrigged" "more unrigged" "most unrigged" "unriggedly" ;
-lin sprigged_A = mkA "sprigged" "more sprigged" "most sprigged" "spriggedly" ;
-lin outrigged_A = mkA "outrigged" "more outrigged" "most outrigged" "outriggedly" ;
-lin wigged_A = mkA "wigged" "more wigged" "most wigged" "wiggedly" ;
-lin cogged_A = mkA "cogged" "more cogged" "most cogged" "coggedly" ;
-lin befogged_A = mkA "befogged" "more befogged" "most befogged" "befoggedly" ;
-lin unclogged_A = mkA "unclogged" "more unclogged" "most unclogged" "uncloggedly" ;
-lin waterlogged_A = mkA "waterlogged" "more waterlogged" "most waterlogged" "waterloggedly" ;
-lin rugged_A = mkA "rugged" "more rugged" "most rugged" "ruggedly" ;
-lin fanged_A = mkA "fanged" "more fanged" "most fanged" "fangedly" ;
-lin unchanged_A = mkA "unchanged" "more unchanged" "most unchanged" "unchangedly" ;
-lin unchallenged_A = mkA "unchallenged" "more unchallenged" "most unchallenged" "unchallengedly" ;
-lin unavenged_A = mkA "unavenged" "more unavenged" "most unavenged" "unavengedly" ;
-lin stockinged_A = mkA "stockinged" "more stockinged" "most stockinged" "stockingedly" ;
-lin ceilinged_A = mkA "ceilinged" "more ceilinged" "most ceilinged" "ceilingedly" ;
-lin awninged_A = mkA "awninged" "more awninged" "most awninged" "awningedly" ;
-lin pronged_A = mkA "pronged" "more pronged" "most pronged" "prongedly" ;
-lin uncharged_A = mkA "uncharged" "more uncharged" "most uncharged" "unchargedly" ;
-lin supercharged_A = mkA "supercharged" "more supercharged" "most supercharged" "superchargedly" ;
-lin undischarged_A = mkA "undischarged" "more undischarged" "most undischarged" "undischargedly" ;
-lin unrouged_A = mkA "unrouged" "more unrouged" "most unrouged" "unrougedly" ;
-lin unbleached_A = mkA "unbleached" "more unbleached" "most unbleached" "unbleachedly" ;
-lin unreached_A = mkA "unreached" "more unreached" "most unreached" "unreachedly" ;
-lin semidetached_A = mkA "semidetached" "more semidetached" "most semidetached" "semidetachedly" ;
-lin unattached_A = mkA "unattached" "more unattached" "most unattached" "unattachedly" ;
-lin breeched_A = mkA "breeched" "more breeched" "most breeched" "breechedly" ;
-lin cliched_A = mkA "cliched" "more cliched" "most cliched" "clichedly" ;
-lin branched_A = mkA "branched" "more branched" "most branched" "branchedly" ;
-lin unbranched_A = mkA "unbranched" "more unbranched" "most unbranched" "unbranchedly" ;
-lin 'sun-drenched_A' = mkA "sun-drenched" "more sun-drenched" "most sun-drenched" "sun-drenchedly" ;
-lin squinched_A = mkA "squinched" "more squinched" "most squinched" "squinchedly" ;
-lin unhatched_A = mkA "unhatched" "more unhatched" "most unhatched" "unhatchedly" ;
-lin unlatched_A = mkA "unlatched" "more unlatched" "most unlatched" "unlatchedly" ;
-lin unmatched_A = mkA "unmatched" "more unmatched" "most unmatched" "unmatchedly" ;
-lin mismatched_A = mkA "mismatched" "more mismatched" "most mismatched" "mismatchedly" ;
-lin 'far-fetched_A' = mkA "far-fetched" "more far-fetched" "most far-fetched" "far-fetchedly" ;
-lin farfetched_A = mkA "farfetched" "more farfetched" "most farfetched" "farfetchedly" ;
-lin outstretched_A = mkA "outstretched" "more outstretched" "most outstretched" "outstretchedly" ;
-lin wretched_A = mkA "wretched" "more wretched" "most wretched" "wretchedly" ;
-lin 'high-pitched_A' = mkA "high-pitched" "more high-pitched" "most high-pitched" "high-pitchedly" ;
-lin 'low-pitched_A' = mkA "low-pitched" "more low-pitched" "most low-pitched" "low-pitchedly" ;
-lin blotched_A = mkA "blotched" "more blotched" "most blotched" "blotchedly" ;
-lin unnotched_A = mkA "unnotched" "more unnotched" "most unnotched" "unnotchedly" ;
-lin untouched_A = mkA "untouched" "more untouched" "most untouched" "untouchedly" ;
-lin boughed_A = mkA "boughed" "more boughed" "most boughed" "boughedly" ;
-lin unabashed_A = mkA "unabashed" "more unabashed" "most unabashed" "unabashedly" ;
-lin unbrainwashed_A = mkA "unbrainwashed" "more unbrainwashed" "most unbrainwashed" "unbrainwashedly" ;
-lin unwashed_A = mkA "unwashed" "more unwashed" "most unwashed" "unwashedly" ;
-lin unrefreshed_A = mkA "unrefreshed" "more unrefreshed" "most unrefreshed" "unrefreshedly" ;
-lin unestablished_A = mkA "unestablished" "more unestablished" "most unestablished" "unestablishedly" ;
-lin unpublished_A = mkA "unpublished" "more unpublished" "most unpublished" "unpublishedly" ;
-lin unpolished_A = mkA "unpolished" "more unpolished" "most unpolished" "unpolishedly" ;
-lin unblemished_A = mkA "unblemished" "more unblemished" "most unblemished" "unblemishedly" ;
-lin vanished_A = mkA "vanished" "more vanished" "most vanished" "vanishedly" ;
-lin unfinished_A = mkA "unfinished" "more unfinished" "most unfinished" "unfinishedly" ;
-lin undiminished_A = mkA "undiminished" "more undiminished" "most undiminished" "undiminishedly" ;
-lin untarnished_A = mkA "untarnished" "more untarnished" "most untarnished" "untarnishedly" ;
-lin unvarnished_A = mkA "unvarnished" "more unvarnished" "most unvarnished" "unvarnishedly" ;
-lin unburnished_A = mkA "unburnished" "more unburnished" "most unburnished" "unburnishedly" ;
-lin unfurnished_A = mkA "unfurnished" "more unfurnished" "most unfurnished" "unfurnishedly" ;
-lin unpunished_A = mkA "unpunished" "more unpunished" "most unpunished" "unpunishedly" ;
-lin malnourished_A = mkA "malnourished" "more malnourished" "most malnourished" "malnourishedly" ;
-lin unnourished_A = mkA "unnourished" "more unnourished" "most unnourished" "unnourishedly" ;
-lin undernourished_A = mkA "undernourished" "more undernourished" "most undernourished" "undernourishedly" ;
-lin anguished_A = mkA "anguished" "more anguished" "most anguished" "anguishedly" ;
-lin undistinguished_A = mkA "undistinguished" "more undistinguished" "most undistinguished" "undistinguishedly" ;
-lin unbrushed_A = mkA "unbrushed" "more unbrushed" "most unbrushed" "unbrushedly" ;
-lin unscathed_A = mkA "unscathed" "more unscathed" "most unscathed" "unscathedly" ;
-lin unclothed_A = mkA "unclothed" "more unclothed" "most unclothed" "unclothedly" ;
-lin unsmoothed_A = mkA "unsmoothed" "more unsmoothed" "most unsmoothed" "unsmoothedly" ;
-lin toothed_A = mkA "toothed" "more toothed" "most toothed" "toothedly" ;
-lin 'sabre-toothed_A' = mkA "sabre-toothed" "more sabre-toothed" "most sabre-toothed" "sabre-toothedly" ;
-lin 'gap-toothed_A' = mkA "gap-toothed" "more gap-toothed" "most gap-toothed" "gap-toothedly" ;
-lin 'foul-mouthed_A' = mkA "foul-mouthed" "more foul-mouthed" "most foul-mouthed" "foul-mouthedly" ;
-lin 'open-mouthed_A' = mkA "open-mouthed" "more open-mouthed" "most open-mouthed" "open-mouthedly" ;
-lin 'mealy-mouthed_A' = mkA "mealy-mouthed" "more mealy-mouthed" "most mealy-mouthed" "mealy-mouthedly" ;
-lin bigmouthed_A = mkA "bigmouthed" "more bigmouthed" "most bigmouthed" "bigmouthedly" ;
-lin blabbermouthed_A = mkA "blabbermouthed" "more blabbermouthed" "most blabbermouthed" "blabbermouthedly" ;
-lin mealymouthed_A = mkA "mealymouthed" "more mealymouthed" "most mealymouthed" "mealymouthedly" ;
-lin unremedied_A = mkA "unremedied" "more unremedied" "most unremedied" "unremediedly" ;
-lin bodied_A = mkA "bodied" "more bodied" "most bodied" "bodiedly" ;
-lin 'able-bodied_A' = mkA "able-bodied" "more able-bodied" "most able-bodied" "able-bodiedly" ;
-lin unbodied_A = mkA "unbodied" "more unbodied" "most unbodied" "unbodiedly" ;
-lin unstudied_A = mkA "unstudied" "more unstudied" "most unstudied" "unstudiedly" ;
-lin unspecified_A = mkA "unspecified" "more unspecified" "most unspecified" "unspecifiedly" ;
-lin dandified_A = mkA "dandified" "more dandified" "most dandified" "dandifiedly" ;
-lin unmodified_A = mkA "unmodified" "more unmodified" "most unmodified" "unmodifiedly" ;
-lin unqualified_A = mkA "unqualified" "more unqualified" "most unqualified" "unqualifiedly" ;
-lin humified_A = mkA "humified" "more humified" "most humified" "humifiedly" ;
-lin undignified_A = mkA "undignified" "more undignified" "most undignified" "undignifiedly" ;
-lin saponified_A = mkA "saponified" "more saponified" "most saponified" "saponifiedly" ;
-lin unsaponified_A = mkA "unsaponified" "more unsaponified" "most unsaponified" "unsaponifiedly" ;
-lin unverified_A = mkA "unverified" "more unverified" "most unverified" "unverifiedly" ;
-lin unvitrified_A = mkA "unvitrified" "more unvitrified" "most unvitrified" "unvitrifiedly" ;
-lin countrified_A = mkA "countrified" "more countrified" "most countrified" "countrifiedly" ;
-lin unpurified_A = mkA "unpurified" "more unpurified" "most unpurified" "unpurifiedly" ;
-lin undiversified_A = mkA "undiversified" "more undiversified" "most undiversified" "undiversifiedly" ;
-lin unclassified_A = mkA "unclassified" "more unclassified" "most unclassified" "unclassifiedly" ;
-lin sissified_A = mkA "sissified" "more sissified" "most sissified" "sissifiedly" ;
-lin unratified_A = mkA "unratified" "more unratified" "most unratified" "unratifiedly" ;
-lin unstratified_A = mkA "unstratified" "more unstratified" "most unstratified" "unstratifiedly" ;
-lin citified_A = mkA "citified" "more citified" "most citified" "citifiedly" ;
-lin unidentified_A = mkA "unidentified" "more unidentified" "most unidentified" "unidentifiedly" ;
-lin uncertified_A = mkA "uncertified" "more uncertified" "most uncertified" "uncertifiedly" ;
-lin unjustified_A = mkA "unjustified" "more unjustified" "most unjustified" "unjustifiedly" ;
-lin satisfied_A = mkA "satisfied" "more satisfied" "most satisfied" "satisfiedly" ;
-lin unsatisfied_A = mkA "unsatisfied" "more unsatisfied" "most unsatisfied" "unsatisfiedly" ;
-lin hypertrophied_A = mkA "hypertrophied" "more hypertrophied" "most hypertrophied" "hypertrophiedly" ;
-lin 'yellow-bellied_A' = mkA "yellow-bellied" "more yellow-bellied" "most yellow-bellied" "yellow-belliedly" ;
-lin potbellied_A = mkA "potbellied" "more potbellied" "most potbellied" "potbelliedly" ;
-lin unsullied_A = mkA "unsullied" "more unsullied" "most unsullied" "unsulliedly" ;
-lin panoplied_A = mkA "panoplied" "more panoplied" "most panoplied" "panopliedly" ;
-lin unaccompanied_A = mkA "unaccompanied" "more unaccompanied" "most unaccompanied" "unaccompaniedly" ;
-lin crannied_A = mkA "crannied" "more crannied" "most crannied" "cranniedly" ;
-lin uncrannied_A = mkA "uncrannied" "more uncrannied" "most uncrannied" "uncranniedly" ;
-lin balconied_A = mkA "balconied" "more balconied" "most balconied" "balconiedly" ;
-lin unbalconied_A = mkA "unbalconied" "more unbalconied" "most unbalconied" "unbalconiedly" ;
-lin pied_A = mkA "pied" "more pied" "most pied" "piedly" ;
-lin canopied_A = mkA "canopied" "more canopied" "most canopied" "canopiedly" ;
-lin 'owner-occupied_A' = mkA "owner-occupied" "more owner-occupied" "most owner-occupied" "owner-occupiedly" ;
-lin unoccupied_A = mkA "unoccupied" "more unoccupied" "most unoccupied" "unoccupiedly" ;
-lin unwearied_A = mkA "unwearied" "more unwearied" "most unwearied" "unweariedly" ;
-lin salaried_A = mkA "salaried" "more salaried" "most salaried" "salariedly" ;
-lin unvaried_A = mkA "unvaried" "more unvaried" "most unvaried" "unvariedly" ;
-lin 'smoke-dried_A' = mkA "smoke-dried" "more smoke-dried" "most smoke-dried" "smoke-driedly" ;
-lin 'sun-dried_A' = mkA "sun-dried" "more sun-dried" "most sun-dried" "sun-driedly" ;
-lin roughdried_A = mkA "roughdried" "more roughdried" "most roughdried" "roughdriedly" ;
-lin undried_A = mkA "undried" "more undried" "most undried" "undriedly" ;
-lin liveried_A = mkA "liveried" "more liveried" "most liveried" "liveriedly" ;
-lin unliveried_A = mkA "unliveried" "more unliveried" "most unliveried" "unliveriedly" ;
-lin storied_A = mkA "storied" "more storied" "most storied" "storiedly" ;
-lin unmarried_A = mkA "unmarried" "more unmarried" "most unmarried" "unmarriedly" ;
-lin berried_A = mkA "berried" "more berried" "most berried" "berriedly" ;
-lin serried_A = mkA "serried" "more serried" "most serried" "serriedly" ;
-lin unworried_A = mkA "unworried" "more unworried" "most unworried" "unworriedly" ;
-lin hurried_A = mkA "hurried" "more hurried" "most hurried" "hurriedly" ;
-lin unhurried_A = mkA "unhurried" "more unhurried" "most unhurried" "unhurriedly" ;
-lin unflurried_A = mkA "unflurried" "more unflurried" "most unflurried" "unflurriedly" ;
-lin 'well-tried_A' = mkA "well-tried" "more well-tried" "most well-tried" "well-triedly" ;
-lin untried_A = mkA "untried" "more untried" "most untried" "untriedly" ;
-lin tapestried_A = mkA "tapestried" "more tapestried" "most tapestried" "tapestriedly" ;
-lin unburied_A = mkA "unburied" "more unburied" "most unburied" "unburiedly" ;
-lin 'tongue-tied_A' = mkA "tongue-tied" "more tongue-tied" "most tongue-tied" "tongue-tiedly" ;
-lin untied_A = mkA "untied" "more untied" "most untied" "untiedly" ;
-lin bountied_A = mkA "bountied" "more bountied" "most bountied" "bountiedly" ;
-lin propertied_A = mkA "propertied" "more propertied" "most propertied" "propertiedly" ;
-lin ivied_A = mkA "ivied" "more ivied" "most ivied" "iviedly" ;
-lin frenzied_A = mkA "frenzied" "more frenzied" "most frenzied" "frenziedly" ;
-lin 'hard-baked_A' = mkA "hard-baked" "more hard-baked" "most hard-baked" "hard-bakedly" ;
-lin 'home-baked_A' = mkA "home-baked" "more home-baked" "most home-baked" "home-bakedly" ;
-lin 'half-baked_A' = mkA "half-baked" "more half-baked" "most half-baked" "half-bakedly" ;
-lin sunbaked_A = mkA "sunbaked" "more sunbaked" "most sunbaked" "sunbakedly" ;
-lin beaked_A = mkA "beaked" "more beaked" "most beaked" "beakedly" ;
-lin naked_A = mkA "naked" "more naked" "most naked" "nakedly" ;
-lin 'round-backed_A' = mkA "round-backed" "more round-backed" "most round-backed" "round-backedly" ;
-lin 'crook-backed_A' = mkA "crook-backed" "more crook-backed" "most crook-backed" "crook-backedly" ;
-lin hardbacked_A = mkA "hardbacked" "more hardbacked" "most hardbacked" "hardbackedly" ;
-lin barebacked_A = mkA "barebacked" "more barebacked" "most barebacked" "barebackedly" ;
-lin hunchbacked_A = mkA "hunchbacked" "more hunchbacked" "most hunchbacked" "hunchbackedly" ;
-lin unbacked_A = mkA "unbacked" "more unbacked" "most unbacked" "unbackedly" ;
-lin humpbacked_A = mkA "humpbacked" "more humpbacked" "most humpbacked" "humpbackedly" ;
-lin paperbacked_A = mkA "paperbacked" "more paperbacked" "most paperbacked" "paperbackedly" ;
-lin razorbacked_A = mkA "razorbacked" "more razorbacked" "most razorbacked" "razorbackedly" ;
-lin gobsmacked_A = mkA "gobsmacked" "more gobsmacked" "most gobsmacked" "gobsmackedly" ;
-lin prepacked_A = mkA "prepacked" "more prepacked" "most prepacked" "prepackedly" ;
-lin 'half-tracked_A' = mkA "half-tracked" "more half-tracked" "most half-tracked" "half-trackedly" ;
-lin bedecked_A = mkA "bedecked" "more bedecked" "most bedecked" "bedeckedly" ;
-lin unchecked_A = mkA "unchecked" "more unchecked" "most unchecked" "uncheckedly" ;
-lin necked_A = mkA "necked" "more necked" "most necked" "neckedly" ;
-lin 'stiff-necked_A' = mkA "stiff-necked" "more stiff-necked" "most stiff-necked" "stiff-neckedly" ;
-lin 'high-necked_A' = mkA "high-necked" "more high-necked" "most high-necked" "high-neckedly" ;
-lin turtlenecked_A = mkA "turtlenecked" "more turtlenecked" "most turtlenecked" "turtleneckedly" ;
-lin bullnecked_A = mkA "bullnecked" "more bullnecked" "most bullnecked" "bullneckedly" ;
-lin henpecked_A = mkA "henpecked" "more henpecked" "most henpecked" "henpeckedly" ;
-lin specked_A = mkA "specked" "more specked" "most specked" "speckedly" ;
-lin 'hand-picked_A' = mkA "hand-picked" "more hand-picked" "most hand-picked" "hand-pickedly" ;
-lin wicked_A = mkA "wicked" "more wicked" "most wicked" "wickedly" ;
-lin deadlocked_A = mkA "deadlocked" "more deadlocked" "most deadlocked" "deadlockedly" ;
-lin landlocked_A = mkA "landlocked" "more landlocked" "most landlocked" "landlockedly" ;
-lin pocked_A = mkA "pocked" "more pocked" "most pocked" "pockedly" ;
-lin cassocked_A = mkA "cassocked" "more cassocked" "most cassocked" "cassockedly" ;
-lin untucked_A = mkA "untucked" "more untucked" "most untucked" "untuckedly" ;
-lin uncaulked_A = mkA "uncaulked" "more uncaulked" "most uncaulked" "uncaulkedly" ;
-lin 'spindle-shanked_A' = mkA "spindle-shanked" "more spindle-shanked" "most spindle-shanked" "spindle-shankedly" ;
-lin unbooked_A = mkA "unbooked" "more unbooked" "most unbooked" "unbookedly" ;
-lin precooked_A = mkA "precooked" "more precooked" "most precooked" "precookedly" ;
-lin uncooked_A = mkA "uncooked" "more uncooked" "most uncooked" "uncookedly" ;
-lin unprovoked_A = mkA "unprovoked" "more unprovoked" "most unprovoked" "unprovokedly" ;
-lin marked_A = mkA "marked" "more marked" "most marked" "markedly" ;
-lin 'well-marked_A' = mkA "well-marked" "more well-marked" "most well-marked" "well-markedly" ;
-lin trademarked_A = mkA "trademarked" "more trademarked" "most trademarked" "trademarkedly" ;
-lin pockmarked_A = mkA "pockmarked" "more pockmarked" "most pockmarked" "pockmarkedly" ;
-lin unmarked_A = mkA "unmarked" "more unmarked" "most unmarked" "unmarkedly" ;
-lin unasked_A = mkA "unasked" "more unasked" "most unasked" "unaskedly" ;
-lin asterisked_A = mkA "asterisked" "more asterisked" "most asterisked" "asteriskedly" ;
-lin unasterisked_A = mkA "unasterisked" "more unasterisked" "most unasterisked" "unasteriskedly" ;
-lin tusked_A = mkA "tusked" "more tusked" "most tusked" "tuskedly" ;
-lin peruked_A = mkA "peruked" "more peruked" "most peruked" "perukedly" ;
-lin gimbaled_A = mkA "gimbaled" "more gimbaled" "most gimbaled" "gimbaledly" ;
-lin sandaled_A = mkA "sandaled" "more sandaled" "most sandaled" "sandaledly" ;
-lin unconcealed_A = mkA "unconcealed" "more unconcealed" "most unconcealed" "unconcealedly" ;
-lin unhealed_A = mkA "unhealed" "more unhealed" "most unhealed" "unhealedly" ;
-lin unsealed_A = mkA "unsealed" "more unsealed" "most unsealed" "unsealedly" ;
-lin undersealed_A = mkA "undersealed" "more undersealed" "most undersealed" "undersealedly" ;
-lin petaled_A = mkA "petaled" "more petaled" "most petaled" "petaledly" ;
-lin fabled_A = mkA "fabled" "more fabled" "most fabled" "fabledly" ;
-lin gabled_A = mkA "gabled" "more gabled" "most gabled" "gabledly" ;
-lin syllabled_A = mkA "syllabled" "more syllabled" "most syllabled" "syllabledly" ;
-lin unsyllabled_A = mkA "unsyllabled" "more unsyllabled" "most unsyllabled" "unsyllabledly" ;
-lin bestubbled_A = mkA "bestubbled" "more bestubbled" "most bestubbled" "bestubbledly" ;
-lin marbled_A = mkA "marbled" "more marbled" "most marbled" "marbledly" ;
-lin untroubled_A = mkA "untroubled" "more untroubled" "most untroubled" "untroubledly" ;
-lin spectacled_A = mkA "spectacled" "more spectacled" "most spectacled" "spectacledly" ;
-lin bespectacled_A = mkA "bespectacled" "more bespectacled" "most bespectacled" "bespectacledly" ;
-lin tentacled_A = mkA "tentacled" "more tentacled" "most tentacled" "tentacledly" ;
-lin panicled_A = mkA "panicled" "more panicled" "most panicled" "panicledly" ;
-lin carbuncled_A = mkA "carbuncled" "more carbuncled" "most carbuncled" "carbuncledly" ;
-lin monocled_A = mkA "monocled" "more monocled" "most monocled" "monocledly" ;
-lin raddled_A = mkA "raddled" "more raddled" "most raddled" "raddledly" ;
-lin unbridled_A = mkA "unbridled" "more unbridled" "most unbridled" "unbridledly" ;
-lin unkindled_A = mkA "unkindled" "more unkindled" "most unkindled" "unkindledly" ;
-lin brindled_A = mkA "brindled" "more brindled" "most brindled" "brindledly" ;
-lin labeled_A = mkA "labeled" "more labeled" "most labeled" "labeledly" ;
-lin unlabeled_A = mkA "unlabeled" "more unlabeled" "most unlabeled" "unlabeledly" ;
-lin 'well-heeled_A' = mkA "well-heeled" "more well-heeled" "most well-heeled" "well-heeledly" ;
-lin 'three-wheeled_A' = mkA "three-wheeled" "more three-wheeled" "most three-wheeled" "three-wheeledly" ;
-lin unparalleled_A = mkA "unparalleled" "more unparalleled" "most unparalleled" "unparalleledly" ;
-lin untrammeled_A = mkA "untrammeled" "more untrammeled" "most untrammeled" "untrammeledly" ;
-lin paneled_A = mkA "paneled" "more paneled" "most paneled" "paneledly" ;
-lin appareled_A = mkA "appareled" "more appareled" "most appareled" "appareledly" ;
-lin unappareled_A = mkA "unappareled" "more unappareled" "most unappareled" "unappareledly" ;
-lin barreled_A = mkA "barreled" "more barreled" "most barreled" "barreledly" ;
-lin unbarreled_A = mkA "unbarreled" "more unbarreled" "most unbarreled" "unbarreledly" ;
-lin laureled_A = mkA "laureled" "more laureled" "most laureled" "laureledly" ;
-lin unlaureled_A = mkA "unlaureled" "more unlaureled" "most unlaureled" "unlaureledly" ;
-lin chiseled_A = mkA "chiseled" "more chiseled" "most chiseled" "chiseledly" ;
-lin tasseled_A = mkA "tasseled" "more tasseled" "most tasseled" "tasseledly" ;
-lin unfueled_A = mkA "unfueled" "more unfueled" "most unfueled" "unfueledly" ;
-lin untraveled_A = mkA "untraveled" "more untraveled" "most untraveled" "untraveledly" ;
-lin disheveled_A = mkA "disheveled" "more disheveled" "most disheveled" "disheveledly" ;
-lin shriveled_A = mkA "shriveled" "more shriveled" "most shriveled" "shriveledly" ;
-lin unbaffled_A = mkA "unbaffled" "more unbaffled" "most unbaffled" "unbaffledly" ;
-lin unruffled_A = mkA "unruffled" "more unruffled" "most unruffled" "unruffledly" ;
-lin unrifled_A = mkA "unrifled" "more unrifled" "most unrifled" "unrifledly" ;
-lin draggled_A = mkA "draggled" "more draggled" "most draggled" "draggledly" ;
-lin bedraggled_A = mkA "bedraggled" "more bedraggled" "most bedraggled" "bedraggledly" ;
-lin 'right-angled_A' = mkA "right-angled" "more right-angled" "most right-angled" "right-angledly" ;
-lin newfangled_A = mkA "newfangled" "more newfangled" "most newfangled" "newfangledly" ;
-lin bespangled_A = mkA "bespangled" "more bespangled" "most bespangled" "bespangledly" ;
-lin untangled_A = mkA "untangled" "more untangled" "most untangled" "untangledly" ;
-lin unmingled_A = mkA "unmingled" "more unmingled" "most unmingled" "unmingledly" ;
-lin hobnailed_A = mkA "hobnailed" "more hobnailed" "most hobnailed" "hobnailedly" ;
-lin 'swallow-tailed_A' = mkA "swallow-tailed" "more swallow-tailed" "most swallow-tailed" "swallow-tailedly" ;
-lin unreconciled_A = mkA "unreconciled" "more unreconciled" "most unreconciled" "unreconciledly" ;
-lin 'hard-boiled_A' = mkA "hard-boiled" "more hard-boiled" "most hard-boiled" "hard-boiledly" ;
-lin 'soft-boiled_A' = mkA "soft-boiled" "more soft-boiled" "most soft-boiled" "soft-boiledly" ;
-lin uncoiled_A = mkA "uncoiled" "more uncoiled" "most uncoiled" "uncoiledly" ;
-lin unoiled_A = mkA "unoiled" "more unoiled" "most unoiled" "unoiledly" ;
-lin unspoiled_A = mkA "unspoiled" "more unspoiled" "most unspoiled" "unspoiledly" ;
-lin 'travel-soiled_A' = mkA "travel-soiled" "more travel-soiled" "most travel-soiled" "travel-soiledly" ;
-lin unsoiled_A = mkA "unsoiled" "more unsoiled" "most unsoiled" "unsoiledly" ;
-lin shopsoiled_A = mkA "shopsoiled" "more shopsoiled" "most shopsoiled" "shopsoiledly" ;
-lin ariled_A = mkA "ariled" "more ariled" "most ariled" "ariledly" ;
-lin deckled_A = mkA "deckled" "more deckled" "most deckled" "deckledly" ;
-lin speckled_A = mkA "speckled" "more speckled" "most speckled" "speckledly" ;
-lin unwrinkled_A = mkA "unwrinkled" "more unwrinkled" "most unwrinkled" "unwrinkledly" ;
-lin 'so-called_A' = mkA "so-called" "more so-called" "most so-called" "so-calledly" ;
-lin sandalled_A = mkA "sandalled" "more sandalled" "most sandalled" "sandalledly" ;
-lin credentialled_A = mkA "credentialled" "more credentialled" "most credentialled" "credentialledly" ;
-lin petalled_A = mkA "petalled" "more petalled" "most petalled" "petalledly" ;
-lin unequalled_A = mkA "unequalled" "more unequalled" "most unequalled" "unequalledly" ;
-lin unrivalled_A = mkA "unrivalled" "more unrivalled" "most unrivalled" "unrivalledly" ;
-lin unlabelled_A = mkA "unlabelled" "more unlabelled" "most unlabelled" "unlabelledly" ;
-lin corbelled_A = mkA "corbelled" "more corbelled" "most corbelled" "corbelledly" ;
-lin unexcelled_A = mkA "unexcelled" "more unexcelled" "most unexcelled" "unexcelledly" ;
-lin unshelled_A = mkA "unshelled" "more unshelled" "most unshelled" "unshelledly" ;
-lin untrammelled_A = mkA "untrammelled" "more untrammelled" "most untrammelled" "untrammelledly" ;
-lin 'three-funnelled_A' = mkA "three-funnelled" "more three-funnelled" "most three-funnelled" "three-funnelledly" ;
-lin 'two-funnelled_A' = mkA "two-funnelled" "more two-funnelled" "most two-funnelled" "two-funnelledly" ;
-lin 'jet-propelled_A' = mkA "jet-propelled" "more jet-propelled" "most jet-propelled" "jet-propelledly" ;
-lin 'double-barrelled_A' = mkA "double-barrelled" "more double-barrelled" "most double-barrelled" "double-barrelledly" ;
-lin laurelled_A = mkA "laurelled" "more laurelled" "most laurelled" "laurelledly" ;
-lin tasselled_A = mkA "tasselled" "more tasselled" "most tasselled" "tasselledly" ;
-lin travelled_A = mkA "travelled" "more travelled" "most travelled" "travelledly" ;
-lin dishevelled_A = mkA "dishevelled" "more dishevelled" "most dishevelled" "dishevelledly" ;
-lin bejewelled_A = mkA "bejewelled" "more bejewelled" "most bejewelled" "bejewelledly" ;
-lin duckbilled_A = mkA "duckbilled" "more duckbilled" "most duckbilled" "duckbilledly" ;
-lin unfulfilled_A = mkA "unfulfilled" "more unfulfilled" "most unfulfilled" "unfulfilledly" ;
-lin unfilled_A = mkA "unfilled" "more unfilled" "most unfilled" "unfilledly" ;
-lin skilled_A = mkA "skilled" "more skilled" "most skilled" "skilledly" ;
-lin unskilled_A = mkA "unskilled" "more unskilled" "most unskilled" "unskilledly" ;
-lin frilled_A = mkA "frilled" "more frilled" "most frilled" "frilledly" ;
-lin untilled_A = mkA "untilled" "more untilled" "most untilled" "untilledly" ;
-lin 'self-willed_A' = mkA "self-willed" "more self-willed" "most self-willed" "self-willedly" ;
-lin unwilled_A = mkA "unwilled" "more unwilled" "most unwilled" "unwilledly" ;
-lin twilled_A = mkA "twilled" "more twilled" "most twilled" "twilledly" ;
-lin 'price-controlled_A' = mkA "price-controlled" "more price-controlled" "most price-controlled" "price-controlledly" ;
-lin uncontrolled_A = mkA "uncontrolled" "more uncontrolled" "most uncontrolled" "uncontrolledly" ;
-lin skulled_A = mkA "skulled" "more skulled" "most skulled" "skulledly" ;
-lin 'air-cooled_A' = mkA "air-cooled" "more air-cooled" "most air-cooled" "air-cooledly" ;
-lin precooled_A = mkA "precooled" "more precooled" "most precooled" "precooledly" ;
-lin unschooled_A = mkA "unschooled" "more unschooled" "most unschooled" "unschooledly" ;
-lin principled_A = mkA "principled" "more principled" "most principled" "principledly" ;
-lin 'high-principled_A' = mkA "high-principled" "more high-principled" "most high-principled" "high-principledly" ;
-lin unprincipled_A = mkA "unprincipled" "more unprincipled" "most unprincipled" "unprincipledly" ;
-lin unexampled_A = mkA "unexampled" "more unexampled" "most unexampled" "unexampledly" ;
-lin pimpled_A = mkA "pimpled" "more pimpled" "most pimpled" "pimpledly" ;
-lin unpeopled_A = mkA "unpeopled" "more unpeopled" "most unpeopled" "unpeopledly" ;
-lin empurpled_A = mkA "empurpled" "more empurpled" "most empurpled" "empurpledly" ;
-lin gnarled_A = mkA "gnarled" "more gnarled" "most gnarled" "gnarledly" ;
-lin whorled_A = mkA "whorled" "more whorled" "most whorled" "whorledly" ;
-lin burled_A = mkA "burled" "more burled" "most burled" "burledly" ;
-lin titled_A = mkA "titled" "more titled" "most titled" "titledly" ;
-lin unentitled_A = mkA "unentitled" "more unentitled" "most unentitled" "unentitledly" ;
-lin untitled_A = mkA "untitled" "more untitled" "most untitled" "untitledly" ;
-lin disgruntled_A = mkA "disgruntled" "more disgruntled" "most disgruntled" "disgruntledly" ;
-lin embattled_A = mkA "embattled" "more embattled" "most embattled" "embattledly" ;
-lin 'close-hauled_A' = mkA "close-hauled" "more close-hauled" "most close-hauled" "close-hauledly" ;
-lin unscheduled_A = mkA "unscheduled" "more unscheduled" "most unscheduled" "unscheduledly" ;
-lin 'clean-bowled_A' = mkA "clean-bowled" "more clean-bowled" "most clean-bowled" "clean-bowledly" ;
-lin cowled_A = mkA "cowled" "more cowled" "most cowled" "cowledly" ;
-lin 'self-styled_A' = mkA "self-styled" "more self-styled" "most self-styled" "self-styledly" ;
-lin grizzled_A = mkA "grizzled" "more grizzled" "most grizzled" "grizzledly" ;
-lin sozzled_A = mkA "sozzled" "more sozzled" "most sozzled" "sozzledly" ;
-lin undreamed_A = mkA "undreamed" "more undreamed" "most undreamed" "undreamedly" ;
-lin mainstreamed_A = mkA "mainstreamed" "more mainstreamed" "most mainstreamed" "mainstreamedly" ;
-lin unseamed_A = mkA "unseamed" "more unseamed" "most unseamed" "unseamedly" ;
-lin 'far-famed_A' = mkA "far-famed" "more far-famed" "most far-famed" "far-famedly" ;
-lin ashamed_A = mkA "ashamed" "more ashamed" "most ashamed" "ashamedly" ;
-lin unashamed_A = mkA "unashamed" "more unashamed" "most unashamed" "unashamedly" ;
-lin 'above-named_A' = mkA "above-named" "more above-named" "most above-named" "above-namedly" ;
-lin unnamed_A = mkA "unnamed" "more unnamed" "most unnamed" "unnamedly" ;
-lin unframed_A = mkA "unframed" "more unframed" "most unframed" "unframedly" ;
-lin untamed_A = mkA "untamed" "more untamed" "most untamed" "untamedly" ;
-lin unclaimed_A = mkA "unclaimed" "more unclaimed" "most unclaimed" "unclaimedly" ;
-lin sublimed_A = mkA "sublimed" "more sublimed" "most sublimed" "sublimedly" ;
-lin slimed_A = mkA "slimed" "more slimed" "most slimed" "slimedly" ;
-lin begrimed_A = mkA "begrimed" "more begrimed" "most begrimed" "begrimedly" ;
-lin 'well-timed_A' = mkA "well-timed" "more well-timed" "most well-timed" "well-timedly" ;
-lin 'ill-timed_A' = mkA "ill-timed" "more ill-timed" "most ill-timed" "ill-timedly" ;
-lin becalmed_A = mkA "becalmed" "more becalmed" "most becalmed" "becalmedly" ;
-lin unfilmed_A = mkA "unfilmed" "more unfilmed" "most unfilmed" "unfilmedly" ;
-lin gemmed_A = mkA "gemmed" "more gemmed" "most gemmed" "gemmedly" ;
-lin bedimmed_A = mkA "bedimmed" "more bedimmed" "most bedimmed" "bedimmedly" ;
-lin undimmed_A = mkA "undimmed" "more undimmed" "most undimmed" "undimmedly" ;
-lin 'red-rimmed_A' = mkA "red-rimmed" "more red-rimmed" "most red-rimmed" "red-rimmedly" ;
-lin 'horn-rimmed_A' = mkA "horn-rimmed" "more horn-rimmed" "most horn-rimmed" "horn-rimmedly" ;
-lin untrimmed_A = mkA "untrimmed" "more untrimmed" "most untrimmed" "untrimmedly" ;
-lin ungummed_A = mkA "ungummed" "more ungummed" "most ungummed" "ungummedly" ;
-lin domed_A = mkA "domed" "more domed" "most domed" "domedly" ;
-lin unfathomed_A = mkA "unfathomed" "more unfathomed" "most unfathomed" "unfathomedly" ;
-lin venomed_A = mkA "venomed" "more venomed" "most venomed" "venomedly" ;
-lin bedroomed_A = mkA "bedroomed" "more bedroomed" "most bedroomed" "bedroomedly" ;
-lin 'well-groomed_A' = mkA "well-groomed" "more well-groomed" "most well-groomed" "well-groomedly" ;
-lin ungroomed_A = mkA "ungroomed" "more ungroomed" "most ungroomed" "ungroomedly" ;
-lin bosomed_A = mkA "bosomed" "more bosomed" "most bosomed" "bosomedly" ;
-lin unaccustomed_A = mkA "unaccustomed" "more unaccustomed" "most unaccustomed" "unaccustomedly" ;
-lin bottomed_A = mkA "bottomed" "more bottomed" "most bottomed" "bottomedly" ;
-lin 'bell-bottomed_A' = mkA "bell-bottomed" "more bell-bottomed" "most bell-bottomed" "bell-bottomedly" ;
-lin 'copper-bottomed_A' = mkA "copper-bottomed" "more copper-bottomed" "most copper-bottomed" "copper-bottomedly" ;
-lin 'flat-bottomed_A' = mkA "flat-bottomed" "more flat-bottomed" "most flat-bottomed" "flat-bottomedly" ;
-lin 'one-armed_A' = mkA "one-armed" "more one-armed" "most one-armed" "one-armedly" ;
-lin 'light-armed_A' = mkA "light-armed" "more light-armed" "most light-armed" "light-armedly" ;
-lin unharmed_A = mkA "unharmed" "more unharmed" "most unharmed" "unharmedly" ;
-lin unarmed_A = mkA "unarmed" "more unarmed" "most unarmed" "unarmedly" ;
-lin unpermed_A = mkA "unpermed" "more unpermed" "most unpermed" "unpermedly" ;
-lin unconfirmed_A = mkA "unconfirmed" "more unconfirmed" "most unconfirmed" "unconfirmedly" ;
-lin unreformed_A = mkA "unreformed" "more unreformed" "most unreformed" "unreformedly" ;
-lin uniformed_A = mkA "uniformed" "more uniformed" "most uniformed" "uniformedly" ;
-lin malformed_A = mkA "malformed" "more malformed" "most malformed" "malformedly" ;
-lin 'well-informed_A' = mkA "well-informed" "more well-informed" "most well-informed" "well-informedly" ;
-lin uninformed_A = mkA "uninformed" "more uninformed" "most uninformed" "uninformedly" ;
-lin unformed_A = mkA "unformed" "more unformed" "most unformed" "unformedly" ;
-lin unperformed_A = mkA "unperformed" "more unperformed" "most unperformed" "unperformedly" ;
-lin volumed_A = mkA "volumed" "more volumed" "most volumed" "volumedly" ;
-lin unconsumed_A = mkA "unconsumed" "more unconsumed" "most unconsumed" "unconsumedly" ;
-lin costumed_A = mkA "costumed" "more costumed" "most costumed" "costumedly" ;
-lin unrhymed_A = mkA "unrhymed" "more unrhymed" "most unrhymed" "unrhymedly" ;
-lin turbaned_A = mkA "turbaned" "more turbaned" "most turbaned" "turbanedly" ;
-lin unweaned_A = mkA "unweaned" "more unweaned" "most unweaned" "unweanedly" ;
-lin acned_A = mkA "acned" "more acned" "most acned" "acnedly" ;
-lin 'case-hardened_A' = mkA "case-hardened" "more case-hardened" "most case-hardened" "case-hardenedly" ;
-lin unawakened_A = mkA "unawakened" "more unawakened" "most unawakened" "unawakenedly" ;
-lin 'ill-omened_A' = mkA "ill-omened" "more ill-omened" "most ill-omened" "ill-omenedly" ;
-lin unripened_A = mkA "unripened" "more unripened" "most unripened" "unripenedly" ;
-lin unopened_A = mkA "unopened" "more unopened" "most unopened" "unopenedly" ;
-lin unsharpened_A = mkA "unsharpened" "more unsharpened" "most unsharpened" "unsharpenedly" ;
-lin unsweetened_A = mkA "unsweetened" "more unsweetened" "most unsweetened" "unsweetenedly" ;
-lin unenlightened_A = mkA "unenlightened" "more unenlightened" "most unenlightened" "unenlightenedly" ;
-lin unfrightened_A = mkA "unfrightened" "more unfrightened" "most unfrightened" "unfrightenedly" ;
-lin unfattened_A = mkA "unfattened" "more unfattened" "most unfattened" "unfattenedly" ;
-lin unleavened_A = mkA "unleavened" "more unleavened" "most unleavened" "unleavenedly" ;
-lin unenlivened_A = mkA "unenlivened" "more unenlivened" "most unenlivened" "unenlivenedly" ;
-lin scrivened_A = mkA "scrivened" "more scrivened" "most scrivened" "scrivenedly" ;
-lin wizened_A = mkA "wizened" "more wizened" "most wizened" "wizenedly" ;
-lin unfeigned_A = mkA "unfeigned" "more unfeigned" "most unfeigned" "unfeignedly" ;
-lin nonaligned_A = mkA "nonaligned" "more nonaligned" "most nonaligned" "nonalignedly" ;
-lin unaligned_A = mkA "unaligned" "more unaligned" "most unaligned" "unalignedly" ;
-lin undesigned_A = mkA "undesigned" "more undesigned" "most undesigned" "undesignedly" ;
-lin unsigned_A = mkA "unsigned" "more unsigned" "most unsigned" "unsignedly" ;
-lin unassigned_A = mkA "unassigned" "more unassigned" "most unassigned" "unassignedly" ;
-lin chilblained_A = mkA "chilblained" "more chilblained" "most chilblained" "chilblainedly" ;
-lin unexplained_A = mkA "unexplained" "more unexplained" "most unexplained" "unexplainedly" ;
-lin 'addle-brained_A' = mkA "addle-brained" "more addle-brained" "most addle-brained" "addle-brainedly" ;
-lin addlebrained_A = mkA "addlebrained" "more addlebrained" "most addlebrained" "addlebrainedly" ;
-lin rattlebrained_A = mkA "rattlebrained" "more rattlebrained" "most rattlebrained" "rattlebrainedly" ;
-lin harebrained_A = mkA "harebrained" "more harebrained" "most harebrained" "harebrainedly" ;
-lin crackbrained_A = mkA "crackbrained" "more crackbrained" "most crackbrained" "crackbrainedly" ;
-lin featherbrained_A = mkA "featherbrained" "more featherbrained" "most featherbrained" "featherbrainedly" ;
-lin scatterbrained_A = mkA "scatterbrained" "more scatterbrained" "most scatterbrained" "scatterbrainedly" ;
-lin undrained_A = mkA "undrained" "more undrained" "most undrained" "undrainedly" ;
-lin grained_A = mkA "grained" "more grained" "most grained" "grainedly" ;
-lin 'close-grained_A' = mkA "close-grained" "more close-grained" "most close-grained" "close-grainedly" ;
-lin 'cross-grained_A' = mkA "cross-grained" "more cross-grained" "most cross-grained" "cross-grainedly" ;
-lin ingrained_A = mkA "ingrained" "more ingrained" "most ingrained" "ingrainedly" ;
-lin 'pot-trained_A' = mkA "pot-trained" "more pot-trained" "most pot-trained" "pot-trainedly" ;
-lin housetrained_A = mkA "housetrained" "more housetrained" "most housetrained" "housetrainedly" ;
-lin untrained_A = mkA "untrained" "more untrained" "most untrained" "untrainedly" ;
-lin unrestrained_A = mkA "unrestrained" "more unrestrained" "most unrestrained" "unrestrainedly" ;
-lin unconstrained_A = mkA "unconstrained" "more unconstrained" "most unconstrained" "unconstrainedly" ;
-lin unstrained_A = mkA "unstrained" "more unstrained" "most unstrained" "unstrainedly" ;
-lin 'self-contained_A' = mkA "self-contained" "more self-contained" "most self-contained" "self-containedly" ;
-lin 'travel-stained_A' = mkA "travel-stained" "more travel-stained" "most travel-stained" "travel-stainedly" ;
-lin bloodstained_A = mkA "bloodstained" "more bloodstained" "most bloodstained" "bloodstainedly" ;
-lin unstained_A = mkA "unstained" "more unstained" "most unstained" "unstainedly" ;
-lin uncombined_A = mkA "uncombined" "more uncombined" "most uncombined" "uncombinedly" ;
-lin veined_A = mkA "veined" "more veined" "most veined" "veinedly" ;
-lin undefined_A = mkA "undefined" "more undefined" "most undefined" "undefinedly" ;
-lin unrefined_A = mkA "unrefined" "more unrefined" "most unrefined" "unrefinedly" ;
-lin overrefined_A = mkA "overrefined" "more overrefined" "most overrefined" "overrefinedly" ;
-lin affined_A = mkA "affined" "more affined" "most affined" "affinedly" ;
-lin unconfined_A = mkA "unconfined" "more unconfined" "most unconfined" "unconfinedly" ;
-lin 'well-lined_A' = mkA "well-lined" "more well-lined" "most well-lined" "well-linedly" ;
-lin unlined_A = mkA "unlined" "more unlined" "most unlined" "unlinedly" ;
-lin undisciplined_A = mkA "undisciplined" "more undisciplined" "most undisciplined" "undisciplinedly" ;
-lin 'deep-mined_A' = mkA "deep-mined" "more deep-mined" "most deep-mined" "deep-minedly" ;
-lin unmined_A = mkA "unmined" "more unmined" "most unmined" "unminedly" ;
-lin undetermined_A = mkA "undetermined" "more undetermined" "most undetermined" "undeterminedly" ;
-lin disjoined_A = mkA "disjoined" "more disjoined" "most disjoined" "disjoinedly" ;
-lin basined_A = mkA "basined" "more basined" "most basined" "basinedly" ;
-lin tined_A = mkA "tined" "more tined" "most tined" "tinedly" ;
-lin spavined_A = mkA "spavined" "more spavined" "most spavined" "spavinedly" ;
-lin 'god-damned_A' = mkA "god-damned" "more god-damned" "most god-damned" "god-damnedly" ;
-lin columned_A = mkA "columned" "more columned" "most columned" "columnedly" ;
-lin noncolumned_A = mkA "noncolumned" "more noncolumned" "most noncolumned" "noncolumnedly" ;
-lin unplanned_A = mkA "unplanned" "more unplanned" "most unplanned" "unplannedly" ;
-lin undermanned_A = mkA "undermanned" "more undermanned" "most undermanned" "undermannedly" ;
-lin untanned_A = mkA "untanned" "more untanned" "most untanned" "untannedly" ;
-lin 'thick-skinned_A' = mkA "thick-skinned" "more thick-skinned" "most thick-skinned" "thick-skinnedly" ;
-lin 'thin-skinned_A' = mkA "thin-skinned" "more thin-skinned" "most thin-skinned" "thin-skinnedly" ;
-lin 'big-boned_A' = mkA "big-boned" "more big-boned" "most big-boned" "big-bonedly" ;
-lin 'strong-boned_A' = mkA "strong-boned" "more strong-boned" "most strong-boned" "strong-bonedly" ;
-lin rawboned_A = mkA "rawboned" "more rawboned" "most rawboned" "rawbonedly" ;
-lin 'old-fashioned_A' = mkA "old-fashioned" "more old-fashioned" "most old-fashioned" "old-fashionedly" ;
-lin 'full-fashioned_A' = mkA "full-fashioned" "more full-fashioned" "most full-fashioned" "full-fashionedly" ;
-lin 'fully-fashioned_A' = mkA "fully-fashioned" "more fully-fashioned" "most fully-fashioned" "fully-fashionedly" ;
-lin mullioned_A = mkA "mullioned" "more mullioned" "most mullioned" "mullionedly" ;
-lin envisioned_A = mkA "envisioned" "more envisioned" "most envisioned" "envisionedly" ;
-lin impassioned_A = mkA "impassioned" "more impassioned" "most impassioned" "impassionedly" ;
-lin unimpassioned_A = mkA "unimpassioned" "more unimpassioned" "most unimpassioned" "unimpassionedly" ;
-lin noncommissioned_A = mkA "noncommissioned" "more noncommissioned" "most noncommissioned" "noncommissionedly" ;
-lin unsanctioned_A = mkA "unsanctioned" "more unsanctioned" "most unsanctioned" "unsanctionedly" ;
-lin 'air-conditioned_A' = mkA "air-conditioned" "more air-conditioned" "most air-conditioned" "air-conditionedly" ;
-lin preconditioned_A = mkA "preconditioned" "more preconditioned" "most preconditioned" "preconditionedly" ;
-lin unconditioned_A = mkA "unconditioned" "more unconditioned" "most unconditioned" "unconditionedly" ;
-lin unpartitioned_A = mkA "unpartitioned" "more unpartitioned" "most unpartitioned" "unpartitionedly" ;
-lin 'above-mentioned_A' = mkA "above-mentioned" "more above-mentioned" "most above-mentioned" "above-mentionedly" ;
-lin undermentioned_A = mkA "undermentioned" "more undermentioned" "most undermentioned" "undermentionedly" ;
-lin 'well-intentioned_A' = mkA "well-intentioned" "more well-intentioned" "most well-intentioned" "well-intentionedly" ;
-lin bastioned_A = mkA "bastioned" "more bastioned" "most bastioned" "bastionedly" ;
-lin unquestioned_A = mkA "unquestioned" "more unquestioned" "most unquestioned" "unquestionedly" ;
-lin unironed_A = mkA "unironed" "more unironed" "most unironed" "unironedly" ;
-lin unseasoned_A = mkA "unseasoned" "more unseasoned" "most unseasoned" "unseasonedly" ;
-lin 'high-toned_A' = mkA "high-toned" "more high-toned" "most high-toned" "high-tonedly" ;
-lin unearned_A = mkA "unearned" "more unearned" "most unearned" "unearnedly" ;
-lin unconcerned_A = mkA "unconcerned" "more unconcerned" "most unconcerned" "unconcernedly" ;
-lin ferned_A = mkA "ferned" "more ferned" "most ferned" "fernedly" ;
-lin cairned_A = mkA "cairned" "more cairned" "most cairned" "cairnedly" ;
-lin unadorned_A = mkA "unadorned" "more unadorned" "most unadorned" "unadornedly" ;
-lin horned_A = mkA "horned" "more horned" "most horned" "hornedly" ;
-lin windburned_A = mkA "windburned" "more windburned" "most windburned" "windburnedly" ;
-lin sunburned_A = mkA "sunburned" "more sunburned" "most sunburned" "sunburnedly" ;
-lin unmourned_A = mkA "unmourned" "more unmourned" "most unmourned" "unmournedly" ;
-lin 'well-turned_A' = mkA "well-turned" "more well-turned" "most well-turned" "well-turnedly" ;
-lin unturned_A = mkA "unturned" "more unturned" "most unturned" "unturnedly" ;
-lin upturned_A = mkA "upturned" "more upturned" "most upturned" "upturnedly" ;
-lin awned_A = mkA "awned" "more awned" "most awned" "awnedly" ;
-lin renowned_A = mkA "renowned" "more renowned" "most renowned" "renownedly" ;
-lin unowned_A = mkA "unowned" "more unowned" "most unowned" "unownedly" ;
-lin uncrowned_A = mkA "uncrowned" "more uncrowned" "most uncrowned" "uncrownedly" ;
-lin tuxedoed_A = mkA "tuxedoed" "more tuxedoed" "most tuxedoed" "tuxedoedly" ;
-lin mustachioed_A = mkA "mustachioed" "more mustachioed" "most mustachioed" "mustachioedly" ;
-lin 'web-toed_A' = mkA "web-toed" "more web-toed" "most web-toed" "web-toedly" ;
-lin 'square-toed_A' = mkA "square-toed" "more square-toed" "most square-toed" "square-toedly" ;
-lin 'pigeon-toed_A' = mkA "pigeon-toed" "more pigeon-toed" "most pigeon-toed" "pigeon-toedly" ;
-lin 'cigar-shaped_A' = mkA "cigar-shaped" "more cigar-shaped" "most cigar-shaped" "cigar-shapedly" ;
-lin unshaped_A = mkA "unshaped" "more unshaped" "most unshaped" "unshapedly" ;
-lin undraped_A = mkA "undraped" "more undraped" "most undraped" "undrapedly" ;
-lin stovepiped_A = mkA "stovepiped" "more stovepiped" "most stovepiped" "stovepipedly" ;
-lin striped_A = mkA "striped" "more striped" "most striped" "stripedly" ;
-lin pinstriped_A = mkA "pinstriped" "more pinstriped" "most pinstriped" "pinstripedly" ;
-lin unhoped_A = mkA "unhoped" "more unhoped" "most unhoped" "unhopedly" ;
-lin undeveloped_A = mkA "undeveloped" "more undeveloped" "most undeveloped" "undevelopedly" ;
-lin underdeveloped_A = mkA "underdeveloped" "more underdeveloped" "most underdeveloped" "underdevelopedly" ;
-lin 'cloud-capped_A' = mkA "cloud-capped" "more cloud-capped" "most cloud-capped" "cloud-cappedly" ;
-lin uncapped_A = mkA "uncapped" "more uncapped" "most uncapped" "uncappedly" ;
-lin snowcapped_A = mkA "snowcapped" "more snowcapped" "most snowcapped" "snowcappedly" ;
-lin untapped_A = mkA "untapped" "more untapped" "most untapped" "untappedly" ;
-lin hipped_A = mkA "hipped" "more hipped" "most hipped" "hippedly" ;
-lin lipped_A = mkA "lipped" "more lipped" "most lipped" "lippedly" ;
-lin 'white-lipped_A' = mkA "white-lipped" "more white-lipped" "most white-lipped" "white-lippedly" ;
-lin 'tight-lipped_A' = mkA "tight-lipped" "more tight-lipped" "most tight-lipped" "tight-lippedly" ;
-lin unclipped_A = mkA "unclipped" "more unclipped" "most unclipped" "unclippedly" ;
-lin untipped_A = mkA "untipped" "more untipped" "most untipped" "untippedly" ;
-lin filtertipped_A = mkA "filtertipped" "more filtertipped" "most filtertipped" "filtertippedly" ;
-lin unequipped_A = mkA "unequipped" "more unequipped" "most unequipped" "unequippedly" ;
-lin 'close-cropped_A' = mkA "close-cropped" "more close-cropped" "most close-cropped" "close-croppedly" ;
-lin uncropped_A = mkA "uncropped" "more uncropped" "most uncropped" "uncroppedly" ;
-lin 'screw-topped_A' = mkA "screw-topped" "more screw-topped" "most screw-topped" "screw-toppedly" ;
-lin ungrasped_A = mkA "ungrasped" "more ungrasped" "most ungrasped" "ungraspedly" ;
-lin 'infra-red_A' = mkA "infra-red" "more infra-red" "most infra-red" "infra-redly" ;
-lin 'rose-red_A' = mkA "rose-red" "more rose-red" "most rose-red" "rose-redly" ;
-lin eared_A = mkA "eared" "more eared" "most eared" "earedly" ;
-lin 'dog-eared_A' = mkA "dog-eared" "more dog-eared" "most dog-eared" "dog-earedly" ;
-lin 'quick-eared_A' = mkA "quick-eared" "more quick-eared" "most quick-eared" "quick-earedly" ;
-lin 'lop-eared_A' = mkA "lop-eared" "more lop-eared" "most lop-eared" "lop-earedly" ;
-lin ungeared_A = mkA "ungeared" "more ungeared" "most ungeared" "ungearedly" ;
-lin unsheared_A = mkA "unsheared" "more unsheared" "most unsheared" "unshearedly" ;
-lin uncleared_A = mkA "uncleared" "more uncleared" "most uncleared" "unclearedly" ;
-lin unsugared_A = mkA "unsugared" "more unsugared" "most unsugared" "unsugaredly" ;
-lin unshared_A = mkA "unshared" "more unshared" "most unshared" "unsharedly" ;
-lin undeclared_A = mkA "undeclared" "more undeclared" "most undeclared" "undeclaredly" ;
-lin pillared_A = mkA "pillared" "more pillared" "most pillared" "pillaredly" ;
-lin unpillared_A = mkA "unpillared" "more unpillared" "most unpillared" "unpillaredly" ;
-lin unprepared_A = mkA "unprepared" "more unprepared" "most unprepared" "unpreparedly" ;
-lin infrared_A = mkA "infrared" "more infrared" "most infrared" "infraredly" ;
-lin 'well-bred_A' = mkA "well-bred" "more well-bred" "most well-bred" "well-bredly" ;
-lin 'ill-bred_A' = mkA "ill-bred" "more ill-bred" "most ill-bred" "ill-bredly" ;
-lin purebred_A = mkA "purebred" "more purebred" "most purebred" "purebredly" ;
-lin thoroughbred_A = mkA "thoroughbred" "more thoroughbred" "most thoroughbred" "thoroughbredly" ;
-lin inbred_A = mkA "inbred" "more inbred" "most inbred" "inbredly" ;
-lin underbred_A = mkA "underbred" "more underbred" "most underbred" "underbredly" ;
-lin outbred_A = mkA "outbred" "more outbred" "most outbred" "outbredly" ;
-lin lowbred_A = mkA "lowbred" "more lowbred" "most lowbred" "lowbredly" ;
-lin sacred_A = mkA "sacred" "more sacred" "most sacred" "sacredly" ;
-lin kindred_A = mkA "kindred" "more kindred" "most kindred" "kindredly" ;
-lin chambered_A = mkA "chambered" "more chambered" "most chambered" "chamberedly" ;
-lin membered_A = mkA "membered" "more membered" "most membered" "memberedly" ;
-lin timbered_A = mkA "timbered" "more timbered" "most timbered" "timberedly" ;
-lin 'half-timbered_A' = mkA "half-timbered" "more half-timbered" "most half-timbered" "half-timberedly" ;
-lin untimbered_A = mkA "untimbered" "more untimbered" "most untimbered" "untimberedly" ;
-lin unencumbered_A = mkA "unencumbered" "more unencumbered" "most unencumbered" "unencumberedly" ;
-lin unnumbered_A = mkA "unnumbered" "more unnumbered" "most unnumbered" "unnumberedly" ;
-lin unconsidered_A = mkA "unconsidered" "more unconsidered" "most unconsidered" "unconsideredly" ;
-lin 'round-shouldered_A' = mkA "round-shouldered" "more round-shouldered" "most round-shouldered" "round-shoulderedly" ;
-lin 'square-shouldered_A' = mkA "square-shouldered" "more square-shouldered" "most square-shouldered" "square-shoulderedly" ;
-lin unhindered_A = mkA "unhindered" "more unhindered" "most unhindered" "unhinderedly" ;
-lin unbordered_A = mkA "unbordered" "more unbordered" "most unbordered" "unborderedly" ;
-lin jiggered_A = mkA "jiggered" "more jiggered" "most jiggered" "jiggeredly" ;
-lin 'light-fingered_A' = mkA "light-fingered" "more light-fingered" "most light-fingered" "light-fingeredly" ;
-lin undeciphered_A = mkA "undeciphered" "more undeciphered" "most undeciphered" "undecipheredly" ;
-lin unfeathered_A = mkA "unfeathered" "more unfeathered" "most unfeathered" "unfeatheredly" ;
-lin unweathered_A = mkA "unweathered" "more unweathered" "most unweathered" "unweatheredly" ;
-lin untethered_A = mkA "untethered" "more untethered" "most untethered" "untetheredly" ;
-lin tiered_A = mkA "tiered" "more tiered" "most tiered" "tieredly" ;
-lin knackered_A = mkA "knackered" "more knackered" "most knackered" "knackeredly" ;
-lin whiskered_A = mkA "whiskered" "more whiskered" "most whiskered" "whiskeredly" ;
-lin antlered_A = mkA "antlered" "more antlered" "most antlered" "antleredly" ;
-lin mannered_A = mkA "mannered" "more mannered" "most mannered" "manneredly" ;
-lin 'ill-mannered_A' = mkA "ill-mannered" "more ill-mannered" "most ill-mannered" "ill-manneredly" ;
-lin unmannered_A = mkA "unmannered" "more unmannered" "most unmannered" "unmanneredly" ;
-lin 'three-cornered_A' = mkA "three-cornered" "more three-cornered" "most three-cornered" "three-corneredly" ;
-lin unhampered_A = mkA "unhampered" "more unhampered" "most unhampered" "unhamperedly" ;
-lin 'good-tempered_A' = mkA "good-tempered" "more good-tempered" "most good-tempered" "good-temperedly" ;
-lin 'quick-tempered_A' = mkA "quick-tempered" "more quick-tempered" "most quick-tempered" "quick-temperedly" ;
-lin 'hot-tempered_A' = mkA "hot-tempered" "more hot-tempered" "most hot-tempered" "hot-temperedly" ;
-lin 'short-tempered_A' = mkA "short-tempered" "more short-tempered" "most short-tempered" "short-temperedly" ;
-lin untempered_A = mkA "untempered" "more untempered" "most untempered" "untemperedly" ;
-lin slippered_A = mkA "slippered" "more slippered" "most slippered" "slipperedly" ;
-lin stoppered_A = mkA "stoppered" "more stoppered" "most stoppered" "stopperedly" ;
-lin unstoppered_A = mkA "unstoppered" "more unstoppered" "most unstoppered" "unstopperedly" ;
-lin telemetered_A = mkA "telemetered" "more telemetered" "most telemetered" "telemeteredly" ;
-lin raftered_A = mkA "raftered" "more raftered" "most raftered" "rafteredly" ;
-lin unaltered_A = mkA "unaltered" "more unaltered" "most unaltered" "unalteredly" ;
-lin centered_A = mkA "centered" "more centered" "most centered" "centeredly" ;
-lin sintered_A = mkA "sintered" "more sintered" "most sintered" "sinteredly" ;
-lin sceptered_A = mkA "sceptered" "more sceptered" "most sceptered" "scepteredly" ;
-lin unchartered_A = mkA "unchartered" "more unchartered" "most unchartered" "uncharteredly" ;
-lin bistered_A = mkA "bistered" "more bistered" "most bistered" "bisteredly" ;
-lin unregistered_A = mkA "unregistered" "more unregistered" "most unregistered" "unregisteredly" ;
-lin bespattered_A = mkA "bespattered" "more bespattered" "most bespattered" "bespatteredly" ;
-lin tattered_A = mkA "tattered" "more tattered" "most tattered" "tatteredly" ;
-lin unfettered_A = mkA "unfettered" "more unfettered" "most unfettered" "unfetteredly" ;
-lin lettered_A = mkA "lettered" "more lettered" "most lettered" "letteredly" ;
-lin unlettered_A = mkA "unlettered" "more unlettered" "most unlettered" "unletteredly" ;
-lin unshuttered_A = mkA "unshuttered" "more unshuttered" "most unshuttered" "unshutteredly" ;
-lin uncluttered_A = mkA "uncluttered" "more uncluttered" "most uncluttered" "unclutteredly" ;
-lin accoutered_A = mkA "accoutered" "more accoutered" "most accoutered" "accouteredly" ;
-lin unconquered_A = mkA "unconquered" "more unconquered" "most unconquered" "unconqueredly" ;
-lin fevered_A = mkA "fevered" "more fevered" "most fevered" "feveredly" ;
-lin 'white-livered_A' = mkA "white-livered" "more white-livered" "most white-livered" "white-liveredly" ;
-lin 'lily-livered_A' = mkA "lily-livered" "more lily-livered" "most lily-livered" "lily-liveredly" ;
-lin 'snow-covered_A' = mkA "snow-covered" "more snow-covered" "most snow-covered" "snow-coveredly" ;
-lin hardcovered_A = mkA "hardcovered" "more hardcovered" "most hardcovered" "hardcoveredly" ;
-lin undiscovered_A = mkA "undiscovered" "more undiscovered" "most undiscovered" "undiscoveredly" ;
-lin louvered_A = mkA "louvered" "more louvered" "most louvered" "louveredly" ;
-lin flowered_A = mkA "flowered" "more flowered" "most flowered" "floweredly" ;
-lin 'high-powered_A' = mkA "high-powered" "more high-powered" "most high-powered" "high-poweredly" ;
-lin unpowered_A = mkA "unpowered" "more unpowered" "most unpowered" "unpoweredly" ;
-lin unanswered_A = mkA "unanswered" "more unanswered" "most unanswered" "unansweredly" ;
-lin 'wire-haired_A' = mkA "wire-haired" "more wire-haired" "most wire-haired" "wire-hairedly" ;
-lin 'long-haired_A' = mkA "long-haired" "more long-haired" "most long-haired" "long-hairedly" ;
-lin unrepaired_A = mkA "unrepaired" "more unrepaired" "most unrepaired" "unrepairedly" ;
-lin unimpaired_A = mkA "unimpaired" "more unimpaired" "most unimpaired" "unimpairedly" ;
-lin oilfired_A = mkA "oilfired" "more oilfired" "most oilfired" "oilfiredly" ;
-lin uninspired_A = mkA "uninspired" "more uninspired" "most uninspired" "uninspiredly" ;
-lin 'time-expired_A' = mkA "time-expired" "more time-expired" "most time-expired" "time-expiredly" ;
-lin unexpired_A = mkA "unexpired" "more unexpired" "most unexpired" "unexpiredly" ;
-lin undesired_A = mkA "undesired" "more undesired" "most undesired" "undesiredly" ;
-lin untired_A = mkA "untired" "more untired" "most untired" "untiredly" ;
-lin labored_A = mkA "labored" "more labored" "most labored" "laboredly" ;
-lin colored_A = mkA "colored" "more colored" "most colored" "coloredly" ;
-lin varicolored_A = mkA "varicolored" "more varicolored" "most varicolored" "varicoloredly" ;
-lin uncolored_A = mkA "uncolored" "more uncolored" "most uncolored" "uncoloredly" ;
-lin unexplored_A = mkA "unexplored" "more unexplored" "most unexplored" "unexploredly" ;
-lin enamored_A = mkA "enamored" "more enamored" "most enamored" "enamoredly" ;
-lin armored_A = mkA "armored" "more armored" "most armored" "armoredly" ;
-lin unarmored_A = mkA "unarmored" "more unarmored" "most unarmored" "unarmoredly" ;
-lin visored_A = mkA "visored" "more visored" "most visored" "visoredly" ;
-lin uncensored_A = mkA "uncensored" "more uncensored" "most uncensored" "uncensoredly" ;
-lin alligatored_A = mkA "alligatored" "more alligatored" "most alligatored" "alligatoredly" ;
-lin bimotored_A = mkA "bimotored" "more bimotored" "most bimotored" "bimotoredly" ;
-lin trimotored_A = mkA "trimotored" "more trimotored" "most trimotored" "trimotoredly" ;
-lin untutored_A = mkA "untutored" "more untutored" "most untutored" "untutoredly" ;
-lin unflavored_A = mkA "unflavored" "more unflavored" "most unflavored" "unflavoredly" ;
-lin 'ill-starred_A' = mkA "ill-starred" "more ill-starred" "most ill-starred" "ill-starredly" ;
-lin undeterred_A = mkA "undeterred" "more undeterred" "most undeterred" "undeterredly" ;
-lin unstirred_A = mkA "unstirred" "more unstirred" "most unstirred" "unstirredly" ;
-lin furred_A = mkA "furred" "more furred" "most furred" "furredly" ;
-lin 'self-centred_A' = mkA "self-centred" "more self-centred" "most self-centred" "self-centredly" ;
-lin sceptred_A = mkA "sceptred" "more sceptred" "most sceptred" "sceptredly" ;
-lin 'smoke-cured_A' = mkA "smoke-cured" "more smoke-cured" "most smoke-cured" "smoke-curedly" ;
-lin 'home-cured_A' = mkA "home-cured" "more home-cured" "most home-cured" "home-curedly" ;
-lin unsecured_A = mkA "unsecured" "more unsecured" "most unsecured" "unsecuredly" ;
-lin uncured_A = mkA "uncured" "more uncured" "most uncured" "uncuredly" ;
-lin uninjured_A = mkA "uninjured" "more uninjured" "most uninjured" "uninjuredly" ;
-lin enured_A = mkA "enured" "more enured" "most enured" "enuredly" ;
-lin tenured_A = mkA "tenured" "more tenured" "most tenured" "tenuredly" ;
-lin 'snuff-coloured_A' = mkA "snuff-coloured" "more snuff-coloured" "most snuff-coloured" "snuff-colouredly" ;
-lin 'self-coloured_A' = mkA "self-coloured" "more self-coloured" "most self-coloured" "self-colouredly" ;
-lin 'parti-coloured_A' = mkA "parti-coloured" "more parti-coloured" "most parti-coloured" "parti-colouredly" ;
-lin 'light-coloured_A' = mkA "light-coloured" "more light-coloured" "most light-coloured" "light-colouredly" ;
-lin 'straw-coloured_A' = mkA "straw-coloured" "more straw-coloured" "most straw-coloured" "straw-colouredly" ;
-lin varicoloured_A = mkA "varicoloured" "more varicoloured" "most varicoloured" "varicolouredly" ;
-lin uncoloured_A = mkA "uncoloured" "more uncoloured" "most uncoloured" "uncolouredly" ;
-lin armoured_A = mkA "armoured" "more armoured" "most armoured" "armouredly" ;
-lin 'good-humoured_A' = mkA "good-humoured" "more good-humoured" "most good-humoured" "good-humouredly" ;
-lin 'time-honoured_A' = mkA "time-honoured" "more time-honoured" "most time-honoured" "time-honouredly" ;
-lin unsoured_A = mkA "unsoured" "more unsoured" "most unsoured" "unsouredly" ;
-lin 'well-favoured_A' = mkA "well-favoured" "more well-favoured" "most well-favoured" "well-favouredly" ;
-lin 'ill-favoured_A' = mkA "ill-favoured" "more ill-favoured" "most ill-favoured" "ill-favouredly" ;
-lin unmeasured_A = mkA "unmeasured" "more unmeasured" "most unmeasured" "unmeasuredly" ;
-lin leisured_A = mkA "leisured" "more leisured" "most leisured" "leisuredly" ;
-lin uninsured_A = mkA "uninsured" "more uninsured" "most uninsured" "uninsuredly" ;
-lin 'self-assured_A' = mkA "self-assured" "more self-assured" "most self-assured" "self-assuredly" ;
-lin unassured_A = mkA "unassured" "more unassured" "most unassured" "unassuredly" ;
-lin 'good-natured_A' = mkA "good-natured" "more good-natured" "most good-natured" "good-naturedly" ;
-lin 'ill-natured_A' = mkA "ill-natured" "more ill-natured" "most ill-natured" "ill-naturedly" ;
-lin denatured_A = mkA "denatured" "more denatured" "most denatured" "denaturedly" ;
-lin unstructured_A = mkA "unstructured" "more unstructured" "most unstructured" "unstructuredly" ;
-lin cultured_A = mkA "cultured" "more cultured" "most cultured" "culturedly" ;
-lin uncultured_A = mkA "uncultured" "more uncultured" "most uncultured" "unculturedly" ;
-lin textured_A = mkA "textured" "more textured" "most textured" "texturedly" ;
-lin unreleased_A = mkA "unreleased" "more unreleased" "most unreleased" "unreleasedly" ;
-lin diseased_A = mkA "diseased" "more diseased" "most diseased" "diseasedly" ;
-lin unbiased_A = mkA "unbiased" "more unbiased" "most unbiased" "unbiasedly" ;
-lin upraised_A = mkA "upraised" "more upraised" "most upraised" "upraisedly" ;
-lin immunocompromised_A = mkA "immunocompromised" "more immunocompromised" "most immunocompromised" "immunocompromisedly" ;
-lin equipoised_A = mkA "equipoised" "more equipoised" "most equipoised" "equipoisedly" ;
-lin unsurprised_A = mkA "unsurprised" "more unsurprised" "most unsurprised" "unsurprisedly" ;
-lin unpractised_A = mkA "unpractised" "more unpractised" "most unpractised" "unpractisedly" ;
-lin undisguised_A = mkA "undisguised" "more undisguised" "most undisguised" "undisguisedly" ;
-lin 'well-advised_A' = mkA "well-advised" "more well-advised" "most well-advised" "well-advisedly" ;
-lin 'ill-advised_A' = mkA "ill-advised" "more ill-advised" "most ill-advised" "ill-advisedly" ;
-lin unadvised_A = mkA "unadvised" "more unadvised" "most unadvised" "unadvisedly" ;
-lin unrevised_A = mkA "unrevised" "more unrevised" "most unrevised" "unrevisedly" ;
-lin unsupervised_A = mkA "unsupervised" "more unsupervised" "most unsupervised" "unsupervisedly" ;
-lin unlicensed_A = mkA "unlicensed" "more unlicensed" "most unlicensed" "unlicensedly" ;
-lin thrombosed_A = mkA "thrombosed" "more thrombosed" "most thrombosed" "thrombosedly" ;
-lin unenclosed_A = mkA "unenclosed" "more unenclosed" "most unenclosed" "unenclosedly" ;
-lin undisclosed_A = mkA "undisclosed" "more undisclosed" "most undisclosed" "undisclosedly" ;
-lin 'snub-nosed_A' = mkA "snub-nosed" "more snub-nosed" "most snub-nosed" "snub-nosedly" ;
-lin 'pug-nosed_A' = mkA "pug-nosed" "more pug-nosed" "most pug-nosed" "pug-nosedly" ;
-lin 'hook-nosed_A' = mkA "hook-nosed" "more hook-nosed" "most hook-nosed" "hook-nosedly" ;
-lin 'snot-nosed_A' = mkA "snot-nosed" "more snot-nosed" "most snot-nosed" "snot-nosedly" ;
-lin stenosed_A = mkA "stenosed" "more stenosed" "most stenosed" "stenosedly" ;
-lin undiagnosed_A = mkA "undiagnosed" "more undiagnosed" "most undiagnosed" "undiagnosedly" ;
-lin malposed_A = mkA "malposed" "more malposed" "most malposed" "malposedly" ;
-lin 'self-imposed_A' = mkA "self-imposed" "more self-imposed" "most self-imposed" "self-imposedly" ;
-lin unposed_A = mkA "unposed" "more unposed" "most unposed" "unposedly" ;
-lin unopposed_A = mkA "unopposed" "more unopposed" "most unopposed" "unopposedly" ;
-lin supposed_A = mkA "supposed" "more supposed" "most supposed" "supposedly" ;
-lin 'well-disposed_A' = mkA "well-disposed" "more well-disposed" "most well-disposed" "well-disposedly" ;
-lin 'ill-disposed_A' = mkA "ill-disposed" "more ill-disposed" "most ill-disposed" "ill-disposedly" ;
-lin indisposed_A = mkA "indisposed" "more indisposed" "most indisposed" "indisposedly" ;
-lin unexposed_A = mkA "unexposed" "more unexposed" "most unexposed" "unexposedly" ;
-lin lapsed_A = mkA "lapsed" "more lapsed" "most lapsed" "lapsedly" ;
-lin elapsed_A = mkA "elapsed" "more elapsed" "most elapsed" "elapsedly" ;
-lin unrehearsed_A = mkA "unrehearsed" "more unrehearsed" "most unrehearsed" "unrehearsedly" ;
-lin versed_A = mkA "versed" "more versed" "most versed" "versedly" ;
-lin untraversed_A = mkA "untraversed" "more untraversed" "most untraversed" "untraversedly" ;
-lin unversed_A = mkA "unversed" "more unversed" "most unversed" "unversedly" ;
-lin accursed_A = mkA "accursed" "more accursed" "most accursed" "accursedly" ;
-lin unbiassed_A = mkA "unbiassed" "more unbiassed" "most unbiassed" "unbiassedly" ;
-lin unsurpassed_A = mkA "unsurpassed" "more unsurpassed" "most unsurpassed" "unsurpassedly" ;
-lin unprocessed_A = mkA "unprocessed" "more unprocessed" "most unprocessed" "unprocessedly" ;
-lin abscessed_A = mkA "abscessed" "more abscessed" "most abscessed" "abscessedly" ;
-lin 'self-confessed_A' = mkA "self-confessed" "more self-confessed" "most self-confessed" "self-confessedly" ;
-lin unconfessed_A = mkA "unconfessed" "more unconfessed" "most unconfessed" "unconfessedly" ;
-lin unblessed_A = mkA "unblessed" "more unblessed" "most unblessed" "unblessedly" ;
-lin unwitnessed_A = mkA "unwitnessed" "more unwitnessed" "most unwitnessed" "unwitnessedly" ;
-lin 'self-addressed_A' = mkA "self-addressed" "more self-addressed" "most self-addressed" "self-addressedly" ;
-lin unaddressed_A = mkA "unaddressed" "more unaddressed" "most unaddressed" "unaddressedly" ;
-lin underdressed_A = mkA "underdressed" "more underdressed" "most underdressed" "underdressedly" ;
-lin unrepressed_A = mkA "unrepressed" "more unrepressed" "most unrepressed" "unrepressedly" ;
-lin unimpressed_A = mkA "unimpressed" "more unimpressed" "most unimpressed" "unimpressedly" ;
-lin unpressed_A = mkA "unpressed" "more unpressed" "most unpressed" "unpressedly" ;
-lin appressed_A = mkA "appressed" "more appressed" "most appressed" "appressedly" ;
-lin unsuppressed_A = mkA "unsuppressed" "more unsuppressed" "most unsuppressed" "unsuppressedly" ;
-lin immunosuppressed_A = mkA "immunosuppressed" "more immunosuppressed" "most immunosuppressed" "immunosuppressedly" ;
-lin unexpressed_A = mkA "unexpressed" "more unexpressed" "most unexpressed" "unexpressedly" ;
-lin prestressed_A = mkA "prestressed" "more prestressed" "most prestressed" "prestressedly" ;
-lin unstressed_A = mkA "unstressed" "more unstressed" "most unstressed" "unstressedly" ;
-lin 'self-possessed_A' = mkA "self-possessed" "more self-possessed" "most self-possessed" "self-possessedly" ;
-lin unkissed_A = mkA "unkissed" "more unkissed" "most unkissed" "unkissedly" ;
-lin 'storm-tossed_A' = mkA "storm-tossed" "more storm-tossed" "most storm-tossed" "storm-tossedly" ;
-lin 'tempest-tossed_A' = mkA "tempest-tossed" "more tempest-tossed" "most tempest-tossed" "tempest-tossedly" ;
-lin cussed_A = mkA "cussed" "more cussed" "most cussed" "cussedly" ;
-lin unabused_A = mkA "unabused" "more unabused" "most unabused" "unabusedly" ;
-lin unfocused_A = mkA "unfocused" "more unfocused" "most unfocused" "unfocusedly" ;
-lin unexcused_A = mkA "unexcused" "more unexcused" "most unexcused" "unexcusedly" ;
-lin bemused_A = mkA "bemused" "more bemused" "most bemused" "bemusedly" ;
-lin unused_A = mkA "unused" "more unused" "most unused" "unusedly" ;
-lin calloused_A = mkA "calloused" "more calloused" "most calloused" "callousedly" ;
-lin disused_A = mkA "disused" "more disused" "most disused" "disusedly" ;
-lin unabated_A = mkA "unabated" "more unabated" "most unabated" "unabatedly" ;
-lin undedicated_A = mkA "undedicated" "more undedicated" "most undedicated" "undedicatedly" ;
-lin uncomplicated_A = mkA "uncomplicated" "more uncomplicated" "most uncomplicated" "uncomplicatedly" ;
-lin unlubricated_A = mkA "unlubricated" "more unlubricated" "most unlubricated" "unlubricatedly" ;
-lin undomesticated_A = mkA "undomesticated" "more undomesticated" "most undomesticated" "undomesticatedly" ;
-lin sophisticated_A = mkA "sophisticated" "more sophisticated" "most sophisticated" "sophisticatedly" ;
-lin unsophisticated_A = mkA "unsophisticated" "more unsophisticated" "most unsophisticated" "unsophisticatedly" ;
-lin unlocated_A = mkA "unlocated" "more unlocated" "most unlocated" "unlocatedly" ;
-lin unreciprocated_A = mkA "unreciprocated" "more unreciprocated" "most unreciprocated" "unreciprocatedly" ;
-lin 'self-educated_A' = mkA "self-educated" "more self-educated" "most self-educated" "self-educatedly" ;
-lin uneducated_A = mkA "uneducated" "more uneducated" "most uneducated" "uneducatedly" ;
-lin undereducated_A = mkA "undereducated" "more undereducated" "most undereducated" "undereducatedly" ;
-lin 'short-dated_A' = mkA "short-dated" "more short-dated" "most short-dated" "short-datedly" ;
-lin unconsolidated_A = mkA "unconsolidated" "more unconsolidated" "most unconsolidated" "unconsolidatedly" ;
-lin dilapidated_A = mkA "dilapidated" "more dilapidated" "most dilapidated" "dilapidatedly" ;
-lin undated_A = mkA "undated" "more undated" "most undated" "undatedly" ;
-lin outdated_A = mkA "outdated" "more outdated" "most outdated" "outdatedly" ;
-lin trabeated_A = mkA "trabeated" "more trabeated" "most trabeated" "trabeatedly" ;
-lin undefeated_A = mkA "undefeated" "more undefeated" "most undefeated" "undefeatedly" ;
-lin heated_A = mkA "heated" "more heated" "most heated" "heatedly" ;
-lin unheated_A = mkA "unheated" "more unheated" "most unheated" "unheatedly" ;
-lin nucleated_A = mkA "nucleated" "more nucleated" "most nucleated" "nucleatedly" ;
-lin undelineated_A = mkA "undelineated" "more undelineated" "most undelineated" "undelineatedly" ;
-lin untreated_A = mkA "untreated" "more untreated" "most untreated" "untreatedly" ;
-lin 'deep-seated_A' = mkA "deep-seated" "more deep-seated" "most deep-seated" "deep-seatedly" ;
-lin 'ill-fated_A' = mkA "ill-fated" "more ill-fated" "most ill-fated" "ill-fatedly" ;
-lin variegated_A = mkA "variegated" "more variegated" "most variegated" "variegatedly" ;
-lin unobligated_A = mkA "unobligated" "more unobligated" "most unobligated" "unobligatedly" ;
-lin unmitigated_A = mkA "unmitigated" "more unmitigated" "most unmitigated" "unmitigatedly" ;
-lin unexpurgated_A = mkA "unexpurgated" "more unexpurgated" "most unexpurgated" "unexpurgatedly" ;
-lin glaciated_A = mkA "glaciated" "more glaciated" "most glaciated" "glaciatedly" ;
-lin unappreciated_A = mkA "unappreciated" "more unappreciated" "most unappreciated" "unappreciatedly" ;
-lin unaffiliated_A = mkA "unaffiliated" "more unaffiliated" "most unaffiliated" "unaffiliatedly" ;
-lin ammoniated_A = mkA "ammoniated" "more ammoniated" "most ammoniated" "ammoniatedly" ;
-lin uninebriated_A = mkA "uninebriated" "more uninebriated" "most uninebriated" "uninebriatedly" ;
-lin asteriated_A = mkA "asteriated" "more asteriated" "most asteriated" "asteriatedly" ;
-lin thoriated_A = mkA "thoriated" "more thoriated" "most thoriated" "thoriatedly" ;
-lin striated_A = mkA "striated" "more striated" "most striated" "striatedly" ;
-lin uninitiated_A = mkA "uninitiated" "more uninitiated" "most uninitiated" "uninitiatedly" ;
-lin dedifferentiated_A = mkA "dedifferentiated" "more dedifferentiated" "most dedifferentiated" "dedifferentiatedly" ;
-lin undifferentiated_A = mkA "undifferentiated" "more undifferentiated" "most undifferentiated" "undifferentiatedly" ;
-lin ablated_A = mkA "ablated" "more ablated" "most ablated" "ablatedly" ;
-lin belated_A = mkA "belated" "more belated" "most belated" "belatedly" ;
-lin unrelated_A = mkA "unrelated" "more unrelated" "most unrelated" "unrelatedly" ;
-lin uncorrelated_A = mkA "uncorrelated" "more uncorrelated" "most uncorrelated" "uncorrelatedly" ;
-lin misrelated_A = mkA "misrelated" "more misrelated" "most misrelated" "misrelatedly" ;
-lin unventilated_A = mkA "unventilated" "more unventilated" "most unventilated" "unventilatedly" ;
-lin pixilated_A = mkA "pixilated" "more pixilated" "most pixilated" "pixilatedly" ;
-lin ocellated_A = mkA "ocellated" "more ocellated" "most ocellated" "ocellatedly" ;
-lin crenellated_A = mkA "crenellated" "more crenellated" "most crenellated" "crenellatedly" ;
-lin tessellated_A = mkA "tessellated" "more tessellated" "most tessellated" "tessellatedly" ;
-lin castellated_A = mkA "castellated" "more castellated" "most castellated" "castellatedly" ;
-lin carbolated_A = mkA "carbolated" "more carbolated" "most carbolated" "carbolatedly" ;
-lin mentholated_A = mkA "mentholated" "more mentholated" "most mentholated" "mentholatedly" ;
-lin 'steel-plated_A' = mkA "steel-plated" "more steel-plated" "most steel-plated" "steel-platedly" ;
-lin discombobulated_A = mkA "discombobulated" "more discombobulated" "most discombobulated" "discombobulatedly" ;
-lin sacculated_A = mkA "sacculated" "more sacculated" "most sacculated" "sacculatedly" ;
-lin unarticulated_A = mkA "unarticulated" "more unarticulated" "most unarticulated" "unarticulatedly" ;
-lin acidulated_A = mkA "acidulated" "more acidulated" "most acidulated" "acidulatedly" ;
-lin unmodulated_A = mkA "unmodulated" "more unmodulated" "most unmodulated" "unmodulatedly" ;
-lin nodulated_A = mkA "nodulated" "more nodulated" "most nodulated" "nodulatedly" ;
-lin unregulated_A = mkA "unregulated" "more unregulated" "most unregulated" "unregulatedly" ;
-lin underpopulated_A = mkA "underpopulated" "more underpopulated" "most underpopulated" "underpopulatedly" ;
-lin methylated_A = mkA "methylated" "more methylated" "most methylated" "methylatedly" ;
-lin unanimated_A = mkA "unanimated" "more unanimated" "most unanimated" "unanimatedly" ;
-lin unconsummated_A = mkA "unconsummated" "more unconsummated" "most unconsummated" "unconsummatedly" ;
-lin unmated_A = mkA "unmated" "more unmated" "most unmated" "unmatedly" ;
-lin bichromated_A = mkA "bichromated" "more bichromated" "most bichromated" "bichromatedly" ;
-lin unvaccinated_A = mkA "unvaccinated" "more unvaccinated" "most unvaccinated" "unvaccinatedly" ;
-lin iodinated_A = mkA "iodinated" "more iodinated" "most iodinated" "iodinatedly" ;
-lin 'unco-ordinated_A' = mkA "unco-ordinated" "more unco-ordinated" "most unco-ordinated" "unco-ordinatedly" ;
-lin uncoordinated_A = mkA "uncoordinated" "more uncoordinated" "most uncoordinated" "uncoordinatedly" ;
-lin myelinated_A = mkA "myelinated" "more myelinated" "most myelinated" "myelinatedly" ;
-lin unmyelinated_A = mkA "unmyelinated" "more unmyelinated" "most unmyelinated" "unmyelinatedly" ;
-lin uncontaminated_A = mkA "uncontaminated" "more uncontaminated" "most uncontaminated" "uncontaminatedly" ;
-lin resinated_A = mkA "resinated" "more resinated" "most resinated" "resinatedly" ;
-lin carbonated_A = mkA "carbonated" "more carbonated" "most carbonated" "carbonatedly" ;
-lin noncarbonated_A = mkA "noncarbonated" "more noncarbonated" "most noncarbonated" "noncarbonatedly" ;
-lin opinionated_A = mkA "opinionated" "more opinionated" "most opinionated" "opinionatedly" ;
-lin 'self-opinionated_A' = mkA "self-opinionated" "more self-opinionated" "most self-opinionated" "self-opinionatedly" ;
-lin 'sugar-coated_A' = mkA "sugar-coated" "more sugar-coated" "most sugar-coated" "sugar-coatedly" ;
-lin petticoated_A = mkA "petticoated" "more petticoated" "most petticoated" "petticoatedly" ;
-lin uncoated_A = mkA "uncoated" "more uncoated" "most uncoated" "uncoatedly" ;
-lin undercoated_A = mkA "undercoated" "more undercoated" "most undercoated" "undercoatedly" ;
-lin bloated_A = mkA "bloated" "more bloated" "most bloated" "bloatedly" ;
-lin moated_A = mkA "moated" "more moated" "most moated" "moatedly" ;
-lin throated_A = mkA "throated" "more throated" "most throated" "throatedly" ;
-lin 'addle-pated_A' = mkA "addle-pated" "more addle-pated" "most addle-pated" "addle-patedly" ;
-lin rattlepated_A = mkA "rattlepated" "more rattlepated" "most rattlepated" "rattlepatedly" ;
-lin unanticipated_A = mkA "unanticipated" "more unanticipated" "most unanticipated" "unanticipatedly" ;
-lin unconstipated_A = mkA "unconstipated" "more unconstipated" "most unconstipated" "unconstipatedly" ;
-lin deconsecrated_A = mkA "deconsecrated" "more deconsecrated" "most deconsecrated" "deconsecratedly" ;
-lin unaerated_A = mkA "unaerated" "more unaerated" "most unaerated" "unaeratedly" ;
-lin unmoderated_A = mkA "unmoderated" "more unmoderated" "most unmoderated" "unmoderatedly" ;
-lin unadulterated_A = mkA "unadulterated" "more unadulterated" "most unadulterated" "unadulteratedly" ;
-lin desegrated_A = mkA "desegrated" "more desegrated" "most desegrated" "desegratedly" ;
-lin nonintegrated_A = mkA "nonintegrated" "more nonintegrated" "most nonintegrated" "nonintegratedly" ;
-lin borated_A = mkA "borated" "more borated" "most borated" "boratedly" ;
-lin unelaborated_A = mkA "unelaborated" "more unelaborated" "most unelaborated" "unelaboratedly" ;
-lin uncorroborated_A = mkA "uncorroborated" "more uncorroborated" "most uncorroborated" "uncorroboratedly" ;
-lin camphorated_A = mkA "camphorated" "more camphorated" "most camphorated" "camphoratedly" ;
-lin uncamphorated_A = mkA "uncamphorated" "more uncamphorated" "most uncamphorated" "uncamphoratedly" ;
-lin unincorporated_A = mkA "unincorporated" "more unincorporated" "most unincorporated" "unincorporatedly" ;
-lin serrated_A = mkA "serrated" "more serrated" "most serrated" "serratedly" ;
-lin uncastrated_A = mkA "uncastrated" "more uncastrated" "most uncastrated" "uncastratedly" ;
-lin unsaturated_A = mkA "unsaturated" "more unsaturated" "most unsaturated" "unsaturatedly" ;
-lin monounsaturated_A = mkA "monounsaturated" "more monounsaturated" "most monounsaturated" "monounsaturatedly" ;
-lin polyunsaturated_A = mkA "polyunsaturated" "more polyunsaturated" "most polyunsaturated" "polyunsaturatedly" ;
-lin supersaturated_A = mkA "supersaturated" "more supersaturated" "most supersaturated" "supersaturatedly" ;
-lin uncompensated_A = mkA "uncompensated" "more uncompensated" "most uncompensated" "uncompensatedly" ;
-lin unsated_A = mkA "unsated" "more unsated" "most unsated" "unsatedly" ;
-lin unpremeditated_A = mkA "unpremeditated" "more unpremeditated" "most unpremeditated" "unpremeditatedly" ;
-lin unagitated_A = mkA "unagitated" "more unagitated" "most unagitated" "unagitatedly" ;
-lin unstated_A = mkA "unstated" "more unstated" "most unstated" "unstatedly" ;
-lin antiquated_A = mkA "antiquated" "more antiquated" "most antiquated" "antiquatedly" ;
-lin uncultivated_A = mkA "uncultivated" "more uncultivated" "most uncultivated" "uncultivatedly" ;
-lin unmotivated_A = mkA "unmotivated" "more unmotivated" "most unmotivated" "unmotivatedly" ;
-lin indebted_A = mkA "indebted" "more indebted" "most indebted" "indebtedly" ;
-lin undoubted_A = mkA "undoubted" "more undoubted" "most undoubted" "undoubtedly" ;
-lin 'ill-affected_A' = mkA "ill-affected" "more ill-affected" "most ill-affected" "ill-affectedly" ;
-lin unaffected_A = mkA "unaffected" "more unaffected" "most unaffected" "unaffectedly" ;
-lin disaffected_A = mkA "disaffected" "more disaffected" "most disaffected" "disaffectedly" ;
-lin uninfected_A = mkA "uninfected" "more uninfected" "most uninfected" "uninfectedly" ;
-lin introjected_A = mkA "introjected" "more introjected" "most introjected" "introjectedly" ;
-lin unselected_A = mkA "unselected" "more unselected" "most unselected" "unselectedly" ;
-lin unreflected_A = mkA "unreflected" "more unreflected" "most unreflected" "unreflectedly" ;
-lin uninflected_A = mkA "uninflected" "more uninflected" "most uninflected" "uninflectedly" ;
-lin 'self-collected_A' = mkA "self-collected" "more self-collected" "most self-collected" "self-collectedly" ;
-lin uncollected_A = mkA "uncollected" "more uncollected" "most uncollected" "uncollectedly" ;
-lin 'well-connected_A' = mkA "well-connected" "more well-connected" "most well-connected" "well-connectedly" ;
-lin unconnected_A = mkA "unconnected" "more unconnected" "most unconnected" "unconnectedly" ;
-lin unsuspected_A = mkA "unsuspected" "more unsuspected" "most unsuspected" "unsuspectedly" ;
-lin unexpected_A = mkA "unexpected" "more unexpected" "most unexpected" "unexpectedly" ;
-lin uncorrected_A = mkA "uncorrected" "more uncorrected" "most uncorrected" "uncorrectedly" ;
-lin undetected_A = mkA "undetected" "more undetected" "most undetected" "undetectedly" ;
-lin unprotected_A = mkA "unprotected" "more unprotected" "most unprotected" "unprotectedly" ;
-lin unaddicted_A = mkA "unaddicted" "more unaddicted" "most unaddicted" "unaddictedly" ;
-lin unpredicted_A = mkA "unpredicted" "more unpredicted" "most unpredicted" "unpredictedly" ;
-lin undepicted_A = mkA "undepicted" "more undepicted" "most undepicted" "undepictedly" ;
-lin unrestricted_A = mkA "unrestricted" "more unrestricted" "most unrestricted" "unrestrictedly" ;
-lin unconstricted_A = mkA "unconstricted" "more unconstricted" "most unconstricted" "unconstrictedly" ;
-lin 'well-conducted_A' = mkA "well-conducted" "more well-conducted" "most well-conducted" "well-conductedly" ;
-lin unobstructed_A = mkA "unobstructed" "more unobstructed" "most unobstructed" "unobstructedly" ;
-lin uninstructed_A = mkA "uninstructed" "more uninstructed" "most uninstructed" "uninstructedly" ;
-lin unreconstructed_A = mkA "unreconstructed" "more unreconstructed" "most unreconstructed" "unreconstructedly" ;
-lin faceted_A = mkA "faceted" "more faceted" "most faceted" "facetedly" ;
-lin unfaceted_A = mkA "unfaceted" "more unfaceted" "most unfaceted" "unfacetedly" ;
-lin crocketed_A = mkA "crocketed" "more crocketed" "most crocketed" "crocketedly" ;
-lin ringleted_A = mkA "ringleted" "more ringleted" "most ringleted" "ringletedly" ;
-lin chapleted_A = mkA "chapleted" "more chapleted" "most chapleted" "chapletedly" ;
-lin uncompleted_A = mkA "uncompleted" "more uncompleted" "most uncompleted" "uncompletedly" ;
-lin gauntleted_A = mkA "gauntleted" "more gauntleted" "most gauntleted" "gauntletedly" ;
-lin helmeted_A = mkA "helmeted" "more helmeted" "most helmeted" "helmetedly" ;
-lin coroneted_A = mkA "coroneted" "more coroneted" "most coroneted" "coronetedly" ;
-lin uncarpeted_A = mkA "uncarpeted" "more uncarpeted" "most uncarpeted" "uncarpetedly" ;
-lin gusseted_A = mkA "gusseted" "more gusseted" "most gusseted" "gussetedly" ;
-lin ungusseted_A = mkA "ungusseted" "more ungusseted" "most ungusseted" "ungussetedly" ;
-lin aftershafted_A = mkA "aftershafted" "more aftershafted" "most aftershafted" "aftershaftedly" ;
-lin tufted_A = mkA "tufted" "more tufted" "most tufted" "tuftedly" ;
-lin untufted_A = mkA "untufted" "more untufted" "most untufted" "untuftedly" ;
-lin dighted_A = mkA "dighted" "more dighted" "most dighted" "dightedly" ;
-lin overweighted_A = mkA "overweighted" "more overweighted" "most overweighted" "overweightedly" ;
-lin unlighted_A = mkA "unlighted" "more unlighted" "most unlighted" "unlightedly" ;
-lin benighted_A = mkA "benighted" "more benighted" "most benighted" "benightedly" ;
-lin 'second-sighted_A' = mkA "second-sighted" "more second-sighted" "most second-sighted" "second-sightedly" ;
-lin 'long-sighted_A' = mkA "long-sighted" "more long-sighted" "most long-sighted" "long-sightedly" ;
-lin 'quick-sighted_A' = mkA "quick-sighted" "more quick-sighted" "most quick-sighted" "quick-sightedly" ;
-lin 'sharp-sighted_A' = mkA "sharp-sighted" "more sharp-sighted" "most sharp-sighted" "sharp-sightedly" ;
-lin 'clear-sighted_A' = mkA "clear-sighted" "more clear-sighted" "most clear-sighted" "clear-sightedly" ;
-lin 'near-sighted_A' = mkA "near-sighted" "more near-sighted" "most near-sighted" "near-sightedly" ;
-lin 'far-sighted_A' = mkA "far-sighted" "more far-sighted" "most far-sighted" "far-sightedly" ;
-lin 'short-sighted_A' = mkA "short-sighted" "more short-sighted" "most short-sighted" "short-sightedly" ;
-lin unsighted_A = mkA "unsighted" "more unsighted" "most unsighted" "unsightedly" ;
-lin nearsighted_A = mkA "nearsighted" "more nearsighted" "most nearsighted" "nearsightedly" ;
-lin farsighted_A = mkA "farsighted" "more farsighted" "most farsighted" "farsightedly" ;
-lin habited_A = mkA "habited" "more habited" "most habited" "habitedly" ;
-lin uninhabited_A = mkA "uninhabited" "more uninhabited" "most uninhabited" "uninhabitedly" ;
-lin uninhibited_A = mkA "uninhibited" "more uninhibited" "most uninhibited" "uninhibitedly" ;
-lin unsolicited_A = mkA "unsolicited" "more unsolicited" "most unsolicited" "unsolicitedly" ;
-lin unexcited_A = mkA "unexcited" "more unexcited" "most unexcited" "unexcitedly" ;
-lin overexcited_A = mkA "overexcited" "more overexcited" "most overexcited" "overexcitedly" ;
-lin unedited_A = mkA "unedited" "more unedited" "most unedited" "uneditedly" ;
-lin unaccredited_A = mkA "unaccredited" "more unaccredited" "most unaccredited" "unaccreditedly" ;
-lin conceited_A = mkA "conceited" "more conceited" "most conceited" "conceitedly" ;
-lin unlimited_A = mkA "unlimited" "more unlimited" "most unlimited" "unlimitedly" ;
-lin unexploited_A = mkA "unexploited" "more unexploited" "most unexploited" "unexploitedly" ;
-lin unmerited_A = mkA "unmerited" "more unmerited" "most unmerited" "unmeritedly" ;
-lin 'public-spirited_A' = mkA "public-spirited" "more public-spirited" "most public-spirited" "public-spiritedly" ;
-lin 'high-spirited_A' = mkA "high-spirited" "more high-spirited" "most high-spirited" "high-spiritedly" ;
-lin 'poor-spirited_A' = mkA "poor-spirited" "more poor-spirited" "most poor-spirited" "poor-spiritedly" ;
-lin 'low-spirited_A' = mkA "low-spirited" "more low-spirited" "most low-spirited" "low-spiritedly" ;
-lin 'party-spirited_A' = mkA "party-spirited" "more party-spirited" "most party-spirited" "party-spiritedly" ;
-lin attrited_A = mkA "attrited" "more attrited" "most attrited" "attritedly" ;
-lin unrequited_A = mkA "unrequited" "more unrequited" "most unrequited" "unrequitedly" ;
-lin unsuited_A = mkA "unsuited" "more unsuited" "most unsuited" "unsuitedly" ;
-lin uninvited_A = mkA "uninvited" "more uninvited" "most uninvited" "uninvitedly" ;
-lin unmalted_A = mkA "unmalted" "more unmalted" "most unmalted" "unmaltedly" ;
-lin unsalted_A = mkA "unsalted" "more unsalted" "most unsalted" "unsaltedly" ;
-lin unbelted_A = mkA "unbelted" "more unbelted" "most unbelted" "unbeltedly" ;
-lin felted_A = mkA "felted" "more felted" "most felted" "feltedly" ;
-lin unmelted_A = mkA "unmelted" "more unmelted" "most unmelted" "unmeltedly" ;
-lin stilted_A = mkA "stilted" "more stilted" "most stilted" "stiltedly" ;
-lin unstilted_A = mkA "unstilted" "more unstilted" "most unstilted" "unstiltedly" ;
-lin unplanted_A = mkA "unplanted" "more unplanted" "most unplanted" "unplantedly" ;
-lin untenanted_A = mkA "untenanted" "more untenanted" "most untenanted" "untenantedly" ;
-lin unwarranted_A = mkA "unwarranted" "more unwarranted" "most unwarranted" "unwarrantedly" ;
-lin unwanted_A = mkA "unwanted" "more unwanted" "most unwanted" "unwantedly" ;
-lin unaccented_A = mkA "unaccented" "more unaccented" "most unaccented" "unaccentedly" ;
-lin 'sweet-scented_A' = mkA "sweet-scented" "more sweet-scented" "most sweet-scented" "sweet-scentedly" ;
-lin precedented_A = mkA "precedented" "more precedented" "most precedented" "precedentedly" ;
-lin unprecedented_A = mkA "unprecedented" "more unprecedented" "most unprecedented" "unprecedentedly" ;
-lin unoriented_A = mkA "unoriented" "more unoriented" "most unoriented" "unorientedly" ;
-lin talented_A = mkA "talented" "more talented" "most talented" "talentedly" ;
-lin untalented_A = mkA "untalented" "more untalented" "most untalented" "untalentedly" ;
-lin unlamented_A = mkA "unlamented" "more unlamented" "most unlamented" "unlamentedly" ;
-lin demented_A = mkA "demented" "more demented" "most demented" "dementedly" ;
-lin battlemented_A = mkA "battlemented" "more battlemented" "most battlemented" "battlementedly" ;
-lin unsegmented_A = mkA "unsegmented" "more unsegmented" "most unsegmented" "unsegmentedly" ;
-lin unpigmented_A = mkA "unpigmented" "more unpigmented" "most unpigmented" "unpigmentedly" ;
-lin unfermented_A = mkA "unfermented" "more unfermented" "most unfermented" "unfermentedly" ;
-lin compartmented_A = mkA "compartmented" "more compartmented" "most compartmented" "compartmentedly" ;
-lin uncompartmented_A = mkA "uncompartmented" "more uncompartmented" "most uncompartmented" "uncompartmentedly" ;
-lin vestmented_A = mkA "vestmented" "more vestmented" "most vestmented" "vestmentedly" ;
-lin undocumented_A = mkA "undocumented" "more undocumented" "most undocumented" "undocumentedly" ;
-lin parented_A = mkA "parented" "more parented" "most parented" "parentedly" ;
-lin unparented_A = mkA "unparented" "more unparented" "most unparented" "unparentedly" ;
-lin unpatented_A = mkA "unpatented" "more unpatented" "most unpatented" "unpatentedly" ;
-lin unfrequented_A = mkA "unfrequented" "more unfrequented" "most unfrequented" "unfrequentedly" ;
-lin unvented_A = mkA "unvented" "more unvented" "most unvented" "unventedly" ;
-lin unpainted_A = mkA "unpainted" "more unpainted" "most unpainted" "unpaintedly" ;
-lin sainted_A = mkA "sainted" "more sainted" "most sainted" "saintedly" ;
-lin untainted_A = mkA "untainted" "more untainted" "most untainted" "untaintedly" ;
-lin unacquainted_A = mkA "unacquainted" "more unacquainted" "most unacquainted" "unacquaintedly" ;
-lin 'double-jointed_A' = mkA "double-jointed" "more double-jointed" "most double-jointed" "double-jointedly" ;
-lin unjointed_A = mkA "unjointed" "more unjointed" "most unjointed" "unjointedly" ;
-lin 'self-appointed_A' = mkA "self-appointed" "more self-appointed" "most self-appointed" "self-appointedly" ;
-lin 'well-appointed_A' = mkA "well-appointed" "more well-appointed" "most well-appointed" "well-appointedly" ;
-lin wonted_A = mkA "wonted" "more wonted" "most wonted" "wontedly" ;
-lin unwonted_A = mkA "unwonted" "more unwonted" "most unwonted" "unwontedly" ;
-lin undaunted_A = mkA "undaunted" "more undaunted" "most undaunted" "undauntedly" ;
-lin unaccounted_A = mkA "unaccounted" "more unaccounted" "most unaccounted" "unaccountedly" ;
-lin wainscoted_A = mkA "wainscoted" "more wainscoted" "most wainscoted" "wainscotedly" ;
-lin bigoted_A = mkA "bigoted" "more bigoted" "most bigoted" "bigotedly" ;
-lin unbigoted_A = mkA "unbigoted" "more unbigoted" "most unbigoted" "unbigotedly" ;
-lin 'web-footed_A' = mkA "web-footed" "more web-footed" "most web-footed" "web-footedly" ;
-lin 'club-footed_A' = mkA "club-footed" "more club-footed" "most club-footed" "club-footedly" ;
-lin 'sure-footed_A' = mkA "sure-footed" "more sure-footed" "most sure-footed" "sure-footedly" ;
-lin 'flat-footed_A' = mkA "flat-footed" "more flat-footed" "most flat-footed" "flat-footedly" ;
-lin 'soft-footed_A' = mkA "soft-footed" "more soft-footed" "most soft-footed" "soft-footedly" ;
-lin clubfooted_A = mkA "clubfooted" "more clubfooted" "most clubfooted" "clubfootedly" ;
-lin barefooted_A = mkA "barefooted" "more barefooted" "most barefooted" "barefootedly" ;
-lin surefooted_A = mkA "surefooted" "more surefooted" "most surefooted" "surefootedly" ;
-lin splayfooted_A = mkA "splayfooted" "more splayfooted" "most splayfooted" "splayfootedly" ;
-lin 'deep-rooted_A' = mkA "deep-rooted" "more deep-rooted" "most deep-rooted" "deep-rootedly" ;
-lin unadapted_A = mkA "unadapted" "more unadapted" "most unadapted" "unadaptedly" ;
-lin scripted_A = mkA "scripted" "more scripted" "most scripted" "scriptedly" ;
-lin unscripted_A = mkA "unscripted" "more unscripted" "most unscripted" "unscriptedly" ;
-lin unprompted_A = mkA "unprompted" "more unprompted" "most unprompted" "unpromptedly" ;
-lin uninterrupted_A = mkA "uninterrupted" "more uninterrupted" "most uninterrupted" "uninterruptedly" ;
-lin uncorrupted_A = mkA "uncorrupted" "more uncorrupted" "most uncorrupted" "uncorruptedly" ;
-lin hearted_A = mkA "hearted" "more hearted" "most hearted" "heartedly" ;
-lin 'cold-hearted_A' = mkA "cold-hearted" "more cold-hearted" "most cold-hearted" "cold-heartedly" ;
-lin 'kind-hearted_A' = mkA "kind-hearted" "more kind-hearted" "most kind-hearted" "kind-heartedly" ;
-lin 'simple-hearted_A' = mkA "simple-hearted" "more simple-hearted" "most simple-hearted" "simple-heartedly" ;
-lin 'true-hearted_A' = mkA "true-hearted" "more true-hearted" "most true-hearted" "true-heartedly" ;
-lin 'half-hearted_A' = mkA "half-hearted" "more half-hearted" "most half-hearted" "half-heartedly" ;
-lin 'warm-hearted_A' = mkA "warm-hearted" "more warm-hearted" "most warm-hearted" "warm-heartedly" ;
-lin 'chicken-hearted_A' = mkA "chicken-hearted" "more chicken-hearted" "most chicken-hearted" "chicken-heartedly" ;
-lin 'broken-hearted_A' = mkA "broken-hearted" "more broken-hearted" "most broken-hearted" "broken-heartedly" ;
-lin 'open-hearted_A' = mkA "open-hearted" "more open-hearted" "most open-hearted" "open-heartedly" ;
-lin 'lion-hearted_A' = mkA "lion-hearted" "more lion-hearted" "most lion-hearted" "lion-heartedly" ;
-lin 'soft-hearted_A' = mkA "soft-hearted" "more soft-hearted" "most soft-hearted" "soft-heartedly" ;
-lin 'light-hearted_A' = mkA "light-hearted" "more light-hearted" "most light-hearted" "light-heartedly" ;
-lin 'faint-hearted_A' = mkA "faint-hearted" "more faint-hearted" "most faint-hearted" "faint-heartedly" ;
-lin 'heavy-hearted_A' = mkA "heavy-hearted" "more heavy-hearted" "most heavy-hearted" "heavy-heartedly" ;
-lin coldhearted_A = mkA "coldhearted" "more coldhearted" "most coldhearted" "coldheartedly" ;
-lin kindhearted_A = mkA "kindhearted" "more kindhearted" "most kindhearted" "kindheartedly" ;
-lin hardhearted_A = mkA "hardhearted" "more hardhearted" "most hardhearted" "hardheartedly" ;
-lin wholehearted_A = mkA "wholehearted" "more wholehearted" "most wholehearted" "wholeheartedly" ;
-lin halfhearted_A = mkA "halfhearted" "more halfhearted" "most halfhearted" "halfheartedly" ;
-lin warmhearted_A = mkA "warmhearted" "more warmhearted" "most warmhearted" "warmheartedly" ;
-lin brokenhearted_A = mkA "brokenhearted" "more brokenhearted" "most brokenhearted" "brokenheartedly" ;
-lin openhearted_A = mkA "openhearted" "more openhearted" "most openhearted" "openheartedly" ;
-lin lionhearted_A = mkA "lionhearted" "more lionhearted" "most lionhearted" "lionheartedly" ;
-lin downhearted_A = mkA "downhearted" "more downhearted" "most downhearted" "downheartedly" ;
-lin tenderhearted_A = mkA "tenderhearted" "more tenderhearted" "most tenderhearted" "tenderheartedly" ;
-lin greathearted_A = mkA "greathearted" "more greathearted" "most greathearted" "greatheartedly" ;
-lin softhearted_A = mkA "softhearted" "more softhearted" "most softhearted" "softheartedly" ;
-lin stouthearted_A = mkA "stouthearted" "more stouthearted" "most stouthearted" "stoutheartedly" ;
-lin heavyhearted_A = mkA "heavyhearted" "more heavyhearted" "most heavyhearted" "heavyheartedly" ;
-lin uncharted_A = mkA "uncharted" "more uncharted" "most uncharted" "unchartedly" ;
-lin departed_A = mkA "departed" "more departed" "most departed" "departedly" ;
-lin preconcerted_A = mkA "preconcerted" "more preconcerted" "most preconcerted" "preconcertedly" ;
-lin unconverted_A = mkA "unconverted" "more unconverted" "most unconverted" "unconvertedly" ;
-lin extroverted_A = mkA "extroverted" "more extroverted" "most extroverted" "extrovertedly" ;
-lin unreported_A = mkA "unreported" "more unreported" "most unreported" "unreportedly" ;
-lin unsupported_A = mkA "unsupported" "more unsupported" "most unsupported" "unsupportedly" ;
-lin unsorted_A = mkA "unsorted" "more unsorted" "most unsorted" "unsortedly" ;
-lin assorted_A = mkA "assorted" "more assorted" "most assorted" "assortedly" ;
-lin undistorted_A = mkA "undistorted" "more undistorted" "most undistorted" "undistortedly" ;
-lin 'double-breasted_A' = mkA "double-breasted" "more double-breasted" "most double-breasted" "double-breastedly" ;
-lin 'single-breasted_A' = mkA "single-breasted" "more single-breasted" "most single-breasted" "single-breastedly" ;
-lin 'pigeon-breasted_A' = mkA "pigeon-breasted" "more pigeon-breasted" "most pigeon-breasted" "pigeon-breastedly" ;
-lin masted_A = mkA "masted" "more masted" "most masted" "mastedly" ;
-lin untoasted_A = mkA "untoasted" "more untoasted" "most untoasted" "untoastedly" ;
-lin undigested_A = mkA "undigested" "more undigested" "most undigested" "undigestedly" ;
-lin congested_A = mkA "congested" "more congested" "most congested" "congestedly" ;
-lin unmolested_A = mkA "unmolested" "more unmolested" "most unmolested" "unmolestedly" ;
-lin interested_A = mkA "interested" "more interested" "most interested" "interestedly" ;
-lin uninterested_A = mkA "uninterested" "more uninterested" "most uninterested" "uninterestedly" ;
-lin disinterested_A = mkA "disinterested" "more disinterested" "most disinterested" "disinterestedly" ;
-lin forested_A = mkA "forested" "more forested" "most forested" "forestedly" ;
-lin unforested_A = mkA "unforested" "more unforested" "most unforested" "unforestedly" ;
-lin uncontested_A = mkA "uncontested" "more uncontested" "most uncontested" "uncontestedly" ;
-lin untested_A = mkA "untested" "more untested" "most untested" "untestedly" ;
-lin unrequested_A = mkA "unrequested" "more unrequested" "most unrequested" "unrequestedly" ;
-lin 'wasp-waisted_A' = mkA "wasp-waisted" "more wasp-waisted" "most wasp-waisted" "wasp-waistedly" ;
-lin 'close-fisted_A' = mkA "close-fisted" "more close-fisted" "most close-fisted" "close-fistedly" ;
-lin 'ham-fisted_A' = mkA "ham-fisted" "more ham-fisted" "most ham-fisted" "ham-fistedly" ;
-lin closefisted_A = mkA "closefisted" "more closefisted" "most closefisted" "closefistedly" ;
-lin unlisted_A = mkA "unlisted" "more unlisted" "most unlisted" "unlistedly" ;
-lin touristed_A = mkA "touristed" "more touristed" "most touristed" "touristedly" ;
-lin 'motor-assisted_A' = mkA "motor-assisted" "more motor-assisted" "most motor-assisted" "motor-assistedly" ;
-lin unassisted_A = mkA "unassisted" "more unassisted" "most unassisted" "unassistedly" ;
-lin untwisted_A = mkA "untwisted" "more untwisted" "most untwisted" "untwistedly" ;
-lin unfrosted_A = mkA "unfrosted" "more unfrosted" "most unfrosted" "unfrostedly" ;
-lin unexhausted_A = mkA "unexhausted" "more unexhausted" "most unexhausted" "unexhaustedly" ;
-lin 'well-adjusted_A' = mkA "well-adjusted" "more well-adjusted" "most well-adjusted" "well-adjustedly" ;
-lin maladjusted_A = mkA "maladjusted" "more maladjusted" "most maladjusted" "maladjustedly" ;
-lin unadjusted_A = mkA "unadjusted" "more unadjusted" "most unadjusted" "unadjustedly" ;
-lin encysted_A = mkA "encysted" "more encysted" "most encysted" "encystedly" ;
-lin superfatted_A = mkA "superfatted" "more superfatted" "most superfatted" "superfattedly" ;
-lin hatted_A = mkA "hatted" "more hatted" "most hatted" "hattedly" ;
-lin slatted_A = mkA "slatted" "more slatted" "most slatted" "slattedly" ;
-lin unfretted_A = mkA "unfretted" "more unfretted" "most unfretted" "unfrettedly" ;
-lin sulphuretted_A = mkA "sulphuretted" "more sulphuretted" "most sulphuretted" "sulphurettedly" ;
-lin uncommitted_A = mkA "uncommitted" "more uncommitted" "most uncommitted" "uncommittedly" ;
-lin 'quick-witted_A' = mkA "quick-witted" "more quick-witted" "most quick-witted" "quick-wittedly" ;
-lin 'sharp-witted_A' = mkA "sharp-witted" "more sharp-witted" "most sharp-witted" "sharp-wittedly" ;
-lin 'soft-witted_A' = mkA "soft-witted" "more soft-witted" "most soft-witted" "soft-wittedly" ;
-lin halfwitted_A = mkA "halfwitted" "more halfwitted" "most halfwitted" "halfwittedly" ;
-lin nitwitted_A = mkA "nitwitted" "more nitwitted" "most nitwitted" "nitwittedly" ;
-lin unpotted_A = mkA "unpotted" "more unpotted" "most unpotted" "unpottedly" ;
-lin unspotted_A = mkA "unspotted" "more unspotted" "most unspotted" "unspottedly" ;
-lin besotted_A = mkA "besotted" "more besotted" "most besotted" "besottedly" ;
-lin hutted_A = mkA "hutted" "more hutted" "most hutted" "huttedly" ;
-lin undistributed_A = mkA "undistributed" "more undistributed" "most undistributed" "undistributedly" ;
-lin undiluted_A = mkA "undiluted" "more undiluted" "most undiluted" "undilutedly" ;
-lin unpolluted_A = mkA "unpolluted" "more unpolluted" "most unpolluted" "unpollutedly" ;
-lin voluted_A = mkA "voluted" "more voluted" "most voluted" "volutedly" ;
-lin convoluted_A = mkA "convoluted" "more convoluted" "most convoluted" "convolutedly" ;
-lin undisputed_A = mkA "undisputed" "more undisputed" "most undisputed" "undisputedly" ;
-lin unsubdued_A = mkA "unsubdued" "more unsubdued" "most unsubdued" "unsubduedly" ;
-lin tongued_A = mkA "tongued" "more tongued" "most tongued" "tonguedly" ;
-lin 'smooth-tongued_A' = mkA "smooth-tongued" "more smooth-tongued" "most smooth-tongued" "smooth-tonguedly" ;
-lin hued_A = mkA "hued" "more hued" "most hued" "huedly" ;
-lin behaved_A = mkA "behaved" "more behaved" "most behaved" "behavedly" ;
-lin 'well-behaved_A' = mkA "well-behaved" "more well-behaved" "most well-behaved" "well-behavedly" ;
-lin 'badly-behaved_A' = mkA "badly-behaved" "more badly-behaved" "most badly-behaved" "badly-behavedly" ;
-lin unshaved_A = mkA "unshaved" "more unshaved" "most unshaved" "unshavedly" ;
-lin unpaved_A = mkA "unpaved" "more unpaved" "most unpaved" "unpavedly" ;
-lin sleeved_A = mkA "sleeved" "more sleeved" "most sleeved" "sleevedly" ;
-lin unrelieved_A = mkA "unrelieved" "more unrelieved" "most unrelieved" "unrelievedly" ;
-lin unperceived_A = mkA "unperceived" "more unperceived" "most unperceived" "unperceivedly" ;
-lin 'long-lived_A' = mkA "long-lived" "more long-lived" "most long-lived" "long-livedly" ;
-lin 'short-lived_A' = mkA "short-lived" "more short-lived" "most short-lived" "short-livedly" ;
-lin underived_A = mkA "underived" "more underived" "most underived" "underivedly" ;
-lin unrevived_A = mkA "unrevived" "more unrevived" "most unrevived" "unrevivedly" ;
-lin valved_A = mkA "valved" "more valved" "most valved" "valvedly" ;
-lin unresolved_A = mkA "unresolved" "more unresolved" "most unresolved" "unresolvedly" ;
-lin unsolved_A = mkA "unsolved" "more unsolved" "most unsolved" "unsolvedly" ;
-lin undissolved_A = mkA "undissolved" "more undissolved" "most undissolved" "undissolvedly" ;
-lin uninvolved_A = mkA "uninvolved" "more uninvolved" "most uninvolved" "uninvolvedly" ;
-lin beloved_A = mkA "beloved" "more beloved" "most beloved" "belovedly" ;
-lin unbeloved_A = mkA "unbeloved" "more unbeloved" "most unbeloved" "unbelovedly" ;
-lin gloved_A = mkA "gloved" "more gloved" "most gloved" "glovedly" ;
-lin unloved_A = mkA "unloved" "more unloved" "most unloved" "unlovedly" ;
-lin unmoved_A = mkA "unmoved" "more unmoved" "most unmoved" "unmovedly" ;
-lin unimproved_A = mkA "unimproved" "more unimproved" "most unimproved" "unimprovedly" ;
-lin unproved_A = mkA "unproved" "more unproved" "most unproved" "unprovedly" ;
-lin uncarved_A = mkA "uncarved" "more uncarved" "most uncarved" "uncarvedly" ;
-lin 'sex-starved_A' = mkA "sex-starved" "more sex-starved" "most sex-starved" "sex-starvedly" ;
-lin unobserved_A = mkA "unobserved" "more unobserved" "most unobserved" "unobservedly" ;
-lin undeserved_A = mkA "undeserved" "more undeserved" "most undeserved" "undeservedly" ;
-lin unreserved_A = mkA "unreserved" "more unreserved" "most unreserved" "unreservedly" ;
-lin decurved_A = mkA "decurved" "more decurved" "most decurved" "decurvedly" ;
-lin incurved_A = mkA "incurved" "more incurved" "most incurved" "incurvedly" ;
-lin uncurved_A = mkA "uncurved" "more uncurved" "most uncurved" "uncurvedly" ;
-lin upcurved_A = mkA "upcurved" "more upcurved" "most upcurved" "upcurvedly" ;
-lin unthawed_A = mkA "unthawed" "more unthawed" "most unthawed" "unthawedly" ;
-lin jawed_A = mkA "jawed" "more jawed" "most jawed" "jawedly" ;
-lin 'lantern-jawed_A' = mkA "lantern-jawed" "more lantern-jawed" "most lantern-jawed" "lantern-jawedly" ;
-lin unawed_A = mkA "unawed" "more unawed" "most unawed" "unawedly" ;
-lin bedewed_A = mkA "bedewed" "more bedewed" "most bedewed" "bedewedly" ;
-lin 'home-brewed_A' = mkA "home-brewed" "more home-brewed" "most home-brewed" "home-brewedly" ;
-lin unwed_A = mkA "unwed" "more unwed" "most unwed" "unwedly" ;
-lin unbowed_A = mkA "unbowed" "more unbowed" "most unbowed" "unbowedly" ;
-lin unshadowed_A = mkA "unshadowed" "more unshadowed" "most unshadowed" "unshadowedly" ;
-lin widowed_A = mkA "widowed" "more widowed" "most widowed" "widowedly" ;
-lin unendowed_A = mkA "unendowed" "more unendowed" "most unendowed" "unendowedly" ;
-lin unhallowed_A = mkA "unhallowed" "more unhallowed" "most unhallowed" "unhallowedly" ;
-lin unplowed_A = mkA "unplowed" "more unplowed" "most unplowed" "unplowedly" ;
-lin 'beetle-browed_A' = mkA "beetle-browed" "more beetle-browed" "most beetle-browed" "beetle-browedly" ;
-lin unfurrowed_A = mkA "unfurrowed" "more unfurrowed" "most unfurrowed" "unfurrowedly" ;
-lin unavowed_A = mkA "unavowed" "more unavowed" "most unavowed" "unavowedly" ;
-lin unrelaxed_A = mkA "unrelaxed" "more unrelaxed" "most unrelaxed" "unrelaxedly" ;
-lin untaxed_A = mkA "untaxed" "more untaxed" "most untaxed" "untaxedly" ;
-lin unwaxed_A = mkA "unwaxed" "more unwaxed" "most unwaxed" "unwaxedly" ;
-lin hexed_A = mkA "hexed" "more hexed" "most hexed" "hexedly" ;
-lin reflexed_A = mkA "reflexed" "more reflexed" "most reflexed" "reflexedly" ;
-lin unperplexed_A = mkA "unperplexed" "more unperplexed" "most unperplexed" "unperplexedly" ;
-lin undersexed_A = mkA "undersexed" "more undersexed" "most undersexed" "undersexedly" ;
-lin oversexed_A = mkA "oversexed" "more oversexed" "most oversexed" "oversexedly" ;
-lin unaffixed_A = mkA "unaffixed" "more unaffixed" "most unaffixed" "unaffixedly" ;
-lin basifixed_A = mkA "basifixed" "more basifixed" "most basifixed" "basifixedly" ;
-lin unfixed_A = mkA "unfixed" "more unfixed" "most unfixed" "unfixedly" ;
-lin unmixed_A = mkA "unmixed" "more unmixed" "most unmixed" "unmixedly" ;
-lin decayed_A = mkA "decayed" "more decayed" "most decayed" "decayedly" ;
-lin undismayed_A = mkA "undismayed" "more undismayed" "most undismayed" "undismayedly" ;
-lin unswayed_A = mkA "unswayed" "more unswayed" "most unswayed" "unswayedly" ;
-lin 'double-dyed_A' = mkA "double-dyed" "more double-dyed" "most double-dyed" "double-dyedly" ;
-lin 'almond-eyed_A' = mkA "almond-eyed" "more almond-eyed" "most almond-eyed" "almond-eyedly" ;
-lin 'round-eyed_A' = mkA "round-eyed" "more round-eyed" "most round-eyed" "round-eyedly" ;
-lin 'eagle-eyed_A' = mkA "eagle-eyed" "more eagle-eyed" "most eagle-eyed" "eagle-eyedly" ;
-lin 'goggle-eyed_A' = mkA "goggle-eyed" "more goggle-eyed" "most goggle-eyed" "goggle-eyedly" ;
-lin 'one-eyed_A' = mkA "one-eyed" "more one-eyed" "most one-eyed" "one-eyedly" ;
-lin 'quick-eyed_A' = mkA "quick-eyed" "more quick-eyed" "most quick-eyed" "quick-eyedly" ;
-lin 'hawk-eyed_A' = mkA "hawk-eyed" "more hawk-eyed" "most hawk-eyed" "hawk-eyedly" ;
-lin 'wall-eyed_A' = mkA "wall-eyed" "more wall-eyed" "most wall-eyed" "wall-eyedly" ;
-lin 'open-eyed_A' = mkA "open-eyed" "more open-eyed" "most open-eyed" "open-eyedly" ;
-lin 'sharp-eyed_A' = mkA "sharp-eyed" "more sharp-eyed" "most sharp-eyed" "sharp-eyedly" ;
-lin 'saucer-eyed_A' = mkA "saucer-eyed" "more saucer-eyed" "most saucer-eyed" "saucer-eyedly" ;
-lin 'boss-eyed_A' = mkA "boss-eyed" "more boss-eyed" "most boss-eyed" "boss-eyedly" ;
-lin 'argus-eyed_A' = mkA "argus-eyed" "more argus-eyed" "most argus-eyed" "argus-eyedly" ;
-lin 'squint-eyed_A' = mkA "squint-eyed" "more squint-eyed" "most squint-eyed" "squint-eyedly" ;
-lin 'skew-eyed_A' = mkA "skew-eyed" "more skew-eyed" "most skew-eyed" "skew-eyedly" ;
-lin 'lynx-eyed_A' = mkA "lynx-eyed" "more lynx-eyed" "most lynx-eyed" "lynx-eyedly" ;
-lin 'bleary-eyed_A' = mkA "bleary-eyed" "more bleary-eyed" "most bleary-eyed" "bleary-eyedly" ;
-lin 'starry-eyed_A' = mkA "starry-eyed" "more starry-eyed" "most starry-eyed" "starry-eyedly" ;
-lin 'high-keyed_A' = mkA "high-keyed" "more high-keyed" "most high-keyed" "high-keyedly" ;
-lin 'low-keyed_A' = mkA "low-keyed" "more low-keyed" "most low-keyed" "low-keyedly" ;
-lin cockeyed_A = mkA "cockeyed" "more cockeyed" "most cockeyed" "cockeyedly" ;
-lin walleyed_A = mkA "walleyed" "more walleyed" "most walleyed" "walleyedly" ;
-lin greeneyed_A = mkA "greeneyed" "more greeneyed" "most greeneyed" "greeneyedly" ;
-lin hackneyed_A = mkA "hackneyed" "more hackneyed" "most hackneyed" "hackneyedly" ;
-lin honeyed_A = mkA "honeyed" "more honeyed" "most honeyed" "honeyedly" ;
-lin moneyed_A = mkA "moneyed" "more moneyed" "most moneyed" "moneyedly" ;
-lin popeyed_A = mkA "popeyed" "more popeyed" "most popeyed" "popeyedly" ;
-lin storeyed_A = mkA "storeyed" "more storeyed" "most storeyed" "storeyedly" ;
-lin 'three-storeyed_A' = mkA "three-storeyed" "more three-storeyed" "most three-storeyed" "three-storeyedly" ;
-lin crosseyed_A = mkA "crosseyed" "more crosseyed" "most crosseyed" "crosseyedly" ;
-lin oxeyed_A = mkA "oxeyed" "more oxeyed" "most oxeyed" "oxeyedly" ;
-lin overjoyed_A = mkA "overjoyed" "more overjoyed" "most overjoyed" "overjoyedly" ;
-lin unalloyed_A = mkA "unalloyed" "more unalloyed" "most unalloyed" "unalloyedly" ;
-lin 'self-employed_A' = mkA "self-employed" "more self-employed" "most self-employed" "self-employedly" ;
-lin unemployed_A = mkA "unemployed" "more unemployed" "most unemployed" "unemployedly" ;
-lin underemployed_A = mkA "underemployed" "more underemployed" "most underemployed" "underemployedly" ;
-lin unglazed_A = mkA "unglazed" "more unglazed" "most unglazed" "unglazedly" ;
-lin mazed_A = mkA "mazed" "more mazed" "most mazed" "mazedly" ;
-lin crazed_A = mkA "crazed" "more crazed" "most crazed" "crazedly" ;
-lin 'half-crazed_A' = mkA "half-crazed" "more half-crazed" "most half-crazed" "half-crazedly" ;
-lin elasticized_A = mkA "elasticized" "more elasticized" "most elasticized" "elasticizedly" ;
-lin demythologized_A = mkA "demythologized" "more demythologized" "most demythologized" "demythologizedly" ;
-lin lexicalized_A = mkA "lexicalized" "more lexicalized" "most lexicalized" "lexicalizedly" ;
-lin unrealized_A = mkA "unrealized" "more unrealized" "most unrealized" "unrealizedly" ;
-lin unspecialized_A = mkA "unspecialized" "more unspecialized" "most unspecialized" "unspecializedly" ;
-lin uncommercialized_A = mkA "uncommercialized" "more uncommercialized" "most uncommercialized" "uncommercializedly" ;
-lin unindustrialized_A = mkA "unindustrialized" "more unindustrialized" "most unindustrialized" "unindustrializedly" ;
-lin conventionalized_A = mkA "conventionalized" "more conventionalized" "most conventionalized" "conventionalizedly" ;
-lin noninstitutionalized_A = mkA "noninstitutionalized" "more noninstitutionalized" "most noninstitutionalized" "noninstitutionalizedly" ;
-lin unnaturalized_A = mkA "unnaturalized" "more unnaturalized" "most unnaturalized" "unnaturalizedly" ;
-lin unequalized_A = mkA "unequalized" "more unequalized" "most unequalized" "unequalizedly" ;
-lin lyophilized_A = mkA "lyophilized" "more lyophilized" "most lyophilized" "lyophilizedly" ;
-lin unsterilized_A = mkA "unsterilized" "more unsterilized" "most unsterilized" "unsterilizedly" ;
-lin unfertilized_A = mkA "unfertilized" "more unfertilized" "most unfertilized" "unfertilizedly" ;
-lin noncivilized_A = mkA "noncivilized" "more noncivilized" "most noncivilized" "noncivilizedly" ;
-lin uncivilized_A = mkA "uncivilized" "more uncivilized" "most uncivilized" "uncivilizedly" ;
-lin uncrystallized_A = mkA "uncrystallized" "more uncrystallized" "most uncrystallized" "uncrystallizedly" ;
-lin metagrobolized_A = mkA "metagrobolized" "more metagrobolized" "most metagrobolized" "metagrobolizedly" ;
-lin aerosolized_A = mkA "aerosolized" "more aerosolized" "most aerosolized" "aerosolizedly" ;
-lin randomized_A = mkA "randomized" "more randomized" "most randomized" "randomizedly" ;
-lin hypophysectomized_A = mkA "hypophysectomized" "more hypophysectomized" "most hypophysectomized" "hypophysectomizedly" ;
-lin suburbanized_A = mkA "suburbanized" "more suburbanized" "most suburbanized" "suburbanizedly" ;
-lin unvulcanized_A = mkA "unvulcanized" "more unvulcanized" "most unvulcanized" "unvulcanizedly" ;
-lin unorganized_A = mkA "unorganized" "more unorganized" "most unorganized" "unorganizedly" ;
-lin unmechanized_A = mkA "unmechanized" "more unmechanized" "most unmechanized" "unmechanizedly" ;
-lin unhomogenized_A = mkA "unhomogenized" "more unhomogenized" "most unhomogenized" "unhomogenizedly" ;
-lin unrecognized_A = mkA "unrecognized" "more unrecognized" "most unrecognized" "unrecognizedly" ;
-lin agonized_A = mkA "agonized" "more agonized" "most agonized" "agonizedly" ;
-lin nonionized_A = mkA "nonionized" "more nonionized" "most nonionized" "nonionizedly" ;
-lin unpatronized_A = mkA "unpatronized" "more unpatronized" "most unpatronized" "unpatronizedly" ;
-lin unmodernized_A = mkA "unmodernized" "more unmodernized" "most unmodernized" "unmodernizedly" ;
-lin militarized_A = mkA "militarized" "more militarized" "most militarized" "militarizedly" ;
-lin tenderized_A = mkA "tenderized" "more tenderized" "most tenderized" "tenderizedly" ;
-lin uncategorized_A = mkA "uncategorized" "more uncategorized" "most uncategorized" "uncategorizedly" ;
-lin unauthorized_A = mkA "unauthorized" "more unauthorized" "most unauthorized" "unauthorizedly" ;
-lin unmotorized_A = mkA "unmotorized" "more unmotorized" "most unmotorized" "unmotorizedly" ;
-lin transistorized_A = mkA "transistorized" "more transistorized" "most transistorized" "transistorizedly" ;
-lin unpasteurized_A = mkA "unpasteurized" "more unpasteurized" "most unpasteurized" "unpasteurizedly" ;
-lin pressurized_A = mkA "pressurized" "more pressurized" "most pressurized" "pressurizedly" ;
-lin 'life-sized_A' = mkA "life-sized" "more life-sized" "most life-sized" "life-sizedly" ;
-lin 'king-sized_A' = mkA "king-sized" "more king-sized" "most king-sized" "king-sizedly" ;
-lin 'man-sized_A' = mkA "man-sized" "more man-sized" "most man-sized" "man-sizedly" ;
-lin unsized_A = mkA "unsized" "more unsized" "most unsized" "unsizedly" ;
-lin undersized_A = mkA "undersized" "more undersized" "most undersized" "undersizedly" ;
-lin alphabetized_A = mkA "alphabetized" "more alphabetized" "most alphabetized" "alphabetizedly" ;
-lin unbaptized_A = mkA "unbaptized" "more unbaptized" "most unbaptized" "unbaptizedly" ;
-lin unanalyzed_A = mkA "unanalyzed" "more unanalyzed" "most unanalyzed" "unanalyzedly" ;
-lin fuzzed_A = mkA "fuzzed" "more fuzzed" "most fuzzed" "fuzzedly" ;
-lin 'deep-laid_A' = mkA "deep-laid" "more deep-laid" "most deep-laid" "deep-laidly" ;
-lin mislaid_A = mkA "mislaid" "more mislaid" "most mislaid" "mislaidly" ;
-lin 'post-paid_A' = mkA "post-paid" "more post-paid" "most post-paid" "post-paidly" ;
-lin 'reply-paid_A' = mkA "reply-paid" "more reply-paid" "most reply-paid" "reply-paidly" ;
-lin unpaid_A = mkA "unpaid" "more unpaid" "most unpaid" "unpaidly" ;
-lin postpaid_A = mkA "postpaid" "more postpaid" "most postpaid" "postpaidly" ;
-lin afraid_A = mkA "afraid" "more afraid" "most afraid" "afraidly" ;
-lin unafraid_A = mkA "unafraid" "more unafraid" "most unafraid" "unafraidly" ;
-lin aforesaid_A = mkA "aforesaid" "more aforesaid" "most aforesaid" "aforesaidly" ;
-lin staid_A = mkA "staid" "more staid" "most staid" "staidly" ;
-lin rabid_A = mkA "rabid" "more rabid" "most rabid" "rabidly" ;
-lin morbid_A = mkA "morbid" "more morbid" "most morbid" "morbidly" ;
-lin turbid_A = mkA "turbid" "more turbid" "most turbid" "turbidly" ;
-lin acid_A = mkA "acid" "more acid" "most acid" "acidly" ;
-lin subacid_A = mkA "subacid" "more subacid" "most subacid" "subacidly" ;
-lin placid_A = mkA "placid" "more placid" "most placid" "placidly" ;
-lin antacid_A = mkA "antacid" "more antacid" "most antacid" "antacidly" ;
-lin flaccid_A = mkA "flaccid" "more flaccid" "most flaccid" "flaccidly" ;
-lin rancid_A = mkA "rancid" "more rancid" "most rancid" "rancidly" ;
-lin viscid_A = mkA "viscid" "more viscid" "most viscid" "viscidly" ;
-lin lucid_A = mkA "lucid" "more lucid" "most lucid" "lucidly" ;
-lin pellucid_A = mkA "pellucid" "more pellucid" "most pellucid" "pellucidly" ;
-lin candid_A = mkA "candid" "more candid" "most candid" "candidly" ;
-lin splendid_A = mkA "splendid" "more splendid" "most splendid" "splendidly" ;
-lin sordid_A = mkA "sordid" "more sordid" "most sordid" "sordidly" ;
-lin antiapartheid_A = mkA "antiapartheid" "more antiapartheid" "most antiapartheid" "antiapartheidly" ;
-lin bifid_A = mkA "bifid" "more bifid" "most bifid" "bifidly" ;
-lin trifid_A = mkA "trifid" "more trifid" "most trifid" "trifidly" ;
-lin palmatifid_A = mkA "palmatifid" "more palmatifid" "most palmatifid" "palmatifidly" ;
-lin pinnatifid_A = mkA "pinnatifid" "more pinnatifid" "most pinnatifid" "pinnatifidly" ;
-lin bipinnatifid_A = mkA "bipinnatifid" "more bipinnatifid" "most bipinnatifid" "bipinnatifidly" ;
-lin tripinnatifid_A = mkA "tripinnatifid" "more tripinnatifid" "most tripinnatifid" "tripinnatifidly" ;
-lin rigid_A = mkA "rigid" "more rigid" "most rigid" "rigidly" ;
-lin frigid_A = mkA "frigid" "more frigid" "most frigid" "frigidly" ;
-lin semirigid_A = mkA "semirigid" "more semirigid" "most semirigid" "semirigidly" ;
-lin nonrigid_A = mkA "nonrigid" "more nonrigid" "most nonrigid" "nonrigidly" ;
-lin algid_A = mkA "algid" "more algid" "most algid" "algidly" ;
-lin carangid_A = mkA "carangid" "more carangid" "most carangid" "carangidly" ;
-lin turgid_A = mkA "turgid" "more turgid" "most turgid" "turgidly" ;
-lin filariid_A = mkA "filariid" "more filariid" "most filariid" "filariidly" ;
-lin 'non-skid_A' = mkA "non-skid" "more non-skid" "most non-skid" "non-skidly" ;
-lin nonskid_A = mkA "nonskid" "more nonskid" "most nonskid" "nonskidly" ;
-lin squalid_A = mkA "squalid" "more squalid" "most squalid" "squalidly" ;
-lin valid_A = mkA "valid" "more valid" "most valid" "validly" ;
-lin invalid_A = mkA "invalid" "more invalid" "most invalid" "invalidly" ;
-lin annelid_A = mkA "annelid" "more annelid" "most annelid" "annelidly" ;
-lin pallid_A = mkA "pallid" "more pallid" "most pallid" "pallidly" ;
-lin solid_A = mkA "solid" "more solid" "most solid" "solidly" ;
-lin semisolid_A = mkA "semisolid" "more semisolid" "most semisolid" "semisolidly" ;
-lin stolid_A = mkA "stolid" "more stolid" "most stolid" "stolidly" ;
-lin mid_A = mkA "mid" "more mid" "most mid" "midly" ;
-lin timid_A = mkA "timid" "more timid" "most timid" "timidly" ;
-lin humid_A = mkA "humid" "more humid" "most humid" "humidly" ;
-lin tumid_A = mkA "tumid" "more tumid" "most tumid" "tumidly" ;
-lin cyprinid_A = mkA "cyprinid" "more cyprinid" "most cyprinid" "cyprinidly" ;
-lin ameboid_A = mkA "ameboid" "more ameboid" "most ameboid" "ameboidly" ;
-lin rhomboid_A = mkA "rhomboid" "more rhomboid" "most rhomboid" "rhomboidly" ;
-lin placoid_A = mkA "placoid" "more placoid" "most placoid" "placoidly" ;
-lin coccoid_A = mkA "coccoid" "more coccoid" "most coccoid" "coccoidly" ;
-lin discoid_A = mkA "discoid" "more discoid" "most discoid" "discoidly" ;
-lin mucoid_A = mkA "mucoid" "more mucoid" "most mucoid" "mucoidly" ;
-lin algoid_A = mkA "algoid" "more algoid" "most algoid" "algoidly" ;
-lin fungoid_A = mkA "fungoid" "more fungoid" "most fungoid" "fungoidly" ;
-lin lymphoid_A = mkA "lymphoid" "more lymphoid" "most lymphoid" "lymphoidly" ;
-lin acanthoid_A = mkA "acanthoid" "more acanthoid" "most acanthoid" "acanthoidly" ;
-lin bungaloid_A = mkA "bungaloid" "more bungaloid" "most bungaloid" "bungaloidly" ;
-lin sepaloid_A = mkA "sepaloid" "more sepaloid" "most sepaloid" "sepaloidly" ;
-lin petaloid_A = mkA "petaloid" "more petaloid" "most petaloid" "petaloidly" ;
-lin cycloid_A = mkA "cycloid" "more cycloid" "most cycloid" "cycloidly" ;
-lin myeloid_A = mkA "myeloid" "more myeloid" "most myeloid" "myeloidly" ;
-lin thalloid_A = mkA "thalloid" "more thalloid" "most thalloid" "thalloidly" ;
-lin metalloid_A = mkA "metalloid" "more metalloid" "most metalloid" "metalloidly" ;
-lin mongoloid_A = mkA "mongoloid" "more mongoloid" "most mongoloid" "mongoloidly" ;
-lin haploid_A = mkA "haploid" "more haploid" "most haploid" "haploidly" ;
-lin diploid_A = mkA "diploid" "more diploid" "most diploid" "diploidly" ;
-lin triploid_A = mkA "triploid" "more triploid" "most triploid" "triploidly" ;
-lin aneuploid_A = mkA "aneuploid" "more aneuploid" "most aneuploid" "aneuploidly" ;
-lin polyploid_A = mkA "polyploid" "more polyploid" "most polyploid" "polyploidly" ;
-lin tuberculoid_A = mkA "tuberculoid" "more tuberculoid" "most tuberculoid" "tuberculoidly" ;
-lin celluloid_A = mkA "celluloid" "more celluloid" "most celluloid" "celluloidly" ;
-lin sigmoid_A = mkA "sigmoid" "more sigmoid" "most sigmoid" "sigmoidly" ;
-lin rectosigmoid_A = mkA "rectosigmoid" "more rectosigmoid" "most rectosigmoid" "rectosigmoidly" ;
-lin zymoid_A = mkA "zymoid" "more zymoid" "most zymoid" "zymoidly" ;
-lin paranoid_A = mkA "paranoid" "more paranoid" "most paranoid" "paranoidly" ;
-lin adenoid_A = mkA "adenoid" "more adenoid" "most adenoid" "adenoidly" ;
-lin ctenoid_A = mkA "ctenoid" "more ctenoid" "most ctenoid" "ctenoidly" ;
-lin benzenoid_A = mkA "benzenoid" "more benzenoid" "most benzenoid" "benzenoidly" ;
-lin arachnoid_A = mkA "arachnoid" "more arachnoid" "most arachnoid" "arachnoidly" ;
-lin mucinoid_A = mkA "mucinoid" "more mucinoid" "most mucinoid" "mucinoidly" ;
-lin bituminoid_A = mkA "bituminoid" "more bituminoid" "most bituminoid" "bituminoidly" ;
-lin crinoid_A = mkA "crinoid" "more crinoid" "most crinoid" "crinoidly" ;
-lin actinoid_A = mkA "actinoid" "more actinoid" "most actinoid" "actinoidly" ;
-lin hypnoid_A = mkA "hypnoid" "more hypnoid" "most hypnoid" "hypnoidly" ;
-lin boskopoid_A = mkA "boskopoid" "more boskopoid" "most boskopoid" "boskopoidly" ;
-lin anthropoid_A = mkA "anthropoid" "more anthropoid" "most anthropoid" "anthropoidly" ;
-lin aroid_A = mkA "aroid" "more aroid" "most aroid" "aroidly" ;
-lin cancroid_A = mkA "cancroid" "more cancroid" "most cancroid" "cancroidly" ;
-lin aneroid_A = mkA "aneroid" "more aneroid" "most aneroid" "aneroidly" ;
-lin asteroid_A = mkA "asteroid" "more asteroid" "most asteroid" "asteroidly" ;
-lin negroid_A = mkA "negroid" "more negroid" "most negroid" "negroidly" ;
-lin erythroid_A = mkA "erythroid" "more erythroid" "most erythroid" "erythroidly" ;
-lin thyroid_A = mkA "thyroid" "more thyroid" "most thyroid" "thyroidly" ;
-lin antithyroid_A = mkA "antithyroid" "more antithyroid" "most antithyroid" "antithyroidly" ;
-lin ellipsoid_A = mkA "ellipsoid" "more ellipsoid" "most ellipsoid" "ellipsoidly" ;
-lin medusoid_A = mkA "medusoid" "more medusoid" "most medusoid" "medusoidly" ;
-lin rheumatoid_A = mkA "rheumatoid" "more rheumatoid" "most rheumatoid" "rheumatoidly" ;
-lin deltoid_A = mkA "deltoid" "more deltoid" "most deltoid" "deltoidly" ;
-lin allantoid_A = mkA "allantoid" "more allantoid" "most allantoid" "allantoidly" ;
-lin mastoid_A = mkA "mastoid" "more mastoid" "most mastoid" "mastoidly" ;
-lin void_A = mkA "void" "more void" "most void" "voidly" ;
-lin devoid_A = mkA "devoid" "more devoid" "most devoid" "devoidly" ;
-lin ovoid_A = mkA "ovoid" "more ovoid" "most ovoid" "ovoidly" ;
-lin hyoid_A = mkA "hyoid" "more hyoid" "most hyoid" "hyoidly" ;
-lin myoid_A = mkA "myoid" "more myoid" "most myoid" "myoidly" ;
-lin botryoid_A = mkA "botryoid" "more botryoid" "most botryoid" "botryoidly" ;
-lin schizoid_A = mkA "schizoid" "more schizoid" "most schizoid" "schizoidly" ;
-lin rapid_A = mkA "rapid" "more rapid" "most rapid" "rapidly" ;
-lin vapid_A = mkA "vapid" "more vapid" "most vapid" "vapidly" ;
-lin intrepid_A = mkA "intrepid" "more intrepid" "most intrepid" "intrepidly" ;
-lin tepid_A = mkA "tepid" "more tepid" "most tepid" "tepidly" ;
-lin insipid_A = mkA "insipid" "more insipid" "most insipid" "insipidly" ;
-lin limpid_A = mkA "limpid" "more limpid" "most limpid" "limpidly" ;
-lin torpid_A = mkA "torpid" "more torpid" "most torpid" "torpidly" ;
-lin hispid_A = mkA "hispid" "more hispid" "most hispid" "hispidly" ;
-lin bicuspid_A = mkA "bicuspid" "more bicuspid" "most bicuspid" "bicuspidly" ;
-lin unicuspid_A = mkA "unicuspid" "more unicuspid" "most unicuspid" "unicuspidly" ;
-lin tricuspid_A = mkA "tricuspid" "more tricuspid" "most tricuspid" "tricuspidly" ;
-lin stupid_A = mkA "stupid" "more stupid" "most stupid" "stupidly" ;
-lin arid_A = mkA "arid" "more arid" "most arid" "aridly" ;
-lin semiarid_A = mkA "semiarid" "more semiarid" "most semiarid" "semiaridly" ;
-lin hybrid_A = mkA "hybrid" "more hybrid" "most hybrid" "hybridly" ;
-lin acrid_A = mkA "acrid" "more acrid" "most acrid" "acridly" ;
-lin florid_A = mkA "florid" "more florid" "most florid" "floridly" ;
-lin horrid_A = mkA "horrid" "more horrid" "most horrid" "horridly" ;
-lin torrid_A = mkA "torrid" "more torrid" "most torrid" "torridly" ;
-lin putrid_A = mkA "putrid" "more putrid" "most putrid" "putridly" ;
-lin lurid_A = mkA "lurid" "more lurid" "most lurid" "luridly" ;
-lin cellulosid_A = mkA "cellulosid" "more cellulosid" "most cellulosid" "cellulosidly" ;
-lin fetid_A = mkA "fetid" "more fetid" "most fetid" "fetidly" ;
-lin carotid_A = mkA "carotid" "more carotid" "most carotid" "carotidly" ;
-lin parotid_A = mkA "parotid" "more parotid" "most parotid" "parotidly" ;
-lin languid_A = mkA "languid" "more languid" "most languid" "languidly" ;
-lin fluid_A = mkA "fluid" "more fluid" "most fluid" "fluidly" ;
-lin liquid_A = mkA "liquid" "more liquid" "most liquid" "liquidly" ;
-lin semiliquid_A = mkA "semiliquid" "more semiliquid" "most semiliquid" "semiliquidly" ;
-lin avid_A = mkA "avid" "more avid" "most avid" "avidly" ;
-lin livid_A = mkA "livid" "more livid" "most livid" "lividly" ;
-lin vivid_A = mkA "vivid" "more vivid" "most vivid" "vividly" ;
-lin fervid_A = mkA "fervid" "more fervid" "most fervid" "fervidly" ;
-lin perfervid_A = mkA "perfervid" "more perfervid" "most perfervid" "perfervidly" ;
-lin piebald_A = mkA "piebald" "more piebald" "most piebald" "piebaldly" ;
-lin ribald_A = mkA "ribald" "more ribald" "most ribald" "ribaldly" ;
-lin downfield_A = mkA "downfield" "more downfield" "most downfield" "downfieldly" ;
-lin upfield_A = mkA "upfield" "more upfield" "most upfield" "upfieldly" ;
-lin 'age-old_A' = mkA "age-old" "more age-old" "most age-old" "age-oldly" ;
-lin overbold_A = mkA "overbold" "more overbold" "most overbold" "overboldly" ;
-lin 'stone-cold_A' = mkA "stone-cold" "more stone-cold" "most stone-cold" "stone-coldly" ;
-lin acold_A = mkA "acold" "more acold" "most acold" "acoldly" ;
-lin thousandfold_A = mkA "thousandfold" "more thousandfold" "most thousandfold" "thousandfoldly" ;
-lin blindfold_A = mkA "blindfold" "more blindfold" "most blindfold" "blindfoldly" ;
-lin threefold_A = mkA "threefold" "more threefold" "most threefold" "threefoldly" ;
-lin ninefold_A = mkA "ninefold" "more ninefold" "most ninefold" "ninefoldly" ;
-lin fivefold_A = mkA "fivefold" "more fivefold" "most fivefold" "fivefoldly" ;
-lin manifold_A = mkA "manifold" "more manifold" "most manifold" "manifoldly" ;
-lin tenfold_A = mkA "tenfold" "more tenfold" "most tenfold" "tenfoldly" ;
-lin sevenfold_A = mkA "sevenfold" "more sevenfold" "most sevenfold" "sevenfoldly" ;
-lin twofold_A = mkA "twofold" "more twofold" "most twofold" "twofoldly" ;
-lin fourfold_A = mkA "fourfold" "more fourfold" "most fourfold" "fourfoldly" ;
-lin sixfold_A = mkA "sixfold" "more sixfold" "most sixfold" "sixfoldly" ;
-lin leasehold_A = mkA "leasehold" "more leasehold" "most leasehold" "leaseholdly" ;
-lin unsold_A = mkA "unsold" "more unsold" "most unsold" "unsoldly" ;
-lin untold_A = mkA "untold" "more untold" "most untold" "untoldly" ;
-lin 'old-world_A' = mkA "old-world" "more old-world" "most old-world" "old-worldly" ;
-lin broadband_A = mkA "broadband" "more broadband" "most broadband" "broadbandly" ;
-lin 'second-hand_A' = mkA "second-hand" "more second-hand" "most second-hand" "second-handly" ;
-lin 'left-hand_A' = mkA "left-hand" "more left-hand" "most left-hand" "left-handly" ;
-lin 'right-hand_A' = mkA "right-hand" "more right-hand" "most right-hand" "right-handly" ;
-lin 'first-hand_A' = mkA "first-hand" "more first-hand" "most first-hand" "first-handly" ;
-lin behindhand_A = mkA "behindhand" "more behindhand" "most behindhand" "behindhandly" ;
-lin secondhand_A = mkA "secondhand" "more secondhand" "most secondhand" "secondhandly" ;
-lin thirdhand_A = mkA "thirdhand" "more thirdhand" "most thirdhand" "thirdhandly" ;
-lin freehand_A = mkA "freehand" "more freehand" "most freehand" "freehandly" ;
-lin forehand_A = mkA "forehand" "more forehand" "most forehand" "forehandly" ;
-lin beforehand_A = mkA "beforehand" "more beforehand" "most beforehand" "beforehandly" ;
-lin offhand_A = mkA "offhand" "more offhand" "most offhand" "offhandly" ;
-lin longhand_A = mkA "longhand" "more longhand" "most longhand" "longhandly" ;
-lin backhand_A = mkA "backhand" "more backhand" "most backhand" "backhandly" ;
-lin underhand_A = mkA "underhand" "more underhand" "most underhand" "underhandly" ;
-lin overhand_A = mkA "overhand" "more overhand" "most overhand" "overhandly" ;
-lin shorthand_A = mkA "shorthand" "more shorthand" "most shorthand" "shorthandly" ;
-lin firsthand_A = mkA "firsthand" "more firsthand" "most firsthand" "firsthandly" ;
-lin inland_A = mkA "inland" "more inland" "most inland" "inlandly" ;
-lin upland_A = mkA "upland" "more upland" "most upland" "uplandly" ;
-lin overland_A = mkA "overland" "more overland" "most overland" "overlandly" ;
-lin lowland_A = mkA "lowland" "more lowland" "most lowland" "lowlandly" ;
-lin repand_A = mkA "repand" "more repand" "most repand" "repandly" ;
-lin 'west-end_A' = mkA "west-end" "more west-end" "most west-end" "west-endly" ;
-lin reverend_A = mkA "reverend" "more reverend" "most reverend" "reverendly" ;
-lin hind_A = mkA "hind" "more hind" "most hind" "hindly" ;
-lin unkind_A = mkA "unkind" "more unkind" "most unkind" "unkindly" ;
-lin blind_A = mkA "blind" "more blind" "most blind" "blindly" ;
-lin 'stone-blind_A' = mkA "stone-blind" "more stone-blind" "most stone-blind" "stone-blindly" ;
-lin 'color-blind_A' = mkA "color-blind" "more color-blind" "most color-blind" "color-blindly" ;
-lin 'colour-blind_A' = mkA "colour-blind" "more colour-blind" "most colour-blind" "colour-blindly" ;
-lin purblind_A = mkA "purblind" "more purblind" "most purblind" "purblindly" ;
-lin snowblind_A = mkA "snowblind" "more snowblind" "most snowblind" "snowblindly" ;
-lin downwind_A = mkA "downwind" "more downwind" "most downwind" "downwindly" ;
-lin upwind_A = mkA "upwind" "more upwind" "most upwind" "upwindly" ;
-lin vagabond_A = mkA "vagabond" "more vagabond" "most vagabond" "vagabondly" ;
-lin overfond_A = mkA "overfond" "more overfond" "most overfond" "overfondly" ;
-lin moribund_A = mkA "moribund" "more moribund" "most moribund" "moribundly" ;
-lin fecund_A = mkA "fecund" "more fecund" "most fecund" "fecundly" ;
-lin rubicund_A = mkA "rubicund" "more rubicund" "most rubicund" "rubicundly" ;
-lin jocund_A = mkA "jocund" "more jocund" "most jocund" "jocundly" ;
-lin 'muscle-bound_A' = mkA "muscle-bound" "more muscle-bound" "most muscle-bound" "muscle-boundly" ;
-lin 'storm-bound_A' = mkA "storm-bound" "more storm-bound" "most storm-bound" "storm-boundly" ;
-lin 'weather-bound_A' = mkA "weather-bound" "more weather-bound" "most weather-bound" "weather-boundly" ;
-lin 'frost-bound_A' = mkA "frost-bound" "more frost-bound" "most frost-bound" "frost-boundly" ;
-lin hardbound_A = mkA "hardbound" "more hardbound" "most hardbound" "hardboundly" ;
-lin icebound_A = mkA "icebound" "more icebound" "most icebound" "iceboundly" ;
-lin hidebound_A = mkA "hidebound" "more hidebound" "most hidebound" "hideboundly" ;
-lin strikebound_A = mkA "strikebound" "more strikebound" "most strikebound" "strikeboundly" ;
-lin homebound_A = mkA "homebound" "more homebound" "most homebound" "homeboundly" ;
-lin housebound_A = mkA "housebound" "more housebound" "most housebound" "houseboundly" ;
-lin fogbound_A = mkA "fogbound" "more fogbound" "most fogbound" "fogboundly" ;
-lin earthbound_A = mkA "earthbound" "more earthbound" "most earthbound" "earthboundly" ;
-lin northbound_A = mkA "northbound" "more northbound" "most northbound" "northboundly" ;
-lin southbound_A = mkA "southbound" "more southbound" "most southbound" "southboundly" ;
-lin spellbound_A = mkA "spellbound" "more spellbound" "most spellbound" "spellboundly" ;
-lin stormbound_A = mkA "stormbound" "more stormbound" "most stormbound" "stormboundly" ;
-lin inbound_A = mkA "inbound" "more inbound" "most inbound" "inboundly" ;
-lin downbound_A = mkA "downbound" "more downbound" "most downbound" "downboundly" ;
-lin upbound_A = mkA "upbound" "more upbound" "most upbound" "upboundly" ;
-lin brassbound_A = mkA "brassbound" "more brassbound" "most brassbound" "brassboundly" ;
-lin rootbound_A = mkA "rootbound" "more rootbound" "most rootbound" "rootboundly" ;
-lin potbound_A = mkA "potbound" "more potbound" "most potbound" "potboundly" ;
-lin eastbound_A = mkA "eastbound" "more eastbound" "most eastbound" "eastboundly" ;
-lin westbound_A = mkA "westbound" "more westbound" "most westbound" "westboundly" ;
-lin outbound_A = mkA "outbound" "more outbound" "most outbound" "outboundly" ;
-lin snowbound_A = mkA "snowbound" "more snowbound" "most snowbound" "snowboundly" ;
-lin 'well-found_A' = mkA "well-found" "more well-found" "most well-found" "well-foundly" ;
-lin profound_A = mkA "profound" "more profound" "most profound" "profoundly" ;
-lin newfound_A = mkA "newfound" "more newfound" "most newfound" "newfoundly" ;
-lin compound_A = mkA "compound" "more compound" "most compound" "compoundly" ;
-lin decompound_A = mkA "decompound" "more decompound" "most decompound" "decompoundly" ;
-lin 'all-round_A' = mkA "all-round" "more all-round" "most all-round" "all-roundly" ;
-lin 'air-to-ground_A' = mkA "air-to-ground" "more air-to-ground" "most air-to-ground" "air-to-groundly" ;
-lin aground_A = mkA "aground" "more aground" "most aground" "agroundly" ;
-lin aboveground_A = mkA "aboveground" "more aboveground" "most aboveground" "abovegroundly" ;
-lin underground_A = mkA "underground" "more underground" "most underground" "undergroundly" ;
-lin belowground_A = mkA "belowground" "more belowground" "most belowground" "belowgroundly" ;
-lin sound_A = mkA "sound" "more sound" "most sound" "soundly" ;
-lin unsound_A = mkA "unsound" "more unsound" "most unsound" "unsoundly" ;
-lin rotund_A = mkA "rotund" "more rotund" "most rotund" "rotundly" ;
-lin orotund_A = mkA "orotund" "more orotund" "most orotund" "orotundly" ;
-lin 'dry-shod_A' = mkA "dry-shod" "more dry-shod" "most dry-shod" "dry-shodly" ;
-lin roughshod_A = mkA "roughshod" "more roughshod" "most roughshod" "roughshodly" ;
-lin ironshod_A = mkA "ironshod" "more ironshod" "most ironshod" "ironshodly" ;
-lin unshod_A = mkA "unshod" "more unshod" "most unshod" "unshodly" ;
-lin slipshod_A = mkA "slipshod" "more slipshod" "most slipshod" "slipshodly" ;
-lin epitheliod_A = mkA "epitheliod" "more epitheliod" "most epitheliod" "epitheliodly" ;
-lin mod_A = mkA "mod" "more mod" "most mod" "modly" ;
-lin ununderstood_A = mkA "ununderstood" "more ununderstood" "most ununderstood" "ununderstoodly" ;
-lin brachiopod_A = mkA "brachiopod" "more brachiopod" "most brachiopod" "brachiopodly" ;
-lin branchiopod_A = mkA "branchiopod" "more branchiopod" "most branchiopod" "branchiopodly" ;
-lin cephalopod_A = mkA "cephalopod" "more cephalopod" "most cephalopod" "cephalopodly" ;
-lin standard_A = mkA "standard" "more standard" "most standard" "standardly" ;
-lin substandard_A = mkA "substandard" "more substandard" "most substandard" "substandardly" ;
-lin nonstandard_A = mkA "nonstandard" "more nonstandard" "most nonstandard" "nonstandardly" ;
-lin unheard_A = mkA "unheard" "more unheard" "most unheard" "unheardly" ;
-lin haggard_A = mkA "haggard" "more haggard" "most haggard" "haggardly" ;
-lin semihard_A = mkA "semihard" "more semihard" "most semihard" "semihardly" ;
-lin billiard_A = mkA "billiard" "more billiard" "most billiard" "billiardly" ;
-lin 'above board_A' = mkA "above board" "more above board" "most above board" "above boardly" ;
-lin cardboard_A = mkA "cardboard" "more cardboard" "most cardboard" "cardboardly" ;
-lin aboveboard_A = mkA "aboveboard" "more aboveboard" "most aboveboard" "aboveboardly" ;
-lin inboard_A = mkA "inboard" "more inboard" "most inboard" "inboardly" ;
-lin shipboard_A = mkA "shipboard" "more shipboard" "most shipboard" "shipboardly" ;
-lin larboard_A = mkA "larboard" "more larboard" "most larboard" "larboardly" ;
-lin starboard_A = mkA "starboard" "more starboard" "most starboard" "starboardly" ;
-lin outboard_A = mkA "outboard" "more outboard" "most outboard" "outboardly" ;
-lin mansard_A = mkA "mansard" "more mansard" "most mansard" "mansardly" ;
-lin seaward_A = mkA "seaward" "more seaward" "most seaward" "seawardly" ;
-lin windward_A = mkA "windward" "more windward" "most windward" "windwardly" ;
-lin leeward_A = mkA "leeward" "more leeward" "most leeward" "leewardly" ;
-lin homeward_A = mkA "homeward" "more homeward" "most homeward" "homewardly" ;
-lin backward_A = mkA "backward" "more backward" "most backward" "backwardly" ;
-lin awkward_A = mkA "awkward" "more awkward" "most awkward" "awkwardly" ;
-lin heavenward_A = mkA "heavenward" "more heavenward" "most heavenward" "heavenwardly" ;
-lin inward_A = mkA "inward" "more inward" "most inward" "inwardly" ;
-lin onward_A = mkA "onward" "more onward" "most onward" "onwardly" ;
-lin downward_A = mkA "downward" "more downward" "most downward" "downwardly" ;
-lin froward_A = mkA "froward" "more froward" "most froward" "frowardly" ;
-lin untoward_A = mkA "untoward" "more untoward" "most untoward" "untowardly" ;
-lin upward_A = mkA "upward" "more upward" "most upward" "upwardly" ;
-lin rearward_A = mkA "rearward" "more rearward" "most rearward" "rearwardly" ;
-lin forward_A = mkA "forward" "more forward" "most forward" "forwardly" ;
-lin straightforward_A = mkA "straightforward" "more straightforward" "most straightforward" "straightforwardly" ;
-lin eastward_A = mkA "eastward" "more eastward" "most eastward" "eastwardly" ;
-lin northeastward_A = mkA "northeastward" "more northeastward" "most northeastward" "northeastwardly" ;
-lin southeastward_A = mkA "southeastward" "more southeastward" "most southeastward" "southeastwardly" ;
-lin westward_A = mkA "westward" "more westward" "most westward" "westwardly" ;
-lin northwestward_A = mkA "northwestward" "more northwestward" "most northwestward" "northwestwardly" ;
-lin southwestward_A = mkA "southwestward" "more southwestward" "most southwestward" "southwestwardly" ;
-lin outward_A = mkA "outward" "more outward" "most outward" "outwardly" ;
-lin wayward_A = mkA "wayward" "more wayward" "most wayward" "waywardly" ;
-lin skyward_A = mkA "skyward" "more skyward" "most skyward" "skywardly" ;
-lin haphazard_A = mkA "haphazard" "more haphazard" "most haphazard" "haphazardly" ;
-lin wizard_A = mkA "wizard" "more wizard" "most wizard" "wizardly" ;
-lin absurd_A = mkA "absurd" "more absurd" "most absurd" "absurdly" ;
-lin dud_A = mkA "dud" "more dud" "most dud" "dudly" ;
-lin 'stick-in-the-mud_A' = mkA "stick-in-the-mud" "more stick-in-the-mud" "most stick-in-the-mud" "stick-in-the-mudly" ;
-lin 'purse-proud_A' = mkA "purse-proud" "more purse-proud" "most purse-proud" "purse-proudly" ;
-lin houseproud_A = mkA "houseproud" "more houseproud" "most houseproud" "houseproudly" ;
-lin overproud_A = mkA "overproud" "more overproud" "most overproud" "overproudly" ;
-lin bad_A = mkA "bad" "worse" "worst" "badly" ;
-lin good_A = mkA "good" "better" "best" "well" ;
-lin glad_A = mkA "glad" "gladder" "gladdest" "gladly" ;
-lin mad_A = mkA "mad" "madder" "maddest" "madly" ;
-lin broad_A = mkA "broad" "broader" "broadest" "broadly" ;
-lin sad_A = mkA "sad" "sadder" "saddest" "sadly" ;
-lin odd_A = mkA "odd" "odder" "oddest" "oddly" ;
-lin toed_A = mkA "toed" "toeder" "toedest" "toedly" ;
-lin red_A = mkA "red" "redder" "reddest" "redly" ;
-lin glued_A = mkA "glued" "gluedder" "glueddest" "gluedly" ;
-lin wed_A = mkA "wed" "wedder" "weddest" "wedly" ;
-lin bald_A = mkA "bald" "balder" "baldest" "baldly" ;
-lin mild_A = mkA "mild" "milder" "mildest" "mildly" ;
-lin wild_A = mkA "wild" "wilder" "wildest" "wildly" ;
-lin old_A = mkA "old" "older" "oldest" "oldly" ;
-lin bold_A = mkA "bold" "bolder" "boldest" "boldly" ; -- notcompound old_A ;
-lin cold_A = mkA "cold" "colder" "coldest" "coldly" ; -- notcompound old_A ;
-lin gold_A = mkA "gold" "golder" "goldest" "goldly" ; -- notcompound old_A ;
-lin auld_A = mkA "auld" "aulder" "auldest" "auldly" ;
-lin bland_A = mkA "bland" "blander" "blandest" "blandly" ;
-lin grand_A = mkA "grand" "grander" "grandest" "grandly" ;
-lin kind_A = mkA "kind" "kinder" "kindest" "kindly" ;
-lin fond_A = mkA "fond" "fonder" "fondest" "fondly" ;
-lin blond_A = mkA "blond" "blonder" "blondest" "blondly" ;
-lin round_A = mkA "round" "rounder" "roundest" "roundly" ;
-lin shod_A = mkA "shod" "shodder" "shoddest" "shodly" ;
-lin tod_A = mkA "tod" "todder" "toddest" "todly" ;
-lin hard_A = mkA "hard" "harder" "hardest" "hardly" ;
-lin weird_A = mkA "weird" "weirder" "weirdest" "weirdly" ;
-lin loud_A = mkA "loud" "louder" "loudest" "loudly" ;
-lin proud_A = mkA "proud" "prouder" "proudest" "proudly" ;
-lin lewd_A = mkA "lewd" "lewder" "lewdest" "lewdly" ;
-lin shrewd_A = mkA "shrewd" "shrewder" "shrewdest" "shrewdly" ;
-lin alone_A = mkA "alone" "more alone" "most alone" "alone" ;
-lin 'first-rate_A' = mkA "first-rate" "more first-rate" "most first-rate" "first-rate" ;
-lin 'would-be_A' = mkA "would-be" "more would-be" "most would-be" "would-bely" ;
-lin biface_A = mkA "biface" "more biface" "most biface" "bifacely" ;
-lin surface_A = mkA "surface" "more surface" "most surface" "surfacely" ;
-lin subsurface_A = mkA "subsurface" "more subsurface" "most subsurface" "subsurfacely" ;
-lin commonplace_A = mkA "commonplace" "more commonplace" "most commonplace" "commonplacely" ;
-lin vivace_A = mkA "vivace" "more vivace" "most vivace" "vivacely" ;
-lin 'three-piece_A' = mkA "three-piece" "more three-piece" "most three-piece" "three-piecely" ;
-lin 'sub judice_A' = mkA "sub judice" "more sub judice" "most sub judice" "sub judicely" ;
-lin choice_A = mkA "choice" "more choice" "most choice" "choicely" ;
-lin 'cut-price_A' = mkA "cut-price" "more cut-price" "most cut-price" "cut-pricely" ;
-lin 'in-service_A' = mkA "in-service" "more in-service" "most in-service" "in-servicely" ;
-lin 'ex-service_A' = mkA "ex-service" "more ex-service" "most ex-service" "ex-servicely" ;
-lin askance_A = mkA "askance" "more askance" "most askance" "askancely" ;
-lin freelance_A = mkA "freelance" "more freelance" "most freelance" "freelancely" ;
-lin romance_A = mkA "romance" "more romance" "most romance" "romancely" ;
-lin 'middle-distance_A' = mkA "middle-distance" "more middle-distance" "most middle-distance" "middle-distancely" ;
-lin 'long-distance_A' = mkA "long-distance" "more long-distance" "most long-distance" "long-distancely" ;
-lin 'viva voce_A' = mkA "viva voce" "more viva voce" "most viva voce" "viva vocely" ;
-lin spruce_A = mkA "spruce" "more spruce" "most spruce" "sprucely" ;
-lin 'home-made_A' = mkA "home-made" "more home-made" "most home-made" "home-madely" ;
-lin 'machine-made_A' = mkA "machine-made" "more machine-made" "most machine-made" "machine-madely" ;
-lin 'self-made_A' = mkA "self-made" "more self-made" "most self-made" "self-madely" ;
-lin 'custom-made_A' = mkA "custom-made" "more custom-made" "most custom-made" "custom-madely" ;
-lin 'tailor-made_A' = mkA "tailor-made" "more tailor-made" "most tailor-made" "tailor-madely" ;
-lin 'ready-made_A' = mkA "ready-made" "more ready-made" "most ready-made" "ready-madely" ;
-lin handmade_A = mkA "handmade" "more handmade" "most handmade" "handmadely" ;
-lin homemade_A = mkA "homemade" "more homemade" "most homemade" "homemadely" ;
-lin unmade_A = mkA "unmade" "more unmade" "most unmade" "unmadely" ;
-lin 'high-grade_A' = mkA "high-grade" "more high-grade" "most high-grade" "high-gradely" ;
-lin 'medium-grade_A' = mkA "medium-grade" "more medium-grade" "most medium-grade" "medium-gradely" ;
-lin digitigrade_A = mkA "digitigrade" "more digitigrade" "most digitigrade" "digitigradely" ;
-lin plantigrade_A = mkA "plantigrade" "more plantigrade" "most plantigrade" "plantigradely" ;
-lin centigrade_A = mkA "centigrade" "more centigrade" "most centigrade" "centigradely" ;
-lin anterograde_A = mkA "anterograde" "more anterograde" "most anterograde" "anterogradely" ;
-lin retrograde_A = mkA "retrograde" "more retrograde" "most retrograde" "retrogradely" ;
-lin antitrade_A = mkA "antitrade" "more antitrade" "most antitrade" "antitradely" ;
-lin Swede_A = mkA "Swede" "more Swede" "most Swede" "Swedely" ;
-lin 'bona fide_A' = mkA "bona fide" "more bona fide" "most bona fide" "bona fidely" ;
-lin rawhide_A = mkA "rawhide" "more rawhide" "most rawhide" "rawhidely" ;
-lin transactinide_A = mkA "transactinide" "more transactinide" "most transactinide" "transactinidely" ;
-lin snide_A = mkA "snide" "more snide" "most snide" "snidely" ;
-lin astride_A = mkA "astride" "more astride" "most astride" "astridely" ;
-lin broadside_A = mkA "broadside" "more broadside" "most broadside" "broadsidely" ;
-lin offside_A = mkA "offside" "more offside" "most offside" "offsidely" ;
-lin greenside_A = mkA "greenside" "more greenside" "most greenside" "greensidely" ;
-lin inside_A = mkA "inside" "more inside" "most inside" "insidely" ;
-lin onside_A = mkA "onside" "more onside" "most onside" "onsidely" ;
-lin eastside_A = mkA "eastside" "more eastside" "most eastside" "eastsidely" ;
-lin westside_A = mkA "westside" "more westside" "most westside" "westsidely" ;
-lin outside_A = mkA "outside" "more outside" "most outside" "outsidely" ;
-lin worldwide_A = mkA "worldwide" "more worldwide" "most worldwide" "worldwidely" ;
-lin statewide_A = mkA "statewide" "more statewide" "most statewide" "statewidely" ;
-lin schoolwide_A = mkA "schoolwide" "more schoolwide" "most schoolwide" "schoolwidely" ;
-lin nationwide_A = mkA "nationwide" "more nationwide" "most nationwide" "nationwidely" ;
-lin countrywide_A = mkA "countrywide" "more countrywide" "most countrywide" "countrywidely" ;
-lin citywide_A = mkA "citywide" "more citywide" "most citywide" "citywidely" ;
-lin countywide_A = mkA "countywide" "more countywide" "most countywide" "countywidely" ;
-lin blonde_A = mkA "blonde" "more blonde" "most blonde" "blondely" ;
-lin nude_A = mkA "nude" "more nude" "most nude" "nudely" ;
-lin seminude_A = mkA "seminude" "more seminude" "most seminude" "seminudely" ;
-lin buckshee_A = mkA "buckshee" "more buckshee" "most buckshee" "bucksheely" ;
-lin alee_A = mkA "alee" "more alee" "most alee" "aleely" ;
-lin soignee_A = mkA "soignee" "more soignee" "most soignee" "soigneely" ;
-lin botonee_A = mkA "botonee" "more botonee" "most botonee" "botoneely" ;
-lin 'rent-free_A' = mkA "rent-free" "more rent-free" "most rent-free" "rent-freely" ;
-lin 'post-free_A' = mkA "post-free" "more post-free" "most post-free" "post-freely" ;
-lin 'tax-free_A' = mkA "tax-free" "more tax-free" "most tax-free" "tax-freely" ;
-lin 'fancy-free_A' = mkA "fancy-free" "more fancy-free" "most fancy-free" "fancy-freely" ;
-lin 'duty-free_A' = mkA "duty-free" "more duty-free" "most duty-free" "duty-freely" ;
-lin icefree_A = mkA "icefree" "more icefree" "most icefree" "icefreely" ;
-lin carefree_A = mkA "carefree" "more carefree" "most carefree" "carefreely" ;
-lin germfree_A = mkA "germfree" "more germfree" "most germfree" "germfreely" ;
-lin unfree_A = mkA "unfree" "more unfree" "most unfree" "unfreely" ;
-lin wee_A = mkA "wee" "more wee" "most wee" "weely" ;
-lin twee_A = mkA "twee" "more twee" "most twee" "tweely" ;
-lin 'fail-safe_A' = mkA "fail-safe" "more fail-safe" "most fail-safe" "fail-safely" ;
-lin unsafe_A = mkA "unsafe" "more unsafe" "most unsafe" "unsafely" ;
-lin rife_A = mkA "rife" "more rife" "most rife" "rifely" ;
-lin degage_A = mkA "degage" "more degage" "most degage" "degagely" ;
-lin teenage_A = mkA "teenage" "more teenage" "most teenage" "teenagely" ;
-lin 'full-page_A' = mkA "full-page" "more full-page" "most full-page" "full-pagely" ;
-lin underage_A = mkA "underage" "more underage" "most underage" "underagely" ;
-lin average_A = mkA "average" "more average" "most average" "averagely" ;
-lin overage_A = mkA "overage" "more overage" "most overage" "overagely" ;
-lin sage_A = mkA "sage" "more sage" "most sage" "sagely" ;
-lin offstage_A = mkA "offstage" "more offstage" "most offstage" "offstagely" ;
-lin onstage_A = mkA "onstage" "more onstage" "most onstage" "onstagely" ;
-lin downstage_A = mkA "downstage" "more downstage" "most downstage" "downstagely" ;
-lin upstage_A = mkA "upstage" "more upstage" "most upstage" "upstagely" ;
-lin savage_A = mkA "savage" "more savage" "most savage" "savagely" ;
-lin liege_A = mkA "liege" "more liege" "most liege" "liegely" ;
-lin meshugge_A = mkA "meshugge" "more meshugge" "most meshugge" "meshuggely" ;
-lin 'quick-change_A' = mkA "quick-change" "more quick-change" "most quick-change" "quick-changely" ;
-lin 'free-range_A' = mkA "free-range" "more free-range" "most free-range" "free-rangely" ;
-lin 'long-range_A' = mkA "long-range" "more long-range" "most long-range" "long-rangely" ;
-lin 'short-range_A' = mkA "short-range" "more short-range" "most short-range" "short-rangely" ;
-lin orange_A = mkA "orange" "more orange" "most orange" "orangely" ;
-lin 'writ large_A' = mkA "writ large" "more writ large" "most writ large" "writ largely" ;
-lin overlarge_A = mkA "overlarge" "more overlarge" "most overlarge" "overlargely" ;
-lin huge_A = mkA "huge" "more huge" "most huge" "hugely" ;
-lin boche_A = mkA "boche" "more boche" "most boche" "bochely" ;
-lin gauche_A = mkA "gauche" "more gauche" "most gauche" "gauchely" ;
-lin lithe_A = mkA "lithe" "more lithe" "most lithe" "lithely" ;
-lin blithe_A = mkA "blithe" "more blithe" "most blithe" "blithely" ;
-lin 'prima facie_A' = mkA "prima facie" "more prima facie" "most prima facie" "prima faciely" ;
-lin indie_A = mkA "indie" "more indie" "most indie" "indiely" ;
-lin couthie_A = mkA "couthie" "more couthie" "most couthie" "couthiely" ;
-lin cockamamie_A = mkA "cockamamie" "more cockamamie" "most cockamamie" "cockamamiely" ;
-lin dormie_A = mkA "dormie" "more dormie" "most dormie" "dormiely" ;
-lin awake_A = mkA "awake" "more awake" "most awake" "awakely" ;
-lin 'wide-awake_A' = mkA "wide-awake" "more wide-awake" "most wide-awake" "wide-awakely" ;
-lin like_A = mkA "like" "more like" "most like" "likely" ;
-lin 'dog-like_A' = mkA "dog-like" "more dog-like" "most dog-like" "dog-likely" ;
-lin 'sylph-like_A' = mkA "sylph-like" "more sylph-like" "most sylph-like" "sylph-likely" ;
-lin alike_A = mkA "alike" "more alike" "most alike" "alikely" ;
-lin umbrellalike_A = mkA "umbrellalike" "more umbrellalike" "most umbrellalike" "umbrellalikely" ;
-lin unalike_A = mkA "unalike" "more unalike" "most unalike" "unalikely" ;
-lin riblike_A = mkA "riblike" "more riblike" "most riblike" "riblikely" ;
-lin bulblike_A = mkA "bulblike" "more bulblike" "most bulblike" "bulblikely" ;
-lin lamblike_A = mkA "lamblike" "more lamblike" "most lamblike" "lamblikely" ;
-lin maniclike_A = mkA "maniclike" "more maniclike" "most maniclike" "maniclikely" ;
-lin headlike_A = mkA "headlike" "more headlike" "most headlike" "headlikely" ;
-lin threadlike_A = mkA "threadlike" "more threadlike" "most threadlike" "threadlikely" ;
-lin childlike_A = mkA "childlike" "more childlike" "most childlike" "childlikely" ;
-lin godlike_A = mkA "godlike" "more godlike" "most godlike" "godlikely" ;
-lin podlike_A = mkA "podlike" "more podlike" "most podlike" "podlikely" ;
-lin cloudlike_A = mkA "cloudlike" "more cloudlike" "most cloudlike" "cloudlikely" ;
-lin babelike_A = mkA "babelike" "more babelike" "most babelike" "babelikely" ;
-lin cubelike_A = mkA "cubelike" "more cubelike" "most cubelike" "cubelikely" ;
-lin trancelike_A = mkA "trancelike" "more trancelike" "most trancelike" "trancelikely" ;
-lin fencelike_A = mkA "fencelike" "more fencelike" "most fencelike" "fencelikely" ;
-lin lifelike_A = mkA "lifelike" "more lifelike" "most lifelike" "lifelikely" ;
-lin knifelike_A = mkA "knifelike" "more knifelike" "most knifelike" "knifelikely" ;
-lin wifelike_A = mkA "wifelike" "more wifelike" "most wifelike" "wifelikely" ;
-lin spikelike_A = mkA "spikelike" "more spikelike" "most spikelike" "spikelikely" ;
-lin scalelike_A = mkA "scalelike" "more scalelike" "most scalelike" "scalelikely" ;
-lin maplelike_A = mkA "maplelike" "more maplelike" "most maplelike" "maplelikely" ;
-lin thistlelike_A = mkA "thistlelike" "more thistlelike" "most thistlelike" "thistlelikely" ;
-lin bristlelike_A = mkA "bristlelike" "more bristlelike" "most bristlelike" "bristlelikely" ;
-lin homelike_A = mkA "homelike" "more homelike" "most homelike" "homelikely" ;
-lin plumelike_A = mkA "plumelike" "more plumelike" "most plumelike" "plumelikely" ;
-lin linelike_A = mkA "linelike" "more linelike" "most linelike" "linelikely" ;
-lin bonelike_A = mkA "bonelike" "more bonelike" "most bonelike" "bonelikely" ;
-lin grapelike_A = mkA "grapelike" "more grapelike" "most grapelike" "grapelikely" ;
-lin cheeselike_A = mkA "cheeselike" "more cheeselike" "most cheeselike" "cheeselikely" ;
-lin viselike_A = mkA "viselike" "more viselike" "most viselike" "viselikely" ;
-lin tonguelike_A = mkA "tonguelike" "more tonguelike" "most tonguelike" "tonguelikely" ;
-lin slavelike_A = mkA "slavelike" "more slavelike" "most slavelike" "slavelikely" ;
-lin olivelike_A = mkA "olivelike" "more olivelike" "most olivelike" "olivelikely" ;
-lin eyelike_A = mkA "eyelike" "more eyelike" "most eyelike" "eyelikely" ;
-lin leaflike_A = mkA "leaflike" "more leaflike" "most leaflike" "leaflikely" ;
-lin shelflike_A = mkA "shelflike" "more shelflike" "most shelflike" "shelflikely" ;
-lin wolflike_A = mkA "wolflike" "more wolflike" "most wolflike" "wolflikely" ;
-lin hooflike_A = mkA "hooflike" "more hooflike" "most hooflike" "hooflikely" ;
-lin serflike_A = mkA "serflike" "more serflike" "most serflike" "serflikely" ;
-lin leglike_A = mkA "leglike" "more leglike" "most leglike" "leglikely" ;
-lin kinglike_A = mkA "kinglike" "more kinglike" "most kinglike" "kinglikely" ;
-lin ringlike_A = mkA "ringlike" "more ringlike" "most ringlike" "ringlikely" ;
-lin springlike_A = mkA "springlike" "more springlike" "most springlike" "springlikely" ;
-lin winglike_A = mkA "winglike" "more winglike" "most winglike" "winglikely" ;
-lin doglike_A = mkA "doglike" "more doglike" "most doglike" "doglikely" ;
-lin starchlike_A = mkA "starchlike" "more starchlike" "most starchlike" "starchlikely" ;
-lin witchlike_A = mkA "witchlike" "more witchlike" "most witchlike" "witchlikely" ;
-lin suchlike_A = mkA "suchlike" "more suchlike" "most suchlike" "suchlikely" ;
-lin rushlike_A = mkA "rushlike" "more rushlike" "most rushlike" "rushlikely" ;
-lin brushlike_A = mkA "brushlike" "more brushlike" "most brushlike" "brushlikely" ;
-lin deathlike_A = mkA "deathlike" "more deathlike" "most deathlike" "deathlikely" ;
-lin heathlike_A = mkA "heathlike" "more heathlike" "most heathlike" "heathlikely" ;
-lin toothlike_A = mkA "toothlike" "more toothlike" "most toothlike" "toothlikely" ;
-lin earthlike_A = mkA "earthlike" "more earthlike" "most earthlike" "earthlikely" ;
-lin mouthlike_A = mkA "mouthlike" "more mouthlike" "most mouthlike" "mouthlikely" ;
-lin beaklike_A = mkA "beaklike" "more beaklike" "most beaklike" "beaklikely" ;
-lin necklike_A = mkA "necklike" "more necklike" "most necklike" "necklikely" ;
-lin hooklike_A = mkA "hooklike" "more hooklike" "most hooklike" "hooklikely" ;
-lin networklike_A = mkA "networklike" "more networklike" "most networklike" "networklikely" ;
-lin metallike_A = mkA "metallike" "more metallike" "most metallike" "metallikely" ;
-lin petallike_A = mkA "petallike" "more petallike" "most petallike" "petallikely" ;
-lin eellike_A = mkA "eellike" "more eellike" "most eellike" "eellikely" ;
-lin vowellike_A = mkA "vowellike" "more vowellike" "most vowellike" "vowellikely" ;
-lin dreamlike_A = mkA "dreamlike" "more dreamlike" "most dreamlike" "dreamlikely" ;
-lin palmlike_A = mkA "palmlike" "more palmlike" "most palmlike" "palmlikely" ;
-lin armlike_A = mkA "armlike" "more armlike" "most armlike" "armlikely" ;
-lin plumlike_A = mkA "plumlike" "more plumlike" "most plumlike" "plumlikely" ;
-lin fanlike_A = mkA "fanlike" "more fanlike" "most fanlike" "fanlikely" ;
-lin manlike_A = mkA "manlike" "more manlike" "most manlike" "manlikely" ;
-lin seamanlike_A = mkA "seamanlike" "more seamanlike" "most seamanlike" "seamanlikely" ;
-lin unseamanlike_A = mkA "unseamanlike" "more unseamanlike" "most unseamanlike" "unseamanlikely" ;
-lin gentlemanlike_A = mkA "gentlemanlike" "more gentlemanlike" "most gentlemanlike" "gentlemanlikely" ;
-lin workmanlike_A = mkA "workmanlike" "more workmanlike" "most workmanlike" "workmanlikely" ;
-lin unworkmanlike_A = mkA "unworkmanlike" "more unworkmanlike" "most unworkmanlike" "unworkmanlikely" ;
-lin womanlike_A = mkA "womanlike" "more womanlike" "most womanlike" "womanlikely" ;
-lin statesmanlike_A = mkA "statesmanlike" "more statesmanlike" "most statesmanlike" "statesmanlikely" ;
-lin unstatesmanlike_A = mkA "unstatesmanlike" "more unstatesmanlike" "most unstatesmanlike" "unstatesmanlikely" ;
-lin sportsmanlike_A = mkA "sportsmanlike" "more sportsmanlike" "most sportsmanlike" "sportsmanlikely" ;
-lin unsportsmanlike_A = mkA "unsportsmanlike" "more unsportsmanlike" "most unsportsmanlike" "unsportsmanlikely" ;
-lin maidenlike_A = mkA "maidenlike" "more maidenlike" "most maidenlike" "maidenlikely" ;
-lin resinlike_A = mkA "resinlike" "more resinlike" "most resinlike" "resinlikely" ;
-lin ribbonlike_A = mkA "ribbonlike" "more ribbonlike" "most ribbonlike" "ribbonlikely" ;
-lin moonlike_A = mkA "moonlike" "more moonlike" "most moonlike" "moonlikely" ;
-lin ironlike_A = mkA "ironlike" "more ironlike" "most ironlike" "ironlikely" ;
-lin prisonlike_A = mkA "prisonlike" "more prisonlike" "most prisonlike" "prisonlikely" ;
-lin fernlike_A = mkA "fernlike" "more fernlike" "most fernlike" "fernlikely" ;
-lin hornlike_A = mkA "hornlike" "more hornlike" "most hornlike" "hornlikely" ;
-lin unlike_A = mkA "unlike" "more unlike" "most unlike" "unlikely" ;
-lin straplike_A = mkA "straplike" "more straplike" "most straplike" "straplikely" ;
-lin sheeplike_A = mkA "sheeplike" "more sheeplike" "most sheeplike" "sheeplikely" ;
-lin wisplike_A = mkA "wisplike" "more wisplike" "most wisplike" "wisplikely" ;
-lin cuplike_A = mkA "cuplike" "more cuplike" "most cuplike" "cuplikely" ;
-lin starlike_A = mkA "starlike" "more starlike" "most starlike" "starlikely" ;
-lin warlike_A = mkA "warlike" "more warlike" "most warlike" "warlikely" ;
-lin featherlike_A = mkA "featherlike" "more featherlike" "most featherlike" "featherlikely" ;
-lin motherlike_A = mkA "motherlike" "more motherlike" "most motherlike" "motherlikely" ;
-lin loverlike_A = mkA "loverlike" "more loverlike" "most loverlike" "loverlikely" ;
-lin hairlike_A = mkA "hairlike" "more hairlike" "most hairlike" "hairlikely" ;
-lin mirrorlike_A = mkA "mirrorlike" "more mirrorlike" "most mirrorlike" "mirrorlikely" ;
-lin burrlike_A = mkA "burrlike" "more burrlike" "most burrlike" "burrlikely" ;
-lin furlike_A = mkA "furlike" "more furlike" "most furlike" "furlikely" ;
-lin grasslike_A = mkA "grasslike" "more grasslike" "most grasslike" "grasslikely" ;
-lin businesslike_A = mkA "businesslike" "more businesslike" "most businesslike" "businesslikely" ;
-lin ratlike_A = mkA "ratlike" "more ratlike" "most ratlike" "ratlikely" ;
-lin sheetlike_A = mkA "sheetlike" "more sheetlike" "most sheetlike" "sheetlikely" ;
-lin saltlike_A = mkA "saltlike" "more saltlike" "most saltlike" "saltlikely" ;
-lin beltlike_A = mkA "beltlike" "more beltlike" "most beltlike" "beltlikely" ;
-lin chantlike_A = mkA "chantlike" "more chantlike" "most chantlike" "chantlikely" ;
-lin saintlike_A = mkA "saintlike" "more saintlike" "most saintlike" "saintlikely" ;
-lin parrotlike_A = mkA "parrotlike" "more parrotlike" "most parrotlike" "parrotlikely" ;
-lin priestlike_A = mkA "priestlike" "more priestlike" "most priestlike" "priestlikely" ;
-lin christlike_A = mkA "christlike" "more christlike" "most christlike" "christlikely" ;
-lin dustlike_A = mkA "dustlike" "more dustlike" "most dustlike" "dustlikely" ;
-lin nutlike_A = mkA "nutlike" "more nutlike" "most nutlike" "nutlikely" ;
-lin clawlike_A = mkA "clawlike" "more clawlike" "most clawlike" "clawlikely" ;
-lin boxlike_A = mkA "boxlike" "more boxlike" "most boxlike" "boxlikely" ;
-lin ladylike_A = mkA "ladylike" "more ladylike" "most ladylike" "ladylikely" ;
-lin unladylike_A = mkA "unladylike" "more unladylike" "most unladylike" "unladylikely" ;
-lin honeylike_A = mkA "honeylike" "more honeylike" "most honeylike" "honeylikely" ;
-lin daisylike_A = mkA "daisylike" "more daisylike" "most daisylike" "daisylikely" ;
-lin bespoke_A = mkA "bespoke" "more bespoke" "most bespoke" "bespokely" ;
-lin broke_A = mkA "broke" "more broke" "most broke" "brokely" ;
-lin 'stony-broke_A' = mkA "stony-broke" "more stony-broke" "most stony-broke" "stony-brokely" ;
-lin 'large-scale_A' = mkA "large-scale" "more large-scale" "most large-scale" "large-scalely" ;
-lin 'full-scale_A' = mkA "full-scale" "more full-scale" "most full-scale" "full-scalely" ;
-lin downscale_A = mkA "downscale" "more downscale" "most downscale" "downscalely" ;
-lin upscale_A = mkA "upscale" "more upscale" "most upscale" "upscalely" ;
-lin hale_A = mkA "hale" "more hale" "most hale" "halely" ;
-lin male_A = mkA "male" "more male" "most male" "malely" ;
-lin female_A = mkA "female" "more female" "most female" "femalely" ;
-lin wholesale_A = mkA "wholesale" "more wholesale" "most wholesale" "wholesalely" ;
-lin 'come-at-able_A' = mkA "come-at-able" "more come-at-able" "most come-at-able" "come-at-ably" ;
-lin 'un-come-at-able_A' = mkA "un-come-at-able" "more un-come-at-able" "most un-come-at-able" "un-come-at-ably" ;
-lin 'get-at-able_A' = mkA "get-at-able" "more get-at-able" "most get-at-able" "get-at-ably" ;
-lin 'un-get-at-able_A' = mkA "un-get-at-able" "more un-get-at-able" "most un-get-at-able" "un-get-at-ably" ;
-lin clubbable_A = mkA "clubbable" "more clubbable" "most clubbable" "clubbably" ;
-lin bribable_A = mkA "bribable" "more bribable" "most bribable" "bribably" ;
-lin ascribable_A = mkA "ascribable" "more ascribable" "most ascribable" "ascribably" ;
-lin describable_A = mkA "describable" "more describable" "most describable" "describably" ;
-lin indescribable_A = mkA "indescribable" "more indescribable" "most indescribable" "indescribably" ;
-lin uncombable_A = mkA "uncombable" "more uncombable" "most uncombable" "uncombably" ;
-lin probable_A = mkA "probable" "more probable" "most probable" "probably" ;
-lin equiprobable_A = mkA "equiprobable" "more equiprobable" "most equiprobable" "equiprobably" ;
-lin improbable_A = mkA "improbable" "more improbable" "most improbable" "improbably" ;
-lin absorbable_A = mkA "absorbable" "more absorbable" "most absorbable" "absorbably" ;
-lin adsorbable_A = mkA "adsorbable" "more adsorbable" "most adsorbable" "adsorbably" ;
-lin imperturbable_A = mkA "imperturbable" "more imperturbable" "most imperturbable" "imperturbably" ;
-lin placable_A = mkA "placable" "more placable" "most placable" "placably" ;
-lin implacable_A = mkA "implacable" "more implacable" "most implacable" "implacably" ;
-lin peccable_A = mkA "peccable" "more peccable" "most peccable" "peccably" ;
-lin impeccable_A = mkA "impeccable" "more impeccable" "most impeccable" "impeccably" ;
-lin eradicable_A = mkA "eradicable" "more eradicable" "most eradicable" "eradicably" ;
-lin ineradicable_A = mkA "ineradicable" "more ineradicable" "most ineradicable" "ineradicably" ;
-lin abdicable_A = mkA "abdicable" "more abdicable" "most abdicable" "abdicably" ;
-lin judicable_A = mkA "judicable" "more judicable" "most judicable" "judicably" ;
-lin applicable_A = mkA "applicable" "more applicable" "most applicable" "applicably" ;
-lin inapplicable_A = mkA "inapplicable" "more inapplicable" "most inapplicable" "inapplicably" ;
-lin duplicable_A = mkA "duplicable" "more duplicable" "most duplicable" "duplicably" ;
-lin explicable_A = mkA "explicable" "more explicable" "most explicable" "explicably" ;
-lin inexplicable_A = mkA "inexplicable" "more inexplicable" "most inexplicable" "inexplicably" ;
-lin amicable_A = mkA "amicable" "more amicable" "most amicable" "amicably" ;
-lin communicable_A = mkA "communicable" "more communicable" "most communicable" "communicably" ;
-lin noncommunicable_A = mkA "noncommunicable" "more noncommunicable" "most noncommunicable" "noncommunicably" ;
-lin despicable_A = mkA "despicable" "more despicable" "most despicable" "despicably" ;
-lin extricable_A = mkA "extricable" "more extricable" "most extricable" "extricably" ;
-lin inextricable_A = mkA "inextricable" "more inextricable" "most inextricable" "inextricably" ;
-lin practicable_A = mkA "practicable" "more practicable" "most practicable" "practicably" ;
-lin impracticable_A = mkA "impracticable" "more impracticable" "most impracticable" "impracticably" ;
-lin allocable_A = mkA "allocable" "more allocable" "most allocable" "allocably" ;
-lin revocable_A = mkA "revocable" "more revocable" "most revocable" "revocably" ;
-lin irrevocable_A = mkA "irrevocable" "more irrevocable" "most irrevocable" "irrevocably" ;
-lin readable_A = mkA "readable" "more readable" "most readable" "readably" ;
-lin unreadable_A = mkA "unreadable" "more unreadable" "most unreadable" "unreadably" ;
-lin gradable_A = mkA "gradable" "more gradable" "most gradable" "gradably" ;
-lin biodegradable_A = mkA "biodegradable" "more biodegradable" "most biodegradable" "biodegradably" ;
-lin persuadable_A = mkA "persuadable" "more persuadable" "most persuadable" "persuadably" ;
-lin unpersuadable_A = mkA "unpersuadable" "more unpersuadable" "most unpersuadable" "unpersuadably" ;
-lin addable_A = mkA "addable" "more addable" "most addable" "addably" ;
-lin biddable_A = mkA "biddable" "more biddable" "most biddable" "biddably" ;
-lin formidable_A = mkA "formidable" "more formidable" "most formidable" "formidably" ;
-lin avoidable_A = mkA "avoidable" "more avoidable" "most avoidable" "avoidably" ;
-lin unavoidable_A = mkA "unavoidable" "more unavoidable" "most unavoidable" "unavoidably" ;
-lin dividable_A = mkA "dividable" "more dividable" "most dividable" "dividably" ;
-lin undividable_A = mkA "undividable" "more undividable" "most undividable" "undividably" ;
-lin foldable_A = mkA "foldable" "more foldable" "most foldable" "foldably" ;
-lin expandable_A = mkA "expandable" "more expandable" "most expandable" "expandably" ;
-lin understandable_A = mkA "understandable" "more understandable" "most understandable" "understandably" ;
-lin bendable_A = mkA "bendable" "more bendable" "most bendable" "bendably" ;
-lin ascendable_A = mkA "ascendable" "more ascendable" "most ascendable" "ascendably" ;
-lin defendable_A = mkA "defendable" "more defendable" "most defendable" "defendably" ;
-lin lendable_A = mkA "lendable" "more lendable" "most lendable" "lendably" ;
-lin amendable_A = mkA "amendable" "more amendable" "most amendable" "amendably" ;
-lin commendable_A = mkA "commendable" "more commendable" "most commendable" "commendably" ;
-lin dependable_A = mkA "dependable" "more dependable" "most dependable" "dependably" ;
-lin undependable_A = mkA "undependable" "more undependable" "most undependable" "undependably" ;
-lin expendable_A = mkA "expendable" "more expendable" "most expendable" "expendably" ;
-lin unexpendable_A = mkA "unexpendable" "more unexpendable" "most unexpendable" "unexpendably" ;
-lin bindable_A = mkA "bindable" "more bindable" "most bindable" "bindably" ;
-lin rescindable_A = mkA "rescindable" "more rescindable" "most rescindable" "rescindably" ;
-lin bondable_A = mkA "bondable" "more bondable" "most bondable" "bondably" ;
-lin unsoundable_A = mkA "unsoundable" "more unsoundable" "most unsoundable" "unsoundably" ;
-lin fordable_A = mkA "fordable" "more fordable" "most fordable" "fordably" ;
-lin laudable_A = mkA "laudable" "more laudable" "most laudable" "laudably" ;
-lin applaudable_A = mkA "applaudable" "more applaudable" "most applaudable" "applaudably" ;
-lin peaceable_A = mkA "peaceable" "more peaceable" "most peaceable" "peaceably" ;
-lin unpeaceable_A = mkA "unpeaceable" "more unpeaceable" "most unpeaceable" "unpeaceably" ;
-lin effaceable_A = mkA "effaceable" "more effaceable" "most effaceable" "effaceably" ;
-lin replaceable_A = mkA "replaceable" "more replaceable" "most replaceable" "replaceably" ;
-lin irreplaceable_A = mkA "irreplaceable" "more irreplaceable" "most irreplaceable" "irreplaceably" ;
-lin traceable_A = mkA "traceable" "more traceable" "most traceable" "traceably" ;
-lin untraceable_A = mkA "untraceable" "more untraceable" "most untraceable" "untraceably" ;
-lin fleeceable_A = mkA "fleeceable" "more fleeceable" "most fleeceable" "fleeceably" ;
-lin sacrificeable_A = mkA "sacrificeable" "more sacrificeable" "most sacrificeable" "sacrificeably" ;
-lin noticeable_A = mkA "noticeable" "more noticeable" "most noticeable" "noticeably" ;
-lin unnoticeable_A = mkA "unnoticeable" "more unnoticeable" "most unnoticeable" "unnoticeably" ;
-lin serviceable_A = mkA "serviceable" "more serviceable" "most serviceable" "serviceably" ;
-lin unserviceable_A = mkA "unserviceable" "more unserviceable" "most unserviceable" "unserviceably" ;
-lin danceable_A = mkA "danceable" "more danceable" "most danceable" "danceably" ;
-lin pronounceable_A = mkA "pronounceable" "more pronounceable" "most pronounceable" "pronounceably" ;
-lin unpronounceable_A = mkA "unpronounceable" "more unpronounceable" "most unpronounceable" "unpronounceably" ;
-lin enforceable_A = mkA "enforceable" "more enforceable" "most enforceable" "enforceably" ;
-lin unenforceable_A = mkA "unenforceable" "more unenforceable" "most unenforceable" "unenforceably" ;
-lin agreeable_A = mkA "agreeable" "more agreeable" "most agreeable" "agreeably" ;
-lin disagreeable_A = mkA "disagreeable" "more disagreeable" "most disagreeable" "disagreeably" ;
-lin foreseeable_A = mkA "foreseeable" "more foreseeable" "most foreseeable" "foreseeably" ;
-lin unforeseeable_A = mkA "unforeseeable" "more unforeseeable" "most unforeseeable" "unforeseeably" ;
-lin marriageable_A = mkA "marriageable" "more marriageable" "most marriageable" "marriageably" ;
-lin manageable_A = mkA "manageable" "more manageable" "most manageable" "manageably" ;
-lin unmanageable_A = mkA "unmanageable" "more unmanageable" "most unmanageable" "unmanageably" ;
-lin salvageable_A = mkA "salvageable" "more salvageable" "most salvageable" "salvageably" ;
-lin knowledgeable_A = mkA "knowledgeable" "more knowledgeable" "most knowledgeable" "knowledgeably" ;
-lin acknowledgeable_A = mkA "acknowledgeable" "more acknowledgeable" "most acknowledgeable" "acknowledgeably" ;
-lin bridgeable_A = mkA "bridgeable" "more bridgeable" "most bridgeable" "bridgeably" ;
-lin unbridgeable_A = mkA "unbridgeable" "more unbridgeable" "most unbridgeable" "unbridgeably" ;
-lin changeable_A = mkA "changeable" "more changeable" "most changeable" "changeably" ;
-lin unchangeable_A = mkA "unchangeable" "more unchangeable" "most unchangeable" "unchangeably" ;
-lin interchangeable_A = mkA "interchangeable" "more interchangeable" "most interchangeable" "interchangeably" ;
-lin noninterchangeable_A = mkA "noninterchangeable" "more noninterchangeable" "most noninterchangeable" "noninterchangeably" ;
-lin exchangeable_A = mkA "exchangeable" "more exchangeable" "most exchangeable" "exchangeably" ;
-lin unexchangeable_A = mkA "unexchangeable" "more unexchangeable" "most unexchangeable" "unexchangeably" ;
-lin challengeable_A = mkA "challengeable" "more challengeable" "most challengeable" "challengeably" ;
-lin unchallengeable_A = mkA "unchallengeable" "more unchallengeable" "most unchallengeable" "unchallengeably" ;
-lin chargeable_A = mkA "chargeable" "more chargeable" "most chargeable" "chargeably" ;
-lin rechargeable_A = mkA "rechargeable" "more rechargeable" "most rechargeable" "rechargeably" ;
-lin likeable_A = mkA "likeable" "more likeable" "most likeable" "likeably" ;
-lin saleable_A = mkA "saleable" "more saleable" "most saleable" "saleably" ;
-lin unsaleable_A = mkA "unsaleable" "more unsaleable" "most unsaleable" "unsaleably" ;
-lin malleable_A = mkA "malleable" "more malleable" "most malleable" "malleably" ;
-lin unmalleable_A = mkA "unmalleable" "more unmalleable" "most unmalleable" "unmalleably" ;
-lin permeable_A = mkA "permeable" "more permeable" "most permeable" "permeably" ;
-lin semipermeable_A = mkA "semipermeable" "more semipermeable" "most semipermeable" "semipermeably" ;
-lin impermeable_A = mkA "impermeable" "more impermeable" "most impermeable" "impermeably" ;
-lin fineable_A = mkA "fineable" "more fineable" "most fineable" "fineably" ;
-lin useable_A = mkA "useable" "more useable" "most useable" "useably" ;
-lin rateable_A = mkA "rateable" "more rateable" "most rateable" "rateably" ;
-lin liveable_A = mkA "liveable" "more liveable" "most liveable" "liveably" ;
-lin sizeable_A = mkA "sizeable" "more sizeable" "most sizeable" "sizeably" ;
-lin affable_A = mkA "affable" "more affable" "most affable" "affably" ;
-lin ineffable_A = mkA "ineffable" "more ineffable" "most ineffable" "ineffably" ;
-lin indefatigable_A = mkA "indefatigable" "more indefatigable" "most indefatigable" "indefatigably" ;
-lin mitigable_A = mkA "mitigable" "more mitigable" "most mitigable" "mitigably" ;
-lin unmitigable_A = mkA "unmitigable" "more unmitigable" "most unmitigable" "unmitigably" ;
-lin navigable_A = mkA "navigable" "more navigable" "most navigable" "navigably" ;
-lin unnavigable_A = mkA "unnavigable" "more unnavigable" "most unnavigable" "unnavigably" ;
-lin singable_A = mkA "singable" "more singable" "most singable" "singably" ;
-lin unimpeachable_A = mkA "unimpeachable" "more unimpeachable" "most unimpeachable" "unimpeachably" ;
-lin teachable_A = mkA "teachable" "more teachable" "most teachable" "teachably" ;
-lin irreproachable_A = mkA "irreproachable" "more irreproachable" "most irreproachable" "irreproachably" ;
-lin approachable_A = mkA "approachable" "more approachable" "most approachable" "approachably" ;
-lin unapproachable_A = mkA "unapproachable" "more unapproachable" "most unapproachable" "unapproachably" ;
-lin detachable_A = mkA "detachable" "more detachable" "most detachable" "detachably" ;
-lin attachable_A = mkA "attachable" "more attachable" "most attachable" "attachably" ;
-lin unmatchable_A = mkA "unmatchable" "more unmatchable" "most unmatchable" "unmatchably" ;
-lin stretchable_A = mkA "stretchable" "more stretchable" "most stretchable" "stretchably" ;
-lin touchable_A = mkA "touchable" "more touchable" "most touchable" "touchably" ;
-lin untouchable_A = mkA "untouchable" "more untouchable" "most untouchable" "untouchably" ;
-lin laughable_A = mkA "laughable" "more laughable" "most laughable" "laughably" ;
-lin cashable_A = mkA "cashable" "more cashable" "most cashable" "cashably" ;
-lin washable_A = mkA "washable" "more washable" "most washable" "washably" ;
-lin nonwashable_A = mkA "nonwashable" "more nonwashable" "most nonwashable" "nonwashably" ;
-lin publishable_A = mkA "publishable" "more publishable" "most publishable" "publishably" ;
-lin unpublishable_A = mkA "unpublishable" "more unpublishable" "most unpublishable" "unpublishably" ;
-lin abolishable_A = mkA "abolishable" "more abolishable" "most abolishable" "abolishably" ;
-lin accomplishable_A = mkA "accomplishable" "more accomplishable" "most accomplishable" "accomplishably" ;
-lin punishable_A = mkA "punishable" "more punishable" "most punishable" "punishably" ;
-lin perishable_A = mkA "perishable" "more perishable" "most perishable" "perishably" ;
-lin imperishable_A = mkA "imperishable" "more imperishable" "most imperishable" "imperishably" ;
-lin distinguishable_A = mkA "distinguishable" "more distinguishable" "most distinguishable" "distinguishably" ;
-lin indistinguishable_A = mkA "indistinguishable" "more indistinguishable" "most indistinguishable" "indistinguishably" ;
-lin undistinguishable_A = mkA "undistinguishable" "more undistinguishable" "most undistinguishable" "undistinguishably" ;
-lin extinguishable_A = mkA "extinguishable" "more extinguishable" "most extinguishable" "extinguishably" ;
-lin inextinguishable_A = mkA "inextinguishable" "more inextinguishable" "most inextinguishable" "inextinguishably" ;
-lin appreciable_A = mkA "appreciable" "more appreciable" "most appreciable" "appreciably" ;
-lin inappreciable_A = mkA "inappreciable" "more inappreciable" "most inappreciable" "inappreciably" ;
-lin sociable_A = mkA "sociable" "more sociable" "most sociable" "sociably" ;
-lin unsociable_A = mkA "unsociable" "more unsociable" "most unsociable" "unsociably" ;
-lin associable_A = mkA "associable" "more associable" "most associable" "associably" ;
-lin dissociable_A = mkA "dissociable" "more dissociable" "most dissociable" "dissociably" ;
-lin amerciable_A = mkA "amerciable" "more amerciable" "most amerciable" "amerciably" ;
-lin remediable_A = mkA "remediable" "more remediable" "most remediable" "remediably" ;
-lin irremediable_A = mkA "irremediable" "more irremediable" "most irremediable" "irremediably" ;
-lin liquefiable_A = mkA "liquefiable" "more liquefiable" "most liquefiable" "liquefiably" ;
-lin specifiable_A = mkA "specifiable" "more specifiable" "most specifiable" "specifiably" ;
-lin modifiable_A = mkA "modifiable" "more modifiable" "most modifiable" "modifiably" ;
-lin unmodifiable_A = mkA "unmodifiable" "more unmodifiable" "most unmodifiable" "unmodifiably" ;
-lin verifiable_A = mkA "verifiable" "more verifiable" "most verifiable" "verifiably" ;
-lin classifiable_A = mkA "classifiable" "more classifiable" "most classifiable" "classifiably" ;
-lin unclassifiable_A = mkA "unclassifiable" "more unclassifiable" "most unclassifiable" "unclassifiably" ;
-lin quantifiable_A = mkA "quantifiable" "more quantifiable" "most quantifiable" "quantifiably" ;
-lin identifiable_A = mkA "identifiable" "more identifiable" "most identifiable" "identifiably" ;
-lin unidentifiable_A = mkA "unidentifiable" "more unidentifiable" "most unidentifiable" "unidentifiably" ;
-lin notifiable_A = mkA "notifiable" "more notifiable" "most notifiable" "notifiably" ;
-lin certifiable_A = mkA "certifiable" "more certifiable" "most certifiable" "certifiably" ;
-lin justifiable_A = mkA "justifiable" "more justifiable" "most justifiable" "justifiably" ;
-lin unjustifiable_A = mkA "unjustifiable" "more unjustifiable" "most unjustifiable" "unjustifiably" ;
-lin unsatisfiable_A = mkA "unsatisfiable" "more unsatisfiable" "most unsatisfiable" "unsatisfiably" ;
-lin liable_A = mkA "liable" "more liable" "most liable" "liably" ;
-lin reliable_A = mkA "reliable" "more reliable" "most reliable" "reliably" ;
-lin unreliable_A = mkA "unreliable" "more unreliable" "most unreliable" "unreliably" ;
-lin pliable_A = mkA "pliable" "more pliable" "most pliable" "pliably" ;
-lin amiable_A = mkA "amiable" "more amiable" "most amiable" "amiably" ;
-lin deniable_A = mkA "deniable" "more deniable" "most deniable" "deniably" ;
-lin undeniable_A = mkA "undeniable" "more undeniable" "most undeniable" "undeniably" ;
-lin expiable_A = mkA "expiable" "more expiable" "most expiable" "expiably" ;
-lin inexpiable_A = mkA "inexpiable" "more inexpiable" "most inexpiable" "inexpiably" ;
-lin variable_A = mkA "variable" "more variable" "most variable" "variably" ;
-lin invariable_A = mkA "invariable" "more invariable" "most invariable" "invariably" ;
-lin friable_A = mkA "friable" "more friable" "most friable" "friably" ;
-lin appropriable_A = mkA "appropriable" "more appropriable" "most appropriable" "appropriably" ;
-lin satiable_A = mkA "satiable" "more satiable" "most satiable" "satiably" ;
-lin insatiable_A = mkA "insatiable" "more insatiable" "most insatiable" "insatiably" ;
-lin pitiable_A = mkA "pitiable" "more pitiable" "most pitiable" "pitiably" ;
-lin differentiable_A = mkA "differentiable" "more differentiable" "most differentiable" "differentiably" ;
-lin negotiable_A = mkA "negotiable" "more negotiable" "most negotiable" "negotiably" ;
-lin dutiable_A = mkA "dutiable" "more dutiable" "most dutiable" "dutiably" ;
-lin viable_A = mkA "viable" "more viable" "most viable" "viably" ;
-lin enviable_A = mkA "enviable" "more enviable" "most enviable" "enviably" ;
-lin unenviable_A = mkA "unenviable" "more unenviable" "most unenviable" "unenviably" ;
-lin nonviable_A = mkA "nonviable" "more nonviable" "most nonviable" "nonviably" ;
-lin speakable_A = mkA "speakable" "more speakable" "most speakable" "speakably" ;
-lin unspeakable_A = mkA "unspeakable" "more unspeakable" "most unspeakable" "unspeakably" ;
-lin breakable_A = mkA "breakable" "more breakable" "most breakable" "breakably" ;
-lin unbreakable_A = mkA "unbreakable" "more unbreakable" "most unbreakable" "unbreakably" ;
-lin shakable_A = mkA "shakable" "more shakable" "most shakable" "shakably" ;
-lin unshakable_A = mkA "unshakable" "more unshakable" "most unshakable" "unshakably" ;
-lin unmistakable_A = mkA "unmistakable" "more unmistakable" "most unmistakable" "unmistakably" ;
-lin packable_A = mkA "packable" "more packable" "most packable" "packably" ;
-lin uncheckable_A = mkA "uncheckable" "more uncheckable" "most uncheckable" "uncheckably" ;
-lin shockable_A = mkA "shockable" "more shockable" "most shockable" "shockably" ;
-lin unshockable_A = mkA "unshockable" "more unshockable" "most unshockable" "unshockably" ;
-lin likable_A = mkA "likable" "more likable" "most likable" "likably" ;
-lin unlikable_A = mkA "unlikable" "more unlikable" "most unlikable" "unlikably" ;
-lin dislikable_A = mkA "dislikable" "more dislikable" "most dislikable" "dislikably" ;
-lin bankable_A = mkA "bankable" "more bankable" "most bankable" "bankably" ;
-lin thinkable_A = mkA "thinkable" "more thinkable" "most thinkable" "thinkably" ;
-lin unthinkable_A = mkA "unthinkable" "more unthinkable" "most unthinkable" "unthinkably" ;
-lin drinkable_A = mkA "drinkable" "more drinkable" "most drinkable" "drinkably" ;
-lin undrinkable_A = mkA "undrinkable" "more undrinkable" "most undrinkable" "undrinkably" ;
-lin shrinkable_A = mkA "shrinkable" "more shrinkable" "most shrinkable" "shrinkably" ;
-lin unshrinkable_A = mkA "unshrinkable" "more unshrinkable" "most unshrinkable" "unshrinkably" ;
-lin sinkable_A = mkA "sinkable" "more sinkable" "most sinkable" "sinkably" ;
-lin unsinkable_A = mkA "unsinkable" "more unsinkable" "most unsinkable" "unsinkably" ;
-lin bookable_A = mkA "bookable" "more bookable" "most bookable" "bookably" ;
-lin remarkable_A = mkA "remarkable" "more remarkable" "most remarkable" "remarkably" ;
-lin unremarkable_A = mkA "unremarkable" "more unremarkable" "most unremarkable" "unremarkably" ;
-lin workable_A = mkA "workable" "more workable" "most workable" "workably" ;
-lin unworkable_A = mkA "unworkable" "more unworkable" "most unworkable" "unworkably" ;
-lin scalable_A = mkA "scalable" "more scalable" "most scalable" "scalably" ;
-lin unscalable_A = mkA "unscalable" "more unscalable" "most unscalable" "unscalably" ;
-lin appealable_A = mkA "appealable" "more appealable" "most appealable" "appealably" ;
-lin unappealable_A = mkA "unappealable" "more unappealable" "most unappealable" "unappealably" ;
-lin salable_A = mkA "salable" "more salable" "most salable" "salably" ;
-lin unsalable_A = mkA "unsalable" "more unsalable" "most unsalable" "unsalably" ;
-lin bailable_A = mkA "bailable" "more bailable" "most bailable" "bailably" ;
-lin assailable_A = mkA "assailable" "more assailable" "most assailable" "assailably" ;
-lin unassailable_A = mkA "unassailable" "more unassailable" "most unassailable" "unassailably" ;
-lin available_A = mkA "available" "more available" "most available" "availably" ;
-lin unavailable_A = mkA "unavailable" "more unavailable" "most unavailable" "unavailably" ;
-lin reconcilable_A = mkA "reconcilable" "more reconcilable" "most reconcilable" "reconcilably" ;
-lin irreconcilable_A = mkA "irreconcilable" "more irreconcilable" "most irreconcilable" "irreconcilably" ;
-lin assimilable_A = mkA "assimilable" "more assimilable" "most assimilable" "assimilably" ;
-lin callable_A = mkA "callable" "more callable" "most callable" "callably" ;
-lin killable_A = mkA "killable" "more killable" "most killable" "killably" ;
-lin controllable_A = mkA "controllable" "more controllable" "most controllable" "controllably" ;
-lin uncontrollable_A = mkA "uncontrollable" "more uncontrollable" "most uncontrollable" "uncontrollably" ;
-lin violable_A = mkA "violable" "more violable" "most violable" "violably" ;
-lin inviolable_A = mkA "inviolable" "more inviolable" "most inviolable" "inviolably" ;
-lin isolable_A = mkA "isolable" "more isolable" "most isolable" "isolably" ;
-lin consolable_A = mkA "consolable" "more consolable" "most consolable" "consolably" ;
-lin inconsolable_A = mkA "inconsolable" "more inconsolable" "most inconsolable" "inconsolably" ;
-lin calculable_A = mkA "calculable" "more calculable" "most calculable" "calculably" ;
-lin incalculable_A = mkA "incalculable" "more incalculable" "most incalculable" "incalculably" ;
-lin coagulable_A = mkA "coagulable" "more coagulable" "most coagulable" "coagulably" ;
-lin tamable_A = mkA "tamable" "more tamable" "most tamable" "tamably" ;
-lin redeemable_A = mkA "redeemable" "more redeemable" "most redeemable" "redeemably" ;
-lin unredeemable_A = mkA "unredeemable" "more unredeemable" "most unredeemable" "unredeemably" ;
-lin irredeemable_A = mkA "irredeemable" "more irredeemable" "most irredeemable" "irredeemably" ;
-lin reclaimable_A = mkA "reclaimable" "more reclaimable" "most reclaimable" "reclaimably" ;
-lin irreclaimable_A = mkA "irreclaimable" "more irreclaimable" "most irreclaimable" "irreclaimably" ;
-lin estimable_A = mkA "estimable" "more estimable" "most estimable" "estimably" ;
-lin inestimable_A = mkA "inestimable" "more inestimable" "most inestimable" "inestimably" ;
-lin filmable_A = mkA "filmable" "more filmable" "most filmable" "filmably" ;
-lin flammable_A = mkA "flammable" "more flammable" "most flammable" "flammably" ;
-lin inflammable_A = mkA "inflammable" "more inflammable" "most inflammable" "inflammably" ;
-lin nonflammable_A = mkA "nonflammable" "more nonflammable" "most nonflammable" "nonflammably" ;
-lin fathomable_A = mkA "fathomable" "more fathomable" "most fathomable" "fathomably" ;
-lin unfathomable_A = mkA "unfathomable" "more unfathomable" "most unfathomable" "unfathomably" ;
-lin affirmable_A = mkA "affirmable" "more affirmable" "most affirmable" "affirmably" ;
-lin confirmable_A = mkA "confirmable" "more confirmable" "most confirmable" "confirmably" ;
-lin unreformable_A = mkA "unreformable" "more unreformable" "most unreformable" "unreformably" ;
-lin conformable_A = mkA "conformable" "more conformable" "most conformable" "conformably" ;
-lin unconformable_A = mkA "unconformable" "more unconformable" "most unconformable" "unconformably" ;
-lin transformable_A = mkA "transformable" "more transformable" "most transformable" "transformably" ;
-lin presumable_A = mkA "presumable" "more presumable" "most presumable" "presumably" ;
-lin consumable_A = mkA "consumable" "more consumable" "most consumable" "consumably" ;
-lin cleanable_A = mkA "cleanable" "more cleanable" "most cleanable" "cleanably" ;
-lin alienable_A = mkA "alienable" "more alienable" "most alienable" "alienably" ;
-lin inalienable_A = mkA "inalienable" "more inalienable" "most inalienable" "inalienably" ;
-lin unalienable_A = mkA "unalienable" "more unalienable" "most unalienable" "unalienably" ;
-lin amenable_A = mkA "amenable" "more amenable" "most amenable" "amenably" ;
-lin tenable_A = mkA "tenable" "more tenable" "most tenable" "tenably" ;
-lin untenable_A = mkA "untenable" "more untenable" "most untenable" "untenably" ;
-lin impregnable_A = mkA "impregnable" "more impregnable" "most impregnable" "impregnably" ;
-lin assignable_A = mkA "assignable" "more assignable" "most assignable" "assignably" ;
-lin impugnable_A = mkA "impugnable" "more impugnable" "most impugnable" "impugnably" ;
-lin explainable_A = mkA "explainable" "more explainable" "most explainable" "explainably" ;
-lin obtainable_A = mkA "obtainable" "more obtainable" "most obtainable" "obtainably" ;
-lin unobtainable_A = mkA "unobtainable" "more unobtainable" "most unobtainable" "unobtainably" ;
-lin maintainable_A = mkA "maintainable" "more maintainable" "most maintainable" "maintainably" ;
-lin ascertainable_A = mkA "ascertainable" "more ascertainable" "most ascertainable" "ascertainably" ;
-lin unascertainable_A = mkA "unascertainable" "more unascertainable" "most unascertainable" "unascertainably" ;
-lin stainable_A = mkA "stainable" "more stainable" "most stainable" "stainably" ;
-lin sustainable_A = mkA "sustainable" "more sustainable" "most sustainable" "sustainably" ;
-lin attainable_A = mkA "attainable" "more attainable" "most attainable" "attainably" ;
-lin unattainable_A = mkA "unattainable" "more unattainable" "most unattainable" "unattainably" ;
-lin combinable_A = mkA "combinable" "more combinable" "most combinable" "combinably" ;
-lin finable_A = mkA "finable" "more finable" "most finable" "finably" ;
-lin definable_A = mkA "definable" "more definable" "most definable" "definably" ;
-lin indefinable_A = mkA "indefinable" "more indefinable" "most indefinable" "indefinably" ;
-lin undefinable_A = mkA "undefinable" "more undefinable" "most undefinable" "undefinably" ;
-lin imaginable_A = mkA "imaginable" "more imaginable" "most imaginable" "imaginably" ;
-lin unimaginable_A = mkA "unimaginable" "more unimaginable" "most unimaginable" "unimaginably" ;
-lin discriminable_A = mkA "discriminable" "more discriminable" "most discriminable" "discriminably" ;
-lin abominable_A = mkA "abominable" "more abominable" "most abominable" "abominably" ;
-lin terminable_A = mkA "terminable" "more terminable" "most terminable" "terminably" ;
-lin determinable_A = mkA "determinable" "more determinable" "most determinable" "determinably" ;
-lin indeterminable_A = mkA "indeterminable" "more indeterminable" "most indeterminable" "indeterminably" ;
-lin interminable_A = mkA "interminable" "more interminable" "most interminable" "interminably" ;
-lin exterminable_A = mkA "exterminable" "more exterminable" "most exterminable" "exterminably" ;
-lin inexterminable_A = mkA "inexterminable" "more inexterminable" "most inexterminable" "inexterminably" ;
-lin damnable_A = mkA "damnable" "more damnable" "most damnable" "damnably" ;
-lin condemnable_A = mkA "condemnable" "more condemnable" "most condemnable" "condemnably" ;
-lin spinnable_A = mkA "spinnable" "more spinnable" "most spinnable" "spinnably" ;
-lin pardonable_A = mkA "pardonable" "more pardonable" "most pardonable" "pardonably" ;
-lin unpardonable_A = mkA "unpardonable" "more unpardonable" "most unpardonable" "unpardonably" ;
-lin conscionable_A = mkA "conscionable" "more conscionable" "most conscionable" "conscionably" ;
-lin unconscionable_A = mkA "unconscionable" "more unconscionable" "most unconscionable" "unconscionably" ;
-lin fashionable_A = mkA "fashionable" "more fashionable" "most fashionable" "fashionably" ;
-lin unfashionable_A = mkA "unfashionable" "more unfashionable" "most unfashionable" "unfashionably" ;
-lin companionable_A = mkA "companionable" "more companionable" "most companionable" "companionably" ;
-lin pensionable_A = mkA "pensionable" "more pensionable" "most pensionable" "pensionably" ;
-lin impressionable_A = mkA "impressionable" "more impressionable" "most impressionable" "impressionably" ;
-lin unimpressionable_A = mkA "unimpressionable" "more unimpressionable" "most unimpressionable" "unimpressionably" ;
-lin fissionable_A = mkA "fissionable" "more fissionable" "most fissionable" "fissionably" ;
-lin nonfissionable_A = mkA "nonfissionable" "more nonfissionable" "most nonfissionable" "nonfissionably" ;
-lin actionable_A = mkA "actionable" "more actionable" "most actionable" "actionably" ;
-lin objectionable_A = mkA "objectionable" "more objectionable" "most objectionable" "objectionably" ;
-lin unobjectionable_A = mkA "unobjectionable" "more unobjectionable" "most unobjectionable" "unobjectionably" ;
-lin positionable_A = mkA "positionable" "more positionable" "most positionable" "positionably" ;
-lin unmentionable_A = mkA "unmentionable" "more unmentionable" "most unmentionable" "unmentionably" ;
-lin exceptionable_A = mkA "exceptionable" "more exceptionable" "most exceptionable" "exceptionably" ;
-lin unexceptionable_A = mkA "unexceptionable" "more unexceptionable" "most unexceptionable" "unexceptionably" ;
-lin proportionable_A = mkA "proportionable" "more proportionable" "most proportionable" "proportionably" ;
-lin questionable_A = mkA "questionable" "more questionable" "most questionable" "questionably" ;
-lin unquestionable_A = mkA "unquestionable" "more unquestionable" "most unquestionable" "unquestionably" ;
-lin reasonable_A = mkA "reasonable" "more reasonable" "most reasonable" "reasonably" ;
-lin unreasonable_A = mkA "unreasonable" "more unreasonable" "most unreasonable" "unreasonably" ;
-lin treasonable_A = mkA "treasonable" "more treasonable" "most treasonable" "treasonably" ;
-lin seasonable_A = mkA "seasonable" "more seasonable" "most seasonable" "seasonably" ;
-lin unseasonable_A = mkA "unseasonable" "more unseasonable" "most unseasonable" "unseasonably" ;
-lin personable_A = mkA "personable" "more personable" "most personable" "personably" ;
-lin ungovernable_A = mkA "ungovernable" "more ungovernable" "most ungovernable" "ungovernably" ;
-lin burnable_A = mkA "burnable" "more burnable" "most burnable" "burnably" ;
-lin returnable_A = mkA "returnable" "more returnable" "most returnable" "returnably" ;
-lin nonreturnable_A = mkA "nonreturnable" "more nonreturnable" "most nonreturnable" "nonreturnably" ;
-lin unable_A = mkA "unable" "more unable" "most unable" "unably" ;
-lin putdownable_A = mkA "putdownable" "more putdownable" "most putdownable" "putdownably" ;
-lin unputdownable_A = mkA "unputdownable" "more unputdownable" "most unputdownable" "unputdownably" ;
-lin capable_A = mkA "capable" "more capable" "most capable" "capably" ;
-lin incapable_A = mkA "incapable" "more incapable" "most incapable" "incapably" ;
-lin inescapable_A = mkA "inescapable" "more inescapable" "most inescapable" "inescapably" ;
-lin palpable_A = mkA "palpable" "more palpable" "most palpable" "palpably" ;
-lin impalpable_A = mkA "impalpable" "more impalpable" "most impalpable" "impalpably" ;
-lin culpable_A = mkA "culpable" "more culpable" "most culpable" "culpably" ;
-lin unflappable_A = mkA "unflappable" "more unflappable" "most unflappable" "unflappably" ;
-lin stoppable_A = mkA "stoppable" "more stoppable" "most stoppable" "stoppably" ;
-lin unstoppable_A = mkA "unstoppable" "more unstoppable" "most unstoppable" "unstoppably" ;
-lin arable_A = mkA "arable" "more arable" "most arable" "arably" ;
-lin bearable_A = mkA "bearable" "more bearable" "most bearable" "bearably" ;
-lin unbearable_A = mkA "unbearable" "more unbearable" "most unbearable" "unbearably" ;
-lin wearable_A = mkA "wearable" "more wearable" "most wearable" "wearably" ;
-lin unwearable_A = mkA "unwearable" "more unwearable" "most unwearable" "unwearably" ;
-lin declarable_A = mkA "declarable" "more declarable" "most declarable" "declarably" ;
-lin reparable_A = mkA "reparable" "more reparable" "most reparable" "reparably" ;
-lin irreparable_A = mkA "irreparable" "more irreparable" "most irreparable" "irreparably" ;
-lin separable_A = mkA "separable" "more separable" "most separable" "separably" ;
-lin inseparable_A = mkA "inseparable" "more inseparable" "most inseparable" "inseparably" ;
-lin comparable_A = mkA "comparable" "more comparable" "most comparable" "comparably" ;
-lin incomparable_A = mkA "incomparable" "more incomparable" "most incomparable" "incomparably" ;
-lin execrable_A = mkA "execrable" "more execrable" "most execrable" "execrably" ;
-lin considerable_A = mkA "considerable" "more considerable" "most considerable" "considerably" ;
-lin inconsiderable_A = mkA "inconsiderable" "more inconsiderable" "most inconsiderable" "inconsiderably" ;
-lin ponderable_A = mkA "ponderable" "more ponderable" "most ponderable" "ponderably" ;
-lin imponderable_A = mkA "imponderable" "more imponderable" "most imponderable" "imponderably" ;
-lin steerable_A = mkA "steerable" "more steerable" "most steerable" "steerably" ;
-lin referable_A = mkA "referable" "more referable" "most referable" "referably" ;
-lin preferable_A = mkA "preferable" "more preferable" "most preferable" "preferably" ;
-lin sufferable_A = mkA "sufferable" "more sufferable" "most sufferable" "sufferably" ;
-lin insufferable_A = mkA "insufferable" "more insufferable" "most insufferable" "insufferably" ;
-lin transferable_A = mkA "transferable" "more transferable" "most transferable" "transferably" ;
-lin nontransferable_A = mkA "nontransferable" "more nontransferable" "most nontransferable" "nontransferably" ;
-lin decipherable_A = mkA "decipherable" "more decipherable" "most decipherable" "decipherably" ;
-lin indecipherable_A = mkA "indecipherable" "more indecipherable" "most indecipherable" "indecipherably" ;
-lin tolerable_A = mkA "tolerable" "more tolerable" "most tolerable" "tolerably" ;
-lin intolerable_A = mkA "intolerable" "more intolerable" "most intolerable" "intolerably" ;
-lin numerable_A = mkA "numerable" "more numerable" "most numerable" "numerably" ;
-lin innumerable_A = mkA "innumerable" "more innumerable" "most innumerable" "innumerably" ;
-lin venerable_A = mkA "venerable" "more venerable" "most venerable" "venerably" ;
-lin vulnerable_A = mkA "vulnerable" "more vulnerable" "most vulnerable" "vulnerably" ;
-lin invulnerable_A = mkA "invulnerable" "more invulnerable" "most invulnerable" "invulnerably" ;
-lin operable_A = mkA "operable" "more operable" "most operable" "operably" ;
-lin inoperable_A = mkA "inoperable" "more inoperable" "most inoperable" "inoperably" ;
-lin interoperable_A = mkA "interoperable" "more interoperable" "most interoperable" "interoperably" ;
-lin insuperable_A = mkA "insuperable" "more insuperable" "most insuperable" "insuperably" ;
-lin miserable_A = mkA "miserable" "more miserable" "most miserable" "miserably" ;
-lin obliterable_A = mkA "obliterable" "more obliterable" "most obliterable" "obliterably" ;
-lin alterable_A = mkA "alterable" "more alterable" "most alterable" "alterably" ;
-lin unalterable_A = mkA "unalterable" "more unalterable" "most unalterable" "unalterably" ;
-lin unutterable_A = mkA "unutterable" "more unutterable" "most unutterable" "unutterably" ;
-lin conquerable_A = mkA "conquerable" "more conquerable" "most conquerable" "conquerably" ;
-lin unconquerable_A = mkA "unconquerable" "more unconquerable" "most unconquerable" "unconquerably" ;
-lin deliverable_A = mkA "deliverable" "more deliverable" "most deliverable" "deliverably" ;
-lin recoverable_A = mkA "recoverable" "more recoverable" "most recoverable" "recoverably" ;
-lin unrecoverable_A = mkA "unrecoverable" "more unrecoverable" "most unrecoverable" "unrecoverably" ;
-lin irrecoverable_A = mkA "irrecoverable" "more irrecoverable" "most irrecoverable" "irrecoverably" ;
-lin maneuverable_A = mkA "maneuverable" "more maneuverable" "most maneuverable" "maneuverably" ;
-lin answerable_A = mkA "answerable" "more answerable" "most answerable" "answerably" ;
-lin unanswerable_A = mkA "unanswerable" "more unanswerable" "most unanswerable" "unanswerably" ;
-lin repairable_A = mkA "repairable" "more repairable" "most repairable" "repairably" ;
-lin admirable_A = mkA "admirable" "more admirable" "most admirable" "admirably" ;
-lin desirable_A = mkA "desirable" "more desirable" "most desirable" "desirably" ;
-lin undesirable_A = mkA "undesirable" "more undesirable" "most undesirable" "undesirably" ;
-lin acquirable_A = mkA "acquirable" "more acquirable" "most acquirable" "acquirably" ;
-lin adorable_A = mkA "adorable" "more adorable" "most adorable" "adorably" ;
-lin deplorable_A = mkA "deplorable" "more deplorable" "most deplorable" "deplorably" ;
-lin memorable_A = mkA "memorable" "more memorable" "most memorable" "memorably" ;
-lin unmemorable_A = mkA "unmemorable" "more unmemorable" "most unmemorable" "unmemorably" ;
-lin honorable_A = mkA "honorable" "more honorable" "most honorable" "honorably" ;
-lin dishonorable_A = mkA "dishonorable" "more dishonorable" "most dishonorable" "dishonorably" ;
-lin evaporable_A = mkA "evaporable" "more evaporable" "most evaporable" "evaporably" ;
-lin favorable_A = mkA "favorable" "more favorable" "most favorable" "favorably" ;
-lin unfavorable_A = mkA "unfavorable" "more unfavorable" "most unfavorable" "unfavorably" ;
-lin inexorable_A = mkA "inexorable" "more inexorable" "most inexorable" "inexorably" ;
-lin inerrable_A = mkA "inerrable" "more inerrable" "most inerrable" "inerrably" ;
-lin penetrable_A = mkA "penetrable" "more penetrable" "most penetrable" "penetrably" ;
-lin impenetrable_A = mkA "impenetrable" "more impenetrable" "most impenetrable" "impenetrably" ;
-lin arbitrable_A = mkA "arbitrable" "more arbitrable" "most arbitrable" "arbitrably" ;
-lin nonarbitrable_A = mkA "nonarbitrable" "more nonarbitrable" "most nonarbitrable" "nonarbitrably" ;
-lin administrable_A = mkA "administrable" "more administrable" "most administrable" "administrably" ;
-lin demonstrable_A = mkA "demonstrable" "more demonstrable" "most demonstrable" "demonstrably" ;
-lin curable_A = mkA "curable" "more curable" "most curable" "curably" ;
-lin incurable_A = mkA "incurable" "more incurable" "most incurable" "incurably" ;
-lin procurable_A = mkA "procurable" "more procurable" "most procurable" "procurably" ;
-lin durable_A = mkA "durable" "more durable" "most durable" "durably" ;
-lin endurable_A = mkA "endurable" "more endurable" "most endurable" "endurably" ;
-lin unendurable_A = mkA "unendurable" "more unendurable" "most unendurable" "unendurably" ;
-lin honourable_A = mkA "honourable" "more honourable" "most honourable" "honourably" ;
-lin dishonourable_A = mkA "dishonourable" "more dishonourable" "most dishonourable" "dishonourably" ;
-lin favourable_A = mkA "favourable" "more favourable" "most favourable" "favourably" ;
-lin unfavourable_A = mkA "unfavourable" "more unfavourable" "most unfavourable" "unfavourably" ;
-lin pleasurable_A = mkA "pleasurable" "more pleasurable" "most pleasurable" "pleasurably" ;
-lin measurable_A = mkA "measurable" "more measurable" "most measurable" "measurably" ;
-lin immeasurable_A = mkA "immeasurable" "more immeasurable" "most immeasurable" "immeasurably" ;
-lin mensurable_A = mkA "mensurable" "more mensurable" "most mensurable" "mensurably" ;
-lin commensurable_A = mkA "commensurable" "more commensurable" "most commensurable" "commensurably" ;
-lin incommensurable_A = mkA "incommensurable" "more incommensurable" "most incommensurable" "incommensurably" ;
-lin insurable_A = mkA "insurable" "more insurable" "most insurable" "insurably" ;
-lin uninsurable_A = mkA "uninsurable" "more uninsurable" "most uninsurable" "uninsurably" ;
-lin puncturable_A = mkA "puncturable" "more puncturable" "most puncturable" "puncturably" ;
-lin manoeuvrable_A = mkA "manoeuvrable" "more manoeuvrable" "most manoeuvrable" "manoeuvrably" ;
-lin sable_A = mkA "sable" "more sable" "most sable" "sably" ;
-lin appeasable_A = mkA "appeasable" "more appeasable" "most appeasable" "appeasably" ;
-lin purchasable_A = mkA "purchasable" "more purchasable" "most purchasable" "purchasably" ;
-lin raisable_A = mkA "raisable" "more raisable" "most raisable" "raisably" ;
-lin advisable_A = mkA "advisable" "more advisable" "most advisable" "advisably" ;
-lin inadvisable_A = mkA "inadvisable" "more inadvisable" "most inadvisable" "inadvisably" ;
-lin compensable_A = mkA "compensable" "more compensable" "most compensable" "compensably" ;
-lin dispensable_A = mkA "dispensable" "more dispensable" "most dispensable" "dispensably" ;
-lin indispensable_A = mkA "indispensable" "more indispensable" "most indispensable" "indispensably" ;
-lin diagnosable_A = mkA "diagnosable" "more diagnosable" "most diagnosable" "diagnosably" ;
-lin undiagnosable_A = mkA "undiagnosable" "more undiagnosable" "most undiagnosable" "undiagnosably" ;
-lin opposable_A = mkA "opposable" "more opposable" "most opposable" "opposably" ;
-lin unopposable_A = mkA "unopposable" "more unopposable" "most unopposable" "unopposably" ;
-lin disposable_A = mkA "disposable" "more disposable" "most disposable" "disposably" ;
-lin nondisposable_A = mkA "nondisposable" "more nondisposable" "most nondisposable" "nondisposably" ;
-lin transposable_A = mkA "transposable" "more transposable" "most transposable" "transposably" ;
-lin collapsable_A = mkA "collapsable" "more collapsable" "most collapsable" "collapsably" ;
-lin traversable_A = mkA "traversable" "more traversable" "most traversable" "traversably" ;
-lin untraversable_A = mkA "untraversable" "more untraversable" "most untraversable" "untraversably" ;
-lin passable_A = mkA "passable" "more passable" "most passable" "passably" ;
-lin impassable_A = mkA "impassable" "more impassable" "most impassable" "impassably" ;
-lin unsurpassable_A = mkA "unsurpassable" "more unsurpassable" "most unsurpassable" "unsurpassably" ;
-lin addressable_A = mkA "addressable" "more addressable" "most addressable" "addressably" ;
-lin assessable_A = mkA "assessable" "more assessable" "most assessable" "assessably" ;
-lin usable_A = mkA "usable" "more usable" "most usable" "usably" ;
-lin excusable_A = mkA "excusable" "more excusable" "most excusable" "excusably" ;
-lin inexcusable_A = mkA "inexcusable" "more inexcusable" "most inexcusable" "inexcusably" ;
-lin confusable_A = mkA "confusable" "more confusable" "most confusable" "confusably" ;
-lin abatable_A = mkA "abatable" "more abatable" "most abatable" "abatably" ;
-lin debatable_A = mkA "debatable" "more debatable" "most debatable" "debatably" ;
-lin datable_A = mkA "datable" "more datable" "most datable" "datably" ;
-lin undatable_A = mkA "undatable" "more undatable" "most undatable" "undatably" ;
-lin eatable_A = mkA "eatable" "more eatable" "most eatable" "eatably" ;
-lin beatable_A = mkA "beatable" "more beatable" "most beatable" "beatably" ;
-lin unbeatable_A = mkA "unbeatable" "more unbeatable" "most unbeatable" "unbeatably" ;
-lin heatable_A = mkA "heatable" "more heatable" "most heatable" "heatably" ;
-lin uneatable_A = mkA "uneatable" "more uneatable" "most uneatable" "uneatably" ;
-lin repeatable_A = mkA "repeatable" "more repeatable" "most repeatable" "repeatably" ;
-lin unrepeatable_A = mkA "unrepeatable" "more unrepeatable" "most unrepeatable" "unrepeatably" ;
-lin palatable_A = mkA "palatable" "more palatable" "most palatable" "palatably" ;
-lin unpalatable_A = mkA "unpalatable" "more unpalatable" "most unpalatable" "unpalatably" ;
-lin inflatable_A = mkA "inflatable" "more inflatable" "most inflatable" "inflatably" ;
-lin translatable_A = mkA "translatable" "more translatable" "most translatable" "translatably" ;
-lin untranslatable_A = mkA "untranslatable" "more untranslatable" "most untranslatable" "untranslatably" ;
-lin ratable_A = mkA "ratable" "more ratable" "most ratable" "ratably" ;
-lin unratable_A = mkA "unratable" "more unratable" "most unratable" "unratably" ;
-lin rotatable_A = mkA "rotatable" "more rotatable" "most rotatable" "rotatably" ;
-lin redoubtable_A = mkA "redoubtable" "more redoubtable" "most redoubtable" "redoubtably" ;
-lin actable_A = mkA "actable" "more actable" "most actable" "actably" ;
-lin unactable_A = mkA "unactable" "more unactable" "most unactable" "unactably" ;
-lin tractable_A = mkA "tractable" "more tractable" "most tractable" "tractably" ;
-lin retractable_A = mkA "retractable" "more retractable" "most retractable" "retractably" ;
-lin intractable_A = mkA "intractable" "more intractable" "most intractable" "intractably" ;
-lin attractable_A = mkA "attractable" "more attractable" "most attractable" "attractably" ;
-lin extractable_A = mkA "extractable" "more extractable" "most extractable" "extractably" ;
-lin injectable_A = mkA "injectable" "more injectable" "most injectable" "injectably" ;
-lin uninjectable_A = mkA "uninjectable" "more uninjectable" "most uninjectable" "uninjectably" ;
-lin delectable_A = mkA "delectable" "more delectable" "most delectable" "delectably" ;
-lin respectable_A = mkA "respectable" "more respectable" "most respectable" "respectably" ;
-lin unrespectable_A = mkA "unrespectable" "more unrespectable" "most unrespectable" "unrespectably" ;
-lin expectable_A = mkA "expectable" "more expectable" "most expectable" "expectably" ;
-lin correctable_A = mkA "correctable" "more correctable" "most correctable" "correctably" ;
-lin detectable_A = mkA "detectable" "more detectable" "most detectable" "detectably" ;
-lin undetectable_A = mkA "undetectable" "more undetectable" "most undetectable" "undetectably" ;
-lin predictable_A = mkA "predictable" "more predictable" "most predictable" "predictably" ;
-lin unpredictable_A = mkA "unpredictable" "more unpredictable" "most unpredictable" "unpredictably" ;
-lin indictable_A = mkA "indictable" "more indictable" "most indictable" "indictably" ;
-lin ineluctable_A = mkA "ineluctable" "more ineluctable" "most ineluctable" "ineluctably" ;
-lin vegetable_A = mkA "vegetable" "more vegetable" "most vegetable" "vegetably" ;
-lin marketable_A = mkA "marketable" "more marketable" "most marketable" "marketably" ;
-lin unmarketable_A = mkA "unmarketable" "more unmarketable" "most unmarketable" "unmarketably" ;
-lin depletable_A = mkA "depletable" "more depletable" "most depletable" "depletably" ;
-lin habitable_A = mkA "habitable" "more habitable" "most habitable" "habitably" ;
-lin inhabitable_A = mkA "inhabitable" "more inhabitable" "most inhabitable" "inhabitably" ;
-lin uninhabitable_A = mkA "uninhabitable" "more uninhabitable" "most uninhabitable" "uninhabitably" ;
-lin indubitable_A = mkA "indubitable" "more indubitable" "most indubitable" "indubitably" ;
-lin excitable_A = mkA "excitable" "more excitable" "most excitable" "excitably" ;
-lin unexcitable_A = mkA "unexcitable" "more unexcitable" "most unexcitable" "unexcitably" ;
-lin creditable_A = mkA "creditable" "more creditable" "most creditable" "creditably" ;
-lin discreditable_A = mkA "discreditable" "more discreditable" "most discreditable" "discreditably" ;
-lin unforfeitable_A = mkA "unforfeitable" "more unforfeitable" "most unforfeitable" "unforfeitably" ;
-lin profitable_A = mkA "profitable" "more profitable" "most profitable" "profitably" ;
-lin unprofitable_A = mkA "unprofitable" "more unprofitable" "most unprofitable" "unprofitably" ;
-lin cogitable_A = mkA "cogitable" "more cogitable" "most cogitable" "cogitably" ;
-lin illimitable_A = mkA "illimitable" "more illimitable" "most illimitable" "illimitably" ;
-lin inimitable_A = mkA "inimitable" "more inimitable" "most inimitable" "inimitably" ;
-lin indomitable_A = mkA "indomitable" "more indomitable" "most indomitable" "indomitably" ;
-lin hospitable_A = mkA "hospitable" "more hospitable" "most hospitable" "hospitably" ;
-lin inhospitable_A = mkA "inhospitable" "more inhospitable" "most inhospitable" "inhospitably" ;
-lin charitable_A = mkA "charitable" "more charitable" "most charitable" "charitably" ;
-lin uncharitable_A = mkA "uncharitable" "more uncharitable" "most uncharitable" "uncharitably" ;
-lin heritable_A = mkA "heritable" "more heritable" "most heritable" "heritably" ;
-lin inheritable_A = mkA "inheritable" "more inheritable" "most inheritable" "inheritably" ;
-lin noninheritable_A = mkA "noninheritable" "more noninheritable" "most noninheritable" "noninheritably" ;
-lin veritable_A = mkA "veritable" "more veritable" "most veritable" "veritably" ;
-lin irritable_A = mkA "irritable" "more irritable" "most irritable" "irritably" ;
-lin equitable_A = mkA "equitable" "more equitable" "most equitable" "equitably" ;
-lin inequitable_A = mkA "inequitable" "more inequitable" "most inequitable" "inequitably" ;
-lin suitable_A = mkA "suitable" "more suitable" "most suitable" "suitably" ;
-lin unsuitable_A = mkA "unsuitable" "more unsuitable" "most unsuitable" "unsuitably" ;
-lin evitable_A = mkA "evitable" "more evitable" "most evitable" "evitably" ;
-lin inevitable_A = mkA "inevitable" "more inevitable" "most inevitable" "inevitably" ;
-lin meltable_A = mkA "meltable" "more meltable" "most meltable" "meltably" ;
-lin transplantable_A = mkA "transplantable" "more transplantable" "most transplantable" "transplantably" ;
-lin lamentable_A = mkA "lamentable" "more lamentable" "most lamentable" "lamentably" ;
-lin fermentable_A = mkA "fermentable" "more fermentable" "most fermentable" "fermentably" ;
-lin rentable_A = mkA "rentable" "more rentable" "most rentable" "rentably" ;
-lin unrentable_A = mkA "unrentable" "more unrentable" "most unrentable" "unrentably" ;
-lin presentable_A = mkA "presentable" "more presentable" "most presentable" "presentably" ;
-lin representable_A = mkA "representable" "more representable" "most representable" "representably" ;
-lin preventable_A = mkA "preventable" "more preventable" "most preventable" "preventably" ;
-lin unpreventable_A = mkA "unpreventable" "more unpreventable" "most unpreventable" "unpreventably" ;
-lin paintable_A = mkA "paintable" "more paintable" "most paintable" "paintably" ;
-lin unpaintable_A = mkA "unpaintable" "more unpaintable" "most unpaintable" "unpaintably" ;
-lin printable_A = mkA "printable" "more printable" "most printable" "printably" ;
-lin unprintable_A = mkA "unprintable" "more unprintable" "most unprintable" "unprintably" ;
-lin countable_A = mkA "countable" "more countable" "most countable" "countably" ;
-lin accountable_A = mkA "accountable" "more accountable" "most accountable" "accountably" ;
-lin unaccountable_A = mkA "unaccountable" "more unaccountable" "most unaccountable" "unaccountably" ;
-lin surmountable_A = mkA "surmountable" "more surmountable" "most surmountable" "surmountably" ;
-lin insurmountable_A = mkA "insurmountable" "more insurmountable" "most insurmountable" "insurmountably" ;
-lin unsurmountable_A = mkA "unsurmountable" "more unsurmountable" "most unsurmountable" "unsurmountably" ;
-lin notable_A = mkA "notable" "more notable" "most notable" "notably" ;
-lin potable_A = mkA "potable" "more potable" "most potable" "potably" ;
-lin quotable_A = mkA "quotable" "more quotable" "most quotable" "quotably" ;
-lin unquotable_A = mkA "unquotable" "more unquotable" "most unquotable" "unquotably" ;
-lin adaptable_A = mkA "adaptable" "more adaptable" "most adaptable" "adaptably" ;
-lin unadaptable_A = mkA "unadaptable" "more unadaptable" "most unadaptable" "unadaptably" ;
-lin acceptable_A = mkA "acceptable" "more acceptable" "most acceptable" "acceptably" ;
-lin unacceptable_A = mkA "unacceptable" "more unacceptable" "most unacceptable" "unacceptably" ;
-lin temptable_A = mkA "temptable" "more temptable" "most temptable" "temptably" ;
-lin adoptable_A = mkA "adoptable" "more adoptable" "most adoptable" "adoptably" ;
-lin unadoptable_A = mkA "unadoptable" "more unadoptable" "most unadoptable" "unadoptably" ;
-lin comfortable_A = mkA "comfortable" "more comfortable" "most comfortable" "comfortably" ;
-lin uncomfortable_A = mkA "uncomfortable" "more uncomfortable" "most uncomfortable" "uncomfortably" ;
-lin portable_A = mkA "portable" "more portable" "most portable" "portably" ;
-lin reportable_A = mkA "reportable" "more reportable" "most reportable" "reportably" ;
-lin unreportable_A = mkA "unreportable" "more unreportable" "most unreportable" "unreportably" ;
-lin unportable_A = mkA "unportable" "more unportable" "most unportable" "unportably" ;
-lin supportable_A = mkA "supportable" "more supportable" "most supportable" "supportably" ;
-lin insupportable_A = mkA "insupportable" "more insupportable" "most insupportable" "insupportably" ;
-lin unsupportable_A = mkA "unsupportable" "more unsupportable" "most unsupportable" "unsupportably" ;
-lin transportable_A = mkA "transportable" "more transportable" "most transportable" "transportably" ;
-lin exportable_A = mkA "exportable" "more exportable" "most exportable" "exportably" ;
-lin unexportable_A = mkA "unexportable" "more unexportable" "most unexportable" "unexportably" ;
-lin distortable_A = mkA "distortable" "more distortable" "most distortable" "distortably" ;
-lin stable_A = mkA "stable" "more stable" "most stable" "stably" ;
-lin metastable_A = mkA "metastable" "more metastable" "most metastable" "metastably" ;
-lin detestable_A = mkA "detestable" "more detestable" "most detestable" "detestably" ;
-lin contestable_A = mkA "contestable" "more contestable" "most contestable" "contestably" ;
-lin incontestable_A = mkA "incontestable" "more incontestable" "most incontestable" "incontestably" ;
-lin unstable_A = mkA "unstable" "more unstable" "most unstable" "unstably" ;
-lin adjustable_A = mkA "adjustable" "more adjustable" "most adjustable" "adjustably" ;
-lin unadjustable_A = mkA "unadjustable" "more unadjustable" "most unadjustable" "unadjustably" ;
-lin gettable_A = mkA "gettable" "more gettable" "most gettable" "gettably" ;
-lin forgettable_A = mkA "forgettable" "more forgettable" "most forgettable" "forgettably" ;
-lin unforgettable_A = mkA "unforgettable" "more unforgettable" "most unforgettable" "unforgettably" ;
-lin regrettable_A = mkA "regrettable" "more regrettable" "most regrettable" "regrettably" ;
-lin admittable_A = mkA "admittable" "more admittable" "most admittable" "admittably" ;
-lin attributable_A = mkA "attributable" "more attributable" "most attributable" "attributably" ;
-lin unattributable_A = mkA "unattributable" "more unattributable" "most unattributable" "unattributably" ;
-lin refutable_A = mkA "refutable" "more refutable" "most refutable" "refutably" ;
-lin irrefutable_A = mkA "irrefutable" "more irrefutable" "most irrefutable" "irrefutably" ;
-lin mutable_A = mkA "mutable" "more mutable" "most mutable" "mutably" ;
-lin immutable_A = mkA "immutable" "more immutable" "most immutable" "immutably" ;
-lin commutable_A = mkA "commutable" "more commutable" "most commutable" "commutably" ;
-lin incommutable_A = mkA "incommutable" "more incommutable" "most incommutable" "incommutably" ;
-lin transmutable_A = mkA "transmutable" "more transmutable" "most transmutable" "transmutably" ;
-lin reputable_A = mkA "reputable" "more reputable" "most reputable" "reputably" ;
-lin disreputable_A = mkA "disreputable" "more disreputable" "most disreputable" "disreputably" ;
-lin computable_A = mkA "computable" "more computable" "most computable" "computably" ;
-lin incomputable_A = mkA "incomputable" "more incomputable" "most incomputable" "incomputably" ;
-lin disputable_A = mkA "disputable" "more disputable" "most disputable" "disputably" ;
-lin indisputable_A = mkA "indisputable" "more indisputable" "most indisputable" "indisputably" ;
-lin inscrutable_A = mkA "inscrutable" "more inscrutable" "most inscrutable" "inscrutably" ;
-lin substitutable_A = mkA "substitutable" "more substitutable" "most substitutable" "substitutably" ;
-lin subduable_A = mkA "subduable" "more subduable" "most subduable" "subduably" ;
-lin arguable_A = mkA "arguable" "more arguable" "most arguable" "arguably" ;
-lin inarguable_A = mkA "inarguable" "more inarguable" "most inarguable" "inarguably" ;
-lin unarguable_A = mkA "unarguable" "more unarguable" "most unarguable" "unarguably" ;
-lin valuable_A = mkA "valuable" "more valuable" "most valuable" "valuably" ;
-lin invaluable_A = mkA "invaluable" "more invaluable" "most invaluable" "invaluably" ;
-lin equable_A = mkA "equable" "more equable" "most equable" "equably" ;
-lin cleavable_A = mkA "cleavable" "more cleavable" "most cleavable" "cleavably" ;
-lin achievable_A = mkA "achievable" "more achievable" "most achievable" "achievably" ;
-lin unachievable_A = mkA "unachievable" "more unachievable" "most unachievable" "unachievably" ;
-lin believable_A = mkA "believable" "more believable" "most believable" "believably" ;
-lin unbelievable_A = mkA "unbelievable" "more unbelievable" "most unbelievable" "unbelievably" ;
-lin retrievable_A = mkA "retrievable" "more retrievable" "most retrievable" "retrievably" ;
-lin irretrievable_A = mkA "irretrievable" "more irretrievable" "most irretrievable" "irretrievably" ;
-lin receivable_A = mkA "receivable" "more receivable" "most receivable" "receivably" ;
-lin conceivable_A = mkA "conceivable" "more conceivable" "most conceivable" "conceivably" ;
-lin inconceivable_A = mkA "inconceivable" "more inconceivable" "most inconceivable" "inconceivably" ;
-lin perceivable_A = mkA "perceivable" "more perceivable" "most perceivable" "perceivably" ;
-lin forgivable_A = mkA "forgivable" "more forgivable" "most forgivable" "forgivably" ;
-lin unforgivable_A = mkA "unforgivable" "more unforgivable" "most unforgivable" "unforgivably" ;
-lin livable_A = mkA "livable" "more livable" "most livable" "livably" ;
-lin unlivable_A = mkA "unlivable" "more unlivable" "most unlivable" "unlivably" ;
-lin derivable_A = mkA "derivable" "more derivable" "most derivable" "derivably" ;
-lin cultivable_A = mkA "cultivable" "more cultivable" "most cultivable" "cultivably" ;
-lin uncultivable_A = mkA "uncultivable" "more uncultivable" "most uncultivable" "uncultivably" ;
-lin solvable_A = mkA "solvable" "more solvable" "most solvable" "solvably" ;
-lin resolvable_A = mkA "resolvable" "more resolvable" "most resolvable" "resolvably" ;
-lin unresolvable_A = mkA "unresolvable" "more unresolvable" "most unresolvable" "unresolvably" ;
-lin insolvable_A = mkA "insolvable" "more insolvable" "most insolvable" "insolvably" ;
-lin dissolvable_A = mkA "dissolvable" "more dissolvable" "most dissolvable" "dissolvably" ;
-lin lovable_A = mkA "lovable" "more lovable" "most lovable" "lovably" ;
-lin unlovable_A = mkA "unlovable" "more unlovable" "most unlovable" "unlovably" ;
-lin movable_A = mkA "movable" "more movable" "most movable" "movably" ;
-lin removable_A = mkA "removable" "more removable" "most removable" "removably" ;
-lin irremovable_A = mkA "irremovable" "more irremovable" "most irremovable" "irremovably" ;
-lin immovable_A = mkA "immovable" "more immovable" "most immovable" "immovably" ;
-lin unmovable_A = mkA "unmovable" "more unmovable" "most unmovable" "unmovably" ;
-lin provable_A = mkA "provable" "more provable" "most provable" "provably" ;
-lin improvable_A = mkA "improvable" "more improvable" "most improvable" "improvably" ;
-lin unprovable_A = mkA "unprovable" "more unprovable" "most unprovable" "unprovably" ;
-lin observable_A = mkA "observable" "more observable" "most observable" "observably" ;
-lin unobservable_A = mkA "unobservable" "more unobservable" "most unobservable" "unobservably" ;
-lin preservable_A = mkA "preservable" "more preservable" "most preservable" "preservably" ;
-lin introuvable_A = mkA "introuvable" "more introuvable" "most introuvable" "introuvably" ;
-lin chewable_A = mkA "chewable" "more chewable" "most chewable" "chewably" ;
-lin viewable_A = mkA "viewable" "more viewable" "most viewable" "viewably" ;
-lin renewable_A = mkA "renewable" "more renewable" "most renewable" "renewably" ;
-lin unrenewable_A = mkA "unrenewable" "more unrenewable" "most unrenewable" "unrenewably" ;
-lin allowable_A = mkA "allowable" "more allowable" "most allowable" "allowably" ;
-lin knowable_A = mkA "knowable" "more knowable" "most knowable" "knowably" ;
-lin unknowable_A = mkA "unknowable" "more unknowable" "most unknowable" "unknowably" ;
-lin disavowable_A = mkA "disavowable" "more disavowable" "most disavowable" "disavowably" ;
-lin taxable_A = mkA "taxable" "more taxable" "most taxable" "taxably" ;
-lin nontaxable_A = mkA "nontaxable" "more nontaxable" "most nontaxable" "nontaxably" ;
-lin decayable_A = mkA "decayable" "more decayable" "most decayable" "decayably" ;
-lin playable_A = mkA "playable" "more playable" "most playable" "playably" ;
-lin unplayable_A = mkA "unplayable" "more unplayable" "most unplayable" "unplayably" ;
-lin payable_A = mkA "payable" "more payable" "most payable" "payably" ;
-lin repayable_A = mkA "repayable" "more repayable" "most repayable" "repayably" ;
-lin enjoyable_A = mkA "enjoyable" "more enjoyable" "most enjoyable" "enjoyably" ;
-lin employable_A = mkA "employable" "more employable" "most employable" "employably" ;
-lin unemployable_A = mkA "unemployable" "more unemployable" "most unemployable" "unemployably" ;
-lin destroyable_A = mkA "destroyable" "more destroyable" "most destroyable" "destroyably" ;
-lin undestroyable_A = mkA "undestroyable" "more undestroyable" "most undestroyable" "undestroyably" ;
-lin oxidizable_A = mkA "oxidizable" "more oxidizable" "most oxidizable" "oxidizably" ;
-lin realizable_A = mkA "realizable" "more realizable" "most realizable" "realizably" ;
-lin diagonalizable_A = mkA "diagonalizable" "more diagonalizable" "most diagonalizable" "diagonalizably" ;
-lin fertilizable_A = mkA "fertilizable" "more fertilizable" "most fertilizable" "fertilizably" ;
-lin utilizable_A = mkA "utilizable" "more utilizable" "most utilizable" "utilizably" ;
-lin recognizable_A = mkA "recognizable" "more recognizable" "most recognizable" "recognizably" ;
-lin unrecognizable_A = mkA "unrecognizable" "more unrecognizable" "most unrecognizable" "unrecognizably" ;
-lin incognizable_A = mkA "incognizable" "more incognizable" "most incognizable" "incognizably" ;
-lin harmonizable_A = mkA "harmonizable" "more harmonizable" "most harmonizable" "harmonizably" ;
-lin sizable_A = mkA "sizable" "more sizable" "most sizable" "sizably" ;
-lin analyzable_A = mkA "analyzable" "more analyzable" "most analyzable" "analyzably" ;
-lin unanalyzable_A = mkA "unanalyzable" "more unanalyzable" "most unanalyzable" "unanalyzably" ;
-lin hydrolyzable_A = mkA "hydrolyzable" "more hydrolyzable" "most hydrolyzable" "hydrolyzably" ;
-lin hardscrabble_A = mkA "hardscrabble" "more hardscrabble" "most hardscrabble" "hardscrabbly" ;
-lin treble_A = mkA "treble" "more treble" "most treble" "trebly" ;
-lin invincible_A = mkA "invincible" "more invincible" "most invincible" "invincibly" ;
-lin convincible_A = mkA "convincible" "more convincible" "most convincible" "convincibly" ;
-lin forcible_A = mkA "forcible" "more forcible" "most forcible" "forcibly" ;
-lin irascible_A = mkA "irascible" "more irascible" "most irascible" "irascibly" ;
-lin imputrescible_A = mkA "imputrescible" "more imputrescible" "most imputrescible" "imputrescibly" ;
-lin miscible_A = mkA "miscible" "more miscible" "most miscible" "miscibly" ;
-lin immiscible_A = mkA "immiscible" "more immiscible" "most immiscible" "immiscibly" ;
-lin deducible_A = mkA "deducible" "more deducible" "most deducible" "deducibly" ;
-lin reducible_A = mkA "reducible" "more reducible" "most reducible" "reducibly" ;
-lin irreducible_A = mkA "irreducible" "more irreducible" "most irreducible" "irreducibly" ;
-lin reproducible_A = mkA "reproducible" "more reproducible" "most reproducible" "reproducibly" ;
-lin unreproducible_A = mkA "unreproducible" "more unreproducible" "most unreproducible" "unreproducibly" ;
-lin edible_A = mkA "edible" "more edible" "most edible" "edibly" ;
-lin inedible_A = mkA "inedible" "more inedible" "most inedible" "inedibly" ;
-lin credible_A = mkA "credible" "more credible" "most credible" "credibly" ;
-lin incredible_A = mkA "incredible" "more incredible" "most incredible" "incredibly" ;
-lin extendible_A = mkA "extendible" "more extendible" "most extendible" "extendibly" ;
-lin audible_A = mkA "audible" "more audible" "most audible" "audibly" ;
-lin inaudible_A = mkA "inaudible" "more inaudible" "most inaudible" "inaudibly" ;
-lin legible_A = mkA "legible" "more legible" "most legible" "legibly" ;
-lin illegible_A = mkA "illegible" "more illegible" "most illegible" "illegibly" ;
-lin eligible_A = mkA "eligible" "more eligible" "most eligible" "eligibly" ;
-lin ineligible_A = mkA "ineligible" "more ineligible" "most ineligible" "ineligibly" ;
-lin negligible_A = mkA "negligible" "more negligible" "most negligible" "negligibly" ;
-lin intelligible_A = mkA "intelligible" "more intelligible" "most intelligible" "intelligibly" ;
-lin unintelligible_A = mkA "unintelligible" "more unintelligible" "most unintelligible" "unintelligibly" ;
-lin corrigible_A = mkA "corrigible" "more corrigible" "most corrigible" "corrigibly" ;
-lin incorrigible_A = mkA "incorrigible" "more incorrigible" "most incorrigible" "incorrigibly" ;
-lin frangible_A = mkA "frangible" "more frangible" "most frangible" "frangibly" ;
-lin infrangible_A = mkA "infrangible" "more infrangible" "most infrangible" "infrangibly" ;
-lin tangible_A = mkA "tangible" "more tangible" "most tangible" "tangibly" ;
-lin intangible_A = mkA "intangible" "more intangible" "most intangible" "intangibly" ;
-lin fungible_A = mkA "fungible" "more fungible" "most fungible" "fungibly" ;
-lin inexpungible_A = mkA "inexpungible" "more inexpungible" "most inexpungible" "inexpungibly" ;
-lin delible_A = mkA "delible" "more delible" "most delible" "delibly" ;
-lin indelible_A = mkA "indelible" "more indelible" "most indelible" "indelibly" ;
-lin fallible_A = mkA "fallible" "more fallible" "most fallible" "fallibly" ;
-lin infallible_A = mkA "infallible" "more infallible" "most infallible" "infallibly" ;
-lin gullible_A = mkA "gullible" "more gullible" "most gullible" "gullibly" ;
-lin discernible_A = mkA "discernible" "more discernible" "most discernible" "discernibly" ;
-lin indiscernible_A = mkA "indiscernible" "more indiscernible" "most indiscernible" "indiscernibly" ;
-lin terrible_A = mkA "terrible" "more terrible" "most terrible" "terribly" ;
-lin horrible_A = mkA "horrible" "more horrible" "most horrible" "horribly" ;
-lin feasible_A = mkA "feasible" "more feasible" "most feasible" "feasibly" ;
-lin defeasible_A = mkA "defeasible" "more defeasible" "most defeasible" "defeasibly" ;
-lin indefeasible_A = mkA "indefeasible" "more indefeasible" "most indefeasible" "indefeasibly" ;
-lin risible_A = mkA "risible" "more risible" "most risible" "risibly" ;
-lin visible_A = mkA "visible" "more visible" "most visible" "visibly" ;
-lin divisible_A = mkA "divisible" "more divisible" "most divisible" "divisibly" ;
-lin indivisible_A = mkA "indivisible" "more indivisible" "most indivisible" "indivisibly" ;
-lin invisible_A = mkA "invisible" "more invisible" "most invisible" "invisibly" ;
-lin defensible_A = mkA "defensible" "more defensible" "most defensible" "defensibly" ;
-lin indefensible_A = mkA "indefensible" "more indefensible" "most indefensible" "indefensibly" ;
-lin reprehensible_A = mkA "reprehensible" "more reprehensible" "most reprehensible" "reprehensibly" ;
-lin comprehensible_A = mkA "comprehensible" "more comprehensible" "most comprehensible" "comprehensibly" ;
-lin incomprehensible_A = mkA "incomprehensible" "more incomprehensible" "most incomprehensible" "incomprehensibly" ;
-lin apprehensible_A = mkA "apprehensible" "more apprehensible" "most apprehensible" "apprehensibly" ;
-lin sensible_A = mkA "sensible" "more sensible" "most sensible" "sensibly" ;
-lin insensible_A = mkA "insensible" "more insensible" "most insensible" "insensibly" ;
-lin distensible_A = mkA "distensible" "more distensible" "most distensible" "distensibly" ;
-lin ostensible_A = mkA "ostensible" "more ostensible" "most ostensible" "ostensibly" ;
-lin responsible_A = mkA "responsible" "more responsible" "most responsible" "responsibly" ;
-lin irresponsible_A = mkA "irresponsible" "more irresponsible" "most irresponsible" "irresponsibly" ;
-lin collapsible_A = mkA "collapsible" "more collapsible" "most collapsible" "collapsibly" ;
-lin noncollapsible_A = mkA "noncollapsible" "more noncollapsible" "most noncollapsible" "noncollapsibly" ;
-lin submersible_A = mkA "submersible" "more submersible" "most submersible" "submersibly" ;
-lin nonsubmersible_A = mkA "nonsubmersible" "more nonsubmersible" "most nonsubmersible" "nonsubmersibly" ;
-lin reversible_A = mkA "reversible" "more reversible" "most reversible" "reversibly" ;
-lin nonreversible_A = mkA "nonreversible" "more nonreversible" "most nonreversible" "nonreversibly" ;
-lin irreversible_A = mkA "irreversible" "more irreversible" "most irreversible" "irreversibly" ;
-lin accessible_A = mkA "accessible" "more accessible" "most accessible" "accessibly" ;
-lin inaccessible_A = mkA "inaccessible" "more inaccessible" "most inaccessible" "inaccessibly" ;
-lin irrepressible_A = mkA "irrepressible" "more irrepressible" "most irrepressible" "irrepressibly" ;
-lin compressible_A = mkA "compressible" "more compressible" "most compressible" "compressibly" ;
-lin incompressible_A = mkA "incompressible" "more incompressible" "most incompressible" "incompressibly" ;
-lin expressible_A = mkA "expressible" "more expressible" "most expressible" "expressibly" ;
-lin inexpressible_A = mkA "inexpressible" "more inexpressible" "most inexpressible" "inexpressibly" ;
-lin admissible_A = mkA "admissible" "more admissible" "most admissible" "admissibly" ;
-lin inadmissible_A = mkA "inadmissible" "more inadmissible" "most inadmissible" "inadmissibly" ;
-lin omissible_A = mkA "omissible" "more omissible" "most omissible" "omissibly" ;
-lin permissible_A = mkA "permissible" "more permissible" "most permissible" "permissibly" ;
-lin impermissible_A = mkA "impermissible" "more impermissible" "most impermissible" "impermissibly" ;
-lin dismissible_A = mkA "dismissible" "more dismissible" "most dismissible" "dismissibly" ;
-lin possible_A = mkA "possible" "more possible" "most possible" "possibly" ;
-lin impossible_A = mkA "impossible" "more impossible" "most impossible" "impossibly" ;
-lin plausible_A = mkA "plausible" "more plausible" "most plausible" "plausibly" ;
-lin implausible_A = mkA "implausible" "more implausible" "most implausible" "implausibly" ;
-lin fusible_A = mkA "fusible" "more fusible" "most fusible" "fusibly" ;
-lin compatible_A = mkA "compatible" "more compatible" "most compatible" "compatibly" ;
-lin incompatible_A = mkA "incompatible" "more incompatible" "most incompatible" "incompatibly" ;
-lin contractible_A = mkA "contractible" "more contractible" "most contractible" "contractibly" ;
-lin perfectible_A = mkA "perfectible" "more perfectible" "most perfectible" "perfectibly" ;
-lin imperfectible_A = mkA "imperfectible" "more imperfectible" "most imperfectible" "imperfectibly" ;
-lin collectible_A = mkA "collectible" "more collectible" "most collectible" "collectibly" ;
-lin deductible_A = mkA "deductible" "more deductible" "most deductible" "deductibly" ;
-lin nondeductible_A = mkA "nondeductible" "more nondeductible" "most nondeductible" "nondeductibly" ;
-lin destructible_A = mkA "destructible" "more destructible" "most destructible" "destructibly" ;
-lin indestructible_A = mkA "indestructible" "more indestructible" "most indestructible" "indestructibly" ;
-lin perceptible_A = mkA "perceptible" "more perceptible" "most perceptible" "perceptibly" ;
-lin imperceptible_A = mkA "imperceptible" "more imperceptible" "most imperceptible" "imperceptibly" ;
-lin susceptible_A = mkA "susceptible" "more susceptible" "most susceptible" "susceptibly" ;
-lin unsusceptible_A = mkA "unsusceptible" "more unsusceptible" "most unsusceptible" "unsusceptibly" ;
-lin contemptible_A = mkA "contemptible" "more contemptible" "most contemptible" "contemptibly" ;
-lin corruptible_A = mkA "corruptible" "more corruptible" "most corruptible" "corruptibly" ;
-lin incorruptible_A = mkA "incorruptible" "more incorruptible" "most incorruptible" "incorruptibly" ;
-lin partible_A = mkA "partible" "more partible" "most partible" "partibly" ;
-lin revertible_A = mkA "revertible" "more revertible" "most revertible" "revertibly" ;
-lin invertible_A = mkA "invertible" "more invertible" "most invertible" "invertibly" ;
-lin convertible_A = mkA "convertible" "more convertible" "most convertible" "convertibly" ;
-lin inconvertible_A = mkA "inconvertible" "more inconvertible" "most inconvertible" "inconvertibly" ;
-lin incontrovertible_A = mkA "incontrovertible" "more incontrovertible" "most incontrovertible" "incontrovertibly" ;
-lin suggestible_A = mkA "suggestible" "more suggestible" "most suggestible" "suggestibly" ;
-lin digestible_A = mkA "digestible" "more digestible" "most digestible" "digestibly" ;
-lin indigestible_A = mkA "indigestible" "more indigestible" "most indigestible" "indigestibly" ;
-lin nondigestible_A = mkA "nondigestible" "more nondigestible" "most nondigestible" "nondigestibly" ;
-lin resistible_A = mkA "resistible" "more resistible" "most resistible" "resistibly" ;
-lin irresistible_A = mkA "irresistible" "more irresistible" "most irresistible" "irresistibly" ;
-lin exhaustible_A = mkA "exhaustible" "more exhaustible" "most exhaustible" "exhaustibly" ;
-lin inexhaustible_A = mkA "inexhaustible" "more inexhaustible" "most inexhaustible" "inexhaustibly" ;
-lin combustible_A = mkA "combustible" "more combustible" "most combustible" "combustibly" ;
-lin incombustible_A = mkA "incombustible" "more incombustible" "most incombustible" "incombustibly" ;
-lin noncombustible_A = mkA "noncombustible" "more noncombustible" "most noncombustible" "noncombustibly" ;
-lin flexible_A = mkA "flexible" "more flexible" "most flexible" "flexibly" ;
-lin inflexible_A = mkA "inflexible" "more inflexible" "most inflexible" "inflexibly" ;
-lin 'rough-and-tumble_A' = mkA "rough-and-tumble" "more rough-and-tumble" "most rough-and-tumble" "rough-and-tumbly" ;
-lin ignoble_A = mkA "ignoble" "more ignoble" "most ignoble" "ignobly" ;
-lin soluble_A = mkA "soluble" "more soluble" "most soluble" "solubly" ;
-lin insoluble_A = mkA "insoluble" "more insoluble" "most insoluble" "insolubly" ;
-lin dissoluble_A = mkA "dissoluble" "more dissoluble" "most dissoluble" "dissolubly" ;
-lin indissoluble_A = mkA "indissoluble" "more indissoluble" "most indissoluble" "indissolubly" ;
-lin voluble_A = mkA "voluble" "more voluble" "most voluble" "volubly" ;
-lin double_A = mkA "double" "more double" "most double" "doubly" ;
-lin addle_A = mkA "addle" "more addle" "most addle" "addlely" ;
-lin 'bone-idle_A' = mkA "bone-idle" "more bone-idle" "most bone-idle" "bone-idlely" ;
-lin single_A = mkA "single" "more single" "most single" "singlely" ;
-lin labile_A = mkA "labile" "more labile" "most labile" "labilely" ;
-lin thermolabile_A = mkA "thermolabile" "more thermolabile" "most thermolabile" "thermolabilely" ;
-lin cantabile_A = mkA "cantabile" "more cantabile" "most cantabile" "cantabilely" ;
-lin stabile_A = mkA "stabile" "more stabile" "most stabile" "stabilely" ;
-lin mobile_A = mkA "mobile" "more mobile" "most mobile" "mobilely" ;
-lin immobile_A = mkA "immobile" "more immobile" "most immobile" "immobilely" ;
-lin nubile_A = mkA "nubile" "more nubile" "most nubile" "nubilely" ;
-lin facile_A = mkA "facile" "more facile" "most facile" "facilely" ;
-lin gracile_A = mkA "gracile" "more gracile" "most gracile" "gracilely" ;
-lin imbecile_A = mkA "imbecile" "more imbecile" "most imbecile" "imbecilely" ;
-lin docile_A = mkA "docile" "more docile" "most docile" "docilely" ;
-lin indocile_A = mkA "indocile" "more indocile" "most indocile" "indocilely" ;
-lin agile_A = mkA "agile" "more agile" "most agile" "agilely" ;
-lin fragile_A = mkA "fragile" "more fragile" "most fragile" "fragilely" ;
-lin vagile_A = mkA "vagile" "more vagile" "most vagile" "vagilely" ;
-lin worthwhile_A = mkA "worthwhile" "more worthwhile" "most worthwhile" "worthwhilely" ;
-lin anile_A = mkA "anile" "more anile" "most anile" "anilely" ;
-lin penile_A = mkA "penile" "more penile" "most penile" "penilely" ;
-lin senile_A = mkA "senile" "more senile" "most senile" "senilely" ;
-lin juvenile_A = mkA "juvenile" "more juvenile" "most juvenile" "juvenilely" ;
-lin febrile_A = mkA "febrile" "more febrile" "most febrile" "febrilely" ;
-lin afebrile_A = mkA "afebrile" "more afebrile" "most afebrile" "afebrilely" ;
-lin sterile_A = mkA "sterile" "more sterile" "most sterile" "sterilely" ;
-lin puerile_A = mkA "puerile" "more puerile" "most puerile" "puerilely" ;
-lin virile_A = mkA "virile" "more virile" "most virile" "virilely" ;
-lin prehensile_A = mkA "prehensile" "more prehensile" "most prehensile" "prehensilely" ;
-lin nonprehensile_A = mkA "nonprehensile" "more nonprehensile" "most nonprehensile" "nonprehensilely" ;
-lin tensile_A = mkA "tensile" "more tensile" "most tensile" "tensilely" ;
-lin extensile_A = mkA "extensile" "more extensile" "most extensile" "extensilely" ;
-lin nonextensile_A = mkA "nonextensile" "more nonextensile" "most nonextensile" "nonextensilely" ;
-lin sessile_A = mkA "sessile" "more sessile" "most sessile" "sessilely" ;
-lin fissile_A = mkA "fissile" "more fissile" "most fissile" "fissilely" ;
-lin nonfissile_A = mkA "nonfissile" "more nonfissile" "most nonfissile" "nonfissilely" ;
-lin protrusile_A = mkA "protrusile" "more protrusile" "most protrusile" "protrusilely" ;
-lin volatile_A = mkA "volatile" "more volatile" "most volatile" "volatilely" ;
-lin nonvolatile_A = mkA "nonvolatile" "more nonvolatile" "most nonvolatile" "nonvolatilely" ;
-lin versatile_A = mkA "versatile" "more versatile" "most versatile" "versatilely" ;
-lin retractile_A = mkA "retractile" "more retractile" "most retractile" "retractilely" ;
-lin nonretractile_A = mkA "nonretractile" "more nonretractile" "most nonretractile" "nonretractilely" ;
-lin contractile_A = mkA "contractile" "more contractile" "most contractile" "contractilely" ;
-lin protractile_A = mkA "protractile" "more protractile" "most protractile" "protractilely" ;
-lin tactile_A = mkA "tactile" "more tactile" "most tactile" "tactilely" ;
-lin projectile_A = mkA "projectile" "more projectile" "most projectile" "projectilely" ;
-lin erectile_A = mkA "erectile" "more erectile" "most erectile" "erectilely" ;
-lin fictile_A = mkA "fictile" "more fictile" "most fictile" "fictilely" ;
-lin ductile_A = mkA "ductile" "more ductile" "most ductile" "ductilely" ;
-lin mercantile_A = mkA "mercantile" "more mercantile" "most mercantile" "mercantilely" ;
-lin infantile_A = mkA "infantile" "more infantile" "most infantile" "infantilely" ;
-lin gentile_A = mkA "gentile" "more gentile" "most gentile" "gentilely" ;
-lin motile_A = mkA "motile" "more motile" "most motile" "motilely" ;
-lin nonmotile_A = mkA "nonmotile" "more nonmotile" "most nonmotile" "nonmotilely" ;
-lin fertile_A = mkA "fertile" "more fertile" "most fertile" "fertilely" ;
-lin infertile_A = mkA "infertile" "more infertile" "most infertile" "infertilely" ;
-lin hostile_A = mkA "hostile" "more hostile" "most hostile" "hostilely" ;
-lin futile_A = mkA "futile" "more futile" "most futile" "futilely" ;
-lin inutile_A = mkA "inutile" "more inutile" "most inutile" "inutilely" ;
-lin textile_A = mkA "textile" "more textile" "most textile" "textilely" ;
-lin servile_A = mkA "servile" "more servile" "most servile" "servilely" ;
-lin unservile_A = mkA "unservile" "more unservile" "most unservile" "unservilely" ;
-lin axile_A = mkA "axile" "more axile" "most axile" "axilely" ;
-lin ramshackle_A = mkA "ramshackle" "more ramshackle" "most ramshackle" "ramshacklely" ;
-lin fickle_A = mkA "fickle" "more fickle" "most fickle" "ficklely" ;
-lin creole_A = mkA "creole" "more creole" "most creole" "creolely" ;
-lin 'top-hole_A' = mkA "top-hole" "more top-hole" "most top-hole" "top-holely" ;
-lin whole_A = mkA "whole" "more whole" "most whole" "wholely" ;
-lin sole_A = mkA "sole" "more sole" "most sole" "solely" ;
-lin triple_A = mkA "triple" "more triple" "most triple" "triplely" ;
-lin multiple_A = mkA "multiple" "more multiple" "most multiple" "multiplely" ;
-lin purple_A = mkA "purple" "more purple" "most purple" "purplely" ;
-lin nonuple_A = mkA "nonuple" "more nonuple" "most nonuple" "nonuplely" ;
-lin quadruple_A = mkA "quadruple" "more quadruple" "most quadruple" "quadruplely" ;
-lin octuple_A = mkA "octuple" "more octuple" "most octuple" "octuplely" ;
-lin quintuple_A = mkA "quintuple" "more quintuple" "most quintuple" "quintuplely" ;
-lin septuple_A = mkA "septuple" "more septuple" "most septuple" "septuplely" ;
-lin sextuple_A = mkA "sextuple" "more sextuple" "most sextuple" "sextuplely" ;
-lin unsubtle_A = mkA "unsubtle" "more unsubtle" "most unsubtle" "unsubtlely" ;
-lin ungentle_A = mkA "ungentle" "more ungentle" "most ungentle" "ungentlely" ;
-lin brittle_A = mkA "brittle" "more brittle" "most brittle" "brittlely" ;
-lin majuscule_A = mkA "majuscule" "more majuscule" "most majuscule" "majusculely" ;
-lin minuscule_A = mkA "minuscule" "more minuscule" "most minuscule" "minusculely" ;
-lin prostyle_A = mkA "prostyle" "more prostyle" "most prostyle" "prostylely" ;
-lin game_A = mkA "game" "more game" "most game" "gamely" ;
-lin aflame_A = mkA "aflame" "more aflame" "most aflame" "aflamely" ;
-lin same_A = mkA "same" "more same" "most same" "samely" ;
-lin 'self-same_A' = mkA "self-same" "more self-same" "most self-same" "self-samely" ;
-lin supreme_A = mkA "supreme" "more supreme" "most supreme" "supremely" ;
-lin extreme_A = mkA "extreme" "more extreme" "most extreme" "extremely" ;
-lin sublime_A = mkA "sublime" "more sublime" "most sublime" "sublimely" ;
-lin prime_A = mkA "prime" "more prime" "most prime" "primely" ;
-lin 'old-time_A' = mkA "old-time" "more old-time" "most old-time" "old-timely" ;
-lin 'good-time_A' = mkA "good-time" "more good-time" "most good-time" "good-timely" ;
-lin 'one-time_A' = mkA "one-time" "more one-time" "most one-time" "one-timely" ;
-lin 'long-time_A' = mkA "long-time" "more long-time" "most long-time" "long-timely" ;
-lin 'full-time_A' = mkA "full-time" "more full-time" "most full-time" "full-timely" ;
-lin 'part-time_A' = mkA "part-time" "more part-time" "most part-time" "part-timely" ;
-lin maritime_A = mkA "maritime" "more maritime" "most maritime" "maritimely" ;
-lin smalltime_A = mkA "smalltime" "more smalltime" "most smalltime" "smalltimely" ;
-lin welcome_A = mkA "welcome" "more welcome" "most welcome" "welcomely" ;
-lin unwelcome_A = mkA "unwelcome" "more unwelcome" "most unwelcome" "unwelcomely" ;
-lin 'take-home_A' = mkA "take-home" "more take-home" "most take-home" "take-homely" ;
-lin monochrome_A = mkA "monochrome" "more monochrome" "most monochrome" "monochromely" ;
-lin frolicsome_A = mkA "frolicsome" "more frolicsome" "most frolicsome" "frolicsomely" ;
-lin gladsome_A = mkA "gladsome" "more gladsome" "most gladsome" "gladsomely" ;
-lin handsome_A = mkA "handsome" "more handsome" "most handsome" "handsomely" ;
-lin blithesome_A = mkA "blithesome" "more blithesome" "most blithesome" "blithesomely" ;
-lin troublesome_A = mkA "troublesome" "more troublesome" "most troublesome" "troublesomely" ;
-lin meddlesome_A = mkA "meddlesome" "more meddlesome" "most meddlesome" "meddlesomely" ;
-lin cuddlesome_A = mkA "cuddlesome" "more cuddlesome" "most cuddlesome" "cuddlesomely" ;
-lin wholesome_A = mkA "wholesome" "more wholesome" "most wholesome" "wholesomely" ;
-lin unwholesome_A = mkA "unwholesome" "more unwholesome" "most unwholesome" "unwholesomely" ;
-lin mettlesome_A = mkA "mettlesome" "more mettlesome" "most mettlesome" "mettlesomely" ;
-lin lonesome_A = mkA "lonesome" "more lonesome" "most lonesome" "lonesomely" ;
-lin tiresome_A = mkA "tiresome" "more tiresome" "most tiresome" "tiresomely" ;
-lin venturesome_A = mkA "venturesome" "more venturesome" "most venturesome" "venturesomely" ;
-lin adventuresome_A = mkA "adventuresome" "more adventuresome" "most adventuresome" "adventuresomely" ;
-lin gruesome_A = mkA "gruesome" "more gruesome" "most gruesome" "gruesomely" ;
-lin awesome_A = mkA "awesome" "more awesome" "most awesome" "awesomely" ;
-lin loathsome_A = mkA "loathsome" "more loathsome" "most loathsome" "loathsomely" ;
-lin toothsome_A = mkA "toothsome" "more toothsome" "most toothsome" "toothsomely" ;
-lin noisome_A = mkA "noisome" "more noisome" "most noisome" "noisomely" ;
-lin wearisome_A = mkA "wearisome" "more wearisome" "most wearisome" "wearisomely" ;
-lin worrisome_A = mkA "worrisome" "more worrisome" "most worrisome" "worrisomely" ;
-lin irksome_A = mkA "irksome" "more irksome" "most irksome" "irksomely" ;
-lin quarrelsome_A = mkA "quarrelsome" "more quarrelsome" "most quarrelsome" "quarrelsomely" ;
-lin toilsome_A = mkA "toilsome" "more toilsome" "most toilsome" "toilsomely" ;
-lin fulsome_A = mkA "fulsome" "more fulsome" "most fulsome" "fulsomely" ;
-lin burdensome_A = mkA "burdensome" "more burdensome" "most burdensome" "burdensomely" ;
-lin winsome_A = mkA "winsome" "more winsome" "most winsome" "winsomely" ;
-lin fearsome_A = mkA "fearsome" "more fearsome" "most fearsome" "fearsomely" ;
-lin cumbersome_A = mkA "cumbersome" "more cumbersome" "most cumbersome" "cumbersomely" ;
-lin bothersome_A = mkA "bothersome" "more bothersome" "most bothersome" "bothersomely" ;
-lin lissome_A = mkA "lissome" "more lissome" "most lissome" "lissomely" ;
-lin lightsome_A = mkA "lightsome" "more lightsome" "most lightsome" "lightsomely" ;
-lin urbane_A = mkA "urbane" "more urbane" "most urbane" "urbanely" ;
-lin arcane_A = mkA "arcane" "more arcane" "most arcane" "arcanely" ;
-lin mundane_A = mkA "mundane" "more mundane" "most mundane" "mundanely" ;
-lin transmundane_A = mkA "transmundane" "more transmundane" "most transmundane" "transmundanely" ;
-lin profane_A = mkA "profane" "more profane" "most profane" "profanely" ;
-lin 'three-lane_A' = mkA "three-lane" "more three-lane" "most three-lane" "three-lanely" ;
-lin multilane_A = mkA "multilane" "more multilane" "most multilane" "multilanely" ;
-lin germane_A = mkA "germane" "more germane" "most germane" "germanely" ;
-lin humane_A = mkA "humane" "more humane" "most humane" "humanely" ;
-lin inhumane_A = mkA "inhumane" "more inhumane" "most inhumane" "inhumanely" ;
-lin inane_A = mkA "inane" "more inane" "most inane" "inanely" ;
-lin insane_A = mkA "insane" "more insane" "most insane" "insanely" ;
-lin 'high-octane_A' = mkA "high-octane" "more high-octane" "most high-octane" "high-octanely" ;
-lin montane_A = mkA "montane" "more montane" "most montane" "montanely" ;
-lin tramontane_A = mkA "tramontane" "more tramontane" "most tramontane" "tramontanely" ;
-lin ultramontane_A = mkA "ultramontane" "more ultramontane" "most ultramontane" "ultramontanely" ;
-lin cismontane_A = mkA "cismontane" "more cismontane" "most cismontane" "cismontanely" ;
-lin damascene_A = mkA "damascene" "more damascene" "most damascene" "damascenely" ;
-lin obscene_A = mkA "obscene" "more obscene" "most obscene" "obscenely" ;
-lin scalene_A = mkA "scalene" "more scalene" "most scalene" "scalenely" ;
-lin philhellene_A = mkA "philhellene" "more philhellene" "most philhellene" "philhellenely" ;
-lin oxyacetylene_A = mkA "oxyacetylene" "more oxyacetylene" "most oxyacetylene" "oxyacetylenely" ;
-lin serene_A = mkA "serene" "more serene" "most serene" "serenely" ;
-lin limacine_A = mkA "limacine" "more limacine" "most limacine" "limacinely" ;
-lin australopithecine_A = mkA "australopithecine" "more australopithecine" "most australopithecine" "australopithecinely" ;
-lin internecine_A = mkA "internecine" "more internecine" "most internecine" "internecinely" ;
-lin phocine_A = mkA "phocine" "more phocine" "most phocine" "phocinely" ;
-lin hircine_A = mkA "hircine" "more hircine" "most hircine" "hircinely" ;
-lin porcine_A = mkA "porcine" "more porcine" "most porcine" "porcinely" ;
-lin piscine_A = mkA "piscine" "more piscine" "most piscine" "piscinely" ;
-lin oscine_A = mkA "oscine" "more oscine" "most oscine" "oscinely" ;
-lin affine_A = mkA "affine" "more affine" "most affine" "affinely" ;
-lin superfine_A = mkA "superfine" "more superfine" "most superfine" "superfinely" ;
-lin hyperfine_A = mkA "hyperfine" "more hyperfine" "most hyperfine" "hyperfinely" ;
-lin sphingine_A = mkA "sphingine" "more sphingine" "most sphingine" "sphinginely" ;
-lin catarrhine_A = mkA "catarrhine" "more catarrhine" "most catarrhine" "catarrhinely" ;
-lin errhine_A = mkA "errhine" "more errhine" "most errhine" "errhinely" ;
-lin leptorrhine_A = mkA "leptorrhine" "more leptorrhine" "most leptorrhine" "leptorrhinely" ;
-lin platyrrhine_A = mkA "platyrrhine" "more platyrrhine" "most platyrrhine" "platyrrhinely" ;
-lin thine_A = mkA "thine" "more thine" "most thine" "thinely" ;
-lin amaranthine_A = mkA "amaranthine" "more amaranthine" "most amaranthine" "amaranthinely" ;
-lin labyrinthine_A = mkA "labyrinthine" "more labyrinthine" "most labyrinthine" "labyrinthinely" ;
-lin bubaline_A = mkA "bubaline" "more bubaline" "most bubaline" "bubalinely" ;
-lin amygdaline_A = mkA "amygdaline" "more amygdaline" "most amygdaline" "amygdalinely" ;
-lin alkaline_A = mkA "alkaline" "more alkaline" "most alkaline" "alkalinely" ;
-lin saline_A = mkA "saline" "more saline" "most saline" "salinely" ;
-lin hyaline_A = mkA "hyaline" "more hyaline" "most hyaline" "hyalinely" ;
-lin oldline_A = mkA "oldline" "more oldline" "most oldline" "oldlinely" ;
-lin feline_A = mkA "feline" "more feline" "most feline" "felinely" ;
-lin anopheline_A = mkA "anopheline" "more anopheline" "most anopheline" "anophelinely" ;
-lin aquiline_A = mkA "aquiline" "more aquiline" "most aquiline" "aquilinely" ;
-lin crystalline_A = mkA "crystalline" "more crystalline" "most crystalline" "crystallinely" ;
-lin noncrystalline_A = mkA "noncrystalline" "more noncrystalline" "most noncrystalline" "noncrystallinely" ;
-lin microcrystalline_A = mkA "microcrystalline" "more microcrystalline" "most microcrystalline" "microcrystallinely" ;
-lin polycrystalline_A = mkA "polycrystalline" "more polycrystalline" "most polycrystalline" "polycrystallinely" ;
-lin sibylline_A = mkA "sibylline" "more sibylline" "most sibylline" "sibyllinely" ;
-lin borderline_A = mkA "borderline" "more borderline" "most borderline" "borderlinely" ;
-lin cauline_A = mkA "cauline" "more cauline" "most cauline" "caulinely" ;
-lin masculine_A = mkA "masculine" "more masculine" "most masculine" "masculinely" ;
-lin mine_A = mkA "mine" "more mine" "most mine" "minely" ;
-lin carmine_A = mkA "carmine" "more carmine" "most carmine" "carminely" ;
-lin canine_A = mkA "canine" "more canine" "most canine" "caninely" ;
-lin mezzanine_A = mkA "mezzanine" "more mezzanine" "most mezzanine" "mezzaninely" ;
-lin feminine_A = mkA "feminine" "more feminine" "most feminine" "femininely" ;
-lin unfeminine_A = mkA "unfeminine" "more unfeminine" "most unfeminine" "unfemininely" ;
-lin hominine_A = mkA "hominine" "more hominine" "most hominine" "homininely" ;
-lin asinine_A = mkA "asinine" "more asinine" "most asinine" "asininely" ;
-lin falconine_A = mkA "falconine" "more falconine" "most falconine" "falconinely" ;
-lin leonine_A = mkA "leonine" "more leonine" "most leonine" "leoninely" ;
-lin buteonine_A = mkA "buteonine" "more buteonine" "most buteonine" "buteoninely" ;
-lin saturnine_A = mkA "saturnine" "more saturnine" "most saturnine" "saturninely" ;
-lin alpine_A = mkA "alpine" "more alpine" "most alpine" "alpinely" ;
-lin cisalpine_A = mkA "cisalpine" "more cisalpine" "most cisalpine" "cisalpinely" ;
-lin transalpine_A = mkA "transalpine" "more transalpine" "most transalpine" "transalpinely" ;
-lin vulpine_A = mkA "vulpine" "more vulpine" "most vulpine" "vulpinely" ;
-lin Philippine_A = mkA "Philippine" "more Philippine" "most Philippine" "Philippinely" ;
-lin lupine_A = mkA "lupine" "more lupine" "most lupine" "lupinely" ;
-lin supine_A = mkA "supine" "more supine" "most supine" "supinely" ;
-lin saccharine_A = mkA "saccharine" "more saccharine" "most saccharine" "saccharinely" ;
-lin marine_A = mkA "marine" "more marine" "most marine" "marinely" ;
-lin ultramarine_A = mkA "ultramarine" "more ultramarine" "most ultramarine" "ultramarinely" ;
-lin submarine_A = mkA "submarine" "more submarine" "most submarine" "submarinely" ;
-lin antisubmarine_A = mkA "antisubmarine" "more antisubmarine" "most antisubmarine" "antisubmarinely" ;
-lin estuarine_A = mkA "estuarine" "more estuarine" "most estuarine" "estuarinely" ;
-lin eccrine_A = mkA "eccrine" "more eccrine" "most eccrine" "eccrinely" ;
-lin endocrine_A = mkA "endocrine" "more endocrine" "most endocrine" "endocrinely" ;
-lin neuroendocrine_A = mkA "neuroendocrine" "more neuroendocrine" "most neuroendocrine" "neuroendocrinely" ;
-lin apocrine_A = mkA "apocrine" "more apocrine" "most apocrine" "apocrinely" ;
-lin exocrine_A = mkA "exocrine" "more exocrine" "most exocrine" "exocrinely" ;
-lin tangerine_A = mkA "tangerine" "more tangerine" "most tangerine" "tangerinely" ;
-lin anserine_A = mkA "anserine" "more anserine" "most anserine" "anserinely" ;
-lin passerine_A = mkA "passerine" "more passerine" "most passerine" "passerinely" ;
-lin nonpasserine_A = mkA "nonpasserine" "more nonpasserine" "most nonpasserine" "nonpasserinely" ;
-lin adulterine_A = mkA "adulterine" "more adulterine" "most adulterine" "adulterinely" ;
-lin uterine_A = mkA "uterine" "more uterine" "most uterine" "uterinely" ;
-lin 'intra-uterine_A' = mkA "intra-uterine" "more intra-uterine" "most intra-uterine" "intra-uterinely" ;
-lin intrauterine_A = mkA "intrauterine" "more intrauterine" "most intrauterine" "intrauterinely" ;
-lin sapphirine_A = mkA "sapphirine" "more sapphirine" "most sapphirine" "sapphirinely" ;
-lin caprine_A = mkA "caprine" "more caprine" "most caprine" "caprinely" ;
-lin accipitrine_A = mkA "accipitrine" "more accipitrine" "most accipitrine" "accipitrinely" ;
-lin alpestrine_A = mkA "alpestrine" "more alpestrine" "most alpestrine" "alpestrinely" ;
-lin lacustrine_A = mkA "lacustrine" "more lacustrine" "most lacustrine" "lacustrinely" ;
-lin taurine_A = mkA "taurine" "more taurine" "most taurine" "taurinely" ;
-lin murine_A = mkA "murine" "more murine" "most murine" "murinely" ;
-lin ursine_A = mkA "ursine" "more ursine" "most ursine" "ursinely" ;
-lin palatine_A = mkA "palatine" "more palatine" "most palatine" "palatinely" ;
-lin benedictine_A = mkA "benedictine" "more benedictine" "most benedictine" "benedictinely" ;
-lin elephantine_A = mkA "elephantine" "more elephantine" "most elephantine" "elephantinely" ;
-lin adamantine_A = mkA "adamantine" "more adamantine" "most adamantine" "adamantinely" ;
-lin diamantine_A = mkA "diamantine" "more diamantine" "most diamantine" "diamantinely" ;
-lin levantine_A = mkA "levantine" "more levantine" "most levantine" "levantinely" ;
-lin serpentine_A = mkA "serpentine" "more serpentine" "most serpentine" "serpentinely" ;
-lin bisontine_A = mkA "bisontine" "more bisontine" "most bisontine" "bisontinely" ;
-lin clandestine_A = mkA "clandestine" "more clandestine" "most clandestine" "clandestinely" ;
-lin pristine_A = mkA "pristine" "more pristine" "most pristine" "pristinely" ;
-lin amethystine_A = mkA "amethystine" "more amethystine" "most amethystine" "amethystinely" ;
-lin routine_A = mkA "routine" "more routine" "most routine" "routinely" ;
-lin anguine_A = mkA "anguine" "more anguine" "most anguine" "anguinely" ;
-lin sanguine_A = mkA "sanguine" "more sanguine" "most sanguine" "sanguinely" ;
-lin genuine_A = mkA "genuine" "more genuine" "most genuine" "genuinely" ;
-lin equine_A = mkA "equine" "more equine" "most equine" "equinely" ;
-lin divine_A = mkA "divine" "more divine" "most divine" "divinely" ;
-lin alvine_A = mkA "alvine" "more alvine" "most alvine" "alvinely" ;
-lin ovine_A = mkA "ovine" "more ovine" "most ovine" "ovinely" ;
-lin bovine_A = mkA "bovine" "more bovine" "most bovine" "bovinely" ;
-lin cervine_A = mkA "cervine" "more cervine" "most cervine" "cervinely" ;
-lin corvine_A = mkA "corvine" "more corvine" "most corvine" "corvinely" ;
-lin underdone_A = mkA "underdone" "more underdone" "most underdone" "underdonely" ;
-lin woebegone_A = mkA "woebegone" "more woebegone" "most woebegone" "woebegonely" ;
-lin bygone_A = mkA "bygone" "more bygone" "most bygone" "bygonely" ;
-lin lone_A = mkA "lone" "more lone" "most lone" "lonely" ;
-lin prone_A = mkA "prone" "more prone" "most prone" "pronely" ;
-lin 'accident-prone_A' = mkA "accident-prone" "more accident-prone" "most accident-prone" "accident-pronely" ;
-lin baritone_A = mkA "baritone" "more baritone" "most baritone" "baritonely" ;
-lin moderne_A = mkA "moderne" "more moderne" "most moderne" "modernely" ;
-lin seaborne_A = mkA "seaborne" "more seaborne" "most seaborne" "seabornely" ;
-lin waterborne_A = mkA "waterborne" "more waterborne" "most waterborne" "waterbornely" ;
-lin airborne_A = mkA "airborne" "more airborne" "most airborne" "airbornely" ;
-lin triune_A = mkA "triune" "more triune" "most triune" "triunely" ;
-lin jejune_A = mkA "jejune" "more jejune" "most jejune" "jejunely" ;
-lin immune_A = mkA "immune" "more immune" "most immune" "immunely" ;
-lin autoimmune_A = mkA "autoimmune" "more autoimmune" "most autoimmune" "autoimmunely" ;
-lin opportune_A = mkA "opportune" "more opportune" "most opportune" "opportunely" ;
-lin inopportune_A = mkA "inopportune" "more inopportune" "most inopportune" "inopportunely" ;
-lin anodyne_A = mkA "anodyne" "more anodyne" "most anodyne" "anodynely" ;
-lin heterodyne_A = mkA "heterodyne" "more heterodyne" "most heterodyne" "heterodynely" ;
-lin tiptoe_A = mkA "tiptoe" "more tiptoe" "most tiptoe" "tiptoely" ;
-lin agape_A = mkA "agape" "more agape" "most agape" "agapely" ;
-lin shipshape_A = mkA "shipshape" "more shipshape" "most shipshape" "shipshapely" ;
-lin 'over-ripe_A' = mkA "over-ripe" "more over-ripe" "most over-ripe" "over-ripely" ;
-lin unripe_A = mkA "unripe" "more unripe" "most unripe" "unripely" ;
-lin overripe_A = mkA "overripe" "more overripe" "most overripe" "overripely" ;
-lin pinstripe_A = mkA "pinstripe" "more pinstripe" "most pinstripe" "pinstripely" ;
-lin threadbare_A = mkA "threadbare" "more threadbare" "most threadbare" "threadbarely" ;
-lin 'devil-may-care_A' = mkA "devil-may-care" "more devil-may-care" "most devil-may-care" "devil-may-carely" ;
-lin aflare_A = mkA "aflare" "more aflare" "most aflare" "aflarely" ;
-lin spare_A = mkA "spare" "more spare" "most spare" "sparely" ;
-lin square_A = mkA "square" "more square" "most square" "squarely" ;
-lin foursquare_A = mkA "foursquare" "more foursquare" "most foursquare" "foursquarely" ;
-lin aware_A = mkA "aware" "more aware" "most aware" "awarely" ;
-lin unaware_A = mkA "unaware" "more unaware" "most unaware" "unawarely" ;
-lin macabre_A = mkA "macabre" "more macabre" "most macabre" "macabrely" ;
-lin sombre_A = mkA "sombre" "more sombre" "most sombre" "sombrely" ;
-lin mediocre_A = mkA "mediocre" "more mediocre" "most mediocre" "mediocrely" ;
-lin sincere_A = mkA "sincere" "more sincere" "most sincere" "sincerely" ;
-lin insincere_A = mkA "insincere" "more insincere" "most insincere" "insincerely" ;
-lin mere_A = mkA "mere" "more mere" "most mere" "merely" ;
-lin sere_A = mkA "sere" "more sere" "most sere" "serely" ;
-lin austere_A = mkA "austere" "more austere" "most austere" "austerely" ;
-lin severe_1_A = mkA "severe" "more severe" "most severe" "severely" ;
-lin meagre_A = mkA "meagre" "more meagre" "most meagre" "meagrely" ;
-lin doctrinaire_A = mkA "doctrinaire" "more doctrinaire" "most doctrinaire" "doctrinairely" ;
-lin afire_A = mkA "afire" "more afire" "most afire" "afirely" ;
-lin sapphire_A = mkA "sapphire" "more sapphire" "most sapphire" "sapphirely" ;
-lin entire_A = mkA "entire" "more entire" "most entire" "entirely" ;
-lin haywire_A = mkA "haywire" "more haywire" "most haywire" "haywirely" ;
-lin 'smooth-bore_A' = mkA "smooth-bore" "more smooth-bore" "most smooth-bore" "smooth-borely" ;
-lin 'three-score_A' = mkA "three-score" "more three-score" "most three-score" "three-scorely" ;
-lin fourscore_A = mkA "fourscore" "more fourscore" "most fourscore" "fourscorely" ;
-lin fore_A = mkA "fore" "more fore" "most fore" "forely" ;
-lin offshore_A = mkA "offshore" "more offshore" "most offshore" "offshorely" ;
-lin inshore_A = mkA "inshore" "more inshore" "most inshore" "inshorely" ;
-lin onshore_A = mkA "onshore" "more onshore" "most onshore" "onshorely" ;
-lin extempore_A = mkA "extempore" "more extempore" "most extempore" "extemporely" ;
-lin sore_A = mkA "sore" "more sore" "most sore" "sorely" ;
-lin 'saddle-sore_A' = mkA "saddle-sore" "more saddle-sore" "most saddle-sore" "saddle-sorely" ;
-lin footsore_A = mkA "footsore" "more footsore" "most footsore" "footsorely" ;
-lin bizarre_A = mkA "bizarre" "more bizarre" "most bizarre" "bizarrely" ;
-lin 'lack-lustre_A' = mkA "lack-lustre" "more lack-lustre" "most lack-lustre" "lack-lustrely" ;
-lin secure_A = mkA "secure" "more secure" "most secure" "securely" ;
-lin insecure_A = mkA "insecure" "more insecure" "most insecure" "insecurely" ;
-lin obscure_A = mkA "obscure" "more obscure" "most obscure" "obscurely" ;
-lin 'three-figure_A' = mkA "three-figure" "more three-figure" "most three-figure" "three-figurely" ;
-lin 'de jure_A' = mkA "de jure" "more de jure" "most de jure" "de jurely" ;
-lin demure_A = mkA "demure" "more demure" "most demure" "demurely" ;
-lin impure_A = mkA "impure" "more impure" "most impure" "impurely" ;
-lin cocksure_A = mkA "cocksure" "more cocksure" "most cocksure" "cocksurely" ;
-lin unsure_A = mkA "unsure" "more unsure" "most unsure" "unsurely" ;
-lin footsure_A = mkA "footsure" "more footsure" "most footsure" "footsurely" ;
-lin miniature_A = mkA "miniature" "more miniature" "most miniature" "miniaturely" ;
-lin mature_A = mkA "mature" "more mature" "most mature" "maturely" ;
-lin premature_A = mkA "premature" "more premature" "most premature" "prematurely" ;
-lin immature_A = mkA "immature" "more immature" "most immature" "immaturely" ;
-lin future_A = mkA "future" "more future" "most future" "futurely" ;
-lin azure_A = mkA "azure" "more azure" "most azure" "azurely" ;
-lin uppercase_A = mkA "uppercase" "more uppercase" "most uppercase" "uppercasely" ;
-lin lowercase_A = mkA "lowercase" "more lowercase" "most lowercase" "lowercasely" ;
-lin 'go-as-you-please_A' = mkA "go-as-you-please" "more go-as-you-please" "most go-as-you-please" "go-as-you-pleasely" ;
-lin multiphase_A = mkA "multiphase" "more multiphase" "most multiphase" "multiphasely" ;
-lin obese_A = mkA "obese" "more obese" "most obese" "obesely" ;
-lin senegalese_A = mkA "senegalese" "more senegalese" "most senegalese" "senegalesely" ;
-lin singhalese_A = mkA "singhalese" "more singhalese" "most singhalese" "singhalesely" ;
-lin sinhalese_A = mkA "sinhalese" "more sinhalese" "most sinhalese" "sinhalesely" ;
-lin nepalese_A = mkA "nepalese" "more nepalese" "most nepalese" "nepalesely" ;
-lin congolese_A = mkA "congolese" "more congolese" "most congolese" "congolesely" ;
-lin togolese_A = mkA "togolese" "more togolese" "most togolese" "togolesely" ;
-lin siamese_A = mkA "siamese" "more siamese" "most siamese" "siamesely" ;
-lin Vietnamese_A = mkA "Vietnamese" "more Vietnamese" "most Vietnamese" "Vietnamesely" ;
-lin burmese_A = mkA "burmese" "more burmese" "most burmese" "burmesely" ;
-lin Lebanese_A = mkA "Lebanese" "more Lebanese" "most Lebanese" "Lebanesely" ;
-lin sudanese_A = mkA "sudanese" "more sudanese" "most sudanese" "sudanesely" ;
-lin Japanese_A = mkA "Japanese" "more Japanese" "most Japanese" "Japanesely" ;
-lin javanese_A = mkA "javanese" "more javanese" "most javanese" "javanesely" ;
-lin Taiwanese_A = mkA "Taiwanese" "more Taiwanese" "most Taiwanese" "Taiwanesely" ;
-lin guyanese_A = mkA "guyanese" "more guyanese" "most guyanese" "guyanesely" ;
-lin Chinese_A = mkA "Chinese" "more Chinese" "most Chinese" "Chinesely" ;
-lin beninese_A = mkA "beninese" "more beninese" "most beninese" "beninesely" ;
-lin 'san marinese_A' = mkA "san marinese" "more san marinese" "most san marinese" "san marinesely" ;
-lin gabonese_A = mkA "gabonese" "more gabonese" "most gabonese" "gabonesely" ;
-lin nipponese_A = mkA "nipponese" "more nipponese" "most nipponese" "nipponesely" ;
-lin maltese_A = mkA "maltese" "more maltese" "most maltese" "maltesely" ;
-lin Portuguese_A = mkA "Portuguese" "more Portuguese" "most Portuguese" "Portuguesely" ;
-lin lyonnaise_A = mkA "lyonnaise" "more lyonnaise" "most lyonnaise" "lyonnaisely" ;
-lin precise_A = mkA "precise" "more precise" "most precise" "precisely" ;
-lin imprecise_A = mkA "imprecise" "more imprecise" "most imprecise" "imprecisely" ;
-lin concise_A = mkA "concise" "more concise" "most concise" "concisely" ;
-lin 'high-rise_A' = mkA "high-rise" "more high-rise" "most high-rise" "high-risely" ;
-lin cerise_A = mkA "cerise" "more cerise" "most cerise" "cerisely" ;
-lin crabwise_A = mkA "crabwise" "more crabwise" "most crabwise" "crabwisely" ;
-lin lengthwise_A = mkA "lengthwise" "more lengthwise" "most lengthwise" "lengthwisely" ;
-lin clockwise_A = mkA "clockwise" "more clockwise" "most clockwise" "clockwisely" ;
-lin counterclockwise_A = mkA "counterclockwise" "more counterclockwise" "most counterclockwise" "counterclockwisely" ;
-lin unwise_A = mkA "unwise" "more unwise" "most unwise" "unwisely" ;
-lin otherwise_A = mkA "otherwise" "more otherwise" "most otherwise" "otherwisely" ;
-lin crosswise_A = mkA "crosswise" "more crosswise" "most crosswise" "crosswisely" ;
-lin streetwise_A = mkA "streetwise" "more streetwise" "most streetwise" "streetwisely" ;
-lin coastwise_A = mkA "coastwise" "more coastwise" "most coastwise" "coastwisely" ;
-lin false_A = mkA "false" "more false" "most false" "falsely" ;
-lin immense_A = mkA "immense" "more immense" "most immense" "immensely" ;
-lin commonsense_A = mkA "commonsense" "more commonsense" "most commonsense" "commonsensely" ;
-lin intense_A = mkA "intense" "more intense" "most intense" "intensely" ;
-lin corymbose_A = mkA "corymbose" "more corymbose" "most corymbose" "corymbosely" ;
-lin verbose_A = mkA "verbose" "more verbose" "most verbose" "verbosely" ;
-lin floccose_A = mkA "floccose" "more floccose" "most floccose" "floccosely" ;
-lin bellicose_A = mkA "bellicose" "more bellicose" "most bellicose" "bellicosely" ;
-lin varicose_A = mkA "varicose" "more varicose" "most varicose" "varicosely" ;
-lin ventricose_A = mkA "ventricose" "more ventricose" "most ventricose" "ventricosely" ;
-lin jocose_A = mkA "jocose" "more jocose" "most jocose" "jocosely" ;
-lin verrucose_A = mkA "verrucose" "more verrucose" "most verrucose" "verrucosely" ;
-lin rugose_A = mkA "rugose" "more rugose" "most rugose" "rugosely" ;
-lin grandiose_A = mkA "grandiose" "more grandiose" "most grandiose" "grandiosely" ;
-lin ariose_A = mkA "ariose" "more ariose" "most ariose" "ariosely" ;
-lin otiose_A = mkA "otiose" "more otiose" "most otiose" "otiosely" ;
-lin fibrillose_A = mkA "fibrillose" "more fibrillose" "most fibrillose" "fibrillosely" ;
-lin chlorophyllose_A = mkA "chlorophyllose" "more chlorophyllose" "most chlorophyllose" "chlorophyllosely" ;
-lin nodulose_A = mkA "nodulose" "more nodulose" "most nodulose" "nodulosely" ;
-lin squamulose_A = mkA "squamulose" "more squamulose" "most squamulose" "squamulosely" ;
-lin torulose_A = mkA "torulose" "more torulose" "most torulose" "torulosely" ;
-lin racemose_A = mkA "racemose" "more racemose" "most racemose" "racemosely" ;
-lin rimose_A = mkA "rimose" "more rimose" "most rimose" "rimosely" ;
-lin cymose_A = mkA "cymose" "more cymose" "most cymose" "cymosely" ;
-lin lachrymose_A = mkA "lachrymose" "more lachrymose" "most lachrymose" "lachrymosely" ;
-lin 'pug-nose_A' = mkA "pug-nose" "more pug-nose" "most pug-nose" "pug-nosely" ;
-lin spinose_A = mkA "spinose" "more spinose" "most spinose" "spinosely" ;
-lin footloose_A = mkA "footloose" "more footloose" "most footloose" "footloosely" ;
-lin scapose_A = mkA "scapose" "more scapose" "most scapose" "scaposely" ;
-lin adipose_A = mkA "adipose" "more adipose" "most adipose" "adiposely" ;
-lin pappose_A = mkA "pappose" "more pappose" "most pappose" "papposely" ;
-lin multipurpose_A = mkA "multipurpose" "more multipurpose" "most multipurpose" "multipurposely" ;
-lin erose_A = mkA "erose" "more erose" "most erose" "erosely" ;
-lin morose_A = mkA "morose" "more morose" "most morose" "morosely" ;
-lin porose_A = mkA "porose" "more porose" "most porose" "porosely" ;
-lin comatose_A = mkA "comatose" "more comatose" "most comatose" "comatosely" ;
-lin semicomatose_A = mkA "semicomatose" "more semicomatose" "most semicomatose" "semicomatosely" ;
-lin acetose_A = mkA "acetose" "more acetose" "most acetose" "acetosely" ;
-lin caespitose_A = mkA "caespitose" "more caespitose" "most caespitose" "caespitosely" ;
-lin tomentose_A = mkA "tomentose" "more tomentose" "most tomentose" "tomentosely" ;
-lin crustose_A = mkA "crustose" "more crustose" "most crustose" "crustosely" ;
-lin quartzose_A = mkA "quartzose" "more quartzose" "most quartzose" "quartzosely" ;
-lin averse_A = mkA "averse" "more averse" "most averse" "aversely" ;
-lin adverse_A = mkA "adverse" "more adverse" "most adverse" "adversely" ;
-lin reverse_A = mkA "reverse" "more reverse" "most reverse" "reversely" ;
-lin diverse_A = mkA "diverse" "more diverse" "most diverse" "diversely" ;
-lin inverse_A = mkA "inverse" "more inverse" "most inverse" "inversely" ;
-lin converse_A = mkA "converse" "more converse" "most converse" "conversely" ;
-lin perverse_A = mkA "perverse" "more perverse" "most perverse" "perversely" ;
-lin transverse_A = mkA "transverse" "more transverse" "most transverse" "transversely" ;
-lin 'one-horse_A' = mkA "one-horse" "more one-horse" "most one-horse" "one-horsely" ;
-lin norse_A = mkA "norse" "more norse" "most norse" "norsely" ;
-lin retrorse_A = mkA "retrorse" "more retrorse" "most retrorse" "retrorsely" ;
-lin antrorse_A = mkA "antrorse" "more antrorse" "most antrorse" "antrorsely" ;
-lin sinistrorse_A = mkA "sinistrorse" "more sinistrorse" "most sinistrorse" "sinistrorsely" ;
-lin dextrorse_A = mkA "dextrorse" "more dextrorse" "most dextrorse" "dextrorsely" ;
-lin 'matter-of-course_A' = mkA "matter-of-course" "more matter-of-course" "most matter-of-course" "matter-of-coursely" ;
-lin chartreuse_A = mkA "chartreuse" "more chartreuse" "most chartreuse" "chartreusely" ;
-lin diffuse_A = mkA "diffuse" "more diffuse" "most diffuse" "diffusely" ;
-lin profuse_A = mkA "profuse" "more profuse" "most profuse" "profusely" ;
-lin recluse_A = mkA "recluse" "more recluse" "most recluse" "reclusely" ;
-lin greenhouse_A = mkA "greenhouse" "more greenhouse" "most greenhouse" "greenhousely" ;
-lin abstruse_A = mkA "abstruse" "more abstruse" "most abstruse" "abstrusely" ;
-lin obtuse_A = mkA "obtuse" "more obtuse" "most obtuse" "obtusely" ;
-lin celibate_A = mkA "celibate" "more celibate" "most celibate" "celibately" ;
-lin lobate_A = mkA "lobate" "more lobate" "most lobate" "lobately" ;
-lin bilobate_A = mkA "bilobate" "more bilobate" "most bilobate" "bilobately" ;
-lin trilobate_A = mkA "trilobate" "more trilobate" "most trilobate" "trilobately" ;
-lin baccate_A = mkA "baccate" "more baccate" "most baccate" "baccately" ;
-lin delicate_A = mkA "delicate" "more delicate" "most delicate" "delicately" ;
-lin indelicate_A = mkA "indelicate" "more indelicate" "most indelicate" "indelicately" ;
-lin overdelicate_A = mkA "overdelicate" "more overdelicate" "most overdelicate" "overdelicately" ;
-lin umbilicate_A = mkA "umbilicate" "more umbilicate" "most umbilicate" "umbilicately" ;
-lin triplicate_A = mkA "triplicate" "more triplicate" "most triplicate" "triplicately" ;
-lin duplicate_A = mkA "duplicate" "more duplicate" "most duplicate" "duplicately" ;
-lin quadruplicate_A = mkA "quadruplicate" "more quadruplicate" "most quadruplicate" "quadruplicately" ;
-lin spicate_A = mkA "spicate" "more spicate" "most spicate" "spicately" ;
-lin imbricate_A = mkA "imbricate" "more imbricate" "most imbricate" "imbricately" ;
-lin intricate_A = mkA "intricate" "more intricate" "most intricate" "intricately" ;
-lin falcate_A = mkA "falcate" "more falcate" "most falcate" "falcately" ;
-lin sulcate_A = mkA "sulcate" "more sulcate" "most sulcate" "sulcately" ;
-lin truncate_A = mkA "truncate" "more truncate" "most truncate" "truncately" ;
-lin bifurcate_A = mkA "bifurcate" "more bifurcate" "most bifurcate" "bifurcately" ;
-lin confiscate_A = mkA "confiscate" "more confiscate" "most confiscate" "confiscately" ;
-lin 'out-of-date_A' = mkA "out-of-date" "more out-of-date" "most out-of-date" "out-of-dately" ;
-lin 'up-to-date_A' = mkA "up-to-date" "more up-to-date" "most up-to-date" "up-to-dately" ;
-lin pedate_A = mkA "pedate" "more pedate" "most pedate" "pedately" ;
-lin sedate_A = mkA "sedate" "more sedate" "most sedate" "sedately" ;
-lin cordate_A = mkA "cordate" "more cordate" "most cordate" "cordately" ;
-lin chordate_A = mkA "chordate" "more chordate" "most chordate" "chordately" ;
-lin caudate_A = mkA "caudate" "more caudate" "most caudate" "caudately" ;
-lin acaudate_A = mkA "acaudate" "more acaudate" "most acaudate" "acaudately" ;
-lin chalybeate_A = mkA "chalybeate" "more chalybeate" "most chalybeate" "chalybeately" ;
-lin binucleate_A = mkA "binucleate" "more binucleate" "most binucleate" "binucleately" ;
-lin uninucleate_A = mkA "uninucleate" "more uninucleate" "most uninucleate" "uninucleately" ;
-lin trinucleate_A = mkA "trinucleate" "more trinucleate" "most trinucleate" "trinucleately" ;
-lin multinucleate_A = mkA "multinucleate" "more multinucleate" "most multinucleate" "multinucleately" ;
-lin aculeate_A = mkA "aculeate" "more aculeate" "most aculeate" "aculeately" ;
-lin cuneate_A = mkA "cuneate" "more cuneate" "most cuneate" "cuneately" ;
-lin aureate_A = mkA "aureate" "more aureate" "most aureate" "aureately" ;
-lin laureate_A = mkA "laureate" "more laureate" "most laureate" "laureately" ;
-lin roseate_A = mkA "roseate" "more roseate" "most roseate" "roseately" ;
-lin bracteate_A = mkA "bracteate" "more bracteate" "most bracteate" "bracteately" ;
-lin ebracteate_A = mkA "ebracteate" "more ebracteate" "most ebracteate" "ebracteately" ;
-lin aggregate_A = mkA "aggregate" "more aggregate" "most aggregate" "aggregately" ;
-lin obligate_A = mkA "obligate" "more obligate" "most obligate" "obligately" ;
-lin profligate_A = mkA "profligate" "more profligate" "most profligate" "profligately" ;
-lin elongate_A = mkA "elongate" "more elongate" "most elongate" "elongately" ;
-lin surrogate_A = mkA "surrogate" "more surrogate" "most surrogate" "surrogately" ;
-lin conjugate_A = mkA "conjugate" "more conjugate" "most conjugate" "conjugately" ;
-lin labiate_A = mkA "labiate" "more labiate" "most labiate" "labiately" ;
-lin bilabiate_A = mkA "bilabiate" "more bilabiate" "most bilabiate" "bilabiately" ;
-lin associate_A = mkA "associate" "more associate" "most associate" "associately" ;
-lin cruciate_A = mkA "cruciate" "more cruciate" "most cruciate" "cruciately" ;
-lin radiate_A = mkA "radiate" "more radiate" "most radiate" "radiately" ;
-lin mediate_A = mkA "mediate" "more mediate" "most mediate" "mediately" ;
-lin immediate_A = mkA "immediate" "more immediate" "most immediate" "immediately" ;
-lin intermediate_A = mkA "intermediate" "more intermediate" "most intermediate" "intermediately" ;
-lin collegiate_A = mkA "collegiate" "more collegiate" "most collegiate" "collegiately" ;
-lin intercollegiate_A = mkA "intercollegiate" "more intercollegiate" "most intercollegiate" "intercollegiately" ;
-lin fastigiate_A = mkA "fastigiate" "more fastigiate" "most fastigiate" "fastigiately" ;
-lin leptosporangiate_A = mkA "leptosporangiate" "more leptosporangiate" "most leptosporangiate" "leptosporangiately" ;
-lin eusporangiate_A = mkA "eusporangiate" "more eusporangiate" "most eusporangiate" "eusporangiately" ;
-lin brachiate_A = mkA "brachiate" "more brachiate" "most brachiate" "brachiately" ;
-lin branchiate_A = mkA "branchiate" "more branchiate" "most branchiate" "branchiately" ;
-lin abranchiate_A = mkA "abranchiate" "more abranchiate" "most abranchiate" "abranchiately" ;
-lin ciliate_A = mkA "ciliate" "more ciliate" "most ciliate" "ciliately" ;
-lin foliate_A = mkA "foliate" "more foliate" "most foliate" "foliately" ;
-lin defoliate_A = mkA "defoliate" "more defoliate" "most defoliate" "defoliately" ;
-lin quinquefoliate_A = mkA "quinquefoliate" "more quinquefoliate" "most quinquefoliate" "quinquefoliately" ;
-lin bifoliate_A = mkA "bifoliate" "more bifoliate" "most bifoliate" "bifoliately" ;
-lin unifoliate_A = mkA "unifoliate" "more unifoliate" "most unifoliate" "unifoliately" ;
-lin trifoliate_A = mkA "trifoliate" "more trifoliate" "most trifoliate" "trifoliately" ;
-lin perfoliate_A = mkA "perfoliate" "more perfoliate" "most perfoliate" "perfoliately" ;
-lin bivariate_A = mkA "bivariate" "more bivariate" "most bivariate" "bivariately" ;
-lin multivariate_A = mkA "multivariate" "more multivariate" "most multivariate" "multivariately" ;
-lin inebriate_A = mkA "inebriate" "more inebriate" "most inebriate" "inebriately" ;
-lin fimbriate_A = mkA "fimbriate" "more fimbriate" "most fimbriate" "fimbriately" ;
-lin appropriate_A = mkA "appropriate" "more appropriate" "most appropriate" "appropriately" ;
-lin inappropriate_A = mkA "inappropriate" "more inappropriate" "most inappropriate" "inappropriately" ;
-lin satiate_A = mkA "satiate" "more satiate" "most satiate" "satiately" ;
-lin insatiate_A = mkA "insatiate" "more insatiate" "most insatiate" "insatiately" ;
-lin initiate_A = mkA "initiate" "more initiate" "most initiate" "initiately" ;
-lin uninitiate_A = mkA "uninitiate" "more uninitiate" "most uninitiate" "uninitiately" ;
-lin alate_A = mkA "alate" "more alate" "most alate" "alately" ;
-lin oblate_A = mkA "oblate" "more oblate" "most oblate" "oblately" ;
-lin chelate_A = mkA "chelate" "more chelate" "most chelate" "chelately" ;
-lin umbellate_A = mkA "umbellate" "more umbellate" "most umbellate" "umbellately" ;
-lin cancellate_A = mkA "cancellate" "more cancellate" "most cancellate" "cancellately" ;
-lin flagellate_A = mkA "flagellate" "more flagellate" "most flagellate" "flagellately" ;
-lin biflagellate_A = mkA "biflagellate" "more biflagellate" "most biflagellate" "biflagellately" ;
-lin appellate_A = mkA "appellate" "more appellate" "most appellate" "appellately" ;
-lin carpellate_A = mkA "carpellate" "more carpellate" "most carpellate" "carpellately" ;
-lin verticillate_A = mkA "verticillate" "more verticillate" "most verticillate" "verticillately" ;
-lin papillate_A = mkA "papillate" "more papillate" "most papillate" "papillately" ;
-lin pistillate_A = mkA "pistillate" "more pistillate" "most pistillate" "pistillately" ;
-lin bullate_A = mkA "bullate" "more bullate" "most bullate" "bullately" ;
-lin calceolate_A = mkA "calceolate" "more calceolate" "most calceolate" "calceolately" ;
-lin lanceolate_A = mkA "lanceolate" "more lanceolate" "most lanceolate" "lanceolately" ;
-lin oblanceolate_A = mkA "oblanceolate" "more oblanceolate" "most oblanceolate" "oblanceolately" ;
-lin urceolate_A = mkA "urceolate" "more urceolate" "most urceolate" "urceolately" ;
-lin bracteolate_A = mkA "bracteolate" "more bracteolate" "most bracteolate" "bracteolately" ;
-lin alveolate_A = mkA "alveolate" "more alveolate" "most alveolate" "alveolately" ;
-lin foliolate_A = mkA "foliolate" "more foliolate" "most foliolate" "foliolately" ;
-lin etiolate_A = mkA "etiolate" "more etiolate" "most etiolate" "etiolately" ;
-lin inviolate_A = mkA "inviolate" "more inviolate" "most inviolate" "inviolately" ;
-lin prolate_A = mkA "prolate" "more prolate" "most prolate" "prolately" ;
-lin desolate_A = mkA "desolate" "more desolate" "most desolate" "desolately" ;
-lin disconsolate_A = mkA "disconsolate" "more disconsolate" "most disconsolate" "disconsolately" ;
-lin vacuolate_A = mkA "vacuolate" "more vacuolate" "most vacuolate" "vacuolately" ;
-lin mandibulate_A = mkA "mandibulate" "more mandibulate" "most mandibulate" "mandibulately" ;
-lin maculate_A = mkA "maculate" "more maculate" "most maculate" "maculately" ;
-lin immaculate_A = mkA "immaculate" "more immaculate" "most immaculate" "immaculately" ;
-lin orbiculate_A = mkA "orbiculate" "more orbiculate" "most orbiculate" "orbiculately" ;
-lin aciculate_A = mkA "aciculate" "more aciculate" "most aciculate" "aciculately" ;
-lin canaliculate_A = mkA "canaliculate" "more canaliculate" "most canaliculate" "canaliculately" ;
-lin vermiculate_A = mkA "vermiculate" "more vermiculate" "most vermiculate" "vermiculately" ;
-lin paniculate_A = mkA "paniculate" "more paniculate" "most paniculate" "paniculately" ;
-lin geniculate_A = mkA "geniculate" "more geniculate" "most geniculate" "geniculately" ;
-lin apiculate_A = mkA "apiculate" "more apiculate" "most apiculate" "apiculately" ;
-lin auriculate_A = mkA "auriculate" "more auriculate" "most auriculate" "auriculately" ;
-lin reticulate_A = mkA "reticulate" "more reticulate" "most reticulate" "reticulately" ;
-lin nonreticulate_A = mkA "nonreticulate" "more nonreticulate" "most nonreticulate" "nonreticulately" ;
-lin denticulate_A = mkA "denticulate" "more denticulate" "most denticulate" "denticulately" ;
-lin articulate_A = mkA "articulate" "more articulate" "most articulate" "articulately" ;
-lin inarticulate_A = mkA "inarticulate" "more inarticulate" "most inarticulate" "inarticulately" ;
-lin particulate_A = mkA "particulate" "more particulate" "most particulate" "particulately" ;
-lin nonparticulate_A = mkA "nonparticulate" "more nonparticulate" "most nonparticulate" "nonparticulately" ;
-lin unguiculate_A = mkA "unguiculate" "more unguiculate" "most unguiculate" "unguiculately" ;
-lin pedunculate_A = mkA "pedunculate" "more pedunculate" "most pedunculate" "pedunculately" ;
-lin carunculate_A = mkA "carunculate" "more carunculate" "most carunculate" "carunculately" ;
-lin tuberculate_A = mkA "tuberculate" "more tuberculate" "most tuberculate" "tuberculately" ;
-lin operculate_A = mkA "operculate" "more operculate" "most operculate" "operculately" ;
-lin calyculate_A = mkA "calyculate" "more calyculate" "most calyculate" "calyculately" ;
-lin undulate_A = mkA "undulate" "more undulate" "most undulate" "undulately" ;
-lin coagulate_A = mkA "coagulate" "more coagulate" "most coagulate" "coagulately" ;
-lin triangulate_A = mkA "triangulate" "more triangulate" "most triangulate" "triangulately" ;
-lin lingulate_A = mkA "lingulate" "more lingulate" "most lingulate" "lingulately" ;
-lin ungulate_A = mkA "ungulate" "more ungulate" "most ungulate" "ungulately" ;
-lin campanulate_A = mkA "campanulate" "more campanulate" "most campanulate" "campanulately" ;
-lin crenulate_A = mkA "crenulate" "more crenulate" "most crenulate" "crenulately" ;
-lin catenulate_A = mkA "catenulate" "more catenulate" "most catenulate" "catenulately" ;
-lin serrulate_A = mkA "serrulate" "more serrulate" "most serrulate" "serrulately" ;
-lin capsulate_A = mkA "capsulate" "more capsulate" "most capsulate" "capsulately" ;
-lin spatulate_A = mkA "spatulate" "more spatulate" "most spatulate" "spatulately" ;
-lin amalgamate_A = mkA "amalgamate" "more amalgamate" "most amalgamate" "amalgamately" ;
-lin sublimate_A = mkA "sublimate" "more sublimate" "most sublimate" "sublimately" ;
-lin animate_A = mkA "animate" "more animate" "most animate" "animately" ;
-lin inanimate_A = mkA "inanimate" "more inanimate" "most inanimate" "inanimately" ;
-lin legitimate_A = mkA "legitimate" "more legitimate" "most legitimate" "legitimately" ;
-lin illegitimate_A = mkA "illegitimate" "more illegitimate" "most illegitimate" "illegitimately" ;
-lin ultimate_A = mkA "ultimate" "more ultimate" "most ultimate" "ultimately" ;
-lin penultimate_A = mkA "penultimate" "more penultimate" "most penultimate" "penultimately" ;
-lin antepenultimate_A = mkA "antepenultimate" "more antepenultimate" "most antepenultimate" "antepenultimately" ;
-lin intimate_A = mkA "intimate" "more intimate" "most intimate" "intimately" ;
-lin proximate_A = mkA "proximate" "more proximate" "most proximate" "proximately" ;
-lin approximate_A = mkA "approximate" "more approximate" "most approximate" "approximately" ;
-lin palmate_A = mkA "palmate" "more palmate" "most palmate" "palmately" ;
-lin consummate_A = mkA "consummate" "more consummate" "most consummate" "consummately" ;
-lin comate_A = mkA "comate" "more comate" "most comate" "comately" ;
-lin plumate_A = mkA "plumate" "more plumate" "most plumate" "plumately" ;
-lin lanate_A = mkA "lanate" "more lanate" "most lanate" "lanately" ;
-lin planate_A = mkA "planate" "more planate" "most planate" "planately" ;
-lin adnate_A = mkA "adnate" "more adnate" "most adnate" "adnately" ;
-lin enate_A = mkA "enate" "more enate" "most enate" "enately" ;
-lin crenate_A = mkA "crenate" "more crenate" "most crenate" "crenately" ;
-lin agnate_A = mkA "agnate" "more agnate" "most agnate" "agnately" ;
-lin designate_A = mkA "designate" "more designate" "most designate" "designately" ;
-lin cognate_A = mkA "cognate" "more cognate" "most cognate" "cognately" ;
-lin binate_A = mkA "binate" "more binate" "most binate" "binately" ;
-lin turbinate_A = mkA "turbinate" "more turbinate" "most turbinate" "turbinately" ;
-lin runcinate_A = mkA "runcinate" "more runcinate" "most runcinate" "runcinately" ;
-lin subordinate_A = mkA "subordinate" "more subordinate" "most subordinate" "subordinately" ;
-lin insubordinate_A = mkA "insubordinate" "more insubordinate" "most insubordinate" "insubordinately" ;
-lin inordinate_A = mkA "inordinate" "more inordinate" "most inordinate" "inordinately" ;
-lin coordinate_A = mkA "coordinate" "more coordinate" "most coordinate" "coordinately" ;
-lin superordinate_A = mkA "superordinate" "more superordinate" "most superordinate" "superordinately" ;
-lin emarginate_A = mkA "emarginate" "more emarginate" "most emarginate" "emarginately" ;
-lin catkinate_A = mkA "catkinate" "more catkinate" "most catkinate" "catkinately" ;
-lin effeminate_A = mkA "effeminate" "more effeminate" "most effeminate" "effeminately" ;
-lin discriminate_A = mkA "discriminate" "more discriminate" "most discriminate" "discriminately" ;
-lin indiscriminate_A = mkA "indiscriminate" "more indiscriminate" "most indiscriminate" "indiscriminately" ;
-lin determinate_A = mkA "determinate" "more determinate" "most determinate" "determinately" ;
-lin indeterminate_A = mkA "indeterminate" "more indeterminate" "most indeterminate" "indeterminately" ;
-lin acuminate_A = mkA "acuminate" "more acuminate" "most acuminate" "acuminately" ;
-lin latinate_A = mkA "latinate" "more latinate" "most latinate" "latinately" ;
-lin pectinate_A = mkA "pectinate" "more pectinate" "most pectinate" "pectinately" ;
-lin obstinate_A = mkA "obstinate" "more obstinate" "most obstinate" "obstinately" ;
-lin predestinate_A = mkA "predestinate" "more predestinate" "most predestinate" "predestinately" ;
-lin agglutinate_A = mkA "agglutinate" "more agglutinate" "most agglutinate" "agglutinately" ;
-lin pennate_A = mkA "pennate" "more pennate" "most pennate" "pennately" ;
-lin innate_A = mkA "innate" "more innate" "most innate" "innately" ;
-lin pinnate_A = mkA "pinnate" "more pinnate" "most pinnate" "pinnately" ;
-lin bipinnate_A = mkA "bipinnate" "more bipinnate" "most bipinnate" "bipinnately" ;
-lin tripinnate_A = mkA "tripinnate" "more tripinnate" "most tripinnate" "tripinnately" ;
-lin connate_A = mkA "connate" "more connate" "most connate" "connately" ;
-lin companionate_A = mkA "companionate" "more companionate" "most companionate" "companionately" ;
-lin passionate_A = mkA "passionate" "more passionate" "most passionate" "passionately" ;
-lin compassionate_A = mkA "compassionate" "more compassionate" "most compassionate" "compassionately" ;
-lin uncompassionate_A = mkA "uncompassionate" "more uncompassionate" "most uncompassionate" "uncompassionately" ;
-lin dispassionate_A = mkA "dispassionate" "more dispassionate" "most dispassionate" "dispassionately" ;
-lin affectionate_A = mkA "affectionate" "more affectionate" "most affectionate" "affectionately" ;
-lin proportionate_A = mkA "proportionate" "more proportionate" "most proportionate" "proportionately" ;
-lin disproportionate_A = mkA "disproportionate" "more disproportionate" "most disproportionate" "disproportionately" ;
-lin extortionate_A = mkA "extortionate" "more extortionate" "most extortionate" "extortionately" ;
-lin incarnate_A = mkA "incarnate" "more incarnate" "most incarnate" "incarnately" ;
-lin reincarnate_A = mkA "reincarnate" "more reincarnate" "most reincarnate" "reincarnately" ;
-lin ternate_A = mkA "ternate" "more ternate" "most ternate" "ternately" ;
-lin quaternate_A = mkA "quaternate" "more quaternate" "most quaternate" "quaternately" ;
-lin alternate_A = mkA "alternate" "more alternate" "most alternate" "alternately" ;
-lin ornate_A = mkA "ornate" "more ornate" "most ornate" "ornately" ;
-lin fortunate_A = mkA "fortunate" "more fortunate" "most fortunate" "fortunately" ;
-lin unfortunate_A = mkA "unfortunate" "more unfortunate" "most unfortunate" "unfortunately" ;
-lin importunate_A = mkA "importunate" "more importunate" "most importunate" "importunately" ;
-lin inchoate_A = mkA "inchoate" "more inchoate" "most inchoate" "inchoately" ;
-lin forcipate_A = mkA "forcipate" "more forcipate" "most forcipate" "forcipately" ;
-lin crispate_A = mkA "crispate" "more crispate" "most crispate" "crispately" ;
-lin cuspate_A = mkA "cuspate" "more cuspate" "most cuspate" "cuspately" ;
-lin 'second-rate_A' = mkA "second-rate" "more second-rate" "most second-rate" "second-rately" ;
-lin 'third-rate_A' = mkA "third-rate" "more third-rate" "most third-rate" "third-rately" ;
-lin 'cut-rate_A' = mkA "cut-rate" "more cut-rate" "most cut-rate" "cut-rately" ;
-lin separate_A = mkA "separate" "more separate" "most separate" "separately" ;
-lin disparate_A = mkA "disparate" "more disparate" "most disparate" "disparately" ;
-lin celebrate_A = mkA "celebrate" "more celebrate" "most celebrate" "celebrately" ;
-lin palpebrate_A = mkA "palpebrate" "more palpebrate" "most palpebrate" "palpebrately" ;
-lin vertebrate_A = mkA "vertebrate" "more vertebrate" "most vertebrate" "vertebrately" ;
-lin invertebrate_A = mkA "invertebrate" "more invertebrate" "most invertebrate" "invertebrately" ;
-lin involucrate_A = mkA "involucrate" "more involucrate" "most involucrate" "involucrately" ;
-lin quadrate_A = mkA "quadrate" "more quadrate" "most quadrate" "quadrately" ;
-lin deliberate_A = mkA "deliberate" "more deliberate" "most deliberate" "deliberately" ;
-lin acerate_A = mkA "acerate" "more acerate" "most acerate" "acerately" ;
-lin lacerate_A = mkA "lacerate" "more lacerate" "most lacerate" "lacerately" ;
-lin eviscerate_A = mkA "eviscerate" "more eviscerate" "most eviscerate" "eviscerately" ;
-lin federate_A = mkA "federate" "more federate" "most federate" "federately" ;
-lin confederate_A = mkA "confederate" "more confederate" "most confederate" "confederately" ;
-lin considerate_A = mkA "considerate" "more considerate" "most considerate" "considerately" ;
-lin inconsiderate_A = mkA "inconsiderate" "more inconsiderate" "most inconsiderate" "inconsiderately" ;
-lin moderate_A = mkA "moderate" "more moderate" "most moderate" "moderately" ;
-lin immoderate_A = mkA "immoderate" "more immoderate" "most immoderate" "immoderately" ;
-lin agglomerate_A = mkA "agglomerate" "more agglomerate" "most agglomerate" "agglomerately" ;
-lin conglomerate_A = mkA "conglomerate" "more conglomerate" "most conglomerate" "conglomerately" ;
-lin numerate_A = mkA "numerate" "more numerate" "most numerate" "numerately" ;
-lin innumerate_A = mkA "innumerate" "more innumerate" "most innumerate" "innumerately" ;
-lin degenerate_A = mkA "degenerate" "more degenerate" "most degenerate" "degenerately" ;
-lin regenerate_A = mkA "regenerate" "more regenerate" "most regenerate" "regenerately" ;
-lin unregenerate_A = mkA "unregenerate" "more unregenerate" "most unregenerate" "unregenerately" ;
-lin temperate_A = mkA "temperate" "more temperate" "most temperate" "temperately" ;
-lin intemperate_A = mkA "intemperate" "more intemperate" "most intemperate" "intemperately" ;
-lin desperate_A = mkA "desperate" "more desperate" "most desperate" "desperately" ;
-lin inveterate_A = mkA "inveterate" "more inveterate" "most inveterate" "inveterately" ;
-lin literate_A = mkA "literate" "more literate" "most literate" "literately" ;
-lin preliterate_A = mkA "preliterate" "more preliterate" "most preliterate" "preliterately" ;
-lin semiliterate_A = mkA "semiliterate" "more semiliterate" "most semiliterate" "semiliterately" ;
-lin illiterate_A = mkA "illiterate" "more illiterate" "most illiterate" "illiterately" ;
-lin adulterate_A = mkA "adulterate" "more adulterate" "most adulterate" "adulterately" ;
-lin clathrate_A = mkA "clathrate" "more clathrate" "most clathrate" "clathrately" ;
-lin irate_A = mkA "irate" "more irate" "most irate" "irately" ;
-lin elaborate_A = mkA "elaborate" "more elaborate" "most elaborate" "elaborately" ;
-lin inelaborate_A = mkA "inelaborate" "more inelaborate" "most inelaborate" "inelaborately" ;
-lin imperforate_A = mkA "imperforate" "more imperforate" "most imperforate" "imperforately" ;
-lin corporate_A = mkA "corporate" "more corporate" "most corporate" "corporately" ;
-lin incorporate_A = mkA "incorporate" "more incorporate" "most incorporate" "incorporately" ;
-lin discorporate_A = mkA "discorporate" "more discorporate" "most discorporate" "discorporately" ;
-lin serrate_A = mkA "serrate" "more serrate" "most serrate" "serrately" ;
-lin biserrate_A = mkA "biserrate" "more biserrate" "most biserrate" "biserrately" ;
-lin calyptrate_A = mkA "calyptrate" "more calyptrate" "most calyptrate" "calyptrately" ;
-lin rostrate_A = mkA "rostrate" "more rostrate" "most rostrate" "rostrately" ;
-lin prostrate_A = mkA "prostrate" "more prostrate" "most prostrate" "prostrately" ;
-lin accurate_A = mkA "accurate" "more accurate" "most accurate" "accurately" ;
-lin inaccurate_A = mkA "inaccurate" "more inaccurate" "most inaccurate" "inaccurately" ;
-lin obdurate_A = mkA "obdurate" "more obdurate" "most obdurate" "obdurately" ;
-lin pandurate_A = mkA "pandurate" "more pandurate" "most pandurate" "pandurately" ;
-lin commensurate_A = mkA "commensurate" "more commensurate" "most commensurate" "commensurately" ;
-lin incommensurate_A = mkA "incommensurate" "more incommensurate" "most incommensurate" "incommensurately" ;
-lin lyrate_A = mkA "lyrate" "more lyrate" "most lyrate" "lyrately" ;
-lin sensate_A = mkA "sensate" "more sensate" "most sensate" "sensately" ;
-lin insensate_A = mkA "insensate" "more insensate" "most insensate" "insensately" ;
-lin decussate_A = mkA "decussate" "more decussate" "most decussate" "decussately" ;
-lin coarctate_A = mkA "coarctate" "more coarctate" "most coarctate" "coarctately" ;
-lin digitate_A = mkA "digitate" "more digitate" "most digitate" "digitately" ;
-lin capitate_A = mkA "capitate" "more capitate" "most capitate" "capitately" ;
-lin precipitate_A = mkA "precipitate" "more precipitate" "most precipitate" "precipitately" ;
-lin peltate_A = mkA "peltate" "more peltate" "most peltate" "peltately" ;
-lin dentate_A = mkA "dentate" "more dentate" "most dentate" "dentately" ;
-lin bidentate_A = mkA "bidentate" "more bidentate" "most bidentate" "bidentately" ;
-lin 'solid-state_A' = mkA "solid-state" "more solid-state" "most solid-state" "solid-stately" ;
-lin hastate_A = mkA "hastate" "more hastate" "most hastate" "hastately" ;
-lin intrastate_A = mkA "intrastate" "more intrastate" "most intrastate" "intrastately" ;
-lin testate_A = mkA "testate" "more testate" "most testate" "testately" ;
-lin intestate_A = mkA "intestate" "more intestate" "most intestate" "intestately" ;
-lin costate_A = mkA "costate" "more costate" "most costate" "costately" ;
-lin apostate_A = mkA "apostate" "more apostate" "most apostate" "apostately" ;
-lin prostate_A = mkA "prostate" "more prostate" "most prostate" "prostately" ;
-lin interstate_A = mkA "interstate" "more interstate" "most interstate" "interstately" ;
-lin sagittate_A = mkA "sagittate" "more sagittate" "most sagittate" "sagittately" ;
-lin acuate_A = mkA "acuate" "more acuate" "most acuate" "acuately" ;
-lin postgraduate_A = mkA "postgraduate" "more postgraduate" "most postgraduate" "postgraduately" ;
-lin attenuate_A = mkA "attenuate" "more attenuate" "most attenuate" "attenuately" ;
-lin sinuate_A = mkA "sinuate" "more sinuate" "most sinuate" "sinuately" ;
-lin adequate_A = mkA "adequate" "more adequate" "most adequate" "adequately" ;
-lin inadequate_A = mkA "inadequate" "more inadequate" "most inadequate" "inadequately" ;
-lin private_A = mkA "private" "more private" "most private" "privately" ;
-lin semiprivate_A = mkA "semiprivate" "more semiprivate" "most semiprivate" "semiprivately" ;
-lin ovate_A = mkA "ovate" "more ovate" "most ovate" "ovately" ;
-lin obovate_A = mkA "obovate" "more obovate" "most obovate" "obovately" ;
-lin acervate_A = mkA "acervate" "more acervate" "most acervate" "acervately" ;
-lin incurvate_A = mkA "incurvate" "more incurvate" "most incurvate" "incurvately" ;
-lin effete_A = mkA "effete" "more effete" "most effete" "effetely" ;
-lin obsolete_A = mkA "obsolete" "more obsolete" "most obsolete" "obsoletely" ;
-lin replete_A = mkA "replete" "more replete" "most replete" "repletely" ;
-lin complete_A = mkA "complete" "more complete" "most complete" "completely" ;
-lin incomplete_A = mkA "incomplete" "more incomplete" "most incomplete" "incompletely" ;
-lin concrete_A = mkA "concrete" "more concrete" "most concrete" "concretely" ;
-lin discrete_A = mkA "discrete" "more discrete" "most discrete" "discretely" ;
-lin indiscrete_A = mkA "indiscrete" "more indiscrete" "most indiscrete" "indiscretely" ;
-lin terete_A = mkA "terete" "more terete" "most terete" "teretely" ;
-lin recondite_A = mkA "recondite" "more recondite" "most recondite" "reconditely" ;
-lin erudite_A = mkA "erudite" "more erudite" "most erudite" "eruditely" ;
-lin 'off-white_A' = mkA "off-white" "more off-white" "most off-white" "off-whitely" ;
-lin 'milk-white_A' = mkA "milk-white" "more milk-white" "most milk-white" "milk-whitely" ;
-lin 'snow-white_A' = mkA "snow-white" "more snow-white" "most snow-white" "snow-whitely" ;
-lin 'lily-white_A' = mkA "lily-white" "more lily-white" "most lily-white" "lily-whitely" ;
-lin 'pre-raphaelite_A' = mkA "pre-raphaelite" "more pre-raphaelite" "most pre-raphaelite" "pre-raphaelitely" ;
-lin Carmelite_A = mkA "Carmelite" "more Carmelite" "most Carmelite" "Carmelitely" ;
-lin satellite_A = mkA "satellite" "more satellite" "most satellite" "satellitely" ;
-lin antisatellite_A = mkA "antisatellite" "more antisatellite" "most antisatellite" "antisatellitely" ;
-lin impolite_A = mkA "impolite" "more impolite" "most impolite" "impolitely" ;
-lin semite_A = mkA "semite" "more semite" "most semite" "semitely" ;
-lin 'anti-semite_A' = mkA "anti-semite" "more anti-semite" "most anti-semite" "anti-semitely" ;
-lin finite_A = mkA "finite" "more finite" "most finite" "finitely" ;
-lin definite_A = mkA "definite" "more definite" "most definite" "definitely" ;
-lin indefinite_A = mkA "indefinite" "more indefinite" "most indefinite" "indefinitely" ;
-lin infinite_A = mkA "infinite" "more infinite" "most infinite" "infinitely" ;
-lin preterite_A = mkA "preterite" "more preterite" "most preterite" "preteritely" ;
-lin favorite_A = mkA "favorite" "more favorite" "most favorite" "favoritely" ;
-lin trite_A = mkA "trite" "more trite" "most trite" "tritely" ;
-lin contrite_A = mkA "contrite" "more contrite" "most contrite" "contritely" ;
-lin favourite_A = mkA "favourite" "more favourite" "most favourite" "favouritely" ;
-lin requisite_A = mkA "requisite" "more requisite" "most requisite" "requisitely" ;
-lin prerequisite_A = mkA "prerequisite" "more prerequisite" "most prerequisite" "prerequisitely" ;
-lin exquisite_A = mkA "exquisite" "more exquisite" "most exquisite" "exquisitely" ;
-lin composite_A = mkA "composite" "more composite" "most composite" "compositely" ;
-lin apposite_A = mkA "apposite" "more apposite" "most apposite" "appositely" ;
-lin inapposite_A = mkA "inapposite" "more inapposite" "most inapposite" "inappositely" ;
-lin opposite_A = mkA "opposite" "more opposite" "most opposite" "oppositely" ;
-lin petite_A = mkA "petite" "more petite" "most petite" "petitely" ;
-lin bipartite_A = mkA "bipartite" "more bipartite" "most bipartite" "bipartitely" ;
-lin quadripartite_A = mkA "quadripartite" "more quadripartite" "most quadripartite" "quadripartitely" ;
-lin tripartite_A = mkA "tripartite" "more tripartite" "most tripartite" "tripartitely" ;
-lin multipartite_A = mkA "multipartite" "more multipartite" "most multipartite" "multipartitely" ;
-lin muscovite_A = mkA "muscovite" "more muscovite" "most muscovite" "muscovitely" ;
-lin svelte_A = mkA "svelte" "more svelte" "most svelte" "sveltely" ;
-lin andante_A = mkA "andante" "more andante" "most andante" "andantely" ;
-lin dilettante_A = mkA "dilettante" "more dilettante" "most dilettante" "dilettantely" ;
-lin fortemente_A = mkA "fortemente" "more fortemente" "most fortemente" "fortementely" ;
-lin lepidote_A = mkA "lepidote" "more lepidote" "most lepidote" "lepidotely" ;
-lin forte_A = mkA "forte" "more forte" "most forte" "fortely" ;
-lin outcaste_A = mkA "outcaste" "more outcaste" "most outcaste" "outcastely" ;
-lin chaste_A = mkA "chaste" "more chaste" "most chaste" "chastely" ;
-lin unchaste_A = mkA "unchaste" "more unchaste" "most unchaste" "unchastely" ;
-lin waste_A = mkA "waste" "more waste" "most waste" "wastely" ;
-lin acute_A = mkA "acute" "more acute" "most acute" "acutely" ;
-lin subacute_A = mkA "subacute" "more subacute" "most subacute" "subacutely" ;
-lin dilute_A = mkA "dilute" "more dilute" "most dilute" "dilutely" ;
-lin absolute_A = mkA "absolute" "more absolute" "most absolute" "absolutely" ;
-lin resolute_A = mkA "resolute" "more resolute" "most resolute" "resolutely" ;
-lin irresolute_A = mkA "irresolute" "more irresolute" "most irresolute" "irresolutely" ;
-lin dissolute_A = mkA "dissolute" "more dissolute" "most dissolute" "dissolutely" ;
-lin involute_A = mkA "involute" "more involute" "most involute" "involutely" ;
-lin convolute_A = mkA "convolute" "more convolute" "most convolute" "convolutely" ;
-lin mute_A = mkA "mute" "more mute" "most mute" "mutely" ;
-lin 'up-to-the-minute_A' = mkA "up-to-the-minute" "more up-to-the-minute" "most up-to-the-minute" "up-to-the-minutely" ;
-lin hirsute_A = mkA "hirsute" "more hirsute" "most hirsute" "hirsutely" ;
-lin destitute_A = mkA "destitute" "more destitute" "most destitute" "destitutely" ;
-lin astute_A = mkA "astute" "more astute" "most astute" "astutely" ;
-lin 'table d\'hôte_A' = mkA "table d'hôte" "more table d'hôte" "most table d'hôte" "table d'hôtely" ;
-lin due_A = mkA "due" "more due" "most due" "duely" ;
-lin undue_A = mkA "undue" "more undue" "most undue" "unduely" ;
-lin overdue_A = mkA "overdue" "more overdue" "most overdue" "overduely" ;
-lin analogue_A = mkA "analogue" "more analogue" "most analogue" "analoguely" ;
-lin 'true-blue_A' = mkA "true-blue" "more true-blue" "most true-blue" "true-bluely" ;
-lin 'peacock-blue_A' = mkA "peacock-blue" "more peacock-blue" "most peacock-blue" "peacock-bluely" ;
-lin 'sky-blue_A' = mkA "sky-blue" "more sky-blue" "most sky-blue" "sky-bluely" ;
-lin opaque_A = mkA "opaque" "more opaque" "most opaque" "opaquely" ;
-lin radiopaque_A = mkA "radiopaque" "more radiopaque" "most radiopaque" "radiopaquely" ;
-lin semiopaque_A = mkA "semiopaque" "more semiopaque" "most semiopaque" "semiopaquely" ;
-lin oblique_A = mkA "oblique" "more oblique" "most oblique" "obliquely" ;
-lin unique_A = mkA "unique" "more unique" "most unique" "uniquely" ;
-lin antique_A = mkA "antique" "more antique" "most antique" "antiquely" ;
-lin manque_A = mkA "manque" "more manque" "most manque" "manquely" ;
-lin baroque_A = mkA "baroque" "more baroque" "most baroque" "baroquely" ;
-lin monegasque_A = mkA "monegasque" "more monegasque" "most monegasque" "monegasquely" ;
-lin kafkaesque_A = mkA "kafkaesque" "more kafkaesque" "most kafkaesque" "kafkaesquely" ;
-lin burlesque_A = mkA "burlesque" "more burlesque" "most burlesque" "burlesquely" ;
-lin junoesque_A = mkA "junoesque" "more junoesque" "most junoesque" "junoesquely" ;
-lin picaresque_A = mkA "picaresque" "more picaresque" "most picaresque" "picaresquely" ;
-lin moresque_A = mkA "moresque" "more moresque" "most moresque" "moresquely" ;
-lin picturesque_A = mkA "picturesque" "more picturesque" "most picturesque" "picturesquely" ;
-lin grotesque_A = mkA "grotesque" "more grotesque" "most grotesque" "grotesquely" ;
-lin statuesque_A = mkA "statuesque" "more statuesque" "most statuesque" "statuesquely" ;
-lin brusque_A = mkA "brusque" "more brusque" "most brusque" "brusquely" ;
-lin untrue_A = mkA "untrue" "more untrue" "most untrue" "untruely" ;
-lin concave_A = mkA "concave" "more concave" "most concave" "concavely" ;
-lin biconcave_A = mkA "biconcave" "more biconcave" "most biconcave" "biconcavely" ;
-lin planoconcave_A = mkA "planoconcave" "more planoconcave" "most planoconcave" "planoconcavely" ;
-lin suave_A = mkA "suave" "more suave" "most suave" "suavely" ;
-lin champleve_A = mkA "champleve" "more champleve" "most champleve" "champlevely" ;
-lin pareve_A = mkA "pareve" "more pareve" "most pareve" "parevely" ;
-lin naive_1_A = mkA "naive" "more naive" "most naive" "naively" ;
-lin coercive_A = mkA "coercive" "more coercive" "most coercive" "coercively" ;
-lin conducive_A = mkA "conducive" "more conducive" "most conducive" "conducively" ;
-lin tardive_A = mkA "tardive" "more tardive" "most tardive" "tardively" ;
-lin live_A = mkA "live" "more live" "most live" "lively" ;
-lin alive_A = mkA "alive" "more alive" "most alive" "alively" ;
-lin olive_A = mkA "olive" "more olive" "most olive" "olively" ;
-lin abrasive_A = mkA "abrasive" "more abrasive" "most abrasive" "abrasively" ;
-lin persuasive_A = mkA "persuasive" "more persuasive" "most persuasive" "persuasively" ;
-lin unpersuasive_A = mkA "unpersuasive" "more unpersuasive" "most unpersuasive" "unpersuasively" ;
-lin assuasive_A = mkA "assuasive" "more assuasive" "most assuasive" "assuasively" ;
-lin dissuasive_A = mkA "dissuasive" "more dissuasive" "most dissuasive" "dissuasively" ;
-lin evasive_A = mkA "evasive" "more evasive" "most evasive" "evasively" ;
-lin invasive_A = mkA "invasive" "more invasive" "most invasive" "invasively" ;
-lin noninvasive_A = mkA "noninvasive" "more noninvasive" "most noninvasive" "noninvasively" ;
-lin pervasive_A = mkA "pervasive" "more pervasive" "most pervasive" "pervasively" ;
-lin adhesive_A = mkA "adhesive" "more adhesive" "most adhesive" "adhesively" ;
-lin nonadhesive_A = mkA "nonadhesive" "more nonadhesive" "most nonadhesive" "nonadhesively" ;
-lin cohesive_A = mkA "cohesive" "more cohesive" "most cohesive" "cohesively" ;
-lin decisive_A = mkA "decisive" "more decisive" "most decisive" "decisively" ;
-lin indecisive_A = mkA "indecisive" "more indecisive" "most indecisive" "indecisively" ;
-lin incisive_A = mkA "incisive" "more incisive" "most incisive" "incisively" ;
-lin derisive_A = mkA "derisive" "more derisive" "most derisive" "derisively" ;
-lin repulsive_A = mkA "repulsive" "more repulsive" "most repulsive" "repulsively" ;
-lin impulsive_A = mkA "impulsive" "more impulsive" "most impulsive" "impulsively" ;
-lin compulsive_A = mkA "compulsive" "more compulsive" "most compulsive" "compulsively" ;
-lin propulsive_A = mkA "propulsive" "more propulsive" "most propulsive" "propulsively" ;
-lin convulsive_A = mkA "convulsive" "more convulsive" "most convulsive" "convulsively" ;
-lin expansive_A = mkA "expansive" "more expansive" "most expansive" "expansively" ;
-lin unexpansive_A = mkA "unexpansive" "more unexpansive" "most unexpansive" "unexpansively" ;
-lin defensive_A = mkA "defensive" "more defensive" "most defensive" "defensively" ;
-lin offensive_A = mkA "offensive" "more offensive" "most offensive" "offensively" ;
-lin inoffensive_A = mkA "inoffensive" "more inoffensive" "most inoffensive" "inoffensively" ;
-lin comprehensive_A = mkA "comprehensive" "more comprehensive" "most comprehensive" "comprehensively" ;
-lin noncomprehensive_A = mkA "noncomprehensive" "more noncomprehensive" "most noncomprehensive" "noncomprehensively" ;
-lin apprehensive_A = mkA "apprehensive" "more apprehensive" "most apprehensive" "apprehensively" ;
-lin unapprehensive_A = mkA "unapprehensive" "more unapprehensive" "most unapprehensive" "unapprehensively" ;
-lin pensive_A = mkA "pensive" "more pensive" "most pensive" "pensively" ;
-lin suspensive_A = mkA "suspensive" "more suspensive" "most suspensive" "suspensively" ;
-lin expensive_A = mkA "expensive" "more expensive" "most expensive" "expensively" ;
-lin inexpensive_A = mkA "inexpensive" "more inexpensive" "most inexpensive" "inexpensively" ;
-lin intensive_A = mkA "intensive" "more intensive" "most intensive" "intensively" ;
-lin normotensive_A = mkA "normotensive" "more normotensive" "most normotensive" "normotensively" ;
-lin hypotensive_A = mkA "hypotensive" "more hypotensive" "most hypotensive" "hypotensively" ;
-lin hypertensive_A = mkA "hypertensive" "more hypertensive" "most hypertensive" "hypertensively" ;
-lin ostensive_A = mkA "ostensive" "more ostensive" "most ostensive" "ostensively" ;
-lin extensive_A = mkA "extensive" "more extensive" "most extensive" "extensively" ;
-lin coextensive_A = mkA "coextensive" "more coextensive" "most coextensive" "coextensively" ;
-lin responsive_A = mkA "responsive" "more responsive" "most responsive" "responsively" ;
-lin unresponsive_A = mkA "unresponsive" "more unresponsive" "most unresponsive" "unresponsively" ;
-lin plosive_A = mkA "plosive" "more plosive" "most plosive" "plosively" ;
-lin explosive_A = mkA "explosive" "more explosive" "most explosive" "explosively" ;
-lin nonexplosive_A = mkA "nonexplosive" "more nonexplosive" "most nonexplosive" "nonexplosively" ;
-lin purposive_A = mkA "purposive" "more purposive" "most purposive" "purposively" ;
-lin erosive_A = mkA "erosive" "more erosive" "most erosive" "erosively" ;
-lin corrosive_A = mkA "corrosive" "more corrosive" "most corrosive" "corrosively" ;
-lin aversive_A = mkA "aversive" "more aversive" "most aversive" "aversively" ;
-lin subversive_A = mkA "subversive" "more subversive" "most subversive" "subversively" ;
-lin ambiversive_A = mkA "ambiversive" "more ambiversive" "most ambiversive" "ambiversively" ;
-lin introversive_A = mkA "introversive" "more introversive" "most introversive" "introversively" ;
-lin extroversive_A = mkA "extroversive" "more extroversive" "most extroversive" "extroversively" ;
-lin cursive_A = mkA "cursive" "more cursive" "most cursive" "cursively" ;
-lin recursive_A = mkA "recursive" "more recursive" "most recursive" "recursively" ;
-lin incursive_A = mkA "incursive" "more incursive" "most incursive" "incursively" ;
-lin discursive_A = mkA "discursive" "more discursive" "most discursive" "discursively" ;
-lin massive_A = mkA "massive" "more massive" "most massive" "massively" ;
-lin passive_A = mkA "passive" "more passive" "most passive" "passively" ;
-lin impassive_A = mkA "impassive" "more impassive" "most impassive" "impassively" ;
-lin successive_A = mkA "successive" "more successive" "most successive" "successively" ;
-lin recessive_A = mkA "recessive" "more recessive" "most recessive" "recessively" ;
-lin concessive_A = mkA "concessive" "more concessive" "most concessive" "concessively" ;
-lin excessive_A = mkA "excessive" "more excessive" "most excessive" "excessively" ;
-lin degressive_A = mkA "degressive" "more degressive" "most degressive" "degressively" ;
-lin regressive_A = mkA "regressive" "more regressive" "most regressive" "regressively" ;
-lin aggressive_A = mkA "aggressive" "more aggressive" "most aggressive" "aggressively" ;
-lin unaggressive_A = mkA "unaggressive" "more unaggressive" "most unaggressive" "unaggressively" ;
-lin digressive_A = mkA "digressive" "more digressive" "most digressive" "digressively" ;
-lin progressive_A = mkA "progressive" "more progressive" "most progressive" "progressively" ;
-lin retrogressive_A = mkA "retrogressive" "more retrogressive" "most retrogressive" "retrogressively" ;
-lin depressive_A = mkA "depressive" "more depressive" "most depressive" "depressively" ;
-lin 'manic-depressive_A' = mkA "manic-depressive" "more manic-depressive" "most manic-depressive" "manic-depressively" ;
-lin repressive_A = mkA "repressive" "more repressive" "most repressive" "repressively" ;
-lin impressive_A = mkA "impressive" "more impressive" "most impressive" "impressively" ;
-lin unimpressive_A = mkA "unimpressive" "more unimpressive" "most unimpressive" "unimpressively" ;
-lin oppressive_A = mkA "oppressive" "more oppressive" "most oppressive" "oppressively" ;
-lin suppressive_A = mkA "suppressive" "more suppressive" "most suppressive" "suppressively" ;
-lin immunosuppressive_A = mkA "immunosuppressive" "more immunosuppressive" "most immunosuppressive" "immunosuppressively" ;
-lin expressive_A = mkA "expressive" "more expressive" "most expressive" "expressively" ;
-lin inexpressive_A = mkA "inexpressive" "more inexpressive" "most inexpressive" "inexpressively" ;
-lin obsessive_A = mkA "obsessive" "more obsessive" "most obsessive" "obsessively" ;
-lin possessive_A = mkA "possessive" "more possessive" "most possessive" "possessively" ;
-lin submissive_A = mkA "submissive" "more submissive" "most submissive" "submissively" ;
-lin admissive_A = mkA "admissive" "more admissive" "most admissive" "admissively" ;
-lin photoemissive_A = mkA "photoemissive" "more photoemissive" "most photoemissive" "photoemissively" ;
-lin omissive_A = mkA "omissive" "more omissive" "most omissive" "omissively" ;
-lin permissive_A = mkA "permissive" "more permissive" "most permissive" "permissively" ;
-lin unpermissive_A = mkA "unpermissive" "more unpermissive" "most unpermissive" "unpermissively" ;
-lin dismissive_A = mkA "dismissive" "more dismissive" "most dismissive" "dismissively" ;
-lin percussive_A = mkA "percussive" "more percussive" "most percussive" "percussively" ;
-lin abusive_A = mkA "abusive" "more abusive" "most abusive" "abusively" ;
-lin effusive_A = mkA "effusive" "more effusive" "most effusive" "effusively" ;
-lin suffusive_A = mkA "suffusive" "more suffusive" "most suffusive" "suffusively" ;
-lin occlusive_A = mkA "occlusive" "more occlusive" "most occlusive" "occlusively" ;
-lin preclusive_A = mkA "preclusive" "more preclusive" "most preclusive" "preclusively" ;
-lin inclusive_A = mkA "inclusive" "more inclusive" "most inclusive" "inclusively" ;
-lin conclusive_A = mkA "conclusive" "more conclusive" "most conclusive" "conclusively" ;
-lin inconclusive_A = mkA "inconclusive" "more inconclusive" "most inconclusive" "inconclusively" ;
-lin exclusive_A = mkA "exclusive" "more exclusive" "most exclusive" "exclusively" ;
-lin unexclusive_A = mkA "unexclusive" "more unexclusive" "most unexclusive" "unexclusively" ;
-lin elusive_A = mkA "elusive" "more elusive" "most elusive" "elusively" ;
-lin delusive_A = mkA "delusive" "more delusive" "most delusive" "delusively" ;
-lin allusive_A = mkA "allusive" "more allusive" "most allusive" "allusively" ;
-lin illusive_A = mkA "illusive" "more illusive" "most illusive" "illusively" ;
-lin collusive_A = mkA "collusive" "more collusive" "most collusive" "collusively" ;
-lin obtrusive_A = mkA "obtrusive" "more obtrusive" "most obtrusive" "obtrusively" ;
-lin unobtrusive_A = mkA "unobtrusive" "more unobtrusive" "most unobtrusive" "unobtrusively" ;
-lin intrusive_A = mkA "intrusive" "more intrusive" "most intrusive" "intrusively" ;
-lin unintrusive_A = mkA "unintrusive" "more unintrusive" "most unintrusive" "unintrusively" ;
-lin protrusive_A = mkA "protrusive" "more protrusive" "most protrusive" "protrusively" ;
-lin extrusive_A = mkA "extrusive" "more extrusive" "most extrusive" "extrusively" ;
-lin combative_A = mkA "combative" "more combative" "most combative" "combatively" ;
-lin probative_A = mkA "probative" "more probative" "most probative" "probatively" ;
-lin rebarbative_A = mkA "rebarbative" "more rebarbative" "most rebarbative" "rebarbatively" ;
-lin deprecative_A = mkA "deprecative" "more deprecative" "most deprecative" "deprecatively" ;
-lin medicative_A = mkA "medicative" "more medicative" "most medicative" "medicatively" ;
-lin predicative_A = mkA "predicative" "more predicative" "most predicative" "predicatively" ;
-lin indicative_A = mkA "indicative" "more indicative" "most indicative" "indicatively" ;
-lin adjudicative_A = mkA "adjudicative" "more adjudicative" "most adjudicative" "adjudicatively" ;
-lin significative_A = mkA "significative" "more significative" "most significative" "significatively" ;
-lin justificative_A = mkA "justificative" "more justificative" "most justificative" "justificatively" ;
-lin multiplicative_A = mkA "multiplicative" "more multiplicative" "most multiplicative" "multiplicatively" ;
-lin implicative_A = mkA "implicative" "more implicative" "most implicative" "implicatively" ;
-lin applicative_A = mkA "applicative" "more applicative" "most applicative" "applicatively" ;
-lin communicative_A = mkA "communicative" "more communicative" "most communicative" "communicatively" ;
-lin uncommunicative_A = mkA "uncommunicative" "more uncommunicative" "most uncommunicative" "uncommunicatively" ;
-lin fricative_A = mkA "fricative" "more fricative" "most fricative" "fricatively" ;
-lin nonprognosticative_A = mkA "nonprognosticative" "more nonprognosticative" "most nonprognosticative" "nonprognosticatively" ;
-lin reciprocative_A = mkA "reciprocative" "more reciprocative" "most reciprocative" "reciprocatively" ;
-lin vocative_A = mkA "vocative" "more vocative" "most vocative" "vocatively" ;
-lin evocative_A = mkA "evocative" "more evocative" "most evocative" "evocatively" ;
-lin provocative_A = mkA "provocative" "more provocative" "most provocative" "provocatively" ;
-lin unprovocative_A = mkA "unprovocative" "more unprovocative" "most unprovocative" "unprovocatively" ;
-lin educative_A = mkA "educative" "more educative" "most educative" "educatively" ;
-lin dative_A = mkA "dative" "more dative" "most dative" "datively" ;
-lin sedative_A = mkA "sedative" "more sedative" "most sedative" "sedatively" ;
-lin consolidative_A = mkA "consolidative" "more consolidative" "most consolidative" "consolidatively" ;
-lin oxidative_A = mkA "oxidative" "more oxidative" "most oxidative" "oxidatively" ;
-lin accommodative_A = mkA "accommodative" "more accommodative" "most accommodative" "accommodatively" ;
-lin delineative_A = mkA "delineative" "more delineative" "most delineative" "delineatively" ;
-lin creative_A = mkA "creative" "more creative" "most creative" "creatively" ;
-lin uncreative_A = mkA "uncreative" "more uncreative" "most uncreative" "uncreatively" ;
-lin propagative_A = mkA "propagative" "more propagative" "most propagative" "propagatively" ;
-lin negative_A = mkA "negative" "more negative" "most negative" "negatively" ;
-lin nonnegative_A = mkA "nonnegative" "more nonnegative" "most nonnegative" "nonnegatively" ;
-lin derogative_A = mkA "derogative" "more derogative" "most derogative" "derogatively" ;
-lin interrogative_A = mkA "interrogative" "more interrogative" "most interrogative" "interrogatively" ;
-lin purgative_A = mkA "purgative" "more purgative" "most purgative" "purgatively" ;
-lin appreciative_A = mkA "appreciative" "more appreciative" "most appreciative" "appreciatively" ;
-lin unappreciative_A = mkA "unappreciative" "more unappreciative" "most unappreciative" "unappreciatively" ;
-lin associative_A = mkA "associative" "more associative" "most associative" "associatively" ;
-lin nonassociative_A = mkA "nonassociative" "more nonassociative" "most nonassociative" "nonassociatively" ;
-lin dissociative_A = mkA "dissociative" "more dissociative" "most dissociative" "dissociatively" ;
-lin repudiative_A = mkA "repudiative" "more repudiative" "most repudiative" "repudiatively" ;
-lin retaliative_A = mkA "retaliative" "more retaliative" "most retaliative" "retaliatively" ;
-lin palliative_A = mkA "palliative" "more palliative" "most palliative" "palliatively" ;
-lin appropriative_A = mkA "appropriative" "more appropriative" "most appropriative" "appropriatively" ;
-lin propitiative_A = mkA "propitiative" "more propitiative" "most propitiative" "propitiatively" ;
-lin alleviative_A = mkA "alleviative" "more alleviative" "most alleviative" "alleviatively" ;
-lin talkative_A = mkA "talkative" "more talkative" "most talkative" "talkatively" ;
-lin ablative_A = mkA "ablative" "more ablative" "most ablative" "ablatively" ;
-lin relative_A = mkA "relative" "more relative" "most relative" "relatively" ;
-lin correlative_A = mkA "correlative" "more correlative" "most correlative" "correlatively" ;
-lin annihilative_A = mkA "annihilative" "more annihilative" "most annihilative" "annihilatively" ;
-lin assimilative_A = mkA "assimilative" "more assimilative" "most assimilative" "assimilatively" ;
-lin appellative_A = mkA "appellative" "more appellative" "most appellative" "appellatively" ;
-lin illative_A = mkA "illative" "more illative" "most illative" "illatively" ;
-lin contemplative_A = mkA "contemplative" "more contemplative" "most contemplative" "contemplatively" ;
-lin superlative_A = mkA "superlative" "more superlative" "most superlative" "superlatively" ;
-lin legislative_A = mkA "legislative" "more legislative" "most legislative" "legislatively" ;
-lin speculative_A = mkA "speculative" "more speculative" "most speculative" "speculatively" ;
-lin circulative_A = mkA "circulative" "more circulative" "most circulative" "circulatively" ;
-lin anticoagulative_A = mkA "anticoagulative" "more anticoagulative" "most anticoagulative" "anticoagulatively" ;
-lin regulative_A = mkA "regulative" "more regulative" "most regulative" "regulatively" ;
-lin dissimulative_A = mkA "dissimulative" "more dissimulative" "most dissimulative" "dissimulatively" ;
-lin stimulative_A = mkA "stimulative" "more stimulative" "most stimulative" "stimulatively" ;
-lin cumulative_A = mkA "cumulative" "more cumulative" "most cumulative" "cumulatively" ;
-lin accumulative_A = mkA "accumulative" "more accumulative" "most accumulative" "accumulatively" ;
-lin manipulative_A = mkA "manipulative" "more manipulative" "most manipulative" "manipulatively" ;
-lin copulative_A = mkA "copulative" "more copulative" "most copulative" "copulatively" ;
-lin amative_A = mkA "amative" "more amative" "most amative" "amatively" ;
-lin amalgamative_A = mkA "amalgamative" "more amalgamative" "most amalgamative" "amalgamatively" ;
-lin affirmative_A = mkA "affirmative" "more affirmative" "most affirmative" "affirmatively" ;
-lin formative_A = mkA "formative" "more formative" "most formative" "formatively" ;
-lin reformative_A = mkA "reformative" "more reformative" "most reformative" "reformatively" ;
-lin informative_A = mkA "informative" "more informative" "most informative" "informatively" ;
-lin uninformative_A = mkA "uninformative" "more uninformative" "most uninformative" "uninformatively" ;
-lin normative_A = mkA "normative" "more normative" "most normative" "normatively" ;
-lin nonnormative_A = mkA "nonnormative" "more nonnormative" "most nonnormative" "nonnormatively" ;
-lin native_A = mkA "native" "more native" "most native" "natively" ;
-lin designative_A = mkA "designative" "more designative" "most designative" "designatively" ;
-lin combinative_A = mkA "combinative" "more combinative" "most combinative" "combinatively" ;
-lin noncombinative_A = mkA "noncombinative" "more noncombinative" "most noncombinative" "noncombinatively" ;
-lin ratiocinative_A = mkA "ratiocinative" "more ratiocinative" "most ratiocinative" "ratiocinatively" ;
-lin subordinative_A = mkA "subordinative" "more subordinative" "most subordinative" "subordinatively" ;
-lin imaginative_A = mkA "imaginative" "more imaginative" "most imaginative" "imaginatively" ;
-lin unimaginative_A = mkA "unimaginative" "more unimaginative" "most unimaginative" "unimaginatively" ;
-lin contaminative_A = mkA "contaminative" "more contaminative" "most contaminative" "contaminatively" ;
-lin criminative_A = mkA "criminative" "more criminative" "most criminative" "criminatively" ;
-lin recriminative_A = mkA "recriminative" "more recriminative" "most recriminative" "recriminatively" ;
-lin discriminative_A = mkA "discriminative" "more discriminative" "most discriminative" "discriminatively" ;
-lin nominative_A = mkA "nominative" "more nominative" "most nominative" "nominatively" ;
-lin carminative_A = mkA "carminative" "more carminative" "most carminative" "carminatively" ;
-lin terminative_A = mkA "terminative" "more terminative" "most terminative" "terminatively" ;
-lin determinative_A = mkA "determinative" "more determinative" "most determinative" "determinatively" ;
-lin ruminative_A = mkA "ruminative" "more ruminative" "most ruminative" "ruminatively" ;
-lin agglutinative_A = mkA "agglutinative" "more agglutinative" "most agglutinative" "agglutinatively" ;
-lin nonnative_A = mkA "nonnative" "more nonnative" "most nonnative" "nonnatively" ;
-lin opinionative_A = mkA "opinionative" "more opinionative" "most opinionative" "opinionatively" ;
-lin sanctionative_A = mkA "sanctionative" "more sanctionative" "most sanctionative" "sanctionatively" ;
-lin detonative_A = mkA "detonative" "more detonative" "most detonative" "detonatively" ;
-lin alternative_A = mkA "alternative" "more alternative" "most alternative" "alternatively" ;
-lin inchoative_A = mkA "inchoative" "more inchoative" "most inchoative" "inchoatively" ;
-lin emancipative_A = mkA "emancipative" "more emancipative" "most emancipative" "emancipatively" ;
-lin declarative_A = mkA "declarative" "more declarative" "most declarative" "declaratively" ;
-lin separative_A = mkA "separative" "more separative" "most separative" "separatively" ;
-lin comparative_A = mkA "comparative" "more comparative" "most comparative" "comparatively" ;
-lin adumbrative_A = mkA "adumbrative" "more adumbrative" "most adumbrative" "adumbratively" ;
-lin lucrative_A = mkA "lucrative" "more lucrative" "most lucrative" "lucratively" ;
-lin deliberative_A = mkA "deliberative" "more deliberative" "most deliberative" "deliberatively" ;
-lin macerative_A = mkA "macerative" "more macerative" "most macerative" "maceratively" ;
-lin ulcerative_A = mkA "ulcerative" "more ulcerative" "most ulcerative" "ulceratively" ;
-lin accelerative_A = mkA "accelerative" "more accelerative" "most accelerative" "acceleratively" ;
-lin generative_A = mkA "generative" "more generative" "most generative" "generatively" ;
-lin degenerative_A = mkA "degenerative" "more degenerative" "most degenerative" "degeneratively" ;
-lin remunerative_A = mkA "remunerative" "more remunerative" "most remunerative" "remuneratively" ;
-lin unremunerative_A = mkA "unremunerative" "more unremunerative" "most unremunerative" "unremuneratively" ;
-lin imperative_A = mkA "imperative" "more imperative" "most imperative" "imperatively" ;
-lin operative_A = mkA "operative" "more operative" "most operative" "operatively" ;
-lin 'unco-operative_A' = mkA "unco-operative" "more unco-operative" "most unco-operative" "unco-operatively" ;
-lin preoperative_A = mkA "preoperative" "more preoperative" "most preoperative" "preoperatively" ;
-lin inoperative_A = mkA "inoperative" "more inoperative" "most inoperative" "inoperatively" ;
-lin cooperative_A = mkA "cooperative" "more cooperative" "most cooperative" "cooperatively" ;
-lin uncooperative_A = mkA "uncooperative" "more uncooperative" "most uncooperative" "uncooperatively" ;
-lin postoperative_A = mkA "postoperative" "more postoperative" "most postoperative" "postoperatively" ;
-lin recuperative_A = mkA "recuperative" "more recuperative" "most recuperative" "recuperatively" ;
-lin vituperative_A = mkA "vituperative" "more vituperative" "most vituperative" "vituperatively" ;
-lin commiserative_A = mkA "commiserative" "more commiserative" "most commiserative" "commiseratively" ;
-lin iterative_A = mkA "iterative" "more iterative" "most iterative" "iteratively" ;
-lin alliterative_A = mkA "alliterative" "more alliterative" "most alliterative" "alliteratively" ;
-lin integrative_A = mkA "integrative" "more integrative" "most integrative" "integratively" ;
-lin disintegrative_A = mkA "disintegrative" "more disintegrative" "most disintegrative" "disintegratively" ;
-lin collaborative_A = mkA "collaborative" "more collaborative" "most collaborative" "collaboratively" ;
-lin corroborative_A = mkA "corroborative" "more corroborative" "most corroborative" "corroboratively" ;
-lin decorative_A = mkA "decorative" "more decorative" "most decorative" "decoratively" ;
-lin pejorative_A = mkA "pejorative" "more pejorative" "most pejorative" "pejoratively" ;
-lin commemorative_A = mkA "commemorative" "more commemorative" "most commemorative" "commemoratively" ;
-lin evaporative_A = mkA "evaporative" "more evaporative" "most evaporative" "evaporatively" ;
-lin incorporative_A = mkA "incorporative" "more incorporative" "most incorporative" "incorporatively" ;
-lin restorative_A = mkA "restorative" "more restorative" "most restorative" "restoratively" ;
-lin narrative_A = mkA "narrative" "more narrative" "most narrative" "narratively" ;
-lin penetrative_A = mkA "penetrative" "more penetrative" "most penetrative" "penetratively" ;
-lin arbitrative_A = mkA "arbitrative" "more arbitrative" "most arbitrative" "arbitratively" ;
-lin administrative_A = mkA "administrative" "more administrative" "most administrative" "administratively" ;
-lin demonstrative_A = mkA "demonstrative" "more demonstrative" "most demonstrative" "demonstratively" ;
-lin undemonstrative_A = mkA "undemonstrative" "more undemonstrative" "most undemonstrative" "undemonstratively" ;
-lin illustrative_A = mkA "illustrative" "more illustrative" "most illustrative" "illustratively" ;
-lin curative_A = mkA "curative" "more curative" "most curative" "curatively" ;
-lin figurative_A = mkA "figurative" "more figurative" "most figurative" "figuratively" ;
-lin suppurative_A = mkA "suppurative" "more suppurative" "most suppurative" "suppuratively" ;
-lin nonsuppurative_A = mkA "nonsuppurative" "more nonsuppurative" "most nonsuppurative" "nonsuppuratively" ;
-lin adversative_A = mkA "adversative" "more adversative" "most adversative" "adversatively" ;
-lin causative_A = mkA "causative" "more causative" "most causative" "causatively" ;
-lin noncausative_A = mkA "noncausative" "more noncausative" "most noncausative" "noncausatively" ;
-lin accusative_A = mkA "accusative" "more accusative" "most accusative" "accusatively" ;
-lin vegetative_A = mkA "vegetative" "more vegetative" "most vegetative" "vegetatively" ;
-lin interpretative_A = mkA "interpretative" "more interpretative" "most interpretative" "interpretatively" ;
-lin meditative_A = mkA "meditative" "more meditative" "most meditative" "meditatively" ;
-lin agitative_A = mkA "agitative" "more agitative" "most agitative" "agitatively" ;
-lin cogitative_A = mkA "cogitative" "more cogitative" "most cogitative" "cogitatively" ;
-lin excogitative_A = mkA "excogitative" "more excogitative" "most excogitative" "excogitatively" ;
-lin qualitative_A = mkA "qualitative" "more qualitative" "most qualitative" "qualitatively" ;
-lin rehabilitative_A = mkA "rehabilitative" "more rehabilitative" "most rehabilitative" "rehabilitatively" ;
-lin debilitative_A = mkA "debilitative" "more debilitative" "most debilitative" "debilitatively" ;
-lin facilitative_A = mkA "facilitative" "more facilitative" "most facilitative" "facilitatively" ;
-lin imitative_A = mkA "imitative" "more imitative" "most imitative" "imitatively" ;
-lin nonimitative_A = mkA "nonimitative" "more nonimitative" "most nonimitative" "nonimitatively" ;
-lin exploitative_A = mkA "exploitative" "more exploitative" "most exploitative" "exploitatively" ;
-lin authoritative_A = mkA "authoritative" "more authoritative" "most authoritative" "authoritatively" ;
-lin quantitative_A = mkA "quantitative" "more quantitative" "most quantitative" "quantitatively" ;
-lin facultative_A = mkA "facultative" "more facultative" "most facultative" "facultatively" ;
-lin consultative_A = mkA "consultative" "more consultative" "most consultative" "consultatively" ;
-lin augmentative_A = mkA "augmentative" "more augmentative" "most augmentative" "augmentatively" ;
-lin alimentative_A = mkA "alimentative" "more alimentative" "most alimentative" "alimentatively" ;
-lin argumentative_A = mkA "argumentative" "more argumentative" "most argumentative" "argumentatively" ;
-lin unargumentative_A = mkA "unargumentative" "more unargumentative" "most unargumentative" "unargumentatively" ;
-lin representative_A = mkA "representative" "more representative" "most representative" "representatively" ;
-lin nonrepresentative_A = mkA "nonrepresentative" "more nonrepresentative" "most nonrepresentative" "nonrepresentatively" ;
-lin unrepresentative_A = mkA "unrepresentative" "more unrepresentative" "most unrepresentative" "unrepresentatively" ;
-lin tentative_A = mkA "tentative" "more tentative" "most tentative" "tentatively" ;
-lin denotative_A = mkA "denotative" "more denotative" "most denotative" "denotatively" ;
-lin connotative_A = mkA "connotative" "more connotative" "most connotative" "connotatively" ;
-lin optative_A = mkA "optative" "more optative" "most optative" "optatively" ;
-lin hortative_A = mkA "hortative" "more hortative" "most hortative" "hortatively" ;
-lin exhortative_A = mkA "exhortative" "more exhortative" "most exhortative" "exhortatively" ;
-lin stative_A = mkA "stative" "more stative" "most stative" "statively" ;
-lin mutative_A = mkA "mutative" "more mutative" "most mutative" "mutatively" ;
-lin commutative_A = mkA "commutative" "more commutative" "most commutative" "commutatively" ;
-lin putative_A = mkA "putative" "more putative" "most putative" "putatively" ;
-lin evaluative_A = mkA "evaluative" "more evaluative" "most evaluative" "evaluatively" ;
-lin derivative_A = mkA "derivative" "more derivative" "most derivative" "derivatively" ;
-lin underivative_A = mkA "underivative" "more underivative" "most underivative" "underivatively" ;
-lin innovative_A = mkA "innovative" "more innovative" "most innovative" "innovatively" ;
-lin preservative_A = mkA "preservative" "more preservative" "most preservative" "preservatively" ;
-lin conservative_A = mkA "conservative" "more conservative" "most conservative" "conservatively" ;
-lin ultraconservative_A = mkA "ultraconservative" "more ultraconservative" "most ultraconservative" "ultraconservatively" ;
-lin laxative_A = mkA "laxative" "more laxative" "most laxative" "laxatively" ;
-lin active_A = mkA "active" "more active" "most active" "actively" ;
-lin reactive_A = mkA "reactive" "more reactive" "most reactive" "reactively" ;
-lin unreactive_A = mkA "unreactive" "more unreactive" "most unreactive" "unreactively" ;
-lin putrefactive_A = mkA "putrefactive" "more putrefactive" "most putrefactive" "putrefactively" ;
-lin inactive_A = mkA "inactive" "more inactive" "most inactive" "inactively" ;
-lin psychoactive_A = mkA "psychoactive" "more psychoactive" "most psychoactive" "psychoactively" ;
-lin nonpsychoactive_A = mkA "nonpsychoactive" "more nonpsychoactive" "most nonpsychoactive" "nonpsychoactively" ;
-lin radioactive_A = mkA "radioactive" "more radioactive" "most radioactive" "radioactively" ;
-lin nonradioactive_A = mkA "nonradioactive" "more nonradioactive" "most nonradioactive" "nonradioactively" ;
-lin hypoactive_A = mkA "hypoactive" "more hypoactive" "most hypoactive" "hypoactively" ;
-lin proactive_A = mkA "proactive" "more proactive" "most proactive" "proactively" ;
-lin retroactive_A = mkA "retroactive" "more retroactive" "most retroactive" "retroactively" ;
-lin hyperactive_A = mkA "hyperactive" "more hyperactive" "most hyperactive" "hyperactively" ;
-lin interactive_A = mkA "interactive" "more interactive" "most interactive" "interactively" ;
-lin counteractive_A = mkA "counteractive" "more counteractive" "most counteractive" "counteractively" ;
-lin overactive_A = mkA "overactive" "more overactive" "most overactive" "overactively" ;
-lin refractive_A = mkA "refractive" "more refractive" "most refractive" "refractively" ;
-lin tractive_A = mkA "tractive" "more tractive" "most tractive" "tractively" ;
-lin subtractive_A = mkA "subtractive" "more subtractive" "most subtractive" "subtractively" ;
-lin detractive_A = mkA "detractive" "more detractive" "most detractive" "detractively" ;
-lin abstractive_A = mkA "abstractive" "more abstractive" "most abstractive" "abstractively" ;
-lin attractive_A = mkA "attractive" "more attractive" "most attractive" "attractively" ;
-lin unattractive_A = mkA "unattractive" "more unattractive" "most unattractive" "unattractively" ;
-lin defective_A = mkA "defective" "more defective" "most defective" "defectively" ;
-lin effective_A = mkA "effective" "more effective" "most effective" "effectively" ;
-lin ineffective_A = mkA "ineffective" "more ineffective" "most ineffective" "ineffectively" ;
-lin uneffective_A = mkA "uneffective" "more uneffective" "most uneffective" "uneffectively" ;
-lin infective_A = mkA "infective" "more infective" "most infective" "infectively" ;
-lin objective_A = mkA "objective" "more objective" "most objective" "objectively" ;
-lin unobjective_A = mkA "unobjective" "more unobjective" "most unobjective" "unobjectively" ;
-lin subjective_A = mkA "subjective" "more subjective" "most subjective" "subjectively" ;
-lin adjective_A = mkA "adjective" "more adjective" "most adjective" "adjectively" ;
-lin rejective_A = mkA "rejective" "more rejective" "most rejective" "rejectively" ;
-lin elective_A = mkA "elective" "more elective" "most elective" "electively" ;
-lin nonelective_A = mkA "nonelective" "more nonelective" "most nonelective" "nonelectively" ;
-lin selective_A = mkA "selective" "more selective" "most selective" "selectively" ;
-lin unselective_A = mkA "unselective" "more unselective" "most unselective" "unselectively" ;
-lin deflective_A = mkA "deflective" "more deflective" "most deflective" "deflectively" ;
-lin reflective_A = mkA "reflective" "more reflective" "most reflective" "reflectively" ;
-lin nonreflective_A = mkA "nonreflective" "more nonreflective" "most nonreflective" "nonreflectively" ;
-lin unreflective_A = mkA "unreflective" "more unreflective" "most unreflective" "unreflectively" ;
-lin collective_A = mkA "collective" "more collective" "most collective" "collectively" ;
-lin connective_A = mkA "connective" "more connective" "most connective" "connectively" ;
-lin respective_A = mkA "respective" "more respective" "most respective" "respectively" ;
-lin irrespective_A = mkA "irrespective" "more irrespective" "most irrespective" "irrespectively" ;
-lin prospective_A = mkA "prospective" "more prospective" "most prospective" "prospectively" ;
-lin retrospective_A = mkA "retrospective" "more retrospective" "most retrospective" "retrospectively" ;
-lin introspective_A = mkA "introspective" "more introspective" "most introspective" "introspectively" ;
-lin extrospective_A = mkA "extrospective" "more extrospective" "most extrospective" "extrospectively" ;
-lin corrective_A = mkA "corrective" "more corrective" "most corrective" "correctively" ;
-lin protective_A = mkA "protective" "more protective" "most protective" "protectively" ;
-lin unprotective_A = mkA "unprotective" "more unprotective" "most unprotective" "unprotectively" ;
-lin overprotective_A = mkA "overprotective" "more overprotective" "most overprotective" "overprotectively" ;
-lin advective_A = mkA "advective" "more advective" "most advective" "advectively" ;
-lin addictive_A = mkA "addictive" "more addictive" "most addictive" "addictively" ;
-lin nonaddictive_A = mkA "nonaddictive" "more nonaddictive" "most nonaddictive" "nonaddictively" ;
-lin predictive_A = mkA "predictive" "more predictive" "most predictive" "predictively" ;
-lin unpredictive_A = mkA "unpredictive" "more unpredictive" "most unpredictive" "unpredictively" ;
-lin vindictive_A = mkA "vindictive" "more vindictive" "most vindictive" "vindictively" ;
-lin unvindictive_A = mkA "unvindictive" "more unvindictive" "most unvindictive" "unvindictively" ;
-lin fictive_A = mkA "fictive" "more fictive" "most fictive" "fictively" ;
-lin afflictive_A = mkA "afflictive" "more afflictive" "most afflictive" "afflictively" ;
-lin restrictive_A = mkA "restrictive" "more restrictive" "most restrictive" "restrictively" ;
-lin nonrestrictive_A = mkA "nonrestrictive" "more nonrestrictive" "most nonrestrictive" "nonrestrictively" ;
-lin unrestrictive_A = mkA "unrestrictive" "more unrestrictive" "most unrestrictive" "unrestrictively" ;
-lin distinctive_A = mkA "distinctive" "more distinctive" "most distinctive" "distinctively" ;
-lin instinctive_A = mkA "instinctive" "more instinctive" "most instinctive" "instinctively" ;
-lin subjunctive_A = mkA "subjunctive" "more subjunctive" "most subjunctive" "subjunctively" ;
-lin adjunctive_A = mkA "adjunctive" "more adjunctive" "most adjunctive" "adjunctively" ;
-lin conjunctive_A = mkA "conjunctive" "more conjunctive" "most conjunctive" "conjunctively" ;
-lin disjunctive_A = mkA "disjunctive" "more disjunctive" "most disjunctive" "disjunctively" ;
-lin deductive_A = mkA "deductive" "more deductive" "most deductive" "deductively" ;
-lin reductive_A = mkA "reductive" "more reductive" "most reductive" "reductively" ;
-lin seductive_A = mkA "seductive" "more seductive" "most seductive" "seductively" ;
-lin unseductive_A = mkA "unseductive" "more unseductive" "most unseductive" "unseductively" ;
-lin inductive_A = mkA "inductive" "more inductive" "most inductive" "inductively" ;
-lin conductive_A = mkA "conductive" "more conductive" "most conductive" "conductively" ;
-lin nonconductive_A = mkA "nonconductive" "more nonconductive" "most nonconductive" "nonconductively" ;
-lin photoconductive_A = mkA "photoconductive" "more photoconductive" "most photoconductive" "photoconductively" ;
-lin productive_A = mkA "productive" "more productive" "most productive" "productively" ;
-lin reproductive_A = mkA "reproductive" "more reproductive" "most reproductive" "reproductively" ;
-lin nonproductive_A = mkA "nonproductive" "more nonproductive" "most nonproductive" "nonproductively" ;
-lin unproductive_A = mkA "unproductive" "more unproductive" "most unproductive" "unproductively" ;
-lin counterproductive_A = mkA "counterproductive" "more counterproductive" "most counterproductive" "counterproductively" ;
-lin obstructive_A = mkA "obstructive" "more obstructive" "most obstructive" "obstructively" ;
-lin destructive_A = mkA "destructive" "more destructive" "most destructive" "destructively" ;
-lin instructive_A = mkA "instructive" "more instructive" "most instructive" "instructively" ;
-lin uninstructive_A = mkA "uninstructive" "more uninstructive" "most uninstructive" "uninstructively" ;
-lin constructive_A = mkA "constructive" "more constructive" "most constructive" "constructively" ;
-lin reconstructive_A = mkA "reconstructive" "more reconstructive" "most reconstructive" "reconstructively" ;
-lin unconstructive_A = mkA "unconstructive" "more unconstructive" "most unconstructive" "unconstructively" ;
-lin accretive_A = mkA "accretive" "more accretive" "most accretive" "accretively" ;
-lin secretive_A = mkA "secretive" "more secretive" "most secretive" "secretively" ;
-lin prohibitive_A = mkA "prohibitive" "more prohibitive" "most prohibitive" "prohibitively" ;
-lin capacitive_A = mkA "capacitive" "more capacitive" "most capacitive" "capacitively" ;
-lin additive_A = mkA "additive" "more additive" "most additive" "additively" ;
-lin fugitive_A = mkA "fugitive" "more fugitive" "most fugitive" "fugitively" ;
-lin primitive_A = mkA "primitive" "more primitive" "most primitive" "primitively" ;
-lin genitive_A = mkA "genitive" "more genitive" "most genitive" "genitively" ;
-lin cognitive_A = mkA "cognitive" "more cognitive" "most cognitive" "cognitively" ;
-lin definitive_A = mkA "definitive" "more definitive" "most definitive" "definitively" ;
-lin infinitive_A = mkA "infinitive" "more infinitive" "most infinitive" "infinitively" ;
-lin punitive_A = mkA "punitive" "more punitive" "most punitive" "punitively" ;
-lin nutritive_A = mkA "nutritive" "more nutritive" "most nutritive" "nutritively" ;
-lin acquisitive_A = mkA "acquisitive" "more acquisitive" "most acquisitive" "acquisitively" ;
-lin unacquisitive_A = mkA "unacquisitive" "more unacquisitive" "most unacquisitive" "unacquisitively" ;
-lin inquisitive_A = mkA "inquisitive" "more inquisitive" "most inquisitive" "inquisitively" ;
-lin transitive_A = mkA "transitive" "more transitive" "most transitive" "transitively" ;
-lin intransitive_A = mkA "intransitive" "more intransitive" "most intransitive" "intransitively" ;
-lin sensitive_A = mkA "sensitive" "more sensitive" "most sensitive" "sensitively" ;
-lin insensitive_A = mkA "insensitive" "more insensitive" "most insensitive" "insensitively" ;
-lin nonsensitive_A = mkA "nonsensitive" "more nonsensitive" "most nonsensitive" "nonsensitively" ;
-lin radiosensitive_A = mkA "radiosensitive" "more radiosensitive" "most radiosensitive" "radiosensitively" ;
-lin hypersensitive_A = mkA "hypersensitive" "more hypersensitive" "most hypersensitive" "hypersensitively" ;
-lin oversensitive_A = mkA "oversensitive" "more oversensitive" "most oversensitive" "oversensitively" ;
-lin positive_A = mkA "positive" "more positive" "most positive" "positively" ;
-lin postpositive_A = mkA "postpositive" "more postpositive" "most postpositive" "postpositively" ;
-lin repetitive_A = mkA "repetitive" "more repetitive" "most repetitive" "repetitively" ;
-lin nonrepetitive_A = mkA "nonrepetitive" "more nonrepetitive" "most nonrepetitive" "nonrepetitively" ;
-lin competitive_A = mkA "competitive" "more competitive" "most competitive" "competitively" ;
-lin noncompetitive_A = mkA "noncompetitive" "more noncompetitive" "most noncompetitive" "noncompetitively" ;
-lin uncompetitive_A = mkA "uncompetitive" "more uncompetitive" "most uncompetitive" "uncompetitively" ;
-lin appetitive_A = mkA "appetitive" "more appetitive" "most appetitive" "appetitively" ;
-lin partitive_A = mkA "partitive" "more partitive" "most partitive" "partitively" ;
-lin intuitive_A = mkA "intuitive" "more intuitive" "most intuitive" "intuitively" ;
-lin counterintuitive_A = mkA "counterintuitive" "more counterintuitive" "most counterintuitive" "counterintuitively" ;
-lin assaultive_A = mkA "assaultive" "more assaultive" "most assaultive" "assaultively" ;
-lin substantive_A = mkA "substantive" "more substantive" "most substantive" "substantively" ;
-lin retentive_A = mkA "retentive" "more retentive" "most retentive" "retentively" ;
-lin unretentive_A = mkA "unretentive" "more unretentive" "most unretentive" "unretentively" ;
-lin attentive_A = mkA "attentive" "more attentive" "most attentive" "attentively" ;
-lin inattentive_A = mkA "inattentive" "more inattentive" "most inattentive" "inattentively" ;
-lin adventive_A = mkA "adventive" "more adventive" "most adventive" "adventively" ;
-lin preventive_A = mkA "preventive" "more preventive" "most preventive" "preventively" ;
-lin inventive_A = mkA "inventive" "more inventive" "most inventive" "inventively" ;
-lin plaintive_A = mkA "plaintive" "more plaintive" "most plaintive" "plaintively" ;
-lin appointive_A = mkA "appointive" "more appointive" "most appointive" "appointively" ;
-lin nonappointive_A = mkA "nonappointive" "more nonappointive" "most nonappointive" "nonappointively" ;
-lin motive_A = mkA "motive" "more motive" "most motive" "motively" ;
-lin emotive_A = mkA "emotive" "more emotive" "most emotive" "emotively" ;
-lin locomotive_A = mkA "locomotive" "more locomotive" "most locomotive" "locomotively" ;
-lin promotive_A = mkA "promotive" "more promotive" "most promotive" "promotively" ;
-lin electromotive_A = mkA "electromotive" "more electromotive" "most electromotive" "electromotively" ;
-lin automotive_A = mkA "automotive" "more automotive" "most automotive" "automotively" ;
-lin votive_A = mkA "votive" "more votive" "most votive" "votively" ;
-lin captive_A = mkA "captive" "more captive" "most captive" "captively" ;
-lin adaptive_A = mkA "adaptive" "more adaptive" "most adaptive" "adaptively" ;
-lin maladaptive_A = mkA "maladaptive" "more maladaptive" "most maladaptive" "maladaptively" ;
-lin contraceptive_A = mkA "contraceptive" "more contraceptive" "most contraceptive" "contraceptively" ;
-lin acceptive_A = mkA "acceptive" "more acceptive" "most acceptive" "acceptively" ;
-lin deceptive_A = mkA "deceptive" "more deceptive" "most deceptive" "deceptively" ;
-lin receptive_A = mkA "receptive" "more receptive" "most receptive" "receptively" ;
-lin unreceptive_A = mkA "unreceptive" "more unreceptive" "most unreceptive" "unreceptively" ;
-lin chemoreceptive_A = mkA "chemoreceptive" "more chemoreceptive" "most chemoreceptive" "chemoreceptively" ;
-lin nociceptive_A = mkA "nociceptive" "more nociceptive" "most nociceptive" "nociceptively" ;
-lin conceptive_A = mkA "conceptive" "more conceptive" "most conceptive" "conceptively" ;
-lin proprioceptive_A = mkA "proprioceptive" "more proprioceptive" "most proprioceptive" "proprioceptively" ;
-lin interoceptive_A = mkA "interoceptive" "more interoceptive" "most interoceptive" "interoceptively" ;
-lin exteroceptive_A = mkA "exteroceptive" "more exteroceptive" "most exteroceptive" "exteroceptively" ;
-lin perceptive_A = mkA "perceptive" "more perceptive" "most perceptive" "perceptively" ;
-lin unperceptive_A = mkA "unperceptive" "more unperceptive" "most unperceptive" "unperceptively" ;
-lin apperceptive_A = mkA "apperceptive" "more apperceptive" "most apperceptive" "apperceptively" ;
-lin descriptive_A = mkA "descriptive" "more descriptive" "most descriptive" "descriptively" ;
-lin undescriptive_A = mkA "undescriptive" "more undescriptive" "most undescriptive" "undescriptively" ;
-lin prescriptive_A = mkA "prescriptive" "more prescriptive" "most prescriptive" "prescriptively" ;
-lin inscriptive_A = mkA "inscriptive" "more inscriptive" "most inscriptive" "inscriptively" ;
-lin 'pre-emptive_A' = mkA "pre-emptive" "more pre-emptive" "most pre-emptive" "pre-emptively" ;
-lin redemptive_A = mkA "redemptive" "more redemptive" "most redemptive" "redemptively" ;
-lin preemptive_A = mkA "preemptive" "more preemptive" "most preemptive" "preemptively" ;
-lin presumptive_A = mkA "presumptive" "more presumptive" "most presumptive" "presumptively" ;
-lin consumptive_A = mkA "consumptive" "more consumptive" "most consumptive" "consumptively" ;
-lin assumptive_A = mkA "assumptive" "more assumptive" "most assumptive" "assumptively" ;
-lin adoptive_A = mkA "adoptive" "more adoptive" "most adoptive" "adoptively" ;
-lin chemisorptive_A = mkA "chemisorptive" "more chemisorptive" "most chemisorptive" "chemisorptively" ;
-lin eruptive_A = mkA "eruptive" "more eruptive" "most eruptive" "eruptively" ;
-lin irruptive_A = mkA "irruptive" "more irruptive" "most irruptive" "irruptively" ;
-lin corruptive_A = mkA "corruptive" "more corruptive" "most corruptive" "corruptively" ;
-lin disruptive_A = mkA "disruptive" "more disruptive" "most disruptive" "disruptively" ;
-lin assertive_A = mkA "assertive" "more assertive" "most assertive" "assertively" ;
-lin 'self-assertive_A' = mkA "self-assertive" "more self-assertive" "most self-assertive" "self-assertively" ;
-lin nonassertive_A = mkA "nonassertive" "more nonassertive" "most nonassertive" "nonassertively" ;
-lin unassertive_A = mkA "unassertive" "more unassertive" "most unassertive" "unassertively" ;
-lin abortive_A = mkA "abortive" "more abortive" "most abortive" "abortively" ;
-lin supportive_A = mkA "supportive" "more supportive" "most supportive" "supportively" ;
-lin unsupportive_A = mkA "unsupportive" "more unsupportive" "most unsupportive" "unsupportively" ;
-lin sportive_A = mkA "sportive" "more sportive" "most sportive" "sportively" ;
-lin furtive_A = mkA "furtive" "more furtive" "most furtive" "furtively" ;
-lin contrastive_A = mkA "contrastive" "more contrastive" "most contrastive" "contrastively" ;
-lin festive_A = mkA "festive" "more festive" "most festive" "festively" ;
-lin suggestive_A = mkA "suggestive" "more suggestive" "most suggestive" "suggestively" ;
-lin digestive_A = mkA "digestive" "more digestive" "most digestive" "digestively" ;
-lin congestive_A = mkA "congestive" "more congestive" "most congestive" "congestively" ;
-lin restive_A = mkA "restive" "more restive" "most restive" "restively" ;
-lin resistive_A = mkA "resistive" "more resistive" "most resistive" "resistively" ;
-lin assistive_A = mkA "assistive" "more assistive" "most assistive" "assistively" ;
-lin costive_A = mkA "costive" "more costive" "most costive" "costively" ;
-lin exhaustive_A = mkA "exhaustive" "more exhaustive" "most exhaustive" "exhaustively" ;
-lin adjustive_A = mkA "adjustive" "more adjustive" "most adjustive" "adjustively" ;
-lin maladjustive_A = mkA "maladjustive" "more maladjustive" "most maladjustive" "maladjustively" ;
-lin retributive_A = mkA "retributive" "more retributive" "most retributive" "retributively" ;
-lin distributive_A = mkA "distributive" "more distributive" "most distributive" "distributively" ;
-lin attributive_A = mkA "attributive" "more attributive" "most attributive" "attributively" ;
-lin consecutive_A = mkA "consecutive" "more consecutive" "most consecutive" "consecutively" ;
-lin executive_A = mkA "executive" "more executive" "most executive" "executively" ;
-lin diminutive_A = mkA "diminutive" "more diminutive" "most diminutive" "diminutively" ;
-lin constitutive_A = mkA "constitutive" "more constitutive" "most constitutive" "constitutively" ;
-lin reflexive_A = mkA "reflexive" "more reflexive" "most reflexive" "reflexively" ;
-lin bivalve_A = mkA "bivalve" "more bivalve" "most bivalve" "bivalvely" ;
-lin univalve_A = mkA "univalve" "more univalve" "most univalve" "univalvely" ;
-lin above_A = mkA "above" "more above" "most above" "abovely" ;
-lin mauve_A = mkA "mauve" "more mauve" "most mauve" "mauvely" ;
-lin naïve_A = mkA "naïve" "more naïve" "most naïve" "naïvely" ;
-lin luxe_A = mkA "luxe" "more luxe" "most luxe" "luxely" ;
-lin 'de luxe_A' = mkA "de luxe" "more de luxe" "most de luxe" "de luxely" ;
-lin deluxe_A = mkA "deluxe" "more deluxe" "most deluxe" "deluxely" ;
-lin 'bird\'s-eye_A' = mkA "bird's-eye" "more bird's-eye" "most bird's-eye" "bird's-eyely" ;
-lin fisheye_A = mkA "fisheye" "more fisheye" "most fisheye" "fisheyely" ;
-lin agaze_A = mkA "agaze" "more agaze" "most agaze" "agazely" ;
-lin ablaze_A = mkA "ablaze" "more ablaze" "most ablaze" "ablazely" ;
-lin 'life-size_A' = mkA "life-size" "more life-size" "most life-size" "life-sizely" ;
-lin 'half-size_A' = mkA "half-size" "more half-size" "most half-size" "half-sizely" ;
-lin 'king-size_A' = mkA "king-size" "more king-size" "most king-size" "king-sizely" ;
-lin undersize_A = mkA "undersize" "more undersize" "most undersize" "undersizely" ;
-lin oversize_A = mkA "oversize" "more oversize" "most oversize" "oversizely" ;
-lin outsize_A = mkA "outsize" "more outsize" "most outsize" "outsizely" ;
-lin née_A = mkA "née" "more née" "most née" "néely" ;
-lin passée_A = mkA "passée" "more passée" "most passée" "passéely" ;
-lin little_3_A = mkA "little" "littler" "littlest" "little" ;
-lin little_2_A = mkA "little" "lesser" "least" "little" ;
-lin blae_A = mkA "blae" "blaer" "blaest" "blaely" ;
-lin ace_A = mkA "ace" "acer" "acest" "acely" ;
-lin nice_A = mkA "nice" "nicer" "nicest" "nicely" ;
-lin scarce_A = mkA "scarce" "scarcer" "scarcest" "scarcely" ;
-lin fierce_A = mkA "fierce" "fiercer" "fiercest" "fiercely" ;
-lin jade_A = mkA "jade" "jader" "jadest" "jadely" ;
-lin wide_A = mkA "wide" "wider" "widest" "widely" ;
-lin rude_A = mkA "rude" "ruder" "rudest" "rudely" ;
-lin crude_A = mkA "crude" "cruder" "crudest" "crudely" ; -- notcompound rude_A ;
-lin free_A = mkA "free" "freer" "freest" "freely" ;
-lin safe_A = mkA "safe" "safer" "safest" "safely" ;
-lin beige_A = mkA "beige" "beiger" "beigest" "beigely" ;
-lin strange_A = mkA "strange" "stranger" "strangest" "strangely" ;
-lin large_A = mkA "large" "larger" "largest" "largely" ;
-lin louche_A = mkA "louche" "loucher" "louchest" "louchely" ;
-lin eerie_A = mkA "eerie" "eerier" "eeriest" "eeriely" ;
-lin fake_A = mkA "fake" "faker" "fakest" "fakely" ;
-lin pale_A = mkA "pale" "paler" "palest" "palely" ;
-lin stale_A = mkA "stale" "staler" "stalest" "stalely" ;
-lin able_A = mkA "able" "abler" "ablest" "ably" ;
-lin feeble_A = mkA "feeble" "feebler" "feeblest" "feebly" ;
-lin nimble_A = mkA "nimble" "nimbler" "nimblest" "nimbly" ;
-lin humble_A = mkA "humble" "humbler" "humblest" "humbly" ;
-lin noble_A = mkA "noble" "nobler" "noblest" "nobly" ;
-lin middle_A = mkA "middle" "middler" "middlest" "middlely" ;
-lin idle_A = mkA "idle" "idler" "idlest" "idlely" ;
-lin vile_A = mkA "vile" "viler" "vilest" "vilely" ;
-lin crackle_A = mkA "crackle" "crackler" "cracklest" "cracklely" ;
-lin staple_A = mkA "staple" "stapler" "staplest" "staplely" ;
-lin supple_A = mkA "supple" "suppler" "supplest" "supplely" ;
-lin ample_A = mkA "ample" "ampler" "amplest" "amply" ;
-lin simple_A = mkA "simple" "simpler" "simplest" "simply" ;
-lin subtle_A = mkA "subtle" "subtler" "subtlest" "subtlely" ;
-lin beetle_A = mkA "beetle" "beetler" "beetlest" "beetlely" ;
-lin gentle_A = mkA "gentle" "gentler" "gentlest" "gentlely" ;
-lin lame_A = mkA "lame" "lamer" "lamest" "lamely" ;
-lin tame_A = mkA "tame" "tamer" "tamest" "tamely" ;
-lin home_A = mkA "home" "homer" "homest" "homely" ;
-lin some_A = mkA "some" "somer" "somest" "somely" ;
-lin sane_A = mkA "sane" "saner" "sanest" "sanely" ;
-lin fine_A = mkA "fine" "finer" "finest" "finely" ;
-lin bone_A = mkA "bone" "boner" "bonest" "bonely" ;
-lin none_A = mkA "none" "noner" "nonest" "nonely" ;
-lin stone_A = mkA "stone" "stoner" "stonest" "stonely" ;
-lin ripe_A = mkA "ripe" "riper" "ripest" "ripely" ;
-lin bare_A = mkA "bare" "barer" "barest" "barely" ;
-lin rare_A = mkA "rare" "rarer" "rarest" "rarely" ;
-lin severe_2_A = mkA "severe" "severer" "severest" "severely" ;
-lin dire_A = mkA "dire" "direr" "direst" "direly" ;
-lin moire_A = mkA "moire" "moirer" "moirest" "moirely" ;
-lin frore_A = mkA "frore" "frorer" "frorest" "frorely" ;
-lin pure_A = mkA "pure" "purer" "purest" "purely" ;
-lin sure_A = mkA "sure" "surer" "surest" "surely" ;
-lin base_A = mkA "base" "baser" "basest" "basely" ;
-lin wise_A = mkA "wise" "wiser" "wisest" "wisely" ;
-lin dense_A = mkA "dense" "denser" "densest" "densely" ;
-lin tense_A = mkA "tense" "tenser" "tensest" "tensely" ;
-lin close_A = mkA "close" "closer" "closest" "closely" ;
-lin loose_A = mkA "loose" "looser" "loosest" "loosely" ;
-lin rose_A = mkA "rose" "roser" "rosest" "rosely" ;
-lin coarse_A = mkA "coarse" "coarser" "coarsest" "coarsely" ;
-lin hoarse_A = mkA "hoarse" "hoarser" "hoarsest" "hoarsely" ;
-lin sparse_A = mkA "sparse" "sparser" "sparsest" "sparsely" ;
-lin terse_A = mkA "terse" "terser" "tersest" "tersely" ;
-lin worse_A = mkA "worse" "worser" "worsest" "worsely" ;
-lin striate_A = mkA "striate" "striater" "striatest" "striately" ;
-lin late_A = mkA "late" "later" "latest" "lately" ;
-lin white_A = mkA "white" "whiter" "whitest" "whitely" ;
-lin polite_A = mkA "polite" "politer" "politest" "politely" ;
-lin remote_A = mkA "remote" "remoter" "remotest" "remotely" ;
-lin cute_A = mkA "cute" "cuter" "cutest" "cutely" ;
-lin minute_A = mkA "minute" "minuter" "minutest" "minutely" ;
-lin vague_A = mkA "vague" "vaguer" "vaguest" "vaguely" ;
-lin blue_A = mkA "blue" "bluer" "bluest" "bluely" ;
-lin true_A = mkA "true" "truer" "truest" "truly" ;
-lin brave_A = mkA "brave" "braver" "bravest" "bravely" ;
-lin grave_A = mkA "grave" "graver" "gravest" "gravely" ;
-lin naive_2_A = mkA "naive" "naiver" "naivest" "naively" ;
-lin size_A = mkA "size" "sizer" "sizest" "sizely" ;
-lin bronze_A = mkA "bronze" "bronzer" "bronzest" "bronzely" ;
-lin cloze_A = mkA "cloze" "clozer" "clozest" "clozely" ;
-lin little_1_A = mkA "little" "less" "least" "little" ;
-lin 'tone-deaf_A' = mkA "tone-deaf" "more tone-deaf" "most tone-deaf" "tone-deafly" ;
-lin 'stone-deaf_A' = mkA "stone-deaf" "more stone-deaf" "most stone-deaf" "stone-deafly" ;
-lin 'loose-leaf_A' = mkA "loose-leaf" "more loose-leaf" "most loose-leaf" "loose-leafly" ;
-lin broadleaf_A = mkA "broadleaf" "more broadleaf" "most broadleaf" "broadleafly" ;
-lin looseleaf_A = mkA "looseleaf" "more looseleaf" "most looseleaf" "looseleafly" ;
-lin chief_A = mkA "chief" "more chief" "most chief" "chiefly" ;
-lin 'in-chief_A' = mkA "in-chief" "more in-chief" "most in-chief" "in-chiefly" ;
-lin caitiff_A = mkA "caitiff" "more caitiff" "most caitiff" "caitiffly" ;
-lin off_A = mkA "off" "more off" "most off" "offly" ;
-lin 'far-off_A' = mkA "far-off" "more far-off" "most far-off" "far-offly" ;
-lin 'cast-off_A' = mkA "cast-off" "more cast-off" "most cast-off" "cast-offly" ;
-lin bluff_A = mkA "bluff" "more bluff" "most bluff" "bluffly" ;
-lin 'undreamed-of_A' = mkA "undreamed-of" "more undreamed-of" "most undreamed-of" "undreamed-ofly" ;
-lin 'unheard-of_A' = mkA "unheard-of" "more unheard-of" "most unheard-of" "unheard-ofly" ;
-lin 'unthought-of_A' = mkA "unthought-of" "more unthought-of" "most unthought-of" "unthought-ofly" ;
-lin aloof_A = mkA "aloof" "more aloof" "most aloof" "aloofly" ;
-lin proof_A = mkA "proof" "more proof" "most proof" "proofly" ;
-lin 'bomb-proof_A' = mkA "bomb-proof" "more bomb-proof" "most bomb-proof" "bomb-proofly" ;
-lin 'burglar-proof_A' = mkA "burglar-proof" "more burglar-proof" "most burglar-proof" "burglar-proofly" ;
-lin 'ladder-proof_A' = mkA "ladder-proof" "more ladder-proof" "most ladder-proof" "ladder-proofly" ;
-lin 'splinter-proof_A' = mkA "splinter-proof" "more splinter-proof" "most splinter-proof" "splinter-proofly" ;
-lin bombproof_A = mkA "bombproof" "more bombproof" "most bombproof" "bombproofly" ;
-lin soundproof_A = mkA "soundproof" "more soundproof" "most soundproof" "soundproofly" ;
-lin flameproof_A = mkA "flameproof" "more flameproof" "most flameproof" "flameproofly" ;
-lin fireproof_A = mkA "fireproof" "more fireproof" "most fireproof" "fireproofly" ;
-lin creaseproof_A = mkA "creaseproof" "more creaseproof" "most creaseproof" "creaseproofly" ;
-lin greaseproof_A = mkA "greaseproof" "more greaseproof" "most greaseproof" "greaseproofly" ;
-lin mothproof_A = mkA "mothproof" "more mothproof" "most mothproof" "mothproofly" ;
-lin leakproof_A = mkA "leakproof" "more leakproof" "most leakproof" "leakproofly" ;
-lin shellproof_A = mkA "shellproof" "more shellproof" "most shellproof" "shellproofly" ;
-lin foolproof_A = mkA "foolproof" "more foolproof" "most foolproof" "foolproofly" ;
-lin stormproof_A = mkA "stormproof" "more stormproof" "most stormproof" "stormproofly" ;
-lin rainproof_A = mkA "rainproof" "more rainproof" "most rainproof" "rainproofly" ;
-lin runproof_A = mkA "runproof" "more runproof" "most runproof" "runproofly" ;
-lin burglarproof_A = mkA "burglarproof" "more burglarproof" "most burglarproof" "burglarproofly" ;
-lin weatherproof_A = mkA "weatherproof" "more weatherproof" "most weatherproof" "weatherproofly" ;
-lin waterproof_A = mkA "waterproof" "more waterproof" "most waterproof" "waterproofly" ;
-lin shatterproof_A = mkA "shatterproof" "more shatterproof" "most shatterproof" "shatterproofly" ;
-lin bulletproof_A = mkA "bulletproof" "more bulletproof" "most bulletproof" "bulletproofly" ;
-lin lightproof_A = mkA "lightproof" "more lightproof" "most lightproof" "lightproofly" ;
-lin rustproof_A = mkA "rustproof" "more rustproof" "most rustproof" "rustproofly" ;
-lin deaf_A = mkA "deaf" "deafer" "deafest" "deafly" ;
-lin brief_A = mkA "brief" "briefer" "briefest" "briefly" ;
-lin stiff_A = mkA "stiff" "stiffer" "stiffest" "stiffly" ;
-lin buff_A = mkA "buff" "buffer" "buffest" "buffly" ;
-lin snuff_A = mkA "snuff" "snuffer" "snuffest" "snuffly" ;
-lin puff_A = mkA "puff" "puffer" "puffest" "puffly" ;
-lin gruff_A = mkA "gruff" "gruffer" "gruffest" "gruffly" ;
-lin half_A = mkA "half" "halfer" "halfest" "halfly" ;
-lin self_A = mkA "self" "selfer" "selfest" "selfly" ;
-lin carpetbag_A = mkA "carpetbag" "more carpetbag" "most carpetbag" "carpetbagly" ;
-lin zigzag_A = mkA "zigzag" "more zigzag" "most zigzag" "zigzagly" ;
-lin bootleg_A = mkA "bootleg" "more bootleg" "most bootleg" "bootlegly" ;
-lin 'infra dig_A' = mkA "infra dig" "more infra dig" "most infra dig" "infra digly" ;
-lin numbing_A = mkA "numbing" "more numbing" "most numbing" "numbingly" ;
-lin absorbing_A = mkA "absorbing" "more absorbing" "most absorbing" "absorbingly" ;
-lin 'self-effacing_A' = mkA "self-effacing" "more self-effacing" "most self-effacing" "self-effacingly" ;
-lin 'self-sufficing_A' = mkA "self-sufficing" "more self-sufficing" "most self-sufficing" "self-sufficingly" ;
-lin 'self-sacrificing_A' = mkA "self-sacrificing" "more self-sacrificing" "most self-sacrificing" "self-sacrificingly" ;
-lin convincing_A = mkA "convincing" "more convincing" "most convincing" "convincingly" ;
-lin unconvincing_A = mkA "unconvincing" "more unconvincing" "most unconvincing" "unconvincingly" ;
-lin blockading_A = mkA "blockading" "more blockading" "most blockading" "blockadingly" ;
-lin forbidding_A = mkA "forbidding" "more forbidding" "most forbidding" "forbiddingly" ;
-lin preceding_A = mkA "preceding" "more preceding" "most preceding" "precedingly" ;
-lin exceeding_A = mkA "exceeding" "more exceeding" "most exceeding" "exceedingly" ;
-lin 'law-abiding_A' = mkA "law-abiding" "more law-abiding" "most law-abiding" "law-abidingly" ;
-lin overriding_A = mkA "overriding" "more overriding" "most overriding" "overridingly" ;
-lin guiding_A = mkA "guiding" "more guiding" "most guiding" "guidingly" ;
-lin balding_A = mkA "balding" "more balding" "most balding" "baldingly" ;
-lin unyielding_A = mkA "unyielding" "more unyielding" "most unyielding" "unyieldingly" ;
-lin slaveholding_A = mkA "slaveholding" "more slaveholding" "most slaveholding" "slaveholdingly" ;
-lin demanding_A = mkA "demanding" "more demanding" "most demanding" "demandingly" ;
-lin undemanding_A = mkA "undemanding" "more undemanding" "most undemanding" "undemandingly" ;
-lin 'free-standing_A' = mkA "free-standing" "more free-standing" "most free-standing" "free-standingly" ;
-lin 'long-standing_A' = mkA "long-standing" "more long-standing" "most long-standing" "long-standingly" ;
-lin freestanding_A = mkA "freestanding" "more freestanding" "most freestanding" "freestandingly" ;
-lin longstanding_A = mkA "longstanding" "more longstanding" "most longstanding" "longstandingly" ;
-lin upstanding_A = mkA "upstanding" "more upstanding" "most upstanding" "upstandingly" ;
-lin outstanding_A = mkA "outstanding" "more outstanding" "most outstanding" "outstandingly" ;
-lin 'mind-bending_A' = mkA "mind-bending" "more mind-bending" "most mind-bending" "mind-bendingly" ;
-lin unoffending_A = mkA "unoffending" "more unoffending" "most unoffending" "unoffendingly" ;
-lin uncomprehending_A = mkA "uncomprehending" "more uncomprehending" "most uncomprehending" "uncomprehendingly" ;
-lin unending_A = mkA "unending" "more unending" "most unending" "unendingly" ;
-lin rending_A = mkA "rending" "more rending" "most rending" "rendingly" ;
-lin 'heart-rending_A' = mkA "heart-rending" "more heart-rending" "most heart-rending" "heart-rendingly" ;
-lin 'fact-finding_A' = mkA "fact-finding" "more fact-finding" "most fact-finding" "fact-findingly" ;
-lin 'self-winding_A' = mkA "self-winding" "more self-winding" "most self-winding" "self-windingly" ;
-lin confounding_A = mkA "confounding" "more confounding" "most confounding" "confoundingly" ;
-lin surrounding_A = mkA "surrounding" "more surrounding" "most surrounding" "surroundingly" ;
-lin 'high-sounding_A' = mkA "high-sounding" "more high-sounding" "most high-sounding" "high-soundingly" ;
-lin astounding_A = mkA "astounding" "more astounding" "most astounding" "astoundingly" ;
-lin rewarding_A = mkA "rewarding" "more rewarding" "most rewarding" "rewardingly" ;
-lin unrewarding_A = mkA "unrewarding" "more unrewarding" "most unrewarding" "unrewardingly" ;
-lin 'far-seeing_A' = mkA "far-seeing" "more far-seeing" "most far-seeing" "far-seeingly" ;
-lin unseeing_A = mkA "unseeing" "more unseeing" "most unseeing" "unseeingly" ;
-lin farseeing_A = mkA "farseeing" "more farseeing" "most farseeing" "farseeingly" ;
-lin swingeing_A = mkA "swingeing" "more swingeing" "most swingeing" "swingeingly" ;
-lin spiffing_A = mkA "spiffing" "more spiffing" "most spiffing" "spiffingly" ;
-lin damaging_A = mkA "damaging" "more damaging" "most damaging" "damagingly" ;
-lin encouraging_A = mkA "encouraging" "more encouraging" "most encouraging" "encouragingly" ;
-lin unencouraging_A = mkA "unencouraging" "more unencouraging" "most unencouraging" "unencouragingly" ;
-lin discouraging_A = mkA "discouraging" "more discouraging" "most discouraging" "discouragingly" ;
-lin grudging_A = mkA "grudging" "more grudging" "most grudging" "grudgingly" ;
-lin ungrudging_A = mkA "ungrudging" "more ungrudging" "most ungrudging" "ungrudgingly" ;
-lin unflagging_A = mkA "unflagging" "more unflagging" "most unflagging" "unflaggingly" ;
-lin dogging_A = mkA "dogging" "more dogging" "most dogging" "doggingly" ;
-lin pettifogging_A = mkA "pettifogging" "more pettifogging" "most pettifogging" "pettifoggingly" ;
-lin obliging_A = mkA "obliging" "more obliging" "most obliging" "obligingly" ;
-lin disobliging_A = mkA "disobliging" "more disobliging" "most disobliging" "disobligingly" ;
-lin unchanging_A = mkA "unchanging" "more unchanging" "most unchanging" "unchangingly" ;
-lin estranging_A = mkA "estranging" "more estranging" "most estranging" "estrangingly" ;
-lin 'far-reaching_A' = mkA "far-reaching" "more far-reaching" "most far-reaching" "far-reachingly" ;
-lin overreaching_A = mkA "overreaching" "more overreaching" "most overreaching" "overreachingly" ;
-lin beseeching_A = mkA "beseeching" "more beseeching" "most beseeching" "beseechingly" ;
-lin unflinching_A = mkA "unflinching" "more unflinching" "most unflinching" "unflinchingly" ;
-lin 'eye-catching_A' = mkA "eye-catching" "more eye-catching" "most eye-catching" "eye-catchingly" ;
-lin eyecatching_A = mkA "eyecatching" "more eyecatching" "most eyecatching" "eyecatchingly" ;
-lin fetching_A = mkA "fetching" "more fetching" "most fetching" "fetchingly" ;
-lin witching_A = mkA "witching" "more witching" "most witching" "witchingly" ;
-lin bewitching_A = mkA "bewitching" "more bewitching" "most bewitching" "bewitchingly" ;
-lin touching_A = mkA "touching" "more touching" "most touching" "touchingly" ;
-lin laughing_A = mkA "laughing" "more laughing" "most laughing" "laughingly" ;
-lin refreshing_A = mkA "refreshing" "more refreshing" "most refreshing" "refreshingly" ;
-lin publishing_A = mkA "publishing" "more publishing" "most publishing" "publishingly" ;
-lin astonishing_A = mkA "astonishing" "more astonishing" "most astonishing" "astonishingly" ;
-lin punishing_A = mkA "punishing" "more punishing" "most punishing" "punishingly" ;
-lin ravishing_A = mkA "ravishing" "more ravishing" "most ravishing" "ravishingly" ;
-lin unblushing_A = mkA "unblushing" "more unblushing" "most unblushing" "unblushingly" ;
-lin scathing_A = mkA "scathing" "more scathing" "most scathing" "scathingly" ;
-lin 'good-for-nothing_A' = mkA "good-for-nothing" "more good-for-nothing" "most good-for-nothing" "good-for-nothingly" ;
-lin soothing_A = mkA "soothing" "more soothing" "most soothing" "soothingly" ;
-lin nonspeaking_A = mkA "nonspeaking" "more nonspeaking" "most nonspeaking" "nonspeakingly" ;
-lin 'record-breaking_A' = mkA "record-breaking" "more record-breaking" "most record-breaking" "record-breakingly" ;
-lin 'back-breaking_A' = mkA "back-breaking" "more back-breaking" "most back-breaking" "back-breakingly" ;
-lin heartbreaking_A = mkA "heartbreaking" "more heartbreaking" "most heartbreaking" "heartbreakingly" ;
-lin earthshaking_A = mkA "earthshaking" "more earthshaking" "most earthshaking" "earthshakingly" ;
-lin 'shame-making_A' = mkA "shame-making" "more shame-making" "most shame-making" "shame-makingly" ;
-lin 'epoch-making_A' = mkA "epoch-making" "more epoch-making" "most epoch-making" "epoch-makingly" ;
-lin breathtaking_A = mkA "breathtaking" "more breathtaking" "most breathtaking" "breathtakingly" ;
-lin painstaking_A = mkA "painstaking" "more painstaking" "most painstaking" "painstakingly" ;
-lin bushwhacking_A = mkA "bushwhacking" "more bushwhacking" "most bushwhacking" "bushwhackingly" ;
-lin 'nerve-racking_A' = mkA "nerve-racking" "more nerve-racking" "most nerve-racking" "nerve-rackingly" ;
-lin rollicking_A = mkA "rollicking" "more rollicking" "most rollicking" "rollickingly" ;
-lin bootlicking_A = mkA "bootlicking" "more bootlicking" "most bootlicking" "bootlickingly" ;
-lin shocking_A = mkA "shocking" "more shocking" "most shocking" "shockingly" ;
-lin 'self-locking_A' = mkA "self-locking" "more self-locking" "most self-locking" "self-lockingly" ;
-lin bloodsucking_A = mkA "bloodsucking" "more bloodsucking" "most bloodsucking" "bloodsuckingly" ;
-lin 'self-seeking_A' = mkA "self-seeking" "more self-seeking" "most self-seeking" "self-seekingly" ;
-lin striking_A = mkA "striking" "more striking" "most striking" "strikingly" ;
-lin hulking_A = mkA "hulking" "more hulking" "most hulking" "hulkingly" ;
-lin spanking_A = mkA "spanking" "more spanking" "most spanking" "spankingly" ;
-lin 'high-ranking_A' = mkA "high-ranking" "more high-ranking" "most high-ranking" "high-rankingly" ;
-lin 'top-ranking_A' = mkA "top-ranking" "more top-ranking" "most top-ranking" "top-rankingly" ;
-lin 'free-thinking_A' = mkA "free-thinking" "more free-thinking" "most free-thinking" "free-thinkingly" ;
-lin unthinking_A = mkA "unthinking" "more unthinking" "most unthinking" "unthinkingly" ;
-lin unblinking_A = mkA "unblinking" "more unblinking" "most unblinking" "unblinkingly" ;
-lin unshrinking_A = mkA "unshrinking" "more unshrinking" "most unshrinking" "unshrinkingly" ;
-lin 'good-looking_A' = mkA "good-looking" "more good-looking" "most good-looking" "good-lookingly" ;
-lin provoking_A = mkA "provoking" "more provoking" "most provoking" "provokingly" ;
-lin hardworking_A = mkA "hardworking" "more hardworking" "most hardworking" "hardworkingly" ;
-lin wonderworking_A = mkA "wonderworking" "more wonderworking" "most wonderworking" "wonderworkingly" ;
-lin 'double-dealing_A' = mkA "double-dealing" "more double-dealing" "most double-dealing" "double-dealingly" ;
-lin unappealing_A = mkA "unappealing" "more unappealing" "most unappealing" "unappealingly" ;
-lin 'self-sealing_A' = mkA "self-sealing" "more self-sealing" "most self-sealing" "self-sealingly" ;
-lin revealing_A = mkA "revealing" "more revealing" "most revealing" "revealingly" ;
-lin enabling_A = mkA "enabling" "more enabling" "most enabling" "enablingly" ;
-lin disabling_A = mkA "disabling" "more disabling" "most disabling" "disablingly" ;
-lin bumbling_A = mkA "bumbling" "more bumbling" "most bumbling" "bumblingly" ;
-lin ennobling_A = mkA "ennobling" "more ennobling" "most ennobling" "ennoblingly" ;
-lin middling_A = mkA "middling" "more middling" "most middling" "middlingly" ;
-lin bloodcurdling_A = mkA "bloodcurdling" "more bloodcurdling" "most bloodcurdling" "bloodcurdlingly" ;
-lin unfeeling_A = mkA "unfeeling" "more unfeeling" "most unfeeling" "unfeelingly" ;
-lin baffling_A = mkA "baffling" "more baffling" "most baffling" "bafflingly" ;
-lin fledgling_A = mkA "fledgling" "more fledgling" "most fledgling" "fledglingly" ;
-lin 'mind-boggling_A' = mkA "mind-boggling" "more mind-boggling" "most mind-boggling" "mind-bogglingly" ;
-lin gangling_A = mkA "gangling" "more gangling" "most gangling" "ganglingly" ;
-lin unfailing_A = mkA "unfailing" "more unfailing" "most unfailing" "unfailingly" ;
-lin unavailing_A = mkA "unavailing" "more unavailing" "most unavailing" "unavailingly" ;
-lin unsmiling_A = mkA "unsmiling" "more unsmiling" "most unsmiling" "unsmilingly" ;
-lin beguiling_A = mkA "beguiling" "more beguiling" "most beguiling" "beguilingly" ;
-lin swashbuckling_A = mkA "swashbuckling" "more swashbuckling" "most swashbuckling" "swashbucklingly" ;
-lin darkling_A = mkA "darkling" "more darkling" "most darkling" "darklingly" ;
-lin appalling_A = mkA "appalling" "more appalling" "most appalling" "appallingly" ;
-lin impelling_A = mkA "impelling" "more impelling" "most impelling" "impellingly" ;
-lin compelling_A = mkA "compelling" "more compelling" "most compelling" "compellingly" ;
-lin telling_A = mkA "telling" "more telling" "most telling" "tellingly" ;
-lin gruelling_A = mkA "gruelling" "more gruelling" "most gruelling" "gruellingly" ;
-lin indwelling_A = mkA "indwelling" "more indwelling" "most indwelling" "indwellingly" ;
-lin willing_A = mkA "willing" "more willing" "most willing" "willingly" ;
-lin unwilling_A = mkA "unwilling" "more unwilling" "most unwilling" "unwillingly" ;
-lin controlling_A = mkA "controlling" "more controlling" "most controlling" "controllingly" ;
-lin crippling_A = mkA "crippling" "more crippling" "most crippling" "cripplingly" ;
-lin sterling_A = mkA "sterling" "more sterling" "most sterling" "sterlingly" ;
-lin startling_A = mkA "startling" "more startling" "most startling" "startlingly" ;
-lin unstartling_A = mkA "unstartling" "more unstartling" "most unstartling" "unstartlingly" ;
-lin belittling_A = mkA "belittling" "more belittling" "most belittling" "belittlingly" ;
-lin dazzling_A = mkA "dazzling" "more dazzling" "most dazzling" "dazzlingly" ;
-lin seeming_A = mkA "seeming" "more seeming" "most seeming" "seemingly" ;
-lin 'two-timing_A' = mkA "two-timing" "more two-timing" "most two-timing" "two-timingly" ;
-lin 'up-and-coming_A' = mkA "up-and-coming" "more up-and-coming" "most up-and-coming" "up-and-comingly" ;
-lin unbecoming_A = mkA "unbecoming" "more unbecoming" "most unbecoming" "unbecomingly" ;
-lin forthcoming_A = mkA "forthcoming" "more forthcoming" "most forthcoming" "forthcomingly" ;
-lin unforthcoming_A = mkA "unforthcoming" "more unforthcoming" "most unforthcoming" "unforthcomingly" ;
-lin welcoming_A = mkA "welcoming" "more welcoming" "most welcoming" "welcomingly" ;
-lin incoming_A = mkA "incoming" "more incoming" "most incoming" "incomingly" ;
-lin oncoming_A = mkA "oncoming" "more oncoming" "most oncoming" "oncomingly" ;
-lin homing_A = mkA "homing" "more homing" "most homing" "homingly" ;
-lin glooming_A = mkA "glooming" "more glooming" "most glooming" "gloomingly" ;
-lin alarming_A = mkA "alarming" "more alarming" "most alarming" "alarmingly" ;
-lin unalarming_A = mkA "unalarming" "more unalarming" "most unalarming" "unalarmingly" ;
-lin heartwarming_A = mkA "heartwarming" "more heartwarming" "most heartwarming" "heartwarmingly" ;
-lin disconfirming_A = mkA "disconfirming" "more disconfirming" "most disconfirming" "disconfirmingly" ;
-lin nonconforming_A = mkA "nonconforming" "more nonconforming" "most nonconforming" "nonconformingly" ;
-lin unassuming_A = mkA "unassuming" "more unassuming" "most unassuming" "unassumingly" ;
-lin 'well-meaning_A' = mkA "well-meaning" "more well-meaning" "most well-meaning" "well-meaningly" ;
-lin demeaning_A = mkA "demeaning" "more demeaning" "most demeaning" "demeaningly" ;
-lin overweening_A = mkA "overweening" "more overweening" "most overweening" "overweeningly" ;
-lin deafening_A = mkA "deafening" "more deafening" "most deafening" "deafeningly" ;
-lin nonopening_A = mkA "nonopening" "more nonopening" "most nonopening" "nonopeningly" ;
-lin enlightening_A = mkA "enlightening" "more enlightening" "most enlightening" "enlighteningly" ;
-lin unenlightening_A = mkA "unenlightening" "more unenlightening" "most unenlightening" "unenlighteningly" ;
-lin frightening_A = mkA "frightening" "more frightening" "most frightening" "frighteningly" ;
-lin heartening_A = mkA "heartening" "more heartening" "most heartening" "hearteningly" ;
-lin ravening_A = mkA "ravening" "more ravening" "most ravening" "raveningly" ;
-lin uncomplaining_A = mkA "uncomplaining" "more uncomplaining" "most uncomplaining" "uncomplainingly" ;
-lin entertaining_A = mkA "entertaining" "more entertaining" "most entertaining" "entertainingly" ;
-lin noncombining_A = mkA "noncombining" "more noncombining" "most noncombining" "noncombiningly" ;
-lin confining_A = mkA "confining" "more confining" "most confining" "confiningly" ;
-lin conning_A = mkA "conning" "more conning" "most conning" "conningly" ;
-lin cunning_A = mkA "cunning" "more cunning" "most cunning" "cunningly" ;
-lin stunning_A = mkA "stunning" "more stunning" "most stunning" "stunningly" ;
-lin dimensioning_A = mkA "dimensioning" "more dimensioning" "most dimensioning" "dimensioningly" ;
-lin questioning_A = mkA "questioning" "more questioning" "most questioning" "questioningly" ;
-lin unquestioning_A = mkA "unquestioning" "more unquestioning" "most unquestioning" "unquestioningly" ;
-lin unreasoning_A = mkA "unreasoning" "more unreasoning" "most unreasoning" "unreasoningly" ;
-lin 'early-warning_A' = mkA "early-warning" "more early-warning" "most early-warning" "early-warningly" ;
-lin discerning_A = mkA "discerning" "more discerning" "most discerning" "discerningly" ;
-lin undiscerning_A = mkA "undiscerning" "more undiscerning" "most undiscerning" "undiscerningly" ;
-lin crowning_A = mkA "crowning" "more crowning" "most crowning" "crowningly" ;
-lin seagoing_A = mkA "seagoing" "more seagoing" "most seagoing" "seagoingly" ;
-lin churchgoing_A = mkA "churchgoing" "more churchgoing" "most churchgoing" "churchgoingly" ;
-lin thoroughgoing_A = mkA "thoroughgoing" "more thoroughgoing" "most thoroughgoing" "thoroughgoingly" ;
-lin oceangoing_A = mkA "oceangoing" "more oceangoing" "most oceangoing" "oceangoingly" ;
-lin ingoing_A = mkA "ingoing" "more ingoing" "most ingoing" "ingoingly" ;
-lin ongoing_A = mkA "ongoing" "more ongoing" "most ongoing" "ongoingly" ;
-lin slowgoing_A = mkA "slowgoing" "more slowgoing" "most slowgoing" "slowgoingly" ;
-lin easygoing_A = mkA "easygoing" "more easygoing" "most easygoing" "easygoingly" ;
-lin peacekeeping_A = mkA "peacekeeping" "more peacekeeping" "most peacekeeping" "peacekeepingly" ;
-lin unsleeping_A = mkA "unsleeping" "more unsleeping" "most unsleeping" "unsleepingly" ;
-lin sweeping_A = mkA "sweeping" "more sweeping" "most sweeping" "sweepingly" ;
-lin walloping_A = mkA "walloping" "more walloping" "most walloping" "wallopingly" ;
-lin strapping_A = mkA "strapping" "more strapping" "most strapping" "strappingly" ;
-lin whopping_A = mkA "whopping" "more whopping" "most whopping" "whoppingly" ;
-lin sopping_A = mkA "sopping" "more sopping" "most sopping" "soppingly" ;
-lin 'oil-bearing_A' = mkA "oil-bearing" "more oil-bearing" "most oil-bearing" "oil-bearingly" ;
-lin childbearing_A = mkA "childbearing" "more childbearing" "most childbearing" "childbearingly" ;
-lin nonbearing_A = mkA "nonbearing" "more nonbearing" "most nonbearing" "nonbearingly" ;
-lin overbearing_A = mkA "overbearing" "more overbearing" "most overbearing" "overbearingly" ;
-lin unforbearing_A = mkA "unforbearing" "more unforbearing" "most unforbearing" "unforbearingly" ;
-lin godfearing_A = mkA "godfearing" "more godfearing" "most godfearing" "godfearingly" ;
-lin unhearing_A = mkA "unhearing" "more unhearing" "most unhearing" "unhearingly" ;
-lin searing_A = mkA "searing" "more searing" "most searing" "searingly" ;
-lin seafaring_A = mkA "seafaring" "more seafaring" "most seafaring" "seafaringly" ;
-lin wayfaring_A = mkA "wayfaring" "more wayfaring" "most wayfaring" "wayfaringly" ;
-lin glaring_A = mkA "glaring" "more glaring" "most glaring" "glaringly" ;
-lin 'rip-roaring_A' = mkA "rip-roaring" "more rip-roaring" "most rip-roaring" "rip-roaringly" ;
-lin cheeseparing_A = mkA "cheeseparing" "more cheeseparing" "most cheeseparing" "cheeseparingly" ;
-lin sparing_A = mkA "sparing" "more sparing" "most sparing" "sparingly" ;
-lin unsparing_A = mkA "unsparing" "more unsparing" "most unsparing" "unsparingly" ;
-lin raring_A = mkA "raring" "more raring" "most raring" "raringly" ;
-lin bewildering_A = mkA "bewildering" "more bewildering" "most bewildering" "bewilderingly" ;
-lin smoldering_A = mkA "smoldering" "more smoldering" "most smoldering" "smolderingly" ;
-lin 'long-suffering_A' = mkA "long-suffering" "more long-suffering" "most long-suffering" "long-sufferingly" ;
-lin scandalmongering_A = mkA "scandalmongering" "more scandalmongering" "most scandalmongering" "scandalmongeringly" ;
-lin woolgathering_A = mkA "woolgathering" "more woolgathering" "most woolgathering" "woolgatheringly" ;
-lin blithering_A = mkA "blithering" "more blithering" "most blithering" "blitheringly" ;
-lin smothering_A = mkA "smothering" "more smothering" "most smothering" "smotheringly" ;
-lin 'mouth-watering_A' = mkA "mouth-watering" "more mouth-watering" "most mouth-watering" "mouth-wateringly" ;
-lin unfaltering_A = mkA "unfaltering" "more unfaltering" "most unfaltering" "unfalteringly" ;
-lin flattering_A = mkA "flattering" "more flattering" "most flattering" "flatteringly" ;
-lin unflattering_A = mkA "unflattering" "more unflattering" "most unflattering" "unflatteringly" ;
-lin bettering_A = mkA "bettering" "more bettering" "most bettering" "betteringly" ;
-lin jittering_A = mkA "jittering" "more jittering" "most jittering" "jitteringly" ;
-lin unwavering_A = mkA "unwavering" "more unwavering" "most unwavering" "unwaveringly" ;
-lin covering_A = mkA "covering" "more covering" "most covering" "coveringly" ;
-lin overpowering_A = mkA "overpowering" "more overpowering" "most overpowering" "overpoweringly" ;
-lin inspiring_A = mkA "inspiring" "more inspiring" "most inspiring" "inspiringly" ;
-lin 'awe-inspiring_A' = mkA "awe-inspiring" "more awe-inspiring" "most awe-inspiring" "awe-inspiringly" ;
-lin uninspiring_A = mkA "uninspiring" "more uninspiring" "most uninspiring" "uninspiringly" ;
-lin untiring_A = mkA "untiring" "more untiring" "most untiring" "untiringly" ;
-lin uninquiring_A = mkA "uninquiring" "more uninquiring" "most uninquiring" "uninquiringly" ;
-lin boring_A = mkA "boring" "more boring" "most boring" "boringly" ;
-lin adoring_A = mkA "adoring" "more adoring" "most adoring" "adoringly" ;
-lin unerring_A = mkA "unerring" "more unerring" "most unerring" "unerringly" ;
-lin 'soul-stirring_A' = mkA "soul-stirring" "more soul-stirring" "most soul-stirring" "soul-stirringly" ;
-lin alluring_A = mkA "alluring" "more alluring" "most alluring" "alluringly" ;
-lin inpouring_A = mkA "inpouring" "more inpouring" "most inpouring" "inpouringly" ;
-lin assuring_A = mkA "assuring" "more assuring" "most assuring" "assuringly" ;
-lin reassuring_A = mkA "reassuring" "more reassuring" "most reassuring" "reassuringly" ;
-lin unreassuring_A = mkA "unreassuring" "more unreassuring" "most unreassuring" "unreassuringly" ;
-lin debasing_A = mkA "debasing" "more debasing" "most debasing" "debasingly" ;
-lin unceasing_A = mkA "unceasing" "more unceasing" "most unceasing" "unceasingly" ;
-lin displeasing_A = mkA "displeasing" "more displeasing" "most displeasing" "displeasingly" ;
-lin teasing_A = mkA "teasing" "more teasing" "most teasing" "teasingly" ;
-lin raising_A = mkA "raising" "more raising" "most raising" "raisingly" ;
-lin 'self-raising_A' = mkA "self-raising" "more self-raising" "most self-raising" "self-raisingly" ;
-lin 'hair-raising_A' = mkA "hair-raising" "more hair-raising" "most hair-raising" "hair-raisingly" ;
-lin uncompromising_A = mkA "uncompromising" "more uncompromising" "most uncompromising" "uncompromisingly" ;
-lin unpromising_A = mkA "unpromising" "more unpromising" "most unpromising" "unpromisingly" ;
-lin enterprising_A = mkA "enterprising" "more enterprising" "most enterprising" "enterprisingly" ;
-lin unenterprising_A = mkA "unenterprising" "more unenterprising" "most unenterprising" "unenterprisingly" ;
-lin surprising_A = mkA "surprising" "more surprising" "most surprising" "surprisingly" ;
-lin unsurprising_A = mkA "unsurprising" "more unsurprising" "most unsurprising" "unsurprisingly" ;
-lin cleansing_A = mkA "cleansing" "more cleansing" "most cleansing" "cleansingly" ;
-lin unimposing_A = mkA "unimposing" "more unimposing" "most unimposing" "unimposingly" ;
-lin surpassing_A = mkA "surpassing" "more surpassing" "most surpassing" "surpassingly" ;
-lin embarrassing_A = mkA "embarrassing" "more embarrassing" "most embarrassing" "embarrassingly" ;
-lin caressing_A = mkA "caressing" "more caressing" "most caressing" "caressingly" ;
-lin pressing_A = mkA "pressing" "more pressing" "most pressing" "pressingly" ;
-lin depressing_A = mkA "depressing" "more depressing" "most depressing" "depressingly" ;
-lin distressing_A = mkA "distressing" "more distressing" "most distressing" "distressingly" ;
-lin prepossessing_A = mkA "prepossessing" "more prepossessing" "most prepossessing" "prepossessingly" ;
-lin unprepossessing_A = mkA "unprepossessing" "more unprepossessing" "most unprepossessing" "unprepossessingly" ;
-lin confusing_A = mkA "confusing" "more confusing" "most confusing" "confusingly" ;
-lin amusing_A = mkA "amusing" "more amusing" "most amusing" "amusingly" ;
-lin 'rabble-rousing_A' = mkA "rabble-rousing" "more rabble-rousing" "most rabble-rousing" "rabble-rousingly" ;
-lin nonreciprocating_A = mkA "nonreciprocating" "more nonreciprocating" "most nonreciprocating" "nonreciprocatingly" ;
-lin unaccommodating_A = mkA "unaccommodating" "more unaccommodating" "most unaccommodating" "unaccommodatingly" ;
-lin nauseating_A = mkA "nauseating" "more nauseating" "most nauseating" "nauseatingly" ;
-lin excruciating_A = mkA "excruciating" "more excruciating" "most excruciating" "excruciatingly" ;
-lin ingratiating_A = mkA "ingratiating" "more ingratiating" "most ingratiating" "ingratiatingly" ;
-lin undeviating_A = mkA "undeviating" "more undeviating" "most undeviating" "undeviatingly" ;
-lin asphyxiating_A = mkA "asphyxiating" "more asphyxiating" "most asphyxiating" "asphyxiatingly" ;
-lin elating_A = mkA "elating" "more elating" "most elating" "elatingly" ;
-lin annihilating_A = mkA "annihilating" "more annihilating" "most annihilating" "annihilatingly" ;
-lin titillating_A = mkA "titillating" "more titillating" "most titillating" "titillatingly" ;
-lin stimulating_A = mkA "stimulating" "more stimulating" "most stimulating" "stimulatingly" ;
-lin unstimulating_A = mkA "unstimulating" "more unstimulating" "most unstimulating" "unstimulatingly" ;
-lin animating_A = mkA "animating" "more animating" "most animating" "animatingly" ;
-lin alienating_A = mkA "alienating" "more alienating" "most alienating" "alienatingly" ;
-lin fascinating_A = mkA "fascinating" "more fascinating" "most fascinating" "fascinatingly" ;
-lin iodinating_A = mkA "iodinating" "more iodinating" "most iodinating" "iodinatingly" ;
-lin undiscriminating_A = mkA "undiscriminating" "more undiscriminating" "most undiscriminating" "undiscriminatingly" ;
-lin exhilarating_A = mkA "exhilarating" "more exhilarating" "most exhilarating" "exhilaratingly" ;
-lin exasperating_A = mkA "exasperating" "more exasperating" "most exasperating" "exasperatingly" ;
-lin adulterating_A = mkA "adulterating" "more adulterating" "most adulterating" "adulteratingly" ;
-lin invigorating_A = mkA "invigorating" "more invigorating" "most invigorating" "invigoratingly" ;
-lin frustrating_A = mkA "frustrating" "more frustrating" "most frustrating" "frustratingly" ;
-lin fulgurating_A = mkA "fulgurating" "more fulgurating" "most fulgurating" "fulguratingly" ;
-lin debilitating_A = mkA "debilitating" "more debilitating" "most debilitating" "debilitatingly" ;
-lin irritating_A = mkA "irritating" "more irritating" "most irritating" "irritatingly" ;
-lin unhesitating_A = mkA "unhesitating" "more unhesitating" "most unhesitating" "unhesitatingly" ;
-lin extenuating_A = mkA "extenuating" "more extenuating" "most extenuating" "extenuatingly" ;
-lin aggravating_A = mkA "aggravating" "more aggravating" "most aggravating" "aggravatingly" ;
-lin 'self-activating_A' = mkA "self-activating" "more self-activating" "most self-activating" "self-activatingly" ;
-lin doubting_A = mkA "doubting" "more doubting" "most doubting" "doubtingly" ;
-lin 'self-acting_A' = mkA "self-acting" "more self-acting" "most self-acting" "self-actingly" ;
-lin exacting_A = mkA "exacting" "more exacting" "most exacting" "exactingly" ;
-lin unexacting_A = mkA "unexacting" "more unexacting" "most unexacting" "unexactingly" ;
-lin affecting_A = mkA "affecting" "more affecting" "most affecting" "affectingly" ;
-lin unaffecting_A = mkA "unaffecting" "more unaffecting" "most unaffecting" "unaffectingly" ;
-lin 'self-respecting_A' = mkA "self-respecting" "more self-respecting" "most self-respecting" "self-respectingly" ;
-lin unsuspecting_A = mkA "unsuspecting" "more unsuspecting" "most unsuspecting" "unsuspectingly" ;
-lin constricting_A = mkA "constricting" "more constricting" "most constricting" "constrictingly" ;
-lin semiconducting_A = mkA "semiconducting" "more semiconducting" "most semiconducting" "semiconductingly" ;
-lin fleeting_A = mkA "fleeting" "more fleeting" "most fleeting" "fleetingly" ;
-lin 'go-to-meeting_A' = mkA "go-to-meeting" "more go-to-meeting" "most go-to-meeting" "go-to-meetingly" ;
-lin disquieting_A = mkA "disquieting" "more disquieting" "most disquieting" "disquietingly" ;
-lin biting_A = mkA "biting" "more biting" "most biting" "bitingly" ;
-lin exciting_A = mkA "exciting" "more exciting" "most exciting" "excitingly" ;
-lin unexciting_A = mkA "unexciting" "more unexciting" "most unexciting" "unexcitingly" ;
-lin limiting_A = mkA "limiting" "more limiting" "most limiting" "limitingly" ;
-lin uninviting_A = mkA "uninviting" "more uninviting" "most uninviting" "uninvitingly" ;
-lin insulting_A = mkA "insulting" "more insulting" "most insulting" "insultingly" ;
-lin disenchanting_A = mkA "disenchanting" "more disenchanting" "most disenchanting" "disenchantingly" ;
-lin orienting_A = mkA "orienting" "more orienting" "most orienting" "orientingly" ;
-lin disorienting_A = mkA "disorienting" "more disorienting" "most disorienting" "disorientingly" ;
-lin unrelenting_A = mkA "unrelenting" "more unrelenting" "most unrelenting" "unrelentingly" ;
-lin disappointing_A = mkA "disappointing" "more disappointing" "most disappointing" "disappointingly" ;
-lin daunting_A = mkA "daunting" "more daunting" "most daunting" "dauntingly" ;
-lin haunting_A = mkA "haunting" "more haunting" "most haunting" "hauntingly" ;
-lin disconcerting_A = mkA "disconcerting" "more disconcerting" "most disconcerting" "disconcertingly" ;
-lin comforting_A = mkA "comforting" "more comforting" "most comforting" "comfortingly" ;
-lin 'self-supporting_A' = mkA "self-supporting" "more self-supporting" "most self-supporting" "self-supportingly" ;
-lin unsporting_A = mkA "unsporting" "more unsporting" "most unsporting" "unsportingly" ;
-lin lasting_A = mkA "lasting" "more lasting" "most lasting" "lastingly" ;
-lin everlasting_A = mkA "everlasting" "more everlasting" "most everlasting" "everlastingly" ;
-lin interesting_A = mkA "interesting" "more interesting" "most interesting" "interestingly" ;
-lin uninteresting_A = mkA "uninteresting" "more uninteresting" "most uninteresting" "uninterestingly" ;
-lin arresting_A = mkA "arresting" "more arresting" "most arresting" "arrestingly" ;
-lin unresisting_A = mkA "unresisting" "more unresisting" "most unresisting" "unresistingly" ;
-lin exhausting_A = mkA "exhausting" "more exhausting" "most exhausting" "exhaustingly" ;
-lin disgusting_A = mkA "disgusting" "more disgusting" "most disgusting" "disgustingly" ;
-lin trendsetting_A = mkA "trendsetting" "more trendsetting" "most trendsetting" "trendsettingly" ;
-lin thermosetting_A = mkA "thermosetting" "more thermosetting" "most thermosetting" "thermosettingly" ;
-lin fitting_A = mkA "fitting" "more fitting" "most fitting" "fittingly" ;
-lin 'close-fitting_A' = mkA "close-fitting" "more close-fitting" "most close-fitting" "close-fittingly" ;
-lin befitting_A = mkA "befitting" "more befitting" "most befitting" "befittingly" ;
-lin unbefitting_A = mkA "unbefitting" "more unbefitting" "most unbefitting" "unbefittingly" ;
-lin hardhitting_A = mkA "hardhitting" "more hardhitting" "most hardhitting" "hardhittingly" ;
-lin 'side-splitting_A' = mkA "side-splitting" "more side-splitting" "most side-splitting" "side-splittingly" ;
-lin hairsplitting_A = mkA "hairsplitting" "more hairsplitting" "most hairsplitting" "hairsplittingly" ;
-lin unremitting_A = mkA "unremitting" "more unremitting" "most unremitting" "unremittingly" ;
-lin witting_A = mkA "witting" "more witting" "most witting" "wittingly" ;
-lin unwitting_A = mkA "unwitting" "more unwitting" "most unwitting" "unwittingly" ;
-lin 'off-putting_A' = mkA "off-putting" "more off-putting" "most off-putting" "off-puttingly" ;
-lin 'face-saving_A' = mkA "face-saving" "more face-saving" "most face-saving" "face-savingly" ;
-lin 'labour-saving_A' = mkA "labour-saving" "more labour-saving" "most labour-saving" "labour-savingly" ;
-lin 'daylight-saving_A' = mkA "daylight-saving" "more daylight-saving" "most daylight-saving" "daylight-savingly" ;
-lin timesaving_A = mkA "timesaving" "more timesaving" "most timesaving" "timesavingly" ;
-lin laborsaving_A = mkA "laborsaving" "more laborsaving" "most laborsaving" "laborsavingly" ;
-lin unbelieving_A = mkA "unbelieving" "more unbelieving" "most unbelieving" "unbelievingly" ;
-lin 'life-giving_A' = mkA "life-giving" "more life-giving" "most life-giving" "life-givingly" ;
-lin unforgiving_A = mkA "unforgiving" "more unforgiving" "most unforgiving" "unforgivingly" ;
-lin living_A = mkA "living" "more living" "most living" "livingly" ;
-lin 'clean-living_A' = mkA "clean-living" "more clean-living" "most clean-living" "clean-livingly" ;
-lin loving_A = mkA "loving" "more loving" "most loving" "lovingly" ;
-lin unloving_A = mkA "unloving" "more unloving" "most unloving" "unlovingly" ;
-lin nonmoving_A = mkA "nonmoving" "more nonmoving" "most nonmoving" "nonmovingly" ;
-lin unmoving_A = mkA "unmoving" "more unmoving" "most unmoving" "unmovingly" ;
-lin undeserving_A = mkA "undeserving" "more undeserving" "most undeserving" "undeservingly" ;
-lin timeserving_A = mkA "timeserving" "more timeserving" "most timeserving" "timeservingly" ;
-lin unswerving_A = mkA "unswerving" "more unswerving" "most unswerving" "unswervingly" ;
-lin renewing_A = mkA "renewing" "more renewing" "most renewing" "renewingly" ;
-lin 'mind-blowing_A' = mkA "mind-blowing" "more mind-blowing" "most mind-blowing" "mind-blowingly" ;
-lin inflowing_A = mkA "inflowing" "more inflowing" "most inflowing" "inflowingly" ;
-lin following_A = mkA "following" "more following" "most following" "followingly" ;
-lin unknowing_A = mkA "unknowing" "more unknowing" "most unknowing" "unknowingly" ;
-lin ingrowing_A = mkA "ingrowing" "more ingrowing" "most ingrowing" "ingrowingly" ;
-lin batwing_A = mkA "batwing" "more batwing" "most batwing" "batwingly" ;
-lin sweptwing_A = mkA "sweptwing" "more sweptwing" "most sweptwing" "sweptwingly" ;
-lin 'long-playing_A' = mkA "long-playing" "more long-playing" "most long-playing" "long-playingly" ;
-lin taxpaying_A = mkA "taxpaying" "more taxpaying" "most taxpaying" "taxpayingly" ;
-lin undying_A = mkA "undying" "more undying" "most undying" "undyingly" ;
-lin stupefying_A = mkA "stupefying" "more stupefying" "most stupefying" "stupefyingly" ;
-lin edifying_A = mkA "edifying" "more edifying" "most edifying" "edifyingly" ;
-lin unedifying_A = mkA "unedifying" "more unedifying" "most unedifying" "unedifyingly" ;
-lin exemplifying_A = mkA "exemplifying" "more exemplifying" "most exemplifying" "exemplifyingly" ;
-lin dignifying_A = mkA "dignifying" "more dignifying" "most dignifying" "dignifyingly" ;
-lin stupifying_A = mkA "stupifying" "more stupifying" "most stupifying" "stupifyingly" ;
-lin electrifying_A = mkA "electrifying" "more electrifying" "most electrifying" "electrifyingly" ;
-lin purifying_A = mkA "purifying" "more purifying" "most purifying" "purifyingly" ;
-lin gratifying_A = mkA "gratifying" "more gratifying" "most gratifying" "gratifyingly" ;
-lin unsatisfying_A = mkA "unsatisfying" "more unsatisfying" "most unsatisfying" "unsatisfyingly" ;
-lin highflying_A = mkA "highflying" "more highflying" "most highflying" "highflyingly" ;
-lin underlying_A = mkA "underlying" "more underlying" "most underlying" "underlyingly" ;
-lin outlying_A = mkA "outlying" "more outlying" "most outlying" "outlyingly" ;
-lin 'self-denying_A' = mkA "self-denying" "more self-denying" "most self-denying" "self-denyingly" ;
-lin annoying_A = mkA "annoying" "more annoying" "most annoying" "annoyingly" ;
-lin 'soul-destroying_A' = mkA "soul-destroying" "more soul-destroying" "most soul-destroying" "soul-destroyingly" ;
-lin unvarying_A = mkA "unvarying" "more unvarying" "most unvarying" "unvaryingly" ;
-lin pitying_A = mkA "pitying" "more pitying" "most pitying" "pityingly" ;
-lin amazing_A = mkA "amazing" "more amazing" "most amazing" "amazingly" ;
-lin energizing_A = mkA "energizing" "more energizing" "most energizing" "energizingly" ;
-lin unsympathizing_A = mkA "unsympathizing" "more unsympathizing" "most unsympathizing" "unsympathizingly" ;
-lin demoralizing_A = mkA "demoralizing" "more demoralizing" "most demoralizing" "demoralizingly" ;
-lin tantalizing_A = mkA "tantalizing" "more tantalizing" "most tantalizing" "tantalizingly" ;
-lin maximizing_A = mkA "maximizing" "more maximizing" "most maximizing" "maximizingly" ;
-lin patronizing_A = mkA "patronizing" "more patronizing" "most patronizing" "patronizingly" ;
-lin familiarizing_A = mkA "familiarizing" "more familiarizing" "most familiarizing" "familiarizingly" ;
-lin appetizing_A = mkA "appetizing" "more appetizing" "most appetizing" "appetizingly" ;
-lin unappetizing_A = mkA "unappetizing" "more unappetizing" "most unappetizing" "unappetizingly" ;
-lin sensitizing_A = mkA "sensitizing" "more sensitizing" "most sensitizing" "sensitizingly" ;
-lin desensitizing_A = mkA "desensitizing" "more desensitizing" "most desensitizing" "desensitizingly" ;
-lin 'age-long_A' = mkA "age-long" "more age-long" "most age-long" "age-longly" ;
-lin oblong_A = mkA "oblong" "more oblong" "most oblong" "oblongly" ;
-lin headlong_A = mkA "headlong" "more headlong" "most headlong" "headlongly" ;
-lin sidelong_A = mkA "sidelong" "more sidelong" "most sidelong" "sidelongly" ;
-lin lifelong_A = mkA "lifelong" "more lifelong" "most lifelong" "lifelongly" ;
-lin agelong_A = mkA "agelong" "more agelong" "most agelong" "agelongly" ;
-lin livelong_A = mkA "livelong" "more livelong" "most livelong" "livelongly" ;
-lin monthlong_A = mkA "monthlong" "more monthlong" "most monthlong" "monthlongly" ;
-lin weeklong_A = mkA "weeklong" "more weeklong" "most weeklong" "weeklongly" ;
-lin yearlong_A = mkA "yearlong" "more yearlong" "most yearlong" "yearlongly" ;
-lin hourlong_A = mkA "hourlong" "more hourlong" "most hourlong" "hourlongly" ;
-lin nightlong_A = mkA "nightlong" "more nightlong" "most nightlong" "nightlongly" ;
-lin daylong_A = mkA "daylong" "more daylong" "most daylong" "daylongly" ;
-lin headstrong_A = mkA "headstrong" "more headstrong" "most headstrong" "headstrongly" ;
-lin wrong_A = mkA "wrong" "more wrong" "most wrong" "wrongly" ;
-lin underhung_A = mkA "underhung" "more underhung" "most underhung" "underhungly" ;
-lin 'far-flung_A' = mkA "far-flung" "more far-flung" "most far-flung" "far-flungly" ;
-lin underslung_A = mkA "underslung" "more underslung" "most underslung" "underslungly" ;
-lin unstrung_A = mkA "unstrung" "more unstrung" "most unstrung" "unstrungly" ;
-lin overstrung_A = mkA "overstrung" "more overstrung" "most overstrung" "overstrungly" ;
-lin unsung_A = mkA "unsung" "more unsung" "most unsung" "unsungly" ;
-lin hangdog_A = mkA "hangdog" "more hangdog" "most hangdog" "hangdogly" ;
-lin agog_A = mkA "agog" "more agog" "most agog" "agogly" ;
-lin big_A = mkA "big" "bigger" "biggest" "big" ;
-lin long_A = mkA "long" "longer" "longest" "long" ;
-lin strong_A = mkA "strong" "stronger" "strongest" "strongly" ;
-lin young_A = mkA "young" "younger" "youngest" "youngly" ;
-lin smug_A = mkA "smug" "smugger" "smuggest" "smugly" ;
-lin snug_A = mkA "snug" "snugger" "snuggest" "snugly" ;
-lin enough_A = mkA "enough" "more enough" "most enough" "enough" ;
-lin abroach_A = mkA "abroach" "more abroach" "most abroach" "abroachly" ;
-lin Czech_A = mkA "Czech" "more Czech" "most Czech" "Czechly" ;
-lin milch_A = mkA "milch" "more milch" "most milch" "milchly" ;
-lin lamellibranch_A = mkA "lamellibranch" "more lamellibranch" "most lamellibranch" "lamellibranchly" ;
-lin French_A = mkA "French" "more French" "most French" "Frenchly" ;
-lin staunch_A = mkA "staunch" "more staunch" "most staunch" "staunchly" ;
-lin arch_A = mkA "arch" "more arch" "most arch" "archly" ;
-lin interchurch_A = mkA "interchurch" "more interchurch" "most interchurch" "interchurchly" ;
-lin kitsch_A = mkA "kitsch" "more kitsch" "most kitsch" "kitschly" ;
-lin eldritch_A = mkA "eldritch" "more eldritch" "most eldritch" "eldritchly" ;
-lin scotch_A = mkA "scotch" "more scotch" "most scotch" "scotchly" ;
-lin topnotch_A = mkA "topnotch" "more topnotch" "most topnotch" "topnotchly" ;
-lin Dutch_A = mkA "Dutch" "more Dutch" "most Dutch" "Dutchly" ;
-lin butch_A = mkA "butch" "more butch" "most butch" "butchly" ;
-lin overmuch_A = mkA "overmuch" "more overmuch" "most overmuch" "overmuchly" ;
-lin aweigh_A = mkA "aweigh" "more aweigh" "most aweigh" "aweighly" ;
-lin 'knee-high_A' = mkA "knee-high" "more knee-high" "most knee-high" "knee-highly" ;
-lin 'waist-high_A' = mkA "waist-high" "more waist-high" "most waist-high" "waist-highly" ;
-lin 'see-through_A' = mkA "see-through" "more see-through" "most see-through" "see-throughly" ;
-lin thorough_A = mkA "thorough" "more thorough" "most thorough" "thoroughly" ;
-lin slapdash_A = mkA "slapdash" "more slapdash" "most slapdash" "slapdashly" ;
-lin awash_A = mkA "awash" "more awash" "most awash" "awashly" ;
-lin mobbish_A = mkA "mobbish" "more mobbish" "most mobbish" "mobbishly" ;
-lin snobbish_A = mkA "snobbish" "more snobbish" "most snobbish" "snobbishly" ;
-lin clubbish_A = mkA "clubbish" "more clubbish" "most clubbish" "clubbishly" ;
-lin caddish_A = mkA "caddish" "more caddish" "most caddish" "caddishly" ;
-lin faddish_A = mkA "faddish" "more faddish" "most faddish" "faddishly" ;
-lin reddish_A = mkA "reddish" "more reddish" "most reddish" "reddishly" ;
-lin oddish_A = mkA "oddish" "more oddish" "most oddish" "oddishly" ;
-lin cloddish_A = mkA "cloddish" "more cloddish" "most cloddish" "cloddishly" ;
-lin Swedish_A = mkA "Swedish" "more Swedish" "most Swedish" "Swedishly" ;
-lin 'old-maidish_A' = mkA "old-maidish" "more old-maidish" "most old-maidish" "old-maidishly" ;
-lin childish_A = mkA "childish" "more childish" "most childish" "childishly" ;
-lin oldish_A = mkA "oldish" "more oldish" "most oldish" "oldishly" ;
-lin outlandish_A = mkA "outlandish" "more outlandish" "most outlandish" "outlandishly" ;
-lin fiendish_A = mkA "fiendish" "more fiendish" "most fiendish" "fiendishly" ;
-lin roundish_A = mkA "roundish" "more roundish" "most roundish" "roundishly" ;
-lin modish_A = mkA "modish" "more modish" "most modish" "modishly" ;
-lin goodish_A = mkA "goodish" "more goodish" "most goodish" "goodishly" ;
-lin prudish_A = mkA "prudish" "more prudish" "most prudish" "prudishly" ;
-lin ogreish_A = mkA "ogreish" "more ogreish" "most ogreish" "ogreishly" ;
-lin oafish_A = mkA "oafish" "more oafish" "most oafish" "oafishly" ;
-lin raffish_A = mkA "raffish" "more raffish" "most raffish" "raffishly" ;
-lin offish_A = mkA "offish" "more offish" "most offish" "offishly" ;
-lin standoffish_A = mkA "standoffish" "more standoffish" "most standoffish" "standoffishly" ;
-lin huffish_A = mkA "huffish" "more huffish" "most huffish" "huffishly" ;
-lin elfish_A = mkA "elfish" "more elfish" "most elfish" "elfishly" ;
-lin selfish_A = mkA "selfish" "more selfish" "most selfish" "selfishly" ;
-lin unselfish_A = mkA "unselfish" "more unselfish" "most unselfish" "unselfishly" ;
-lin wolfish_A = mkA "wolfish" "more wolfish" "most wolfish" "wolfishly" ;
-lin dwarfish_A = mkA "dwarfish" "more dwarfish" "most dwarfish" "dwarfishly" ;
-lin waggish_A = mkA "waggish" "more waggish" "most waggish" "waggishly" ;
-lin biggish_A = mkA "biggish" "more biggish" "most biggish" "biggishly" ;
-lin piggish_A = mkA "piggish" "more piggish" "most piggish" "piggishly" ;
-lin priggish_A = mkA "priggish" "more priggish" "most priggish" "priggishly" ;
-lin hoggish_A = mkA "hoggish" "more hoggish" "most hoggish" "hoggishly" ;
-lin sluggish_A = mkA "sluggish" "more sluggish" "most sluggish" "sluggishly" ;
-lin longish_A = mkA "longish" "more longish" "most longish" "longishly" ;
-lin youngish_A = mkA "youngish" "more youngish" "most youngish" "youngishly" ;
-lin largish_A = mkA "largish" "more largish" "most largish" "largishly" ;
-lin roughish_A = mkA "roughish" "more roughish" "most roughish" "roughishly" ;
-lin freakish_A = mkA "freakish" "more freakish" "most freakish" "freakishly" ;
-lin rakish_A = mkA "rakish" "more rakish" "most rakish" "rakishly" ;
-lin blackish_A = mkA "blackish" "more blackish" "most blackish" "blackishly" ;
-lin brackish_A = mkA "brackish" "more brackish" "most brackish" "brackishly" ;
-lin peckish_A = mkA "peckish" "more peckish" "most peckish" "peckishly" ;
-lin sickish_A = mkA "sickish" "more sickish" "most sickish" "sickishly" ;
-lin blockish_A = mkA "blockish" "more blockish" "most blockish" "blockishly" ;
-lin puckish_A = mkA "puckish" "more puckish" "most puckish" "puckishly" ;
-lin pinkish_A = mkA "pinkish" "more pinkish" "most pinkish" "pinkishly" ;
-lin monkish_A = mkA "monkish" "more monkish" "most monkish" "monkishly" ;
-lin bookish_A = mkA "bookish" "more bookish" "most bookish" "bookishly" ;
-lin darkish_A = mkA "darkish" "more darkish" "most darkish" "darkishly" ;
-lin Turkish_A = mkA "Turkish" "more Turkish" "most Turkish" "Turkishly" ;
-lin mawkish_A = mkA "mawkish" "more mawkish" "most mawkish" "mawkishly" ;
-lin palish_A = mkA "palish" "more palish" "most palish" "palishly" ;
-lin English_A = mkA "English" "more English" "most English" "Englishly" ;
-lin devilish_A = mkA "devilish" "more devilish" "most devilish" "devilishly" ;
-lin ticklish_A = mkA "ticklish" "more ticklish" "most ticklish" "ticklishly" ;
-lin smallish_A = mkA "smallish" "more smallish" "most smallish" "smallishly" ;
-lin tallish_A = mkA "tallish" "more tallish" "most tallish" "tallishly" ;
-lin hellish_A = mkA "hellish" "more hellish" "most hellish" "hellishly" ;
-lin bullish_A = mkA "bullish" "more bullish" "most bullish" "bullishly" ;
-lin Polish_A = mkA "Polish" "more Polish" "most Polish" "Polishly" ;
-lin foolish_A = mkA "foolish" "more foolish" "most foolish" "foolishly" ;
-lin purplish_A = mkA "purplish" "more purplish" "most purplish" "purplishly" ;
-lin girlish_A = mkA "girlish" "more girlish" "most girlish" "girlishly" ;
-lin churlish_A = mkA "churlish" "more churlish" "most churlish" "churlishly" ;
-lin mulish_A = mkA "mulish" "more mulish" "most mulish" "mulishly" ;
-lin ghoulish_A = mkA "ghoulish" "more ghoulish" "most ghoulish" "ghoulishly" ;
-lin owlish_A = mkA "owlish" "more owlish" "most owlish" "owlishly" ;
-lin stylish_A = mkA "stylish" "more stylish" "most stylish" "stylishly" ;
-lin beamish_A = mkA "beamish" "more beamish" "most beamish" "beamishly" ;
-lin squeamish_A = mkA "squeamish" "more squeamish" "most squeamish" "squeamishly" ;
-lin flemish_A = mkA "flemish" "more flemish" "most flemish" "flemishly" ;
-lin gnomish_A = mkA "gnomish" "more gnomish" "most gnomish" "gnomishly" ;
-lin romish_A = mkA "romish" "more romish" "most romish" "romishly" ;
-lin Danish_A = mkA "Danish" "more Danish" "most Danish" "Danishly" ;
-lin womanish_A = mkA "womanish" "more womanish" "most womanish" "womanishly" ;
-lin 'old-womanish_A' = mkA "old-womanish" "more old-womanish" "most old-womanish" "old-womanishly" ;
-lin Spanish_A = mkA "Spanish" "more Spanish" "most Spanish" "Spanishly" ;
-lin hoydenish_A = mkA "hoydenish" "more hoydenish" "most hoydenish" "hoydenishly" ;
-lin greenish_A = mkA "greenish" "more greenish" "most greenish" "greenishly" ;
-lin rhenish_A = mkA "rhenish" "more rhenish" "most rhenish" "rhenishly" ;
-lin heathenish_A = mkA "heathenish" "more heathenish" "most heathenish" "heathenishly" ;
-lin kittenish_A = mkA "kittenish" "more kittenish" "most kittenish" "kittenishly" ;
-lin vixenish_A = mkA "vixenish" "more vixenish" "most vixenish" "vixenishly" ;
-lin swinish_A = mkA "swinish" "more swinish" "most swinish" "swinishly" ;
-lin clannish_A = mkA "clannish" "more clannish" "most clannish" "clannishly" ;
-lin mannish_A = mkA "mannish" "more mannish" "most mannish" "mannishly" ;
-lin tannish_A = mkA "tannish" "more tannish" "most tannish" "tannishly" ;
-lin Finnish_A = mkA "Finnish" "more Finnish" "most Finnish" "Finnishly" ;
-lin donnish_A = mkA "donnish" "more donnish" "most donnish" "donnishly" ;
-lin baboonish_A = mkA "baboonish" "more baboonish" "most baboonish" "baboonishly" ;
-lin buffoonish_A = mkA "buffoonish" "more buffoonish" "most buffoonish" "buffoonishly" ;
-lin clownish_A = mkA "clownish" "more clownish" "most clownish" "clownishly" ;
-lin brownish_A = mkA "brownish" "more brownish" "most brownish" "brownishly" ;
-lin apish_A = mkA "apish" "more apish" "most apish" "apishly" ;
-lin sheepish_A = mkA "sheepish" "more sheepish" "most sheepish" "sheepishly" ;
-lin steepish_A = mkA "steepish" "more steepish" "most steepish" "steepishly" ;
-lin dampish_A = mkA "dampish" "more dampish" "most dampish" "dampishly" ;
-lin impish_A = mkA "impish" "more impish" "most impish" "impishly" ;
-lin blimpish_A = mkA "blimpish" "more blimpish" "most blimpish" "blimpishly" ;
-lin wimpish_A = mkA "wimpish" "more wimpish" "most wimpish" "wimpishly" ;
-lin lumpish_A = mkA "lumpish" "more lumpish" "most lumpish" "lumpishly" ;
-lin frumpish_A = mkA "frumpish" "more frumpish" "most frumpish" "frumpishly" ;
-lin popish_A = mkA "popish" "more popish" "most popish" "popishly" ;
-lin snappish_A = mkA "snappish" "more snappish" "most snappish" "snappishly" ;
-lin foppish_A = mkA "foppish" "more foppish" "most foppish" "foppishly" ;
-lin uppish_A = mkA "uppish" "more uppish" "most uppish" "uppishly" ;
-lin waspish_A = mkA "waspish" "more waspish" "most waspish" "waspishly" ;
-lin Irish_A = mkA "Irish" "more Irish" "most Irish" "Irishly" ;
-lin bearish_A = mkA "bearish" "more bearish" "most bearish" "bearishly" ;
-lin garish_A = mkA "garish" "more garish" "most garish" "garishly" ;
-lin nightmarish_A = mkA "nightmarish" "more nightmarish" "most nightmarish" "nightmarishly" ;
-lin squarish_A = mkA "squarish" "more squarish" "most squarish" "squarishly" ;
-lin tigerish_A = mkA "tigerish" "more tigerish" "most tigerish" "tigerishly" ;
-lin bitterish_A = mkA "bitterish" "more bitterish" "most bitterish" "bitterishly" ;
-lin feverish_A = mkA "feverish" "more feverish" "most feverish" "feverishly" ;
-lin liverish_A = mkA "liverish" "more liverish" "most liverish" "liverishly" ;
-lin fairish_A = mkA "fairish" "more fairish" "most fairish" "fairishly" ;
-lin boorish_A = mkA "boorish" "more boorish" "most boorish" "boorishly" ;
-lin moorish_A = mkA "moorish" "more moorish" "most moorish" "moorishly" ;
-lin currish_A = mkA "currish" "more currish" "most currish" "currishly" ;
-lin amateurish_A = mkA "amateurish" "more amateurish" "most amateurish" "amateurishly" ;
-lin latish_A = mkA "latish" "more latish" "most latish" "latishly" ;
-lin sweetish_A = mkA "sweetish" "more sweetish" "most sweetish" "sweetishly" ;
-lin leftish_A = mkA "leftish" "more leftish" "most leftish" "leftishly" ;
-lin softish_A = mkA "softish" "more softish" "most softish" "softishly" ;
-lin rightish_A = mkA "rightish" "more rightish" "most rightish" "rightishly" ;
-lin whitish_A = mkA "whitish" "more whitish" "most whitish" "whitishly" ;
-lin British_A = mkA "British" "more British" "most British" "Britishly" ;
-lin saltish_A = mkA "saltish" "more saltish" "most saltish" "saltishly" ;
-lin coltish_A = mkA "coltish" "more coltish" "most coltish" "coltishly" ;
-lin doltish_A = mkA "doltish" "more doltish" "most doltish" "doltishly" ;
-lin introvertish_A = mkA "introvertish" "more introvertish" "most introvertish" "introvertishly" ;
-lin extrovertish_A = mkA "extrovertish" "more extrovertish" "most extrovertish" "extrovertishly" ;
-lin shortish_A = mkA "shortish" "more shortish" "most shortish" "shortishly" ;
-lin cattish_A = mkA "cattish" "more cattish" "most cattish" "cattishly" ;
-lin fattish_A = mkA "fattish" "more fattish" "most fattish" "fattishly" ;
-lin pettish_A = mkA "pettish" "more pettish" "most pettish" "pettishly" ;
-lin coquettish_A = mkA "coquettish" "more coquettish" "most coquettish" "coquettishly" ;
-lin skittish_A = mkA "skittish" "more skittish" "most skittish" "skittishly" ;
-lin scottish_A = mkA "scottish" "more scottish" "most scottish" "scottishly" ;
-lin hottish_A = mkA "hottish" "more hottish" "most hottish" "hottishly" ;
-lin sottish_A = mkA "sottish" "more sottish" "most sottish" "sottishly" ;
-lin sluttish_A = mkA "sluttish" "more sluttish" "most sluttish" "sluttishly" ;
-lin loutish_A = mkA "loutish" "more loutish" "most loutish" "loutishly" ;
-lin brutish_A = mkA "brutish" "more brutish" "most brutish" "brutishly" ;
-lin aguish_A = mkA "aguish" "more aguish" "most aguish" "aguishly" ;
-lin roguish_A = mkA "roguish" "more roguish" "most roguish" "roguishly" ;
-lin bluish_A = mkA "bluish" "more bluish" "most bluish" "bluishly" ;
-lin cliquish_A = mkA "cliquish" "more cliquish" "most cliquish" "cliquishly" ;
-lin lavish_A = mkA "lavish" "more lavish" "most lavish" "lavishly" ;
-lin slavish_A = mkA "slavish" "more slavish" "most slavish" "slavishly" ;
-lin knavish_A = mkA "knavish" "more knavish" "most knavish" "knavishly" ;
-lin peevish_A = mkA "peevish" "more peevish" "most peevish" "peevishly" ;
-lin thievish_A = mkA "thievish" "more thievish" "most thievish" "thievishly" ;
-lin elvish_A = mkA "elvish" "more elvish" "most elvish" "elvishly" ;
-lin jewish_A = mkA "jewish" "more jewish" "most jewish" "jewishly" ;
-lin shrewish_A = mkA "shrewish" "more shrewish" "most shrewish" "shrewishly" ;
-lin yellowish_A = mkA "yellowish" "more yellowish" "most yellowish" "yellowishly" ;
-lin scarecrowish_A = mkA "scarecrowish" "more scarecrowish" "most scarecrowish" "scarecrowishly" ;
-lin swish_A = mkA "swish" "more swish" "most swish" "swishly" ;
-lin babyish_A = mkA "babyish" "more babyish" "most babyish" "babyishly" ;
-lin greyish_A = mkA "greyish" "more greyish" "most greyish" "greyishly" ;
-lin fogyish_A = mkA "fogyish" "more fogyish" "most fogyish" "fogyishly" ;
-lin earlyish_A = mkA "earlyish" "more earlyish" "most earlyish" "earlyishly" ;
-lin boyish_A = mkA "boyish" "more boyish" "most boyish" "boyishly" ;
-lin puppyish_A = mkA "puppyish" "more puppyish" "most puppyish" "puppyishly" ;
-lin fortyish_A = mkA "fortyish" "more fortyish" "most fortyish" "fortyishly" ;
-lin welsh_A = mkA "welsh" "more welsh" "most welsh" "welshly" ;
-lin 'hush-hush_A' = mkA "hush-hush" "more hush-hush" "most hush-hush" "hush-hushly" ;
-lin flush_A = mkA "flush" "more flush" "most flush" "flushly" ;
-lin loath_A = mkA "loath" "more loath" "most loath" "loathly" ;
-lin 'half-length_A' = mkA "half-length" "more half-length" "most half-length" "half-lengthly" ;
-lin 'full-length_A' = mkA "full-length" "more full-length" "most full-length" "full-lengthly" ;
-lin hiplength_A = mkA "hiplength" "more hiplength" "most hiplength" "hiplengthly" ;
-lin interfaith_A = mkA "interfaith" "more interfaith" "most interfaith" "interfaithly" ;
-lin umpteenth_A = mkA "umpteenth" "more umpteenth" "most umpteenth" "umpteenthly" ;
-lin billionth_A = mkA "billionth" "more billionth" "most billionth" "billionthly" ;
-lin millionth_A = mkA "millionth" "more millionth" "most millionth" "millionthly" ;
-lin quadrillionth_A = mkA "quadrillionth" "more quadrillionth" "most quadrillionth" "quadrillionthly" ;
-lin trillionth_A = mkA "trillionth" "more trillionth" "most trillionth" "trillionthly" ;
-lin quintillionth_A = mkA "quintillionth" "more quintillionth" "most quintillionth" "quintillionthly" ;
-lin loth_A = mkA "loth" "more loth" "most loth" "lothly" ;
-lin 'fine-tooth_A' = mkA "fine-tooth" "more fine-tooth" "most fine-tooth" "fine-toothly" ;
-lin zeroth_A = mkA "zeroth" "more zeroth" "most zeroth" "zerothly" ;
-lin wroth_A = mkA "wroth" "more wroth" "most wroth" "wrothly" ;
-lin 'down-to-earth_A' = mkA "down-to-earth" "more down-to-earth" "most down-to-earth" "down-to-earthly" ;
-lin worth_A = mkA "worth" "more worth" "most worth" "worthly" ;
-lin uncouth_A = mkA "uncouth" "more uncouth" "most uncouth" "uncouthly" ;
-lin 'foot-and-mouth_A' = mkA "foot-and-mouth" "more foot-and-mouth" "most foot-and-mouth" "foot-and-mouthly" ;
-lin rich_A = mkA "rich" "richer" "richest" "richly" ;
-lin birch_A = mkA "birch" "bircher" "birchest" "birchly" ;
-lin stretch_A = mkA "stretch" "stretcher" "stretchest" "stretchly" ;
-lin high_A = mkA "high" "higher" "highest" "highly" ;
-lin rough_A = mkA "rough" "rougher" "roughest" "roughly" ;
-lin tough_A = mkA "tough" "tougher" "toughest" "toughly" ;
-lin rash_A = mkA "rash" "rasher" "rashest" "rashly" ;
-lin brash_A = mkA "brash" "brasher" "brashest" "brashly" ; -- notcompound rash_A ;
-lin fresh_A = mkA "fresh" "fresher" "freshest" "freshly" ;
-lin posh_A = mkA "posh" "posher" "poshest" "poshly" ;
-lin harsh_A = mkA "harsh" "harsher" "harshest" "harshly" ;
-lin lush_A = mkA "lush" "lusher" "lushest" "lushly" ;
-lin plush_A = mkA "plush" "plusher" "plushest" "plushly" ; -- notcompound lush_A ;
-lin nth_A = mkA "nth" "nther" "nthest" "nthly" ;
-lin ninth_A = mkA "ninth" "ninther" "ninthest" "ninthly" ; -- compound nth_A ;
-lin smooth_A = mkA "smooth" "smoother" "smoothest" "smoothly" ;
-lin North_A = mkA "North" "Norther" "Northest" "Northly" ;
-lin South_A = mkA "South" "Souther" "Southest" "Southly" ;
-lin couth_A = mkA "couth" "couther" "couthest" "couthly" ;
-lin Thai_A = mkA "Thai" "more Thai" "most Thai" "Thaily" ;
-lin jihadi_A = mkA "jihadi" "more jihadi" "most jihadi" "jihadily" ;
-lin hindi_A = mkA "hindi" "more hindi" "most hindi" "hindily" ;
-lin 'hi-fi_A' = mkA "hi-fi" "more hi-fi" "most hi-fi" "hi-fily" ;
-lin chichi_A = mkA "chichi" "more chichi" "most chichi" "chichily" ;
-lin bangladeshi_A = mkA "bangladeshi" "more bangladeshi" "most bangladeshi" "bangladeshily" ;
-lin khaki_A = mkA "khaki" "more khaki" "most khaki" "khakily" ;
-lin 'après-ski_A' = mkA "après-ski" "more après-ski" "most après-ski" "après-skily" ;
-lin bengali_A = mkA "bengali" "more bengali" "most bengali" "bengalily" ;
-lin Somali_A = mkA "Somali" "more Somali" "most Somali" "Somalily" ;
-lin nepali_A = mkA "nepali" "more nepali" "most nepali" "nepalily" ;
-lin israeli_A = mkA "israeli" "more israeli" "most israeli" "israelily" ;
-lin omani_A = mkA "omani" "more omani" "most omani" "omanily" ;
-lin Pakistani_A = mkA "Pakistani" "more Pakistani" "most Pakistani" "Pakistanily" ;
-lin afghanistani_A = mkA "afghanistani" "more afghanistani" "most afghanistani" "afghanistanily" ;
-lin hindustani_A = mkA "hindustani" "more hindustani" "most hindustani" "hindustanily" ;
-lin bhutani_A = mkA "bhutani" "more bhutani" "most bhutani" "bhutanily" ;
-lin yemeni_A = mkA "yemeni" "more yemeni" "most yemeni" "yemenily" ;
-lin bahraini_A = mkA "bahraini" "more bahraini" "most bahraini" "bahrainily" ;
-lin iraqi_A = mkA "iraqi" "more iraqi" "most iraqi" "iraqily" ;
-lin qatari_A = mkA "qatari" "more qatari" "most qatari" "qatarily" ;
-lin kashmiri_A = mkA "kashmiri" "more kashmiri" "most kashmiri" "kashmirily" ;
-lin 'a posteriori_A' = mkA "a posteriori" "more a posteriori" "most a posteriori" "a posteriorily" ;
-lin 'a priori_A' = mkA "a priori" "more a priori" "most a priori" "a priorily" ;
-lin nisi_A = mkA "nisi" "more nisi" "most nisi" "nisily" ;
-lin kuwaiti_A = mkA "kuwaiti" "more kuwaiti" "most kuwaiti" "kuwaitily" ;
-lin nazi_A = mkA "nazi" "more nazi" "most nazi" "nazily" ;
-lin swazi_A = mkA "swazi" "more swazi" "most swazi" "swazily" ;
-lin midi_A = mkA "midi" "midier" "midiest" "midily" ;
-lin mini_A = mkA "mini" "minier" "miniest" "minily" ;
-lin anti_A = mkA "anti" "antier" "antiest" "antily" ;
-lin maxi_A = mkA "maxi" "maxier" "maxiest" "maxily" ;
-lin 'off-peak_A' = mkA "off-peak" "more off-peak" "most off-peak" "off-peakly" ;
-lin czechoslovak_A = mkA "czechoslovak" "more czechoslovak" "most czechoslovak" "czechoslovakly" ;
-lin 'crook-back_A' = mkA "crook-back" "more crook-back" "most crook-back" "crook-backly" ;
-lin bareback_A = mkA "bareback" "more bareback" "most bareback" "barebackly" ;
-lin hunchback_A = mkA "hunchback" "more hunchback" "most hunchback" "hunchbackly" ;
-lin crookback_A = mkA "crookback" "more crookback" "most crookback" "crookbackly" ;
-lin paperback_A = mkA "paperback" "more paperback" "most paperback" "paperbackly" ;
-lin razorback_A = mkA "razorback" "more razorback" "most razorback" "razorbackly" ;
-lin sweptback_A = mkA "sweptback" "more sweptback" "most sweptback" "sweptbackly" ;
-lin outback_A = mkA "outback" "more outback" "most outback" "outbackly" ;
-lin cheapjack_A = mkA "cheapjack" "more cheapjack" "most cheapjack" "cheapjackly" ;
-lin 'pitch-black_A' = mkA "pitch-black" "more pitch-black" "most pitch-black" "pitch-blackly" ;
-lin 'jet-black_A' = mkA "jet-black" "more jet-black" "most jet-black" "jet-blackly" ;
-lin gimcrack_A = mkA "gimcrack" "more gimcrack" "most gimcrack" "gimcrackly" ;
-lin pinchbeck_A = mkA "pinchbeck" "more pinchbeck" "most pinchbeck" "pinchbeckly" ;
-lin 'polo-neck_A' = mkA "polo-neck" "more polo-neck" "most polo-neck" "polo-neckly" ;
-lin turtleneck_A = mkA "turtleneck" "more turtleneck" "most turtleneck" "turtleneckly" ;
-lin breakneck_A = mkA "breakneck" "more breakneck" "most breakneck" "breakneckly" ;
-lin hick_A = mkA "hick" "more hick" "most hick" "hickly" ;
-lin spick_A = mkA "spick" "more spick" "most spick" "spickly" ;
-lin redbrick_A = mkA "redbrick" "more redbrick" "most redbrick" "redbrickly" ;
-lin sick_A = mkA "sick" "more sick" "most sick" "sickly" ;
-lin 'air-sick_A' = mkA "air-sick" "more air-sick" "most air-sick" "air-sickly" ;
-lin seasick_A = mkA "seasick" "more seasick" "most seasick" "seasickly" ;
-lin homesick_A = mkA "homesick" "more homesick" "most homesick" "homesickly" ;
-lin lovesick_A = mkA "lovesick" "more lovesick" "most lovesick" "lovesickly" ;
-lin brainsick_A = mkA "brainsick" "more brainsick" "most brainsick" "brainsickly" ;
-lin carsick_A = mkA "carsick" "more carsick" "most carsick" "carsickly" ;
-lin airsick_A = mkA "airsick" "more airsick" "most airsick" "airsickly" ;
-lin heartsick_A = mkA "heartsick" "more heartsick" "most heartsick" "heartsickly" ;
-lin nonstick_A = mkA "nonstick" "more nonstick" "most nonstick" "nonstickly" ;
-lin slapstick_A = mkA "slapstick" "more slapstick" "most slapstick" "slapstickly" ;
-lin 'double-quick_A' = mkA "double-quick" "more double-quick" "most double-quick" "double-quickly" ;
-lin 'chock-a-block_A' = mkA "chock-a-block" "more chock-a-block" "most chock-a-block" "chock-a-blockly" ;
-lin 'round-the-clock_A' = mkA "round-the-clock" "more round-the-clock" "most round-the-clock" "round-the-clockly" ;
-lin mock_A = mkA "mock" "more mock" "most mock" "mockly" ;
-lin antiknock_A = mkA "antiknock" "more antiknock" "most antiknock" "antiknockly" ;
-lin amuck_A = mkA "amuck" "more amuck" "most amuck" "amuckly" ;
-lin 'stage-struck_A' = mkA "stage-struck" "more stage-struck" "most stage-struck" "stage-struckly" ;
-lin 'awe-struck_A' = mkA "awe-struck" "more awe-struck" "most awe-struck" "awe-struckly" ;
-lin 'wonder-struck_A' = mkA "wonder-struck" "more wonder-struck" "most wonder-struck" "wonder-struckly" ;
-lin 'terror-struck_A' = mkA "terror-struck" "more terror-struck" "most terror-struck" "terror-struckly" ;
-lin 'horror-struck_A' = mkA "horror-struck" "more horror-struck" "most horror-struck" "horror-struckly" ;
-lin moonstruck_A = mkA "moonstruck" "more moonstruck" "most moonstruck" "moonstruckly" ;
-lin thunderstruck_A = mkA "thunderstruck" "more thunderstruck" "most thunderstruck" "thunderstruckly" ;
-lin unstuck_A = mkA "unstuck" "more unstuck" "most unstuck" "unstuckly" ;
-lin 'tongue-in-cheek_A' = mkA "tongue-in-cheek" "more tongue-in-cheek" "most tongue-in-cheek" "tongue-in-cheekly" ;
-lin Greek_A = mkA "Greek" "more Greek" "most Greek" "Greekly" ;
-lin midweek_A = mkA "midweek" "more midweek" "most midweek" "midweekly" ;
-lin lank_A = mkA "lank" "more lank" "most lank" "lankly" ;
-lin blank_A = mkA "blank" "more blank" "most blank" "blankly" ;
-lin 'point-blank_A' = mkA "point-blank" "more point-blank" "most point-blank" "point-blankly" ;
-lin rank_A = mkA "rank" "more rank" "most rank" "rankly" ;
-lin antitank_A = mkA "antitank" "more antitank" "most antitank" "antitankly" ;
-lin 'punch-drunk_A' = mkA "punch-drunk" "more punch-drunk" "most punch-drunk" "punch-drunkly" ;
-lin casebook_A = mkA "casebook" "more casebook" "most casebook" "casebookly" ;
-lin 'pitch-dark_A' = mkA "pitch-dark" "more pitch-dark" "most pitch-dark" "pitch-darkly" ;
-lin semidark_A = mkA "semidark" "more semidark" "most semidark" "semidarkly" ;
-lin stark_A = mkA "stark" "more stark" "most stark" "starkly" ;
-lin berserk_A = mkA "berserk" "more berserk" "most berserk" "berserkly" ;
-lin 'out-of-work_A' = mkA "out-of-work" "more out-of-work" "most out-of-work" "out-of-workly" ;
-lin damask_A = mkA "damask" "more damask" "most damask" "damaskly" ;
-lin bleak_A = mkA "bleak" "bleaker" "bleakest" "bleakly" ;
-lin weak_A = mkA "weak" "weaker" "weakest" "weakly" ;
-lin black_A = mkA "black" "blacker" "blackest" "blackly" ;
-lin slack_A = mkA "slack" "slacker" "slackest" "slackly" ;
-lin thick_A = mkA "thick" "thicker" "thickest" "thickly" ;
-lin slick_A = mkA "slick" "slicker" "slickest" "slickly" ;
-lin quick_A = mkA "quick" "quicker" "quickest" "quickly" ;
-lin stock_A = mkA "stock" "stocker" "stockest" "stockly" ;
-lin sleek_A = mkA "sleek" "sleeker" "sleekest" "sleekly" ;
-lin meek_A = mkA "meek" "meeker" "meekest" "meekly" ;
-lin dank_A = mkA "dank" "danker" "dankest" "dankly" ;
-lin crank_A = mkA "crank" "cranker" "crankest" "crankly" ;
-lin frank_A = mkA "frank" "franker" "frankest" "frankly" ;
-lin swank_A = mkA "swank" "swanker" "swankest" "swankly" ;
-lin pink_A = mkA "pink" "pinker" "pinkest" "pinkly" ;
-lin drunk_A = mkA "drunk" "drunker" "drunkest" "drunkly" ;
-lin dark_A = mkA "dark" "darker" "darkest" "darkly" ;
-lin brisk_A = mkA "brisk" "brisker" "briskest" "briskly" ;
-lin tribal_A = mkA "tribal" "more tribal" "most tribal" "tribally" ;
-lin intertribal_A = mkA "intertribal" "more intertribal" "most intertribal" "intertribally" ;
-lin global_A = mkA "global" "more global" "most global" "globally" ;
-lin herbal_A = mkA "herbal" "more herbal" "most herbal" "herbally" ;
-lin verbal_A = mkA "verbal" "more verbal" "most verbal" "verbally" ;
-lin nonverbal_A = mkA "nonverbal" "more nonverbal" "most nonverbal" "nonverbally" ;
-lin tubal_A = mkA "tubal" "more tubal" "most tubal" "tubally" ;
-lin zodiacal_A = mkA "zodiacal" "more zodiacal" "most zodiacal" "zodiacally" ;
-lin heliacal_A = mkA "heliacal" "more heliacal" "most heliacal" "heliacally" ;
-lin maniacal_A = mkA "maniacal" "more maniacal" "most maniacal" "maniacally" ;
-lin nymphomaniacal_A = mkA "nymphomaniacal" "more nymphomaniacal" "most nymphomaniacal" "nymphomaniacally" ;
-lin bibliomaniacal_A = mkA "bibliomaniacal" "more bibliomaniacal" "most bibliomaniacal" "bibliomaniacally" ;
-lin megalomaniacal_A = mkA "megalomaniacal" "more megalomaniacal" "most megalomaniacal" "megalomaniacally" ;
-lin monomaniacal_A = mkA "monomaniacal" "more monomaniacal" "most monomaniacal" "monomaniacally" ;
-lin demoniacal_A = mkA "demoniacal" "more demoniacal" "most demoniacal" "demoniacally" ;
-lin hypochondriacal_A = mkA "hypochondriacal" "more hypochondriacal" "most hypochondriacal" "hypochondriacally" ;
-lin paradisiacal_A = mkA "paradisiacal" "more paradisiacal" "most paradisiacal" "paradisiacally" ;
-lin coccal_A = mkA "coccal" "more coccal" "most coccal" "coccally" ;
-lin staphylococcal_A = mkA "staphylococcal" "more staphylococcal" "most staphylococcal" "staphylococcally" ;
-lin pneumococcal_A = mkA "pneumococcal" "more pneumococcal" "most pneumococcal" "pneumococcally" ;
-lin streptococcal_A = mkA "streptococcal" "more streptococcal" "most streptococcal" "streptococcally" ;
-lin buccal_A = mkA "buccal" "more buccal" "most buccal" "buccally" ;
-lin faecal_A = mkA "faecal" "more faecal" "most faecal" "faecally" ;
-lin cecal_A = mkA "cecal" "more cecal" "most cecal" "cecally" ;
-lin bibliothecal_A = mkA "bibliothecal" "more bibliothecal" "most bibliothecal" "bibliothecally" ;
-lin algebraical_A = mkA "algebraical" "more algebraical" "most algebraical" "algebraically" ;
-lin pharisaical_A = mkA "pharisaical" "more pharisaical" "most pharisaical" "pharisaically" ;
-lin cubical_A = mkA "cubical" "more cubical" "most cubical" "cubically" ;
-lin farcical_A = mkA "farcical" "more farcical" "most farcical" "farcically" ;
-lin radical_A = mkA "radical" "more radical" "most radical" "radically" ;
-lin medical_A = mkA "medical" "more medical" "most medical" "medically" ;
-lin paramedical_A = mkA "paramedical" "more paramedical" "most paramedical" "paramedically" ;
-lin premedical_A = mkA "premedical" "more premedical" "most premedical" "premedically" ;
-lin biomedical_A = mkA "biomedical" "more biomedical" "most biomedical" "biomedically" ;
-lin aeromedical_A = mkA "aeromedical" "more aeromedical" "most aeromedical" "aeromedically" ;
-lin veridical_A = mkA "veridical" "more veridical" "most veridical" "veridically" ;
-lin juridical_A = mkA "juridical" "more juridical" "most juridical" "juridically" ;
-lin methodical_A = mkA "methodical" "more methodical" "most methodical" "methodically" ;
-lin unmethodical_A = mkA "unmethodical" "more unmethodical" "most unmethodical" "unmethodically" ;
-lin periodical_A = mkA "periodical" "more periodical" "most periodical" "periodically" ;
-lin pontifical_A = mkA "pontifical" "more pontifical" "most pontifical" "pontifically" ;
-lin magical_A = mkA "magical" "more magical" "most magical" "magically" ;
-lin strategical_A = mkA "strategical" "more strategical" "most strategical" "strategically" ;
-lin pedagogical_A = mkA "pedagogical" "more pedagogical" "most pedagogical" "pedagogically" ;
-lin logical_A = mkA "logical" "more logical" "most logical" "logically" ;
-lin genealogical_A = mkA "genealogical" "more genealogical" "most genealogical" "genealogically" ;
-lin analogical_A = mkA "analogical" "more analogical" "most analogical" "analogically" ;
-lin illogical_A = mkA "illogical" "more illogical" "most illogical" "illogically" ;
-lin pharmacological_A = mkA "pharmacological" "more pharmacological" "most pharmacological" "pharmacologically" ;
-lin psychopharmacological_A = mkA "psychopharmacological" "more psychopharmacological" "most psychopharmacological" "psychopharmacologically" ;
-lin ecological_A = mkA "ecological" "more ecological" "most ecological" "ecologically" ;
-lin gynaecological_A = mkA "gynaecological" "more gynaecological" "most gynaecological" "gynaecologically" ;
-lin gynecological_A = mkA "gynecological" "more gynecological" "most gynecological" "gynecologically" ;
-lin musicological_A = mkA "musicological" "more musicological" "most musicological" "musicologically" ;
-lin toxicological_A = mkA "toxicological" "more toxicological" "most toxicological" "toxicologically" ;
-lin oncological_A = mkA "oncological" "more oncological" "most oncological" "oncologically" ;
-lin pteridological_A = mkA "pteridological" "more pteridological" "most pteridological" "pteridologically" ;
-lin methodological_A = mkA "methodological" "more methodological" "most methodological" "methodologically" ;
-lin archaeological_A = mkA "archaeological" "more archaeological" "most archaeological" "archaeologically" ;
-lin ideological_A = mkA "ideological" "more ideological" "most ideological" "ideologically" ;
-lin geological_A = mkA "geological" "more geological" "most geological" "geologically" ;
-lin theological_A = mkA "theological" "more theological" "most theological" "theologically" ;
-lin teleological_A = mkA "teleological" "more teleological" "most teleological" "teleologically" ;
-lin psychological_A = mkA "psychological" "more psychological" "most psychological" "psychologically" ;
-lin parapsychological_A = mkA "parapsychological" "more parapsychological" "most parapsychological" "parapsychologically" ;
-lin neuropsychological_A = mkA "neuropsychological" "more neuropsychological" "most neuropsychological" "neuropsychologically" ;
-lin morphological_A = mkA "morphological" "more morphological" "most morphological" "morphologically" ;
-lin pathological_A = mkA "pathological" "more pathological" "most pathological" "pathologically" ;
-lin ornithological_A = mkA "ornithological" "more ornithological" "most ornithological" "ornithologically" ;
-lin mythological_A = mkA "mythological" "more mythological" "most mythological" "mythologically" ;
-lin biological_A = mkA "biological" "more biological" "most biological" "biologically" ;
-lin neurobiological_A = mkA "neurobiological" "more neurobiological" "most neurobiological" "neurobiologically" ;
-lin sociological_A = mkA "sociological" "more sociological" "most sociological" "sociologically" ;
-lin radiological_A = mkA "radiological" "more radiological" "most radiological" "radiologically" ;
-lin bacteriological_A = mkA "bacteriological" "more bacteriological" "most bacteriological" "bacteriologically" ;
-lin soteriological_A = mkA "soteriological" "more soteriological" "most soteriological" "soteriologically" ;
-lin physiological_A = mkA "physiological" "more physiological" "most physiological" "physiologically" ;
-lin neurophysiological_A = mkA "neurophysiological" "more neurophysiological" "most neurophysiological" "neurophysiologically" ;
-lin etiological_A = mkA "etiological" "more etiological" "most etiological" "etiologically" ;
-lin axiological_A = mkA "axiological" "more axiological" "most axiological" "axiologically" ;
-lin philological_A = mkA "philological" "more philological" "most philological" "philologically" ;
-lin entomological_A = mkA "entomological" "more entomological" "most entomological" "entomologically" ;
-lin seismological_A = mkA "seismological" "more seismological" "most seismological" "seismologically" ;
-lin etymological_A = mkA "etymological" "more etymological" "most etymological" "etymologically" ;
-lin phrenological_A = mkA "phrenological" "more phrenological" "most phrenological" "phrenologically" ;
-lin technological_A = mkA "technological" "more technological" "most technological" "technologically" ;
-lin ethnological_A = mkA "ethnological" "more ethnological" "most ethnological" "ethnologically" ;
-lin criminological_A = mkA "criminological" "more criminological" "most criminological" "criminologically" ;
-lin terminological_A = mkA "terminological" "more terminological" "most terminological" "terminologically" ;
-lin limnological_A = mkA "limnological" "more limnological" "most limnological" "limnologically" ;
-lin phonological_A = mkA "phonological" "more phonological" "most phonological" "phonologically" ;
-lin chronological_A = mkA "chronological" "more chronological" "most chronological" "chronologically" ;
-lin glottochronological_A = mkA "glottochronological" "more glottochronological" "most glottochronological" "glottochronologically" ;
-lin immunological_A = mkA "immunological" "more immunological" "most immunological" "immunologically" ;
-lin zoological_A = mkA "zoological" "more zoological" "most zoological" "zoologically" ;
-lin protozoological_A = mkA "protozoological" "more protozoological" "most protozoological" "protozoologically" ;
-lin anthropological_A = mkA "anthropological" "more anthropological" "most anthropological" "anthropologically" ;
-lin paleoanthropological_A = mkA "paleoanthropological" "more paleoanthropological" "most paleoanthropological" "paleoanthropologically" ;
-lin topological_A = mkA "topological" "more topological" "most topological" "topologically" ;
-lin aerological_A = mkA "aerological" "more aerological" "most aerological" "aerologically" ;
-lin numerological_A = mkA "numerological" "more numerological" "most numerological" "numerologically" ;
-lin virological_A = mkA "virological" "more virological" "most virological" "virologically" ;
-lin meteorological_A = mkA "meteorological" "more meteorological" "most meteorological" "meteorologically" ;
-lin metrological_A = mkA "metrological" "more metrological" "most metrological" "metrologically" ;
-lin astrological_A = mkA "astrological" "more astrological" "most astrological" "astrologically" ;
-lin neurological_A = mkA "neurological" "more neurological" "most neurological" "neurologically" ;
-lin scatological_A = mkA "scatological" "more scatological" "most scatological" "scatologically" ;
-lin eschatological_A = mkA "eschatological" "more eschatological" "most eschatological" "eschatologically" ;
-lin ontological_A = mkA "ontological" "more ontological" "most ontological" "ontologically" ;
-lin paleontological_A = mkA "paleontological" "more paleontological" "most paleontological" "paleontologically" ;
-lin histological_A = mkA "histological" "more histological" "most histological" "histologically" ;
-lin tautological_A = mkA "tautological" "more tautological" "most tautological" "tautologically" ;
-lin cytological_A = mkA "cytological" "more cytological" "most cytological" "cytologically" ;
-lin metallurgical_A = mkA "metallurgical" "more metallurgical" "most metallurgical" "metallurgically" ;
-lin surgical_A = mkA "surgical" "more surgical" "most surgical" "surgically" ;
-lin nonsurgical_A = mkA "nonsurgical" "more nonsurgical" "most nonsurgical" "nonsurgically" ;
-lin liturgical_A = mkA "liturgical" "more liturgical" "most liturgical" "liturgically" ;
-lin hierarchical_A = mkA "hierarchical" "more hierarchical" "most hierarchical" "hierarchically" ;
-lin nonhierarchical_A = mkA "nonhierarchical" "more nonhierarchical" "most nonhierarchical" "nonhierarchically" ;
-lin psychical_A = mkA "psychical" "more psychical" "most psychical" "psychically" ;
-lin graphical_A = mkA "graphical" "more graphical" "most graphical" "graphically" ;
-lin geographical_A = mkA "geographical" "more geographical" "most geographical" "geographically" ;
-lin biographical_A = mkA "biographical" "more biographical" "most biographical" "biographically" ;
-lin autobiographical_A = mkA "autobiographical" "more autobiographical" "most autobiographical" "autobiographically" ;
-lin semiautobiographical_A = mkA "semiautobiographical" "more semiautobiographical" "most semiautobiographical" "semiautobiographically" ;
-lin topographical_A = mkA "topographical" "more topographical" "most topographical" "topographically" ;
-lin theosophical_A = mkA "theosophical" "more theosophical" "most theosophical" "theosophically" ;
-lin philosophical_A = mkA "philosophical" "more philosophical" "most philosophical" "philosophically" ;
-lin gymnosophical_A = mkA "gymnosophical" "more gymnosophical" "most gymnosophical" "gymnosophically" ;
-lin ethical_A = mkA "ethical" "more ethical" "most ethical" "ethically" ;
-lin unethical_A = mkA "unethical" "more unethical" "most unethical" "unethically" ;
-lin mythical_A = mkA "mythical" "more mythical" "most mythical" "mythically" ;
-lin biblical_A = mkA "biblical" "more biblical" "most biblical" "biblically" ;
-lin postbiblical_A = mkA "postbiblical" "more postbiblical" "most postbiblical" "postbiblically" ;
-lin cyclical_A = mkA "cyclical" "more cyclical" "most cyclical" "cyclically" ;
-lin encyclical_A = mkA "encyclical" "more encyclical" "most encyclical" "encyclically" ;
-lin evangelical_A = mkA "evangelical" "more evangelical" "most evangelical" "evangelically" ;
-lin umbilical_A = mkA "umbilical" "more umbilical" "most umbilical" "umbilically" ;
-lin diabolical_A = mkA "diabolical" "more diabolical" "most diabolical" "diabolically" ;
-lin parabolical_A = mkA "parabolical" "more parabolical" "most parabolical" "parabolically" ;
-lin symbolical_A = mkA "symbolical" "more symbolical" "most symbolical" "symbolically" ;
-lin chemical_A = mkA "chemical" "more chemical" "most chemical" "chemically" ;
-lin physicochemical_A = mkA "physicochemical" "more physicochemical" "most physicochemical" "physicochemically" ;
-lin biochemical_A = mkA "biochemical" "more biochemical" "most biochemical" "biochemically" ;
-lin immunochemical_A = mkA "immunochemical" "more immunochemical" "most immunochemical" "immunochemically" ;
-lin electrochemical_A = mkA "electrochemical" "more electrochemical" "most electrochemical" "electrochemically" ;
-lin pyrochemical_A = mkA "pyrochemical" "more pyrochemical" "most pyrochemical" "pyrochemically" ;
-lin photochemical_A = mkA "photochemical" "more photochemical" "most photochemical" "photochemically" ;
-lin rhythmical_A = mkA "rhythmical" "more rhythmical" "most rhythmical" "rhythmically" ;
-lin unrhythmical_A = mkA "unrhythmical" "more unrhythmical" "most unrhythmical" "unrhythmically" ;
-lin inimical_A = mkA "inimical" "more inimical" "most inimical" "inimically" ;
-lin comical_A = mkA "comical" "more comical" "most comical" "comically" ;
-lin economical_A = mkA "economical" "more economical" "most economical" "economically" ;
-lin uneconomical_A = mkA "uneconomical" "more uneconomical" "most uneconomical" "uneconomically" ;
-lin astronomical_A = mkA "astronomical" "more astronomical" "most astronomical" "astronomically" ;
-lin anatomical_A = mkA "anatomical" "more anatomical" "most anatomical" "anatomically" ;
-lin mechanical_A = mkA "mechanical" "more mechanical" "most mechanical" "mechanically" ;
-lin nonmechanical_A = mkA "nonmechanical" "more nonmechanical" "most nonmechanical" "nonmechanically" ;
-lin unmechanical_A = mkA "unmechanical" "more unmechanical" "most unmechanical" "unmechanically" ;
-lin electromechanical_A = mkA "electromechanical" "more electromechanical" "most electromechanical" "electromechanically" ;
-lin photomechanical_A = mkA "photomechanical" "more photomechanical" "most photomechanical" "photomechanically" ;
-lin servomechanical_A = mkA "servomechanical" "more servomechanical" "most servomechanical" "servomechanically" ;
-lin puritanical_A = mkA "puritanical" "more puritanical" "most puritanical" "puritanically" ;
-lin botanical_A = mkA "botanical" "more botanical" "most botanical" "botanically" ;
-lin ecumenical_A = mkA "ecumenical" "more ecumenical" "most ecumenical" "ecumenically" ;
-lin oecumenical_A = mkA "oecumenical" "more oecumenical" "most oecumenical" "oecumenically" ;
-lin arsenical_A = mkA "arsenical" "more arsenical" "most arsenical" "arsenically" ;
-lin technical_A = mkA "technical" "more technical" "most technical" "technically" ;
-lin nontechnical_A = mkA "nontechnical" "more nontechnical" "most nontechnical" "nontechnically" ;
-lin rabbinical_A = mkA "rabbinical" "more rabbinical" "most rabbinical" "rabbinically" ;
-lin finical_A = mkA "finical" "more finical" "most finical" "finically" ;
-lin clinical_A = mkA "clinical" "more clinical" "most clinical" "clinically" ;
-lin subclinical_A = mkA "subclinical" "more subclinical" "most subclinical" "subclinically" ;
-lin preclinical_A = mkA "preclinical" "more preclinical" "most preclinical" "preclinically" ;
-lin dominical_A = mkA "dominical" "more dominical" "most dominical" "dominically" ;
-lin tyrannical_A = mkA "tyrannical" "more tyrannical" "most tyrannical" "tyrannically" ;
-lin conical_A = mkA "conical" "more conical" "most conical" "conically" ;
-lin canonical_A = mkA "canonical" "more canonical" "most canonical" "canonically" ;
-lin ironical_A = mkA "ironical" "more ironical" "most ironical" "ironically" ;
-lin cynical_A = mkA "cynical" "more cynical" "most cynical" "cynically" ;
-lin stoical_A = mkA "stoical" "more stoical" "most stoical" "stoically" ;
-lin apical_A = mkA "apical" "more apical" "most apical" "apically" ;
-lin microscopical_A = mkA "microscopical" "more microscopical" "most microscopical" "microscopically" ;
-lin tropical_A = mkA "tropical" "more tropical" "most tropical" "tropically" ;
-lin subtropical_A = mkA "subtropical" "more subtropical" "most subtropical" "subtropically" ;
-lin semitropical_A = mkA "semitropical" "more semitropical" "most semitropical" "semitropically" ;
-lin pantropical_A = mkA "pantropical" "more pantropical" "most pantropical" "pantropically" ;
-lin topical_A = mkA "topical" "more topical" "most topical" "topically" ;
-lin typical_A = mkA "typical" "more typical" "most typical" "typically" ;
-lin atypical_A = mkA "atypical" "more atypical" "most atypical" "atypically" ;
-lin untypical_A = mkA "untypical" "more untypical" "most untypical" "untypically" ;
-lin genotypical_A = mkA "genotypical" "more genotypical" "most genotypical" "genotypically" ;
-lin phenotypical_A = mkA "phenotypical" "more phenotypical" "most phenotypical" "phenotypically" ;
-lin cylindrical_A = mkA "cylindrical" "more cylindrical" "most cylindrical" "cylindrically" ;
-lin bicylindrical_A = mkA "bicylindrical" "more bicylindrical" "most bicylindrical" "bicylindrically" ;
-lin spherical_A = mkA "spherical" "more spherical" "most spherical" "spherically" ;
-lin hemispherical_A = mkA "hemispherical" "more hemispherical" "most hemispherical" "hemispherically" ;
-lin nonspherical_A = mkA "nonspherical" "more nonspherical" "most nonspherical" "nonspherically" ;
-lin clerical_A = mkA "clerical" "more clerical" "most clerical" "clerically" ;
-lin chimerical_A = mkA "chimerical" "more chimerical" "most chimerical" "chimerically" ;
-lin numerical_A = mkA "numerical" "more numerical" "most numerical" "numerically" ;
-lin hysterical_A = mkA "hysterical" "more hysterical" "most hysterical" "hysterically" ;
-lin empirical_A = mkA "empirical" "more empirical" "most empirical" "empirically" ;
-lin semiempirical_A = mkA "semiempirical" "more semiempirical" "most semiempirical" "semiempirically" ;
-lin satirical_A = mkA "satirical" "more satirical" "most satirical" "satirically" ;
-lin arborical_A = mkA "arborical" "more arborical" "most arborical" "arborically" ;
-lin allegorical_A = mkA "allegorical" "more allegorical" "most allegorical" "allegorically" ;
-lin categorical_A = mkA "categorical" "more categorical" "most categorical" "categorically" ;
-lin metaphorical_A = mkA "metaphorical" "more metaphorical" "most metaphorical" "metaphorically" ;
-lin oratorical_A = mkA "oratorical" "more oratorical" "most oratorical" "oratorically" ;
-lin rhetorical_A = mkA "rhetorical" "more rhetorical" "most rhetorical" "rhetorically" ;
-lin unrhetorical_A = mkA "unrhetorical" "more unrhetorical" "most unrhetorical" "unrhetorically" ;
-lin historical_A = mkA "historical" "more historical" "most historical" "historically" ;
-lin ahistorical_A = mkA "ahistorical" "more ahistorical" "most ahistorical" "ahistorically" ;
-lin prehistorical_A = mkA "prehistorical" "more prehistorical" "most prehistorical" "prehistorically" ;
-lin theatrical_A = mkA "theatrical" "more theatrical" "most theatrical" "theatrically" ;
-lin untheatrical_A = mkA "untheatrical" "more untheatrical" "most untheatrical" "untheatrically" ;
-lin electrical_A = mkA "electrical" "more electrical" "most electrical" "electrically" ;
-lin metrical_A = mkA "metrical" "more metrical" "most metrical" "metrically" ;
-lin symmetrical_A = mkA "symmetrical" "more symmetrical" "most symmetrical" "symmetrically" ;
-lin asymmetrical_A = mkA "asymmetrical" "more asymmetrical" "most asymmetrical" "asymmetrically" ;
-lin geometrical_A = mkA "geometrical" "more geometrical" "most geometrical" "geometrically" ;
-lin obstetrical_A = mkA "obstetrical" "more obstetrical" "most obstetrical" "obstetrically" ;
-lin lyrical_A = mkA "lyrical" "more lyrical" "most lyrical" "lyrically" ;
-lin vesical_A = mkA "vesical" "more vesical" "most vesical" "vesically" ;
-lin abdominovesical_A = mkA "abdominovesical" "more abdominovesical" "most abdominovesical" "abdominovesically" ;
-lin lackadaisical_A = mkA "lackadaisical" "more lackadaisical" "most lackadaisical" "lackadaisically" ;
-lin whimsical_A = mkA "whimsical" "more whimsical" "most whimsical" "whimsically" ;
-lin nonsensical_A = mkA "nonsensical" "more nonsensical" "most nonsensical" "nonsensically" ;
-lin dropsical_A = mkA "dropsical" "more dropsical" "most dropsical" "dropsically" ;
-lin classical_A = mkA "classical" "more classical" "most classical" "classically" ;
-lin nonclassical_A = mkA "nonclassical" "more nonclassical" "most nonclassical" "nonclassically" ;
-lin musical_A = mkA "musical" "more musical" "most musical" "musically" ;
-lin unmusical_A = mkA "unmusical" "more unmusical" "most unmusical" "unmusically" ;
-lin physical_A = mkA "physical" "more physical" "most physical" "physically" ;
-lin metaphysical_A = mkA "metaphysical" "more metaphysical" "most metaphysical" "metaphysically" ;
-lin geophysical_A = mkA "geophysical" "more geophysical" "most geophysical" "geophysically" ;
-lin astrophysical_A = mkA "astrophysical" "more astrophysical" "most astrophysical" "astrophysically" ;
-lin sabbatical_A = mkA "sabbatical" "more sabbatical" "most sabbatical" "sabbatically" ;
-lin viatical_A = mkA "viatical" "more viatical" "most viatical" "viatically" ;
-lin mathematical_A = mkA "mathematical" "more mathematical" "most mathematical" "mathematically" ;
-lin grammatical_A = mkA "grammatical" "more grammatical" "most grammatical" "grammatically" ;
-lin diagrammatical_A = mkA "diagrammatical" "more diagrammatical" "most diagrammatical" "diagrammatically" ;
-lin ungrammatical_A = mkA "ungrammatical" "more ungrammatical" "most ungrammatical" "ungrammatically" ;
-lin fanatical_A = mkA "fanatical" "more fanatical" "most fanatical" "fanatically" ;
-lin piratical_A = mkA "piratical" "more piratical" "most piratical" "piratically" ;
-lin practical_A = mkA "practical" "more practical" "most practical" "practically" ;
-lin impractical_A = mkA "impractical" "more impractical" "most impractical" "impractically" ;
-lin tactical_A = mkA "tactical" "more tactical" "most tactical" "tactically" ;
-lin dialectical_A = mkA "dialectical" "more dialectical" "most dialectical" "dialectically" ;
-lin alphabetical_A = mkA "alphabetical" "more alphabetical" "most alphabetical" "alphabetically" ;
-lin catechetical_A = mkA "catechetical" "more catechetical" "most catechetical" "catechetically" ;
-lin prophetical_A = mkA "prophetical" "more prophetical" "most prophetical" "prophetically" ;
-lin antithetical_A = mkA "antithetical" "more antithetical" "most antithetical" "antithetically" ;
-lin parenthetical_A = mkA "parenthetical" "more parenthetical" "most parenthetical" "parenthetically" ;
-lin hypothetical_A = mkA "hypothetical" "more hypothetical" "most hypothetical" "hypothetically" ;
-lin esthetical_A = mkA "esthetical" "more esthetical" "most esthetical" "esthetically" ;
-lin aesthetical_A = mkA "aesthetical" "more aesthetical" "most aesthetical" "aesthetically" ;
-lin arithmetical_A = mkA "arithmetical" "more arithmetical" "most arithmetical" "arithmetically" ;
-lin poetical_A = mkA "poetical" "more poetical" "most poetical" "poetically" ;
-lin heretical_A = mkA "heretical" "more heretical" "most heretical" "heretically" ;
-lin antiheretical_A = mkA "antiheretical" "more antiheretical" "most antiheretical" "antiheretically" ;
-lin theoretical_A = mkA "theoretical" "more theoretical" "most theoretical" "theoretically" ;
-lin political_A = mkA "political" "more political" "most political" "politically" ;
-lin apolitical_A = mkA "apolitical" "more apolitical" "most apolitical" "apolitically" ;
-lin semipolitical_A = mkA "semipolitical" "more semipolitical" "most semipolitical" "semipolitically" ;
-lin nonpolitical_A = mkA "nonpolitical" "more nonpolitical" "most nonpolitical" "nonpolitically" ;
-lin geopolitical_A = mkA "geopolitical" "more geopolitical" "most geopolitical" "geopolitically" ;
-lin critical_A = mkA "critical" "more critical" "most critical" "critically" ;
-lin acritical_A = mkA "acritical" "more acritical" "most acritical" "acritically" ;
-lin diacritical_A = mkA "diacritical" "more diacritical" "most diacritical" "diacritically" ;
-lin noncritical_A = mkA "noncritical" "more noncritical" "most noncritical" "noncritically" ;
-lin uncritical_A = mkA "uncritical" "more uncritical" "most uncritical" "uncritically" ;
-lin hypocritical_A = mkA "hypocritical" "more hypocritical" "most hypocritical" "hypocritically" ;
-lin supercritical_A = mkA "supercritical" "more supercritical" "most supercritical" "supercritically" ;
-lin hypercritical_A = mkA "hypercritical" "more hypercritical" "most hypercritical" "hypercritically" ;
-lin overcritical_A = mkA "overcritical" "more overcritical" "most overcritical" "overcritically" ;
-lin parasitical_A = mkA "parasitical" "more parasitical" "most parasitical" "parasitically" ;
-lin jesuitical_A = mkA "jesuitical" "more jesuitical" "most jesuitical" "jesuitically" ;
-lin identical_A = mkA "identical" "more identical" "most identical" "identically" ;
-lin sceptical_A = mkA "sceptical" "more sceptical" "most sceptical" "sceptically" ;
-lin skeptical_A = mkA "skeptical" "more skeptical" "most skeptical" "skeptically" ;
-lin elliptical_A = mkA "elliptical" "more elliptical" "most elliptical" "elliptically" ;
-lin optical_A = mkA "optical" "more optical" "most optical" "optically" ;
-lin vertical_A = mkA "vertical" "more vertical" "most vertical" "vertically" ;
-lin cortical_A = mkA "cortical" "more cortical" "most cortical" "cortically" ;
-lin subcortical_A = mkA "subcortical" "more subcortical" "most subcortical" "subcortically" ;
-lin paleocortical_A = mkA "paleocortical" "more paleocortical" "most paleocortical" "paleocortically" ;
-lin neocortical_A = mkA "neocortical" "more neocortical" "most neocortical" "neocortically" ;
-lin thalamocortical_A = mkA "thalamocortical" "more thalamocortical" "most thalamocortical" "thalamocortically" ;
-lin adrenocortical_A = mkA "adrenocortical" "more adrenocortical" "most adrenocortical" "adrenocortically" ;
-lin ecclesiastical_A = mkA "ecclesiastical" "more ecclesiastical" "most ecclesiastical" "ecclesiastically" ;
-lin theistical_A = mkA "theistical" "more theistical" "most theistical" "theistically" ;
-lin egoistical_A = mkA "egoistical" "more egoistical" "most egoistical" "egoistically" ;
-lin statistical_A = mkA "statistical" "more statistical" "most statistical" "statistically" ;
-lin casuistical_A = mkA "casuistical" "more casuistical" "most casuistical" "casuistically" ;
-lin mystical_A = mkA "mystical" "more mystical" "most mystical" "mystically" ;
-lin nautical_A = mkA "nautical" "more nautical" "most nautical" "nautically" ;
-lin aeronautical_A = mkA "aeronautical" "more aeronautical" "most aeronautical" "aeronautically" ;
-lin pharmaceutical_A = mkA "pharmaceutical" "more pharmaceutical" "most pharmaceutical" "pharmaceutically" ;
-lin therapeutical_A = mkA "therapeutical" "more therapeutical" "most therapeutical" "therapeutically" ;
-lin analytical_A = mkA "analytical" "more analytical" "most analytical" "analytically" ;
-lin psychoanalytical_A = mkA "psychoanalytical" "more psychoanalytical" "most psychoanalytical" "psychoanalytically" ;
-lin cervical_A = mkA "cervical" "more cervical" "most cervical" "cervically" ;
-lin indexical_A = mkA "indexical" "more indexical" "most indexical" "indexically" ;
-lin lexical_A = mkA "lexical" "more lexical" "most lexical" "lexically" ;
-lin nonlexical_A = mkA "nonlexical" "more nonlexical" "most nonlexical" "nonlexically" ;
-lin paradoxical_A = mkA "paradoxical" "more paradoxical" "most paradoxical" "paradoxically" ;
-lin quizzical_A = mkA "quizzical" "more quizzical" "most quizzical" "quizzically" ;
-lin provencal_A = mkA "provencal" "more provencal" "most provencal" "provencally" ;
-lin focal_A = mkA "focal" "more focal" "most focal" "focally" ;
-lin bifocal_A = mkA "bifocal" "more bifocal" "most bifocal" "bifocally" ;
-lin local_A = mkA "local" "more local" "most local" "locally" ;
-lin reciprocal_A = mkA "reciprocal" "more reciprocal" "most reciprocal" "reciprocally" ;
-lin nonreciprocal_A = mkA "nonreciprocal" "more nonreciprocal" "most nonreciprocal" "nonreciprocally" ;
-lin vocal_A = mkA "vocal" "more vocal" "most vocal" "vocally" ;
-lin equivocal_A = mkA "equivocal" "more equivocal" "most equivocal" "equivocally" ;
-lin unequivocal_A = mkA "unequivocal" "more unequivocal" "most unequivocal" "unequivocally" ;
-lin homocercal_A = mkA "homocercal" "more homocercal" "most homocercal" "homocercally" ;
-lin heterocercal_A = mkA "heterocercal" "more heterocercal" "most heterocercal" "heterocercally" ;
-lin fiscal_A = mkA "fiscal" "more fiscal" "most fiscal" "fiscally" ;
-lin faucal_A = mkA "faucal" "more faucal" "most faucal" "faucally" ;
-lin ducal_A = mkA "ducal" "more ducal" "most ducal" "ducally" ;
-lin archducal_A = mkA "archducal" "more archducal" "most archducal" "archducally" ;
-lin hadal_A = mkA "hadal" "more hadal" "most hadal" "hadally" ;
-lin hebdomadal_A = mkA "hebdomadal" "more hebdomadal" "most hebdomadal" "hebdomadally" ;
-lin gonadal_A = mkA "gonadal" "more gonadal" "most gonadal" "gonadally" ;
-lin agonadal_A = mkA "agonadal" "more agonadal" "most agonadal" "agonadally" ;
-lin daedal_A = mkA "daedal" "more daedal" "most daedal" "daedally" ;
-lin creedal_A = mkA "creedal" "more creedal" "most creedal" "creedally" ;
-lin pedal_A = mkA "pedal" "more pedal" "most pedal" "pedally" ;
-lin bipedal_A = mkA "bipedal" "more bipedal" "most bipedal" "bipedally" ;
-lin quadrupedal_A = mkA "quadrupedal" "more quadrupedal" "most quadrupedal" "quadrupedally" ;
-lin fungicidal_A = mkA "fungicidal" "more fungicidal" "most fungicidal" "fungicidally" ;
-lin homicidal_A = mkA "homicidal" "more homicidal" "most homicidal" "homicidally" ;
-lin spermicidal_A = mkA "spermicidal" "more spermicidal" "most spermicidal" "spermicidally" ;
-lin bactericidal_A = mkA "bactericidal" "more bactericidal" "most bactericidal" "bactericidally" ;
-lin viricidal_A = mkA "viricidal" "more viricidal" "most viricidal" "viricidally" ;
-lin insecticidal_A = mkA "insecticidal" "more insecticidal" "most insecticidal" "insecticidally" ;
-lin suicidal_A = mkA "suicidal" "more suicidal" "most suicidal" "suicidally" ;
-lin araneidal_A = mkA "araneidal" "more araneidal" "most araneidal" "araneidally" ;
-lin pyramidal_A = mkA "pyramidal" "more pyramidal" "most pyramidal" "pyramidally" ;
-lin autacoidal_A = mkA "autacoidal" "more autacoidal" "most autacoidal" "autacoidally" ;
-lin alkaloidal_A = mkA "alkaloidal" "more alkaloidal" "most alkaloidal" "alkaloidally" ;
-lin colloidal_A = mkA "colloidal" "more colloidal" "most colloidal" "colloidally" ;
-lin paraboloidal_A = mkA "paraboloidal" "more paraboloidal" "most paraboloidal" "paraboloidally" ;
-lin hyperboloidal_A = mkA "hyperboloidal" "more hyperboloidal" "most hyperboloidal" "hyperboloidally" ;
-lin adenoidal_A = mkA "adenoidal" "more adenoidal" "most adenoidal" "adenoidally" ;
-lin chancroidal_A = mkA "chancroidal" "more chancroidal" "most chancroidal" "chancroidally" ;
-lin bacteroidal_A = mkA "bacteroidal" "more bacteroidal" "most bacteroidal" "bacteroidally" ;
-lin steroidal_A = mkA "steroidal" "more steroidal" "most steroidal" "steroidally" ;
-lin asteroidal_A = mkA "asteroidal" "more asteroidal" "most asteroidal" "asteroidally" ;
-lin nonsteroidal_A = mkA "nonsteroidal" "more nonsteroidal" "most nonsteroidal" "nonsteroidally" ;
-lin toroidal_A = mkA "toroidal" "more toroidal" "most toroidal" "toroidally" ;
-lin centroidal_A = mkA "centroidal" "more centroidal" "most centroidal" "centroidally" ;
-lin sinusoidal_A = mkA "sinusoidal" "more sinusoidal" "most sinusoidal" "sinusoidally" ;
-lin trapezoidal_A = mkA "trapezoidal" "more trapezoidal" "most trapezoidal" "trapezoidally" ;
-lin rhizoidal_A = mkA "rhizoidal" "more rhizoidal" "most rhizoidal" "rhizoidally" ;
-lin bridal_A = mkA "bridal" "more bridal" "most bridal" "bridally" ;
-lin apsidal_A = mkA "apsidal" "more apsidal" "most apsidal" "apsidally" ;
-lin tidal_A = mkA "tidal" "more tidal" "most tidal" "tidally" ;
-lin intertidal_A = mkA "intertidal" "more intertidal" "most intertidal" "intertidally" ;
-lin pudendal_A = mkA "pudendal" "more pudendal" "most pudendal" "pudendally" ;
-lin modal_A = mkA "modal" "more modal" "most modal" "modally" ;
-lin bimodal_A = mkA "bimodal" "more bimodal" "most bimodal" "bimodally" ;
-lin unimodal_A = mkA "unimodal" "more unimodal" "most unimodal" "unimodally" ;
-lin apodal_A = mkA "apodal" "more apodal" "most apodal" "apodally" ;
-lin antipodal_A = mkA "antipodal" "more antipodal" "most antipodal" "antipodally" ;
-lin arthropodal_A = mkA "arthropodal" "more arthropodal" "most arthropodal" "arthropodally" ;
-lin chordal_A = mkA "chordal" "more chordal" "most chordal" "chordally" ;
-lin caudal_A = mkA "caudal" "more caudal" "most caudal" "caudally" ;
-lin feudal_A = mkA "feudal" "more feudal" "most feudal" "feudally" ;
-lin calyceal_A = mkA "calyceal" "more calyceal" "most calyceal" "calyceally" ;
-lin ideal_A = mkA "ideal" "more ideal" "most ideal" "ideally" ;
-lin esophageal_A = mkA "esophageal" "more esophageal" "most esophageal" "esophageally" ;
-lin gastroesophageal_A = mkA "gastroesophageal" "more gastroesophageal" "most gastroesophageal" "gastroesophageally" ;
-lin phalangeal_A = mkA "phalangeal" "more phalangeal" "most phalangeal" "phalangeally" ;
-lin meningeal_A = mkA "meningeal" "more meningeal" "most meningeal" "meningeally" ;
-lin pharyngeal_A = mkA "pharyngeal" "more pharyngeal" "most pharyngeal" "pharyngeally" ;
-lin laryngopharyngeal_A = mkA "laryngopharyngeal" "more laryngopharyngeal" "most laryngopharyngeal" "laryngopharyngeally" ;
-lin oropharyngeal_A = mkA "oropharyngeal" "more oropharyngeal" "most oropharyngeal" "oropharyngeally" ;
-lin nasopharyngeal_A = mkA "nasopharyngeal" "more nasopharyngeal" "most nasopharyngeal" "nasopharyngeally" ;
-lin glossopharyngeal_A = mkA "glossopharyngeal" "more glossopharyngeal" "most glossopharyngeal" "glossopharyngeally" ;
-lin laryngeal_A = mkA "laryngeal" "more laryngeal" "most laryngeal" "laryngeally" ;
-lin coccygeal_A = mkA "coccygeal" "more coccygeal" "most coccygeal" "coccygeally" ;
-lin tracheal_A = mkA "tracheal" "more tracheal" "most tracheal" "tracheally" ;
-lin diarrheal_A = mkA "diarrheal" "more diarrheal" "most diarrheal" "diarrheally" ;
-lin leal_A = mkA "leal" "more leal" "most leal" "leally" ;
-lin piecemeal_A = mkA "piecemeal" "more piecemeal" "most piecemeal" "piecemeally" ;
-lin calcaneal_A = mkA "calcaneal" "more calcaneal" "most calcaneal" "calcaneally" ;
-lin hymeneal_A = mkA "hymeneal" "more hymeneal" "most hymeneal" "hymeneally" ;
-lin lineal_A = mkA "lineal" "more lineal" "most lineal" "lineally" ;
-lin matrilineal_A = mkA "matrilineal" "more matrilineal" "most matrilineal" "matrilineally" ;
-lin patrilineal_A = mkA "patrilineal" "more patrilineal" "most patrilineal" "patrilineally" ;
-lin curvilineal_A = mkA "curvilineal" "more curvilineal" "most curvilineal" "curvilineally" ;
-lin pineal_A = mkA "pineal" "more pineal" "most pineal" "pineally" ;
-lin perineal_A = mkA "perineal" "more perineal" "most perineal" "perineally" ;
-lin anoperineal_A = mkA "anoperineal" "more anoperineal" "most anoperineal" "anoperineally" ;
-lin pectineal_A = mkA "pectineal" "more pectineal" "most pectineal" "pectineally" ;
-lin peroneal_A = mkA "peroneal" "more peroneal" "most peroneal" "peroneally" ;
-lin peritoneal_A = mkA "peritoneal" "more peritoneal" "most peritoneal" "peritoneally" ;
-lin corneal_A = mkA "corneal" "more corneal" "most corneal" "corneally" ;
-lin real_A = mkA "real" "more real" "most real" "really" ;
-lin areal_A = mkA "areal" "more areal" "most areal" "areally" ;
-lin cereal_A = mkA "cereal" "more cereal" "most cereal" "cereally" ;
-lin sidereal_A = mkA "sidereal" "more sidereal" "most sidereal" "sidereally" ;
-lin ethereal_A = mkA "ethereal" "more ethereal" "most ethereal" "ethereally" ;
-lin venereal_A = mkA "venereal" "more venereal" "most venereal" "venereally" ;
-lin funereal_A = mkA "funereal" "more funereal" "most funereal" "funereally" ;
-lin unreal_A = mkA "unreal" "more unreal" "most unreal" "unreally" ;
-lin boreal_A = mkA "boreal" "more boreal" "most boreal" "boreally" ;
-lin arboreal_A = mkA "arboreal" "more arboreal" "most arboreal" "arboreally" ;
-lin nonarboreal_A = mkA "nonarboreal" "more nonarboreal" "most nonarboreal" "nonarboreally" ;
-lin marmoreal_A = mkA "marmoreal" "more marmoreal" "most marmoreal" "marmoreally" ;
-lin corporeal_A = mkA "corporeal" "more corporeal" "most corporeal" "corporeally" ;
-lin incorporeal_A = mkA "incorporeal" "more incorporeal" "most incorporeal" "incorporeally" ;
-lin empyreal_A = mkA "empyreal" "more empyreal" "most empyreal" "empyreally" ;
-lin diaphyseal_A = mkA "diaphyseal" "more diaphyseal" "most diaphyseal" "diaphyseally" ;
-lin epiphyseal_A = mkA "epiphyseal" "more epiphyseal" "most epiphyseal" "epiphyseally" ;
-lin apophyseal_A = mkA "apophyseal" "more apophyseal" "most apophyseal" "apophyseally" ;
-lin hypophyseal_A = mkA "hypophyseal" "more hypophyseal" "most hypophyseal" "hypophyseally" ;
-lin lacteal_A = mkA "lacteal" "more lacteal" "most lacteal" "lacteally" ;
-lin bracteal_A = mkA "bracteal" "more bracteal" "most bracteal" "bracteally" ;
-lin popliteal_A = mkA "popliteal" "more popliteal" "most popliteal" "popliteally" ;
-lin osteal_A = mkA "osteal" "more osteal" "most osteal" "osteally" ;
-lin luteal_A = mkA "luteal" "more luteal" "most luteal" "luteally" ;
-lin gluteal_A = mkA "gluteal" "more gluteal" "most gluteal" "gluteally" ;
-lin uveal_A = mkA "uveal" "more uveal" "most uveal" "uveally" ;
-lin vagal_A = mkA "vagal" "more vagal" "most vagal" "vagally" ;
-lin legal_A = mkA "legal" "more legal" "most legal" "legally" ;
-lin extralegal_A = mkA "extralegal" "more extralegal" "most extralegal" "extralegally" ;
-lin illegal_A = mkA "illegal" "more illegal" "most illegal" "illegally" ;
-lin medicolegal_A = mkA "medicolegal" "more medicolegal" "most medicolegal" "medicolegally" ;
-lin regal_A = mkA "regal" "more regal" "most regal" "regally" ;
-lin viceregal_A = mkA "viceregal" "more viceregal" "most viceregal" "viceregally" ;
-lin prodigal_A = mkA "prodigal" "more prodigal" "most prodigal" "prodigally" ;
-lin algal_A = mkA "algal" "more algal" "most algal" "algally" ;
-lin fungal_A = mkA "fungal" "more fungal" "most fungal" "fungally" ;
-lin fugal_A = mkA "fugal" "more fugal" "most fugal" "fugally" ;
-lin centrifugal_A = mkA "centrifugal" "more centrifugal" "most centrifugal" "centrifugally" ;
-lin conjugal_A = mkA "conjugal" "more conjugal" "most conjugal" "conjugally" ;
-lin frugal_A = mkA "frugal" "more frugal" "most frugal" "frugally" ;
-lin epochal_A = mkA "epochal" "more epochal" "most epochal" "epochally" ;
-lin matriarchal_A = mkA "matriarchal" "more matriarchal" "most matriarchal" "matriarchally" ;
-lin patriarchal_A = mkA "patriarchal" "more patriarchal" "most patriarchal" "patriarchally" ;
-lin monarchal_A = mkA "monarchal" "more monarchal" "most monarchal" "monarchally" ;
-lin paschal_A = mkA "paschal" "more paschal" "most paschal" "paschally" ;
-lin triumphal_A = mkA "triumphal" "more triumphal" "most triumphal" "triumphally" ;
-lin apocryphal_A = mkA "apocryphal" "more apocryphal" "most apocryphal" "apocryphally" ;
-lin catarrhal_A = mkA "catarrhal" "more catarrhal" "most catarrhal" "catarrhally" ;
-lin lethal_A = mkA "lethal" "more lethal" "most lethal" "lethally" ;
-lin nonlethal_A = mkA "nonlethal" "more nonlethal" "most nonlethal" "nonlethally" ;
-lin zenithal_A = mkA "zenithal" "more zenithal" "most zenithal" "zenithally" ;
-lin neanderthal_A = mkA "neanderthal" "more neanderthal" "most neanderthal" "neanderthally" ;
-lin azimuthal_A = mkA "azimuthal" "more azimuthal" "most azimuthal" "azimuthally" ;
-lin bismuthal_A = mkA "bismuthal" "more bismuthal" "most bismuthal" "bismuthally" ;
-lin labial_A = mkA "labial" "more labial" "most labial" "labially" ;
-lin bilabial_A = mkA "bilabial" "more bilabial" "most bilabial" "bilabially" ;
-lin tibial_A = mkA "tibial" "more tibial" "most tibial" "tibially" ;
-lin cambial_A = mkA "cambial" "more cambial" "most cambial" "cambially" ;
-lin microbial_A = mkA "microbial" "more microbial" "most microbial" "microbially" ;
-lin antimicrobial_A = mkA "antimicrobial" "more antimicrobial" "most antimicrobial" "antimicrobially" ;
-lin adverbial_A = mkA "adverbial" "more adverbial" "most adverbial" "adverbially" ;
-lin proverbial_A = mkA "proverbial" "more proverbial" "most proverbial" "proverbially" ;
-lin connubial_A = mkA "connubial" "more connubial" "most connubial" "connubially" ;
-lin facial_A = mkA "facial" "more facial" "most facial" "facially" ;
-lin unifacial_A = mkA "unifacial" "more unifacial" "most unifacial" "unifacially" ;
-lin maxillofacial_A = mkA "maxillofacial" "more maxillofacial" "most maxillofacial" "maxillofacially" ;
-lin mandibulofacial_A = mkA "mandibulofacial" "more mandibulofacial" "most mandibulofacial" "mandibulofacially" ;
-lin interfacial_A = mkA "interfacial" "more interfacial" "most interfacial" "interfacially" ;
-lin glacial_A = mkA "glacial" "more glacial" "most glacial" "glacially" ;
-lin postglacial_A = mkA "postglacial" "more postglacial" "most postglacial" "postglacially" ;
-lin racial_A = mkA "racial" "more racial" "most racial" "racially" ;
-lin biracial_A = mkA "biracial" "more biracial" "most biracial" "biracially" ;
-lin multiracial_A = mkA "multiracial" "more multiracial" "most multiracial" "multiracially" ;
-lin nonracial_A = mkA "nonracial" "more nonracial" "most nonracial" "nonracially" ;
-lin interracial_A = mkA "interracial" "more interracial" "most interracial" "interracially" ;
-lin aecial_A = mkA "aecial" "more aecial" "most aecial" "aecially" ;
-lin apothecial_A = mkA "apothecial" "more apothecial" "most apothecial" "apothecially" ;
-lin special_A = mkA "special" "more special" "most special" "specially" ;
-lin especial_A = mkA "especial" "more especial" "most especial" "especially" ;
-lin judicial_A = mkA "judicial" "more judicial" "most judicial" "judicially" ;
-lin extrajudicial_A = mkA "extrajudicial" "more extrajudicial" "most extrajudicial" "extrajudicially" ;
-lin prejudicial_A = mkA "prejudicial" "more prejudicial" "most prejudicial" "prejudicially" ;
-lin beneficial_A = mkA "beneficial" "more beneficial" "most beneficial" "beneficially" ;
-lin official_A = mkA "official" "more official" "most official" "officially" ;
-lin semiofficial_A = mkA "semiofficial" "more semiofficial" "most semiofficial" "semiofficially" ;
-lin unofficial_A = mkA "unofficial" "more unofficial" "most unofficial" "unofficially" ;
-lin sacrificial_A = mkA "sacrificial" "more sacrificial" "most sacrificial" "sacrificially" ;
-lin artificial_A = mkA "artificial" "more artificial" "most artificial" "artificially" ;
-lin superficial_A = mkA "superficial" "more superficial" "most superficial" "superficially" ;
-lin surficial_A = mkA "surficial" "more surficial" "most surficial" "surficially" ;
-lin altricial_A = mkA "altricial" "more altricial" "most altricial" "altricially" ;
-lin financial_A = mkA "financial" "more financial" "most financial" "financially" ;
-lin nonfinancial_A = mkA "nonfinancial" "more nonfinancial" "most nonfinancial" "nonfinancially" ;
-lin provincial_A = mkA "provincial" "more provincial" "most provincial" "provincially" ;
-lin uncial_A = mkA "uncial" "more uncial" "most uncial" "uncially" ;
-lin precocial_A = mkA "precocial" "more precocial" "most precocial" "precocially" ;
-lin social_A = mkA "social" "more social" "most social" "socially" ;
-lin asocial_A = mkA "asocial" "more asocial" "most asocial" "asocially" ;
-lin antisocial_A = mkA "antisocial" "more antisocial" "most antisocial" "antisocially" ;
-lin unsocial_A = mkA "unsocial" "more unsocial" "most unsocial" "unsocially" ;
-lin commercial_A = mkA "commercial" "more commercial" "most commercial" "commercially" ;
-lin noncommercial_A = mkA "noncommercial" "more noncommercial" "most noncommercial" "noncommercially" ;
-lin uncommercial_A = mkA "uncommercial" "more uncommercial" "most uncommercial" "uncommercially" ;
-lin fiducial_A = mkA "fiducial" "more fiducial" "most fiducial" "fiducially" ;
-lin crucial_A = mkA "crucial" "more crucial" "most crucial" "crucially" ;
-lin noncrucial_A = mkA "noncrucial" "more noncrucial" "most noncrucial" "noncrucially" ;
-lin radial_A = mkA "radial" "more radial" "most radial" "radially" ;
-lin biradial_A = mkA "biradial" "more biradial" "most biradial" "biradially" ;
-lin medial_A = mkA "medial" "more medial" "most medial" "medially" ;
-lin remedial_A = mkA "remedial" "more remedial" "most remedial" "remedially" ;
-lin antheridial_A = mkA "antheridial" "more antheridial" "most antheridial" "antheridially" ;
-lin basidial_A = mkA "basidial" "more basidial" "most basidial" "basidially" ;
-lin prandial_A = mkA "prandial" "more prandial" "most prandial" "prandially" ;
-lin preprandial_A = mkA "preprandial" "more preprandial" "most preprandial" "preprandially" ;
-lin postprandial_A = mkA "postprandial" "more postprandial" "most postprandial" "postprandially" ;
-lin gerundial_A = mkA "gerundial" "more gerundial" "most gerundial" "gerundially" ;
-lin phyllodial_A = mkA "phyllodial" "more phyllodial" "most phyllodial" "phyllodially" ;
-lin custodial_A = mkA "custodial" "more custodial" "most custodial" "custodially" ;
-lin pericardial_A = mkA "pericardial" "more pericardial" "most pericardial" "pericardially" ;
-lin myocardial_A = mkA "myocardial" "more myocardial" "most myocardial" "myocardially" ;
-lin cordial_A = mkA "cordial" "more cordial" "most cordial" "cordially" ;
-lin precordial_A = mkA "precordial" "more precordial" "most precordial" "precordially" ;
-lin uncordial_A = mkA "uncordial" "more uncordial" "most uncordial" "uncordially" ;
-lin primordial_A = mkA "primordial" "more primordial" "most primordial" "primordially" ;
-lin chlamydial_A = mkA "chlamydial" "more chlamydial" "most chlamydial" "chlamydially" ;
-lin collegial_A = mkA "collegial" "more collegial" "most collegial" "collegially" ;
-lin vestigial_A = mkA "vestigial" "more vestigial" "most vestigial" "vestigially" ;
-lin brachial_A = mkA "brachial" "more brachial" "most brachial" "brachially" ;
-lin branchial_A = mkA "branchial" "more branchial" "most branchial" "branchially" ;
-lin bronchial_A = mkA "bronchial" "more bronchial" "most bronchial" "bronchially" ;
-lin parochial_A = mkA "parochial" "more parochial" "most parochial" "parochially" ;
-lin eparchial_A = mkA "eparchial" "more eparchial" "most eparchial" "eparchially" ;
-lin epithelial_A = mkA "epithelial" "more epithelial" "most epithelial" "epithelially" ;
-lin perithelial_A = mkA "perithelial" "more perithelial" "most perithelial" "perithelially" ;
-lin endothelial_A = mkA "endothelial" "more endothelial" "most endothelial" "endothelially" ;
-lin neuroglial_A = mkA "neuroglial" "more neuroglial" "most neuroglial" "neuroglially" ;
-lin filial_A = mkA "filial" "more filial" "most filial" "filially" ;
-lin familial_A = mkA "familial" "more familial" "most familial" "familially" ;
-lin nosocomial_A = mkA "nosocomial" "more nosocomial" "most nosocomial" "nosocomially" ;
-lin binomial_A = mkA "binomial" "more binomial" "most binomial" "binomially" ;
-lin polynomial_A = mkA "polynomial" "more polynomial" "most polynomial" "polynomially" ;
-lin cranial_A = mkA "cranial" "more cranial" "most cranial" "cranially" ;
-lin intracranial_A = mkA "intracranial" "more intracranial" "most intracranial" "intracranially" ;
-lin genial_A = mkA "genial" "more genial" "most genial" "genially" ;
-lin congenial_A = mkA "congenial" "more congenial" "most congenial" "congenially" ;
-lin uncongenial_A = mkA "uncongenial" "more uncongenial" "most uncongenial" "uncongenially" ;
-lin achenial_A = mkA "achenial" "more achenial" "most achenial" "achenially" ;
-lin bimillenial_A = mkA "bimillenial" "more bimillenial" "most bimillenial" "bimillenially" ;
-lin menial_A = mkA "menial" "more menial" "most menial" "menially" ;
-lin venial_A = mkA "venial" "more venial" "most venial" "venially" ;
-lin vicennial_A = mkA "vicennial" "more vicennial" "most vicennial" "vicennially" ;
-lin biennial_A = mkA "biennial" "more biennial" "most biennial" "biennially" ;
-lin triennial_A = mkA "triennial" "more triennial" "most triennial" "triennially" ;
-lin millennial_A = mkA "millennial" "more millennial" "most millennial" "millennially" ;
-lin postmillennial_A = mkA "postmillennial" "more postmillennial" "most postmillennial" "postmillennially" ;
-lin perennial_A = mkA "perennial" "more perennial" "most perennial" "perennially" ;
-lin centennial_A = mkA "centennial" "more centennial" "most centennial" "centennially" ;
-lin bicentennial_A = mkA "bicentennial" "more bicentennial" "most bicentennial" "bicentennially" ;
-lin semicentennial_A = mkA "semicentennial" "more semicentennial" "most semicentennial" "semicentennially" ;
-lin quincentennial_A = mkA "quincentennial" "more quincentennial" "most quincentennial" "quincentennially" ;
-lin archegonial_A = mkA "archegonial" "more archegonial" "most archegonial" "archegonially" ;
-lin colonial_A = mkA "colonial" "more colonial" "most colonial" "colonially" ;
-lin ceremonial_A = mkA "ceremonial" "more ceremonial" "most ceremonial" "ceremonially" ;
-lin matrimonial_A = mkA "matrimonial" "more matrimonial" "most matrimonial" "matrimonially" ;
-lin patrimonial_A = mkA "patrimonial" "more patrimonial" "most patrimonial" "patrimonially" ;
-lin antimonial_A = mkA "antimonial" "more antimonial" "most antimonial" "antimonially" ;
-lin testimonial_A = mkA "testimonial" "more testimonial" "most testimonial" "testimonially" ;
-lin baronial_A = mkA "baronial" "more baronial" "most baronial" "baronially" ;
-lin participial_A = mkA "participial" "more participial" "most participial" "participially" ;
-lin marsupial_A = mkA "marsupial" "more marsupial" "most marsupial" "marsupially" ;
-lin vicarial_A = mkA "vicarial" "more vicarial" "most vicarial" "vicarially" ;
-lin cercarial_A = mkA "cercarial" "more cercarial" "most cercarial" "cercarially" ;
-lin malarial_A = mkA "malarial" "more malarial" "most malarial" "malarially" ;
-lin filarial_A = mkA "filarial" "more filarial" "most filarial" "filarially" ;
-lin narial_A = mkA "narial" "more narial" "most narial" "narially" ;
-lin secretarial_A = mkA "secretarial" "more secretarial" "most secretarial" "secretarially" ;
-lin actuarial_A = mkA "actuarial" "more actuarial" "most actuarial" "actuarially" ;
-lin aerial_A = mkA "aerial" "more aerial" "most aerial" "aerially" ;
-lin ferial_A = mkA "ferial" "more ferial" "most ferial" "ferially" ;
-lin managerial_A = mkA "managerial" "more managerial" "most managerial" "managerially" ;
-lin imperial_A = mkA "imperial" "more imperial" "most imperial" "imperially" ;
-lin serial_A = mkA "serial" "more serial" "most serial" "serially" ;
-lin material_A = mkA "material" "more material" "most material" "materially" ;
-lin immaterial_A = mkA "immaterial" "more immaterial" "most immaterial" "immaterially" ;
-lin bacterial_A = mkA "bacterial" "more bacterial" "most bacterial" "bacterially" ;
-lin antibacterial_A = mkA "antibacterial" "more antibacterial" "most antibacterial" "antibacterially" ;
-lin cyanobacterial_A = mkA "cyanobacterial" "more cyanobacterial" "most cyanobacterial" "cyanobacterially" ;
-lin criterial_A = mkA "criterial" "more criterial" "most criterial" "criterially" ;
-lin arterial_A = mkA "arterial" "more arterial" "most arterial" "arterially" ;
-lin magisterial_A = mkA "magisterial" "more magisterial" "most magisterial" "magisterially" ;
-lin ministerial_A = mkA "ministerial" "more ministerial" "most ministerial" "ministerially" ;
-lin ambassadorial_A = mkA "ambassadorial" "more ambassadorial" "most ambassadorial" "ambassadorially" ;
-lin categorial_A = mkA "categorial" "more categorial" "most categorial" "categorially" ;
-lin authorial_A = mkA "authorial" "more authorial" "most authorial" "authorially" ;
-lin immemorial_A = mkA "immemorial" "more immemorial" "most immemorial" "immemorially" ;
-lin armorial_A = mkA "armorial" "more armorial" "most armorial" "armorially" ;
-lin manorial_A = mkA "manorial" "more manorial" "most manorial" "manorially" ;
-lin archesporial_A = mkA "archesporial" "more archesporial" "most archesporial" "archesporially" ;
-lin censorial_A = mkA "censorial" "more censorial" "most censorial" "censorially" ;
-lin tonsorial_A = mkA "tonsorial" "more tonsorial" "most tonsorial" "tonsorially" ;
-lin cursorial_A = mkA "cursorial" "more cursorial" "most cursorial" "cursorially" ;
-lin accessorial_A = mkA "accessorial" "more accessorial" "most accessorial" "accessorially" ;
-lin professorial_A = mkA "professorial" "more professorial" "most professorial" "professorially" ;
-lin fossorial_A = mkA "fossorial" "more fossorial" "most fossorial" "fossorially" ;
-lin piscatorial_A = mkA "piscatorial" "more piscatorial" "most piscatorial" "piscatorially" ;
-lin purgatorial_A = mkA "purgatorial" "more purgatorial" "most purgatorial" "purgatorially" ;
-lin gladiatorial_A = mkA "gladiatorial" "more gladiatorial" "most gladiatorial" "gladiatorially" ;
-lin mediatorial_A = mkA "mediatorial" "more mediatorial" "most mediatorial" "mediatorially" ;
-lin clamatorial_A = mkA "clamatorial" "more clamatorial" "most clamatorial" "clamatorially" ;
-lin senatorial_A = mkA "senatorial" "more senatorial" "most senatorial" "senatorially" ;
-lin combinatorial_A = mkA "combinatorial" "more combinatorial" "most combinatorial" "combinatorially" ;
-lin gubernatorial_A = mkA "gubernatorial" "more gubernatorial" "most gubernatorial" "gubernatorially" ;
-lin conspiratorial_A = mkA "conspiratorial" "more conspiratorial" "most conspiratorial" "conspiratorially" ;
-lin curatorial_A = mkA "curatorial" "more curatorial" "most curatorial" "curatorially" ;
-lin accusatorial_A = mkA "accusatorial" "more accusatorial" "most accusatorial" "accusatorially" ;
-lin dictatorial_A = mkA "dictatorial" "more dictatorial" "most dictatorial" "dictatorially" ;
-lin equatorial_A = mkA "equatorial" "more equatorial" "most equatorial" "equatorially" ;
-lin factorial_A = mkA "factorial" "more factorial" "most factorial" "factorially" ;
-lin multifactorial_A = mkA "multifactorial" "more multifactorial" "most multifactorial" "multifactorially" ;
-lin sectorial_A = mkA "sectorial" "more sectorial" "most sectorial" "sectorially" ;
-lin pictorial_A = mkA "pictorial" "more pictorial" "most pictorial" "pictorially" ;
-lin suctorial_A = mkA "suctorial" "more suctorial" "most suctorial" "suctorially" ;
-lin editorial_A = mkA "editorial" "more editorial" "most editorial" "editorially" ;
-lin territorial_A = mkA "territorial" "more territorial" "most territorial" "territorially" ;
-lin extraterritorial_A = mkA "extraterritorial" "more extraterritorial" "most extraterritorial" "extraterritorially" ;
-lin nonterritorial_A = mkA "nonterritorial" "more nonterritorial" "most nonterritorial" "nonterritorially" ;
-lin exterritorial_A = mkA "exterritorial" "more exterritorial" "most exterritorial" "exterritorially" ;
-lin inquisitorial_A = mkA "inquisitorial" "more inquisitorial" "most inquisitorial" "inquisitorially" ;
-lin raptorial_A = mkA "raptorial" "more raptorial" "most raptorial" "raptorially" ;
-lin sartorial_A = mkA "sartorial" "more sartorial" "most sartorial" "sartorially" ;
-lin tutorial_A = mkA "tutorial" "more tutorial" "most tutorial" "tutorially" ;
-lin atrial_A = mkA "atrial" "more atrial" "most atrial" "atrially" ;
-lin endometrial_A = mkA "endometrial" "more endometrial" "most endometrial" "endometrially" ;
-lin bimestrial_A = mkA "bimestrial" "more bimestrial" "most bimestrial" "bimestrially" ;
-lin terrestrial_A = mkA "terrestrial" "more terrestrial" "most terrestrial" "terrestrially" ;
-lin extraterrestrial_A = mkA "extraterrestrial" "more extraterrestrial" "most extraterrestrial" "extraterrestrially" ;
-lin semiterrestrial_A = mkA "semiterrestrial" "more semiterrestrial" "most semiterrestrial" "semiterrestrially" ;
-lin industrial_A = mkA "industrial" "more industrial" "most industrial" "industrially" ;
-lin nonindustrial_A = mkA "nonindustrial" "more nonindustrial" "most nonindustrial" "nonindustrially" ;
-lin postindustrial_A = mkA "postindustrial" "more postindustrial" "most postindustrial" "postindustrially" ;
-lin mercurial_A = mkA "mercurial" "more mercurial" "most mercurial" "mercurially" ;
-lin entrepreneurial_A = mkA "entrepreneurial" "more entrepreneurial" "most entrepreneurial" "entrepreneurially" ;
-lin mesial_A = mkA "mesial" "more mesial" "most mesial" "mesially" ;
-lin ambrosial_A = mkA "ambrosial" "more ambrosial" "most ambrosial" "ambrosially" ;
-lin controversial_A = mkA "controversial" "more controversial" "most controversial" "controversially" ;
-lin uncontroversial_A = mkA "uncontroversial" "more uncontroversial" "most uncontroversial" "uncontroversially" ;
-lin carnassial_A = mkA "carnassial" "more carnassial" "most carnassial" "carnassially" ;
-lin rickettsial_A = mkA "rickettsial" "more rickettsial" "most rickettsial" "rickettsially" ;
-lin indusial_A = mkA "indusial" "more indusial" "most indusial" "indusially" ;
-lin nosohusial_A = mkA "nosohusial" "more nosohusial" "most nosohusial" "nosohusially" ;
-lin abbatial_A = mkA "abbatial" "more abbatial" "most abbatial" "abbatially" ;
-lin palatial_A = mkA "palatial" "more palatial" "most palatial" "palatially" ;
-lin spatial_A = mkA "spatial" "more spatial" "most spatial" "spatially" ;
-lin nonspatial_A = mkA "nonspatial" "more nonspatial" "most nonspatial" "nonspatially" ;
-lin equinoctial_A = mkA "equinoctial" "more equinoctial" "most equinoctial" "equinoctially" ;
-lin initial_A = mkA "initial" "more initial" "most initial" "initially" ;
-lin adventitial_A = mkA "adventitial" "more adventitial" "most adventitial" "adventitially" ;
-lin interstitial_A = mkA "interstitial" "more interstitial" "most interstitial" "interstitially" ;
-lin substantial_A = mkA "substantial" "more substantial" "most substantial" "substantially" ;
-lin insubstantial_A = mkA "insubstantial" "more insubstantial" "most insubstantial" "insubstantially" ;
-lin consubstantial_A = mkA "consubstantial" "more consubstantial" "most consubstantial" "consubstantially" ;
-lin circumstantial_A = mkA "circumstantial" "more circumstantial" "most circumstantial" "circumstantially" ;
-lin precedential_A = mkA "precedential" "more precedential" "most precedential" "precedentially" ;
-lin confidential_A = mkA "confidential" "more confidential" "most confidential" "confidentially" ;
-lin residential_A = mkA "residential" "more residential" "most residential" "residentially" ;
-lin nonresidential_A = mkA "nonresidential" "more nonresidential" "most nonresidential" "nonresidentially" ;
-lin presidential_A = mkA "presidential" "more presidential" "most presidential" "presidentially" ;
-lin unpresidential_A = mkA "unpresidential" "more unpresidential" "most unpresidential" "unpresidentially" ;
-lin evidential_A = mkA "evidential" "more evidential" "most evidential" "evidentially" ;
-lin providential_A = mkA "providential" "more providential" "most providential" "providentially" ;
-lin prudential_A = mkA "prudential" "more prudential" "most prudential" "prudentially" ;
-lin jurisprudential_A = mkA "jurisprudential" "more jurisprudential" "most jurisprudential" "jurisprudentially" ;
-lin agential_A = mkA "agential" "more agential" "most agential" "agentially" ;
-lin tangential_A = mkA "tangential" "more tangential" "most tangential" "tangentially" ;
-lin sapiential_A = mkA "sapiential" "more sapiential" "most sapiential" "sapientially" ;
-lin experiential_A = mkA "experiential" "more experiential" "most experiential" "experientially" ;
-lin pestilential_A = mkA "pestilential" "more pestilential" "most pestilential" "pestilentially" ;
-lin exponential_A = mkA "exponential" "more exponential" "most exponential" "exponentially" ;
-lin deferential_A = mkA "deferential" "more deferential" "most deferential" "deferentially" ;
-lin undeferential_A = mkA "undeferential" "more undeferential" "most undeferential" "undeferentially" ;
-lin referential_A = mkA "referential" "more referential" "most referential" "referentially" ;
-lin coreferential_A = mkA "coreferential" "more coreferential" "most coreferential" "coreferentially" ;
-lin preferential_A = mkA "preferential" "more preferential" "most preferential" "preferentially" ;
-lin differential_A = mkA "differential" "more differential" "most differential" "differentially" ;
-lin circumferential_A = mkA "circumferential" "more circumferential" "most circumferential" "circumferentially" ;
-lin inferential_A = mkA "inferential" "more inferential" "most inferential" "inferentially" ;
-lin reverential_A = mkA "reverential" "more reverential" "most reverential" "reverentially" ;
-lin torrential_A = mkA "torrential" "more torrential" "most torrential" "torrentially" ;
-lin essential_A = mkA "essential" "more essential" "most essential" "essentially" ;
-lin inessential_A = mkA "inessential" "more inessential" "most inessential" "inessentially" ;
-lin quintessential_A = mkA "quintessential" "more quintessential" "most quintessential" "quintessentially" ;
-lin penitential_A = mkA "penitential" "more penitential" "most penitential" "penitentially" ;
-lin sentential_A = mkA "sentential" "more sentential" "most sentential" "sententially" ;
-lin intrasentential_A = mkA "intrasentential" "more intrasentential" "most intrasentential" "intrasententially" ;
-lin potential_A = mkA "potential" "more potential" "most potential" "potentially" ;
-lin existential_A = mkA "existential" "more existential" "most existential" "existentially" ;
-lin influential_A = mkA "influential" "more influential" "most influential" "influentially" ;
-lin uninfluential_A = mkA "uninfluential" "more uninfluential" "most uninfluential" "uninfluentially" ;
-lin sequential_A = mkA "sequential" "more sequential" "most sequential" "sequentially" ;
-lin consequential_A = mkA "consequential" "more consequential" "most consequential" "consequentially" ;
-lin inconsequential_A = mkA "inconsequential" "more inconsequential" "most inconsequential" "inconsequentially" ;
-lin nuptial_A = mkA "nuptial" "more nuptial" "most nuptial" "nuptially" ;
-lin prenuptial_A = mkA "prenuptial" "more prenuptial" "most prenuptial" "prenuptially" ;
-lin antenuptial_A = mkA "antenuptial" "more antenuptial" "most antenuptial" "antenuptially" ;
-lin postnuptial_A = mkA "postnuptial" "more postnuptial" "most postnuptial" "postnuptially" ;
-lin martial_A = mkA "martial" "more martial" "most martial" "martially" ;
-lin partial_A = mkA "partial" "more partial" "most partial" "partially" ;
-lin impartial_A = mkA "impartial" "more impartial" "most impartial" "impartially" ;
-lin inertial_A = mkA "inertial" "more inertial" "most inertial" "inertially" ;
-lin bestial_A = mkA "bestial" "more bestial" "most bestial" "bestially" ;
-lin celestial_A = mkA "celestial" "more celestial" "most celestial" "celestially" ;
-lin colloquial_A = mkA "colloquial" "more colloquial" "most colloquial" "colloquially" ;
-lin trivial_A = mkA "trivial" "more trivial" "most trivial" "trivially" ;
-lin convivial_A = mkA "convivial" "more convivial" "most convivial" "convivially" ;
-lin jovial_A = mkA "jovial" "more jovial" "most jovial" "jovially" ;
-lin synovial_A = mkA "synovial" "more synovial" "most synovial" "synovially" ;
-lin fluvial_A = mkA "fluvial" "more fluvial" "most fluvial" "fluvially" ;
-lin alluvial_A = mkA "alluvial" "more alluvial" "most alluvial" "alluvially" ;
-lin exuvial_A = mkA "exuvial" "more exuvial" "most exuvial" "exuvially" ;
-lin axial_A = mkA "axial" "more axial" "most axial" "axially" ;
-lin abaxial_A = mkA "abaxial" "more abaxial" "most abaxial" "abaxially" ;
-lin adaxial_A = mkA "adaxial" "more adaxial" "most adaxial" "adaxially" ;
-lin biaxial_A = mkA "biaxial" "more biaxial" "most biaxial" "biaxially" ;
-lin coaxial_A = mkA "coaxial" "more coaxial" "most coaxial" "coaxially" ;
-lin halal_A = mkA "halal" "more halal" "most halal" "halally" ;
-lin molal_A = mkA "molal" "more molal" "most molal" "molally" ;
-lin hemal_A = mkA "hemal" "more hemal" "most hemal" "hemally" ;
-lin blastemal_A = mkA "blastemal" "more blastemal" "most blastemal" "blastemally" ;
-lin decimal_A = mkA "decimal" "more decimal" "most decimal" "decimally" ;
-lin hexadecimal_A = mkA "hexadecimal" "more hexadecimal" "most hexadecimal" "hexadecimally" ;
-lin duodecimal_A = mkA "duodecimal" "more duodecimal" "most duodecimal" "duodecimally" ;
-lin minimal_A = mkA "minimal" "more minimal" "most minimal" "minimally" ;
-lin lacrimal_A = mkA "lacrimal" "more lacrimal" "most lacrimal" "lacrimally" ;
-lin primal_A = mkA "primal" "more primal" "most primal" "primally" ;
-lin sexagesimal_A = mkA "sexagesimal" "more sexagesimal" "most sexagesimal" "sexagesimally" ;
-lin vigesimal_A = mkA "vigesimal" "more vigesimal" "most vigesimal" "vigesimally" ;
-lin infinitesimal_A = mkA "infinitesimal" "more infinitesimal" "most infinitesimal" "infinitesimally" ;
-lin centesimal_A = mkA "centesimal" "more centesimal" "most centesimal" "centesimally" ;
-lin pessimal_A = mkA "pessimal" "more pessimal" "most pessimal" "pessimally" ;
-lin intimal_A = mkA "intimal" "more intimal" "most intimal" "intimally" ;
-lin optimal_A = mkA "optimal" "more optimal" "most optimal" "optimally" ;
-lin maximal_A = mkA "maximal" "more maximal" "most maximal" "maximally" ;
-lin proximal_A = mkA "proximal" "more proximal" "most proximal" "proximally" ;
-lin sarcolemmal_A = mkA "sarcolemmal" "more sarcolemmal" "most sarcolemmal" "sarcolemmally" ;
-lin prodromal_A = mkA "prodromal" "more prodromal" "most prodromal" "prodromally" ;
-lin sarcosomal_A = mkA "sarcosomal" "more sarcosomal" "most sarcosomal" "sarcosomally" ;
-lin chromosomal_A = mkA "chromosomal" "more chromosomal" "most chromosomal" "chromosomally" ;
-lin microsomal_A = mkA "microsomal" "more microsomal" "most microsomal" "microsomally" ;
-lin autosomal_A = mkA "autosomal" "more autosomal" "most autosomal" "autosomally" ;
-lin dermal_A = mkA "dermal" "more dermal" "most dermal" "dermally" ;
-lin intradermal_A = mkA "intradermal" "more intradermal" "most intradermal" "intradermally" ;
-lin hypodermal_A = mkA "hypodermal" "more hypodermal" "most hypodermal" "hypodermally" ;
-lin ectodermal_A = mkA "ectodermal" "more ectodermal" "most ectodermal" "ectodermally" ;
-lin transdermal_A = mkA "transdermal" "more transdermal" "most transdermal" "transdermally" ;
-lin thermal_A = mkA "thermal" "more thermal" "most thermal" "thermally" ;
-lin nonthermal_A = mkA "nonthermal" "more nonthermal" "most nonthermal" "nonthermally" ;
-lin geothermal_A = mkA "geothermal" "more geothermal" "most geothermal" "geothermally" ;
-lin isothermal_A = mkA "isothermal" "more isothermal" "most isothermal" "isothermally" ;
-lin hyperthermal_A = mkA "hyperthermal" "more hyperthermal" "most hyperthermal" "hyperthermally" ;
-lin formal_A = mkA "formal" "more formal" "most formal" "formally" ;
-lin semiformal_A = mkA "semiformal" "more semiformal" "most semiformal" "semiformally" ;
-lin informal_A = mkA "informal" "more informal" "most informal" "informally" ;
-lin normal_A = mkA "normal" "more normal" "most normal" "normally" ;
-lin paranormal_A = mkA "paranormal" "more paranormal" "most paranormal" "paranormally" ;
-lin abnormal_A = mkA "abnormal" "more abnormal" "most abnormal" "abnormally" ;
-lin subnormal_A = mkA "subnormal" "more subnormal" "most subnormal" "subnormally" ;
-lin supernormal_A = mkA "supernormal" "more supernormal" "most supernormal" "supernormally" ;
-lin chiasmal_A = mkA "chiasmal" "more chiasmal" "most chiasmal" "chiasmally" ;
-lin miasmal_A = mkA "miasmal" "more miasmal" "most miasmal" "miasmally" ;
-lin phantasmal_A = mkA "phantasmal" "more phantasmal" "most phantasmal" "phantasmally" ;
-lin dismal_A = mkA "dismal" "more dismal" "most dismal" "dismally" ;
-lin catechismal_A = mkA "catechismal" "more catechismal" "most catechismal" "catechismally" ;
-lin organismal_A = mkA "organismal" "more organismal" "most organismal" "organismally" ;
-lin asterismal_A = mkA "asterismal" "more asterismal" "most asterismal" "asterismally" ;
-lin baptismal_A = mkA "baptismal" "more baptismal" "most baptismal" "baptismally" ;
-lin abysmal_A = mkA "abysmal" "more abysmal" "most abysmal" "abysmally" ;
-lin cataclysmal_A = mkA "cataclysmal" "more cataclysmal" "most cataclysmal" "cataclysmally" ;
-lin aneurysmal_A = mkA "aneurysmal" "more aneurysmal" "most aneurysmal" "aneurysmally" ;
-lin paroxysmal_A = mkA "paroxysmal" "more paroxysmal" "most paroxysmal" "paroxysmally" ;
-lin brumal_A = mkA "brumal" "more brumal" "most brumal" "brumally" ;
-lin lachrymal_A = mkA "lachrymal" "more lachrymal" "most lachrymal" "lachrymally" ;
-lin anal_A = mkA "anal" "more anal" "most anal" "anally" ;
-lin banal_A = mkA "banal" "more banal" "most banal" "banally" ;
-lin preanal_A = mkA "preanal" "more preanal" "most preanal" "preanally" ;
-lin bacchanal_A = mkA "bacchanal" "more bacchanal" "most bacchanal" "bacchanally" ;
-lin perianal_A = mkA "perianal" "more perianal" "most perianal" "perianally" ;
-lin duodenal_A = mkA "duodenal" "more duodenal" "most duodenal" "duodenally" ;
-lin gastroduodenal_A = mkA "gastroduodenal" "more gastroduodenal" "most gastroduodenal" "gastroduodenally" ;
-lin thenal_A = mkA "thenal" "more thenal" "most thenal" "thenally" ;
-lin phenomenal_A = mkA "phenomenal" "more phenomenal" "most phenomenal" "phenomenally" ;
-lin hymenal_A = mkA "hymenal" "more hymenal" "most hymenal" "hymenally" ;
-lin penal_A = mkA "penal" "more penal" "most penal" "penally" ;
-lin renal_A = mkA "renal" "more renal" "most renal" "renally" ;
-lin adrenal_A = mkA "adrenal" "more adrenal" "most adrenal" "adrenally" ;
-lin venal_A = mkA "venal" "more venal" "most venal" "venally" ;
-lin signal_A = mkA "signal" "more signal" "most signal" "signally" ;
-lin albinal_A = mkA "albinal" "more albinal" "most albinal" "albinally" ;
-lin medicinal_A = mkA "medicinal" "more medicinal" "most medicinal" "medicinally" ;
-lin unmedicinal_A = mkA "unmedicinal" "more unmedicinal" "most unmedicinal" "unmedicinally" ;
-lin vicinal_A = mkA "vicinal" "more vicinal" "most vicinal" "vicinally" ;
-lin libidinal_A = mkA "libidinal" "more libidinal" "most libidinal" "libidinally" ;
-lin cardinal_A = mkA "cardinal" "more cardinal" "most cardinal" "cardinally" ;
-lin ordinal_A = mkA "ordinal" "more ordinal" "most ordinal" "ordinally" ;
-lin longitudinal_A = mkA "longitudinal" "more longitudinal" "most longitudinal" "longitudinally" ;
-lin latitudinal_A = mkA "latitudinal" "more latitudinal" "most latitudinal" "latitudinally" ;
-lin altitudinal_A = mkA "altitudinal" "more altitudinal" "most altitudinal" "altitudinally" ;
-lin aptitudinal_A = mkA "aptitudinal" "more aptitudinal" "most aptitudinal" "aptitudinally" ;
-lin attitudinal_A = mkA "attitudinal" "more attitudinal" "most attitudinal" "attitudinally" ;
-lin veinal_A = mkA "veinal" "more veinal" "most veinal" "veinally" ;
-lin final_A = mkA "final" "more final" "most final" "finally" ;
-lin affinal_A = mkA "affinal" "more affinal" "most affinal" "affinally" ;
-lin vaginal_A = mkA "vaginal" "more vaginal" "most vaginal" "vaginally" ;
-lin original_A = mkA "original" "more original" "most original" "originally" ;
-lin aboriginal_A = mkA "aboriginal" "more aboriginal" "most aboriginal" "aboriginally" ;
-lin unoriginal_A = mkA "unoriginal" "more unoriginal" "most unoriginal" "unoriginally" ;
-lin anginal_A = mkA "anginal" "more anginal" "most anginal" "anginally" ;
-lin marginal_A = mkA "marginal" "more marginal" "most marginal" "marginally" ;
-lin virginal_A = mkA "virginal" "more virginal" "most virginal" "virginally" ;
-lin rhinal_A = mkA "rhinal" "more rhinal" "most rhinal" "rhinally" ;
-lin anaclinal_A = mkA "anaclinal" "more anaclinal" "most anaclinal" "anaclinally" ;
-lin cataclinal_A = mkA "cataclinal" "more cataclinal" "most cataclinal" "cataclinally" ;
-lin anticlinal_A = mkA "anticlinal" "more anticlinal" "most anticlinal" "anticlinally" ;
-lin synclinal_A = mkA "synclinal" "more synclinal" "most synclinal" "synclinally" ;
-lin monoclinal_A = mkA "monoclinal" "more monoclinal" "most monoclinal" "monoclinally" ;
-lin isoclinal_A = mkA "isoclinal" "more isoclinal" "most isoclinal" "isoclinally" ;
-lin botulinal_A = mkA "botulinal" "more botulinal" "most botulinal" "botulinally" ;
-lin bigeminal_A = mkA "bigeminal" "more bigeminal" "most bigeminal" "bigeminally" ;
-lin seminal_A = mkA "seminal" "more seminal" "most seminal" "seminally" ;
-lin subliminal_A = mkA "subliminal" "more subliminal" "most subliminal" "subliminally" ;
-lin criminal_A = mkA "criminal" "more criminal" "most criminal" "criminally" ;
-lin abdominal_A = mkA "abdominal" "more abdominal" "most abdominal" "abdominally" ;
-lin hominal_A = mkA "hominal" "more hominal" "most hominal" "hominally" ;
-lin nominal_A = mkA "nominal" "more nominal" "most nominal" "nominally" ;
-lin uninominal_A = mkA "uninominal" "more uninominal" "most uninominal" "uninominally" ;
-lin pronominal_A = mkA "pronominal" "more pronominal" "most pronominal" "pronominally" ;
-lin germinal_A = mkA "germinal" "more germinal" "most germinal" "germinally" ;
-lin terminal_A = mkA "terminal" "more terminal" "most terminal" "terminally" ;
-lin subterminal_A = mkA "subterminal" "more subterminal" "most subterminal" "subterminally" ;
-lin cacuminal_A = mkA "cacuminal" "more cacuminal" "most cacuminal" "cacuminally" ;
-lin spinal_A = mkA "spinal" "more spinal" "most spinal" "spinally" ;
-lin cerebrospinal_A = mkA "cerebrospinal" "more cerebrospinal" "most cerebrospinal" "cerebrospinally" ;
-lin carinal_A = mkA "carinal" "more carinal" "most carinal" "carinally" ;
-lin doctrinal_A = mkA "doctrinal" "more doctrinal" "most doctrinal" "doctrinally" ;
-lin basinal_A = mkA "basinal" "more basinal" "most basinal" "basinally" ;
-lin actinal_A = mkA "actinal" "more actinal" "most actinal" "actinally" ;
-lin abactinal_A = mkA "abactinal" "more abactinal" "most abactinal" "abactinally" ;
-lin retinal_A = mkA "retinal" "more retinal" "most retinal" "retinally" ;
-lin intestinal_A = mkA "intestinal" "more intestinal" "most intestinal" "intestinally" ;
-lin gastrointestinal_A = mkA "gastrointestinal" "more gastrointestinal" "most gastrointestinal" "gastrointestinally" ;
-lin matutinal_A = mkA "matutinal" "more matutinal" "most matutinal" "matutinally" ;
-lin inguinal_A = mkA "inguinal" "more inguinal" "most inguinal" "inguinally" ;
-lin autumnal_A = mkA "autumnal" "more autumnal" "most autumnal" "autumnally" ;
-lin antennal_A = mkA "antennal" "more antennal" "most antennal" "antennally" ;
-lin archidiaconal_A = mkA "archidiaconal" "more archidiaconal" "most archidiaconal" "archidiaconally" ;
-lin agonal_A = mkA "agonal" "more agonal" "most agonal" "agonally" ;
-lin diagonal_A = mkA "diagonal" "more diagonal" "most diagonal" "diagonally" ;
-lin tetragonal_A = mkA "tetragonal" "more tetragonal" "most tetragonal" "tetragonally" ;
-lin octagonal_A = mkA "octagonal" "more octagonal" "most octagonal" "octagonally" ;
-lin pentagonal_A = mkA "pentagonal" "more pentagonal" "most pentagonal" "pentagonally" ;
-lin hexagonal_A = mkA "hexagonal" "more hexagonal" "most hexagonal" "hexagonally" ;
-lin perigonal_A = mkA "perigonal" "more perigonal" "most perigonal" "perigonally" ;
-lin orthogonal_A = mkA "orthogonal" "more orthogonal" "most orthogonal" "orthogonally" ;
-lin polygonal_A = mkA "polygonal" "more polygonal" "most polygonal" "polygonally" ;
-lin autochthonal_A = mkA "autochthonal" "more autochthonal" "most autochthonal" "autochthonally" ;
-lin meridional_A = mkA "meridional" "more meridional" "most meridional" "meridionally" ;
-lin regional_A = mkA "regional" "more regional" "most regional" "regionally" ;
-lin septrional_A = mkA "septrional" "more septrional" "most septrional" "septrionally" ;
-lin occasional_A = mkA "occasional" "more occasional" "most occasional" "occasionally" ;
-lin divisional_A = mkA "divisional" "more divisional" "most divisional" "divisionally" ;
-lin provisional_A = mkA "provisional" "more provisional" "most provisional" "provisionally" ;
-lin ascensional_A = mkA "ascensional" "more ascensional" "most ascensional" "ascensionally" ;
-lin dimensional_A = mkA "dimensional" "more dimensional" "most dimensional" "dimensionally" ;
-lin 'three-dimensional_A' = mkA "three-dimensional" "more three-dimensional" "most three-dimensional" "three-dimensionally" ;
-lin unidimensional_A = mkA "unidimensional" "more unidimensional" "most unidimensional" "unidimensionally" ;
-lin multidimensional_A = mkA "multidimensional" "more multidimensional" "most multidimensional" "multidimensionally" ;
-lin tensional_A = mkA "tensional" "more tensional" "most tensional" "tensionally" ;
-lin intensional_A = mkA "intensional" "more intensional" "most intensional" "intensionally" ;
-lin extensional_A = mkA "extensional" "more extensional" "most extensional" "extensionally" ;
-lin accessional_A = mkA "accessional" "more accessional" "most accessional" "accessionally" ;
-lin recessional_A = mkA "recessional" "more recessional" "most recessional" "recessionally" ;
-lin processional_A = mkA "processional" "more processional" "most processional" "processionally" ;
-lin professional_A = mkA "professional" "more professional" "most professional" "professionally" ;
-lin nonprofessional_A = mkA "nonprofessional" "more nonprofessional" "most nonprofessional" "nonprofessionally" ;
-lin unprofessional_A = mkA "unprofessional" "more unprofessional" "most unprofessional" "unprofessionally" ;
-lin congressional_A = mkA "congressional" "more congressional" "most congressional" "congressionally" ;
-lin obsessional_A = mkA "obsessional" "more obsessional" "most obsessional" "obsessionally" ;
-lin delusional_A = mkA "delusional" "more delusional" "most delusional" "delusionally" ;
-lin illusional_A = mkA "illusional" "more illusional" "most illusional" "illusionally" ;
-lin implicational_A = mkA "implicational" "more implicational" "most implicational" "implicationally" ;
-lin communicational_A = mkA "communicational" "more communicational" "most communicational" "communicationally" ;
-lin vocational_A = mkA "vocational" "more vocational" "most vocational" "vocationally" ;
-lin avocational_A = mkA "avocational" "more avocational" "most avocational" "avocationally" ;
-lin educational_A = mkA "educational" "more educational" "most educational" "educationally" ;
-lin coeducational_A = mkA "coeducational" "more coeducational" "most coeducational" "coeducationally" ;
-lin gradational_A = mkA "gradational" "more gradational" "most gradational" "gradationally" ;
-lin accommodational_A = mkA "accommodational" "more accommodational" "most accommodational" "accommodationally" ;
-lin recreational_A = mkA "recreational" "more recreational" "most recreational" "recreationally" ;
-lin nonrecreational_A = mkA "nonrecreational" "more nonrecreational" "most nonrecreational" "nonrecreationally" ;
-lin congregational_A = mkA "congregational" "more congregational" "most congregational" "congregationally" ;
-lin obligational_A = mkA "obligational" "more obligational" "most obligational" "obligationally" ;
-lin navigational_A = mkA "navigational" "more navigational" "most navigational" "navigationally" ;
-lin associational_A = mkA "associational" "more associational" "most associational" "associationally" ;
-lin relational_A = mkA "relational" "more relational" "most relational" "relationally" ;
-lin correlational_A = mkA "correlational" "more correlational" "most correlational" "correlationally" ;
-lin translational_A = mkA "translational" "more translational" "most translational" "translationally" ;
-lin nontranslational_A = mkA "nontranslational" "more nontranslational" "most nontranslational" "nontranslationally" ;
-lin summational_A = mkA "summational" "more summational" "most summational" "summationally" ;
-lin deformational_A = mkA "deformational" "more deformational" "most deformational" "deformationally" ;
-lin informational_A = mkA "informational" "more informational" "most informational" "informationally" ;
-lin national_A = mkA "national" "more national" "most national" "nationally" ;
-lin supranational_A = mkA "supranational" "more supranational" "most supranational" "supranationally" ;
-lin denominational_A = mkA "denominational" "more denominational" "most denominational" "denominationally" ;
-lin nondenominational_A = mkA "nondenominational" "more nondenominational" "most nondenominational" "nondenominationally" ;
-lin undenominational_A = mkA "undenominational" "more undenominational" "most undenominational" "undenominationally" ;
-lin interdenominational_A = mkA "interdenominational" "more interdenominational" "most interdenominational" "interdenominationally" ;
-lin multinational_A = mkA "multinational" "more multinational" "most multinational" "multinationally" ;
-lin international_A = mkA "international" "more international" "most international" "internationally" ;
-lin occupational_A = mkA "occupational" "more occupational" "most occupational" "occupationally" ;
-lin rational_A = mkA "rational" "more rational" "most rational" "rationally" ;
-lin vibrational_A = mkA "vibrational" "more vibrational" "most vibrational" "vibrationally" ;
-lin generational_A = mkA "generational" "more generational" "most generational" "generationally" ;
-lin operational_A = mkA "operational" "more operational" "most operational" "operationally" ;
-lin nonoperational_A = mkA "nonoperational" "more nonoperational" "most nonoperational" "nonoperationally" ;
-lin migrational_A = mkA "migrational" "more migrational" "most migrational" "migrationally" ;
-lin inspirational_A = mkA "inspirational" "more inspirational" "most inspirational" "inspirationally" ;
-lin nonrational_A = mkA "nonrational" "more nonrational" "most nonrational" "nonrationally" ;
-lin irrational_A = mkA "irrational" "more irrational" "most irrational" "irrationally" ;
-lin configurational_A = mkA "configurational" "more configurational" "most configurational" "configurationally" ;
-lin maturational_A = mkA "maturational" "more maturational" "most maturational" "maturationally" ;
-lin acculturational_A = mkA "acculturational" "more acculturational" "most acculturational" "acculturationally" ;
-lin sensational_A = mkA "sensational" "more sensational" "most sensational" "sensationally" ;
-lin unsensational_A = mkA "unsensational" "more unsensational" "most unsensational" "unsensationally" ;
-lin conversational_A = mkA "conversational" "more conversational" "most conversational" "conversationally" ;
-lin gravitational_A = mkA "gravitational" "more gravitational" "most gravitational" "gravitationally" ;
-lin invitational_A = mkA "invitational" "more invitational" "most invitational" "invitationally" ;
-lin presentational_A = mkA "presentational" "more presentational" "most presentational" "presentationally" ;
-lin representational_A = mkA "representational" "more representational" "most representational" "representationally" ;
-lin nonrepresentational_A = mkA "nonrepresentational" "more nonrepresentational" "most nonrepresentational" "nonrepresentationally" ;
-lin confrontational_A = mkA "confrontational" "more confrontational" "most confrontational" "confrontationally" ;
-lin connotational_A = mkA "connotational" "more connotational" "most connotational" "connotationally" ;
-lin rotational_A = mkA "rotational" "more rotational" "most rotational" "rotationally" ;
-lin adaptational_A = mkA "adaptational" "more adaptational" "most adaptational" "adaptationally" ;
-lin gestational_A = mkA "gestational" "more gestational" "most gestational" "gestationally" ;
-lin progestational_A = mkA "progestational" "more progestational" "most progestational" "progestationally" ;
-lin mutational_A = mkA "mutational" "more mutational" "most mutational" "mutationally" ;
-lin computational_A = mkA "computational" "more computational" "most computational" "computationally" ;
-lin derivational_A = mkA "derivational" "more derivational" "most derivational" "derivationally" ;
-lin motivational_A = mkA "motivational" "more motivational" "most motivational" "motivationally" ;
-lin annexational_A = mkA "annexational" "more annexational" "most annexational" "annexationally" ;
-lin organizational_A = mkA "organizational" "more organizational" "most organizational" "organizationally" ;
-lin interactional_A = mkA "interactional" "more interactional" "most interactional" "interactionally" ;
-lin fractional_A = mkA "fractional" "more fractional" "most fractional" "fractionally" ;
-lin affectional_A = mkA "affectional" "more affectional" "most affectional" "affectionally" ;
-lin inflectional_A = mkA "inflectional" "more inflectional" "most inflectional" "inflectionally" ;
-lin directional_A = mkA "directional" "more directional" "most directional" "directionally" ;
-lin bidirectional_A = mkA "bidirectional" "more bidirectional" "most bidirectional" "bidirectionally" ;
-lin omnidirectional_A = mkA "omnidirectional" "more omnidirectional" "most omnidirectional" "omnidirectionally" ;
-lin unidirectional_A = mkA "unidirectional" "more unidirectional" "most unidirectional" "unidirectionally" ;
-lin correctional_A = mkA "correctional" "more correctional" "most correctional" "correctionally" ;
-lin insurrectional_A = mkA "insurrectional" "more insurrectional" "most insurrectional" "insurrectionally" ;
-lin sectional_A = mkA "sectional" "more sectional" "most sectional" "sectionally" ;
-lin bisectional_A = mkA "bisectional" "more bisectional" "most bisectional" "bisectionally" ;
-lin jurisdictional_A = mkA "jurisdictional" "more jurisdictional" "most jurisdictional" "jurisdictionally" ;
-lin fictional_A = mkA "fictional" "more fictional" "most fictional" "fictionally" ;
-lin nonfictional_A = mkA "nonfictional" "more nonfictional" "most nonfictional" "nonfictionally" ;
-lin frictional_A = mkA "frictional" "more frictional" "most frictional" "frictionally" ;
-lin functional_A = mkA "functional" "more functional" "most functional" "functionally" ;
-lin nonfunctional_A = mkA "nonfunctional" "more nonfunctional" "most nonfunctional" "nonfunctionally" ;
-lin unfunctional_A = mkA "unfunctional" "more unfunctional" "most unfunctional" "unfunctionally" ;
-lin dysfunctional_A = mkA "dysfunctional" "more dysfunctional" "most dysfunctional" "dysfunctionally" ;
-lin instructional_A = mkA "instructional" "more instructional" "most instructional" "instructionally" ;
-lin constructional_A = mkA "constructional" "more constructional" "most constructional" "constructionally" ;
-lin traditional_A = mkA "traditional" "more traditional" "most traditional" "traditionally" ;
-lin nontraditional_A = mkA "nontraditional" "more nontraditional" "most nontraditional" "nontraditionally" ;
-lin additional_A = mkA "additional" "more additional" "most additional" "additionally" ;
-lin conditional_A = mkA "conditional" "more conditional" "most conditional" "conditionally" ;
-lin unconditional_A = mkA "unconditional" "more unconditional" "most unconditional" "unconditionally" ;
-lin volitional_A = mkA "volitional" "more volitional" "most volitional" "volitionally" ;
-lin apparitional_A = mkA "apparitional" "more apparitional" "most apparitional" "apparitionally" ;
-lin attritional_A = mkA "attritional" "more attritional" "most attritional" "attritionally" ;
-lin nutritional_A = mkA "nutritional" "more nutritional" "most nutritional" "nutritionally" ;
-lin transitional_A = mkA "transitional" "more transitional" "most transitional" "transitionally" ;
-lin positional_A = mkA "positional" "more positional" "most positional" "positionally" ;
-lin prepositional_A = mkA "prepositional" "more prepositional" "most prepositional" "prepositionally" ;
-lin compositional_A = mkA "compositional" "more compositional" "most compositional" "compositionally" ;
-lin decompositional_A = mkA "decompositional" "more decompositional" "most decompositional" "decompositionally" ;
-lin appositional_A = mkA "appositional" "more appositional" "most appositional" "appositionally" ;
-lin intentional_A = mkA "intentional" "more intentional" "most intentional" "intentionally" ;
-lin unintentional_A = mkA "unintentional" "more unintentional" "most unintentional" "unintentionally" ;
-lin attentional_A = mkA "attentional" "more attentional" "most attentional" "attentionally" ;
-lin conventional_A = mkA "conventional" "more conventional" "most conventional" "conventionally" ;
-lin unconventional_A = mkA "unconventional" "more unconventional" "most unconventional" "unconventionally" ;
-lin motional_A = mkA "motional" "more motional" "most motional" "motionally" ;
-lin emotional_A = mkA "emotional" "more emotional" "most emotional" "emotionally" ;
-lin unemotional_A = mkA "unemotional" "more unemotional" "most unemotional" "unemotionally" ;
-lin overemotional_A = mkA "overemotional" "more overemotional" "most overemotional" "overemotionally" ;
-lin promotional_A = mkA "promotional" "more promotional" "most promotional" "promotionally" ;
-lin notional_A = mkA "notional" "more notional" "most notional" "notionally" ;
-lin devotional_A = mkA "devotional" "more devotional" "most devotional" "devotionally" ;
-lin conceptional_A = mkA "conceptional" "more conceptional" "most conceptional" "conceptionally" ;
-lin exceptional_A = mkA "exceptional" "more exceptional" "most exceptional" "exceptionally" ;
-lin unexceptional_A = mkA "unexceptional" "more unexceptional" "most unexceptional" "unexceptionally" ;
-lin optional_A = mkA "optional" "more optional" "most optional" "optionally" ;
-lin proportional_A = mkA "proportional" "more proportional" "most proportional" "proportionally" ;
-lin distributional_A = mkA "distributional" "more distributional" "most distributional" "distributionally" ;
-lin institutional_A = mkA "institutional" "more institutional" "most institutional" "institutionally" ;
-lin noninstitutional_A = mkA "noninstitutional" "more noninstitutional" "most noninstitutional" "noninstitutionally" ;
-lin constitutional_A = mkA "constitutional" "more constitutional" "most constitutional" "constitutionally" ;
-lin unconstitutional_A = mkA "unconstitutional" "more unconstitutional" "most unconstitutional" "unconstitutionally" ;
-lin clonal_A = mkA "clonal" "more clonal" "most clonal" "clonally" ;
-lin monoclonal_A = mkA "monoclonal" "more monoclonal" "most monoclonal" "monoclonally" ;
-lin hormonal_A = mkA "hormonal" "more hormonal" "most hormonal" "hormonally" ;
-lin isochronal_A = mkA "isochronal" "more isochronal" "most isochronal" "isochronally" ;
-lin seasonal_A = mkA "seasonal" "more seasonal" "most seasonal" "seasonally" ;
-lin personal_A = mkA "personal" "more personal" "most personal" "personally" ;
-lin impersonal_A = mkA "impersonal" "more impersonal" "most impersonal" "impersonally" ;
-lin nonpersonal_A = mkA "nonpersonal" "more nonpersonal" "most nonpersonal" "nonpersonally" ;
-lin interpersonal_A = mkA "interpersonal" "more interpersonal" "most interpersonal" "interpersonally" ;
-lin tonal_A = mkA "tonal" "more tonal" "most tonal" "tonally" ;
-lin atonal_A = mkA "atonal" "more atonal" "most atonal" "atonally" ;
-lin cantonal_A = mkA "cantonal" "more cantonal" "most cantonal" "cantonally" ;
-lin polytonal_A = mkA "polytonal" "more polytonal" "most polytonal" "polytonally" ;
-lin axonal_A = mkA "axonal" "more axonal" "most axonal" "axonally" ;
-lin zonal_A = mkA "zonal" "more zonal" "most zonal" "zonally" ;
-lin azonal_A = mkA "azonal" "more azonal" "most azonal" "azonally" ;
-lin bizonal_A = mkA "bizonal" "more bizonal" "most bizonal" "bizonally" ;
-lin carnal_A = mkA "carnal" "more carnal" "most carnal" "carnally" ;
-lin infernal_A = mkA "infernal" "more infernal" "most infernal" "infernally" ;
-lin supernal_A = mkA "supernal" "more supernal" "most supernal" "supernally" ;
-lin maternal_A = mkA "maternal" "more maternal" "most maternal" "maternally" ;
-lin paternal_A = mkA "paternal" "more paternal" "most paternal" "paternally" ;
-lin fraternal_A = mkA "fraternal" "more fraternal" "most fraternal" "fraternally" ;
-lin eternal_A = mkA "eternal" "more eternal" "most eternal" "eternally" ;
-lin internal_A = mkA "internal" "more internal" "most internal" "internally" ;
-lin sternal_A = mkA "sternal" "more sternal" "most sternal" "sternally" ;
-lin asternal_A = mkA "asternal" "more asternal" "most asternal" "asternally" ;
-lin external_A = mkA "external" "more external" "most external" "externally" ;
-lin vernal_A = mkA "vernal" "more vernal" "most vernal" "vernally" ;
-lin diurnal_A = mkA "diurnal" "more diurnal" "most diurnal" "diurnally" ;
-lin nocturnal_A = mkA "nocturnal" "more nocturnal" "most nocturnal" "nocturnally" ;
-lin avifaunal_A = mkA "avifaunal" "more avifaunal" "most avifaunal" "avifaunally" ;
-lin communal_A = mkA "communal" "more communal" "most communal" "communally" ;
-lin charcoal_A = mkA "charcoal" "more charcoal" "most charcoal" "charcoally" ;
-lin protozoal_A = mkA "protozoal" "more protozoal" "most protozoal" "protozoally" ;
-lin papal_A = mkA "papal" "more papal" "most papal" "papally" ;
-lin municipal_A = mkA "municipal" "more municipal" "most municipal" "municipally" ;
-lin principal_A = mkA "principal" "more principal" "most principal" "principally" ;
-lin scopal_A = mkA "scopal" "more scopal" "most scopal" "scopally" ;
-lin episcopal_A = mkA "episcopal" "more episcopal" "most episcopal" "episcopally" ;
-lin archiepiscopal_A = mkA "archiepiscopal" "more archiepiscopal" "most archiepiscopal" "archiepiscopally" ;
-lin carpal_A = mkA "carpal" "more carpal" "most carpal" "carpally" ;
-lin metacarpal_A = mkA "metacarpal" "more metacarpal" "most metacarpal" "metacarpally" ;
-lin epicarpal_A = mkA "epicarpal" "more epicarpal" "most epicarpal" "epicarpally" ;
-lin pupal_A = mkA "pupal" "more pupal" "most pupal" "pupally" ;
-lin prepupal_A = mkA "prepupal" "more prepupal" "most prepupal" "prepupally" ;
-lin archetypal_A = mkA "archetypal" "more archetypal" "most archetypal" "archetypally" ;
-lin cerebral_A = mkA "cerebral" "more cerebral" "most cerebral" "cerebrally" ;
-lin intracerebral_A = mkA "intracerebral" "more intracerebral" "most intracerebral" "intracerebrally" ;
-lin vertebral_A = mkA "vertebral" "more vertebral" "most vertebral" "vertebrally" ;
-lin intervertebral_A = mkA "intervertebral" "more intervertebral" "most intervertebral" "intervertebrally" ;
-lin penumbral_A = mkA "penumbral" "more penumbral" "most penumbral" "penumbrally" ;
-lin ambulacral_A = mkA "ambulacral" "more ambulacral" "most ambulacral" "ambulacrally" ;
-lin sacral_A = mkA "sacral" "more sacral" "most sacral" "sacrally" ;
-lin lumbosacral_A = mkA "lumbosacral" "more lumbosacral" "most lumbosacral" "lumbosacrally" ;
-lin icosahedral_A = mkA "icosahedral" "more icosahedral" "most icosahedral" "icosahedrally" ;
-lin rhombohedral_A = mkA "rhombohedral" "more rhombohedral" "most rhombohedral" "rhombohedrally" ;
-lin cathedral_A = mkA "cathedral" "more cathedral" "most cathedral" "cathedrally" ;
-lin polyhedral_A = mkA "polyhedral" "more polyhedral" "most polyhedral" "polyhedrally" ;
-lin liberal_A = mkA "liberal" "more liberal" "most liberal" "liberally" ;
-lin illiberal_A = mkA "illiberal" "more illiberal" "most illiberal" "illiberally" ;
-lin neoliberal_A = mkA "neoliberal" "more neoliberal" "most neoliberal" "neoliberally" ;
-lin cheliceral_A = mkA "cheliceral" "more cheliceral" "most cheliceral" "chelicerally" ;
-lin visceral_A = mkA "visceral" "more visceral" "most visceral" "viscerally" ;
-lin federal_A = mkA "federal" "more federal" "most federal" "federally" ;
-lin feral_A = mkA "feral" "more feral" "most feral" "ferally" ;
-lin peripheral_A = mkA "peripheral" "more peripheral" "most peripheral" "peripherally" ;
-lin antheral_A = mkA "antheral" "more antheral" "most antheral" "antherally" ;
-lin bicameral_A = mkA "bicameral" "more bicameral" "most bicameral" "bicamerally" ;
-lin unicameral_A = mkA "unicameral" "more unicameral" "most unicameral" "unicamerally" ;
-lin ephemeral_A = mkA "ephemeral" "more ephemeral" "most ephemeral" "ephemerally" ;
-lin scapulohumeral_A = mkA "scapulohumeral" "more scapulohumeral" "most scapulohumeral" "scapulohumerally" ;
-lin numeral_A = mkA "numeral" "more numeral" "most numeral" "numerally" ;
-lin general_A = mkA "general" "more general" "most general" "generally" ;
-lin mineral_A = mkA "mineral" "more mineral" "most mineral" "minerally" ;
-lin puerperal_A = mkA "puerperal" "more puerperal" "most puerperal" "puerperally" ;
-lin lateral_A = mkA "lateral" "more lateral" "most lateral" "laterally" ;
-lin contralateral_A = mkA "contralateral" "more contralateral" "most contralateral" "contralaterally" ;
-lin bilateral_A = mkA "bilateral" "more bilateral" "most bilateral" "bilaterally" ;
-lin unilateral_A = mkA "unilateral" "more unilateral" "most unilateral" "unilaterally" ;
-lin quadrilateral_A = mkA "quadrilateral" "more quadrilateral" "most quadrilateral" "quadrilaterally" ;
-lin trilateral_A = mkA "trilateral" "more trilateral" "most trilateral" "trilaterally" ;
-lin ipsilateral_A = mkA "ipsilateral" "more ipsilateral" "most ipsilateral" "ipsilaterally" ;
-lin multilateral_A = mkA "multilateral" "more multilateral" "most multilateral" "multilaterally" ;
-lin equilateral_A = mkA "equilateral" "more equilateral" "most equilateral" "equilaterally" ;
-lin collateral_A = mkA "collateral" "more collateral" "most collateral" "collaterally" ;
-lin literal_A = mkA "literal" "more literal" "most literal" "literally" ;
-lin parenteral_A = mkA "parenteral" "more parenteral" "most parenteral" "parenterally" ;
-lin apteral_A = mkA "apteral" "more apteral" "most apteral" "apterally" ;
-lin peripteral_A = mkA "peripteral" "more peripteral" "most peripteral" "peripterally" ;
-lin monopteral_A = mkA "monopteral" "more monopteral" "most monopteral" "monopterally" ;
-lin integral_A = mkA "integral" "more integral" "most integral" "integrally" ;
-lin sepulchral_A = mkA "sepulchral" "more sepulchral" "most sepulchral" "sepulchrally" ;
-lin hypaethral_A = mkA "hypaethral" "more hypaethral" "most hypaethral" "hypaethrally" ;
-lin urethral_A = mkA "urethral" "more urethral" "most urethral" "urethrally" ;
-lin spiral_A = mkA "spiral" "more spiral" "most spiral" "spirally" ;
-lin viral_A = mkA "viral" "more viral" "most viral" "virally" ;
-lin antiviral_A = mkA "antiviral" "more antiviral" "most antiviral" "antivirally" ;
-lin oral_A = mkA "oral" "more oral" "most oral" "orally" ;
-lin aboral_A = mkA "aboral" "more aboral" "most aboral" "aborally" ;
-lin coral_A = mkA "coral" "more coral" "most coral" "corally" ;
-lin choral_A = mkA "choral" "more choral" "most choral" "chorally" ;
-lin behavioral_A = mkA "behavioral" "more behavioral" "most behavioral" "behaviorally" ;
-lin floral_A = mkA "floral" "more floral" "most floral" "florally" ;
-lin moral_A = mkA "moral" "more moral" "most moral" "morally" ;
-lin amoral_A = mkA "amoral" "more amoral" "most amoral" "amorally" ;
-lin femoral_A = mkA "femoral" "more femoral" "most femoral" "femorally" ;
-lin immoral_A = mkA "immoral" "more immoral" "most immoral" "immorally" ;
-lin nonmoral_A = mkA "nonmoral" "more nonmoral" "most nonmoral" "nonmorally" ;
-lin humoral_A = mkA "humoral" "more humoral" "most humoral" "humorally" ;
-lin temporal_A = mkA "temporal" "more temporal" "most temporal" "temporally" ;
-lin spatiotemporal_A = mkA "spatiotemporal" "more spatiotemporal" "most spatiotemporal" "spatiotemporally" ;
-lin blastoporal_A = mkA "blastoporal" "more blastoporal" "most blastoporal" "blastoporally" ;
-lin corporal_A = mkA "corporal" "more corporal" "most corporal" "corporally" ;
-lin auroral_A = mkA "auroral" "more auroral" "most auroral" "aurorally" ;
-lin electoral_A = mkA "electoral" "more electoral" "most electoral" "electorally" ;
-lin pectoral_A = mkA "pectoral" "more pectoral" "most pectoral" "pectorally" ;
-lin doctoral_A = mkA "doctoral" "more doctoral" "most doctoral" "doctorally" ;
-lin postdoctoral_A = mkA "postdoctoral" "more postdoctoral" "most postdoctoral" "postdoctorally" ;
-lin clitoral_A = mkA "clitoral" "more clitoral" "most clitoral" "clitorally" ;
-lin pastoral_A = mkA "pastoral" "more pastoral" "most pastoral" "pastorally" ;
-lin littoral_A = mkA "littoral" "more littoral" "most littoral" "littorally" ;
-lin sublittoral_A = mkA "sublittoral" "more sublittoral" "most sublittoral" "sublittorally" ;
-lin mayoral_A = mkA "mayoral" "more mayoral" "most mayoral" "mayorally" ;
-lin spectral_A = mkA "spectral" "more spectral" "most spectral" "spectrally" ;
-lin diametral_A = mkA "diametral" "more diametral" "most diametral" "diametrally" ;
-lin retral_A = mkA "retral" "more retral" "most retral" "retrally" ;
-lin arbitral_A = mkA "arbitral" "more arbitral" "most arbitral" "arbitrally" ;
-lin mitral_A = mkA "mitral" "more mitral" "most mitral" "mitrally" ;
-lin central_A = mkA "central" "more central" "most central" "centrally" ;
-lin ventral_A = mkA "ventral" "more ventral" "most ventral" "ventrally" ;
-lin dorsoventral_A = mkA "dorsoventral" "more dorsoventral" "most dorsoventral" "dorsoventrally" ;
-lin astral_A = mkA "astral" "more astral" "most astral" "astrally" ;
-lin cadastral_A = mkA "cadastral" "more cadastral" "most cadastral" "cadastrally" ;
-lin ancestral_A = mkA "ancestral" "more ancestral" "most ancestral" "ancestrally" ;
-lin orchestral_A = mkA "orchestral" "more orchestral" "most orchestral" "orchestrally" ;
-lin semestral_A = mkA "semestral" "more semestral" "most semestral" "semestrally" ;
-lin fenestral_A = mkA "fenestral" "more fenestral" "most fenestral" "fenestrally" ;
-lin campestral_A = mkA "campestral" "more campestral" "most campestral" "campestrally" ;
-lin rupestral_A = mkA "rupestral" "more rupestral" "most rupestral" "rupestrally" ;
-lin sinistral_A = mkA "sinistral" "more sinistral" "most sinistral" "sinistrally" ;
-lin austral_A = mkA "austral" "more austral" "most austral" "australly" ;
-lin neutral_A = mkA "neutral" "more neutral" "most neutral" "neutrally" ;
-lin dextral_A = mkA "dextral" "more dextral" "most dextral" "dextrally" ;
-lin aural_A = mkA "aural" "more aural" "most aural" "aurally" ;
-lin binaural_A = mkA "binaural" "more binaural" "most binaural" "binaurally" ;
-lin monaural_A = mkA "monaural" "more monaural" "most monaural" "monaurally" ;
-lin dural_A = mkA "dural" "more dural" "most dural" "durally" ;
-lin subdural_A = mkA "subdural" "more subdural" "most subdural" "subdurally" ;
-lin procedural_A = mkA "procedural" "more procedural" "most procedural" "procedurally" ;
-lin epidural_A = mkA "epidural" "more epidural" "most epidural" "epidurally" ;
-lin pleural_A = mkA "pleural" "more pleural" "most pleural" "pleurally" ;
-lin neural_A = mkA "neural" "more neural" "most neural" "neurally" ;
-lin sensorineural_A = mkA "sensorineural" "more sensorineural" "most sensorineural" "sensorineurally" ;
-lin figural_A = mkA "figural" "more figural" "most figural" "figurally" ;
-lin inaugural_A = mkA "inaugural" "more inaugural" "most inaugural" "inaugurally" ;
-lin exaugural_A = mkA "exaugural" "more exaugural" "most exaugural" "exaugurally" ;
-lin jural_A = mkA "jural" "more jural" "most jural" "jurally" ;
-lin plural_A = mkA "plural" "more plural" "most plural" "plurally" ;
-lin mural_A = mkA "mural" "more mural" "most mural" "murally" ;
-lin intramural_A = mkA "intramural" "more intramural" "most intramural" "intramurally" ;
-lin extramural_A = mkA "extramural" "more extramural" "most extramural" "extramurally" ;
-lin intermural_A = mkA "intermural" "more intermural" "most intermural" "intermurally" ;
-lin rural_A = mkA "rural" "more rural" "most rural" "rurally" ;
-lin crural_A = mkA "crural" "more crural" "most crural" "crurally" ;
-lin caesural_A = mkA "caesural" "more caesural" "most caesural" "caesurally" ;
-lin mensural_A = mkA "mensural" "more mensural" "most mensural" "mensurally" ;
-lin natural_A = mkA "natural" "more natural" "most natural" "naturally" ;
-lin connatural_A = mkA "connatural" "more connatural" "most connatural" "connaturally" ;
-lin nonnatural_A = mkA "nonnatural" "more nonnatural" "most nonnatural" "nonnaturally" ;
-lin unnatural_A = mkA "unnatural" "more unnatural" "most unnatural" "unnaturally" ;
-lin supernatural_A = mkA "supernatural" "more supernatural" "most supernatural" "supernaturally" ;
-lin preternatural_A = mkA "preternatural" "more preternatural" "most preternatural" "preternaturally" ;
-lin prefectural_A = mkA "prefectural" "more prefectural" "most prefectural" "prefecturally" ;
-lin conjectural_A = mkA "conjectural" "more conjectural" "most conjectural" "conjecturally" ;
-lin architectural_A = mkA "architectural" "more architectural" "most architectural" "architecturally" ;
-lin cytoarchitectural_A = mkA "cytoarchitectural" "more cytoarchitectural" "most cytoarchitectural" "cytoarchitecturally" ;
-lin structural_A = mkA "structural" "more structural" "most structural" "structurally" ;
-lin nonstructural_A = mkA "nonstructural" "more nonstructural" "most nonstructural" "nonstructurally" ;
-lin cultural_A = mkA "cultural" "more cultural" "most cultural" "culturally" ;
-lin apicultural_A = mkA "apicultural" "more apicultural" "most apicultural" "apiculturally" ;
-lin sericultural_A = mkA "sericultural" "more sericultural" "most sericultural" "sericulturally" ;
-lin agricultural_A = mkA "agricultural" "more agricultural" "most agricultural" "agriculturally" ;
-lin floricultural_A = mkA "floricultural" "more floricultural" "most floricultural" "floriculturally" ;
-lin multicultural_A = mkA "multicultural" "more multicultural" "most multicultural" "multiculturally" ;
-lin horticultural_A = mkA "horticultural" "more horticultural" "most horticultural" "horticulturally" ;
-lin aquicultural_A = mkA "aquicultural" "more aquicultural" "most aquicultural" "aquiculturally" ;
-lin sociocultural_A = mkA "sociocultural" "more sociocultural" "most sociocultural" "socioculturally" ;
-lin transcultural_A = mkA "transcultural" "more transcultural" "most transcultural" "transculturally" ;
-lin scriptural_A = mkA "scriptural" "more scriptural" "most scriptural" "scripturally" ;
-lin sculptural_A = mkA "sculptural" "more sculptural" "most sculptural" "sculpturally" ;
-lin nurtural_A = mkA "nurtural" "more nurtural" "most nurtural" "nurturally" ;
-lin gestural_A = mkA "gestural" "more gestural" "most gestural" "gesturally" ;
-lin postural_A = mkA "postural" "more postural" "most postural" "posturally" ;
-lin guttural_A = mkA "guttural" "more guttural" "most guttural" "gutturally" ;
-lin gyral_A = mkA "gyral" "more gyral" "most gyral" "gyrally" ;
-lin basal_A = mkA "basal" "more basal" "most basal" "basally" ;
-lin abomasal_A = mkA "abomasal" "more abomasal" "most abomasal" "abomasally" ;
-lin nasal_A = mkA "nasal" "more nasal" "most nasal" "nasally" ;
-lin paranasal_A = mkA "paranasal" "more paranasal" "most paranasal" "paranasally" ;
-lin perinasal_A = mkA "perinasal" "more perinasal" "most perinasal" "perinasally" ;
-lin phrasal_A = mkA "phrasal" "more phrasal" "most phrasal" "phrasally" ;
-lin mensal_A = mkA "mensal" "more mensal" "most mensal" "mensally" ;
-lin commensal_A = mkA "commensal" "more commensal" "most commensal" "commensally" ;
-lin mucosal_A = mkA "mucosal" "more mucosal" "most mucosal" "mucosally" ;
-lin tarsal_A = mkA "tarsal" "more tarsal" "most tarsal" "tarsally" ;
-lin metatarsal_A = mkA "metatarsal" "more metatarsal" "most metatarsal" "metatarsally" ;
-lin universal_A = mkA "universal" "more universal" "most universal" "universally" ;
-lin dorsal_A = mkA "dorsal" "more dorsal" "most dorsal" "dorsally" ;
-lin bursal_A = mkA "bursal" "more bursal" "most bursal" "bursally" ;
-lin palatoglossal_A = mkA "palatoglossal" "more palatoglossal" "most palatoglossal" "palatoglossally" ;
-lin colossal_A = mkA "colossal" "more colossal" "most colossal" "colossally" ;
-lin abyssal_A = mkA "abyssal" "more abyssal" "most abyssal" "abyssally" ;
-lin causal_A = mkA "causal" "more causal" "most causal" "causally" ;
-lin clausal_A = mkA "clausal" "more clausal" "most clausal" "clausally" ;
-lin menopausal_A = mkA "menopausal" "more menopausal" "most menopausal" "menopausally" ;
-lin premenopausal_A = mkA "premenopausal" "more premenopausal" "most premenopausal" "premenopausally" ;
-lin postmenopausal_A = mkA "postmenopausal" "more postmenopausal" "most postmenopausal" "postmenopausally" ;
-lin spousal_A = mkA "spousal" "more spousal" "most spousal" "spousally" ;
-lin fatal_A = mkA "fatal" "more fatal" "most fatal" "fatally" ;
-lin nonfatal_A = mkA "nonfatal" "more nonfatal" "most nonfatal" "nonfatally" ;
-lin palatal_A = mkA "palatal" "more palatal" "most palatal" "palatally" ;
-lin stomatal_A = mkA "stomatal" "more stomatal" "most stomatal" "stomatally" ;
-lin astomatal_A = mkA "astomatal" "more astomatal" "most astomatal" "astomatally" ;
-lin natal_A = mkA "natal" "more natal" "most natal" "natally" ;
-lin prenatal_A = mkA "prenatal" "more prenatal" "most prenatal" "prenatally" ;
-lin antenatal_A = mkA "antenatal" "more antenatal" "most antenatal" "antenatally" ;
-lin perinatal_A = mkA "perinatal" "more perinatal" "most perinatal" "perinatally" ;
-lin neonatal_A = mkA "neonatal" "more neonatal" "most neonatal" "neonatally" ;
-lin postnatal_A = mkA "postnatal" "more postnatal" "most postnatal" "postnatally" ;
-lin dialectal_A = mkA "dialectal" "more dialectal" "most dialectal" "dialectally" ;
-lin rectal_A = mkA "rectal" "more rectal" "most rectal" "rectally" ;
-lin colorectal_A = mkA "colorectal" "more colorectal" "most colorectal" "colorectally" ;
-lin anorectal_A = mkA "anorectal" "more anorectal" "most anorectal" "anorectally" ;
-lin ictal_A = mkA "ictal" "more ictal" "most ictal" "ictally" ;
-lin postictal_A = mkA "postictal" "more postictal" "most postictal" "postictally" ;
-lin octal_A = mkA "octal" "more octal" "most octal" "octally" ;
-lin chaetal_A = mkA "chaetal" "more chaetal" "most chaetal" "chaetally" ;
-lin actinomycetal_A = mkA "actinomycetal" "more actinomycetal" "most actinomycetal" "actinomycetally" ;
-lin fetal_A = mkA "fetal" "more fetal" "most fetal" "fetally" ;
-lin vegetal_A = mkA "vegetal" "more vegetal" "most vegetal" "vegetally" ;
-lin parietal_A = mkA "parietal" "more parietal" "most parietal" "parietally" ;
-lin skeletal_A = mkA "skeletal" "more skeletal" "most skeletal" "skeletally" ;
-lin musculoskeletal_A = mkA "musculoskeletal" "more musculoskeletal" "most musculoskeletal" "musculoskeletally" ;
-lin bimetal_A = mkA "bimetal" "more bimetal" "most bimetal" "bimetally" ;
-lin planetal_A = mkA "planetal" "more planetal" "most planetal" "planetally" ;
-lin foetal_A = mkA "foetal" "more foetal" "most foetal" "foetally" ;
-lin centripetal_A = mkA "centripetal" "more centripetal" "most centripetal" "centripetally" ;
-lin basipetal_A = mkA "basipetal" "more basipetal" "most basipetal" "basipetally" ;
-lin acropetal_A = mkA "acropetal" "more acropetal" "most acropetal" "acropetally" ;
-lin orbital_A = mkA "orbital" "more orbital" "most orbital" "orbitally" ;
-lin supraorbital_A = mkA "supraorbital" "more supraorbital" "most supraorbital" "supraorbitally" ;
-lin suborbital_A = mkA "suborbital" "more suborbital" "most suborbital" "suborbitally" ;
-lin cubital_A = mkA "cubital" "more cubital" "most cubital" "cubitally" ;
-lin antecubital_A = mkA "antecubital" "more antecubital" "most antecubital" "antecubitally" ;
-lin digital_A = mkA "digital" "more digital" "most digital" "digitally" ;
-lin genital_A = mkA "genital" "more genital" "most genital" "genitally" ;
-lin congenital_A = mkA "congenital" "more congenital" "most congenital" "congenitally" ;
-lin urogenital_A = mkA "urogenital" "more urogenital" "most urogenital" "urogenitally" ;
-lin coital_A = mkA "coital" "more coital" "most coital" "coitally" ;
-lin capital_A = mkA "capital" "more capital" "most capital" "capitally" ;
-lin occipital_A = mkA "occipital" "more occipital" "most occipital" "occipitally" ;
-lin bicipital_A = mkA "bicipital" "more bicipital" "most bicipital" "bicipitally" ;
-lin marital_A = mkA "marital" "more marital" "most marital" "maritally" ;
-lin extramarital_A = mkA "extramarital" "more extramarital" "most extramarital" "extramaritally" ;
-lin premarital_A = mkA "premarital" "more premarital" "most premarital" "premaritally" ;
-lin vital_A = mkA "vital" "more vital" "most vital" "vitally" ;
-lin plantal_A = mkA "plantal" "more plantal" "most plantal" "plantally" ;
-lin consonantal_A = mkA "consonantal" "more consonantal" "most consonantal" "consonantally" ;
-lin quantal_A = mkA "quantal" "more quantal" "most quantal" "quantally" ;
-lin placental_A = mkA "placental" "more placental" "most placental" "placentally" ;
-lin aplacental_A = mkA "aplacental" "more aplacental" "most aplacental" "aplacentally" ;
-lin transplacental_A = mkA "transplacental" "more transplacental" "most transplacental" "transplacentally" ;
-lin dental_A = mkA "dental" "more dental" "most dental" "dentally" ;
-lin edental_A = mkA "edental" "more edental" "most edental" "edentally" ;
-lin accidental_A = mkA "accidental" "more accidental" "most accidental" "accidentally" ;
-lin occidental_A = mkA "occidental" "more occidental" "most occidental" "occidentally" ;
-lin incidental_A = mkA "incidental" "more incidental" "most incidental" "incidentally" ;
-lin coincidental_A = mkA "coincidental" "more coincidental" "most coincidental" "coincidentally" ;
-lin transcendental_A = mkA "transcendental" "more transcendental" "most transcendental" "transcendentally" ;
-lin maxillodental_A = mkA "maxillodental" "more maxillodental" "most maxillodental" "maxillodentally" ;
-lin oriental_A = mkA "oriental" "more oriental" "most oriental" "orientally" ;
-lin mental_A = mkA "mental" "more mental" "most mental" "mentally" ;
-lin fundamental_A = mkA "fundamental" "more fundamental" "most fundamental" "fundamentally" ;
-lin firmamental_A = mkA "firmamental" "more firmamental" "most firmamental" "firmamentally" ;
-lin ornamental_A = mkA "ornamental" "more ornamental" "most ornamental" "ornamentally" ;
-lin sacramental_A = mkA "sacramental" "more sacramental" "most sacramental" "sacramentally" ;
-lin temperamental_A = mkA "temperamental" "more temperamental" "most temperamental" "temperamentally" ;
-lin elemental_A = mkA "elemental" "more elemental" "most elemental" "elementally" ;
-lin implemental_A = mkA "implemental" "more implemental" "most implemental" "implementally" ;
-lin complemental_A = mkA "complemental" "more complemental" "most complemental" "complementally" ;
-lin incremental_A = mkA "incremental" "more incremental" "most incremental" "incrementally" ;
-lin fragmental_A = mkA "fragmental" "more fragmental" "most fragmental" "fragmentally" ;
-lin judgmental_A = mkA "judgmental" "more judgmental" "most judgmental" "judgmentally" ;
-lin nonjudgmental_A = mkA "nonjudgmental" "more nonjudgmental" "most nonjudgmental" "nonjudgmentally" ;
-lin segmental_A = mkA "segmental" "more segmental" "most segmental" "segmentally" ;
-lin suprasegmental_A = mkA "suprasegmental" "more suprasegmental" "most suprasegmental" "suprasegmentally" ;
-lin regimental_A = mkA "regimental" "more regimental" "most regimental" "regimentally" ;
-lin experimental_A = mkA "experimental" "more experimental" "most experimental" "experimentally" ;
-lin detrimental_A = mkA "detrimental" "more detrimental" "most detrimental" "detrimentally" ;
-lin sentimental_A = mkA "sentimental" "more sentimental" "most sentimental" "sentimentally" ;
-lin environmental_A = mkA "environmental" "more environmental" "most environmental" "environmentally" ;
-lin governmental_A = mkA "governmental" "more governmental" "most governmental" "governmentally" ;
-lin developmental_A = mkA "developmental" "more developmental" "most developmental" "developmentally" ;
-lin departmental_A = mkA "departmental" "more departmental" "most departmental" "departmentally" ;
-lin intradepartmental_A = mkA "intradepartmental" "more intradepartmental" "most intradepartmental" "intradepartmentally" ;
-lin interdepartmental_A = mkA "interdepartmental" "more interdepartmental" "most interdepartmental" "interdepartmentally" ;
-lin compartmental_A = mkA "compartmental" "more compartmental" "most compartmental" "compartmentally" ;
-lin vestmental_A = mkA "vestmental" "more vestmental" "most vestmental" "vestmentally" ;
-lin monumental_A = mkA "monumental" "more monumental" "most monumental" "monumentally" ;
-lin instrumental_A = mkA "instrumental" "more instrumental" "most instrumental" "instrumentally" ;
-lin continental_A = mkA "continental" "more continental" "most continental" "continentally" ;
-lin intercontinental_A = mkA "intercontinental" "more intercontinental" "most intercontinental" "intercontinentally" ;
-lin transcontinental_A = mkA "transcontinental" "more transcontinental" "most transcontinental" "transcontinentally" ;
-lin rental_A = mkA "rental" "more rental" "most rental" "rentally" ;
-lin parental_A = mkA "parental" "more parental" "most parental" "parentally" ;
-lin frontal_A = mkA "frontal" "more frontal" "most frontal" "frontally" ;
-lin prefrontal_A = mkA "prefrontal" "more prefrontal" "most prefrontal" "prefrontally" ;
-lin horizontal_A = mkA "horizontal" "more horizontal" "most horizontal" "horizontally" ;
-lin contrapuntal_A = mkA "contrapuntal" "more contrapuntal" "most contrapuntal" "contrapuntally" ;
-lin anecdotal_A = mkA "anecdotal" "more anecdotal" "most anecdotal" "anecdotally" ;
-lin antidotal_A = mkA "antidotal" "more antidotal" "most antidotal" "antidotally" ;
-lin sacerdotal_A = mkA "sacerdotal" "more sacerdotal" "most sacerdotal" "sacerdotally" ;
-lin scrotal_A = mkA "scrotal" "more scrotal" "most scrotal" "scrotally" ;
-lin total_A = mkA "total" "more total" "most total" "totally" ;
-lin teetotal_A = mkA "teetotal" "more teetotal" "most teetotal" "teetotally" ;
-lin pivotal_A = mkA "pivotal" "more pivotal" "most pivotal" "pivotally" ;
-lin septal_A = mkA "septal" "more septal" "most septal" "septally" ;
-lin pubertal_A = mkA "pubertal" "more pubertal" "most pubertal" "pubertally" ;
-lin aortal_A = mkA "aortal" "more aortal" "most aortal" "aortally" ;
-lin mortal_A = mkA "mortal" "more mortal" "most mortal" "mortally" ;
-lin immortal_A = mkA "immortal" "more immortal" "most immortal" "immortally" ;
-lin curtal_A = mkA "curtal" "more curtal" "most curtal" "curtally" ;
-lin coastal_A = mkA "coastal" "more coastal" "most coastal" "coastally" ;
-lin festal_A = mkA "festal" "more festal" "most festal" "festally" ;
-lin vestal_A = mkA "vestal" "more vestal" "most vestal" "vestally" ;
-lin distal_A = mkA "distal" "more distal" "most distal" "distally" ;
-lin costal_A = mkA "costal" "more costal" "most costal" "costally" ;
-lin pentecostal_A = mkA "pentecostal" "more pentecostal" "most pentecostal" "pentecostally" ;
-lin intercostal_A = mkA "intercostal" "more intercostal" "most intercostal" "intercostally" ;
-lin postal_A = mkA "postal" "more postal" "most postal" "postally" ;
-lin crustal_A = mkA "crustal" "more crustal" "most crustal" "crustally" ;
-lin sagittal_A = mkA "sagittal" "more sagittal" "most sagittal" "sagittally" ;
-lin noncommittal_A = mkA "noncommittal" "more noncommittal" "most noncommittal" "noncommittally" ;
-lin glottal_A = mkA "glottal" "more glottal" "most glottal" "glottally" ;
-lin brutal_A = mkA "brutal" "more brutal" "most brutal" "brutally" ;
-lin dual_A = mkA "dual" "more dual" "most dual" "dually" ;
-lin gradual_A = mkA "gradual" "more gradual" "most gradual" "gradually" ;
-lin residual_A = mkA "residual" "more residual" "most residual" "residually" ;
-lin individual_A = mkA "individual" "more individual" "most individual" "individually" ;
-lin lingual_A = mkA "lingual" "more lingual" "most lingual" "lingually" ;
-lin 'multi-lingual_A' = mkA "multi-lingual" "more multi-lingual" "most multi-lingual" "multi-lingually" ;
-lin 'audio-lingual_A' = mkA "audio-lingual" "more audio-lingual" "most audio-lingual" "audio-lingually" ;
-lin sublingual_A = mkA "sublingual" "more sublingual" "most sublingual" "sublingually" ;
-lin bilingual_A = mkA "bilingual" "more bilingual" "most bilingual" "bilingually" ;
-lin trilingual_A = mkA "trilingual" "more trilingual" "most trilingual" "trilingually" ;
-lin multilingual_A = mkA "multilingual" "more multilingual" "most multilingual" "multilingually" ;
-lin monolingual_A = mkA "monolingual" "more monolingual" "most monolingual" "monolingually" ;
-lin ungual_A = mkA "ungual" "more ungual" "most ungual" "ungually" ;
-lin manual_A = mkA "manual" "more manual" "most manual" "manually" ;
-lin continual_A = mkA "continual" "more continual" "most continual" "continually" ;
-lin annual_A = mkA "annual" "more annual" "most annual" "annually" ;
-lin semiannual_A = mkA "semiannual" "more semiannual" "most semiannual" "semiannually" ;
-lin equal_A = mkA "equal" "more equal" "most equal" "equally" ;
-lin unequal_A = mkA "unequal" "more unequal" "most unequal" "unequally" ;
-lin coequal_A = mkA "coequal" "more coequal" "most coequal" "coequally" ;
-lin menstrual_A = mkA "menstrual" "more menstrual" "most menstrual" "menstrually" ;
-lin premenstrual_A = mkA "premenstrual" "more premenstrual" "most premenstrual" "premenstrually" ;
-lin casual_A = mkA "casual" "more casual" "most casual" "casually" ;
-lin visual_A = mkA "visual" "more visual" "most visual" "visually" ;
-lin nonvisual_A = mkA "nonvisual" "more nonvisual" "most nonvisual" "nonvisually" ;
-lin audiovisual_A = mkA "audiovisual" "more audiovisual" "most audiovisual" "audiovisually" ;
-lin sensual_A = mkA "sensual" "more sensual" "most sensual" "sensually" ;
-lin consensual_A = mkA "consensual" "more consensual" "most consensual" "consensually" ;
-lin usual_A = mkA "usual" "more usual" "most usual" "usually" ;
-lin unusual_A = mkA "unusual" "more unusual" "most unusual" "unusually" ;
-lin actual_A = mkA "actual" "more actual" "most actual" "actually" ;
-lin factual_A = mkA "factual" "more factual" "most factual" "factually" ;
-lin artifactual_A = mkA "artifactual" "more artifactual" "most artifactual" "artifactually" ;
-lin counterfactual_A = mkA "counterfactual" "more counterfactual" "most counterfactual" "counterfactually" ;
-lin contractual_A = mkA "contractual" "more contractual" "most contractual" "contractually" ;
-lin tactual_A = mkA "tactual" "more tactual" "most tactual" "tactually" ;
-lin effectual_A = mkA "effectual" "more effectual" "most effectual" "effectually" ;
-lin ineffectual_A = mkA "ineffectual" "more ineffectual" "most ineffectual" "ineffectually" ;
-lin intellectual_A = mkA "intellectual" "more intellectual" "most intellectual" "intellectually" ;
-lin nonintellectual_A = mkA "nonintellectual" "more nonintellectual" "most nonintellectual" "nonintellectually" ;
-lin aspectual_A = mkA "aspectual" "more aspectual" "most aspectual" "aspectually" ;
-lin punctual_A = mkA "punctual" "more punctual" "most punctual" "punctually" ;
-lin unpunctual_A = mkA "unpunctual" "more unpunctual" "most unpunctual" "unpunctually" ;
-lin perpetual_A = mkA "perpetual" "more perpetual" "most perpetual" "perpetually" ;
-lin habitual_A = mkA "habitual" "more habitual" "most habitual" "habitually" ;
-lin ritual_A = mkA "ritual" "more ritual" "most ritual" "ritually" ;
-lin spiritual_A = mkA "spiritual" "more spiritual" "most spiritual" "spiritually" ;
-lin accentual_A = mkA "accentual" "more accentual" "most accentual" "accentually" ;
-lin eventual_A = mkA "eventual" "more eventual" "most eventual" "eventually" ;
-lin conceptual_A = mkA "conceptual" "more conceptual" "most conceptual" "conceptually" ;
-lin perceptual_A = mkA "perceptual" "more perceptual" "most perceptual" "perceptually" ;
-lin virtual_A = mkA "virtual" "more virtual" "most virtual" "virtually" ;
-lin mutual_A = mkA "mutual" "more mutual" "most mutual" "mutually" ;
-lin textual_A = mkA "textual" "more textual" "most textual" "textually" ;
-lin contextual_A = mkA "contextual" "more contextual" "most contextual" "contextually" ;
-lin sexual_A = mkA "sexual" "more sexual" "most sexual" "sexually" ;
-lin asexual_A = mkA "asexual" "more asexual" "most asexual" "asexually" ;
-lin bisexual_A = mkA "bisexual" "more bisexual" "most bisexual" "bisexually" ;
-lin unisexual_A = mkA "unisexual" "more unisexual" "most unisexual" "unisexually" ;
-lin psychosexual_A = mkA "psychosexual" "more psychosexual" "most psychosexual" "psychosexually" ;
-lin homosexual_A = mkA "homosexual" "more homosexual" "most homosexual" "homosexually" ;
-lin heterosexual_A = mkA "heterosexual" "more heterosexual" "most heterosexual" "heterosexually" ;
-lin intersexual_A = mkA "intersexual" "more intersexual" "most intersexual" "intersexually" ;
-lin naval_A = mkA "naval" "more naval" "most naval" "navally" ;
-lin mediaeval_A = mkA "mediaeval" "more mediaeval" "most mediaeval" "mediaevally" ;
-lin primaeval_A = mkA "primaeval" "more primaeval" "most primaeval" "primaevally" ;
-lin medieval_A = mkA "medieval" "more medieval" "most medieval" "medievally" ;
-lin primeval_A = mkA "primeval" "more primeval" "most primeval" "primevally" ;
-lin coeval_A = mkA "coeval" "more coeval" "most coeval" "coevally" ;
-lin gingival_A = mkA "gingival" "more gingival" "most gingival" "gingivally" ;
-lin archival_A = mkA "archival" "more archival" "most archival" "archivally" ;
-lin adjectival_A = mkA "adjectival" "more adjectival" "most adjectival" "adjectivally" ;
-lin conjunctival_A = mkA "conjunctival" "more conjunctival" "most conjunctival" "conjunctivally" ;
-lin infinitival_A = mkA "infinitival" "more infinitival" "most infinitival" "infinitivally" ;
-lin substantival_A = mkA "substantival" "more substantival" "most substantival" "substantivally" ;
-lin aestival_A = mkA "aestival" "more aestival" "most aestival" "aestivally" ;
-lin oval_A = mkA "oval" "more oval" "most oval" "ovally" ;
-lin larval_A = mkA "larval" "more larval" "most larval" "larvally" ;
-lin adnexal_A = mkA "adnexal" "more adnexal" "most adnexal" "adnexally" ;
-lin affixal_A = mkA "affixal" "more affixal" "most affixal" "affixally" ;
-lin bathyal_A = mkA "bathyal" "more bathyal" "most bathyal" "bathyally" ;
-lin disloyal_A = mkA "disloyal" "more disloyal" "most disloyal" "disloyally" ;
-lin royal_A = mkA "royal" "more royal" "most royal" "royally" ;
-lin awheel_A = mkA "awheel" "more awheel" "most awheel" "awheelly" ;
-lin genteel_A = mkA "genteel" "more genteel" "most genteel" "genteelly" ;
-lin 'shabby-genteel_A' = mkA "shabby-genteel" "more shabby-genteel" "most shabby-genteel" "shabby-genteelly" ;
-lin parallel_A = mkA "parallel" "more parallel" "most parallel" "parallelly" ;
-lin antiparallel_A = mkA "antiparallel" "more antiparallel" "most antiparallel" "antiparallelly" ;
-lin nonparallel_A = mkA "nonparallel" "more nonparallel" "most nonparallel" "nonparallelly" ;
-lin unparallel_A = mkA "unparallel" "more unparallel" "most unparallel" "unparallelly" ;
-lin caramel_A = mkA "caramel" "more caramel" "most caramel" "caramelly" ;
-lin 'anti-personnel_A' = mkA "anti-personnel" "more anti-personnel" "most anti-personnel" "anti-personnelly" ;
-lin antipersonnel_A = mkA "antipersonnel" "more antipersonnel" "most antipersonnel" "antipersonnelly" ;
-lin charnel_A = mkA "charnel" "more charnel" "most charnel" "charnelly" ;
-lin mongrel_A = mkA "mongrel" "more mongrel" "most mongrel" "mongrelly" ;
-lin sorrel_A = mkA "sorrel" "more sorrel" "most sorrel" "sorrelly" ;
-lin pastel_A = mkA "pastel" "more pastel" "most pastel" "pastelly" ;
-lin level_A = mkA "level" "more level" "most level" "levelly" ;
-lin 'high-level_A' = mkA "high-level" "more high-level" "most high-level" "high-levelly" ;
-lin multilevel_A = mkA "multilevel" "more multilevel" "most multilevel" "multilevelly" ;
-lin novel_A = mkA "novel" "more novel" "most novel" "novelly" ;
-lin hazel_A = mkA "hazel" "more hazel" "most hazel" "hazelly" ;
-lin bobtail_A = mkA "bobtail" "more bobtail" "most bobtail" "bobtailly" ;
-lin nonpareil_A = mkA "nonpareil" "more nonpareil" "most nonpareil" "nonpareilly" ;
-lin tamil_A = mkA "tamil" "more tamil" "most tamil" "tamilly" ;
-lin fossil_A = mkA "fossil" "more fossil" "most fossil" "fossilly" ;
-lin tranquil_A = mkA "tranquil" "more tranquil" "most tranquil" "tranquilly" ;
-lin evil_A = mkA "evil" "more evil" "most evil" "evilly" ;
-lin daredevil_A = mkA "daredevil" "more daredevil" "most daredevil" "daredevilly" ;
-lin civil_A = mkA "civil" "more civil" "most civil" "civilly" ;
-lin uncivil_A = mkA "uncivil" "more uncivil" "most uncivil" "uncivilly" ;
-lin screwball_A = mkA "screwball" "more screwball" "most screwball" "screwbally" ;
-lin overall_A = mkA "overall" "more overall" "most overall" "overally" ;
-lin fell_A = mkA "fell" "more fell" "most fell" "felly" ;
-lin well_A = mkA "well" "more well" "most well" "welly" ;
-lin unwell_A = mkA "unwell" "more unwell" "most unwell" "unwelly" ;
-lin swell_A = mkA "swell" "more swell" "most swell" "swelly" ;
-lin ill_A = mkA "ill" "more ill" "most ill" "illy" ;
-lin duckbill_A = mkA "duckbill" "more duckbill" "most duckbill" "duckbilly" ;
-lin chill_A = mkA "chill" "more chill" "most chill" "chilly" ;
-lin uphill_A = mkA "uphill" "more uphill" "most uphill" "uphilly" ;
-lin 'run-of-the-mill_A' = mkA "run-of-the-mill" "more run-of-the-mill" "most run-of-the-mill" "run-of-the-milly" ;
-lin freewill_A = mkA "freewill" "more freewill" "most freewill" "freewilly" ;
-lin droll_A = mkA "droll" "more droll" "most droll" "drolly" ;
-lin 'chock-full_A' = mkA "chock-full" "more chock-full" "most chock-full" "chock-fully" ;
-lin 'cram-full_A' = mkA "cram-full" "more cram-full" "most cram-full" "cram-fully" ;
-lin brimfull_A = mkA "brimfull" "more brimfull" "most brimfull" "brimfully" ;
-lin overfull_A = mkA "overfull" "more overfull" "most overfull" "overfully" ;
-lin null_A = mkA "null" "more null" "most null" "nully" ;
-lin mongol_A = mkA "mongol" "more mongol" "most mongol" "mongolly" ;
-lin uncool_A = mkA "uncool" "more uncool" "most uncool" "uncoolly" ;
-lin 'dyed-in-the-wool_A' = mkA "dyed-in-the-wool" "more dyed-in-the-wool" "most dyed-in-the-wool" "dyed-in-the-woolly" ;
-lin dreadful_A = mkA "dreadful" "more dreadful" "most dreadful" "dreadfully" ;
-lin heedful_A = mkA "heedful" "more heedful" "most heedful" "heedfully" ;
-lin needful_A = mkA "needful" "more needful" "most needful" "needfully" ;
-lin mindful_A = mkA "mindful" "more mindful" "most mindful" "mindfully" ;
-lin unmindful_A = mkA "unmindful" "more unmindful" "most unmindful" "unmindfully" ;
-lin regardful_A = mkA "regardful" "more regardful" "most regardful" "regardfully" ;
-lin rewardful_A = mkA "rewardful" "more rewardful" "most rewardful" "rewardfully" ;
-lin peaceful_A = mkA "peaceful" "more peaceful" "most peaceful" "peacefully" ;
-lin unpeaceful_A = mkA "unpeaceful" "more unpeaceful" "most unpeaceful" "unpeacefully" ;
-lin graceful_A = mkA "graceful" "more graceful" "most graceful" "gracefully" ;
-lin ungraceful_A = mkA "ungraceful" "more ungraceful" "most ungraceful" "ungracefully" ;
-lin disgraceful_A = mkA "disgraceful" "more disgraceful" "most disgraceful" "disgracefully" ;
-lin forceful_A = mkA "forceful" "more forceful" "most forceful" "forcefully" ;
-lin resourceful_A = mkA "resourceful" "more resourceful" "most resourceful" "resourcefully" ;
-lin gleeful_A = mkA "gleeful" "more gleeful" "most gleeful" "gleefully" ;
-lin changeful_A = mkA "changeful" "more changeful" "most changeful" "changefully" ;
-lin vengeful_A = mkA "vengeful" "more vengeful" "most vengeful" "vengefully" ;
-lin revengeful_A = mkA "revengeful" "more revengeful" "most revengeful" "revengefully" ;
-lin wakeful_A = mkA "wakeful" "more wakeful" "most wakeful" "wakefully" ;
-lin baleful_A = mkA "baleful" "more baleful" "most baleful" "balefully" ;
-lin guileful_A = mkA "guileful" "more guileful" "most guileful" "guilefully" ;
-lin doleful_A = mkA "doleful" "more doleful" "most doleful" "dolefully" ;
-lin battleful_A = mkA "battleful" "more battleful" "most battleful" "battlefully" ;
-lin shameful_A = mkA "shameful" "more shameful" "most shameful" "shamefully" ;
-lin baneful_A = mkA "baneful" "more baneful" "most baneful" "banefully" ;
-lin tuneful_A = mkA "tuneful" "more tuneful" "most tuneful" "tunefully" ;
-lin woeful_A = mkA "woeful" "more woeful" "most woeful" "woefully" ;
-lin hopeful_A = mkA "hopeful" "more hopeful" "most hopeful" "hopefully" ;
-lin careful_A = mkA "careful" "more careful" "most careful" "carefully" ;
-lin overcareful_A = mkA "overcareful" "more overcareful" "most overcareful" "overcarefully" ;
-lin ireful_A = mkA "ireful" "more ireful" "most ireful" "irefully" ;
-lin direful_A = mkA "direful" "more direful" "most direful" "direfully" ;
-lin reposeful_A = mkA "reposeful" "more reposeful" "most reposeful" "reposefully" ;
-lin purposeful_A = mkA "purposeful" "more purposeful" "most purposeful" "purposefully" ;
-lin remorseful_A = mkA "remorseful" "more remorseful" "most remorseful" "remorsefully" ;
-lin useful_A = mkA "useful" "more useful" "most useful" "usefully" ;
-lin fateful_A = mkA "fateful" "more fateful" "most fateful" "fatefully" ;
-lin hateful_A = mkA "hateful" "more hateful" "most hateful" "hatefully" ;
-lin grateful_A = mkA "grateful" "more grateful" "most grateful" "gratefully" ;
-lin ungrateful_A = mkA "ungrateful" "more ungrateful" "most ungrateful" "ungratefully" ;
-lin spiteful_A = mkA "spiteful" "more spiteful" "most spiteful" "spitefully" ;
-lin despiteful_A = mkA "despiteful" "more despiteful" "most despiteful" "despitefully" ;
-lin tasteful_A = mkA "tasteful" "more tasteful" "most tasteful" "tastefully" ;
-lin distasteful_A = mkA "distasteful" "more distasteful" "most distasteful" "distastefully" ;
-lin wasteful_A = mkA "wasteful" "more wasteful" "most wasteful" "wastefully" ;
-lin rueful_A = mkA "rueful" "more rueful" "most rueful" "ruefully" ;
-lin meaningful_A = mkA "meaningful" "more meaningful" "most meaningful" "meaningfully" ;
-lin wrongful_A = mkA "wrongful" "more wrongful" "most wrongful" "wrongfully" ;
-lin reproachful_A = mkA "reproachful" "more reproachful" "most reproachful" "reproachfully" ;
-lin watchful_A = mkA "watchful" "more watchful" "most watchful" "watchfully" ;
-lin bashful_A = mkA "bashful" "more bashful" "most bashful" "bashfully" ;
-lin wishful_A = mkA "wishful" "more wishful" "most wishful" "wishfully" ;
-lin blushful_A = mkA "blushful" "more blushful" "most blushful" "blushfully" ;
-lin pushful_A = mkA "pushful" "more pushful" "most pushful" "pushfully" ;
-lin wrathful_A = mkA "wrathful" "more wrathful" "most wrathful" "wrathfully" ;
-lin faithful_A = mkA "faithful" "more faithful" "most faithful" "faithfully" ;
-lin unfaithful_A = mkA "unfaithful" "more unfaithful" "most unfaithful" "unfaithfully" ;
-lin healthful_A = mkA "healthful" "more healthful" "most healthful" "healthfully" ;
-lin unhealthful_A = mkA "unhealthful" "more unhealthful" "most unhealthful" "unhealthfully" ;
-lin slothful_A = mkA "slothful" "more slothful" "most slothful" "slothfully" ;
-lin mirthful_A = mkA "mirthful" "more mirthful" "most mirthful" "mirthfully" ;
-lin youthful_A = mkA "youthful" "more youthful" "most youthful" "youthfully" ;
-lin truthful_A = mkA "truthful" "more truthful" "most truthful" "truthfully" ;
-lin untruthful_A = mkA "untruthful" "more untruthful" "most untruthful" "untruthfully" ;
-lin fanciful_A = mkA "fanciful" "more fanciful" "most fanciful" "fancifully" ;
-lin merciful_A = mkA "merciful" "more merciful" "most merciful" "mercifully" ;
-lin unmerciful_A = mkA "unmerciful" "more unmerciful" "most unmerciful" "unmercifully" ;
-lin pitiful_A = mkA "pitiful" "more pitiful" "most pitiful" "pitifully" ;
-lin plentiful_A = mkA "plentiful" "more plentiful" "most plentiful" "plentifully" ;
-lin bountiful_A = mkA "bountiful" "more bountiful" "most bountiful" "bountifully" ;
-lin beautiful_A = mkA "beautiful" "more beautiful" "most beautiful" "beautifully" ;
-lin dutiful_A = mkA "dutiful" "more dutiful" "most dutiful" "dutifully" ;
-lin thankful_A = mkA "thankful" "more thankful" "most thankful" "thankfully" ;
-lin skilful_A = mkA "skilful" "more skilful" "most skilful" "skilfully" ;
-lin wilful_A = mkA "wilful" "more wilful" "most wilful" "wilfully" ;
-lin thrillful_A = mkA "thrillful" "more thrillful" "most thrillful" "thrillfully" ;
-lin willful_A = mkA "willful" "more willful" "most willful" "willfully" ;
-lin soulful_A = mkA "soulful" "more soulful" "most soulful" "soulfully" ;
-lin brimful_A = mkA "brimful" "more brimful" "most brimful" "brimfully" ;
-lin harmful_A = mkA "harmful" "more harmful" "most harmful" "harmfully" ;
-lin manful_A = mkA "manful" "more manful" "most manful" "manfully" ;
-lin disdainful_A = mkA "disdainful" "more disdainful" "most disdainful" "disdainfully" ;
-lin gainful_A = mkA "gainful" "more gainful" "most gainful" "gainfully" ;
-lin painful_A = mkA "painful" "more painful" "most painful" "painfully" ;
-lin sinful_A = mkA "sinful" "more sinful" "most sinful" "sinfully" ;
-lin scornful_A = mkA "scornful" "more scornful" "most scornful" "scornfully" ;
-lin mournful_A = mkA "mournful" "more mournful" "most mournful" "mournfully" ;
-lin worshipful_A = mkA "worshipful" "more worshipful" "most worshipful" "worshipfully" ;
-lin helpful_A = mkA "helpful" "more helpful" "most helpful" "helpfully" ;
-lin unhelpful_A = mkA "unhelpful" "more unhelpful" "most unhelpful" "unhelpfully" ;
-lin fearful_A = mkA "fearful" "more fearful" "most fearful" "fearfully" ;
-lin tearful_A = mkA "tearful" "more tearful" "most tearful" "tearfully" ;
-lin wonderful_A = mkA "wonderful" "more wonderful" "most wonderful" "wonderfully" ;
-lin cheerful_A = mkA "cheerful" "more cheerful" "most cheerful" "cheerfully" ;
-lin masterful_A = mkA "masterful" "more masterful" "most masterful" "masterfully" ;
-lin powerful_A = mkA "powerful" "more powerful" "most powerful" "powerfully" ;
-lin prayerful_A = mkA "prayerful" "more prayerful" "most prayerful" "prayerfully" ;
-lin colorful_A = mkA "colorful" "more colorful" "most colorful" "colorfully" ;
-lin flavorful_A = mkA "flavorful" "more flavorful" "most flavorful" "flavorfully" ;
-lin colourful_A = mkA "colourful" "more colourful" "most colourful" "colourfully" ;
-lin successful_A = mkA "successful" "more successful" "most successful" "successfully" ;
-lin unsuccessful_A = mkA "unsuccessful" "more unsuccessful" "most unsuccessful" "unsuccessfully" ;
-lin distressful_A = mkA "distressful" "more distressful" "most distressful" "distressfully" ;
-lin blissful_A = mkA "blissful" "more blissful" "most blissful" "blissfully" ;
-lin doubtful_A = mkA "doubtful" "more doubtful" "most doubtful" "doubtfully" ;
-lin tactful_A = mkA "tactful" "more tactful" "most tactful" "tactfully" ;
-lin neglectful_A = mkA "neglectful" "more neglectful" "most neglectful" "neglectfully" ;
-lin respectful_A = mkA "respectful" "more respectful" "most respectful" "respectfully" ;
-lin disrespectful_A = mkA "disrespectful" "more disrespectful" "most disrespectful" "disrespectfully" ;
-lin forgetful_A = mkA "forgetful" "more forgetful" "most forgetful" "forgetfully" ;
-lin fretful_A = mkA "fretful" "more fretful" "most fretful" "fretfully" ;
-lin regretful_A = mkA "regretful" "more regretful" "most regretful" "regretfully" ;
-lin unregretful_A = mkA "unregretful" "more unregretful" "most unregretful" "unregretfully" ;
-lin delightful_A = mkA "delightful" "more delightful" "most delightful" "delightfully" ;
-lin rightful_A = mkA "rightful" "more rightful" "most rightful" "rightfully" ;
-lin frightful_A = mkA "frightful" "more frightful" "most frightful" "frightfully" ;
-lin insightful_A = mkA "insightful" "more insightful" "most insightful" "insightfully" ;
-lin thoughtful_A = mkA "thoughtful" "more thoughtful" "most thoughtful" "thoughtfully" ;
-lin forethoughtful_A = mkA "forethoughtful" "more forethoughtful" "most forethoughtful" "forethoughtfully" ;
-lin unforethoughtful_A = mkA "unforethoughtful" "more unforethoughtful" "most unforethoughtful" "unforethoughtfully" ;
-lin deceitful_A = mkA "deceitful" "more deceitful" "most deceitful" "deceitfully" ;
-lin fitful_A = mkA "fitful" "more fitful" "most fitful" "fitfully" ;
-lin fruitful_A = mkA "fruitful" "more fruitful" "most fruitful" "fruitfully" ;
-lin unfruitful_A = mkA "unfruitful" "more unfruitful" "most unfruitful" "unfruitfully" ;
-lin resentful_A = mkA "resentful" "more resentful" "most resentful" "resentfully" ;
-lin unresentful_A = mkA "unresentful" "more unresentful" "most unresentful" "unresentfully" ;
-lin eventful_A = mkA "eventful" "more eventful" "most eventful" "eventfully" ;
-lin uneventful_A = mkA "uneventful" "more uneventful" "most uneventful" "uneventfully" ;
-lin artful_A = mkA "artful" "more artful" "most artful" "artfully" ;
-lin effortful_A = mkA "effortful" "more effortful" "most effortful" "effortfully" ;
-lin hurtful_A = mkA "hurtful" "more hurtful" "most hurtful" "hurtfully" ;
-lin boastful_A = mkA "boastful" "more boastful" "most boastful" "boastfully" ;
-lin restful_A = mkA "restful" "more restful" "most restful" "restfully" ;
-lin zestful_A = mkA "zestful" "more zestful" "most zestful" "zestfully" ;
-lin wistful_A = mkA "wistful" "more wistful" "most wistful" "wistfully" ;
-lin lustful_A = mkA "lustful" "more lustful" "most lustful" "lustfully" ;
-lin trustful_A = mkA "trustful" "more trustful" "most trustful" "trustfully" ;
-lin distrustful_A = mkA "distrustful" "more distrustful" "most distrustful" "distrustfully" ;
-lin mistrustful_A = mkA "mistrustful" "more mistrustful" "most mistrustful" "mistrustfully" ;
-lin awful_A = mkA "awful" "more awful" "most awful" "awfully" ;
-lin lawful_A = mkA "lawful" "more lawful" "most lawful" "lawfully" ;
-lin unlawful_A = mkA "unlawful" "more unlawful" "most unlawful" "unlawfully" ;
-lin sorrowful_A = mkA "sorrowful" "more sorrowful" "most sorrowful" "sorrowfully" ;
-lin playful_A = mkA "playful" "more playful" "most playful" "playfully" ;
-lin unplayful_A = mkA "unplayful" "more unplayful" "most unplayful" "unplayfully" ;
-lin joyful_A = mkA "joyful" "more joyful" "most joyful" "joyfully" ;
-lin carbonyl_A = mkA "carbonyl" "more carbonyl" "most carbonyl" "carbonylly" ;
-lin zygodactyl_A = mkA "zygodactyl" "more zygodactyl" "most zygodactyl" "zygodactylly" ;
-lin artiodactyl_A = mkA "artiodactyl" "more artiodactyl" "most artiodactyl" "artiodactylly" ;
-lin heterodactyl_A = mkA "heterodactyl" "more heterodactyl" "most heterodactyl" "heterodactylly" ;
-lin polydactyl_A = mkA "polydactyl" "more polydactyl" "most polydactyl" "polydactylly" ;
-lin carboxyl_A = mkA "carboxyl" "more carboxyl" "most carboxyl" "carboxylly" ;
-lin glial_A = mkA "glial" "glialer" "glialest" "glially" ;
-lin loyal_A = mkA "loyal" "loyaller" "loyallest" "loyally" ;
-lin cruel_A = mkA "cruel" "crueller" "cruellest" "cruelly" ;
-lin frail_A = mkA "frail" "frailer" "frailest" "frailly" ;
-lin all_A = mkA "all" "aller" "allest" "ally" ;
-lin small_A = mkA "small" "smaller" "smallest" "smally" ; -- notcompound all_A ;
-lin tall_A = mkA "tall" "taller" "tallest" "tally" ; -- notcompound all_A ;
-lin shrill_A = mkA "shrill" "shriller" "shrillest" "shrilly" ;
-lin still_A = mkA "still" "stiller" "stillest" "stilly" ;
-lin dull_A = mkA "dull" "duller" "dullest" "dully" ;
-lin full_A = mkA "full" "fuller" "fullest" "fully" ;
-lin cool_A = mkA "cool" "cooler" "coolest" "coolly" ;
-lin foul_A = mkA "foul" "fouler" "foulest" "foully" ;
-lin goddam_A = mkA "goddam" "more goddam" "most goddam" "goddamly" ;
-lin agleam_A = mkA "agleam" "more agleam" "most agleam" "agleamly" ;
-lin downstream_A = mkA "downstream" "more downstream" "most downstream" "downstreamly" ;
-lin upstream_A = mkA "upstream" "more upstream" "most upstream" "upstreamly" ;
-lin sham_A = mkA "sham" "more sham" "most sham" "shamly" ;
-lin bantam_A = mkA "bantam" "more bantam" "most bantam" "bantamly" ;
-lin moslem_A = mkA "moslem" "more moslem" "most moslem" "moslemly" ;
-lin 'post-mortem_A' = mkA "post-mortem" "more post-mortem" "most post-mortem" "post-mortemly" ;
-lin antemortem_A = mkA "antemortem" "more antemortem" "most antemortem" "antemortemly" ;
-lin postmortem_A = mkA "postmortem" "more postmortem" "most postmortem" "postmortemly" ;
-lin interim_A = mkA "interim" "more interim" "most interim" "interimly" ;
-lin verbatim_A = mkA "verbatim" "more verbatim" "most verbatim" "verbatimly" ;
-lin random_A = mkA "random" "more random" "most random" "randomly" ;
-lin nonrandom_A = mkA "nonrandom" "more nonrandom" "most nonrandom" "nonrandomly" ;
-lin abloom_A = mkA "abloom" "more abloom" "most abloom" "abloomly" ;
-lin broadloom_A = mkA "broadloom" "more broadloom" "most broadloom" "broadloomly" ;
-lin lissom_A = mkA "lissom" "more lissom" "most lissom" "lissomly" ;
-lin phantom_A = mkA "phantom" "more phantom" "most phantom" "phantomly" ;
-lin bottom_A = mkA "bottom" "more bottom" "most bottom" "bottomly" ;
-lin flatbottom_A = mkA "flatbottom" "more flatbottom" "most flatbottom" "flatbottomly" ;
-lin buxom_A = mkA "buxom" "more buxom" "most buxom" "buxomly" ;
-lin 'round-arm_A' = mkA "round-arm" "more round-arm" "most round-arm" "round-armly" ;
-lin 'strong-arm_A' = mkA "strong-arm" "more strong-arm" "most strong-arm" "strong-armly" ;
-lin sidearm_A = mkA "sidearm" "more sidearm" "most sidearm" "sidearmly" ;
-lin underarm_A = mkA "underarm" "more underarm" "most underarm" "underarmly" ;
-lin overarm_A = mkA "overarm" "more overarm" "most overarm" "overarmly" ;
-lin lukewarm_A = mkA "lukewarm" "more lukewarm" "most lukewarm" "lukewarmly" ;
-lin 'long-term_A' = mkA "long-term" "more long-term" "most long-term" "long-termly" ;
-lin 'short-term_A' = mkA "short-term" "more short-term" "most short-term" "short-termly" ;
-lin infirm_A = mkA "infirm" "more infirm" "most infirm" "infirmly" ;
-lin unfirm_A = mkA "unfirm" "more unfirm" "most unfirm" "unfirmly" ;
-lin biform_A = mkA "biform" "more biform" "most biform" "biformly" ;
-lin disciform_A = mkA "disciform" "more disciform" "most disciform" "disciformly" ;
-lin cruciform_A = mkA "cruciform" "more cruciform" "most cruciform" "cruciformly" ;
-lin acneiform_A = mkA "acneiform" "more acneiform" "most acneiform" "acneiformly" ;
-lin cuneiform_A = mkA "cuneiform" "more cuneiform" "most cuneiform" "cuneiformly" ;
-lin umbelliform_A = mkA "umbelliform" "more umbelliform" "most umbelliform" "umbelliformly" ;
-lin varicelliform_A = mkA "varicelliform" "more varicelliform" "most varicelliform" "varicelliformly" ;
-lin morbilliform_A = mkA "morbilliform" "more morbilliform" "most morbilliform" "morbilliformly" ;
-lin papilliform_A = mkA "papilliform" "more papilliform" "most papilliform" "papilliformly" ;
-lin phylliform_A = mkA "phylliform" "more phylliform" "most phylliform" "phylliformly" ;
-lin cumuliform_A = mkA "cumuliform" "more cumuliform" "most cumuliform" "cumuliformly" ;
-lin botuliform_A = mkA "botuliform" "more botuliform" "most botuliform" "botuliformly" ;
-lin vermiform_A = mkA "vermiform" "more vermiform" "most vermiform" "vermiformly" ;
-lin reniform_A = mkA "reniform" "more reniform" "most reniform" "reniformly" ;
-lin columniform_A = mkA "columniform" "more columniform" "most columniform" "columniformly" ;
-lin uniform_A = mkA "uniform" "more uniform" "most uniform" "uniformly" ;
-lin variform_A = mkA "variform" "more variform" "most variform" "variformly" ;
-lin dolabriform_A = mkA "dolabriform" "more dolabriform" "most dolabriform" "dolabriformly" ;
-lin salamandriform_A = mkA "salamandriform" "more salamandriform" "most salamandriform" "salamandriformly" ;
-lin aeriform_A = mkA "aeriform" "more aeriform" "most aeriform" "aeriformly" ;
-lin auriform_A = mkA "auriform" "more auriform" "most auriform" "auriformly" ;
-lin ensiform_A = mkA "ensiform" "more ensiform" "most ensiform" "ensiformly" ;
-lin bursiform_A = mkA "bursiform" "more bursiform" "most bursiform" "bursiformly" ;
-lin fusiform_A = mkA "fusiform" "more fusiform" "most fusiform" "fusiformly" ;
-lin apoplectiform_A = mkA "apoplectiform" "more apoplectiform" "most apoplectiform" "apoplectiformly" ;
-lin multiform_A = mkA "multiform" "more multiform" "most multiform" "multiformly" ;
-lin salverform_A = mkA "salverform" "more salverform" "most salverform" "salverformly" ;
-lin capitalism_A = mkA "capitalism" "more capitalism" "most capitalism" "capitalismly" ;
-lin bum_A = mkA "bum" "more bum" "most bum" "bumly" ;
-lin medium_A = mkA "medium" "more medium" "most medium" "mediumly" ;
-lin premium_A = mkA "premium" "more premium" "most premium" "premiumly" ;
-lin antebellum_A = mkA "antebellum" "more antebellum" "most antebellum" "antebellumly" ;
-lin mum_A = mkA "mum" "more mum" "most mum" "mumly" ;
-lin minimum_A = mkA "minimum" "more minimum" "most minimum" "minimumly" ;
-lin optimum_A = mkA "optimum" "more optimum" "most optimum" "optimumly" ;
-lin maximum_A = mkA "maximum" "more maximum" "most maximum" "maximumly" ;
-lin 'harum-scarum_A' = mkA "harum-scarum" "more harum-scarum" "most harum-scarum" "harum-scarumly" ;
-lin humdrum_A = mkA "humdrum" "more humdrum" "most humdrum" "humdrumly" ;
-lin variorum_A = mkA "variorum" "more variorum" "most variorum" "variorumly" ;
-lin dim_A = mkA "dim" "dimmer" "dimmest" "dimly" ;
-lin skim_A = mkA "skim" "skimmer" "skimmest" "skimly" ;
-lin slim_A = mkA "slim" "slimmer" "slimmest" "slimly" ;
-lin grim_A = mkA "grim" "grimmer" "grimmest" "grimly" ;
-lin prim_A = mkA "prim" "primmer" "primmest" "primly" ;
-lin trim_A = mkA "trim" "trimmer" "trimmest" "trimly" ;
-lin calm_A = mkA "calm" "calmer" "calmest" "calmly" ;
-lin warm_A = mkA "warm" "warmer" "warmest" "warmly" ;
-lin firm_A = mkA "firm" "firmer" "firmest" "firmly" ;
-lin glum_A = mkA "glum" "glummer" "glummest" "glumly" ;
-lin damn_A = mkA "damn" "more damn" "most damn" "damn" ;
-lin urban_A = mkA "urban" "more urban" "most urban" "urbanly" ;
-lin suburban_A = mkA "suburban" "more suburban" "most suburban" "suburbanly" ;
-lin cuban_A = mkA "cuban" "more cuban" "most cuban" "cubanly" ;
-lin moroccan_A = mkA "moroccan" "more moroccan" "most moroccan" "moroccanly" ;
-lin jamaican_A = mkA "jamaican" "more jamaican" "most jamaican" "jamaicanly" ;
-lin mozambican_A = mkA "mozambican" "more mozambican" "most mozambican" "mozambicanly" ;
-lin republican_A = mkA "republican" "more republican" "most republican" "republicanly" ;
-lin anglican_A = mkA "anglican" "more anglican" "most anglican" "anglicanly" ;
-lin basilican_A = mkA "basilican" "more basilican" "most basilican" "basilicanly" ;
-lin dominican_A = mkA "dominican" "more dominican" "most dominican" "dominicanly" ;
-lin copernican_A = mkA "copernican" "more copernican" "most copernican" "copernicanly" ;
-lin 'costa rican_A' = mkA "costa rican" "more costa rican" "most costa rican" "costa ricanly" ;
-lin American_A = mkA "American" "more American" "most American" "Americanly" ;
-lin African_A = mkA "African" "more African" "most African" "Africanly" ;
-lin mexican_A = mkA "mexican" "more mexican" "most mexican" "mexicanly" ;
-lin madagascan_A = mkA "madagascan" "more madagascan" "most madagascan" "madagascanly" ;
-lin franciscan_A = mkA "franciscan" "more franciscan" "most franciscan" "franciscanly" ;
-lin muhammadan_A = mkA "muhammadan" "more muhammadan" "most muhammadan" "muhammadanly" ;
-lin ugandan_A = mkA "ugandan" "more ugandan" "most ugandan" "ugandanly" ;
-lin rwandan_A = mkA "rwandan" "more rwandan" "most rwandan" "rwandanly" ;
-lin bermudan_A = mkA "bermudan" "more bermudan" "most bermudan" "bermudanly" ;
-lin jacobean_A = mkA "jacobean" "more jacobean" "most jacobean" "jacobeanly" ;
-lin cetacean_A = mkA "cetacean" "more cetacean" "most cetacean" "cetaceanly" ;
-lin caducean_A = mkA "caducean" "more caducean" "most caducean" "caduceanly" ;
-lin euclidean_A = mkA "euclidean" "more euclidean" "most euclidean" "euclideanly" ;
-lin apogean_A = mkA "apogean" "more apogean" "most apogean" "apogeanly" ;
-lin archean_A = mkA "archean" "more archean" "most archean" "archeanly" ;
-lin kampuchean_A = mkA "kampuchean" "more kampuchean" "most kampuchean" "kampucheanly" ;
-lin unclean_A = mkA "unclean" "more unclean" "most unclean" "uncleanly" ;
-lin chilean_A = mkA "chilean" "more chilean" "most chilean" "chileanly" ;
-lin herculean_A = mkA "herculean" "more herculean" "most herculean" "herculeanly" ;
-lin cerulean_A = mkA "cerulean" "more cerulean" "most cerulean" "ceruleanly" ;
-lin subterranean_A = mkA "subterranean" "more subterranean" "most subterranean" "subterraneanly" ;
-lin mediterranean_A = mkA "mediterranean" "more mediterranean" "most mediterranean" "mediterraneanly" ;
-lin guinean_A = mkA "guinean" "more guinean" "most guinean" "guineanly" ;
-lin cyclopean_A = mkA "cyclopean" "more cyclopean" "most cyclopean" "cyclopeanly" ;
-lin European_A = mkA "European" "more European" "most European" "Europeanly" ;
-lin 'indo-european_A' = mkA "indo-european" "more indo-european" "most indo-european" "indo-europeanly" ;
-lin cesarean_A = mkA "cesarean" "more cesarean" "most cesarean" "cesareanly" ;
-lin zairean_A = mkA "zairean" "more zairean" "most zairean" "zaireanly" ;
-lin salvadorean_A = mkA "salvadorean" "more salvadorean" "most salvadorean" "salvadoreanly" ;
-lin terpsichorean_A = mkA "terpsichorean" "more terpsichorean" "most terpsichorean" "terpsichoreanly" ;
-lin korean_A = mkA "korean" "more korean" "most korean" "koreanly" ;
-lin marmorean_A = mkA "marmorean" "more marmorean" "most marmorean" "marmoreanly" ;
-lin Singaporean_A = mkA "Singaporean" "more Singaporean" "most Singaporean" "Singaporeanly" ;
-lin eritrean_A = mkA "eritrean" "more eritrean" "most eritrean" "eritreanly" ;
-lin epicurean_A = mkA "epicurean" "more epicurean" "most epicurean" "epicureanly" ;
-lin empyrean_A = mkA "empyrean" "more empyrean" "most empyrean" "empyreanly" ;
-lin protean_A = mkA "protean" "more protean" "most protean" "proteanly" ;
-lin Zimbabwean_A = mkA "Zimbabwean" "more Zimbabwean" "most Zimbabwean" "Zimbabweanly" ;
-lin pagan_A = mkA "pagan" "more pagan" "most pagan" "paganly" ;
-lin tongan_A = mkA "tongan" "more tongan" "most tongan" "tonganly" ;
-lin sabahan_A = mkA "sabahan" "more sabahan" "most sabahan" "sabahanly" ;
-lin Afghan_A = mkA "Afghan" "more Afghan" "most Afghan" "Afghanly" ;
-lin chaetognathan_A = mkA "chaetognathan" "more chaetognathan" "most chaetognathan" "chaetognathanly" ;
-lin elizabethan_A = mkA "elizabethan" "more elizabethan" "most elizabethan" "elizabethanly" ;
-lin ghanaian_A = mkA "ghanaian" "more ghanaian" "most ghanaian" "ghanaianly" ;
-lin fabian_A = mkA "fabian" "more fabian" "most fabian" "fabianly" ;
-lin Arabian_A = mkA "Arabian" "more Arabian" "most Arabian" "Arabianly" ;
-lin 'saudi arabian_A' = mkA "saudi arabian" "more saudi arabian" "most saudi arabian" "saudi arabianly" ;
-lin Namibian_A = mkA "Namibian" "more Namibian" "most Namibian" "Namibianly" ;
-lin gambian_A = mkA "gambian" "more gambian" "most gambian" "gambianly" ;
-lin zambian_A = mkA "zambian" "more zambian" "most zambian" "zambianly" ;
-lin colombian_A = mkA "colombian" "more colombian" "most colombian" "colombianly" ;
-lin lesbian_A = mkA "lesbian" "more lesbian" "most lesbian" "lesbianly" ;
-lin grecian_A = mkA "grecian" "more grecian" "most grecian" "grecianly" ;
-lin patrician_A = mkA "patrician" "more patrician" "most patrician" "patricianly" ;
-lin confucian_A = mkA "confucian" "more confucian" "most confucian" "confucianly" ;
-lin barbadian_A = mkA "barbadian" "more barbadian" "most barbadian" "barbadianly" ;
-lin arcadian_A = mkA "arcadian" "more arcadian" "most arcadian" "arcadianly" ;
-lin circadian_A = mkA "circadian" "more circadian" "most circadian" "circadianly" ;
-lin trinidadian_A = mkA "trinidadian" "more trinidadian" "most trinidadian" "trinidadianly" ;
-lin chadian_A = mkA "chadian" "more chadian" "most chadian" "chadianly" ;
-lin Canadian_A = mkA "Canadian" "more Canadian" "most Canadian" "Canadianly" ;
-lin grenadian_A = mkA "grenadian" "more grenadian" "most grenadian" "grenadianly" ;
-lin median_A = mkA "median" "more median" "most median" "medianly" ;
-lin euclidian_A = mkA "euclidian" "more euclidian" "most euclidian" "euclidianly" ;
-lin meridian_A = mkA "meridian" "more meridian" "most meridian" "meridianly" ;
-lin antemeridian_A = mkA "antemeridian" "more antemeridian" "most antemeridian" "antemeridianly" ;
-lin postmeridian_A = mkA "postmeridian" "more postmeridian" "most postmeridian" "postmeridianly" ;
-lin quotidian_A = mkA "quotidian" "more quotidian" "most quotidian" "quotidianly" ;
-lin Indian_A = mkA "Indian" "more Indian" "most Indian" "Indianly" ;
-lin 'anglo-indian_A' = mkA "anglo-indian" "more anglo-indian" "most anglo-indian" "anglo-indianly" ;
-lin burundian_A = mkA "burundian" "more burundian" "most burundian" "burundianly" ;
-lin cambodian_A = mkA "cambodian" "more cambodian" "most cambodian" "cambodianly" ;
-lin edwardian_A = mkA "edwardian" "more edwardian" "most edwardian" "edwardianly" ;
-lin gordian_A = mkA "gordian" "more gordian" "most gordian" "gordianly" ;
-lin freudian_A = mkA "freudian" "more freudian" "most freudian" "freudianly" ;
-lin plebeian_A = mkA "plebeian" "more plebeian" "most plebeian" "plebeianly" ;
-lin bruneian_A = mkA "bruneian" "more bruneian" "most bruneian" "bruneianly" ;
-lin norwegian_A = mkA "norwegian" "more norwegian" "most norwegian" "norwegianly" ;
-lin glaswegian_A = mkA "glaswegian" "more glaswegian" "most glaswegian" "glaswegianly" ;
-lin belgian_A = mkA "belgian" "more belgian" "most belgian" "belgianly" ;
-lin georgian_A = mkA "georgian" "more georgian" "most georgian" "georgianly" ;
-lin callipygian_A = mkA "callipygian" "more callipygian" "most callipygian" "callipygianly" ;
-lin stygian_A = mkA "stygian" "more stygian" "most stygian" "stygianly" ;
-lin eustachian_A = mkA "eustachian" "more eustachian" "most eustachian" "eustachianly" ;
-lin corinthian_A = mkA "corinthian" "more corinthian" "most corinthian" "corinthianly" ;
-lin parthian_A = mkA "parthian" "more parthian" "most parthian" "parthianly" ;
-lin fijian_A = mkA "fijian" "more fijian" "most fijian" "fijianly" ;
-lin Czechoslovakian_A = mkA "Czechoslovakian" "more Czechoslovakian" "most Czechoslovakian" "Czechoslovakianly" ;
-lin sarawakian_A = mkA "sarawakian" "more sarawakian" "most sarawakian" "sarawakianly" ;
-lin sesquipedalian_A = mkA "sesquipedalian" "more sesquipedalian" "most sesquipedalian" "sesquipedalianly" ;
-lin malian_A = mkA "malian" "more malian" "most malian" "malianly" ;
-lin mammalian_A = mkA "mammalian" "more mammalian" "most mammalian" "mammalianly" ;
-lin Somalian_A = mkA "Somalian" "more Somalian" "most Somalian" "Somalianly" ;
-lin bacchanalian_A = mkA "bacchanalian" "more bacchanalian" "most bacchanalian" "bacchanalianly" ;
-lin episcopalian_A = mkA "episcopalian" "more episcopalian" "most episcopalian" "episcopalianly" ;
-lin australian_A = mkA "australian" "more australian" "most australian" "australianly" ;
-lin Italian_A = mkA "Italian" "more Italian" "most Italian" "Italianly" ;
-lin liverpudlian_A = mkA "liverpudlian" "more liverpudlian" "most liverpudlian" "liverpudlianly" ;
-lin mendelian_A = mkA "mendelian" "more mendelian" "most mendelian" "mendelianly" ;
-lin mephistophelian_A = mkA "mephistophelian" "more mephistophelian" "most mephistophelian" "mephistophelianly" ;
-lin caecilian_A = mkA "caecilian" "more caecilian" "most caecilian" "caecilianly" ;
-lin sicilian_A = mkA "sicilian" "more sicilian" "most sicilian" "sicilianly" ;
-lin reptilian_A = mkA "reptilian" "more reptilian" "most reptilian" "reptilianly" ;
-lin civilian_A = mkA "civilian" "more civilian" "most civilian" "civilianly" ;
-lin Brazilian_A = mkA "Brazilian" "more Brazilian" "most Brazilian" "Brazilianly" ;
-lin machiavellian_A = mkA "machiavellian" "more machiavellian" "most machiavellian" "machiavellianly" ;
-lin mongolian_A = mkA "mongolian" "more mongolian" "most mongolian" "mongolianly" ;
-lin julian_A = mkA "julian" "more julian" "most julian" "julianly" ;
-lin bahamian_A = mkA "bahamian" "more bahamian" "most bahamian" "bahamianly" ;
-lin bohemian_A = mkA "bohemian" "more bohemian" "most bohemian" "bohemianly" ;
-lin isthmian_A = mkA "isthmian" "more isthmian" "most isthmian" "isthmianly" ;
-lin simian_A = mkA "simian" "more simian" "most simian" "simianly" ;
-lin antinomian_A = mkA "antinomian" "more antinomian" "most antinomian" "antinomianly" ;
-lin Albanian_A = mkA "Albanian" "more Albanian" "most Albanian" "Albanianly" ;
-lin Jordanian_A = mkA "Jordanian" "more Jordanian" "most Jordanian" "Jordanianly" ;
-lin panamanian_A = mkA "panamanian" "more panamanian" "most panamanian" "panamanianly" ;
-lin Romanian_A = mkA "Romanian" "more Romanian" "most Romanian" "Romanianly" ;
-lin Iranian_A = mkA "Iranian" "more Iranian" "most Iranian" "Iranianly" ;
-lin mauritanian_A = mkA "mauritanian" "more mauritanian" "most mauritanian" "mauritanianly" ;
-lin ruritanian_A = mkA "ruritanian" "more ruritanian" "most ruritanian" "ruritanianly" ;
-lin tanzanian_A = mkA "tanzanian" "more tanzanian" "most tanzanian" "tanzanianly" ;
-lin athenian_A = mkA "athenian" "more athenian" "most athenian" "athenianly" ;
-lin slovenian_A = mkA "slovenian" "more slovenian" "most slovenian" "slovenianly" ;
-lin hominian_A = mkA "hominian" "more hominian" "most hominian" "hominianly" ;
-lin argentinian_A = mkA "argentinian" "more argentinian" "most argentinian" "argentinianly" ;
-lin palestinian_A = mkA "palestinian" "more palestinian" "most palestinian" "palestinianly" ;
-lin draconian_A = mkA "draconian" "more draconian" "most draconian" "draconianly" ;
-lin Macedonian_A = mkA "Macedonian" "more Macedonian" "most Macedonian" "Macedonianly" ;
-lin eonian_A = mkA "eonian" "more eonian" "most eonian" "eonianly" ;
-lin 'sierra leonian_A' = mkA "sierra leonian" "more sierra leonian" "most sierra leonian" "sierra leonianly" ;
-lin tobagonian_A = mkA "tobagonian" "more tobagonian" "most tobagonian" "tobagonianly" ;
-lin chthonian_A = mkA "chthonian" "more chthonian" "most chthonian" "chthonianly" ;
-lin chelonian_A = mkA "chelonian" "more chelonian" "most chelonian" "chelonianly" ;
-lin cameroonian_A = mkA "cameroonian" "more cameroonian" "most cameroonian" "cameroonianly" ;
-lin newtonian_A = mkA "newtonian" "more newtonian" "most newtonian" "newtonianly" ;
-lin oxonian_A = mkA "oxonian" "more oxonian" "most oxonian" "oxonianly" ;
-lin californian_A = mkA "californian" "more californian" "most californian" "californianly" ;
-lin mancunian_A = mkA "mancunian" "more mancunian" "most mancunian" "mancunianly" ;
-lin apian_A = mkA "apian" "more apian" "most apian" "apianly" ;
-lin aesculapian_A = mkA "aesculapian" "more aesculapian" "most aesculapian" "aesculapianly" ;
-lin callithumpian_A = mkA "callithumpian" "more callithumpian" "most callithumpian" "callithumpianly" ;
-lin olympian_A = mkA "olympian" "more olympian" "most olympian" "olympianly" ;
-lin ethiopian_A = mkA "ethiopian" "more ethiopian" "most ethiopian" "ethiopianly" ;
-lin fallopian_A = mkA "fallopian" "more fallopian" "most fallopian" "fallopianly" ;
-lin dystopian_A = mkA "dystopian" "more dystopian" "most dystopian" "dystopianly" ;
-lin utopian_A = mkA "utopian" "more utopian" "most utopian" "utopianly" ;
-lin thespian_A = mkA "thespian" "more thespian" "most thespian" "thespianly" ;
-lin barbarian_A = mkA "barbarian" "more barbarian" "most barbarian" "barbarianly" ;
-lin abecedarian_A = mkA "abecedarian" "more abecedarian" "most abecedarian" "abecedarianly" ;
-lin lapidarian_A = mkA "lapidarian" "more lapidarian" "most lapidarian" "lapidarianly" ;
-lin shakespearian_A = mkA "shakespearian" "more shakespearian" "most shakespearian" "shakespearianly" ;
-lin Bulgarian_A = mkA "Bulgarian" "more Bulgarian" "most Bulgarian" "Bulgarianly" ;
-lin Hungarian_A = mkA "Hungarian" "more Hungarian" "most Hungarian" "Hungarianly" ;
-lin apiarian_A = mkA "apiarian" "more apiarian" "most apiarian" "apiarianly" ;
-lin nonagenarian_A = mkA "nonagenarian" "more nonagenarian" "most nonagenarian" "nonagenarianly" ;
-lin sexagenarian_A = mkA "sexagenarian" "more sexagenarian" "most sexagenarian" "sexagenarianly" ;
-lin octogenarian_A = mkA "octogenarian" "more octogenarian" "most octogenarian" "octogenarianly" ;
-lin millenarian_A = mkA "millenarian" "more millenarian" "most millenarian" "millenarianly" ;
-lin centenarian_A = mkA "centenarian" "more centenarian" "most centenarian" "centenarianly" ;
-lin valetudinarian_A = mkA "valetudinarian" "more valetudinarian" "most valetudinarian" "valetudinarianly" ;
-lin latitudinarian_A = mkA "latitudinarian" "more latitudinarian" "most latitudinarian" "latitudinarianly" ;
-lin predestinarian_A = mkA "predestinarian" "more predestinarian" "most predestinarian" "predestinarianly" ;
-lin riparian_A = mkA "riparian" "more riparian" "most riparian" "riparianly" ;
-lin agrarian_A = mkA "agrarian" "more agrarian" "most agrarian" "agrarianly" ;
-lin caesarian_A = mkA "caesarian" "more caesarian" "most caesarian" "caesarianly" ;
-lin prelapsarian_A = mkA "prelapsarian" "more prelapsarian" "most prelapsarian" "prelapsarianly" ;
-lin sabbatarian_A = mkA "sabbatarian" "more sabbatarian" "most sabbatarian" "sabbatarianly" ;
-lin sectarian_A = mkA "sectarian" "more sectarian" "most sectarian" "sectarianly" ;
-lin nonsectarian_A = mkA "nonsectarian" "more nonsectarian" "most nonsectarian" "nonsectarianly" ;
-lin proletarian_A = mkA "proletarian" "more proletarian" "most proletarian" "proletarianly" ;
-lin egalitarian_A = mkA "egalitarian" "more egalitarian" "most egalitarian" "egalitarianly" ;
-lin totalitarian_A = mkA "totalitarian" "more totalitarian" "most totalitarian" "totalitarianly" ;
-lin utilitarian_A = mkA "utilitarian" "more utilitarian" "most utilitarian" "utilitarianly" ;
-lin humanitarian_A = mkA "humanitarian" "more humanitarian" "most humanitarian" "humanitarianly" ;
-lin unitarian_A = mkA "unitarian" "more unitarian" "most unitarian" "unitarianly" ;
-lin authoritarian_A = mkA "authoritarian" "more authoritarian" "most authoritarian" "authoritarianly" ;
-lin antiauthoritarian_A = mkA "antiauthoritarian" "more antiauthoritarian" "most antiauthoritarian" "antiauthoritarianly" ;
-lin gibraltarian_A = mkA "gibraltarian" "more gibraltarian" "most gibraltarian" "gibraltarianly" ;
-lin antiquarian_A = mkA "antiquarian" "more antiquarian" "most antiquarian" "antiquarianly" ;
-lin ovarian_A = mkA "ovarian" "more ovarian" "most ovarian" "ovarianly" ;
-lin liberian_A = mkA "liberian" "more liberian" "most liberian" "liberianly" ;
-lin siberian_A = mkA "siberian" "more siberian" "most siberian" "siberianly" ;
-lin nigerian_A = mkA "nigerian" "more nigerian" "most nigerian" "nigerianly" ;
-lin algerian_A = mkA "algerian" "more algerian" "most algerian" "algerianly" ;
-lin eutherian_A = mkA "eutherian" "more eutherian" "most eutherian" "eutherianly" ;
-lin presbyterian_A = mkA "presbyterian" "more presbyterian" "most presbyterian" "presbyterianly" ;
-lin ecuadorian_A = mkA "ecuadorian" "more ecuadorian" "most ecuadorian" "ecuadorianly" ;
-lin gregorian_A = mkA "gregorian" "more gregorian" "most gregorian" "gregorianly" ;
-lin victorian_A = mkA "victorian" "more victorian" "most victorian" "victorianly" ;
-lin praetorian_A = mkA "praetorian" "more praetorian" "most praetorian" "praetorianly" ;
-lin stentorian_A = mkA "stentorian" "more stentorian" "most stentorian" "stentorianly" ;
-lin cyprian_A = mkA "cyprian" "more cyprian" "most cyprian" "cyprianly" ;
-lin lancastrian_A = mkA "lancastrian" "more lancastrian" "most lancastrian" "lancastrianly" ;
-lin pedestrian_A = mkA "pedestrian" "more pedestrian" "most pedestrian" "pedestrianly" ;
-lin equestrian_A = mkA "equestrian" "more equestrian" "most equestrian" "equestrianly" ;
-lin austrian_A = mkA "austrian" "more austrian" "most austrian" "austrianly" ;
-lin saurian_A = mkA "saurian" "more saurian" "most saurian" "saurianly" ;
-lin archosaurian_A = mkA "archosaurian" "more archosaurian" "most archosaurian" "archosaurianly" ;
-lin tellurian_A = mkA "tellurian" "more tellurian" "most tellurian" "tellurianly" ;
-lin Syrian_A = mkA "Syrian" "more Syrian" "most Syrian" "Syrianly" ;
-lin Asian_A = mkA "Asian" "more Asian" "most Asian" "Asianly" ;
-lin 'Afro-Asian_A' = mkA "Afro-Asian" "more Afro-Asian" "most Afro-Asian" "Afro-Asianly" ;
-lin caucasian_A = mkA "caucasian" "more caucasian" "most caucasian" "caucasianly" ;
-lin eurasian_A = mkA "eurasian" "more eurasian" "most eurasian" "eurasianly" ;
-lin indonesian_A = mkA "indonesian" "more indonesian" "most indonesian" "indonesianly" ;
-lin artesian_A = mkA "artesian" "more artesian" "most artesian" "artesianly" ;
-lin subartesian_A = mkA "subartesian" "more subartesian" "most subartesian" "subartesianly" ;
-lin rabelaisian_A = mkA "rabelaisian" "more rabelaisian" "most rabelaisian" "rabelaisianly" ;
-lin tunisian_A = mkA "tunisian" "more tunisian" "most tunisian" "tunisianly" ;
-lin parisian_A = mkA "parisian" "more parisian" "most parisian" "parisianly" ;
-lin Persian_A = mkA "Persian" "more Persian" "most Persian" "Persianly" ;
-lin Russian_A = mkA "Russian" "more Russian" "most Russian" "Russianly" ;
-lin Prussian_A = mkA "Prussian" "more Prussian" "most Prussian" "Prussianly" ;
-lin malthusian_A = mkA "malthusian" "more malthusian" "most malthusian" "malthusianly" ;
-lin malaysian_A = mkA "malaysian" "more malaysian" "most malaysian" "malaysianly" ;
-lin elysian_A = mkA "elysian" "more elysian" "most elysian" "elysianly" ;
-lin montserratian_A = mkA "montserratian" "more montserratian" "most montserratian" "montserratianly" ;
-lin venetian_A = mkA "venetian" "more venetian" "most venetian" "venetianly" ;
-lin haitian_A = mkA "haitian" "more haitian" "most haitian" "haitianly" ;
-lin tahitian_A = mkA "tahitian" "more tahitian" "most tahitian" "tahitianly" ;
-lin mauritian_A = mkA "mauritian" "more mauritian" "most mauritian" "mauritianly" ;
-lin laotian_A = mkA "laotian" "more laotian" "most laotian" "laotianly" ;
-lin egyptian_A = mkA "egyptian" "more egyptian" "most egyptian" "egyptianly" ;
-lin martian_A = mkA "martian" "more martian" "most martian" "martianly" ;
-lin gilbertian_A = mkA "gilbertian" "more gilbertian" "most gilbertian" "gilbertianly" ;
-lin tertian_A = mkA "tertian" "more tertian" "most tertian" "tertianly" ;
-lin christian_A = mkA "christian" "more christian" "most christian" "christianly" ;
-lin unchristian_A = mkA "unchristian" "more unchristian" "most unchristian" "unchristianly" ;
-lin djiboutian_A = mkA "djiboutian" "more djiboutian" "most djiboutian" "djiboutianly" ;
-lin lilliputian_A = mkA "lilliputian" "more lilliputian" "most lilliputian" "lilliputianly" ;
-lin avian_A = mkA "avian" "more avian" "most avian" "avianly" ;
-lin shavian_A = mkA "shavian" "more shavian" "most shavian" "shavianly" ;
-lin subclavian_A = mkA "subclavian" "more subclavian" "most subclavian" "subclavianly" ;
-lin yugoslavian_A = mkA "yugoslavian" "more yugoslavian" "most yugoslavian" "yugoslavianly" ;
-lin Scandinavian_A = mkA "Scandinavian" "more Scandinavian" "most Scandinavian" "Scandinavianly" ;
-lin bolivian_A = mkA "bolivian" "more bolivian" "most bolivian" "bolivianly" ;
-lin diluvian_A = mkA "diluvian" "more diluvian" "most diluvian" "diluvianly" ;
-lin antediluvian_A = mkA "antediluvian" "more antediluvian" "most antediluvian" "antediluvianly" ;
-lin postdiluvian_A = mkA "postdiluvian" "more postdiluvian" "most postdiluvian" "postdiluvianly" ;
-lin peruvian_A = mkA "peruvian" "more peruvian" "most peruvian" "peruvianly" ;
-lin malawian_A = mkA "malawian" "more malawian" "most malawian" "malawianly" ;
-lin hertzian_A = mkA "hertzian" "more hertzian" "most hertzian" "hertzianly" ;
-lin trojan_A = mkA "trojan" "more trojan" "most trojan" "trojanly" ;
-lin 'sri lankan_A' = mkA "sri lankan" "more sri lankan" "most sri lankan" "sri lankanly" ;
-lin guatemalan_A = mkA "guatemalan" "more guatemalan" "most guatemalan" "guatemalanly" ;
-lin catalan_A = mkA "catalan" "more catalan" "most catalan" "catalanly" ;
-lin venezuelan_A = mkA "venezuelan" "more venezuelan" "most venezuelan" "venezuelanly" ;
-lin avellan_A = mkA "avellan" "more avellan" "most avellan" "avellanly" ;
-lin anguillan_A = mkA "anguillan" "more anguillan" "most anguillan" "anguillanly" ;
-lin angolan_A = mkA "angolan" "more angolan" "most angolan" "angolanly" ;
-lin freshman_A = mkA "freshman" "more freshman" "most freshman" "freshmanly" ;
-lin roman_A = mkA "roman" "more roman" "most roman" "romanly" ;
-lin German_A = mkA "German" "more German" "most German" "Germanly" ;
-lin norman_A = mkA "norman" "more norman" "most norman" "normanly" ;
-lin human_A = mkA "human" "more human" "most human" "humanly" ;
-lin infrahuman_A = mkA "infrahuman" "more infrahuman" "most infrahuman" "infrahumanly" ;
-lin subhuman_A = mkA "subhuman" "more subhuman" "most subhuman" "subhumanly" ;
-lin inhuman_A = mkA "inhuman" "more inhuman" "most inhuman" "inhumanly" ;
-lin nonhuman_A = mkA "nonhuman" "more nonhuman" "most nonhuman" "nonhumanly" ;
-lin superhuman_A = mkA "superhuman" "more superhuman" "most superhuman" "superhumanly" ;
-lin samoan_A = mkA "samoan" "more samoan" "most samoan" "samoanly" ;
-lin roan_A = mkA "roan" "more roan" "most roan" "roanly" ;
-lin epizoan_A = mkA "epizoan" "more epizoan" "most epizoan" "epizoanly" ;
-lin entozoan_A = mkA "entozoan" "more entozoan" "most entozoan" "entozoanly" ;
-lin deadpan_A = mkA "deadpan" "more deadpan" "most deadpan" "deadpanly" ;
-lin lutheran_A = mkA "lutheran" "more lutheran" "most lutheran" "lutheranly" ;
-lin moneran_A = mkA "moneran" "more moneran" "most moneran" "moneranly" ;
-lin isopteran_A = mkA "isopteran" "more isopteran" "most isopteran" "isopteranly" ;
-lin dictyopteran_A = mkA "dictyopteran" "more dictyopteran" "most dictyopteran" "dictyopteranly" ;
-lin andorran_A = mkA "andorran" "more andorran" "most andorran" "andorranly" ;
-lin sumatran_A = mkA "sumatran" "more sumatran" "most sumatran" "sumatranly" ;
-lin honduran_A = mkA "honduran" "more honduran" "most honduran" "honduranly" ;
-lin anuran_A = mkA "anuran" "more anuran" "most anuran" "anuranly" ;
-lin diocesan_A = mkA "diocesan" "more diocesan" "most diocesan" "diocesanly" ;
-lin archdiocesan_A = mkA "archdiocesan" "more archdiocesan" "most archdiocesan" "archdiocesanly" ;
-lin partisan_A = mkA "partisan" "more partisan" "most partisan" "partisanly" ;
-lin bipartisan_A = mkA "bipartisan" "more bipartisan" "most bipartisan" "bipartisanly" ;
-lin nonpartisan_A = mkA "nonpartisan" "more nonpartisan" "most nonpartisan" "nonpartisanly" ;
-lin tan_A = mkA "tan" "more tan" "most tan" "tanly" ;
-lin insectan_A = mkA "insectan" "more insectan" "most insectan" "insectanly" ;
-lin Tibetan_A = mkA "Tibetan" "more Tibetan" "most Tibetan" "Tibetanly" ;
-lin neapolitan_A = mkA "neapolitan" "more neapolitan" "most neapolitan" "neapolitanly" ;
-lin cosmopolitan_A = mkA "cosmopolitan" "more cosmopolitan" "most cosmopolitan" "cosmopolitanly" ;
-lin metropolitan_A = mkA "metropolitan" "more metropolitan" "most metropolitan" "metropolitanly" ;
-lin puritan_A = mkA "puritan" "more puritan" "most puritan" "puritanly" ;
-lin spartan_A = mkA "spartan" "more spartan" "most spartan" "spartanly" ;
-lin quartan_A = mkA "quartan" "more quartan" "most quartan" "quartanly" ;
-lin augustan_A = mkA "augustan" "more augustan" "most augustan" "augustanly" ;
-lin nicaraguan_A = mkA "nicaraguan" "more nicaraguan" "most nicaraguan" "nicaraguanly" ;
-lin antiguan_A = mkA "antiguan" "more antiguan" "most antiguan" "antiguanly" ;
-lin papuan_A = mkA "papuan" "more papuan" "most papuan" "papuanly" ;
-lin nauruan_A = mkA "nauruan" "more nauruan" "most nauruan" "nauruanly" ;
-lin gargantuan_A = mkA "gargantuan" "more gargantuan" "most gargantuan" "gargantuanly" ;
-lin silvan_A = mkA "silvan" "more silvan" "most silvan" "silvanly" ;
-lin sylvan_A = mkA "sylvan" "more sylvan" "most sylvan" "sylvanly" ;
-lin texan_A = mkA "texan" "more texan" "most texan" "texanly" ;
-lin malayan_A = mkA "malayan" "more malayan" "most malayan" "malayanly" ;
-lin paraguayan_A = mkA "paraguayan" "more paraguayan" "most paraguayan" "paraguayanly" ;
-lin uruguayan_A = mkA "uruguayan" "more uruguayan" "most uruguayan" "uruguayanly" ;
-lin libyan_A = mkA "libyan" "more libyan" "most libyan" "libyanly" ;
-lin wesleyan_A = mkA "wesleyan" "more wesleyan" "most wesleyan" "wesleyanly" ;
-lin kenyan_A = mkA "kenyan" "more kenyan" "most kenyan" "kenyanly" ;
-lin aryan_A = mkA "aryan" "more aryan" "most aryan" "aryanly" ;
-lin leaden_A = mkA "leaden" "more leaden" "most leaden" "leadenly" ;
-lin laden_A = mkA "laden" "more laden" "most laden" "ladenly" ;
-lin 'heavy-laden_A' = mkA "heavy-laden" "more heavy-laden" "most heavy-laden" "heavy-ladenly" ;
-lin careladen_A = mkA "careladen" "more careladen" "most careladen" "careladenly" ;
-lin overladen_A = mkA "overladen" "more overladen" "most overladen" "overladenly" ;
-lin unbidden_A = mkA "unbidden" "more unbidden" "most unbidden" "unbiddenly" ;
-lin 'hag-ridden_A' = mkA "hag-ridden" "more hag-ridden" "most hag-ridden" "hag-riddenly" ;
-lin 'priest-ridden_A' = mkA "priest-ridden" "more priest-ridden" "most priest-ridden" "priest-riddenly" ;
-lin bedridden_A = mkA "bedridden" "more bedridden" "most bedridden" "bedriddenly" ;
-lin downtrodden_A = mkA "downtrodden" "more downtrodden" "most downtrodden" "downtroddenly" ;
-lin sodden_A = mkA "sodden" "more sodden" "most sodden" "soddenly" ;
-lin sudden_A = mkA "sudden" "more sudden" "most sudden" "suddenly" ;
-lin maiden_A = mkA "maiden" "more maiden" "most maiden" "maidenly" ;
-lin olden_A = mkA "olden" "more olden" "most olden" "oldenly" ;
-lin golden_A = mkA "golden" "more golden" "most golden" "goldenly" ;
-lin beholden_A = mkA "beholden" "more beholden" "most beholden" "beholdenly" ;
-lin bounden_A = mkA "bounden" "more bounden" "most bounden" "boundenly" ;
-lin wooden_A = mkA "wooden" "more wooden" "most wooden" "woodenly" ;
-lin 'pea-green_A' = mkA "pea-green" "more pea-green" "most pea-green" "pea-greenly" ;
-lin 'sea-green_A' = mkA "sea-green" "more sea-green" "most sea-green" "sea-greenly" ;
-lin 'sage-green_A' = mkA "sage-green" "more sage-green" "most sage-green" "sage-greenly" ;
-lin 'bottle-green_A' = mkA "bottle-green" "more bottle-green" "most bottle-green" "bottle-greenly" ;
-lin evergreen_A = mkA "evergreen" "more evergreen" "most evergreen" "evergreenly" ;
-lin unforeseen_A = mkA "unforeseen" "more unforeseen" "most unforeseen" "unforeseenly" ;
-lin unseen_A = mkA "unseen" "more unseen" "most unseen" "unseenly" ;
-lin lateen_A = mkA "lateen" "more lateen" "most lateen" "lateenly" ;
-lin preteen_A = mkA "preteen" "more preteen" "most preteen" "preteenly" ;
-lin umpteen_A = mkA "umpteen" "more umpteen" "most umpteen" "umpteenly" ;
-lin beechen_A = mkA "beechen" "more beechen" "most beechen" "beechenly" ;
-lin ashen_A = mkA "ashen" "more ashen" "most ashen" "ashenly" ;
-lin heathen_A = mkA "heathen" "more heathen" "most heathen" "heathenly" ;
-lin earthen_A = mkA "earthen" "more earthen" "most earthen" "earthenly" ;
-lin alien_A = mkA "alien" "more alien" "most alien" "alienly" ;
-lin nigerien_A = mkA "nigerien" "more nigerien" "most nigerien" "nigerienly" ;
-lin oaken_A = mkA "oaken" "more oaken" "most oaken" "oakenly" ;
-lin godforsaken_A = mkA "godforsaken" "more godforsaken" "most godforsaken" "godforsakenly" ;
-lin mistaken_A = mkA "mistaken" "more mistaken" "most mistaken" "mistakenly" ;
-lin chicken_A = mkA "chicken" "more chicken" "most chicken" "chickenly" ;
-lin stricken_A = mkA "stricken" "more stricken" "most stricken" "strickenly" ;
-lin 'panic-stricken_A' = mkA "panic-stricken" "more panic-stricken" "most panic-stricken" "panic-strickenly" ;
-lin 'awe-stricken_A' = mkA "awe-stricken" "more awe-stricken" "most awe-stricken" "awe-strickenly" ;
-lin 'terror-stricken_A' = mkA "terror-stricken" "more terror-stricken" "most terror-stricken" "terror-strickenly" ;
-lin 'horror-stricken_A' = mkA "horror-stricken" "more horror-stricken" "most horror-stricken" "horror-strickenly" ;
-lin 'poverty-stricken_A' = mkA "poverty-stricken" "more poverty-stricken" "most poverty-stricken" "poverty-strickenly" ;
-lin silken_A = mkA "silken" "more silken" "most silken" "silkenly" ;
-lin drunken_A = mkA "drunken" "more drunken" "most drunken" "drunkenly" ;
-lin 'free-spoken_A' = mkA "free-spoken" "more free-spoken" "most free-spoken" "free-spokenly" ;
-lin 'rough-spoken_A' = mkA "rough-spoken" "more rough-spoken" "most rough-spoken" "rough-spokenly" ;
-lin 'smooth-spoken_A' = mkA "smooth-spoken" "more smooth-spoken" "most smooth-spoken" "smooth-spokenly" ;
-lin 'well-spoken_A' = mkA "well-spoken" "more well-spoken" "most well-spoken" "well-spokenly" ;
-lin 'foul-spoken_A' = mkA "foul-spoken" "more foul-spoken" "most foul-spoken" "foul-spokenly" ;
-lin 'plain-spoken_A' = mkA "plain-spoken" "more plain-spoken" "most plain-spoken" "plain-spokenly" ;
-lin 'soft-spoken_A' = mkA "soft-spoken" "more soft-spoken" "most soft-spoken" "soft-spokenly" ;
-lin plainspoken_A = mkA "plainspoken" "more plainspoken" "most plainspoken" "plainspokenly" ;
-lin unspoken_A = mkA "unspoken" "more unspoken" "most unspoken" "unspokenly" ;
-lin outspoken_A = mkA "outspoken" "more outspoken" "most outspoken" "outspokenly" ;
-lin housebroken_A = mkA "housebroken" "more housebroken" "most housebroken" "housebrokenly" ;
-lin unbroken_A = mkA "unbroken" "more unbroken" "most unbroken" "unbrokenly" ;
-lin heartbroken_A = mkA "heartbroken" "more heartbroken" "most heartbroken" "heartbrokenly" ;
-lin chapfallen_A = mkA "chapfallen" "more chapfallen" "most chapfallen" "chapfallenly" ;
-lin crestfallen_A = mkA "crestfallen" "more crestfallen" "most crestfallen" "crestfallenly" ;
-lin woollen_A = mkA "woollen" "more woollen" "most woollen" "woollenly" ;
-lin sullen_A = mkA "sullen" "more sullen" "most sullen" "sullenly" ;
-lin woolen_A = mkA "woolen" "more woolen" "most woolen" "woolenly" ;
-lin misshapen_A = mkA "misshapen" "more misshapen" "most misshapen" "misshapenly" ;
-lin hempen_A = mkA "hempen" "more hempen" "most hempen" "hempenly" ;
-lin open_A = mkA "open" "more open" "most open" "openly" ;
-lin unopen_A = mkA "unopen" "more unopen" "most unopen" "unopenly" ;
-lin barren_A = mkA "barren" "more barren" "most barren" "barrenly" ;
-lin 'moth-eaten_A' = mkA "moth-eaten" "more moth-eaten" "most moth-eaten" "moth-eatenly" ;
-lin 'worm-eaten_A' = mkA "worm-eaten" "more worm-eaten" "most worm-eaten" "worm-eatenly" ;
-lin beaten_A = mkA "beaten" "more beaten" "most beaten" "beatenly" ;
-lin 'storm-beaten_A' = mkA "storm-beaten" "more storm-beaten" "most storm-beaten" "storm-beatenly" ;
-lin 'weather-beaten_A' = mkA "weather-beaten" "more weather-beaten" "most weather-beaten" "weather-beatenly" ;
-lin unbeaten_A = mkA "unbeaten" "more unbeaten" "most unbeaten" "unbeatenly" ;
-lin wheaten_A = mkA "wheaten" "more wheaten" "most wheaten" "wheatenly" ;
-lin uneaten_A = mkA "uneaten" "more uneaten" "most uneaten" "uneatenly" ;
-lin oaten_A = mkA "oaten" "more oaten" "most oaten" "oatenly" ;
-lin boughten_A = mkA "boughten" "more boughten" "most boughten" "boughtenly" ;
-lin molten_A = mkA "molten" "more molten" "most molten" "moltenly" ;
-lin lenten_A = mkA "lenten" "more lenten" "most lenten" "lentenly" ;
-lin 'flea-bitten_A' = mkA "flea-bitten" "more flea-bitten" "most flea-bitten" "flea-bittenly" ;
-lin 'hard-bitten_A' = mkA "hard-bitten" "more hard-bitten" "most hard-bitten" "hard-bittenly" ;
-lin frostbitten_A = mkA "frostbitten" "more frostbitten" "most frostbitten" "frostbittenly" ;
-lin 'conscience-smitten_A' = mkA "conscience-smitten" "more conscience-smitten" "most conscience-smitten" "conscience-smittenly" ;
-lin handwritten_A = mkA "handwritten" "more handwritten" "most handwritten" "handwrittenly" ;
-lin typewritten_A = mkA "typewritten" "more typewritten" "most typewritten" "typewrittenly" ;
-lin unwritten_A = mkA "unwritten" "more unwritten" "most unwritten" "unwrittenly" ;
-lin 'ill-gotten_A' = mkA "ill-gotten" "more ill-gotten" "most ill-gotten" "ill-gottenly" ;
-lin misbegotten_A = mkA "misbegotten" "more misbegotten" "most misbegotten" "misbegottenly" ;
-lin rotten_A = mkA "rotten" "more rotten" "most rotten" "rottenly" ;
-lin shaven_A = mkA "shaven" "more shaven" "most shaven" "shavenly" ;
-lin 'well-shaven_A' = mkA "well-shaven" "more well-shaven" "most well-shaven" "well-shavenly" ;
-lin 'clean-shaven_A' = mkA "clean-shaven" "more clean-shaven" "most clean-shaven" "clean-shavenly" ;
-lin unshaven_A = mkA "unshaven" "more unshaven" "most unshaven" "unshavenly" ;
-lin craven_A = mkA "craven" "more craven" "most craven" "cravenly" ;
-lin graven_A = mkA "graven" "more graven" "most graven" "gravenly" ;
-lin even_A = mkA "even" "more even" "most even" "evenly" ;
-lin uneven_A = mkA "uneven" "more uneven" "most uneven" "unevenly" ;
-lin 'owner-driven_A' = mkA "owner-driven" "more owner-driven" "most owner-driven" "owner-drivenly" ;
-lin cloven_A = mkA "cloven" "more cloven" "most cloven" "clovenly" ;
-lin unproven_A = mkA "unproven" "more unproven" "most unproven" "unprovenly" ;
-lin woven_A = mkA "woven" "more woven" "most woven" "wovenly" ;
-lin unwoven_A = mkA "unwoven" "more unwoven" "most unwoven" "unwovenly" ;
-lin flaxen_A = mkA "flaxen" "more flaxen" "most flaxen" "flaxenly" ;
-lin waxen_A = mkA "waxen" "more waxen" "most waxen" "waxenly" ;
-lin brazen_A = mkA "brazen" "more brazen" "most brazen" "brazenly" ;
-lin unfrozen_A = mkA "unfrozen" "more unfrozen" "most unfrozen" "unfrozenly" ;
-lin condign_A = mkA "condign" "more condign" "most condign" "condignly" ;
-lin sovereign_A = mkA "sovereign" "more sovereign" "most sovereign" "sovereignly" ;
-lin foreign_A = mkA "foreign" "more foreign" "most foreign" "foreignly" ;
-lin malign_A = mkA "malign" "more malign" "most malign" "malignly" ;
-lin benign_A = mkA "benign" "more benign" "most benign" "benignly" ;
-lin 'lying-in_A' = mkA "lying-in" "more lying-in" "most lying-in" "lying-inly" ;
-lin 'built-in_A' = mkA "built-in" "more built-in" "most built-in" "built-inly" ;
-lin main_A = mkA "main" "more main" "most main" "mainly" ;
-lin certain_A = mkA "certain" "more certain" "most certain" "certainly" ;
-lin uncertain_A = mkA "uncertain" "more uncertain" "most uncertain" "uncertainly" ;
-lin jacobin_A = mkA "jacobin" "more jacobin" "most jacobin" "jacobinly" ;
-lin elfin_A = mkA "elfin" "more elfin" "most elfin" "elfinly" ;
-lin virgin_A = mkA "virgin" "more virgin" "most virgin" "virginly" ;
-lin akin_A = mkA "akin" "more akin" "most akin" "akinly" ;
-lin maudlin_A = mkA "maudlin" "more maudlin" "most maudlin" "maudlinly" ;
-lin latin_A = mkA "latin" "more latin" "most latin" "latinly" ;
-lin satin_A = mkA "satin" "more satin" "most satin" "satinly" ;
-lin 'high-falutin_A' = mkA "high-falutin" "more high-falutin" "most high-falutin" "high-falutinly" ;
-lin 'god-damn_A' = mkA "god-damn" "more god-damn" "most god-damn" "god-damnly" ;
-lin solemn_A = mkA "solemn" "more solemn" "most solemn" "solemnly" ;
-lin 'head-on_A' = mkA "head-on" "more head-on" "most head-on" "head-only" ;
-lin 'tie-on_A' = mkA "tie-on" "more tie-on" "most tie-on" "tie-only" ;
-lin 'stick-on_A' = mkA "stick-on" "more stick-on" "most stick-on" "stick-only" ;
-lin 'clip-on_A' = mkA "clip-on" "more clip-on" "most clip-on" "clip-only" ;
-lin 'odds-on_A' = mkA "odds-on" "more odds-on" "most odds-on" "odds-only" ;
-lin ebon_A = mkA "ebon" "more ebon" "most ebon" "ebonly" ;
-lin vermilion_A = mkA "vermilion" "more vermilion" "most vermilion" "vermilionly" ;
-lin billion_A = mkA "billion" "more billion" "most billion" "billionly" ;
-lin million_A = mkA "million" "more million" "most million" "millionly" ;
-lin trillion_A = mkA "trillion" "more trillion" "most trillion" "trillionly" ;
-lin zillion_A = mkA "zillion" "more zillion" "most zillion" "zillionly" ;
-lin union_A = mkA "union" "more union" "most union" "unionly" ;
-lin nonunion_A = mkA "nonunion" "more nonunion" "most nonunion" "nonunionly" ;
-lin champion_A = mkA "champion" "more champion" "most champion" "championly" ;
-lin clarion_A = mkA "clarion" "more clarion" "most clarion" "clarionly" ;
-lin 'high-tension_A' = mkA "high-tension" "more high-tension" "most high-tension" "high-tensionly" ;
-lin regulation_A = mkA "regulation" "more regulation" "most regulation" "regulationly" ;
-lin carnation_A = mkA "carnation" "more carnation" "most carnation" "carnationly" ;
-lin 'delayed-action_A' = mkA "delayed-action" "more delayed-action" "most delayed-action" "delayed-actionly" ;
-lin antipollution_A = mkA "antipollution" "more antipollution" "most antipollution" "antipollutionly" ;
-lin common_2_A = mkA "common" "more common" "most common" "commonly" ;
-lin uncommon_A = mkA "uncommon" "more uncommon" "most uncommon" "uncommonly" ;
-lin Mormon_A = mkA "Mormon" "more Mormon" "most Mormon" "Mormonly" ;
-lin boon_A = mkA "boon" "more boon" "most boon" "boonly" ;
-lin maroon_A = mkA "maroon" "more maroon" "most maroon" "maroonly" ;
-lin poltroon_A = mkA "poltroon" "more poltroon" "most poltroon" "poltroonly" ;
-lin 'cast-iron_A' = mkA "cast-iron" "more cast-iron" "most cast-iron" "cast-ironly" ;
-lin crimson_A = mkA "crimson" "more crimson" "most crimson" "crimsonly" ;
-lin briton_A = mkA "briton" "more briton" "most briton" "britonly" ;
-lin wanton_A = mkA "wanton" "more wanton" "most wanton" "wantonly" ;
-lin saxon_A = mkA "saxon" "more saxon" "most saxon" "saxonly" ;
-lin 'anglo-saxon_A' = mkA "anglo-saxon" "more anglo-saxon" "most anglo-saxon" "anglo-saxonly" ;
-lin yon_A = mkA "yon" "more yon" "most yon" "yonly" ;
-lin halcyon_A = mkA "halcyon" "more halcyon" "most halcyon" "halcyonly" ;
-lin cedarn_A = mkA "cedarn" "more cedarn" "most cedarn" "cedarnly" ;
-lin modern_A = mkA "modern" "more modern" "most modern" "modernly" ;
-lin ultramodern_A = mkA "ultramodern" "more ultramodern" "most ultramodern" "ultramodernly" ;
-lin nonmodern_A = mkA "nonmodern" "more nonmodern" "most nonmodern" "nonmodernly" ;
-lin Northern_A = mkA "Northern" "more Northern" "most Northern" "Northernly" ;
-lin Southern_A = mkA "Southern" "more Southern" "most Southern" "Southernly" ;
-lin Eastern_A = mkA "Eastern" "more Eastern" "most Eastern" "Easternly" ;
-lin northeastern_A = mkA "northeastern" "more northeastern" "most northeastern" "northeasternly" ;
-lin southeastern_A = mkA "southeastern" "more southeastern" "most southeastern" "southeasternly" ;
-lin Western_A = mkA "Western" "more Western" "most Western" "Westernly" ;
-lin midwestern_A = mkA "midwestern" "more midwestern" "most midwestern" "midwesternly" ;
-lin northwestern_A = mkA "northwestern" "more northwestern" "most northwestern" "northwesternly" ;
-lin southwestern_A = mkA "southwestern" "more southwestern" "most southwestern" "southwesternly" ;
-lin silvern_A = mkA "silvern" "more silvern" "most silvern" "silvernly" ;
-lin 'well-born_A' = mkA "well-born" "more well-born" "most well-born" "well-bornly" ;
-lin stubborn_A = mkA "stubborn" "more stubborn" "most stubborn" "stubbornly" ;
-lin freeborn_A = mkA "freeborn" "more freeborn" "most freeborn" "freebornly" ;
-lin reborn_A = mkA "reborn" "more reborn" "most reborn" "rebornly" ;
-lin liveborn_A = mkA "liveborn" "more liveborn" "most liveborn" "livebornly" ;
-lin highborn_A = mkA "highborn" "more highborn" "most highborn" "highbornly" ;
-lin earthborn_A = mkA "earthborn" "more earthborn" "most earthborn" "earthbornly" ;
-lin wellborn_A = mkA "wellborn" "more wellborn" "most wellborn" "wellbornly" ;
-lin stillborn_A = mkA "stillborn" "more stillborn" "most stillborn" "stillbornly" ;
-lin inborn_A = mkA "inborn" "more inborn" "most inborn" "inbornly" ;
-lin unborn_A = mkA "unborn" "more unborn" "most unborn" "unbornly" ;
-lin firstborn_A = mkA "firstborn" "more firstborn" "most firstborn" "firstbornly" ;
-lin newborn_A = mkA "newborn" "more newborn" "most newborn" "newbornly" ;
-lin lowborn_A = mkA "lowborn" "more lowborn" "most lowborn" "lowbornly" ;
-lin bicorn_A = mkA "bicorn" "more bicorn" "most bicorn" "bicornly" ;
-lin lorn_A = mkA "lorn" "more lorn" "most lorn" "lornly" ;
-lin lovelorn_A = mkA "lovelorn" "more lovelorn" "most lovelorn" "lovelornly" ;
-lin forlorn_A = mkA "forlorn" "more forlorn" "most forlorn" "forlornly" ;
-lin 'war-torn_A' = mkA "war-torn" "more war-torn" "most war-torn" "war-tornly" ;
-lin 'travel-worn_A' = mkA "travel-worn" "more travel-worn" "most travel-worn" "travel-wornly" ;
-lin 'well-worn_A' = mkA "well-worn" "more well-worn" "most well-worn" "well-wornly" ;
-lin 'water-worn_A' = mkA "water-worn" "more water-worn" "most water-worn" "water-wornly" ;
-lin careworn_A = mkA "careworn" "more careworn" "most careworn" "carewornly" ;
-lin unworn_A = mkA "unworn" "more unworn" "most unworn" "unwornly" ;
-lin shopworn_A = mkA "shopworn" "more shopworn" "most shopworn" "shopwornly" ;
-lin waterworn_A = mkA "waterworn" "more waterworn" "most waterworn" "waterwornly" ;
-lin unsworn_A = mkA "unsworn" "more unsworn" "most unsworn" "unswornly" ;
-lin auburn_A = mkA "auburn" "more auburn" "most auburn" "auburnly" ;
-lin taciturn_A = mkA "taciturn" "more taciturn" "most taciturn" "taciturnly" ;
-lin dun_A = mkA "dun" "more dun" "most dun" "dunly" ;
-lin homespun_A = mkA "homespun" "more homespun" "most homespun" "homespunly" ;
-lin finespun_A = mkA "finespun" "more finespun" "most finespun" "finespunly" ;
-lin 'tip-and-run_A' = mkA "tip-and-run" "more tip-and-run" "most tip-and-run" "tip-and-runly" ;
-lin 'hit-and-run_A' = mkA "hit-and-run" "more hit-and-run" "most hit-and-run" "hit-and-runly" ;
-lin indrawn_A = mkA "indrawn" "more indrawn" "most indrawn" "indrawnly" ;
-lin undrawn_A = mkA "undrawn" "more undrawn" "most undrawn" "undrawnly" ;
-lin 'rough-hewn_A' = mkA "rough-hewn" "more rough-hewn" "most rough-hewn" "rough-hewnly" ;
-lin roughhewn_A = mkA "roughhewn" "more roughhewn" "most roughhewn" "roughhewnly" ;
-lin unhewn_A = mkA "unhewn" "more unhewn" "most unhewn" "unhewnly" ;
-lin handsewn_A = mkA "handsewn" "more handsewn" "most handsewn" "handsewnly" ;
-lin oversewn_A = mkA "oversewn" "more oversewn" "most oversewn" "oversewnly" ;
-lin own_A = mkA "own" "more own" "most own" "ownly" ;
-lin 'tumble-down_A' = mkA "tumble-down" "more tumble-down" "most tumble-down" "tumble-downly" ;
-lin 'right-down_A' = mkA "right-down" "more right-down" "most right-down" "right-downly" ;
-lin 'low-down_A' = mkA "low-down" "more low-down" "most low-down" "low-downly" ;
-lin shakedown_A = mkA "shakedown" "more shakedown" "most shakedown" "shakedownly" ;
-lin knockdown_A = mkA "knockdown" "more knockdown" "most knockdown" "knockdownly" ;
-lin rundown_A = mkA "rundown" "more rundown" "most rundown" "rundownly" ;
-lin 'full-blown_A' = mkA "full-blown" "more full-blown" "most full-blown" "full-blownly" ;
-lin windblown_A = mkA "windblown" "more windblown" "most windblown" "windblownly" ;
-lin overblown_A = mkA "overblown" "more overblown" "most overblown" "overblownly" ;
-lin flyblown_A = mkA "flyblown" "more flyblown" "most flyblown" "flyblownly" ;
-lin highflown_A = mkA "highflown" "more highflown" "most highflown" "highflownly" ;
-lin unmown_A = mkA "unmown" "more unmown" "most unmown" "unmownly" ;
-lin 'well-known_A' = mkA "well-known" "more well-known" "most well-known" "well-knownly" ;
-lin unbeknown_A = mkA "unbeknown" "more unbeknown" "most unbeknown" "unbeknownly" ;
-lin unknown_A = mkA "unknown" "more unknown" "most unknown" "unknownly" ;
-lin 'nut-brown_A' = mkA "nut-brown" "more nut-brown" "most nut-brown" "nut-brownly" ;
-lin nutbrown_A = mkA "nutbrown" "more nutbrown" "most nutbrown" "nutbrownly" ;
-lin 'home-grown_A' = mkA "home-grown" "more home-grown" "most home-grown" "home-grownly" ;
-lin 'full-grown_A' = mkA "full-grown" "more full-grown" "most full-grown" "full-grownly" ;
-lin 'moss-grown_A' = mkA "moss-grown" "more moss-grown" "most moss-grown" "moss-grownly" ;
-lin 'fully-grown_A' = mkA "fully-grown" "more fully-grown" "most fully-grown" "fully-grownly" ;
-lin homegrown_A = mkA "homegrown" "more homegrown" "most homegrown" "homegrownly" ;
-lin overgrown_A = mkA "overgrown" "more overgrown" "most overgrown" "overgrownly" ;
-lin 'self-sown_A' = mkA "self-sown" "more self-sown" "most self-sown" "self-sownly" ;
-lin downtown_A = mkA "downtown" "more downtown" "most downtown" "downtownly" ;
-lin uptown_A = mkA "uptown" "more uptown" "most uptown" "uptownly" ;
-lin crosstown_A = mkA "crosstown" "more crosstown" "most crosstown" "crosstownly" ;
-lin unseeyn_A = mkA "unseeyn" "more unseeyn" "most unseeyn" "unseeynly" ;
-lin lean_A = mkA "lean" "leaner" "leanest" "leanly" ;
-lin clean_A = mkA "clean" "cleaner" "cleanest" "cleanly" ; -- notcompound lean_A ;
-lin mean_A = mkA "mean" "meaner" "meanest" "meanly" ;
-lin wan_A = mkA "wan" "wanner" "wannest" "wanly" ;
-lin keen_A = mkA "keen" "keener" "keenest" "keenly" ;
-lin green_A = mkA "green" "greener" "greenest" "greenly" ;
-lin in_A = mkA "in" "inner" "innest" "inly" ;
-lin plain_A = mkA "plain" "plainer" "plainest" "plainly" ;
-lin vain_A = mkA "vain" "vainer" "vainest" "vainly" ;
-lin thin_A = mkA "thin" "thinner" "thinnest" "thinly" ;
-lin common_1_A = mkA "common" "commoner" "commonest" "commonly" ;
-lin stern_A = mkA "stern" "sterner" "sternest" "sternly" ;
-lin hewn_A = mkA "hewn" "hewner" "hewnest" "hewnly" ;
-lin down_A = mkA "down" "downer" "downest" "downly" ;
-lin mown_A = mkA "mown" "mowner" "mownest" "mownly" ;
-lin brown_A = mkA "brown" "browner" "brownest" "brownly" ;
-lin jumbo_A = mkA "jumbo" "more jumbo" "most jumbo" "jumboly" ;
-lin calico_A = mkA "calico" "more calico" "most calico" "calicoly" ;
-lin unco_A = mkA "unco" "more unco" "most unco" "uncoly" ;
-lin rococo_A = mkA "rococo" "more rococo" "most rococo" "rococoly" ;
-lin loco_A = mkA "loco" "more loco" "most loco" "locoly" ;
-lin alfresco_A = mkA "alfresco" "more alfresco" "most alfresco" "alfrescoly" ;
-lin 'well-to-do_A' = mkA "well-to-do" "more well-to-do" "most well-to-do" "well-to-doly" ;
-lin incommunicado_A = mkA "incommunicado" "more incommunicado" "most incommunicado" "incommunicadoly" ;
-lin avocado_A = mkA "avocado" "more avocado" "most avocado" "avocadoly" ;
-lin azido_A = mkA "azido" "more azido" "most azido" "azidoly" ;
-lin allargando_A = mkA "allargando" "more allargando" "most allargando" "allargandoly" ;
-lin calando_A = mkA "calando" "more calando" "most calando" "calandoly" ;
-lin accelerando_A = mkA "accelerando" "more accelerando" "most accelerando" "accelerandoly" ;
-lin glissando_A = mkA "glissando" "more glissando" "most glissando" "glissandoly" ;
-lin rallentando_A = mkA "rallentando" "more rallentando" "most rallentando" "rallentandoly" ;
-lin crescendo_A = mkA "crescendo" "more crescendo" "most crescendo" "crescendoly" ;
-lin decrescendo_A = mkA "decrescendo" "more decrescendo" "most decrescendo" "decrescendoly" ;
-lin pseudo_A = mkA "pseudo" "more pseudo" "most pseudo" "pseudoly" ;
-lin 'touch-and-go_A' = mkA "touch-and-go" "more touch-and-go" "most touch-and-go" "touch-and-goly" ;
-lin 'no-go_A' = mkA "no-go" "more no-go" "most no-go" "no-goly" ;
-lin indigo_A = mkA "indigo" "more indigo" "most indigo" "indigoly" ;
-lin sotho_A = mkA "sotho" "more sotho" "most sotho" "sotholy" ;
-lin 'ex officio_A' = mkA "ex officio" "more ex officio" "most ex officio" "ex officioly" ;
-lin radio_A = mkA "radio" "more radio" "most radio" "radioly" ;
-lin adagio_A = mkA "adagio" "more adagio" "most adagio" "adagioly" ;
-lin solo_A = mkA "solo" "more solo" "most solo" "sololy" ;
-lin larghissimo_A = mkA "larghissimo" "more larghissimo" "most larghissimo" "larghissimoly" ;
-lin pianissimo_A = mkA "pianissimo" "more pianissimo" "most pianissimo" "pianissimoly" ;
-lin altissimo_A = mkA "altissimo" "more altissimo" "most altissimo" "altissimoly" ;
-lin lentissimo_A = mkA "lentissimo" "more lentissimo" "most lentissimo" "lentissimoly" ;
-lin fortissimo_A = mkA "fortissimo" "more fortissimo" "most fortissimo" "fortissimoly" ;
-lin prestissimo_A = mkA "prestissimo" "more prestissimo" "most prestissimo" "prestissimoly" ;
-lin ultimo_A = mkA "ultimo" "more ultimo" "most ultimo" "ultimoly" ;
-lin proximo_A = mkA "proximo" "more proximo" "most proximo" "proximoly" ;
-lin piano_A = mkA "piano" "more piano" "most piano" "pianoly" ;
-lin soprano_A = mkA "soprano" "more soprano" "most soprano" "sopranoly" ;
-lin amino_A = mkA "amino" "more amino" "most amino" "aminoly" ;
-lin ammino_A = mkA "ammino" "more ammino" "most ammino" "amminoly" ;
-lin sopranino_A = mkA "sopranino" "more sopranino" "most sopranino" "sopraninoly" ;
-lin filipino_A = mkA "filipino" "more filipino" "most filipino" "filipinoly" ;
-lin andantino_A = mkA "andantino" "more andantino" "most andantino" "andantinoly" ;
-lin mono_A = mkA "mono" "more mono" "most mono" "monoly" ;
-lin taboo_A = mkA "taboo" "more taboo" "most taboo" "tabooly" ;
-lin allegro_A = mkA "allegro" "more allegro" "most allegro" "allegroly" ;
-lin 'so-so_A' = mkA "so-so" "more so-so" "most so-so" "so-soly" ;
-lin staccato_A = mkA "staccato" "more staccato" "most staccato" "staccatoly" ;
-lin pizzicato_A = mkA "pizzicato" "more pizzicato" "most pizzicato" "pizzicatoly" ;
-lin legato_A = mkA "legato" "more legato" "most legato" "legatoly" ;
-lin moderato_A = mkA "moderato" "more moderato" "most moderato" "moderatoly" ;
-lin 'de facto_A' = mkA "de facto" "more de facto" "most de facto" "de factoly" ;
-lin incognito_A = mkA "incognito" "more incognito" "most incognito" "incognitoly" ;
-lin lento_A = mkA "lento" "more lento" "most lento" "lentoly" ;
-lin presto_A = mkA "presto" "more presto" "most presto" "prestoly" ;
-lin larghetto_A = mkA "larghetto" "more larghetto" "most larghetto" "larghettoly" ;
-lin allegretto_A = mkA "allegretto" "more allegretto" "most allegretto" "allegrettoly" ;
-lin falsetto_A = mkA "falsetto" "more falsetto" "most falsetto" "falsettoly" ;
-lin blotto_A = mkA "blotto" "more blotto" "most blotto" "blottoly" ;
-lin arco_A = mkA "arco" "arcoer" "arcoest" "arcoly" ;
-lin neo_A = mkA "neo" "neoer" "neoest" "neoly" ;
-lin boffo_A = mkA "boffo" "boffoer" "boffoest" "boffoly" ;
-lin go_A = mkA "go" "goer" "goest" "goly" ;
-lin largo_A = mkA "largo" "largoer" "largoest" "largoly" ; -- compound go_A ;
-lin primo_A = mkA "primo" "primoer" "primoest" "primoly" ;
-lin macro_A = mkA "macro" "macroer" "macroest" "macroly" ;
-lin micro_A = mkA "micro" "microer" "microest" "microly" ;
-lin zero_A = mkA "zero" "zeroer" "zeroest" "zeroly" ;
-lin negro_A = mkA "negro" "negroer" "negroest" "negroly" ;
-lin pro_A = mkA "pro" "proer" "proest" "proly" ;
-lin alto_A = mkA "alto" "altoer" "altoest" "altoly" ;
-lin azo_A = mkA "azo" "azoer" "azoest" "azoly" ;
-lin diazo_A = mkA "diazo" "diazoer" "diazoest" "diazoly" ; -- compound azo_A ;
-lin 'dirt-cheap_A' = mkA "dirt-cheap" "more dirt-cheap" "most dirt-cheap" "dirt-cheaply" ;
-lin 'knee-deep_A' = mkA "knee-deep" "more knee-deep" "most knee-deep" "knee-deeply" ;
-lin 'skin-deep_A' = mkA "skin-deep" "more skin-deep" "most skin-deep" "skin-deeply" ;
-lin 'waist-deep_A' = mkA "waist-deep" "more waist-deep" "most waist-deep" "waist-deeply" ;
-lin asleep_A = mkA "asleep" "more asleep" "most asleep" "asleeply" ;
-lin hep_A = mkA "hep" "more hep" "most hep" "heply" ;
-lin hip_A = mkA "hip" "more hip" "most hip" "hiply" ;
-lin amidship_A = mkA "amidship" "more amidship" "most amidship" "amidshiply" ;
-lin flip_A = mkA "flip" "more flip" "most flip" "fliply" ;
-lin nonslip_A = mkA "nonslip" "more nonslip" "most nonslip" "nonsliply" ;
-lin camp_A = mkA "camp" "more camp" "most camp" "camply" ;
-lin limp_A = mkA "limp" "more limp" "most limp" "limply" ;
-lin 'cock-a-hoop_A' = mkA "cock-a-hoop" "more cock-a-hoop" "most cock-a-hoop" "cock-a-hooply" ;
-lin pop_A = mkA "pop" "more pop" "most pop" "poply" ;
-lin 'de trop_A' = mkA "de trop" "more de trop" "most de trop" "de troply" ;
-lin 'tip-top_A' = mkA "tip-top" "more tip-top" "most tip-top" "tip-toply" ;
-lin nonstop_A = mkA "nonstop" "more nonstop" "most nonstop" "nonstoply" ;
-lin 'buttoned-up_A' = mkA "buttoned-up" "more buttoned-up" "most buttoned-up" "buttoned-uply" ;
-lin 'jumped-up_A' = mkA "jumped-up" "more jumped-up" "most jumped-up" "jumped-uply" ;
-lin 'hopped-up_A' = mkA "hopped-up" "more hopped-up" "most hopped-up" "hopped-uply" ;
-lin 'mixed-up_A' = mkA "mixed-up" "more mixed-up" "most mixed-up" "mixed-uply" ;
-lin 'stand-up_A' = mkA "stand-up" "more stand-up" "most stand-up" "stand-uply" ;
-lin 'lighting-up_A' = mkA "lighting-up" "more lighting-up" "most lighting-up" "lighting-uply" ;
-lin 'stuck-up_A' = mkA "stuck-up" "more stuck-up" "most stuck-up" "stuck-uply" ;
-lin 'grown-up_A' = mkA "grown-up" "more grown-up" "most grown-up" "grown-uply" ;
-lin 'slap-up_A' = mkA "slap-up" "more slap-up" "most slap-up" "slap-uply" ;
-lin 'tip-up_A' = mkA "tip-up" "more tip-up" "most tip-up" "tip-uply" ;
-lin 'het-up_A' = mkA "het-up" "more het-up" "most het-up" "het-uply" ;
-lin 'built-up_A' = mkA "built-up" "more built-up" "most built-up" "built-uply" ;
-lin 'pent-up_A' = mkA "pent-up" "more pent-up" "most pent-up" "pent-uply" ;
-lin lockup_A = mkA "lockup" "more lockup" "most lockup" "lockuply" ;
-lin cheap_A = mkA "cheap" "cheaper" "cheapest" "cheaply" ;
-lin deep_A = mkA "deep" "deeper" "deepest" "deeply" ;
-lin steep_A = mkA "steep" "steeper" "steepest" "steeply" ;
-lin damp_A = mkA "damp" "damper" "dampest" "damply" ;
-lin plump_A = mkA "plump" "plumper" "plumpest" "plumply" ;
-lin sharp_A = mkA "sharp" "sharper" "sharpest" "sharply" ;
-lin crisp_A = mkA "crisp" "crisper" "crispest" "crisply" ;
-lin up_A = mkA "up" "upper" "uppest" "uply" ;
-lin far_A = mkA "far" "more far" "most far" "far" ;
-lin bulbar_A = mkA "bulbar" "more bulbar" "most bulbar" "bulbarly" ;
-lin lumbar_A = mkA "lumbar" "more lumbar" "most lumbar" "lumbarly" ;
-lin lobar_A = mkA "lobar" "more lobar" "most lobar" "lobarly" ;
-lin unclear_A = mkA "unclear" "more unclear" "most unclear" "unclearly" ;
-lin nuclear_A = mkA "nuclear" "more nuclear" "most nuclear" "nuclearly" ;
-lin thermonuclear_A = mkA "thermonuclear" "more thermonuclear" "most thermonuclear" "thermonuclearly" ;
-lin mononuclear_A = mkA "mononuclear" "more mononuclear" "most mononuclear" "mononuclearly" ;
-lin cochlear_A = mkA "cochlear" "more cochlear" "most cochlear" "cochlearly" ;
-lin linear_A = mkA "linear" "more linear" "most linear" "linearly" ;
-lin bilinear_A = mkA "bilinear" "more bilinear" "most bilinear" "bilinearly" ;
-lin rectilinear_A = mkA "rectilinear" "more rectilinear" "most rectilinear" "rectilinearly" ;
-lin collinear_A = mkA "collinear" "more collinear" "most collinear" "collinearly" ;
-lin nonlinear_A = mkA "nonlinear" "more nonlinear" "most nonlinear" "nonlinearly" ;
-lin interlinear_A = mkA "interlinear" "more interlinear" "most interlinear" "interlinearly" ;
-lin drear_A = mkA "drear" "more drear" "most drear" "drearly" ;
-lin sear_A = mkA "sear" "more sear" "most sear" "searly" ;
-lin vulgar_A = mkA "vulgar" "more vulgar" "most vulgar" "vulgarly" ;
-lin familiar_A = mkA "familiar" "more familiar" "most familiar" "familiarly" ;
-lin unfamiliar_A = mkA "unfamiliar" "more unfamiliar" "most unfamiliar" "unfamiliarly" ;
-lin overfamiliar_A = mkA "overfamiliar" "more overfamiliar" "most overfamiliar" "overfamiliarly" ;
-lin peculiar_A = mkA "peculiar" "more peculiar" "most peculiar" "peculiarly" ;
-lin ajar_A = mkA "ajar" "more ajar" "most ajar" "ajarly" ;
-lin alar_A = mkA "alar" "more alar" "most alar" "alarly" ;
-lin scalar_A = mkA "scalar" "more scalar" "most scalar" "scalarly" ;
-lin astragalar_A = mkA "astragalar" "more astragalar" "most astragalar" "astragalarly" ;
-lin velar_A = mkA "velar" "more velar" "most velar" "velarly" ;
-lin filar_A = mkA "filar" "more filar" "most filar" "filarly" ;
-lin bifilar_A = mkA "bifilar" "more bifilar" "most bifilar" "bifilarly" ;
-lin unifilar_A = mkA "unifilar" "more unifilar" "most unifilar" "unifilarly" ;
-lin hilar_A = mkA "hilar" "more hilar" "most hilar" "hilarly" ;
-lin similar_A = mkA "similar" "more similar" "most similar" "similarly" ;
-lin verisimilar_A = mkA "verisimilar" "more verisimilar" "most verisimilar" "verisimilarly" ;
-lin dissimilar_A = mkA "dissimilar" "more dissimilar" "most dissimilar" "dissimilarly" ;
-lin pilar_A = mkA "pilar" "more pilar" "most pilar" "pilarly" ;
-lin basilar_A = mkA "basilar" "more basilar" "most basilar" "basilarly" ;
-lin glabellar_A = mkA "glabellar" "more glabellar" "most glabellar" "glabellarly" ;
-lin cerebellar_A = mkA "cerebellar" "more cerebellar" "most cerebellar" "cerebellarly" ;
-lin patellar_A = mkA "patellar" "more patellar" "most patellar" "patellarly" ;
-lin stellar_A = mkA "stellar" "more stellar" "most stellar" "stellarly" ;
-lin interstellar_A = mkA "interstellar" "more interstellar" "most interstellar" "interstellarly" ;
-lin bacillar_A = mkA "bacillar" "more bacillar" "most bacillar" "bacillarly" ;
-lin 'white-collar_A' = mkA "white-collar" "more white-collar" "most white-collar" "white-collarly" ;
-lin 'blue-collar_A' = mkA "blue-collar" "more blue-collar" "most blue-collar" "blue-collarly" ;
-lin ampullar_A = mkA "ampullar" "more ampullar" "most ampullar" "ampullarly" ;
-lin areolar_A = mkA "areolar" "more areolar" "most areolar" "areolarly" ;
-lin alveolar_A = mkA "alveolar" "more alveolar" "most alveolar" "alveolarly" ;
-lin bronchiolar_A = mkA "bronchiolar" "more bronchiolar" "most bronchiolar" "bronchiolarly" ;
-lin variolar_A = mkA "variolar" "more variolar" "most variolar" "variolarly" ;
-lin arteriolar_A = mkA "arteriolar" "more arteriolar" "most arteriolar" "arteriolarly" ;
-lin molar_A = mkA "molar" "more molar" "most molar" "molarly" ;
-lin polar_A = mkA "polar" "more polar" "most polar" "polarly" ;
-lin bipolar_A = mkA "bipolar" "more bipolar" "most bipolar" "bipolarly" ;
-lin dipolar_A = mkA "dipolar" "more dipolar" "most dipolar" "dipolarly" ;
-lin unipolar_A = mkA "unipolar" "more unipolar" "most unipolar" "unipolarly" ;
-lin circumpolar_A = mkA "circumpolar" "more circumpolar" "most circumpolar" "circumpolarly" ;
-lin transpolar_A = mkA "transpolar" "more transpolar" "most transpolar" "transpolarly" ;
-lin solar_A = mkA "solar" "more solar" "most solar" "solarly" ;
-lin lunisolar_A = mkA "lunisolar" "more lunisolar" "most lunisolar" "lunisolarly" ;
-lin tabular_A = mkA "tabular" "more tabular" "most tabular" "tabularly" ;
-lin acetabular_A = mkA "acetabular" "more acetabular" "most acetabular" "acetabularly" ;
-lin nebular_A = mkA "nebular" "more nebular" "most nebular" "nebularly" ;
-lin mandibular_A = mkA "mandibular" "more mandibular" "most mandibular" "mandibularly" ;
-lin maxillomandibular_A = mkA "maxillomandibular" "more maxillomandibular" "most maxillomandibular" "maxillomandibularly" ;
-lin vestibular_A = mkA "vestibular" "more vestibular" "most vestibular" "vestibularly" ;
-lin lobular_A = mkA "lobular" "more lobular" "most lobular" "lobularly" ;
-lin intralobular_A = mkA "intralobular" "more intralobular" "most intralobular" "intralobularly" ;
-lin globular_A = mkA "globular" "more globular" "most globular" "globularly" ;
-lin interlobular_A = mkA "interlobular" "more interlobular" "most interlobular" "interlobularly" ;
-lin tubular_A = mkA "tubular" "more tubular" "most tubular" "tubularly" ;
-lin vernacular_A = mkA "vernacular" "more vernacular" "most vernacular" "vernacularly" ;
-lin oracular_A = mkA "oracular" "more oracular" "most oracular" "oracularly" ;
-lin spectacular_A = mkA "spectacular" "more spectacular" "most spectacular" "spectacularly" ;
-lin unspectacular_A = mkA "unspectacular" "more unspectacular" "most unspectacular" "unspectacularly" ;
-lin tentacular_A = mkA "tentacular" "more tentacular" "most tentacular" "tentacularly" ;
-lin sustentacular_A = mkA "sustentacular" "more sustentacular" "most sustentacular" "sustentacularly" ;
-lin trabecular_A = mkA "trabecular" "more trabecular" "most trabecular" "trabecularly" ;
-lin molecular_A = mkA "molecular" "more molecular" "most molecular" "molecularly" ;
-lin intramolecular_A = mkA "intramolecular" "more intramolecular" "most intramolecular" "intramolecularly" ;
-lin bimolecular_A = mkA "bimolecular" "more bimolecular" "most bimolecular" "bimolecularly" ;
-lin orthomolecular_A = mkA "orthomolecular" "more orthomolecular" "most orthomolecular" "orthomolecularly" ;
-lin macromolecular_A = mkA "macromolecular" "more macromolecular" "most macromolecular" "macromolecularly" ;
-lin intermolecular_A = mkA "intermolecular" "more intermolecular" "most intermolecular" "intermolecularly" ;
-lin secular_A = mkA "secular" "more secular" "most secular" "secularly" ;
-lin appendicular_A = mkA "appendicular" "more appendicular" "most appendicular" "appendicularly" ;
-lin perpendicular_A = mkA "perpendicular" "more perpendicular" "most perpendicular" "perpendicularly" ;
-lin vehicular_A = mkA "vehicular" "more vehicular" "most vehicular" "vehicularly" ;
-lin canalicular_A = mkA "canalicular" "more canalicular" "most canalicular" "canalicularly" ;
-lin follicular_A = mkA "follicular" "more follicular" "most follicular" "follicularly" ;
-lin vermicular_A = mkA "vermicular" "more vermicular" "most vermicular" "vermicularly" ;
-lin canicular_A = mkA "canicular" "more canicular" "most canicular" "canicularly" ;
-lin funicular_A = mkA "funicular" "more funicular" "most funicular" "funicularly" ;
-lin curricular_A = mkA "curricular" "more curricular" "most curricular" "curricularly" ;
-lin extracurricular_A = mkA "extracurricular" "more extracurricular" "most extracurricular" "extracurricularly" ;
-lin ventricular_A = mkA "ventricular" "more ventricular" "most ventricular" "ventricularly" ;
-lin intraventricular_A = mkA "intraventricular" "more intraventricular" "most intraventricular" "intraventricularly" ;
-lin atrioventricular_A = mkA "atrioventricular" "more atrioventricular" "most atrioventricular" "atrioventricularly" ;
-lin auricular_A = mkA "auricular" "more auricular" "most auricular" "auricularly" ;
-lin biauricular_A = mkA "biauricular" "more biauricular" "most biauricular" "biauricularly" ;
-lin vesicular_A = mkA "vesicular" "more vesicular" "most vesicular" "vesicularly" ;
-lin ossicular_A = mkA "ossicular" "more ossicular" "most ossicular" "ossicularly" ;
-lin articular_A = mkA "articular" "more articular" "most articular" "articularly" ;
-lin particular_A = mkA "particular" "more particular" "most particular" "particularly" ;
-lin testicular_A = mkA "testicular" "more testicular" "most testicular" "testicularly" ;
-lin cuticular_A = mkA "cuticular" "more cuticular" "most cuticular" "cuticularly" ;
-lin navicular_A = mkA "navicular" "more navicular" "most navicular" "navicularly" ;
-lin caruncular_A = mkA "caruncular" "more caruncular" "most caruncular" "caruncularly" ;
-lin avuncular_A = mkA "avuncular" "more avuncular" "most avuncular" "avuncularly" ;
-lin ocular_A = mkA "ocular" "more ocular" "most ocular" "ocularly" ;
-lin jocular_A = mkA "jocular" "more jocular" "most jocular" "jocularly" ;
-lin bilocular_A = mkA "bilocular" "more bilocular" "most bilocular" "bilocularly" ;
-lin binocular_A = mkA "binocular" "more binocular" "most binocular" "binocularly" ;
-lin tubercular_A = mkA "tubercular" "more tubercular" "most tubercular" "tubercularly" ;
-lin circular_A = mkA "circular" "more circular" "most circular" "circularly" ;
-lin semicircular_A = mkA "semicircular" "more semicircular" "most semicircular" "semicircularly" ;
-lin vascular_A = mkA "vascular" "more vascular" "most vascular" "vascularly" ;
-lin avascular_A = mkA "avascular" "more avascular" "most avascular" "avascularly" ;
-lin cardiovascular_A = mkA "cardiovascular" "more cardiovascular" "most cardiovascular" "cardiovascularly" ;
-lin cerebrovascular_A = mkA "cerebrovascular" "more cerebrovascular" "most cerebrovascular" "cerebrovascularly" ;
-lin majuscular_A = mkA "majuscular" "more majuscular" "most majuscular" "majuscularly" ;
-lin muscular_A = mkA "muscular" "more muscular" "most muscular" "muscularly" ;
-lin intramuscular_A = mkA "intramuscular" "more intramuscular" "most intramuscular" "intramuscularly" ;
-lin neuromuscular_A = mkA "neuromuscular" "more neuromuscular" "most neuromuscular" "neuromuscularly" ;
-lin crepuscular_A = mkA "crepuscular" "more crepuscular" "most crepuscular" "crepuscularly" ;
-lin corpuscular_A = mkA "corpuscular" "more corpuscular" "most corpuscular" "corpuscularly" ;
-lin calycular_A = mkA "calycular" "more calycular" "most calycular" "calycularly" ;
-lin glandular_A = mkA "glandular" "more glandular" "most glandular" "glandularly" ;
-lin modular_A = mkA "modular" "more modular" "most modular" "modularly" ;
-lin nodular_A = mkA "nodular" "more nodular" "most nodular" "nodularly" ;
-lin regular_A = mkA "regular" "more regular" "most regular" "regularly" ;
-lin irregular_A = mkA "irregular" "more irregular" "most irregular" "irregularly" ;
-lin tegular_A = mkA "tegular" "more tegular" "most tegular" "tegularly" ;
-lin angular_A = mkA "angular" "more angular" "most angular" "angularly" ;
-lin triangular_A = mkA "triangular" "more triangular" "most triangular" "triangularly" ;
-lin equiangular_A = mkA "equiangular" "more equiangular" "most equiangular" "equiangularly" ;
-lin quadrangular_A = mkA "quadrangular" "more quadrangular" "most quadrangular" "quadrangularly" ;
-lin rectangular_A = mkA "rectangular" "more rectangular" "most rectangular" "rectangularly" ;
-lin octangular_A = mkA "octangular" "more octangular" "most octangular" "octangularly" ;
-lin pentangular_A = mkA "pentangular" "more pentangular" "most pentangular" "pentangularly" ;
-lin hexangular_A = mkA "hexangular" "more hexangular" "most hexangular" "hexangularly" ;
-lin singular_A = mkA "singular" "more singular" "most singular" "singularly" ;
-lin jugular_A = mkA "jugular" "more jugular" "most jugular" "jugularly" ;
-lin alular_A = mkA "alular" "more alular" "most alular" "alularly" ;
-lin cellular_A = mkA "cellular" "more cellular" "most cellular" "cellularly" ;
-lin intracellular_A = mkA "intracellular" "more intracellular" "most intracellular" "intracellularly" ;
-lin extracellular_A = mkA "extracellular" "more extracellular" "most extracellular" "extracellularly" ;
-lin unicellular_A = mkA "unicellular" "more unicellular" "most unicellular" "unicellularly" ;
-lin multicellular_A = mkA "multicellular" "more multicellular" "most multicellular" "multicellularly" ;
-lin noncellular_A = mkA "noncellular" "more noncellular" "most noncellular" "noncellularly" ;
-lin intercellular_A = mkA "intercellular" "more intercellular" "most intercellular" "intercellularly" ;
-lin granular_A = mkA "granular" "more granular" "most granular" "granularly" ;
-lin nongranular_A = mkA "nongranular" "more nongranular" "most nongranular" "nongranularly" ;
-lin annular_A = mkA "annular" "more annular" "most annular" "annularly" ;
-lin scapular_A = mkA "scapular" "more scapular" "most scapular" "scapularly" ;
-lin copular_A = mkA "copular" "more copular" "most copular" "copularly" ;
-lin popular_A = mkA "popular" "more popular" "most popular" "popularly" ;
-lin unpopular_A = mkA "unpopular" "more unpopular" "most unpopular" "unpopularly" ;
-lin cupular_A = mkA "cupular" "more cupular" "most cupular" "cupularly" ;
-lin glomerular_A = mkA "glomerular" "more glomerular" "most glomerular" "glomerularly" ;
-lin insular_A = mkA "insular" "more insular" "most insular" "insularly" ;
-lin peninsular_A = mkA "peninsular" "more peninsular" "most peninsular" "peninsularly" ;
-lin consular_A = mkA "consular" "more consular" "most consular" "consularly" ;
-lin proconsular_A = mkA "proconsular" "more proconsular" "most proconsular" "proconsularly" ;
-lin capsular_A = mkA "capsular" "more capsular" "most capsular" "capsularly" ;
-lin bicapsular_A = mkA "bicapsular" "more bicapsular" "most bicapsular" "bicapsularly" ;
-lin capitular_A = mkA "capitular" "more capitular" "most capitular" "capitularly" ;
-lin titular_A = mkA "titular" "more titular" "most titular" "titularly" ;
-lin fistular_A = mkA "fistular" "more fistular" "most fistular" "fistularly" ;
-lin valvular_A = mkA "valvular" "more valvular" "most valvular" "valvularly" ;
-lin ovular_A = mkA "ovular" "more ovular" "most ovular" "ovularly" ;
-lin uniovular_A = mkA "uniovular" "more uniovular" "most uniovular" "uniovularly" ;
-lin uvular_A = mkA "uvular" "more uvular" "most uvular" "uvularly" ;
-lin condylar_A = mkA "condylar" "more condylar" "most condylar" "condylarly" ;
-lin micropylar_A = mkA "micropylar" "more micropylar" "most micropylar" "micropylarly" ;
-lin astylar_A = mkA "astylar" "more astylar" "most astylar" "astylarly" ;
-lin amphistylar_A = mkA "amphistylar" "more amphistylar" "most amphistylar" "amphistylarly" ;
-lin peristylar_A = mkA "peristylar" "more peristylar" "most peristylar" "peristylarly" ;
-lin amphiprostylar_A = mkA "amphiprostylar" "more amphiprostylar" "most amphiprostylar" "amphiprostylarly" ;
-lin palmar_A = mkA "palmar" "more palmar" "most palmar" "palmarly" ;
-lin planar_A = mkA "planar" "more planar" "most planar" "planarly" ;
-lin coplanar_A = mkA "coplanar" "more coplanar" "most coplanar" "coplanarly" ;
-lin acinar_A = mkA "acinar" "more acinar" "most acinar" "acinarly" ;
-lin laminar_A = mkA "laminar" "more laminar" "most laminar" "laminarly" ;
-lin ulnar_A = mkA "ulnar" "more ulnar" "most ulnar" "ulnarly" ;
-lin columnar_A = mkA "columnar" "more columnar" "most columnar" "columnarly" ;
-lin lunar_A = mkA "lunar" "more lunar" "most lunar" "lunarly" ;
-lin sublunar_A = mkA "sublunar" "more sublunar" "most sublunar" "sublunarly" ;
-lin translunar_A = mkA "translunar" "more translunar" "most translunar" "translunarly" ;
-lin hoar_A = mkA "hoar" "more hoar" "most hoar" "hoarly" ;
-lin plantar_A = mkA "plantar" "more plantar" "most plantar" "plantarly" ;
-lin vulvar_A = mkA "vulvar" "more vulvar" "most vulvar" "vulvarly" ;
-lin prewar_A = mkA "prewar" "more prewar" "most prewar" "prewarly" ;
-lin postwar_A = mkA "postwar" "more postwar" "most postwar" "postwarly" ;
-lin Magyar_A = mkA "Magyar" "more Magyar" "most Magyar" "Magyarly" ;
-lin whatsoe'er_A = mkA "whatsoe'er" "more whatsoe'er" "most whatsoe'er" "whatsoe'erly" ;
-lin whate'er_A = mkA "whate'er" "more whate'er" "most whate'er" "whate'erly" ;
-lin rubber_A = mkA "rubber" "more rubber" "most rubber" "rubberly" ;
-lin amber_A = mkA "amber" "more amber" "most amber" "amberly" ;
-lin limber_A = mkA "limber" "more limber" "most limber" "limberly" ;
-lin somber_A = mkA "somber" "more somber" "most somber" "somberly" ;
-lin umber_A = mkA "umber" "more umber" "most umber" "umberly" ;
-lin sober_A = mkA "sober" "more sober" "most sober" "soberly" ;
-lin 'stone-sober_A' = mkA "stone-sober" "more stone-sober" "most stone-sober" "stone-soberly" ;
-lin anticancer_A = mkA "anticancer" "more anticancer" "most anticancer" "anticancerly" ;
-lin elder_A = mkA "elder" "more elder" "most elder" "elderly" ;
-lin zealander_A = mkA "zealander" "more zealander" "most zealander" "zealanderly" ;
-lin icelander_A = mkA "icelander" "more icelander" "most icelander" "icelanderly" ;
-lin hollander_A = mkA "hollander" "more hollander" "most hollander" "hollanderly" ;
-lin transgender_A = mkA "transgender" "more transgender" "most transgender" "transgenderly" ;
-lin slender_A = mkA "slender" "more slender" "most slender" "slenderly" ;
-lin lavender_A = mkA "lavender" "more lavender" "most lavender" "lavenderly" ;
-lin yonder_A = mkA "yonder" "more yonder" "most yonder" "yonderly" ;
-lin eager_A = mkA "eager" "more eager" "most eager" "eagerly" ;
-lin meager_A = mkA "meager" "more meager" "most meager" "meagerly" ;
-lin uneager_A = mkA "uneager" "more uneager" "most uneager" "uneagerly" ;
-lin overeager_A = mkA "overeager" "more overeager" "most overeager" "overeagerly" ;
-lin swagger_A = mkA "swagger" "more swagger" "most swagger" "swaggerly" ;
-lin 'hugger-mugger_A' = mkA "hugger-mugger" "more hugger-mugger" "most hugger-mugger" "hugger-muggerly" ;
-lin ginger_A = mkA "ginger" "more ginger" "most ginger" "gingerly" ;
-lin younger_A = mkA "younger" "more younger" "most younger" "youngerly" ;
-lin luxemburger_A = mkA "luxemburger" "more luxemburger" "most luxemburger" "luxemburgerly" ;
-lin ocher_A = mkA "ocher" "more ocher" "most ocher" "ocherly" ;
-lin cosher_A = mkA "cosher" "more cosher" "most cosher" "cosherly" ;
-lin kosher_A = mkA "kosher" "more kosher" "most kosher" "kosherly" ;
-lin nonkosher_A = mkA "nonkosher" "more nonkosher" "most nonkosher" "nonkosherly" ;
-lin together_A = mkA "together" "more together" "most together" "togetherly" ;
-lin nether_A = mkA "nether" "more nether" "most nether" "netherly" ;
-lin neither_A = mkA "neither" "more neither" "most neither" "neitherly" ;
-lin other_A = mkA "other" "more other" "most other" "otherly" ;
-lin farther_A = mkA "farther" "more farther" "most farther" "fartherly" ;
-lin further_A = mkA "further" "more further" "most further" "furtherly" ;
-lin cavalier_A = mkA "cavalier" "more cavalier" "most cavalier" "cavalierly" ;
-lin earlier_A = mkA "earlier" "more earlier" "most earlier" "earlierly" ;
-lin premier_A = mkA "premier" "more premier" "most premier" "premierly" ;
-lin caller_A = mkA "caller" "more caller" "most caller" "callerly" ;
-lin smaller_A = mkA "smaller" "more smaller" "most smaller" "smallerly" ;
-lin former_A = mkA "former" "more former" "most former" "formerly" ;
-lin Afrikaner_A = mkA "Afrikaner" "more Afrikaner" "most Afrikaner" "Afrikanerly" ;
-lin liechtensteiner_A = mkA "liechtensteiner" "more liechtensteiner" "most liechtensteiner" "liechtensteinerly" ;
-lin finer_A = mkA "finer" "more finer" "most finer" "finerly" ;
-lin banner_A = mkA "banner" "more banner" "most banner" "bannerly" ;
-lin inner_A = mkA "inner" "more inner" "most inner" "innerly" ;
-lin 'hole-and-corner_A' = mkA "hole-and-corner" "more hole-and-corner" "most hole-and-corner" "hole-and-cornerly" ;
-lin catacorner_A = mkA "catacorner" "more catacorner" "most catacorner" "catacornerly" ;
-lin boer_A = mkA "boer" "more boer" "most boer" "boerly" ;
-lin proper_A = mkA "proper" "more proper" "most proper" "properly" ;
-lin improper_A = mkA "improper" "more improper" "most improper" "improperly" ;
-lin dapper_A = mkA "dapper" "more dapper" "most dapper" "dapperly" ;
-lin chipper_A = mkA "chipper" "more chipper" "most chipper" "chipperly" ;
-lin upper_A = mkA "upper" "more upper" "most upper" "upperly" ;
-lin super_A = mkA "super" "more super" "most super" "superly" ;
-lin lesser_A = mkA "lesser" "more lesser" "most lesser" "lesserly" ;
-lin greater_A = mkA "greater" "more greater" "most greater" "greaterly" ;
-lin 'deep-water_A' = mkA "deep-water" "more deep-water" "most deep-water" "deep-waterly" ;
-lin freshwater_A = mkA "freshwater" "more freshwater" "most freshwater" "freshwaterly" ;
-lin blackwater_A = mkA "blackwater" "more blackwater" "most blackwater" "blackwaterly" ;
-lin jerkwater_A = mkA "jerkwater" "more jerkwater" "most jerkwater" "jerkwaterly" ;
-lin underwater_A = mkA "underwater" "more underwater" "most underwater" "underwaterly" ;
-lin after_A = mkA "after" "more after" "most after" "afterly" ;
-lin welter_A = mkA "welter" "more welter" "most welter" "welterly" ;
-lin center_A = mkA "center" "more center" "most center" "centerly" ;
-lin 'under-the-counter_A' = mkA "under-the-counter" "more under-the-counter" "most under-the-counter" "under-the-counterly" ;
-lin 'three-quarter_A' = mkA "three-quarter" "more three-quarter" "most three-quarter" "three-quarterly" ;
-lin alabaster_A = mkA "alabaster" "more alabaster" "most alabaster" "alabasterly" ;
-lin sinister_A = mkA "sinister" "more sinister" "most sinister" "sinisterly" ;
-lin foster_A = mkA "foster" "more foster" "most foster" "fosterly" ;
-lin lackluster_A = mkA "lackluster" "more lackluster" "most lackluster" "lacklusterly" ;
-lin latter_A = mkA "latter" "more latter" "most latter" "latterly" ;
-lin better_A = mkA "better" "more better" "most better" "betterly" ;
-lin bitter_A = mkA "bitter" "more bitter" "most bitter" "bitterly" ;
-lin unbitter_A = mkA "unbitter" "more unbitter" "most unbitter" "unbitterly" ;
-lin fitter_A = mkA "fitter" "more fitter" "most fitter" "fitterly" ;
-lin utter_A = mkA "utter" "more utter" "most utter" "utterly" ;
-lin aflutter_A = mkA "aflutter" "more aflutter" "most aflutter" "aflutterly" ;
-lin neuter_A = mkA "neuter" "more neuter" "most neuter" "neuterly" ;
-lin outer_A = mkA "outer" "more outer" "most outer" "outerly" ;
-lin dexter_A = mkA "dexter" "more dexter" "most dexter" "dexterly" ;
-lin whichever_A = mkA "whichever" "more whichever" "most whichever" "whicheverly" ;
-lin whencesoever_A = mkA "whencesoever" "more whencesoever" "most whencesoever" "whencesoeverly" ;
-lin whichsoever_A = mkA "whichsoever" "more whichsoever" "most whichsoever" "whichsoeverly" ;
-lin whatsoever_A = mkA "whatsoever" "more whatsoever" "most whatsoever" "whatsoeverly" ;
-lin whatever_A = mkA "whatever" "more whatever" "most whatever" "whateverly" ;
-lin silver_A = mkA "silver" "more silver" "most silver" "silverly" ;
-lin 'half-seas-over_A' = mkA "half-seas-over" "more half-seas-over" "most half-seas-over" "half-seas-overly" ;
-lin undercover_A = mkA "undercover" "more undercover" "most undercover" "undercoverly" ;
-lin allover_A = mkA "allover" "more allover" "most allover" "alloverly" ;
-lin leftover_A = mkA "leftover" "more leftover" "most leftover" "leftoverly" ;
-lin fewer_A = mkA "fewer" "more fewer" "most fewer" "fewerly" ;
-lin panzer_A = mkA "panzer" "more panzer" "most panzer" "panzerly" ;
-lin bonzer_A = mkA "bonzer" "more bonzer" "most bonzer" "bonzerly" ;
-lin 'open-air_A' = mkA "open-air" "more open-air" "most open-air" "open-airly" ;
-lin 'surface-to-air_A' = mkA "surface-to-air" "more surface-to-air" "most surface-to-air" "surface-to-airly" ;
-lin 'air-to-air_A' = mkA "air-to-air" "more air-to-air" "most air-to-air" "air-to-airly" ;
-lin unfair_A = mkA "unfair" "more unfair" "most unfair" "unfairly" ;
-lin debonair_A = mkA "debonair" "more debonair" "most debonair" "debonairly" ;
-lin backstair_A = mkA "backstair" "more backstair" "most backstair" "backstairly" ;
-lin downstair_A = mkA "downstair" "more downstair" "most downstair" "downstairly" ;
-lin astir_A = mkA "astir" "more astir" "most astir" "astirly" ;
-lin 'unlooked-for_A' = mkA "unlooked-for" "more unlooked-for" "most unlooked-for" "unlooked-forly" ;
-lin 'uncalled-for_A' = mkA "uncalled-for" "more uncalled-for" "most uncalled-for" "uncalled-forly" ;
-lin 'unhoped-for_A' = mkA "unhoped-for" "more unhoped-for" "most unhoped-for" "unhoped-forly" ;
-lin 'uncared-for_A' = mkA "uncared-for" "more uncared-for" "most uncared-for" "uncared-forly" ;
-lin senior_A = mkA "senior" "more senior" "most senior" "seniorly" ;
-lin junior_A = mkA "junior" "more junior" "most junior" "juniorly" ;
-lin inferior_A = mkA "inferior" "more inferior" "most inferior" "inferiorly" ;
-lin superior_A = mkA "superior" "more superior" "most superior" "superiorly" ;
-lin ulterior_A = mkA "ulterior" "more ulterior" "most ulterior" "ulteriorly" ;
-lin anterior_A = mkA "anterior" "more anterior" "most anterior" "anteriorly" ;
-lin interior_A = mkA "interior" "more interior" "most interior" "interiorly" ;
-lin posterior_A = mkA "posterior" "more posterior" "most posterior" "posteriorly" ;
-lin exterior_A = mkA "exterior" "more exterior" "most exterior" "exteriorly" ;
-lin prior_A = mkA "prior" "more prior" "most prior" "priorly" ;
-lin major_A = mkA "major" "more major" "most major" "majorly" ;
-lin color_A = mkA "color" "more color" "most color" "colorly" ;
-lin bicolor_A = mkA "bicolor" "more bicolor" "most bicolor" "bicolorly" ;
-lin tenor_A = mkA "tenor" "more tenor" "most tenor" "tenorly" ;
-lin countertenor_A = mkA "countertenor" "more countertenor" "most countertenor" "countertenorly" ;
-lin minor_A = mkA "minor" "more minor" "most minor" "minorly" ;
-lin 'out-of-door_A' = mkA "out-of-door" "more out-of-door" "most out-of-door" "out-of-doorly" ;
-lin 'door-to-door_A' = mkA "door-to-door" "more door-to-door" "most door-to-door" "door-to-doorly" ;
-lin indoor_A = mkA "indoor" "more indoor" "most indoor" "indoorly" ;
-lin outdoor_A = mkA "outdoor" "more outdoor" "most outdoor" "outdoorly" ;
-lin underfloor_A = mkA "underfloor" "more underfloor" "most underfloor" "underfloorly" ;
-lin counterterror_A = mkA "counterterror" "more counterterror" "most counterterror" "counterterrorly" ;
-lin pressor_A = mkA "pressor" "more pressor" "most pressor" "pressorly" ;
-lin sensorimotor_A = mkA "sensorimotor" "more sensorimotor" "most sensorimotor" "sensorimotorly" ;
-lin psychomotor_A = mkA "psychomotor" "more psychomotor" "most psychomotor" "psychomotorly" ;
-lin neuromotor_A = mkA "neuromotor" "more neuromotor" "most neuromotor" "neuromotorly" ;
-lin vasomotor_A = mkA "vasomotor" "more vasomotor" "most vasomotor" "vasomotorly" ;
-lin 'de rigeur_A' = mkA "de rigeur" "more de rigeur" "most de rigeur" "de rigeurly" ;
-lin amateur_A = mkA "amateur" "more amateur" "most amateur" "amateurly" ;
-lin dour_A = mkA "dour" "more dour" "most dour" "dourly" ;
-lin 'snuff-colour_A' = mkA "snuff-colour" "more snuff-colour" "most snuff-colour" "snuff-colourly" ;
-lin sour_A = mkA "sour" "more sour" "most sour" "sourly" ;
-lin dear_A = mkA "dear" "dearer" "dearest" "dearly" ;
-lin clear_A = mkA "clear" "clearer" "clearest" "clearly" ;
-lin near_A = mkA "near" "nearer" "nearest" "nearly" ;
-lin tender_A = mkA "tender" "tenderer" "tenderest" "tenderly" ;
-lin sheer_A = mkA "sheer" "sheerer" "sheerest" "sheerly" ;
-lin queer_A = mkA "queer" "queerer" "queerest" "queerly" ;
-lin clever_A = mkA "clever" "cleverer" "cleverest" "cleverly" ;
-lin fair_A = mkA "fair" "fairer" "fairest" "fairly" ;
-lin poor_A = mkA "poor" "poorer" "poorest" "poorly" ;
-lin bias_A = mkA "bias" "biaser" "biasest" "biasly" ;
-lin less_A = mkA "less" "lesser" "lessest" "lessly" ;
-lin dress_A = mkA "dress" "dresser" "dressest" "dressly" ;
-lin boss_A = mkA "boss" "bosser" "bossest" "bossly" ;
-lin parkinson's_A = mkA "parkinson's" "more parkinson's" "most parkinson's" "parkinson'sly" ;
-lin overseas_A = mkA "overseas" "more overseas" "most overseas" "overseasly" ;
-lin backwards_A = mkA "backwards" "more backwards" "most backwards" "backwardsly" ;
-lin heavenwards_A = mkA "heavenwards" "more heavenwards" "most heavenwards" "heavenwardsly" ;
-lin skywards_A = mkA "skywards" "more skywards" "most skywards" "skywardsly" ;
-lin intraspecies_A = mkA "intraspecies" "more intraspecies" "most intraspecies" "intraspeciesly" ;
-lin interspecies_A = mkA "interspecies" "more interspecies" "most interspecies" "interspeciesly" ;
-lin isosceles_A = mkA "isosceles" "more isosceles" "most isosceles" "isoscelesly" ;
-lin 'ultra vires_A' = mkA "ultra vires" "more ultra vires" "most ultra vires" "ultra viresly" ;
-lin bourgeois_A = mkA "bourgeois" "more bourgeois" "most bourgeois" "bourgeoisly" ;
-lin seychellois_A = mkA "seychellois" "more seychellois" "most seychellois" "seychelloisly" ;
-lin gratis_A = mkA "gratis" "more gratis" "most gratis" "gratisly" ;
-lin 'compos mentis_A' = mkA "compos mentis" "more compos mentis" "most compos mentis" "compos mentisly" ;
-lin 'non compos mentis_A' = mkA "non compos mentis" "more non compos mentis" "most non compos mentis" "non compos mentisly" ;
-lin sapiens_A = mkA "sapiens" "more sapiens" "most sapiens" "sapiensly" ;
-lin 'all-mains_A' = mkA "all-mains" "more all-mains" "most all-mains" "all-mainsly" ;
-lin apropos_A = mkA "apropos" "more apropos" "most apropos" "aproposly" ;
-lin malapropos_A = mkA "malapropos" "more malapropos" "most malapropos" "malaproposly" ;
-lin crackers_A = mkA "crackers" "more crackers" "most crackers" "crackersly" ;
-lin bonkers_A = mkA "bonkers" "more bonkers" "most bonkers" "bonkersly" ;
-lin starkers_A = mkA "starkers" "more starkers" "most starkers" "starkersly" ;
-lin divers_A = mkA "divers" "more divers" "most divers" "diversly" ;
-lin downstairs_A = mkA "downstairs" "more downstairs" "most downstairs" "downstairsly" ;
-lin upstairs_A = mkA "upstairs" "more upstairs" "most upstairs" "upstairsly" ;
-lin bass_A = mkA "bass" "more bass" "most bass" "bassly" ;
-lin contrabass_A = mkA "contrabass" "more contrabass" "most contrabass" "contrabassly" ;
-lin 'second-class_A' = mkA "second-class" "more second-class" "most second-class" "second-classly" ;
-lin 'middle-class_A' = mkA "middle-class" "more middle-class" "most middle-class" "middle-classly" ;
-lin 'working-class_A' = mkA "working-class" "more working-class" "most working-class" "working-classly" ;
-lin 'high-class_A' = mkA "high-class" "more high-class" "most high-class" "high-classly" ;
-lin 'first-class_A' = mkA "first-class" "more first-class" "most first-class" "first-classly" ;
-lin crass_A = mkA "crass" "more crass" "most crass" "crassly" ;
-lin excess_A = mkA "excess" "more excess" "most excess" "excessly" ;
-lin bibless_A = mkA "bibless" "more bibless" "most bibless" "biblessly" ;
-lin ribless_A = mkA "ribless" "more ribless" "most ribless" "riblessly" ;
-lin limbless_A = mkA "limbless" "more limbless" "most limbless" "limblessly" ;
-lin headless_A = mkA "headless" "more headless" "most headless" "headlessly" ;
-lin roadless_A = mkA "roadless" "more roadless" "most roadless" "roadlessly" ;
-lin bedless_A = mkA "bedless" "more bedless" "most bedless" "bedlessly" ;
-lin heedless_A = mkA "heedless" "more heedless" "most heedless" "heedlessly" ;
-lin needless_A = mkA "needless" "more needless" "most needless" "needlessly" ;
-lin seedless_A = mkA "seedless" "more seedless" "most seedless" "seedlessly" ;
-lin weedless_A = mkA "weedless" "more weedless" "most weedless" "weedlessly" ;
-lin lidless_A = mkA "lidless" "more lidless" "most lidless" "lidlessly" ;
-lin childless_A = mkA "childless" "more childless" "most childless" "childlessly" ;
-lin handless_A = mkA "handless" "more handless" "most handless" "handlessly" ;
-lin landless_A = mkA "landless" "more landless" "most landless" "landlessly" ;
-lin endless_A = mkA "endless" "more endless" "most endless" "endlessly" ;
-lin friendless_A = mkA "friendless" "more friendless" "most friendless" "friendlessly" ;
-lin mindless_A = mkA "mindless" "more mindless" "most mindless" "mindlessly" ;
-lin windless_A = mkA "windless" "more windless" "most windless" "windlessly" ;
-lin boundless_A = mkA "boundless" "more boundless" "most boundless" "boundlessly" ;
-lin groundless_A = mkA "groundless" "more groundless" "most groundless" "groundlessly" ;
-lin soundless_A = mkA "soundless" "more soundless" "most soundless" "soundlessly" ;
-lin godless_A = mkA "godless" "more godless" "most godless" "godlessly" ;
-lin foodless_A = mkA "foodless" "more foodless" "most foodless" "foodlessly" ;
-lin bloodless_A = mkA "bloodless" "more bloodless" "most bloodless" "bloodlessly" ;
-lin beardless_A = mkA "beardless" "more beardless" "most beardless" "beardlessly" ;
-lin regardless_A = mkA "regardless" "more regardless" "most regardless" "regardlessly" ;
-lin cordless_A = mkA "cordless" "more cordless" "most cordless" "cordlessly" ;
-lin lordless_A = mkA "lordless" "more lordless" "most lordless" "lordlessly" ;
-lin wordless_A = mkA "wordless" "more wordless" "most wordless" "wordlessly" ;
-lin cloudless_A = mkA "cloudless" "more cloudless" "most cloudless" "cloudlessly" ;
-lin tubeless_A = mkA "tubeless" "more tubeless" "most tubeless" "tubelessly" ;
-lin faceless_A = mkA "faceless" "more faceless" "most faceless" "facelessly" ;
-lin graceless_A = mkA "graceless" "more graceless" "most graceless" "gracelessly" ;
-lin voiceless_A = mkA "voiceless" "more voiceless" "most voiceless" "voicelessly" ;
-lin priceless_A = mkA "priceless" "more priceless" "most priceless" "pricelessly" ;
-lin juiceless_A = mkA "juiceless" "more juiceless" "most juiceless" "juicelessly" ;
-lin defenceless_A = mkA "defenceless" "more defenceless" "most defenceless" "defencelessly" ;
-lin offenceless_A = mkA "offenceless" "more offenceless" "most offenceless" "offencelessly" ;
-lin conscienceless_A = mkA "conscienceless" "more conscienceless" "most conscienceless" "consciencelessly" ;
-lin forceless_A = mkA "forceless" "more forceless" "most forceless" "forcelessly" ;
-lin resourceless_A = mkA "resourceless" "more resourceless" "most resourceless" "resourcelessly" ;
-lin treeless_A = mkA "treeless" "more treeless" "most treeless" "treelessly" ;
-lin lifeless_A = mkA "lifeless" "more lifeless" "most lifeless" "lifelessly" ;
-lin ageless_A = mkA "ageless" "more ageless" "most ageless" "agelessly" ;
-lin edgeless_A = mkA "edgeless" "more edgeless" "most edgeless" "edgelessly" ;
-lin changeless_A = mkA "changeless" "more changeless" "most changeless" "changelessly" ;
-lin smokeless_A = mkA "smokeless" "more smokeless" "most smokeless" "smokelessly" ;
-lin scaleless_A = mkA "scaleless" "more scaleless" "most scaleless" "scalelessly" ;
-lin handleless_A = mkA "handleless" "more handleless" "most handleless" "handlelessly" ;
-lin guileless_A = mkA "guileless" "more guileless" "most guileless" "guilelessly" ;
-lin soleless_A = mkA "soleless" "more soleless" "most soleless" "solelessly" ;
-lin styleless_A = mkA "styleless" "more styleless" "most styleless" "stylelessly" ;
-lin shameless_A = mkA "shameless" "more shameless" "most shameless" "shamelessly" ;
-lin blameless_A = mkA "blameless" "more blameless" "most blameless" "blamelessly" ;
-lin nameless_A = mkA "nameless" "more nameless" "most nameless" "namelessly" ;
-lin timeless_A = mkA "timeless" "more timeless" "most timeless" "timelessly" ;
-lin homeless_A = mkA "homeless" "more homeless" "most homeless" "homelessly" ;
-lin spineless_A = mkA "spineless" "more spineless" "most spineless" "spinelessly" ;
-lin boneless_A = mkA "boneless" "more boneless" "most boneless" "bonelessly" ;
-lin toneless_A = mkA "toneless" "more toneless" "most toneless" "tonelessly" ;
-lin stoneless_A = mkA "stoneless" "more stoneless" "most stoneless" "stonelessly" ;
-lin tuneless_A = mkA "tuneless" "more tuneless" "most tuneless" "tunelessly" ;
-lin toeless_A = mkA "toeless" "more toeless" "most toeless" "toelessly" ;
-lin shapeless_A = mkA "shapeless" "more shapeless" "most shapeless" "shapelessly" ;
-lin hopeless_A = mkA "hopeless" "more hopeless" "most hopeless" "hopelessly" ;
-lin careless_A = mkA "careless" "more careless" "most careless" "carelessly" ;
-lin tireless_A = mkA "tireless" "more tireless" "most tireless" "tirelessly" ;
-lin wireless_A = mkA "wireless" "more wireless" "most wireless" "wirelessly" ;
-lin scoreless_A = mkA "scoreless" "more scoreless" "most scoreless" "scorelessly" ;
-lin measureless_A = mkA "measureless" "more measureless" "most measureless" "measurelessly" ;
-lin featureless_A = mkA "featureless" "more featureless" "most featureless" "featurelessly" ;
-lin punctureless_A = mkA "punctureless" "more punctureless" "most punctureless" "puncturelessly" ;
-lin futureless_A = mkA "futureless" "more futureless" "most futureless" "futurelessly" ;
-lin baseless_A = mkA "baseless" "more baseless" "most baseless" "baselessly" ;
-lin ceaseless_A = mkA "ceaseless" "more ceaseless" "most ceaseless" "ceaselessly" ;
-lin creaseless_A = mkA "creaseless" "more creaseless" "most creaseless" "creaselessly" ;
-lin noiseless_A = mkA "noiseless" "more noiseless" "most noiseless" "noiselessly" ;
-lin defenseless_A = mkA "defenseless" "more defenseless" "most defenseless" "defenselessly" ;
-lin offenseless_A = mkA "offenseless" "more offenseless" "most offenseless" "offenselessly" ;
-lin senseless_A = mkA "senseless" "more senseless" "most senseless" "senselessly" ;
-lin noseless_A = mkA "noseless" "more noseless" "most noseless" "noselessly" ;
-lin purposeless_A = mkA "purposeless" "more purposeless" "most purposeless" "purposelessly" ;
-lin remorseless_A = mkA "remorseless" "more remorseless" "most remorseless" "remorselessly" ;
-lin useless_A = mkA "useless" "more useless" "most useless" "uselessly" ;
-lin causeless_A = mkA "causeless" "more causeless" "most causeless" "causelessly" ;
-lin dateless_A = mkA "dateless" "more dateless" "most dateless" "datelessly" ;
-lin mateless_A = mkA "mateless" "more mateless" "most mateless" "matelessly" ;
-lin stateless_A = mkA "stateless" "more stateless" "most stateless" "statelessly" ;
-lin voteless_A = mkA "voteless" "more voteless" "most voteless" "votelessly" ;
-lin tasteless_A = mkA "tasteless" "more tasteless" "most tasteless" "tastelessly" ;
-lin tongueless_A = mkA "tongueless" "more tongueless" "most tongueless" "tonguelessly" ;
-lin hueless_A = mkA "hueless" "more hueless" "most hueless" "huelessly" ;
-lin valueless_A = mkA "valueless" "more valueless" "most valueless" "valuelessly" ;
-lin clueless_A = mkA "clueless" "more clueless" "most clueless" "cluelessly" ;
-lin sleeveless_A = mkA "sleeveless" "more sleeveless" "most sleeveless" "sleevelessly" ;
-lin motiveless_A = mkA "motiveless" "more motiveless" "most motiveless" "motivelessly" ;
-lin loveless_A = mkA "loveless" "more loveless" "most loveless" "lovelessly" ;
-lin gloveless_A = mkA "gloveless" "more gloveless" "most gloveless" "glovelessly" ;
-lin nerveless_A = mkA "nerveless" "more nerveless" "most nerveless" "nervelessly" ;
-lin aweless_A = mkA "aweless" "more aweless" "most aweless" "awelessly" ;
-lin eyeless_A = mkA "eyeless" "more eyeless" "most eyeless" "eyelessly" ;
-lin leafless_A = mkA "leafless" "more leafless" "most leafless" "leaflessly" ;
-lin briefless_A = mkA "briefless" "more briefless" "most briefless" "brieflessly" ;
-lin roofless_A = mkA "roofless" "more roofless" "most roofless" "rooflessly" ;
-lin legless_A = mkA "legless" "more legless" "most legless" "leglessly" ;
-lin wigless_A = mkA "wigless" "more wigless" "most wigless" "wiglessly" ;
-lin meaningless_A = mkA "meaningless" "more meaningless" "most meaningless" "meaninglessly" ;
-lin springless_A = mkA "springless" "more springless" "most springless" "springlessly" ;
-lin stingless_A = mkA "stingless" "more stingless" "most stingless" "stinglessly" ;
-lin wingless_A = mkA "wingless" "more wingless" "most wingless" "winglessly" ;
-lin drugless_A = mkA "drugless" "more drugless" "most drugless" "druglessly" ;
-lin speechless_A = mkA "speechless" "more speechless" "most speechless" "speechlessly" ;
-lin branchless_A = mkA "branchless" "more branchless" "most branchless" "branchlessly" ;
-lin quenchless_A = mkA "quenchless" "more quenchless" "most quenchless" "quenchlessly" ;
-lin starchless_A = mkA "starchless" "more starchless" "most starchless" "starchlessly" ;
-lin matchless_A = mkA "matchless" "more matchless" "most matchless" "matchlessly" ;
-lin boughless_A = mkA "boughless" "more boughless" "most boughless" "boughlessly" ;
-lin deathless_A = mkA "deathless" "more deathless" "most deathless" "deathlessly" ;
-lin breathless_A = mkA "breathless" "more breathless" "most breathless" "breathlessly" ;
-lin pathless_A = mkA "pathless" "more pathless" "most pathless" "pathlessly" ;
-lin faithless_A = mkA "faithless" "more faithless" "most faithless" "faithlessly" ;
-lin toothless_A = mkA "toothless" "more toothless" "most toothless" "toothlessly" ;
-lin mirthless_A = mkA "mirthless" "more mirthless" "most mirthless" "mirthlessly" ;
-lin worthless_A = mkA "worthless" "more worthless" "most worthless" "worthlessly" ;
-lin ruthless_A = mkA "ruthless" "more ruthless" "most ruthless" "ruthlessly" ;
-lin merciless_A = mkA "merciless" "more merciless" "most merciless" "mercilessly" ;
-lin bodiless_A = mkA "bodiless" "more bodiless" "most bodiless" "bodilessly" ;
-lin penniless_A = mkA "penniless" "more penniless" "most penniless" "pennilessly" ;
-lin pitiless_A = mkA "pitiless" "more pitiless" "most pitiless" "pitilessly" ;
-lin beakless_A = mkA "beakless" "more beakless" "most beakless" "beaklessly" ;
-lin backless_A = mkA "backless" "more backless" "most backless" "backlessly" ;
-lin trackless_A = mkA "trackless" "more trackless" "most trackless" "tracklessly" ;
-lin feckless_A = mkA "feckless" "more feckless" "most feckless" "fecklessly" ;
-lin neckless_A = mkA "neckless" "more neckless" "most neckless" "necklessly" ;
-lin speckless_A = mkA "speckless" "more speckless" "most speckless" "specklessly" ;
-lin reckless_A = mkA "reckless" "more reckless" "most reckless" "recklessly" ;
-lin luckless_A = mkA "luckless" "more luckless" "most luckless" "lucklessly" ;
-lin milkless_A = mkA "milkless" "more milkless" "most milkless" "milklessly" ;
-lin thankless_A = mkA "thankless" "more thankless" "most thankless" "thanklessly" ;
-lin goalless_A = mkA "goalless" "more goalless" "most goalless" "goallessly" ;
-lin wheelless_A = mkA "wheelless" "more wheelless" "most wheelless" "wheellessly" ;
-lin tailless_A = mkA "tailless" "more tailless" "most tailless" "taillessly" ;
-lin recoilless_A = mkA "recoilless" "more recoilless" "most recoilless" "recoillessly" ;
-lin soulless_A = mkA "soulless" "more soulless" "most soulless" "soullessly" ;
-lin dreamless_A = mkA "dreamless" "more dreamless" "most dreamless" "dreamlessly" ;
-lin seamless_A = mkA "seamless" "more seamless" "most seamless" "seamlessly" ;
-lin loamless_A = mkA "loamless" "more loamless" "most loamless" "loamlessly" ;
-lin stemless_A = mkA "stemless" "more stemless" "most stemless" "stemlessly" ;
-lin aimless_A = mkA "aimless" "more aimless" "most aimless" "aimlessly" ;
-lin rimless_A = mkA "rimless" "more rimless" "most rimless" "rimlessly" ;
-lin brimless_A = mkA "brimless" "more brimless" "most brimless" "brimlessly" ;
-lin fathomless_A = mkA "fathomless" "more fathomless" "most fathomless" "fathomlessly" ;
-lin symptomless_A = mkA "symptomless" "more symptomless" "most symptomless" "symptomlessly" ;
-lin bottomless_A = mkA "bottomless" "more bottomless" "most bottomless" "bottomlessly" ;
-lin armless_A = mkA "armless" "more armless" "most armless" "armlessly" ;
-lin harmless_A = mkA "harmless" "more harmless" "most harmless" "harmlessly" ;
-lin formless_A = mkA "formless" "more formless" "most formless" "formlessly" ;
-lin gormless_A = mkA "gormless" "more gormless" "most gormless" "gormlessly" ;
-lin gaumless_A = mkA "gaumless" "more gaumless" "most gaumless" "gaumlessly" ;
-lin planless_A = mkA "planless" "more planless" "most planless" "planlessly" ;
-lin burdenless_A = mkA "burdenless" "more burdenless" "most burdenless" "burdenlessly" ;
-lin painless_A = mkA "painless" "more painless" "most painless" "painlessly" ;
-lin rainless_A = mkA "rainless" "more rainless" "most rainless" "rainlessly" ;
-lin brainless_A = mkA "brainless" "more brainless" "most brainless" "brainlessly" ;
-lin curtainless_A = mkA "curtainless" "more curtainless" "most curtainless" "curtainlessly" ;
-lin stainless_A = mkA "stainless" "more stainless" "most stainless" "stainlessly" ;
-lin chinless_A = mkA "chinless" "more chinless" "most chinless" "chinlessly" ;
-lin skinless_A = mkA "skinless" "more skinless" "most skinless" "skinlessly" ;
-lin sinless_A = mkA "sinless" "more sinless" "most sinless" "sinlessly" ;
-lin winless_A = mkA "winless" "more winless" "most winless" "winlessly" ;
-lin tensionless_A = mkA "tensionless" "more tensionless" "most tensionless" "tensionlessly" ;
-lin passionless_A = mkA "passionless" "more passionless" "most passionless" "passionlessly" ;
-lin expressionless_A = mkA "expressionless" "more expressionless" "most expressionless" "expressionlessly" ;
-lin frictionless_A = mkA "frictionless" "more frictionless" "most frictionless" "frictionlessly" ;
-lin motionless_A = mkA "motionless" "more motionless" "most motionless" "motionlessly" ;
-lin emotionless_A = mkA "emotionless" "more emotionless" "most emotionless" "emotionlessly" ;
-lin moonless_A = mkA "moonless" "more moonless" "most moonless" "moonlessly" ;
-lin weaponless_A = mkA "weaponless" "more weaponless" "most weaponless" "weaponlessly" ;
-lin reasonless_A = mkA "reasonless" "more reasonless" "most reasonless" "reasonlessly" ;
-lin fernless_A = mkA "fernless" "more fernless" "most fernless" "fernlessly" ;
-lin hornless_A = mkA "hornless" "more hornless" "most hornless" "hornlessly" ;
-lin thornless_A = mkA "thornless" "more thornless" "most thornless" "thornlessly" ;
-lin sunless_A = mkA "sunless" "more sunless" "most sunless" "sunlessly" ;
-lin awnless_A = mkA "awnless" "more awnless" "most awnless" "awnlessly" ;
-lin echoless_A = mkA "echoless" "more echoless" "most echoless" "echolessly" ;
-lin hapless_A = mkA "hapless" "more hapless" "most hapless" "haplessly" ;
-lin strapless_A = mkA "strapless" "more strapless" "most strapless" "straplessly" ;
-lin sapless_A = mkA "sapless" "more sapless" "most sapless" "saplessly" ;
-lin sleepless_A = mkA "sleepless" "more sleepless" "most sleepless" "sleeplessly" ;
-lin hipless_A = mkA "hipless" "more hipless" "most hipless" "hiplessly" ;
-lin lipless_A = mkA "lipless" "more lipless" "most lipless" "liplessly" ;
-lin dripless_A = mkA "dripless" "more dripless" "most dripless" "driplessly" ;
-lin helpless_A = mkA "helpless" "more helpless" "most helpless" "helplessly" ;
-lin topless_A = mkA "topless" "more topless" "most topless" "toplessly" ;
-lin earless_A = mkA "earless" "more earless" "most earless" "earlessly" ;
-lin fearless_A = mkA "fearless" "more fearless" "most fearless" "fearlessly" ;
-lin tearless_A = mkA "tearless" "more tearless" "most tearless" "tearlessly" ;
-lin sugarless_A = mkA "sugarless" "more sugarless" "most sugarless" "sugarlessly" ;
-lin collarless_A = mkA "collarless" "more collarless" "most collarless" "collarlessly" ;
-lin starless_A = mkA "starless" "more starless" "most starless" "starlessly" ;
-lin memberless_A = mkA "memberless" "more memberless" "most memberless" "memberlessly" ;
-lin numberless_A = mkA "numberless" "more numberless" "most numberless" "numberlessly" ;
-lin leaderless_A = mkA "leaderless" "more leaderless" "most leaderless" "leaderlessly" ;
-lin rudderless_A = mkA "rudderless" "more rudderless" "most rudderless" "rudderlessly" ;
-lin riderless_A = mkA "riderless" "more riderless" "most riderless" "riderlessly" ;
-lin cheerless_A = mkA "cheerless" "more cheerless" "most cheerless" "cheerlessly" ;
-lin peerless_A = mkA "peerless" "more peerless" "most peerless" "peerlessly" ;
-lin fingerless_A = mkA "fingerless" "more fingerless" "most fingerless" "fingerlessly" ;
-lin fatherless_A = mkA "fatherless" "more fatherless" "most fatherless" "fatherlessly" ;
-lin motherless_A = mkA "motherless" "more motherless" "most motherless" "motherlessly" ;
-lin ownerless_A = mkA "ownerless" "more ownerless" "most ownerless" "ownerlessly" ;
-lin paperless_A = mkA "paperless" "more paperless" "most paperless" "paperlessly" ;
-lin supperless_A = mkA "supperless" "more supperless" "most supperless" "supperlessly" ;
-lin waterless_A = mkA "waterless" "more waterless" "most waterless" "waterlessly" ;
-lin characterless_A = mkA "characterless" "more characterless" "most characterless" "characterlessly" ;
-lin masterless_A = mkA "masterless" "more masterless" "most masterless" "masterlessly" ;
-lin dowerless_A = mkA "dowerless" "more dowerless" "most dowerless" "dowerlessly" ;
-lin flowerless_A = mkA "flowerless" "more flowerless" "most flowerless" "flowerlessly" ;
-lin powerless_A = mkA "powerless" "more powerless" "most powerless" "powerlessly" ;
-lin airless_A = mkA "airless" "more airless" "most airless" "airlessly" ;
-lin hairless_A = mkA "hairless" "more hairless" "most hairless" "hairlessly" ;
-lin odorless_A = mkA "odorless" "more odorless" "most odorless" "odorlessly" ;
-lin colorless_A = mkA "colorless" "more colorless" "most colorless" "colorlessly" ;
-lin humorless_A = mkA "humorless" "more humorless" "most humorless" "humorlessly" ;
-lin errorless_A = mkA "errorless" "more errorless" "most errorless" "errorlessly" ;
-lin odourless_A = mkA "odourless" "more odourless" "most odourless" "odourlessly" ;
-lin colourless_A = mkA "colourless" "more colourless" "most colourless" "colourlessly" ;
-lin humourless_A = mkA "humourless" "more humourless" "most humourless" "humourlessly" ;
-lin flavourless_A = mkA "flavourless" "more flavourless" "most flavourless" "flavourlessly" ;
-lin clothesless_A = mkA "clothesless" "more clothesless" "most clothesless" "clotheslessly" ;
-lin classless_A = mkA "classless" "more classless" "most classless" "classlessly" ;
-lin grassless_A = mkA "grassless" "more grassless" "most grassless" "grasslessly" ;
-lin lossless_A = mkA "lossless" "more lossless" "most lossless" "losslessly" ;
-lin newsless_A = mkA "newsless" "more newsless" "most newsless" "newslessly" ;
-lin heatless_A = mkA "heatless" "more heatless" "most heatless" "heatlessly" ;
-lin meatless_A = mkA "meatless" "more meatless" "most meatless" "meatlessly" ;
-lin fatless_A = mkA "fatless" "more fatless" "most fatless" "fatlessly" ;
-lin hatless_A = mkA "hatless" "more hatless" "most hatless" "hatlessly" ;
-lin tactless_A = mkA "tactless" "more tactless" "most tactless" "tactlessly" ;
-lin ductless_A = mkA "ductless" "more ductless" "most ductless" "ductlessly" ;
-lin shiftless_A = mkA "shiftless" "more shiftless" "most shiftless" "shiftlessly" ;
-lin thriftless_A = mkA "thriftless" "more thriftless" "most thriftless" "thriftlessly" ;
-lin weightless_A = mkA "weightless" "more weightless" "most weightless" "weightlessly" ;
-lin lightless_A = mkA "lightless" "more lightless" "most lightless" "lightlessly" ;
-lin flightless_A = mkA "flightless" "more flightless" "most flightless" "flightlessly" ;
-lin sightless_A = mkA "sightless" "more sightless" "most sightless" "sightlessly" ;
-lin thoughtless_A = mkA "thoughtless" "more thoughtless" "most thoughtless" "thoughtlessly" ;
-lin profitless_A = mkA "profitless" "more profitless" "most profitless" "profitlessly" ;
-lin hitless_A = mkA "hitless" "more hitless" "most hitless" "hitlessly" ;
-lin shitless_A = mkA "shitless" "more shitless" "most shitless" "shitlessly" ;
-lin limitless_A = mkA "limitless" "more limitless" "most limitless" "limitlessly" ;
-lin spiritless_A = mkA "spiritless" "more spiritless" "most spiritless" "spiritlessly" ;
-lin fruitless_A = mkA "fruitless" "more fruitless" "most fruitless" "fruitlessly" ;
-lin witless_A = mkA "witless" "more witless" "most witless" "witlessly" ;
-lin guiltless_A = mkA "guiltless" "more guiltless" "most guiltless" "guiltlessly" ;
-lin faultless_A = mkA "faultless" "more faultless" "most faultless" "faultlessly" ;
-lin scentless_A = mkA "scentless" "more scentless" "most scentless" "scentlessly" ;
-lin relentless_A = mkA "relentless" "more relentless" "most relentless" "relentlessly" ;
-lin taintless_A = mkA "taintless" "more taintless" "most taintless" "taintlessly" ;
-lin pointless_A = mkA "pointless" "more pointless" "most pointless" "pointlessly" ;
-lin dauntless_A = mkA "dauntless" "more dauntless" "most dauntless" "dauntlessly" ;
-lin countless_A = mkA "countless" "more countless" "most countless" "countlessly" ;
-lin pilotless_A = mkA "pilotless" "more pilotless" "most pilotless" "pilotlessly" ;
-lin bootless_A = mkA "bootless" "more bootless" "most bootless" "bootlessly" ;
-lin footless_A = mkA "footless" "more footless" "most footless" "footlessly" ;
-lin rootless_A = mkA "rootless" "more rootless" "most rootless" "rootlessly" ;
-lin spotless_A = mkA "spotless" "more spotless" "most spotless" "spotlessly" ;
-lin artless_A = mkA "artless" "more artless" "most artless" "artlessly" ;
-lin heartless_A = mkA "heartless" "more heartless" "most heartless" "heartlessly" ;
-lin chartless_A = mkA "chartless" "more chartless" "most chartless" "chartlessly" ;
-lin effortless_A = mkA "effortless" "more effortless" "most effortless" "effortlessly" ;
-lin comfortless_A = mkA "comfortless" "more comfortless" "most comfortless" "comfortlessly" ;
-lin breastless_A = mkA "breastless" "more breastless" "most breastless" "breastlessly" ;
-lin restless_A = mkA "restless" "more restless" "most restless" "restlessly" ;
-lin listless_A = mkA "listless" "more listless" "most listless" "listlessly" ;
-lin christless_A = mkA "christless" "more christless" "most christless" "christlessly" ;
-lin resistless_A = mkA "resistless" "more resistless" "most resistless" "resistlessly" ;
-lin rustless_A = mkA "rustless" "more rustless" "most rustless" "rustlessly" ;
-lin gutless_A = mkA "gutless" "more gutless" "most gutless" "gutlessly" ;
-lin jawless_A = mkA "jawless" "more jawless" "most jawless" "jawlessly" ;
-lin lawless_A = mkA "lawless" "more lawless" "most lawless" "lawlessly" ;
-lin flawless_A = mkA "flawless" "more flawless" "most flawless" "flawlessly" ;
-lin viewless_A = mkA "viewless" "more viewless" "most viewless" "viewlessly" ;
-lin indexless_A = mkA "indexless" "more indexless" "most indexless" "indexlessly" ;
-lin sexless_A = mkA "sexless" "more sexless" "most sexless" "sexlessly" ;
-lin rayless_A = mkA "rayless" "more rayless" "most rayless" "raylessly" ;
-lin keyless_A = mkA "keyless" "more keyless" "most keyless" "keylessly" ;
-lin moneyless_A = mkA "moneyless" "more moneyless" "most moneyless" "moneylessly" ;
-lin bellyless_A = mkA "bellyless" "more bellyless" "most bellyless" "bellylessly" ;
-lin joyless_A = mkA "joyless" "more joyless" "most joyless" "joylessly" ;
-lin propertyless_A = mkA "propertyless" "more propertyless" "most propertyless" "propertylessly" ;
-lin 'full-dress_A' = mkA "full-dress" "more full-dress" "most full-dress" "full-dressly" ;
-lin express_A = mkA "express" "more express" "most express" "expressly" ;
-lin amiss_A = mkA "amiss" "more amiss" "most amiss" "amissly" ;
-lin remiss_A = mkA "remiss" "more remiss" "most remiss" "remissly" ;
-lin Swiss_A = mkA "Swiss" "more Swiss" "most Swiss" "Swissly" ;
-lin cross_A = mkA "cross" "more cross" "most cross" "crossly" ;
-lin crisscross_A = mkA "crisscross" "more crisscross" "most crisscross" "crisscrossly" ;
-lin gross_A = mkA "gross" "more gross" "most gross" "grossly" ;
-lin subgross_A = mkA "subgross" "more subgross" "most subgross" "subgrossly" ;
-lin bats_A = mkA "bats" "more bats" "most bats" "batsly" ;
-lin quits_A = mkA "quits" "more quits" "most quits" "quitsly" ;
-lin scots_A = mkA "scots" "more scots" "most scots" "scotsly" ;
-lin grassroots_A = mkA "grassroots" "more grassroots" "most grassroots" "grassrootsly" ;
-lin nuts_A = mkA "nuts" "more nuts" "most nuts" "nutsly" ;
-lin bogus_A = mkA "bogus" "more bogus" "most bogus" "bogusly" ;
-lin plus_A = mkA "plus" "more plus" "most plus" "plusly" ;
-lin minus_A = mkA "minus" "more minus" "most minus" "minusly" ;
-lin gibbous_A = mkA "gibbous" "more gibbous" "most gibbous" "gibbously" ;
-lin bulbous_A = mkA "bulbous" "more bulbous" "most bulbous" "bulbously" ;
-lin synoicous_A = mkA "synoicous" "more synoicous" "most synoicous" "synoicously" ;
-lin paroicous_A = mkA "paroicous" "more paroicous" "most paroicous" "paroicously" ;
-lin heteroicous_A = mkA "heteroicous" "more heteroicous" "most heteroicous" "heteroicously" ;
-lin autoicous_A = mkA "autoicous" "more autoicous" "most autoicous" "autoicously" ;
-lin anasarcous_A = mkA "anasarcous" "more anasarcous" "most anasarcous" "anasarcously" ;
-lin viscous_A = mkA "viscous" "more viscous" "most viscous" "viscously" ;
-lin fuscous_A = mkA "fuscous" "more fuscous" "most fuscous" "fuscously" ;
-lin glaucous_A = mkA "glaucous" "more glaucous" "most glaucous" "glaucously" ;
-lin raucous_A = mkA "raucous" "more raucous" "most raucous" "raucously" ;
-lin caducous_A = mkA "caducous" "more caducous" "most caducous" "caducously" ;
-lin mucous_A = mkA "mucous" "more mucous" "most mucous" "mucously" ;
-lin tremendous_A = mkA "tremendous" "more tremendous" "most tremendous" "tremendously" ;
-lin stupendous_A = mkA "stupendous" "more stupendous" "most stupendous" "stupendously" ;
-lin hazardous_A = mkA "hazardous" "more hazardous" "most hazardous" "hazardously" ;
-lin pilosebaceous_A = mkA "pilosebaceous" "more pilosebaceous" "most pilosebaceous" "pilosebaceously" ;
-lin bulbaceous_A = mkA "bulbaceous" "more bulbaceous" "most bulbaceous" "bulbaceously" ;
-lin herbaceous_A = mkA "herbaceous" "more herbaceous" "most herbaceous" "herbaceously" ;
-lin micaceous_A = mkA "micaceous" "more micaceous" "most micaceous" "micaceously" ;
-lin asclepiadaceous_A = mkA "asclepiadaceous" "more asclepiadaceous" "most asclepiadaceous" "asclepiadaceously" ;
-lin predaceous_A = mkA "predaceous" "more predaceous" "most predaceous" "predaceously" ;
-lin iridaceous_A = mkA "iridaceous" "more iridaceous" "most iridaceous" "iridaceously" ;
-lin oleaceous_A = mkA "oleaceous" "more oleaceous" "most oleaceous" "oleaceously" ;
-lin lobeliaceous_A = mkA "lobeliaceous" "more lobeliaceous" "most lobeliaceous" "lobeliaceously" ;
-lin liliaceous_A = mkA "liliaceous" "more liliaceous" "most liliaceous" "liliaceously" ;
-lin alliaceous_A = mkA "alliaceous" "more alliaceous" "most alliaceous" "alliaceously" ;
-lin foliaceous_A = mkA "foliaceous" "more foliaceous" "most foliaceous" "foliaceously" ;
-lin polemoniaceous_A = mkA "polemoniaceous" "more polemoniaceous" "most polemoniaceous" "polemoniaceously" ;
-lin bignoniaceous_A = mkA "bignoniaceous" "more bignoniaceous" "most bignoniaceous" "bignoniaceously" ;
-lin coriaceous_A = mkA "coriaceous" "more coriaceous" "most coriaceous" "coriaceously" ;
-lin argillaceous_A = mkA "argillaceous" "more argillaceous" "most argillaceous" "argillaceously" ;
-lin caryophyllaceous_A = mkA "caryophyllaceous" "more caryophyllaceous" "most caryophyllaceous" "caryophyllaceously" ;
-lin betulaceous_A = mkA "betulaceous" "more betulaceous" "most betulaceous" "betulaceously" ;
-lin chylaceous_A = mkA "chylaceous" "more chylaceous" "most chylaceous" "chylaceously" ;
-lin solanaceous_A = mkA "solanaceous" "more solanaceous" "most solanaceous" "solanaceously" ;
-lin arenaceous_A = mkA "arenaceous" "more arenaceous" "most arenaceous" "arenaceously" ;
-lin arundinaceous_A = mkA "arundinaceous" "more arundinaceous" "most arundinaceous" "arundinaceously" ;
-lin proteinaceous_A = mkA "proteinaceous" "more proteinaceous" "most proteinaceous" "proteinaceously" ;
-lin plumbaginaceous_A = mkA "plumbaginaceous" "more plumbaginaceous" "most plumbaginaceous" "plumbaginaceously" ;
-lin gallinaceous_A = mkA "gallinaceous" "more gallinaceous" "most gallinaceous" "gallinaceously" ;
-lin farinaceous_A = mkA "farinaceous" "more farinaceous" "most farinaceous" "farinaceously" ;
-lin vinaceous_A = mkA "vinaceous" "more vinaceous" "most vinaceous" "vinaceously" ;
-lin carbonaceous_A = mkA "carbonaceous" "more carbonaceous" "most carbonaceous" "carbonaceously" ;
-lin saponaceous_A = mkA "saponaceous" "more saponaceous" "most saponaceous" "saponaceously" ;
-lin apocynaceous_A = mkA "apocynaceous" "more apocynaceous" "most apocynaceous" "apocynaceously" ;
-lin drupaceous_A = mkA "drupaceous" "more drupaceous" "most drupaceous" "drupaceously" ;
-lin arboraceous_A = mkA "arboraceous" "more arboraceous" "most arboraceous" "arboraceously" ;
-lin camphoraceous_A = mkA "camphoraceous" "more camphoraceous" "most camphoraceous" "camphoraceously" ;
-lin moraceous_A = mkA "moraceous" "more moraceous" "most moraceous" "moraceously" ;
-lin butyraceous_A = mkA "butyraceous" "more butyraceous" "most butyraceous" "butyraceously" ;
-lin rosaceous_A = mkA "rosaceous" "more rosaceous" "most rosaceous" "rosaceously" ;
-lin cretaceous_A = mkA "cretaceous" "more cretaceous" "most cretaceous" "cretaceously" ;
-lin cucurbitaceous_A = mkA "cucurbitaceous" "more cucurbitaceous" "most cucurbitaceous" "cucurbitaceously" ;
-lin chartaceous_A = mkA "chartaceous" "more chartaceous" "most chartaceous" "chartaceously" ;
-lin testaceous_A = mkA "testaceous" "more testaceous" "most testaceous" "testaceously" ;
-lin crustaceous_A = mkA "crustaceous" "more crustaceous" "most crustaceous" "crustaceously" ;
-lin siliceous_A = mkA "siliceous" "more siliceous" "most siliceous" "siliceously" ;
-lin hideous_A = mkA "hideous" "more hideous" "most hideous" "hideously" ;
-lin chlamydeous_A = mkA "chlamydeous" "more chlamydeous" "most chlamydeous" "chlamydeously" ;
-lin achlamydeous_A = mkA "achlamydeous" "more achlamydeous" "most achlamydeous" "achlamydeously" ;
-lin rampageous_A = mkA "rampageous" "more rampageous" "most rampageous" "rampageously" ;
-lin outrageous_A = mkA "outrageous" "more outrageous" "most outrageous" "outrageously" ;
-lin courageous_A = mkA "courageous" "more courageous" "most courageous" "courageously" ;
-lin advantageous_A = mkA "advantageous" "more advantageous" "most advantageous" "advantageously" ;
-lin disadvantageous_A = mkA "disadvantageous" "more disadvantageous" "most disadvantageous" "disadvantageously" ;
-lin gorgeous_A = mkA "gorgeous" "more gorgeous" "most gorgeous" "gorgeously" ;
-lin miscellaneous_A = mkA "miscellaneous" "more miscellaneous" "most miscellaneous" "miscellaneously" ;
-lin contemporaneous_A = mkA "contemporaneous" "more contemporaneous" "most contemporaneous" "contemporaneously" ;
-lin extemporaneous_A = mkA "extemporaneous" "more extemporaneous" "most extemporaneous" "extemporaneously" ;
-lin extraneous_A = mkA "extraneous" "more extraneous" "most extraneous" "extraneously" ;
-lin coetaneous_A = mkA "coetaneous" "more coetaneous" "most coetaneous" "coetaneously" ;
-lin simultaneous_A = mkA "simultaneous" "more simultaneous" "most simultaneous" "simultaneously" ;
-lin instantaneous_A = mkA "instantaneous" "more instantaneous" "most instantaneous" "instantaneously" ;
-lin consentaneous_A = mkA "consentaneous" "more consentaneous" "most consentaneous" "consentaneously" ;
-lin spontaneous_A = mkA "spontaneous" "more spontaneous" "most spontaneous" "spontaneously" ;
-lin cutaneous_A = mkA "cutaneous" "more cutaneous" "most cutaneous" "cutaneously" ;
-lin subcutaneous_A = mkA "subcutaneous" "more subcutaneous" "most subcutaneous" "subcutaneously" ;
-lin mucocutaneous_A = mkA "mucocutaneous" "more mucocutaneous" "most mucocutaneous" "mucocutaneously" ;
-lin homogeneous_A = mkA "homogeneous" "more homogeneous" "most homogeneous" "homogeneously" ;
-lin inhomogeneous_A = mkA "inhomogeneous" "more inhomogeneous" "most inhomogeneous" "inhomogeneously" ;
-lin heterogeneous_A = mkA "heterogeneous" "more heterogeneous" "most heterogeneous" "heterogeneously" ;
-lin igneous_A = mkA "igneous" "more igneous" "most igneous" "igneously" ;
-lin ligneous_A = mkA "ligneous" "more ligneous" "most ligneous" "ligneously" ;
-lin pyroligneous_A = mkA "pyroligneous" "more pyroligneous" "most pyroligneous" "pyroligneously" ;
-lin erroneous_A = mkA "erroneous" "more erroneous" "most erroneous" "erroneously" ;
-lin corneous_A = mkA "corneous" "more corneous" "most corneous" "corneously" ;
-lin calcareous_A = mkA "calcareous" "more calcareous" "most calcareous" "calcareously" ;
-lin nacreous_A = mkA "nacreous" "more nacreous" "most nacreous" "nacreously" ;
-lin vitreous_A = mkA "vitreous" "more vitreous" "most vitreous" "vitreously" ;
-lin caseous_A = mkA "caseous" "more caseous" "most caseous" "caseously" ;
-lin gaseous_A = mkA "gaseous" "more gaseous" "most gaseous" "gaseously" ;
-lin osseous_A = mkA "osseous" "more osseous" "most osseous" "osseously" ;
-lin nauseous_A = mkA "nauseous" "more nauseous" "most nauseous" "nauseously" ;
-lin righteous_A = mkA "righteous" "more righteous" "most righteous" "righteously" ;
-lin 'self-righteous_A' = mkA "self-righteous" "more self-righteous" "most self-righteous" "self-righteously" ;
-lin unrighteous_A = mkA "unrighteous" "more unrighteous" "most unrighteous" "unrighteously" ;
-lin piteous_A = mkA "piteous" "more piteous" "most piteous" "piteously" ;
-lin plenteous_A = mkA "plenteous" "more plenteous" "most plenteous" "plenteously" ;
-lin bounteous_A = mkA "bounteous" "more bounteous" "most bounteous" "bounteously" ;
-lin courteous_A = mkA "courteous" "more courteous" "most courteous" "courteously" ;
-lin discourteous_A = mkA "discourteous" "more discourteous" "most discourteous" "discourteously" ;
-lin beauteous_A = mkA "beauteous" "more beauteous" "most beauteous" "beauteously" ;
-lin duteous_A = mkA "duteous" "more duteous" "most duteous" "duteously" ;
-lin aqueous_A = mkA "aqueous" "more aqueous" "most aqueous" "aqueously" ;
-lin subaqueous_A = mkA "subaqueous" "more subaqueous" "most subaqueous" "subaqueously" ;
-lin myrmecophagous_A = mkA "myrmecophagous" "more myrmecophagous" "most myrmecophagous" "myrmecophagously" ;
-lin anthophagous_A = mkA "anthophagous" "more anthophagous" "most anthophagous" "anthophagously" ;
-lin anthropophagous_A = mkA "anthropophagous" "more anthropophagous" "most anthropophagous" "anthropophagously" ;
-lin carpophagous_A = mkA "carpophagous" "more carpophagous" "most carpophagous" "carpophagously" ;
-lin saprophagous_A = mkA "saprophagous" "more saprophagous" "most saprophagous" "saprophagously" ;
-lin pemphigous_A = mkA "pemphigous" "more pemphigous" "most pemphigous" "pemphigously" ;
-lin humongous_A = mkA "humongous" "more humongous" "most humongous" "humongously" ;
-lin fungous_A = mkA "fungous" "more fungous" "most fungous" "fungously" ;
-lin analogous_A = mkA "analogous" "more analogous" "most analogous" "analogously" ;
-lin homologous_A = mkA "homologous" "more homologous" "most homologous" "homologously" ;
-lin heterologous_A = mkA "heterologous" "more heterologous" "most heterologous" "heterologously" ;
-lin autologous_A = mkA "autologous" "more autologous" "most autologous" "autologously" ;
-lin calcifugous_A = mkA "calcifugous" "more calcifugous" "most calcifugous" "calcifugously" ;
-lin lucifugous_A = mkA "lucifugous" "more lucifugous" "most lucifugous" "lucifugously" ;
-lin nidifugous_A = mkA "nidifugous" "more nidifugous" "most nidifugous" "nidifugously" ;
-lin azygous_A = mkA "azygous" "more azygous" "most azygous" "azygously" ;
-lin homozygous_A = mkA "homozygous" "more homozygous" "most homozygous" "homozygously" ;
-lin heterozygous_A = mkA "heterozygous" "more heterozygous" "most heterozygous" "heterozygously" ;
-lin peritrichous_A = mkA "peritrichous" "more peritrichous" "most peritrichous" "peritrichously" ;
-lin amorphous_A = mkA "amorphous" "more amorphous" "most amorphous" "amorphously" ;
-lin metamorphous_A = mkA "metamorphous" "more metamorphous" "most metamorphous" "metamorphously" ;
-lin isomorphous_A = mkA "isomorphous" "more isomorphous" "most isomorphous" "isomorphously" ;
-lin polymorphous_A = mkA "polymorphous" "more polymorphous" "most polymorphous" "polymorphously" ;
-lin opisthognathous_A = mkA "opisthognathous" "more opisthognathous" "most opisthognathous" "opisthognathously" ;
-lin prognathous_A = mkA "prognathous" "more prognathous" "most prognathous" "prognathously" ;
-lin amphibious_A = mkA "amphibious" "more amphibious" "most amphibious" "amphibiously" ;
-lin dubious_A = mkA "dubious" "more dubious" "most dubious" "dubiously" ;
-lin efficacious_A = mkA "efficacious" "more efficacious" "most efficacious" "efficaciously" ;
-lin inefficacious_A = mkA "inefficacious" "more inefficacious" "most inefficacious" "inefficaciously" ;
-lin perspicacious_A = mkA "perspicacious" "more perspicacious" "most perspicacious" "perspicaciously" ;
-lin edacious_A = mkA "edacious" "more edacious" "most edacious" "edaciously" ;
-lin predacious_A = mkA "predacious" "more predacious" "most predacious" "predaciously" ;
-lin mendacious_A = mkA "mendacious" "more mendacious" "most mendacious" "mendaciously" ;
-lin bodacious_A = mkA "bodacious" "more bodacious" "most bodacious" "bodaciously" ;
-lin mordacious_A = mkA "mordacious" "more mordacious" "most mordacious" "mordaciously" ;
-lin audacious_A = mkA "audacious" "more audacious" "most audacious" "audaciously" ;
-lin sagacious_A = mkA "sagacious" "more sagacious" "most sagacious" "sagaciously" ;
-lin salacious_A = mkA "salacious" "more salacious" "most salacious" "salaciously" ;
-lin fallacious_A = mkA "fallacious" "more fallacious" "most fallacious" "fallaciously" ;
-lin contumacious_A = mkA "contumacious" "more contumacious" "most contumacious" "contumaciously" ;
-lin tenacious_A = mkA "tenacious" "more tenacious" "most tenacious" "tenaciously" ;
-lin pugnacious_A = mkA "pugnacious" "more pugnacious" "most pugnacious" "pugnaciously" ;
-lin pertinacious_A = mkA "pertinacious" "more pertinacious" "most pertinacious" "pertinaciously" ;
-lin capacious_A = mkA "capacious" "more capacious" "most capacious" "capaciously" ;
-lin rapacious_A = mkA "rapacious" "more rapacious" "most rapacious" "rapaciously" ;
-lin spacious_A = mkA "spacious" "more spacious" "most spacious" "spaciously" ;
-lin veracious_A = mkA "veracious" "more veracious" "most veracious" "veraciously" ;
-lin gracious_A = mkA "gracious" "more gracious" "most gracious" "graciously" ;
-lin ungracious_A = mkA "ungracious" "more ungracious" "most ungracious" "ungraciously" ;
-lin voracious_A = mkA "voracious" "more voracious" "most voracious" "voraciously" ;
-lin loquacious_A = mkA "loquacious" "more loquacious" "most loquacious" "loquaciously" ;
-lin vivacious_A = mkA "vivacious" "more vivacious" "most vivacious" "vivaciously" ;
-lin dioecious_A = mkA "dioecious" "more dioecious" "most dioecious" "dioeciously" ;
-lin monoecious_A = mkA "monoecious" "more monoecious" "most monoecious" "monoeciously" ;
-lin heteroecious_A = mkA "heteroecious" "more heteroecious" "most heteroecious" "heteroeciously" ;
-lin autoecious_A = mkA "autoecious" "more autoecious" "most autoecious" "autoeciously" ;
-lin specious_A = mkA "specious" "more specious" "most specious" "speciously" ;
-lin precious_A = mkA "precious" "more precious" "most precious" "preciously" ;
-lin semiprecious_A = mkA "semiprecious" "more semiprecious" "most semiprecious" "semipreciously" ;
-lin judicious_A = mkA "judicious" "more judicious" "most judicious" "judiciously" ;
-lin injudicious_A = mkA "injudicious" "more injudicious" "most injudicious" "injudiciously" ;
-lin officious_A = mkA "officious" "more officious" "most officious" "officiously" ;
-lin malicious_A = mkA "malicious" "more malicious" "most malicious" "maliciously" ;
-lin unmalicious_A = mkA "unmalicious" "more unmalicious" "most unmalicious" "unmaliciously" ;
-lin delicious_A = mkA "delicious" "more delicious" "most delicious" "deliciously" ;
-lin pernicious_A = mkA "pernicious" "more pernicious" "most pernicious" "perniciously" ;
-lin auspicious_A = mkA "auspicious" "more auspicious" "most auspicious" "auspiciously" ;
-lin inauspicious_A = mkA "inauspicious" "more inauspicious" "most inauspicious" "inauspiciously" ;
-lin suspicious_A = mkA "suspicious" "more suspicious" "most suspicious" "suspiciously" ;
-lin unsuspicious_A = mkA "unsuspicious" "more unsuspicious" "most unsuspicious" "unsuspiciously" ;
-lin oversuspicious_A = mkA "oversuspicious" "more oversuspicious" "most oversuspicious" "oversuspiciously" ;
-lin avaricious_A = mkA "avaricious" "more avaricious" "most avaricious" "avariciously" ;
-lin lubricious_A = mkA "lubricious" "more lubricious" "most lubricious" "lubriciously" ;
-lin capricious_A = mkA "capricious" "more capricious" "most capricious" "capriciously" ;
-lin meretricious_A = mkA "meretricious" "more meretricious" "most meretricious" "meretriciously" ;
-lin vicious_A = mkA "vicious" "more vicious" "most vicious" "viciously" ;
-lin precocious_A = mkA "precocious" "more precocious" "most precocious" "precociously" ;
-lin ferocious_A = mkA "ferocious" "more ferocious" "most ferocious" "ferociously" ;
-lin atrocious_A = mkA "atrocious" "more atrocious" "most atrocious" "atrociously" ;
-lin conscious_A = mkA "conscious" "more conscious" "most conscious" "consciously" ;
-lin 'self-conscious_A' = mkA "self-conscious" "more self-conscious" "most self-conscious" "self-consciously" ;
-lin 'class-conscious_A' = mkA "class-conscious" "more class-conscious" "most class-conscious" "class-consciously" ;
-lin subconscious_A = mkA "subconscious" "more subconscious" "most subconscious" "subconsciously" ;
-lin unselfconscious_A = mkA "unselfconscious" "more unselfconscious" "most unselfconscious" "unselfconsciously" ;
-lin semiconscious_A = mkA "semiconscious" "more semiconscious" "most semiconscious" "semiconsciously" ;
-lin nonconscious_A = mkA "nonconscious" "more nonconscious" "most nonconscious" "nonconsciously" ;
-lin unconscious_A = mkA "unconscious" "more unconscious" "most unconscious" "unconsciously" ;
-lin luscious_A = mkA "luscious" "more luscious" "most luscious" "lusciously" ;
-lin tedious_A = mkA "tedious" "more tedious" "most tedious" "tediously" ;
-lin perfidious_A = mkA "perfidious" "more perfidious" "most perfidious" "perfidiously" ;
-lin insidious_A = mkA "insidious" "more insidious" "most insidious" "insidiously" ;
-lin fastidious_A = mkA "fastidious" "more fastidious" "most fastidious" "fastidiously" ;
-lin unfastidious_A = mkA "unfastidious" "more unfastidious" "most unfastidious" "unfastidiously" ;
-lin invidious_A = mkA "invidious" "more invidious" "most invidious" "invidiously" ;
-lin compendious_A = mkA "compendious" "more compendious" "most compendious" "compendiously" ;
-lin odious_A = mkA "odious" "more odious" "most odious" "odiously" ;
-lin melodious_A = mkA "melodious" "more melodious" "most melodious" "melodiously" ;
-lin unmelodious_A = mkA "unmelodious" "more unmelodious" "most unmelodious" "unmelodiously" ;
-lin commodious_A = mkA "commodious" "more commodious" "most commodious" "commodiously" ;
-lin incommodious_A = mkA "incommodious" "more incommodious" "most incommodious" "incommodiously" ;
-lin studious_A = mkA "studious" "more studious" "most studious" "studiously" ;
-lin unstudious_A = mkA "unstudious" "more unstudious" "most unstudious" "unstudiously" ;
-lin contagious_A = mkA "contagious" "more contagious" "most contagious" "contagiously" ;
-lin sacrilegious_A = mkA "sacrilegious" "more sacrilegious" "most sacrilegious" "sacrilegiously" ;
-lin egregious_A = mkA "egregious" "more egregious" "most egregious" "egregiously" ;
-lin prodigious_A = mkA "prodigious" "more prodigious" "most prodigious" "prodigiously" ;
-lin religious_A = mkA "religious" "more religious" "most religious" "religiously" ;
-lin irreligious_A = mkA "irreligious" "more irreligious" "most irreligious" "irreligiously" ;
-lin litigious_A = mkA "litigious" "more litigious" "most litigious" "litigiously" ;
-lin prestigious_A = mkA "prestigious" "more prestigious" "most prestigious" "prestigiously" ;
-lin contumelious_A = mkA "contumelious" "more contumelious" "most contumelious" "contumeliously" ;
-lin bilious_A = mkA "bilious" "more bilious" "most bilious" "biliously" ;
-lin atrabilious_A = mkA "atrabilious" "more atrabilious" "most atrabilious" "atrabiliously" ;
-lin supercilious_A = mkA "supercilious" "more supercilious" "most supercilious" "superciliously" ;
-lin punctilious_A = mkA "punctilious" "more punctilious" "most punctilious" "punctiliously" ;
-lin rebellious_A = mkA "rebellious" "more rebellious" "most rebellious" "rebelliously" ;
-lin abstemious_A = mkA "abstemious" "more abstemious" "most abstemious" "abstemiously" ;
-lin ingenious_A = mkA "ingenious" "more ingenious" "most ingenious" "ingeniously" ;
-lin arsenious_A = mkA "arsenious" "more arsenious" "most arsenious" "arseniously" ;
-lin ignominious_A = mkA "ignominious" "more ignominious" "most ignominious" "ignominiously" ;
-lin euphonious_A = mkA "euphonious" "more euphonious" "most euphonious" "euphoniously" ;
-lin felonious_A = mkA "felonious" "more felonious" "most felonious" "feloniously" ;
-lin ceremonious_A = mkA "ceremonious" "more ceremonious" "most ceremonious" "ceremoniously" ;
-lin unceremonious_A = mkA "unceremonious" "more unceremonious" "most unceremonious" "unceremoniously" ;
-lin acrimonious_A = mkA "acrimonious" "more acrimonious" "most acrimonious" "acrimoniously" ;
-lin parsimonious_A = mkA "parsimonious" "more parsimonious" "most parsimonious" "parsimoniously" ;
-lin sanctimonious_A = mkA "sanctimonious" "more sanctimonious" "most sanctimonious" "sanctimoniously" ;
-lin harmonious_A = mkA "harmonious" "more harmonious" "most harmonious" "harmoniously" ;
-lin inharmonious_A = mkA "inharmonious" "more inharmonious" "most inharmonious" "inharmoniously" ;
-lin disharmonious_A = mkA "disharmonious" "more disharmonious" "most disharmonious" "disharmoniously" ;
-lin impecunious_A = mkA "impecunious" "more impecunious" "most impecunious" "impecuniously" ;
-lin pious_A = mkA "pious" "more pious" "most pious" "piously" ;
-lin impious_A = mkA "impious" "more impious" "most impious" "impiously" ;
-lin copious_A = mkA "copious" "more copious" "most copious" "copiously" ;
-lin carious_A = mkA "carious" "more carious" "most carious" "cariously" ;
-lin precarious_A = mkA "precarious" "more precarious" "most precarious" "precariously" ;
-lin vicarious_A = mkA "vicarious" "more vicarious" "most vicarious" "vicariously" ;
-lin nefarious_A = mkA "nefarious" "more nefarious" "most nefarious" "nefariously" ;
-lin omnifarious_A = mkA "omnifarious" "more omnifarious" "most omnifarious" "omnifariously" ;
-lin multifarious_A = mkA "multifarious" "more multifarious" "most multifarious" "multifariously" ;
-lin gregarious_A = mkA "gregarious" "more gregarious" "most gregarious" "gregariously" ;
-lin nongregarious_A = mkA "nongregarious" "more nongregarious" "most nongregarious" "nongregariously" ;
-lin ungregarious_A = mkA "ungregarious" "more ungregarious" "most ungregarious" "ungregariously" ;
-lin burglarious_A = mkA "burglarious" "more burglarious" "most burglarious" "burglariously" ;
-lin hilarious_A = mkA "hilarious" "more hilarious" "most hilarious" "hilariously" ;
-lin uproarious_A = mkA "uproarious" "more uproarious" "most uproarious" "uproariously" ;
-lin contrarious_A = mkA "contrarious" "more contrarious" "most contrarious" "contrariously" ;
-lin various_A = mkA "various" "more various" "most various" "variously" ;
-lin opprobrious_A = mkA "opprobrious" "more opprobrious" "most opprobrious" "opprobriously" ;
-lin lugubrious_A = mkA "lugubrious" "more lugubrious" "most lugubrious" "lugubriously" ;
-lin salubrious_A = mkA "salubrious" "more salubrious" "most salubrious" "salubriously" ;
-lin insalubrious_A = mkA "insalubrious" "more insalubrious" "most insalubrious" "insalubriously" ;
-lin imperious_A = mkA "imperious" "more imperious" "most imperious" "imperiously" ;
-lin serious_A = mkA "serious" "more serious" "most serious" "seriously" ;
-lin overserious_A = mkA "overserious" "more overserious" "most overserious" "overseriously" ;
-lin deleterious_A = mkA "deleterious" "more deleterious" "most deleterious" "deleteriously" ;
-lin mysterious_A = mkA "mysterious" "more mysterious" "most mysterious" "mysteriously" ;
-lin delirious_A = mkA "delirious" "more delirious" "most delirious" "deliriously" ;
-lin laborious_A = mkA "laborious" "more laborious" "most laborious" "laboriously" ;
-lin glorious_A = mkA "glorious" "more glorious" "most glorious" "gloriously" ;
-lin inglorious_A = mkA "inglorious" "more inglorious" "most inglorious" "ingloriously" ;
-lin vainglorious_A = mkA "vainglorious" "more vainglorious" "most vainglorious" "vaingloriously" ;
-lin censorious_A = mkA "censorious" "more censorious" "most censorious" "censoriously" ;
-lin victorious_A = mkA "victorious" "more victorious" "most victorious" "victoriously" ;
-lin meritorious_A = mkA "meritorious" "more meritorious" "most meritorious" "meritoriously" ;
-lin unmeritorious_A = mkA "unmeritorious" "more unmeritorious" "most unmeritorious" "unmeritoriously" ;
-lin notorious_A = mkA "notorious" "more notorious" "most notorious" "notoriously" ;
-lin uxorious_A = mkA "uxorious" "more uxorious" "most uxorious" "uxoriously" ;
-lin industrious_A = mkA "industrious" "more industrious" "most industrious" "industriously" ;
-lin illustrious_A = mkA "illustrious" "more illustrious" "most illustrious" "illustriously" ;
-lin curious_A = mkA "curious" "more curious" "most curious" "curiously" ;
-lin incurious_A = mkA "incurious" "more incurious" "most incurious" "incuriously" ;
-lin overcurious_A = mkA "overcurious" "more overcurious" "most overcurious" "overcuriously" ;
-lin furious_A = mkA "furious" "more furious" "most furious" "furiously" ;
-lin injurious_A = mkA "injurious" "more injurious" "most injurious" "injuriously" ;
-lin penurious_A = mkA "penurious" "more penurious" "most penurious" "penuriously" ;
-lin spurious_A = mkA "spurious" "more spurious" "most spurious" "spuriously" ;
-lin usurious_A = mkA "usurious" "more usurious" "most usurious" "usuriously" ;
-lin luxurious_A = mkA "luxurious" "more luxurious" "most luxurious" "luxuriously" ;
-lin ostentatious_A = mkA "ostentatious" "more ostentatious" "most ostentatious" "ostentatiously" ;
-lin unostentatious_A = mkA "unostentatious" "more unostentatious" "most unostentatious" "unostentatiously" ;
-lin flirtatious_A = mkA "flirtatious" "more flirtatious" "most flirtatious" "flirtatiously" ;
-lin disputatious_A = mkA "disputatious" "more disputatious" "most disputatious" "disputatiously" ;
-lin vexatious_A = mkA "vexatious" "more vexatious" "most vexatious" "vexatiously" ;
-lin factious_A = mkA "factious" "more factious" "most factious" "factiously" ;
-lin fractious_A = mkA "fractious" "more fractious" "most fractious" "fractiously" ;
-lin infectious_A = mkA "infectious" "more infectious" "most infectious" "infectiously" ;
-lin noninfectious_A = mkA "noninfectious" "more noninfectious" "most noninfectious" "noninfectiously" ;
-lin rambunctious_A = mkA "rambunctious" "more rambunctious" "most rambunctious" "rambunctiously" ;
-lin facetious_A = mkA "facetious" "more facetious" "most facetious" "facetiously" ;
-lin ambitious_A = mkA "ambitious" "more ambitious" "most ambitious" "ambitiously" ;
-lin unambitious_A = mkA "unambitious" "more unambitious" "most unambitious" "unambitiously" ;
-lin overambitious_A = mkA "overambitious" "more overambitious" "most overambitious" "overambitiously" ;
-lin expeditious_A = mkA "expeditious" "more expeditious" "most expeditious" "expeditiously" ;
-lin seditious_A = mkA "seditious" "more seditious" "most seditious" "seditiously" ;
-lin flagitious_A = mkA "flagitious" "more flagitious" "most flagitious" "flagitiously" ;
-lin propitious_A = mkA "propitious" "more propitious" "most propitious" "propitiously" ;
-lin unpropitious_A = mkA "unpropitious" "more unpropitious" "most unpropitious" "unpropitiously" ;
-lin nutritious_A = mkA "nutritious" "more nutritious" "most nutritious" "nutritiously" ;
-lin factitious_A = mkA "factitious" "more factitious" "most factitious" "factitiously" ;
-lin fictitious_A = mkA "fictitious" "more fictitious" "most fictitious" "fictitiously" ;
-lin repetitious_A = mkA "repetitious" "more repetitious" "most repetitious" "repetitiously" ;
-lin adscititious_A = mkA "adscititious" "more adscititious" "most adscititious" "adscititiously" ;
-lin cementitious_A = mkA "cementitious" "more cementitious" "most cementitious" "cementitiously" ;
-lin adventitious_A = mkA "adventitious" "more adventitious" "most adventitious" "adventitiously" ;
-lin surreptitious_A = mkA "surreptitious" "more surreptitious" "most surreptitious" "surreptitiously" ;
-lin superstitious_A = mkA "superstitious" "more superstitious" "most superstitious" "superstitiously" ;
-lin licentious_A = mkA "licentious" "more licentious" "most licentious" "licentiously" ;
-lin tendentious_A = mkA "tendentious" "more tendentious" "most tendentious" "tendentiously" ;
-lin conscientious_A = mkA "conscientious" "more conscientious" "most conscientious" "conscientiously" ;
-lin unconscientious_A = mkA "unconscientious" "more unconscientious" "most unconscientious" "unconscientiously" ;
-lin dissentious_A = mkA "dissentious" "more dissentious" "most dissentious" "dissentiously" ;
-lin pretentious_A = mkA "pretentious" "more pretentious" "most pretentious" "pretentiously" ;
-lin unpretentious_A = mkA "unpretentious" "more unpretentious" "most unpretentious" "unpretentiously" ;
-lin sententious_A = mkA "sententious" "more sententious" "most sententious" "sententiously" ;
-lin contentious_A = mkA "contentious" "more contentious" "most contentious" "contentiously" ;
-lin 'non-contentious_A' = mkA "non-contentious" "more non-contentious" "most non-contentious" "non-contentiously" ;
-lin noncontentious_A = mkA "noncontentious" "more noncontentious" "most noncontentious" "noncontentiously" ;
-lin captious_A = mkA "captious" "more captious" "most captious" "captiously" ;
-lin bumptious_A = mkA "bumptious" "more bumptious" "most bumptious" "bumptiously" ;
-lin scrumptious_A = mkA "scrumptious" "more scrumptious" "most scrumptious" "scrumptiously" ;
-lin tortious_A = mkA "tortious" "more tortious" "most tortious" "tortiously" ;
-lin rumbustious_A = mkA "rumbustious" "more rumbustious" "most rumbustious" "rumbustiously" ;
-lin cautious_A = mkA "cautious" "more cautious" "most cautious" "cautiously" ;
-lin incautious_A = mkA "incautious" "more incautious" "most incautious" "incautiously" ;
-lin overcautious_A = mkA "overcautious" "more overcautious" "most overcautious" "overcautiously" ;
-lin circumlocutious_A = mkA "circumlocutious" "more circumlocutious" "most circumlocutious" "circumlocutiously" ;
-lin obsequious_A = mkA "obsequious" "more obsequious" "most obsequious" "obsequiously" ;
-lin obvious_A = mkA "obvious" "more obvious" "most obvious" "obviously" ;
-lin unobvious_A = mkA "unobvious" "more unobvious" "most unobvious" "unobviously" ;
-lin devious_A = mkA "devious" "more devious" "most devious" "deviously" ;
-lin previous_A = mkA "previous" "more previous" "most previous" "previously" ;
-lin lascivious_A = mkA "lascivious" "more lascivious" "most lascivious" "lasciviously" ;
-lin oblivious_A = mkA "oblivious" "more oblivious" "most oblivious" "obliviously" ;
-lin envious_A = mkA "envious" "more envious" "most envious" "enviously" ;
-lin pervious_A = mkA "pervious" "more pervious" "most pervious" "perviously" ;
-lin impervious_A = mkA "impervious" "more impervious" "most impervious" "imperviously" ;
-lin anxious_A = mkA "anxious" "more anxious" "most anxious" "anxiously" ;
-lin overanxious_A = mkA "overanxious" "more overanxious" "most overanxious" "overanxiously" ;
-lin noxious_A = mkA "noxious" "more noxious" "most noxious" "noxiously" ;
-lin obnoxious_A = mkA "obnoxious" "more obnoxious" "most obnoxious" "obnoxiously" ;
-lin innoxious_A = mkA "innoxious" "more innoxious" "most innoxious" "innoxiously" ;
-lin scandalous_A = mkA "scandalous" "more scandalous" "most scandalous" "scandalously" ;
-lin jealous_A = mkA "jealous" "more jealous" "most jealous" "jealously" ;
-lin overjealous_A = mkA "overjealous" "more overjealous" "most overjealous" "overjealously" ;
-lin zealous_A = mkA "zealous" "more zealous" "most zealous" "zealously" ;
-lin overzealous_A = mkA "overzealous" "more overzealous" "most overzealous" "overzealously" ;
-lin acephalous_A = mkA "acephalous" "more acephalous" "most acephalous" "acephalously" ;
-lin bicephalous_A = mkA "bicephalous" "more bicephalous" "most bicephalous" "bicephalously" ;
-lin anomalous_A = mkA "anomalous" "more anomalous" "most anomalous" "anomalously" ;
-lin petalous_A = mkA "petalous" "more petalous" "most petalous" "petalously" ;
-lin apetalous_A = mkA "apetalous" "more apetalous" "most apetalous" "apetalously" ;
-lin gamopetalous_A = mkA "gamopetalous" "more gamopetalous" "most gamopetalous" "gamopetalously" ;
-lin polypetalous_A = mkA "polypetalous" "more polypetalous" "most polypetalous" "polypetalously" ;
-lin troublous_A = mkA "troublous" "more troublous" "most troublous" "troublously" ;
-lin acarpelous_A = mkA "acarpelous" "more acarpelous" "most acarpelous" "acarpelously" ;
-lin marvelous_A = mkA "marvelous" "more marvelous" "most marvelous" "marvelously" ;
-lin myrmecophilous_A = mkA "myrmecophilous" "more myrmecophilous" "most myrmecophilous" "myrmecophilously" ;
-lin anemophilous_A = mkA "anemophilous" "more anemophilous" "most anemophilous" "anemophilously" ;
-lin entomophilous_A = mkA "entomophilous" "more entomophilous" "most entomophilous" "entomophilously" ;
-lin pilous_A = mkA "pilous" "more pilous" "most pilous" "pilously" ;
-lin depilous_A = mkA "depilous" "more depilous" "most depilous" "depilously" ;
-lin perilous_A = mkA "perilous" "more perilous" "most perilous" "perilously" ;
-lin scurrilous_A = mkA "scurrilous" "more scurrilous" "most scurrilous" "scurrilously" ;
-lin callous_A = mkA "callous" "more callous" "most callous" "callously" ;
-lin libellous_A = mkA "libellous" "more libellous" "most libellous" "libellously" ;
-lin marvellous_A = mkA "marvellous" "more marvellous" "most marvellous" "marvellously" ;
-lin aphyllous_A = mkA "aphyllous" "more aphyllous" "most aphyllous" "aphyllously" ;
-lin hemimetabolous_A = mkA "hemimetabolous" "more hemimetabolous" "most hemimetabolous" "hemimetabolously" ;
-lin heterometabolous_A = mkA "heterometabolous" "more heterometabolous" "most heterometabolous" "heterometabolously" ;
-lin calcicolous_A = mkA "calcicolous" "more calcicolous" "most calcicolous" "calcicolously" ;
-lin nidicolous_A = mkA "nidicolous" "more nidicolous" "most nidicolous" "nidicolously" ;
-lin arenicolous_A = mkA "arenicolous" "more arenicolous" "most arenicolous" "arenicolously" ;
-lin saxicolous_A = mkA "saxicolous" "more saxicolous" "most saxicolous" "saxicolously" ;
-lin frivolous_A = mkA "frivolous" "more frivolous" "most frivolous" "frivolously" ;
-lin parlous_A = mkA "parlous" "more parlous" "most parlous" "parlously" ;
-lin fabulous_A = mkA "fabulous" "more fabulous" "most fabulous" "fabulously" ;
-lin nebulous_A = mkA "nebulous" "more nebulous" "most nebulous" "nebulously" ;
-lin bibulous_A = mkA "bibulous" "more bibulous" "most bibulous" "bibulously" ;
-lin miraculous_A = mkA "miraculous" "more miraculous" "most miraculous" "miraculously" ;
-lin ridiculous_A = mkA "ridiculous" "more ridiculous" "most ridiculous" "ridiculously" ;
-lin meticulous_A = mkA "meticulous" "more meticulous" "most meticulous" "meticulously" ;
-lin calculous_A = mkA "calculous" "more calculous" "most calculous" "calculously" ;
-lin tuberculous_A = mkA "tuberculous" "more tuberculous" "most tuberculous" "tuberculously" ;
-lin credulous_A = mkA "credulous" "more credulous" "most credulous" "credulously" ;
-lin incredulous_A = mkA "incredulous" "more incredulous" "most incredulous" "incredulously" ;
-lin overcredulous_A = mkA "overcredulous" "more overcredulous" "most overcredulous" "overcredulously" ;
-lin sedulous_A = mkA "sedulous" "more sedulous" "most sedulous" "sedulously" ;
-lin acidulous_A = mkA "acidulous" "more acidulous" "most acidulous" "acidulously" ;
-lin pendulous_A = mkA "pendulous" "more pendulous" "most pendulous" "pendulously" ;
-lin scrofulous_A = mkA "scrofulous" "more scrofulous" "most scrofulous" "scrofulously" ;
-lin emulous_A = mkA "emulous" "more emulous" "most emulous" "emulously" ;
-lin tremulous_A = mkA "tremulous" "more tremulous" "most tremulous" "tremulously" ;
-lin cumulous_A = mkA "cumulous" "more cumulous" "most cumulous" "cumulously" ;
-lin crapulous_A = mkA "crapulous" "more crapulous" "most crapulous" "crapulously" ;
-lin populous_A = mkA "populous" "more populous" "most populous" "populously" ;
-lin scrupulous_A = mkA "scrupulous" "more scrupulous" "most scrupulous" "scrupulously" ;
-lin unscrupulous_A = mkA "unscrupulous" "more unscrupulous" "most unscrupulous" "unscrupulously" ;
-lin querulous_A = mkA "querulous" "more querulous" "most querulous" "querulously" ;
-lin garrulous_A = mkA "garrulous" "more garrulous" "most garrulous" "garrulously" ;
-lin edentulous_A = mkA "edentulous" "more edentulous" "most edentulous" "edentulously" ;
-lin fistulous_A = mkA "fistulous" "more fistulous" "most fistulous" "fistulously" ;
-lin adactylous_A = mkA "adactylous" "more adactylous" "most adactylous" "adactylously" ;
-lin homostylous_A = mkA "homostylous" "more homostylous" "most homostylous" "homostylously" ;
-lin famous_A = mkA "famous" "more famous" "most famous" "famously" ;
-lin infamous_A = mkA "infamous" "more infamous" "most infamous" "infamously" ;
-lin bigamous_A = mkA "bigamous" "more bigamous" "most bigamous" "bigamously" ;
-lin endogamous_A = mkA "endogamous" "more endogamous" "most endogamous" "endogamously" ;
-lin allogamous_A = mkA "allogamous" "more allogamous" "most allogamous" "allogamously" ;
-lin monogamous_A = mkA "monogamous" "more monogamous" "most monogamous" "monogamously" ;
-lin cleistogamous_A = mkA "cleistogamous" "more cleistogamous" "most cleistogamous" "cleistogamously" ;
-lin autogamous_A = mkA "autogamous" "more autogamous" "most autogamous" "autogamously" ;
-lin exogamous_A = mkA "exogamous" "more exogamous" "most exogamous" "exogamously" ;
-lin polygamous_A = mkA "polygamous" "more polygamous" "most polygamous" "polygamously" ;
-lin blasphemous_A = mkA "blasphemous" "more blasphemous" "most blasphemous" "blasphemously" ;
-lin monosemous_A = mkA "monosemous" "more monosemous" "most monosemous" "monosemously" ;
-lin polysemous_A = mkA "polysemous" "more polysemous" "most polysemous" "polysemously" ;
-lin pusillanimous_A = mkA "pusillanimous" "more pusillanimous" "most pusillanimous" "pusillanimously" ;
-lin magnanimous_A = mkA "magnanimous" "more magnanimous" "most magnanimous" "magnanimously" ;
-lin unanimous_A = mkA "unanimous" "more unanimous" "most unanimous" "unanimously" ;
-lin venomous_A = mkA "venomous" "more venomous" "most venomous" "venomously" ;
-lin nonvenomous_A = mkA "nonvenomous" "more nonvenomous" "most nonvenomous" "nonvenomously" ;
-lin autonomous_A = mkA "autonomous" "more autonomous" "most autonomous" "autonomously" ;
-lin nonautonomous_A = mkA "nonautonomous" "more nonautonomous" "most nonautonomous" "nonautonomously" ;
-lin diadromous_A = mkA "diadromous" "more diadromous" "most diadromous" "diadromously" ;
-lin anadromous_A = mkA "anadromous" "more anadromous" "most anadromous" "anadromously" ;
-lin catadromous_A = mkA "catadromous" "more catadromous" "most catadromous" "catadromously" ;
-lin dichotomous_A = mkA "dichotomous" "more dichotomous" "most dichotomous" "dichotomously" ;
-lin spermous_A = mkA "spermous" "more spermous" "most spermous" "spermously" ;
-lin angiospermous_A = mkA "angiospermous" "more angiospermous" "most angiospermous" "angiospermously" ;
-lin gymnospermous_A = mkA "gymnospermous" "more gymnospermous" "most gymnospermous" "gymnospermously" ;
-lin cormous_A = mkA "cormous" "more cormous" "most cormous" "cormously" ;
-lin enormous_A = mkA "enormous" "more enormous" "most enormous" "enormously" ;
-lin posthumous_A = mkA "posthumous" "more posthumous" "most posthumous" "posthumously" ;
-lin brumous_A = mkA "brumous" "more brumous" "most brumous" "brumously" ;
-lin onymous_A = mkA "onymous" "more onymous" "most onymous" "onymously" ;
-lin pseudonymous_A = mkA "pseudonymous" "more pseudonymous" "most pseudonymous" "pseudonymously" ;
-lin anonymous_A = mkA "anonymous" "more anonymous" "most anonymous" "anonymously" ;
-lin synonymous_A = mkA "synonymous" "more synonymous" "most synonymous" "synonymously" ;
-lin eponymous_A = mkA "eponymous" "more eponymous" "most eponymous" "eponymously" ;
-lin antonymous_A = mkA "antonymous" "more antonymous" "most antonymous" "antonymously" ;
-lin diaphanous_A = mkA "diaphanous" "more diaphanous" "most diaphanous" "diaphanously" ;
-lin membranous_A = mkA "membranous" "more membranous" "most membranous" "membranously" ;
-lin collagenous_A = mkA "collagenous" "more collagenous" "most collagenous" "collagenously" ;
-lin indigenous_A = mkA "indigenous" "more indigenous" "most indigenous" "indigenously" ;
-lin endogenous_A = mkA "endogenous" "more endogenous" "most endogenous" "endogenously" ;
-lin biogenous_A = mkA "biogenous" "more biogenous" "most biogenous" "biogenously" ;
-lin erogenous_A = mkA "erogenous" "more erogenous" "most erogenous" "erogenously" ;
-lin heterogenous_A = mkA "heterogenous" "more heterogenous" "most heterogenous" "heterogenously" ;
-lin sporogenous_A = mkA "sporogenous" "more sporogenous" "most sporogenous" "sporogenously" ;
-lin nitrogenous_A = mkA "nitrogenous" "more nitrogenous" "most nitrogenous" "nitrogenously" ;
-lin autogenous_A = mkA "autogenous" "more autogenous" "most autogenous" "autogenously" ;
-lin exogenous_A = mkA "exogenous" "more exogenous" "most exogenous" "exogenously" ;
-lin gangrenous_A = mkA "gangrenous" "more gangrenous" "most gangrenous" "gangrenously" ;
-lin venous_A = mkA "venous" "more venous" "most venous" "venously" ;
-lin ravenous_A = mkA "ravenous" "more ravenous" "most ravenous" "ravenously" ;
-lin intravenous_A = mkA "intravenous" "more intravenous" "most intravenous" "intravenously" ;
-lin arteriovenous_A = mkA "arteriovenous" "more arteriovenous" "most arteriovenous" "arteriovenously" ;
-lin villainous_A = mkA "villainous" "more villainous" "most villainous" "villainously" ;
-lin mountainous_A = mkA "mountainous" "more mountainous" "most mountainous" "mountainously" ;
-lin mucinous_A = mkA "mucinous" "more mucinous" "most mucinous" "mucinously" ;
-lin libidinous_A = mkA "libidinous" "more libidinous" "most libidinous" "libidinously" ;
-lin tendinous_A = mkA "tendinous" "more tendinous" "most tendinous" "tendinously" ;
-lin pulchritudinous_A = mkA "pulchritudinous" "more pulchritudinous" "most pulchritudinous" "pulchritudinously" ;
-lin platitudinous_A = mkA "platitudinous" "more platitudinous" "most platitudinous" "platitudinously" ;
-lin altitudinous_A = mkA "altitudinous" "more altitudinous" "most altitudinous" "altitudinously" ;
-lin multitudinous_A = mkA "multitudinous" "more multitudinous" "most multitudinous" "multitudinously" ;
-lin heinous_A = mkA "heinous" "more heinous" "most heinous" "heinously" ;
-lin oleaginous_A = mkA "oleaginous" "more oleaginous" "most oleaginous" "oleaginously" ;
-lin cartilaginous_A = mkA "cartilaginous" "more cartilaginous" "most cartilaginous" "cartilaginously" ;
-lin fibrocartilaginous_A = mkA "fibrocartilaginous" "more fibrocartilaginous" "most fibrocartilaginous" "fibrocartilaginously" ;
-lin caliginous_A = mkA "caliginous" "more caliginous" "most caliginous" "caliginously" ;
-lin vitiliginous_A = mkA "vitiliginous" "more vitiliginous" "most vitiliginous" "vitiliginously" ;
-lin impetiginous_A = mkA "impetiginous" "more impetiginous" "most impetiginous" "impetiginously" ;
-lin vertiginous_A = mkA "vertiginous" "more vertiginous" "most vertiginous" "vertiginously" ;
-lin diclinous_A = mkA "diclinous" "more diclinous" "most diclinous" "diclinously" ;
-lin monoclinous_A = mkA "monoclinous" "more monoclinous" "most monoclinous" "monoclinously" ;
-lin ominous_A = mkA "ominous" "more ominous" "most ominous" "ominously" ;
-lin abdominous_A = mkA "abdominous" "more abdominous" "most abdominous" "abdominously" ;
-lin conterminous_A = mkA "conterminous" "more conterminous" "most conterminous" "conterminously" ;
-lin coterminous_A = mkA "coterminous" "more coterminous" "most coterminous" "coterminously" ;
-lin verminous_A = mkA "verminous" "more verminous" "most verminous" "verminously" ;
-lin albuminous_A = mkA "albuminous" "more albuminous" "most albuminous" "albuminously" ;
-lin leguminous_A = mkA "leguminous" "more leguminous" "most leguminous" "leguminously" ;
-lin luminous_A = mkA "luminous" "more luminous" "most luminous" "luminously" ;
-lin aluminous_A = mkA "aluminous" "more aluminous" "most aluminous" "aluminously" ;
-lin voluminous_A = mkA "voluminous" "more voluminous" "most voluminous" "voluminously" ;
-lin numinous_A = mkA "numinous" "more numinous" "most numinous" "numinously" ;
-lin ceruminous_A = mkA "ceruminous" "more ceruminous" "most ceruminous" "ceruminously" ;
-lin bituminous_A = mkA "bituminous" "more bituminous" "most bituminous" "bituminously" ;
-lin spinous_A = mkA "spinous" "more spinous" "most spinous" "spinously" ;
-lin fibrinous_A = mkA "fibrinous" "more fibrinous" "most fibrinous" "fibrinously" ;
-lin resinous_A = mkA "resinous" "more resinous" "most resinous" "resinously" ;
-lin nonresinous_A = mkA "nonresinous" "more nonresinous" "most nonresinous" "nonresinously" ;
-lin gelatinous_A = mkA "gelatinous" "more gelatinous" "most gelatinous" "gelatinously" ;
-lin cretinous_A = mkA "cretinous" "more cretinous" "most cretinous" "cretinously" ;
-lin chitinous_A = mkA "chitinous" "more chitinous" "most chitinous" "chitinously" ;
-lin glutinous_A = mkA "glutinous" "more glutinous" "most glutinous" "glutinously" ;
-lin nonglutinous_A = mkA "nonglutinous" "more nonglutinous" "most nonglutinous" "nonglutinously" ;
-lin mutinous_A = mkA "mutinous" "more mutinous" "most mutinous" "mutinously" ;
-lin ruinous_A = mkA "ruinous" "more ruinous" "most ruinous" "ruinously" ;
-lin vinous_A = mkA "vinous" "more vinous" "most vinous" "vinously" ;
-lin tyrannous_A = mkA "tyrannous" "more tyrannous" "most tyrannous" "tyrannously" ;
-lin dicotyledonous_A = mkA "dicotyledonous" "more dicotyledonous" "most dicotyledonous" "dicotyledonously" ;
-lin monocotyledonous_A = mkA "monocotyledonous" "more monocotyledonous" "most monocotyledonous" "monocotyledonously" ;
-lin cacophonous_A = mkA "cacophonous" "more cacophonous" "most cacophonous" "cacophonously" ;
-lin homophonous_A = mkA "homophonous" "more homophonous" "most homophonous" "homophonously" ;
-lin allochthonous_A = mkA "allochthonous" "more allochthonous" "most allochthonous" "allochthonously" ;
-lin autochthonous_A = mkA "autochthonous" "more autochthonous" "most autochthonous" "autochthonously" ;
-lin synchronous_A = mkA "synchronous" "more synchronous" "most synchronous" "synchronously" ;
-lin asynchronous_A = mkA "asynchronous" "more asynchronous" "most asynchronous" "asynchronously" ;
-lin nonsynchronous_A = mkA "nonsynchronous" "more nonsynchronous" "most nonsynchronous" "nonsynchronously" ;
-lin geosynchronous_A = mkA "geosynchronous" "more geosynchronous" "most geosynchronous" "geosynchronously" ;
-lin treasonous_A = mkA "treasonous" "more treasonous" "most treasonous" "treasonously" ;
-lin poisonous_A = mkA "poisonous" "more poisonous" "most poisonous" "poisonously" ;
-lin nonpoisonous_A = mkA "nonpoisonous" "more nonpoisonous" "most nonpoisonous" "nonpoisonously" ;
-lin monotonous_A = mkA "monotonous" "more monotonous" "most monotonous" "monotonously" ;
-lin gluttonous_A = mkA "gluttonous" "more gluttonous" "most gluttonous" "gluttonously" ;
-lin cavernous_A = mkA "cavernous" "more cavernous" "most cavernous" "cavernously" ;
-lin monogynous_A = mkA "monogynous" "more monogynous" "most monogynous" "monogynously" ;
-lin androgynous_A = mkA "androgynous" "more androgynous" "most androgynous" "androgynously" ;
-lin misogynous_A = mkA "misogynous" "more misogynous" "most misogynous" "misogynously" ;
-lin polygynous_A = mkA "polygynous" "more polygynous" "most polygynous" "polygynously" ;
-lin pompous_A = mkA "pompous" "more pompous" "most pompous" "pompously" ;
-lin unpompous_A = mkA "unpompous" "more unpompous" "most unpompous" "unpompously" ;
-lin anatropous_A = mkA "anatropous" "more anatropous" "most anatropous" "anatropously" ;
-lin amphitropous_A = mkA "amphitropous" "more amphitropous" "most amphitropous" "amphitropously" ;
-lin orthotropous_A = mkA "orthotropous" "more orthotropous" "most orthotropous" "orthotropously" ;
-lin campylotropous_A = mkA "campylotropous" "more campylotropous" "most campylotropous" "campylotropously" ;
-lin acarpous_A = mkA "acarpous" "more acarpous" "most acarpous" "acarpously" ;
-lin syncarpous_A = mkA "syncarpous" "more syncarpous" "most syncarpous" "syncarpously" ;
-lin ascocarpous_A = mkA "ascocarpous" "more ascocarpous" "most ascocarpous" "ascocarpously" ;
-lin apocarpous_A = mkA "apocarpous" "more apocarpous" "most apocarpous" "apocarpously" ;
-lin acrocarpous_A = mkA "acrocarpous" "more acrocarpous" "most acrocarpous" "acrocarpously" ;
-lin pleurocarpous_A = mkA "pleurocarpous" "more pleurocarpous" "most pleurocarpous" "pleurocarpously" ;
-lin barbarous_A = mkA "barbarous" "more barbarous" "most barbarous" "barbarously" ;
-lin parous_A = mkA "parous" "more parous" "most parous" "parously" ;
-lin biparous_A = mkA "biparous" "more biparous" "most biparous" "biparously" ;
-lin primiparous_A = mkA "primiparous" "more primiparous" "most primiparous" "primiparously" ;
-lin uniparous_A = mkA "uniparous" "more uniparous" "most uniparous" "uniparously" ;
-lin fissiparous_A = mkA "fissiparous" "more fissiparous" "most fissiparous" "fissiparously" ;
-lin multiparous_A = mkA "multiparous" "more multiparous" "most multiparous" "multiparously" ;
-lin viviparous_A = mkA "viviparous" "more viviparous" "most viviparous" "viviparously" ;
-lin ovoviviparous_A = mkA "ovoviviparous" "more ovoviviparous" "most ovoviviparous" "ovoviviparously" ;
-lin oviparous_A = mkA "oviparous" "more oviparous" "most oviparous" "oviparously" ;
-lin scabrous_A = mkA "scabrous" "more scabrous" "most scabrous" "scabrously" ;
-lin glabrous_A = mkA "glabrous" "more glabrous" "most glabrous" "glabrously" ;
-lin tenebrous_A = mkA "tenebrous" "more tenebrous" "most tenebrous" "tenebrously" ;
-lin fibrous_A = mkA "fibrous" "more fibrous" "most fibrous" "fibrously" ;
-lin cumbrous_A = mkA "cumbrous" "more cumbrous" "most cumbrous" "cumbrously" ;
-lin ludicrous_A = mkA "ludicrous" "more ludicrous" "most ludicrous" "ludicrously" ;
-lin chancrous_A = mkA "chancrous" "more chancrous" "most chancrous" "chancrously" ;
-lin monandrous_A = mkA "monandrous" "more monandrous" "most monandrous" "monandrously" ;
-lin polyandrous_A = mkA "polyandrous" "more polyandrous" "most polyandrous" "polyandrously" ;
-lin wondrous_A = mkA "wondrous" "more wondrous" "most wondrous" "wondrously" ;
-lin hydrous_A = mkA "hydrous" "more hydrous" "most hydrous" "hydrously" ;
-lin anhydrous_A = mkA "anhydrous" "more anhydrous" "most anhydrous" "anhydrously" ;
-lin slumberous_A = mkA "slumberous" "more slumberous" "most slumberous" "slumberously" ;
-lin tuberous_A = mkA "tuberous" "more tuberous" "most tuberous" "tuberously" ;
-lin cerous_A = mkA "cerous" "more cerous" "most cerous" "cerously" ;
-lin chelicerous_A = mkA "chelicerous" "more chelicerous" "most chelicerous" "chelicerously" ;
-lin ulcerous_A = mkA "ulcerous" "more ulcerous" "most ulcerous" "ulcerously" ;
-lin cancerous_A = mkA "cancerous" "more cancerous" "most cancerous" "cancerously" ;
-lin precancerous_A = mkA "precancerous" "more precancerous" "most precancerous" "precancerously" ;
-lin slanderous_A = mkA "slanderous" "more slanderous" "most slanderous" "slanderously" ;
-lin ponderous_A = mkA "ponderous" "more ponderous" "most ponderous" "ponderously" ;
-lin thunderous_A = mkA "thunderous" "more thunderous" "most thunderous" "thunderously" ;
-lin murderous_A = mkA "murderous" "more murderous" "most murderous" "murderously" ;
-lin calciferous_A = mkA "calciferous" "more calciferous" "most calciferous" "calciferously" ;
-lin vociferous_A = mkA "vociferous" "more vociferous" "most vociferous" "vociferously" ;
-lin muciferous_A = mkA "muciferous" "more muciferous" "most muciferous" "muciferously" ;
-lin cruciferous_A = mkA "cruciferous" "more cruciferous" "most cruciferous" "cruciferously" ;
-lin splendiferous_A = mkA "splendiferous" "more splendiferous" "most splendiferous" "splendiferously" ;
-lin saliferous_A = mkA "saliferous" "more saliferous" "most saliferous" "saliferously" ;
-lin cheliferous_A = mkA "cheliferous" "more cheliferous" "most cheliferous" "cheliferously" ;
-lin fossiliferous_A = mkA "fossiliferous" "more fossiliferous" "most fossiliferous" "fossiliferously" ;
-lin umbelliferous_A = mkA "umbelliferous" "more umbelliferous" "most umbelliferous" "umbelliferously" ;
-lin granuliferous_A = mkA "granuliferous" "more granuliferous" "most granuliferous" "granuliferously" ;
-lin chyliferous_A = mkA "chyliferous" "more chyliferous" "most chyliferous" "chyliferously" ;
-lin gemmiferous_A = mkA "gemmiferous" "more gemmiferous" "most gemmiferous" "gemmiferously" ;
-lin seminiferous_A = mkA "seminiferous" "more seminiferous" "most seminiferous" "seminiferously" ;
-lin aluminiferous_A = mkA "aluminiferous" "more aluminiferous" "most aluminiferous" "aluminiferously" ;
-lin carboniferous_A = mkA "carboniferous" "more carboniferous" "most carboniferous" "carboniferously" ;
-lin coniferous_A = mkA "coniferous" "more coniferous" "most coniferous" "coniferously" ;
-lin stoloniferous_A = mkA "stoloniferous" "more stoloniferous" "most stoloniferous" "stoloniferously" ;
-lin nectariferous_A = mkA "nectariferous" "more nectariferous" "most nectariferous" "nectariferously" ;
-lin aeriferous_A = mkA "aeriferous" "more aeriferous" "most aeriferous" "aeriferously" ;
-lin odoriferous_A = mkA "odoriferous" "more odoriferous" "most odoriferous" "odoriferously" ;
-lin auriferous_A = mkA "auriferous" "more auriferous" "most auriferous" "auriferously" ;
-lin ossiferous_A = mkA "ossiferous" "more ossiferous" "most ossiferous" "ossiferously" ;
-lin argentiferous_A = mkA "argentiferous" "more argentiferous" "most argentiferous" "argentiferously" ;
-lin amentiferous_A = mkA "amentiferous" "more amentiferous" "most amentiferous" "amentiferously" ;
-lin pestiferous_A = mkA "pestiferous" "more pestiferous" "most pestiferous" "pestiferously" ;
-lin aquiferous_A = mkA "aquiferous" "more aquiferous" "most aquiferous" "aquiferously" ;
-lin dangerous_A = mkA "dangerous" "more dangerous" "most dangerous" "dangerously" ;
-lin treacherous_A = mkA "treacherous" "more treacherous" "most treacherous" "treacherously" ;
-lin lecherous_A = mkA "lecherous" "more lecherous" "most lecherous" "lecherously" ;
-lin cankerous_A = mkA "cankerous" "more cankerous" "most cankerous" "cankerously" ;
-lin cantankerous_A = mkA "cantankerous" "more cantankerous" "most cantankerous" "cantankerously" ;
-lin tetramerous_A = mkA "tetramerous" "more tetramerous" "most tetramerous" "tetramerously" ;
-lin pentamerous_A = mkA "pentamerous" "more pentamerous" "most pentamerous" "pentamerously" ;
-lin allomerous_A = mkA "allomerous" "more allomerous" "most allomerous" "allomerously" ;
-lin numerous_A = mkA "numerous" "more numerous" "most numerous" "numerously" ;
-lin generous_A = mkA "generous" "more generous" "most generous" "generously" ;
-lin ungenerous_A = mkA "ungenerous" "more ungenerous" "most ungenerous" "ungenerously" ;
-lin overgenerous_A = mkA "overgenerous" "more overgenerous" "most overgenerous" "overgenerously" ;
-lin onerous_A = mkA "onerous" "more onerous" "most onerous" "onerously" ;
-lin obstreperous_A = mkA "obstreperous" "more obstreperous" "most obstreperous" "obstreperously" ;
-lin prosperous_A = mkA "prosperous" "more prosperous" "most prosperous" "prosperously" ;
-lin serous_A = mkA "serous" "more serous" "most serous" "serously" ;
-lin adulterous_A = mkA "adulterous" "more adulterous" "most adulterous" "adulterously" ;
-lin apterous_A = mkA "apterous" "more apterous" "most apterous" "apterously" ;
-lin dipterous_A = mkA "dipterous" "more dipterous" "most dipterous" "dipterously" ;
-lin mecopterous_A = mkA "mecopterous" "more mecopterous" "most mecopterous" "mecopterously" ;
-lin hymenopterous_A = mkA "hymenopterous" "more hymenopterous" "most hymenopterous" "hymenopterously" ;
-lin brachypterous_A = mkA "brachypterous" "more brachypterous" "most brachypterous" "brachypterously" ;
-lin boisterous_A = mkA "boisterous" "more boisterous" "most boisterous" "boisterously" ;
-lin preposterous_A = mkA "preposterous" "more preposterous" "most preposterous" "preposterously" ;
-lin dexterous_A = mkA "dexterous" "more dexterous" "most dexterous" "dexterously" ;
-lin cadaverous_A = mkA "cadaverous" "more cadaverous" "most cadaverous" "cadaverously" ;
-lin desirous_A = mkA "desirous" "more desirous" "most desirous" "desirously" ;
-lin undesirous_A = mkA "undesirous" "more undesirous" "most undesirous" "undesirously" ;
-lin chivalrous_A = mkA "chivalrous" "more chivalrous" "most chivalrous" "chivalrously" ;
-lin decorous_A = mkA "decorous" "more decorous" "most decorous" "decorously" ;
-lin indecorous_A = mkA "indecorous" "more indecorous" "most indecorous" "indecorously" ;
-lin rancorous_A = mkA "rancorous" "more rancorous" "most rancorous" "rancorously" ;
-lin odorous_A = mkA "odorous" "more odorous" "most odorous" "odorously" ;
-lin malodorous_A = mkA "malodorous" "more malodorous" "most malodorous" "malodorously" ;
-lin rigorous_A = mkA "rigorous" "more rigorous" "most rigorous" "rigorously" ;
-lin vigorous_A = mkA "vigorous" "more vigorous" "most vigorous" "vigorously" ;
-lin clangorous_A = mkA "clangorous" "more clangorous" "most clangorous" "clangorously" ;
-lin ichorous_A = mkA "ichorous" "more ichorous" "most ichorous" "ichorously" ;
-lin phosphorous_A = mkA "phosphorous" "more phosphorous" "most phosphorous" "phosphorously" ;
-lin valorous_A = mkA "valorous" "more valorous" "most valorous" "valorously" ;
-lin dolorous_A = mkA "dolorous" "more dolorous" "most dolorous" "dolorously" ;
-lin amorous_A = mkA "amorous" "more amorous" "most amorous" "amorously" ;
-lin clamorous_A = mkA "clamorous" "more clamorous" "most clamorous" "clamorously" ;
-lin glamorous_A = mkA "glamorous" "more glamorous" "most glamorous" "glamorously" ;
-lin timorous_A = mkA "timorous" "more timorous" "most timorous" "timorously" ;
-lin humorous_A = mkA "humorous" "more humorous" "most humorous" "humorously" ;
-lin canorous_A = mkA "canorous" "more canorous" "most canorous" "canorously" ;
-lin sonorous_A = mkA "sonorous" "more sonorous" "most sonorous" "sonorously" ;
-lin porous_A = mkA "porous" "more porous" "most porous" "porously" ;
-lin vaporous_A = mkA "vaporous" "more vaporous" "most vaporous" "vaporously" ;
-lin nonporous_A = mkA "nonporous" "more nonporous" "most nonporous" "nonporously" ;
-lin basidiosporous_A = mkA "basidiosporous" "more basidiosporous" "most basidiosporous" "basidiosporously" ;
-lin homosporous_A = mkA "homosporous" "more homosporous" "most homosporous" "homosporously" ;
-lin carposporous_A = mkA "carposporous" "more carposporous" "most carposporous" "carposporously" ;
-lin heterosporous_A = mkA "heterosporous" "more heterosporous" "most heterosporous" "heterosporously" ;
-lin traitorous_A = mkA "traitorous" "more traitorous" "most traitorous" "traitorously" ;
-lin stertorous_A = mkA "stertorous" "more stertorous" "most stertorous" "stertorously" ;
-lin languorous_A = mkA "languorous" "more languorous" "most languorous" "languorously" ;
-lin herbivorous_A = mkA "herbivorous" "more herbivorous" "most herbivorous" "herbivorously" ;
-lin baccivorous_A = mkA "baccivorous" "more baccivorous" "most baccivorous" "baccivorously" ;
-lin piscivorous_A = mkA "piscivorous" "more piscivorous" "most piscivorous" "piscivorously" ;
-lin omnivorous_A = mkA "omnivorous" "more omnivorous" "most omnivorous" "omnivorously" ;
-lin carnivorous_A = mkA "carnivorous" "more carnivorous" "most carnivorous" "carnivorously" ;
-lin apivorous_A = mkA "apivorous" "more apivorous" "most apivorous" "apivorously" ;
-lin insectivorous_A = mkA "insectivorous" "more insectivorous" "most insectivorous" "insectivorously" ;
-lin leprous_A = mkA "leprous" "more leprous" "most leprous" "leprously" ;
-lin ferrous_A = mkA "ferrous" "more ferrous" "most ferrous" "ferrously" ;
-lin idolatrous_A = mkA "idolatrous" "more idolatrous" "most idolatrous" "idolatrously" ;
-lin bibliolatrous_A = mkA "bibliolatrous" "more bibliolatrous" "most bibliolatrous" "bibliolatrously" ;
-lin petrous_A = mkA "petrous" "more petrous" "most petrous" "petrously" ;
-lin citrous_A = mkA "citrous" "more citrous" "most citrous" "citrously" ;
-lin nitrous_A = mkA "nitrous" "more nitrous" "most nitrous" "nitrously" ;
-lin disastrous_A = mkA "disastrous" "more disastrous" "most disastrous" "disastrously" ;
-lin estrous_A = mkA "estrous" "more estrous" "most estrous" "estrously" ;
-lin diestrous_A = mkA "diestrous" "more diestrous" "most diestrous" "diestrously" ;
-lin anestrous_A = mkA "anestrous" "more anestrous" "most anestrous" "anestrously" ;
-lin monestrous_A = mkA "monestrous" "more monestrous" "most monestrous" "monestrously" ;
-lin polyestrous_A = mkA "polyestrous" "more polyestrous" "most polyestrous" "polyestrously" ;
-lin monstrous_A = mkA "monstrous" "more monstrous" "most monstrous" "monstrously" ;
-lin lustrous_A = mkA "lustrous" "more lustrous" "most lustrous" "lustrously" ;
-lin dextrous_A = mkA "dextrous" "more dextrous" "most dextrous" "dextrously" ;
-lin ambidextrous_A = mkA "ambidextrous" "more ambidextrous" "most ambidextrous" "ambidextrously" ;
-lin aurous_A = mkA "aurous" "more aurous" "most aurous" "aurously" ;
-lin sulfurous_A = mkA "sulfurous" "more sulfurous" "most sulfurous" "sulfurously" ;
-lin sulphurous_A = mkA "sulphurous" "more sulphurous" "most sulphurous" "sulphurously" ;
-lin murmurous_A = mkA "murmurous" "more murmurous" "most murmurous" "murmurously" ;
-lin anurous_A = mkA "anurous" "more anurous" "most anurous" "anurously" ;
-lin dolourous_A = mkA "dolourous" "more dolourous" "most dolourous" "dolourously" ;
-lin venturous_A = mkA "venturous" "more venturous" "most venturous" "venturously" ;
-lin adventurous_A = mkA "adventurous" "more adventurous" "most adventurous" "adventurously" ;
-lin unadventurous_A = mkA "unadventurous" "more unadventurous" "most unadventurous" "unadventurously" ;
-lin rapturous_A = mkA "rapturous" "more rapturous" "most rapturous" "rapturously" ;
-lin brachyurous_A = mkA "brachyurous" "more brachyurous" "most brachyurous" "brachyurously" ;
-lin edematous_A = mkA "edematous" "more edematous" "most edematous" "edematously" ;
-lin erythematous_A = mkA "erythematous" "more erythematous" "most erythematous" "erythematously" ;
-lin emphysematous_A = mkA "emphysematous" "more emphysematous" "most emphysematous" "emphysematously" ;
-lin angiomatous_A = mkA "angiomatous" "more angiomatous" "most angiomatous" "angiomatously" ;
-lin granulomatous_A = mkA "granulomatous" "more granulomatous" "most granulomatous" "granulomatously" ;
-lin carcinomatous_A = mkA "carcinomatous" "more carcinomatous" "most carcinomatous" "carcinomatously" ;
-lin adenocarcinomatous_A = mkA "adenocarcinomatous" "more adenocarcinomatous" "most adenocarcinomatous" "adenocarcinomatously" ;
-lin atheromatous_A = mkA "atheromatous" "more atheromatous" "most atheromatous" "atheromatously" ;
-lin achromatous_A = mkA "achromatous" "more achromatous" "most achromatous" "achromatously" ;
-lin neuromatous_A = mkA "neuromatous" "more neuromatous" "most neuromatous" "neuromatously" ;
-lin scotomatous_A = mkA "scotomatous" "more scotomatous" "most scotomatous" "scotomatously" ;
-lin stomatous_A = mkA "stomatous" "more stomatous" "most stomatous" "stomatously" ;
-lin astomatous_A = mkA "astomatous" "more astomatous" "most astomatous" "astomatously" ;
-lin rhizomatous_A = mkA "rhizomatous" "more rhizomatous" "most rhizomatous" "rhizomatously" ;
-lin pachydermatous_A = mkA "pachydermatous" "more pachydermatous" "most pachydermatous" "pachydermatously" ;
-lin ascomycetous_A = mkA "ascomycetous" "more ascomycetous" "most ascomycetous" "ascomycetously" ;
-lin discomycetous_A = mkA "discomycetous" "more discomycetous" "most discomycetous" "discomycetously" ;
-lin basidiomycetous_A = mkA "basidiomycetous" "more basidiomycetous" "most basidiomycetous" "basidiomycetously" ;
-lin covetous_A = mkA "covetous" "more covetous" "most covetous" "covetously" ;
-lin felicitous_A = mkA "felicitous" "more felicitous" "most felicitous" "felicitously" ;
-lin infelicitous_A = mkA "infelicitous" "more infelicitous" "most infelicitous" "infelicitously" ;
-lin solicitous_A = mkA "solicitous" "more solicitous" "most solicitous" "solicitously" ;
-lin oversolicitous_A = mkA "oversolicitous" "more oversolicitous" "most oversolicitous" "oversolicitously" ;
-lin calamitous_A = mkA "calamitous" "more calamitous" "most calamitous" "calamitously" ;
-lin precipitous_A = mkA "precipitous" "more precipitous" "most precipitous" "precipitously" ;
-lin serendipitous_A = mkA "serendipitous" "more serendipitous" "most serendipitous" "serendipitously" ;
-lin alacritous_A = mkA "alacritous" "more alacritous" "most alacritous" "alacritously" ;
-lin necessitous_A = mkA "necessitous" "more necessitous" "most necessitous" "necessitously" ;
-lin circuitous_A = mkA "circuitous" "more circuitous" "most circuitous" "circuitously" ;
-lin ubiquitous_A = mkA "ubiquitous" "more ubiquitous" "most ubiquitous" "ubiquitously" ;
-lin iniquitous_A = mkA "iniquitous" "more iniquitous" "most iniquitous" "iniquitously" ;
-lin gratuitous_A = mkA "gratuitous" "more gratuitous" "most gratuitous" "gratuitously" ;
-lin fortuitous_A = mkA "fortuitous" "more fortuitous" "most fortuitous" "fortuitously" ;
-lin acclivitous_A = mkA "acclivitous" "more acclivitous" "most acclivitous" "acclivitously" ;
-lin declivitous_A = mkA "declivitous" "more declivitous" "most declivitous" "declivitously" ;
-lin argentous_A = mkA "argentous" "more argentous" "most argentous" "argentously" ;
-lin filamentous_A = mkA "filamentous" "more filamentous" "most filamentous" "filamentously" ;
-lin momentous_A = mkA "momentous" "more momentous" "most momentous" "momentously" ;
-lin jumentous_A = mkA "jumentous" "more jumentous" "most jumentous" "jumentously" ;
-lin portentous_A = mkA "portentous" "more portentous" "most portentous" "portentously" ;
-lin riotous_A = mkA "riotous" "more riotous" "most riotous" "riotously" ;
-lin vacuous_A = mkA "vacuous" "more vacuous" "most vacuous" "vacuously" ;
-lin conspicuous_A = mkA "conspicuous" "more conspicuous" "most conspicuous" "conspicuously" ;
-lin inconspicuous_A = mkA "inconspicuous" "more inconspicuous" "most inconspicuous" "inconspicuously" ;
-lin perspicuous_A = mkA "perspicuous" "more perspicuous" "most perspicuous" "perspicuously" ;
-lin innocuous_A = mkA "innocuous" "more innocuous" "most innocuous" "innocuously" ;
-lin promiscuous_A = mkA "promiscuous" "more promiscuous" "most promiscuous" "promiscuously" ;
-lin deciduous_A = mkA "deciduous" "more deciduous" "most deciduous" "deciduously" ;
-lin assiduous_A = mkA "assiduous" "more assiduous" "most assiduous" "assiduously" ;
-lin arduous_A = mkA "arduous" "more arduous" "most arduous" "arduously" ;
-lin ambiguous_A = mkA "ambiguous" "more ambiguous" "most ambiguous" "ambiguously" ;
-lin unambiguous_A = mkA "unambiguous" "more unambiguous" "most unambiguous" "unambiguously" ;
-lin contiguous_A = mkA "contiguous" "more contiguous" "most contiguous" "contiguously" ;
-lin exiguous_A = mkA "exiguous" "more exiguous" "most exiguous" "exiguously" ;
-lin mellifluous_A = mkA "mellifluous" "more mellifluous" "most mellifluous" "mellifluously" ;
-lin superfluous_A = mkA "superfluous" "more superfluous" "most superfluous" "superfluously" ;
-lin ingenuous_A = mkA "ingenuous" "more ingenuous" "most ingenuous" "ingenuously" ;
-lin disingenuous_A = mkA "disingenuous" "more disingenuous" "most disingenuous" "disingenuously" ;
-lin strenuous_A = mkA "strenuous" "more strenuous" "most strenuous" "strenuously" ;
-lin tenuous_A = mkA "tenuous" "more tenuous" "most tenuous" "tenuously" ;
-lin sinuous_A = mkA "sinuous" "more sinuous" "most sinuous" "sinuously" ;
-lin continuous_A = mkA "continuous" "more continuous" "most continuous" "continuously" ;
-lin discontinuous_A = mkA "discontinuous" "more discontinuous" "most discontinuous" "discontinuously" ;
-lin cernuous_A = mkA "cernuous" "more cernuous" "most cernuous" "cernuously" ;
-lin congruous_A = mkA "congruous" "more congruous" "most congruous" "congruously" ;
-lin incongruous_A = mkA "incongruous" "more incongruous" "most incongruous" "incongruously" ;
-lin sensuous_A = mkA "sensuous" "more sensuous" "most sensuous" "sensuously" ;
-lin fatuous_A = mkA "fatuous" "more fatuous" "most fatuous" "fatuously" ;
-lin anfractuous_A = mkA "anfractuous" "more anfractuous" "most anfractuous" "anfractuously" ;
-lin unctuous_A = mkA "unctuous" "more unctuous" "most unctuous" "unctuously" ;
-lin impetuous_A = mkA "impetuous" "more impetuous" "most impetuous" "impetuously" ;
-lin spirituous_A = mkA "spirituous" "more spirituous" "most spirituous" "spirituously" ;
-lin tumultuous_A = mkA "tumultuous" "more tumultuous" "most tumultuous" "tumultuously" ;
-lin sumptuous_A = mkA "sumptuous" "more sumptuous" "most sumptuous" "sumptuously" ;
-lin presumptuous_A = mkA "presumptuous" "more presumptuous" "most presumptuous" "presumptuously" ;
-lin voluptuous_A = mkA "voluptuous" "more voluptuous" "most voluptuous" "voluptuously" ;
-lin virtuous_A = mkA "virtuous" "more virtuous" "most virtuous" "virtuously" ;
-lin tortuous_A = mkA "tortuous" "more tortuous" "most tortuous" "tortuously" ;
-lin incestuous_A = mkA "incestuous" "more incestuous" "most incestuous" "incestuously" ;
-lin tempestuous_A = mkA "tempestuous" "more tempestuous" "most tempestuous" "tempestuously" ;
-lin flexuous_A = mkA "flexuous" "more flexuous" "most flexuous" "flexuously" ;
-lin mischievous_A = mkA "mischievous" "more mischievous" "most mischievous" "mischievously" ;
-lin grievous_A = mkA "grievous" "more grievous" "most grievous" "grievously" ;
-lin nervous_A = mkA "nervous" "more nervous" "most nervous" "nervously" ;
-lin overnervous_A = mkA "overnervous" "more overnervous" "most overnervous" "overnervously" ;
-lin joyous_A = mkA "joyous" "more joyous" "most joyous" "joyously" ;
-lin emeritus_A = mkA "emeritus" "more emeritus" "most emeritus" "emeritusly" ;
-lin lengthways_A = mkA "lengthways" "more lengthways" "most lengthways" "lengthwaysly" ;
-lin left_A = mkA "left" "lefter" "leftest" "left" ;
-lin last_A = mkA "last" "laster" "lastest" "last" ;
-lin neat_A = mkA "neat" "neater" "neatest" "neatly" ;
-lin great_A = mkA "great" "greater" "greatest" "greatly" ;
-lin fat_A = mkA "fat" "fatter" "fattest" "fatly" ;
-lin flat_A = mkA "flat" "flatter" "flattest" "flatly" ;
-lin pat_A = mkA "pat" "patter" "pattest" "patly" ;
-lin strict_A = mkA "strict" "stricter" "strictest" "strictly" ;
-lin fleet_A = mkA "fleet" "fleeter" "fleetest" "fleetly" ;
-lin sweet_A = mkA "sweet" "sweeter" "sweetest" "sweetly" ;
-lin quiet_A = mkA "quiet" "quieter" "quietest" "quietly" ;
-lin wet_A = mkA "wet" "wetter" "wettest" "wetly" ;
-lin daft_A = mkA "daft" "dafter" "daftest" "daftly" ;
-lin cleft_A = mkA "cleft" "clefter" "cleftest" "cleftly" ;
-lin swift_A = mkA "swift" "swifter" "swiftest" "swiftly" ;
-lin soft_A = mkA "soft" "softer" "softest" "softly" ;
-lin light_A = mkA "light" "lighter" "lightest" "lightly" ;
-lin slight_A = mkA "slight" "slighter" "slightest" "slightly" ; -- notcompound light_A ;
-lin bright_A = mkA "bright" "brighter" "brightest" "brightly" ;
-lin tight_A = mkA "tight" "tighter" "tightest" "tightly" ;
-lin fit_A = mkA "fit" "fitter" "fittest" "fitly" ;
-lin pleasant_A = mkA "pleasant" "pleasanter" "pleasantest" "pleasantly" ;
-lin truant_A = mkA "truant" "truanter" "truantest" "truantly" ;
-lin pent_A = mkA "pent" "penter" "pentest" "pently" ;
-lin faint_A = mkA "faint" "fainter" "faintest" "faintly" ;
-lin quaint_A = mkA "quaint" "quainter" "quaintest" "quaintly" ;
-lin blunt_A = mkA "blunt" "blunter" "bluntest" "bluntly" ;
-lin hot_A = mkA "hot" "hotter" "hottest" "hotly" ;
-lin apt_A = mkA "apt" "apter" "aptest" "aptly" ;
-lin kempt_A = mkA "kempt" "kempter" "kemptest" "kemptly" ;
-lin smart_A = mkA "smart" "smarter" "smartest" "smartly" ;
-lin dirt_A = mkA "dirt" "dirter" "dirtest" "dirtly" ;
-lin short_A = mkA "short" "shorter" "shortest" "shortly" ;
-lin port_A = mkA "port" "porter" "portest" "portly" ;
-lin East_A = mkA "East" "Easter" "Eastest" "Eastly" ;
-lin fast_A = mkA "fast" "faster" "fastest" "fastly" ;
-lin West_A = mkA "West" "Wester" "Westest" "Westly" ;
-lin best_A = mkA "best" "bester" "bestest" "bestly" ;
-lin deist_A = mkA "deist" "deister" "deistest" "deistly" ;
-lin theist_A = mkA "theist" "theister" "theistest" "theistly" ;
-lin worst_A = mkA "worst" "worster" "worstest" "worstly" ;
-lin just_A = mkA "just" "juster" "justest" "justly" ;
-lin rust_A = mkA "rust" "ruster" "rustest" "rustly" ;
-lin taut_A = mkA "taut" "tauter" "tautest" "tautly" ;
-lin out_A = mkA "out" "outer" "outest" "outly" ;
-lin stout_A = mkA "stout" "stouter" "stoutest" "stoutly" ; -- notcompound out_A ;
-lin brut_A = mkA "brut" "brutter" "bruttest" "brutly" ;
-lin next_A = mkA "next" "more next" "most next" "next" ;
-lin 'hors de combat_A' = mkA "hors de combat" "more hors de combat" "most hors de combat" "hors de combatly" ;
-lin wildcat_A = mkA "wildcat" "more wildcat" "most wildcat" "wildcatly" ;
-lin offbeat_A = mkA "offbeat" "more offbeat" "most offbeat" "offbeatly" ;
-lin nonfat_A = mkA "nonfat" "more nonfat" "most nonfat" "nonfatly" ;
-lin mat_A = mkA "mat" "more mat" "most mat" "matly" ;
-lin afloat_A = mkA "afloat" "more afloat" "most afloat" "afloatly" ;
-lin 'cut-throat_A' = mkA "cut-throat" "more cut-throat" "most cut-throat" "cut-throatly" ;
-lin cutthroat_A = mkA "cutthroat" "more cutthroat" "most cutthroat" "cutthroatly" ;
-lin squat_A = mkA "squat" "more squat" "most squat" "squatly" ;
-lin 'matter-of-fact_A' = mkA "matter-of-fact" "more matter-of-fact" "most matter-of-fact" "matter-of-factly" ;
-lin compact_A = mkA "compact" "more compact" "most compact" "compactly" ;
-lin abstract_A = mkA "abstract" "more abstract" "most abstract" "abstractly" ;
-lin semiabstract_A = mkA "semiabstract" "more semiabstract" "most semiabstract" "semiabstractly" ;
-lin intact_A = mkA "intact" "more intact" "most intact" "intactly" ;
-lin exact_A = mkA "exact" "more exact" "most exact" "exactly" ;
-lin inexact_A = mkA "inexact" "more inexact" "most inexact" "inexactly" ;
-lin perfect_A = mkA "perfect" "more perfect" "most perfect" "perfectly" ;
-lin 'word-perfect_A' = mkA "word-perfect" "more word-perfect" "most word-perfect" "word-perfectly" ;
-lin imperfect_A = mkA "imperfect" "more imperfect" "most imperfect" "imperfectly" ;
-lin pluperfect_A = mkA "pluperfect" "more pluperfect" "most pluperfect" "pluperfectly" ;
-lin abject_A = mkA "abject" "more abject" "most abject" "abjectly" ;
-lin subject_A = mkA "subject" "more subject" "most subject" "subjectly" ;
-lin elect_A = mkA "elect" "more elect" "most elect" "electly" ;
-lin select_A = mkA "select" "more select" "most select" "selectly" ;
-lin collect_A = mkA "collect" "more collect" "most collect" "collectly" ;
-lin circumspect_A = mkA "circumspect" "more circumspect" "most circumspect" "circumspectly" ;
-lin suspect_A = mkA "suspect" "more suspect" "most suspect" "suspectly" ;
-lin erect_A = mkA "erect" "more erect" "most erect" "erectly" ;
-lin unerect_A = mkA "unerect" "more unerect" "most unerect" "unerectly" ;
-lin direct_A = mkA "direct" "more direct" "most direct" "directly" ;
-lin indirect_A = mkA "indirect" "more indirect" "most indirect" "indirectly" ;
-lin correct_A = mkA "correct" "more correct" "most correct" "correctly" ;
-lin incorrect_A = mkA "incorrect" "more incorrect" "most incorrect" "incorrectly" ;
-lin pinnatisect_A = mkA "pinnatisect" "more pinnatisect" "most pinnatisect" "pinnatisectly" ;
-lin derelict_A = mkA "derelict" "more derelict" "most derelict" "derelictly" ;
-lin sacrosanct_A = mkA "sacrosanct" "more sacrosanct" "most sacrosanct" "sacrosanctly" ;
-lin succinct_A = mkA "succinct" "more succinct" "most succinct" "succinctly" ;
-lin distinct_A = mkA "distinct" "more distinct" "most distinct" "distinctly" ;
-lin indistinct_A = mkA "indistinct" "more indistinct" "most indistinct" "indistinctly" ;
-lin instinct_A = mkA "instinct" "more instinct" "most instinct" "instinctly" ;
-lin extinct_A = mkA "extinct" "more extinct" "most extinct" "extinctly" ;
-lin defunct_A = mkA "defunct" "more defunct" "most defunct" "defunctly" ;
-lin adjunct_A = mkA "adjunct" "more adjunct" "most adjunct" "adjunctly" ;
-lin conjunct_A = mkA "conjunct" "more conjunct" "most conjunct" "conjunctly" ;
-lin disjunct_A = mkA "disjunct" "more disjunct" "most disjunct" "disjunctly" ;
-lin dulcet_A = mkA "dulcet" "more dulcet" "most dulcet" "dulcetly" ;
-lin meet_A = mkA "meet" "more meet" "most meet" "meetly" ;
-lin discreet_A = mkA "discreet" "more discreet" "most discreet" "discreetly" ;
-lin indiscreet_A = mkA "indiscreet" "more indiscreet" "most indiscreet" "indiscreetly" ;
-lin 'off-street_A' = mkA "off-street" "more off-street" "most off-street" "off-streetly" ;
-lin 'bitter-sweet_A' = mkA "bitter-sweet" "more bitter-sweet" "most bitter-sweet" "bitter-sweetly" ;
-lin unsweet_A = mkA "unsweet" "more unsweet" "most unsweet" "unsweetly" ;
-lin bittersweet_A = mkA "bittersweet" "more bittersweet" "most bittersweet" "bittersweetly" ;
-lin unquiet_A = mkA "unquiet" "more unquiet" "most unquiet" "unquietly" ;
-lin Soviet_A = mkA "Soviet" "more Soviet" "most Soviet" "Sovietly" ;
-lin 'down-market_A' = mkA "down-market" "more down-market" "most down-market" "down-marketly" ;
-lin 'up-market_A' = mkA "up-market" "more up-market" "most up-market" "up-marketly" ;
-lin downmarket_A = mkA "downmarket" "more downmarket" "most downmarket" "downmarketly" ;
-lin upmarket_A = mkA "upmarket" "more upmarket" "most upmarket" "upmarketly" ;
-lin ultraviolet_A = mkA "ultraviolet" "more ultraviolet" "most ultraviolet" "ultravioletly" ;
-lin scarlet_A = mkA "scarlet" "more scarlet" "most scarlet" "scarletly" ;
-lin net_A = mkA "net" "more net" "most net" "netly" ;
-lin brunet_A = mkA "brunet" "more brunet" "most brunet" "brunetly" ;
-lin secret_A = mkA "secret" "more secret" "most secret" "secretly" ;
-lin 'close-set_A' = mkA "close-set" "more close-set" "most close-set" "close-setly" ;
-lin 'thick-set_A' = mkA "thick-set" "more thick-set" "most thick-set" "thick-setly" ;
-lin 'well-set_A' = mkA "well-set" "more well-set" "most well-set" "well-setly" ;
-lin 'sharp-set_A' = mkA "sharp-set" "more sharp-set" "most sharp-set" "sharp-setly" ;
-lin preset_A = mkA "preset" "more preset" "most preset" "presetly" ;
-lin thickset_A = mkA "thickset" "more thickset" "most thickset" "thicksetly" ;
-lin quickset_A = mkA "quickset" "more quickset" "most quickset" "quicksetly" ;
-lin sunset_A = mkA "sunset" "more sunset" "most sunset" "sunsetly" ;
-lin closet_A = mkA "closet" "more closet" "most closet" "closetly" ;
-lin russet_A = mkA "russet" "more russet" "most russet" "russetly" ;
-lin lowset_A = mkA "lowset" "more lowset" "most lowset" "lowsetly" ;
-lin velvet_A = mkA "velvet" "more velvet" "most velvet" "velvetly" ;
-lin 'anti-aircraft_A' = mkA "anti-aircraft" "more anti-aircraft" "most anti-aircraft" "anti-aircraftly" ;
-lin antiaircraft_A = mkA "antiaircraft" "more antiaircraft" "most antiaircraft" "antiaircraftly" ;
-lin deft_A = mkA "deft" "more deft" "most deft" "deftly" ;
-lin bereft_A = mkA "bereft" "more bereft" "most bereft" "bereftly" ;
-lin adrift_A = mkA "adrift" "more adrift" "most adrift" "adriftly" ;
-lin straight_A = mkA "straight" "more straight" "most straight" "straightly" ;
-lin middleweight_A = mkA "middleweight" "more middleweight" "most middleweight" "middleweightly" ;
-lin underweight_A = mkA "underweight" "more underweight" "most underweight" "underweightly" ;
-lin overweight_A = mkA "overweight" "more overweight" "most overweight" "overweightly" ;
-lin lightweight_A = mkA "lightweight" "more lightweight" "most lightweight" "lightweightly" ;
-lin alight_A = mkA "alight" "more alight" "most alight" "alightly" ;
-lin 'top-flight_A' = mkA "top-flight" "more top-flight" "most top-flight" "top-flightly" ;
-lin overnight_A = mkA "overnight" "more overnight" "most overnight" "overnightly" ;
-lin right_A = mkA "right" "more right" "most right" "rightly" ;
-lin forthright_A = mkA "forthright" "more forthright" "most forthright" "forthrightly" ;
-lin alright_A = mkA "alright" "more alright" "most alright" "alrightly" ;
-lin downright_A = mkA "downright" "more downright" "most downright" "downrightly" ;
-lin upright_A = mkA "upright" "more upright" "most upright" "uprightly" ;
-lin outright_A = mkA "outright" "more outright" "most outright" "outrightly" ;
-lin 'skin-tight_A' = mkA "skin-tight" "more skin-tight" "most skin-tight" "skin-tightly" ;
-lin skintight_A = mkA "skintight" "more skintight" "most skintight" "skintightly" ;
-lin uptight_A = mkA "uptight" "more uptight" "most uptight" "uptightly" ;
-lin watertight_A = mkA "watertight" "more watertight" "most watertight" "watertightly" ;
-lin airtight_A = mkA "airtight" "more airtight" "most airtight" "airtightly" ;
-lin 'good-for-naught_A' = mkA "good-for-naught" "more good-for-naught" "most good-for-naught" "good-for-naughtly" ;
-lin fraught_A = mkA "fraught" "more fraught" "most fraught" "fraughtly" ;
-lin distraught_A = mkA "distraught" "more distraught" "most distraught" "distraughtly" ;
-lin inwrought_A = mkA "inwrought" "more inwrought" "most inwrought" "inwroughtly" ;
-lin overwrought_A = mkA "overwrought" "more overwrought" "most overwrought" "overwroughtly" ;
-lin 'au fait_A' = mkA "au fait" "more au fait" "most au fait" "au faitly" ;
-lin strait_A = mkA "strait" "more strait" "most strait" "straitly" ;
-lin distrait_A = mkA "distrait" "more distrait" "most distrait" "distraitly" ;
-lin tacit_A = mkA "tacit" "more tacit" "most tacit" "tacitly" ;
-lin licit_A = mkA "licit" "more licit" "most licit" "licitly" ;
-lin illicit_A = mkA "illicit" "more illicit" "most illicit" "illicitly" ;
-lin implicit_A = mkA "implicit" "more implicit" "most implicit" "implicitly" ;
-lin explicit_A = mkA "explicit" "more explicit" "most explicit" "explicitly" ;
-lin counterfeit_A = mkA "counterfeit" "more counterfeit" "most counterfeit" "counterfeitly" ;
-lin unfit_A = mkA "unfit" "more unfit" "most unfit" "unfitly" ;
-lin nonprofit_A = mkA "nonprofit" "more nonprofit" "most nonprofit" "nonprofitly" ;
-lin floodlit_A = mkA "floodlit" "more floodlit" "most floodlit" "floodlitly" ;
-lin twilit_A = mkA "twilit" "more twilit" "most twilit" "twilitly" ;
-lin moonlit_A = mkA "moonlit" "more moonlit" "most moonlit" "moonlitly" ;
-lin unlit_A = mkA "unlit" "more unlit" "most unlit" "unlitly" ;
-lin sunlit_A = mkA "sunlit" "more sunlit" "most sunlit" "sunlitly" ;
-lin lamplit_A = mkA "lamplit" "more lamplit" "most lamplit" "lamplitly" ;
-lin starlit_A = mkA "starlit" "more starlit" "most starlit" "starlitly" ;
-lin 'well-knit_A' = mkA "well-knit" "more well-knit" "most well-knit" "well-knitly" ;
-lin adroit_A = mkA "adroit" "more adroit" "most adroit" "adroitly" ;
-lin maladroit_A = mkA "maladroit" "more maladroit" "most maladroit" "maladroitly" ;
-lin decrepit_A = mkA "decrepit" "more decrepit" "most decrepit" "decrepitly" ;
-lin preterit_A = mkA "preterit" "more preterit" "most preterit" "preteritly" ;
-lin 'safe-deposit_A' = mkA "safe-deposit" "more safe-deposit" "most safe-deposit" "safe-depositly" ;
-lin halt_A = mkA "halt" "more halt" "most halt" "haltly" ;
-lin salt_A = mkA "salt" "more salt" "most salt" "saltly" ;
-lin heartfelt_A = mkA "heartfelt" "more heartfelt" "most heartfelt" "heartfeltly" ;
-lin unspoilt_A = mkA "unspoilt" "more unspoilt" "most unspoilt" "unspoiltly" ;
-lin atilt_A = mkA "atilt" "more atilt" "most atilt" "atiltly" ;
-lin 'square-built_A' = mkA "square-built" "more square-built" "most square-built" "square-builtly" ;
-lin 'purpose-built_A' = mkA "purpose-built" "more purpose-built" "most purpose-built" "purpose-builtly" ;
-lin 'custom-built_A' = mkA "custom-built" "more custom-built" "most custom-built" "custom-builtly" ;
-lin 'clinker-built_A' = mkA "clinker-built" "more clinker-built" "most clinker-built" "clinker-builtly" ;
-lin 'jerry-built_A' = mkA "jerry-built" "more jerry-built" "most jerry-built" "jerry-builtly" ;
-lin inbuilt_A = mkA "inbuilt" "more inbuilt" "most inbuilt" "inbuiltly" ;
-lin occult_A = mkA "occult" "more occult" "most occult" "occultly" ;
-lin difficult_A = mkA "difficult" "more difficult" "most difficult" "difficultly" ;
-lin adult_A = mkA "adult" "more adult" "most adult" "adultly" ;
-lin undreamt_A = mkA "undreamt" "more undreamt" "most undreamt" "undreamtly" ;
-lin vacant_A = mkA "vacant" "more vacant" "most vacant" "vacantly" ;
-lin impeccant_A = mkA "impeccant" "more impeccant" "most impeccant" "impeccantly" ;
-lin mendicant_A = mkA "mendicant" "more mendicant" "most mendicant" "mendicantly" ;
-lin significant_A = mkA "significant" "more significant" "most significant" "significantly" ;
-lin insignificant_A = mkA "insignificant" "more insignificant" "most insignificant" "insignificantly" ;
-lin nonsignificant_A = mkA "nonsignificant" "more nonsignificant" "most nonsignificant" "nonsignificantly" ;
-lin intoxicant_A = mkA "intoxicant" "more intoxicant" "most intoxicant" "intoxicantly" ;
-lin scant_A = mkA "scant" "more scant" "most scant" "scantly" ;
-lin ascendant_A = mkA "ascendant" "more ascendant" "most ascendant" "ascendantly" ;
-lin descendant_A = mkA "descendant" "more descendant" "most descendant" "descendantly" ;
-lin appendant_A = mkA "appendant" "more appendant" "most appendant" "appendantly" ;
-lin attendant_A = mkA "attendant" "more attendant" "most attendant" "attendantly" ;
-lin abundant_A = mkA "abundant" "more abundant" "most abundant" "abundantly" ;
-lin superabundant_A = mkA "superabundant" "more superabundant" "most superabundant" "superabundantly" ;
-lin overabundant_A = mkA "overabundant" "more overabundant" "most overabundant" "overabundantly" ;
-lin redundant_A = mkA "redundant" "more redundant" "most redundant" "redundantly" ;
-lin verdant_A = mkA "verdant" "more verdant" "most verdant" "verdantly" ;
-lin accordant_A = mkA "accordant" "more accordant" "most accordant" "accordantly" ;
-lin concordant_A = mkA "concordant" "more concordant" "most concordant" "concordantly" ;
-lin discordant_A = mkA "discordant" "more discordant" "most discordant" "discordantly" ;
-lin mordant_A = mkA "mordant" "more mordant" "most mordant" "mordantly" ;
-lin 'well-meant_A' = mkA "well-meant" "more well-meant" "most well-meant" "well-meantly" ;
-lin permeant_A = mkA "permeant" "more permeant" "most permeant" "permeantly" ;
-lin faineant_A = mkA "faineant" "more faineant" "most faineant" "faineantly" ;
-lin recreant_A = mkA "recreant" "more recreant" "most recreant" "recreantly" ;
-lin bouffant_A = mkA "bouffant" "more bouffant" "most bouffant" "bouffantly" ;
-lin extravagant_A = mkA "extravagant" "more extravagant" "most extravagant" "extravagantly" ;
-lin elegant_A = mkA "elegant" "more elegant" "most elegant" "elegantly" ;
-lin inelegant_A = mkA "inelegant" "more inelegant" "most inelegant" "inelegantly" ;
-lin arrogant_A = mkA "arrogant" "more arrogant" "most arrogant" "arrogantly" ;
-lin trenchant_A = mkA "trenchant" "more trenchant" "most trenchant" "trenchantly" ;
-lin couchant_A = mkA "couchant" "more couchant" "most couchant" "couchantly" ;
-lin triumphant_A = mkA "triumphant" "more triumphant" "most triumphant" "triumphantly" ;
-lin naiant_A = mkA "naiant" "more naiant" "most naiant" "naiantly" ;
-lin renunciant_A = mkA "renunciant" "more renunciant" "most renunciant" "renunciantly" ;
-lin insouciant_A = mkA "insouciant" "more insouciant" "most insouciant" "insouciantly" ;
-lin radiant_A = mkA "radiant" "more radiant" "most radiant" "radiantly" ;
-lin defiant_A = mkA "defiant" "more defiant" "most defiant" "defiantly" ;
-lin allegiant_A = mkA "allegiant" "more allegiant" "most allegiant" "allegiantly" ;
-lin valiant_A = mkA "valiant" "more valiant" "most valiant" "valiantly" ;
-lin overvaliant_A = mkA "overvaliant" "more overvaliant" "most overvaliant" "overvaliantly" ;
-lin reliant_A = mkA "reliant" "more reliant" "most reliant" "reliantly" ;
-lin 'self-reliant_A' = mkA "self-reliant" "more self-reliant" "most self-reliant" "self-reliantly" ;
-lin brilliant_A = mkA "brilliant" "more brilliant" "most brilliant" "brilliantly" ;
-lin pliant_A = mkA "pliant" "more pliant" "most pliant" "pliantly" ;
-lin compliant_A = mkA "compliant" "more compliant" "most compliant" "compliantly" ;
-lin suppliant_A = mkA "suppliant" "more suppliant" "most suppliant" "suppliantly" ;
-lin variant_A = mkA "variant" "more variant" "most variant" "variantly" ;
-lin invariant_A = mkA "invariant" "more invariant" "most invariant" "invariantly" ;
-lin covariant_A = mkA "covariant" "more covariant" "most covariant" "covariantly" ;
-lin euphoriant_A = mkA "euphoriant" "more euphoriant" "most euphoriant" "euphoriantly" ;
-lin luxuriant_A = mkA "luxuriant" "more luxuriant" "most luxuriant" "luxuriantly" ;
-lin deviant_A = mkA "deviant" "more deviant" "most deviant" "deviantly" ;
-lin nonchalant_A = mkA "nonchalant" "more nonchalant" "most nonchalant" "nonchalantly" ;
-lin inhalant_A = mkA "inhalant" "more inhalant" "most inhalant" "inhalantly" ;
-lin sibilant_A = mkA "sibilant" "more sibilant" "most sibilant" "sibilantly" ;
-lin jubilant_A = mkA "jubilant" "more jubilant" "most jubilant" "jubilantly" ;
-lin vigilant_A = mkA "vigilant" "more vigilant" "most vigilant" "vigilantly" ;
-lin unvigilant_A = mkA "unvigilant" "more unvigilant" "most unvigilant" "unvigilantly" ;
-lin gallant_A = mkA "gallant" "more gallant" "most gallant" "gallantly" ;
-lin topgallant_A = mkA "topgallant" "more topgallant" "most topgallant" "topgallantly" ;
-lin propellant_A = mkA "propellant" "more propellant" "most propellant" "propellantly" ;
-lin appellant_A = mkA "appellant" "more appellant" "most appellant" "appellantly" ;
-lin vacillant_A = mkA "vacillant" "more vacillant" "most vacillant" "vacillantly" ;
-lin aslant_A = mkA "aslant" "more aslant" "most aslant" "aslantly" ;
-lin ambulant_A = mkA "ambulant" "more ambulant" "most ambulant" "ambulantly" ;
-lin stimulant_A = mkA "stimulant" "more stimulant" "most stimulant" "stimulantly" ;
-lin petulant_A = mkA "petulant" "more petulant" "most petulant" "petulantly" ;
-lin adamant_A = mkA "adamant" "more adamant" "most adamant" "adamantly" ;
-lin clamant_A = mkA "clamant" "more clamant" "most clamant" "clamantly" ;
-lin dormant_A = mkA "dormant" "more dormant" "most dormant" "dormantly" ;
-lin revenant_A = mkA "revenant" "more revenant" "most revenant" "revenantly" ;
-lin stagnant_A = mkA "stagnant" "more stagnant" "most stagnant" "stagnantly" ;
-lin regnant_A = mkA "regnant" "more regnant" "most regnant" "regnantly" ;
-lin pregnant_A = mkA "pregnant" "more pregnant" "most pregnant" "pregnantly" ;
-lin nonpregnant_A = mkA "nonpregnant" "more nonpregnant" "most nonpregnant" "nonpregnantly" ;
-lin indignant_A = mkA "indignant" "more indignant" "most indignant" "indignantly" ;
-lin malignant_A = mkA "malignant" "more malignant" "most malignant" "malignantly" ;
-lin benignant_A = mkA "benignant" "more benignant" "most benignant" "benignantly" ;
-lin poignant_A = mkA "poignant" "more poignant" "most poignant" "poignantly" ;
-lin repugnant_A = mkA "repugnant" "more repugnant" "most repugnant" "repugnantly" ;
-lin recombinant_A = mkA "recombinant" "more recombinant" "most recombinant" "recombinantly" ;
-lin fulminant_A = mkA "fulminant" "more fulminant" "most fulminant" "fulminantly" ;
-lin dominant_A = mkA "dominant" "more dominant" "most dominant" "dominantly" ;
-lin predominant_A = mkA "predominant" "more predominant" "most predominant" "predominantly" ;
-lin determinant_A = mkA "determinant" "more determinant" "most determinant" "determinantly" ;
-lin ruminant_A = mkA "ruminant" "more ruminant" "most ruminant" "ruminantly" ;
-lin nonruminant_A = mkA "nonruminant" "more nonruminant" "most nonruminant" "nonruminantly" ;
-lin resonant_A = mkA "resonant" "more resonant" "most resonant" "resonantly" ;
-lin consonant_A = mkA "consonant" "more consonant" "most consonant" "consonantly" ;
-lin assonant_A = mkA "assonant" "more assonant" "most assonant" "assonantly" ;
-lin dissonant_A = mkA "dissonant" "more dissonant" "most dissonant" "dissonantly" ;
-lin discrepant_A = mkA "discrepant" "more discrepant" "most discrepant" "discrepantly" ;
-lin anticipant_A = mkA "anticipant" "more anticipant" "most anticipant" "anticipantly" ;
-lin rampant_A = mkA "rampant" "more rampant" "most rampant" "rampantly" ;
-lin flippant_A = mkA "flippant" "more flippant" "most flippant" "flippantly" ;
-lin vibrant_A = mkA "vibrant" "more vibrant" "most vibrant" "vibrantly" ;
-lin reverberant_A = mkA "reverberant" "more reverberant" "most reverberant" "reverberantly" ;
-lin unreverberant_A = mkA "unreverberant" "more unreverberant" "most unreverberant" "unreverberantly" ;
-lin protuberant_A = mkA "protuberant" "more protuberant" "most protuberant" "protuberantly" ;
-lin exuberant_A = mkA "exuberant" "more exuberant" "most exuberant" "exuberantly" ;
-lin preponderant_A = mkA "preponderant" "more preponderant" "most preponderant" "preponderantly" ;
-lin refrigerant_A = mkA "refrigerant" "more refrigerant" "most refrigerant" "refrigerantly" ;
-lin tolerant_A = mkA "tolerant" "more tolerant" "most tolerant" "tolerantly" ;
-lin intolerant_A = mkA "intolerant" "more intolerant" "most intolerant" "intolerantly" ;
-lin itinerant_A = mkA "itinerant" "more itinerant" "most itinerant" "itinerantly" ;
-lin operant_A = mkA "operant" "more operant" "most operant" "operantly" ;
-lin flagrant_A = mkA "flagrant" "more flagrant" "most flagrant" "flagrantly" ;
-lin fragrant_A = mkA "fragrant" "more fragrant" "most fragrant" "fragrantly" ;
-lin vagrant_A = mkA "vagrant" "more vagrant" "most vagrant" "vagrantly" ;
-lin migrant_A = mkA "migrant" "more migrant" "most migrant" "migrantly" ;
-lin aspirant_A = mkA "aspirant" "more aspirant" "most aspirant" "aspirantly" ;
-lin corroborant_A = mkA "corroborant" "more corroborant" "most corroborant" "corroborantly" ;
-lin ignorant_A = mkA "ignorant" "more ignorant" "most ignorant" "ignorantly" ;
-lin arrant_A = mkA "arrant" "more arrant" "most arrant" "arrantly" ;
-lin errant_A = mkA "errant" "more errant" "most errant" "errantly" ;
-lin aberrant_A = mkA "aberrant" "more aberrant" "most aberrant" "aberrantly" ;
-lin recalcitrant_A = mkA "recalcitrant" "more recalcitrant" "most recalcitrant" "recalcitrantly" ;
-lin ministrant_A = mkA "ministrant" "more ministrant" "most ministrant" "ministrantly" ;
-lin nurturant_A = mkA "nurturant" "more nurturant" "most nurturant" "nurturantly" ;
-lin unpleasant_A = mkA "unpleasant" "more unpleasant" "most unpleasant" "unpleasantly" ;
-lin complaisant_A = mkA "complaisant" "more complaisant" "most complaisant" "complaisantly" ;
-lin brisant_A = mkA "brisant" "more brisant" "most brisant" "brisantly" ;
-lin conversant_A = mkA "conversant" "more conversant" "most conversant" "conversantly" ;
-lin incessant_A = mkA "incessant" "more incessant" "most incessant" "incessantly" ;
-lin depressant_A = mkA "depressant" "more depressant" "most depressant" "depressantly" ;
-lin puissant_A = mkA "puissant" "more puissant" "most puissant" "puissantly" ;
-lin impuissant_A = mkA "impuissant" "more impuissant" "most impuissant" "impuissantly" ;
-lin recusant_A = mkA "recusant" "more recusant" "most recusant" "recusantly" ;
-lin combatant_A = mkA "combatant" "more combatant" "most combatant" "combatantly" ;
-lin noncombatant_A = mkA "noncombatant" "more noncombatant" "most noncombatant" "noncombatantly" ;
-lin blatant_A = mkA "blatant" "more blatant" "most blatant" "blatantly" ;
-lin supernatant_A = mkA "supernatant" "more supernatant" "most supernatant" "supernatantly" ;
-lin disinfectant_A = mkA "disinfectant" "more disinfectant" "most disinfectant" "disinfectantly" ;
-lin expectant_A = mkA "expectant" "more expectant" "most expectant" "expectantly" ;
-lin reluctant_A = mkA "reluctant" "more reluctant" "most reluctant" "reluctantly" ;
-lin exorbitant_A = mkA "exorbitant" "more exorbitant" "most exorbitant" "exorbitantly" ;
-lin excitant_A = mkA "excitant" "more excitant" "most excitant" "excitantly" ;
-lin militant_A = mkA "militant" "more militant" "most militant" "militantly" ;
-lin concomitant_A = mkA "concomitant" "more concomitant" "most concomitant" "concomitantly" ;
-lin palpitant_A = mkA "palpitant" "more palpitant" "most palpitant" "palpitantly" ;
-lin irritant_A = mkA "irritant" "more irritant" "most irritant" "irritantly" ;
-lin hesitant_A = mkA "hesitant" "more hesitant" "most hesitant" "hesitantly" ;
-lin resultant_A = mkA "resultant" "more resultant" "most resultant" "resultantly" ;
-lin exultant_A = mkA "exultant" "more exultant" "most exultant" "exultantly" ;
-lin repentant_A = mkA "repentant" "more repentant" "most repentant" "repentantly" ;
-lin unrepentant_A = mkA "unrepentant" "more unrepentant" "most unrepentant" "unrepentantly" ;
-lin important_A = mkA "important" "more important" "most important" "importantly" ;
-lin 'self-important_A' = mkA "self-important" "more self-important" "most self-important" "self-importantly" ;
-lin unimportant_A = mkA "unimportant" "more unimportant" "most unimportant" "unimportantly" ;
-lin protestant_A = mkA "protestant" "more protestant" "most protestant" "protestantly" ;
-lin distant_A = mkA "distant" "more distant" "most distant" "distantly" ;
-lin equidistant_A = mkA "equidistant" "more equidistant" "most equidistant" "equidistantly" ;
-lin resistant_A = mkA "resistant" "more resistant" "most resistant" "resistantly" ;
-lin nonresistant_A = mkA "nonresistant" "more nonresistant" "most nonresistant" "nonresistantly" ;
-lin instant_A = mkA "instant" "more instant" "most instant" "instantly" ;
-lin constant_A = mkA "constant" "more constant" "most constant" "constantly" ;
-lin inconstant_A = mkA "inconstant" "more inconstant" "most inconstant" "inconstantly" ;
-lin mutant_A = mkA "mutant" "more mutant" "most mutant" "mutantly" ;
-lin extant_A = mkA "extant" "more extant" "most extant" "extantly" ;
-lin nonextant_A = mkA "nonextant" "more nonextant" "most nonextant" "nonextantly" ;
-lin piquant_A = mkA "piquant" "more piquant" "most piquant" "piquantly" ;
-lin clinquant_A = mkA "clinquant" "more clinquant" "most clinquant" "clinquantly" ;
-lin pursuant_A = mkA "pursuant" "more pursuant" "most pursuant" "pursuantly" ;
-lin relevant_A = mkA "relevant" "more relevant" "most relevant" "relevantly" ;
-lin irrelevant_A = mkA "irrelevant" "more irrelevant" "most irrelevant" "irrelevantly" ;
-lin observant_A = mkA "observant" "more observant" "most observant" "observantly" ;
-lin nonobservant_A = mkA "nonobservant" "more nonobservant" "most nonobservant" "nonobservantly" ;
-lin unobservant_A = mkA "unobservant" "more unobservant" "most unobservant" "unobservantly" ;
-lin adjuvant_A = mkA "adjuvant" "more adjuvant" "most adjuvant" "adjuvantly" ;
-lin relaxant_A = mkA "relaxant" "more relaxant" "most relaxant" "relaxantly" ;
-lin abeyant_A = mkA "abeyant" "more abeyant" "most abeyant" "abeyantly" ;
-lin flamboyant_A = mkA "flamboyant" "more flamboyant" "most flamboyant" "flamboyantly" ;
-lin buoyant_A = mkA "buoyant" "more buoyant" "most buoyant" "buoyantly" ;
-lin clairvoyant_A = mkA "clairvoyant" "more clairvoyant" "most clairvoyant" "clairvoyantly" ;
-lin cognizant_A = mkA "cognizant" "more cognizant" "most cognizant" "cognizantly" ;
-lin bent_A = mkA "bent" "more bent" "most bent" "bently" ;
-lin lambent_A = mkA "lambent" "more lambent" "most lambent" "lambently" ;
-lin accumbent_A = mkA "accumbent" "more accumbent" "most accumbent" "accumbently" ;
-lin recumbent_A = mkA "recumbent" "more recumbent" "most recumbent" "recumbently" ;
-lin incumbent_A = mkA "incumbent" "more incumbent" "most incumbent" "incumbently" ;
-lin superincumbent_A = mkA "superincumbent" "more superincumbent" "most superincumbent" "superincumbently" ;
-lin procumbent_A = mkA "procumbent" "more procumbent" "most procumbent" "procumbently" ;
-lin unbent_A = mkA "unbent" "more unbent" "most unbent" "unbently" ;
-lin absorbent_A = mkA "absorbent" "more absorbent" "most absorbent" "absorbently" ;
-lin nonabsorbent_A = mkA "nonabsorbent" "more nonabsorbent" "most nonabsorbent" "nonabsorbently" ;
-lin adsorbent_A = mkA "adsorbent" "more adsorbent" "most adsorbent" "adsorbently" ;
-lin nonadsorbent_A = mkA "nonadsorbent" "more nonadsorbent" "most nonadsorbent" "nonadsorbently" ;
-lin subjacent_A = mkA "subjacent" "more subjacent" "most subjacent" "subjacently" ;
-lin adjacent_A = mkA "adjacent" "more adjacent" "most adjacent" "adjacently" ;
-lin nonadjacent_A = mkA "nonadjacent" "more nonadjacent" "most nonadjacent" "nonadjacently" ;
-lin superjacent_A = mkA "superjacent" "more superjacent" "most superjacent" "superjacently" ;
-lin complacent_A = mkA "complacent" "more complacent" "most complacent" "complacently" ;
-lin decent_A = mkA "decent" "more decent" "most decent" "decently" ;
-lin indecent_A = mkA "indecent" "more indecent" "most indecent" "indecently" ;
-lin recent_A = mkA "recent" "more recent" "most recent" "recently" ;
-lin maleficent_A = mkA "maleficent" "more maleficent" "most maleficent" "maleficently" ;
-lin beneficent_A = mkA "beneficent" "more beneficent" "most beneficent" "beneficently" ;
-lin magnificent_A = mkA "magnificent" "more magnificent" "most magnificent" "magnificently" ;
-lin munificent_A = mkA "munificent" "more munificent" "most munificent" "munificently" ;
-lin reticent_A = mkA "reticent" "more reticent" "most reticent" "reticently" ;
-lin demulcent_A = mkA "demulcent" "more demulcent" "most demulcent" "demulcently" ;
-lin nocent_A = mkA "nocent" "more nocent" "most nocent" "nocently" ;
-lin innocent_A = mkA "innocent" "more innocent" "most innocent" "innocently" ;
-lin nascent_A = mkA "nascent" "more nascent" "most nascent" "nascently" ;
-lin renascent_A = mkA "renascent" "more renascent" "most renascent" "renascently" ;
-lin albescent_A = mkA "albescent" "more albescent" "most albescent" "albescently" ;
-lin pubescent_A = mkA "pubescent" "more pubescent" "most pubescent" "pubescently" ;
-lin prepubescent_A = mkA "prepubescent" "more prepubescent" "most prepubescent" "prepubescently" ;
-lin iridescent_A = mkA "iridescent" "more iridescent" "most iridescent" "iridescently" ;
-lin candescent_A = mkA "candescent" "more candescent" "most candescent" "candescently" ;
-lin incandescent_A = mkA "incandescent" "more incandescent" "most incandescent" "incandescently" ;
-lin recrudescent_A = mkA "recrudescent" "more recrudescent" "most recrudescent" "recrudescently" ;
-lin quiescent_A = mkA "quiescent" "more quiescent" "most quiescent" "quiescently" ;
-lin acquiescent_A = mkA "acquiescent" "more acquiescent" "most acquiescent" "acquiescently" ;
-lin decalescent_A = mkA "decalescent" "more decalescent" "most decalescent" "decalescently" ;
-lin alkalescent_A = mkA "alkalescent" "more alkalescent" "most alkalescent" "alkalescently" ;
-lin coalescent_A = mkA "coalescent" "more coalescent" "most coalescent" "coalescently" ;
-lin opalescent_A = mkA "opalescent" "more opalescent" "most opalescent" "opalescently" ;
-lin convalescent_A = mkA "convalescent" "more convalescent" "most convalescent" "convalescently" ;
-lin adolescent_A = mkA "adolescent" "more adolescent" "most adolescent" "adolescently" ;
-lin obsolescent_A = mkA "obsolescent" "more obsolescent" "most obsolescent" "obsolescently" ;
-lin caulescent_A = mkA "caulescent" "more caulescent" "most caulescent" "caulescently" ;
-lin acaulescent_A = mkA "acaulescent" "more acaulescent" "most acaulescent" "acaulescently" ;
-lin tumescent_A = mkA "tumescent" "more tumescent" "most tumescent" "tumescently" ;
-lin canescent_A = mkA "canescent" "more canescent" "most canescent" "canescently" ;
-lin evanescent_A = mkA "evanescent" "more evanescent" "most evanescent" "evanescently" ;
-lin senescent_A = mkA "senescent" "more senescent" "most senescent" "senescently" ;
-lin ignescent_A = mkA "ignescent" "more ignescent" "most ignescent" "ignescently" ;
-lin luminescent_A = mkA "luminescent" "more luminescent" "most luminescent" "luminescently" ;
-lin chemiluminescent_A = mkA "chemiluminescent" "more chemiluminescent" "most chemiluminescent" "chemiluminescently" ;
-lin bioluminescent_A = mkA "bioluminescent" "more bioluminescent" "most bioluminescent" "bioluminescently" ;
-lin glabrescent_A = mkA "glabrescent" "more glabrescent" "most glabrescent" "glabrescently" ;
-lin excrescent_A = mkA "excrescent" "more excrescent" "most excrescent" "excrescently" ;
-lin phosphorescent_A = mkA "phosphorescent" "more phosphorescent" "most phosphorescent" "phosphorescently" ;
-lin efflorescent_A = mkA "efflorescent" "more efflorescent" "most efflorescent" "efflorescently" ;
-lin fluorescent_A = mkA "fluorescent" "more fluorescent" "most fluorescent" "fluorescently" ;
-lin autofluorescent_A = mkA "autofluorescent" "more autofluorescent" "most autofluorescent" "autofluorescently" ;
-lin putrescent_A = mkA "putrescent" "more putrescent" "most putrescent" "putrescently" ;
-lin suffrutescent_A = mkA "suffrutescent" "more suffrutescent" "most suffrutescent" "suffrutescently" ;
-lin liquescent_A = mkA "liquescent" "more liquescent" "most liquescent" "liquescently" ;
-lin deliquescent_A = mkA "deliquescent" "more deliquescent" "most deliquescent" "deliquescently" ;
-lin defervescent_A = mkA "defervescent" "more defervescent" "most defervescent" "defervescently" ;
-lin effervescent_A = mkA "effervescent" "more effervescent" "most effervescent" "effervescently" ;
-lin noneffervescent_A = mkA "noneffervescent" "more noneffervescent" "most noneffervescent" "noneffervescently" ;
-lin dehiscent_A = mkA "dehiscent" "more dehiscent" "most dehiscent" "dehiscently" ;
-lin indehiscent_A = mkA "indehiscent" "more indehiscent" "most indehiscent" "indehiscently" ;
-lin reminiscent_A = mkA "reminiscent" "more reminiscent" "most reminiscent" "reminiscently" ;
-lin abducent_A = mkA "abducent" "more abducent" "most abducent" "abducently" ;
-lin adducent_A = mkA "adducent" "more adducent" "most adducent" "adducently" ;
-lin lucent_A = mkA "lucent" "more lucent" "most lucent" "lucently" ;
-lin noctilucent_A = mkA "noctilucent" "more noctilucent" "most noctilucent" "noctilucently" ;
-lin radiolucent_A = mkA "radiolucent" "more radiolucent" "most radiolucent" "radiolucently" ;
-lin translucent_A = mkA "translucent" "more translucent" "most translucent" "translucently" ;
-lin decadent_A = mkA "decadent" "more decadent" "most decadent" "decadently" ;
-lin precedent_A = mkA "precedent" "more precedent" "most precedent" "precedently" ;
-lin antecedent_A = mkA "antecedent" "more antecedent" "most antecedent" "antecedently" ;
-lin incident_A = mkA "incident" "more incident" "most incident" "incidently" ;
-lin coincident_A = mkA "coincident" "more coincident" "most coincident" "coincidently" ;
-lin diffident_A = mkA "diffident" "more diffident" "most diffident" "diffidently" ;
-lin confident_A = mkA "confident" "more confident" "most confident" "confidently" ;
-lin 'self-confident_A' = mkA "self-confident" "more self-confident" "most self-confident" "self-confidently" ;
-lin overconfident_A = mkA "overconfident" "more overconfident" "most overconfident" "overconfidently" ;
-lin strident_A = mkA "strident" "more strident" "most strident" "stridently" ;
-lin resident_A = mkA "resident" "more resident" "most resident" "residently" ;
-lin nonresident_A = mkA "nonresident" "more nonresident" "most nonresident" "nonresidently" ;
-lin dissident_A = mkA "dissident" "more dissident" "most dissident" "dissidently" ;
-lin evident_A = mkA "evident" "more evident" "most evident" "evidently" ;
-lin 'self-evident_A' = mkA "self-evident" "more self-evident" "most self-evident" "self-evidently" ;
-lin provident_A = mkA "provident" "more provident" "most provident" "providently" ;
-lin improvident_A = mkA "improvident" "more improvident" "most improvident" "improvidently" ;
-lin scandent_A = mkA "scandent" "more scandent" "most scandent" "scandently" ;
-lin transcendent_A = mkA "transcendent" "more transcendent" "most transcendent" "transcendently" ;
-lin resplendent_A = mkA "resplendent" "more resplendent" "most resplendent" "resplendently" ;
-lin pendent_A = mkA "pendent" "more pendent" "most pendent" "pendently" ;
-lin dependent_A = mkA "dependent" "more dependent" "most dependent" "dependently" ;
-lin independent_A = mkA "independent" "more independent" "most independent" "independently" ;
-lin interdependent_A = mkA "interdependent" "more interdependent" "most interdependent" "interdependently" ;
-lin despondent_A = mkA "despondent" "more despondent" "most despondent" "despondently" ;
-lin ardent_A = mkA "ardent" "more ardent" "most ardent" "ardently" ;
-lin impudent_A = mkA "impudent" "more impudent" "most impudent" "impudently" ;
-lin prudent_A = mkA "prudent" "more prudent" "most prudent" "prudently" ;
-lin imprudent_A = mkA "imprudent" "more imprudent" "most imprudent" "imprudently" ;
-lin regent_A = mkA "regent" "more regent" "most regent" "regently" ;
-lin indigent_A = mkA "indigent" "more indigent" "most indigent" "indigently" ;
-lin negligent_A = mkA "negligent" "more negligent" "most negligent" "negligently" ;
-lin diligent_A = mkA "diligent" "more diligent" "most diligent" "diligently" ;
-lin intelligent_A = mkA "intelligent" "more intelligent" "most intelligent" "intelligently" ;
-lin unintelligent_A = mkA "unintelligent" "more unintelligent" "most unintelligent" "unintelligently" ;
-lin intransigent_A = mkA "intransigent" "more intransigent" "most intransigent" "intransigently" ;
-lin exigent_A = mkA "exigent" "more exigent" "most exigent" "exigently" ;
-lin indulgent_A = mkA "indulgent" "more indulgent" "most indulgent" "indulgently" ;
-lin 'self-indulgent_A' = mkA "self-indulgent" "more self-indulgent" "most self-indulgent" "self-indulgently" ;
-lin nonindulgent_A = mkA "nonindulgent" "more nonindulgent" "most nonindulgent" "nonindulgently" ;
-lin overindulgent_A = mkA "overindulgent" "more overindulgent" "most overindulgent" "overindulgently" ;
-lin refulgent_A = mkA "refulgent" "more refulgent" "most refulgent" "refulgently" ;
-lin effulgent_A = mkA "effulgent" "more effulgent" "most effulgent" "effulgently" ;
-lin plangent_A = mkA "plangent" "more plangent" "most plangent" "plangently" ;
-lin birefringent_A = mkA "birefringent" "more birefringent" "most birefringent" "birefringently" ;
-lin stringent_A = mkA "stringent" "more stringent" "most stringent" "stringently" ;
-lin astringent_A = mkA "astringent" "more astringent" "most astringent" "astringently" ;
-lin nonastringent_A = mkA "nonastringent" "more nonastringent" "most nonastringent" "nonastringently" ;
-lin contingent_A = mkA "contingent" "more contingent" "most contingent" "contingently" ;
-lin pungent_A = mkA "pungent" "more pungent" "most pungent" "pungently" ;
-lin cogent_A = mkA "cogent" "more cogent" "most cogent" "cogently" ;
-lin argent_A = mkA "argent" "more argent" "most argent" "argently" ;
-lin emergent_A = mkA "emergent" "more emergent" "most emergent" "emergently" ;
-lin detergent_A = mkA "detergent" "more detergent" "most detergent" "detergently" ;
-lin divergent_A = mkA "divergent" "more divergent" "most divergent" "divergently" ;
-lin convergent_A = mkA "convergent" "more convergent" "most convergent" "convergently" ;
-lin nonconvergent_A = mkA "nonconvergent" "more nonconvergent" "most nonconvergent" "nonconvergently" ;
-lin urgent_A = mkA "urgent" "more urgent" "most urgent" "urgently" ;
-lin resurgent_A = mkA "resurgent" "more resurgent" "most resurgent" "resurgently" ;
-lin insurgent_A = mkA "insurgent" "more insurgent" "most insurgent" "insurgently" ;
-lin counterinsurgent_A = mkA "counterinsurgent" "more counterinsurgent" "most counterinsurgent" "counterinsurgently" ;
-lin assurgent_A = mkA "assurgent" "more assurgent" "most assurgent" "assurgently" ;
-lin abient_A = mkA "abient" "more abient" "most abient" "abiently" ;
-lin ambient_A = mkA "ambient" "more ambient" "most ambient" "ambiently" ;
-lin mutafacient_A = mkA "mutafacient" "more mutafacient" "most mutafacient" "mutafaciently" ;
-lin absorbefacient_A = mkA "absorbefacient" "more absorbefacient" "most absorbefacient" "absorbefaciently" ;
-lin calefacient_A = mkA "calefacient" "more calefacient" "most calefacient" "calefaciently" ;
-lin calorifacient_A = mkA "calorifacient" "more calorifacient" "most calorifacient" "calorifaciently" ;
-lin abortifacient_A = mkA "abortifacient" "more abortifacient" "most abortifacient" "abortifaciently" ;
-lin deficient_A = mkA "deficient" "more deficient" "most deficient" "deficiently" ;
-lin immunodeficient_A = mkA "immunodeficient" "more immunodeficient" "most immunodeficient" "immunodeficiently" ;
-lin efficient_A = mkA "efficient" "more efficient" "most efficient" "efficiently" ;
-lin inefficient_A = mkA "inefficient" "more inefficient" "most inefficient" "inefficiently" ;
-lin sufficient_A = mkA "sufficient" "more sufficient" "most sufficient" "sufficiently" ;
-lin 'self-sufficient_A' = mkA "self-sufficient" "more self-sufficient" "most self-sufficient" "self-sufficiently" ;
-lin insufficient_A = mkA "insufficient" "more insufficient" "most insufficient" "insufficiently" ;
-lin proficient_A = mkA "proficient" "more proficient" "most proficient" "proficiently" ;
-lin ancient_A = mkA "ancient" "more ancient" "most ancient" "anciently" ;
-lin nescient_A = mkA "nescient" "more nescient" "most nescient" "nesciently" ;
-lin prescient_A = mkA "prescient" "more prescient" "most prescient" "presciently" ;
-lin omniscient_A = mkA "omniscient" "more omniscient" "most omniscient" "omnisciently" ;
-lin adient_A = mkA "adient" "more adient" "most adient" "adiently" ;
-lin obedient_A = mkA "obedient" "more obedient" "most obedient" "obediently" ;
-lin disobedient_A = mkA "disobedient" "more disobedient" "most disobedient" "disobediently" ;
-lin expedient_A = mkA "expedient" "more expedient" "most expedient" "expediently" ;
-lin inexpedient_A = mkA "inexpedient" "more inexpedient" "most inexpedient" "inexpediently" ;
-lin salient_A = mkA "salient" "more salient" "most salient" "saliently" ;
-lin resilient_A = mkA "resilient" "more resilient" "most resilient" "resiliently" ;
-lin nonresilient_A = mkA "nonresilient" "more nonresilient" "most nonresilient" "nonresiliently" ;
-lin dissilient_A = mkA "dissilient" "more dissilient" "most dissilient" "dissiliently" ;
-lin ebullient_A = mkA "ebullient" "more ebullient" "most ebullient" "ebulliently" ;
-lin lenient_A = mkA "lenient" "more lenient" "most lenient" "leniently" ;
-lin convenient_A = mkA "convenient" "more convenient" "most convenient" "conveniently" ;
-lin inconvenient_A = mkA "inconvenient" "more inconvenient" "most inconvenient" "inconveniently" ;
-lin sapient_A = mkA "sapient" "more sapient" "most sapient" "sapiently" ;
-lin incipient_A = mkA "incipient" "more incipient" "most incipient" "incipiently" ;
-lin percipient_A = mkA "percipient" "more percipient" "most percipient" "percipiently" ;
-lin aperient_A = mkA "aperient" "more aperient" "most aperient" "aperiently" ;
-lin orient_A = mkA "orient" "more orient" "most orient" "oriently" ;
-lin nutrient_A = mkA "nutrient" "more nutrient" "most nutrient" "nutriently" ;
-lin prurient_A = mkA "prurient" "more prurient" "most prurient" "pruriently" ;
-lin parturient_A = mkA "parturient" "more parturient" "most parturient" "parturiently" ;
-lin transient_A = mkA "transient" "more transient" "most transient" "transiently" ;
-lin patient_A = mkA "patient" "more patient" "most patient" "patiently" ;
-lin impatient_A = mkA "impatient" "more impatient" "most impatient" "impatiently" ;
-lin sentient_A = mkA "sentient" "more sentient" "most sentient" "sentiently" ;
-lin insentient_A = mkA "insentient" "more insentient" "most insentient" "insentiently" ;
-lin assentient_A = mkA "assentient" "more assentient" "most assentient" "assentiently" ;
-lin dissentient_A = mkA "dissentient" "more dissentient" "most dissentient" "dissentiently" ;
-lin subservient_A = mkA "subservient" "more subservient" "most subservient" "subserviently" ;
-lin valent_A = mkA "valent" "more valent" "most valent" "valently" ;
-lin tetravalent_A = mkA "tetravalent" "more tetravalent" "most tetravalent" "tetravalently" ;
-lin pentavalent_A = mkA "pentavalent" "more pentavalent" "most pentavalent" "pentavalently" ;
-lin prevalent_A = mkA "prevalent" "more prevalent" "most prevalent" "prevalently" ;
-lin bivalent_A = mkA "bivalent" "more bivalent" "most bivalent" "bivalently" ;
-lin ambivalent_A = mkA "ambivalent" "more ambivalent" "most ambivalent" "ambivalently" ;
-lin univalent_A = mkA "univalent" "more univalent" "most univalent" "univalently" ;
-lin trivalent_A = mkA "trivalent" "more trivalent" "most trivalent" "trivalently" ;
-lin multivalent_A = mkA "multivalent" "more multivalent" "most multivalent" "multivalently" ;
-lin equivalent_A = mkA "equivalent" "more equivalent" "most equivalent" "equivalently" ;
-lin nonequivalent_A = mkA "nonequivalent" "more nonequivalent" "most nonequivalent" "nonequivalently" ;
-lin covalent_A = mkA "covalent" "more covalent" "most covalent" "covalently" ;
-lin monovalent_A = mkA "monovalent" "more monovalent" "most monovalent" "monovalently" ;
-lin polyvalent_A = mkA "polyvalent" "more polyvalent" "most polyvalent" "polyvalently" ;
-lin silent_A = mkA "silent" "more silent" "most silent" "silently" ;
-lin pestilent_A = mkA "pestilent" "more pestilent" "most pestilent" "pestilently" ;
-lin excellent_A = mkA "excellent" "more excellent" "most excellent" "excellently" ;
-lin repellent_A = mkA "repellent" "more repellent" "most repellent" "repellently" ;
-lin impellent_A = mkA "impellent" "more impellent" "most impellent" "impellently" ;
-lin propellent_A = mkA "propellent" "more propellent" "most propellent" "propellently" ;
-lin redolent_A = mkA "redolent" "more redolent" "most redolent" "redolently" ;
-lin indolent_A = mkA "indolent" "more indolent" "most indolent" "indolently" ;
-lin condolent_A = mkA "condolent" "more condolent" "most condolent" "condolently" ;
-lin violent_A = mkA "violent" "more violent" "most violent" "violently" ;
-lin nonviolent_A = mkA "nonviolent" "more nonviolent" "most nonviolent" "nonviolently" ;
-lin somnolent_A = mkA "somnolent" "more somnolent" "most somnolent" "somnolently" ;
-lin insolent_A = mkA "insolent" "more insolent" "most insolent" "insolently" ;
-lin malevolent_A = mkA "malevolent" "more malevolent" "most malevolent" "malevolently" ;
-lin benevolent_A = mkA "benevolent" "more benevolent" "most benevolent" "benevolently" ;
-lin turbulent_A = mkA "turbulent" "more turbulent" "most turbulent" "turbulently" ;
-lin nonturbulent_A = mkA "nonturbulent" "more nonturbulent" "most nonturbulent" "nonturbulently" ;
-lin flocculent_A = mkA "flocculent" "more flocculent" "most flocculent" "flocculently" ;
-lin succulent_A = mkA "succulent" "more succulent" "most succulent" "succulently" ;
-lin feculent_A = mkA "feculent" "more feculent" "most feculent" "feculently" ;
-lin truculent_A = mkA "truculent" "more truculent" "most truculent" "truculently" ;
-lin fraudulent_A = mkA "fraudulent" "more fraudulent" "most fraudulent" "fraudulently" ;
-lin crapulent_A = mkA "crapulent" "more crapulent" "most crapulent" "crapulently" ;
-lin opulent_A = mkA "opulent" "more opulent" "most opulent" "opulently" ;
-lin corpulent_A = mkA "corpulent" "more corpulent" "most corpulent" "corpulently" ;
-lin virulent_A = mkA "virulent" "more virulent" "most virulent" "virulently" ;
-lin avirulent_A = mkA "avirulent" "more avirulent" "most avirulent" "avirulently" ;
-lin purulent_A = mkA "purulent" "more purulent" "most purulent" "purulently" ;
-lin nonpurulent_A = mkA "nonpurulent" "more nonpurulent" "most nonpurulent" "nonpurulently" ;
-lin mucopurulent_A = mkA "mucopurulent" "more mucopurulent" "most mucopurulent" "mucopurulently" ;
-lin flatulent_A = mkA "flatulent" "more flatulent" "most flatulent" "flatulently" ;
-lin vehement_A = mkA "vehement" "more vehement" "most vehement" "vehemently" ;
-lin clement_A = mkA "clement" "more clement" "most clement" "clemently" ;
-lin inclement_A = mkA "inclement" "more inclement" "most inclement" "inclemently" ;
-lin immanent_A = mkA "immanent" "more immanent" "most immanent" "immanently" ;
-lin permanent_A = mkA "permanent" "more permanent" "most permanent" "permanently" ;
-lin impermanent_A = mkA "impermanent" "more impermanent" "most impermanent" "impermanently" ;
-lin eminent_A = mkA "eminent" "more eminent" "most eminent" "eminently" ;
-lin 'pre-eminent_A' = mkA "pre-eminent" "more pre-eminent" "most pre-eminent" "pre-eminently" ;
-lin imminent_A = mkA "imminent" "more imminent" "most imminent" "imminently" ;
-lin prominent_A = mkA "prominent" "more prominent" "most prominent" "prominently" ;
-lin continent_A = mkA "continent" "more continent" "most continent" "continently" ;
-lin incontinent_A = mkA "incontinent" "more incontinent" "most incontinent" "incontinently" ;
-lin pertinent_A = mkA "pertinent" "more pertinent" "most pertinent" "pertinently" ;
-lin impertinent_A = mkA "impertinent" "more impertinent" "most impertinent" "impertinently" ;
-lin abstinent_A = mkA "abstinent" "more abstinent" "most abstinent" "abstinently" ;
-lin component_A = mkA "component" "more component" "most component" "componently" ;
-lin opponent_A = mkA "opponent" "more opponent" "most opponent" "opponently" ;
-lin unspent_A = mkA "unspent" "more unspent" "most unspent" "unspently" ;
-lin apparent_A = mkA "apparent" "more apparent" "most apparent" "apparently" ;
-lin unapparent_A = mkA "unapparent" "more unapparent" "most unapparent" "unapparently" ;
-lin transparent_A = mkA "transparent" "more transparent" "most transparent" "transparently" ;
-lin deferent_A = mkA "deferent" "more deferent" "most deferent" "deferently" ;
-lin referent_A = mkA "referent" "more referent" "most referent" "referently" ;
-lin coreferent_A = mkA "coreferent" "more coreferent" "most coreferent" "coreferently" ;
-lin afferent_A = mkA "afferent" "more afferent" "most afferent" "afferently" ;
-lin corticoafferent_A = mkA "corticoafferent" "more corticoafferent" "most corticoafferent" "corticoafferently" ;
-lin efferent_A = mkA "efferent" "more efferent" "most efferent" "efferently" ;
-lin corticoefferent_A = mkA "corticoefferent" "more corticoefferent" "most corticoefferent" "corticoefferently" ;
-lin different_A = mkA "different" "more different" "most different" "differently" ;
-lin indifferent_A = mkA "indifferent" "more indifferent" "most indifferent" "indifferently" ;
-lin belligerent_A = mkA "belligerent" "more belligerent" "most belligerent" "belligerently" ;
-lin nonbelligerent_A = mkA "nonbelligerent" "more nonbelligerent" "most nonbelligerent" "nonbelligerently" ;
-lin adherent_A = mkA "adherent" "more adherent" "most adherent" "adherently" ;
-lin inherent_A = mkA "inherent" "more inherent" "most inherent" "inherently" ;
-lin coherent_A = mkA "coherent" "more coherent" "most coherent" "coherently" ;
-lin incoherent_A = mkA "incoherent" "more incoherent" "most incoherent" "incoherently" ;
-lin reverent_A = mkA "reverent" "more reverent" "most reverent" "reverently" ;
-lin irreverent_A = mkA "irreverent" "more irreverent" "most irreverent" "irreverently" ;
-lin besprent_A = mkA "besprent" "more besprent" "most besprent" "besprently" ;
-lin deterrent_A = mkA "deterrent" "more deterrent" "most deterrent" "deterrently" ;
-lin abhorrent_A = mkA "abhorrent" "more abhorrent" "most abhorrent" "abhorrently" ;
-lin current_A = mkA "current" "more current" "most current" "currently" ;
-lin occurrent_A = mkA "occurrent" "more occurrent" "most occurrent" "occurrently" ;
-lin recurrent_A = mkA "recurrent" "more recurrent" "most recurrent" "recurrently" ;
-lin concurrent_A = mkA "concurrent" "more concurrent" "most concurrent" "concurrently" ;
-lin noncurrent_A = mkA "noncurrent" "more noncurrent" "most noncurrent" "noncurrently" ;
-lin comburent_A = mkA "comburent" "more comburent" "most comburent" "comburently" ;
-lin absent_A = mkA "absent" "more absent" "most absent" "absently" ;
-lin present_A = mkA "present" "more present" "most present" "presently" ;
-lin omnipresent_A = mkA "omnipresent" "more omnipresent" "most omnipresent" "omnipresently" ;
-lin heavensent_A = mkA "heavensent" "more heavensent" "most heavensent" "heavensently" ;
-lin unsent_A = mkA "unsent" "more unsent" "most unsent" "unsently" ;
-lin latent_A = mkA "latent" "more latent" "most latent" "latently" ;
-lin patent_A = mkA "patent" "more patent" "most patent" "patently" ;
-lin competent_A = mkA "competent" "more competent" "most competent" "competently" ;
-lin incompetent_A = mkA "incompetent" "more incompetent" "most incompetent" "incompetently" ;
-lin immunocompetent_A = mkA "immunocompetent" "more immunocompetent" "most immunocompetent" "immunocompetently" ;
-lin appetent_A = mkA "appetent" "more appetent" "most appetent" "appetently" ;
-lin penitent_A = mkA "penitent" "more penitent" "most penitent" "penitently" ;
-lin impenitent_A = mkA "impenitent" "more impenitent" "most impenitent" "impenitently" ;
-lin intent_A = mkA "intent" "more intent" "most intent" "intently" ;
-lin content_A = mkA "content" "more content" "most content" "contently" ;
-lin malcontent_A = mkA "malcontent" "more malcontent" "most malcontent" "malcontently" ;
-lin potent_A = mkA "potent" "more potent" "most potent" "potently" ;
-lin omnipotent_A = mkA "omnipotent" "more omnipotent" "most omnipotent" "omnipotently" ;
-lin multipotent_A = mkA "multipotent" "more multipotent" "most multipotent" "multipotently" ;
-lin totipotent_A = mkA "totipotent" "more totipotent" "most totipotent" "totipotently" ;
-lin equipotent_A = mkA "equipotent" "more equipotent" "most equipotent" "equipotently" ;
-lin nilpotent_A = mkA "nilpotent" "more nilpotent" "most nilpotent" "nilpotently" ;
-lin idempotent_A = mkA "idempotent" "more idempotent" "most idempotent" "idempotently" ;
-lin impotent_A = mkA "impotent" "more impotent" "most impotent" "impotently" ;
-lin advertent_A = mkA "advertent" "more advertent" "most advertent" "advertently" ;
-lin inadvertent_A = mkA "inadvertent" "more inadvertent" "most inadvertent" "inadvertently" ;
-lin insistent_A = mkA "insistent" "more insistent" "most insistent" "insistently" ;
-lin consistent_A = mkA "consistent" "more consistent" "most consistent" "consistently" ;
-lin inconsistent_A = mkA "inconsistent" "more inconsistent" "most inconsistent" "inconsistently" ;
-lin persistent_A = mkA "persistent" "more persistent" "most persistent" "persistently" ;
-lin existent_A = mkA "existent" "more existent" "most existent" "existently" ;
-lin 'pre-existent_A' = mkA "pre-existent" "more pre-existent" "most pre-existent" "pre-existently" ;
-lin preexistent_A = mkA "preexistent" "more preexistent" "most preexistent" "preexistently" ;
-lin nonexistent_A = mkA "nonexistent" "more nonexistent" "most nonexistent" "nonexistently" ;
-lin coexistent_A = mkA "coexistent" "more coexistent" "most coexistent" "coexistently" ;
-lin remittent_A = mkA "remittent" "more remittent" "most remittent" "remittently" ;
-lin intermittent_A = mkA "intermittent" "more intermittent" "most intermittent" "intermittently" ;
-lin fluent_A = mkA "fluent" "more fluent" "most fluent" "fluently" ;
-lin affluent_A = mkA "affluent" "more affluent" "most affluent" "affluently" ;
-lin effluent_A = mkA "effluent" "more effluent" "most effluent" "effluently" ;
-lin confluent_A = mkA "confluent" "more confluent" "most confluent" "confluently" ;
-lin frequent_A = mkA "frequent" "more frequent" "most frequent" "frequently" ;
-lin infrequent_A = mkA "infrequent" "more infrequent" "most infrequent" "infrequently" ;
-lin sequent_A = mkA "sequent" "more sequent" "most sequent" "sequently" ;
-lin subsequent_A = mkA "subsequent" "more subsequent" "most subsequent" "subsequently" ;
-lin consequent_A = mkA "consequent" "more consequent" "most consequent" "consequently" ;
-lin inconsequent_A = mkA "inconsequent" "more inconsequent" "most inconsequent" "inconsequently" ;
-lin delinquent_A = mkA "delinquent" "more delinquent" "most delinquent" "delinquently" ;
-lin eloquent_A = mkA "eloquent" "more eloquent" "most eloquent" "eloquently" ;
-lin grandiloquent_A = mkA "grandiloquent" "more grandiloquent" "most grandiloquent" "grandiloquently" ;
-lin magniloquent_A = mkA "magniloquent" "more magniloquent" "most magniloquent" "magniloquently" ;
-lin congruent_A = mkA "congruent" "more congruent" "most congruent" "congruently" ;
-lin incongruent_A = mkA "incongruent" "more incongruent" "most incongruent" "incongruently" ;
-lin constituent_A = mkA "constituent" "more constituent" "most constituent" "constituently" ;
-lin solvent_A = mkA "solvent" "more solvent" "most solvent" "solvently" ;
-lin insolvent_A = mkA "insolvent" "more insolvent" "most insolvent" "insolvently" ;
-lin fervent_A = mkA "fervent" "more fervent" "most fervent" "fervently" ;
-lin skint_A = mkA "skint" "more skint" "most skint" "skintly" ;
-lin joint_A = mkA "joint" "more joint" "most joint" "jointly" ;
-lin conjoint_A = mkA "conjoint" "more conjoint" "most conjoint" "conjointly" ;
-lin disjoint_A = mkA "disjoint" "more disjoint" "most disjoint" "disjointly" ;
-lin embonpoint_A = mkA "embonpoint" "more embonpoint" "most embonpoint" "embonpointly" ;
-lin upfront_A = mkA "upfront" "more upfront" "most upfront" "upfrontly" ;
-lin bowfront_A = mkA "bowfront" "more bowfront" "most bowfront" "bowfrontly" ;
-lin wont_A = mkA "wont" "more wont" "most wont" "wontly" ;
-lin sunburnt_A = mkA "sunburnt" "more sunburnt" "most sunburnt" "sunburntly" ;
-lin gaunt_A = mkA "gaunt" "more gaunt" "most gaunt" "gauntly" ;
-lin transeunt_A = mkA "transeunt" "more transeunt" "most transeunt" "transeuntly" ;
-lin paramount_A = mkA "paramount" "more paramount" "most paramount" "paramountly" ;
-lin tantamount_A = mkA "tantamount" "more tantamount" "most tantamount" "tantamountly" ;
-lin 'red-hot_A' = mkA "red-hot" "more red-hot" "most red-hot" "red-hotly" ;
-lin 'white-hot_A' = mkA "white-hot" "more white-hot" "most white-hot" "white-hotly" ;
-lin 'baking-hot_A' = mkA "baking-hot" "more baking-hot" "most baking-hot" "baking-hotly" ;
-lin bloodshot_A = mkA "bloodshot" "more bloodshot" "most bloodshot" "bloodshotly" ;
-lin scattershot_A = mkA "scattershot" "more scattershot" "most scattershot" "scattershotly" ;
-lin cypriot_A = mkA "cypriot" "more cypriot" "most cypriot" "cypriotly" ;
-lin polyglot_A = mkA "polyglot" "more polyglot" "most polyglot" "polyglotly" ;
-lin afoot_A = mkA "afoot" "more afoot" "most afoot" "afootly" ;
-lin barefoot_A = mkA "barefoot" "more barefoot" "most barefoot" "barefootly" ;
-lin moot_A = mkA "moot" "more moot" "most moot" "mootly" ;
-lin aliquot_A = mkA "aliquot" "more aliquot" "most aliquot" "aliquotly" ;
-lin inapt_A = mkA "inapt" "more inapt" "most inapt" "inaptly" ;
-lin rapt_A = mkA "rapt" "more rapt" "most rapt" "raptly" ;
-lin adept_A = mkA "adept" "more adept" "most adept" "adeptly" ;
-lin inept_A = mkA "inept" "more inept" "most inept" "ineptly" ;
-lin 'tempest-swept_A' = mkA "tempest-swept" "more tempest-swept" "most tempest-swept" "tempest-sweptly" ;
-lin windswept_A = mkA "windswept" "more windswept" "most windswept" "windsweptly" ;
-lin backswept_A = mkA "backswept" "more backswept" "most backswept" "backsweptly" ;
-lin unswept_A = mkA "unswept" "more unswept" "most unswept" "unsweptly" ;
-lin subscript_A = mkA "subscript" "more subscript" "most subscript" "subscriptly" ;
-lin adscript_A = mkA "adscript" "more adscript" "most adscript" "adscriptly" ;
-lin nondescript_A = mkA "nondescript" "more nondescript" "most nondescript" "nondescriptly" ;
-lin superscript_A = mkA "superscript" "more superscript" "most superscript" "superscriptly" ;
-lin unkempt_A = mkA "unkempt" "more unkempt" "most unkempt" "unkemptly" ;
-lin exempt_A = mkA "exempt" "more exempt" "most exempt" "exemptly" ;
-lin nonexempt_A = mkA "nonexempt" "more nonexempt" "most nonexempt" "nonexemptly" ;
-lin prompt_A = mkA "prompt" "more prompt" "most prompt" "promptly" ;
-lin copt_A = mkA "copt" "more copt" "most copt" "coptly" ;
-lin abrupt_A = mkA "abrupt" "more abrupt" "most abrupt" "abruptly" ;
-lin bankrupt_A = mkA "bankrupt" "more bankrupt" "most bankrupt" "bankruptly" ;
-lin corrupt_A = mkA "corrupt" "more corrupt" "most corrupt" "corruptly" ;
-lin incorrupt_A = mkA "incorrupt" "more incorrupt" "most incorrupt" "incorruptly" ;
-lin sweetheart_A = mkA "sweetheart" "more sweetheart" "most sweetheart" "sweetheartly" ;
-lin 'four-part_A' = mkA "four-part" "more four-part" "most four-part" "four-partly" ;
-lin tart_A = mkA "tart" "more tart" "most tart" "tartly" ;
-lin upstart_A = mkA "upstart" "more upstart" "most upstart" "upstartly" ;
-lin stalwart_A = mkA "stalwart" "more stalwart" "most stalwart" "stalwartly" ;
-lin alert_A = mkA "alert" "more alert" "most alert" "alertly" ;
-lin unalert_A = mkA "unalert" "more unalert" "most unalert" "unalertly" ;
-lin inert_A = mkA "inert" "more inert" "most inert" "inertly" ;
-lin pert_A = mkA "pert" "more pert" "most pert" "pertly" ;
-lin expert_A = mkA "expert" "more expert" "most expert" "expertly" ;
-lin inexpert_A = mkA "inexpert" "more inexpert" "most inexpert" "inexpertly" ;
-lin desert_A = mkA "desert" "more desert" "most desert" "desertly" ;
-lin overt_A = mkA "overt" "more overt" "most overt" "overtly" ;
-lin covert_A = mkA "covert" "more covert" "most covert" "covertly" ;
-lin extrovert_A = mkA "extrovert" "more extrovert" "most extrovert" "extrovertly" ;
-lin 'sea-girt_A' = mkA "sea-girt" "more sea-girt" "most sea-girt" "sea-girtly" ;
-lin seagirt_A = mkA "seagirt" "more seagirt" "most seagirt" "seagirtly" ;
-lin amort_A = mkA "amort" "more amort" "most amort" "amortly" ;
-lin curt_A = mkA "curt" "more curt" "most curt" "curtly" ;
-lin unhurt_A = mkA "unhurt" "more unhurt" "most unhurt" "unhurtly" ;
-lin 'die-cast_A' = mkA "die-cast" "more die-cast" "most die-cast" "die-castly" ;
-lin precast_A = mkA "precast" "more precast" "most precast" "precastly" ;
-lin opencast_A = mkA "opencast" "more opencast" "most opencast" "opencastly" ;
-lin downcast_A = mkA "downcast" "more downcast" "most downcast" "downcastly" ;
-lin overcast_A = mkA "overcast" "more overcast" "most overcast" "overcastly" ;
-lin outcast_A = mkA "outcast" "more outcast" "most outcast" "outcastly" ;
-lin southeast_A = mkA "southeast" "more southeast" "most southeast" "southeastly" ;
-lin steadfast_A = mkA "steadfast" "more steadfast" "most steadfast" "steadfastly" ;
-lin bedfast_A = mkA "bedfast" "more bedfast" "most bedfast" "bedfastly" ;
-lin cragfast_A = mkA "cragfast" "more cragfast" "most cragfast" "cragfastly" ;
-lin colorfast_A = mkA "colorfast" "more colorfast" "most colorfast" "colorfastly" ;
-lin aghast_A = mkA "aghast" "more aghast" "most aghast" "aghastly" ;
-lin roast_A = mkA "roast" "more roast" "most roast" "roastly" ;
-lin past_A = mkA "past" "more past" "most past" "pastly" ;
-lin vast_A = mkA "vast" "more vast" "most vast" "vastly" ;
-lin 'second-best_A' = mkA "second-best" "more second-best" "most second-best" "second-bestly" ;
-lin modest_A = mkA "modest" "more modest" "most modest" "modestly" ;
-lin immodest_A = mkA "immodest" "more immodest" "most immodest" "immodestly" ;
-lin overmodest_A = mkA "overmodest" "more overmodest" "most overmodest" "overmodestly" ;
-lin manifest_A = mkA "manifest" "more manifest" "most manifest" "manifestly" ;
-lin furthest_A = mkA "furthest" "more furthest" "most furthest" "furthestly" ;
-lin honest_A = mkA "honest" "more honest" "most honest" "honestly" ;
-lin dishonest_A = mkA "dishonest" "more dishonest" "most dishonest" "dishonestly" ;
-lin earnest_A = mkA "earnest" "more earnest" "most earnest" "earnestly" ;
-lin greatest_A = mkA "greatest" "more greatest" "most greatest" "greatestly" ;
-lin latest_A = mkA "latest" "more latest" "most latest" "latestly" ;
-lin southwest_A = mkA "southwest" "more southwest" "most southwest" "southwestly" ;
-lin cubist_A = mkA "cubist" "more cubist" "most cubist" "cubistly" ;
-lin racist_A = mkA "racist" "more racist" "most racist" "racistly" ;
-lin neoclassicist_A = mkA "neoclassicist" "more neoclassicist" "most neoclassicist" "neoclassicistly" ;
-lin fascist_A = mkA "fascist" "more fascist" "most fascist" "fascistly" ;
-lin propagandist_A = mkA "propagandist" "more propagandist" "most propagandist" "propagandistly" ;
-lin methodist_A = mkA "methodist" "more methodist" "most methodist" "methodistly" ;
-lin atheist_A = mkA "atheist" "more atheist" "most atheist" "atheistly" ;
-lin pantheist_A = mkA "pantheist" "more pantheist" "most pantheist" "pantheistly" ;
-lin socialist_A = mkA "socialist" "more socialist" "most socialist" "socialistly" ;
-lin existentialist_A = mkA "existentialist" "more existentialist" "most existentialist" "existentialistly" ;
-lin minimalist_A = mkA "minimalist" "more minimalist" "most minimalist" "minimalistly" ;
-lin nationalist_A = mkA "nationalist" "more nationalist" "most nationalist" "nationalistly" ;
-lin internationalist_A = mkA "internationalist" "more internationalist" "most internationalist" "internationalistly" ;
-lin rationalist_A = mkA "rationalist" "more rationalist" "most rationalist" "rationalistly" ;
-lin operationalist_A = mkA "operationalist" "more operationalist" "most operationalist" "operationalistly" ;
-lin unilateralist_A = mkA "unilateralist" "more unilateralist" "most unilateralist" "unilateralistly" ;
-lin centralist_A = mkA "centralist" "more centralist" "most centralist" "centralistly" ;
-lin supernaturalist_A = mkA "supernaturalist" "more supernaturalist" "most supernaturalist" "supernaturalistly" ;
-lin fatalist_A = mkA "fatalist" "more fatalist" "most fatalist" "fatalistly" ;
-lin capitalist_A = mkA "capitalist" "more capitalist" "most capitalist" "capitalistly" ;
-lin fundamentalist_A = mkA "fundamentalist" "more fundamentalist" "most fundamentalist" "fundamentalistly" ;
-lin individualist_A = mkA "individualist" "more individualist" "most individualist" "individualistly" ;
-lin pointillist_A = mkA "pointillist" "more pointillist" "most pointillist" "pointillistly" ;
-lin extremist_A = mkA "extremist" "more extremist" "most extremist" "extremistly" ;
-lin animist_A = mkA "animist" "more animist" "most animist" "animistly" ;
-lin conformist_A = mkA "conformist" "more conformist" "most conformist" "conformistly" ;
-lin nonconformist_A = mkA "nonconformist" "more nonconformist" "most nonconformist" "nonconformistly" ;
-lin shamanist_A = mkA "shamanist" "more shamanist" "most shamanist" "shamanistly" ;
-lin humanist_A = mkA "humanist" "more humanist" "most humanist" "humanistly" ;
-lin feminist_A = mkA "feminist" "more feminist" "most feminist" "feministly" ;
-lin expansionist_A = mkA "expansionist" "more expansionist" "most expansionist" "expansionistly" ;
-lin impressionist_A = mkA "impressionist" "more impressionist" "most impressionist" "impressionistly" ;
-lin expressionist_A = mkA "expressionist" "more expressionist" "most expressionist" "expressionistly" ;
-lin isolationist_A = mkA "isolationist" "more isolationist" "most isolationist" "isolationistly" ;
-lin reductionist_A = mkA "reductionist" "more reductionist" "most reductionist" "reductionistly" ;
-lin deconstructionist_A = mkA "deconstructionist" "more deconstructionist" "most deconstructionist" "deconstructionistly" ;
-lin intuitionist_A = mkA "intuitionist" "more intuitionist" "most intuitionist" "intuitionistly" ;
-lin zionist_A = mkA "zionist" "more zionist" "most zionist" "zionistly" ;
-lin canonist_A = mkA "canonist" "more canonist" "most canonist" "canonistly" ;
-lin postmodernist_A = mkA "postmodernist" "more postmodernist" "most postmodernist" "postmodernistly" ;
-lin communist_A = mkA "communist" "more communist" "most communist" "communistly" ;
-lin opportunist_A = mkA "opportunist" "more opportunist" "most opportunist" "opportunistly" ;
-lin moist_A = mkA "moist" "more moist" "most moist" "moistly" ;
-lin papist_A = mkA "papist" "more papist" "most papist" "papistly" ;
-lin welfarist_A = mkA "welfarist" "more welfarist" "most welfarist" "welfaristly" ;
-lin czarist_A = mkA "czarist" "more czarist" "most czarist" "czaristly" ;
-lin centrist_A = mkA "centrist" "more centrist" "most centrist" "centristly" ;
-lin corporatist_A = mkA "corporatist" "more corporatist" "most corporatist" "corporatistly" ;
-lin leftist_A = mkA "leftist" "more leftist" "most leftist" "leftistly" ;
-lin rightist_A = mkA "rightist" "more rightist" "most rightist" "rightistly" ;
-lin baptist_A = mkA "baptist" "more baptist" "most baptist" "baptistly" ;
-lin absolutist_A = mkA "absolutist" "more absolutist" "most absolutist" "absolutistly" ;
-lin nativist_A = mkA "nativist" "more nativist" "most nativist" "nativistly" ;
-lin activist_A = mkA "activist" "more activist" "most activist" "activistly" ;
-lin collectivist_A = mkA "collectivist" "more collectivist" "most collectivist" "collectivistly" ;
-lin positivist_A = mkA "positivist" "more positivist" "most positivist" "positivistly" ;
-lin sexist_A = mkA "sexist" "more sexist" "most sexist" "sexistly" ;
-lin unbeknownst_A = mkA "unbeknownst" "more unbeknownst" "most unbeknownst" "unbeknownstly" ;
-lin midmost_A = mkA "midmost" "more midmost" "most midmost" "midmostly" ;
-lin hindmost_A = mkA "hindmost" "more hindmost" "most hindmost" "hindmostly" ;
-lin middlemost_A = mkA "middlemost" "more middlemost" "most middlemost" "middlemostly" ;
-lin foremost_A = mkA "foremost" "more foremost" "most foremost" "foremostly" ;
-lin backmost_A = mkA "backmost" "more backmost" "most backmost" "backmostly" ;
-lin bottommost_A = mkA "bottommost" "more bottommost" "most bottommost" "bottommostly" ;
-lin inmost_A = mkA "inmost" "more inmost" "most inmost" "inmostly" ;
-lin northernmost_A = mkA "northernmost" "more northernmost" "most northernmost" "northernmostly" ;
-lin southernmost_A = mkA "southernmost" "more southernmost" "most southernmost" "southernmostly" ;
-lin easternmost_A = mkA "easternmost" "more easternmost" "most easternmost" "easternmostly" ;
-lin westernmost_A = mkA "westernmost" "more westernmost" "most westernmost" "westernmostly" ;
-lin topmost_A = mkA "topmost" "more topmost" "most topmost" "topmostly" ;
-lin upmost_A = mkA "upmost" "more upmost" "most upmost" "upmostly" ;
-lin rearmost_A = mkA "rearmost" "more rearmost" "most rearmost" "rearmostly" ;
-lin nethermost_A = mkA "nethermost" "more nethermost" "most nethermost" "nethermostly" ;
-lin farthermost_A = mkA "farthermost" "more farthermost" "most farthermost" "farthermostly" ;
-lin furthermost_A = mkA "furthermost" "more furthermost" "most furthermost" "furthermostly" ;
-lin innermost_A = mkA "innermost" "more innermost" "most innermost" "innermostly" ;
-lin uppermost_A = mkA "uppermost" "more uppermost" "most uppermost" "uppermostly" ;
-lin aftermost_A = mkA "aftermost" "more aftermost" "most aftermost" "aftermostly" ;
-lin uttermost_A = mkA "uttermost" "more uttermost" "most uttermost" "uttermostly" ;
-lin outermost_A = mkA "outermost" "more outermost" "most outermost" "outermostly" ;
-lin lowermost_A = mkA "lowermost" "more lowermost" "most lowermost" "lowermostly" ;
-lin leftmost_A = mkA "leftmost" "more leftmost" "most leftmost" "leftmostly" ;
-lin rightmost_A = mkA "rightmost" "more rightmost" "most rightmost" "rightmostly" ;
-lin utmost_A = mkA "utmost" "more utmost" "most utmost" "utmostly" ;
-lin outmost_A = mkA "outmost" "more outmost" "most outmost" "outmostly" ;
-lin headfirst_A = mkA "headfirst" "more headfirst" "most headfirst" "headfirstly" ;
-lin athirst_A = mkA "athirst" "more athirst" "most athirst" "athirstly" ;
-lin curst_A = mkA "curst" "more curst" "most curst" "curstly" ;
-lin accurst_A = mkA "accurst" "more accurst" "most accurst" "accurstly" ;
-lin robust_A = mkA "robust" "more robust" "most robust" "robustly" ;
-lin adust_A = mkA "adust" "more adust" "most adust" "adustly" ;
-lin august_A = mkA "august" "more august" "most august" "augustly" ;
-lin unjust_A = mkA "unjust" "more unjust" "most unjust" "unjustly" ;
-lin amethyst_A = mkA "amethyst" "more amethyst" "most amethyst" "amethystly" ;
-lin matt_A = mkA "matt" "more matt" "most matt" "mattly" ;
-lin nett_A = mkA "nett" "more nett" "most nett" "nettly" ;
-lin 'close-cut_A' = mkA "close-cut" "more close-cut" "most close-cut" "close-cutly" ;
-lin 'clean-cut_A' = mkA "clean-cut" "more clean-cut" "most clean-cut" "clean-cutly" ;
-lin uncut_A = mkA "uncut" "more uncut" "most uncut" "uncutly" ;
-lin crosscut_A = mkA "crosscut" "more crosscut" "most crosscut" "crosscutly" ;
-lin chestnut_A = mkA "chestnut" "more chestnut" "most chestnut" "chestnutly" ;
-lin 'passing-out_A' = mkA "passing-out" "more passing-out" "most passing-out" "passing-outly" ;
-lin 'long-drawn-out_A' = mkA "long-drawn-out" "more long-drawn-out" "most long-drawn-out" "long-drawn-outly" ;
-lin 'way-out_A' = mkA "way-out" "more way-out" "most way-out" "way-outly" ;
-lin roundabout_A = mkA "roundabout" "more roundabout" "most roundabout" "roundaboutly" ;
-lin knockabout_A = mkA "knockabout" "more knockabout" "most knockabout" "knockaboutly" ;
-lin takeout_A = mkA "takeout" "more takeout" "most takeout" "takeoutly" ;
-lin knockout_A = mkA "knockout" "more knockout" "most knockout" "knockoutly" ;
-lin devout_A = mkA "devout" "more devout" "most devout" "devoutly" ;
-lin kaput_A = mkA "kaput" "more kaput" "most kaput" "kaputly" ;
-lin u_A = mkA "u" "uer" "uest" "uly" ;
-lin 'non-u_A' = mkA "non-u" "more non-u" "most non-u" "non-uly" ;
-lin hindu_A = mkA "hindu" "more hindu" "most hindu" "hinduly" ;
-lin urdu_A = mkA "urdu" "more urdu" "most urdu" "urduly" ;
-lin 'cordon bleu_A' = mkA "cordon bleu" "more cordon bleu" "most cordon bleu" "cordon bleuly" ;
-lin parvenu_A = mkA "parvenu" "more parvenu" "most parvenu" "parvenuly" ;
-lin bijou_A = mkA "bijou" "more bijou" "most bijou" "bijouly" ;
-lin bantu_A = mkA "bantu" "more bantu" "most bantu" "bantuly" ;
-lin impromptu_A = mkA "impromptu" "more impromptu" "most impromptu" "impromptuly" ;
-lin slav_A = mkA "slav" "more slav" "most slav" "slavly" ;
-lin yugoslav_A = mkA "yugoslav" "more yugoslav" "most yugoslav" "yugoslavly" ;
-lin straw_A = mkA "straw" "strawer" "strawest" "strawly" ;
-lin few_A = mkA "few" "fewer" "fewest" "fewly" ;
-lin new_A = mkA "new" "newer" "newest" "newly" ;
-lin low_A = mkA "low" "lower" "lowest" "lowly" ;
-lin shallow_A = mkA "shallow" "shallower" "shallowest" "shallowly" ; -- compound low_A ;
-lin sallow_A = mkA "sallow" "sallower" "sallowest" "sallowly" ; -- compound low_A ;
-lin mellow_A = mkA "mellow" "mellower" "mellowest" "mellowly" ; -- compound low_A ;
-lin yellow_A = mkA "yellow" "yellower" "yellowest" "yellowly" ; -- compound low_A ;
-lin slow_A = mkA "slow" "slower" "slowest" "slowly" ; -- notcompound low_A ;
-lin narrow_A = mkA "narrow" "narrower" "narrowest" "narrowly" ;
-lin raw_A = mkA "raw" "more raw" "most raw" "rawly" ;
-lin skew_A = mkA "skew" "more skew" "most skew" "skewly" ;
-lin askew_A = mkA "askew" "more askew" "most askew" "askewly" ;
-lin 'brand-new_A' = mkA "brand-new" "more brand-new" "most brand-new" "brand-newly" ;
-lin 'bran-new_A' = mkA "bran-new" "more bran-new" "most bran-new" "bran-newly" ;
-lin hebrew_A = mkA "hebrew" "more hebrew" "most hebrew" "hebrewly" ;
-lin aglow_A = mkA "aglow" "more aglow" "most aglow" "aglowly" ;
-lin callow_A = mkA "callow" "more callow" "most callow" "callowly" ;
-lin fallow_A = mkA "fallow" "more fallow" "most fallow" "fallowly" ;
-lin hollow_A = mkA "hollow" "more hollow" "most hollow" "hollowly" ;
-lin highbrow_A = mkA "highbrow" "more highbrow" "most highbrow" "highbrowly" ;
-lin lowbrow_A = mkA "lowbrow" "more lowbrow" "most lowbrow" "lowbrowly" ;
-lin lax_A = mkA "lax" "more lax" "most lax" "laxly" ;
-lin reflex_A = mkA "reflex" "more reflex" "most reflex" "reflexly" ;
-lin retroflex_A = mkA "retroflex" "more retroflex" "most retroflex" "retroflexly" ;
-lin triplex_A = mkA "triplex" "more triplex" "most triplex" "triplexly" ;
-lin multiplex_A = mkA "multiplex" "more multiplex" "most multiplex" "multiplexly" ;
-lin simplex_A = mkA "simplex" "more simplex" "most simplex" "simplexly" ;
-lin complex_A = mkA "complex" "more complex" "most complex" "complexly" ;
-lin duplex_A = mkA "duplex" "more duplex" "most duplex" "duplexly" ;
-lin unisex_A = mkA "unisex" "more unisex" "most unisex" "unisexly" ;
-lin convex_A = mkA "convex" "more convex" "most convex" "convexly" ;
-lin biconvex_A = mkA "biconvex" "more biconvex" "most biconvex" "biconvexly" ;
-lin planoconvex_A = mkA "planoconvex" "more planoconvex" "most planoconvex" "planoconvexly" ;
-lin prolix_A = mkA "prolix" "more prolix" "most prolix" "prolixly" ;
-lin manx_A = mkA "manx" "more manx" "most manx" "manxly" ;
-lin orthodox_A = mkA "orthodox" "more orthodox" "most orthodox" "orthodoxly" ;
-lin unorthodox_A = mkA "unorthodox" "more unorthodox" "most unorthodox" "unorthodoxly" ;
-lin heterodox_A = mkA "heterodox" "more heterodox" "most heterodox" "heterodoxly" ;
-lin gay_A = mkA "gay" "gayer" "gayest" "gaily" ;
-lin stray_A = mkA "stray" "straier" "straiest" "straily" ;
-lin gray_A = mkA "gray" "grayer" "grayest" "graily" ;
-lin scabby_A = mkA "scabby" "scabbier" "scabbiest" "scabbily" ;
-lin shabby_A = mkA "shabby" "shabbier" "shabbiest" "shabbily" ;
-lin flabby_A = mkA "flabby" "flabbier" "flabbiest" "flabbily" ;
-lin blebby_A = mkA "blebby" "blebbier" "blebbiest" "blebbily" ;
-lin knobby_A = mkA "knobby" "knobbier" "knobbiest" "knobbily" ;
-lin chubby_A = mkA "chubby" "chubbier" "chubbiest" "chubbily" ;
-lin scrubby_A = mkA "scrubby" "scrubbier" "scrubbiest" "scrubbily" ;
-lin grubby_A = mkA "grubby" "grubbier" "grubbiest" "grubbily" ;
-lin shrubby_A = mkA "shrubby" "shrubbier" "shrubbiest" "shrubbily" ;
-lin tubby_A = mkA "tubby" "tubbier" "tubbiest" "tubbily" ;
-lin stubby_A = mkA "stubby" "stubbier" "stubbiest" "stubbily" ; -- notcompound tubby_A ;
-lin standby_A = mkA "standby" "standbier" "standbiest" "standbily" ;
-lin lacy_A = mkA "lacy" "lacier" "laciest" "lacily" ;
-lin racy_A = mkA "racy" "racier" "raciest" "racily" ;
-lin fleecy_A = mkA "fleecy" "fleecier" "fleeciest" "fleecily" ;
-lin icy_A = mkA "icy" "icier" "iciest" "icily" ;
-lin spicy_A = mkA "spicy" "spicier" "spiciest" "spicily" ; -- notcompound icy_A ;
-lin juicy_A = mkA "juicy" "juicier" "juiciest" "juicily" ; -- compound icy_A ;
-lin fancy_A = mkA "fancy" "fancier" "fanciest" "fancily" ;
-lin bouncy_A = mkA "bouncy" "bouncier" "bounciest" "bouncily" ;
-lin saucy_A = mkA "saucy" "saucier" "sauciest" "saucily" ;
-lin heady_A = mkA "heady" "headier" "headiest" "headily" ;
-lin ready_A = mkA "ready" "readier" "readiest" "readily" ;
-lin steady_A = mkA "steady" "steadier" "steadiest" "steadily" ;
-lin shady_A = mkA "shady" "shadier" "shadiest" "shadily" ;
-lin faddy_A = mkA "faddy" "faddier" "faddiest" "faddily" ;
-lin giddy_A = mkA "giddy" "giddier" "giddiest" "giddily" ;
-lin shoddy_A = mkA "shoddy" "shoddier" "shoddiest" "shoddily" ;
-lin muddy_A = mkA "muddy" "muddier" "muddiest" "muddily" ;
-lin ruddy_A = mkA "ruddy" "ruddier" "ruddiest" "ruddily" ;
-lin cruddy_A = mkA "cruddy" "cruddier" "cruddiest" "cruddily" ; -- notcompound ruddy_A ;
-lin needy_A = mkA "needy" "needier" "neediest" "needily" ;
-lin speedy_A = mkA "speedy" "speedier" "speediest" "speedily" ;
-lin reedy_A = mkA "reedy" "reedier" "reediest" "reedily" ;
-lin greedy_A = mkA "greedy" "greedier" "greediest" "greedily" ; -- notcompound reedy_A ;
-lin seedy_A = mkA "seedy" "seedier" "seediest" "seedily" ;
-lin weedy_A = mkA "weedy" "weedier" "weediest" "weedily" ;
-lin tweedy_A = mkA "tweedy" "tweedier" "tweediest" "tweedily" ; -- notcompound weedy_A ;
-lin tidy_A = mkA "tidy" "tidier" "tidiest" "tidily" ;
-lin untidy_A = mkA "untidy" "untidier" "untidiest" "untidily" ; -- compound tidy_A ;
-lin wieldy_A = mkA "wieldy" "wieldier" "wieldiest" "wieldily" ;
-lin moldy_A = mkA "moldy" "moldier" "moldiest" "moldily" ;
-lin mouldy_A = mkA "mouldy" "mouldier" "mouldiest" "mouldily" ;
-lin bandy_A = mkA "bandy" "bandier" "bandiest" "bandily" ;
-lin handy_A = mkA "handy" "handier" "handiest" "handily" ;
-lin randy_A = mkA "randy" "randier" "randiest" "randily" ;
-lin sandy_A = mkA "sandy" "sandier" "sandiest" "sandily" ;
-lin trendy_A = mkA "trendy" "trendier" "trendiest" "trendily" ;
-lin windy_A = mkA "windy" "windier" "windiest" "windily" ;
-lin bloody_A = mkA "bloody" "bloodier" "bloodiest" "bloodily" ;
-lin moody_A = mkA "moody" "moodier" "moodiest" "moodily" ;
-lin broody_A = mkA "broody" "broodier" "broodiest" "broodily" ;
-lin woody_A = mkA "woody" "woodier" "woodiest" "woodily" ;
-lin hardy_A = mkA "hardy" "hardier" "hardiest" "hardily" ;
-lin tardy_A = mkA "tardy" "tardier" "tardiest" "tardily" ;
-lin wordy_A = mkA "wordy" "wordier" "wordiest" "wordily" ;
-lin sturdy_A = mkA "sturdy" "sturdier" "sturdiest" "sturdily" ;
-lin gaudy_A = mkA "gaudy" "gaudier" "gaudiest" "gaudily" ;
-lin cloudy_A = mkA "cloudy" "cloudier" "cloudiest" "cloudily" ;
-lin bawdy_A = mkA "bawdy" "bawdier" "bawdiest" "bawdily" ;
-lin dowdy_A = mkA "dowdy" "dowdier" "dowdiest" "dowdily" ;
-lin rowdy_A = mkA "rowdy" "rowdier" "rowdiest" "rowdily" ;
-lin pricey_A = mkA "pricey" "priceyyer" "priceyyest" "priceily" ;
-lin key_A = mkA "key" "keier" "keiest" "keily" ;
-lin gooey_A = mkA "gooey" "gooeyyer" "gooeyyest" "gooeily" ;
-lin ropey_A = mkA "ropey" "ropeyyer" "ropeyyest" "ropeily" ;
-lin grey_A = mkA "grey" "greyer" "greyest" "greily" ;
-lin leafy_A = mkA "leafy" "leafier" "leafiest" "leafily" ;
-lin beefy_A = mkA "beefy" "beefier" "beefiest" "beefily" ;
-lin reefy_A = mkA "reefy" "reefier" "reefiest" "reefily" ;
-lin chaffy_A = mkA "chaffy" "chaffier" "chaffiest" "chaffily" ;
-lin niffy_A = mkA "niffy" "niffier" "niffiest" "niffily" ;
-lin sniffy_A = mkA "sniffy" "sniffier" "sniffiest" "sniffily" ; -- notcompound niffy_A ;
-lin huffy_A = mkA "huffy" "huffier" "huffiest" "huffily" ;
-lin fluffy_A = mkA "fluffy" "fluffier" "fluffiest" "fluffily" ;
-lin puffy_A = mkA "puffy" "puffier" "puffiest" "puffily" ;
-lin scruffy_A = mkA "scruffy" "scruffier" "scruffiest" "scruffily" ;
-lin stuffy_A = mkA "stuffy" "stuffier" "stuffiest" "stuffily" ;
-lin comfy_A = mkA "comfy" "comfier" "comfiest" "comfily" ;
-lin goofy_A = mkA "goofy" "goofier" "goofiest" "goofily" ;
-lin scurfy_A = mkA "scurfy" "scurfier" "scurfiest" "scurfily" ;
-lin edgy_A = mkA "edgy" "edgier" "edgiest" "edgily" ;
-lin sedgy_A = mkA "sedgy" "sedgier" "sedgiest" "sedgily" ; -- notcompound edgy_A ;
-lin podgy_A = mkA "podgy" "podgier" "podgiest" "podgily" ;
-lin stodgy_A = mkA "stodgy" "stodgier" "stodgiest" "stodgily" ;
-lin pudgy_A = mkA "pudgy" "pudgier" "pudgiest" "pudgily" ;
-lin shaggy_A = mkA "shaggy" "shaggier" "shaggiest" "shaggily" ;
-lin jaggy_A = mkA "jaggy" "jaggier" "jaggiest" "jaggily" ;
-lin craggy_A = mkA "craggy" "craggier" "craggiest" "craggily" ;
-lin scraggy_A = mkA "scraggy" "scraggier" "scraggiest" "scraggily" ; -- notcompound craggy_A ;
-lin piggy_A = mkA "piggy" "piggier" "piggiest" "piggily" ;
-lin twiggy_A = mkA "twiggy" "twiggier" "twiggiest" "twiggily" ;
-lin boggy_A = mkA "boggy" "boggier" "boggiest" "boggily" ;
-lin foggy_A = mkA "foggy" "foggier" "foggiest" "foggily" ;
-lin cloggy_A = mkA "cloggy" "cloggier" "cloggiest" "cloggily" ;
-lin smoggy_A = mkA "smoggy" "smoggier" "smoggiest" "smoggily" ;
-lin groggy_A = mkA "groggy" "groggier" "groggiest" "groggily" ;
-lin soggy_A = mkA "soggy" "soggier" "soggiest" "soggily" ;
-lin buggy_A = mkA "buggy" "buggier" "buggiest" "buggily" ;
-lin fuggy_A = mkA "fuggy" "fuggier" "fuggiest" "fuggily" ;
-lin muggy_A = mkA "muggy" "muggier" "muggiest" "muggily" ;
-lin bilgy_A = mkA "bilgy" "bilgier" "bilgiest" "bilgily" ;
-lin slangy_A = mkA "slangy" "slangier" "slangiest" "slangily" ;
-lin mangy_A = mkA "mangy" "mangier" "mangiest" "mangily" ;
-lin rangy_A = mkA "rangy" "rangier" "rangiest" "rangily" ;
-lin tangy_A = mkA "tangy" "tangier" "tangiest" "tangily" ;
-lin dingy_A = mkA "dingy" "dingier" "dingiest" "dingily" ;
-lin mingy_A = mkA "mingy" "mingier" "mingiest" "mingily" ;
-lin fringy_A = mkA "fringy" "fringier" "fringiest" "fringily" ;
-lin springy_A = mkA "springy" "springier" "springiest" "springily" ;
-lin stringy_A = mkA "stringy" "stringier" "stringiest" "stringily" ;
-lin stingy_A = mkA "stingy" "stingier" "stingiest" "stingily" ;
-lin spongy_A = mkA "spongy" "spongier" "spongiest" "spongily" ;
-lin peachy_A = mkA "peachy" "peachier" "peachiest" "peachily" ;
-lin preachy_A = mkA "preachy" "preachier" "preachiest" "preachily" ;
-lin branchy_A = mkA "branchy" "branchier" "branchiest" "branchily" ;
-lin paunchy_A = mkA "paunchy" "paunchier" "paunchiest" "paunchily" ;
-lin raunchy_A = mkA "raunchy" "raunchier" "raunchiest" "raunchily" ;
-lin bunchy_A = mkA "bunchy" "bunchier" "bunchiest" "bunchily" ;
-lin starchy_A = mkA "starchy" "starchier" "starchiest" "starchily" ;
-lin catchy_A = mkA "catchy" "catchier" "catchiest" "catchily" ;
-lin patchy_A = mkA "patchy" "patchier" "patchiest" "patchily" ;
-lin scratchy_A = mkA "scratchy" "scratchier" "scratchiest" "scratchily" ;
-lin sketchy_A = mkA "sketchy" "sketchier" "sketchiest" "sketchily" ;
-lin tetchy_A = mkA "tetchy" "tetchier" "tetchiest" "tetchily" ;
-lin itchy_A = mkA "itchy" "itchier" "itchiest" "itchily" ;
-lin bitchy_A = mkA "bitchy" "bitchier" "bitchiest" "bitchily" ; -- notcompound itchy_A ;
-lin pitchy_A = mkA "pitchy" "pitchier" "pitchiest" "pitchily" ; -- notcompound itchy_A ;
-lin botchy_A = mkA "botchy" "botchier" "botchiest" "botchily" ;
-lin blotchy_A = mkA "blotchy" "blotchier" "blotchiest" "blotchily" ;
-lin slouchy_A = mkA "slouchy" "slouchier" "slouchiest" "slouchily" ;
-lin grouchy_A = mkA "grouchy" "grouchier" "grouchiest" "grouchily" ;
-lin touchy_A = mkA "touchy" "touchier" "touchiest" "touchily" ;
-lin doughy_A = mkA "doughy" "doughier" "doughiest" "doughily" ;
-lin flashy_A = mkA "flashy" "flashier" "flashiest" "flashily" ;
-lin splashy_A = mkA "splashy" "splashier" "splashiest" "splashily" ;
-lin trashy_A = mkA "trashy" "trashier" "trashiest" "trashily" ;
-lin squashy_A = mkA "squashy" "squashier" "squashiest" "squashily" ;
-lin fleshy_A = mkA "fleshy" "fleshier" "fleshiest" "fleshily" ;
-lin dishy_A = mkA "dishy" "dishier" "dishiest" "dishily" ;
-lin fishy_A = mkA "fishy" "fishier" "fishiest" "fishily" ;
-lin swishy_A = mkA "swishy" "swishier" "swishiest" "swishily" ;
-lin marshy_A = mkA "marshy" "marshier" "marshiest" "marshily" ;
-lin cushy_A = mkA "cushy" "cushier" "cushiest" "cushily" ;
-lin plushy_A = mkA "plushy" "plushier" "plushiest" "plushily" ;
-lin slushy_A = mkA "slushy" "slushier" "slushiest" "slushily" ;
-lin mushy_A = mkA "mushy" "mushier" "mushiest" "mushily" ;
-lin rushy_A = mkA "rushy" "rushier" "rushiest" "rushily" ;
-lin shy_A = mkA "shy" "shyer" "shyest" "shily" ;
-lin lengthy_A = mkA "lengthy" "lengthier" "lengthiest" "lengthily" ;
-lin pithy_A = mkA "pithy" "pithier" "pithiest" "pithily" ;
-lin healthy_A = mkA "healthy" "healthier" "healthiest" "healthily" ;
-lin stealthy_A = mkA "stealthy" "stealthier" "stealthiest" "stealthily" ;
-lin wealthy_A = mkA "wealthy" "wealthier" "wealthiest" "wealthily" ;
-lin filthy_A = mkA "filthy" "filthier" "filthiest" "filthily" ;
-lin mothy_A = mkA "mothy" "mothier" "mothiest" "mothily" ;
-lin toothy_A = mkA "toothy" "toothier" "toothiest" "toothily" ;
-lin frothy_A = mkA "frothy" "frothier" "frothiest" "frothily" ;
-lin earthy_A = mkA "earthy" "earthier" "earthiest" "earthily" ;
-lin worthy_A = mkA "worthy" "worthier" "worthiest" "worthily" ;
-lin leaky_A = mkA "leaky" "leakier" "leakiest" "leakily" ;
-lin sneaky_A = mkA "sneaky" "sneakier" "sneakiest" "sneakily" ;
-lin peaky_A = mkA "peaky" "peakier" "peakiest" "peakily" ;
-lin creaky_A = mkA "creaky" "creakier" "creakiest" "creakily" ;
-lin screaky_A = mkA "screaky" "screakier" "screakiest" "screakily" ; -- notcompound creaky_A ;
-lin freaky_A = mkA "freaky" "freakier" "freakiest" "freakily" ;
-lin streaky_A = mkA "streaky" "streakier" "streakiest" "streakily" ;
-lin squeaky_A = mkA "squeaky" "squeakier" "squeakiest" "squeakily" ;
-lin shaky_A = mkA "shaky" "shakier" "shakiest" "shakily" ;
-lin flaky_A = mkA "flaky" "flakier" "flakiest" "flakily" ;
-lin snaky_A = mkA "snaky" "snakier" "snakiest" "snakily" ;
-lin croaky_A = mkA "croaky" "croakier" "croakiest" "croakily" ;
-lin braky_A = mkA "braky" "brakier" "brakiest" "brakily" ;
-lin tacky_A = mkA "tacky" "tackier" "tackiest" "tackily" ;
-lin icky_A = mkA "icky" "ickier" "ickiest" "ickily" ;
-lin tricky_A = mkA "tricky" "trickier" "trickiest" "trickily" ; -- notcompound icky_A ;
-lin sticky_A = mkA "sticky" "stickier" "stickiest" "stickily" ; -- notcompound icky_A ;
-lin cocky_A = mkA "cocky" "cockier" "cockiest" "cockily" ;
-lin rocky_A = mkA "rocky" "rockier" "rockiest" "rockily" ;
-lin stocky_A = mkA "stocky" "stockier" "stockiest" "stockily" ;
-lin lucky_A = mkA "lucky" "luckier" "luckiest" "luckily" ;
-lin plucky_A = mkA "plucky" "pluckier" "pluckiest" "pluckily" ; -- notcompound lucky_A ;
-lin mucky_A = mkA "mucky" "muckier" "muckiest" "muckily" ;
-lin cheeky_A = mkA "cheeky" "cheekier" "cheekiest" "cheekily" ;
-lin spiky_A = mkA "spiky" "spikier" "spikiest" "spikily" ;
-lin chalky_A = mkA "chalky" "chalkier" "chalkiest" "chalkily" ;
-lin milky_A = mkA "milky" "milkier" "milkiest" "milkily" ;
-lin silky_A = mkA "silky" "silkier" "silkiest" "silkily" ;
-lin bulky_A = mkA "bulky" "bulkier" "bulkiest" "bulkily" ;
-lin sulky_A = mkA "sulky" "sulkier" "sulkiest" "sulkily" ;
-lin lanky_A = mkA "lanky" "lankier" "lankiest" "lankily" ;
-lin manky_A = mkA "manky" "mankier" "mankiest" "mankily" ;
-lin cranky_A = mkA "cranky" "crankier" "crankiest" "crankily" ;
-lin swanky_A = mkA "swanky" "swankier" "swankiest" "swankily" ;
-lin inky_A = mkA "inky" "inkier" "inkiest" "inkily" ;
-lin dinky_A = mkA "dinky" "dinkier" "dinkiest" "dinkily" ; -- notcompound inky_A ;
-lin kinky_A = mkA "kinky" "kinkier" "kinkiest" "kinkily" ; -- notcompound inky_A ;
-lin funky_A = mkA "funky" "funkier" "funkiest" "funkily" ;
-lin chunky_A = mkA "chunky" "chunkier" "chunkiest" "chunkily" ;
-lin clunky_A = mkA "clunky" "clunkier" "clunkiest" "clunkily" ;
-lin spunky_A = mkA "spunky" "spunkier" "spunkiest" "spunkily" ;
-lin choky_A = mkA "choky" "chokier" "chokiest" "chokily" ;
-lin smoky_A = mkA "smoky" "smokier" "smokiest" "smokily" ;
-lin spooky_A = mkA "spooky" "spookier" "spookiest" "spookily" ;
-lin poky_A = mkA "poky" "pokier" "pokiest" "pokily" ;
-lin barky_A = mkA "barky" "barkier" "barkiest" "barkily" ;
-lin jerky_A = mkA "jerky" "jerkier" "jerkiest" "jerkily" ;
-lin perky_A = mkA "perky" "perkier" "perkiest" "perkily" ;
-lin murky_A = mkA "murky" "murkier" "murkiest" "murkily" ;
-lin pesky_A = mkA "pesky" "peskier" "peskiest" "peskily" ;
-lin risky_A = mkA "risky" "riskier" "riskiest" "riskily" ;
-lin frisky_A = mkA "frisky" "friskier" "friskiest" "friskily" ; -- notcompound risky_A ;
-lin dusky_A = mkA "dusky" "duskier" "duskiest" "duskily" ;
-lin husky_A = mkA "husky" "huskier" "huskiest" "huskily" ;
-lin musky_A = mkA "musky" "muskier" "muskiest" "muskily" ;
-lin gawky_A = mkA "gawky" "gawkier" "gawkiest" "gawkily" ;
-lin scaly_A = mkA "scaly" "scalier" "scaliest" "scalily" ;
-lin mealy_A = mkA "mealy" "mealier" "mealiest" "mealily" ;
-lin scrabbly_A = mkA "scrabbly" "scrabblier" "scrabbliest" "scrabblily" ;
-lin pebbly_A = mkA "pebbly" "pebblier" "pebbliest" "pebblily" ;
-lin knobbly_A = mkA "knobbly" "knobblier" "knobbliest" "knobblily" ;
-lin wobbly_A = mkA "wobbly" "wobblier" "wobbliest" "wobblily" ;
-lin bubbly_A = mkA "bubbly" "bubblier" "bubbliest" "bubblily" ;
-lin stubbly_A = mkA "stubbly" "stubblier" "stubbliest" "stubblily" ;
-lin crumbly_A = mkA "crumbly" "crumblier" "crumbliest" "crumblily" ;
-lin deadly_A = mkA "deadly" "deadlier" "deadliest" "deadlily" ;
-lin cuddly_A = mkA "cuddly" "cuddlier" "cuddliest" "cuddlily" ;
-lin worldly_A = mkA "worldly" "worldlier" "worldliest" "worldlily" ;
-lin friendly_A = mkA "friendly" "friendlier" "friendliest" "friendlily" ;
-lin kindly_A = mkA "kindly" "kindlier" "kindliest" "kindlily" ;
-lin spindly_A = mkA "spindly" "spindlier" "spindliest" "spindlily" ;
-lin godly_A = mkA "godly" "godlier" "godliest" "godlily" ;
-lin goodly_A = mkA "goodly" "goodlier" "goodliest" "goodlily" ;
-lin lordly_A = mkA "lordly" "lordlier" "lordliest" "lordlily" ;
-lin princely_A = mkA "princely" "princelier" "princeliest" "princelily" ;
-lin steely_A = mkA "steely" "steelier" "steeliest" "steelily" ;
-lin wifely_A = mkA "wifely" "wifelier" "wifeliest" "wifelily" ;
-lin likely_A = mkA "likely" "likelier" "likeliest" "likelily" ;
-lin comely_A = mkA "comely" "comelier" "comeliest" "comelily" ;
-lin homely_A = mkA "homely" "homelier" "homeliest" "homelily" ;
-lin lonely_A = mkA "lonely" "lonelier" "loneliest" "lonelily" ;
-lin shapely_A = mkA "shapely" "shapelier" "shapeliest" "shapelily" ;
-lin stately_A = mkA "stately" "statelier" "stateliest" "statelily" ;
-lin lively_A = mkA "lively" "livelier" "liveliest" "livelily" ;
-lin lovely_A = mkA "lovely" "lovelier" "loveliest" "lovelily" ;
-lin sniffly_A = mkA "sniffly" "snifflier" "sniffliest" "snifflily" ;
-lin scraggly_A = mkA "scraggly" "scragglier" "scraggliest" "scragglily" ;
-lin straggly_A = mkA "straggly" "stragglier" "straggliest" "stragglily" ;
-lin squiggly_A = mkA "squiggly" "squigglier" "squiggliest" "squigglily" ;
-lin wiggly_A = mkA "wiggly" "wigglier" "wiggliest" "wigglily" ;
-lin shingly_A = mkA "shingly" "shinglier" "shingliest" "shinglily" ;
-lin jungly_A = mkA "jungly" "junglier" "jungliest" "junglily" ;
-lin ugly_A = mkA "ugly" "uglier" "ugliest" "uglily" ;
-lin fugly_A = mkA "fugly" "fuglier" "fugliest" "fuglily" ; -- notcompound ugly_A ;
-lin churchly_A = mkA "churchly" "churchlier" "churchliest" "churchlily" ;
-lin loathly_A = mkA "loathly" "loathlier" "loathliest" "loathlily" ;
-lin oily_A = mkA "oily" "oilier" "oiliest" "oilily" ;
-lin wily_A = mkA "wily" "wilier" "wiliest" "wilily" ;
-lin weakly_A = mkA "weakly" "weaklier" "weakliest" "weaklily" ;
-lin cackly_A = mkA "cackly" "cacklier" "cackliest" "cacklily" ;
-lin prickly_A = mkA "prickly" "pricklier" "prickliest" "pricklily" ;
-lin sickly_A = mkA "sickly" "sicklier" "sickliest" "sicklily" ;
-lin crinkly_A = mkA "crinkly" "crinklier" "crinkliest" "crinklily" ;
-lin wrinkly_A = mkA "wrinkly" "wrinklier" "wrinkliest" "wrinklily" ;
-lin pally_A = mkA "pally" "pallier" "palliest" "pallily" ;
-lin smelly_A = mkA "smelly" "smellier" "smelliest" "smellily" ;
-lin hilly_A = mkA "hilly" "hillier" "hilliest" "hillily" ;
-lin chilly_A = mkA "chilly" "chillier" "chilliest" "chillily" ; -- notcompound hilly_A ;
-lin frilly_A = mkA "frilly" "frillier" "frilliest" "frillily" ;
-lin silly_A = mkA "silly" "sillier" "silliest" "sillily" ;
-lin jolly_A = mkA "jolly" "jollier" "jolliest" "jollily" ;
-lin woolly_A = mkA "woolly" "woollier" "woolliest" "woollily" ;
-lin seemly_A = mkA "seemly" "seemlier" "seemliest" "seemlily" ;
-lin cleanly_A = mkA "cleanly" "cleanlier" "cleanliest" "cleanlily" ;
-lin manly_A = mkA "manly" "manlier" "manliest" "manlily" ;
-lin womanly_A = mkA "womanly" "womanlier" "womanliest" "womanlily" ; -- compound manly_A ;
-lin queenly_A = mkA "queenly" "queenlier" "queenliest" "queenlily" ;
-lin slovenly_A = mkA "slovenly" "slovenlier" "slovenliest" "slovenlily" ;
-lin gainly_A = mkA "gainly" "gainlier" "gainliest" "gainlily" ;
-lin holy_A = mkA "holy" "holier" "holiest" "holily" ;
-lin wooly_A = mkA "wooly" "woolier" "wooliest" "woolily" ;
-lin pimply_A = mkA "pimply" "pimplier" "pimpliest" "pimplily" ;
-lin early_A = mkA "early" "earlier" "earliest" "earlily" ;
-lin pearly_A = mkA "pearly" "pearlier" "pearliest" "pearlily" ; -- notcompound early_A ;
-lin marly_A = mkA "marly" "marlier" "marliest" "marlily" ;
-lin burly_A = mkA "burly" "burlier" "burliest" "burlily" ;
-lin curly_A = mkA "curly" "curlier" "curliest" "curlily" ;
-lin surly_A = mkA "surly" "surlier" "surliest" "surlily" ;
-lin sly_A = mkA "sly" "slyer" "slyest" "slily" ;
-lin sprightly_A = mkA "sprightly" "sprightlier" "sprightliest" "sprightlily" ;
-lin saintly_A = mkA "saintly" "saintlier" "saintliest" "saintlily" ;
-lin courtly_A = mkA "courtly" "courtlier" "courtliest" "courtlily" ;
-lin beastly_A = mkA "beastly" "beastlier" "beastliest" "beastlily" ;
-lin ghastly_A = mkA "ghastly" "ghastlier" "ghastliest" "ghastlily" ;
-lin priestly_A = mkA "priestly" "priestlier" "priestliest" "priestlily" ;
-lin bristly_A = mkA "bristly" "bristlier" "bristliest" "bristlily" ;
-lin costly_A = mkA "costly" "costlier" "costliest" "costlily" ;
-lin ruly_A = mkA "ruly" "rulier" "ruliest" "rulily" ;
-lin unruly_A = mkA "unruly" "unrulier" "unruliest" "unrulily" ; -- compound ruly_A ;
-lin sprawly_A = mkA "sprawly" "sprawlier" "sprawliest" "sprawlily" ;
-lin jowly_A = mkA "jowly" "jowlier" "jowliest" "jowlily" ;
-lin lowly_A = mkA "lowly" "lowlier" "lowliest" "lowlily" ;
-lin beamy_A = mkA "beamy" "beamier" "beamiest" "beamily" ;
-lin creamy_A = mkA "creamy" "creamier" "creamiest" "creamily" ;
-lin dreamy_A = mkA "dreamy" "dreamier" "dreamiest" "dreamily" ;
-lin seamy_A = mkA "seamy" "seamier" "seamiest" "seamily" ;
-lin steamy_A = mkA "steamy" "steamier" "steamiest" "steamily" ;
-lin gamy_A = mkA "gamy" "gamier" "gamiest" "gamily" ;
-lin foamy_A = mkA "foamy" "foamier" "foamiest" "foamily" ;
-lin loamy_A = mkA "loamy" "loamier" "loamiest" "loamily" ;
-lin phlegmy_A = mkA "phlegmy" "phlegmier" "phlegmiest" "phlegmily" ;
-lin slimy_A = mkA "slimy" "slimier" "slimiest" "slimily" ;
-lin scrimy_A = mkA "scrimy" "scrimier" "scrimiest" "scrimily" ;
-lin grimy_A = mkA "grimy" "grimier" "grimiest" "grimily" ;
-lin balmy_A = mkA "balmy" "balmier" "balmiest" "balmily" ;
-lin palmy_A = mkA "palmy" "palmier" "palmiest" "palmily" ;
-lin filmy_A = mkA "filmy" "filmier" "filmiest" "filmily" ;
-lin hammy_A = mkA "hammy" "hammier" "hammiest" "hammily" ;
-lin clammy_A = mkA "clammy" "clammier" "clammiest" "clammily" ;
-lin scummy_A = mkA "scummy" "scummier" "scummiest" "scummily" ;
-lin dummy_A = mkA "dummy" "dummier" "dummiest" "dummily" ;
-lin gummy_A = mkA "gummy" "gummier" "gummiest" "gummily" ;
-lin chummy_A = mkA "chummy" "chummier" "chummiest" "chummily" ;
-lin plummy_A = mkA "plummy" "plummier" "plummiest" "plummily" ;
-lin slummy_A = mkA "slummy" "slummier" "slummiest" "slummily" ;
-lin rummy_A = mkA "rummy" "rummyyer" "rummyyest" "rummily" ;
-lin gloomy_A = mkA "gloomy" "gloomier" "gloomiest" "gloomily" ;
-lin roomy_A = mkA "roomy" "roomier" "roomiest" "roomily" ;
-lin germy_A = mkA "germy" "germier" "germiest" "germily" ;
-lin stormy_A = mkA "stormy" "stormier" "stormiest" "stormily" ;
-lin wormy_A = mkA "wormy" "wormier" "wormiest" "wormily" ;
-lin rheumy_A = mkA "rheumy" "rheumier" "rheumiest" "rheumily" ;
-lin many_A = mkA "many" "manier" "maniest" "manily" ;
-lin zany_A = mkA "zany" "zanier" "zaniest" "zanily" ;
-lin teeny_A = mkA "teeny" "teenier" "teeniest" "teenily" ;
-lin weeny_A = mkA "weeny" "weenier" "weeniest" "weenily" ;
-lin rainy_A = mkA "rainy" "rainier" "rainiest" "rainily" ;
-lin brainy_A = mkA "brainy" "brainier" "brainiest" "brainily" ; -- notcompound rainy_A ;
-lin shiny_A = mkA "shiny" "shinier" "shiniest" "shinily" ;
-lin spiny_A = mkA "spiny" "spinier" "spiniest" "spinily" ;
-lin briny_A = mkA "briny" "brinier" "briniest" "brinily" ;
-lin tiny_A = mkA "tiny" "tinier" "tiniest" "tinily" ;
-lin winy_A = mkA "winy" "winier" "winiest" "winily" ;
-lin canny_A = mkA "canny" "cannier" "canniest" "cannily" ;
-lin skinny_A = mkA "skinny" "skinnier" "skinniest" "skinnily" ;
-lin tinny_A = mkA "tinny" "tinnier" "tinniest" "tinnily" ;
-lin bonny_A = mkA "bonny" "bonnier" "bonniest" "bonnily" ;
-lin funny_A = mkA "funny" "funnier" "funniest" "funnily" ;
-lin runny_A = mkA "runny" "runnier" "runniest" "runnily" ;
-lin sunny_A = mkA "sunny" "sunnier" "sunniest" "sunnily" ;
-lin bony_A = mkA "bony" "bonier" "boniest" "bonily" ;
-lin loony_A = mkA "loony" "loonier" "looniest" "loonily" ;
-lin moony_A = mkA "moony" "moonier" "mooniest" "moonily" ;
-lin stony_A = mkA "stony" "stonier" "stoniest" "stonily" ;
-lin ferny_A = mkA "ferny" "fernier" "ferniest" "fernily" ;
-lin corny_A = mkA "corny" "cornier" "corniest" "cornily" ;
-lin horny_A = mkA "horny" "hornier" "horniest" "hornily" ;
-lin thorny_A = mkA "thorny" "thornier" "thorniest" "thornily" ; -- notcompound horny_A ;
-lin puny_A = mkA "puny" "punier" "puniest" "punily" ;
-lin brawny_A = mkA "brawny" "brawnier" "brawniest" "brawnily" ;
-lin scrawny_A = mkA "scrawny" "scrawnier" "scrawniest" "scrawnily" ;
-lin coy_A = mkA "coy" "coyer" "coyest" "coily" ;
-lin soapy_A = mkA "soapy" "soapier" "soapiest" "soapily" ;
-lin sleepy_A = mkA "sleepy" "sleepier" "sleepiest" "sleepily" ;
-lin creepy_A = mkA "creepy" "creepier" "creepiest" "creepily" ;
-lin weepy_A = mkA "weepy" "weepier" "weepiest" "weepily" ;
-lin stripy_A = mkA "stripy" "stripier" "stripiest" "stripily" ;
-lin pulpy_A = mkA "pulpy" "pulpier" "pulpiest" "pulpily" ;
-lin swampy_A = mkA "swampy" "swampier" "swampiest" "swampily" ;
-lin skimpy_A = mkA "skimpy" "skimpier" "skimpiest" "skimpily" ;
-lin bumpy_A = mkA "bumpy" "bumpier" "bumpiest" "bumpily" ;
-lin dumpy_A = mkA "dumpy" "dumpier" "dumpiest" "dumpily" ;
-lin jumpy_A = mkA "jumpy" "jumpier" "jumpiest" "jumpily" ;
-lin lumpy_A = mkA "lumpy" "lumpier" "lumpiest" "lumpily" ;
-lin frumpy_A = mkA "frumpy" "frumpier" "frumpiest" "frumpily" ;
-lin grumpy_A = mkA "grumpy" "grumpier" "grumpiest" "grumpily" ;
-lin stumpy_A = mkA "stumpy" "stumpier" "stumpiest" "stumpily" ;
-lin ropy_A = mkA "ropy" "ropier" "ropiest" "ropily" ;
-lin happy_A = mkA "happy" "happier" "happiest" "happily" ;
-lin unhappy_A = mkA "unhappy" "unhappier" "unhappiest" "unhappily" ; -- compound happy_A ;
-lin snappy_A = mkA "snappy" "snappier" "snappiest" "snappily" ;
-lin scrappy_A = mkA "scrappy" "scrappier" "scrappiest" "scrappily" ;
-lin sappy_A = mkA "sappy" "sappier" "sappiest" "sappily" ;
-lin whippy_A = mkA "whippy" "whippier" "whippiest" "whippily" ;
-lin nippy_A = mkA "nippy" "nippier" "nippiest" "nippily" ;
-lin drippy_A = mkA "drippy" "drippier" "drippiest" "drippily" ;
-lin choppy_A = mkA "choppy" "choppier" "choppiest" "choppily" ;
-lin floppy_A = mkA "floppy" "floppier" "floppiest" "floppily" ;
-lin sloppy_A = mkA "sloppy" "sloppier" "sloppiest" "sloppily" ;
-lin soppy_A = mkA "soppy" "soppier" "soppiest" "soppily" ;
-lin wispy_A = mkA "wispy" "wispier" "wispiest" "wispily" ;
-lin croupy_A = mkA "croupy" "croupier" "croupiest" "croupily" ;
-lin soupy_A = mkA "soupy" "soupier" "soupiest" "soupily" ;
-lin scary_A = mkA "scary" "scarier" "scariest" "scarily" ;
-lin dreary_A = mkA "dreary" "drearier" "dreariest" "drearily" ;
-lin teary_A = mkA "teary" "tearier" "teariest" "tearily" ;
-lin weary_A = mkA "weary" "wearier" "weariest" "wearily" ;
-lin sugary_A = mkA "sugary" "sugarier" "sugariest" "sugarily" ;
-lin hoary_A = mkA "hoary" "hoarier" "hoariest" "hoarily" ;
-lin wary_A = mkA "wary" "warier" "wariest" "warily" ;
-lin dry_A = mkA "dry" "drier" "driest" "drily" ;
-lin tawdry_A = mkA "tawdry" "tawdrier" "tawdriest" "tawdrily" ; -- compound dry_A ;
-lin eery_A = mkA "eery" "eerier" "eeriest" "eerily" ;
-lin beery_A = mkA "beery" "beerier" "beeriest" "beerily" ; -- notcompound eery_A ;
-lin leery_A = mkA "leery" "leerier" "leeriest" "leerily" ; -- notcompound eery_A ;
-lin summery_A = mkA "summery" "summerier" "summeriest" "summerily" ;
-lin slippery_A = mkA "slippery" "slipperier" "slipperiest" "slipperily" ;
-lin watery_A = mkA "watery" "waterier" "wateriest" "waterily" ;
-lin wintery_A = mkA "wintery" "winterier" "winteriest" "winterily" ;
-lin silvery_A = mkA "silvery" "silverier" "silveriest" "silverily" ;
-lin showery_A = mkA "showery" "showerier" "showeriest" "showerily" ;
-lin flowery_A = mkA "flowery" "flowerier" "floweriest" "flowerily" ;
-lin angry_A = mkA "angry" "angrier" "angriest" "angrily" ;
-lin hungry_A = mkA "hungry" "hungrier" "hungriest" "hungrily" ;
-lin hairy_A = mkA "hairy" "hairier" "hairiest" "hairily" ;
-lin miry_A = mkA "miry" "mirier" "miriest" "mirily" ;
-lin wiry_A = mkA "wiry" "wirier" "wiriest" "wirily" ;
-lin gory_A = mkA "gory" "gorier" "goriest" "gorily" ;
-lin spry_A = mkA "spry" "spryer" "spryest" "sprily" ;
-lin starry_A = mkA "starry" "starrier" "starriest" "starrily" ;
-lin merry_A = mkA "merry" "merrier" "merriest" "merrily" ;
-lin sorry_A = mkA "sorry" "sorrier" "sorriest" "sorrily" ;
-lin furry_A = mkA "furry" "furrier" "furriest" "furrily" ;
-lin paltry_A = mkA "paltry" "paltrier" "paltriest" "paltrily" ;
-lin sultry_A = mkA "sultry" "sultrier" "sultriest" "sultrily" ;
-lin wintry_A = mkA "wintry" "wintrier" "wintriest" "wintrily" ;
-lin floury_A = mkA "floury" "flourier" "flouriest" "flourily" ;
-lin wry_A = mkA "wry" "wrier" "wriest" "wrily" ;
-lin easy_A = mkA "easy" "easier" "easiest" "easily" ;
-lin greasy_A = mkA "greasy" "greasier" "greasiest" "greasily" ; -- notcompound easy_A ;
-lin queasy_A = mkA "queasy" "queasier" "queasiest" "queasily" ; -- compound easy_A ;
-lin woodsy_A = mkA "woodsy" "woodsier" "woodsiest" "woodsily" ;
-lin noisy_A = mkA "noisy" "noisier" "noisiest" "noisily" ;
-lin flimsy_A = mkA "flimsy" "flimsier" "flimsiest" "flimsily" ;
-lin clumsy_A = mkA "clumsy" "clumsier" "clumsiest" "clumsily" ;
-lin cosy_A = mkA "cosy" "cosier" "cosiest" "cosily" ;
-lin nosy_A = mkA "nosy" "nosier" "nosiest" "nosily" ;
-lin choosy_A = mkA "choosy" "choosier" "choosiest" "choosily" ;
-lin rosy_A = mkA "rosy" "rosier" "rosiest" "rosily" ;
-lin prosy_A = mkA "prosy" "prosier" "prosiest" "prosily" ; -- notcompound rosy_A ;
-lin gassy_A = mkA "gassy" "gassier" "gassiest" "gassily" ;
-lin classy_A = mkA "classy" "classier" "classiest" "classily" ;
-lin glassy_A = mkA "glassy" "glassier" "glassiest" "glassily" ;
-lin massy_A = mkA "massy" "massier" "massiest" "massily" ;
-lin brassy_A = mkA "brassy" "brassier" "brassiest" "brassily" ;
-lin grassy_A = mkA "grassy" "grassier" "grassiest" "grassily" ;
-lin messy_A = mkA "messy" "messier" "messiest" "messily" ;
-lin dressy_A = mkA "dressy" "dressier" "dressiest" "dressily" ;
-lin bossy_A = mkA "bossy" "bossier" "bossiest" "bossily" ;
-lin lossy_A = mkA "lossy" "lossier" "lossiest" "lossily" ;
-lin glossy_A = mkA "glossy" "glossier" "glossiest" "glossily" ; -- notcompound lossy_A ;
-lin mossy_A = mkA "mossy" "mossier" "mossiest" "mossily" ;
-lin fussy_A = mkA "fussy" "fussier" "fussiest" "fussily" ;
-lin antsy_A = mkA "antsy" "antsier" "antsiest" "antsily" ;
-lin gutsy_A = mkA "gutsy" "gutsier" "gutsiest" "gutsily" ;
-lin busy_A = mkA "busy" "busier" "busiest" "busily" ;
-lin lousy_A = mkA "lousy" "lousier" "lousiest" "lousily" ;
-lin mousy_A = mkA "mousy" "mousier" "mousiest" "mousily" ;
-lin newsy_A = mkA "newsy" "newsier" "newsiest" "newsily" ;
-lin blowsy_A = mkA "blowsy" "blowsier" "blowsiest" "blowsily" ;
-lin drowsy_A = mkA "drowsy" "drowsier" "drowsiest" "drowsily" ;
-lin frowsy_A = mkA "frowsy" "frowsier" "frowsiest" "frowsily" ;
-lin meaty_A = mkA "meaty" "meatier" "meatiest" "meatily" ;
-lin peaty_A = mkA "peaty" "peatier" "peatiest" "peatily" ;
-lin sweaty_A = mkA "sweaty" "sweatier" "sweatiest" "sweatily" ;
-lin slaty_A = mkA "slaty" "slatier" "slatiest" "slatily" ;
-lin throaty_A = mkA "throaty" "throatier" "throatiest" "throatily" ;
-lin sleety_A = mkA "sleety" "sleetier" "sleetiest" "sleetily" ;
-lin crafty_A = mkA "crafty" "craftier" "craftiest" "craftily" ;
-lin drafty_A = mkA "drafty" "draftier" "draftiest" "draftily" ;
-lin hefty_A = mkA "hefty" "heftier" "heftiest" "heftily" ;
-lin shifty_A = mkA "shifty" "shiftier" "shiftiest" "shiftily" ;
-lin nifty_A = mkA "nifty" "niftier" "niftiest" "niftily" ;
-lin thrifty_A = mkA "thrifty" "thriftier" "thriftiest" "thriftily" ;
-lin lofty_A = mkA "lofty" "loftier" "loftiest" "loftily" ;
-lin weighty_A = mkA "weighty" "weightier" "weightiest" "weightily" ;
-lin mighty_A = mkA "mighty" "mightier" "mightiest" "mightily" ;
-lin haughty_A = mkA "haughty" "haughtier" "haughtiest" "haughtily" ;
-lin naughty_A = mkA "naughty" "naughtier" "naughtiest" "naughtily" ;
-lin draughty_A = mkA "draughty" "draughtier" "draughtiest" "draughtily" ;
-lin fruity_A = mkA "fruity" "fruitier" "fruitiest" "fruitily" ;
-lin salty_A = mkA "salty" "saltier" "saltiest" "saltily" ;
-lin silty_A = mkA "silty" "siltier" "siltiest" "siltily" ;
-lin guilty_A = mkA "guilty" "guiltier" "guiltiest" "guiltily" ;
-lin jolty_A = mkA "jolty" "joltier" "joltiest" "joltily" ;
-lin faulty_A = mkA "faulty" "faultier" "faultiest" "faultily" ;
-lin canty_A = mkA "canty" "cantier" "cantiest" "cantily" ;
-lin scanty_A = mkA "scanty" "scantier" "scantiest" "scantily" ; -- notcompound canty_A ;
-lin dainty_A = mkA "dainty" "daintier" "daintiest" "daintily" ;
-lin flinty_A = mkA "flinty" "flintier" "flintiest" "flintily" ;
-lin minty_A = mkA "minty" "mintier" "mintiest" "mintily" ;
-lin squinty_A = mkA "squinty" "squintier" "squintiest" "squintily" ;
-lin jaunty_A = mkA "jaunty" "jauntier" "jauntiest" "jauntily" ;
-lin flaunty_A = mkA "flaunty" "flauntier" "flauntiest" "flauntily" ;
-lin snooty_A = mkA "snooty" "snootier" "snootiest" "snootily" ;
-lin sooty_A = mkA "sooty" "sootier" "sootiest" "sootily" ;
-lin empty_A = mkA "empty" "emptier" "emptiest" "emptily" ;
-lin hearty_A = mkA "hearty" "heartier" "heartiest" "heartily" ;
-lin cherty_A = mkA "cherty" "chertier" "chertiest" "chertily" ;
-lin dirty_A = mkA "dirty" "dirtier" "dirtiest" "dirtily" ;
-lin shirty_A = mkA "shirty" "shirtier" "shirtiest" "shirtily" ;
-lin snorty_A = mkA "snorty" "snortier" "snortiest" "snortily" ;
-lin sporty_A = mkA "sporty" "sportier" "sportiest" "sportily" ;
-lin yeasty_A = mkA "yeasty" "yeastier" "yeastiest" "yeastily" ;
-lin hasty_A = mkA "hasty" "hastier" "hastiest" "hastily" ;
-lin nasty_A = mkA "nasty" "nastier" "nastiest" "nastily" ;
-lin pasty_A = mkA "pasty" "pastier" "pastiest" "pastily" ;
-lin tasty_A = mkA "tasty" "tastier" "tastiest" "tastily" ;
-lin testy_A = mkA "testy" "testier" "testiest" "testily" ;
-lin feisty_A = mkA "feisty" "feistier" "feistiest" "feistily" ;
-lin misty_A = mkA "misty" "mistier" "mistiest" "mistily" ;
-lin twisty_A = mkA "twisty" "twistier" "twistiest" "twistily" ;
-lin frosty_A = mkA "frosty" "frostier" "frostiest" "frostily" ;
-lin thirsty_A = mkA "thirsty" "thirstier" "thirstiest" "thirstily" ;
-lin dusty_A = mkA "dusty" "dustier" "dustiest" "dustily" ;
-lin gusty_A = mkA "gusty" "gustier" "gustiest" "gustily" ;
-lin lusty_A = mkA "lusty" "lustier" "lustiest" "lustily" ;
-lin musty_A = mkA "musty" "mustier" "mustiest" "mustily" ;
-lin rusty_A = mkA "rusty" "rustier" "rustiest" "rustily" ;
-lin crusty_A = mkA "crusty" "crustier" "crustiest" "crustily" ; -- notcompound rusty_A ;
-lin trusty_A = mkA "trusty" "trustier" "trustiest" "trustily" ; -- notcompound rusty_A ;
-lin catty_A = mkA "catty" "cattier" "cattiest" "cattily" ;
-lin scatty_A = mkA "scatty" "scattier" "scattiest" "scattily" ; -- notcompound catty_A ;
-lin fatty_A = mkA "fatty" "fattier" "fattiest" "fattily" ;
-lin chatty_A = mkA "chatty" "chattier" "chattiest" "chattily" ;
-lin natty_A = mkA "natty" "nattier" "nattiest" "nattily" ;
-lin ratty_A = mkA "ratty" "rattier" "rattiest" "rattily" ;
-lin bratty_A = mkA "bratty" "brattier" "brattiest" "brattily" ; -- notcompound ratty_A ;
-lin tatty_A = mkA "tatty" "tattier" "tattiest" "tattily" ;
-lin petty_A = mkA "petty" "pettier" "pettiest" "pettily" ;
-lin bitty_A = mkA "bitty" "bittier" "bittiest" "bittily" ;
-lin gritty_A = mkA "gritty" "grittier" "grittiest" "grittily" ;
-lin witty_A = mkA "witty" "wittier" "wittiest" "wittily" ;
-lin dotty_A = mkA "dotty" "dottier" "dottiest" "dottily" ;
-lin knotty_A = mkA "knotty" "knottier" "knottiest" "knottily" ;
-lin snotty_A = mkA "snotty" "snottier" "snottiest" "snottily" ;
-lin potty_A = mkA "potty" "pottier" "pottiest" "pottily" ;
-lin spotty_A = mkA "spotty" "spottier" "spottiest" "spottily" ; -- notcompound potty_A ;
-lin grotty_A = mkA "grotty" "grottier" "grottiest" "grottily" ;
-lin smutty_A = mkA "smutty" "smuttier" "smuttiest" "smuttily" ;
-lin nutty_A = mkA "nutty" "nuttier" "nuttiest" "nuttily" ;
-lin gouty_A = mkA "gouty" "goutier" "goutiest" "goutily" ;
-lin pretty_A = mkA "pretty" "prettier" "prettiest" "pretty" ;
-lin heavy_A = mkA "heavy" "heavier" "heaviest" "heavily" ;
-lin wavy_A = mkA "wavy" "wavier" "waviest" "wavily" ;
-lin groovy_A = mkA "groovy" "groovier" "grooviest" "groovily" ;
-lin curvy_A = mkA "curvy" "curvier" "curviest" "curvily" ;
-lin dewy_A = mkA "dewy" "dewier" "dewiest" "dewily" ;
-lin chewy_A = mkA "chewy" "chewier" "chewiest" "chewily" ;
-lin screwy_A = mkA "screwy" "screwier" "screwiest" "screwily" ;
-lin shadowy_A = mkA "shadowy" "shadowier" "shadowiest" "shadowily" ;
-lin showy_A = mkA "showy" "showier" "showiest" "showily" ;
-lin blowy_A = mkA "blowy" "blowier" "blowiest" "blowily" ;
-lin snowy_A = mkA "snowy" "snowier" "snowiest" "snowily" ;
-lin waxy_A = mkA "waxy" "waxier" "waxiest" "waxily" ;
-lin sexy_A = mkA "sexy" "sexier" "sexiest" "sexily" ;
-lin foxy_A = mkA "foxy" "foxier" "foxiest" "foxily" ;
-lin sleazy_A = mkA "sleazy" "sleazier" "sleaziest" "sleazily" ;
-lin hazy_A = mkA "hazy" "hazier" "haziest" "hazily" ;
-lin lazy_A = mkA "lazy" "lazier" "laziest" "lazily" ;
-lin crazy_A = mkA "crazy" "crazier" "craziest" "crazily" ;
-lin wheezy_A = mkA "wheezy" "wheezier" "wheeziest" "wheezily" ;
-lin sneezy_A = mkA "sneezy" "sneezier" "sneeziest" "sneezily" ;
-lin breezy_A = mkA "breezy" "breezier" "breeziest" "breezily" ;
-lin schmalzy_A = mkA "schmalzy" "schmalzier" "schmalziest" "schmalzily" ;
-lin cozy_A = mkA "cozy" "cozier" "coziest" "cozily" ;
-lin oozy_A = mkA "oozy" "oozier" "ooziest" "oozily" ;
-lin boozy_A = mkA "boozy" "boozier" "booziest" "boozily" ; -- notcompound oozy_A ;
-lin schmaltzy_A = mkA "schmaltzy" "schmaltzier" "schmaltziest" "schmaltzily" ;
-lin gauzy_A = mkA "gauzy" "gauzier" "gauziest" "gauzily" ;
-lin jazzy_A = mkA "jazzy" "jazzier" "jazziest" "jazzily" ;
-lin dizzy_A = mkA "dizzy" "dizzier" "dizziest" "dizzily" ;
-lin fizzy_A = mkA "fizzy" "fizzier" "fizziest" "fizzily" ;
-lin frizzy_A = mkA "frizzy" "frizzier" "frizziest" "frizzily" ;
-lin fuzzy_A = mkA "fuzzy" "fuzzier" "fuzziest" "fuzzily" ;
-lin muzzy_A = mkA "muzzy" "muzzier" "muzziest" "muzzily" ;
-lin bay_A = mkA "bay" "more bay" "most bay" "baily" ;
-lin 'latter-day_A' = mkA "latter-day" "more latter-day" "most latter-day" "latter-daily" ;
-lin 'present-day_A' = mkA "present-day" "more present-day" "most present-day" "present-daily" ;
-lin workaday_A = mkA "workaday" "more workaday" "most workaday" "workadaily" ;
-lin noonday_A = mkA "noonday" "more noonday" "most noonday" "noondaily" ;
-lin everyday_A = mkA "everyday" "more everyday" "most everyday" "everydaily" ;
-lin okay_A = mkA "okay" "more okay" "most okay" "okaily" ;
-lin lay_A = mkA "lay" "more lay" "most lay" "laily" ;
-lin malay_A = mkA "malay" "more malay" "most malay" "malaily" ;
-lin 'long-play_A' = mkA "long-play" "more long-play" "most long-play" "long-plaily" ;
-lin splay_A = mkA "splay" "more splay" "most splay" "splaily" ;
-lin sunray_A = mkA "sunray" "more sunray" "most sunray" "sunraily" ;
-lin astray_A = mkA "astray" "more astray" "most astray" "astraily" ;
-lin hearsay_A = mkA "hearsay" "more hearsay" "most hearsay" "hearsaily" ;
-lin 'out-of-the-way_A' = mkA "out-of-the-way" "more out-of-the-way" "most out-of-the-way" "out-of-the-waily" ;
-lin 'two-way_A' = mkA "two-way" "more two-way" "most two-way" "two-waily" ;
-lin away_A = mkA "away" "more away" "most away" "awaily" ;
-lin takeaway_A = mkA "takeaway" "more takeaway" "most takeaway" "takeawaily" ;
-lin breakaway_A = mkA "breakaway" "more breakaway" "most breakaway" "breakawaily" ;
-lin runaway_A = mkA "runaway" "more runaway" "most runaway" "runawaily" ;
-lin tearaway_A = mkA "tearaway" "more tearaway" "most tearaway" "tearawaily" ;
-lin faraway_A = mkA "faraway" "more faraway" "most faraway" "farawaily" ;
-lin flyaway_A = mkA "flyaway" "more flyaway" "most flyaway" "flyawaily" ;
-lin midway_A = mkA "midway" "more midway" "most midway" "midwaily" ;
-lin halfway_A = mkA "halfway" "more halfway" "most halfway" "halfwaily" ;
-lin tabby_A = mkA "tabby" "more tabby" "most tabby" "tabbily" ;
-lin cobwebby_A = mkA "cobwebby" "more cobwebby" "most cobwebby" "cobwebbily" ;
-lin 'namby-pamby_A' = mkA "namby-pamby" "more namby-pamby" "most namby-pamby" "namby-pambily" ;
-lin nearby_A = mkA "nearby" "more nearby" "most nearby" "nearbily" ;
-lin ruby_A = mkA "ruby" "more ruby" "most ruby" "rubily" ;
-lin chancy_A = mkA "chancy" "more chancy" "most chancy" "chancily" ;
-lin beady_A = mkA "beady" "more beady" "most beady" "beadily" ;
-lin unready_A = mkA "unready" "more unready" "most unready" "unreadily" ;
-lin unsteady_A = mkA "unsteady" "more unsteady" "most unsteady" "unsteadily" ;
-lin overgreedy_A = mkA "overgreedy" "more overgreedy" "most overgreedy" "overgreedily" ;
-lin 'higgledy-piggledy_A' = mkA "higgledy-piggledy" "more higgledy-piggledy" "most higgledy-piggledy" "higgledy-piggledily" ;
-lin unwieldy_A = mkA "unwieldy" "more unwieldy" "most unwieldy" "unwieldily" ;
-lin dandy_A = mkA "dandy" "more dandy" "most dandy" "dandily" ;
-lin 'goody-goody_A' = mkA "goody-goody" "more goody-goody" "most goody-goody" "goody-goodily" ;
-lin nonwoody_A = mkA "nonwoody" "more nonwoody" "most nonwoody" "nonwoodily" ;
-lin 'half-hardy_A' = mkA "half-hardy" "more half-hardy" "most half-hardy" "half-hardily" ;
-lin foolhardy_A = mkA "foolhardy" "more foolhardy" "most foolhardy" "foolhardily" ;
-lin dicey_A = mkA "dicey" "more dicey" "most dicey" "diceily" ;
-lin fey_A = mkA "fey" "more fey" "most fey" "feily" ;
-lin cagey_A = mkA "cagey" "more cagey" "most cagey" "cageily" ;
-lin tiddley_A = mkA "tiddley" "more tiddley" "most tiddley" "tiddleily" ;
-lin holey_A = mkA "holey" "more holey" "most holey" "holeily" ;
-lin motley_A = mkA "motley" "more motley" "most motley" "motleily" ;
-lin gamey_A = mkA "gamey" "more gamey" "most gamey" "gameily" ;
-lin homey_A = mkA "homey" "more homey" "most homey" "homeily" ;
-lin cockney_A = mkA "cockney" "more cockney" "most cockney" "cockneily" ;
-lin honey_A = mkA "honey" "more honey" "most honey" "honeily" ;
-lin phoney_A = mkA "phoney" "more phoney" "most phoney" "phoneily" ;
-lin grapey_A = mkA "grapey" "more grapey" "most grapey" "grapeily" ;
-lin dopey_A = mkA "dopey" "more dopey" "most dopey" "dopeily" ;
-lin verey_A = mkA "verey" "more verey" "most verey" "vereily" ;
-lin 'dapple-grey_A' = mkA "dapple-grey" "more dapple-grey" "most dapple-grey" "dapple-greily" ;
-lin 'iron-grey_A' = mkA "iron-grey" "more iron-grey" "most iron-grey" "iron-greily" ;
-lin 'three-storey_A' = mkA "three-storey" "more three-storey" "most three-storey" "three-storeily" ;
-lin nosey_A = mkA "nosey" "more nosey" "most nosey" "noseily" ;
-lin choosey_A = mkA "choosey" "more choosey" "most choosey" "chooseily" ;
-lin matey_A = mkA "matey" "more matey" "most matey" "mateily" ;
-lin gluey_A = mkA "gluey" "more gluey" "most gluey" "glueily" ;
-lin clayey_A = mkA "clayey" "more clayey" "most clayey" "clayeily" ;
-lin squiffy_A = mkA "squiffy" "more squiffy" "most squiffy" "squiffily" ;
-lin stagy_A = mkA "stagy" "more stagy" "most stagy" "stagily" ;
-lin dodgy_A = mkA "dodgy" "more dodgy" "most dodgy" "dodgily" ;
-lin smudgy_A = mkA "smudgy" "more smudgy" "most smudgy" "smudgily" ;
-lin baggy_A = mkA "baggy" "more baggy" "most baggy" "baggily" ;
-lin leggy_A = mkA "leggy" "more leggy" "most leggy" "leggily" ;
-lin techy_A = mkA "techy" "more techy" "most techy" "techily" ;
-lin ashy_A = mkA "ashy" "more ashy" "most ashy" "ashily" ;
-lin washy_A = mkA "washy" "more washy" "most washy" "washily" ;
-lin 'wishy-washy_A' = mkA "wishy-washy" "more wishy-washy" "most wishy-washy" "wishy-washily" ;
-lin rubbishy_A = mkA "rubbishy" "more rubbishy" "most rubbishy" "rubbishily" ;
-lin workshy_A = mkA "workshy" "more workshy" "most workshy" "workshily" ;
-lin bolshy_A = mkA "bolshy" "more bolshy" "most bolshy" "bolshily" ;
-lin bushy_A = mkA "bushy" "more bushy" "most bushy" "bushily" ;
-lin thy_A = mkA "thy" "more thy" "most thy" "thily" ;
-lin unhealthy_A = mkA "unhealthy" "more unhealthy" "most unhealthy" "unhealthily" ;
-lin swarthy_A = mkA "swarthy" "more swarthy" "most swarthy" "swarthily" ;
-lin 'credit-worthy_A' = mkA "credit-worthy" "more credit-worthy" "most credit-worthy" "credit-worthily" ;
-lin seaworthy_A = mkA "seaworthy" "more seaworthy" "most seaworthy" "seaworthily" ;
-lin unseaworthy_A = mkA "unseaworthy" "more unseaworthy" "most unseaworthy" "unseaworthily" ;
-lin roadworthy_A = mkA "roadworthy" "more roadworthy" "most roadworthy" "roadworthily" ;
-lin blameworthy_A = mkA "blameworthy" "more blameworthy" "most blameworthy" "blameworthily" ;
-lin praiseworthy_A = mkA "praiseworthy" "more praiseworthy" "most praiseworthy" "praiseworthily" ;
-lin noteworthy_A = mkA "noteworthy" "more noteworthy" "most noteworthy" "noteworthily" ;
-lin unworthy_A = mkA "unworthy" "more unworthy" "most unworthy" "unworthily" ;
-lin airworthy_A = mkA "airworthy" "more airworthy" "most airworthy" "airworthily" ;
-lin unairworthy_A = mkA "unairworthy" "more unairworthy" "most unairworthy" "unairworthily" ;
-lin newsworthy_A = mkA "newsworthy" "more newsworthy" "most newsworthy" "newsworthily" ;
-lin creditworthy_A = mkA "creditworthy" "more creditworthy" "most creditworthy" "creditworthily" ;
-lin trustworthy_A = mkA "trustworthy" "more trustworthy" "most trustworthy" "trustworthily" ;
-lin untrustworthy_A = mkA "untrustworthy" "more untrustworthy" "most untrustworthy" "untrustworthily" ;
-lin dicky_A = mkA "dicky" "more dicky" "most dicky" "dickily" ;
-lin colicky_A = mkA "colicky" "more colicky" "most colicky" "colickily" ;
-lin garlicky_A = mkA "garlicky" "more garlicky" "most garlicky" "garlickily" ;
-lin panicky_A = mkA "panicky" "more panicky" "most panicky" "panickily" ;
-lin finicky_A = mkA "finicky" "more finicky" "most finicky" "finickily" ;
-lin bullocky_A = mkA "bullocky" "more bullocky" "most bullocky" "bullockily" ;
-lin 'happy-go-lucky_A' = mkA "happy-go-lucky" "more happy-go-lucky" "most happy-go-lucky" "happy-go-luckily" ;
-lin unlucky_A = mkA "unlucky" "more unlucky" "most unlucky" "unluckily" ;
-lin wonky_A = mkA "wonky" "more wonky" "most wonky" "wonkily" ;
-lin parky_A = mkA "parky" "more parky" "most parky" "parkily" ;
-lin bosky_A = mkA "bosky" "more bosky" "most bosky" "boskily" ;
-lin pawky_A = mkA "pawky" "more pawky" "most pawky" "pawkily" ;
-lin treacly_A = mkA "treacly" "more treacly" "most treacly" "treaclily" ;
-lin twiddly_A = mkA "twiddly" "more twiddly" "most twiddly" "twiddlily" ;
-lin offhandedly_A = mkA "offhandedly" "more offhandedly" "most offhandedly" "offhandedlily" ;
-lin animatedly_A = mkA "animatedly" "more animatedly" "most animatedly" "animatedlily" ;
-lin unworldly_A = mkA "unworldly" "more unworldly" "most unworldly" "unworldlily" ;
-lin otherworldly_A = mkA "otherworldly" "more otherworldly" "most otherworldly" "otherworldlily" ;
-lin husbandly_A = mkA "husbandly" "more husbandly" "most husbandly" "husbandlily" ;
-lin unfriendly_A = mkA "unfriendly" "more unfriendly" "most unfriendly" "unfriendlily" ;
-lin unkindly_A = mkA "unkindly" "more unkindly" "most unkindly" "unkindlily" ;
-lin ungodly_A = mkA "ungodly" "more ungodly" "most ungodly" "ungodlily" ;
-lin niggardly_A = mkA "niggardly" "more niggardly" "most niggardly" "niggardlily" ;
-lin bastardly_A = mkA "bastardly" "more bastardly" "most bastardly" "bastardlily" ;
-lin dastardly_A = mkA "dastardly" "more dastardly" "most dastardly" "dastardlily" ;
-lin blackguardly_A = mkA "blackguardly" "more blackguardly" "most blackguardly" "blackguardlily" ;
-lin cowardly_A = mkA "cowardly" "more cowardly" "most cowardly" "cowardlily" ;
-lin comradely_A = mkA "comradely" "more comradely" "most comradely" "comradelily" ;
-lin housewifely_A = mkA "housewifely" "more housewifely" "most housewifely" "housewifelily" ;
-lin unlikely_A = mkA "unlikely" "more unlikely" "most unlikely" "unlikelily" ;
-lin timely_A = mkA "timely" "more timely" "most timely" "timelily" ;
-lin untimely_A = mkA "untimely" "more untimely" "most untimely" "untimelily" ;
-lin unshapely_A = mkA "unshapely" "more unshapely" "most unshapely" "unshapelily" ;
-lin leisurely_A = mkA "leisurely" "more leisurely" "most leisurely" "leisurelily" ;
-lin unlovely_A = mkA "unlovely" "more unlovely" "most unlovely" "unlovelily" ;
-lin fly_A = mkA "fly" "more fly" "most fly" "flily" ;
-lin kingly_A = mkA "kingly" "more kingly" "most kingly" "kinglily" ;
-lin fleshly_A = mkA "fleshly" "more fleshly" "most fleshly" "fleshlily" ;
-lin deathly_A = mkA "deathly" "more deathly" "most deathly" "deathlily" ;
-lin monthly_A = mkA "monthly" "more monthly" "most monthly" "monthlily" ;
-lin bimonthly_A = mkA "bimonthly" "more bimonthly" "most bimonthly" "bimonthlily" ;
-lin semimonthly_A = mkA "semimonthly" "more semimonthly" "most semimonthly" "semimonthlily" ;
-lin earthly_A = mkA "earthly" "more earthly" "most earthly" "earthlily" ;
-lin unearthly_A = mkA "unearthly" "more unearthly" "most unearthly" "unearthlily" ;
-lin daily_A = mkA "daily" "more daily" "most daily" "dailily" ;
-lin bodily_A = mkA "bodily" "more bodily" "most bodily" "bodilily" ;
-lin weekly_A = mkA "weekly" "more weekly" "most weekly" "weeklily" ;
-lin midweekly_A = mkA "midweekly" "more midweekly" "most midweekly" "midweeklily" ;
-lin semiweekly_A = mkA "semiweekly" "more semiweekly" "most semiweekly" "semiweeklily" ;
-lin bally_A = mkA "bally" "more bally" "most bally" "ballily" ;
-lin rascally_A = mkA "rascally" "more rascally" "most rascally" "rascallily" ;
-lin squally_A = mkA "squally" "more squally" "most squally" "squallily" ;
-lin scoundrelly_A = mkA "scoundrelly" "more scoundrelly" "most scoundrelly" "scoundrellily" ;
-lin tinselly_A = mkA "tinselly" "more tinselly" "most tinselly" "tinsellily" ;
-lin gravelly_A = mkA "gravelly" "more gravelly" "most gravelly" "gravellily" ;
-lin stilly_A = mkA "stilly" "more stilly" "most stilly" "stillily" ;
-lin bully_A = mkA "bully" "more bully" "most bully" "bullily" ;
-lin unseemly_A = mkA "unseemly" "more unseemly" "most unseemly" "unseemlily" ;
-lin uncleanly_A = mkA "uncleanly" "more uncleanly" "most uncleanly" "uncleanlily" ;
-lin ruffianly_A = mkA "ruffianly" "more ruffianly" "most ruffianly" "ruffianlily" ;
-lin christianly_A = mkA "christianly" "more christianly" "most christianly" "christianlily" ;
-lin unchristianly_A = mkA "unchristianly" "more unchristianly" "most unchristianly" "unchristianlily" ;
-lin gentlemanly_A = mkA "gentlemanly" "more gentlemanly" "most gentlemanly" "gentlemanlily" ;
-lin ungentlemanly_A = mkA "ungentlemanly" "more ungentlemanly" "most ungentlemanly" "ungentlemanlily" ;
-lin unmanly_A = mkA "unmanly" "more unmanly" "most unmanly" "unmanlily" ;
-lin unwomanly_A = mkA "unwomanly" "more unwomanly" "most unwomanly" "unwomanlily" ;
-lin maidenly_A = mkA "maidenly" "more maidenly" "most maidenly" "maidenlily" ;
-lin heavenly_A = mkA "heavenly" "more heavenly" "most heavenly" "heavenlily" ;
-lin ungainly_A = mkA "ungainly" "more ungainly" "most ungainly" "ungainlily" ;
-lin bumpkinly_A = mkA "bumpkinly" "more bumpkinly" "most bumpkinly" "bumpkinlily" ;
-lin cousinly_A = mkA "cousinly" "more cousinly" "most cousinly" "cousinlily" ;
-lin uncousinly_A = mkA "uncousinly" "more uncousinly" "most uncousinly" "uncousinlily" ;
-lin matronly_A = mkA "matronly" "more matronly" "most matronly" "matronlily" ;
-lin slatternly_A = mkA "slatternly" "more slatternly" "most slatternly" "slatternlily" ;
-lin melancholy_A = mkA "melancholy" "more melancholy" "most melancholy" "melancholily" ;
-lin unholy_A = mkA "unholy" "more unholy" "most unholy" "unholily" ;
-lin antimonopoly_A = mkA "antimonopoly" "more antimonopoly" "most antimonopoly" "antimonopolily" ;
-lin 'three-ply_A' = mkA "three-ply" "more three-ply" "most three-ply" "three-plily" ;
-lin 'two-ply_A' = mkA "two-ply" "more two-ply" "most two-ply" "two-plily" ;
-lin 'four-ply_A' = mkA "four-ply" "more four-ply" "most four-ply" "four-plily" ;
-lin yearly_A = mkA "yearly" "more yearly" "most yearly" "yearlily" ;
-lin 'half-yearly_A' = mkA "half-yearly" "more half-yearly" "most half-yearly" "half-yearlily" ;
-lin beggarly_A = mkA "beggarly" "more beggarly" "most beggarly" "beggarlily" ;
-lin scholarly_A = mkA "scholarly" "more scholarly" "most scholarly" "scholarlily" ;
-lin unscholarly_A = mkA "unscholarly" "more unscholarly" "most unscholarly" "unscholarlily" ;
-lin lubberly_A = mkA "lubberly" "more lubberly" "most lubberly" "lubberlily" ;
-lin elderly_A = mkA "elderly" "more elderly" "most elderly" "elderlily" ;
-lin orderly_A = mkA "orderly" "more orderly" "most orderly" "orderlily" ;
-lin disorderly_A = mkA "disorderly" "more disorderly" "most disorderly" "disorderlily" ;
-lin gingerly_A = mkA "gingerly" "more gingerly" "most gingerly" "gingerlily" ;
-lin weatherly_A = mkA "weatherly" "more weatherly" "most weatherly" "weatherlily" ;
-lin fatherly_A = mkA "fatherly" "more fatherly" "most fatherly" "fatherlily" ;
-lin motherly_A = mkA "motherly" "more motherly" "most motherly" "motherlily" ;
-lin brotherly_A = mkA "brotherly" "more brotherly" "most brotherly" "brotherlily" ;
-lin northerly_A = mkA "northerly" "more northerly" "most northerly" "northerlily" ;
-lin southerly_A = mkA "southerly" "more southerly" "most southerly" "southerlily" ;
-lin soldierly_A = mkA "soldierly" "more soldierly" "most soldierly" "soldierlily" ;
-lin unsoldierly_A = mkA "unsoldierly" "more unsoldierly" "most unsoldierly" "unsoldierlily" ;
-lin mannerly_A = mkA "mannerly" "more mannerly" "most mannerly" "mannerlily" ;
-lin unmannerly_A = mkA "unmannerly" "more unmannerly" "most unmannerly" "unmannerlily" ;
-lin miserly_A = mkA "miserly" "more miserly" "most miserly" "miserlily" ;
-lin daughterly_A = mkA "daughterly" "more daughterly" "most daughterly" "daughterlily" ;
-lin painterly_A = mkA "painterly" "more painterly" "most painterly" "painterlily" ;
-lin quarterly_A = mkA "quarterly" "more quarterly" "most quarterly" "quarterlily" ;
-lin easterly_A = mkA "easterly" "more easterly" "most easterly" "easterlily" ;
-lin northeasterly_A = mkA "northeasterly" "more northeasterly" "most northeasterly" "northeasterlily" ;
-lin southeasterly_A = mkA "southeasterly" "more southeasterly" "most southeasterly" "southeasterlily" ;
-lin masterly_A = mkA "masterly" "more masterly" "most masterly" "masterlily" ;
-lin westerly_A = mkA "westerly" "more westerly" "most westerly" "westerlily" ;
-lin northwesterly_A = mkA "northwesterly" "more northwesterly" "most northwesterly" "northwesterlily" ;
-lin southwesterly_A = mkA "southwesterly" "more southwesterly" "most southwesterly" "southwesterlily" ;
-lin sisterly_A = mkA "sisterly" "more sisterly" "most sisterly" "sisterlily" ;
-lin neighborly_A = mkA "neighborly" "more neighborly" "most neighborly" "neighborlily" ;
-lin unneighborly_A = mkA "unneighborly" "more unneighborly" "most unneighborly" "unneighborlily" ;
-lin poorly_A = mkA "poorly" "more poorly" "most poorly" "poorlily" ;
-lin neighbourly_A = mkA "neighbourly" "more neighbourly" "most neighbourly" "neighbourlily" ;
-lin hourly_A = mkA "hourly" "more hourly" "most hourly" "hourlily" ;
-lin 'half-hourly_A' = mkA "half-hourly" "more half-hourly" "most half-hourly" "half-hourlily" ;
-lin measly_A = mkA "measly" "more measly" "most measly" "measlily" ;
-lin grisly_A = mkA "grisly" "more grisly" "most grisly" "grislily" ;
-lin nightly_A = mkA "nightly" "more nightly" "most nightly" "nightlily" ;
-lin knightly_A = mkA "knightly" "more knightly" "most knightly" "knightlily" ;
-lin fortnightly_A = mkA "fortnightly" "more fortnightly" "most fortnightly" "fortnightlily" ;
-lin unsightly_A = mkA "unsightly" "more unsightly" "most unsightly" "unsightlily" ;
-lin portly_A = mkA "portly" "more portly" "most portly" "portlily" ;
-lin unpriestly_A = mkA "unpriestly" "more unpriestly" "most unpriestly" "unpriestlily" ;
-lin ghostly_A = mkA "ghostly" "more ghostly" "most ghostly" "ghostlily" ;
-lin drizzly_A = mkA "drizzly" "more drizzly" "most drizzly" "drizzlily" ;
-lin gammy_A = mkA "gammy" "more gammy" "most gammy" "gammily" ;
-lin bosomy_A = mkA "bosomy" "more bosomy" "most bosomy" "bosomily" ;
-lin barmy_A = mkA "barmy" "more barmy" "most barmy" "barmily" ;
-lin smarmy_A = mkA "smarmy" "more smarmy" "most smarmy" "smarmily" ;
-lin romany_A = mkA "romany" "more romany" "most romany" "romanily" ;
-lin 'niminy-piminy_A' = mkA "niminy-piminy" "more niminy-piminy" "most niminy-piminy" "niminy-piminily" ;
-lin satiny_A = mkA "satiny" "more satiny" "most satiny" "satinily" ;
-lin uncanny_A = mkA "uncanny" "more uncanny" "most uncanny" "uncannily" ;
-lin 'two-a-penny_A' = mkA "two-a-penny" "more two-a-penny" "most two-a-penny" "two-a-pennily" ;
-lin threepenny_A = mkA "threepenny" "more threepenny" "most threepenny" "threepennily" ;
-lin ninepenny_A = mkA "ninepenny" "more ninepenny" "most ninepenny" "ninepennily" ;
-lin fivepenny_A = mkA "fivepenny" "more fivepenny" "most fivepenny" "fivepennily" ;
-lin 'twopenny-halfpenny_A' = mkA "twopenny-halfpenny" "more twopenny-halfpenny" "most twopenny-halfpenny" "twopenny-halfpennily" ;
-lin catchpenny_A = mkA "catchpenny" "more catchpenny" "most catchpenny" "catchpennily" ;
-lin twopenny_A = mkA "twopenny" "more twopenny" "most twopenny" "twopennily" ;
-lin tuppenny_A = mkA "tuppenny" "more tuppenny" "most tuppenny" "tuppennily" ;
-lin fourpenny_A = mkA "fourpenny" "more fourpenny" "most fourpenny" "fourpennily" ;
-lin eightpenny_A = mkA "eightpenny" "more eightpenny" "most eightpenny" "eightpennily" ;
-lin sixpenny_A = mkA "sixpenny" "more sixpenny" "most sixpenny" "sixpennily" ;
-lin unfunny_A = mkA "unfunny" "more unfunny" "most unfunny" "unfunnily" ;
-lin ebony_A = mkA "ebony" "more ebony" "most ebony" "ebonily" ;
-lin phony_A = mkA "phony" "more phony" "most phony" "phonily" ;
-lin lemony_A = mkA "lemony" "more lemony" "most lemony" "lemonily" ;
-lin cottony_A = mkA "cottony" "more cottony" "most cottony" "cottonily" ;
-lin buttony_A = mkA "buttony" "more buttony" "most buttony" "buttonily" ;
-lin tawny_A = mkA "tawny" "more tawny" "most tawny" "tawnily" ;
-lin downy_A = mkA "downy" "more downy" "most downy" "downily" ;
-lin loopy_A = mkA "loopy" "more loopy" "most loopy" "loopily" ;
-lin 'slap-happy_A' = mkA "slap-happy" "more slap-happy" "most slap-happy" "slap-happily" ;
-lin 'trigger-happy_A' = mkA "trigger-happy" "more trigger-happy" "most trigger-happy" "trigger-happily" ;
-lin slippy_A = mkA "slippy" "more slippy" "most slippy" "slippily" ;
-lin stroppy_A = mkA "stroppy" "more stroppy" "most stroppy" "stroppily" ;
-lin chirpy_A = mkA "chirpy" "more chirpy" "most chirpy" "chirpily" ;
-lin syrupy_A = mkA "syrupy" "more syrupy" "most syrupy" "syrupily" ;
-lin lapidary_A = mkA "lapidary" "more lapidary" "most lapidary" "lapidarily" ;
-lin legendary_A = mkA "legendary" "more legendary" "most legendary" "legendarily" ;
-lin secondary_A = mkA "secondary" "more secondary" "most secondary" "secondarily" ;
-lin bleary_A = mkA "bleary" "more bleary" "most bleary" "blearily" ;
-lin 'world-weary_A' = mkA "world-weary" "more world-weary" "most world-weary" "world-wearily" ;
-lin aweary_A = mkA "aweary" "more aweary" "most aweary" "awearily" ;
-lin vinegary_A = mkA "vinegary" "more vinegary" "most vinegary" "vinegarily" ;
-lin chary_A = mkA "chary" "more chary" "most chary" "charily" ;
-lin beneficiary_A = mkA "beneficiary" "more beneficiary" "most beneficiary" "beneficiarily" ;
-lin fiduciary_A = mkA "fiduciary" "more fiduciary" "most fiduciary" "fiduciarily" ;
-lin subsidiary_A = mkA "subsidiary" "more subsidiary" "most subsidiary" "subsidiarily" ;
-lin incendiary_A = mkA "incendiary" "more incendiary" "most incendiary" "incendiarily" ;
-lin stipendiary_A = mkA "stipendiary" "more stipendiary" "most stipendiary" "stipendiarily" ;
-lin biliary_A = mkA "biliary" "more biliary" "most biliary" "biliarily" ;
-lin ciliary_A = mkA "ciliary" "more ciliary" "most ciliary" "ciliarily" ;
-lin domiciliary_A = mkA "domiciliary" "more domiciliary" "most domiciliary" "domiciliarily" ;
-lin auxiliary_A = mkA "auxiliary" "more auxiliary" "most auxiliary" "auxiliarily" ;
-lin pecuniary_A = mkA "pecuniary" "more pecuniary" "most pecuniary" "pecuniarily" ;
-lin evidentiary_A = mkA "evidentiary" "more evidentiary" "most evidentiary" "evidentiarily" ;
-lin penitentiary_A = mkA "penitentiary" "more penitentiary" "most penitentiary" "penitentiarily" ;
-lin tertiary_A = mkA "tertiary" "more tertiary" "most tertiary" "tertiarily" ;
-lin vestiary_A = mkA "vestiary" "more vestiary" "most vestiary" "vestiarily" ;
-lin intercalary_A = mkA "intercalary" "more intercalary" "most intercalary" "intercalarily" ;
-lin tutelary_A = mkA "tutelary" "more tutelary" "most tutelary" "tutelarily" ;
-lin carpellary_A = mkA "carpellary" "more carpellary" "most carpellary" "carpellarily" ;
-lin ancillary_A = mkA "ancillary" "more ancillary" "most ancillary" "ancillarily" ;
-lin armillary_A = mkA "armillary" "more armillary" "most armillary" "armillarily" ;
-lin capillary_A = mkA "capillary" "more capillary" "most capillary" "capillarily" ;
-lin papillary_A = mkA "papillary" "more papillary" "most papillary" "papillarily" ;
-lin pupillary_A = mkA "pupillary" "more pupillary" "most pupillary" "pupillarily" ;
-lin axillary_A = mkA "axillary" "more axillary" "most axillary" "axillarily" ;
-lin maxillary_A = mkA "maxillary" "more maxillary" "most maxillary" "maxillarily" ;
-lin medullary_A = mkA "medullary" "more medullary" "most medullary" "medullarily" ;
-lin epistolary_A = mkA "epistolary" "more epistolary" "most epistolary" "epistolarily" ;
-lin exemplary_A = mkA "exemplary" "more exemplary" "most exemplary" "exemplarily" ;
-lin formulary_A = mkA "formulary" "more formulary" "most formulary" "formularily" ;
-lin primary_A = mkA "primary" "more primary" "most primary" "primarily" ;
-lin mammary_A = mkA "mammary" "more mammary" "most mammary" "mammarily" ;
-lin summary_A = mkA "summary" "more summary" "most summary" "summarily" ;
-lin customary_A = mkA "customary" "more customary" "most customary" "customarily" ;
-lin canary_A = mkA "canary" "more canary" "most canary" "canarily" ;
-lin vicenary_A = mkA "vicenary" "more vicenary" "most vicenary" "vicenarily" ;
-lin mercenary_A = mkA "mercenary" "more mercenary" "most mercenary" "mercenarily" ;
-lin unmercenary_A = mkA "unmercenary" "more unmercenary" "most unmercenary" "unmercenarily" ;
-lin denary_A = mkA "denary" "more denary" "most denary" "denarily" ;
-lin millenary_A = mkA "millenary" "more millenary" "most millenary" "millenarily" ;
-lin plenary_A = mkA "plenary" "more plenary" "most plenary" "plenarily" ;
-lin centenary_A = mkA "centenary" "more centenary" "most centenary" "centenarily" ;
-lin tricentenary_A = mkA "tricentenary" "more tricentenary" "most tricentenary" "tricentenarily" ;
-lin quincentenary_A = mkA "quincentenary" "more quincentenary" "most quincentenary" "quincentenarily" ;
-lin binary_A = mkA "binary" "more binary" "most binary" "binarily" ;
-lin ordinary_A = mkA "ordinary" "more ordinary" "most ordinary" "ordinarily" ;
-lin extraordinary_A = mkA "extraordinary" "more extraordinary" "most extraordinary" "extraordinarily" ;
-lin imaginary_A = mkA "imaginary" "more imaginary" "most imaginary" "imaginarily" ;
-lin disciplinary_A = mkA "disciplinary" "more disciplinary" "most disciplinary" "disciplinarily" ;
-lin interdisciplinary_A = mkA "interdisciplinary" "more interdisciplinary" "most interdisciplinary" "interdisciplinarily" ;
-lin culinary_A = mkA "culinary" "more culinary" "most culinary" "culinarily" ;
-lin preliminary_A = mkA "preliminary" "more preliminary" "most preliminary" "preliminarily" ;
-lin veterinary_A = mkA "veterinary" "more veterinary" "most veterinary" "veterinarily" ;
-lin urinary_A = mkA "urinary" "more urinary" "most urinary" "urinarily" ;
-lin genitourinary_A = mkA "genitourinary" "more genitourinary" "most genitourinary" "genitourinarily" ;
-lin sanguinary_A = mkA "sanguinary" "more sanguinary" "most sanguinary" "sanguinarily" ;
-lin antiphonary_A = mkA "antiphonary" "more antiphonary" "most antiphonary" "antiphonarily" ;
-lin visionary_A = mkA "visionary" "more visionary" "most visionary" "visionarily" ;
-lin reversionary_A = mkA "reversionary" "more reversionary" "most reversionary" "reversionarily" ;
-lin diversionary_A = mkA "diversionary" "more diversionary" "most diversionary" "diversionarily" ;
-lin recessionary_A = mkA "recessionary" "more recessionary" "most recessionary" "recessionarily" ;
-lin missionary_A = mkA "missionary" "more missionary" "most missionary" "missionarily" ;
-lin probationary_A = mkA "probationary" "more probationary" "most probationary" "probationarily" ;
-lin deflationary_A = mkA "deflationary" "more deflationary" "most deflationary" "deflationarily" ;
-lin stagflationary_A = mkA "stagflationary" "more stagflationary" "most stagflationary" "stagflationarily" ;
-lin inflationary_A = mkA "inflationary" "more inflationary" "most inflationary" "inflationarily" ;
-lin stationary_A = mkA "stationary" "more stationary" "most stationary" "stationarily" ;
-lin geostationary_A = mkA "geostationary" "more geostationary" "most geostationary" "geostationarily" ;
-lin reactionary_A = mkA "reactionary" "more reactionary" "most reactionary" "reactionarily" ;
-lin accretionary_A = mkA "accretionary" "more accretionary" "most accretionary" "accretionarily" ;
-lin discretionary_A = mkA "discretionary" "more discretionary" "most discretionary" "discretionarily" ;
-lin expeditionary_A = mkA "expeditionary" "more expeditionary" "most expeditionary" "expeditionarily" ;
-lin abolitionary_A = mkA "abolitionary" "more abolitionary" "most abolitionary" "abolitionarily" ;
-lin petitionary_A = mkA "petitionary" "more petitionary" "most petitionary" "petitionarily" ;
-lin cautionary_A = mkA "cautionary" "more cautionary" "most cautionary" "cautionarily" ;
-lin precautionary_A = mkA "precautionary" "more precautionary" "most precautionary" "precautionarily" ;
-lin elocutionary_A = mkA "elocutionary" "more elocutionary" "most elocutionary" "elocutionarily" ;
-lin ablutionary_A = mkA "ablutionary" "more ablutionary" "most ablutionary" "ablutionarily" ;
-lin evolutionary_A = mkA "evolutionary" "more evolutionary" "most evolutionary" "evolutionarily" ;
-lin revolutionary_A = mkA "revolutionary" "more revolutionary" "most revolutionary" "revolutionarily" ;
-lin 'counter-revolutionary_A' = mkA "counter-revolutionary" "more counter-revolutionary" "most counter-revolutionary" "counter-revolutionarily" ;
-lin counterrevolutionary_A = mkA "counterrevolutionary" "more counterrevolutionary" "most counterrevolutionary" "counterrevolutionarily" ;
-lin pulmonary_A = mkA "pulmonary" "more pulmonary" "most pulmonary" "pulmonarily" ;
-lin intrapulmonary_A = mkA "intrapulmonary" "more intrapulmonary" "most intrapulmonary" "intrapulmonarily" ;
-lin cardiopulmonary_A = mkA "cardiopulmonary" "more cardiopulmonary" "most cardiopulmonary" "cardiopulmonarily" ;
-lin coronary_A = mkA "coronary" "more coronary" "most coronary" "coronarily" ;
-lin ternary_A = mkA "ternary" "more ternary" "most ternary" "ternarily" ;
-lin unary_A = mkA "unary" "more unary" "most unary" "unarily" ;
-lin eleemosynary_A = mkA "eleemosynary" "more eleemosynary" "most eleemosynary" "eleemosynarily" ;
-lin cinerary_A = mkA "cinerary" "more cinerary" "most cinerary" "cinerarily" ;
-lin funerary_A = mkA "funerary" "more funerary" "most funerary" "funerarily" ;
-lin literary_A = mkA "literary" "more literary" "most literary" "literarily" ;
-lin subliterary_A = mkA "subliterary" "more subliterary" "most subliterary" "subliterarily" ;
-lin unliterary_A = mkA "unliterary" "more unliterary" "most unliterary" "unliterarily" ;
-lin horary_A = mkA "horary" "more horary" "most horary" "horarily" ;
-lin honorary_A = mkA "honorary" "more honorary" "most honorary" "honorarily" ;
-lin temporary_A = mkA "temporary" "more temporary" "most temporary" "temporarily" ;
-lin contemporary_A = mkA "contemporary" "more contemporary" "most contemporary" "contemporarily" ;
-lin extemporary_A = mkA "extemporary" "more extemporary" "most extemporary" "extemporarily" ;
-lin arbitrary_A = mkA "arbitrary" "more arbitrary" "most arbitrary" "arbitrarily" ;
-lin nonarbitrary_A = mkA "nonarbitrary" "more nonarbitrary" "most nonarbitrary" "nonarbitrarily" ;
-lin contrary_A = mkA "contrary" "more contrary" "most contrary" "contrarily" ;
-lin accessary_A = mkA "accessary" "more accessary" "most accessary" "accessarily" ;
-lin necessary_A = mkA "necessary" "more necessary" "most necessary" "necessarily" ;
-lin unnecessary_A = mkA "unnecessary" "more unnecessary" "most unnecessary" "unnecessarily" ;
-lin budgetary_A = mkA "budgetary" "more budgetary" "most budgetary" "budgetarily" ;
-lin dietary_A = mkA "dietary" "more dietary" "most dietary" "dietarily" ;
-lin proprietary_A = mkA "proprietary" "more proprietary" "most proprietary" "proprietarily" ;
-lin nonproprietary_A = mkA "nonproprietary" "more nonproprietary" "most nonproprietary" "nonproprietarily" ;
-lin cometary_A = mkA "cometary" "more cometary" "most cometary" "cometarily" ;
-lin planetary_A = mkA "planetary" "more planetary" "most planetary" "planetarily" ;
-lin interplanetary_A = mkA "interplanetary" "more interplanetary" "most interplanetary" "interplanetarily" ;
-lin monetary_A = mkA "monetary" "more monetary" "most monetary" "monetarily" ;
-lin hereditary_A = mkA "hereditary" "more hereditary" "most hereditary" "hereditarily" ;
-lin nonhereditary_A = mkA "nonhereditary" "more nonhereditary" "most nonhereditary" "nonhereditarily" ;
-lin military_A = mkA "military" "more military" "most military" "militarily" ;
-lin paramilitary_A = mkA "paramilitary" "more paramilitary" "most paramilitary" "paramilitarily" ;
-lin unmilitary_A = mkA "unmilitary" "more unmilitary" "most unmilitary" "unmilitarily" ;
-lin solitary_A = mkA "solitary" "more solitary" "most solitary" "solitarily" ;
-lin sanitary_A = mkA "sanitary" "more sanitary" "most sanitary" "sanitarily" ;
-lin insanitary_A = mkA "insanitary" "more insanitary" "most insanitary" "insanitarily" ;
-lin unsanitary_A = mkA "unsanitary" "more unsanitary" "most unsanitary" "unsanitarily" ;
-lin unitary_A = mkA "unitary" "more unitary" "most unitary" "unitarily" ;
-lin pituitary_A = mkA "pituitary" "more pituitary" "most pituitary" "pituitarily" ;
-lin sedentary_A = mkA "sedentary" "more sedentary" "most sedentary" "sedentarily" ;
-lin parliamentary_A = mkA "parliamentary" "more parliamentary" "most parliamentary" "parliamentarily" ;
-lin unparliamentary_A = mkA "unparliamentary" "more unparliamentary" "most unparliamentary" "unparliamentarily" ;
-lin testamentary_A = mkA "testamentary" "more testamentary" "most testamentary" "testamentarily" ;
-lin elementary_A = mkA "elementary" "more elementary" "most elementary" "elementarily" ;
-lin complementary_A = mkA "complementary" "more complementary" "most complementary" "complementarily" ;
-lin supplementary_A = mkA "supplementary" "more supplementary" "most supplementary" "supplementarily" ;
-lin fragmentary_A = mkA "fragmentary" "more fragmentary" "most fragmentary" "fragmentarily" ;
-lin sedimentary_A = mkA "sedimentary" "more sedimentary" "most sedimentary" "sedimentarily" ;
-lin rudimentary_A = mkA "rudimentary" "more rudimentary" "most rudimentary" "rudimentarily" ;
-lin alimentary_A = mkA "alimentary" "more alimentary" "most alimentary" "alimentarily" ;
-lin complimentary_A = mkA "complimentary" "more complimentary" "most complimentary" "complimentarily" ;
-lin uncomplimentary_A = mkA "uncomplimentary" "more uncomplimentary" "most uncomplimentary" "uncomplimentarily" ;
-lin momentary_A = mkA "momentary" "more momentary" "most momentary" "momentarily" ;
-lin documentary_A = mkA "documentary" "more documentary" "most documentary" "documentarily" ;
-lin integumentary_A = mkA "integumentary" "more integumentary" "most integumentary" "integumentarily" ;
-lin voluntary_A = mkA "voluntary" "more voluntary" "most voluntary" "voluntarily" ;
-lin involuntary_A = mkA "involuntary" "more involuntary" "most involuntary" "involuntarily" ;
-lin rotary_A = mkA "rotary" "more rotary" "most rotary" "rotarily" ;
-lin dextrorotary_A = mkA "dextrorotary" "more dextrorotary" "most dextrorotary" "dextrorotarily" ;
-lin levorotary_A = mkA "levorotary" "more levorotary" "most levorotary" "levorotarily" ;
-lin tributary_A = mkA "tributary" "more tributary" "most tributary" "tributarily" ;
-lin salutary_A = mkA "salutary" "more salutary" "most salutary" "salutarily" ;
-lin residuary_A = mkA "residuary" "more residuary" "most residuary" "residuarily" ;
-lin statuary_A = mkA "statuary" "more statuary" "most statuary" "statuarily" ;
-lin usufructuary_A = mkA "usufructuary" "more usufructuary" "most usufructuary" "usufructuarily" ;
-lin sumptuary_A = mkA "sumptuary" "more sumptuary" "most sumptuary" "sumptuarily" ;
-lin mortuary_A = mkA "mortuary" "more mortuary" "most mortuary" "mortuarily" ;
-lin salivary_A = mkA "salivary" "more salivary" "most salivary" "salivarily" ;
-lin unwary_A = mkA "unwary" "more unwary" "most unwary" "unwarily" ;
-lin 'bone-dry_A' = mkA "bone-dry" "more bone-dry" "most bone-dry" "bone-drily" ;
-lin 'drip-dry_A' = mkA "drip-dry" "more drip-dry" "most drip-dry" "drip-drily" ;
-lin sundry_A = mkA "sundry" "more sundry" "most sundry" "sundrily" ;
-lin blubbery_A = mkA "blubbery" "more blubbery" "most blubbery" "blubberily" ;
-lin rubbery_A = mkA "rubbery" "more rubbery" "most rubbery" "rubberily" ;
-lin bladdery_A = mkA "bladdery" "more bladdery" "most bladdery" "bladderily" ;
-lin doddery_A = mkA "doddery" "more doddery" "most doddery" "dodderily" ;
-lin spidery_A = mkA "spidery" "more spidery" "most spidery" "spiderily" ;
-lin thundery_A = mkA "thundery" "more thundery" "most thundery" "thunderily" ;
-lin powdery_A = mkA "powdery" "more powdery" "most powdery" "powderily" ;
-lin cheery_A = mkA "cheery" "more cheery" "most cheery" "cheerily" ;
-lin gingery_A = mkA "gingery" "more gingery" "most gingery" "gingerily" ;
-lin feathery_A = mkA "feathery" "more feathery" "most feathery" "featherily" ;
-lin leathery_A = mkA "leathery" "more leathery" "most leathery" "leatherily" ;
-lin lathery_A = mkA "lathery" "more lathery" "most lathery" "latherily" ;
-lin slithery_A = mkA "slithery" "more slithery" "most slithery" "slitherily" ;
-lin fiery_A = mkA "fiery" "more fiery" "most fiery" "fierily" ;
-lin shimmery_A = mkA "shimmery" "more shimmery" "most shimmery" "shimmerily" ;
-lin glimmery_A = mkA "glimmery" "more glimmery" "most glimmery" "glimmerily" ;
-lin ornery_A = mkA "ornery" "more ornery" "most ornery" "ornerily" ;
-lin papery_A = mkA "papery" "more papery" "most papery" "paperily" ;
-lin sandpapery_A = mkA "sandpapery" "more sandpapery" "most sandpapery" "sandpaperily" ;
-lin trumpery_A = mkA "trumpery" "more trumpery" "most trumpery" "trumperily" ;
-lin peppery_A = mkA "peppery" "more peppery" "most peppery" "pepperily" ;
-lin nonslippery_A = mkA "nonslippery" "more nonslippery" "most nonslippery" "nonslipperily" ;
-lin coppery_A = mkA "coppery" "more coppery" "most coppery" "copperily" ;
-lin splintery_A = mkA "splintery" "more splintery" "most splintery" "splinterily" ;
-lin blustery_A = mkA "blustery" "more blustery" "most blustery" "blusterily" ;
-lin clattery_A = mkA "clattery" "more clattery" "most clattery" "clatterily" ;
-lin jittery_A = mkA "jittery" "more jittery" "most jittery" "jitterily" ;
-lin tottery_A = mkA "tottery" "more tottery" "most tottery" "totterily" ;
-lin buttery_A = mkA "buttery" "more buttery" "most buttery" "butterily" ;
-lin shivery_A = mkA "shivery" "more shivery" "most shivery" "shiverily" ;
-lin livery_A = mkA "livery" "more livery" "most livery" "liverily" ;
-lin bowery_A = mkA "bowery" "more bowery" "most bowery" "bowerily" ;
-lin airy_A = mkA "airy" "more airy" "most airy" "airily" ;
-lin nonhairy_A = mkA "nonhairy" "more nonhairy" "most nonhairy" "nonhairily" ;
-lin derisory_A = mkA "derisory" "more derisory" "most derisory" "derisorily" ;
-lin advisory_A = mkA "advisory" "more advisory" "most advisory" "advisorily" ;
-lin provisory_A = mkA "provisory" "more provisory" "most provisory" "provisorily" ;
-lin supervisory_A = mkA "supervisory" "more supervisory" "most supervisory" "supervisorily" ;
-lin compulsory_A = mkA "compulsory" "more compulsory" "most compulsory" "compulsorily" ;
-lin sensory_A = mkA "sensory" "more sensory" "most sensory" "sensorily" ;
-lin extrasensory_A = mkA "extrasensory" "more extrasensory" "most extrasensory" "extrasensorily" ;
-lin somatosensory_A = mkA "somatosensory" "more somatosensory" "most somatosensory" "somatosensorily" ;
-lin cursory_A = mkA "cursory" "more cursory" "most cursory" "cursorily" ;
-lin precursory_A = mkA "precursory" "more precursory" "most precursory" "precursorily" ;
-lin accessory_A = mkA "accessory" "more accessory" "most accessory" "accessorily" ;
-lin promissory_A = mkA "promissory" "more promissory" "most promissory" "promissorily" ;
-lin illusory_A = mkA "illusory" "more illusory" "most illusory" "illusorily" ;
-lin prolusory_A = mkA "prolusory" "more prolusory" "most prolusory" "prolusorily" ;
-lin precatory_A = mkA "precatory" "more precatory" "most precatory" "precatorily" ;
-lin classificatory_A = mkA "classificatory" "more classificatory" "most classificatory" "classificatorily" ;
-lin certificatory_A = mkA "certificatory" "more certificatory" "most certificatory" "certificatorily" ;
-lin vesicatory_A = mkA "vesicatory" "more vesicatory" "most vesicatory" "vesicatorily" ;
-lin predatory_A = mkA "predatory" "more predatory" "most predatory" "predatorily" ;
-lin mandatory_A = mkA "mandatory" "more mandatory" "most mandatory" "mandatorily" ;
-lin nonmandatory_A = mkA "nonmandatory" "more nonmandatory" "most nonmandatory" "nonmandatorily" ;
-lin amendatory_A = mkA "amendatory" "more amendatory" "most amendatory" "amendatorily" ;
-lin laudatory_A = mkA "laudatory" "more laudatory" "most laudatory" "laudatorily" ;
-lin feudatory_A = mkA "feudatory" "more feudatory" "most feudatory" "feudatorily" ;
-lin aleatory_A = mkA "aleatory" "more aleatory" "most aleatory" "aleatorily" ;
-lin prefatory_A = mkA "prefatory" "more prefatory" "most prefatory" "prefatorily" ;
-lin obligatory_A = mkA "obligatory" "more obligatory" "most obligatory" "obligatorily" ;
-lin derogatory_A = mkA "derogatory" "more derogatory" "most derogatory" "derogatorily" ;
-lin interrogatory_A = mkA "interrogatory" "more interrogatory" "most interrogatory" "interrogatorily" ;
-lin nugatory_A = mkA "nugatory" "more nugatory" "most nugatory" "nugatorily" ;
-lin depreciatory_A = mkA "depreciatory" "more depreciatory" "most depreciatory" "depreciatorily" ;
-lin annunciatory_A = mkA "annunciatory" "more annunciatory" "most annunciatory" "annunciatorily" ;
-lin mediatory_A = mkA "mediatory" "more mediatory" "most mediatory" "mediatorily" ;
-lin retaliatory_A = mkA "retaliatory" "more retaliatory" "most retaliatory" "retaliatorily" ;
-lin conciliatory_A = mkA "conciliatory" "more conciliatory" "most conciliatory" "conciliatorily" ;
-lin calumniatory_A = mkA "calumniatory" "more calumniatory" "most calumniatory" "calumniatorily" ;
-lin expiatory_A = mkA "expiatory" "more expiatory" "most expiatory" "expiatorily" ;
-lin propitiatory_A = mkA "propitiatory" "more propitiatory" "most propitiatory" "propitiatorily" ;
-lin dilatory_A = mkA "dilatory" "more dilatory" "most dilatory" "dilatorily" ;
-lin depilatory_A = mkA "depilatory" "more depilatory" "most depilatory" "depilatorily" ;
-lin ventilatory_A = mkA "ventilatory" "more ventilatory" "most ventilatory" "ventilatorily" ;
-lin oscillatory_A = mkA "oscillatory" "more oscillatory" "most oscillatory" "oscillatorily" ;
-lin nonoscillatory_A = mkA "nonoscillatory" "more nonoscillatory" "most nonoscillatory" "nonoscillatorily" ;
-lin consolatory_A = mkA "consolatory" "more consolatory" "most consolatory" "consolatorily" ;
-lin ambulatory_A = mkA "ambulatory" "more ambulatory" "most ambulatory" "ambulatorily" ;
-lin articulatory_A = mkA "articulatory" "more articulatory" "most articulatory" "articulatorily" ;
-lin circulatory_A = mkA "circulatory" "more circulatory" "most circulatory" "circulatorily" ;
-lin adulatory_A = mkA "adulatory" "more adulatory" "most adulatory" "adulatorily" ;
-lin undulatory_A = mkA "undulatory" "more undulatory" "most undulatory" "undulatorily" ;
-lin congratulatory_A = mkA "congratulatory" "more congratulatory" "most congratulatory" "congratulatorily" ;
-lin amatory_A = mkA "amatory" "more amatory" "most amatory" "amatorily" ;
-lin defamatory_A = mkA "defamatory" "more defamatory" "most defamatory" "defamatorily" ;
-lin declamatory_A = mkA "declamatory" "more declamatory" "most declamatory" "declamatorily" ;
-lin exclamatory_A = mkA "exclamatory" "more exclamatory" "most exclamatory" "exclamatorily" ;
-lin lacrimatory_A = mkA "lacrimatory" "more lacrimatory" "most lacrimatory" "lacrimatorily" ;
-lin inflammatory_A = mkA "inflammatory" "more inflammatory" "most inflammatory" "inflammatorily" ;
-lin noninflammatory_A = mkA "noninflammatory" "more noninflammatory" "most noninflammatory" "noninflammatorily" ;
-lin proinflammatory_A = mkA "proinflammatory" "more proinflammatory" "most proinflammatory" "proinflammatorily" ;
-lin reformatory_A = mkA "reformatory" "more reformatory" "most reformatory" "reformatorily" ;
-lin profanatory_A = mkA "profanatory" "more profanatory" "most profanatory" "profanatorily" ;
-lin explanatory_A = mkA "explanatory" "more explanatory" "most explanatory" "explanatorily" ;
-lin 'self-explanatory_A' = mkA "self-explanatory" "more self-explanatory" "most self-explanatory" "self-explanatorily" ;
-lin cosignatory_A = mkA "cosignatory" "more cosignatory" "most cosignatory" "cosignatorily" ;
-lin hallucinatory_A = mkA "hallucinatory" "more hallucinatory" "most hallucinatory" "hallucinatorily" ;
-lin minatory_A = mkA "minatory" "more minatory" "most minatory" "minatorily" ;
-lin recriminatory_A = mkA "recriminatory" "more recriminatory" "most recriminatory" "recriminatorily" ;
-lin discriminatory_A = mkA "discriminatory" "more discriminatory" "most discriminatory" "discriminatorily" ;
-lin comminatory_A = mkA "comminatory" "more comminatory" "most comminatory" "comminatorily" ;
-lin divinatory_A = mkA "divinatory" "more divinatory" "most divinatory" "divinatorily" ;
-lin damnatory_A = mkA "damnatory" "more damnatory" "most damnatory" "damnatorily" ;
-lin condemnatory_A = mkA "condemnatory" "more condemnatory" "most condemnatory" "condemnatorily" ;
-lin anticipatory_A = mkA "anticipatory" "more anticipatory" "most anticipatory" "anticipatorily" ;
-lin participatory_A = mkA "participatory" "more participatory" "most participatory" "participatorily" ;
-lin palpatory_A = mkA "palpatory" "more palpatory" "most palpatory" "palpatorily" ;
-lin inculpatory_A = mkA "inculpatory" "more inculpatory" "most inculpatory" "inculpatorily" ;
-lin exculpatory_A = mkA "exculpatory" "more exculpatory" "most exculpatory" "exculpatorily" ;
-lin preparatory_A = mkA "preparatory" "more preparatory" "most preparatory" "preparatorily" ;
-lin celebratory_A = mkA "celebratory" "more celebratory" "most celebratory" "celebratorily" ;
-lin vibratory_A = mkA "vibratory" "more vibratory" "most vibratory" "vibratorily" ;
-lin migratory_A = mkA "migratory" "more migratory" "most migratory" "migratorily" ;
-lin nonmigratory_A = mkA "nonmigratory" "more nonmigratory" "most nonmigratory" "nonmigratorily" ;
-lin respiratory_A = mkA "respiratory" "more respiratory" "most respiratory" "respiratorily" ;
-lin inspiratory_A = mkA "inspiratory" "more inspiratory" "most inspiratory" "inspiratorily" ;
-lin expiratory_A = mkA "expiratory" "more expiratory" "most expiratory" "expiratorily" ;
-lin exploratory_A = mkA "exploratory" "more exploratory" "most exploratory" "exploratorily" ;
-lin nonexploratory_A = mkA "nonexploratory" "more nonexploratory" "most nonexploratory" "nonexploratorily" ;
-lin adjuratory_A = mkA "adjuratory" "more adjuratory" "most adjuratory" "adjuratorily" ;
-lin compensatory_A = mkA "compensatory" "more compensatory" "most compensatory" "compensatorily" ;
-lin facilitatory_A = mkA "facilitatory" "more facilitatory" "most facilitatory" "facilitatorily" ;
-lin invitatory_A = mkA "invitatory" "more invitatory" "most invitatory" "invitatorily" ;
-lin auscultatory_A = mkA "auscultatory" "more auscultatory" "most auscultatory" "auscultatorily" ;
-lin rotatory_A = mkA "rotatory" "more rotatory" "most rotatory" "rotatorily" ;
-lin gustatory_A = mkA "gustatory" "more gustatory" "most gustatory" "gustatorily" ;
-lin sternutatory_A = mkA "sternutatory" "more sternutatory" "most sternutatory" "sternutatorily" ;
-lin calefactory_A = mkA "calefactory" "more calefactory" "most calefactory" "calefactorily" ;
-lin olfactory_A = mkA "olfactory" "more olfactory" "most olfactory" "olfactorily" ;
-lin satisfactory_A = mkA "satisfactory" "more satisfactory" "most satisfactory" "satisfactorily" ;
-lin unsatisfactory_A = mkA "unsatisfactory" "more unsatisfactory" "most unsatisfactory" "unsatisfactorily" ;
-lin refractory_A = mkA "refractory" "more refractory" "most refractory" "refractorily" ;
-lin 'ex-directory_A' = mkA "ex-directory" "more ex-directory" "most ex-directory" "ex-directorily" ;
-lin contradictory_A = mkA "contradictory" "more contradictory" "most contradictory" "contradictorily" ;
-lin valedictory_A = mkA "valedictory" "more valedictory" "most valedictory" "valedictorily" ;
-lin benedictory_A = mkA "benedictory" "more benedictory" "most benedictory" "benedictorily" ;
-lin perfunctory_A = mkA "perfunctory" "more perfunctory" "most perfunctory" "perfunctorily" ;
-lin introductory_A = mkA "introductory" "more introductory" "most introductory" "introductorily" ;
-lin secretory_A = mkA "secretory" "more secretory" "most secretory" "secretorily" ;
-lin excretory_A = mkA "excretory" "more excretory" "most excretory" "excretorily" ;
-lin inhibitory_A = mkA "inhibitory" "more inhibitory" "most inhibitory" "inhibitorily" ;
-lin prohibitory_A = mkA "prohibitory" "more prohibitory" "most prohibitory" "prohibitorily" ;
-lin auditory_A = mkA "auditory" "more auditory" "most auditory" "auditorily" ;
-lin admonitory_A = mkA "admonitory" "more admonitory" "most admonitory" "admonitorily" ;
-lin premonitory_A = mkA "premonitory" "more premonitory" "most premonitory" "premonitorily" ;
-lin inquisitory_A = mkA "inquisitory" "more inquisitory" "most inquisitory" "inquisitorily" ;
-lin transitory_A = mkA "transitory" "more transitory" "most transitory" "transitorily" ;
-lin expository_A = mkA "expository" "more expository" "most expository" "expositorily" ;
-lin absolvitory_A = mkA "absolvitory" "more absolvitory" "most absolvitory" "absolvitorily" ;
-lin desultory_A = mkA "desultory" "more desultory" "most desultory" "desultorily" ;
-lin peremptory_A = mkA "peremptory" "more peremptory" "most peremptory" "peremptorily" ;
-lin multistory_A = mkA "multistory" "more multistory" "most multistory" "multistorily" ;
-lin contributory_A = mkA "contributory" "more contributory" "most contributory" "contributorily" ;
-lin interlocutory_A = mkA "interlocutory" "more interlocutory" "most interlocutory" "interlocutorily" ;
-lin statutory_A = mkA "statutory" "more statutory" "most statutory" "statutorily" ;
-lin savory_A = mkA "savory" "more savory" "most savory" "savorily" ;
-lin unsavory_A = mkA "unsavory" "more unsavory" "most unsavory" "unsavorily" ;
-lin tarry_A = mkA "tarry" "more tarry" "most tarry" "tarrily" ;
-lin cherry_A = mkA "cherry" "more cherry" "most cherry" "cherrily" ;
-lin 'west-country_A' = mkA "west-country" "more west-country" "most west-country" "west-countrily" ;
-lin upcountry_A = mkA "upcountry" "more upcountry" "most upcountry" "upcountrily" ;
-lin crosscountry_A = mkA "crosscountry" "more crosscountry" "most crosscountry" "crosscountrily" ;
-lin savoury_A = mkA "savoury" "more savoury" "most savoury" "savourily" ;
-lin unsavoury_A = mkA "unsavoury" "more unsavoury" "most unsavoury" "unsavourily" ;
-lin awry_A = mkA "awry" "more awry" "most awry" "awrily" ;
-lin 'free-and-easy_A' = mkA "free-and-easy" "more free-and-easy" "most free-and-easy" "free-and-easily" ;
-lin uneasy_A = mkA "uneasy" "more uneasy" "most uneasy" "uneasily" ;
-lin tricksy_A = mkA "tricksy" "more tricksy" "most tricksy" "tricksily" ;
-lin folksy_A = mkA "folksy" "more folksy" "most folksy" "folksily" ;
-lin sonsy_A = mkA "sonsy" "more sonsy" "most sonsy" "sonsily" ;
-lin tipsy_A = mkA "tipsy" "more tipsy" "most tipsy" "tipsily" ;
-lin horsy_A = mkA "horsy" "more horsy" "most horsy" "horsily" ;
-lin outdoorsy_A = mkA "outdoorsy" "more outdoorsy" "most outdoorsy" "outdoorsily" ;
-lin pursy_A = mkA "pursy" "more pursy" "most pursy" "pursily" ;
-lin cissy_A = mkA "cissy" "more cissy" "most cissy" "cissily" ;
-lin overbusy_A = mkA "overbusy" "more overbusy" "most overbusy" "overbusily" ;
-lin fidgety_A = mkA "fidgety" "more fidgety" "most fidgety" "fidgetily" ;
-lin crotchety_A = mkA "crotchety" "more crotchety" "most crotchety" "crotchetily" ;
-lin rackety_A = mkA "rackety" "more rackety" "most rackety" "racketily" ;
-lin pernickety_A = mkA "pernickety" "more pernickety" "most pernickety" "pernicketily" ;
-lin rickety_A = mkA "rickety" "more rickety" "most rickety" "ricketily" ;
-lin suety_A = mkA "suety" "more suety" "most suety" "suetily" ;
-lin velvety_A = mkA "velvety" "more velvety" "most velvety" "velvetily" ;
-lin 'arty-crafty_A' = mkA "arty-crafty" "more arty-crafty" "most arty-crafty" "arty-craftily" ;
-lin flighty_A = mkA "flighty" "more flighty" "most flighty" "flightily" ;
-lin almighty_A = mkA "almighty" "more almighty" "most almighty" "almightily" ;
-lin doughty_A = mkA "doughty" "more doughty" "most doughty" "doughtily" ;
-lin quality_A = mkA "quality" "more quality" "most quality" "qualitily" ;
-lin 'high-fidelity_A' = mkA "high-fidelity" "more high-fidelity" "most high-fidelity" "high-fidelitily" ;
-lin 'hoity-toity_A' = mkA "hoity-toity" "more hoity-toity" "most hoity-toity" "hoity-toitily" ;
-lin uppity_A = mkA "uppity" "more uppity" "most uppity" "uppitily" ;
-lin bloodguilty_A = mkA "bloodguilty" "more bloodguilty" "most bloodguilty" "bloodguiltily" ;
-lin maggoty_A = mkA "maggoty" "more maggoty" "most maggoty" "maggotily" ;
-lin carroty_A = mkA "carroty" "more carroty" "most carroty" "carrotily" ;
-lin arty_A = mkA "arty" "more arty" "most arty" "artily" ;
-lin forty_A = mkA "forty" "more forty" "most forty" "fortily" ;
-lin overhasty_A = mkA "overhasty" "more overhasty" "most overhasty" "overhastily" ;
-lin contrasty_A = mkA "contrasty" "more contrasty" "most contrasty" "contrastily" ;
-lin bloodthirsty_A = mkA "bloodthirsty" "more bloodthirsty" "most bloodthirsty" "bloodthirstily" ;
-lin fusty_A = mkA "fusty" "more fusty" "most fusty" "fustily" ;
-lin frowsty_A = mkA "frowsty" "more frowsty" "most frowsty" "frowstily" ;
-lin batty_A = mkA "batty" "more batty" "most batty" "battily" ;
-lin 'pretty-pretty_A' = mkA "pretty-pretty" "more pretty-pretty" "most pretty-pretty" "pretty-prettily" ;
-lin plaguy_A = mkA "plaguy" "more plaguy" "most plaguy" "plaguily" ;
-lin 'top-heavy_A' = mkA "top-heavy" "more top-heavy" "most top-heavy" "top-heavily" ;
-lin privy_A = mkA "privy" "more privy" "most privy" "privily" ;
-lin nervy_A = mkA "nervy" "more nervy" "most nervy" "nervily" ;
-lin scurvy_A = mkA "scurvy" "more scurvy" "most scurvy" "scurvily" ;
-lin 'topsy-turvy_A' = mkA "topsy-turvy" "more topsy-turvy" "most topsy-turvy" "topsy-turvily" ;
-lin sinewy_A = mkA "sinewy" "more sinewy" "most sinewy" "sinewily" ;
-lin billowy_A = mkA "billowy" "more billowy" "most billowy" "billowily" ;
-lin willowy_A = mkA "willowy" "more willowy" "most willowy" "willowily" ;
-lin unsexy_A = mkA "unsexy" "more unsexy" "most unsexy" "unsexily" ;
-lin hydroxy_A = mkA "hydroxy" "more hydroxy" "most hydroxy" "hydroxily" ;
-lin trihydroxy_A = mkA "trihydroxy" "more trihydroxy" "most trihydroxy" "trihydroxily" ;
-lin 'bone-lazy_A' = mkA "bone-lazy" "more bone-lazy" "most bone-lazy" "bone-lazily" ;
-lin ritzy_A = mkA "ritzy" "more ritzy" "most ritzy" "ritzily" ;
-lin blowzy_A = mkA "blowzy" "more blowzy" "most blowzy" "blowzily" ;
-lin frowzy_A = mkA "frowzy" "more frowzy" "most frowzy" "frowzily" ;
-lin snazzy_A = mkA "snazzy" "more snazzy" "most snazzy" "snazzily" ;
-lin ersatz_A = mkA "ersatz" "more ersatz" "most ersatz" "ersatzly" ;
-lin abuzz_A = mkA "abuzz" "more abuzz" "most abuzz" "abuzzly" ;
-lin glacé_A = mkA "glacé" "more glacé" "most glacé" "glacély" ;
-lin démodé_A = mkA "démodé" "more démodé" "most démodé" "démodély" ;
-lin recherché_A = mkA "recherché" "more recherché" "most recherché" "recherchély" ;
-lin soigné_A = mkA "soigné" "more soigné" "most soigné" "soignély" ;
-lin outré_A = mkA "outré" "more outré" "most outré" "outrély" ;
-lin blasé_A = mkA "blasé" "more blasé" "most blasé" "blasély" ;
-lin passé_A = mkA "passé" "more passé" "most passé" "passély" ;
-lin retroussé_A = mkA "retroussé" "more retroussé" "most retroussé" "retroussély" ;
-lin décolleté_A = mkA "décolleté" "more décolleté" "most décolleté" "décolletély" ;
-lin sauté_A = mkA "sauté" "more sauté" "most sauté" "sautély" ;
-lin risqué_A = mkA "risqué" "more risqué" "most risqué" "risquély" ;
-lin tho'_Adv = mkAdv "tho'" ;
-lin 'ibid._Adv' = mkAdv "ibid." ;
-lin 'i.e._Adv' = mkAdv "i.e." ;
-lin 'cf._Adv' = mkAdv "cf." ;
-lin kinda_Adv = mkAdv "kinda" ;
-lin oversea_Adv = mkAdv "oversea" ;
-lin yea_Adv = mkAdv "yea" ;
-lin 'inter alia_Adv' = mkAdv "inter alia" ;
-lin 'pro forma_Adv' = mkAdv "pro forma" ;
-lin infra_Adv = mkAdv "infra" ;
-lin supra_Adv = mkAdv "supra" ;
-lin extra_Adv = mkAdv "extra" ;
-lin 'sub rosa_Adv' = mkAdv "sub rosa" ;
-lin 'vice versa_Adv' = mkAdv "vice versa" ;
-lin 'pro rata_Adv' = mkAdv "pro rata" ;
-lin 'ad lib_Adv' = mkAdv "ad lib" ;
-lin plumb_Adv = mkAdv "plumb" ;
-lin phonemic_Adv = mkAdv "phonemic" ;
-lin sic_Adv = mkAdv "sic" ;
-lin 'ad hoc_Adv' = mkAdv "ad hoc" ;
-lin dead_Adv = mkAdv "dead" ;
-lin ahead_Adv = mkAdv "ahead" ;
-lin overhead_Adv = mkAdv "overhead" ;
-lin instead_Adv = mkAdv "instead" ;
-lin abroad_Adv = mkAdv "abroad" ;
-lin orad_Adv = mkAdv "orad" ;
-lin aborad_Adv = mkAdv "aborad" ; -- compound orad_Adv ;
-lin abed_Adv = mkAdv "abed" ;
-lin 'single-handed_Adv' = mkAdv "single-handed" ;
-lin offhanded_Adv = mkAdv "offhanded" ;
-lin indeed_Adv = mkAdv "indeed" ;
-lin 'cross-legged_Adv' = mkAdv "cross-legged" ;
-lin barebacked_Adv = mkAdv "barebacked" ;
-lin damned_Adv = mkAdv "damned" ;
-lin barefooted_Adv = mkAdv "barefooted" ;
-lin 'post-paid_Adv' = mkAdv "post-paid" ;
-lin afield_Adv = mkAdv "afield" ;
-lin downfield_Adv = mkAdv "downfield" ;
-lin wild_Adv = mkAdv "wild" ;
-lin hundredfold_Adv = mkAdv "hundredfold" ;
-lin thousandfold_Adv = mkAdv "thousandfold" ;
-lin threefold_Adv = mkAdv "threefold" ;
-lin ninefold_Adv = mkAdv "ninefold" ;
-lin tenfold_Adv = mkAdv "tenfold" ;
-lin sevenfold_Adv = mkAdv "sevenfold" ;
-lin millionfold_Adv = mkAdv "millionfold" ;
-lin twofold_Adv = mkAdv "twofold" ;
-lin fourfold_Adv = mkAdv "fourfold" ;
-lin sixfold_Adv = mkAdv "sixfold" ;
-lin 'first-hand_Adv' = mkAdv "first-hand" ;
-lin secondhand_Adv = mkAdv "secondhand" ;
-lin thirdhand_Adv = mkAdv "thirdhand" ;
-lin beforehand_Adv = mkAdv "beforehand" ;
-lin offhand_Adv = mkAdv "offhand" ;
-lin underhand_Adv = mkAdv "underhand" ;
-lin firsthand_Adv = mkAdv "firsthand" ;
-lin inland_Adv = mkAdv "inland" ;
-lin behind_Adv = mkAdv "behind" ;
-lin downwind_Adv = mkAdv "downwind" ;
-lin upwind_Adv = mkAdv "upwind" ;
-lin 'au fond_Adv' = mkAdv "au fond" ;
-lin beyond_Adv = mkAdv "beyond" ;
-lin round_Adv = mkAdv "round" ;
-lin around_Adv = mkAdv "around" ; -- notcompound round_Adv ;
-lin aground_Adv = mkAdv "aground" ; -- compound round_Adv ;
-lin underground_Adv = mkAdv "underground" ; -- compound round_Adv ;
-lin sound_Adv = mkAdv "sound" ;
-lin hard_Adv = mkAdv "hard" ;
-lin 'above board_Adv' = mkAdv "above board" ;
-lin aboard_Adv = mkAdv "aboard" ;
-lin overboard_Adv = mkAdv "overboard" ;
-lin seaward_Adv = mkAdv "seaward" ;
-lin landward_Adv = mkAdv "landward" ;
-lin windward_Adv = mkAdv "windward" ;
-lin spaceward_Adv = mkAdv "spaceward" ;
-lin sideward_Adv = mkAdv "sideward" ;
-lin leeward_Adv = mkAdv "leeward" ;
-lin homeward_Adv = mkAdv "homeward" ;
-lin southward_Adv = mkAdv "southward" ;
-lin backward_Adv = mkAdv "backward" ;
-lin heavenward_Adv = mkAdv "heavenward" ;
-lin inward_Adv = mkAdv "inward" ;
-lin onward_Adv = mkAdv "onward" ;
-lin downward_Adv = mkAdv "downward" ;
-lin upward_Adv = mkAdv "upward" ;
-lin forward_Adv = mkAdv "forward" ;
-lin henceforward_Adv = mkAdv "henceforward" ; -- compound forward_Adv ;
-lin thenceforward_Adv = mkAdv "thenceforward" ; -- compound forward_Adv ;
-lin eastward_Adv = mkAdv "eastward" ;
-lin northeastward_Adv = mkAdv "northeastward" ; -- compound eastward_Adv ;
-lin southeastward_Adv = mkAdv "southeastward" ; -- compound eastward_Adv ;
-lin coastward_Adv = mkAdv "coastward" ;
-lin westward_Adv = mkAdv "westward" ;
-lin northwestward_Adv = mkAdv "northwestward" ; -- compound westward_Adv ;
-lin southwestward_Adv = mkAdv "southwestward" ; -- compound westward_Adv ;
-lin outward_Adv = mkAdv "outward" ;
-lin skyward_Adv = mkAdv "skyward" ;
-lin haphazard_Adv = mkAdv "haphazard" ;
-lin loud_Adv = mkAdv "loud" ;
-lin aloud_Adv = mkAdv "aloud" ; -- notcompound loud_Adv ;
-lin maybe_Adv = mkAdv "maybe" ;
-lin 'side-face_Adv' = mkAdv "side-face" ;
-lin someplace_Adv = mkAdv "someplace" ;
-lin anyplace_Adv = mkAdv "anyplace" ;
-lin everyplace_Adv = mkAdv "everyplace" ;
-lin apace_Adv = mkAdv "apace" ;
-lin vivace_Adv = mkAdv "vivace" ;
-lin apiece_Adv = mkAdv "apiece" ;
-lin thrice_Adv = mkAdv "thrice" ;
-lin 'half-price_Adv' = mkAdv "half-price" ;
-lin twice_Adv = mkAdv "twice" ;
-lin dolce_Adv = mkAdv "dolce" ;
-lin perchance_Adv = mkAdv "perchance" ;
-lin askance_Adv = mkAdv "askance" ;
-lin 'for instance_Adv' = mkAdv "for instance" ;
-lin hence_Adv = mkAdv "hence" ;
-lin thence_Adv = mkAdv "thence" ; -- notcompound hence_Adv ;
-lin whence_Adv = mkAdv "whence" ; -- notcompound hence_Adv ;
-lin 'par excellence_Adv' = mkAdv "par excellence" ;
-lin since_Adv = mkAdv "since" ;
-lin once_Adv = mkAdv "once" ;
-lin 'viva voce_Adv' = mkAdv "viva voce" ;
-lin 'sotto voce_Adv' = mkAdv "sotto voce" ;
-lin perforce_Adv = mkAdv "perforce" ;
-lin 'bona fide_Adv' = mkAdv "bona fide" ;
-lin astride_Adv = mkAdv "astride" ;
-lin aside_Adv = mkAdv "aside" ;
-lin broadside_Adv = mkAdv "broadside" ;
-lin offside_Adv = mkAdv "offside" ;
-lin alongside_Adv = mkAdv "alongside" ;
-lin inside_Adv = mkAdv "inside" ;
-lin overside_Adv = mkAdv "overside" ;
-lin outside_Adv = mkAdv "outside" ;
-lin wide_Adv = mkAdv "wide" ;
-lin nationwide_Adv = mkAdv "nationwide" ; -- compound wide_Adv ;
-lin 'à la mode_Adv' = mkAdv "à la mode" ;
-lin alee_Adv = mkAdv "alee" ;
-lin 'rent-free_Adv' = mkAdv "rent-free" ;
-lin 'scot-free_Adv' = mkAdv "scot-free" ;
-lin 'post-free_Adv' = mkAdv "post-free" ;
-lin offstage_Adv = mkAdv "offstage" ;
-lin backstage_Adv = mkAdv "backstage" ;
-lin onstage_Adv = mkAdv "onstage" ;
-lin downstage_Adv = mkAdv "downstage" ;
-lin upstage_Adv = mkAdv "upstage" ;
-lin large_Adv = mkAdv "large" ;
-lin 'prima facie_Adv' = mkAdv "prima facie" ;
-lin 'sine die_Adv' = mkAdv "sine die" ;
-lin 'cap-à-pie_Adv' = mkAdv "cap-à-pie" ;
-lin like_Adv = mkAdv "like" ;
-lin alike_Adv = mkAdv "alike" ; -- notcompound like_Adv ;
-lin belike_Adv = mkAdv "belike" ; -- compound like_Adv ;
-lin bannerlike_Adv = mkAdv "bannerlike" ; -- compound like_Adv ;
-lin wholesale_Adv = mkAdv "wholesale" ;
-lin 'tout ensemble_Adv' = mkAdv "tout ensemble" ;
-lin double_Adv = mkAdv "double" ;
-lin 'side-saddle_Adv' = mkAdv "side-saddle" ;
-lin sidesaddle_Adv = mkAdv "sidesaddle" ;
-lin awhile_Adv = mkAdv "awhile" ;
-lin meanwhile_Adv = mkAdv "meanwhile" ;
-lin 'en famille_Adv' = mkAdv "en famille" ;
-lin 'for example_Adv' = mkAdv "for example" ;
-lin same_Adv = mkAdv "same" ;
-lin 'full-time_Adv' = mkAdv "full-time" ;
-lin 'part-time_Adv' = mkAdv "part-time" ;
-lin sometime_Adv = mkAdv "sometime" ;
-lin meantime_Adv = mkAdv "meantime" ;
-lin overtime_Adv = mkAdv "overtime" ;
-lin home_Adv = mkAdv "home" ;
-lin 'from home_Adv' = mkAdv "from home" ; -- compound home_Adv ;
-lin 'at home_Adv' = mkAdv "at home" ; -- compound home_Adv ;
-lin fine_Adv = mkAdv "fine" ;
-lin none_Adv = mkAdv "none" ;
-lin langsyne_Adv = mkAdv "langsyne" ;
-lin tiptoe_Adv = mkAdv "tiptoe" ;
-lin shipshape_Adv = mkAdv "shipshape" ;
-lin square_Adv = mkAdv "square" ;
-lin foursquare_Adv = mkAdv "foursquare" ; -- compound square_Adv ;
-lin ere_Adv = mkAdv "ere" ;
-lin here_Adv = mkAdv "here" ; -- notcompound ere_Adv ;
-lin there_Adv = mkAdv "there" ; -- notcompound ere_Adv ;
-lin somewhere_Adv = mkAdv "somewhere" ; -- compound ere_Adv ;
-lin elsewhere_Adv = mkAdv "elsewhere" ; -- compound ere_Adv ;
-lin nowhere_Adv = mkAdv "nowhere" ; -- compound ere_Adv ;
-lin anywhere_Adv = mkAdv "anywhere" ; -- compound ere_Adv ;
-lin everywhere_Adv = mkAdv "everywhere" ; -- compound ere_Adv ;
-lin fore_Adv = mkAdv "fore" ;
-lin afore_Adv = mkAdv "afore" ; -- notcompound fore_Adv ;
-lin before_Adv = mkAdv "before" ; -- compound fore_Adv ;
-lin hereinbefore_Adv = mkAdv "hereinbefore" ; -- compound fore_Adv ;
-lin therefore_Adv = mkAdv "therefore" ; -- compound fore_Adv ;
-lin wherefore_Adv = mkAdv "wherefore" ; -- compound fore_Adv ;
-lin heretofore_Adv = mkAdv "heretofore" ; -- compound fore_Adv ;
-lin theretofore_Adv = mkAdv "theretofore" ; -- compound fore_Adv ;
-lin ashore_Adv = mkAdv "ashore" ;
-lin offshore_Adv = mkAdv "offshore" ;
-lin inshore_Adv = mkAdv "inshore" ;
-lin onshore_Adv = mkAdv "onshore" ;
-lin galore_Adv = mkAdv "galore" ;
-lin more_Adv = mkAdv "more" ;
-lin furthermore_Adv = mkAdv "furthermore" ; -- compound more_Adv ;
-lin evermore_Adv = mkAdv "evermore" ; -- compound more_Adv ;
-lin nevermore_Adv = mkAdv "nevermore" ; -- compound more_Adv ;
-lin anymore_Adv = mkAdv "anymore" ; -- compound more_Adv ;
-lin 'pro tempore_Adv' = mkAdv "pro tempore" ;
-lin extempore_Adv = mkAdv "extempore" ;
-lin 'de jure_Adv' = mkAdv "de jure" ;
-lin sure_Adv = mkAdv "sure" ;
-lin 'for sure_Adv' = mkAdv "for sure" ; -- compound sure_Adv ;
-lin peradventure_Adv = mkAdv "peradventure" ;
-lin please_Adv = mkAdv "please" ;
-lin broadwise_Adv = mkAdv "broadwise" ;
-lin endwise_Adv = mkAdv "endwise" ;
-lin edgewise_Adv = mkAdv "edgewise" ;
-lin likewise_Adv = mkAdv "likewise" ;
-lin longwise_Adv = mkAdv "longwise" ;
-lin breadthwise_Adv = mkAdv "breadthwise" ;
-lin lengthwise_Adv = mkAdv "lengthwise" ;
-lin contrariwise_Adv = mkAdv "contrariwise" ;
-lin clockwise_Adv = mkAdv "clockwise" ;
-lin anticlockwise_Adv = mkAdv "anticlockwise" ; -- compound clockwise_Adv ;
-lin counterclockwise_Adv = mkAdv "counterclockwise" ; -- compound clockwise_Adv ;
-lin nowise_Adv = mkAdv "nowise" ;
-lin stepwise_Adv = mkAdv "stepwise" ;
-lin otherwise_Adv = mkAdv "otherwise" ;
-lin crosswise_Adv = mkAdv "crosswise" ;
-lin slantwise_Adv = mkAdv "slantwise" ;
-lin leastwise_Adv = mkAdv "leastwise" ;
-lin coastwise_Adv = mkAdv "coastwise" ;
-lin false_Adv = mkAdv "false" ;
-lin else_Adv = mkAdv "else" ;
-lin close_Adv = mkAdv "close" ;
-lin loose_Adv = mkAdv "loose" ;
-lin worse_Adv = mkAdv "worse" ;
-lin 'of course_Adv' = mkAdv "of course" ;
-lin 'en masse_Adv' = mkAdv "en masse" ;
-lin 'to date_Adv' = mkAdv "to date" ;
-lin late_Adv = mkAdv "late" ;
-lin upstate_Adv = mkAdv "upstate" ;
-lin quite_Adv = mkAdv "quite" ;
-lin andante_Adv = mkAdv "andante" ;
-lin unquote_Adv = mkAdv "unquote" ;
-lin 'à la carte_Adv' = mkAdv "à la carte" ;
-lin forte_Adv = mkAdv "forte" ;
-lin 'post-haste_Adv' = mkAdv "post-haste" ;
-lin 'en route_Adv' = mkAdv "en route" ;
-lin 'tête-à-tête_Adv' = mkAdv "tête-à-tête" ;
-lin 'table d\'hôte_Adv' = mkAdv "table d'hôte" ;
-lin due_Adv = mkAdv "due" ;
-lin live_Adv = mkAdv "live" ;
-lin consecutive_Adv = mkAdv "consecutive" ;
-lin above_Adv = mkAdv "above" ;
-lin aye_Adv = mkAdv "aye" ;
-lin ablaze_Adv = mkAdv "ablaze" ;
-lin overleaf_Adv = mkAdv "overleaf" ;
-lin lief_Adv = mkAdv "lief" ;
-lin stiff_Adv = mkAdv "stiff" ;
-lin off_Adv = mkAdv "off" ;
-lin half_Adv = mkAdv "half" ;
-lin hereof_Adv = mkAdv "hereof" ;
-lin thereof_Adv = mkAdv "thereof" ; -- notcompound hereof_Adv ;
-lin whereof_Adv = mkAdv "whereof" ; -- notcompound hereof_Adv ;
-lin aloof_Adv = mkAdv "aloof" ;
-lin zigzag_Adv = mkAdv "zigzag" ;
-lin bang_Adv = mkAdv "bang" ;
-lin 'slap-bang_Adv' = mkAdv "slap-bang" ; -- compound bang_Adv ;
-lin whang_Adv = mkAdv "whang" ;
-lin notwithstanding_Adv = mkAdv "notwithstanding" ;
-lin scorching_Adv = mkAdv "scorching" ;
-lin nothing_Adv = mkAdv "nothing" ;
-lin soaking_Adv = mkAdv "soaking" ;
-lin whacking_Adv = mkAdv "whacking" ;
-lin fucking_Adv = mkAdv "fucking" ;
-lin middling_Adv = mkAdv "middling" ;
-lin boiling_Adv = mkAdv "boiling" ;
-lin rattling_Adv = mkAdv "rattling" ;
-lin piping_Adv = mkAdv "piping" ;
-lin whopping_Adv = mkAdv "whopping" ;
-lin sopping_Adv = mkAdv "sopping" ;
-lin roaring_Adv = mkAdv "roaring" ;
-lin staring_Adv = mkAdv "staring" ;
-lin tiring_Adv = mkAdv "tiring" ;
-lin passing_Adv = mkAdv "passing" ;
-lin raving_Adv = mkAdv "raving" ;
-lin 'ding-dong_Adv' = mkAdv "ding-dong" ;
-lin dingdong_Adv = mkAdv "dingdong" ;
-lin along_Adv = mkAdv "along" ;
-lin headlong_Adv = mkAdv "headlong" ;
-lin sidelong_Adv = mkAdv "sidelong" ;
-lin daylong_Adv = mkAdv "daylong" ;
-lin wrong_Adv = mkAdv "wrong" ;
-lin each_Adv = mkAdv "each" ;
-lin much_Adv = mkAdv "much" ;
-lin insomuch_Adv = mkAdv "insomuch" ; -- compound much_Adv ;
-lin overmuch_Adv = mkAdv "overmuch" ; -- compound much_Adv ;
-lin such_Adv = mkAdv "such" ;
-lin aweigh_Adv = mkAdv "aweigh" ;
-lin high_Adv = mkAdv "high" ;
-lin 'knee-high_Adv' = mkAdv "knee-high" ; -- compound high_Adv ;
-lin 'breast-high_Adv' = mkAdv "breast-high" ; -- compound high_Adv ;
-lin 'waist-high_Adv' = mkAdv "waist-high" ; -- compound high_Adv ;
-lin 'sky-high_Adv' = mkAdv "sky-high" ; -- compound high_Adv ;
-lin nigh_Adv = mkAdv "nigh" ;
-lin 'well-nigh_Adv' = mkAdv "well-nigh" ; -- compound nigh_Adv ;
-lin though_Adv = mkAdv "though" ;
-lin rough_Adv = mkAdv "rough" ;
-lin through_Adv = mkAdv "through" ; -- notcompound rough_Adv ;
-lin slapdash_Adv = mkAdv "slapdash" ;
-lin smash_Adv = mkAdv "smash" ;
-lin crash_Adv = mkAdv "crash" ;
-lin fresh_Adv = mkAdv "fresh" ;
-lin afresh_Adv = mkAdv "afresh" ; -- notcompound fresh_Adv ;
-lin devilish_Adv = mkAdv "devilish" ;
-lin flush_Adv = mkAdv "flush" ;
-lin beneath_Adv = mkAdv "beneath" ;
-lin underneath_Adv = mkAdv "underneath" ;
-lin herewith_Adv = mkAdv "herewith" ;
-lin therewith_Adv = mkAdv "therewith" ; -- notcompound herewith_Adv ;
-lin wherewith_Adv = mkAdv "wherewith" ; -- notcompound herewith_Adv ;
-lin forthwith_Adv = mkAdv "forthwith" ;
-lin both_Adv = mkAdv "both" ;
-lin forsooth_Adv = mkAdv "forsooth" ;
-lin North_Adv = mkAdv "North" ;
-lin forth_Adv = mkAdv "forth" ;
-lin henceforth_Adv = mkAdv "henceforth" ; -- compound forth_Adv ;
-lin thenceforth_Adv = mkAdv "thenceforth" ; -- compound forth_Adv ;
-lin South_Adv = mkAdv "South" ;
-lin 'a posteriori_Adv' = mkAdv "a posteriori" ;
-lin 'a priori_Adv' = mkAdv "a priori" ;
-lin 'a fortiori_Adv' = mkAdv "a fortiori" ;
-lin back_Adv = mkAdv "back" ;
-lin aback_Adv = mkAdv "aback" ; -- notcompound back_Adv ;
-lin pickaback_Adv = mkAdv "pickaback" ; -- compound back_Adv ;
-lin bareback_Adv = mkAdv "bareback" ; -- compound back_Adv ;
-lin horseback_Adv = mkAdv "horseback" ; -- compound back_Adv ;
-lin piggyback_Adv = mkAdv "piggyback" ; -- compound back_Adv ;
-lin smack_Adv = mkAdv "smack" ;
-lin thick_Adv = mkAdv "thick" ;
-lin slick_Adv = mkAdv "slick" ;
-lin quick_Adv = mkAdv "quick" ;
-lin 'double-quick_Adv' = mkAdv "double-quick" ; -- compound quick_Adv ;
-lin chock_Adv = mkAdv "chock" ;
-lin shock_Adv = mkAdv "shock" ;
-lin 'chock-a-block_Adv' = mkAdv "chock-a-block" ;
-lin o'clock_Adv = mkAdv "o'clock" ;
-lin 'round-the-clock_Adv' = mkAdv "round-the-clock" ;
-lin sock_Adv = mkAdv "sock" ;
-lin amuck_Adv = mkAdv "amuck" ;
-lin 'tongue-in-cheek_Adv' = mkAdv "tongue-in-cheek" ;
-lin midweek_Adv = mkAdv "midweek" ;
-lin 'point-blank_Adv' = mkAdv "point-blank" ;
-lin plonk_Adv = mkAdv "plonk" ;
-lin amok_Adv = mkAdv "amok" ;
-lin stark_Adv = mkAdv "stark" ;
-lin neurobiological_Adv = mkAdv "neurobiological" ;
-lin deal_Adv = mkAdv "deal" ;
-lin piecemeal_Adv = mkAdv "piecemeal" ;
-lin withal_Adv = mkAdv "withal" ;
-lin therewithal_Adv = mkAdv "therewithal" ; -- compound withal_Adv ;
-lin wherewithal_Adv = mkAdv "wherewithal" ; -- compound withal_Adv ;
-lin 'in general_Adv' = mkAdv "in general" ;
-lin interdepartmental_Adv = mkAdv "interdepartmental" ;
-lin retail_Adv = mkAdv "retail" ;
-lin 'at all_Adv' = mkAdv "at all" ;
-lin small_Adv = mkAdv "small" ;
-lin 'pell-mell_Adv' = mkAdv "pell-mell" ;
-lin 'as well_Adv' = mkAdv "as well" ;
-lin ill_Adv = mkAdv "ill" ;
-lin downhill_Adv = mkAdv "downhill" ; -- compound ill_Adv ;
-lin uphill_Adv = mkAdv "uphill" ; -- compound ill_Adv ;
-lin still_Adv = mkAdv "still" ; -- notcompound ill_Adv ;
-lin 'stock-still_Adv' = mkAdv "stock-still" ; -- compound ill_Adv ;
-lin 'cram-full_Adv' = mkAdv "cram-full" ;
-lin afoul_Adv = mkAdv "afoul" ;
-lin goddam_Adv = mkAdv "goddam" ;
-lin abeam_Adv = mkAdv "abeam" ;
-lin downstream_Adv = mkAdv "downstream" ;
-lin upstream_Adv = mkAdv "upstream" ;
-lin 'ad nauseam_Adv' = mkAdv "ad nauseam" ;
-lin ibidem_Adv = mkAdv "ibidem" ;
-lin tandem_Adv = mkAdv "tandem" ;
-lin 'ante meridiem_Adv' = mkAdv "ante meridiem" ;
-lin 'post meridiem_Adv' = mkAdv "post meridiem" ;
-lin 'ad valorem_Adv' = mkAdv "ad valorem" ;
-lin 'pro tem_Adv' = mkAdv "pro tem" ;
-lin item_Adv = mkAdv "item" ;
-lin 'ad interim_Adv' = mkAdv "ad interim" ;
-lin passim_Adv = mkAdv "passim" ;
-lin verbatim_Adv = mkAdv "verbatim" ;
-lin seriatim_Adv = mkAdv "seriatim" ;
-lin literatim_Adv = mkAdv "literatim" ;
-lin seldom_Adv = mkAdv "seldom" ;
-lin therefrom_Adv = mkAdv "therefrom" ;
-lin 'round-arm_Adv' = mkAdv "round-arm" ;
-lin sidearm_Adv = mkAdv "sidearm" ;
-lin underarm_Adv = mkAdv "underarm" ;
-lin overarm_Adv = mkAdv "overarm" ;
-lin firm_Adv = mkAdv "firm" ;
-lin 'ad libitum_Adv' = mkAdv "ad libitum" ;
-lin 'ad infinitum_Adv' = mkAdv "ad infinitum" ;
-lin clean_Adv = mkAdv "clean" ;
-lin deadpan_Adv = mkAdv "deadpan" ;
-lin e'en_Adv = mkAdv "e'en" ;
-lin W_'tween_Adv = mkAdv "'tween" ;
-lin between_Adv = mkAdv "between" ;
-lin then_Adv = mkAdv "then" ;
-lin 'since then_Adv' = mkAdv "since then" ; -- compound then_Adv ;
-lin often_Adv = mkAdv "often" ;
-lin even_Adv = mkAdv "even" ;
-lin in_Adv = mkAdv "in" ;
-lin fain_Adv = mkAdv "fain" ; -- compound in_Adv ;
-lin again_Adv = mkAdv "again" ; -- compound in_Adv ;
-lin plain_Adv = mkAdv "plain" ; -- compound in_Adv ;
-lin amain_Adv = mkAdv "amain" ; -- compound in_Adv ;
-lin herein_Adv = mkAdv "herein" ; -- compound in_Adv ;
-lin therein_Adv = mkAdv "therein" ; -- compound in_Adv ;
-lin thin_Adv = mkAdv "thin" ; -- notcompound in_Adv ;
-lin on_Adv = mkAdv "on" ;
-lin 'early on_Adv' = mkAdv "early on" ; -- compound on_Adv ;
-lin 'head-on_Adv' = mkAdv "head-on" ; -- compound on_Adv ;
-lin 'odds-on_Adv' = mkAdv "odds-on" ; -- compound on_Adv ;
-lin con_Adv = mkAdv "con" ; -- notcompound on_Adv ;
-lin 'nem con_Adv' = mkAdv "nem con" ; -- compound on_Adv ;
-lin thereon_Adv = mkAdv "thereon" ; -- compound on_Adv ;
-lin whereon_Adv = mkAdv "whereon" ; -- compound on_Adv ;
-lin champion_Adv = mkAdv "champion" ; -- compound on_Adv ;
-lin 'in addition_Adv' = mkAdv "in addition" ; -- compound on_Adv ;
-lin anon_Adv = mkAdv "anon" ; -- compound on_Adv ;
-lin soon_Adv = mkAdv "soon" ; -- compound on_Adv ;
-lin hereupon_Adv = mkAdv "hereupon" ; -- compound on_Adv ;
-lin thereupon_Adv = mkAdv "thereupon" ; -- compound on_Adv ;
-lin whereupon_Adv = mkAdv "whereupon" ; -- compound on_Adv ;
-lin yon_Adv = mkAdv "yon" ; -- notcompound on_Adv ;
-lin astern_Adv = mkAdv "astern" ;
-lin down_Adv = mkAdv "down" ;
-lin 'upside-down_Adv' = mkAdv "upside-down" ; -- compound down_Adv ;
-lin 'right-down_Adv' = mkAdv "right-down" ; -- compound down_Adv ;
-lin unbeknown_Adv = mkAdv "unbeknown" ;
-lin downtown_Adv = mkAdv "downtown" ;
-lin uptown_Adv = mkAdv "uptown" ;
-lin crosstown_Adv = mkAdv "crosstown" ;
-lin akimbo_Adv = mkAdv "akimbo" ;
-lin unco_Adv = mkAdv "unco" ;
-lin alfresco_Adv = mkAdv "alfresco" ;
-lin accelerando_Adv = mkAdv "accelerando" ;
-lin glissando_Adv = mkAdv "glissando" ;
-lin rallentando_Adv = mkAdv "rallentando" ;
-lin ago_Adv = mkAdv "ago" ;
-lin doggo_Adv = mkAdv "doggo" ;
-lin largo_Adv = mkAdv "largo" ;
-lin ergo_Adv = mkAdv "ergo" ;
-lin 'ex officio_Adv' = mkAdv "ex officio" ;
-lin adagio_Adv = mkAdv "adagio" ;
-lin 'ab initio_Adv' = mkAdv "ab initio" ;
-lin pianissimo_Adv = mkAdv "pianissimo" ;
-lin fortissimo_Adv = mkAdv "fortissimo" ;
-lin prestissimo_Adv = mkAdv "prestissimo" ;
-lin piano_Adv = mkAdv "piano" ;
-lin too_Adv = mkAdv "too" ;
-lin fro_Adv = mkAdv "fro" ;
-lin allegro_Adv = mkAdv "allegro" ;
-lin pro_Adv = mkAdv "pro" ;
-lin so_Adv = mkAdv "so" ;
-lin 'so-so_Adv' = mkAdv "so-so" ; -- compound so_Adv ;
-lin also_Adv = mkAdv "also" ; -- compound so_Adv ;
-lin to_Adv = mkAdv "to" ;
-lin staccato_Adv = mkAdv "staccato" ; -- compound to_Adv ;
-lin pizzicato_Adv = mkAdv "pizzicato" ; -- compound to_Adv ;
-lin legato_Adv = mkAdv "legato" ; -- compound to_Adv ;
-lin 'de facto_Adv' = mkAdv "de facto" ; -- compound to_Adv ;
-lin 'ipso facto_Adv' = mkAdv "ipso facto" ; -- compound to_Adv ;
-lin hereto_Adv = mkAdv "hereto" ; -- compound to_Adv ;
-lin thereto_Adv = mkAdv "thereto" ; -- compound to_Adv ;
-lin whereto_Adv = mkAdv "whereto" ; -- compound to_Adv ;
-lin incognito_Adv = mkAdv "incognito" ; -- compound to_Adv ;
-lin molto_Adv = mkAdv "molto" ; -- compound to_Adv ;
-lin lento_Adv = mkAdv "lento" ; -- compound to_Adv ;
-lin pronto_Adv = mkAdv "pronto" ; -- compound to_Adv ;
-lin whereunto_Adv = mkAdv "whereunto" ; -- compound to_Adv ;
-lin 'in toto_Adv' = mkAdv "in toto" ; -- compound to_Adv ;
-lin hitherto_Adv = mkAdv "hitherto" ; -- compound to_Adv ;
-lin presto_Adv = mkAdv "presto" ; -- compound to_Adv ;
-lin allegretto_Adv = mkAdv "allegretto" ; -- compound to_Adv ;
-lin mezzo_Adv = mkAdv "mezzo" ;
-lin slap_Adv = mkAdv "slap" ;
-lin deep_Adv = mkAdv "deep" ;
-lin 'knee-deep_Adv' = mkAdv "knee-deep" ; -- compound deep_Adv ;
-lin 'breast-deep_Adv' = mkAdv "breast-deep" ; -- compound deep_Adv ;
-lin 'waist-deep_Adv' = mkAdv "waist-deep" ; -- compound deep_Adv ;
-lin asleep_Adv = mkAdv "asleep" ;
-lin amidship_Adv = mkAdv "amidship" ;
-lin bump_Adv = mkAdv "bump" ;
-lin plump_Adv = mkAdv "plump" ;
-lin 'chop-chop_Adv' = mkAdv "chop-chop" ;
-lin flop_Adv = mkAdv "flop" ;
-lin plop_Adv = mkAdv "plop" ;
-lin 'cock-a-hoop_Adv' = mkAdv "cock-a-hoop" ;
-lin pop_Adv = mkAdv "pop" ;
-lin 'tip-top_Adv' = mkAdv "tip-top" ;
-lin atop_Adv = mkAdv "atop" ;
-lin nonstop_Adv = mkAdv "nonstop" ;
-lin sharp_Adv = mkAdv "sharp" ;
-lin up_Adv = mkAdv "up" ;
-lin dear_Adv = mkAdv "dear" ;
-lin clear_Adv = mkAdv "clear" ;
-lin near_Adv = mkAdv "near" ;
-lin afar_Adv = mkAdv "afar" ;
-lin insofar_Adv = mkAdv "insofar" ;
-lin 'in particular_Adv' = mkAdv "in particular" ;
-lin e'er_Adv = mkAdv "e'er" ;
-lin ne'er_Adv = mkAdv "ne'er" ; -- notcompound e'er_Adv ;
-lin o'er_Adv = mkAdv "o'er" ;
-lin forrader_Adv = mkAdv "forrader" ;
-lin yonder_Adv = mkAdv "yonder" ;
-lin under_Adv = mkAdv "under" ;
-lin hereunder_Adv = mkAdv "hereunder" ; -- compound under_Adv ;
-lin thereunder_Adv = mkAdv "thereunder" ; -- compound under_Adv ;
-lin asunder_Adv = mkAdv "asunder" ; -- compound under_Adv ;
-lin sheer_Adv = mkAdv "sheer" ;
-lin 'hugger-mugger_Adv' = mkAdv "hugger-mugger" ;
-lin longer_Adv = mkAdv "longer" ;
-lin nigher_Adv = mkAdv "nigher" ;
-lin rather_Adv = mkAdv "rather" ;
-lin together_Adv = mkAdv "together" ;
-lin altogether_Adv = mkAdv "altogether" ; -- compound together_Adv ;
-lin either_Adv = mkAdv "either" ;
-lin neither_Adv = mkAdv "neither" ; -- notcompound either_Adv ;
-lin hither_Adv = mkAdv "hither" ;
-lin thither_Adv = mkAdv "thither" ; -- notcompound hither_Adv ;
-lin whither_Adv = mkAdv "whither" ; -- notcompound hither_Adv ;
-lin other_Adv = mkAdv "other" ;
-lin farther_Adv = mkAdv "farther" ;
-lin further_Adv = mkAdv "further" ;
-lin earlier_Adv = mkAdv "earlier" ;
-lin quicker_Adv = mkAdv "quicker" ;
-lin oftener_Adv = mkAdv "oftener" ;
-lin sooner_Adv = mkAdv "sooner" ;
-lin nearer_Adv = mkAdv "nearer" ;
-lin later_Adv = mkAdv "later" ;
-lin after_Adv = mkAdv "after" ;
-lin hereafter_Adv = mkAdv "hereafter" ; -- compound after_Adv ;
-lin thereafter_Adv = mkAdv "thereafter" ; -- compound after_Adv ;
-lin hereinafter_Adv = mkAdv "hereinafter" ; -- compound after_Adv ;
-lin thereinafter_Adv = mkAdv "thereinafter" ; -- compound after_Adv ;
-lin 'helter-skelter_Adv' = mkAdv "helter-skelter" ;
-lin scienter_Adv = mkAdv "scienter" ;
-lin counter_Adv = mkAdv "counter" ;
-lin better_Adv = mkAdv "better" ;
-lin ever_Adv = mkAdv "ever" ;
-lin never_Adv = mkAdv "never" ; -- notcompound ever_Adv ;
-lin whenever_Adv = mkAdv "whenever" ; -- compound ever_Adv ;
-lin wheresoever_Adv = mkAdv "wheresoever" ; -- compound ever_Adv ;
-lin whithersoever_Adv = mkAdv "whithersoever" ; -- compound ever_Adv ;
-lin wherever_Adv = mkAdv "wherever" ; -- compound ever_Adv ;
-lin forever_Adv = mkAdv "forever" ; -- compound ever_Adv ;
-lin however_Adv = mkAdv "however" ; -- compound ever_Adv ;
-lin downriver_Adv = mkAdv "downriver" ;
-lin upriver_Adv = mkAdv "upriver" ;
-lin over_Adv = mkAdv "over" ;
-lin moreover_Adv = mkAdv "moreover" ; -- compound over_Adv ;
-lin lower_Adv = mkAdv "lower" ;
-lin slower_Adv = mkAdv "slower" ; -- notcompound lower_Adv ;
-lin fair_Adv = mkAdv "fair" ;
-lin 'en clair_Adv' = mkAdv "en clair" ;
-lin astir_Adv = mkAdv "astir" ;
-lin therefor_Adv = mkAdv "therefor" ;
-lin 'inasmuch as_Adv' = mkAdv "inasmuch as" ;
-lin overseas_Adv = mkAdv "overseas" ;
-lin alias_Adv = mkAdv "alias" ;
-lin needs_Adv = mkAdv "needs" ;
-lin seawards_Adv = mkAdv "seawards" ;
-lin sidewards_Adv = mkAdv "sidewards" ;
-lin homewards_Adv = mkAdv "homewards" ;
-lin northwards_Adv = mkAdv "northwards" ;
-lin southwards_Adv = mkAdv "southwards" ;
-lin backwards_Adv = mkAdv "backwards" ;
-lin heavenwards_Adv = mkAdv "heavenwards" ;
-lin inwards_Adv = mkAdv "inwards" ;
-lin onwards_Adv = mkAdv "onwards" ;
-lin downwards_Adv = mkAdv "downwards" ;
-lin upwards_Adv = mkAdv "upwards" ;
-lin rearwards_Adv = mkAdv "rearwards" ;
-lin afterwards_Adv = mkAdv "afterwards" ;
-lin forwards_Adv = mkAdv "forwards" ;
-lin eastwards_Adv = mkAdv "eastwards" ;
-lin westwards_Adv = mkAdv "westwards" ;
-lin outwards_Adv = mkAdv "outwards" ;
-lin skywards_Adv = mkAdv "skywards" ;
-lin besides_Adv = mkAdv "besides" ;
-lin 'oft-times_Adv' = mkAdv "oft-times" ;
-lin betimes_Adv = mkAdv "betimes" ;
-lin sometimes_Adv = mkAdv "sometimes" ;
-lin unawares_Adv = mkAdv "unawares" ;
-lin 'ultra vires_Adv' = mkAdv "ultra vires" ;
-lin 'mutatis mutandis_Adv' = mkAdv "mutatis mutandis" ;
-lin gratis_Adv = mkAdv "gratis" ;
-lin 'in loco parentis_Adv' = mkAdv "in loco parentis" ;
-lin 'vis-à-vis_Adv' = mkAdv "vis-à-vis" ;
-lin '\'tween-decks_Adv' = mkAdv "'tween-decks" ;
-lin methinks_Adv = mkAdv "methinks" ;
-lin meseems_Adv = mkAdv "meseems" ;
-lin apropos_Adv = mkAdv "apropos" ;
-lin malapropos_Adv = mkAdv "malapropos" ; -- compound apropos_Adv ;
-lin heaps_Adv = mkAdv "heaps" ;
-lin perhaps_Adv = mkAdv "perhaps" ;
-lin midships_Adv = mkAdv "midships" ;
-lin amidships_Adv = mkAdv "amidships" ; -- notcompound midships_Adv ;
-lin 'for starters_Adv' = mkAdv "for starters" ;
-lin downstairs_Adv = mkAdv "downstairs" ;
-lin upstairs_Adv = mkAdv "upstairs" ;
-lin 'out-of-doors_Adv' = mkAdv "out-of-doors" ;
-lin indoors_Adv = mkAdv "indoors" ;
-lin outdoors_Adv = mkAdv "outdoors" ;
-lin 'second-class_Adv' = mkAdv "second-class" ;
-lin 'first-class_Adv' = mkAdv "first-class" ;
-lin less_Adv = mkAdv "less" ;
-lin regardless_Adv = mkAdv "regardless" ; -- compound less_Adv ;
-lin irregardless_Adv = mkAdv "irregardless" ; -- compound less_Adv ;
-lin nevertheless_Adv = mkAdv "nevertheless" ; -- compound less_Adv ;
-lin defenseless_Adv = mkAdv "defenseless" ; -- compound less_Adv ;
-lin doubtless_Adv = mkAdv "doubtless" ; -- compound less_Adv ;
-lin express_Adv = mkAdv "express" ;
-lin amiss_Adv = mkAdv "amiss" ;
-lin across_Adv = mkAdv "across" ;
-lin crisscross_Adv = mkAdv "crisscross" ;
-lin hereabouts_Adv = mkAdv "hereabouts" ;
-lin thereabouts_Adv = mkAdv "thereabouts" ; -- notcompound hereabouts_Adv ;
-lin whereabouts_Adv = mkAdv "whereabouts" ; -- notcompound hereabouts_Adv ;
-lin thus_Adv = mkAdv "thus" ;
-lin precious_Adv = mkAdv "precious" ;
-lin wondrous_Adv = mkAdv "wondrous" ;
-lin nowadays_Adv = mkAdv "nowadays" ;
-lin broadways_Adv = mkAdv "broadways" ;
-lin endways_Adv = mkAdv "endways" ;
-lin sideways_Adv = mkAdv "sideways" ;
-lin edgeways_Adv = mkAdv "edgeways" ;
-lin longways_Adv = mkAdv "longways" ;
-lin breadthways_Adv = mkAdv "breadthways" ;
-lin lengthways_Adv = mkAdv "lengthways" ;
-lin leastways_Adv = mkAdv "leastways" ;
-lin whereat_Adv = mkAdv "whereat" ;
-lin somewhat_Adv = mkAdv "somewhat" ;
-lin flat_Adv = mkAdv "flat" ;
-lin pat_Adv = mkAdv "pat" ;
-lin 'pit-a-pat_Adv' = mkAdv "pit-a-pat" ; -- compound pat_Adv ;
-lin collect_Adv = mkAdv "collect" ;
-lin direct_Adv = mkAdv "direct" ;
-lin videlicet_Adv = mkAdv "videlicet" ;
-lin yet_Adv = mkAdv "yet" ;
-lin aft_Adv = mkAdv "aft" ;
-lin abaft_Adv = mkAdv "abaft" ; -- compound aft_Adv ;
-lin adrift_Adv = mkAdv "adrift" ;
-lin oft_Adv = mkAdv "oft" ;
-lin aloft_Adv = mkAdv "aloft" ; -- compound oft_Adv ;
-lin straight_Adv = mkAdv "straight" ;
-lin light_Adv = mkAdv "light" ;
-lin tonight_Adv = mkAdv "tonight" ;
-lin overnight_Adv = mkAdv "overnight" ;
-lin right_Adv = mkAdv "right" ;
-lin aright_Adv = mkAdv "aright" ; -- notcompound right_Adv ;
-lin bright_Adv = mkAdv "bright" ; -- notcompound right_Adv ;
-lin alright_Adv = mkAdv "alright" ; -- compound right_Adv ;
-lin downright_Adv = mkAdv "downright" ; -- compound right_Adv ;
-lin outright_Adv = mkAdv "outright" ; -- compound right_Adv ;
-lin tight_Adv = mkAdv "tight" ;
-lin methought_Adv = mkAdv "methought" ;
-lin aforethought_Adv = mkAdv "aforethought" ;
-lin bolt_Adv = mkAdv "bolt" ;
-lin aslant_Adv = mkAdv "aslant" ;
-lin afoot_Adv = mkAdv "afoot" ;
-lin barefoot_Adv = mkAdv "barefoot" ;
-lin underfoot_Adv = mkAdv "underfoot" ;
-lin hotfoot_Adv = mkAdv "hotfoot" ;
-lin part_Adv = mkAdv "part" ;
-lin apart_Adv = mkAdv "apart" ; -- notcompound part_Adv ;
-lin athwart_Adv = mkAdv "athwart" ;
-lin short_Adv = mkAdv "short" ;
-lin East_Adv = mkAdv "East" ;
-lin broadcast_Adv = mkAdv "broadcast" ;
-lin 'nor\'-east_Adv' = mkAdv "nor'-east" ;
-lin 'nor\'-nor\'-east_Adv' = mkAdv "nor'-nor'-east" ; -- compound 'nor\'-east_Adv' ;
-lin 'sou\'-east_Adv' = mkAdv "sou'-east" ;
-lin 'sou\'-sou\'-east_Adv' = mkAdv "sou'-sou'-east" ; -- compound 'sou\'-east_Adv' ;
-lin northeast_Adv = mkAdv "northeast" ;
-lin 'north-northeast_Adv' = mkAdv "north-northeast" ; -- compound northeast_Adv ;
-lin southeast_Adv = mkAdv "southeast" ;
-lin 'south-southeast_Adv' = mkAdv "south-southeast" ; -- compound southeast_Adv ;
-lin least_Adv = mkAdv "least" ;
-lin abreast_Adv = mkAdv "abreast" ;
-lin fast_Adv = mkAdv "fast" ;
-lin past_Adv = mkAdv "past" ;
-lin West_Adv = mkAdv "West" ;
-lin best_Adv = mkAdv "best" ;
-lin 'second-best_Adv' = mkAdv "second-best" ; -- compound best_Adv ;
-lin longest_Adv = mkAdv "longest" ;
-lin nighest_Adv = mkAdv "nighest" ;
-lin farthest_Adv = mkAdv "farthest" ;
-lin furthest_Adv = mkAdv "furthest" ;
-lin quickest_Adv = mkAdv "quickest" ;
-lin soonest_Adv = mkAdv "soonest" ;
-lin nearest_Adv = mkAdv "nearest" ;
-lin 'nor\'-west_Adv' = mkAdv "nor'-west" ;
-lin 'nor\'-nor\'-west_Adv' = mkAdv "nor'-nor'-west" ; -- compound 'nor\'-west_Adv' ;
-lin 'sou\'-west_Adv' = mkAdv "sou'-west" ;
-lin 'sou\'-sou\'-west_Adv' = mkAdv "sou'-sou'-west" ; -- compound 'sou\'-west_Adv' ;
-lin northwest_Adv = mkAdv "northwest" ;
-lin 'north-northwest_Adv' = mkAdv "north-northwest" ; -- compound northwest_Adv ;
-lin southwest_Adv = mkAdv "southwest" ;
-lin 'south-southwest_Adv' = mkAdv "south-southwest" ; -- compound southwest_Adv ;
-lin lowest_Adv = mkAdv "lowest" ;
-lin slowest_Adv = mkAdv "slowest" ; -- notcompound lowest_Adv ;
-lin unbeknownst_Adv = mkAdv "unbeknownst" ;
-lin most_Adv = mkAdv "most" ;
-lin midmost_Adv = mkAdv "midmost" ; -- compound most_Adv ;
-lin foremost_Adv = mkAdv "foremost" ; -- compound most_Adv ;
-lin almost_Adv = mkAdv "almost" ; -- compound most_Adv ;
-lin uppermost_Adv = mkAdv "uppermost" ; -- compound most_Adv ;
-lin feetfirst_Adv = mkAdv "feetfirst" ;
-lin worst_Adv = mkAdv "worst" ;
-lin just_Adv = mkAdv "just" ;
-lin but_Adv = mkAdv "but" ;
-lin 'clear-cut_Adv' = mkAdv "clear-cut" ;
-lin phut_Adv = mkAdv "phut" ;
-lin out_Adv = mkAdv "out" ;
-lin about_Adv = mkAdv "about" ; -- compound out_Adv ;
-lin hereabout_Adv = mkAdv "hereabout" ; -- compound out_Adv ;
-lin thereabout_Adv = mkAdv "thereabout" ; -- compound out_Adv ;
-lin throughout_Adv = mkAdv "throughout" ; -- compound out_Adv ;
-lin 'pari passu_Adv' = mkAdv "pari passu" ;
-lin 'in situ_Adv' = mkAdv "in situ" ;
-lin impromptu_Adv = mkAdv "impromptu" ;
-lin askew_Adv = mkAdv "askew" ;
-lin new_Adv = mkAdv "new" ;
-lin anew_Adv = mkAdv "anew" ; -- notcompound new_Adv ;
-lin somehow_Adv = mkAdv "somehow" ;
-lin nohow_Adv = mkAdv "nohow" ;
-lin anyhow_Adv = mkAdv "anyhow" ;
-lin low_Adv = mkAdv "low" ;
-lin below_Adv = mkAdv "below" ; -- compound low_Adv ;
-lin slow_Adv = mkAdv "slow" ; -- notcompound low_Adv ;
-lin now_Adv = mkAdv "now" ;
-lin tomorrow_Adv = mkAdv "tomorrow" ;
-lin prox_Adv = mkAdv "prox" ;
-lin ay_Adv = mkAdv "ay" ;
-lin someday_Adv = mkAdv "someday" ; -- compound ay_Adv ;
-lin today_Adv = mkAdv "today" ; -- compound ay_Adv ;
-lin yesterday_Adv = mkAdv "yesterday" ; -- compound ay_Adv ;
-lin okay_Adv = mkAdv "okay" ; -- compound ay_Adv ;
-lin nay_Adv = mkAdv "nay" ; -- notcompound ay_Adv ;
-lin astray_Adv = mkAdv "astray" ; -- compound ay_Adv ;
-lin way_Adv = mkAdv "way" ; -- notcompound ay_Adv ;
-lin 'out-of-the-way_Adv' = mkAdv "out-of-the-way" ; -- compound ay_Adv ;
-lin away_Adv = mkAdv "away" ; -- compound ay_Adv ;
-lin midway_Adv = mkAdv "midway" ; -- compound ay_Adv ;
-lin sideway_Adv = mkAdv "sideway" ; -- compound ay_Adv ;
-lin someway_Adv = mkAdv "someway" ; -- compound ay_Adv ;
-lin halfway_Adv = mkAdv "halfway" ; -- compound ay_Adv ;
-lin straightway_Adv = mkAdv "straightway" ; -- compound ay_Adv ;
-lin anyway_Adv = mkAdv "anyway" ; -- compound ay_Adv ;
-lin by_Adv = mkAdv "by" ;
-lin hereby_Adv = mkAdv "hereby" ; -- compound by_Adv ;
-lin thereby_Adv = mkAdv "thereby" ; -- compound by_Adv ;
-lin whereby_Adv = mkAdv "whereby" ; -- compound by_Adv ;
-lin nearby_Adv = mkAdv "nearby" ; -- compound by_Adv ;
-lin already_Adv = mkAdv "already" ;
-lin steady_Adv = mkAdv "steady" ;
-lin 'higgledy-piggledy_Adv' = mkAdv "higgledy-piggledy" ;
-lin bloody_Adv = mkAdv "bloody" ;
-lin plaguey_Adv = mkAdv "plaguey" ;
-lin unwarrantably_Adv = mkAdv "unwarrantably" ;
-lin pretendedly_Adv = mkAdv "pretendedly" ;
-lin raggedly_Adv = mkAdv "raggedly" ;
-lin doggedly_Adv = mkAdv "doggedly" ;
-lin worriedly_Adv = mkAdv "worriedly" ;
-lin designedly_Adv = mkAdv "designedly" ;
-lin resignedly_Adv = mkAdv "resignedly" ;
-lin constrainedly_Adv = mkAdv "constrainedly" ;
-lin determinedly_Adv = mkAdv "determinedly" ;
-lin concernedly_Adv = mkAdv "concernedly" ;
-lin bewilderedly_Adv = mkAdv "bewilderedly" ;
-lin tiredly_Adv = mkAdv "tiredly" ;
-lin measuredly_Adv = mkAdv "measuredly" ;
-lin assuredly_Adv = mkAdv "assuredly" ;
-lin surprisedly_Adv = mkAdv "surprisedly" ;
-lin confessedly_Adv = mkAdv "confessedly" ;
-lin professedly_Adv = mkAdv "professedly" ;
-lin blessedly_Adv = mkAdv "blessedly" ;
-lin confusedly_Adv = mkAdv "confusedly" ;
-lin repeatedly_Adv = mkAdv "repeatedly" ;
-lin animatedly_Adv = mkAdv "animatedly" ;
-lin distractedly_Adv = mkAdv "distractedly" ;
-lin affectedly_Adv = mkAdv "affectedly" ;
-lin dejectedly_Adv = mkAdv "dejectedly" ;
-lin collectedly_Adv = mkAdv "collectedly" ;
-lin delightedly_Adv = mkAdv "delightedly" ;
-lin excitedly_Adv = mkAdv "excitedly" ;
-lin limitedly_Adv = mkAdv "limitedly" ;
-lin spiritedly_Adv = mkAdv "spiritedly" ;
-lin dispiritedly_Adv = mkAdv "dispiritedly" ; -- compound spiritedly_Adv ;
-lin meanspiritedly_Adv = mkAdv "meanspiritedly" ; -- compound spiritedly_Adv ;
-lin contentedly_Adv = mkAdv "contentedly" ;
-lin discontentedly_Adv = mkAdv "discontentedly" ; -- compound contentedly_Adv ;
-lin disjointedly_Adv = mkAdv "disjointedly" ;
-lin pointedly_Adv = mkAdv "pointedly" ;
-lin disappointedly_Adv = mkAdv "disappointedly" ; -- compound pointedly_Adv ;
-lin devotedly_Adv = mkAdv "devotedly" ;
-lin reportedly_Adv = mkAdv "reportedly" ;
-lin purportedly_Adv = mkAdv "purportedly" ;
-lin disgustedly_Adv = mkAdv "disgustedly" ;
-lin admittedly_Adv = mkAdv "admittedly" ;
-lin reputedly_Adv = mkAdv "reputedly" ;
-lin deservedly_Adv = mkAdv "deservedly" ;
-lin reservedly_Adv = mkAdv "reservedly" ;
-lin avowedly_Adv = mkAdv "avowedly" ;
-lin perplexedly_Adv = mkAdv "perplexedly" ;
-lin fixedly_Adv = mkAdv "fixedly" ;
-lin dazedly_Adv = mkAdv "dazedly" ;
-lin idly_Adv = mkAdv "idly" ;
-lin comradely_Adv = mkAdv "comradely" ;
-lin namely_Adv = mkAdv "namely" ;
-lin leisurely_Adv = mkAdv "leisurely" ;
-lin purposely_Adv = mkAdv "purposely" ;
-lin appositively_Adv = mkAdv "appositively" ;
-lin sobbingly_Adv = mkAdv "sobbingly" ;
-lin gibingly_Adv = mkAdv "gibingly" ;
-lin disturbingly_Adv = mkAdv "disturbingly" ;
-lin menacingly_Adv = mkAdv "menacingly" ;
-lin mincingly_Adv = mkAdv "mincingly" ;
-lin piercingly_Adv = mkAdv "piercingly" ;
-lin pleadingly_Adv = mkAdv "pleadingly" ;
-lin ploddingly_Adv = mkAdv "ploddingly" ;
-lin condescendingly_Adv = mkAdv "condescendingly" ;
-lin correspondingly_Adv = mkAdv "correspondingly" ;
-lin resoundingly_Adv = mkAdv "resoundingly" ;
-lin accordingly_Adv = mkAdv "accordingly" ;
-lin scoffingly_Adv = mkAdv "scoffingly" ;
-lin disparagingly_Adv = mkAdv "disparagingly" ;
-lin draggingly_Adv = mkAdv "draggingly" ;
-lin longingly_Adv = mkAdv "longingly" ;
-lin searchingly_Adv = mkAdv "searchingly" ;
-lin slouchingly_Adv = mkAdv "slouchingly" ;
-lin soughingly_Adv = mkAdv "soughingly" ;
-lin dashingly_Adv = mkAdv "dashingly" ;
-lin vanishingly_Adv = mkAdv "vanishingly" ;
-lin gushingly_Adv = mkAdv "gushingly" ;
-lin crushingly_Adv = mkAdv "crushingly" ;
-lin sneakingly_Adv = mkAdv "sneakingly" ;
-lin mockingly_Adv = mkAdv "mockingly" ;
-lin jokingly_Adv = mkAdv "jokingly" ;
-lin rebukingly_Adv = mkAdv "rebukingly" ;
-lin appealingly_Adv = mkAdv "appealingly" ;
-lin feelingly_Adv = mkAdv "feelingly" ;
-lin smilingly_Adv = mkAdv "smilingly" ;
-lin killingly_Adv = mkAdv "killingly" ;
-lin twirlingly_Adv = mkAdv "twirlingly" ;
-lin growlingly_Adv = mkAdv "growlingly" ;
-lin screamingly_Adv = mkAdv "screamingly" ;
-lin overwhelmingly_Adv = mkAdv "overwhelmingly" ;
-lin swimmingly_Adv = mkAdv "swimmingly" ;
-lin becomingly_Adv = mkAdv "becomingly" ;
-lin charmingly_Adv = mkAdv "charmingly" ;
-lin threateningly_Adv = mkAdv "threateningly" ;
-lin complainingly_Adv = mkAdv "complainingly" ;
-lin yearningly_Adv = mkAdv "yearningly" ;
-lin frowningly_Adv = mkAdv "frowningly" ;
-lin slopingly_Adv = mkAdv "slopingly" ;
-lin droopingly_Adv = mkAdv "droopingly" ;
-lin gropingly_Adv = mkAdv "gropingly" ;
-lin raspingly_Adv = mkAdv "raspingly" ;
-lin lispingly_Adv = mkAdv "lispingly" ;
-lin daringly_Adv = mkAdv "daringly" ;
-lin endearingly_Adv = mkAdv "endearingly" ;
-lin shudderingly_Adv = mkAdv "shudderingly" ;
-lin meanderingly_Adv = mkAdv "meanderingly" ;
-lin wonderingly_Adv = mkAdv "wonderingly" ;
-lin jeeringly_Adv = mkAdv "jeeringly" ;
-lin domineeringly_Adv = mkAdv "domineeringly" ;
-lin sneeringly_Adv = mkAdv "sneeringly" ;
-lin staggeringly_Adv = mkAdv "staggeringly" ;
-lin lingeringly_Adv = mkAdv "lingeringly" ;
-lin witheringly_Adv = mkAdv "witheringly" ;
-lin stammeringly_Adv = mkAdv "stammeringly" ;
-lin simperingly_Adv = mkAdv "simperingly" ;
-lin falteringly_Adv = mkAdv "falteringly" ;
-lin banteringly_Adv = mkAdv "banteringly" ;
-lin stutteringly_Adv = mkAdv "stutteringly" ;
-lin quaveringly_Adv = mkAdv "quaveringly" ;
-lin perseveringly_Adv = mkAdv "perseveringly" ;
-lin loweringly_Adv = mkAdv "loweringly" ;
-lin gloweringly_Adv = mkAdv "gloweringly" ; -- notcompound loweringly_Adv ;
-lin despairingly_Adv = mkAdv "despairingly" ;
-lin admiringly_Adv = mkAdv "admiringly" ;
-lin enquiringly_Adv = mkAdv "enquiringly" ;
-lin inquiringly_Adv = mkAdv "inquiringly" ;
-lin imploringly_Adv = mkAdv "imploringly" ;
-lin jarringly_Adv = mkAdv "jarringly" ;
-lin stirringly_Adv = mkAdv "stirringly" ;
-lin enduringly_Adv = mkAdv "enduringly" ;
-lin louringly_Adv = mkAdv "louringly" ;
-lin singly_Adv = mkAdv "singly" ;
-lin pleasingly_Adv = mkAdv "pleasingly" ; -- compound singly_Adv ;
-lin increasingly_Adv = mkAdv "increasingly" ; -- compound singly_Adv ;
-lin promisingly_Adv = mkAdv "promisingly" ; -- compound singly_Adv ;
-lin accusingly_Adv = mkAdv "accusingly" ; -- compound singly_Adv ;
-lin musingly_Adv = mkAdv "musingly" ; -- compound singly_Adv ;
-lin placatingly_Adv = mkAdv "placatingly" ;
-lin entreatingly_Adv = mkAdv "entreatingly" ;
-lin humiliatingly_Adv = mkAdv "humiliatingly" ;
-lin calculatingly_Adv = mkAdv "calculatingly" ;
-lin incriminatingly_Adv = mkAdv "incriminatingly" ;
-lin gloatingly_Adv = mkAdv "gloatingly" ;
-lin gratingly_Adv = mkAdv "gratingly" ;
-lin penetratingly_Adv = mkAdv "penetratingly" ;
-lin hesitatingly_Adv = mkAdv "hesitatingly" ;
-lin insinuatingly_Adv = mkAdv "insinuatingly" ;
-lin slightingly_Adv = mkAdv "slightingly" ;
-lin haltingly_Adv = mkAdv "haltingly" ;
-lin enchantingly_Adv = mkAdv "enchantingly" ;
-lin slantingly_Adv = mkAdv "slantingly" ;
-lin pantingly_Adv = mkAdv "pantingly" ;
-lin unstintingly_Adv = mkAdv "unstintingly" ;
-lin tauntingly_Adv = mkAdv "tauntingly" ;
-lin vauntingly_Adv = mkAdv "vauntingly" ;
-lin temptingly_Adv = mkAdv "temptingly" ;
-lin sportingly_Adv = mkAdv "sportingly" ;
-lin contrastingly_Adv = mkAdv "contrastingly" ;
-lin protestingly_Adv = mkAdv "protestingly" ;
-lin cuttingly_Adv = mkAdv "cuttingly" ;
-lin poutingly_Adv = mkAdv "poutingly" ;
-lin disbelievingly_Adv = mkAdv "disbelievingly" ;
-lin deceivingly_Adv = mkAdv "deceivingly" ;
-lin forgivingly_Adv = mkAdv "forgivingly" ;
-lin movingly_Adv = mkAdv "movingly" ;
-lin reprovingly_Adv = mkAdv "reprovingly" ;
-lin approvingly_Adv = mkAdv "approvingly" ;
-lin disapprovingly_Adv = mkAdv "disapprovingly" ; -- compound approvingly_Adv ;
-lin glowingly_Adv = mkAdv "glowingly" ;
-lin mellowingly_Adv = mkAdv "mellowingly" ;
-lin coaxingly_Adv = mkAdv "coaxingly" ;
-lin horrifyingly_Adv = mkAdv "horrifyingly" ;
-lin cloyingly_Adv = mkAdv "cloyingly" ;
-lin pryingly_Adv = mkAdv "pryingly" ;
-lin worryingly_Adv = mkAdv "worryingly" ;
-lin agonizingly_Adv = mkAdv "agonizingly" ;
-lin deathly_Adv = mkAdv "deathly" ;
-lin monthly_Adv = mkAdv "monthly" ;
-lin bimonthly_Adv = mkAdv "bimonthly" ; -- compound monthly_Adv ;
-lin semimonthly_Adv = mkAdv "semimonthly" ; -- compound monthly_Adv ;
-lin daily_Adv = mkAdv "daily" ;
-lin bodily_Adv = mkAdv "bodily" ;
-lin cagily_Adv = mkAdv "cagily" ;
-lin verily_Adv = mkAdv "verily" ;
-lin prettily_Adv = mkAdv "prettily" ;
-lin weekly_Adv = mkAdv "weekly" ;
-lin semiweekly_Adv = mkAdv "semiweekly" ; -- compound weekly_Adv ;
-lin bally_Adv = mkAdv "bally" ;
-lin prosaically_Adv = mkAdv "prosaically" ;
-lin syllabically_Adv = mkAdv "syllabically" ;
-lin monosyllabically_Adv = mkAdv "monosyllabically" ; -- compound syllabically_Adv ;
-lin polysyllabically_Adv = mkAdv "polysyllabically" ; -- compound syllabically_Adv ;
-lin sporadically_Adv = mkAdv "sporadically" ;
-lin pyramidically_Adv = mkAdv "pyramidically" ;
-lin melodically_Adv = mkAdv "melodically" ;
-lin spasmodically_Adv = mkAdv "spasmodically" ;
-lin episodically_Adv = mkAdv "episodically" ;
-lin pacifically_Adv = mkAdv "pacifically" ;
-lin nonspecifically_Adv = mkAdv "nonspecifically" ;
-lin unspecifically_Adv = mkAdv "unspecifically" ;
-lin terrifically_Adv = mkAdv "terrifically" ;
-lin scientifically_Adv = mkAdv "scientifically" ;
-lin unscientifically_Adv = mkAdv "unscientifically" ; -- compound scientifically_Adv ;
-lin tragically_Adv = mkAdv "tragically" ;
-lin nostalgically_Adv = mkAdv "nostalgically" ;
-lin sociobiologically_Adv = mkAdv "sociobiologically" ;
-lin lethargically_Adv = mkAdv "lethargically" ;
-lin anarchically_Adv = mkAdv "anarchically" ;
-lin telegraphically_Adv = mkAdv "telegraphically" ;
-lin ideographically_Adv = mkAdv "ideographically" ;
-lin pornographically_Adv = mkAdv "pornographically" ;
-lin typographically_Adv = mkAdv "typographically" ;
-lin spectrographically_Adv = mkAdv "spectrographically" ;
-lin chromatographically_Adv = mkAdv "chromatographically" ;
-lin photographically_Adv = mkAdv "photographically" ;
-lin cryptographically_Adv = mkAdv "cryptographically" ;
-lin catastrophically_Adv = mkAdv "catastrophically" ;
-lin hieroglyphically_Adv = mkAdv "hieroglyphically" ;
-lin angelically_Adv = mkAdv "angelically" ;
-lin philatelically_Adv = mkAdv "philatelically" ;
-lin idyllically_Adv = mkAdv "idyllically" ;
-lin metabolically_Adv = mkAdv "metabolically" ;
-lin shambolically_Adv = mkAdv "shambolically" ;
-lin hyperbolically_Adv = mkAdv "hyperbolically" ;
-lin hydraulically_Adv = mkAdv "hydraulically" ;
-lin hypothalamically_Adv = mkAdv "hypothalamically" ;
-lin dynamically_Adv = mkAdv "dynamically" ;
-lin thermodynamically_Adv = mkAdv "thermodynamically" ; -- compound dynamically_Adv ;
-lin academically_Adv = mkAdv "academically" ;
-lin polemically_Adv = mkAdv "polemically" ;
-lin logarithmically_Adv = mkAdv "logarithmically" ;
-lin socioeconomically_Adv = mkAdv "socioeconomically" ;
-lin taxonomically_Adv = mkAdv "taxonomically" ;
-lin cytoplasmically_Adv = mkAdv "cytoplasmically" ;
-lin metonymically_Adv = mkAdv "metonymically" ;
-lin volcanically_Adv = mkAdv "volcanically" ;
-lin organically_Adv = mkAdv "organically" ;
-lin inorganically_Adv = mkAdv "inorganically" ; -- compound organically_Adv ;
-lin scenically_Adv = mkAdv "scenically" ;
-lin pathogenically_Adv = mkAdv "pathogenically" ;
-lin hygienically_Adv = mkAdv "hygienically" ;
-lin unhygienically_Adv = mkAdv "unhygienically" ; -- compound hygienically_Adv ;
-lin ethnically_Adv = mkAdv "ethnically" ;
-lin laconically_Adv = mkAdv "laconically" ;
-lin sardonically_Adv = mkAdv "sardonically" ;
-lin polyphonically_Adv = mkAdv "polyphonically" ;
-lin harmonically_Adv = mkAdv "harmonically" ;
-lin chronically_Adv = mkAdv "chronically" ;
-lin electronically_Adv = mkAdv "electronically" ;
-lin ultrasonically_Adv = mkAdv "ultrasonically" ;
-lin heroically_Adv = mkAdv "heroically" ;
-lin telescopically_Adv = mkAdv "telescopically" ;
-lin macroscopically_Adv = mkAdv "macroscopically" ;
-lin philanthropically_Adv = mkAdv "philanthropically" ;
-lin isotropically_Adv = mkAdv "isotropically" ;
-lin anisotropically_Adv = mkAdv "anisotropically" ; -- compound isotropically_Adv ;
-lin stereotypically_Adv = mkAdv "stereotypically" ;
-lin generically_Adv = mkAdv "generically" ;
-lin photoelectrically_Adv = mkAdv "photoelectrically" ;
-lin diametrically_Adv = mkAdv "diametrically" ;
-lin photometrically_Adv = mkAdv "photometrically" ;
-lin cytophotometrically_Adv = mkAdv "cytophotometrically" ; -- compound photometrically_Adv ;
-lin volumetrically_Adv = mkAdv "volumetrically" ;
-lin eccentrically_Adv = mkAdv "eccentrically" ;
-lin basically_Adv = mkAdv "basically" ;
-lin intrinsically_Adv = mkAdv "intrinsically" ;
-lin emphatically_Adv = mkAdv "emphatically" ;
-lin dramatically_Adv = mkAdv "dramatically" ;
-lin undramatically_Adv = mkAdv "undramatically" ; -- compound dramatically_Adv ;
-lin melodramatically_Adv = mkAdv "melodramatically" ; -- compound dramatically_Adv ;
-lin schematically_Adv = mkAdv "schematically" ;
-lin thematically_Adv = mkAdv "thematically" ;
-lin problematically_Adv = mkAdv "problematically" ;
-lin systematically_Adv = mkAdv "systematically" ;
-lin unsystematically_Adv = mkAdv "unsystematically" ; -- compound systematically_Adv ;
-lin pragmatically_Adv = mkAdv "pragmatically" ;
-lin phlegmatically_Adv = mkAdv "phlegmatically" ;
-lin enigmatically_Adv = mkAdv "enigmatically" ;
-lin dogmatically_Adv = mkAdv "dogmatically" ;
-lin climatically_Adv = mkAdv "climatically" ;
-lin logogrammatically_Adv = mkAdv "logogrammatically" ;
-lin idiomatically_Adv = mkAdv "idiomatically" ;
-lin axiomatically_Adv = mkAdv "axiomatically" ;
-lin undiplomatically_Adv = mkAdv "undiplomatically" ;
-lin chromatically_Adv = mkAdv "chromatically" ;
-lin symptomatically_Adv = mkAdv "symptomatically" ;
-lin automatically_Adv = mkAdv "automatically" ;
-lin schismatically_Adv = mkAdv "schismatically" ;
-lin pneumatically_Adv = mkAdv "pneumatically" ;
-lin democratically_Adv = mkAdv "democratically" ;
-lin undemocratically_Adv = mkAdv "undemocratically" ; -- compound democratically_Adv ;
-lin aristocratically_Adv = mkAdv "aristocratically" ;
-lin autocratically_Adv = mkAdv "autocratically" ;
-lin bureaucratically_Adv = mkAdv "bureaucratically" ;
-lin erratically_Adv = mkAdv "erratically" ;
-lin statically_Adv = mkAdv "statically" ;
-lin ecstatically_Adv = mkAdv "ecstatically" ; -- compound statically_Adv ;
-lin homeostatically_Adv = mkAdv "homeostatically" ; -- compound statically_Adv ;
-lin thermostatically_Adv = mkAdv "thermostatically" ; -- compound statically_Adv ;
-lin electrostatically_Adv = mkAdv "electrostatically" ; -- compound statically_Adv ;
-lin didactically_Adv = mkAdv "didactically" ;
-lin syntactically_Adv = mkAdv "syntactically" ;
-lin ascetically_Adv = mkAdv "ascetically" ;
-lin apologetically_Adv = mkAdv "apologetically" ;
-lin energetically_Adv = mkAdv "energetically" ;
-lin pathetically_Adv = mkAdv "pathetically" ;
-lin apathetically_Adv = mkAdv "apathetically" ; -- notcompound pathetically_Adv ;
-lin sympathetically_Adv = mkAdv "sympathetically" ; -- compound pathetically_Adv ;
-lin unsympathetically_Adv = mkAdv "unsympathetically" ; -- compound pathetically_Adv ;
-lin synthetically_Adv = mkAdv "synthetically" ;
-lin kinesthetically_Adv = mkAdv "kinesthetically" ;
-lin hermetically_Adv = mkAdv "hermetically" ;
-lin cosmetically_Adv = mkAdv "cosmetically" ;
-lin genetically_Adv = mkAdv "genetically" ;
-lin phylogenetically_Adv = mkAdv "phylogenetically" ; -- compound genetically_Adv ;
-lin magnetically_Adv = mkAdv "magnetically" ;
-lin phonetically_Adv = mkAdv "phonetically" ;
-lin pedantically_Adv = mkAdv "pedantically" ;
-lin semantically_Adv = mkAdv "semantically" ;
-lin romantically_Adv = mkAdv "romantically" ;
-lin unromantically_Adv = mkAdv "unromantically" ; -- compound romantically_Adv ;
-lin frantically_Adv = mkAdv "frantically" ;
-lin authentically_Adv = mkAdv "authentically" ;
-lin chaotically_Adv = mkAdv "chaotically" ;
-lin symbiotically_Adv = mkAdv "symbiotically" ;
-lin idiotically_Adv = mkAdv "idiotically" ;
-lin patriotically_Adv = mkAdv "patriotically" ;
-lin unpatriotically_Adv = mkAdv "unpatriotically" ; -- compound patriotically_Adv ;
-lin osmotically_Adv = mkAdv "osmotically" ;
-lin hypnotically_Adv = mkAdv "hypnotically" ;
-lin erotically_Adv = mkAdv "erotically" ;
-lin neurotically_Adv = mkAdv "neurotically" ;
-lin asymptotically_Adv = mkAdv "asymptotically" ;
-lin quixotically_Adv = mkAdv "quixotically" ;
-lin synoptically_Adv = mkAdv "synoptically" ;
-lin cryptically_Adv = mkAdv "cryptically" ;
-lin bombastically_Adv = mkAdv "bombastically" ;
-lin sarcastically_Adv = mkAdv "sarcastically" ;
-lin stochastically_Adv = mkAdv "stochastically" ;
-lin unenthusiastically_Adv = mkAdv "unenthusiastically" ;
-lin scholastically_Adv = mkAdv "scholastically" ;
-lin plastically_Adv = mkAdv "plastically" ;
-lin drastically_Adv = mkAdv "drastically" ;
-lin fantastically_Adv = mkAdv "fantastically" ;
-lin majestically_Adv = mkAdv "majestically" ;
-lin domestically_Adv = mkAdv "domestically" ;
-lin pacifistically_Adv = mkAdv "pacifistically" ;
-lin synergistically_Adv = mkAdv "synergistically" ;
-lin masochistically_Adv = mkAdv "masochistically" ;
-lin realistically_Adv = mkAdv "realistically" ;
-lin materialistically_Adv = mkAdv "materialistically" ;
-lin journalistically_Adv = mkAdv "journalistically" ;
-lin individualistically_Adv = mkAdv "individualistically" ;
-lin probabilistically_Adv = mkAdv "probabilistically" ;
-lin stylistically_Adv = mkAdv "stylistically" ;
-lin euphemistically_Adv = mkAdv "euphemistically" ;
-lin pessimistically_Adv = mkAdv "pessimistically" ;
-lin optimistically_Adv = mkAdv "optimistically" ;
-lin mechanistically_Adv = mkAdv "mechanistically" ;
-lin antagonistically_Adv = mkAdv "antagonistically" ;
-lin anachronistically_Adv = mkAdv "anachronistically" ;
-lin characteristically_Adv = mkAdv "characteristically" ;
-lin uncharacteristically_Adv = mkAdv "uncharacteristically" ; -- compound characteristically_Adv ;
-lin voyeuristically_Adv = mkAdv "voyeuristically" ;
-lin egotistically_Adv = mkAdv "egotistically" ;
-lin artistically_Adv = mkAdv "artistically" ;
-lin linguistically_Adv = mkAdv "linguistically" ;
-lin sociolinguistically_Adv = mkAdv "sociolinguistically" ; -- compound linguistically_Adv ;
-lin altruistically_Adv = mkAdv "altruistically" ;
-lin relativistically_Adv = mkAdv "relativistically" ;
-lin caustically_Adv = mkAdv "caustically" ;
-lin acoustically_Adv = mkAdv "acoustically" ;
-lin catalytically_Adv = mkAdv "catalytically" ;
-lin severally_Adv = mkAdv "severally" ;
-lin unsentimentally_Adv = mkAdv "unsentimentally" ;
-lin biannually_Adv = mkAdv "biannually" ;
-lin 'willy-nilly_Adv' = mkAdv "willy-nilly" ;
-lin wholly_Adv = mkAdv "wholly" ;
-lin jolly_Adv = mkAdv "jolly" ;
-lin skillfully_Adv = mkAdv "skillfully" ;
-lin unmanfully_Adv = mkAdv "unmanfully" ;
-lin only_Adv = mkAdv "only" ;
-lin haply_Adv = mkAdv "haply" ;
-lin multiply_Adv = mkAdv "multiply" ;
-lin early_Adv = mkAdv "early" ;
-lin yearly_Adv = mkAdv "yearly" ; -- notcompound early_Adv ;
-lin 'half-yearly_Adv' = mkAdv "half-yearly" ; -- compound early_Adv ;
-lin brotherly_Adv = mkAdv "brotherly" ;
-lin northerly_Adv = mkAdv "northerly" ;
-lin southerly_Adv = mkAdv "southerly" ;
-lin quarterly_Adv = mkAdv "quarterly" ;
-lin easterly_Adv = mkAdv "easterly" ;
-lin westerly_Adv = mkAdv "westerly" ;
-lin overly_Adv = mkAdv "overly" ;
-lin hourly_Adv = mkAdv "hourly" ;
-lin 'half-hourly_Adv' = mkAdv "half-hourly" ; -- compound hourly_Adv ;
-lin curvaceously_Adv = mkAdv "curvaceously" ;
-lin selfconsciously_Adv = mkAdv "selfconsciously" ;
-lin unchivalrously_Adv = mkAdv "unchivalrously" ;
-lin subtly_Adv = mkAdv "subtly" ;
-lin nightly_Adv = mkAdv "nightly" ;
-lin fortnightly_Adv = mkAdv "fortnightly" ; -- compound nightly_Adv ;
-lin gently_Adv = mkAdv "gently" ;
-lin ineloquently_Adv = mkAdv "ineloquently" ;
-lin partly_Adv = mkAdv "partly" ;
-lin beastly_Adv = mkAdv "beastly" ;
-lin mostly_Adv = mkAdv "mostly" ;
-lin unduly_Adv = mkAdv "unduly" ;
-lin untruly_Adv = mkAdv "untruly" ;
-lin grayly_Adv = mkAdv "grayly" ;
-lin shyly_Adv = mkAdv "shyly" ;
-lin coyly_Adv = mkAdv "coyly" ;
-lin wryly_Adv = mkAdv "wryly" ;
-lin any_Adv = mkAdv "any" ;
-lin upcountry_Adv = mkAdv "upcountry" ;
-lin crosscountry_Adv = mkAdv "crosscountry" ;
-lin awry_Adv = mkAdv "awry" ;
-lin easy_Adv = mkAdv "easy" ;
-lin mighty_Adv = mkAdv "mighty" ;
-lin plenty_Adv = mkAdv "plenty" ;
-lin heavy_Adv = mkAdv "heavy" ;
-lin 'topsy-turvy_Adv' = mkAdv "topsy-turvy" ;
-lin DNA_N = mkN "DNA" "DNAs" ;
-lin dscDNA_N = mkN "dscDNA" "dscDNAs" ; -- notcompound DNA_N ;
-lin WC_N = mkN "WC" "WCs" ;
-lin GCSE_N = mkN "GCSE" "GCSEs" ;
-lin pH_N = mkN "pH" "pHs" ;
-lin DJ_N = mkN "DJ" "DJs" ;
-lin UFO_N = mkN "UFO" "UFO's" ;
-lin OAP_N = mkN "OAP" "OAP's" ;
-lin GNP_N = mkN "GNP" "GNPs" ;
-lin IOU_N = mkN "IOU" "IOUs" ;
-lin TV_N = mkN "TV" "TVs" ;
-lin pica_N = mkN "pica" "pica" ;
-lin kwacha_N = mkN "kwacha" "kwacha" ;
-lin apocrypha_N = mkN "apocrypha" "apocrypha" ;
-lin tuna_N = mkN "tuna" "tuna" ;
-lin data_N = mkN "data" "data" ;
-lin 'lingua franca_N' = mkN "lingua franca" "lingua francae" ;
-lin trachea_N = mkN "trachea" "tracheae" ;
-lin 'sol-fa_N' = mkN "sol-fa" "sol-fae" ;
-lin alga_N = mkN "alga" "algae" ;
-lin tibia_N = mkN "tibia" "tibiae" ;
-lin 'via media_N' = mkN "via media" "via mediae" ;
-lin la_N = mkN "la" "lae" ;
-lin 'pax romana_N' = mkN "pax romana" "pax romanae" ;
-lin ulna_N = mkN "ulna" "ulnae" ;
-lin alumna_N = mkN "alumna" "alumnae" ;
-lin antenna_N = mkN "antenna" "antennae" ;
-lin krona_N = mkN "krona" "kronae" ;
-lin vertebra_N = mkN "vertebra" "vertebrae" ;
-lin 'ne plus ultra_N' = mkN "ne plus ultra" "ne plus ultrae" ;
-lin 'persona grata_N' = mkN "persona grata" "persona gratae" ;
-lin 'persona non grata_N' = mkN "persona non grata" "persona non gratae" ;
-lin larva_N = mkN "larva" "larvae" ;
-lin 'v and a_N' = mkN "v and a" "v and as" ;
-lin aa_N = mkN "aa" "aas" ;
-lin baa_N = mkN "baa" "baas" ; -- notcompound aa_N ;
-lin mukataa_N = mkN "mukataa" "mukataas" ; -- compound aa_N ;
-lin ba_N = mkN "ba" "bas" ;
-lin aba_N = mkN "aba" "abas" ; -- notcompound ba_N ;
-lin baba_N = mkN "baba" "babas" ; -- compound ba_N ;
-lin jaboticaba_N = mkN "jaboticaba" "jaboticabas" ; -- compound ba_N ;
-lin indaba_N = mkN "indaba" "indabas" ; -- compound ba_N ;
-lin calaba_N = mkN "calaba" "calabas" ; -- compound ba_N ;
-lin jellaba_N = mkN "jellaba" "jellabas" ; -- compound ba_N ;
-lin draba_N = mkN "draba" "drabas" ; -- compound ba_N ;
-lin casaba_N = mkN "casaba" "casabas" ; -- compound ba_N ;
-lin mastaba_N = mkN "mastaba" "mastabas" ; -- compound ba_N ;
-lin gleba_N = mkN "gleba" "glebas" ; -- compound ba_N ;
-lin ameba_N = mkN "ameba" "amebas" ; -- compound ba_N ;
-lin endameba_N = mkN "endameba" "endamebas" ; -- compound ba_N ;
-lin amoeba_N = mkN "amoeba" "amoebas" ; -- compound ba_N ;
-lin peba_N = mkN "peba" "pebas" ; -- compound ba_N ;
-lin iba_N = mkN "iba" "ibas" ; -- notcompound ba_N ;
-lin copaiba_N = mkN "copaiba" "copaibas" ; -- compound ba_N ;
-lin arariba_N = mkN "arariba" "araribas" ; -- compound ba_N ;
-lin mamba_N = mkN "mamba" "mambas" ; -- compound ba_N ;
-lin samba_N = mkN "samba" "sambas" ; -- compound ba_N ;
-lin marimba_N = mkN "marimba" "marimbas" ; -- compound ba_N ;
-lin macumba_N = mkN "macumba" "macumbas" ; -- compound ba_N ;
-lin rumba_N = mkN "rumba" "rumbas" ; -- compound ba_N ;
-lin cordoba_N = mkN "cordoba" "cordobas" ; -- compound ba_N ;
-lin araroba_N = mkN "araroba" "ararobas" ; -- compound ba_N ;
-lin coscoroba_N = mkN "coscoroba" "coscorobas" ; -- compound ba_N ;
-lin arroba_N = mkN "arroba" "arrobas" ; -- compound ba_N ;
-lin algarroba_N = mkN "algarroba" "algarrobas" ; -- compound ba_N ;
-lin carnauba_N = mkN "carnauba" "carnaubas" ; -- compound ba_N ;
-lin tuba_N = mkN "tuba" "tubas" ; -- compound ba_N ;
-lin abaca_N = mkN "abaca" "abacas" ;
-lin chachalaca_N = mkN "chachalaca" "chachalacas" ;
-lin portulaca_N = mkN "portulaca" "portulacas" ;
-lin cloaca_N = mkN "cloaca" "cloacas" ;
-lin paca_N = mkN "paca" "pacas" ;
-lin alpaca_N = mkN "alpaca" "alpacas" ; -- compound paca_N ;
-lin maraca_N = mkN "maraca" "maracas" ;
-lin pataca_N = mkN "pataca" "patacas" ;
-lin asarabacca_N = mkN "asarabacca" "asarabaccas" ;
-lin malacca_N = mkN "malacca" "malaccas" ;
-lin yacca_N = mkN "yacca" "yaccas" ;
-lin mecca_N = mkN "mecca" "meccas" ;
-lin felucca_N = mkN "felucca" "feluccas" ;
-lin yucca_N = mkN "yucca" "yuccas" ;
-lin theca_N = mkN "theca" "thecas" ;
-lin bibliotheca_N = mkN "bibliotheca" "bibliothecas" ; -- compound theca_N ;
-lin areca_N = mkN "areca" "arecas" ;
-lin angelica_N = mkN "angelica" "angelicas" ;
-lin silica_N = mkN "silica" "silicas" ;
-lin basilica_N = mkN "basilica" "basilicas" ; -- compound silica_N ;
-lin majolica_N = mkN "majolica" "majolicas" ;
-lin replica_N = mkN "replica" "replicas" ;
-lin mica_N = mkN "mica" "micas" ;
-lin formica_N = mkN "formica" "formicas" ; -- compound mica_N ;
-lin harmonica_N = mkN "harmonica" "harmonicas" ;
-lin japonica_N = mkN "japonica" "japonicas" ;
-lin veronica_N = mkN "veronica" "veronicas" ;
-lin arnica_N = mkN "arnica" "arnicas" ;
-lin erica_N = mkN "erica" "ericas" ;
-lin esoterica_N = mkN "esoterica" "esotericas" ; -- compound erica_N ;
-lin lorica_N = mkN "lorica" "loricas" ;
-lin sciatica_N = mkN "sciatica" "sciaticas" ;
-lin hepatica_N = mkN "hepatica" "hepaticas" ;
-lin linguica_N = mkN "linguica" "linguicas" ;
-lin ymca_N = mkN "ymca" "ymcas" ;
-lin oca_N = mkN "oca" "ocas" ;
-lin coca_N = mkN "coca" "cocas" ; -- notcompound oca_N ;
-lin tapioca_N = mkN "tapioca" "tapiocas" ; -- compound oca_N ;
-lin carioca_N = mkN "carioca" "cariocas" ; -- compound oca_N ;
-lin rspca_N = mkN "rspca" "rspcas" ;
-lin anasarca_N = mkN "anasarca" "anasarcas" ;
-lin marasca_N = mkN "marasca" "marascas" ;
-lin albuca_N = mkN "albuca" "albucas" ;
-lin sambuca_N = mkN "sambuca" "sambucas" ;
-lin noctiluca_N = mkN "noctiluca" "noctilucas" ;
-lin verruca_N = mkN "verruca" "verrucas" ;
-lin ywca_N = mkN "ywca" "ywcas" ;
-lin cicada_N = mkN "cicada" "cicadas" ;
-lin dada_N = mkN "dada" "dadas" ;
-lin intifada_N = mkN "intifada" "intifadas" ;
-lin enchilada_N = mkN "enchilada" "enchiladas" ;
-lin novillada_N = mkN "novillada" "novilladas" ;
-lin armada_N = mkN "armada" "armadas" ;
-lin autostrada_N = mkN "autostrada" "autostradas" ;
-lin tostada_N = mkN "tostada" "tostadas" ;
-lin lambda_N = mkN "lambda" "lambdas" ;
-lin andromeda_N = mkN "andromeda" "andromedas" ;
-lin reseda_N = mkN "reseda" "resedas" ;
-lin candida_N = mkN "candida" "candidas" ;
-lin asafetida_N = mkN "asafetida" "asafetidas" ;
-lin gravida_N = mkN "gravida" "gravidas" ;
-lin secundigravida_N = mkN "secundigravida" "secundigravidas" ; -- compound gravida_N ;
-lin primigravida_N = mkN "primigravida" "primigravidas" ; -- compound gravida_N ;
-lin tertigravida_N = mkN "tertigravida" "tertigravidas" ; -- compound gravida_N ;
-lin propaganda_N = mkN "propaganda" "propagandas" ;
-lin allamanda_N = mkN "allamanda" "allamandas" ;
-lin panda_N = mkN "panda" "pandas" ;
-lin veranda_N = mkN "veranda" "verandas" ;
-lin vanda_N = mkN "vanda" "vandas" ;
-lin agenda_N = mkN "agenda" "agendas" ;
-lin corrigenda_N = mkN "corrigenda" "corrigendas" ;
-lin hacienda_N = mkN "hacienda" "haciendas" ;
-lin anaconda_N = mkN "anaconda" "anacondas" ;
-lin rotunda_N = mkN "rotunda" "rotundas" ;
-lin svoboda_N = mkN "svoboda" "svobodas" ;
-lin coda_N = mkN "coda" "codas" ;
-lin pagoda_N = mkN "pagoda" "pagodas" ;
-lin soda_N = mkN "soda" "sodas" ;
-lin monarda_N = mkN "monarda" "monardas" ;
-lin cauda_N = mkN "cauda" "caudas" ;
-lin barracuda_N = mkN "barracuda" "barracudas" ;
-lin remuda_N = mkN "remuda" "remudas" ;
-lin brodiaea_N = mkN "brodiaea" "brodiaeas" ;
-lin panacea_N = mkN "panacea" "panaceas" ;
-lin idea_N = mkN "idea" "ideas" ;
-lin hydrangea_N = mkN "hydrangea" "hydrangeas" ;
-lin morphea_N = mkN "morphea" "morpheas" ;
-lin rhea_N = mkN "rhea" "rheas" ;
-lin diarrhea_N = mkN "diarrhea" "diarrheas" ; -- compound rhea_N ;
-lin seborrhea_N = mkN "seborrhea" "seborrheas" ; -- compound rhea_N ;
-lin logorrhea_N = mkN "logorrhea" "logorrheas" ; -- compound rhea_N ;
-lin leukorrhea_N = mkN "leukorrhea" "leukorrheas" ; -- compound rhea_N ;
-lin menorrhea_N = mkN "menorrhea" "menorrheas" ; -- compound rhea_N ;
-lin amenorrhea_N = mkN "amenorrhea" "amenorrheas" ; -- compound rhea_N ;
-lin oligomenorrhea_N = mkN "oligomenorrhea" "oligomenorrheas" ; -- compound rhea_N ;
-lin dysmenorrhea_N = mkN "dysmenorrhea" "dysmenorrheas" ; -- compound rhea_N ;
-lin rhinorrhea_N = mkN "rhinorrhea" "rhinorrheas" ; -- compound rhea_N ;
-lin gonorrhea_N = mkN "gonorrhea" "gonorrheas" ; -- compound rhea_N ;
-lin steatorrhea_N = mkN "steatorrhea" "steatorrheas" ; -- compound rhea_N ;
-lin otorrhea_N = mkN "otorrhea" "otorrheas" ; -- compound rhea_N ;
-lin pyorrhea_N = mkN "pyorrhea" "pyorrheas" ; -- compound rhea_N ;
-lin althea_N = mkN "althea" "altheas" ;
-lin kea_N = mkN "kea" "keas" ;
-lin lea_N = mkN "lea" "leas" ;
-lin galea_N = mkN "galea" "galeas" ; -- compound lea_N ;
-lin azalea_N = mkN "azalea" "azaleas" ; -- compound lea_N ;
-lin flea_N = mkN "flea" "fleas" ; -- notcompound lea_N ;
-lin cochlea_N = mkN "cochlea" "cochleas" ; -- compound lea_N ;
-lin achillea_N = mkN "achillea" "achilleas" ; -- compound lea_N ;
-lin grevillea_N = mkN "grevillea" "grevilleas" ; -- compound lea_N ;
-lin bougainvillea_N = mkN "bougainvillea" "bougainvilleas" ; -- compound lea_N ;
-lin plea_N = mkN "plea" "pleas" ; -- notcompound lea_N ;
-lin counterplea_N = mkN "counterplea" "counterpleas" ; -- compound lea_N ;
-lin aculea_N = mkN "aculea" "aculeas" ; -- compound lea_N ;
-lin misocainea_N = mkN "misocainea" "misocaineas" ;
-lin albuginea_N = mkN "albuginea" "albugineas" ;
-lin tinea_N = mkN "tinea" "tineas" ;
-lin guinea_N = mkN "guinea" "guineas" ;
-lin columnea_N = mkN "columnea" "columneas" ;
-lin apnea_N = mkN "apnea" "apneas" ;
-lin orthopnea_N = mkN "orthopnea" "orthopneas" ;
-lin hypopnea_N = mkN "hypopnea" "hypopneas" ;
-lin hyperpnea_N = mkN "hyperpnea" "hyperpneas" ;
-lin dyspnea_N = mkN "dyspnea" "dyspneas" ;
-lin eupnea_N = mkN "eupnea" "eupneas" ;
-lin cornea_N = mkN "cornea" "corneas" ;
-lin diarrhoea_N = mkN "diarrhoea" "diarrhoeas" ;
-lin gonorrhoea_N = mkN "gonorrhoea" "gonorrhoeas" ;
-lin pyorrhoea_N = mkN "pyorrhoea" "pyorrhoeas" ;
-lin toea_N = mkN "toea" "toeas" ;
-lin pea_N = mkN "pea" "peas" ;
-lin chickpea_N = mkN "chickpea" "chickpeas" ; -- compound pea_N ;
-lin stanhopea_N = mkN "stanhopea" "stanhopeas" ; -- compound pea_N ;
-lin cowpea_N = mkN "cowpea" "cowpeas" ; -- compound pea_N ;
-lin area_N = mkN "area" "areas" ;
-lin 'catchment-area_N' = mkN "catchment-area" "catchment-areas" ; -- compound area_N ;
-lin aperea_N = mkN "aperea" "apereas" ;
-lin spirea_N = mkN "spirea" "spireas" ;
-lin acorea_N = mkN "acorea" "acoreas" ;
-lin chorea_N = mkN "chorea" "choreas" ;
-lin orthochorea_N = mkN "orthochorea" "orthochoreas" ; -- compound chorea_N ;
-lin urea_N = mkN "urea" "ureas" ;
-lin sulfonylurea_N = mkN "sulfonylurea" "sulfonylureas" ; -- compound urea_N ;
-lin sea_N = mkN "sea" "seas" ;
-lin genlisea_N = mkN "genlisea" "genliseas" ; -- compound sea_N ;
-lin nausea_N = mkN "nausea" "nauseas" ; -- compound sea_N ;
-lin tea_N = mkN "tea" "teas" ;
-lin kahikatea_N = mkN "kahikatea" "kahikateas" ; -- compound tea_N ;
-lin protea_N = mkN "protea" "proteas" ; -- compound tea_N ;
-lin pahautea_N = mkN "pahautea" "pahauteas" ; -- compound tea_N ;
-lin fovea_N = mkN "fovea" "foveas" ;
-lin parafovea_N = mkN "parafovea" "parafoveas" ; -- compound fovea_N ;
-lin hovea_N = mkN "hovea" "hoveas" ;
-lin uvea_N = mkN "uvea" "uveas" ;
-lin yea_N = mkN "yea" "yeas" ;
-lin fa_N = mkN "fa" "fas" ;
-lin 'tonic sol-fa_N' = mkN "tonic sol-fa" "tonic sol-fas" ; -- compound fa_N ;
-lin luffa_N = mkN "luffa" "luffas" ; -- compound fa_N ;
-lin alfalfa_N = mkN "alfalfa" "alfalfas" ; -- compound fa_N ;
-lin loofa_N = mkN "loofa" "loofas" ; -- compound fa_N ;
-lin sofa_N = mkN "sofa" "sofas" ; -- compound fa_N ;
-lin chufa_N = mkN "chufa" "chufas" ; -- compound fa_N ;
-lin catalufa_N = mkN "catalufa" "catalufas" ; -- compound fa_N ;
-lin tufa_N = mkN "tufa" "tufas" ; -- compound fa_N ;
-lin rutabaga_N = mkN "rutabaga" "rutabagas" ;
-lin saga_N = mkN "saga" "sagas" ;
-lin bodega_N = mkN "bodega" "bodegas" ;
-lin omega_N = mkN "omega" "omegas" ;
-lin senega_N = mkN "senega" "senegas" ;
-lin dagga_N = mkN "dagga" "daggas" ;
-lin quagga_N = mkN "quagga" "quaggas" ;
-lin saiga_N = mkN "saiga" "saigas" ;
-lin pa'anga_N = mkN "pa'anga" "pa'angas" ;
-lin panga_N = mkN "panga" "pangas" ;
-lin tanga_N = mkN "tanga" "tangas" ;
-lin inga_N = mkN "inga" "ingas" ;
-lin syringa_N = mkN "syringa" "syringas" ; -- compound inga_N ;
-lin cotinga_N = mkN "cotinga" "cotingas" ; -- compound inga_N ;
-lin conga_N = mkN "conga" "congas" ;
-lin chunga_N = mkN "chunga" "chungas" ;
-lin toga_N = mkN "toga" "togas" ;
-lin yoga_N = mkN "yoga" "yogas" ;
-lin peshmerga_N = mkN "peshmerga" "peshmergas" ;
-lin virga_N = mkN "virga" "virgas" ;
-lin massasauga_N = mkN "massasauga" "massasaugas" ;
-lin beluga_N = mkN "beluga" "belugas" ;
-lin ruga_N = mkN "ruga" "rugas" ;
-lin haha_N = mkN "haha" "hahas" ;
-lin brouhaha_N = mkN "brouhaha" "brouhahas" ; -- compound haha_N ;
-lin tanekaha_N = mkN "tanekaha" "tanekahas" ;
-lin viscacha_N = mkN "viscacha" "viscachas" ;
-lin dacha_N = mkN "dacha" "dachas" ;
-lin carancha_N = mkN "carancha" "caranchas" ;
-lin concha_N = mkN "concha" "conchas" ;
-lin mocha_N = mkN "mocha" "mochas" ;
-lin mishpocha_N = mkN "mishpocha" "mishpochas" ;
-lin 'gutta-percha_N' = mkN "gutta-percha" "gutta-perchas" ;
-lin gurkha_N = mkN "gurkha" "gurkhas" ;
-lin piranha_N = mkN "piranha" "piranhas" ;
-lin aloha_N = mkN "aloha" "alohas" ;
-lin agrapha_N = mkN "agrapha" "agraphas" ;
-lin alpha_N = mkN "alpha" "alphas" ;
-lin sulpha_N = mkN "sulpha" "sulphas" ;
-lin amorpha_N = mkN "amorpha" "amorphas" ;
-lin hypha_N = mkN "hypha" "hyphas" ;
-lin kasha_N = mkN "kasha" "kashas" ;
-lin pasha_N = mkN "pasha" "pashas" ;
-lin geisha_N = mkN "geisha" "geishas" ;
-lin jinrikisha_N = mkN "jinrikisha" "jinrikishas" ;
-lin naphtha_N = mkN "naphtha" "naphthas" ;
-lin maltha_N = mkN "maltha" "malthas" ;
-lin coryphantha_N = mkN "coryphantha" "coryphanthas" ;
-lin yha_N = mkN "yha" "yhas" ;
-lin amphibia_N = mkN "amphibia" "amphibias" ;
-lin cobia_N = mkN "cobia" "cobias" ;
-lin phobia_N = mkN "phobia" "phobias" ;
-lin triskaidekaphobia_N = mkN "triskaidekaphobia" "triskaidekaphobias" ; -- compound phobia_N ;
-lin agoraphobia_N = mkN "agoraphobia" "agoraphobias" ; -- compound phobia_N ;
-lin astraphobia_N = mkN "astraphobia" "astraphobias" ; -- compound phobia_N ;
-lin aquaphobia_N = mkN "aquaphobia" "aquaphobias" ; -- compound phobia_N ;
-lin taphephobia_N = mkN "taphephobia" "taphephobias" ; -- compound phobia_N ;
-lin phobophobia_N = mkN "phobophobia" "phobophobias" ; -- compound phobia_N ;
-lin lepidophobia_N = mkN "lepidophobia" "lepidophobias" ; -- compound phobia_N ;
-lin neophobia_N = mkN "neophobia" "neophobias" ; -- compound phobia_N ;
-lin algophobia_N = mkN "algophobia" "algophobias" ; -- compound phobia_N ;
-lin anglophobia_N = mkN "anglophobia" "anglophobias" ; -- compound phobia_N ;
-lin homophobia_N = mkN "homophobia" "homophobias" ; -- compound phobia_N ;
-lin entomophobia_N = mkN "entomophobia" "entomophobias" ; -- compound phobia_N ;
-lin satanophobia_N = mkN "satanophobia" "satanophobias" ; -- compound phobia_N ;
-lin xenophobia_N = mkN "xenophobia" "xenophobias" ; -- compound phobia_N ;
-lin arachnophobia_N = mkN "arachnophobia" "arachnophobias" ; -- compound phobia_N ;
-lin technophobia_N = mkN "technophobia" "technophobias" ; -- compound phobia_N ;
-lin phonophobia_N = mkN "phonophobia" "phonophobias" ; -- compound phobia_N ;
-lin hypnophobia_N = mkN "hypnophobia" "hypnophobias" ; -- compound phobia_N ;
-lin cynophobia_N = mkN "cynophobia" "cynophobias" ; -- compound phobia_N ;
-lin gynophobia_N = mkN "gynophobia" "gynophobias" ; -- compound phobia_N ;
-lin zoophobia_N = mkN "zoophobia" "zoophobias" ; -- compound phobia_N ;
-lin acarophobia_N = mkN "acarophobia" "acarophobias" ; -- compound phobia_N ;
-lin acrophobia_N = mkN "acrophobia" "acrophobias" ; -- compound phobia_N ;
-lin androphobia_N = mkN "androphobia" "androphobias" ; -- compound phobia_N ;
-lin hydrophobia_N = mkN "hydrophobia" "hydrophobias" ; -- compound phobia_N ;
-lin claustrophobia_N = mkN "claustrophobia" "claustrophobias" ; -- compound phobia_N ;
-lin ailurophobia_N = mkN "ailurophobia" "ailurophobias" ; -- compound phobia_N ;
-lin pyrophobia_N = mkN "pyrophobia" "pyrophobias" ; -- compound phobia_N ;
-lin musophobia_N = mkN "musophobia" "musophobias" ; -- compound phobia_N ;
-lin mysophobia_N = mkN "mysophobia" "mysophobias" ; -- compound phobia_N ;
-lin automysophobia_N = mkN "automysophobia" "automysophobias" ; -- compound phobia_N ;
-lin traumatophobia_N = mkN "traumatophobia" "traumatophobias" ; -- compound phobia_N ;
-lin thanatophobia_N = mkN "thanatophobia" "thanatophobias" ; -- compound phobia_N ;
-lin nyctophobia_N = mkN "nyctophobia" "nyctophobias" ; -- compound phobia_N ;
-lin photophobia_N = mkN "photophobia" "photophobias" ; -- compound phobia_N ;
-lin cryophobia_N = mkN "cryophobia" "cryophobias" ; -- compound phobia_N ;
-lin cyberphobia_N = mkN "cyberphobia" "cyberphobias" ; -- compound phobia_N ;
-lin suburbia_N = mkN "suburbia" "suburbias" ;
-lin exurbia_N = mkN "exurbia" "exurbias" ;
-lin cia_N = mkN "cia" "cias" ;
-lin acacia_N = mkN "acacia" "acacias" ; -- compound cia_N ;
-lin facia_N = mkN "facia" "facias" ; -- compound cia_N ;
-lin malacia_N = mkN "malacia" "malacias" ; -- compound cia_N ;
-lin osteomalacia_N = mkN "osteomalacia" "osteomalacias" ; -- compound cia_N ;
-lin keratomalacia_N = mkN "keratomalacia" "keratomalacias" ; -- compound cia_N ;
-lin breccia_N = mkN "breccia" "breccias" ; -- compound cia_N ;
-lin alopecia_N = mkN "alopecia" "alopecias" ; -- compound cia_N ;
-lin fascia_N = mkN "fascia" "fascias" ; -- compound cia_N ;
-lin episcia_N = mkN "episcia" "episcias" ; -- compound cia_N ;
-lin cyclopaedia_N = mkN "cyclopaedia" "cyclopaedias" ;
-lin encyclopaedia_N = mkN "encyclopaedia" "encyclopaedias" ; -- compound cyclopaedia_N ;
-lin media_N = mkN "media" "medias" ;
-lin multimedia_N = mkN "multimedia" "multimedias" ; -- compound media_N ;
-lin hypermedia_N = mkN "hypermedia" "hypermedias" ; -- compound media_N ;
-lin cypripedia_N = mkN "cypripedia" "cypripedias" ;
-lin encyclopedia_N = mkN "encyclopedia" "encyclopedias" ;
-lin misopedia_N = mkN "misopedia" "misopedias" ;
-lin gliricidia_N = mkN "gliricidia" "gliricidias" ;
-lin doodia_N = mkN "doodia" "doodias" ;
-lin cardia_N = mkN "cardia" "cardias" ;
-lin acardia_N = mkN "acardia" "acardias" ; -- notcompound cardia_N ;
-lin epicardia_N = mkN "epicardia" "epicardias" ; -- compound cardia_N ;
-lin dextrocardia_N = mkN "dextrocardia" "dextrocardias" ; -- compound cardia_N ;
-lin bradycardia_N = mkN "bradycardia" "bradycardias" ; -- compound cardia_N ;
-lin tachycardia_N = mkN "tachycardia" "tachycardias" ; -- compound cardia_N ;
-lin giardia_N = mkN "giardia" "giardias" ;
-lin gaillardia_N = mkN "gaillardia" "gaillardias" ;
-lin gerardia_N = mkN "gerardia" "gerardias" ;
-lin chlamydia_N = mkN "chlamydia" "chlamydias" ;
-lin pharmacopoeia_N = mkN "pharmacopoeia" "pharmacopoeias" ;
-lin onomatopoeia_N = mkN "onomatopoeia" "onomatopoeias" ;
-lin peripeteia_N = mkN "peripeteia" "peripeteias" ;
-lin mafia_N = mkN "mafia" "mafias" ;
-lin ratafia_N = mkN "ratafia" "ratafias" ;
-lin raffia_N = mkN "raffia" "raffias" ;
-lin rauwolfia_N = mkN "rauwolfia" "rauwolfias" ;
-lin kniphofia_N = mkN "kniphofia" "kniphofias" ;
-lin suksdorfia_N = mkN "suksdorfia" "suksdorfias" ;
-lin aphagia_N = mkN "aphagia" "aphagias" ;
-lin omophagia_N = mkN "omophagia" "omophagias" ;
-lin odynophagia_N = mkN "odynophagia" "odynophagias" ;
-lin necrophagia_N = mkN "necrophagia" "necrophagias" ;
-lin aerophagia_N = mkN "aerophagia" "aerophagias" ;
-lin dysphagia_N = mkN "dysphagia" "dysphagias" ;
-lin ulemorrhagia_N = mkN "ulemorrhagia" "ulemorrhagias" ;
-lin menorrhagia_N = mkN "menorrhagia" "menorrhagias" ;
-lin metrorrhagia_N = mkN "metrorrhagia" "metrorrhagias" ;
-lin paraplegia_N = mkN "paraplegia" "paraplegias" ;
-lin diplegia_N = mkN "diplegia" "diplegias" ;
-lin hemiplegia_N = mkN "hemiplegia" "hemiplegias" ;
-lin quadriplegia_N = mkN "quadriplegia" "quadriplegias" ;
-lin ophthalmoplegia_N = mkN "ophthalmoplegia" "ophthalmoplegias" ;
-lin monoplegia_N = mkN "monoplegia" "monoplegias" ;
-lin cystoplegia_N = mkN "cystoplegia" "cystoplegias" ;
-lin physostegia_N = mkN "physostegia" "physostegias" ;
-lin loggia_N = mkN "loggia" "loggias" ;
-lin krigia_N = mkN "krigia" "krigias" ;
-lin orchidalgia_N = mkN "orchidalgia" "orchidalgias" ;
-lin podalgia_N = mkN "podalgia" "podalgias" ;
-lin ulalgia_N = mkN "ulalgia" "ulalgias" ;
-lin meralgia_N = mkN "meralgia" "meralgias" ;
-lin nephralgia_N = mkN "nephralgia" "nephralgias" ;
-lin arthralgia_N = mkN "arthralgia" "arthralgias" ;
-lin chiralgia_N = mkN "chiralgia" "chiralgias" ;
-lin metralgia_N = mkN "metralgia" "metralgias" ;
-lin neuralgia_N = mkN "neuralgia" "neuralgias" ;
-lin glossalgia_N = mkN "glossalgia" "glossalgias" ;
-lin causalgia_N = mkN "causalgia" "causalgias" ;
-lin keratalgia_N = mkN "keratalgia" "keratalgias" ;
-lin proctalgia_N = mkN "proctalgia" "proctalgias" ;
-lin aerodontalgia_N = mkN "aerodontalgia" "aerodontalgias" ;
-lin photalgia_N = mkN "photalgia" "photalgias" ;
-lin mastalgia_N = mkN "mastalgia" "mastalgias" ;
-lin nostalgia_N = mkN "nostalgia" "nostalgias" ;
-lin myalgia_N = mkN "myalgia" "myalgias" ;
-lin herpangia_N = mkN "herpangia" "herpangias" ;
-lin dyslogia_N = mkN "dyslogia" "dyslogias" ;
-lin difflugia_N = mkN "difflugia" "difflugias" ;
-lin steatopygia_N = mkN "steatopygia" "steatopygias" ;
-lin batrachomyomachia_N = mkN "batrachomyomachia" "batrachomyomachias" ;
-lin abrachia_N = mkN "abrachia" "abrachias" ;
-lin microbrachia_N = mkN "microbrachia" "microbrachias" ;
-lin synechia_N = mkN "synechia" "synechias" ;
-lin petechia_N = mkN "petechia" "petechias" ;
-lin escherichia_N = mkN "escherichia" "escherichias" ;
-lin lochia_N = mkN "lochia" "lochias" ;
-lin welwitschia_N = mkN "welwitschia" "welwitschias" ;
-lin fuschia_N = mkN "fuschia" "fuschias" ;
-lin paronychia_N = mkN "paronychia" "paronychias" ;
-lin agraphia_N = mkN "agraphia" "agraphias" ;
-lin dysgraphia_N = mkN "dysgraphia" "dysgraphias" ;
-lin dysaphia_N = mkN "dysaphia" "dysaphias" ;
-lin ulatrophia_N = mkN "ulatrophia" "ulatrophias" ;
-lin amyotrophia_N = mkN "amyotrophia" "amyotrophias" ;
-lin morphia_N = mkN "morphia" "morphias" ;
-lin anacoluthia_N = mkN "anacoluthia" "anacoluthias" ;
-lin forsythia_N = mkN "forsythia" "forsythias" ;
-lin aphakia_N = mkN "aphakia" "aphakias" ;
-lin epikeratophakia_N = mkN "epikeratophakia" "epikeratophakias" ;
-lin latakia_N = mkN "latakia" "latakias" ;
-lin vedalia_N = mkN "vedalia" "vedalias" ;
-lin regalia_N = mkN "regalia" "regalias" ;
-lin acephalia_N = mkN "acephalia" "acephalias" ;
-lin alalia_N = mkN "alalia" "alalias" ;
-lin palilalia_N = mkN "palilalia" "palilalias" ;
-lin echolalia_N = mkN "echolalia" "echolalias" ;
-lin coprolalia_N = mkN "coprolalia" "coprolalias" ;
-lin glossolalia_N = mkN "glossolalia" "glossolalias" ;
-lin marginalia_N = mkN "marginalia" "marginalias" ;
-lin paraphernalia_N = mkN "paraphernalia" "paraphernalias" ;
-lin saturnalia_N = mkN "saturnalia" "saturnalias" ;
-lin aralia_N = mkN "aralia" "aralias" ;
-lin sobralia_N = mkN "sobralia" "sobralias" ;
-lin penetralia_N = mkN "penetralia" "penetralias" ;
-lin genitalia_N = mkN "genitalia" "genitalias" ;
-lin laelia_N = mkN "laelia" "laelias" ;
-lin abelia_N = mkN "abelia" "abelias" ;
-lin lobelia_N = mkN "lobelia" "lobelias" ;
-lin psychedelia_N = mkN "psychedelia" "psychedelias" ;
-lin amelia_N = mkN "amelia" "amelias" ;
-lin hamelia_N = mkN "hamelia" "hamelias" ; -- notcompound amelia_N ;
-lin phocomelia_N = mkN "phocomelia" "phocomelias" ;
-lin meromelia_N = mkN "meromelia" "meromelias" ;
-lin stapelia_N = mkN "stapelia" "stapelias" ;
-lin borrelia_N = mkN "borrelia" "borrelias" ;
-lin myelatelia_N = mkN "myelatelia" "myelatelias" ;
-lin microglia_N = mkN "microglia" "microglias" ;
-lin oligodendroglia_N = mkN "oligodendroglia" "oligodendroglias" ;
-lin astroglia_N = mkN "astroglia" "astroglias" ;
-lin neuroglia_N = mkN "neuroglia" "neuroglias" ;
-lin dahlia_N = mkN "dahlia" "dahlias" ;
-lin memorabilia_N = mkN "memorabilia" "memorabilias" ;
-lin pachycheilia_N = mkN "pachycheilia" "pachycheilias" ;
-lin paraphilia_N = mkN "paraphilia" "paraphilias" ;
-lin pedophilia_N = mkN "pedophilia" "pedophilias" ;
-lin haemophilia_N = mkN "haemophilia" "haemophilias" ;
-lin hemophilia_N = mkN "hemophilia" "hemophilias" ;
-lin technophilia_N = mkN "technophilia" "technophilias" ;
-lin eosinophilia_N = mkN "eosinophilia" "eosinophilias" ;
-lin zoophilia_N = mkN "zoophilia" "zoophilias" ;
-lin necrophilia_N = mkN "necrophilia" "necrophilias" ;
-lin basophilia_N = mkN "basophilia" "basophilias" ;
-lin mysophilia_N = mkN "mysophilia" "mysophilias" ;
-lin monilia_N = mkN "monilia" "monilias" ;
-lin davallia_N = mkN "davallia" "davallias" ;
-lin masdevallia_N = mkN "masdevallia" "masdevallias" ;
-lin camellia_N = mkN "camellia" "camellias" ;
-lin harpullia_N = mkN "harpullia" "harpullias" ;
-lin acholia_N = mkN "acholia" "acholias" ;
-lin melancholia_N = mkN "melancholia" "melancholias" ;
-lin magnolia_N = mkN "magnolia" "magnolias" ;
-lin abulia_N = mkN "abulia" "abulias" ;
-lin dyscalculia_N = mkN "dyscalculia" "dyscalculias" ;
-lin sterculia_N = mkN "sterculia" "sterculias" ;
-lin achylia_N = mkN "achylia" "achylias" ;
-lin adactylia_N = mkN "adactylia" "adactylias" ;
-lin macadamia_N = mkN "macadamia" "macadamias" ;
-lin adynamia_N = mkN "adynamia" "adynamias" ;
-lin zamia_N = mkN "zamia" "zamias" ;
-lin macrozamia_N = mkN "macrozamia" "macrozamias" ; -- compound zamia_N ;
-lin ceratozamia_N = mkN "ceratozamia" "ceratozamias" ; -- compound zamia_N ;
-lin septicaemia_N = mkN "septicaemia" "septicaemias" ;
-lin leukaemia_N = mkN "leukaemia" "leukaemias" ;
-lin anaemia_N = mkN "anaemia" "anaemias" ;
-lin toxaemia_N = mkN "toxaemia" "toxaemias" ;
-lin septicemia_N = mkN "septicemia" "septicemias" ;
-lin hypocalcemia_N = mkN "hypocalcemia" "hypocalcemias" ;
-lin hypercalcemia_N = mkN "hypercalcemia" "hypercalcemias" ;
-lin hypoglycemia_N = mkN "hypoglycemia" "hypoglycemias" ;
-lin hyperglycemia_N = mkN "hyperglycemia" "hyperglycemias" ;
-lin academia_N = mkN "academia" "academias" ;
-lin acidemia_N = mkN "acidemia" "acidemias" ;
-lin ischemia_N = mkN "ischemia" "ischemias" ;
-lin bohemia_N = mkN "bohemia" "bohemias" ;
-lin polycythemia_N = mkN "polycythemia" "polycythemias" ;
-lin leukemia_N = mkN "leukemia" "leukemias" ;
-lin kalemia_N = mkN "kalemia" "kalemias" ;
-lin alkalemia_N = mkN "alkalemia" "alkalemias" ; -- compound kalemia_N ;
-lin hypokalemia_N = mkN "hypokalemia" "hypokalemias" ; -- compound kalemia_N ;
-lin hyperkalemia_N = mkN "hyperkalemia" "hyperkalemias" ; -- compound kalemia_N ;
-lin apolemia_N = mkN "apolemia" "apolemias" ;
-lin hypercholesterolemia_N = mkN "hypercholesterolemia" "hypercholesterolemias" ;
-lin hypovolemia_N = mkN "hypovolemia" "hypovolemias" ;
-lin hypervolemia_N = mkN "hypervolemia" "hypervolemias" ;
-lin anemia_N = mkN "anemia" "anemias" ;
-lin afibrinogenemia_N = mkN "afibrinogenemia" "afibrinogenemias" ;
-lin carotenemia_N = mkN "carotenemia" "carotenemias" ;
-lin hypothrombinemia_N = mkN "hypothrombinemia" "hypothrombinemias" ;
-lin hemoglobinemia_N = mkN "hemoglobinemia" "hemoglobinemias" ;
-lin hyperbilirubinemia_N = mkN "hyperbilirubinemia" "hyperbilirubinemias" ;
-lin abetalipoproteinemia_N = mkN "abetalipoproteinemia" "abetalipoproteinemias" ;
-lin hypobetalipoproteinemia_N = mkN "hypobetalipoproteinemia" "hypobetalipoproteinemias" ;
-lin hyperbetalipoproteinemia_N = mkN "hyperbetalipoproteinemia" "hyperbetalipoproteinemias" ;
-lin hypolipoproteinemia_N = mkN "hypolipoproteinemia" "hypolipoproteinemias" ;
-lin hyperlipoproteinemia_N = mkN "hyperlipoproteinemia" "hyperlipoproteinemias" ;
-lin hypoproteinemia_N = mkN "hypoproteinemia" "hypoproteinemias" ;
-lin agammaglobulinemia_N = mkN "agammaglobulinemia" "agammaglobulinemias" ;
-lin hypogammaglobulinemia_N = mkN "hypogammaglobulinemia" "hypogammaglobulinemias" ;
-lin analbuminemia_N = mkN "analbuminemia" "analbuminemias" ;
-lin tyrosinemia_N = mkN "tyrosinemia" "tyrosinemias" ;
-lin lysinemia_N = mkN "lysinemia" "lysinemias" ;
-lin ketonemia_N = mkN "ketonemia" "ketonemias" ;
-lin lipemia_N = mkN "lipemia" "lipemias" ;
-lin tularemia_N = mkN "tularemia" "tularemias" ;
-lin hydremia_N = mkN "hydremia" "hydremias" ;
-lin hyperemia_N = mkN "hyperemia" "hyperemias" ;
-lin bacteremia_N = mkN "bacteremia" "bacteremias" ;
-lin viremia_N = mkN "viremia" "viremias" ;
-lin sapremia_N = mkN "sapremia" "sapremias" ;
-lin hyponatremia_N = mkN "hyponatremia" "hyponatremias" ;
-lin hypernatremia_N = mkN "hypernatremia" "hypernatremias" ;
-lin uremia_N = mkN "uremia" "uremias" ;
-lin galactosemia_N = mkN "galactosemia" "galactosemias" ;
-lin thalassemia_N = mkN "thalassemia" "thalassemias" ;
-lin uratemia_N = mkN "uratemia" "uratemias" ;
-lin parasitemia_N = mkN "parasitemia" "parasitemias" ;
-lin anoxemia_N = mkN "anoxemia" "anoxemias" ;
-lin toxemia_N = mkN "toxemia" "toxemias" ;
-lin enterotoxemia_N = mkN "enterotoxemia" "enterotoxemias" ; -- compound toxemia_N ;
-lin pyemia_N = mkN "pyemia" "pyemias" ;
-lin bulimia_N = mkN "bulimia" "bulimias" ;
-lin ophthalmia_N = mkN "ophthalmia" "ophthalmias" ;
-lin xerophthalmia_N = mkN "xerophthalmia" "xerophthalmias" ; -- compound ophthalmia_N ;
-lin kalmia_N = mkN "kalmia" "kalmias" ;
-lin nomia_N = mkN "nomia" "nomias" ;
-lin nanomia_N = mkN "nanomia" "nanomias" ; -- compound nomia_N ;
-lin peperomia_N = mkN "peperomia" "peperomias" ;
-lin achromia_N = mkN "achromia" "achromias" ;
-lin dysomia_N = mkN "dysomia" "dysomias" ;
-lin xerostomia_N = mkN "xerostomia" "xerostomias" ;
-lin normothermia_N = mkN "normothermia" "normothermias" ;
-lin hypothermia_N = mkN "hypothermia" "hypothermias" ;
-lin hyperthermia_N = mkN "hyperthermia" "hyperthermias" ;
-lin oligospermia_N = mkN "oligospermia" "oligospermias" ;
-lin anorgasmia_N = mkN "anorgasmia" "anorgasmias" ;
-lin anosmia_N = mkN "anosmia" "anosmias" ;
-lin hyposmia_N = mkN "hyposmia" "hyposmias" ;
-lin dysosmia_N = mkN "dysosmia" "dysosmias" ;
-lin cyclothymia_N = mkN "cyclothymia" "cyclothymias" ;
-lin schizothymia_N = mkN "schizothymia" "schizothymias" ;
-lin dysthymia_N = mkN "dysthymia" "dysthymias" ;
-lin azymia_N = mkN "azymia" "azymias" ;
-lin sesbania_N = mkN "sesbania" "sesbanias" ;
-lin mania_N = mkN "mania" "manias" ;
-lin decalcomania_N = mkN "decalcomania" "decalcomanias" ; -- compound mania_N ;
-lin egomania_N = mkN "egomania" "egomanias" ; -- compound mania_N ;
-lin nymphomania_N = mkN "nymphomania" "nymphomanias" ; -- compound mania_N ;
-lin bibliomania_N = mkN "bibliomania" "bibliomanias" ; -- compound mania_N ;
-lin megalomania_N = mkN "megalomania" "megalomanias" ; -- compound mania_N ;
-lin anglomania_N = mkN "anglomania" "anglomanias" ; -- compound mania_N ;
-lin trichotillomania_N = mkN "trichotillomania" "trichotillomanias" ; -- compound mania_N ;
-lin monomania_N = mkN "monomania" "monomanias" ; -- compound mania_N ;
-lin phaneromania_N = mkN "phaneromania" "phaneromanias" ; -- compound mania_N ;
-lin agromania_N = mkN "agromania" "agromanias" ; -- compound mania_N ;
-lin pyromania_N = mkN "pyromania" "pyromanias" ; -- compound mania_N ;
-lin dipsomania_N = mkN "dipsomania" "dipsomanias" ; -- compound mania_N ;
-lin onomatomania_N = mkN "onomatomania" "onomatomanias" ; -- compound mania_N ;
-lin balletomania_N = mkN "balletomania" "balletomanias" ; -- compound mania_N ;
-lin kleptomania_N = mkN "kleptomania" "kleptomanias" ; -- compound mania_N ;
-lin squandermania_N = mkN "squandermania" "squandermanias" ; -- compound mania_N ;
-lin gazania_N = mkN "gazania" "gazanias" ;
-lin taenia_N = mkN "taenia" "taenias" ;
-lin caladenia_N = mkN "caladenia" "caladenias" ;
-lin gardenia_N = mkN "gardenia" "gardenias" ;
-lin bergenia_N = mkN "bergenia" "bergenias" ;
-lin asthenia_N = mkN "asthenia" "asthenias" ;
-lin thrombasthenia_N = mkN "thrombasthenia" "thrombasthenias" ; -- compound asthenia_N ;
-lin neurasthenia_N = mkN "neurasthenia" "neurasthenias" ; -- compound asthenia_N ;
-lin myasthenia_N = mkN "myasthenia" "myasthenias" ; -- compound asthenia_N ;
-lin dillenia_N = mkN "dillenia" "dillenias" ;
-lin leukopenia_N = mkN "leukopenia" "leukopenias" ;
-lin eosinopenia_N = mkN "eosinopenia" "eosinopenias" ;
-lin sideropenia_N = mkN "sideropenia" "sideropenias" ;
-lin neutropenia_N = mkN "neutropenia" "neutropenias" ;
-lin cytopenia_N = mkN "cytopenia" "cytopenias" ;
-lin pancytopenia_N = mkN "pancytopenia" "pancytopenias" ; -- compound cytopenia_N ;
-lin thrombocytopenia_N = mkN "thrombocytopenia" "thrombocytopenias" ; -- compound cytopenia_N ;
-lin lymphocytopenia_N = mkN "lymphocytopenia" "lymphocytopenias" ; -- compound cytopenia_N ;
-lin hematocytopenia_N = mkN "hematocytopenia" "hematocytopenias" ; -- compound cytopenia_N ;
-lin hebephrenia_N = mkN "hebephrenia" "hebephrenias" ;
-lin schizophrenia_N = mkN "schizophrenia" "schizophrenias" ;
-lin algolagnia_N = mkN "algolagnia" "algolagnias" ;
-lin insignia_N = mkN "insignia" "insignias" ;
-lin daphnia_N = mkN "daphnia" "daphnias" ;
-lin vaccinia_N = mkN "vaccinia" "vaccinias" ;
-lin virginia_N = mkN "virginia" "virginias" ;
-lin ursinia_N = mkN "ursinia" "ursinias" ;
-lin actinia_N = mkN "actinia" "actinias" ;
-lin rhizoctinia_N = mkN "rhizoctinia" "rhizoctinias" ;
-lin sclerotinia_N = mkN "sclerotinia" "sclerotinias" ;
-lin erwinia_N = mkN "erwinia" "erwinias" ;
-lin gloxinia_N = mkN "gloxinia" "gloxinias" ;
-lin insomnia_N = mkN "insomnia" "insomnias" ;
-lin hypersomnia_N = mkN "hypersomnia" "hypersomnias" ;
-lin engelmannia_N = mkN "engelmannia" "engelmannias" ;
-lin zinnia_N = mkN "zinnia" "zinnias" ;
-lin bocconia_N = mkN "bocconia" "bocconias" ;
-lin anhedonia_N = mkN "anhedonia" "anhedonias" ;
-lin begonia_N = mkN "begonia" "begonias" ;
-lin pogonia_N = mkN "pogonia" "pogonias" ;
-lin aphonia_N = mkN "aphonia" "aphonias" ;
-lin dysphonia_N = mkN "dysphonia" "dysphonias" ;
-lin aniseikonia_N = mkN "aniseikonia" "aniseikonias" ;
-lin agrimonia_N = mkN "agrimonia" "agrimonias" ;
-lin ammonia_N = mkN "ammonia" "ammonias" ;
-lin pneumonia_N = mkN "pneumonia" "pneumonias" ;
-lin bronchopneumonia_N = mkN "bronchopneumonia" "bronchopneumonias" ; -- compound pneumonia_N ;
-lin pleuropneumonia_N = mkN "pleuropneumonia" "pleuropneumonias" ; -- compound pneumonia_N ;
-lin koinonia_N = mkN "koinonia" "koinonias" ;
-lin catatonia_N = mkN "catatonia" "catatonias" ;
-lin clintonia_N = mkN "clintonia" "clintonias" ;
-lin hypotonia_N = mkN "hypotonia" "hypotonias" ;
-lin myotonia_N = mkN "myotonia" "myotonias" ;
-lin acromyotonia_N = mkN "acromyotonia" "acromyotonias" ; -- compound myotonia_N ;
-lin bartonia_N = mkN "bartonia" "bartonias" ;
-lin hypertonia_N = mkN "hypertonia" "hypertonias" ;
-lin pavonia_N = mkN "pavonia" "pavonias" ;
-lin hypocapnia_N = mkN "hypocapnia" "hypocapnias" ;
-lin hypercapnia_N = mkN "hypercapnia" "hypercapnias" ;
-lin agrypnia_N = mkN "agrypnia" "agrypnias" ;
-lin hernia_N = mkN "hernia" "hernias" ;
-lin petunia_N = mkN "petunia" "petunias" ;
-lin hryvnia_N = mkN "hryvnia" "hryvnias" ;
-lin urodynia_N = mkN "urodynia" "urodynias" ;
-lin pleurodynia_N = mkN "pleurodynia" "pleurodynias" ; -- compound urodynia_N ;
-lin martynia_N = mkN "martynia" "martynias" ;
-lin paranoia_N = mkN "paranoia" "paranoias" ;
-lin sequoia_N = mkN "sequoia" "sequoias" ;
-lin metasequoia_N = mkN "metasequoia" "metasequoias" ; -- compound sequoia_N ;
-lin pia_N = mkN "pia" "pias" ;
-lin sepia_N = mkN "sepia" "sepias" ; -- compound pia_N ;
-lin cornucopia_N = mkN "cornucopia" "cornucopias" ; -- compound pia_N ;
-lin anorthopia_N = mkN "anorthopia" "anorthopias" ; -- compound pia_N ;
-lin hemeralopia_N = mkN "hemeralopia" "hemeralopias" ; -- compound pia_N ;
-lin nyctalopia_N = mkN "nyctalopia" "nyctalopias" ; -- compound pia_N ;
-lin cyclopia_N = mkN "cyclopia" "cyclopias" ; -- compound pia_N ;
-lin diplopia_N = mkN "diplopia" "diplopias" ; -- compound pia_N ;
-lin anopia_N = mkN "anopia" "anopias" ; -- compound pia_N ;
-lin hemianopia_N = mkN "hemianopia" "hemianopias" ; -- compound pia_N ;
-lin deuteranopia_N = mkN "deuteranopia" "deuteranopias" ; -- compound pia_N ;
-lin tritanopia_N = mkN "tritanopia" "tritanopias" ; -- compound pia_N ;
-lin quadrantanopia_N = mkN "quadrantanopia" "quadrantanopias" ; -- compound pia_N ;
-lin protanopia_N = mkN "protanopia" "protanopias" ; -- compound pia_N ;
-lin tetartanopia_N = mkN "tetartanopia" "tetartanopias" ; -- compound pia_N ;
-lin cecropia_N = mkN "cecropia" "cecropias" ; -- compound pia_N ;
-lin hyperopia_N = mkN "hyperopia" "hyperopias" ; -- compound pia_N ;
-lin ametropia_N = mkN "ametropia" "ametropias" ; -- compound pia_N ;
-lin emmetropia_N = mkN "emmetropia" "emmetropias" ; -- compound pia_N ;
-lin isometropia_N = mkN "isometropia" "isometropias" ; -- compound pia_N ;
-lin anisometropia_N = mkN "anisometropia" "anisometropias" ; -- compound pia_N ;
-lin subtopia_N = mkN "subtopia" "subtopias" ; -- compound pia_N ;
-lin ectopia_N = mkN "ectopia" "ectopias" ; -- compound pia_N ;
-lin dystopia_N = mkN "dystopia" "dystopias" ; -- compound pia_N ;
-lin utopia_N = mkN "utopia" "utopias" ; -- compound pia_N ;
-lin presbyopia_N = mkN "presbyopia" "presbyopias" ; -- compound pia_N ;
-lin amblyopia_N = mkN "amblyopia" "amblyopias" ; -- compound pia_N ;
-lin myopia_N = mkN "myopia" "myopias" ; -- compound pia_N ;
-lin oxyopia_N = mkN "oxyopia" "oxyopias" ; -- compound pia_N ;
-lin aria_N = mkN "aria" "arias" ;
-lin cercaria_N = mkN "cercaria" "cercarias" ; -- compound aria_N ;
-lin araucaria_N = mkN "araucaria" "araucarias" ; -- compound aria_N ;
-lin ablepharia_N = mkN "ablepharia" "ablepharias" ; -- compound aria_N ;
-lin malaria_N = mkN "malaria" "malarias" ; -- compound aria_N ;
-lin talaria_N = mkN "talaria" "talarias" ; -- compound aria_N ;
-lin crotalaria_N = mkN "crotalaria" "crotalarias" ; -- compound aria_N ;
-lin filaria_N = mkN "filaria" "filarias" ; -- compound aria_N ;
-lin mammillaria_N = mkN "mammillaria" "mammillarias" ; -- compound aria_N ;
-lin maxillaria_N = mkN "maxillaria" "maxillarias" ; -- compound aria_N ;
-lin calceolaria_N = mkN "calceolaria" "calceolarias" ; -- compound aria_N ;
-lin appendicularia_N = mkN "appendicularia" "appendicularias" ; -- compound aria_N ;
-lin cineraria_N = mkN "cineraria" "cinerarias" ; -- compound aria_N ;
-lin calvaria_N = mkN "calvaria" "calvarias" ; -- compound aria_N ;
-lin fimbria_N = mkN "fimbria" "fimbrias" ;
-lin acromicria_N = mkN "acromicria" "acromicrias" ;
-lin hypochondria_N = mkN "hypochondria" "hypochondrias" ;
-lin achlorhydria_N = mkN "achlorhydria" "achlorhydrias" ;
-lin keteleeria_N = mkN "keteleeria" "keteleerias" ;
-lin feria_N = mkN "feria" "ferias" ;
-lin progeria_N = mkN "progeria" "progerias" ;
-lin diphtheria_N = mkN "diphtheria" "diphtherias" ;
-lin sansevieria_N = mkN "sansevieria" "sansevierias" ;
-lin kohleria_N = mkN "kohleria" "kohlerias" ;
-lin alstroemeria_N = mkN "alstroemeria" "alstroemerias" ;
-lin gesneria_N = mkN "gesneria" "gesnerias" ;
-lin bacteria_N = mkN "bacteria" "bacterias" ;
-lin archaebacteria_N = mkN "archaebacteria" "archaebacterias" ; -- compound bacteria_N ;
-lin mycobacteria_N = mkN "mycobacteria" "mycobacterias" ; -- compound bacteria_N ;
-lin thiobacteria_N = mkN "thiobacteria" "thiobacterias" ; -- compound bacteria_N ;
-lin halobacteria_N = mkN "halobacteria" "halobacterias" ; -- compound bacteria_N ;
-lin cyanobacteria_N = mkN "cyanobacteria" "cyanobacterias" ; -- compound bacteria_N ;
-lin nitrosobacteria_N = mkN "nitrosobacteria" "nitrosobacterias" ; -- compound bacteria_N ;
-lin myxobacteria_N = mkN "myxobacteria" "myxobacterias" ; -- compound bacteria_N ;
-lin eubacteria_N = mkN "eubacteria" "eubacterias" ; -- compound bacteria_N ;
-lin cafeteria_N = mkN "cafeteria" "cafeterias" ;
-lin carpenteria_N = mkN "carpenteria" "carpenterias" ;
-lin listeria_N = mkN "listeria" "listerias" ;
-lin wisteria_N = mkN "wisteria" "wisterias" ;
-lin hysteria_N = mkN "hysteria" "hysterias" ;
-lin pizzeria_N = mkN "pizzeria" "pizzerias" ;
-lin anarthria_N = mkN "anarthria" "anarthrias" ;
-lin dysarthria_N = mkN "dysarthria" "dysarthrias" ;
-lin phantasmagoria_N = mkN "phantasmagoria" "phantasmagorias" ;
-lin dysphoria_N = mkN "dysphoria" "dysphorias" ;
-lin euphoria_N = mkN "euphoria" "euphorias" ;
-lin noria_N = mkN "noria" "norias" ;
-lin victoria_N = mkN "victoria" "victorias" ;
-lin ametria_N = mkN "ametria" "ametrias" ;
-lin stria_N = mkN "stria" "strias" ;
-lin nutria_N = mkN "nutria" "nutrias" ;
-lin uricaciduria_N = mkN "uricaciduria" "uricacidurias" ;
-lin aminoaciduria_N = mkN "aminoaciduria" "aminoacidurias" ;
-lin oliguria_N = mkN "oliguria" "oligurias" ;
-lin lymphuria_N = mkN "lymphuria" "lymphurias" ;
-lin hypercalciuria_N = mkN "hypercalciuria" "hypercalciurias" ;
-lin ammoniuria_N = mkN "ammoniuria" "ammoniurias" ;
-lin hemoglobinuria_N = mkN "hemoglobinuria" "hemoglobinurias" ;
-lin myoglobinuria_N = mkN "myoglobinuria" "myoglobinurias" ;
-lin alkalinuria_N = mkN "alkalinuria" "alkalinurias" ;
-lin albuminuria_N = mkN "albuminuria" "albuminurias" ;
-lin ketonuria_N = mkN "ketonuria" "ketonurias" ;
-lin phenylketonuria_N = mkN "phenylketonuria" "phenylketonurias" ; -- compound ketonuria_N ;
-lin alkaptonuria_N = mkN "alkaptonuria" "alkaptonurias" ;
-lin glucosuria_N = mkN "glucosuria" "glucosurias" ;
-lin glycosuria_N = mkN "glycosuria" "glycosurias" ;
-lin lactosuria_N = mkN "lactosuria" "lactosurias" ;
-lin fructosuria_N = mkN "fructosuria" "fructosurias" ;
-lin dysuria_N = mkN "dysuria" "dysurias" ;
-lin hematuria_N = mkN "hematuria" "hematurias" ;
-lin uraturia_N = mkN "uraturia" "uraturias" ;
-lin nocturia_N = mkN "nocturia" "nocturias" ;
-lin azoturia_N = mkN "azoturia" "azoturias" ;
-lin hematocyturia_N = mkN "hematocyturia" "hematocyturias" ;
-lin polyuria_N = mkN "polyuria" "polyurias" ;
-lin pyuria_N = mkN "pyuria" "pyurias" ;
-lin porphyria_N = mkN "porphyria" "porphyrias" ;
-lin abasia_N = mkN "abasia" "abasias" ;
-lin alocasia_N = mkN "alocasia" "alocasias" ;
-lin aphasia_N = mkN "aphasia" "aphasias" ;
-lin cataphasia_N = mkN "cataphasia" "cataphasias" ; -- compound aphasia_N ;
-lin acataphasia_N = mkN "acataphasia" "acataphasias" ; -- compound aphasia_N ;
-lin dysphasia_N = mkN "dysphasia" "dysphasias" ;
-lin pericementoclasia_N = mkN "pericementoclasia" "pericementoclasias" ;
-lin aplasia_N = mkN "aplasia" "aplasias" ;
-lin anaplasia_N = mkN "anaplasia" "anaplasias" ; -- compound aplasia_N ;
-lin cataplasia_N = mkN "cataplasia" "cataplasias" ; -- compound aplasia_N ;
-lin neoplasia_N = mkN "neoplasia" "neoplasias" ;
-lin hypoplasia_N = mkN "hypoplasia" "hypoplasias" ;
-lin achondroplasia_N = mkN "achondroplasia" "achondroplasias" ;
-lin hyperplasia_N = mkN "hyperplasia" "hyperplasias" ;
-lin dysplasia_N = mkN "dysplasia" "dysplasias" ;
-lin antinomasia_N = mkN "antinomasia" "antinomasias" ;
-lin euthanasia_N = mkN "euthanasia" "euthanasias" ;
-lin dyscrasia_N = mkN "dyscrasia" "dyscrasias" ;
-lin agerasia_N = mkN "agerasia" "agerasias" ;
-lin ectasia_N = mkN "ectasia" "ectasias" ;
-lin lymphangiectasia_N = mkN "lymphangiectasia" "lymphangiectasias" ; -- compound ectasia_N ;
-lin angiotelectasia_N = mkN "angiotelectasia" "angiotelectasias" ; -- compound ectasia_N ;
-lin keratectasia_N = mkN "keratectasia" "keratectasias" ; -- compound ectasia_N ;
-lin fantasia_N = mkN "fantasia" "fantasias" ;
-lin astasia_N = mkN "astasia" "astasias" ;
-lin malvasia_N = mkN "malvasia" "malvasias" ;
-lin woodsia_N = mkN "woodsia" "woodsias" ;
-lin idesia_N = mkN "idesia" "idesias" ;
-lin freesia_N = mkN "freesia" "freesias" ;
-lin thermalgesia_N = mkN "thermalgesia" "thermalgesias" ;
-lin analgesia_N = mkN "analgesia" "analgesias" ;
-lin urochesia_N = mkN "urochesia" "urochesias" ;
-lin anaesthesia_N = mkN "anaesthesia" "anaesthesias" ;
-lin chromesthesia_N = mkN "chromesthesia" "chromesthesias" ;
-lin somesthesia_N = mkN "somesthesia" "somesthesias" ;
-lin anesthesia_N = mkN "anesthesia" "anesthesias" ;
-lin kinanesthesia_N = mkN "kinanesthesia" "kinanesthesias" ; -- compound anesthesia_N ;
-lin acroanesthesia_N = mkN "acroanesthesia" "acroanesthesias" ; -- compound anesthesia_N ;
-lin cryoanesthesia_N = mkN "cryoanesthesia" "cryoanesthesias" ; -- compound anesthesia_N ;
-lin kinesthesia_N = mkN "kinesthesia" "kinesthesias" ;
-lin synesthesia_N = mkN "synesthesia" "synesthesias" ;
-lin hypoesthesia_N = mkN "hypoesthesia" "hypoesthesias" ;
-lin paresthesia_N = mkN "paresthesia" "paresthesias" ;
-lin cryesthesia_N = mkN "cryesthesia" "cryesthesias" ;
-lin silesia_N = mkN "silesia" "silesias" ;
-lin magnesia_N = mkN "magnesia" "magnesias" ;
-lin dyskinesia_N = mkN "dyskinesia" "dyskinesias" ;
-lin amnesia_N = mkN "amnesia" "amnesias" ;
-lin paramnesia_N = mkN "paramnesia" "paramnesias" ; -- compound amnesia_N ;
-lin atresia_N = mkN "atresia" "atresias" ;
-lin fuchsia_N = mkN "fuchsia" "fuchsias" ;
-lin aphrodisia_N = mkN "aphrodisia" "aphrodisias" ;
-lin anaphrodisia_N = mkN "anaphrodisia" "anaphrodisias" ; -- compound aphrodisia_N ;
-lin artemisia_N = mkN "artemisia" "artemisias" ;
-lin mutisia_N = mkN "mutisia" "mutisias" ;
-lin banksia_N = mkN "banksia" "banksias" ;
-lin diapensia_N = mkN "diapensia" "diapensias" ;
-lin hortensia_N = mkN "hortensia" "hortensias" ;
-lin agnosia_N = mkN "agnosia" "agnosias" ;
-lin topognosia_N = mkN "topognosia" "topognosias" ;
-lin atopognosia_N = mkN "atopognosia" "atopognosias" ; -- notcompound topognosia_N ;
-lin ambrosia_N = mkN "ambrosia" "ambrosias" ;
-lin dyspepsia_N = mkN "dyspepsia" "dyspepsias" ;
-lin polydipsia_N = mkN "polydipsia" "polydipsias" ;
-lin eclampsia_N = mkN "eclampsia" "eclampsias" ;
-lin preeclampsia_N = mkN "preeclampsia" "preeclampsias" ; -- compound eclampsia_N ;
-lin metamorphopsia_N = mkN "metamorphopsia" "metamorphopsias" ;
-lin xanthopsia_N = mkN "xanthopsia" "xanthopsias" ;
-lin zoopsia_N = mkN "zoopsia" "zoopsias" ;
-lin cassia_N = mkN "cassia" "cassias" ;
-lin parnassia_N = mkN "parnassia" "parnassias" ;
-lin quassia_N = mkN "quassia" "quassias" ;
-lin macroglossia_N = mkN "macroglossia" "macroglossias" ;
-lin androglossia_N = mkN "androglossia" "androglossias" ;
-lin intelligentsia_N = mkN "intelligentsia" "intelligentsias" ;
-lin rickettsia_N = mkN "rickettsia" "rickettsias" ;
-lin clusia_N = mkN "clusia" "clusias" ;
-lin zoysia_N = mkN "zoysia" "zoysias" ;
-lin sabbatia_N = mkN "sabbatia" "sabbatias" ;
-lin lomatia_N = mkN "lomatia" "lomatias" ;
-lin agalactia_N = mkN "agalactia" "agalactias" ;
-lin manglietia_N = mkN "manglietia" "manglietias" ;
-lin aubrietia_N = mkN "aubrietia" "aubrietias" ;
-lin bletia_N = mkN "bletia" "bletias" ;
-lin militia_N = mkN "militia" "militias" ;
-lin astrantia_N = mkN "astrantia" "astrantias" ;
-lin dementia_N = mkN "dementia" "dementias" ;
-lin differentia_N = mkN "differentia" "differentias" ;
-lin oligodontia_N = mkN "oligodontia" "oligodontias" ;
-lin inertia_N = mkN "inertia" "inertias" ;
-lin shortia_N = mkN "shortia" "shortias" ;
-lin amastia_N = mkN "amastia" "amastias" ;
-lin gynecomastia_N = mkN "gynecomastia" "gynecomastias" ;
-lin pistia_N = mkN "pistia" "pistias" ;
-lin costia_N = mkN "costia" "costias" ;
-lin millettia_N = mkN "millettia" "millettias" ;
-lin poinsettia_N = mkN "poinsettia" "poinsettias" ;
-lin yautia_N = mkN "yautia" "yautias" ;
-lin minutia_N = mkN "minutia" "minutias" ;
-lin stevia_N = mkN "stevia" "stevias" ;
-lin bolivia_N = mkN "bolivia" "bolivias" ;
-lin administrivia_N = mkN "administrivia" "administrivias" ;
-lin salvia_N = mkN "salvia" "salvias" ;
-lin synovia_N = mkN "synovia" "synovias" ;
-lin ataraxia_N = mkN "ataraxia" "ataraxias" ;
-lin apraxia_N = mkN "apraxia" "apraxias" ;
-lin ataxia_N = mkN "ataxia" "ataxias" ;
-lin cachexia_N = mkN "cachexia" "cachexias" ;
-lin acathexia_N = mkN "acathexia" "acathexias" ;
-lin alexia_N = mkN "alexia" "alexias" ;
-lin areflexia_N = mkN "areflexia" "areflexias" ;
-lin dyslexia_N = mkN "dyslexia" "dyslexias" ;
-lin bulimarexia_N = mkN "bulimarexia" "bulimarexias" ;
-lin anorexia_N = mkN "anorexia" "anorexias" ;
-lin hyperpyrexia_N = mkN "hyperpyrexia" "hyperpyrexias" ;
-lin pyrrhuloxia_N = mkN "pyrrhuloxia" "pyrrhuloxias" ;
-lin anoxia_N = mkN "anoxia" "anoxias" ;
-lin hypoxia_N = mkN "hypoxia" "hypoxias" ;
-lin asphyxia_N = mkN "asphyxia" "asphyxias" ;
-lin amyxia_N = mkN "amyxia" "amyxias" ;
-lin hematochezia_N = mkN "hematochezia" "hematochezias" ;
-lin dyschezia_N = mkN "dyschezia" "dyschezias" ;
-lin bilharzia_N = mkN "bilharzia" "bilharzias" ;
-lin elsholtzia_N = mkN "elsholtzia" "elsholtzias" ;
-lin deutzia_N = mkN "deutzia" "deutzias" ;
-lin albizzia_N = mkN "albizzia" "albizzias" ;
-lin chaja_N = mkN "chaja" "chajas" ;
-lin raja_N = mkN "raja" "rajas" ;
-lin maharaja_N = mkN "maharaja" "maharajas" ; -- compound raja_N ;
-lin ouija_N = mkN "ouija" "ouijas" ;
-lin ninja_N = mkN "ninja" "ninjas" ;
-lin moussaka_N = mkN "moussaka" "moussakas" ;
-lin taka_N = mkN "taka" "takas" ;
-lin kawaka_N = mkN "kawaka" "kawakas" ;
-lin babka_N = mkN "babka" "babkas" ;
-lin vodka_N = mkN "vodka" "vodkas" ;
-lin weka_N = mkN "weka" "wekas" ;
-lin chachka_N = mkN "chachka" "chachkas" ;
-lin babushka_N = mkN "babushka" "babushkas" ;
-lin balalaika_N = mkN "balalaika" "balalaikas" ;
-lin sheika_N = mkN "sheika" "sheikas" ;
-lin kapeika_N = mkN "kapeika" "kapeikas" ;
-lin troika_N = mkN "troika" "troikas" ;
-lin perestroika_N = mkN "perestroika" "perestroikas" ; -- compound troika_N ;
-lin pika_N = mkN "pika" "pikas" ;
-lin paprika_N = mkN "paprika" "paprikas" ;
-lin swastika_N = mkN "swastika" "swastikas" ;
-lin markka_N = mkN "markka" "markkas" ;
-lin chukka_N = mkN "chukka" "chukkas" ;
-lin khalka_N = mkN "khalka" "khalkas" ;
-lin polka_N = mkN "polka" "polkas" ;
-lin tanka_N = mkN "tanka" "tankas" ;
-lin stotinka_N = mkN "stotinka" "stotinkas" ;
-lin oka_N = mkN "oka" "okas" ;
-lin fanaloka_N = mkN "fanaloka" "fanalokas" ; -- compound oka_N ;
-lin bazooka_N = mkN "bazooka" "bazookas" ; -- compound oka_N ;
-lin qindarka_N = mkN "qindarka" "qindarkas" ;
-lin parka_N = mkN "parka" "parkas" ;
-lin mazurka_N = mkN "mazurka" "mazurkas" ;
-lin patka_N = mkN "patka" "patkas" ;
-lin puka_N = mkN "puka" "pukas" ;
-lin kapuka_N = mkN "kapuka" "kapukas" ; -- compound puka_N ;
-lin kopiyka_N = mkN "kopiyka" "kopiykas" ;
-lin 'hoop-la_N' = mkN "hoop-la" "hoop-las" ;
-lin ala_N = mkN "ala" "alas" ;
-lin cabala_N = mkN "cabala" "cabalas" ; -- compound ala_N ;
-lin tambala_N = mkN "tambala" "tambalas" ; -- compound ala_N ;
-lin cicala_N = mkN "cicala" "cicalas" ; -- compound ala_N ;
-lin amygdala_N = mkN "amygdala" "amygdalas" ; -- compound ala_N ;
-lin mandala_N = mkN "mandala" "mandalas" ; -- compound ala_N ;
-lin gala_N = mkN "gala" "galas" ; -- notcompound ala_N ;
-lin sinhala_N = mkN "sinhala" "sinhalas" ; -- compound ala_N ;
-lin koala_N = mkN "koala" "koalas" ; -- compound ala_N ;
-lin impala_N = mkN "impala" "impalas" ; -- compound ala_N ;
-lin marsala_N = mkN "marsala" "marsalas" ; -- compound ala_N ;
-lin tala_N = mkN "tala" "talas" ; -- notcompound ala_N ;
-lin cantala_N = mkN "cantala" "cantalas" ; -- compound ala_N ;
-lin hawala_N = mkN "hawala" "hawalas" ; -- compound ala_N ;
-lin nyala_N = mkN "nyala" "nyalas" ; -- compound ala_N ;
-lin andryala_N = mkN "andryala" "andryalas" ; -- compound ala_N ;
-lin qibla_N = mkN "qibla" "qiblas" ;
-lin weigela_N = mkN "weigela" "weigelas" ;
-lin chela_N = mkN "chela" "chelas" ;
-lin panatela_N = mkN "panatela" "panatelas" ;
-lin sequela_N = mkN "sequela" "sequelas" ;
-lin kwela_N = mkN "kwela" "kwelas" ;
-lin macushla_N = mkN "macushla" "macushlas" ;
-lin heliophila_N = mkN "heliophila" "heliophilas" ;
-lin nemophila_N = mkN "nemophila" "nemophilas" ;
-lin drosophila_N = mkN "drosophila" "drosophilas" ;
-lin manila_N = mkN "manila" "manilas" ;
-lin tequila_N = mkN "tequila" "tequilas" ;
-lin chuckwalla_N = mkN "chuckwalla" "chuckwallas" ;
-lin paella_N = mkN "paella" "paellas" ;
-lin glabella_N = mkN "glabella" "glabellas" ;
-lin roccella_N = mkN "roccella" "roccellas" ;
-lin vorticella_N = mkN "vorticella" "vorticellas" ;
-lin arcella_N = mkN "arcella" "arcellas" ;
-lin shigella_N = mkN "shigella" "shigellas" ;
-lin nigella_N = mkN "nigella" "nigellas" ;
-lin klebsiella_N = mkN "klebsiella" "klebsiellas" ;
-lin lamella_N = mkN "lamella" "lamellas" ;
-lin columella_N = mkN "columella" "columellas" ;
-lin canella_N = mkN "canella" "canellas" ;
-lin gentianella_N = mkN "gentianella" "gentianellas" ;
-lin fraxinella_N = mkN "fraxinella" "fraxinellas" ;
-lin salmonella_N = mkN "salmonella" "salmonellas" ;
-lin mozzarella_N = mkN "mozzarella" "mozzarellas" ;
-lin umbrella_N = mkN "umbrella" "umbrellas" ;
-lin cinderella_N = mkN "cinderella" "cinderellas" ;
-lin chlorella_N = mkN "chlorella" "chlorellas" ;
-lin tessella_N = mkN "tessella" "tessellas" ;
-lin panatella_N = mkN "panatella" "panatellas" ;
-lin patella_N = mkN "patella" "patellas" ;
-lin tarantella_N = mkN "tarantella" "tarantellas" ;
-lin christella_N = mkN "christella" "christellas" ;
-lin sequella_N = mkN "sequella" "sequellas" ;
-lin helvella_N = mkN "helvella" "helvellas" ;
-lin ketembilla_N = mkN "ketembilla" "ketembillas" ;
-lin scilla_N = mkN "scilla" "scillas" ;
-lin granadilla_N = mkN "granadilla" "granadillas" ;
-lin quesadilla_N = mkN "quesadilla" "quesadillas" ;
-lin cedilla_N = mkN "cedilla" "cedillas" ;
-lin sapodilla_N = mkN "sapodilla" "sapodillas" ;
-lin fothergilla_N = mkN "fothergilla" "fothergillas" ;
-lin chinchilla_N = mkN "chinchilla" "chinchillas" ;
-lin naranjilla_N = mkN "naranjilla" "naranjillas" ;
-lin candelilla_N = mkN "candelilla" "candelillas" ;
-lin armilla_N = mkN "armilla" "armillas" ;
-lin manilla_N = mkN "manilla" "manillas" ;
-lin vanilla_N = mkN "vanilla" "vanillas" ;
-lin coronilla_N = mkN "coronilla" "coronillas" ;
-lin papilla_N = mkN "papilla" "papillas" ;
-lin barilla_N = mkN "barilla" "barillas" ;
-lin cascarilla_N = mkN "cascarilla" "cascarillas" ;
-lin sarsaparilla_N = mkN "sarsaparilla" "sarsaparillas" ;
-lin hydrilla_N = mkN "hydrilla" "hydrillas" ;
-lin banderilla_N = mkN "banderilla" "banderillas" ;
-lin guerilla_N = mkN "guerilla" "guerillas" ;
-lin gorilla_N = mkN "gorilla" "gorillas" ;
-lin guerrilla_N = mkN "guerrilla" "guerrillas" ;
-lin cyrilla_N = mkN "cyrilla" "cyrillas" ;
-lin salsilla_N = mkN "salsilla" "salsillas" ;
-lin rosilla_N = mkN "rosilla" "rosillas" ;
-lin mantilla_N = mkN "mantilla" "mantillas" ;
-lin scintilla_N = mkN "scintilla" "scintillas" ;
-lin flotilla_N = mkN "flotilla" "flotillas" ;
-lin tortilla_N = mkN "tortilla" "tortillas" ;
-lin squilla_N = mkN "squilla" "squillas" ;
-lin villa_N = mkN "villa" "villas" ;
-lin cholla_N = mkN "cholla" "chollas" ;
-lin corolla_N = mkN "corolla" "corollas" ;
-lin bulla_N = mkN "bulla" "bullas" ;
-lin garambulla_N = mkN "garambulla" "garambullas" ; -- compound bulla_N ;
-lin medulla_N = mkN "medulla" "medullas" ;
-lin ampulla_N = mkN "ampulla" "ampullas" ;
-lin harpulla_N = mkN "harpulla" "harpullas" ;
-lin scylla_N = mkN "scylla" "scyllas" ;
-lin ola_N = mkN "ola" "olas" ;
-lin bola_N = mkN "bola" "bolas" ; -- notcompound ola_N ;
-lin parabola_N = mkN "parabola" "parabolas" ; -- compound ola_N ;
-lin holometabola_N = mkN "holometabola" "holometabolas" ; -- compound ola_N ;
-lin carambola_N = mkN "carambola" "carambolas" ; -- compound ola_N ;
-lin tombola_N = mkN "tombola" "tombolas" ; -- compound ola_N ;
-lin hyperbola_N = mkN "hyperbola" "hyperbolas" ; -- compound ola_N ;
-lin cola_N = mkN "cola" "colas" ; -- notcompound ola_N ;
-lin 'coca-cola_N' = mkN "coca-cola" "coca-colas" ; -- compound ola_N ;
-lin mandola_N = mkN "mandola" "mandolas" ; -- compound ola_N ;
-lin gondola_N = mkN "gondola" "gondolas" ; -- compound ola_N ;
-lin areola_N = mkN "areola" "areolas" ; -- compound ola_N ;
-lin pergola_N = mkN "pergola" "pergolas" ; -- compound ola_N ;
-lin viola_N = mkN "viola" "violas" ; -- compound ola_N ;
-lin kola_N = mkN "kola" "kolas" ; -- notcompound ola_N ;
-lin pianola_N = mkN "pianola" "pianolas" ; -- compound ola_N ;
-lin granola_N = mkN "granola" "granolas" ; -- compound ola_N ;
-lin cupola_N = mkN "cupola" "cupolas" ; -- compound ola_N ;
-lin acerola_N = mkN "acerola" "acerolas" ; -- compound ola_N ;
-lin brassavola_N = mkN "brassavola" "brassavolas" ; -- compound ola_N ;
-lin payola_N = mkN "payola" "payolas" ; -- compound ola_N ;
-lin gorgonzola_N = mkN "gorgonzola" "gorgonzolas" ; -- compound ola_N ;
-lin hoopla_N = mkN "hoopla" "hooplas" ;
-lin tesla_N = mkN "tesla" "teslas" ;
-lin vizsla_N = mkN "vizsla" "vizslas" ;
-lin nebula_N = mkN "nebula" "nebulas" ;
-lin fibula_N = mkN "fibula" "fibulas" ;
-lin facula_N = mkN "facula" "faculas" ;
-lin macula_N = mkN "macula" "maculas" ;
-lin trabecula_N = mkN "trabecula" "trabeculas" ;
-lin fecula_N = mkN "fecula" "feculas" ;
-lin pinguecula_N = mkN "pinguecula" "pingueculas" ;
-lin acicula_N = mkN "acicula" "aciculas" ;
-lin auricula_N = mkN "auricula" "auriculas" ;
-lin cuticula_N = mkN "cuticula" "cuticulas" ;
-lin furcula_N = mkN "furcula" "furculas" ;
-lin roridula_N = mkN "roridula" "roridulas" ;
-lin calendula_N = mkN "calendula" "calendulas" ;
-lin scrofula_N = mkN "scrofula" "scrofulas" ;
-lin hula_N = mkN "hula" "hulas" ;
-lin alula_N = mkN "alula" "alulas" ;
-lin primula_N = mkN "primula" "primulas" ;
-lin formula_N = mkN "formula" "formulas" ;
-lin planula_N = mkN "planula" "planulas" ;
-lin campanula_N = mkN "campanula" "campanulas" ;
-lin ranula_N = mkN "ranula" "ranulas" ;
-lin inula_N = mkN "inula" "inulas" ;
-lin cannula_N = mkN "cannula" "cannulas" ;
-lin lunula_N = mkN "lunula" "lunulas" ;
-lin pula_N = mkN "pula" "pulas" ;
-lin scapula_N = mkN "scapula" "scapulas" ; -- compound pula_N ;
-lin copula_N = mkN "copula" "copulas" ; -- compound pula_N ;
-lin spirula_N = mkN "spirula" "spirulas" ;
-lin morula_N = mkN "morula" "morulas" ;
-lin gastrula_N = mkN "gastrula" "gastrulas" ;
-lin peninsula_N = mkN "peninsula" "peninsulas" ;
-lin spatula_N = mkN "spatula" "spatulas" ;
-lin tarantula_N = mkN "tarantula" "tarantulas" ;
-lin brotula_N = mkN "brotula" "brotulas" ;
-lin blastula_N = mkN "blastula" "blastulas" ;
-lin fistula_N = mkN "fistula" "fistulas" ;
-lin uvula_N = mkN "uvula" "uvulas" ;
-lin ma_N = mkN "ma" "mas" ;
-lin agama_N = mkN "agama" "agamas" ; -- compound ma_N ;
-lin pajama_N = mkN "pajama" "pajamas" ; -- compound ma_N ;
-lin lama_N = mkN "lama" "lamas" ; -- compound ma_N ;
-lin ilama_N = mkN "ilama" "ilamas" ; -- compound ma_N ;
-lin llama_N = mkN "llama" "llamas" ; -- compound ma_N ;
-lin mama_N = mkN "mama" "mamas" ; -- compound ma_N ;
-lin panama_N = mkN "panama" "panamas" ; -- compound ma_N ;
-lin drama_N = mkN "drama" "dramas" ; -- compound ma_N ;
-lin melodrama_N = mkN "melodrama" "melodramas" ; -- compound ma_N ;
-lin grama_N = mkN "grama" "gramas" ; -- compound ma_N ;
-lin panorama_N = mkN "panorama" "panoramas" ; -- compound ma_N ;
-lin guama_N = mkN "guama" "guamas" ; -- compound ma_N ;
-lin squama_N = mkN "squama" "squamas" ; -- compound ma_N ;
-lin bma_N = mkN "bma" "bmas" ; -- notcompound ma_N ;
-lin chacma_N = mkN "chacma" "chacmas" ; -- compound ma_N ;
-lin grandma_N = mkN "grandma" "grandmas" ; -- compound ma_N ;
-lin edema_N = mkN "edema" "edemas" ; -- compound ma_N ;
-lin lymphedema_N = mkN "lymphedema" "lymphedemas" ; -- compound ma_N ;
-lin papilledema_N = mkN "papilledema" "papilledemas" ; -- compound ma_N ;
-lin angioedema_N = mkN "angioedema" "angioedemas" ; -- compound ma_N ;
-lin scleredema_N = mkN "scleredema" "scleredemas" ; -- compound ma_N ;
-lin myxedema_N = mkN "myxedema" "myxedemas" ; -- compound ma_N ;
-lin schema_N = mkN "schema" "schemas" ; -- compound ma_N ;
-lin hyphema_N = mkN "hyphema" "hyphemas" ; -- compound ma_N ;
-lin anathema_N = mkN "anathema" "anathemas" ; -- compound ma_N ;
-lin erythema_N = mkN "erythema" "erythemas" ; -- compound ma_N ;
-lin ulema_N = mkN "ulema" "ulemas" ; -- compound ma_N ;
-lin enema_N = mkN "enema" "enemas" ; -- compound ma_N ;
-lin cinema_N = mkN "cinema" "cinemas" ; -- compound ma_N ;
-lin treponema_N = mkN "treponema" "treponemas" ; -- compound ma_N ;
-lin emphysema_N = mkN "emphysema" "emphysemas" ; -- compound ma_N ;
-lin diastema_N = mkN "diastema" "diastemas" ; -- compound ma_N ;
-lin blastema_N = mkN "blastema" "blastemas" ; -- compound ma_N ;
-lin empyema_N = mkN "empyema" "empyemas" ; -- compound ma_N ;
-lin eczema_N = mkN "eczema" "eczemas" ; -- compound ma_N ;
-lin magma_N = mkN "magma" "magmas" ; -- compound ma_N ;
-lin syntagma_N = mkN "syntagma" "syntagmas" ; -- compound ma_N ;
-lin smegma_N = mkN "smegma" "smegmas" ; -- compound ma_N ;
-lin bregma_N = mkN "bregma" "bregmas" ; -- compound ma_N ;
-lin enigma_N = mkN "enigma" "enigmas" ; -- compound ma_N ;
-lin sigma_N = mkN "sigma" "sigmas" ; -- compound ma_N ;
-lin stigma_N = mkN "stigma" "stigmas" ; -- compound ma_N ;
-lin dogma_N = mkN "dogma" "dogmas" ; -- compound ma_N ;
-lin zeugma_N = mkN "zeugma" "zeugmas" ; -- compound ma_N ;
-lin hypozeugma_N = mkN "hypozeugma" "hypozeugmas" ; -- compound ma_N ;
-lin kerygma_N = mkN "kerygma" "kerygmas" ; -- compound ma_N ;
-lin drachma_N = mkN "drachma" "drachmas" ; -- compound ma_N ;
-lin asthma_N = mkN "asthma" "asthmas" ; -- compound ma_N ;
-lin anima_N = mkN "anima" "animas" ; -- compound ma_N ;
-lin conima_N = mkN "conima" "conimas" ; -- compound ma_N ;
-lin rima_N = mkN "rima" "rimas" ; -- compound ma_N ;
-lin sima_N = mkN "sima" "simas" ; -- compound ma_N ;
-lin quinquagesima_N = mkN "quinquagesima" "quinquagesimas" ; -- compound ma_N ;
-lin ultima_N = mkN "ultima" "ultimas" ; -- compound ma_N ;
-lin intima_N = mkN "intima" "intimas" ; -- compound ma_N ;
-lin halma_N = mkN "halma" "halmas" ; -- compound ma_N ;
-lin gamma_N = mkN "gamma" "gammas" ; -- compound ma_N ;
-lin mamma_N = mkN "mamma" "mammas" ; -- compound ma_N ;
-lin programma_N = mkN "programma" "programmas" ; -- compound ma_N ;
-lin gemma_N = mkN "gemma" "gemmas" ; -- compound ma_N ;
-lin lemma_N = mkN "lemma" "lemmas" ; -- compound ma_N ;
-lin dilemma_N = mkN "dilemma" "dilemmas" ; -- compound ma_N ;
-lin sarcolemma_N = mkN "sarcolemma" "sarcolemmas" ; -- compound ma_N ;
-lin neurolemma_N = mkN "neurolemma" "neurolemmas" ; -- compound ma_N ;
-lin axolemma_N = mkN "axolemma" "axolemmas" ; -- compound ma_N ;
-lin stemma_N = mkN "stemma" "stemmas" ; -- compound ma_N ;
-lin comma_N = mkN "comma" "commas" ; -- compound ma_N ;
-lin gumma_N = mkN "gumma" "gummas" ; -- compound ma_N ;
-lin lumma_N = mkN "lumma" "lummas" ; -- compound ma_N ;
-lin pyinma_N = mkN "pyinma" "pyinmas" ; -- compound ma_N ;
-lin coma_N = mkN "coma" "comas" ; -- compound ma_N ;
-lin semicoma_N = mkN "semicoma" "semicomas" ; -- compound ma_N ;
-lin sarcoma_N = mkN "sarcoma" "sarcomas" ; -- compound ma_N ;
-lin osteosarcoma_N = mkN "osteosarcoma" "osteosarcomas" ; -- compound ma_N ;
-lin angiosarcoma_N = mkN "angiosarcoma" "angiosarcomas" ; -- compound ma_N ;
-lin carcinosarcoma_N = mkN "carcinosarcoma" "carcinosarcomas" ; -- compound ma_N ;
-lin liposarcoma_N = mkN "liposarcoma" "liposarcomas" ; -- compound ma_N ;
-lin chondrosarcoma_N = mkN "chondrosarcoma" "chondrosarcomas" ; -- compound ma_N ;
-lin neurosarcoma_N = mkN "neurosarcoma" "neurosarcomas" ; -- compound ma_N ;
-lin myosarcoma_N = mkN "myosarcoma" "myosarcomas" ; -- compound ma_N ;
-lin rhabdomyosarcoma_N = mkN "rhabdomyosarcoma" "rhabdomyosarcomas" ; -- compound ma_N ;
-lin leiomyosarcoma_N = mkN "leiomyosarcoma" "leiomyosarcomas" ; -- compound ma_N ;
-lin ascoma_N = mkN "ascoma" "ascomas" ; -- compound ma_N ;
-lin glaucoma_N = mkN "glaucoma" "glaucomas" ; -- compound ma_N ;
-lin hybridoma_N = mkN "hybridoma" "hybridomas" ; -- compound ma_N ;
-lin osteoma_N = mkN "osteoma" "osteomas" ; -- compound ma_N ;
-lin sangoma_N = mkN "sangoma" "sangomas" ; -- compound ma_N ;
-lin zygoma_N = mkN "zygoma" "zygomas" ; -- compound ma_N ;
-lin trachoma_N = mkN "trachoma" "trachomas" ; -- compound ma_N ;
-lin lymphoma_N = mkN "lymphoma" "lymphomas" ; -- compound ma_N ;
-lin acanthoma_N = mkN "acanthoma" "acanthomas" ; -- compound ma_N ;
-lin keratoacanthoma_N = mkN "keratoacanthoma" "keratoacanthomas" ; -- compound ma_N ;
-lin xanthoma_N = mkN "xanthoma" "xanthomas" ; -- compound ma_N ;
-lin angioma_N = mkN "angioma" "angiomas" ; -- compound ma_N ;
-lin lymphangioma_N = mkN "lymphangioma" "lymphangiomas" ; -- compound ma_N ;
-lin hemangioma_N = mkN "hemangioma" "hemangiomas" ; -- compound ma_N ;
-lin meningioma_N = mkN "meningioma" "meningiomas" ; -- compound ma_N ;
-lin celioma_N = mkN "celioma" "celiomas" ; -- compound ma_N ;
-lin epithelioma_N = mkN "epithelioma" "epitheliomas" ; -- compound ma_N ;
-lin neuroepithelioma_N = mkN "neuroepithelioma" "neuroepitheliomas" ; -- compound ma_N ;
-lin mesothelioma_N = mkN "mesothelioma" "mesotheliomas" ; -- compound ma_N ;
-lin glioma_N = mkN "glioma" "gliomas" ; -- compound ma_N ;
-lin leukoma_N = mkN "leukoma" "leukomas" ; -- compound ma_N ;
-lin pinealoma_N = mkN "pinealoma" "pinealomas" ; -- compound ma_N ;
-lin myeloma_N = mkN "myeloma" "myelomas" ; -- compound ma_N ;
-lin papilloma_N = mkN "papilloma" "papillomas" ; -- compound ma_N ;
-lin diploma_N = mkN "diploma" "diplomas" ; -- compound ma_N ;
-lin granuloma_N = mkN "granuloma" "granulomas" ; -- compound ma_N ;
-lin lymphogranuloma_N = mkN "lymphogranuloma" "lymphogranulomas" ; -- compound ma_N ;
-lin psammoma_N = mkN "psammoma" "psammomas" ; -- compound ma_N ;
-lin noma_N = mkN "noma" "nomas" ; -- compound ma_N ;
-lin melanoma_N = mkN "melanoma" "melanomas" ; -- compound ma_N ;
-lin adenoma_N = mkN "adenoma" "adenomas" ; -- compound ma_N ;
-lin lymphadenoma_N = mkN "lymphadenoma" "lymphadenomas" ; -- compound ma_N ;
-lin fibroadenoma_N = mkN "fibroadenoma" "fibroadenomas" ; -- compound ma_N ;
-lin carcinoma_N = mkN "carcinoma" "carcinomas" ; -- compound ma_N ;
-lin adenocarcinoma_N = mkN "adenocarcinoma" "adenocarcinomas" ; -- compound ma_N ;
-lin seminoma_N = mkN "seminoma" "seminomas" ; -- compound ma_N ;
-lin neurinoma_N = mkN "neurinoma" "neurinomas" ; -- compound ma_N ;
-lin lipoma_N = mkN "lipoma" "lipomas" ; -- compound ma_N ;
-lin aroma_N = mkN "aroma" "aromas" ; -- compound ma_N ;
-lin fibroma_N = mkN "fibroma" "fibromas" ; -- compound ma_N ;
-lin neurofibroma_N = mkN "neurofibroma" "neurofibromas" ; -- compound ma_N ;
-lin chondroma_N = mkN "chondroma" "chondromas" ; -- compound ma_N ;
-lin enchondroma_N = mkN "enchondroma" "enchondromas" ; -- compound ma_N ;
-lin osteochondroma_N = mkN "osteochondroma" "osteochondromas" ; -- compound ma_N ;
-lin atheroma_N = mkN "atheroma" "atheromas" ; -- compound ma_N ;
-lin stroma_N = mkN "stroma" "stromas" ; -- compound ma_N ;
-lin neuroma_N = mkN "neuroma" "neuromas" ; -- compound ma_N ;
-lin soma_N = mkN "soma" "somas" ; -- compound ma_N ;
-lin calosoma_N = mkN "calosoma" "calosomas" ; -- compound ma_N ;
-lin hematoma_N = mkN "hematoma" "hematomas" ; -- compound ma_N ;
-lin cephalhematoma_N = mkN "cephalhematoma" "cephalhematomas" ; -- compound ma_N ;
-lin hepatoma_N = mkN "hepatoma" "hepatomas" ; -- compound ma_N ;
-lin teratoma_N = mkN "teratoma" "teratomas" ; -- compound ma_N ;
-lin scotoma_N = mkN "scotoma" "scotomas" ; -- compound ma_N ;
-lin hamartoma_N = mkN "hamartoma" "hamartomas" ; -- compound ma_N ;
-lin stoma_N = mkN "stoma" "stomas" ; -- compound ma_N ;
-lin blastoma_N = mkN "blastoma" "blastomas" ; -- compound ma_N ;
-lin osteoblastoma_N = mkN "osteoblastoma" "osteoblastomas" ; -- compound ma_N ;
-lin glioblastoma_N = mkN "glioblastoma" "glioblastomas" ; -- compound ma_N ;
-lin retinoblastoma_N = mkN "retinoblastoma" "retinoblastomas" ; -- compound ma_N ;
-lin neuroblastoma_N = mkN "neuroblastoma" "neuroblastomas" ; -- compound ma_N ;
-lin plasmacytoma_N = mkN "plasmacytoma" "plasmacytomas" ; -- compound ma_N ;
-lin pheochromocytoma_N = mkN "pheochromocytoma" "pheochromocytomas" ; -- compound ma_N ;
-lin myxoma_N = mkN "myxoma" "myxomas" ; -- compound ma_N ;
-lin polyoma_N = mkN "polyoma" "polyomas" ; -- compound ma_N ;
-lin myoma_N = mkN "myoma" "myomas" ; -- compound ma_N ;
-lin rhabdomyoma_N = mkN "rhabdomyoma" "rhabdomyomas" ; -- compound ma_N ;
-lin leiomyoma_N = mkN "leiomyoma" "leiomyomas" ; -- compound ma_N ;
-lin karma_N = mkN "karma" "karmas" ; -- compound ma_N ;
-lin leukoderma_N = mkN "leukoderma" "leukodermas" ; -- compound ma_N ;
-lin melanoderma_N = mkN "melanoderma" "melanodermas" ; -- compound ma_N ;
-lin scleroderma_N = mkN "scleroderma" "sclerodermas" ; -- compound ma_N ;
-lin xeroderma_N = mkN "xeroderma" "xerodermas" ; -- compound ma_N ;
-lin erythroderma_N = mkN "erythroderma" "erythrodermas" ; -- compound ma_N ;
-lin keratoderma_N = mkN "keratoderma" "keratodermas" ; -- compound ma_N ;
-lin 'terra firma_N' = mkN "terra firma" "terra firmas" ; -- compound ma_N ;
-lin chiasma_N = mkN "chiasma" "chiasmas" ; -- compound ma_N ;
-lin miasma_N = mkN "miasma" "miasmas" ; -- compound ma_N ;
-lin xanthelasma_N = mkN "xanthelasma" "xanthelasmas" ; -- compound ma_N ;
-lin plasma_N = mkN "plasma" "plasmas" ; -- compound ma_N ;
-lin mycoplasma_N = mkN "mycoplasma" "mycoplasmas" ; -- compound ma_N ;
-lin chloasma_N = mkN "chloasma" "chloasmas" ; -- compound ma_N ;
-lin charisma_N = mkN "charisma" "charismas" ; -- compound ma_N ;
-lin xylosma_N = mkN "xylosma" "xylosmas" ; -- compound ma_N ;
-lin platysma_N = mkN "platysma" "platysmas" ; -- compound ma_N ;
-lin mahatma_N = mkN "mahatma" "mahatmas" ; -- compound ma_N ;
-lin trauma_N = mkN "trauma" "traumas" ; -- compound ma_N ;
-lin amphiuma_N = mkN "amphiuma" "amphiumas" ; -- compound ma_N ;
-lin puma_N = mkN "puma" "pumas" ; -- compound ma_N ;
-lin satsuma_N = mkN "satsuma" "satsumas" ; -- compound ma_N ;
-lin cyma_N = mkN "cyma" "cymas" ; -- compound ma_N ;
-lin ependyma_N = mkN "ependyma" "ependymas" ; -- compound ma_N ;
-lin parenchyma_N = mkN "parenchyma" "parenchymas" ; -- compound ma_N ;
-lin chlorenchyma_N = mkN "chlorenchyma" "chlorenchymas" ; -- compound ma_N ;
-lin rhinophyma_N = mkN "rhinophyma" "rhinophymas" ; -- compound ma_N ;
-lin ana_N = mkN "ana" "anas" ;
-lin cabana_N = mkN "cabana" "cabanas" ; -- compound ana_N ;
-lin apadana_N = mkN "apadana" "apadanas" ; -- compound ana_N ;
-lin gymkhana_N = mkN "gymkhana" "gymkhanas" ; -- compound ana_N ;
-lin dulciana_N = mkN "dulciana" "dulcianas" ; -- compound ana_N ;
-lin liana_N = mkN "liana" "lianas" ; -- compound ana_N ;
-lin victoriana_N = mkN "victoriana" "victorianas" ; -- compound ana_N ;
-lin banana_N = mkN "banana" "bananas" ; -- compound ana_N ;
-lin manana_N = mkN "manana" "mananas" ; -- compound ana_N ;
-lin ayapana_N = mkN "ayapana" "ayapanas" ; -- compound ana_N ;
-lin asana_N = mkN "asana" "asanas" ; -- compound ana_N ;
-lin gitana_N = mkN "gitana" "gitanas" ; -- compound ana_N ;
-lin sultana_N = mkN "sultana" "sultanas" ; -- compound ana_N ;
-lin lantana_N = mkN "lantana" "lantanas" ; -- compound ana_N ;
-lin iguana_N = mkN "iguana" "iguanas" ; -- compound ana_N ;
-lin marihuana_N = mkN "marihuana" "marihuanas" ; -- compound ana_N ;
-lin marijuana_N = mkN "marijuana" "marijuanas" ; -- compound ana_N ;
-lin havana_N = mkN "havana" "havanas" ; -- compound ana_N ;
-lin nirvana_N = mkN "nirvana" "nirvanas" ; -- compound ana_N ;
-lin tswana_N = mkN "tswana" "tswanas" ; -- notcompound ana_N ;
-lin setswana_N = mkN "setswana" "setswanas" ; -- compound ana_N ;
-lin echidna_N = mkN "echidna" "echidnas" ;
-lin amphisbaena_N = mkN "amphisbaena" "amphisbaenas" ;
-lin dracaena_N = mkN "dracaena" "dracaenas" ;
-lin hyaena_N = mkN "hyaena" "hyaenas" ;
-lin verbena_N = mkN "verbena" "verbenas" ;
-lin galena_N = mkN "galena" "galenas" ;
-lin melena_N = mkN "melena" "melenas" ;
-lin euglena_N = mkN "euglena" "euglenas" ;
-lin tetrahymena_N = mkN "tetrahymena" "tetrahymenas" ;
-lin subpoena_N = mkN "subpoena" "subpoenas" ;
-lin arena_N = mkN "arena" "arenas" ;
-lin andrena_N = mkN "andrena" "andrenas" ;
-lin catena_N = mkN "catena" "catenas" ;
-lin novena_N = mkN "novena" "novenas" ;
-lin hyena_N = mkN "hyena" "hyenas" ;
-lin ozena_N = mkN "ozena" "ozenas" ;
-lin lasagna_N = mkN "lasagna" "lasagnas" ;
-lin bologna_N = mkN "bologna" "bolognas" ;
-lin corbina_N = mkN "corbina" "corbinas" ;
-lin discina_N = mkN "discina" "discinas" ;
-lin medina_N = mkN "medina" "medinas" ;
-lin vagina_N = mkN "vagina" "vaginas" ;
-lin angina_N = mkN "angina" "anginas" ;
-lin china_N = mkN "china" "chinas" ;
-lin 'crackle-china_N' = mkN "crackle-china" "crackle-chinas" ; -- compound china_N ;
-lin kachina_N = mkN "kachina" "kachinas" ; -- compound china_N ;
-lin trichina_N = mkN "trichina" "trichinas" ; -- compound china_N ;
-lin kina_N = mkN "kina" "kinas" ;
-lin commelina_N = mkN "commelina" "commelinas" ;
-lin semolina_N = mkN "semolina" "semolinas" ;
-lin lamina_N = mkN "lamina" "laminas" ;
-lin stamina_N = mkN "stamina" "staminas" ;
-lin alumina_N = mkN "alumina" "aluminas" ;
-lin carina_N = mkN "carina" "carinas" ;
-lin ocarina_N = mkN "ocarina" "ocarinas" ; -- notcompound carina_N ;
-lin farina_N = mkN "farina" "farinas" ;
-lin marina_N = mkN "marina" "marinas" ;
-lin tsarina_N = mkN "tsarina" "tsarinas" ;
-lin casuarina_N = mkN "casuarina" "casuarinas" ;
-lin czarina_N = mkN "czarina" "czarinas" ;
-lin tzarina_N = mkN "tzarina" "tzarinas" ;
-lin globigerina_N = mkN "globigerina" "globigerinas" ;
-lin ballerina_N = mkN "ballerina" "ballerinas" ;
-lin 'prima ballerina_N' = mkN "prima ballerina" "prima ballerinas" ; -- compound ballerina_N ;
-lin signorina_N = mkN "signorina" "signorinas" ;
-lin retsina_N = mkN "retsina" "retsinas" ;
-lin sonatina_N = mkN "sonatina" "sonatinas" ;
-lin patina_N = mkN "patina" "patinas" ;
-lin retina_N = mkN "retina" "retinas" ;
-lin neritina_N = mkN "neritina" "neritinas" ;
-lin concertina_N = mkN "concertina" "concertinas" ;
-lin cortina_N = mkN "cortina" "cortinas" ;
-lin anna_N = mkN "anna" "annas" ;
-lin canna_N = mkN "canna" "cannas" ; -- notcompound anna_N ;
-lin bandanna_N = mkN "bandanna" "bandannas" ; -- compound anna_N ;
-lin manna_N = mkN "manna" "mannas" ; -- notcompound anna_N ;
-lin hosanna_N = mkN "hosanna" "hosannas" ; -- compound anna_N ;
-lin savanna_N = mkN "savanna" "savannas" ; -- compound anna_N ;
-lin henna_N = mkN "henna" "hennas" ;
-lin sienna_N = mkN "sienna" "siennas" ;
-lin senna_N = mkN "senna" "sennas" ;
-lin duenna_N = mkN "duenna" "duennas" ;
-lin pinna_N = mkN "pinna" "pinnas" ;
-lin donna_N = mkN "donna" "donnas" ;
-lin 'prima donna_N' = mkN "prima donna" "prima donnas" ; -- compound donna_N ;
-lin belladonna_N = mkN "belladonna" "belladonnas" ; -- compound donna_N ;
-lin madonna_N = mkN "madonna" "madonnas" ; -- compound donna_N ;
-lin othonna_N = mkN "othonna" "othonnas" ;
-lin cinchona_N = mkN "cinchona" "cinchonas" ;
-lin madrona_N = mkN "madrona" "madronas" ;
-lin corona_N = mkN "corona" "coronas" ;
-lin persona_N = mkN "persona" "personas" ;
-lin varna_N = mkN "varna" "varnas" ;
-lin cisterna_N = mkN "cisterna" "cisternas" ;
-lin fauna_N = mkN "fauna" "faunas" ;
-lin avifauna_N = mkN "avifauna" "avifaunas" ; -- compound fauna_N ;
-lin sauna_N = mkN "sauna" "saunas" ;
-lin buna_N = mkN "buna" "bunas" ;
-lin lacuna_N = mkN "lacuna" "lacunas" ;
-lin mucuna_N = mkN "mucuna" "mucunas" ;
-lin koruna_N = mkN "koruna" "korunas" ;
-lin myna_N = mkN "myna" "mynas" ;
-lin amboyna_N = mkN "amboyna" "amboynas" ;
-lin boa_N = mkN "boa" "boas" ;
-lin 'feather-boa_N' = mkN "feather-boa" "feather-boas" ; -- compound boa_N ;
-lin balboa_N = mkN "balboa" "balboas" ; -- compound boa_N ;
-lin jerboa_N = mkN "jerboa" "jerboas" ; -- compound boa_N ;
-lin cocoa_N = mkN "cocoa" "cocoas" ;
-lin feijoa_N = mkN "feijoa" "feijoas" ;
-lin holloa_N = mkN "holloa" "holloas" ;
-lin moa_N = mkN "moa" "moas" ;
-lin anoa_N = mkN "anoa" "anoas" ;
-lin curaçoa_N = mkN "curaçoa" "curaçoas" ;
-lin pa_N = mkN "pa" "pas" ;
-lin papa_N = mkN "papa" "papas" ; -- compound pa_N ;
-lin tapa_N = mkN "tapa" "tapas" ; -- compound pa_N ;
-lin grandpa_N = mkN "grandpa" "grandpas" ; -- compound pa_N ;
-lin thiotepa_N = mkN "thiotepa" "thiotepas" ; -- compound pa_N ;
-lin nipa_N = mkN "nipa" "nipas" ; -- compound pa_N ;
-lin genipa_N = mkN "genipa" "genipas" ; -- compound pa_N ;
-lin catalpa_N = mkN "catalpa" "catalpas" ; -- compound pa_N ;
-lin limpa_N = mkN "limpa" "limpas" ; -- compound pa_N ;
-lin dopa_N = mkN "dopa" "dopas" ; -- compound pa_N ;
-lin methyldopa_N = mkN "methyldopa" "methyldopas" ; -- compound pa_N ;
-lin kappa_N = mkN "kappa" "kappas" ; -- compound pa_N ;
-lin grappa_N = mkN "grappa" "grappas" ; -- compound pa_N ;
-lin poppa_N = mkN "poppa" "poppas" ; -- compound pa_N ;
-lin cuppa_N = mkN "cuppa" "cuppas" ; -- compound pa_N ;
-lin spa_N = mkN "spa" "spas" ; -- notcompound pa_N ;
-lin pupa_N = mkN "pupa" "pupas" ; -- compound pa_N ;
-lin marupa_N = mkN "marupa" "marupas" ; -- compound pa_N ;
-lin stupa_N = mkN "stupa" "stupas" ; -- compound pa_N ;
-lin chutzpa_N = mkN "chutzpa" "chutzpas" ; -- compound pa_N ;
-lin burqa_N = mkN "burqa" "burqas" ;
-lin ra_N = mkN "ra" "ras" ;
-lin capybara_N = mkN "capybara" "capybaras" ; -- compound ra_N ;
-lin caracara_N = mkN "caracara" "caracaras" ; -- compound ra_N ;
-lin cascara_N = mkN "cascara" "cascaras" ; -- compound ra_N ;
-lin mascara_N = mkN "mascara" "mascaras" ; -- compound ra_N ;
-lin tiara_N = mkN "tiara" "tiaras" ; -- compound ra_N ;
-lin mara_N = mkN "mara" "maras" ; -- compound ra_N ;
-lin samara_N = mkN "samara" "samaras" ; -- compound ra_N ;
-lin marinara_N = mkN "marinara" "marinaras" ; -- compound ra_N ;
-lin carbonara_N = mkN "carbonara" "carbonaras" ; -- compound ra_N ;
-lin para_N = mkN "para" "paras" ; -- compound ra_N ;
-lin nullipara_N = mkN "nullipara" "nulliparas" ; -- compound ra_N ;
-lin primipara_N = mkN "primipara" "primiparas" ; -- compound ra_N ;
-lin quadripara_N = mkN "quadripara" "quadriparas" ; -- compound ra_N ;
-lin quintipara_N = mkN "quintipara" "quintiparas" ; -- compound ra_N ;
-lin demerara_N = mkN "demerara" "demeraras" ; -- compound ra_N ;
-lin samsara_N = mkN "samsara" "samsaras" ; -- compound ra_N ;
-lin tuatara_N = mkN "tuatara" "tuataras" ; -- compound ra_N ;
-lin totara_N = mkN "totara" "totaras" ; -- compound ra_N ;
-lin vara_N = mkN "vara" "varas" ; -- compound ra_N ;
-lin bra_N = mkN "bra" "bras" ; -- notcompound ra_N ;
-lin abracadabra_N = mkN "abracadabra" "abracadabras" ; -- compound ra_N ;
-lin sabra_N = mkN "sabra" "sabras" ; -- compound ra_N ;
-lin algebra_N = mkN "algebra" "algebras" ; -- compound ra_N ;
-lin zebra_N = mkN "zebra" "zebras" ; -- compound ra_N ;
-lin umbra_N = mkN "umbra" "umbras" ; -- compound ra_N ;
-lin penumbra_N = mkN "penumbra" "penumbras" ; -- compound ra_N ;
-lin cobra_N = mkN "cobra" "cobras" ; -- compound ra_N ;
-lin dobra_N = mkN "dobra" "dobras" ; -- compound ra_N ;
-lin ephedra_N = mkN "ephedra" "ephedras" ; -- compound ra_N ;
-lin cathedra_N = mkN "cathedra" "cathedras" ; -- compound ra_N ;
-lin calliandra_N = mkN "calliandra" "calliandras" ; -- compound ra_N ;
-lin pachysandra_N = mkN "pachysandra" "pachysandras" ; -- compound ra_N ;
-lin matsyendra_N = mkN "matsyendra" "matsyendras" ; -- compound ra_N ;
-lin dichondra_N = mkN "dichondra" "dichondras" ; -- compound ra_N ;
-lin tundra_N = mkN "tundra" "tundras" ; -- compound ra_N ;
-lin mudra_N = mkN "mudra" "mudras" ; -- compound ra_N ;
-lin sudra_N = mkN "sudra" "sudras" ; -- compound ra_N ;
-lin hydra_N = mkN "hydra" "hydras" ; -- compound ra_N ;
-lin era_N = mkN "era" "eras" ; -- notcompound ra_N ;
-lin chimaera_N = mkN "chimaera" "chimaeras" ; -- compound ra_N ;
-lin chelicera_N = mkN "chelicera" "cheliceras" ; -- compound ra_N ;
-lin viscera_N = mkN "viscera" "visceras" ; -- compound ra_N ;
-lin caldera_N = mkN "caldera" "calderas" ; -- compound ra_N ;
-lin curandera_N = mkN "curandera" "curanderas" ; -- compound ra_N ;
-lin vinifera_N = mkN "vinifera" "viniferas" ; -- compound ra_N ;
-lin forestiera_N = mkN "forestiera" "forestieras" ; -- compound ra_N ;
-lin sclera_N = mkN "sclera" "scleras" ; -- compound ra_N ;
-lin cholera_N = mkN "cholera" "choleras" ; -- compound ra_N ;
-lin camera_N = mkN "camera" "cameras" ; -- compound ra_N ;
-lin 'cine-camera_N' = mkN "cine-camera" "cine-cameras" ; -- compound ra_N ;
-lin ephemera_N = mkN "ephemera" "ephemeras" ; -- compound ra_N ;
-lin chimera_N = mkN "chimera" "chimeras" ; -- compound ra_N ;
-lin diapheromera_N = mkN "diapheromera" "diapheromeras" ; -- compound ra_N ;
-lin habanera_N = mkN "habanera" "habaneras" ; -- compound ra_N ;
-lin scorzonera_N = mkN "scorzonera" "scorzoneras" ; -- compound ra_N ;
-lin tempera_N = mkN "tempera" "temperas" ; -- compound ra_N ;
-lin opera_N = mkN "opera" "operas" ; -- compound ra_N ;
-lin 'soap-opera_N' = mkN "soap-opera" "soap-operas" ; -- compound ra_N ;
-lin puerpera_N = mkN "puerpera" "puerperas" ; -- compound ra_N ;
-lin tessera_N = mkN "tessera" "tesseras" ; -- compound ra_N ;
-lin etcetera_N = mkN "etcetera" "etceteras" ; -- compound ra_N ;
-lin monstera_N = mkN "monstera" "monsteras" ; -- compound ra_N ;
-lin melagra_N = mkN "melagra" "melagras" ; -- compound ra_N ;
-lin pellagra_N = mkN "pellagra" "pellagras" ; -- compound ra_N ;
-lin chaulmoogra_N = mkN "chaulmoogra" "chaulmoogras" ; -- compound ra_N ;
-lin urethra_N = mkN "urethra" "urethras" ; -- compound ra_N ;
-lin ira_N = mkN "ira" "iras" ; -- notcompound ra_N ;
-lin naira_N = mkN "naira" "nairas" ; -- compound ra_N ;
-lin madeira_N = mkN "madeira" "madeiras" ; -- compound ra_N ;
-lin hegira_N = mkN "hegira" "hegiras" ; -- compound ra_N ;
-lin achira_N = mkN "achira" "achiras" ; -- compound ra_N ;
-lin hejira_N = mkN "hejira" "hejiras" ; -- compound ra_N ;
-lin lira_N = mkN "lira" "liras" ; -- compound ra_N ;
-lin lempira_N = mkN "lempira" "lempiras" ; -- compound ra_N ;
-lin leptospira_N = mkN "leptospira" "leptospiras" ; -- compound ra_N ;
-lin quira_N = mkN "quira" "quiras" ; -- compound ra_N ;
-lin okra_N = mkN "okra" "okras" ; -- compound ra_N ;
-lin maquiladora_N = mkN "maquiladora" "maquiladoras" ; -- compound ra_N ;
-lin fedora_N = mkN "fedora" "fedoras" ; -- compound ra_N ;
-lin agora_N = mkN "agora" "agoras" ; -- compound ra_N ;
-lin mandragora_N = mkN "mandragora" "mandragoras" ; -- compound ra_N ;
-lin angora_N = mkN "angora" "angoras" ; -- compound ra_N ;
-lin anaphora_N = mkN "anaphora" "anaphoras" ; -- compound ra_N ;
-lin epanaphora_N = mkN "epanaphora" "epanaphoras" ; -- compound ra_N ;
-lin epiphora_N = mkN "epiphora" "epiphoras" ; -- compound ra_N ;
-lin amphora_N = mkN "amphora" "amphoras" ; -- compound ra_N ;
-lin plethora_N = mkN "plethora" "plethoras" ; -- compound ra_N ;
-lin rariora_N = mkN "rariora" "rarioras" ; -- compound ra_N ;
-lin multiflora_N = mkN "multiflora" "multifloras" ; -- compound ra_N ;
-lin microflora_N = mkN "microflora" "microfloras" ; -- compound ra_N ;
-lin amora_N = mkN "amora" "amoras" ; -- compound ra_N ;
-lin remora_N = mkN "remora" "remoras" ; -- compound ra_N ;
-lin lecanora_N = mkN "lecanora" "lecanoras" ; -- compound ra_N ;
-lin senora_N = mkN "senora" "senoras" ; -- compound ra_N ;
-lin signora_N = mkN "signora" "signoras" ; -- compound ra_N ;
-lin diaspora_N = mkN "diaspora" "diasporas" ; -- compound ra_N ;
-lin aurora_N = mkN "aurora" "auroras" ; -- compound ra_N ;
-lin copra_N = mkN "copra" "copras" ; -- compound ra_N ;
-lin mojarra_N = mkN "mojarra" "mojarras" ; -- compound ra_N ;
-lin sierra_N = mkN "sierra" "sierras" ; -- compound ra_N ;
-lin kookaburra_N = mkN "kookaburra" "kookaburras" ; -- compound ra_N ;
-lin durra_N = mkN "durra" "durras" ; -- compound ra_N ;
-lin hematocolpometra_N = mkN "hematocolpometra" "hematocolpometras" ; -- compound ra_N ;
-lin tetra_N = mkN "tetra" "tetras" ; -- compound ra_N ;
-lin gyromitra_N = mkN "gyromitra" "gyromitras" ; -- compound ra_N ;
-lin mantra_N = mkN "mantra" "mantras" ; -- compound ra_N ;
-lin tantra_N = mkN "tantra" "tantras" ; -- compound ra_N ;
-lin calyptra_N = mkN "calyptra" "calyptras" ; -- compound ra_N ;
-lin orchestra_N = mkN "orchestra" "orchestras" ; -- compound ra_N ;
-lin 'dance-orchestra_N' = mkN "dance-orchestra" "dance-orchestras" ; -- compound ra_N ;
-lin palestra_N = mkN "palestra" "palestras" ; -- compound ra_N ;
-lin fenestra_N = mkN "fenestra" "fenestras" ; -- compound ra_N ;
-lin aspidistra_N = mkN "aspidistra" "aspidistras" ; -- compound ra_N ;
-lin sutra_N = mkN "sutra" "sutras" ; -- compound ra_N ;
-lin extra_N = mkN "extra" "extras" ; -- compound ra_N ;
-lin aura_N = mkN "aura" "auras" ; -- compound ra_N ;
-lin pleura_N = mkN "pleura" "pleuras" ; -- compound ra_N ;
-lin tempura_N = mkN "tempura" "tempuras" ; -- compound ra_N ;
-lin purpura_N = mkN "purpura" "purpuras" ; -- compound ra_N ;
-lin sura_N = mkN "sura" "suras" ; -- compound ra_N ;
-lin caesura_N = mkN "caesura" "caesuras" ; -- compound ra_N ;
-lin nomenklatura_N = mkN "nomenklatura" "nomenklaturas" ; -- compound ra_N ;
-lin coloratura_N = mkN "coloratura" "coloraturas" ; -- compound ra_N ;
-lin angostura_N = mkN "angostura" "angosturas" ; -- compound ra_N ;
-lin bravura_N = mkN "bravura" "bravuras" ; -- compound ra_N ;
-lin tayra_N = mkN "tayra" "tayras" ; -- compound ra_N ;
-lin spirogyra_N = mkN "spirogyra" "spirogyras" ; -- compound ra_N ;
-lin palmyra_N = mkN "palmyra" "palmyras" ; -- compound ra_N ;
-lin bahasa_N = mkN "bahasa" "bahasas" ;
-lin loasa_N = mkN "loasa" "loasas" ;
-lin madrasa_N = mkN "madrasa" "madrasas" ;
-lin msasa_N = mkN "msasa" "msasas" ;
-lin pdsa_N = mkN "pdsa" "pdsas" ;
-lin mesa_N = mkN "mesa" "mesas" ;
-lin paisa_N = mkN "paisa" "paisas" ;
-lin disa_N = mkN "disa" "disas" ;
-lin visa_N = mkN "visa" "visas" ;
-lin shiksa_N = mkN "shiksa" "shiksas" ;
-lin moksa_N = mkN "moksa" "moksas" ;
-lin balsa_N = mkN "balsa" "balsas" ;
-lin phalsa_N = mkN "phalsa" "phalsas" ;
-lin salsa_N = mkN "salsa" "salsas" ;
-lin ahimsa_N = mkN "ahimsa" "ahimsas" ;
-lin bosa_N = mkN "bosa" "bosas" ;
-lin submucosa_N = mkN "submucosa" "submucosas" ;
-lin gloriosa_N = mkN "gloriosa" "gloriosas" ;
-lin curiosa_N = mkN "curiosa" "curiosas" ;
-lin melosa_N = mkN "melosa" "melosas" ;
-lin samosa_N = mkN "samosa" "samosas" ;
-lin mimosa_N = mkN "mimosa" "mimosas" ;
-lin mariposa_N = mkN "mariposa" "mariposas" ;
-lin ponderosa_N = mkN "ponderosa" "ponderosas" ;
-lin bursa_N = mkN "bursa" "bursas" ;
-lin abscissa_N = mkN "abscissa" "abscissas" ;
-lin carissa_N = mkN "carissa" "carissas" ;
-lin mantissa_N = mkN "mantissa" "mantissas" ;
-lin fossa_N = mkN "fossa" "fossas" ;
-lin medusa_N = mkN "medusa" "medusas" ;
-lin anchusa_N = mkN "anchusa" "anchusas" ;
-lin arethusa_N = mkN "arethusa" "arethusas" ;
-lin babirusa_N = mkN "babirusa" "babirusas" ;
-lin physa_N = mkN "physa" "physas" ;
-lin toccata_N = mkN "toccata" "toccatas" ;
-lin metadata_N = mkN "metadata" "metadatas" ;
-lin balata_N = mkN "balata" "balatas" ;
-lin chipolata_N = mkN "chipolata" "chipolatas" ;
-lin stigmata_N = mkN "stigmata" "stigmatas" ;
-lin fermata_N = mkN "fermata" "fermatas" ;
-lin pinata_N = mkN "pinata" "pinatas" ;
-lin sonata_N = mkN "sonata" "sonatas" ;
-lin inamorata_N = mkN "inamorata" "inamoratas" ;
-lin cantata_N = mkN "cantata" "cantatas" ;
-lin frittata_N = mkN "frittata" "frittatas" ;
-lin exacta_N = mkN "exacta" "exactas" ;
-lin superfecta_N = mkN "superfecta" "superfectas" ;
-lin eta_N = mkN "eta" "etas" ;
-lin chaeta_N = mkN "chaeta" "chaetas" ; -- compound eta_N ;
-lin beta_N = mkN "beta" "betas" ; -- notcompound eta_N ;
-lin taffeta_N = mkN "taffeta" "taffetas" ; -- compound eta_N ;
-lin theta_N = mkN "theta" "thetas" ; -- notcompound eta_N ;
-lin palometa_N = mkN "palometa" "palometas" ; -- compound eta_N ;
-lin seta_N = mkN "seta" "setas" ; -- notcompound eta_N ;
-lin peseta_N = mkN "peseta" "pesetas" ; -- compound eta_N ;
-lin zeta_N = mkN "zeta" "zetas" ; -- notcompound eta_N ;
-lin efta_N = mkN "efta" "eftas" ;
-lin raita_N = mkN "raita" "raitas" ;
-lin dita_N = mkN "dita" "ditas" ;
-lin manzanita_N = mkN "manzanita" "manzanitas" ;
-lin 'terra incognita_N' = mkN "terra incognita" "terra incognitas" ;
-lin pita_N = mkN "pita" "pitas" ;
-lin margarita_N = mkN "margarita" "margaritas" ;
-lin nerita_N = mkN "nerita" "neritas" ;
-lin feterita_N = mkN "feterita" "feteritas" ;
-lin senorita_N = mkN "senorita" "senoritas" ;
-lin rosita_N = mkN "rosita" "rositas" ;
-lin partita_N = mkN "partita" "partitas" ;
-lin vaquita_N = mkN "vaquita" "vaquitas" ;
-lin delta_N = mkN "delta" "deltas" ;
-lin manta_N = mkN "manta" "mantas" ;
-lin maranta_N = mkN "maranta" "marantas" ;
-lin placenta_N = mkN "placenta" "placentas" ;
-lin irredenta_N = mkN "irredenta" "irredentas" ;
-lin magenta_N = mkN "magenta" "magentas" ;
-lin polenta_N = mkN "polenta" "polentas" ;
-lin impedimenta_N = mkN "impedimenta" "impedimentas" ;
-lin yenta_N = mkN "yenta" "yentas" ;
-lin junta_N = mkN "junta" "juntas" ;
-lin bota_N = mkN "bota" "botas" ;
-lin iota_N = mkN "iota" "iotas" ;
-lin biota_N = mkN "biota" "biotas" ; -- notcompound iota_N ;
-lin lepiota_N = mkN "lepiota" "lepiotas" ; -- compound iota_N ;
-lin lota_N = mkN "lota" "lotas" ;
-lin pelota_N = mkN "pelota" "pelotas" ; -- compound lota_N ;
-lin rota_N = mkN "rota" "rotas" ;
-lin quota_N = mkN "quota" "quotas" ;
-lin pta_N = mkN "pta" "ptas" ;
-lin smarta_N = mkN "smarta" "smartas" ;
-lin omerta_N = mkN "omerta" "omertas" ;
-lin aorta_N = mkN "aorta" "aortas" ;
-lin kurta_N = mkN "kurta" "kurtas" ;
-lin canasta_N = mkN "canasta" "canastas" ;
-lin pasta_N = mkN "pasta" "pastas" ;
-lin ingesta_N = mkN "ingesta" "ingestas" ;
-lin fiesta_N = mkN "fiesta" "fiestas" ;
-lin siesta_N = mkN "siesta" "siestas" ;
-lin celesta_N = mkN "celesta" "celestas" ;
-lin testa_N = mkN "testa" "testas" ;
-lin gangsta_N = mkN "gangsta" "gangstas" ;
-lin fascista_N = mkN "fascista" "fascistas" ;
-lin arista_N = mkN "arista" "aristas" ;
-lin vista_N = mkN "vista" "vistas" ;
-lin costa_N = mkN "costa" "costas" ;
-lin regatta_N = mkN "regatta" "regattas" ;
-lin vendetta_N = mkN "vendetta" "vendettas" ;
-lin arietta_N = mkN "arietta" "ariettas" ;
-lin operetta_N = mkN "operetta" "operettas" ;
-lin biretta_N = mkN "biretta" "birettas" ;
-lin sagitta_N = mkN "sagitta" "sagittas" ;
-lin pitta_N = mkN "pitta" "pittas" ;
-lin 'terra-cotta_N' = mkN "terra-cotta" "terra-cottas" ;
-lin ricotta_N = mkN "ricotta" "ricottas" ;
-lin likuta_N = mkN "likuta" "likutas" ;
-lin barracouta_N = mkN "barracouta" "barracoutas" ;
-lin baryta_N = mkN "baryta" "barytas" ;
-lin decidua_N = mkN "decidua" "deciduas" ;
-lin tamandua_N = mkN "tamandua" "tamanduas" ;
-lin agua_N = mkN "agua" "aguas" ;
-lin skua_N = mkN "skua" "skuas" ;
-lin mantua_N = mkN "mantua" "mantuas" ;
-lin kava_N = mkN "kava" "kavas" ;
-lin lava_N = mkN "lava" "lavas" ;
-lin lavalava_N = mkN "lavalava" "lavalavas" ; -- compound lava_N ;
-lin balaclava_N = mkN "balaclava" "balaclavas" ; -- compound lava_N ;
-lin baklava_N = mkN "baklava" "baklavas" ; -- compound lava_N ;
-lin cassava_N = mkN "cassava" "cassavas" ;
-lin guava_N = mkN "guava" "guavas" ;
-lin geneva_N = mkN "geneva" "genevas" ;
-lin gingiva_N = mkN "gingiva" "gingivas" ;
-lin shiva_N = mkN "shiva" "shivas" ;
-lin yeshiva_N = mkN "yeshiva" "yeshivas" ; -- compound shiva_N ;
-lin saliva_N = mkN "saliva" "salivas" ;
-lin conjunctiva_N = mkN "conjunctiva" "conjunctivas" ;
-lin viva_N = mkN "viva" "vivas" ;
-lin silva_N = mkN "silva" "silvas" ;
-lin volva_N = mkN "volva" "volvas" ;
-lin vulva_N = mkN "vulva" "vulvas" ;
-lin pavlova_N = mkN "pavlova" "pavlovas" ;
-lin nova_N = mkN "nova" "novas" ;
-lin supernova_N = mkN "supernova" "supernovas" ; -- compound nova_N ;
-lin conferva_N = mkN "conferva" "confervas" ;
-lin dhawa_N = mkN "dhawa" "dhawas" ;
-lin pesewa_N = mkN "pesewa" "pesewas" ;
-lin pipsissewa_N = mkN "pipsissewa" "pipsissewas" ;
-lin schwa_N = mkN "schwa" "schwas" ;
-lin fatwa_N = mkN "fatwa" "fatwas" ;
-lin kalansuwa_N = mkN "kalansuwa" "kalansuwas" ;
-lin adnexa_N = mkN "adnexa" "adnexas" ;
-lin baya_N = mkN "baya" "bayas" ;
-lin abaya_N = mkN "abaya" "abayas" ; -- notcompound baya_N ;
-lin pitahaya_N = mkN "pitahaya" "pitahayas" ;
-lin jambalaya_N = mkN "jambalaya" "jambalayas" ;
-lin papaya_N = mkN "papaya" "papayas" ;
-lin praya_N = mkN "praya" "prayas" ;
-lin calisaya_N = mkN "calisaya" "calisayas" ;
-lin dombeya_N = mkN "dombeya" "dombeyas" ;
-lin buckleya_N = mkN "buckleya" "buckleyas" ;
-lin cattleya_N = mkN "cattleya" "cattleyas" ;
-lin ouguiya_N = mkN "ouguiya" "ouguiyas" ;
-lin rajanya_N = mkN "rajanya" "rajanyas" ;
-lin polynya_N = mkN "polynya" "polynyas" ;
-lin hoya_N = mkN "hoya" "hoyas" ;
-lin cherimoya_N = mkN "cherimoya" "cherimoyas" ;
-lin soya_N = mkN "soya" "soyas" ;
-lin pya_N = mkN "pya" "pyas" ;
-lin rya_N = mkN "rya" "ryas" ;
-lin vaisya_N = mkN "vaisya" "vaisyas" ;
-lin chalaza_N = mkN "chalaza" "chalazas" ;
-lin plaza_N = mkN "plaza" "plazas" ;
-lin guereza_N = mkN "guereza" "guerezas" ;
-lin baiza_N = mkN "baiza" "baizas" ;
-lin liza_N = mkN "liza" "lizas" ;
-lin mestiza_N = mkN "mestiza" "mestizas" ;
-lin extravaganza_N = mkN "extravaganza" "extravaganzas" ;
-lin organza_N = mkN "organza" "organzas" ;
-lin bonanza_N = mkN "bonanza" "bonanzas" ;
-lin stanza_N = mkN "stanza" "stanzas" ;
-lin kwanza_N = mkN "kwanza" "kwanzas" ;
-lin cadenza_N = mkN "cadenza" "cadenzas" ;
-lin credenza_N = mkN "credenza" "credenzas" ;
-lin influenza_N = mkN "influenza" "influenzas" ;
-lin boza_N = mkN "boza" "bozas" ;
-lin yakuza_N = mkN "yakuza" "yakuzas" ;
-lin piazza_N = mkN "piazza" "piazzas" ;
-lin pizza_N = mkN "pizza" "pizzas" ;
-lin vicuña_N = mkN "vicuña" "vicuñas" ;
-lin lib_N = mkN "lib" "IRREG" ;
-lin bob_N = mkN "bob" "bob" ;
-lin chebab_N = mkN "chebab" "chebabs" ;
-lin kebab_N = mkN "kebab" "kebabs" ;
-lin 'shish kebab_N' = mkN "shish kebab" "shish kebabs" ; -- compound kebab_N ;
-lin baobab_N = mkN "baobab" "baobabs" ;
-lin cab_N = mkN "cab" "cabs" ;
-lin pedicab_N = mkN "pedicab" "pedicabs" ; -- compound cab_N ;
-lin minicab_N = mkN "minicab" "minicabs" ; -- compound cab_N ;
-lin taxicab_N = mkN "taxicab" "taxicabs" ; -- compound cab_N ;
-lin scab_N = mkN "scab" "scabs" ; -- notcompound cab_N ;
-lin dab_N = mkN "dab" "dabs" ;
-lin prefab_N = mkN "prefab" "prefabs" ;
-lin confab_N = mkN "confab" "confabs" ;
-lin gab_N = mkN "gab" "gabs" ;
-lin jab_N = mkN "jab" "jabs" ;
-lin hijab_N = mkN "hijab" "hijabs" ; -- compound jab_N ;
-lin lab_N = mkN "lab" "labs" ;
-lin flab_N = mkN "flab" "flabs" ; -- notcompound lab_N ;
-lin slab_N = mkN "slab" "slabs" ; -- notcompound lab_N ;
-lin infliximab_N = mkN "infliximab" "infliximabs" ;
-lin niqab_N = mkN "niqab" "niqabs" ;
-lin Arab_N = mkN "Arab" "Arabs" ;
-lin scarab_N = mkN "scarab" "scarabs" ;
-lin crab_N = mkN "crab" "crabs" ;
-lin grab_N = mkN "grab" "grabs" ;
-lin mihrab_N = mkN "mihrab" "mihrabs" ;
-lin tab_N = mkN "tab" "tabs" ;
-lin stab_N = mkN "stab" "stabs" ; -- notcompound tab_N ;
-lin squab_N = mkN "squab" "squabs" ;
-lin nawab_N = mkN "nawab" "nawabs" ;
-lin swab_N = mkN "swab" "swabs" ;
-lin ebb_N = mkN "ebb" "ebbs" ;
-lin cubeb_N = mkN "cubeb" "cubebs" ;
-lin deb_N = mkN "deb" "debs" ;
-lin ardeb_N = mkN "ardeb" "ardebs" ; -- compound deb_N ;
-lin pleb_N = mkN "pleb" "plebs" ;
-lin web_N = mkN "web" "webs" ;
-lin cobweb_N = mkN "cobweb" "cobwebs" ; -- compound web_N ;
-lin kgb_N = mkN "kgb" "kgbs" ;
-lin bib_N = mkN "bib" "bibs" ;
-lin fib_N = mkN "fib" "fibs" ;
-lin gib_N = mkN "gib" "gibs" ;
-lin sahib_N = mkN "sahib" "sahibs" ;
-lin memsahib_N = mkN "memsahib" "memsahibs" ; -- compound sahib_N ;
-lin jib_N = mkN "jib" "jibs" ;
-lin nib_N = mkN "nib" "nibs" ;
-lin rib_N = mkN "rib" "ribs" ;
-lin 'spare-rib_N' = mkN "spare-rib" "spare-ribs" ; -- compound rib_N ;
-lin crib_N = mkN "crib" "cribs" ; -- notcompound rib_N ;
-lin corncrib_N = mkN "corncrib" "corncribs" ; -- compound rib_N ;
-lin midrib_N = mkN "midrib" "midribs" ; -- compound rib_N ;
-lin sparerib_N = mkN "sparerib" "spareribs" ; -- compound rib_N ;
-lin squib_N = mkN "squib" "squibs" ;
-lin valdecoxib_N = mkN "valdecoxib" "valdecoxibs" ;
-lin rofecoxib_N = mkN "rofecoxib" "rofecoxibs" ;
-lin celecoxib_N = mkN "celecoxib" "celecoxibs" ;
-lin lb_N = mkN "lb" "lbs" ;
-lin alb_N = mkN "alb" "albs" ; -- notcompound lb_N ;
-lin llb_N = mkN "llb" "llbs" ; -- notcompound lb_N ;
-lin bulb_N = mkN "bulb" "bulbs" ; -- compound lb_N ;
-lin flashbulb_N = mkN "flashbulb" "flashbulbs" ; -- compound lb_N ;
-lin pseudobulb_N = mkN "pseudobulb" "pseudobulbs" ; -- compound lb_N ;
-lin mb_N = mkN "mb" "mbs" ;
-lin iamb_N = mkN "iamb" "iambs" ; -- compound mb_N ;
-lin jamb_N = mkN "jamb" "jambs" ; -- compound mb_N ;
-lin doorjamb_N = mkN "doorjamb" "doorjambs" ; -- compound mb_N ;
-lin lamb_N = mkN "lamb" "lambs" ; -- compound mb_N ;
-lin 'baa-lamb_N' = mkN "baa-lamb" "baa-lambs" ; -- compound mb_N ;
-lin dithyramb_N = mkN "dithyramb" "dithyrambs" ; -- compound mb_N ;
-lin limb_N = mkN "limb" "limbs" ; -- compound mb_N ;
-lin climb_N = mkN "climb" "climbs" ; -- compound mb_N ;
-lin forelimb_N = mkN "forelimb" "forelimbs" ; -- compound mb_N ;
-lin bomb_N = mkN "bomb" "bombs" ; -- compound mb_N ;
-lin 'a-bomb_N' = mkN "a-bomb" "a-bombs" ; -- compound mb_N ;
-lin 'plastic-bomb_N' = mkN "plastic-bomb" "plastic-bombs" ; -- compound mb_N ;
-lin 'smoke-bomb_N' = mkN "smoke-bomb" "smoke-bombs" ; -- compound mb_N ;
-lin 'time-bomb_N' = mkN "time-bomb" "time-bombs" ; -- compound mb_N ;
-lin 'flying-bomb_N' = mkN "flying-bomb" "flying-bombs" ; -- compound mb_N ;
-lin 'h-bomb_N' = mkN "h-bomb" "h-bombs" ; -- compound mb_N ;
-lin 'depth-bomb_N' = mkN "depth-bomb" "depth-bombs" ; -- compound mb_N ;
-lin firebomb_N = mkN "firebomb" "firebombs" ; -- compound mb_N ;
-lin comb_N = mkN "comb" "combs" ; -- compound mb_N ;
-lin catacomb_N = mkN "catacomb" "catacombs" ; -- compound mb_N ;
-lin cockscomb_N = mkN "cockscomb" "cockscombs" ; -- compound mb_N ;
-lin pocketcomb_N = mkN "pocketcomb" "pocketcombs" ; -- compound mb_N ;
-lin coxcomb_N = mkN "coxcomb" "coxcombs" ; -- compound mb_N ;
-lin honeycomb_N = mkN "honeycomb" "honeycombs" ; -- compound mb_N ;
-lin currycomb_N = mkN "currycomb" "currycombs" ; -- compound mb_N ;
-lin rhomb_N = mkN "rhomb" "rhombs" ; -- compound mb_N ;
-lin aplomb_N = mkN "aplomb" "aplombs" ; -- compound mb_N ;
-lin coulomb_N = mkN "coulomb" "coulombs" ; -- compound mb_N ;
-lin abcoulomb_N = mkN "abcoulomb" "abcoulombs" ; -- compound mb_N ;
-lin tomb_N = mkN "tomb" "tombs" ; -- compound mb_N ;
-lin hecatomb_N = mkN "hecatomb" "hecatombs" ; -- compound mb_N ;
-lin womb_N = mkN "womb" "wombs" ; -- compound mb_N ;
-lin thumb_N = mkN "thumb" "thumbs" ; -- compound mb_N ;
-lin plumb_N = mkN "plumb" "plumbs" ; -- compound mb_N ;
-lin crumb_N = mkN "crumb" "crumbs" ; -- compound mb_N ;
-lin breadcrumb_N = mkN "breadcrumb" "breadcrumbs" ; -- compound mb_N ;
-lin corymb_N = mkN "corymb" "corymbs" ; -- compound mb_N ;
-lin 'ski-bob_N' = mkN "ski-bob" "ski-bobs" ;
-lin kabob_N = mkN "kabob" "kabobs" ;
-lin thingmabob_N = mkN "thingmabob" "thingmabobs" ;
-lin thingumabob_N = mkN "thingumabob" "thingumabobs" ;
-lin nabob_N = mkN "nabob" "nabobs" ;
-lin skibob_N = mkN "skibob" "skibobs" ;
-lin cob_N = mkN "cob" "cobs" ;
-lin corncob_N = mkN "corncob" "corncobs" ; -- compound cob_N ;
-lin fob_N = mkN "fob" "fobs" ;
-lin gob_N = mkN "gob" "gobs" ;
-lin hob_N = mkN "hob" "hobs" ;
-lin job_N = mkN "job" "jobs" ;
-lin kob_N = mkN "kob" "kobs" ;
-lin lob_N = mkN "lob" "lobs" ;
-lin blob_N = mkN "blob" "blobs" ; -- notcompound lob_N ;
-lin slob_N = mkN "slob" "slobs" ; -- notcompound lob_N ;
-lin mob_N = mkN "mob" "mobs" ;
-lin nob_N = mkN "nob" "nobs" ;
-lin knob_N = mkN "knob" "knobs" ; -- notcompound nob_N ;
-lin doorknob_N = mkN "doorknob" "doorknobs" ; -- compound nob_N ;
-lin snob_N = mkN "snob" "snobs" ; -- notcompound nob_N ;
-lin boob_N = mkN "boob" "boobs" ;
-lin carob_N = mkN "carob" "carobs" ;
-lin throb_N = mkN "throb" "throbs" ;
-lin heartthrob_N = mkN "heartthrob" "heartthrobs" ; -- compound throb_N ;
-lin sob_N = mkN "sob" "sobs" ;
-lin stob_N = mkN "stob" "stobs" ;
-lin swob_N = mkN "swob" "swobs" ;
-lin yob_N = mkN "yob" "yobs" ;
-lin wpb_N = mkN "wpb" "wpbs" ;
-lin barb_N = mkN "barb" "barbs" ;
-lin rhubarb_N = mkN "rhubarb" "rhubarbs" ; -- compound barb_N ;
-lin garb_N = mkN "garb" "garbs" ;
-lin herb_N = mkN "herb" "herbs" ;
-lin potherb_N = mkN "potherb" "potherbs" ; -- compound herb_N ;
-lin cowherb_N = mkN "cowherb" "cowherbs" ; -- compound herb_N ;
-lin willowherb_N = mkN "willowherb" "willowherbs" ; -- compound herb_N ;
-lin kerb_N = mkN "kerb" "kerbs" ;
-lin verb_N = mkN "verb" "verbs" ;
-lin adverb_N = mkN "adverb" "adverbs" ; -- compound verb_N ;
-lin proverb_N = mkN "proverb" "proverbs" ; -- compound verb_N ;
-lin orb_N = mkN "orb" "orbs" ;
-lin sorb_N = mkN "sorb" "sorbs" ; -- notcompound orb_N ;
-lin suburb_N = mkN "suburb" "suburbs" ;
-lin curb_N = mkN "curb" "curbs" ;
-lin blurb_N = mkN "blurb" "blurbs" ;
-lin tb_N = mkN "tb" "tbs" ;
-lin daub_N = mkN "daub" "daubs" ;
-lin sillabub_N = mkN "sillabub" "sillabubs" ;
-lin syllabub_N = mkN "syllabub" "syllabubs" ;
-lin hubbub_N = mkN "hubbub" "hubbubs" ;
-lin cub_N = mkN "cub" "cubs" ;
-lin 'wolf-cub_N' = mkN "wolf-cub" "wolf-cubs" ; -- compound cub_N ;
-lin dub_N = mkN "dub" "dubs" ;
-lin 'rub-a-dub_N' = mkN "rub-a-dub" "rub-a-dubs" ; -- compound dub_N ;
-lin hub_N = mkN "hub" "hubs" ;
-lin chub_N = mkN "chub" "chubs" ; -- notcompound hub_N ;
-lin club_N = mkN "club" "clubs" ;
-lin 'slate-club_N' = mkN "slate-club" "slate-clubs" ; -- compound club_N ;
-lin 'golf-club_N' = mkN "golf-club" "golf-clubs" ; -- compound club_N ;
-lin 'rowing-club_N' = mkN "rowing-club" "rowing-clubs" ; -- compound club_N ;
-lin 'yacht-club_N' = mkN "yacht-club" "yacht-clubs" ; -- compound club_N ;
-lin bookclub_N = mkN "bookclub" "bookclubs" ; -- compound club_N ;
-lin nightclub_N = mkN "nightclub" "nightclubs" ; -- compound club_N ;
-lin slub_N = mkN "slub" "slubs" ;
-lin nub_N = mkN "nub" "nubs" ;
-lin snub_N = mkN "snub" "snubs" ; -- notcompound nub_N ;
-lin pub_N = mkN "pub" "pubs" ;
-lin brewpub_N = mkN "brewpub" "brewpubs" ; -- compound pub_N ;
-lin rub_N = mkN "rub" "rubs" ;
-lin scrub_N = mkN "scrub" "scrubs" ; -- notcompound rub_N ;
-lin cherub_N = mkN "cherub" "cherubs" ; -- compound rub_N ;
-lin grub_N = mkN "grub" "grubs" ; -- notcompound rub_N ;
-lin shrub_N = mkN "shrub" "shrubs" ; -- notcompound rub_N ;
-lin subshrub_N = mkN "subshrub" "subshrubs" ; -- compound rub_N ;
-lin undershrub_N = mkN "undershrub" "undershrubs" ; -- compound rub_N ;
-lin sub_N = mkN "sub" "subs" ;
-lin minisub_N = mkN "minisub" "minisubs" ; -- compound sub_N ;
-lin tub_N = mkN "tub" "tubs" ;
-lin washtub_N = mkN "washtub" "washtubs" ; -- compound tub_N ;
-lin bathtub_N = mkN "bathtub" "bathtubs" ; -- compound tub_N ;
-lin stub_N = mkN "stub" "stubs" ; -- notcompound tub_N ;
-lin cc_N = mkN "cc" "cc" ;
-lin tombac_N = mkN "tombac" "tombacs" ;
-lin ipecac_N = mkN "ipecac" "ipecacs" ;
-lin sulindac_N = mkN "sulindac" "sulindacs" ;
-lin zodiac_N = mkN "zodiac" "zodiacs" ;
-lin haemophiliac_N = mkN "haemophiliac" "haemophiliacs" ;
-lin hemophiliac_N = mkN "hemophiliac" "hemophiliacs" ;
-lin maniac_N = mkN "maniac" "maniacs" ;
-lin egomaniac_N = mkN "egomaniac" "egomaniacs" ; -- compound maniac_N ;
-lin nymphomaniac_N = mkN "nymphomaniac" "nymphomaniacs" ; -- compound maniac_N ;
-lin megalomaniac_N = mkN "megalomaniac" "megalomaniacs" ; -- compound maniac_N ;
-lin monomaniac_N = mkN "monomaniac" "monomaniacs" ; -- compound maniac_N ;
-lin pyromaniac_N = mkN "pyromaniac" "pyromaniacs" ; -- compound maniac_N ;
-lin dipsomaniac_N = mkN "dipsomaniac" "dipsomaniacs" ; -- compound maniac_N ;
-lin kleptomaniac_N = mkN "kleptomaniac" "kleptomaniacs" ; -- compound maniac_N ;
-lin insomniac_N = mkN "insomniac" "insomniacs" ;
-lin demoniac_N = mkN "demoniac" "demoniacs" ;
-lin ammoniac_N = mkN "ammoniac" "ammoniacs" ;
-lin paranoiac_N = mkN "paranoiac" "paranoiacs" ;
-lin hypochondriac_N = mkN "hypochondriac" "hypochondriacs" ;
-lin celeriac_N = mkN "celeriac" "celeriacs" ;
-lin aphrodisiac_N = mkN "aphrodisiac" "aphrodisiacs" ;
-lin muntjac_N = mkN "muntjac" "muntjacs" ;
-lin lac_N = mkN "lac" "lacs" ;
-lin lilac_N = mkN "lilac" "lilacs" ; -- compound lac_N ;
-lin shellac_N = mkN "shellac" "shellacs" ; -- compound lac_N ;
-lin etodolac_N = mkN "etodolac" "etodolacs" ; -- compound lac_N ;
-lin ketorolac_N = mkN "ketorolac" "ketorolacs" ; -- compound lac_N ;
-lin mac_N = mkN "mac" "macs" ;
-lin tarmac_N = mkN "tarmac" "tarmacs" ; -- compound mac_N ;
-lin sumac_N = mkN "sumac" "sumacs" ; -- compound mac_N ;
-lin almanac_N = mkN "almanac" "almanacs" ;
-lin cognac_N = mkN "cognac" "cognacs" ;
-lin calpac_N = mkN "calpac" "calpacs" ;
-lin sandarac_N = mkN "sandarac" "sandaracs" ;
-lin 'bric-a-brac_N' = mkN "bric-a-brac" "bric-a-bracs" ;
-lin wrac_N = mkN "wrac" "wracs" ;
-lin sac_N = mkN "sac" "sacs" ;
-lin 'cul-de-sac_N' = mkN "cul-de-sac" "cul-de-sacs" ; -- compound sac_N ;
-lin bivouac_N = mkN "bivouac" "bivouacs" ;
-lin vac_N = mkN "vac" "vacs" ;
-lin abc_N = mkN "abc" "abcs" ;
-lin mcc_N = mkN "mcc" "mccs" ;
-lin nspcc_N = mkN "nspcc" "nspccs" ;
-lin ec_N = mkN "ec" "ecs" ;
-lin eec_N = mkN "eec" "eecs" ; -- notcompound ec_N ;
-lin spec_N = mkN "spec" "specs" ; -- notcompound ec_N ;
-lin tenrec_N = mkN "tenrec" "tenrecs" ; -- compound ec_N ;
-lin sec_N = mkN "sec" "secs" ; -- notcompound ec_N ;
-lin parsec_N = mkN "parsec" "parsecs" ; -- compound ec_N ;
-lin tec_N = mkN "tec" "tecs" ; -- notcompound ec_N ;
-lin romaic_N = mkN "romaic" "romaics" ;
-lin mosaic_N = mkN "mosaic" "mosaics" ;
-lin Arabic_N = mkN "Arabic" "Arabics" ;
-lin iambic_N = mkN "iambic" "iambics" ;
-lin alembic_N = mkN "alembic" "alembics" ;
-lin oxytocic_N = mkN "oxytocic" "oxytocics" ;
-lin medic_N = mkN "medic" "medics" ;
-lin paramedic_N = mkN "paramedic" "paramedics" ; -- compound medic_N ;
-lin icelandic_N = mkN "icelandic" "icelandics" ;
-lin syndic_N = mkN "syndic" "syndics" ;
-lin antispasmodic_N = mkN "antispasmodic" "antispasmodics" ;
-lin nordic_N = mkN "nordic" "nordics" ;
-lin asdic_N = mkN "asdic" "asdics" ;
-lin traffic_N = mkN "traffic" "traffics" ;
-lin 'slave-traffic_N' = mkN "slave-traffic" "slave-traffics" ; -- compound traffic_N ;
-lin specific_N = mkN "specific" "specifics" ;
-lin conspecific_N = mkN "conspecific" "conspecifics" ; -- compound specific_N ;
-lin sudorific_N = mkN "sudorific" "sudorifics" ;
-lin honorific_N = mkN "honorific" "honorifics" ;
-lin soporific_N = mkN "soporific" "soporifics" ;
-lin magic_N = mkN "magic" "magics" ;
-lin paraplegic_N = mkN "paraplegic" "paraplegics" ;
-lin hemiplegic_N = mkN "hemiplegic" "hemiplegics" ;
-lin quadriplegic_N = mkN "quadriplegic" "quadriplegics" ;
-lin logic_N = mkN "logic" "logics" ;
-lin adrenergic_N = mkN "adrenergic" "adrenergics" ;
-lin anticholinergic_N = mkN "anticholinergic" "anticholinergics" ;
-lin chic_N = mkN "chic" "chics" ;
-lin psychic_N = mkN "psychic" "psychics" ; -- compound chic_N ;
-lin graphic_N = mkN "graphic" "graphics" ;
-lin demographic_N = mkN "demographic" "demographics" ; -- compound graphic_N ;
-lin dermatoglyphic_N = mkN "dermatoglyphic" "dermatoglyphics" ;
-lin pyrrhic_N = mkN "pyrrhic" "pyrrhics" ;
-lin ethic_N = mkN "ethic" "ethics" ;
-lin gothic_N = mkN "gothic" "gothics" ;
-lin aphakic_N = mkN "aphakic" "aphakics" ;
-lin dolichocephalic_N = mkN "dolichocephalic" "dolichocephalics" ;
-lin brachycephalic_N = mkN "brachycephalic" "brachycephalics" ;
-lin italic_N = mkN "italic" "italics" ;
-lin public_N = mkN "public" "publics" ;
-lin republic_N = mkN "republic" "republics" ; -- compound public_N ;
-lin tricyclic_N = mkN "tricyclic" "tricyclics" ;
-lin nontricyclic_N = mkN "nontricyclic" "nontricyclics" ; -- compound tricyclic_N ;
-lin gaelic_N = mkN "gaelic" "gaelics" ;
-lin relic_N = mkN "relic" "relics" ;
-lin metallic_N = mkN "metallic" "metallics" ;
-lin colic_N = mkN "colic" "colics" ;
-lin workaholic_N = mkN "workaholic" "workaholics" ;
-lin shopaholic_N = mkN "shopaholic" "shopaholics" ;
-lin melancholic_N = mkN "melancholic" "melancholics" ;
-lin alcoholic_N = mkN "alcoholic" "alcoholics" ;
-lin Catholic_N = mkN "Catholic" "Catholics" ;
-lin 'anglo-catholic_N' = mkN "anglo-catholic" "anglo-catholics" ;
-lin frolic_N = mkN "frolic" "frolics" ;
-lin garlic_N = mkN "garlic" "garlics" ;
-lin acrylic_N = mkN "acrylic" "acrylics" ;
-lin dynamic_N = mkN "dynamic" "dynamics" ;
-lin ceramic_N = mkN "ceramic" "ceramics" ;
-lin academic_N = mkN "academic" "academics" ;
-lin epidemic_N = mkN "epidemic" "epidemics" ;
-lin pandemic_N = mkN "pandemic" "pandemics" ;
-lin endemic_N = mkN "endemic" "endemics" ;
-lin polemic_N = mkN "polemic" "polemics" ;
-lin antiarrhythmic_N = mkN "antiarrhythmic" "antiarrhythmics" ;
-lin bulimic_N = mkN "bulimic" "bulimics" ;
-lin mimic_N = mkN "mimic" "mimics" ;
-lin comic_N = mkN "comic" "comics" ;
-lin hypodermic_N = mkN "hypodermic" "hypodermics" ;
-lin matronymic_N = mkN "matronymic" "matronymics" ;
-lin patronymic_N = mkN "patronymic" "patronymics" ;
-lin organic_N = mkN "organic" "organics" ;
-lin mechanic_N = mkN "mechanic" "mechanics" ;
-lin panic_N = mkN "panic" "panics" ;
-lin picnic_N = mkN "picnic" "picnics" ;
-lin neurasthenic_N = mkN "neurasthenic" "neurasthenics" ;
-lin schizophrenic_N = mkN "schizophrenic" "schizophrenics" ;
-lin arsenic_N = mkN "arsenic" "arsenics" ;
-lin polytechnic_N = mkN "polytechnic" "polytechnics" ;
-lin ethnic_N = mkN "ethnic" "ethnics" ;
-lin clinic_N = mkN "clinic" "clinics" ;
-lin hematinic_N = mkN "hematinic" "hematinics" ;
-lin mnemonic_N = mkN "mnemonic" "mnemonics" ;
-lin harmonic_N = mkN "harmonic" "harmonics" ;
-lin tonic_N = mkN "tonic" "tonics" ;
-lin subtonic_N = mkN "subtonic" "subtonics" ; -- compound tonic_N ;
-lin supertonic_N = mkN "supertonic" "supertonics" ; -- compound tonic_N ;
-lin tunic_N = mkN "tunic" "tunics" ;
-lin cynic_N = mkN "cynic" "cynics" ;
-lin stoic_N = mkN "stoic" "stoics" ;
-lin epic_N = mkN "epic" "epics" ;
-lin tropic_N = mkN "tropic" "tropics" ;
-lin topic_N = mkN "topic" "topics" ;
-lin spic_N = mkN "spic" "spics" ;
-lin aspic_N = mkN "aspic" "aspics" ; -- notcompound spic_N ;
-lin agaric_N = mkN "agaric" "agarics" ;
-lin amharic_N = mkN "amharic" "amharics" ;
-lin fabric_N = mkN "fabric" "fabrics" ;
-lin cambric_N = mkN "cambric" "cambrics" ;
-lin rubric_N = mkN "rubric" "rubrics" ;
-lin quadric_N = mkN "quadric" "quadrics" ;
-lin baldric_N = mkN "baldric" "baldrics" ;
-lin cleric_N = mkN "cleric" "clerics" ;
-lin turmeric_N = mkN "turmeric" "turmerics" ;
-lin generic_N = mkN "generic" "generics" ;
-lin climacteric_N = mkN "climacteric" "climacterics" ;
-lin hysteric_N = mkN "hysteric" "hysterics" ;
-lin paregoric_N = mkN "paregoric" "paregorics" ;
-lin rhetoric_N = mkN "rhetoric" "rhetorics" ;
-lin bishopric_N = mkN "bishopric" "bishoprics" ;
-lin archbishopric_N = mkN "archbishopric" "archbishoprics" ; -- compound bishopric_N ;
-lin matric_N = mkN "matric" "matrics" ;
-lin electric_N = mkN "electric" "electrics" ;
-lin eccentric_N = mkN "eccentric" "eccentrics" ;
-lin egocentric_N = mkN "egocentric" "egocentrics" ;
-lin panegyric_N = mkN "panegyric" "panegyrics" ;
-lin lyric_N = mkN "lyric" "lyrics" ;
-lin basic_N = mkN "basic" "basics" ;
-lin aphasic_N = mkN "aphasic" "aphasics" ;
-lin geodesic_N = mkN "geodesic" "geodesics" ;
-lin analgesic_N = mkN "analgesic" "analgesics" ;
-lin amnesic_N = mkN "amnesic" "amnesics" ;
-lin cellulosic_N = mkN "cellulosic" "cellulosics" ;
-lin classic_N = mkN "classic" "classics" ;
-lin music_N = mkN "music" "musics" ;
-lin physic_N = mkN "physic" "physics" ;
-lin tic_N = mkN "tic" "tics" ;
-lin mydriatic_N = mkN "mydriatic" "mydriatics" ; -- compound tic_N ;
-lin asiatic_N = mkN "asiatic" "asiatics" ; -- compound tic_N ;
-lin schematic_N = mkN "schematic" "schematics" ; -- compound tic_N ;
-lin stigmatic_N = mkN "stigmatic" "stigmatics" ; -- compound tic_N ;
-lin asthmatic_N = mkN "asthmatic" "asthmatics" ; -- compound tic_N ;
-lin automatic_N = mkN "automatic" "automatics" ; -- compound tic_N ;
-lin rheumatic_N = mkN "rheumatic" "rheumatics" ; -- compound tic_N ;
-lin fanatic_N = mkN "fanatic" "fanatics" ; -- compound tic_N ;
-lin lunatic_N = mkN "lunatic" "lunatics" ; -- compound tic_N ;
-lin quadratic_N = mkN "quadratic" "quadratics" ; -- compound tic_N ;
-lin biquadratic_N = mkN "biquadratic" "biquadratics" ; -- compound tic_N ;
-lin hieratic_N = mkN "hieratic" "hieratics" ; -- compound tic_N ;
-lin static_N = mkN "static" "statics" ; -- compound tic_N ;
-lin aquatic_N = mkN "aquatic" "aquatics" ; -- compound tic_N ;
-lin prophylactic_N = mkN "prophylactic" "prophylactics" ; -- compound tic_N ;
-lin chiropractic_N = mkN "chiropractic" "chiropractics" ; -- compound tic_N ;
-lin tactic_N = mkN "tactic" "tactics" ; -- compound tic_N ;
-lin dialectic_N = mkN "dialectic" "dialectics" ; -- compound tic_N ;
-lin catalectic_N = mkN "catalectic" "catalectics" ; -- compound tic_N ;
-lin acatalectic_N = mkN "acatalectic" "acatalectics" ; -- compound tic_N ;
-lin hypercatalectic_N = mkN "hypercatalectic" "hypercatalectics" ; -- compound tic_N ;
-lin eclectic_N = mkN "eclectic" "eclectics" ; -- compound tic_N ;
-lin dyslectic_N = mkN "dyslectic" "dyslectics" ; -- compound tic_N ;
-lin eutectic_N = mkN "eutectic" "eutectics" ; -- compound tic_N ;
-lin deictic_N = mkN "deictic" "deictics" ; -- compound tic_N ;
-lin arctic_N = mkN "arctic" "arctics" ; -- compound tic_N ;
-lin diabetic_N = mkN "diabetic" "diabetics" ; -- compound tic_N ;
-lin antidiabetic_N = mkN "antidiabetic" "antidiabetics" ; -- compound tic_N ;
-lin ascetic_N = mkN "ascetic" "ascetics" ; -- compound tic_N ;
-lin synthetic_N = mkN "synthetic" "synthetics" ; -- compound tic_N ;
-lin esthetic_N = mkN "esthetic" "esthetics" ; -- compound tic_N ;
-lin aesthetic_N = mkN "aesthetic" "aesthetics" ; -- compound tic_N ;
-lin anaesthetic_N = mkN "anaesthetic" "anaesthetics" ; -- compound tic_N ;
-lin anesthetic_N = mkN "anesthetic" "anesthetics" ; -- compound tic_N ;
-lin metic_N = mkN "metic" "metics" ; -- compound tic_N ;
-lin emetic_N = mkN "emetic" "emetics" ; -- compound tic_N ;
-lin antiemetic_N = mkN "antiemetic" "antiemetics" ; -- compound tic_N ;
-lin arithmetic_N = mkN "arithmetic" "arithmetics" ; -- compound tic_N ;
-lin cosmetic_N = mkN "cosmetic" "cosmetics" ; -- compound tic_N ;
-lin paretic_N = mkN "paretic" "paretics" ; -- compound tic_N ;
-lin heretic_N = mkN "heretic" "heretics" ; -- compound tic_N ;
-lin diaphoretic_N = mkN "diaphoretic" "diaphoretics" ; -- compound tic_N ;
-lin antidiuretic_N = mkN "antidiuretic" "antidiuretics" ; -- compound tic_N ;
-lin antipyretic_N = mkN "antipyretic" "antipyretics" ; -- compound tic_N ;
-lin peripatetic_N = mkN "peripatetic" "peripatetics" ; -- compound tic_N ;
-lin syphilitic_N = mkN "syphilitic" "syphilitics" ; -- compound tic_N ;
-lin antisyphilitic_N = mkN "antisyphilitic" "antisyphilitics" ; -- compound tic_N ;
-lin critic_N = mkN "critic" "critics" ; -- compound tic_N ;
-lin diacritic_N = mkN "diacritic" "diacritics" ; -- compound tic_N ;
-lin arthritic_N = mkN "arthritic" "arthritics" ; -- compound tic_N ;
-lin antipruritic_N = mkN "antipruritic" "antipruritics" ; -- compound tic_N ;
-lin celtic_N = mkN "celtic" "celtics" ; -- compound tic_N ;
-lin antic_N = mkN "antic" "antics" ; -- compound tic_N ;
-lin romantic_N = mkN "romantic" "romantics" ; -- compound tic_N ;
-lin quantic_N = mkN "quantic" "quantics" ; -- compound tic_N ;
-lin narcotic_N = mkN "narcotic" "narcotics" ; -- compound tic_N ;
-lin psychotic_N = mkN "psychotic" "psychotics" ; -- compound tic_N ;
-lin antibiotic_N = mkN "antibiotic" "antibiotics" ; -- compound tic_N ;
-lin probiotic_N = mkN "probiotic" "probiotics" ; -- compound tic_N ;
-lin erotic_N = mkN "erotic" "erotics" ; -- compound tic_N ;
-lin neurotic_N = mkN "neurotic" "neurotics" ; -- compound tic_N ;
-lin sceptic_N = mkN "sceptic" "sceptics" ; -- compound tic_N ;
-lin skeptic_N = mkN "skeptic" "skeptics" ; -- compound tic_N ;
-lin analeptic_N = mkN "analeptic" "analeptics" ; -- compound tic_N ;
-lin cataleptic_N = mkN "cataleptic" "cataleptics" ; -- compound tic_N ;
-lin epileptic_N = mkN "epileptic" "epileptics" ; -- compound tic_N ;
-lin narcoleptic_N = mkN "narcoleptic" "narcoleptics" ; -- compound tic_N ;
-lin dyspeptic_N = mkN "dyspeptic" "dyspeptics" ; -- compound tic_N ;
-lin antiseptic_N = mkN "antiseptic" "antiseptics" ; -- compound tic_N ;
-lin ecliptic_N = mkN "ecliptic" "ecliptics" ; -- compound tic_N ;
-lin coptic_N = mkN "coptic" "coptics" ; -- compound tic_N ;
-lin styptic_N = mkN "styptic" "styptics" ; -- compound tic_N ;
-lin cathartic_N = mkN "cathartic" "cathartics" ; -- compound tic_N ;
-lin ecclesiastic_N = mkN "ecclesiastic" "ecclesiastics" ; -- compound tic_N ;
-lin elastic_N = mkN "elastic" "elastics" ; -- compound tic_N ;
-lin plastic_N = mkN "plastic" "plastics" ; -- compound tic_N ;
-lin antineoplastic_N = mkN "antineoplastic" "antineoplastics" ; -- compound tic_N ;
-lin thermoplastic_N = mkN "thermoplastic" "thermoplastics" ; -- compound tic_N ;
-lin mastic_N = mkN "mastic" "mastics" ; -- compound tic_N ;
-lin bitumastic_N = mkN "bitumastic" "bitumastics" ; -- compound tic_N ;
-lin spastic_N = mkN "spastic" "spastics" ; -- compound tic_N ;
-lin domestic_N = mkN "domestic" "domestics" ; -- compound tic_N ;
-lin eristic_N = mkN "eristic" "eristics" ; -- compound tic_N ;
-lin characteristic_N = mkN "characteristic" "characteristics" ; -- compound tic_N ;
-lin heuristic_N = mkN "heuristic" "heuristics" ; -- compound tic_N ;
-lin statistic_N = mkN "statistic" "statistics" ; -- compound tic_N ;
-lin agnostic_N = mkN "agnostic" "agnostics" ; -- compound tic_N ;
-lin prognostic_N = mkN "prognostic" "prognostics" ; -- compound tic_N ;
-lin acrostic_N = mkN "acrostic" "acrostics" ; -- compound tic_N ;
-lin caustic_N = mkN "caustic" "caustics" ; -- compound tic_N ;
-lin encaustic_N = mkN "encaustic" "encaustics" ; -- compound tic_N ;
-lin acoustic_N = mkN "acoustic" "acoustics" ; -- compound tic_N ;
-lin rustic_N = mkN "rustic" "rustics" ; -- compound tic_N ;
-lin mystic_N = mkN "mystic" "mystics" ; -- compound tic_N ;
-lin attic_N = mkN "attic" "attics" ; -- compound tic_N ;
-lin propaedeutic_N = mkN "propaedeutic" "propaedeutics" ; -- compound tic_N ;
-lin paralytic_N = mkN "paralytic" "paralytics" ; -- compound tic_N ;
-lin thrombolytic_N = mkN "thrombolytic" "thrombolytics" ; -- compound tic_N ;
-lin electrolytic_N = mkN "electrolytic" "electrolytics" ; -- compound tic_N ;
-lin alexic_N = mkN "alexic" "alexics" ;
-lin anorexic_N = mkN "anorexic" "anorexics" ;
-lin talc_N = mkN "talc" "talcs" ;
-lin mc_N = mkN "mc" "mcs" ;
-lin charabanc_N = mkN "charabanc" "charabancs" ;
-lin charàbanc_N = mkN "charàbanc" "charàbancs" ;
-lin blanc_N = mkN "blanc" "blancs" ;
-lin franc_N = mkN "franc" "francs" ;
-lin zinc_N = mkN "zinc" "zincs" ;
-lin postdoc_N = mkN "postdoc" "postdocs" ;
-lin choc_N = mkN "choc" "chocs" ;
-lin bloc_N = mkN "bloc" "blocs" ;
-lin roc_N = mkN "roc" "rocs" ;
-lin soc_N = mkN "soc" "socs" ;
-lin assoc_N = mkN "assoc" "assocs" ; -- compound soc_N ;
-lin nostoc_N = mkN "nostoc" "nostocs" ;
-lin havoc_N = mkN "havoc" "havocs" ;
-lin qc_N = mkN "qc" "qcs" ;
-lin arc_N = mkN "arc" "arcs" ;
-lin marc_N = mkN "marc" "marcs" ; -- notcompound arc_N ;
-lin narc_N = mkN "narc" "narcs" ; -- notcompound arc_N ;
-lin bsc_N = mkN "bsc" "bscs" ;
-lin dsc_N = mkN "dsc" "dscs" ;
-lin disc_N = mkN "disc" "discs" ;
-lin fisc_N = mkN "fisc" "fiscs" ;
-lin msc_N = mkN "msc" "mscs" ;
-lin bosc_N = mkN "bosc" "boscs" ;
-lin mollusc_N = mkN "mollusc" "molluscs" ;
-lin bonduc_N = mkN "bonduc" "bonducs" ;
-lin tuc_N = mkN "tuc" "tucs" ;
-lin vc_N = mkN "vc" "vcs" ;
-lin read_N = mkN "read" "IRREG" ;
-lin lied_N = mkN "lied" "IRREG" ;
-lin id_N = mkN "id" "IRREG" ;
-lin stupid_N = mkN "stupid" "IRREG" ; -- notcompound id_N ;
-lin midfield_N = mkN "midfield" "IRREG" ;
-lin 'stick-in-the-mud_N' = mkN "stick-in-the-mud" "IRREG" ;
-lin shad_N = mkN "shad" "shad" ;
-lin departed_N = mkN "departed" "departed" ;
-lin quid_N = mkN "quid" "quid" ;
-lin child_N = mkN "child" "children" ;
-lin 'love-child_N' = mkN "love-child" "love-children" ; -- compound child_N ;
-lin 'foster-child_N' = mkN "foster-child" "foster-children" ; -- compound child_N ;
-lin grandchild_N = mkN "grandchild" "grandchildren" ; -- compound child_N ;
-lin godchild_N = mkN "godchild" "godchildren" ; -- compound child_N ;
-lin schoolchild_N = mkN "schoolchild" "schoolchildren" ; -- compound child_N ;
-lin brainchild_N = mkN "brainchild" "brainchildren" ; -- compound child_N ;
-lin stepchild_N = mkN "stepchild" "stepchildren" ; -- compound child_N ;
-lin 'three-d_N' = mkN "three-d" "three-ds" ;
-lin ad_N = mkN "ad" "ads" ;
-lin 'want-ad_N' = mkN "want-ad" "want-ads" ; -- compound ad_N ;
-lin bad_N = mkN "bad" "bads" ; -- notcompound ad_N ;
-lin cad_N = mkN "cad" "cads" ; -- notcompound ad_N ;
-lin nicad_N = mkN "nicad" "nicads" ; -- compound ad_N ;
-lin scad_N = mkN "scad" "scads" ; -- notcompound ad_N ;
-lin cycad_N = mkN "cycad" "cycads" ; -- compound ad_N ;
-lin dad_N = mkN "dad" "dads" ; -- notcompound ad_N ;
-lin granddad_N = mkN "granddad" "granddads" ; -- compound ad_N ;
-lin grandad_N = mkN "grandad" "grandads" ; -- compound ad_N ;
-lin doodad_N = mkN "doodad" "doodads" ; -- compound ad_N ;
-lin aoudad_N = mkN "aoudad" "aoudads" ; -- compound ad_N ;
-lin bead_N = mkN "bead" "beads" ; -- compound ad_N ;
-lin dead_N = mkN "dead" "deads" ; -- compound ad_N ;
-lin head_N = mkN "head" "heads" ; -- compound ad_N ;
-lin 'bald-head_N' = mkN "bald-head" "bald-heads" ; -- compound ad_N ;
-lin 'addle-head_N' = mkN "addle-head" "addle-heads" ; -- compound ad_N ;
-lin 'bone-head_N' = mkN "bone-head" "bone-heads" ; -- compound ad_N ;
-lin 'pudden-head_N' = mkN "pudden-head" "pudden-heads" ; -- compound ad_N ;
-lin 'fountain-head_N' = mkN "fountain-head" "fountain-heads" ; -- compound ad_N ;
-lin 'mutton-head_N' = mkN "mutton-head" "mutton-heads" ; -- compound ad_N ;
-lin 'sleepy-head_N' = mkN "sleepy-head" "sleepy-heads" ; -- compound ad_N ;
-lin 'go-ahead_N' = mkN "go-ahead" "go-aheads" ; -- compound ad_N ;
-lin deadhead_N = mkN "deadhead" "deadheads" ; -- compound ad_N ;
-lin redhead_N = mkN "redhead" "redheads" ; -- compound ad_N ;
-lin baldhead_N = mkN "baldhead" "baldheads" ; -- compound ad_N ;
-lin roundhead_N = mkN "roundhead" "roundheads" ; -- compound ad_N ;
-lin godhead_N = mkN "godhead" "godheads" ; -- compound ad_N ;
-lin floodhead_N = mkN "floodhead" "floodheads" ; -- compound ad_N ;
-lin bridgehead_N = mkN "bridgehead" "bridgeheads" ; -- compound ad_N ;
-lin bufflehead_N = mkN "bufflehead" "buffleheads" ; -- compound ad_N ;
-lin forehead_N = mkN "forehead" "foreheads" ; -- compound ad_N ;
-lin sorehead_N = mkN "sorehead" "soreheads" ; -- compound ad_N ;
-lin figurehead_N = mkN "figurehead" "figureheads" ; -- compound ad_N ;
-lin whitehead_N = mkN "whitehead" "whiteheads" ; -- compound ad_N ;
-lin bluehead_N = mkN "bluehead" "blueheads" ; -- compound ad_N ;
-lin egghead_N = mkN "egghead" "eggheads" ; -- compound ad_N ;
-lin bighead_N = mkN "bighead" "bigheads" ; -- compound ad_N ;
-lin beachhead_N = mkN "beachhead" "beachheads" ; -- compound ad_N ;
-lin blackhead_N = mkN "blackhead" "blackheads" ; -- compound ad_N ;
-lin thickhead_N = mkN "thickhead" "thickheads" ; -- compound ad_N ;
-lin blockhead_N = mkN "blockhead" "blockheads" ; -- compound ad_N ;
-lin bulkhead_N = mkN "bulkhead" "bulkheads" ; -- compound ad_N ;
-lin metalhead_N = mkN "metalhead" "metalheads" ; -- compound ad_N ;
-lin shovelhead_N = mkN "shovelhead" "shovelheads" ; -- compound ad_N ;
-lin nailhead_N = mkN "nailhead" "nailheads" ; -- compound ad_N ;
-lin railhead_N = mkN "railhead" "railheads" ; -- compound ad_N ;
-lin wellhead_N = mkN "wellhead" "wellheads" ; -- compound ad_N ;
-lin bullhead_N = mkN "bullhead" "bullheads" ; -- compound ad_N ;
-lin drumhead_N = mkN "drumhead" "drumheads" ; -- compound ad_N ;
-lin maidenhead_N = mkN "maidenhead" "maidenheads" ; -- compound ad_N ;
-lin fountainhead_N = mkN "fountainhead" "fountainheads" ; -- compound ad_N ;
-lin skinhead_N = mkN "skinhead" "skinheads" ; -- compound ad_N ;
-lin pinhead_N = mkN "pinhead" "pinheads" ; -- compound ad_N ;
-lin dragonhead_N = mkN "dragonhead" "dragonheads" ; -- compound ad_N ;
-lin saphead_N = mkN "saphead" "sapheads" ; -- compound ad_N ;
-lin spearhead_N = mkN "spearhead" "spearheads" ; -- compound ad_N ;
-lin warhead_N = mkN "warhead" "warheads" ; -- compound ad_N ;
-lin dunderhead_N = mkN "dunderhead" "dunderheads" ; -- compound ad_N ;
-lin thunderhead_N = mkN "thunderhead" "thunderheads" ; -- compound ad_N ;
-lin loggerhead_N = mkN "loggerhead" "loggerheads" ; -- compound ad_N ;
-lin hammerhead_N = mkN "hammerhead" "hammerheads" ; -- compound ad_N ;
-lin copperhead_N = mkN "copperhead" "copperheads" ; -- compound ad_N ;
-lin letterhead_N = mkN "letterhead" "letterheads" ; -- compound ad_N ;
-lin overhead_N = mkN "overhead" "overheads" ; -- compound ad_N ;
-lin showerhead_N = mkN "showerhead" "showerheads" ; -- compound ad_N ;
-lin airhead_N = mkN "airhead" "airheads" ; -- compound ad_N ;
-lin stairhead_N = mkN "stairhead" "stairheads" ; -- compound ad_N ;
-lin hogshead_N = mkN "hogshead" "hogsheads" ; -- compound ad_N ;
-lin sheepshead_N = mkN "sheepshead" "sheepsheads" ; -- compound ad_N ;
-lin crosshead_N = mkN "crosshead" "crossheads" ; -- compound ad_N ;
-lin fathead_N = mkN "fathead" "fatheads" ; -- compound ad_N ;
-lin flathead_N = mkN "flathead" "flatheads" ; -- compound ad_N ;
-lin bullethead_N = mkN "bullethead" "bulletheads" ; -- compound ad_N ;
-lin pithead_N = mkN "pithead" "pitheads" ; -- compound ad_N ;
-lin hothead_N = mkN "hothead" "hotheads" ; -- compound ad_N ;
-lin pothead_N = mkN "pothead" "potheads" ; -- compound ad_N ;
-lin masthead_N = mkN "masthead" "mastheads" ; -- compound ad_N ;
-lin bitthead_N = mkN "bitthead" "bittheads" ; -- compound ad_N ;
-lin bowhead_N = mkN "bowhead" "bowheads" ; -- compound ad_N ;
-lin arrowhead_N = mkN "arrowhead" "arrowheads" ; -- compound ad_N ;
-lin towhead_N = mkN "towhead" "towheads" ; -- compound ad_N ;
-lin sleepyhead_N = mkN "sleepyhead" "sleepyheads" ; -- compound ad_N ;
-lin lead_N = mkN "lead" "leads" ; -- compound ad_N ;
-lin 'black-lead_N' = mkN "black-lead" "black-leads" ; -- compound ad_N ;
-lin fairlead_N = mkN "fairlead" "fairleads" ; -- compound ad_N ;
-lin mead_N = mkN "mead" "meads" ; -- compound ad_N ;
-lin bread_N = mkN "bread" "breads" ; -- compound ad_N ;
-lin 'rye-bread_N' = mkN "rye-bread" "rye-breads" ; -- compound ad_N ;
-lin beebread_N = mkN "beebread" "beebreads" ; -- compound ad_N ;
-lin cornbread_N = mkN "cornbread" "cornbreads" ; -- compound ad_N ;
-lin gingerbread_N = mkN "gingerbread" "gingerbreads" ; -- compound ad_N ;
-lin flatbread_N = mkN "flatbread" "flatbreads" ; -- compound ad_N ;
-lin sweetbread_N = mkN "sweetbread" "sweetbreads" ; -- compound ad_N ;
-lin shortbread_N = mkN "shortbread" "shortbreads" ; -- compound ad_N ;
-lin sowbread_N = mkN "sowbread" "sowbreads" ; -- compound ad_N ;
-lin dread_N = mkN "dread" "dreads" ; -- compound ad_N ;
-lin thread_N = mkN "thread" "threads" ; -- compound ad_N ;
-lin 'pack-thread_N' = mkN "pack-thread" "pack-threads" ; -- compound ad_N ;
-lin goldthread_N = mkN "goldthread" "goldthreads" ; -- compound ad_N ;
-lin packthread_N = mkN "packthread" "packthreads" ; -- compound ad_N ;
-lin spread_N = mkN "spread" "spreads" ; -- compound ad_N ;
-lin bedspread_N = mkN "bedspread" "bedspreads" ; -- compound ad_N ;
-lin wingspread_N = mkN "wingspread" "wingspreads" ; -- compound ad_N ;
-lin tread_N = mkN "tread" "treads" ; -- compound ad_N ;
-lin retread_N = mkN "retread" "retreads" ; -- compound ad_N ;
-lin stead_N = mkN "stead" "steads" ; -- compound ad_N ;
-lin roadstead_N = mkN "roadstead" "roadsteads" ; -- compound ad_N ;
-lin bedstead_N = mkN "bedstead" "bedsteads" ; -- compound ad_N ;
-lin homestead_N = mkN "homestead" "homesteads" ; -- compound ad_N ;
-lin farmstead_N = mkN "farmstead" "farmsteads" ; -- compound ad_N ;
-lin fad_N = mkN "fad" "fads" ; -- notcompound ad_N ;
-lin chad_N = mkN "chad" "chads" ; -- notcompound ad_N ;
-lin jihad_N = mkN "jihad" "jihads" ; -- compound ad_N ;
-lin ijtihad_N = mkN "ijtihad" "ijtihads" ; -- compound ad_N ;
-lin mujtihad_N = mkN "mujtihad" "mujtihads" ; -- compound ad_N ;
-lin naiad_N = mkN "naiad" "naiads" ; -- compound ad_N ;
-lin jeremiad_N = mkN "jeremiad" "jeremiads" ; -- compound ad_N ;
-lin bignoniad_N = mkN "bignoniad" "bignoniads" ; -- compound ad_N ;
-lin asclepiad_N = mkN "asclepiad" "asclepiads" ; -- compound ad_N ;
-lin olympiad_N = mkN "olympiad" "olympiads" ; -- compound ad_N ;
-lin gesneriad_N = mkN "gesneriad" "gesneriads" ; -- compound ad_N ;
-lin triad_N = mkN "triad" "triads" ; -- compound ad_N ;
-lin myriad_N = mkN "myriad" "myriads" ; -- compound ad_N ;
-lin lad_N = mkN "lad" "lads" ; -- notcompound ad_N ;
-lin salad_N = mkN "salad" "salads" ; -- compound ad_N ;
-lin ironclad_N = mkN "ironclad" "ironclads" ; -- compound ad_N ;
-lin ballad_N = mkN "ballad" "ballads" ; -- compound ad_N ;
-lin nomad_N = mkN "nomad" "nomads" ; -- compound ad_N ;
-lin maenad_N = mkN "maenad" "maenads" ; -- compound ad_N ;
-lin gonad_N = mkN "gonad" "gonads" ; -- compound ad_N ;
-lin monad_N = mkN "monad" "monads" ; -- compound ad_N ;
-lin pseudomonad_N = mkN "pseudomonad" "pseudomonads" ; -- compound ad_N ;
-lin trichomonad_N = mkN "trichomonad" "trichomonads" ; -- compound ad_N ;
-lin xanthomonad_N = mkN "xanthomonad" "xanthomonads" ; -- compound ad_N ;
-lin cryptomonad_N = mkN "cryptomonad" "cryptomonads" ; -- compound ad_N ;
-lin goad_N = mkN "goad" "goads" ; -- compound ad_N ;
-lin load_N = mkN "load" "loads" ; -- compound ad_N ;
-lin workload_N = mkN "workload" "workloads" ; -- compound ad_N ;
-lin trainload_N = mkN "trainload" "trainloads" ; -- compound ad_N ;
-lin shipload_N = mkN "shipload" "shiploads" ; -- compound ad_N ;
-lin carload_N = mkN "carload" "carloads" ; -- compound ad_N ;
-lin overload_N = mkN "overload" "overloads" ; -- compound ad_N ;
-lin busload_N = mkN "busload" "busloads" ; -- compound ad_N ;
-lin boatload_N = mkN "boatload" "boatloads" ; -- compound ad_N ;
-lin cartload_N = mkN "cartload" "cartloads" ; -- compound ad_N ;
-lin payload_N = mkN "payload" "payloads" ; -- compound ad_N ;
-lin road_N = mkN "road" "roads" ; -- compound ad_N ;
-lin 'side-road_N' = mkN "side-road" "side-roads" ; -- compound ad_N ;
-lin 'bridle-road_N' = mkN "bridle-road" "bridle-roads" ; -- compound ad_N ;
-lin 'ring-road_N' = mkN "ring-road" "ring-roads" ; -- compound ad_N ;
-lin 'trunk-road_N' = mkN "trunk-road" "trunk-roads" ; -- compound ad_N ;
-lin 'slip-road_N' = mkN "slip-road" "slip-roads" ; -- compound ad_N ;
-lin broad_N = mkN "broad" "broads" ; -- compound ad_N ;
-lin highroad_N = mkN "highroad" "highroads" ; -- compound ad_N ;
-lin railroad_N = mkN "railroad" "railroads" ; -- compound ad_N ;
-lin inroad_N = mkN "inroad" "inroads" ; -- compound ad_N ;
-lin crossroad_N = mkN "crossroad" "crossroads" ; -- compound ad_N ;
-lin cartroad_N = mkN "cartroad" "cartroads" ; -- compound ad_N ;
-lin byroad_N = mkN "byroad" "byroads" ; -- compound ad_N ;
-lin toad_N = mkN "toad" "toads" ; -- compound ad_N ;
-lin woad_N = mkN "woad" "woads" ; -- compound ad_N ;
-lin pad_N = mkN "pad" "pads" ; -- notcompound ad_N ;
-lin 'launching-pad_N' = mkN "launching-pad" "launching-pads" ; -- compound ad_N ;
-lin 'scratch-pad_N' = mkN "scratch-pad" "scratch-pads" ; -- compound ad_N ;
-lin 'ink-pad_N' = mkN "ink-pad" "ink-pads" ; -- compound ad_N ;
-lin mousepad_N = mkN "mousepad" "mousepads" ; -- compound ad_N ;
-lin notepad_N = mkN "notepad" "notepads" ; -- compound ad_N ;
-lin scratchpad_N = mkN "scratchpad" "scratchpads" ; -- compound ad_N ;
-lin footpad_N = mkN "footpad" "footpads" ; -- compound ad_N ;
-lin rad_N = mkN "rad" "rads" ; -- notcompound ad_N ;
-lin farad_N = mkN "farad" "farads" ; -- compound ad_N ;
-lin abfarad_N = mkN "abfarad" "abfarads" ; -- compound ad_N ;
-lin millifarad_N = mkN "millifarad" "millifarads" ; -- compound ad_N ;
-lin picofarad_N = mkN "picofarad" "picofarads" ; -- compound ad_N ;
-lin microfarad_N = mkN "microfarad" "microfarads" ; -- compound ad_N ;
-lin brad_N = mkN "brad" "brads" ; -- notcompound ad_N ;
-lin grad_N = mkN "grad" "grads" ; -- notcompound ad_N ;
-lin trad_N = mkN "trad" "trads" ; -- notcompound ad_N ;
-lin tad_N = mkN "tad" "tads" ; -- notcompound ad_N ;
-lin quad_N = mkN "quad" "quads" ; -- compound ad_N ;
-lin squad_N = mkN "squad" "squads" ; -- compound ad_N ;
-lin 'firing-squad_N' = mkN "firing-squad" "firing-squads" ; -- compound ad_N ;
-lin 'flying-squad_N' = mkN "flying-squad" "flying-squads" ; -- compound ad_N ;
-lin wad_N = mkN "wad" "wads" ; -- notcompound ad_N ;
-lin 'tight-wad_N' = mkN "tight-wad" "tight-wads" ; -- compound ad_N ;
-lin swad_N = mkN "swad" "swads" ; -- notcompound ad_N ;
-lin dryad_N = mkN "dryad" "dryads" ; -- compound ad_N ;
-lin hamadryad_N = mkN "hamadryad" "hamadryads" ; -- compound ad_N ;
-lin cd_N = mkN "cd" "cds" ;
-lin oecd_N = mkN "oecd" "oecds" ; -- compound cd_N ;
-lin rudd_N = mkN "rudd" "rudds" ;
-lin 'b ed_N' = mkN "b ed" "b eds" ;
-lin 'dip ed_N' = mkN "dip ed" "dip eds" ;
-lin 'co-ed_N' = mkN "co-ed" "co-eds" ;
-lin bed_N = mkN "bed" "beds" ;
-lin 'truckle-bed_N' = mkN "truckle-bed" "truckle-beds" ; -- compound bed_N ;
-lin 'rose-bed_N' = mkN "rose-bed" "rose-beds" ; -- compound bed_N ;
-lin 'plank-bed_N' = mkN "plank-bed" "plank-beds" ; -- compound bed_N ;
-lin 'divan-bed_N' = mkN "divan-bed" "divan-beds" ; -- compound bed_N ;
-lin 'camp-bed_N' = mkN "camp-bed" "camp-beds" ; -- compound bed_N ;
-lin 'oyster-bed_N' = mkN "oyster-bed" "oyster-beds" ; -- compound bed_N ;
-lin 'river-bed_N' = mkN "river-bed" "river-beds" ; -- compound bed_N ;
-lin 'lie-abed_N' = mkN "lie-abed" "lie-abeds" ; -- compound bed_N ;
-lin seabed_N = mkN "seabed" "seabeds" ; -- compound bed_N ;
-lin roadbed_N = mkN "roadbed" "roadbeds" ; -- compound bed_N ;
-lin seedbed_N = mkN "seedbed" "seedbeds" ; -- compound bed_N ;
-lin deathbed_N = mkN "deathbed" "deathbeds" ; -- compound bed_N ;
-lin sickbed_N = mkN "sickbed" "sickbeds" ; -- compound bed_N ;
-lin streambed_N = mkN "streambed" "streambeds" ; -- compound bed_N ;
-lin featherbed_N = mkN "featherbed" "featherbeds" ; -- compound bed_N ;
-lin riverbed_N = mkN "riverbed" "riverbeds" ; -- compound bed_N ;
-lin flowerbed_N = mkN "flowerbed" "flowerbeds" ; -- compound bed_N ;
-lin airbed_N = mkN "airbed" "airbeds" ; -- compound bed_N ;
-lin flatbed_N = mkN "flatbed" "flatbeds" ; -- compound bed_N ;
-lin hotbed_N = mkN "hotbed" "hotbeds" ; -- compound bed_N ;
-lin testbed_N = mkN "testbed" "testbeds" ; -- compound bed_N ;
-lin daybed_N = mkN "daybed" "daybeds" ; -- compound bed_N ;
-lin wounded_N = mkN "wounded" "woundeds" ;
-lin deed_N = mkN "deed" "deeds" ;
-lin 'title-deed_N' = mkN "title-deed" "title-deeds" ; -- compound deed_N ;
-lin misdeed_N = mkN "misdeed" "misdeeds" ; -- compound deed_N ;
-lin feed_N = mkN "feed" "feeds" ;
-lin chickenfeed_N = mkN "chickenfeed" "chickenfeeds" ; -- compound feed_N ;
-lin heed_N = mkN "heed" "heeds" ;
-lin shaheed_N = mkN "shaheed" "shaheeds" ; -- compound heed_N ;
-lin nosebleed_N = mkN "nosebleed" "nosebleeds" ;
-lin meed_N = mkN "meed" "meeds" ;
-lin need_N = mkN "need" "needs" ;
-lin speed_N = mkN "speed" "speeds" ;
-lin groundspeed_N = mkN "groundspeed" "groundspeeds" ; -- compound speed_N ;
-lin godspeed_N = mkN "godspeed" "godspeeds" ; -- compound speed_N ;
-lin airspeed_N = mkN "airspeed" "airspeeds" ; -- compound speed_N ;
-lin reed_N = mkN "reed" "reeds" ;
-lin breed_N = mkN "breed" "breeds" ; -- notcompound reed_N ;
-lin 'half-breed_N' = mkN "half-breed" "half-breeds" ; -- compound reed_N ;
-lin crossbreed_N = mkN "crossbreed" "crossbreeds" ; -- compound reed_N ;
-lin creed_N = mkN "creed" "creeds" ; -- notcompound reed_N ;
-lin screed_N = mkN "screed" "screeds" ; -- notcompound reed_N ;
-lin greed_N = mkN "greed" "greeds" ; -- notcompound reed_N ;
-lin seed_N = mkN "seed" "seeds" ;
-lin rapeseed_N = mkN "rapeseed" "rapeseeds" ; -- compound seed_N ;
-lin aniseed_N = mkN "aniseed" "aniseeds" ; -- compound seed_N ;
-lin oilseed_N = mkN "oilseed" "oilseeds" ; -- compound seed_N ;
-lin pumpkinseed_N = mkN "pumpkinseed" "pumpkinseeds" ; -- compound seed_N ;
-lin linseed_N = mkN "linseed" "linseeds" ; -- compound seed_N ;
-lin moonseed_N = mkN "moonseed" "moonseeds" ; -- compound seed_N ;
-lin cottonseed_N = mkN "cottonseed" "cottonseeds" ; -- compound seed_N ;
-lin dropseed_N = mkN "dropseed" "dropseeds" ; -- compound seed_N ;
-lin heartseed_N = mkN "heartseed" "heartseeds" ; -- compound seed_N ;
-lin axseed_N = mkN "axseed" "axseeds" ; -- compound seed_N ;
-lin steed_N = mkN "steed" "steeds" ;
-lin weed_N = mkN "weed" "weeds" ;
-lin seaweed_N = mkN "seaweed" "seaweeds" ; -- compound weed_N ;
-lin bindweed_N = mkN "bindweed" "bindweeds" ; -- compound weed_N ;
-lin pondweed_N = mkN "pondweed" "pondweeds" ; -- compound weed_N ;
-lin cudweed_N = mkN "cudweed" "cudweeds" ; -- compound weed_N ;
-lin chafeweed_N = mkN "chafeweed" "chafeweeds" ; -- compound weed_N ;
-lin pokeweed_N = mkN "pokeweed" "pokeweeds" ; -- compound weed_N ;
-lin thimbleweed_N = mkN "thimbleweed" "thimbleweeds" ; -- compound weed_N ;
-lin tumbleweed_N = mkN "tumbleweed" "tumbleweeds" ; -- compound weed_N ;
-lin bugleweed_N = mkN "bugleweed" "bugleweeds" ; -- compound weed_N ;
-lin fireweed_N = mkN "fireweed" "fireweeds" ; -- compound weed_N ;
-lin horseweed_N = mkN "horseweed" "horseweeds" ; -- compound weed_N ;
-lin agueweed_N = mkN "agueweed" "agueweeds" ; -- compound weed_N ;
-lin blueweed_N = mkN "blueweed" "blueweeds" ; -- compound weed_N ;
-lin sneezeweed_N = mkN "sneezeweed" "sneezeweeds" ; -- compound weed_N ;
-lin chaffweed_N = mkN "chaffweed" "chaffweeds" ; -- compound weed_N ;
-lin gulfweed_N = mkN "gulfweed" "gulfweeds" ; -- compound weed_N ;
-lin ragweed_N = mkN "ragweed" "ragweeds" ; -- compound weed_N ;
-lin pigweed_N = mkN "pigweed" "pigweeds" ; -- compound weed_N ;
-lin richweed_N = mkN "richweed" "richweeds" ; -- compound weed_N ;
-lin matchweed_N = mkN "matchweed" "matchweeds" ; -- compound weed_N ;
-lin chickweed_N = mkN "chickweed" "chickweeds" ; -- compound weed_N ;
-lin stickweed_N = mkN "stickweed" "stickweeds" ; -- compound weed_N ;
-lin rockweed_N = mkN "rockweed" "rockweeds" ; -- compound weed_N ;
-lin duckweed_N = mkN "duckweed" "duckweeds" ; -- compound weed_N ;
-lin milkweed_N = mkN "milkweed" "milkweeds" ; -- compound weed_N ;
-lin skunkweed_N = mkN "skunkweed" "skunkweeds" ; -- compound weed_N ;
-lin brookweed_N = mkN "brookweed" "brookweeds" ; -- compound weed_N ;
-lin hawkweed_N = mkN "hawkweed" "hawkweeds" ; -- compound weed_N ;
-lin pickerelweed_N = mkN "pickerelweed" "pickerelweeds" ; -- compound weed_N ;
-lin gravelweed_N = mkN "gravelweed" "gravelweeds" ; -- compound weed_N ;
-lin jewelweed_N = mkN "jewelweed" "jewelweeds" ; -- compound weed_N ;
-lin broomweed_N = mkN "broomweed" "broomweeds" ; -- compound weed_N ;
-lin gumweed_N = mkN "gumweed" "gumweeds" ; -- compound weed_N ;
-lin rosinweed_N = mkN "rosinweed" "rosinweeds" ; -- compound weed_N ;
-lin scorpionweed_N = mkN "scorpionweed" "scorpionweeds" ; -- compound weed_N ;
-lin ironweed_N = mkN "ironweed" "ironweeds" ; -- compound weed_N ;
-lin jimsonweed_N = mkN "jimsonweed" "jimsonweeds" ; -- compound weed_N ;
-lin cottonweed_N = mkN "cottonweed" "cottonweeds" ; -- compound weed_N ;
-lin locoweed_N = mkN "locoweed" "locoweeds" ; -- compound weed_N ;
-lin knapweed_N = mkN "knapweed" "knapweeds" ; -- compound weed_N ;
-lin soapweed_N = mkN "soapweed" "soapweeds" ; -- compound weed_N ;
-lin beggarweed_N = mkN "beggarweed" "beggarweeds" ; -- compound weed_N ;
-lin tarweed_N = mkN "tarweed" "tarweeds" ; -- compound weed_N ;
-lin cancerweed_N = mkN "cancerweed" "cancerweeds" ; -- compound weed_N ;
-lin waterweed_N = mkN "waterweed" "waterweeds" ; -- compound weed_N ;
-lin butterweed_N = mkN "butterweed" "butterweeds" ; -- compound weed_N ;
-lin silverweed_N = mkN "silverweed" "silverweeds" ; -- compound weed_N ;
-lin tweed_N = mkN "tweed" "tweeds" ; -- notcompound weed_N ;
-lin carpetweed_N = mkN "carpetweed" "carpetweeds" ; -- compound weed_N ;
-lin rabbitweed_N = mkN "rabbitweed" "rabbitweeds" ; -- compound weed_N ;
-lin frostweed_N = mkN "frostweed" "frostweeds" ; -- compound weed_N ;
-lin mayweed_N = mkN "mayweed" "mayweeds" ; -- compound weed_N ;
-lin clammyweed_N = mkN "clammyweed" "clammyweeds" ; -- compound weed_N ;
-lin fed_N = mkN "fed" "feds" ;
-lin aged_N = mkN "aged" "ageds" ;
-lin shed_N = mkN "shed" "sheds" ;
-lin bloodshed_N = mkN "bloodshed" "bloodsheds" ; -- compound shed_N ;
-lin woodshed_N = mkN "woodshed" "woodsheds" ; -- compound shed_N ;
-lin toolshed_N = mkN "toolshed" "toolsheds" ; -- compound shed_N ;
-lin watershed_N = mkN "watershed" "watersheds" ; -- compound shed_N ;
-lin cowshed_N = mkN "cowshed" "cowsheds" ; -- compound shed_N ;
-lin betrothed_N = mkN "betrothed" "betrotheds" ;
-lin married_N = mkN "married" "marrieds" ;
-lin disabled_N = mkN "disabled" "disableds" ;
-lin baffled_N = mkN "baffled" "baffleds" ;
-lin sled_N = mkN "sled" "sleds" ;
-lin bobsled_N = mkN "bobsled" "bobsleds" ; -- compound sled_N ;
-lin dogsled_N = mkN "dogsled" "dogsleds" ; -- compound sled_N ;
-lin med_N = mkN "med" "meds" ;
-lin doomed_N = mkN "doomed" "doomeds" ; -- compound med_N ;
-lin damned_N = mkN "damned" "damneds" ;
-lin governed_N = mkN "governed" "governeds" ;
-lin oed_N = mkN "oed" "oeds" ;
-lin biped_N = mkN "biped" "bipeds" ;
-lin parallelepiped_N = mkN "parallelepiped" "parallelepipeds" ;
-lin moped_N = mkN "moped" "mopeds" ;
-lin quadruped_N = mkN "quadruped" "quadrupeds" ;
-lin red_N = mkN "red" "reds" ;
-lin infrared_N = mkN "infrared" "infrareds" ; -- compound red_N ;
-lin thoroughbred_N = mkN "thoroughbred" "thoroughbreds" ; -- compound red_N ;
-lin kindred_N = mkN "kindred" "kindreds" ; -- compound red_N ;
-lin shred_N = mkN "shred" "shreds" ; -- notcompound red_N ;
-lin hatred_N = mkN "hatred" "hatreds" ; -- compound red_N ;
-lin insured_N = mkN "insured" "insureds" ; -- compound red_N ;
-lin unconfessed_N = mkN "unconfessed" "unconfesseds" ;
-lin accused_N = mkN "accused" "accuseds" ;
-lin ted_N = mkN "ted" "teds" ;
-lin defeated_N = mkN "defeated" "defeateds" ; -- compound ted_N ;
-lin retreated_N = mkN "retreated" "retreateds" ; -- compound ted_N ;
-lin malted_N = mkN "malted" "malteds" ; -- compound ted_N ;
-lin oersted_N = mkN "oersted" "oersteds" ; -- compound ted_N ;
-lin worsted_N = mkN "worsted" "worsteds" ; -- compound ted_N ;
-lin pursued_N = mkN "pursued" "pursueds" ;
-lin bereaved_N = mkN "bereaved" "bereaveds" ;
-lin beloved_N = mkN "beloved" "beloveds" ;
-lin newlywed_N = mkN "newlywed" "newlyweds" ;
-lin phd_N = mkN "phd" "phds" ;
-lin aid_N = mkN "aid" "aids" ;
-lin 'deaf-aid_N' = mkN "deaf-aid" "deaf-aids" ; -- compound aid_N ;
-lin 'hearing-aid_N' = mkN "hearing-aid" "hearing-aids" ; -- compound aid_N ;
-lin plaid_N = mkN "plaid" "plaids" ; -- notcompound aid_N ;
-lin maid_N = mkN "maid" "maids" ; -- notcompound aid_N ;
-lin 'lady\'s-maid_N' = mkN "lady's-maid" "lady's-maids" ; -- compound aid_N ;
-lin handmaid_N = mkN "handmaid" "handmaids" ; -- compound aid_N ;
-lin nursemaid_N = mkN "nursemaid" "nursemaids" ; -- compound aid_N ;
-lin housemaid_N = mkN "housemaid" "housemaids" ; -- compound aid_N ;
-lin milkmaid_N = mkN "milkmaid" "milkmaids" ; -- compound aid_N ;
-lin barmaid_N = mkN "barmaid" "barmaids" ; -- compound aid_N ;
-lin chambermaid_N = mkN "chambermaid" "chambermaids" ; -- compound aid_N ;
-lin mermaid_N = mkN "mermaid" "mermaids" ; -- compound aid_N ;
-lin parlormaid_N = mkN "parlormaid" "parlormaids" ; -- compound aid_N ;
-lin bridesmaid_N = mkN "bridesmaid" "bridesmaids" ; -- compound aid_N ;
-lin dairymaid_N = mkN "dairymaid" "dairymaids" ; -- compound aid_N ;
-lin danaid_N = mkN "danaid" "danaids" ; -- compound aid_N ;
-lin raid_N = mkN "raid" "raids" ; -- notcompound aid_N ;
-lin 'air-raid_N' = mkN "air-raid" "air-raids" ; -- compound aid_N ;
-lin braid_N = mkN "braid" "braids" ; -- notcompound aid_N ;
-lin bid_N = mkN "bid" "bids" ;
-lin cymbid_N = mkN "cymbid" "cymbids" ; -- compound bid_N ;
-lin overbid_N = mkN "overbid" "overbids" ; -- compound bid_N ;
-lin cid_N = mkN "cid" "cids" ;
-lin acid_N = mkN "acid" "acids" ; -- notcompound cid_N ;
-lin antacid_N = mkN "antacid" "antacids" ; -- compound cid_N ;
-lin oxyacid_N = mkN "oxyacid" "oxyacids" ; -- compound cid_N ;
-lin probenecid_N = mkN "probenecid" "probenecids" ; -- compound cid_N ;
-lin tortricid_N = mkN "tortricid" "tortricids" ; -- compound cid_N ;
-lin psocid_N = mkN "psocid" "psocids" ; -- compound cid_N ;
-lin bombycid_N = mkN "bombycid" "bombycids" ; -- compound cid_N ;
-lin psychodid_N = mkN "psychodid" "psychodids" ;
-lin katydid_N = mkN "katydid" "katydids" ;
-lin lygaeid_N = mkN "lygaeid" "lygaeids" ;
-lin tracheid_N = mkN "tracheid" "tracheids" ;
-lin apartheid_N = mkN "apartheid" "apartheids" ;
-lin tineid_N = mkN "tineid" "tineids" ;
-lin nereid_N = mkN "nereid" "nereids" ;
-lin haemoproteid_N = mkN "haemoproteid" "haemoproteids" ;
-lin adelgid_N = mkN "adelgid" "adelgids" ;
-lin energid_N = mkN "energid" "energids" ;
-lin mujahid_N = mkN "mujahid" "mujahids" ;
-lin orchid_N = mkN "orchid" "orchids" ;
-lin aphid_N = mkN "aphid" "aphids" ;
-lin trombidiid_N = mkN "trombidiid" "trombidiids" ;
-lin gelechiid_N = mkN "gelechiid" "gelechiids" ;
-lin saturniid_N = mkN "saturniid" "saturniids" ;
-lin gracilariid_N = mkN "gracilariid" "gracilariids" ;
-lin lymantriid_N = mkN "lymantriid" "lymantriids" ;
-lin arctiid_N = mkN "arctiid" "arctiids" ;
-lin masjid_N = mkN "masjid" "masjids" ;
-lin kid_N = mkN "kid" "kids" ;
-lin 'whizz-kid_N' = mkN "whizz-kid" "whizz-kids" ; -- compound kid_N ;
-lin skid_N = mkN "skid" "skids" ; -- notcompound kid_N ;
-lin lid_N = mkN "lid" "lids" ;
-lin nymphalid_N = mkN "nymphalid" "nymphalids" ; -- compound lid_N ;
-lin pyralid_N = mkN "pyralid" "pyralids" ; -- compound lid_N ;
-lin invalid_N = mkN "invalid" "invalids" ; -- compound lid_N ;
-lin annelid_N = mkN "annelid" "annelids" ; -- compound lid_N ;
-lin archiannelid_N = mkN "archiannelid" "archiannelids" ; -- compound lid_N ;
-lin eyelid_N = mkN "eyelid" "eyelids" ; -- compound lid_N ;
-lin cichlid_N = mkN "cichlid" "cichlids" ; -- compound lid_N ;
-lin solid_N = mkN "solid" "solids" ; -- compound lid_N ;
-lin trombiculid_N = mkN "trombiculid" "trombiculids" ; -- compound lid_N ;
-lin gempylid_N = mkN "gempylid" "gempylids" ; -- compound lid_N ;
-lin agamid_N = mkN "agamid" "agamids" ;
-lin pyramid_N = mkN "pyramid" "pyramids" ;
-lin ornithomimid_N = mkN "ornithomimid" "ornithomimids" ;
-lin timid_N = mkN "timid" "timids" ;
-lin catostomid_N = mkN "catostomid" "catostomids" ;
-lin ambystomid_N = mkN "ambystomid" "ambystomids" ;
-lin phasmid_N = mkN "phasmid" "phasmids" ;
-lin plasmid_N = mkN "plasmid" "plasmids" ;
-lin desmid_N = mkN "desmid" "desmids" ;
-lin cosmid_N = mkN "cosmid" "cosmids" ;
-lin phasianid_N = mkN "phasianid" "phasianids" ;
-lin iguanid_N = mkN "iguanid" "iguanids" ;
-lin lycaenid_N = mkN "lycaenid" "lycaenids" ;
-lin scorpaenid_N = mkN "scorpaenid" "scorpaenids" ;
-lin arachnid_N = mkN "arachnid" "arachnids" ;
-lin clinid_N = mkN "clinid" "clinids" ;
-lin hominid_N = mkN "hominid" "hominids" ;
-lin cyprinid_N = mkN "cyprinid" "cyprinids" ;
-lin tyrannid_N = mkN "tyrannid" "tyrannids" ;
-lin salmonid_N = mkN "salmonid" "salmonids" ;
-lin phoronid_N = mkN "phoronid" "phoronids" ;
-lin procyonid_N = mkN "procyonid" "procyonids" ;
-lin rhomboid_N = mkN "rhomboid" "rhomboids" ;
-lin cuboid_N = mkN "cuboid" "cuboids" ;
-lin autacoid_N = mkN "autacoid" "autacoids" ;
-lin glucocorticoid_N = mkN "glucocorticoid" "glucocorticoids" ;
-lin mineralocorticoid_N = mkN "mineralocorticoid" "mineralocorticoids" ;
-lin fucoid_N = mkN "fucoid" "fucoids" ;
-lin mucoid_N = mkN "mucoid" "mucoids" ;
-lin gadoid_N = mkN "gadoid" "gadoids" ;
-lin tineoid_N = mkN "tineoid" "tineoids" ;
-lin typhoid_N = mkN "typhoid" "typhoids" ;
-lin paratyphoid_N = mkN "paratyphoid" "paratyphoids" ; -- compound typhoid_N ;
-lin hemorrhoid_N = mkN "hemorrhoid" "hemorrhoids" ;
-lin cardioid_N = mkN "cardioid" "cardioids" ;
-lin amygdaloid_N = mkN "amygdaloid" "amygdaloids" ;
-lin alkaloid_N = mkN "alkaloid" "alkaloids" ;
-lin tabloid_N = mkN "tabloid" "tabloids" ;
-lin cycloid_N = mkN "cycloid" "cycloids" ;
-lin epicycloid_N = mkN "epicycloid" "epicycloids" ; -- compound cycloid_N ;
-lin hypocycloid_N = mkN "hypocycloid" "hypocycloids" ; -- compound cycloid_N ;
-lin keloid_N = mkN "keloid" "keloids" ;
-lin colloid_N = mkN "colloid" "colloids" ;
-lin hydrocolloid_N = mkN "hydrocolloid" "hydrocolloids" ; -- compound colloid_N ;
-lin paraboloid_N = mkN "paraboloid" "paraboloids" ;
-lin hyperboloid_N = mkN "hyperboloid" "hyperboloids" ;
-lin mongoloid_N = mkN "mongoloid" "mongoloids" ;
-lin haploid_N = mkN "haploid" "haploids" ;
-lin diploid_N = mkN "diploid" "diploids" ;
-lin amphidiploid_N = mkN "amphidiploid" "amphidiploids" ; -- compound diploid_N ;
-lin heteroploid_N = mkN "heteroploid" "heteroploids" ;
-lin polyploid_N = mkN "polyploid" "polyploids" ;
-lin celluloid_N = mkN "celluloid" "celluloids" ;
-lin amyloid_N = mkN "amyloid" "amyloids" ;
-lin ethmoid_N = mkN "ethmoid" "ethmoids" ;
-lin prismoid_N = mkN "prismoid" "prismoids" ;
-lin ganoid_N = mkN "ganoid" "ganoids" ;
-lin paranoid_N = mkN "paranoid" "paranoids" ;
-lin scorpaenoid_N = mkN "scorpaenoid" "scorpaenoids" ;
-lin euglenoid_N = mkN "euglenoid" "euglenoids" ;
-lin solenoid_N = mkN "solenoid" "solenoids" ;
-lin carotenoid_N = mkN "carotenoid" "carotenoids" ;
-lin arytenoid_N = mkN "arytenoid" "arytenoids" ;
-lin arachnoid_N = mkN "arachnoid" "arachnoids" ;
-lin carcinoid_N = mkN "carcinoid" "carcinoids" ;
-lin hominoid_N = mkN "hominoid" "hominoids" ;
-lin crinoid_N = mkN "crinoid" "crinoids" ;
-lin resinoid_N = mkN "resinoid" "resinoids" ;
-lin actinoid_N = mkN "actinoid" "actinoids" ;
-lin flavonoid_N = mkN "flavonoid" "flavonoids" ;
-lin zooid_N = mkN "zooid" "zooids" ;
-lin anthropoid_N = mkN "anthropoid" "anthropoids" ;
-lin polaroid_N = mkN "polaroid" "polaroids" ;
-lin scombroid_N = mkN "scombroid" "scombroids" ;
-lin cancroid_N = mkN "cancroid" "cancroids" ;
-lin chancroid_N = mkN "chancroid" "chancroids" ;
-lin android_N = mkN "android" "androids" ;
-lin spheroid_N = mkN "spheroid" "spheroids" ;
-lin aneroid_N = mkN "aneroid" "aneroids" ;
-lin bacteroid_N = mkN "bacteroid" "bacteroids" ;
-lin steroid_N = mkN "steroid" "steroids" ;
-lin asteroid_N = mkN "asteroid" "asteroids" ; -- notcompound steroid_N ;
-lin nonsteroid_N = mkN "nonsteroid" "nonsteroids" ; -- compound steroid_N ;
-lin corticosteroid_N = mkN "corticosteroid" "corticosteroids" ; -- compound steroid_N ;
-lin ketosteroid_N = mkN "ketosteroid" "ketosteroids" ; -- compound steroid_N ;
-lin 'sang froid_N' = mkN "sang froid" "sang froids" ;
-lin negroid_N = mkN "negroid" "negroids" ;
-lin viroid_N = mkN "viroid" "viroids" ;
-lin meteoroid_N = mkN "meteoroid" "meteoroids" ;
-lin choroid_N = mkN "choroid" "choroids" ;
-lin toroid_N = mkN "toroid" "toroids" ;
-lin centroid_N = mkN "centroid" "centroids" ;
-lin thyroid_N = mkN "thyroid" "thyroids" ;
-lin ellipsoid_N = mkN "ellipsoid" "ellipsoids" ;
-lin sinusoid_N = mkN "sinusoid" "sinusoids" ;
-lin prismatoid_N = mkN "prismatoid" "prismatoids" ;
-lin factoid_N = mkN "factoid" "factoids" ;
-lin deltoid_N = mkN "deltoid" "deltoids" ;
-lin demantoid_N = mkN "demantoid" "demantoids" ;
-lin mastoid_N = mkN "mastoid" "mastoids" ;
-lin sternocleidomastoid_N = mkN "sternocleidomastoid" "sternocleidomastoids" ; -- compound mastoid_N ;
-lin void_N = mkN "void" "voids" ;
-lin ovoid_N = mkN "ovoid" "ovoids" ; -- notcompound void_N ;
-lin hyoid_N = mkN "hyoid" "hyoids" ;
-lin trapezoid_N = mkN "trapezoid" "trapezoids" ;
-lin rhizoid_N = mkN "rhizoid" "rhizoids" ;
-lin antherozoid_N = mkN "antherozoid" "antherozoids" ;
-lin elapid_N = mkN "elapid" "elapids" ;
-lin rapid_N = mkN "rapid" "rapids" ;
-lin lipid_N = mkN "lipid" "lipids" ;
-lin phospholipid_N = mkN "phospholipid" "phospholipids" ; -- compound lipid_N ;
-lin lasiocampid_N = mkN "lasiocampid" "lasiocampids" ;
-lin anaspid_N = mkN "anaspid" "anaspids" ;
-lin vespid_N = mkN "vespid" "vespids" ;
-lin mantispid_N = mkN "mantispid" "mantispids" ;
-lin cupid_N = mkN "cupid" "cupids" ;
-lin acarid_N = mkN "acarid" "acarids" ;
-lin larid_N = mkN "larid" "larids" ;
-lin sparid_N = mkN "sparid" "sparids" ;
-lin hybrid_N = mkN "hybrid" "hybrids" ;
-lin dihybrid_N = mkN "dihybrid" "dihybrids" ; -- compound hybrid_N ;
-lin monohybrid_N = mkN "monohybrid" "monohybrids" ; -- compound hybrid_N ;
-lin pierid_N = mkN "pierid" "pierids" ;
-lin ephemerid_N = mkN "ephemerid" "ephemerids" ;
-lin eurypterid_N = mkN "eurypterid" "eurypterids" ;
-lin grid_N = mkN "grid" "grids" ;
-lin leporid_N = mkN "leporid" "leporids" ;
-lin oviraptorid_N = mkN "oviraptorid" "oviraptorids" ;
-lin geometrid_N = mkN "geometrid" "geometrids" ;
-lin silurid_N = mkN "silurid" "silurids" ;
-lin capsid_N = mkN "capsid" "capsids" ;
-lin diapsid_N = mkN "diapsid" "diapsids" ;
-lin anapsid_N = mkN "anapsid" "anapsids" ;
-lin synapsid_N = mkN "synapsid" "synapsids" ;
-lin therapsid_N = mkN "therapsid" "therapsids" ;
-lin jassid_N = mkN "jassid" "jassids" ;
-lin hydatid_N = mkN "hydatid" "hydatids" ;
-lin chromatid_N = mkN "chromatid" "chromatids" ;
-lin spermatid_N = mkN "spermatid" "spermatids" ;
-lin caryatid_N = mkN "caryatid" "caryatids" ;
-lin neritid_N = mkN "neritid" "neritids" ;
-lin mylodontid_N = mkN "mylodontid" "mylodontids" ;
-lin ootid_N = mkN "ootid" "ootids" ;
-lin plastid_N = mkN "plastid" "plastids" ;
-lin fluid_N = mkN "fluid" "fluids" ;
-lin liquid_N = mkN "liquid" "liquids" ;
-lin squid_N = mkN "squid" "squids" ;
-lin druid_N = mkN "druid" "druids" ;
-lin bovid_N = mkN "bovid" "bovids" ;
-lin isoniazid_N = mkN "isoniazid" "isoniazids" ;
-lin isocarboxazid_N = mkN "isocarboxazid" "isocarboxazids" ;
-lin ribald_N = mkN "ribald" "ribalds" ;
-lin scald_N = mkN "scald" "scalds" ;
-lin weald_N = mkN "weald" "wealds" ;
-lin herald_N = mkN "herald" "heralds" ;
-lin emerald_N = mkN "emerald" "emeralds" ;
-lin field_N = mkN "field" "fields" ;
-lin 'landing-field_N' = mkN "landing-field" "landing-fields" ; -- compound field_N ;
-lin 'playing-field_N' = mkN "playing-field" "playing-fields" ; -- compound field_N ;
-lin 'brick-field_N' = mkN "brick-field" "brick-fields" ; -- compound field_N ;
-lin 'hop-field_N' = mkN "hop-field" "hop-fields" ; -- compound field_N ;
-lin 'paddy-field_N' = mkN "paddy-field" "paddy-fields" ; -- compound field_N ;
-lin goldfield_N = mkN "goldfield" "goldfields" ; -- compound field_N ;
-lin icefield_N = mkN "icefield" "icefields" ; -- compound field_N ;
-lin battlefield_N = mkN "battlefield" "battlefields" ; -- compound field_N ;
-lin minefield_N = mkN "minefield" "minefields" ; -- compound field_N ;
-lin backfield_N = mkN "backfield" "backfields" ; -- compound field_N ;
-lin coalfield_N = mkN "coalfield" "coalfields" ; -- compound field_N ;
-lin oilfield_N = mkN "oilfield" "oilfields" ; -- compound field_N ;
-lin canfield_N = mkN "canfield" "canfields" ; -- compound field_N ;
-lin infield_N = mkN "infield" "infields" ; -- compound field_N ;
-lin grainfield_N = mkN "grainfield" "grainfields" ; -- compound field_N ;
-lin cornfield_N = mkN "cornfield" "cornfields" ; -- compound field_N ;
-lin chesterfield_N = mkN "chesterfield" "chesterfields" ; -- compound field_N ;
-lin airfield_N = mkN "airfield" "airfields" ; -- compound field_N ;
-lin gasfield_N = mkN "gasfield" "gasfields" ; -- compound field_N ;
-lin wheatfield_N = mkN "wheatfield" "wheatfields" ; -- compound field_N ;
-lin outfield_N = mkN "outfield" "outfields" ; -- compound field_N ;
-lin snowfield_N = mkN "snowfield" "snowfields" ; -- compound field_N ;
-lin hayfield_N = mkN "hayfield" "hayfields" ; -- compound field_N ;
-lin shield_N = mkN "shield" "shields" ;
-lin windshield_N = mkN "windshield" "windshields" ; -- compound shield_N ;
-lin yield_N = mkN "yield" "yields" ;
-lin veld_N = mkN "veld" "velds" ;
-lin weld_N = mkN "weld" "welds" ;
-lin gild_N = mkN "gild" "gilds" ;
-lin sild_N = mkN "sild" "silds" ;
-lin build_N = mkN "build" "builds" ;
-lin guild_N = mkN "guild" "guilds" ;
-lin wild_N = mkN "wild" "wilds" ;
-lin old_N = mkN "old" "olds" ;
-lin cold_N = mkN "cold" "colds" ; -- notcompound old_N ;
-lin scold_N = mkN "scold" "scolds" ; -- notcompound old_N ;
-lin fold_N = mkN "fold" "folds" ; -- notcompound old_N ;
-lin blindfold_N = mkN "blindfold" "blindfolds" ; -- compound old_N ;
-lin scaffold_N = mkN "scaffold" "scaffolds" ; -- compound old_N ;
-lin manifold_N = mkN "manifold" "manifolds" ; -- compound old_N ;
-lin billfold_N = mkN "billfold" "billfolds" ; -- compound old_N ;
-lin pinfold_N = mkN "pinfold" "pinfolds" ; -- compound old_N ;
-lin sheepfold_N = mkN "sheepfold" "sheepfolds" ; -- compound old_N ;
-lin centerfold_N = mkN "centerfold" "centerfolds" ; -- compound old_N ;
-lin gold_N = mkN "gold" "golds" ; -- notcompound old_N ;
-lin marigold_N = mkN "marigold" "marigolds" ; -- compound old_N ;
-lin hold_N = mkN "hold" "holds" ; -- notcompound old_N ;
-lin handhold_N = mkN "handhold" "handholds" ; -- compound old_N ;
-lin freehold_N = mkN "freehold" "freeholds" ; -- compound old_N ;
-lin safehold_N = mkN "safehold" "safeholds" ; -- compound old_N ;
-lin chokehold_N = mkN "chokehold" "chokeholds" ; -- compound old_N ;
-lin stokehold_N = mkN "stokehold" "stokeholds" ; -- compound old_N ;
-lin stranglehold_N = mkN "stranglehold" "strangleholds" ; -- compound old_N ;
-lin toehold_N = mkN "toehold" "toeholds" ; -- compound old_N ;
-lin leasehold_N = mkN "leasehold" "leaseholds" ; -- compound old_N ;
-lin household_N = mkN "household" "households" ; -- compound old_N ;
-lin stronghold_N = mkN "stronghold" "strongholds" ; -- compound old_N ;
-lin threshold_N = mkN "threshold" "thresholds" ; -- compound old_N ;
-lin foothold_N = mkN "foothold" "footholds" ; -- compound old_N ;
-lin copyhold_N = mkN "copyhold" "copyholds" ; -- compound old_N ;
-lin cuckold_N = mkN "cuckold" "cuckolds" ; -- compound old_N ;
-lin mold_N = mkN "mold" "molds" ; -- notcompound old_N ;
-lin wold_N = mkN "wold" "wolds" ; -- notcompound old_N ;
-lin world_N = mkN "world" "worlds" ;
-lin dreamworld_N = mkN "dreamworld" "dreamworlds" ; -- compound world_N ;
-lin underworld_N = mkN "underworld" "underworlds" ; -- compound world_N ;
-lin otherworld_N = mkN "otherworld" "otherworlds" ; -- compound world_N ;
-lin afterworld_N = mkN "afterworld" "afterworlds" ; -- compound world_N ;
-lin fauld_N = mkN "fauld" "faulds" ;
-lin mould_N = mkN "mould" "moulds" ;
-lin 'leaf-mould_N' = mkN "leaf-mould" "leaf-moulds" ; -- compound mould_N ;
-lin ironmould_N = mkN "ironmould" "ironmoulds" ; -- compound mould_N ;
-lin md_N = mkN "md" "mds" ;
-lin band_N = mkN "band" "bands" ;
-lin 'dance-band_N' = mkN "dance-band" "dance-bands" ; -- compound band_N ;
-lin 'mourning-band_N' = mkN "mourning-band" "mourning-bands" ; -- compound band_N ;
-lin saraband_N = mkN "saraband" "sarabands" ; -- compound band_N ;
-lin contraband_N = mkN "contraband" "contrabands" ; -- compound band_N ;
-lin headband_N = mkN "headband" "headbands" ; -- compound band_N ;
-lin noseband_N = mkN "noseband" "nosebands" ; -- compound band_N ;
-lin watchband_N = mkN "watchband" "watchbands" ; -- compound band_N ;
-lin riband_N = mkN "riband" "ribands" ; -- compound band_N ;
-lin backband_N = mkN "backband" "backbands" ; -- compound band_N ;
-lin neckband_N = mkN "neckband" "neckbands" ; -- compound band_N ;
-lin armband_N = mkN "armband" "armbands" ; -- compound band_N ;
-lin trainband_N = mkN "trainband" "trainbands" ; -- compound band_N ;
-lin husband_N = mkN "husband" "husbands" ; -- compound band_N ;
-lin sweatband_N = mkN "sweatband" "sweatbands" ; -- compound band_N ;
-lin hatband_N = mkN "hatband" "hatbands" ; -- compound band_N ;
-lin waistband_N = mkN "waistband" "waistbands" ; -- compound band_N ;
-lin wristband_N = mkN "wristband" "wristbands" ; -- compound band_N ;
-lin bellyband_N = mkN "bellyband" "bellybands" ; -- compound band_N ;
-lin multiplicand_N = mkN "multiplicand" "multiplicands" ;
-lin ligand_N = mkN "ligand" "ligands" ;
-lin brigand_N = mkN "brigand" "brigands" ;
-lin hand_N = mkN "hand" "hands" ;
-lin 'second-hand_N' = mkN "second-hand" "second-hands" ; -- compound hand_N ;
-lin 'round-hand_N' = mkN "round-hand" "round-hands" ; -- compound hand_N ;
-lin 'minute-hand_N' = mkN "minute-hand" "minute-hands" ; -- compound hand_N ;
-lin 'mill-hand_N' = mkN "mill-hand" "mill-hands" ; -- compound hand_N ;
-lin 'four-in-hand_N' = mkN "four-in-hand" "four-in-hands" ; -- compound hand_N ;
-lin stagehand_N = mkN "stagehand" "stagehands" ; -- compound hand_N ;
-lin forehand_N = mkN "forehand" "forehands" ; -- compound hand_N ;
-lin longhand_N = mkN "longhand" "longhands" ; -- compound hand_N ;
-lin backhand_N = mkN "backhand" "backhands" ; -- compound hand_N ;
-lin deckhand_N = mkN "deckhand" "deckhands" ; -- compound hand_N ;
-lin farmhand_N = mkN "farmhand" "farmhands" ; -- compound hand_N ;
-lin shorthand_N = mkN "shorthand" "shorthands" ; -- compound hand_N ;
-lin cowhand_N = mkN "cowhand" "cowhands" ; -- compound hand_N ;
-lin viand_N = mkN "viand" "viands" ;
-lin land_N = mkN "land" "lands" ;
-lin 'grazing-land_N' = mkN "grazing-land" "grazing-lands" ; -- compound land_N ;
-lin 'crown-land_N' = mkN "crown-land" "crown-lands" ; -- compound land_N ;
-lin 'cloud-cuckoo-land_N' = mkN "cloud-cuckoo-land" "cloud-cuckoo-lands" ; -- compound land_N ;
-lin 'no-man\'s-land_N' = mkN "no-man's-land" "no-man's-lands" ; -- compound land_N ;
-lin scrubland_N = mkN "scrubland" "scrublands" ; -- compound land_N ;
-lin headland_N = mkN "headland" "headlands" ; -- compound land_N ;
-lin midland_N = mkN "midland" "midlands" ; -- compound land_N ;
-lin woodland_N = mkN "woodland" "woodlands" ; -- compound land_N ;
-lin eland_N = mkN "eland" "elands" ; -- notcompound land_N ;
-lin tideland_N = mkN "tideland" "tidelands" ; -- compound land_N ;
-lin rangeland_N = mkN "rangeland" "rangelands" ; -- compound land_N ;
-lin tableland_N = mkN "tableland" "tablelands" ; -- compound land_N ;
-lin homeland_N = mkN "homeland" "homelands" ; -- compound land_N ;
-lin foreland_N = mkN "foreland" "forelands" ; -- compound land_N ;
-lin wasteland_N = mkN "wasteland" "wastelands" ; -- compound land_N ;
-lin gland_N = mkN "gland" "glands" ; -- notcompound land_N ;
-lin highland_N = mkN "highland" "highlands" ; -- compound land_N ;
-lin northland_N = mkN "northland" "northlands" ; -- compound land_N ;
-lin southland_N = mkN "southland" "southlands" ; -- compound land_N ;
-lin dreamland_N = mkN "dreamland" "dreamlands" ; -- compound land_N ;
-lin bottomland_N = mkN "bottomland" "bottomlands" ; -- compound land_N ;
-lin farmland_N = mkN "farmland" "farmlands" ; -- compound land_N ;
-lin mainland_N = mkN "mainland" "mainlands" ; -- compound land_N ;
-lin upland_N = mkN "upland" "uplands" ; -- compound land_N ;
-lin garland_N = mkN "garland" "garlands" ; -- compound land_N ;
-lin wonderland_N = mkN "wonderland" "wonderlands" ; -- compound land_N ;
-lin borderland_N = mkN "borderland" "borderlands" ; -- compound land_N ;
-lin fatherland_N = mkN "fatherland" "fatherlands" ; -- compound land_N ;
-lin motherland_N = mkN "motherland" "motherlands" ; -- compound land_N ;
-lin hinterland_N = mkN "hinterland" "hinterlands" ; -- compound land_N ;
-lin moorland_N = mkN "moorland" "moorlands" ; -- compound land_N ;
-lin island_N = mkN "island" "islands" ; -- compound land_N ;
-lin grassland_N = mkN "grassland" "grasslands" ; -- compound land_N ;
-lin lotusland_N = mkN "lotusland" "lotuslands" ; -- compound land_N ;
-lin wetland_N = mkN "wetland" "wetlands" ; -- compound land_N ;
-lin heartland_N = mkN "heartland" "heartlands" ; -- compound land_N ;
-lin coastland_N = mkN "coastland" "coastlands" ; -- compound land_N ;
-lin lowland_N = mkN "lowland" "lowlands" ; -- compound land_N ;
-lin fairyland_N = mkN "fairyland" "fairylands" ; -- compound land_N ;
-lin demand_N = mkN "demand" "demands" ;
-lin remand_N = mkN "remand" "remands" ;
-lin reprimand_N = mkN "reprimand" "reprimands" ;
-lin command_N = mkN "command" "commands" ;
-lin 'self-command_N' = mkN "self-command" "self-commands" ; -- compound command_N ;
-lin countermand_N = mkN "countermand" "countermands" ;
-lin gourmand_N = mkN "gourmand" "gourmands" ;
-lin ordinand_N = mkN "ordinand" "ordinands" ;
-lin rand_N = mkN "rand" "rands" ;
-lin brand_N = mkN "brand" "brands" ; -- notcompound rand_N ;
-lin firebrand_N = mkN "firebrand" "firebrands" ; -- compound rand_N ;
-lin operand_N = mkN "operand" "operands" ; -- compound rand_N ;
-lin errand_N = mkN "errand" "errands" ; -- compound rand_N ;
-lin strand_N = mkN "strand" "strands" ; -- notcompound rand_N ;
-lin sand_N = mkN "sand" "sands" ;
-lin quicksand_N = mkN "quicksand" "quicksands" ; -- compound sand_N ;
-lin greensand_N = mkN "greensand" "greensands" ; -- compound sand_N ;
-lin ampersand_N = mkN "ampersand" "ampersands" ; -- compound sand_N ;
-lin analysand_N = mkN "analysand" "analysands" ; -- compound sand_N ;
-lin stand_N = mkN "stand" "stands" ;
-lin 'music-stand_N' = mkN "music-stand" "music-stands" ; -- compound stand_N ;
-lin 'wash-hand-stand_N' = mkN "wash-hand-stand" "wash-hand-stands" ; -- compound stand_N ;
-lin 'hall-stand_N' = mkN "hall-stand" "hall-stands" ; -- compound stand_N ;
-lin 'witness-stand_N' = mkN "witness-stand" "witness-stands" ; -- compound stand_N ;
-lin 'cruet-stand_N' = mkN "cruet-stand" "cruet-stands" ; -- compound stand_N ;
-lin cabstand_N = mkN "cabstand" "cabstands" ; -- compound stand_N ;
-lin headstand_N = mkN "headstand" "headstands" ; -- compound stand_N ;
-lin bandstand_N = mkN "bandstand" "bandstands" ; -- compound stand_N ;
-lin handstand_N = mkN "handstand" "handstands" ; -- compound stand_N ;
-lin grandstand_N = mkN "grandstand" "grandstands" ; -- compound stand_N ;
-lin washstand_N = mkN "washstand" "washstands" ; -- compound stand_N ;
-lin kickstand_N = mkN "kickstand" "kickstands" ; -- compound stand_N ;
-lin inkstand_N = mkN "inkstand" "inkstands" ; -- compound stand_N ;
-lin hallstand_N = mkN "hallstand" "hallstands" ; -- compound stand_N ;
-lin newsstand_N = mkN "newsstand" "newsstands" ; -- compound stand_N ;
-lin wand_N = mkN "wand" "wands" ;
-lin end_N = mkN "end" "ends" ;
-lin 'fag-end_N' = mkN "fag-end" "fag-ends" ; -- compound end_N ;
-lin 'scrag-end_N' = mkN "scrag-end" "scrag-ends" ; -- compound end_N ;
-lin 'book-end_N' = mkN "book-end" "book-ends" ; -- compound end_N ;
-lin 'tail-end_N' = mkN "tail-end" "tail-ends" ; -- compound end_N ;
-lin bend_N = mkN "bend" "bends" ; -- notcompound end_N ;
-lin prebend_N = mkN "prebend" "prebends" ; -- compound end_N ;
-lin backbend_N = mkN "backbend" "backbends" ; -- compound end_N ;
-lin addend_N = mkN "addend" "addends" ; -- compound end_N ;
-lin dividend_N = mkN "dividend" "dividends" ; -- compound end_N ;
-lin legend_N = mkN "legend" "legends" ; -- compound end_N ;
-lin augend_N = mkN "augend" "augends" ; -- compound end_N ;
-lin subtrahend_N = mkN "subtrahend" "subtrahends" ; -- compound end_N ;
-lin fiend_N = mkN "fiend" "fiends" ; -- compound end_N ;
-lin friend_N = mkN "friend" "friends" ; -- compound end_N ;
-lin 'pen-friend_N' = mkN "pen-friend" "pen-friends" ; -- compound end_N ;
-lin schoolfriend_N = mkN "schoolfriend" "schoolfriends" ; -- compound end_N ;
-lin girlfriend_N = mkN "girlfriend" "girlfriends" ; -- compound end_N ;
-lin boyfriend_N = mkN "boyfriend" "boyfriends" ; -- compound end_N ;
-lin weekend_N = mkN "weekend" "weekends" ; -- compound end_N ;
-lin bookend_N = mkN "bookend" "bookends" ; -- compound end_N ;
-lin 'lease-lend_N' = mkN "lease-lend" "lease-lends" ; -- compound end_N ;
-lin blend_N = mkN "blend" "blends" ; -- notcompound end_N ;
-lin loanblend_N = mkN "loanblend" "loanblends" ; -- compound end_N ;
-lin mend_N = mkN "mend" "mends" ; -- notcompound end_N ;
-lin stipend_N = mkN "stipend" "stipends" ; -- compound end_N ;
-lin reverend_N = mkN "reverend" "reverends" ; -- compound end_N ;
-lin trend_N = mkN "trend" "trends" ; -- notcompound end_N ;
-lin godsend_N = mkN "godsend" "godsends" ; -- compound end_N ;
-lin minuend_N = mkN "minuend" "minuends" ; -- compound end_N ;
-lin bind_N = mkN "bind" "binds" ;
-lin find_N = mkN "find" "finds" ;
-lin hind_N = mkN "hind" "hinds" ;
-lin behind_N = mkN "behind" "behinds" ; -- compound hind_N ;
-lin kind_N = mkN "kind" "kinds" ;
-lin mankind_N = mkN "mankind" "mankinds" ; -- compound kind_N ;
-lin womankind_N = mkN "womankind" "womankinds" ; -- compound kind_N ;
-lin humankind_N = mkN "humankind" "humankinds" ; -- compound kind_N ;
-lin blind_N = mkN "blind" "blinds" ;
-lin sunblind_N = mkN "sunblind" "sunblinds" ; -- compound blind_N ;
-lin mind_N = mkN "mind" "minds" ;
-lin mastermind_N = mkN "mastermind" "masterminds" ; -- compound mind_N ;
-lin rind_N = mkN "rind" "rinds" ;
-lin tamarind_N = mkN "tamarind" "tamarinds" ; -- compound rind_N ;
-lin grind_N = mkN "grind" "grinds" ; -- notcompound rind_N ;
-lin wind_N = mkN "wind" "winds" ;
-lin 'trade-wind_N' = mkN "trade-wind" "trade-winds" ; -- compound wind_N ;
-lin headwind_N = mkN "headwind" "headwinds" ; -- compound wind_N ;
-lin woodwind_N = mkN "woodwind" "woodwinds" ; -- compound wind_N ;
-lin tailwind_N = mkN "tailwind" "tailwinds" ; -- compound wind_N ;
-lin whirlwind_N = mkN "whirlwind" "whirlwinds" ; -- compound wind_N ;
-lin crosswind_N = mkN "crosswind" "crosswinds" ; -- compound wind_N ;
-lin bond_N = mkN "bond" "bonds" ;
-lin vagabond_N = mkN "vagabond" "vagabonds" ; -- compound bond_N ;
-lin second_N = mkN "second" "seconds" ;
-lin millisecond_N = mkN "millisecond" "milliseconds" ; -- compound second_N ;
-lin picosecond_N = mkN "picosecond" "picoseconds" ; -- compound second_N ;
-lin nanosecond_N = mkN "nanosecond" "nanoseconds" ; -- compound second_N ;
-lin microsecond_N = mkN "microsecond" "microseconds" ; -- compound second_N ;
-lin femtosecond_N = mkN "femtosecond" "femtoseconds" ; -- compound second_N ;
-lin attosecond_N = mkN "attosecond" "attoseconds" ; -- compound second_N ;
-lin keeshond_N = mkN "keeshond" "keeshonds" ;
-lin muishond_N = mkN "muishond" "muishonds" ;
-lin blond_N = mkN "blond" "blonds" ;
-lin diamond_N = mkN "diamond" "diamonds" ;
-lin almond_N = mkN "almond" "almonds" ;
-lin pond_N = mkN "pond" "ponds" ;
-lin 'horse-pond_N' = mkN "horse-pond" "horse-ponds" ; -- compound pond_N ;
-lin horsepond_N = mkN "horsepond" "horseponds" ; -- compound pond_N ;
-lin fishpond_N = mkN "fishpond" "fishponds" ; -- compound pond_N ;
-lin millpond_N = mkN "millpond" "millponds" ; -- compound pond_N ;
-lin frond_N = mkN "frond" "fronds" ;
-lin maund_N = mkN "maund" "maunds" ;
-lin cummerbund_N = mkN "cummerbund" "cummerbunds" ;
-lin fund_N = mkN "fund" "funds" ;
-lin 'sinking-fund_N' = mkN "sinking-fund" "sinking-funds" ; -- compound fund_N ;
-lin refund_N = mkN "refund" "refunds" ; -- compound fund_N ;
-lin dachshund_N = mkN "dachshund" "dachshunds" ;
-lin bound_N = mkN "bound" "bounds" ;
-lin homebound_N = mkN "homebound" "homebounds" ; -- compound bound_N ;
-lin rebound_N = mkN "rebound" "rebounds" ; -- compound bound_N ;
-lin found_N = mkN "found" "founds" ;
-lin hound_N = mkN "hound" "hounds" ;
-lin 'sleuth-hound_N' = mkN "sleuth-hound" "sleuth-hounds" ; -- compound hound_N ;
-lin bloodhound_N = mkN "bloodhound" "bloodhounds" ; -- compound hound_N ;
-lin horehound_N = mkN "horehound" "horehounds" ; -- compound hound_N ;
-lin wolfhound_N = mkN "wolfhound" "wolfhounds" ; -- compound hound_N ;
-lin staghound_N = mkN "staghound" "staghounds" ; -- compound hound_N ;
-lin smoothhound_N = mkN "smoothhound" "smoothhounds" ; -- compound hound_N ;
-lin hellhound_N = mkN "hellhound" "hellhounds" ; -- compound hound_N ;
-lin coonhound_N = mkN "coonhound" "coonhounds" ; -- compound hound_N ;
-lin boarhound_N = mkN "boarhound" "boarhounds" ; -- compound hound_N ;
-lin otterhound_N = mkN "otterhound" "otterhounds" ; -- compound hound_N ;
-lin foxhound_N = mkN "foxhound" "foxhounds" ; -- compound hound_N ;
-lin greyhound_N = mkN "greyhound" "greyhounds" ; -- compound hound_N ;
-lin mound_N = mkN "mound" "mounds" ;
-lin pound_N = mkN "pound" "pounds" ;
-lin 'foot-pound_N' = mkN "foot-pound" "foot-pounds" ; -- compound pound_N ;
-lin compound_N = mkN "compound" "compounds" ; -- compound pound_N ;
-lin iodocompound_N = mkN "iodocompound" "iodocompounds" ; -- compound pound_N ;
-lin round_N = mkN "round" "rounds" ;
-lin 'turn-round_N' = mkN "turn-round" "turn-rounds" ; -- compound round_N ;
-lin 'merry-go-round_N' = mkN "merry-go-round" "merry-go-rounds" ; -- compound round_N ;
-lin 'whip-round_N' = mkN "whip-round" "whip-rounds" ; -- compound round_N ;
-lin turnaround_N = mkN "turnaround" "turnarounds" ; -- compound round_N ;
-lin wraparound_N = mkN "wraparound" "wraparounds" ; -- compound round_N ;
-lin ground_N = mkN "ground" "grounds" ; -- notcompound round_N ;
-lin 'parade-ground_N' = mkN "parade-ground" "parade-grounds" ; -- compound round_N ;
-lin 'pleasure-ground_N' = mkN "pleasure-ground" "pleasure-grounds" ; -- compound round_N ;
-lin 'stamping-ground_N' = mkN "stamping-ground" "stamping-grounds" ; -- compound round_N ;
-lin 'burying-ground_N' = mkN "burying-ground" "burying-grounds" ; -- compound round_N ;
-lin 'burial-ground_N' = mkN "burial-ground" "burial-grounds" ; -- compound round_N ;
-lin battleground_N = mkN "battleground" "battlegrounds" ; -- compound round_N ;
-lin foreground_N = mkN "foreground" "foregrounds" ; -- compound round_N ;
-lin background_N = mkN "background" "backgrounds" ; -- compound round_N ;
-lin underground_N = mkN "underground" "undergrounds" ; -- compound round_N ;
-lin fairground_N = mkN "fairground" "fairgrounds" ; -- compound round_N ;
-lin playground_N = mkN "playground" "playgrounds" ; -- compound round_N ;
-lin surround_N = mkN "surround" "surrounds" ; -- compound round_N ;
-lin sound_N = mkN "sound" "sounds" ;
-lin ultrasound_N = mkN "ultrasound" "ultrasounds" ; -- compound sound_N ;
-lin wound_N = mkN "wound" "wounds" ;
-lin 'flesh-wound_N' = mkN "flesh-wound" "flesh-wounds" ; -- compound wound_N ;
-lin gerund_N = mkN "gerund" "gerunds" ;
-lin iPod_N = mkN "iPod" "iPods" ;
-lin cod_N = mkN "cod" "cods" ;
-lin lingcod_N = mkN "lingcod" "lingcods" ; -- compound cod_N ;
-lin eisteddfod_N = mkN "eisteddfod" "eisteddfods" ;
-lin god_N = mkN "god" "gods" ;
-lin 'sea-god_N' = mkN "sea-god" "sea-gods" ; -- compound god_N ;
-lin 'sun-god_N' = mkN "sun-god" "sun-gods" ; -- compound god_N ;
-lin 'war-god_N' = mkN "war-god" "war-gods" ; -- compound god_N ;
-lin demigod_N = mkN "demigod" "demigods" ; -- compound god_N ;
-lin hod_N = mkN "hod" "hods" ;
-lin method_N = mkN "method" "methods" ; -- compound hod_N ;
-lin period_N = mkN "period" "periods" ;
-lin clod_N = mkN "clod" "clods" ;
-lin mod_N = mkN "mod" "mods" ;
-lin nod_N = mkN "nod" "nods" ;
-lin synod_N = mkN "synod" "synods" ; -- compound nod_N ;
-lin food_N = mkN "food" "foods" ;
-lin seafood_N = mkN "seafood" "seafoods" ; -- compound food_N ;
-lin petfood_N = mkN "petfood" "petfoods" ; -- compound food_N ;
-lin good_N = mkN "good" "goods" ;
-lin hood_N = mkN "hood" "hoods" ;
-lin childhood_N = mkN "childhood" "childhoods" ; -- compound hood_N ;
-lin falsehood_N = mkN "falsehood" "falsehoods" ; -- compound hood_N ;
-lin statehood_N = mkN "statehood" "statehoods" ; -- compound hood_N ;
-lin hardihood_N = mkN "hardihood" "hardihoods" ; -- compound hood_N ;
-lin likelihood_N = mkN "likelihood" "likelihoods" ; -- compound hood_N ;
-lin unlikelihood_N = mkN "unlikelihood" "unlikelihoods" ; -- compound hood_N ;
-lin livelihood_N = mkN "livelihood" "livelihoods" ; -- compound hood_N ;
-lin girlhood_N = mkN "girlhood" "girlhoods" ; -- compound hood_N ;
-lin manhood_N = mkN "manhood" "manhoods" ; -- compound hood_N ;
-lin womanhood_N = mkN "womanhood" "womanhoods" ; -- compound hood_N ;
-lin maidenhood_N = mkN "maidenhood" "maidenhoods" ; -- compound hood_N ;
-lin nationhood_N = mkN "nationhood" "nationhoods" ; -- compound hood_N ;
-lin personhood_N = mkN "personhood" "personhoods" ; -- compound hood_N ;
-lin fatherhood_N = mkN "fatherhood" "fatherhoods" ; -- compound hood_N ;
-lin motherhood_N = mkN "motherhood" "motherhoods" ; -- compound hood_N ;
-lin brotherhood_N = mkN "brotherhood" "brotherhoods" ; -- compound hood_N ;
-lin sisterhood_N = mkN "sisterhood" "sisterhoods" ; -- compound hood_N ;
-lin spinsterhood_N = mkN "spinsterhood" "spinsterhoods" ; -- compound hood_N ;
-lin neighborhood_N = mkN "neighborhood" "neighborhoods" ; -- compound hood_N ;
-lin bachelorhood_N = mkN "bachelorhood" "bachelorhoods" ; -- compound hood_N ;
-lin neighbourhood_N = mkN "neighbourhood" "neighbourhoods" ; -- compound hood_N ;
-lin monkshood_N = mkN "monkshood" "monkshoods" ; -- compound hood_N ;
-lin knighthood_N = mkN "knighthood" "knighthoods" ; -- compound hood_N ;
-lin adulthood_N = mkN "adulthood" "adulthoods" ; -- compound hood_N ;
-lin peasanthood_N = mkN "peasanthood" "peasanthoods" ; -- compound hood_N ;
-lin parenthood_N = mkN "parenthood" "parenthoods" ; -- compound hood_N ;
-lin sainthood_N = mkN "sainthood" "sainthoods" ; -- compound hood_N ;
-lin priesthood_N = mkN "priesthood" "priesthoods" ; -- compound hood_N ;
-lin widowhood_N = mkN "widowhood" "widowhoods" ; -- compound hood_N ;
-lin babyhood_N = mkN "babyhood" "babyhoods" ; -- compound hood_N ;
-lin boyhood_N = mkN "boyhood" "boyhoods" ; -- compound hood_N ;
-lin blood_N = mkN "blood" "bloods" ;
-lin 'half-blood_N' = mkN "half-blood" "half-bloods" ; -- compound blood_N ;
-lin lifeblood_N = mkN "lifeblood" "lifebloods" ; -- compound blood_N ;
-lin flood_N = mkN "flood" "floods" ;
-lin mood_N = mkN "mood" "moods" ;
-lin snood_N = mkN "snood" "snoods" ;
-lin pood_N = mkN "pood" "poods" ;
-lin rood_N = mkN "rood" "roods" ;
-lin brood_N = mkN "brood" "broods" ; -- notcompound rood_N ;
-lin wood_N = mkN "wood" "woods" ;
-lin 'drift-wood_N' = mkN "drift-wood" "drift-woods" ; -- compound wood_N ;
-lin zebrawood_N = mkN "zebrawood" "zebrawoods" ; -- compound wood_N ;
-lin deadwood_N = mkN "deadwood" "deadwoods" ; -- compound wood_N ;
-lin nakedwood_N = mkN "nakedwood" "nakedwoods" ; -- compound wood_N ;
-lin redwood_N = mkN "redwood" "redwoods" ; -- compound wood_N ;
-lin hardwood_N = mkN "hardwood" "hardwoods" ; -- compound wood_N ;
-lin cordwood_N = mkN "cordwood" "cordwoods" ; -- compound wood_N ;
-lin lancewood_N = mkN "lancewood" "lancewoods" ; -- compound wood_N ;
-lin princewood_N = mkN "princewood" "princewoods" ; -- compound wood_N ;
-lin orangewood_N = mkN "orangewood" "orangewoods" ; -- compound wood_N ;
-lin snakewood_N = mkN "snakewood" "snakewoods" ; -- compound wood_N ;
-lin marblewood_N = mkN "marblewood" "marblewoods" ; -- compound wood_N ;
-lin needlewood_N = mkN "needlewood" "needlewoods" ; -- compound wood_N ;
-lin candlewood_N = mkN "candlewood" "candlewoods" ; -- compound wood_N ;
-lin applewood_N = mkN "applewood" "applewoods" ; -- compound wood_N ;
-lin firewood_N = mkN "firewood" "firewoods" ; -- compound wood_N ;
-lin greasewood_N = mkN "greasewood" "greasewoods" ; -- compound wood_N ;
-lin moosewood_N = mkN "moosewood" "moosewoods" ; -- compound wood_N ;
-lin rosewood_N = mkN "rosewood" "rosewoods" ; -- compound wood_N ;
-lin dyewood_N = mkN "dyewood" "dyewoods" ; -- compound wood_N ;
-lin beefwood_N = mkN "beefwood" "beefwoods" ; -- compound wood_N ;
-lin kingwood_N = mkN "kingwood" "kingwoods" ; -- compound wood_N ;
-lin dogwood_N = mkN "dogwood" "dogwoods" ; -- compound wood_N ;
-lin logwood_N = mkN "logwood" "logwoods" ; -- compound wood_N ;
-lin matchwood_N = mkN "matchwood" "matchwoods" ; -- compound wood_N ;
-lin brushwood_N = mkN "brushwood" "brushwoods" ; -- compound wood_N ;
-lin blackwood_N = mkN "blackwood" "blackwoods" ; -- compound wood_N ;
-lin corkwood_N = mkN "corkwood" "corkwoods" ; -- compound wood_N ;
-lin muskwood_N = mkN "muskwood" "muskwoods" ; -- compound wood_N ;
-lin sandalwood_N = mkN "sandalwood" "sandalwoods" ; -- compound wood_N ;
-lin coralwood_N = mkN "coralwood" "coralwoods" ; -- compound wood_N ;
-lin laurelwood_N = mkN "laurelwood" "laurelwoods" ; -- compound wood_N ;
-lin devilwood_N = mkN "devilwood" "devilwoods" ; -- compound wood_N ;
-lin brazilwood_N = mkN "brazilwood" "brazilwoods" ; -- compound wood_N ;
-lin camwood_N = mkN "camwood" "camwoods" ; -- compound wood_N ;
-lin shittimwood_N = mkN "shittimwood" "shittimwoods" ; -- compound wood_N ;
-lin wormwood_N = mkN "wormwood" "wormwoods" ; -- compound wood_N ;
-lin gumwood_N = mkN "gumwood" "gumwoods" ; -- compound wood_N ;
-lin greenwood_N = mkN "greenwood" "greenwoods" ; -- compound wood_N ;
-lin satinwood_N = mkN "satinwood" "satinwoods" ; -- compound wood_N ;
-lin lemonwood_N = mkN "lemonwood" "lemonwoods" ; -- compound wood_N ;
-lin ironwood_N = mkN "ironwood" "ironwoods" ; -- compound wood_N ;
-lin citronwood_N = mkN "citronwood" "citronwoods" ; -- compound wood_N ;
-lin cottonwood_N = mkN "cottonwood" "cottonwoods" ; -- compound wood_N ;
-lin buttonwood_N = mkN "buttonwood" "buttonwoods" ; -- compound wood_N ;
-lin southernwood_N = mkN "southernwood" "southernwoods" ; -- compound wood_N ;
-lin sapwood_N = mkN "sapwood" "sapwoods" ; -- compound wood_N ;
-lin tulipwood_N = mkN "tulipwood" "tulipwoods" ; -- compound wood_N ;
-lin pulpwood_N = mkN "pulpwood" "pulpwoods" ; -- compound wood_N ;
-lin briarwood_N = mkN "briarwood" "briarwoods" ; -- compound wood_N ;
-lin tarwood_N = mkN "tarwood" "tarwoods" ; -- compound wood_N ;
-lin leatherwood_N = mkN "leatherwood" "leatherwoods" ; -- compound wood_N ;
-lin basswood_N = mkN "basswood" "basswoods" ; -- compound wood_N ;
-lin cocuswood_N = mkN "cocuswood" "cocuswoods" ; -- compound wood_N ;
-lin trumpetwood_N = mkN "trumpetwood" "trumpetwoods" ; -- compound wood_N ;
-lin driftwood_N = mkN "driftwood" "driftwoods" ; -- compound wood_N ;
-lin softwood_N = mkN "softwood" "softwoods" ; -- compound wood_N ;
-lin lightwood_N = mkN "lightwood" "lightwoods" ; -- compound wood_N ;
-lin rabbitwood_N = mkN "rabbitwood" "rabbitwoods" ; -- compound wood_N ;
-lin fruitwood_N = mkN "fruitwood" "fruitwoods" ; -- compound wood_N ;
-lin bentwood_N = mkN "bentwood" "bentwoods" ; -- compound wood_N ;
-lin heartwood_N = mkN "heartwood" "heartwoods" ; -- compound wood_N ;
-lin yellowwood_N = mkN "yellowwood" "yellowwoods" ; -- compound wood_N ;
-lin boxwood_N = mkN "boxwood" "boxwoods" ; -- compound wood_N ;
-lin plywood_N = mkN "plywood" "plywoods" ; -- compound wood_N ;
-lin pod_N = mkN "pod" "pods" ;
-lin decapod_N = mkN "decapod" "decapods" ; -- compound pod_N ;
-lin myriapod_N = mkN "myriapod" "myriapods" ; -- compound pod_N ;
-lin tetrapod_N = mkN "tetrapod" "tetrapods" ; -- compound pod_N ;
-lin hexapod_N = mkN "hexapod" "hexapods" ; -- compound pod_N ;
-lin fringepod_N = mkN "fringepod" "fringepods" ; -- compound pod_N ;
-lin sicklepod_N = mkN "sicklepod" "sicklepods" ; -- compound pod_N ;
-lin copepod_N = mkN "copepod" "copepods" ; -- compound pod_N ;
-lin amphipod_N = mkN "amphipod" "amphipods" ; -- compound pod_N ;
-lin tripod_N = mkN "tripod" "tripods" ; -- compound pod_N ;
-lin pseudopod_N = mkN "pseudopod" "pseudopods" ; -- compound pod_N ;
-lin scaphopod_N = mkN "scaphopod" "scaphopods" ; -- compound pod_N ;
-lin ornithopod_N = mkN "ornithopod" "ornithopods" ; -- compound pod_N ;
-lin brachiopod_N = mkN "brachiopod" "brachiopods" ; -- compound pod_N ;
-lin cephalopod_N = mkN "cephalopod" "cephalopods" ; -- compound pod_N ;
-lin actinopod_N = mkN "actinopod" "actinopods" ; -- compound pod_N ;
-lin theropod_N = mkN "theropod" "theropods" ; -- compound pod_N ;
-lin arthropod_N = mkN "arthropod" "arthropods" ; -- compound pod_N ;
-lin gastropod_N = mkN "gastropod" "gastropods" ; -- compound pod_N ;
-lin sauropod_N = mkN "sauropod" "sauropods" ; -- compound pod_N ;
-lin isopod_N = mkN "isopod" "isopods" ; -- compound pod_N ;
-lin stomatopod_N = mkN "stomatopod" "stomatopods" ; -- compound pod_N ;
-lin octopod_N = mkN "octopod" "octopods" ; -- compound pod_N ;
-lin rhizopod_N = mkN "rhizopod" "rhizopods" ; -- compound pod_N ;
-lin bladderpod_N = mkN "bladderpod" "bladderpods" ; -- compound pod_N ;
-lin rod_N = mkN "rod" "rods" ;
-lin 'fishing-rod_N' = mkN "fishing-rod" "fishing-rods" ; -- compound rod_N ;
-lin 'lightning-rod_N' = mkN "lightning-rod" "lightning-rods" ; -- compound rod_N ;
-lin 'birch-rod_N' = mkN "birch-rod" "birch-rods" ; -- compound rod_N ;
-lin 'stair-rod_N' = mkN "stair-rod" "stair-rods" ; -- compound rod_N ;
-lin flatbrod_N = mkN "flatbrod" "flatbrods" ; -- compound rod_N ;
-lin scrod_N = mkN "scrod" "scrods" ; -- notcompound rod_N ;
-lin schrod_N = mkN "schrod" "schrods" ; -- notcompound rod_N ;
-lin ramrod_N = mkN "ramrod" "ramrods" ; -- compound rod_N ;
-lin goldenrod_N = mkN "goldenrod" "goldenrods" ; -- compound rod_N ;
-lin prod_N = mkN "prod" "prods" ; -- notcompound rod_N ;
-lin silverrod_N = mkN "silverrod" "silverrods" ; -- compound rod_N ;
-lin sod_N = mkN "sod" "sods" ;
-lin tod_N = mkN "tod" "tods" ;
-lin bard_N = mkN "bard" "bards" ;
-lin tabard_N = mkN "tabard" "tabards" ; -- compound bard_N ;
-lin scabbard_N = mkN "scabbard" "scabbards" ; -- compound bard_N ;
-lin card_N = mkN "card" "cards" ;
-lin 'face-card_N' = mkN "face-card" "face-cards" ; -- compound card_N ;
-lin 'picture-card_N' = mkN "picture-card" "picture-cards" ; -- compound card_N ;
-lin 'boarding-card_N' = mkN "boarding-card" "boarding-cards" ; -- compound card_N ;
-lin 'mailing-card_N' = mkN "mailing-card" "mailing-cards" ; -- compound card_N ;
-lin 'playing-card_N' = mkN "playing-card" "playing-cards" ; -- compound card_N ;
-lin 'letter-card_N' = mkN "letter-card" "letter-cards" ; -- compound card_N ;
-lin 'court-card_N' = mkN "court-card" "court-cards" ; -- compound card_N ;
-lin placard_N = mkN "placard" "placards" ; -- compound card_N ;
-lin racecard_N = mkN "racecard" "racecards" ; -- compound card_N ;
-lin timecard_N = mkN "timecard" "timecards" ; -- compound card_N ;
-lin scorecard_N = mkN "scorecard" "scorecards" ; -- compound card_N ;
-lin lettercard_N = mkN "lettercard" "lettercards" ; -- compound card_N ;
-lin discard_N = mkN "discard" "discards" ; -- compound card_N ;
-lin postcard_N = mkN "postcard" "postcards" ; -- compound card_N ;
-lin keycard_N = mkN "keycard" "keycards" ; -- compound card_N ;
-lin standard_N = mkN "standard" "standards" ;
-lin beard_N = mkN "beard" "beards" ;
-lin crownbeard_N = mkN "crownbeard" "crownbeards" ; -- compound beard_N ;
-lin greybeard_N = mkN "greybeard" "greybeards" ; -- compound beard_N ;
-lin regard_N = mkN "regard" "regards" ;
-lin disregard_N = mkN "disregard" "disregards" ; -- compound regard_N ;
-lin laggard_N = mkN "laggard" "laggards" ;
-lin niggard_N = mkN "niggard" "niggards" ;
-lin sluggard_N = mkN "sluggard" "sluggards" ;
-lin 'die-hard_N' = mkN "die-hard" "die-hards" ;
-lin chard_N = mkN "chard" "chards" ;
-lin pilchard_N = mkN "pilchard" "pilchards" ; -- compound chard_N ;
-lin pochard_N = mkN "pochard" "pochards" ; -- compound chard_N ;
-lin orchard_N = mkN "orchard" "orchards" ; -- compound chard_N ;
-lin shard_N = mkN "shard" "shards" ;
-lin halliard_N = mkN "halliard" "halliards" ;
-lin milliard_N = mkN "milliard" "milliards" ;
-lin goliard_N = mkN "goliard" "goliards" ;
-lin spaniard_N = mkN "spaniard" "spaniards" ;
-lin poniard_N = mkN "poniard" "poniards" ;
-lin briard_N = mkN "briard" "briards" ;
-lin tankard_N = mkN "tankard" "tankards" ;
-lin drunkard_N = mkN "drunkard" "drunkards" ;
-lin lard_N = mkN "lard" "lards" ;
-lin mallard_N = mkN "mallard" "mallards" ; -- compound lard_N ;
-lin bollard_N = mkN "bollard" "bollards" ; -- compound lard_N ;
-lin collard_N = mkN "collard" "collards" ; -- compound lard_N ;
-lin pollard_N = mkN "pollard" "pollards" ; -- compound lard_N ;
-lin dullard_N = mkN "dullard" "dullards" ; -- compound lard_N ;
-lin foulard_N = mkN "foulard" "foulards" ; -- compound lard_N ;
-lin nard_N = mkN "nard" "nards" ;
-lin canard_N = mkN "canard" "canards" ; -- compound nard_N ;
-lin spikenard_N = mkN "spikenard" "spikenards" ; -- compound nard_N ;
-lin gurnard_N = mkN "gurnard" "gurnards" ; -- compound nard_N ;
-lin board_N = mkN "board" "boards" ;
-lin 'ouija-board_N' = mkN "ouija-board" "ouija-boards" ; -- compound board_N ;
-lin 'notice-board_N' = mkN "notice-board" "notice-boards" ; -- compound board_N ;
-lin 'cribbage-board_N' = mkN "cribbage-board" "cribbage-boards" ; -- compound board_N ;
-lin 'centre-board_N' = mkN "centre-board" "centre-boards" ; -- compound board_N ;
-lin 'sounding-board_N' = mkN "sounding-board" "sounding-boards" ; -- compound board_N ;
-lin 'draining-board_N' = mkN "draining-board" "draining-boards" ; -- compound board_N ;
-lin 'running-board_N' = mkN "running-board" "running-boards" ; -- compound board_N ;
-lin 'ironing-board_N' = mkN "ironing-board" "ironing-boards" ; -- compound board_N ;
-lin 'skirting-board_N' = mkN "skirting-board" "skirting-boards" ; -- compound board_N ;
-lin 'diving-board_N' = mkN "diving-board" "diving-boards" ; -- compound board_N ;
-lin 'drawing-board_N' = mkN "drawing-board" "drawing-boards" ; -- compound board_N ;
-lin 'sandwich-board_N' = mkN "sandwich-board" "sandwich-boards" ; -- compound board_N ;
-lin 'shovel-board_N' = mkN "shovel-board" "shovel-boards" ; -- compound board_N ;
-lin 'council-board_N' = mkN "council-board" "council-boards" ; -- compound board_N ;
-lin 'school-board_N' = mkN "school-board" "school-boards" ; -- compound board_N ;
-lin seaboard_N = mkN "seaboard" "seaboards" ; -- compound board_N ;
-lin headboard_N = mkN "headboard" "headboards" ; -- compound board_N ;
-lin breadboard_N = mkN "breadboard" "breadboards" ; -- compound board_N ;
-lin moldboard_N = mkN "moldboard" "moldboards" ; -- compound board_N ;
-lin cardboard_N = mkN "cardboard" "cardboards" ; -- compound board_N ;
-lin hardboard_N = mkN "hardboard" "hardboards" ; -- compound board_N ;
-lin sideboard_N = mkN "sideboard" "sideboards" ; -- compound board_N ;
-lin shuffleboard_N = mkN "shuffleboard" "shuffleboards" ; -- compound board_N ;
-lin fibreboard_N = mkN "fibreboard" "fibreboards" ; -- compound board_N ;
-lin scoreboard_N = mkN "scoreboard" "scoreboards" ; -- compound board_N ;
-lin baseboard_N = mkN "baseboard" "baseboards" ; -- compound board_N ;
-lin cheeseboard_N = mkN "cheeseboard" "cheeseboards" ; -- compound board_N ;
-lin skateboard_N = mkN "skateboard" "skateboards" ; -- compound board_N ;
-lin pasteboard_N = mkN "pasteboard" "pasteboards" ; -- compound board_N ;
-lin surfboard_N = mkN "surfboard" "surfboards" ; -- compound board_N ;
-lin pegboard_N = mkN "pegboard" "pegboards" ; -- compound board_N ;
-lin springboard_N = mkN "springboard" "springboards" ; -- compound board_N ;
-lin punchboard_N = mkN "punchboard" "punchboards" ; -- compound board_N ;
-lin matchboard_N = mkN "matchboard" "matchboards" ; -- compound board_N ;
-lin switchboard_N = mkN "switchboard" "switchboards" ; -- compound board_N ;
-lin highboard_N = mkN "highboard" "highboards" ; -- compound board_N ;
-lin dashboard_N = mkN "dashboard" "dashboards" ; -- compound board_N ;
-lin flashboard_N = mkN "flashboard" "flashboards" ; -- compound board_N ;
-lin splashboard_N = mkN "splashboard" "splashboards" ; -- compound board_N ;
-lin washboard_N = mkN "washboard" "washboards" ; -- compound board_N ;
-lin backboard_N = mkN "backboard" "backboards" ; -- compound board_N ;
-lin blackboard_N = mkN "blackboard" "blackboards" ; -- compound board_N ;
-lin buckboard_N = mkN "buckboard" "buckboards" ; -- compound board_N ;
-lin duckboard_N = mkN "duckboard" "duckboards" ; -- compound board_N ;
-lin corkboard_N = mkN "corkboard" "corkboards" ; -- compound board_N ;
-lin workboard_N = mkN "workboard" "workboards" ; -- compound board_N ;
-lin tailboard_N = mkN "tailboard" "tailboards" ; -- compound board_N ;
-lin fallboard_N = mkN "fallboard" "fallboards" ; -- compound board_N ;
-lin wallboard_N = mkN "wallboard" "wallboards" ; -- compound board_N ;
-lin billboard_N = mkN "billboard" "billboards" ; -- compound board_N ;
-lin millboard_N = mkN "millboard" "millboards" ; -- compound board_N ;
-lin signboard_N = mkN "signboard" "signboards" ; -- compound board_N ;
-lin drainboard_N = mkN "drainboard" "drainboards" ; -- compound board_N ;
-lin lapboard_N = mkN "lapboard" "lapboards" ; -- compound board_N ;
-lin clapboard_N = mkN "clapboard" "clapboards" ; -- compound board_N ;
-lin chipboard_N = mkN "chipboard" "chipboards" ; -- compound board_N ;
-lin clipboard_N = mkN "clipboard" "clipboards" ; -- compound board_N ;
-lin cupboard_N = mkN "cupboard" "cupboards" ; -- compound board_N ;
-lin 'airing-cupboard_N' = mkN "airing-cupboard" "airing-cupboards" ; -- compound board_N ;
-lin garboard_N = mkN "garboard" "garboards" ; -- compound board_N ;
-lin larboard_N = mkN "larboard" "larboards" ; -- compound board_N ;
-lin mortarboard_N = mkN "mortarboard" "mortarboards" ; -- compound board_N ;
-lin starboard_N = mkN "starboard" "starboards" ; -- compound board_N ;
-lin fiberboard_N = mkN "fiberboard" "fiberboards" ; -- compound board_N ;
-lin daggerboard_N = mkN "daggerboard" "daggerboards" ; -- compound board_N ;
-lin fingerboard_N = mkN "fingerboard" "fingerboards" ; -- compound board_N ;
-lin checkerboard_N = mkN "checkerboard" "checkerboards" ; -- compound board_N ;
-lin paperboard_N = mkN "paperboard" "paperboards" ; -- compound board_N ;
-lin clapperboard_N = mkN "clapperboard" "clapperboards" ; -- compound board_N ;
-lin centerboard_N = mkN "centerboard" "centerboards" ; -- compound board_N ;
-lin plasterboard_N = mkN "plasterboard" "plasterboards" ; -- compound board_N ;
-lin floorboard_N = mkN "floorboard" "floorboards" ; -- compound board_N ;
-lin chessboard_N = mkN "chessboard" "chessboards" ; -- compound board_N ;
-lin footboard_N = mkN "footboard" "footboards" ; -- compound board_N ;
-lin dartboard_N = mkN "dartboard" "dartboards" ; -- compound board_N ;
-lin strawboard_N = mkN "strawboard" "strawboards" ; -- compound board_N ;
-lin snowboard_N = mkN "snowboard" "snowboards" ; -- compound board_N ;
-lin keyboard_N = mkN "keyboard" "keyboards" ; -- compound board_N ;
-lin hoard_N = mkN "hoard" "hoards" ;
-lin leopard_N = mkN "leopard" "leopards" ;
-lin sard_N = mkN "sard" "sards" ;
-lin hansard_N = mkN "hansard" "hansards" ; -- compound sard_N ;
-lin mansard_N = mkN "mansard" "mansards" ; -- compound sard_N ;
-lin brassard_N = mkN "brassard" "brassards" ; -- compound sard_N ;
-lin petard_N = mkN "petard" "petards" ;
-lin dotard_N = mkN "dotard" "dotards" ;
-lin leotard_N = mkN "leotard" "leotards" ;
-lin bastard_N = mkN "bastard" "bastards" ;
-lin dastard_N = mkN "dastard" "dastards" ;
-lin bustard_N = mkN "bustard" "bustards" ;
-lin custard_N = mkN "custard" "custards" ;
-lin mustard_N = mkN "mustard" "mustards" ;
-lin guard_N = mkN "guard" "guards" ;
-lin 'watch-guard_N' = mkN "watch-guard" "watch-guards" ; -- compound guard_N ;
-lin mudguard_N = mkN "mudguard" "mudguards" ; -- compound guard_N ;
-lin safeguard_N = mkN "safeguard" "safeguards" ; -- compound guard_N ;
-lin lifeguard_N = mkN "lifeguard" "lifeguards" ; -- compound guard_N ;
-lin fireguard_N = mkN "fireguard" "fireguards" ; -- compound guard_N ;
-lin blackguard_N = mkN "blackguard" "blackguards" ; -- compound guard_N ;
-lin vanguard_N = mkN "vanguard" "vanguards" ; -- compound guard_N ;
-lin shinguard_N = mkN "shinguard" "shinguards" ; -- compound guard_N ;
-lin rearguard_N = mkN "rearguard" "rearguards" ; -- compound guard_N ;
-lin coastguard_N = mkN "coastguard" "coastguards" ; -- compound guard_N ;
-lin bodyguard_N = mkN "bodyguard" "bodyguards" ; -- compound guard_N ;
-lin jacquard_N = mkN "jacquard" "jacquards" ;
-lin boulevard_N = mkN "boulevard" "boulevards" ;
-lin ward_N = mkN "ward" "wards" ;
-lin award_N = mkN "award" "awards" ; -- notcompound ward_N ;
-lin seaward_N = mkN "seaward" "seawards" ; -- compound ward_N ;
-lin windward_N = mkN "windward" "windwards" ; -- compound ward_N ;
-lin leeward_N = mkN "leeward" "leewards" ; -- compound ward_N ;
-lin reward_N = mkN "reward" "rewards" ; -- compound ward_N ;
-lin steward_N = mkN "steward" "stewards" ; -- compound ward_N ;
-lin 'shop-steward_N' = mkN "shop-steward" "shop-stewards" ; -- compound ward_N ;
-lin coward_N = mkN "coward" "cowards" ; -- compound ward_N ;
-lin rearward_N = mkN "rearward" "rearwards" ; -- compound ward_N ;
-lin forward_N = mkN "forward" "forwards" ; -- compound ward_N ;
-lin sward_N = mkN "sward" "swards" ; -- notcompound ward_N ;
-lin greensward_N = mkN "greensward" "greenswards" ; -- compound ward_N ;
-lin yard_N = mkN "yard" "yards" ;
-lin 'rope-yard_N' = mkN "rope-yard" "rope-yards" ; -- compound yard_N ;
-lin 'marshalling-yard_N' = mkN "marshalling-yard" "marshalling-yards" ; -- compound yard_N ;
-lin vineyard_N = mkN "vineyard" "vineyards" ; -- compound yard_N ;
-lin graveyard_N = mkN "graveyard" "graveyards" ; -- compound yard_N ;
-lin churchyard_N = mkN "churchyard" "churchyards" ; -- compound yard_N ;
-lin backyard_N = mkN "backyard" "backyards" ; -- compound yard_N ;
-lin brickyard_N = mkN "brickyard" "brickyards" ; -- compound yard_N ;
-lin dockyard_N = mkN "dockyard" "dockyards" ; -- compound yard_N ;
-lin stockyard_N = mkN "stockyard" "stockyards" ; -- compound yard_N ;
-lin junkyard_N = mkN "junkyard" "junkyards" ; -- compound yard_N ;
-lin halyard_N = mkN "halyard" "halyards" ; -- compound yard_N ;
-lin steelyard_N = mkN "steelyard" "steelyards" ; -- compound yard_N ;
-lin schoolyard_N = mkN "schoolyard" "schoolyards" ; -- compound yard_N ;
-lin farmyard_N = mkN "farmyard" "farmyards" ; -- compound yard_N ;
-lin lanyard_N = mkN "lanyard" "lanyards" ; -- compound yard_N ;
-lin barnyard_N = mkN "barnyard" "barnyards" ; -- compound yard_N ;
-lin shipyard_N = mkN "shipyard" "shipyards" ; -- compound yard_N ;
-lin lumberyard_N = mkN "lumberyard" "lumberyards" ; -- compound yard_N ;
-lin dooryard_N = mkN "dooryard" "dooryards" ; -- compound yard_N ;
-lin boatyard_N = mkN "boatyard" "boatyards" ; -- compound yard_N ;
-lin tiltyard_N = mkN "tiltyard" "tiltyards" ; -- compound yard_N ;
-lin courtyard_N = mkN "courtyard" "courtyards" ; -- compound yard_N ;
-lin hazard_N = mkN "hazard" "hazards" ;
-lin biohazard_N = mkN "biohazard" "biohazards" ; -- compound hazard_N ;
-lin lizard_N = mkN "lizard" "lizards" ;
-lin 'lounge-lizard_N' = mkN "lounge-lizard" "lounge-lizards" ; -- compound lizard_N ;
-lin wizard_N = mkN "wizard" "wizards" ;
-lin gizzard_N = mkN "gizzard" "gizzards" ;
-lin blizzard_N = mkN "blizzard" "blizzards" ;
-lin buzzard_N = mkN "buzzard" "buzzards" ;
-lin halberd_N = mkN "halberd" "halberds" ;
-lin herd_N = mkN "herd" "herds" ;
-lin swineherd_N = mkN "swineherd" "swineherds" ; -- compound herd_N ;
-lin shepherd_N = mkN "shepherd" "shepherds" ; -- compound herd_N ;
-lin potsherd_N = mkN "potsherd" "potsherds" ; -- compound herd_N ;
-lin goatherd_N = mkN "goatherd" "goatherds" ; -- compound herd_N ;
-lin cowherd_N = mkN "cowherd" "cowherds" ; -- compound herd_N ;
-lin nerd_N = mkN "nerd" "nerds" ;
-lin laird_N = mkN "laird" "lairds" ;
-lin bird_N = mkN "bird" "birds" ;
-lin 'game-bird_N' = mkN "game-bird" "game-birds" ; -- compound bird_N ;
-lin 'lyre-bird_N' = mkN "lyre-bird" "lyre-birds" ; -- compound bird_N ;
-lin 'gallows-bird_N' = mkN "gallows-bird" "gallows-birds" ; -- compound bird_N ;
-lin 'night-bird_N' = mkN "night-bird" "night-birds" ; -- compound bird_N ;
-lin 'canary-bird_N' = mkN "canary-bird" "canary-birds" ; -- compound bird_N ;
-lin seabird_N = mkN "seabird" "seabirds" ; -- compound bird_N ;
-lin scrubbird_N = mkN "scrubbird" "scrubbirds" ; -- compound bird_N ;
-lin snakebird_N = mkN "snakebird" "snakebirds" ; -- compound bird_N ;
-lin riflebird_N = mkN "riflebird" "riflebirds" ; -- compound bird_N ;
-lin firebird_N = mkN "firebird" "firebirds" ; -- compound bird_N ;
-lin shorebird_N = mkN "shorebird" "shorebirds" ; -- compound bird_N ;
-lin lyrebird_N = mkN "lyrebird" "lyrebirds" ; -- compound bird_N ;
-lin bluebird_N = mkN "bluebird" "bluebirds" ; -- compound bird_N ;
-lin lovebird_N = mkN "lovebird" "lovebirds" ; -- compound bird_N ;
-lin puffbird_N = mkN "puffbird" "puffbirds" ; -- compound bird_N ;
-lin surfbird_N = mkN "surfbird" "surfbirds" ; -- compound bird_N ;
-lin kingbird_N = mkN "kingbird" "kingbirds" ; -- compound bird_N ;
-lin mockingbird_N = mkN "mockingbird" "mockingbirds" ; -- compound bird_N ;
-lin hummingbird_N = mkN "hummingbird" "hummingbirds" ; -- compound bird_N ;
-lin songbird_N = mkN "songbird" "songbirds" ; -- compound bird_N ;
-lin blackbird_N = mkN "blackbird" "blackbirds" ; -- compound bird_N ;
-lin railbird_N = mkN "railbird" "railbirds" ; -- compound bird_N ;
-lin oilbird_N = mkN "oilbird" "oilbirds" ; -- compound bird_N ;
-lin bellbird_N = mkN "bellbird" "bellbirds" ; -- compound bird_N ;
-lin gaolbird_N = mkN "gaolbird" "gaolbirds" ; -- compound bird_N ;
-lin ovenbird_N = mkN "ovenbird" "ovenbirds" ; -- compound bird_N ;
-lin thunderbird_N = mkN "thunderbird" "thunderbirds" ; -- compound bird_N ;
-lin butcherbird_N = mkN "butcherbird" "butcherbirds" ; -- compound bird_N ;
-lin waterbird_N = mkN "waterbird" "waterbirds" ; -- compound bird_N ;
-lin weaverbird_N = mkN "weaverbird" "weaverbirds" ; -- compound bird_N ;
-lin bowerbird_N = mkN "bowerbird" "bowerbirds" ; -- compound bird_N ;
-lin tailorbird_N = mkN "tailorbird" "tailorbirds" ; -- compound bird_N ;
-lin catbird_N = mkN "catbird" "catbirds" ; -- compound bird_N ;
-lin antbird_N = mkN "antbird" "antbirds" ; -- compound bird_N ;
-lin cowbird_N = mkN "cowbird" "cowbirds" ; -- compound bird_N ;
-lin ladybird_N = mkN "ladybird" "ladybirds" ; -- compound bird_N ;
-lin dickeybird_N = mkN "dickeybird" "dickeybirds" ; -- compound bird_N ;
-lin dickybird_N = mkN "dickybird" "dickybirds" ; -- compound bird_N ;
-lin jird_N = mkN "jird" "jirds" ;
-lin smorgasbord_N = mkN "smorgasbord" "smorgasbords" ;
-lin cord_N = mkN "cord" "cords" ;
-lin 'sash-cord_N' = mkN "sash-cord" "sash-cords" ; -- compound cord_N ;
-lin accord_N = mkN "accord" "accords" ; -- compound cord_N ;
-lin record_N = mkN "record" "records" ; -- compound cord_N ;
-lin patchcord_N = mkN "patchcord" "patchcords" ; -- compound cord_N ;
-lin concord_N = mkN "concord" "concords" ; -- compound cord_N ;
-lin whipcord_N = mkN "whipcord" "whipcords" ; -- compound cord_N ;
-lin ripcord_N = mkN "ripcord" "ripcords" ; -- compound cord_N ;
-lin discord_N = mkN "discord" "discords" ; -- compound cord_N ;
-lin ford_N = mkN "ford" "fords" ;
-lin rutherford_N = mkN "rutherford" "rutherfords" ; -- compound ford_N ;
-lin oxford_N = mkN "oxford" "oxfords" ; -- compound ford_N ;
-lin chord_N = mkN "chord" "chords" ;
-lin harpsichord_N = mkN "harpsichord" "harpsichords" ; -- compound chord_N ;
-lin clavichord_N = mkN "clavichord" "clavichords" ; -- compound chord_N ;
-lin urochord_N = mkN "urochord" "urochords" ; -- compound chord_N ;
-lin notochord_N = mkN "notochord" "notochords" ; -- compound chord_N ;
-lin fiord_N = mkN "fiord" "fiords" ;
-lin fjord_N = mkN "fjord" "fjords" ;
-lin lord_N = mkN "lord" "lords" ;
-lin 'press-lord_N' = mkN "press-lord" "press-lords" ; -- compound lord_N ;
-lin landlord_N = mkN "landlord" "landlords" ; -- compound lord_N ;
-lin milord_N = mkN "milord" "milords" ; -- compound lord_N ;
-lin warlord_N = mkN "warlord" "warlords" ; -- compound lord_N ;
-lin overlord_N = mkN "overlord" "overlords" ; -- compound lord_N ;
-lin word_N = mkN "word" "words" ;
-lin 'nonce-word_N' = mkN "nonce-word" "nonce-words" ; -- compound word_N ;
-lin 'smear-word_N' = mkN "smear-word" "smear-words" ; -- compound word_N ;
-lin headword_N = mkN "headword" "headwords" ; -- compound word_N ;
-lin foreword_N = mkN "foreword" "forewords" ; -- compound word_N ;
-lin catchword_N = mkN "catchword" "catchwords" ; -- compound word_N ;
-lin watchword_N = mkN "watchword" "watchwords" ; -- compound word_N ;
-lin loanword_N = mkN "loanword" "loanwords" ; -- compound word_N ;
-lin swearword_N = mkN "swearword" "swearwords" ; -- compound word_N ;
-lin sword_N = mkN "sword" "swords" ; -- notcompound word_N ;
-lin broadsword_N = mkN "broadsword" "broadswords" ; -- compound word_N ;
-lin backsword_N = mkN "backsword" "backswords" ; -- compound word_N ;
-lin silversword_N = mkN "silversword" "silverswords" ; -- compound word_N ;
-lin password_N = mkN "password" "passwords" ; -- compound word_N ;
-lin crossword_N = mkN "crossword" "crosswords" ; -- compound word_N ;
-lin byword_N = mkN "byword" "bywords" ; -- compound word_N ;
-lin keyword_N = mkN "keyword" "keywords" ; -- compound word_N ;
-lin buzzword_N = mkN "buzzword" "buzzwords" ; -- compound word_N ;
-lin Kurd_N = mkN "Kurd" "Kurds" ;
-lin curd_N = mkN "curd" "curds" ;
-lin gourd_N = mkN "gourd" "gourds" ;
-lin surd_N = mkN "surd" "surds" ;
-lin absurd_N = mkN "absurd" "absurds" ; -- compound surd_N ;
-lin turd_N = mkN "turd" "turds" ;
-lin lsd_N = mkN "lsd" "lsds" ;
-lin etd_N = mkN "etd" "etds" ;
-lin baud_N = mkN "baud" "bauds" ;
-lin gaud_N = mkN "gaud" "gauds" ;
-lin crapaud_N = mkN "crapaud" "crapauds" ;
-lin fraud_N = mkN "fraud" "frauds" ;
-lin bud_N = mkN "bud" "buds" ;
-lin 'leaf-bud_N' = mkN "leaf-bud" "leaf-buds" ; -- compound bud_N ;
-lin redbud_N = mkN "redbud" "redbuds" ; -- compound bud_N ;
-lin rosebud_N = mkN "rosebud" "rosebuds" ; -- compound bud_N ;
-lin tastebud_N = mkN "tastebud" "tastebuds" ; -- compound bud_N ;
-lin cud_N = mkN "cud" "cuds" ;
-lin scud_N = mkN "scud" "scuds" ; -- notcompound cud_N ;
-lin dud_N = mkN "dud" "duds" ;
-lin hudud_N = mkN "hudud" "hududs" ; -- compound dud_N ;
-lin feud_N = mkN "feud" "feuds" ;
-lin pseud_N = mkN "pseud" "pseuds" ;
-lin thud_N = mkN "thud" "thuds" ;
-lin iud_N = mkN "iud" "iuds" ;
-lin mud_N = mkN "mud" "muds" ;
-lin talmud_N = mkN "talmud" "talmuds" ; -- compound mud_N ;
-lin musnud_N = mkN "musnud" "musnuds" ;
-lin cloud_N = mkN "cloud" "clouds" ;
-lin 'storm-cloud_N' = mkN "storm-cloud" "storm-clouds" ; -- compound cloud_N ;
-lin 'war-cloud_N' = mkN "war-cloud" "war-clouds" ; -- compound cloud_N ;
-lin shroud_N = mkN "shroud" "shrouds" ;
-lin pud_N = mkN "pud" "puds" ;
-lin spud_N = mkN "spud" "spuds" ; -- notcompound pud_N ;
-lin crud_N = mkN "crud" "cruds" ;
-lin stud_N = mkN "stud" "studs" ;
-lin 'press-stud_N' = mkN "press-stud" "press-studs" ; -- compound stud_N ;
-lin vd_N = mkN "vd" "vds" ;
-lin blvd_N = mkN "blvd" "blvds" ; -- notcompound vd_N ;
-lin bawd_N = mkN "bawd" "bawds" ;
-lin crowd_N = mkN "crowd" "crowds" ;
-lin alkyd_N = mkN "alkyd" "alkyds" ;
-lin 'volte-face_N' = mkN "volte-face" "IRREG" ;
-lin 'arms-race_N' = mkN "arms-race" "IRREG" ;
-lin 'coup de grace_N' = mkN "coup de grace" "IRREG" ;
-lin 'two-piece_N' = mkN "two-piece" "IRREG" ;
-lin superabundance_N = mkN "superabundance" "IRREG" ;
-lin hesitance_N = mkN "hesitance" "IRREG" ;
-lin continuance_N = mkN "continuance" "IRREG" ;
-lin quiescence_N = mkN "quiescence" "IRREG" ;
-lin 'tour de force_N' = mkN "tour de force" "IRREG" ;
-lin quietude_N = mkN "quietude" "IRREG" ;
-lin plenitude_N = mkN "plenitude" "IRREG" ;
-lin plage_N = mkN "plage" "IRREG" ;
-lin heritage_N = mkN "heritage" "IRREG" ;
-lin 'nouveau riche_N' = mkN "nouveau riche" "IRREG" ;
-lin sunbathe_N = mkN "sunbathe" "IRREG" ;
-lin 'entente cordiale_N' = mkN "entente cordiale" "IRREG" ;
-lin 'enfant terrible_N' = mkN "enfant terrible" "IRREG" ;
-lin 'tout ensemble_N' = mkN "tout ensemble" "IRREG" ;
-lin waddle_N = mkN "waddle" "IRREG" ;
-lin stele_N = mkN "stele" "IRREG" ;
-lin mickle_N = mkN "mickle" "IRREG" ;
-lin muckle_N = mkN "muckle" "IRREG" ;
-lin tinkle_N = mkN "tinkle" "IRREG" ;
-lin 'toad-in-the-hole_N' = mkN "toad-in-the-hole" "IRREG" ;
-lin hustle_N = mkN "hustle" "IRREG" ;
-lin tittle_N = mkN "tittle" "IRREG" ;
-lin razzle_N = mkN "razzle" "IRREG" ;
-lin 'razzle-dazzle_N' = mkN "razzle-dazzle" "IRREG" ;
-lin acme_N = mkN "acme" "IRREG" ;
-lin sublime_N = mkN "sublime" "IRREG" ;
-lin 'nom de plume_N' = mkN "nom de plume" "IRREG" ;
-lin krone_N = mkN "krone" "IRREG" ;
-lin 'auld lang syne_N' = mkN "auld lang syne" "IRREG" ;
-lin lope_N = mkN "lope" "IRREG" ;
-lin re_N = mkN "re" "IRREG" ;
-lin 'danse macabre_N' = mkN "danse macabre" "IRREG" ; -- notcompound re_N ;
-lin 'bête noire_N' = mkN "bête noire" "IRREG" ; -- notcompound re_N ;
-lin retire_N = mkN "retire" "IRREG" ; -- notcompound re_N ;
-lin 'raison d\'être_N' = mkN "raison d'être" "IRREG" ; -- notcompound re_N ;
-lin wise_N = mkN "wise" "IRREG" ;
-lin goose_N = mkN "goose" "IRREG" ;
-lin noblesse_N = mkN "noblesse" "IRREG" ;
-lin chauffeuse_N = mkN "chauffeuse" "IRREG" ;
-lin poseuse_N = mkN "poseuse" "IRREG" ;
-lin wheelhouse_N = mkN "wheelhouse" "IRREG" ;
-lin workhouse_N = mkN "workhouse" "IRREG" ;
-lin rote_N = mkN "rote" "IRREG" ;
-lin 'corps diplomatique_N' = mkN "corps diplomatique" "IRREG" ;
-lin baroque_N = mkN "baroque" "IRREG" ;
-lin 'curriculum vitae_N' = mkN "curriculum vitae" "curricula vitae" ;
-lin dace_N = mkN "dace" "dace" ;
-lin brace_N = mkN "brace" "brace" ;
-lin plaice_N = mkN "plaice" "plaice" ;
-lin dice_N = mkN "dice" "dice" ;
-lin police_N = mkN "police" "police" ;
-lin hake_N = mkN "hake" "hake" ;
-lin pike_N = mkN "pike" "pike" ;
-lin people_1_N = mkN "people" "people" ;
-lin moorgame_N = mkN "moorgame" "moorgame" ;
-lin swine_N = mkN "swine" "swine" ;
-lin roe_N = mkN "roe" "roe" ;
-lin snipe_N = mkN "snipe" "snipe" ;
-lin 'chef-d\'oeuvre_N' = mkN "chef-d'oeuvre" "chefs-d'oeuvre" ;
-lin louse_N = mkN "louse" "lice" ;
-lin 'plant-louse_N' = mkN "plant-louse" "plant-lice" ; -- compound louse_N ;
-lin woodlouse_N = mkN "woodlouse" "woodlice" ; -- compound louse_N ;
-lin mouse_N = mkN "mouse" "mice" ;
-lin 'shrew-mouse_N' = mkN "shrew-mouse" "shrew-mice" ; -- compound mouse_N ;
-lin dormouse_N = mkN "dormouse" "dormice" ; -- compound mouse_N ;
-lin titmouse_N = mkN "titmouse" "titmice" ; -- compound mouse_N ;
-lin senegalese_N = mkN "senegalese" "senegalese" ;
-lin sinhalese_N = mkN "sinhalese" "sinhalese" ;
-lin nepalese_N = mkN "nepalese" "nepalese" ;
-lin congolese_N = mkN "congolese" "congolese" ;
-lin togolese_N = mkN "togolese" "togolese" ;
-lin siamese_N = mkN "siamese" "siamese" ;
-lin Vietnamese_N = mkN "Vietnamese" "Vietnamese" ;
-lin burmese_N = mkN "burmese" "burmese" ;
-lin Lebanese_N = mkN "Lebanese" "Lebanese" ;
-lin sudanese_N = mkN "sudanese" "sudanese" ;
-lin Japanese_N = mkN "Japanese" "Japanese" ;
-lin javanese_N = mkN "javanese" "javanese" ;
-lin Taiwanese_N = mkN "Taiwanese" "Taiwanese" ;
-lin guyanese_N = mkN "guyanese" "guyanese" ;
-lin Chinese_N = mkN "Chinese" "Chinese" ;
-lin pekinese_N = mkN "pekinese" "pekinese" ;
-lin beninese_N = mkN "beninese" "beninese" ;
-lin 'san marinese_N' = mkN "san marinese" "san marinese" ;
-lin gabonese_N = mkN "gabonese" "gabonese" ;
-lin maltese_N = mkN "maltese" "maltese" ;
-lin Portuguese_N = mkN "Portuguese" "Portuguese" ;
-lin moose_N = mkN "moose" "moose" ;
-lin grouse_N = mkN "grouse" "grouse" ;
-lin illegitimate_N = mkN "illegitimate" "illegitimate" ;
-lin duce_N = mkN "duce" "duci" ;
-lin cicerone_N = mkN "cicerone" "ciceroni" ;
-lin 'c of e_N' = mkN "c of e" "c of es" ;
-lin sundae_N = mkN "sundae" "sundaes" ;
-lin turreae_N = mkN "turreae" "turreaes" ;
-lin reggae_N = mkN "reggae" "reggaes" ;
-lin exuviae_N = mkN "exuviae" "exuviaes" ;
-lin brae_N = mkN "brae" "braes" ;
-lin sae_N = mkN "sae" "saes" ;
-lin lignosae_N = mkN "lignosae" "lignosaes" ; -- compound sae_N ;
-lin arborvitae_N = mkN "arborvitae" "arborvitaes" ;
-lin babe_N = mkN "babe" "babes" ;
-lin astrolabe_N = mkN "astrolabe" "astrolabes" ;
-lin abbe_N = mkN "abbe" "abbes" ;
-lin thebe_N = mkN "thebe" "thebes" ;
-lin glebe_N = mkN "glebe" "glebes" ;
-lin phoebe_N = mkN "phoebe" "phoebes" ;
-lin grebe_N = mkN "grebe" "grebes" ;
-lin gibe_N = mkN "gibe" "gibes" ;
-lin jibe_N = mkN "jibe" "jibes" ;
-lin kibe_N = mkN "kibe" "kibes" ;
-lin bribe_N = mkN "bribe" "bribes" ;
-lin scribe_N = mkN "scribe" "scribes" ;
-lin tribe_N = mkN "tribe" "tribes" ;
-lin diatribe_N = mkN "diatribe" "diatribes" ; -- compound tribe_N ;
-lin astilbe_N = mkN "astilbe" "astilbes" ;
-lin adobe_N = mkN "adobe" "adobes" ;
-lin anglophobe_N = mkN "anglophobe" "anglophobes" ;
-lin homophobe_N = mkN "homophobe" "homophobes" ;
-lin technophobe_N = mkN "technophobe" "technophobes" ;
-lin claustrophobe_N = mkN "claustrophobe" "claustrophobes" ;
-lin lobe_N = mkN "lobe" "lobes" ;
-lin globe_N = mkN "globe" "globes" ; -- notcompound lobe_N ;
-lin earlobe_N = mkN "earlobe" "earlobes" ; -- compound lobe_N ;
-lin robe_N = mkN "robe" "robes" ;
-lin katharobe_N = mkN "katharobe" "katharobes" ; -- compound robe_N ;
-lin microbe_N = mkN "microbe" "microbes" ; -- compound robe_N ;
-lin wardrobe_N = mkN "wardrobe" "wardrobes" ; -- compound robe_N ;
-lin aerobe_N = mkN "aerobe" "aerobes" ; -- compound robe_N ;
-lin anaerobe_N = mkN "anaerobe" "anaerobes" ; -- compound robe_N ;
-lin bathrobe_N = mkN "bathrobe" "bathrobes" ; -- compound robe_N ;
-lin probe_N = mkN "probe" "probes" ; -- notcompound robe_N ;
-lin saprobe_N = mkN "saprobe" "saprobes" ; -- compound robe_N ;
-lin pickelhaube_N = mkN "pickelhaube" "pickelhaubes" ;
-lin cube_N = mkN "cube" "cubes" ;
-lin 'stock-cube_N' = mkN "stock-cube" "stock-cubes" ; -- compound cube_N ;
-lin icecube_N = mkN "icecube" "icecubes" ; -- compound cube_N ;
-lin jujube_N = mkN "jujube" "jujubes" ;
-lin tube_N = mkN "tube" "tubes" ;
-lin 'speaking-tube_N' = mkN "speaking-tube" "speaking-tubes" ; -- compound tube_N ;
-lin 'torpedo-tube_N' = mkN "torpedo-tube" "torpedo-tubes" ; -- compound tube_N ;
-lin 'test-tube_N' = mkN "test-tube" "test-tubes" ; -- compound tube_N ;
-lin blowtube_N = mkN "blowtube" "blowtubes" ; -- compound tube_N ;
-lin ace_N = mkN "ace" "aces" ;
-lin peace_N = mkN "peace" "peaces" ; -- compound ace_N ;
-lin face_N = mkN "face" "faces" ; -- notcompound ace_N ;
-lin 'pudding-face_N' = mkN "pudding-face" "pudding-faces" ; -- compound ace_N ;
-lin 'clock-face_N' = mkN "clock-face" "clock-faces" ; -- compound ace_N ;
-lin 'poker-face_N' = mkN "poker-face" "poker-faces" ; -- compound ace_N ;
-lin 'about-face_N' = mkN "about-face" "about-faces" ; -- compound ace_N ;
-lin boldface_N = mkN "boldface" "boldfaces" ; -- compound ace_N ;
-lin paleface_N = mkN "paleface" "palefaces" ; -- compound ace_N ;
-lin typeface_N = mkN "typeface" "typefaces" ; -- compound ace_N ;
-lin preface_N = mkN "preface" "prefaces" ; -- compound ace_N ;
-lin whiteface_N = mkN "whiteface" "whitefaces" ; -- compound ace_N ;
-lin blackface_N = mkN "blackface" "blackfaces" ; -- compound ace_N ;
-lin coalface_N = mkN "coalface" "coalfaces" ; -- compound ace_N ;
-lin interface_N = mkN "interface" "interfaces" ; -- compound ace_N ;
-lin surface_N = mkN "surface" "surfaces" ; -- compound ace_N ;
-lin undersurface_N = mkN "undersurface" "undersurfaces" ; -- compound ace_N ;
-lin lace_N = mkN "lace" "laces" ; -- notcompound ace_N ;
-lin palace_N = mkN "palace" "palaces" ; -- compound ace_N ;
-lin shoelace_N = mkN "shoelace" "shoelaces" ; -- compound ace_N ;
-lin demiglace_N = mkN "demiglace" "demiglaces" ; -- compound ace_N ;
-lin necklace_N = mkN "necklace" "necklaces" ; -- compound ace_N ;
-lin bullace_N = mkN "bullace" "bullaces" ; -- compound ace_N ;
-lin solace_N = mkN "solace" "solaces" ; -- compound ace_N ;
-lin place_N = mkN "place" "places" ; -- notcompound ace_N ;
-lin 'hiding-place_N' = mkN "hiding-place" "hiding-places" ; -- compound ace_N ;
-lin 'landing-place_N' = mkN "landing-place" "landing-places" ; -- compound ace_N ;
-lin 'lurking-place_N' = mkN "lurking-place" "lurking-places" ; -- compound ace_N ;
-lin 'meeting-place_N' = mkN "meeting-place" "meeting-places" ; -- compound ace_N ;
-lin fireplace_N = mkN "fireplace" "fireplaces" ; -- compound ace_N ;
-lin birthplace_N = mkN "birthplace" "birthplaces" ; -- compound ace_N ;
-lin workplace_N = mkN "workplace" "workplaces" ; -- compound ace_N ;
-lin farmplace_N = mkN "farmplace" "farmplaces" ; -- compound ace_N ;
-lin commonplace_N = mkN "commonplace" "commonplaces" ; -- compound ace_N ;
-lin marketplace_N = mkN "marketplace" "marketplaces" ; -- compound ace_N ;
-lin showplace_N = mkN "showplace" "showplaces" ; -- compound ace_N ;
-lin bootlace_N = mkN "bootlace" "bootlaces" ; -- compound ace_N ;
-lin populace_N = mkN "populace" "populaces" ; -- compound ace_N ;
-lin mace_N = mkN "mace" "maces" ; -- notcompound ace_N ;
-lin grimace_N = mkN "grimace" "grimaces" ; -- compound ace_N ;
-lin menace_N = mkN "menace" "menaces" ; -- compound ace_N ;
-lin pinnace_N = mkN "pinnace" "pinnaces" ; -- compound ace_N ;
-lin furnace_N = mkN "furnace" "furnaces" ; -- compound ace_N ;
-lin 'blast-furnace_N' = mkN "blast-furnace" "blast-furnaces" ; -- compound ace_N ;
-lin pace_N = mkN "pace" "paces" ; -- notcompound ace_N ;
-lin carapace_N = mkN "carapace" "carapaces" ; -- compound ace_N ;
-lin space_N = mkN "space" "spaces" ; -- notcompound ace_N ;
-lin 'breathing-space_N' = mkN "breathing-space" "breathing-spaces" ; -- compound ace_N ;
-lin 'living-space_N' = mkN "living-space" "living-spaces" ; -- compound ace_N ;
-lin subspace_N = mkN "subspace" "subspaces" ; -- compound ace_N ;
-lin headspace_N = mkN "headspace" "headspaces" ; -- compound ace_N ;
-lin workspace_N = mkN "workspace" "workspaces" ; -- compound ace_N ;
-lin crawlspace_N = mkN "crawlspace" "crawlspaces" ; -- compound ace_N ;
-lin aerospace_N = mkN "aerospace" "aerospaces" ; -- compound ace_N ;
-lin airspace_N = mkN "airspace" "airspaces" ; -- compound ace_N ;
-lin race_N = mkN "race" "races" ; -- notcompound ace_N ;
-lin 'torch-race_N' = mkN "torch-race" "torch-races" ; -- compound ace_N ;
-lin 'scratch-race_N' = mkN "scratch-race" "scratch-races" ; -- compound ace_N ;
-lin 'sack-race_N' = mkN "sack-race" "sack-races" ; -- compound ace_N ;
-lin 'boat-race_N' = mkN "boat-race" "boat-races" ; -- compound ace_N ;
-lin 'foot-race_N' = mkN "foot-race" "foot-races" ; -- compound ace_N ;
-lin rerebrace_N = mkN "rerebrace" "rerebraces" ; -- compound ace_N ;
-lin vambrace_N = mkN "vambrace" "vambraces" ; -- compound ace_N ;
-lin embrace_N = mkN "embrace" "embraces" ; -- compound ace_N ;
-lin headrace_N = mkN "headrace" "headraces" ; -- compound ace_N ;
-lin horserace_N = mkN "horserace" "horseraces" ; -- compound ace_N ;
-lin grace_N = mkN "grace" "graces" ; -- notcompound ace_N ;
-lin scapegrace_N = mkN "scapegrace" "scapegraces" ; -- compound ace_N ;
-lin disgrace_N = mkN "disgrace" "disgraces" ; -- compound ace_N ;
-lin tailrace_N = mkN "tailrace" "tailraces" ; -- compound ace_N ;
-lin millrace_N = mkN "millrace" "millraces" ; -- compound ace_N ;
-lin terrace_N = mkN "terrace" "terraces" ; -- compound ace_N ;
-lin trace_N = mkN "trace" "traces" ; -- notcompound ace_N ;
-lin footrace_N = mkN "footrace" "footraces" ; -- compound ace_N ;
-lin recce_N = mkN "recce" "recces" ;
-lin bocce_N = mkN "bocce" "bocces" ;
-lin fleece_N = mkN "fleece" "fleeces" ;
-lin niece_N = mkN "niece" "nieces" ;
-lin grandniece_N = mkN "grandniece" "grandnieces" ; -- compound niece_N ;
-lin piece_N = mkN "piece" "pieces" ;
-lin 'altar-piece_N' = mkN "altar-piece" "altar-pieces" ; -- compound piece_N ;
-lin headpiece_N = mkN "headpiece" "headpieces" ; -- compound piece_N ;
-lin codpiece_N = mkN "codpiece" "codpieces" ; -- compound piece_N ;
-lin timepiece_N = mkN "timepiece" "timepieces" ; -- compound piece_N ;
-lin centrepiece_N = mkN "centrepiece" "centrepieces" ; -- compound piece_N ;
-lin nosepiece_N = mkN "nosepiece" "nosepieces" ; -- compound piece_N ;
-lin eyepiece_N = mkN "eyepiece" "eyepieces" ; -- compound piece_N ;
-lin fowlingpiece_N = mkN "fowlingpiece" "fowlingpieces" ; -- compound piece_N ;
-lin mouthpiece_N = mkN "mouthpiece" "mouthpieces" ; -- compound piece_N ;
-lin neckpiece_N = mkN "neckpiece" "neckpieces" ; -- compound piece_N ;
-lin cheekpiece_N = mkN "cheekpiece" "cheekpieces" ; -- compound piece_N ;
-lin workpiece_N = mkN "workpiece" "workpieces" ; -- compound piece_N ;
-lin mantelpiece_N = mkN "mantelpiece" "mantelpieces" ; -- compound piece_N ;
-lin tailpiece_N = mkN "tailpiece" "tailpieces" ; -- compound piece_N ;
-lin earpiece_N = mkN "earpiece" "earpieces" ; -- compound piece_N ;
-lin altarpiece_N = mkN "altarpiece" "altarpieces" ; -- compound piece_N ;
-lin afterpiece_N = mkN "afterpiece" "afterpieces" ; -- compound piece_N ;
-lin centerpiece_N = mkN "centerpiece" "centerpieces" ; -- compound piece_N ;
-lin masterpiece_N = mkN "masterpiece" "masterpieces" ; -- compound piece_N ;
-lin hairpiece_N = mkN "hairpiece" "hairpieces" ; -- compound piece_N ;
-lin frontispiece_N = mkN "frontispiece" "frontispieces" ; -- compound piece_N ;
-lin crosspiece_N = mkN "crosspiece" "crosspieces" ; -- compound piece_N ;
-lin chimneypiece_N = mkN "chimneypiece" "chimneypieces" ; -- compound piece_N ;
-lin ice_N = mkN "ice" "ices" ;
-lin 'choc-ice_N' = mkN "choc-ice" "choc-ices" ; -- compound ice_N ;
-lin 'water-ice_N' = mkN "water-ice" "water-ices" ; -- compound ice_N ;
-lin 'drift-ice_N' = mkN "drift-ice" "drift-ices" ; -- compound ice_N ;
-lin jaundice_N = mkN "jaundice" "jaundices" ; -- compound ice_N ;
-lin bodice_N = mkN "bodice" "bodices" ; -- compound ice_N ;
-lin cowardice_N = mkN "cowardice" "cowardices" ; -- compound ice_N ;
-lin prejudice_N = mkN "prejudice" "prejudices" ; -- compound ice_N ;
-lin benefice_N = mkN "benefice" "benefices" ; -- compound ice_N ;
-lin office_N = mkN "office" "offices" ; -- compound ice_N ;
-lin 'police-office_N' = mkN "police-office" "police-offices" ; -- compound ice_N ;
-lin 'life-office_N' = mkN "life-office" "life-offices" ; -- compound ice_N ;
-lin 'staff-office_N' = mkN "staff-office" "staff-offices" ; -- compound ice_N ;
-lin 'shipping-office_N' = mkN "shipping-office" "shipping-offices" ; -- compound ice_N ;
-lin 'loan-office_N' = mkN "loan-office" "loan-offices" ; -- compound ice_N ;
-lin 'box-office_N' = mkN "box-office" "box-offices" ; -- compound ice_N ;
-lin edifice_N = mkN "edifice" "edifices" ; -- compound ice_N ;
-lin sacrifice_N = mkN "sacrifice" "sacrifices" ; -- compound ice_N ;
-lin 'self-sacrifice_N' = mkN "self-sacrifice" "self-sacrifices" ; -- compound ice_N ;
-lin orifice_N = mkN "orifice" "orifices" ; -- compound ice_N ;
-lin artifice_N = mkN "artifice" "artifices" ; -- compound ice_N ;
-lin chalice_N = mkN "chalice" "chalices" ; -- compound ice_N ;
-lin malice_N = mkN "malice" "malices" ; -- compound ice_N ;
-lin accomplice_N = mkN "accomplice" "accomplices" ; -- compound ice_N ;
-lin surplice_N = mkN "surplice" "surplices" ; -- compound ice_N ;
-lin splice_N = mkN "splice" "splices" ; -- notcompound ice_N ;
-lin slice_N = mkN "slice" "slices" ; -- notcompound ice_N ;
-lin 'fish-slice_N' = mkN "fish-slice" "fish-slices" ; -- compound ice_N ;
-lin pumice_N = mkN "pumice" "pumices" ; -- compound ice_N ;
-lin cornice_N = mkN "cornice" "cornices" ; -- compound ice_N ;
-lin choice_N = mkN "choice" "choices" ; -- compound ice_N ;
-lin voice_N = mkN "voice" "voices" ; -- compound ice_N ;
-lin invoice_N = mkN "invoice" "invoices" ; -- compound ice_N ;
-lin precipice_N = mkN "precipice" "precipices" ; -- compound ice_N ;
-lin coppice_N = mkN "coppice" "coppices" ; -- compound ice_N ;
-lin spice_N = mkN "spice" "spices" ; -- notcompound ice_N ;
-lin allspice_N = mkN "allspice" "allspices" ; -- compound ice_N ;
-lin hospice_N = mkN "hospice" "hospices" ; -- compound ice_N ;
-lin auspice_N = mkN "auspice" "auspices" ; -- compound ice_N ;
-lin rice_N = mkN "rice" "rices" ; -- notcompound ice_N ;
-lin avarice_N = mkN "avarice" "avarices" ; -- compound ice_N ;
-lin dentifrice_N = mkN "dentifrice" "dentifrices" ; -- compound ice_N ;
-lin licorice_N = mkN "licorice" "licorices" ; -- compound ice_N ;
-lin liquorice_N = mkN "liquorice" "liquorices" ; -- compound ice_N ;
-lin price_N = mkN "price" "prices" ; -- notcompound ice_N ;
-lin 'list-price_N' = mkN "list-price" "list-prices" ; -- compound ice_N ;
-lin caprice_N = mkN "caprice" "caprices" ; -- compound ice_N ;
-lin trice_N = mkN "trice" "trices" ; -- notcompound ice_N ;
-lin cicatrice_N = mkN "cicatrice" "cicatrices" ; -- compound ice_N ;
-lin cockatrice_N = mkN "cockatrice" "cockatrices" ; -- compound ice_N ;
-lin practice_N = mkN "practice" "practices" ; -- compound ice_N ;
-lin malpractice_N = mkN "malpractice" "malpractices" ; -- compound ice_N ;
-lin poultice_N = mkN "poultice" "poultices" ; -- compound ice_N ;
-lin prentice_N = mkN "prentice" "prentices" ; -- compound ice_N ;
-lin apprentice_N = mkN "apprentice" "apprentices" ; -- compound ice_N ;
-lin notice_N = mkN "notice" "notices" ; -- compound ice_N ;
-lin mortice_N = mkN "mortice" "mortices" ; -- compound ice_N ;
-lin armistice_N = mkN "armistice" "armistices" ; -- compound ice_N ;
-lin solstice_N = mkN "solstice" "solstices" ; -- compound ice_N ;
-lin interstice_N = mkN "interstice" "interstices" ; -- compound ice_N ;
-lin justice_N = mkN "justice" "justices" ; -- compound ice_N ;
-lin injustice_N = mkN "injustice" "injustices" ; -- compound ice_N ;
-lin lattice_N = mkN "lattice" "lattices" ; -- compound ice_N ;
-lin brattice_N = mkN "brattice" "brattices" ; -- compound ice_N ;
-lin juice_N = mkN "juice" "juices" ; -- compound ice_N ;
-lin limejuice_N = mkN "limejuice" "limejuices" ; -- compound ice_N ;
-lin sluice_N = mkN "sluice" "sluices" ; -- compound ice_N ;
-lin vice_N = mkN "vice" "vices" ; -- notcompound ice_N ;
-lin advice_N = mkN "advice" "advices" ; -- compound ice_N ;
-lin device_N = mkN "device" "devices" ; -- compound ice_N ;
-lin crevice_N = mkN "crevice" "crevices" ; -- compound ice_N ;
-lin novice_N = mkN "novice" "novices" ; -- compound ice_N ;
-lin service_N = mkN "service" "services" ; -- compound ice_N ;
-lin 'tea-service_N' = mkN "tea-service" "tea-services" ; -- compound ice_N ;
-lin 'self-service_N' = mkN "self-service" "self-services" ; -- compound ice_N ;
-lin 'dinner-service_N' = mkN "dinner-service" "dinner-services" ; -- compound ice_N ;
-lin disservice_N = mkN "disservice" "disservices" ; -- compound ice_N ;
-lin disturbance_N = mkN "disturbance" "disturbances" ;
-lin significance_N = mkN "significance" "significances" ;
-lin insignificance_N = mkN "insignificance" "insignificances" ; -- compound significance_N ;
-lin dance_N = mkN "dance" "dances" ;
-lin 'morris dance_N' = mkN "morris dance" "morris dances" ; -- compound dance_N ;
-lin 'sword-dance_N' = mkN "sword-dance" "sword-dances" ; -- compound dance_N ;
-lin 'clog-dance_N' = mkN "clog-dance" "clog-dances" ; -- compound dance_N ;
-lin 'folk-dance_N' = mkN "folk-dance" "folk-dances" ; -- compound dance_N ;
-lin 'war-dance_N' = mkN "war-dance" "war-dances" ; -- compound dance_N ;
-lin riddance_N = mkN "riddance" "riddances" ; -- compound dance_N ;
-lin exceedance_N = mkN "exceedance" "exceedances" ; -- compound dance_N ;
-lin abidance_N = mkN "abidance" "abidances" ; -- compound dance_N ;
-lin avoidance_N = mkN "avoidance" "avoidances" ; -- compound dance_N ;
-lin guidance_N = mkN "guidance" "guidances" ; -- compound dance_N ;
-lin attendance_N = mkN "attendance" "attendances" ; -- compound dance_N ;
-lin nonattendance_N = mkN "nonattendance" "nonattendances" ; -- compound dance_N ;
-lin abundance_N = mkN "abundance" "abundances" ; -- compound dance_N ;
-lin 'over-abundance_N' = mkN "over-abundance" "over-abundances" ; -- compound dance_N ;
-lin overabundance_N = mkN "overabundance" "overabundances" ; -- compound dance_N ;
-lin redundance_N = mkN "redundance" "redundances" ; -- compound dance_N ;
-lin accordance_N = mkN "accordance" "accordances" ; -- compound dance_N ;
-lin concordance_N = mkN "concordance" "concordances" ; -- compound dance_N ;
-lin discordance_N = mkN "discordance" "discordances" ; -- compound dance_N ;
-lin vengeance_N = mkN "vengeance" "vengeances" ;
-lin faineance_N = mkN "faineance" "faineances" ;
-lin extravagance_N = mkN "extravagance" "extravagances" ;
-lin elegance_N = mkN "elegance" "elegances" ;
-lin inelegance_N = mkN "inelegance" "inelegances" ; -- compound elegance_N ;
-lin arrogance_N = mkN "arrogance" "arrogances" ;
-lin chance_N = mkN "chance" "chances" ;
-lin mischance_N = mkN "mischance" "mischances" ; -- compound chance_N ;
-lin ambiance_N = mkN "ambiance" "ambiances" ;
-lin insouciance_N = mkN "insouciance" "insouciances" ;
-lin radiance_N = mkN "radiance" "radiances" ;
-lin fiance_N = mkN "fiance" "fiances" ;
-lin defiance_N = mkN "defiance" "defiances" ; -- compound fiance_N ;
-lin allegiance_N = mkN "allegiance" "allegiances" ;
-lin reliance_N = mkN "reliance" "reliances" ;
-lin 'self-reliance_N' = mkN "self-reliance" "self-reliances" ; -- compound reliance_N ;
-lin alliance_N = mkN "alliance" "alliances" ;
-lin dalliance_N = mkN "dalliance" "dalliances" ; -- notcompound alliance_N ;
-lin misalliance_N = mkN "misalliance" "misalliances" ; -- compound alliance_N ;
-lin mésalliance_N = mkN "mésalliance" "mésalliances" ; -- notcompound alliance_N ;
-lin brilliance_N = mkN "brilliance" "brilliances" ;
-lin compliance_N = mkN "compliance" "compliances" ;
-lin 'non-compliance_N' = mkN "non-compliance" "non-compliances" ; -- compound compliance_N ;
-lin appliance_N = mkN "appliance" "appliances" ;
-lin variance_N = mkN "variance" "variances" ;
-lin invariance_N = mkN "invariance" "invariances" ; -- compound variance_N ;
-lin covariance_N = mkN "covariance" "covariances" ; -- compound variance_N ;
-lin tarriance_N = mkN "tarriance" "tarriances" ;
-lin luxuriance_N = mkN "luxuriance" "luxuriances" ;
-lin lance_N = mkN "lance" "lances" ;
-lin balance_N = mkN "balance" "balances" ; -- compound lance_N ;
-lin 'spring-balance_N' = mkN "spring-balance" "spring-balances" ; -- compound lance_N ;
-lin imbalance_N = mkN "imbalance" "imbalances" ; -- compound lance_N ;
-lin microbalance_N = mkN "microbalance" "microbalances" ; -- compound lance_N ;
-lin counterbalance_N = mkN "counterbalance" "counterbalances" ; -- compound lance_N ;
-lin nonchalance_N = mkN "nonchalance" "nonchalances" ; -- compound lance_N ;
-lin valance_N = mkN "valance" "valances" ; -- compound lance_N ;
-lin semblance_N = mkN "semblance" "semblances" ; -- compound lance_N ;
-lin resemblance_N = mkN "resemblance" "resemblances" ; -- compound lance_N ;
-lin freelance_N = mkN "freelance" "freelances" ; -- compound lance_N ;
-lin glance_N = mkN "glance" "glances" ; -- notcompound lance_N ;
-lin 'side-glance_N' = mkN "side-glance" "side-glances" ; -- compound lance_N ;
-lin vigilance_N = mkN "vigilance" "vigilances" ; -- compound lance_N ;
-lin surveillance_N = mkN "surveillance" "surveillances" ; -- compound lance_N ;
-lin parlance_N = mkN "parlance" "parlances" ; -- compound lance_N ;
-lin ambulance_N = mkN "ambulance" "ambulances" ; -- compound lance_N ;
-lin petulance_N = mkN "petulance" "petulances" ; -- compound lance_N ;
-lin adamance_N = mkN "adamance" "adamances" ;
-lin romance_N = mkN "romance" "romances" ;
-lin performance_N = mkN "performance" "performances" ;
-lin ordnance_N = mkN "ordnance" "ordnances" ;
-lin penance_N = mkN "penance" "penances" ;
-lin maintenance_N = mkN "maintenance" "maintenances" ;
-lin countenance_N = mkN "countenance" "countenances" ;
-lin appurtenance_N = mkN "appurtenance" "appurtenances" ;
-lin sustenance_N = mkN "sustenance" "sustenances" ;
-lin provenance_N = mkN "provenance" "provenances" ;
-lin poignance_N = mkN "poignance" "poignances" ;
-lin repugnance_N = mkN "repugnance" "repugnances" ;
-lin ordinance_N = mkN "ordinance" "ordinances" ;
-lin finance_N = mkN "finance" "finances" ;
-lin dominance_N = mkN "dominance" "dominances" ;
-lin predominance_N = mkN "predominance" "predominances" ; -- compound dominance_N ;
-lin illuminance_N = mkN "illuminance" "illuminances" ;
-lin resonance_N = mkN "resonance" "resonances" ;
-lin consonance_N = mkN "consonance" "consonances" ;
-lin assonance_N = mkN "assonance" "assonances" ;
-lin dissonance_N = mkN "dissonance" "dissonances" ;
-lin governance_N = mkN "governance" "governances" ;
-lin forbearance_N = mkN "forbearance" "forbearances" ;
-lin clearance_N = mkN "clearance" "clearances" ;
-lin appearance_N = mkN "appearance" "appearances" ;
-lin reappearance_N = mkN "reappearance" "reappearances" ; -- compound appearance_N ;
-lin nonappearance_N = mkN "nonappearance" "nonappearances" ; -- compound appearance_N ;
-lin disappearance_N = mkN "disappearance" "disappearances" ; -- compound appearance_N ;
-lin remembrance_N = mkN "remembrance" "remembrances" ;
-lin encumbrance_N = mkN "encumbrance" "encumbrances" ;
-lin hindrance_N = mkN "hindrance" "hindrances" ;
-lin protuberance_N = mkN "protuberance" "protuberances" ;
-lin exuberance_N = mkN "exuberance" "exuberances" ;
-lin preponderance_N = mkN "preponderance" "preponderances" ;
-lin sufferance_N = mkN "sufferance" "sufferances" ;
-lin furtherance_N = mkN "furtherance" "furtherances" ;
-lin tolerance_N = mkN "tolerance" "tolerances" ;
-lin intolerance_N = mkN "intolerance" "intolerances" ; -- compound tolerance_N ;
-lin overtolerance_N = mkN "overtolerance" "overtolerances" ; -- compound tolerance_N ;
-lin temperance_N = mkN "temperance" "temperances" ;
-lin intemperance_N = mkN "intemperance" "intemperances" ; -- compound temperance_N ;
-lin utterance_N = mkN "utterance" "utterances" ;
-lin severance_N = mkN "severance" "severances" ;
-lin perseverance_N = mkN "perseverance" "perseverances" ; -- compound severance_N ;
-lin deliverance_N = mkN "deliverance" "deliverances" ;
-lin fragrance_N = mkN "fragrance" "fragrances" ;
-lin ignorance_N = mkN "ignorance" "ignorances" ;
-lin prance_N = mkN "prance" "prances" ;
-lin aberrance_N = mkN "aberrance" "aberrances" ;
-lin trance_N = mkN "trance" "trances" ;
-lin recalcitrance_N = mkN "recalcitrance" "recalcitrances" ; -- compound trance_N ;
-lin semitrance_N = mkN "semitrance" "semitrances" ; -- compound trance_N ;
-lin entrance_N = mkN "entrance" "entrances" ; -- compound trance_N ;
-lin monstrance_N = mkN "monstrance" "monstrances" ; -- compound trance_N ;
-lin remonstrance_N = mkN "remonstrance" "remonstrances" ; -- compound trance_N ;
-lin durance_N = mkN "durance" "durances" ;
-lin endurance_N = mkN "endurance" "endurances" ; -- compound durance_N ;
-lin insurance_N = mkN "insurance" "insurances" ;
-lin reinsurance_N = mkN "reinsurance" "reinsurances" ; -- compound insurance_N ;
-lin coinsurance_N = mkN "coinsurance" "coinsurances" ; -- compound insurance_N ;
-lin assurance_N = mkN "assurance" "assurances" ;
-lin 'self-assurance_N' = mkN "self-assurance" "self-assurances" ; -- compound assurance_N ;
-lin reassurance_N = mkN "reassurance" "reassurances" ; -- compound assurance_N ;
-lin nurturance_N = mkN "nurturance" "nurturances" ;
-lin malfeasance_N = mkN "malfeasance" "malfeasances" ;
-lin nonfeasance_N = mkN "nonfeasance" "nonfeasances" ;
-lin misfeasance_N = mkN "misfeasance" "misfeasances" ;
-lin pleasance_N = mkN "pleasance" "pleasances" ;
-lin complaisance_N = mkN "complaisance" "complaisances" ;
-lin obeisance_N = mkN "obeisance" "obeisances" ;
-lin brisance_N = mkN "brisance" "brisances" ;
-lin nuisance_N = mkN "nuisance" "nuisances" ;
-lin renaissance_N = mkN "renaissance" "renaissances" ;
-lin reconnaissance_N = mkN "reconnaissance" "reconnaissances" ;
-lin puissance_N = mkN "puissance" "puissances" ;
-lin usance_N = mkN "usance" "usances" ;
-lin reactance_N = mkN "reactance" "reactances" ;
-lin conductance_N = mkN "conductance" "conductances" ;
-lin reluctance_N = mkN "reluctance" "reluctances" ;
-lin exorbitance_N = mkN "exorbitance" "exorbitances" ;
-lin capacitance_N = mkN "capacitance" "capacitances" ;
-lin concomitance_N = mkN "concomitance" "concomitances" ;
-lin inheritance_N = mkN "inheritance" "inheritances" ;
-lin disinheritance_N = mkN "disinheritance" "disinheritances" ; -- compound inheritance_N ;
-lin repentance_N = mkN "repentance" "repentances" ;
-lin acquaintance_N = mkN "acquaintance" "acquaintances" ;
-lin acceptance_N = mkN "acceptance" "acceptances" ;
-lin nonacceptance_N = mkN "nonacceptance" "nonacceptances" ; -- compound acceptance_N ;
-lin importance_N = mkN "importance" "importances" ;
-lin 'self-importance_N' = mkN "self-importance" "self-importances" ; -- compound importance_N ;
-lin unimportance_N = mkN "unimportance" "unimportances" ; -- compound importance_N ;
-lin stance_N = mkN "stance" "stances" ;
-lin elastance_N = mkN "elastance" "elastances" ; -- compound stance_N ;
-lin substance_N = mkN "substance" "substances" ; -- compound stance_N ;
-lin distance_N = mkN "distance" "distances" ; -- compound stance_N ;
-lin resistance_N = mkN "resistance" "resistances" ; -- compound stance_N ;
-lin nonresistance_N = mkN "nonresistance" "nonresistances" ; -- compound stance_N ;
-lin assistance_N = mkN "assistance" "assistances" ; -- compound stance_N ;
-lin circumstance_N = mkN "circumstance" "circumstances" ; -- compound stance_N ;
-lin instance_N = mkN "instance" "instances" ; -- compound stance_N ;
-lin admittance_N = mkN "admittance" "admittances" ;
-lin remittance_N = mkN "remittance" "remittances" ;
-lin transmittance_N = mkN "transmittance" "transmittances" ;
-lin pittance_N = mkN "pittance" "pittances" ;
-lin quittance_N = mkN "quittance" "quittances" ;
-lin acquittance_N = mkN "acquittance" "acquittances" ; -- compound quittance_N ;
-lin nuance_N = mkN "nuance" "nuances" ;
-lin discontinuance_N = mkN "discontinuance" "discontinuances" ; -- compound nuance_N ;
-lin pursuance_N = mkN "pursuance" "pursuances" ;
-lin advance_N = mkN "advance" "advances" ;
-lin grievance_N = mkN "grievance" "grievances" ;
-lin relevance_N = mkN "relevance" "relevances" ;
-lin irrelevance_N = mkN "irrelevance" "irrelevances" ; -- compound relevance_N ;
-lin connivance_N = mkN "connivance" "connivances" ;
-lin contrivance_N = mkN "contrivance" "contrivances" ;
-lin observance_N = mkN "observance" "observances" ;
-lin nonobservance_N = mkN "nonobservance" "nonobservances" ; -- compound observance_N ;
-lin allowance_N = mkN "allowance" "allowances" ;
-lin abeyance_N = mkN "abeyance" "abeyances" ;
-lin conveyance_N = mkN "conveyance" "conveyances" ;
-lin purveyance_N = mkN "purveyance" "purveyances" ;
-lin flamboyance_N = mkN "flamboyance" "flamboyances" ;
-lin annoyance_N = mkN "annoyance" "annoyances" ;
-lin clairvoyance_N = mkN "clairvoyance" "clairvoyances" ;
-lin cognizance_N = mkN "cognizance" "cognizances" ;
-lin recognizance_N = mkN "recognizance" "recognizances" ; -- compound cognizance_N ;
-lin incognizance_N = mkN "incognizance" "incognizances" ; -- compound cognizance_N ;
-lin séance_N = mkN "séance" "séances" ;
-lin complacence_N = mkN "complacence" "complacences" ;
-lin maleficence_N = mkN "maleficence" "maleficences" ;
-lin beneficence_N = mkN "beneficence" "beneficences" ;
-lin magnificence_N = mkN "magnificence" "magnificences" ;
-lin munificence_N = mkN "munificence" "munificences" ;
-lin licence_N = mkN "licence" "licences" ;
-lin 'game-licence_N' = mkN "game-licence" "game-licences" ; -- compound licence_N ;
-lin 'off-licence_N' = mkN "off-licence" "off-licences" ; -- compound licence_N ;
-lin 'on-licence_N' = mkN "on-licence" "on-licences" ; -- compound licence_N ;
-lin reticence_N = mkN "reticence" "reticences" ;
-lin innocence_N = mkN "innocence" "innocences" ;
-lin renascence_N = mkN "renascence" "renascences" ;
-lin iridescence_N = mkN "iridescence" "iridescences" ;
-lin incandescence_N = mkN "incandescence" "incandescences" ;
-lin recrudescence_N = mkN "recrudescence" "recrudescences" ;
-lin acquiescence_N = mkN "acquiescence" "acquiescences" ;
-lin decalescence_N = mkN "decalescence" "decalescences" ;
-lin coalescence_N = mkN "coalescence" "coalescences" ;
-lin opalescence_N = mkN "opalescence" "opalescences" ;
-lin convalescence_N = mkN "convalescence" "convalescences" ;
-lin adolescence_N = mkN "adolescence" "adolescences" ;
-lin obsolescence_N = mkN "obsolescence" "obsolescences" ;
-lin tumescence_N = mkN "tumescence" "tumescences" ;
-lin detumescence_N = mkN "detumescence" "detumescences" ; -- compound tumescence_N ;
-lin intumescence_N = mkN "intumescence" "intumescences" ; -- compound tumescence_N ;
-lin evanescence_N = mkN "evanescence" "evanescences" ;
-lin senescence_N = mkN "senescence" "senescences" ;
-lin juvenescence_N = mkN "juvenescence" "juvenescences" ;
-lin luminescence_N = mkN "luminescence" "luminescences" ;
-lin chemiluminescence_N = mkN "chemiluminescence" "chemiluminescences" ; -- compound luminescence_N ;
-lin bioluminescence_N = mkN "bioluminescence" "bioluminescences" ; -- compound luminescence_N ;
-lin excrescence_N = mkN "excrescence" "excrescences" ;
-lin phosphorescence_N = mkN "phosphorescence" "phosphorescences" ;
-lin efflorescence_N = mkN "efflorescence" "efflorescences" ;
-lin inflorescence_N = mkN "inflorescence" "inflorescences" ;
-lin fluorescence_N = mkN "fluorescence" "fluorescences" ;
-lin immunofluorescence_N = mkN "immunofluorescence" "immunofluorescences" ; -- compound fluorescence_N ;
-lin autofluorescence_N = mkN "autofluorescence" "autofluorescences" ; -- compound fluorescence_N ;
-lin putrescence_N = mkN "putrescence" "putrescences" ;
-lin infructescence_N = mkN "infructescence" "infructescences" ;
-lin defervescence_N = mkN "defervescence" "defervescences" ;
-lin effervescence_N = mkN "effervescence" "effervescences" ;
-lin dehiscence_N = mkN "dehiscence" "dehiscences" ;
-lin reminiscence_N = mkN "reminiscence" "reminiscences" ;
-lin concupiscence_N = mkN "concupiscence" "concupiscences" ;
-lin translucence_N = mkN "translucence" "translucences" ;
-lin cadence_N = mkN "cadence" "cadences" ;
-lin decadence_N = mkN "decadence" "decadences" ; -- compound cadence_N ;
-lin precedence_N = mkN "precedence" "precedences" ;
-lin antecedence_N = mkN "antecedence" "antecedences" ;
-lin credence_N = mkN "credence" "credences" ;
-lin accidence_N = mkN "accidence" "accidences" ;
-lin incidence_N = mkN "incidence" "incidences" ;
-lin coincidence_N = mkN "coincidence" "coincidences" ; -- compound incidence_N ;
-lin diffidence_N = mkN "diffidence" "diffidences" ;
-lin confidence_N = mkN "confidence" "confidences" ;
-lin 'self-confidence_N' = mkN "self-confidence" "self-confidences" ; -- compound confidence_N ;
-lin overconfidence_N = mkN "overconfidence" "overconfidences" ; -- compound confidence_N ;
-lin subsidence_N = mkN "subsidence" "subsidences" ;
-lin residence_N = mkN "residence" "residences" ;
-lin dissidence_N = mkN "dissidence" "dissidences" ;
-lin evidence_N = mkN "evidence" "evidences" ;
-lin providence_N = mkN "providence" "providences" ;
-lin improvidence_N = mkN "improvidence" "improvidences" ; -- compound providence_N ;
-lin transcendence_N = mkN "transcendence" "transcendences" ;
-lin resplendence_N = mkN "resplendence" "resplendences" ;
-lin dependence_N = mkN "dependence" "dependences" ;
-lin independence_N = mkN "independence" "independences" ; -- compound dependence_N ;
-lin interdependence_N = mkN "interdependence" "interdependences" ; -- compound dependence_N ;
-lin superintendence_N = mkN "superintendence" "superintendences" ;
-lin correspondence_N = mkN "correspondence" "correspondences" ;
-lin impudence_N = mkN "impudence" "impudences" ;
-lin prudence_N = mkN "prudence" "prudences" ;
-lin imprudence_N = mkN "imprudence" "imprudences" ; -- compound prudence_N ;
-lin jurisprudence_N = mkN "jurisprudence" "jurisprudences" ; -- compound prudence_N ;
-lin fence_N = mkN "fence" "fences" ;
-lin defence_N = mkN "defence" "defences" ; -- compound fence_N ;
-lin 'self-defence_N' = mkN "self-defence" "self-defences" ; -- compound fence_N ;
-lin offence_N = mkN "offence" "offences" ; -- compound fence_N ;
-lin indigence_N = mkN "indigence" "indigences" ;
-lin negligence_N = mkN "negligence" "negligences" ;
-lin diligence_N = mkN "diligence" "diligences" ;
-lin intelligence_N = mkN "intelligence" "intelligences" ;
-lin counterintelligence_N = mkN "counterintelligence" "counterintelligences" ; -- compound intelligence_N ;
-lin intransigence_N = mkN "intransigence" "intransigences" ;
-lin indulgence_N = mkN "indulgence" "indulgences" ;
-lin 'self-indulgence_N' = mkN "self-indulgence" "self-indulgences" ; -- compound indulgence_N ;
-lin overindulgence_N = mkN "overindulgence" "overindulgences" ; -- compound indulgence_N ;
-lin refulgence_N = mkN "refulgence" "refulgences" ;
-lin effulgence_N = mkN "effulgence" "effulgences" ;
-lin divulgence_N = mkN "divulgence" "divulgences" ;
-lin submergence_N = mkN "submergence" "submergences" ;
-lin emergence_N = mkN "emergence" "emergences" ;
-lin divergence_N = mkN "divergence" "divergences" ;
-lin convergence_N = mkN "convergence" "convergences" ;
-lin resurgence_N = mkN "resurgence" "resurgences" ;
-lin faience_N = mkN "faience" "faiences" ;
-lin abience_N = mkN "abience" "abiences" ;
-lin ambience_N = mkN "ambience" "ambiences" ;
-lin science_N = mkN "science" "sciences" ;
-lin 'computer science_N' = mkN "computer science" "computer sciences" ; -- compound science_N ;
-lin nescience_N = mkN "nescience" "nesciences" ; -- compound science_N ;
-lin prescience_N = mkN "prescience" "presciences" ; -- compound science_N ;
-lin omniscience_N = mkN "omniscience" "omnisciences" ; -- compound science_N ;
-lin conscience_N = mkN "conscience" "consciences" ; -- compound science_N ;
-lin pseudoscience_N = mkN "pseudoscience" "pseudosciences" ; -- compound science_N ;
-lin neuroscience_N = mkN "neuroscience" "neurosciences" ; -- compound science_N ;
-lin adience_N = mkN "adience" "adiences" ;
-lin obedience_N = mkN "obedience" "obediences" ;
-lin disobedience_N = mkN "disobedience" "disobediences" ; -- compound obedience_N ;
-lin expedience_N = mkN "expedience" "expediences" ;
-lin inexpedience_N = mkN "inexpedience" "inexpediences" ; -- compound expedience_N ;
-lin audience_N = mkN "audience" "audiences" ;
-lin salience_N = mkN "salience" "saliences" ;
-lin resilience_N = mkN "resilience" "resiliences" ;
-lin dissilience_N = mkN "dissilience" "dissiliences" ;
-lin ebullience_N = mkN "ebullience" "ebulliences" ;
-lin lenience_N = mkN "lenience" "leniences" ;
-lin convenience_N = mkN "convenience" "conveniences" ;
-lin inconvenience_N = mkN "inconvenience" "inconveniences" ; -- compound convenience_N ;
-lin sapience_N = mkN "sapience" "sapiences" ;
-lin experience_N = mkN "experience" "experiences" ;
-lin inexperience_N = mkN "inexperience" "inexperiences" ; -- compound experience_N ;
-lin prurience_N = mkN "prurience" "pruriences" ;
-lin transience_N = mkN "transience" "transiences" ;
-lin patience_N = mkN "patience" "patiences" ;
-lin impatience_N = mkN "impatience" "impatiences" ; -- compound patience_N ;
-lin sentience_N = mkN "sentience" "sentiences" ;
-lin insentience_N = mkN "insentience" "insentiences" ; -- compound sentience_N ;
-lin subservience_N = mkN "subservience" "subserviences" ;
-lin valence_N = mkN "valence" "valences" ;
-lin prevalence_N = mkN "prevalence" "prevalences" ; -- compound valence_N ;
-lin ambivalence_N = mkN "ambivalence" "ambivalences" ; -- compound valence_N ;
-lin equivalence_N = mkN "equivalence" "equivalences" ; -- compound valence_N ;
-lin nonequivalence_N = mkN "nonequivalence" "nonequivalences" ; -- compound valence_N ;
-lin covalence_N = mkN "covalence" "covalences" ; -- compound valence_N ;
-lin polyvalence_N = mkN "polyvalence" "polyvalences" ; -- compound valence_N ;
-lin silence_N = mkN "silence" "silences" ;
-lin pestilence_N = mkN "pestilence" "pestilences" ;
-lin excellence_N = mkN "excellence" "excellences" ;
-lin redolence_N = mkN "redolence" "redolences" ;
-lin indolence_N = mkN "indolence" "indolences" ;
-lin condolence_N = mkN "condolence" "condolences" ;
-lin violence_N = mkN "violence" "violences" ;
-lin nonviolence_N = mkN "nonviolence" "nonviolences" ; -- compound violence_N ;
-lin somnolence_N = mkN "somnolence" "somnolences" ;
-lin insolence_N = mkN "insolence" "insolences" ;
-lin malevolence_N = mkN "malevolence" "malevolences" ;
-lin benevolence_N = mkN "benevolence" "benevolences" ;
-lin turbulence_N = mkN "turbulence" "turbulences" ;
-lin succulence_N = mkN "succulence" "succulences" ;
-lin feculence_N = mkN "feculence" "feculences" ;
-lin truculence_N = mkN "truculence" "truculences" ;
-lin fraudulence_N = mkN "fraudulence" "fraudulences" ;
-lin opulence_N = mkN "opulence" "opulences" ;
-lin corpulence_N = mkN "corpulence" "corpulences" ;
-lin virulence_N = mkN "virulence" "virulences" ;
-lin purulence_N = mkN "purulence" "purulences" ;
-lin flatulence_N = mkN "flatulence" "flatulences" ;
-lin vehemence_N = mkN "vehemence" "vehemences" ;
-lin immanence_N = mkN "immanence" "immanences" ;
-lin permanence_N = mkN "permanence" "permanences" ;
-lin impermanence_N = mkN "impermanence" "impermanences" ; -- compound permanence_N ;
-lin eminence_N = mkN "eminence" "eminences" ;
-lin 'pre-eminence_N' = mkN "pre-eminence" "pre-eminences" ; -- compound eminence_N ;
-lin imminence_N = mkN "imminence" "imminences" ;
-lin prominence_N = mkN "prominence" "prominences" ;
-lin continence_N = mkN "continence" "continences" ;
-lin incontinence_N = mkN "incontinence" "incontinences" ; -- compound continence_N ;
-lin pertinence_N = mkN "pertinence" "pertinences" ;
-lin impertinence_N = mkN "impertinence" "impertinences" ; -- compound pertinence_N ;
-lin abstinence_N = mkN "abstinence" "abstinences" ;
-lin threepence_N = mkN "threepence" "threepences" ;
-lin ninepence_N = mkN "ninepence" "ninepences" ;
-lin fivepence_N = mkN "fivepence" "fivepences" ;
-lin tenpence_N = mkN "tenpence" "tenpences" ;
-lin twopence_N = mkN "twopence" "twopences" ;
-lin tuppence_N = mkN "tuppence" "tuppences" ;
-lin fourpence_N = mkN "fourpence" "fourpences" ;
-lin eightpence_N = mkN "eightpence" "eightpences" ;
-lin sixpence_N = mkN "sixpence" "sixpences" ;
-lin clarence_N = mkN "clarence" "clarences" ;
-lin transparence_N = mkN "transparence" "transparences" ;
-lin deference_N = mkN "deference" "deferences" ;
-lin reference_N = mkN "reference" "references" ;
-lin 'cross-reference_N' = mkN "cross-reference" "cross-references" ; -- compound reference_N ;
-lin coreference_N = mkN "coreference" "coreferences" ; -- compound reference_N ;
-lin preference_N = mkN "preference" "preferences" ; -- notcompound reference_N ;
-lin difference_N = mkN "difference" "differences" ;
-lin indifference_N = mkN "indifference" "indifferences" ; -- compound difference_N ;
-lin circumference_N = mkN "circumference" "circumferences" ;
-lin inference_N = mkN "inference" "inferences" ;
-lin conference_N = mkN "conference" "conferences" ;
-lin teleconference_N = mkN "teleconference" "teleconferences" ; -- compound conference_N ;
-lin interference_N = mkN "interference" "interferences" ;
-lin 'non-interference_N' = mkN "non-interference" "non-interferences" ; -- compound interference_N ;
-lin transference_N = mkN "transference" "transferences" ;
-lin countertransference_N = mkN "countertransference" "countertransferences" ; -- compound transference_N ;
-lin belligerence_N = mkN "belligerence" "belligerences" ;
-lin adherence_N = mkN "adherence" "adherences" ;
-lin inherence_N = mkN "inherence" "inherences" ;
-lin coherence_N = mkN "coherence" "coherences" ;
-lin incoherence_N = mkN "incoherence" "incoherences" ; -- compound coherence_N ;
-lin reverence_N = mkN "reverence" "reverences" ;
-lin irreverence_N = mkN "irreverence" "irreverences" ; -- compound reverence_N ;
-lin deterrence_N = mkN "deterrence" "deterrences" ;
-lin abhorrence_N = mkN "abhorrence" "abhorrences" ;
-lin occurrence_N = mkN "occurrence" "occurrences" ;
-lin nonoccurrence_N = mkN "nonoccurrence" "nonoccurrences" ; -- compound occurrence_N ;
-lin recurrence_N = mkN "recurrence" "recurrences" ;
-lin incurrence_N = mkN "incurrence" "incurrences" ;
-lin concurrence_N = mkN "concurrence" "concurrences" ;
-lin absence_N = mkN "absence" "absences" ;
-lin presence_N = mkN "presence" "presences" ;
-lin essence_N = mkN "essence" "essences" ;
-lin quintessence_N = mkN "quintessence" "quintessences" ; -- compound essence_N ;
-lin competence_N = mkN "competence" "competences" ;
-lin incompetence_N = mkN "incompetence" "incompetences" ; -- compound competence_N ;
-lin immunocompetence_N = mkN "immunocompetence" "immunocompetences" ; -- compound competence_N ;
-lin pretence_N = mkN "pretence" "pretences" ;
-lin penitence_N = mkN "penitence" "penitences" ;
-lin impenitence_N = mkN "impenitence" "impenitences" ; -- compound penitence_N ;
-lin sentence_N = mkN "sentence" "sentences" ;
-lin omnipotence_N = mkN "omnipotence" "omnipotences" ;
-lin impotence_N = mkN "impotence" "impotences" ;
-lin advertence_N = mkN "advertence" "advertences" ;
-lin inadvertence_N = mkN "inadvertence" "inadvertences" ; -- compound advertence_N ;
-lin subsistence_N = mkN "subsistence" "subsistences" ;
-lin insistence_N = mkN "insistence" "insistences" ;
-lin consistence_N = mkN "consistence" "consistences" ;
-lin persistence_N = mkN "persistence" "persistences" ;
-lin existence_N = mkN "existence" "existences" ;
-lin 'pre-existence_N' = mkN "pre-existence" "pre-existences" ; -- compound existence_N ;
-lin preexistence_N = mkN "preexistence" "preexistences" ; -- compound existence_N ;
-lin nonexistence_N = mkN "nonexistence" "nonexistences" ; -- compound existence_N ;
-lin coexistence_N = mkN "coexistence" "coexistences" ; -- compound existence_N ;
-lin intermittence_N = mkN "intermittence" "intermittences" ;
-lin affluence_N = mkN "affluence" "affluences" ;
-lin influence_N = mkN "influence" "influences" ;
-lin confluence_N = mkN "confluence" "confluences" ;
-lin sequence_N = mkN "sequence" "sequences" ;
-lin consequence_N = mkN "consequence" "consequences" ; -- compound sequence_N ;
-lin inconsequence_N = mkN "inconsequence" "inconsequences" ; -- compound sequence_N ;
-lin eloquence_N = mkN "eloquence" "eloquences" ;
-lin grandiloquence_N = mkN "grandiloquence" "grandiloquences" ;
-lin magniloquence_N = mkN "magniloquence" "magniloquences" ;
-lin mince_N = mkN "mince" "minces" ;
-lin prince_N = mkN "prince" "princes" ;
-lin quince_N = mkN "quince" "quinces" ;
-lin province_N = mkN "province" "provinces" ;
-lin wince_N = mkN "wince" "winces" ;
-lin sconce_N = mkN "sconce" "sconces" ;
-lin nonce_N = mkN "nonce" "nonces" ;
-lin ponce_N = mkN "ponce" "ponces" ;
-lin dunce_N = mkN "dunce" "dunces" ;
-lin ounce_N = mkN "ounce" "ounces" ;
-lin bounce_N = mkN "bounce" "bounces" ; -- notcompound ounce_N ;
-lin fluidounce_N = mkN "fluidounce" "fluidounces" ; -- compound ounce_N ;
-lin flounce_N = mkN "flounce" "flounces" ; -- notcompound ounce_N ;
-lin pounce_N = mkN "pounce" "pounces" ; -- notcompound ounce_N ;
-lin ploce_N = mkN "ploce" "ploces" ;
-lin symploce_N = mkN "symploce" "symploces" ; -- compound ploce_N ;
-lin 'viva voce_N' = mkN "viva voce" "viva voces" ;
-lin farce_N = mkN "farce" "farces" ;
-lin commerce_N = mkN "commerce" "commerces" ;
-lin terce_N = mkN "terce" "terces" ;
-lin force_N = mkN "force" "forces" ;
-lin 'task-force_N' = mkN "task-force" "task-forces" ; -- compound force_N ;
-lin airforce_N = mkN "airforce" "airforces" ; -- compound force_N ;
-lin divorce_N = mkN "divorce" "divorces" ;
-lin source_N = mkN "source" "sources" ;
-lin resource_N = mkN "resource" "resources" ; -- compound source_N ;
-lin sauce_N = mkN "sauce" "sauces" ;
-lin applesauce_N = mkN "applesauce" "applesauces" ; -- compound sauce_N ;
-lin produce_N = mkN "produce" "produces" ;
-lin deuce_N = mkN "deuce" "deuces" ;
-lin puce_N = mkN "puce" "puces" ;
-lin prepuce_N = mkN "prepuce" "prepuces" ; -- compound puce_N ;
-lin spruce_N = mkN "spruce" "spruces" ;
-lin truce_N = mkN "truce" "truces" ;
-lin celtuce_N = mkN "celtuce" "celtuces" ;
-lin lettuce_N = mkN "lettuce" "lettuces" ;
-lin facade_N = mkN "facade" "facades" ;
-lin saccade_N = mkN "saccade" "saccades" ;
-lin decade_N = mkN "decade" "decades" ;
-lin barricade_N = mkN "barricade" "barricades" ;
-lin cavalcade_N = mkN "cavalcade" "cavalcades" ;
-lin brocade_N = mkN "brocade" "brocades" ;
-lin arcade_N = mkN "arcade" "arcades" ;
-lin motorcade_N = mkN "motorcade" "motorcades" ;
-lin cascade_N = mkN "cascade" "cascades" ;
-lin ambuscade_N = mkN "ambuscade" "ambuscades" ;
-lin alidade_N = mkN "alidade" "alidades" ;
-lin orangeade_N = mkN "orangeade" "orangeades" ;
-lin limeade_N = mkN "limeade" "limeades" ;
-lin fade_N = mkN "fade" "fades" ;
-lin renegade_N = mkN "renegade" "renegades" ;
-lin brigade_N = mkN "brigade" "brigades" ;
-lin 'fire-brigade_N' = mkN "fire-brigade" "fire-brigades" ; -- compound brigade_N ;
-lin 'shock-brigade_N' = mkN "shock-brigade" "shock-brigades" ; -- compound brigade_N ;
-lin shade_N = mkN "shade" "shades" ;
-lin sunshade_N = mkN "sunshade" "sunshades" ; -- compound shade_N ;
-lin lampshade_N = mkN "lampshade" "lampshades" ; -- compound shade_N ;
-lin nightshade_N = mkN "nightshade" "nightshades" ; -- compound shade_N ;
-lin jade_N = mkN "jade" "jades" ;
-lin cockade_N = mkN "cockade" "cockades" ;
-lin blockade_N = mkN "blockade" "blockades" ;
-lin stockade_N = mkN "stockade" "stockades" ;
-lin escalade_N = mkN "escalade" "escalades" ;
-lin marmalade_N = mkN "marmalade" "marmalades" ;
-lin blade_N = mkN "blade" "blades" ;
-lin 'shoulder-blade_N' = mkN "shoulder-blade" "shoulder-blades" ; -- compound blade_N ;
-lin switchblade_N = mkN "switchblade" "switchblades" ; -- compound blade_N ;
-lin razorblade_N = mkN "razorblade" "razorblades" ; -- compound blade_N ;
-lin twayblade_N = mkN "twayblade" "twayblades" ; -- compound blade_N ;
-lin clade_N = mkN "clade" "clades" ;
-lin glade_N = mkN "glade" "glades" ;
-lin defilade_N = mkN "defilade" "defilades" ;
-lin enfilade_N = mkN "enfilade" "enfilades" ;
-lin ballade_N = mkN "ballade" "ballades" ;
-lin fusillade_N = mkN "fusillade" "fusillades" ;
-lin accolade_N = mkN "accolade" "accolades" ;
-lin roulade_N = mkN "roulade" "roulades" ;
-lin pomade_N = mkN "pomade" "pomades" ;
-lin esplanade_N = mkN "esplanade" "esplanades" ;
-lin promenade_N = mkN "promenade" "promenades" ;
-lin tapenade_N = mkN "tapenade" "tapenades" ;
-lin serenade_N = mkN "serenade" "serenades" ;
-lin grenade_N = mkN "grenade" "grenades" ;
-lin 'hand-grenade_N' = mkN "hand-grenade" "hand-grenades" ; -- compound grenade_N ;
-lin marinade_N = mkN "marinade" "marinades" ;
-lin harlequinade_N = mkN "harlequinade" "harlequinades" ;
-lin colonnade_N = mkN "colonnade" "colonnades" ;
-lin lemonade_N = mkN "lemonade" "lemonades" ;
-lin cannonade_N = mkN "cannonade" "cannonades" ;
-lin tamponade_N = mkN "tamponade" "tamponades" ;
-lin escapade_N = mkN "escapade" "escapades" ;
-lin sexcapade_N = mkN "sexcapade" "sexcapades" ;
-lin spade_N = mkN "spade" "spades" ;
-lin charade_N = mkN "charade" "charades" ;
-lin parade_N = mkN "parade" "parades" ;
-lin 'sick-parade_N' = mkN "sick-parade" "sick-parades" ; -- compound parade_N ;
-lin masquerade_N = mkN "masquerade" "masquerades" ;
-lin grade_N = mkN "grade" "grades" ;
-lin tardigrade_N = mkN "tardigrade" "tardigrades" ; -- compound grade_N ;
-lin downgrade_N = mkN "downgrade" "downgrades" ; -- compound grade_N ;
-lin upgrade_N = mkN "upgrade" "upgrades" ; -- compound grade_N ;
-lin tirade_N = mkN "tirade" "tirades" ;
-lin comrade_N = mkN "comrade" "comrades" ;
-lin trade_N = mkN "trade" "trades" ;
-lin 'slave-trade_N' = mkN "slave-trade" "slave-trades" ; -- compound trade_N ;
-lin 'stock-in-trade_N' = mkN "stock-in-trade" "stock-in-trades" ; -- compound trade_N ;
-lin antitrade_N = mkN "antitrade" "antitrades" ; -- compound trade_N ;
-lin balustrade_N = mkN "balustrade" "balustrades" ; -- compound trade_N ;
-lin palisade_N = mkN "palisade" "palisades" ;
-lin glissade_N = mkN "glissade" "glissades" ;
-lin crusade_N = mkN "crusade" "crusades" ;
-lin rodomontade_N = mkN "rodomontade" "rodomontades" ;
-lin couvade_N = mkN "couvade" "couvades" ;
-lin façade_N = mkN "façade" "façades" ;
-lin millepede_N = mkN "millepede" "millepedes" ;
-lin velocipede_N = mkN "velocipede" "velocipedes" ;
-lin millipede_N = mkN "millipede" "millipedes" ;
-lin centipede_N = mkN "centipede" "centipedes" ;
-lin stampede_N = mkN "stampede" "stampedes" ;
-lin suede_N = mkN "suede" "suedes" ;
-lin Swede_N = mkN "Swede" "Swedes" ;
-lin aide_N = mkN "aide" "aides" ;
-lin carbide_N = mkN "carbide" "carbides" ;
-lin isosorbide_N = mkN "isosorbide" "isosorbides" ;
-lin larvacide_N = mkN "larvacide" "larvacides" ;
-lin scabicide_N = mkN "scabicide" "scabicides" ;
-lin herbicide_N = mkN "herbicide" "herbicides" ;
-lin regicide_N = mkN "regicide" "regicides" ;
-lin fungicide_N = mkN "fungicide" "fungicides" ;
-lin filicide_N = mkN "filicide" "filicides" ;
-lin silicide_N = mkN "silicide" "silicides" ;
-lin pediculicide_N = mkN "pediculicide" "pediculicides" ;
-lin homicide_N = mkN "homicide" "homicides" ;
-lin germicide_N = mkN "germicide" "germicides" ;
-lin spermicide_N = mkN "spermicide" "spermicides" ;
-lin vermicide_N = mkN "vermicide" "vermicides" ;
-lin tyrannicide_N = mkN "tyrannicide" "tyrannicides" ;
-lin acaricide_N = mkN "acaricide" "acaricides" ;
-lin bactericide_N = mkN "bactericide" "bactericides" ;
-lin viricide_N = mkN "viricide" "viricides" ;
-lin uxoricide_N = mkN "uxoricide" "uxoricides" ;
-lin parricide_N = mkN "parricide" "parricides" ;
-lin matricide_N = mkN "matricide" "matricides" ;
-lin patricide_N = mkN "patricide" "patricides" ;
-lin fratricide_N = mkN "fratricide" "fratricides" ;
-lin insecticide_N = mkN "insecticide" "insecticides" ;
-lin mariticide_N = mkN "mariticide" "mariticides" ;
-lin infanticide_N = mkN "infanticide" "infanticides" ;
-lin aborticide_N = mkN "aborticide" "aborticides" ;
-lin pesticide_N = mkN "pesticide" "pesticides" ;
-lin suicide_N = mkN "suicide" "suicides" ;
-lin larvicide_N = mkN "larvicide" "larvicides" ;
-lin genocide_N = mkN "genocide" "genocides" ;
-lin iodide_N = mkN "iodide" "iodides" ;
-lin sulfide_N = mkN "sulfide" "sulfides" ;
-lin hide_N = mkN "hide" "hides" ;
-lin horsehide_N = mkN "horsehide" "horsehides" ; -- compound hide_N ;
-lin sulphide_N = mkN "sulphide" "sulphides" ; -- compound hide_N ;
-lin rawhide_N = mkN "rawhide" "rawhides" ; -- compound hide_N ;
-lin cowhide_N = mkN "cowhide" "cowhides" ; -- compound hide_N ;
-lin halide_N = mkN "halide" "halides" ;
-lin tetrahalide_N = mkN "tetrahalide" "tetrahalides" ; -- compound halide_N ;
-lin glide_N = mkN "glide" "glides" ;
-lin acetanilide_N = mkN "acetanilide" "acetanilides" ;
-lin bolide_N = mkN "bolide" "bolides" ;
-lin slide_N = mkN "slide" "slides" ;
-lin 'hair-slide_N' = mkN "hair-slide" "hair-slides" ; -- compound slide_N ;
-lin landslide_N = mkN "landslide" "landslides" ; -- compound slide_N ;
-lin mudslide_N = mkN "mudslide" "mudslides" ; -- compound slide_N ;
-lin rockslide_N = mkN "rockslide" "rockslides" ; -- compound slide_N ;
-lin amide_N = mkN "amide" "amides" ;
-lin sulfanilamide_N = mkN "sulfanilamide" "sulfanilamides" ; -- compound amide_N ;
-lin acrylamide_N = mkN "acrylamide" "acrylamides" ; -- compound amide_N ;
-lin cyanamide_N = mkN "cyanamide" "cyanamides" ; -- compound amide_N ;
-lin proprionamide_N = mkN "proprionamide" "proprionamides" ; -- compound amide_N ;
-lin indapamide_N = mkN "indapamide" "indapamides" ; -- compound amide_N ;
-lin acetamide_N = mkN "acetamide" "acetamides" ; -- compound amide_N ;
-lin sulfacetamide_N = mkN "sulfacetamide" "sulfacetamides" ; -- compound amide_N ;
-lin tolbutamide_N = mkN "tolbutamide" "tolbutamides" ; -- compound amide_N ;
-lin polyamide_N = mkN "polyamide" "polyamides" ; -- compound amide_N ;
-lin tolazamide_N = mkN "tolazamide" "tolazamides" ; -- compound amide_N ;
-lin furosemide_N = mkN "furosemide" "furosemides" ;
-lin imide_N = mkN "imide" "imides" ;
-lin glutethimide_N = mkN "glutethimide" "glutethimides" ; -- compound imide_N ;
-lin cetrimide_N = mkN "cetrimide" "cetrimides" ; -- compound imide_N ;
-lin phensuximide_N = mkN "phensuximide" "phensuximides" ; -- compound imide_N ;
-lin ethosuximide_N = mkN "ethosuximide" "ethosuximides" ; -- compound imide_N ;
-lin thalidomide_N = mkN "thalidomide" "thalidomides" ;
-lin leflunomide_N = mkN "leflunomide" "leflunomides" ;
-lin bromide_N = mkN "bromide" "bromides" ;
-lin cyanide_N = mkN "cyanide" "cyanides" ;
-lin ferricyanide_N = mkN "ferricyanide" "ferricyanides" ; -- compound cyanide_N ;
-lin ferrocyanide_N = mkN "ferrocyanide" "ferrocyanides" ; -- compound cyanide_N ;
-lin arsenide_N = mkN "arsenide" "arsenides" ;
-lin flecainide_N = mkN "flecainide" "flecainides" ;
-lin encainide_N = mkN "encainide" "encainides" ;
-lin tocainide_N = mkN "tocainide" "tocainides" ;
-lin transactinide_N = mkN "transactinide" "transactinides" ;
-lin ozonide_N = mkN "ozonide" "ozonides" ;
-lin oroide_N = mkN "oroide" "oroides" ;
-lin ride_N = mkN "ride" "rides" ;
-lin 'joy-ride_N' = mkN "joy-ride" "joy-rides" ; -- compound ride_N ;
-lin tetrasaccharide_N = mkN "tetrasaccharide" "tetrasaccharides" ; -- compound ride_N ;
-lin disaccharide_N = mkN "disaccharide" "disaccharides" ; -- compound ride_N ;
-lin trisaccharide_N = mkN "trisaccharide" "trisaccharides" ; -- compound ride_N ;
-lin oligosaccharide_N = mkN "oligosaccharide" "oligosaccharides" ; -- compound ride_N ;
-lin monosaccharide_N = mkN "monosaccharide" "monosaccharides" ; -- compound ride_N ;
-lin polysaccharide_N = mkN "polysaccharide" "polysaccharides" ; -- compound ride_N ;
-lin mucopolysaccharide_N = mkN "mucopolysaccharide" "mucopolysaccharides" ; -- compound ride_N ;
-lin bride_N = mkN "bride" "brides" ; -- notcompound ride_N ;
-lin 'war-bride_N' = mkN "war-bride" "war-brides" ; -- compound ride_N ;
-lin hydride_N = mkN "hydride" "hydrides" ; -- compound ride_N ;
-lin anhydride_N = mkN "anhydride" "anhydrides" ; -- compound ride_N ;
-lin glyceride_N = mkN "glyceride" "glycerides" ; -- compound ride_N ;
-lin diglyceride_N = mkN "diglyceride" "diglycerides" ; -- compound ride_N ;
-lin triglyceride_N = mkN "triglyceride" "triglycerides" ; -- compound ride_N ;
-lin fluoroboride_N = mkN "fluoroboride" "fluoroborides" ; -- compound ride_N ;
-lin chloride_N = mkN "chloride" "chlorides" ; -- compound ride_N ;
-lin tetrachloride_N = mkN "tetrachloride" "tetrachlorides" ; -- compound ride_N ;
-lin dichloride_N = mkN "dichloride" "dichlorides" ; -- compound ride_N ;
-lin trichloride_N = mkN "trichloride" "trichlorides" ; -- compound ride_N ;
-lin hydrochloride_N = mkN "hydrochloride" "hydrochlorides" ; -- compound ride_N ;
-lin perchloride_N = mkN "perchloride" "perchlorides" ; -- compound ride_N ;
-lin fluoride_N = mkN "fluoride" "fluorides" ; -- compound ride_N ;
-lin pride_N = mkN "pride" "prides" ; -- notcompound ride_N ;
-lin override_N = mkN "override" "overrides" ; -- compound ride_N ;
-lin nitride_N = mkN "nitride" "nitrides" ; -- compound ride_N ;
-lin stride_N = mkN "stride" "strides" ; -- notcompound ride_N ;
-lin glyburide_N = mkN "glyburide" "glyburides" ; -- compound ride_N ;
-lin telluride_N = mkN "telluride" "tellurides" ; -- compound ride_N ;
-lin joyride_N = mkN "joyride" "joyrides" ; -- compound ride_N ;
-lin side_N = mkN "side" "sides" ;
-lin 'debit-side_N' = mkN "debit-side" "debit-sides" ; -- compound side_N ;
-lin 'credit-side_N' = mkN "credit-side" "credit-sides" ; -- compound side_N ;
-lin aside_N = mkN "aside" "asides" ; -- notcompound side_N ;
-lin seaside_N = mkN "seaside" "seasides" ; -- compound side_N ;
-lin curbside_N = mkN "curbside" "curbsides" ; -- compound side_N ;
-lin roadside_N = mkN "roadside" "roadsides" ; -- compound side_N ;
-lin broadside_N = mkN "broadside" "broadsides" ; -- compound side_N ;
-lin bedside_N = mkN "bedside" "bedsides" ; -- compound side_N ;
-lin landside_N = mkN "landside" "landsides" ; -- compound side_N ;
-lin lakeside_N = mkN "lakeside" "lakesides" ; -- compound side_N ;
-lin fireside_N = mkN "fireside" "firesides" ; -- compound side_N ;
-lin offside_N = mkN "offside" "offsides" ; -- compound side_N ;
-lin ringside_N = mkN "ringside" "ringsides" ; -- compound side_N ;
-lin backside_N = mkN "backside" "backsides" ; -- compound side_N ;
-lin dockside_N = mkN "dockside" "docksides" ; -- compound side_N ;
-lin hillside_N = mkN "hillside" "hillsides" ; -- compound side_N ;
-lin inside_N = mkN "inside" "insides" ; -- compound side_N ;
-lin mountainside_N = mkN "mountainside" "mountainsides" ; -- compound side_N ;
-lin ironside_N = mkN "ironside" "ironsides" ; -- compound side_N ;
-lin canyonside_N = mkN "canyonside" "canyonsides" ; -- compound side_N ;
-lin downside_N = mkN "downside" "downsides" ; -- compound side_N ;
-lin glucoside_N = mkN "glucoside" "glucosides" ; -- compound side_N ;
-lin glycoside_N = mkN "glycoside" "glycosides" ; -- compound side_N ;
-lin nucleoside_N = mkN "nucleoside" "nucleosides" ; -- compound side_N ;
-lin shipside_N = mkN "shipside" "shipsides" ; -- compound side_N ;
-lin topside_N = mkN "topside" "topsides" ; -- compound side_N ;
-lin nearside_N = mkN "nearside" "nearsides" ; -- compound side_N ;
-lin underside_N = mkN "underside" "undersides" ; -- compound side_N ;
-lin waterside_N = mkN "waterside" "watersides" ; -- compound side_N ;
-lin riverside_N = mkN "riverside" "riversides" ; -- compound side_N ;
-lin silverside_N = mkN "silverside" "silversides" ; -- compound side_N ;
-lin outside_N = mkN "outside" "outsides" ; -- compound side_N ;
-lin wayside_N = mkN "wayside" "waysides" ; -- compound side_N ;
-lin countryside_N = mkN "countryside" "countrysides" ; -- compound side_N ;
-lin tide_N = mkN "tide" "tides" ;
-lin 'flood-tide_N' = mkN "flood-tide" "flood-tides" ; -- compound tide_N ;
-lin 'neap-tide_N' = mkN "neap-tide" "neap-tides" ; -- compound tide_N ;
-lin ebbtide_N = mkN "ebbtide" "ebbtides" ; -- compound tide_N ;
-lin yuletide_N = mkN "yuletide" "yuletides" ; -- compound tide_N ;
-lin springtide_N = mkN "springtide" "springtides" ; -- compound tide_N ;
-lin eventide_N = mkN "eventide" "eventides" ; -- compound tide_N ;
-lin noontide_N = mkN "noontide" "noontides" ; -- compound tide_N ;
-lin whitsuntide_N = mkN "whitsuntide" "whitsuntides" ; -- compound tide_N ;
-lin nucleotide_N = mkN "nucleotide" "nucleotides" ; -- compound tide_N ;
-lin peptide_N = mkN "peptide" "peptides" ; -- compound tide_N ;
-lin fibrinopeptide_N = mkN "fibrinopeptide" "fibrinopeptides" ; -- compound tide_N ;
-lin polypeptide_N = mkN "polypeptide" "polypeptides" ; -- compound tide_N ;
-lin riptide_N = mkN "riptide" "riptides" ; -- compound tide_N ;
-lin undertide_N = mkN "undertide" "undertides" ; -- compound tide_N ;
-lin christmastide_N = mkN "christmastide" "christmastides" ; -- compound tide_N ;
-lin guide_N = mkN "guide" "guides" ;
-lin waveguide_N = mkN "waveguide" "waveguides" ; -- compound guide_N ;
-lin divide_N = mkN "divide" "divides" ;
-lin oxide_N = mkN "oxide" "oxides" ;
-lin dioxide_N = mkN "dioxide" "dioxides" ; -- compound oxide_N ;
-lin trioxide_N = mkN "trioxide" "trioxides" ; -- compound oxide_N ;
-lin monoxide_N = mkN "monoxide" "monoxides" ; -- compound oxide_N ;
-lin chlordiazepoxide_N = mkN "chlordiazepoxide" "chlordiazepoxides" ; -- compound oxide_N ;
-lin hydroxide_N = mkN "hydroxide" "hydroxides" ; -- compound oxide_N ;
-lin peroxide_N = mkN "peroxide" "peroxides" ; -- compound oxide_N ;
-lin superoxide_N = mkN "superoxide" "superoxides" ; -- compound oxide_N ;
-lin tetroxide_N = mkN "tetroxide" "tetroxides" ; -- compound oxide_N ;
-lin pentoxide_N = mkN "pentoxide" "pentoxides" ; -- compound oxide_N ;
-lin diazoxide_N = mkN "diazoxide" "diazoxides" ; -- compound oxide_N ;
-lin azide_N = mkN "azide" "azides" ;
-lin thiazide_N = mkN "thiazide" "thiazides" ; -- compound azide_N ;
-lin trichlormethiazide_N = mkN "trichlormethiazide" "trichlormethiazides" ; -- compound azide_N ;
-lin hydroflumethiazide_N = mkN "hydroflumethiazide" "hydroflumethiazides" ; -- compound azide_N ;
-lin chlorothiazide_N = mkN "chlorothiazide" "chlorothiazides" ; -- compound azide_N ;
-lin hydrochlorothiazide_N = mkN "hydrochlorothiazide" "hydrochlorothiazides" ; -- compound azide_N ;
-lin glipizide_N = mkN "glipizide" "glipizides" ;
-lin iproclozide_N = mkN "iproclozide" "iproclozides" ;
-lin pimozide_N = mkN "pimozide" "pimozides" ;
-lin alcalde_N = mkN "alcalde" "alcaldes" ;
-lin tilde_N = mkN "tilde" "tildes" ;
-lin allemande_N = mkN "allemande" "allemandes" ;
-lin pitchblende_N = mkN "pitchblende" "pitchblendes" ;
-lin hornblende_N = mkN "hornblende" "hornblendes" ;
-lin blonde_N = mkN "blonde" "blondes" ;
-lin demimonde_N = mkN "demimonde" "demimondes" ;
-lin ode_N = mkN "ode" "odes" ;
-lin abode_N = mkN "abode" "abodes" ; -- compound ode_N ;
-lin code_N = mkN "code" "codes" ; -- notcompound ode_N ;
-lin 'zip code_N' = mkN "zip code" "zip codes" ; -- compound ode_N ;
-lin postcode_N = mkN "postcode" "postcodes" ; -- compound ode_N ;
-lin cladode_N = mkN "cladode" "cladodes" ; -- compound ode_N ;
-lin geode_N = mkN "geode" "geodes" ; -- compound ode_N ;
-lin cathode_N = mkN "cathode" "cathodes" ; -- compound ode_N ;
-lin photocathode_N = mkN "photocathode" "photocathodes" ; -- compound ode_N ;
-lin hydathode_N = mkN "hydathode" "hydathodes" ; -- compound ode_N ;
-lin diode_N = mkN "diode" "diodes" ; -- compound ode_N ;
-lin triode_N = mkN "triode" "triodes" ; -- compound ode_N ;
-lin lode_N = mkN "lode" "lodes" ; -- notcompound ode_N ;
-lin pistillode_N = mkN "pistillode" "pistillodes" ; -- compound ode_N ;
-lin phyllode_N = mkN "phyllode" "phyllodes" ; -- compound ode_N ;
-lin mode_N = mkN "mode" "modes" ; -- notcompound ode_N ;
-lin commode_N = mkN "commode" "commodes" ; -- compound ode_N ;
-lin node_N = mkN "node" "nodes" ; -- notcompound ode_N ;
-lin anode_N = mkN "anode" "anodes" ; -- compound ode_N ;
-lin antinode_N = mkN "antinode" "antinodes" ; -- compound ode_N ;
-lin internode_N = mkN "internode" "internodes" ; -- compound ode_N ;
-lin megapode_N = mkN "megapode" "megapodes" ; -- compound ode_N ;
-lin antipode_N = mkN "antipode" "antipodes" ; -- compound ode_N ;
-lin spode_N = mkN "spode" "spodes" ; -- notcompound ode_N ;
-lin electrode_N = mkN "electrode" "electrodes" ; -- compound ode_N ;
-lin tetrode_N = mkN "tetrode" "tetrodes" ; -- compound ode_N ;
-lin episode_N = mkN "episode" "episodes" ; -- compound ode_N ;
-lin nematode_N = mkN "nematode" "nematodes" ; -- compound ode_N ;
-lin pentode_N = mkN "pentode" "pentodes" ; -- compound ode_N ;
-lin exode_N = mkN "exode" "exodes" ; -- compound ode_N ;
-lin 'avant-garde_N' = mkN "avant-garde" "avant-gardes" ;
-lin paloverde_N = mkN "paloverde" "paloverdes" ;
-lin horde_N = mkN "horde" "hordes" ;
-lin gourde_N = mkN "gourde" "gourdes" ;
-lin dude_N = mkN "dude" "dudes" ;
-lin prelude_N = mkN "prelude" "preludes" ;
-lin interlude_N = mkN "interlude" "interludes" ;
-lin postlude_N = mkN "postlude" "postludes" ;
-lin nude_N = mkN "nude" "nudes" ;
-lin prude_N = mkN "prude" "prudes" ;
-lin etude_N = mkN "etude" "etudes" ;
-lin hebetude_N = mkN "hebetude" "hebetudes" ; -- compound etude_N ;
-lin inquietude_N = mkN "inquietude" "inquietudes" ; -- compound etude_N ;
-lin disquietude_N = mkN "disquietude" "disquietudes" ; -- compound etude_N ;
-lin desuetude_N = mkN "desuetude" "desuetudes" ; -- compound etude_N ;
-lin consuetude_N = mkN "consuetude" "consuetudes" ; -- compound etude_N ;
-lin habitude_N = mkN "habitude" "habitudes" ;
-lin solicitude_N = mkN "solicitude" "solicitudes" ;
-lin longitude_N = mkN "longitude" "longitudes" ;
-lin similitude_N = mkN "similitude" "similitudes" ;
-lin verisimilitude_N = mkN "verisimilitude" "verisimilitudes" ; -- compound similitude_N ;
-lin dissimilitude_N = mkN "dissimilitude" "dissimilitudes" ; -- compound similitude_N ;
-lin solitude_N = mkN "solitude" "solitudes" ;
-lin amplitude_N = mkN "amplitude" "amplitudes" ;
-lin magnitude_N = mkN "magnitude" "magnitudes" ;
-lin infinitude_N = mkN "infinitude" "infinitudes" ;
-lin decrepitude_N = mkN "decrepitude" "decrepitudes" ;
-lin turpitude_N = mkN "turpitude" "turpitudes" ;
-lin pulchritude_N = mkN "pulchritude" "pulchritudes" ;
-lin lassitude_N = mkN "lassitude" "lassitudes" ;
-lin vicissitude_N = mkN "vicissitude" "vicissitudes" ;
-lin beatitude_N = mkN "beatitude" "beatitudes" ;
-lin latitude_N = mkN "latitude" "latitudes" ;
-lin platitude_N = mkN "platitude" "platitudes" ; -- notcompound latitude_N ;
-lin gratitude_N = mkN "gratitude" "gratitudes" ;
-lin ingratitude_N = mkN "ingratitude" "ingratitudes" ; -- compound gratitude_N ;
-lin exactitude_N = mkN "exactitude" "exactitudes" ;
-lin inexactitude_N = mkN "inexactitude" "inexactitudes" ; -- compound exactitude_N ;
-lin rectitude_N = mkN "rectitude" "rectitudes" ;
-lin correctitude_N = mkN "correctitude" "correctitudes" ; -- compound rectitude_N ;
-lin altitude_N = mkN "altitude" "altitudes" ;
-lin multitude_N = mkN "multitude" "multitudes" ;
-lin aptitude_N = mkN "aptitude" "aptitudes" ;
-lin inaptitude_N = mkN "inaptitude" "inaptitudes" ; -- compound aptitude_N ;
-lin ineptitude_N = mkN "ineptitude" "ineptitudes" ;
-lin promptitude_N = mkN "promptitude" "promptitudes" ;
-lin certitude_N = mkN "certitude" "certitudes" ;
-lin incertitude_N = mkN "incertitude" "incertitudes" ; -- compound certitude_N ;
-lin fortitude_N = mkN "fortitude" "fortitudes" ;
-lin attitude_N = mkN "attitude" "attitudes" ;
-lin servitude_N = mkN "servitude" "servitudes" ;
-lin aldehyde_N = mkN "aldehyde" "aldehydes" ;
-lin formaldehyde_N = mkN "formaldehyde" "formaldehydes" ; -- compound aldehyde_N ;
-lin paraldehyde_N = mkN "paraldehyde" "paraldehydes" ; -- compound aldehyde_N ;
-lin glyceraldehyde_N = mkN "glyceraldehyde" "glyceraldehydes" ; -- compound aldehyde_N ;
-lin acetaldehyde_N = mkN "acetaldehyde" "acetaldehydes" ; -- compound aldehyde_N ;
-lin bee_N = mkN "bee" "bees" ;
-lin bumblebee_N = mkN "bumblebee" "bumblebees" ; -- compound bee_N ;
-lin bawbee_N = mkN "bawbee" "bawbees" ; -- compound bee_N ;
-lin honeybee_N = mkN "honeybee" "honeybees" ; -- compound bee_N ;
-lin fiancee_N = mkN "fiancee" "fiancees" ;
-lin divorcee_N = mkN "divorcee" "divorcees" ;
-lin chickadee_N = mkN "chickadee" "chickadees" ;
-lin grandee_N = mkN "grandee" "grandees" ;
-lin standee_N = mkN "standee" "standees" ;
-lin sendee_N = mkN "sendee" "sendees" ;
-lin vendee_N = mkN "vendee" "vendees" ;
-lin spondee_N = mkN "spondee" "spondees" ;
-lin fee_N = mkN "fee" "fees" ;
-lin 'entrance-fee_N' = mkN "entrance-fee" "entrance-fees" ; -- compound fee_N ;
-lin coffee_N = mkN "coffee" "coffees" ; -- compound fee_N ;
-lin toffee_N = mkN "toffee" "toffees" ; -- compound fee_N ;
-lin 'gee-gee_N' = mkN "gee-gee" "gee-gees" ;
-lin mortgagee_N = mkN "mortgagee" "mortgagees" ;
-lin dragee_N = mkN "dragee" "dragees" ;
-lin pledgee_N = mkN "pledgee" "pledgees" ;
-lin gidgee_N = mkN "gidgee" "gidgees" ;
-lin squeegee_N = mkN "squeegee" "squeegees" ;
-lin thuggee_N = mkN "thuggee" "thuggees" ;
-lin muggee_N = mkN "muggee" "muggees" ;
-lin negligee_N = mkN "negligee" "negligees" ;
-lin perigee_N = mkN "perigee" "perigees" ;
-lin congee_N = mkN "congee" "congees" ;
-lin pongee_N = mkN "pongee" "pongees" ;
-lin bungee_N = mkN "bungee" "bungees" ;
-lin ogee_N = mkN "ogee" "ogees" ;
-lin apogee_N = mkN "apogee" "apogees" ; -- compound ogee_N ;
-lin bargee_N = mkN "bargee" "bargees" ;
-lin refugee_N = mkN "refugee" "refugees" ;
-lin lichee_N = mkN "lichee" "lichees" ;
-lin chincherinchee_N = mkN "chincherinchee" "chincherinchees" ;
-lin trochee_N = mkN "trochee" "trochees" ;
-lin litchee_N = mkN "litchee" "litchees" ;
-lin debauchee_N = mkN "debauchee" "debauchees" ;
-lin vouchee_N = mkN "vouchee" "vouchees" ;
-lin lychee_N = mkN "lychee" "lychees" ;
-lin ghee_N = mkN "ghee" "ghees" ;
-lin garnishee_N = mkN "garnishee" "garnishees" ;
-lin banshee_N = mkN "banshee" "banshees" ;
-lin towhee_N = mkN "towhee" "towhees" ;
-lin akee_N = mkN "akee" "akees" ;
-lin ackee_N = mkN "ackee" "ackees" ;
-lin yankee_N = mkN "yankee" "yankees" ;
-lin lee_N = mkN "lee" "lees" ;
-lin glee_N = mkN "glee" "glees" ; -- notcompound lee_N ;
-lin bailee_N = mkN "bailee" "bailees" ; -- compound lee_N ;
-lin jubilee_N = mkN "jubilee" "jubilees" ; -- compound lee_N ;
-lin mallee_N = mkN "mallee" "mallees" ; -- compound lee_N ;
-lin enrollee_N = mkN "enrollee" "enrollees" ; -- compound lee_N ;
-lin ranee_N = mkN "ranee" "ranees" ;
-lin maharanee_N = mkN "maharanee" "maharanees" ; -- compound ranee_N ;
-lin alienee_N = mkN "alienee" "alienees" ;
-lin consignee_N = mkN "consignee" "consignees" ;
-lin assignee_N = mkN "assignee" "assignees" ;
-lin trainee_N = mkN "trainee" "trainees" ;
-lin detainee_N = mkN "detainee" "detainees" ;
-lin vaccinee_N = mkN "vaccinee" "vaccinees" ;
-lin nominee_N = mkN "nominee" "nominees" ;
-lin knee_N = mkN "knee" "knees" ;
-lin internee_N = mkN "internee" "internees" ;
-lin townee_N = mkN "townee" "townees" ;
-lin pee_N = mkN "pee" "pees" ;
-lin escapee_N = mkN "escapee" "escapees" ; -- compound pee_N ;
-lin tepee_N = mkN "tepee" "tepees" ; -- compound pee_N ;
-lin rappee_N = mkN "rappee" "rappees" ; -- compound pee_N ;
-lin toupee_N = mkN "toupee" "toupees" ; -- compound pee_N ;
-lin rupee_N = mkN "rupee" "rupees" ; -- compound pee_N ;
-lin sangaree_N = mkN "sangaree" "sangarees" ;
-lin shivaree_N = mkN "shivaree" "shivarees" ;
-lin decree_N = mkN "decree" "decrees" ;
-lin scree_N = mkN "scree" "screes" ;
-lin murderee_N = mkN "murderee" "murderees" ;
-lin referee_N = mkN "referee" "referees" ;
-lin conferee_N = mkN "conferee" "conferees" ;
-lin transferee_N = mkN "transferee" "transferees" ;
-lin kedgeree_N = mkN "kedgeree" "kedgerees" ;
-lin chickeree_N = mkN "chickeree" "chickerees" ;
-lin free_N = mkN "free" "frees" ;
-lin degree_N = mkN "degree" "degrees" ;
-lin millidegree_N = mkN "millidegree" "millidegrees" ; -- compound degree_N ;
-lin pedigree_N = mkN "pedigree" "pedigrees" ;
-lin filigree_N = mkN "filigree" "filigrees" ;
-lin retiree_N = mkN "retiree" "retirees" ;
-lin jamboree_N = mkN "jamboree" "jamborees" ;
-lin honoree_N = mkN "honoree" "honorees" ;
-lin spree_N = mkN "spree" "sprees" ;
-lin tree_N = mkN "tree" "trees" ;
-lin 'rood-tree_N' = mkN "rood-tree" "rood-trees" ; -- compound tree_N ;
-lin 'shade-tree_N' = mkN "shade-tree" "shade-trees" ; -- compound tree_N ;
-lin 'spindle-tree_N' = mkN "spindle-tree" "spindle-trees" ; -- compound tree_N ;
-lin 'lime-tree_N' = mkN "lime-tree" "lime-trees" ; -- compound tree_N ;
-lin 'plane-tree_N' = mkN "plane-tree" "plane-trees" ; -- compound tree_N ;
-lin 'olive-tree_N' = mkN "olive-tree" "olive-trees" ; -- compound tree_N ;
-lin 'roof-tree_N' = mkN "roof-tree" "roof-trees" ; -- compound tree_N ;
-lin 'banian-tree_N' = mkN "banian-tree" "banian-trees" ; -- compound tree_N ;
-lin 'rowan-tree_N' = mkN "rowan-tree" "rowan-trees" ; -- compound tree_N ;
-lin 'linden-tree_N' = mkN "linden-tree" "linden-trees" ; -- compound tree_N ;
-lin 'cacao-tree_N' = mkN "cacao-tree" "cacao-trees" ; -- compound tree_N ;
-lin 'christmas-tree_N' = mkN "christmas-tree" "christmas-trees" ; -- compound tree_N ;
-lin 'locust-tree_N' = mkN "locust-tree" "locust-trees" ; -- compound tree_N ;
-lin 'yew-tree_N' = mkN "yew-tree" "yew-trees" ; -- compound tree_N ;
-lin 'willow-tree_N' = mkN "willow-tree" "willow-trees" ; -- compound tree_N ;
-lin doubletree_N = mkN "doubletree" "doubletrees" ; -- compound tree_N ;
-lin whiffletree_N = mkN "whiffletree" "whiffletrees" ; -- compound tree_N ;
-lin axletree_N = mkN "axletree" "axletrees" ; -- compound tree_N ;
-lin shoetree_N = mkN "shoetree" "shoetrees" ; -- compound tree_N ;
-lin bourtree_N = mkN "bourtree" "bourtrees" ; -- compound tree_N ;
-lin see_N = mkN "see" "sees" ;
-lin promisee_N = mkN "promisee" "promisees" ; -- compound see_N ;
-lin pharisee_N = mkN "pharisee" "pharisees" ; -- compound see_N ;
-lin advisee_N = mkN "advisee" "advisees" ; -- compound see_N ;
-lin devisee_N = mkN "devisee" "devisees" ; -- compound see_N ;
-lin licensee_N = mkN "licensee" "licensees" ; -- compound see_N ;
-lin parsee_N = mkN "parsee" "parsees" ; -- compound see_N ;
-lin fricassee_N = mkN "fricassee" "fricassees" ; -- compound see_N ;
-lin lessee_N = mkN "lessee" "lessees" ; -- compound see_N ;
-lin addressee_N = mkN "addressee" "addressees" ; -- compound see_N ;
-lin assessee_N = mkN "assessee" "assessees" ; -- compound see_N ;
-lin fusee_N = mkN "fusee" "fusees" ; -- compound see_N ;
-lin tee_N = mkN "tee" "tees" ;
-lin legatee_N = mkN "legatee" "legatees" ; -- compound tee_N ;
-lin manatee_N = mkN "manatee" "manatees" ; -- compound tee_N ;
-lin coatee_N = mkN "coatee" "coatees" ; -- compound tee_N ;
-lin goatee_N = mkN "goatee" "goatees" ; -- compound tee_N ;
-lin inductee_N = mkN "inductee" "inductees" ; -- compound tee_N ;
-lin draftee_N = mkN "draftee" "draftees" ; -- compound tee_N ;
-lin guarantee_N = mkN "guarantee" "guarantees" ; -- compound tee_N ;
-lin grantee_N = mkN "grantee" "grantees" ; -- compound tee_N ;
-lin warrantee_N = mkN "warrantee" "warrantees" ; -- compound tee_N ;
-lin absentee_N = mkN "absentee" "absentees" ; -- compound tee_N ;
-lin patentee_N = mkN "patentee" "patentees" ; -- compound tee_N ;
-lin appointee_N = mkN "appointee" "appointees" ; -- compound tee_N ;
-lin bootee_N = mkN "bootee" "bootees" ; -- compound tee_N ;
-lin devotee_N = mkN "devotee" "devotees" ; -- compound tee_N ;
-lin adoptee_N = mkN "adoptee" "adoptees" ; -- compound tee_N ;
-lin repartee_N = mkN "repartee" "repartees" ; -- compound tee_N ;
-lin deportee_N = mkN "deportee" "deportees" ; -- compound tee_N ;
-lin testee_N = mkN "testee" "testees" ; -- compound tee_N ;
-lin contestee_N = mkN "contestee" "contestees" ; -- compound tee_N ;
-lin trustee_N = mkN "trustee" "trustees" ; -- compound tee_N ;
-lin settee_N = mkN "settee" "settees" ; -- compound tee_N ;
-lin kittee_N = mkN "kittee" "kittees" ; -- compound tee_N ;
-lin committee_N = mkN "committee" "committees" ; -- compound tee_N ;
-lin subcommittee_N = mkN "subcommittee" "subcommittees" ; -- compound tee_N ;
-lin puttee_N = mkN "puttee" "puttees" ; -- compound tee_N ;
-lin suttee_N = mkN "suttee" "suttees" ; -- compound tee_N ;
-lin amputee_N = mkN "amputee" "amputees" ; -- compound tee_N ;
-lin tutee_N = mkN "tutee" "tutees" ; -- compound tee_N ;
-lin evacuee_N = mkN "evacuee" "evacuees" ;
-lin marquee_N = mkN "marquee" "marquees" ;
-lin levee_N = mkN "levee" "levees" ;
-lin wee_N = mkN "wee" "wees" ;
-lin 'wee-wee_N' = mkN "wee-wee" "wee-wees" ; -- compound wee_N ;
-lin drawee_N = mkN "drawee" "drawees" ; -- compound wee_N ;
-lin interviewee_N = mkN "interviewee" "interviewees" ; -- compound wee_N ;
-lin pewee_N = mkN "pewee" "pewees" ; -- compound wee_N ;
-lin ngwee_N = mkN "ngwee" "ngwees" ; -- notcompound wee_N ;
-lin payee_N = mkN "payee" "payees" ;
-lin employee_N = mkN "employee" "employees" ;
-lin zee_N = mkN "zee" "zees" ;
-lin chimpanzee_N = mkN "chimpanzee" "chimpanzees" ; -- compound zee_N ;
-lin cybercafe_N = mkN "cybercafe" "cybercafes" ;
-lin chafe_N = mkN "chafe" "chafes" ;
-lin carafe_N = mkN "carafe" "carafes" ;
-lin strafe_N = mkN "strafe" "strafes" ;
-lin safe_N = mkN "safe" "safes" ;
-lin 'meat-safe_N' = mkN "meat-safe" "meat-safes" ; -- compound safe_N ;
-lin gaffe_N = mkN "gaffe" "gaffes" ;
-lin piaffe_N = mkN "piaffe" "piaffes" ;
-lin giraffe_N = mkN "giraffe" "giraffes" ;
-lin pouffe_N = mkN "pouffe" "pouffes" ;
-lin fife_N = mkN "fife" "fifes" ;
-lin 'still-life_N' = mkN "still-life" "still-lifes" ;
-lin wildlife_N = mkN "wildlife" "wildlifes" ;
-lin afterlife_N = mkN "afterlife" "afterlifes" ;
-lin nightlife_N = mkN "nightlife" "nightlifes" ;
-lin jackknife_N = mkN "jackknife" "jackknifes" ;
-lin pocketknife_N = mkN "pocketknife" "pocketknifes" ;
-lin drawknife_N = mkN "drawknife" "drawknifes" ;
-lin strife_N = mkN "strife" "strifes" ;
-lin loosestrife_N = mkN "loosestrife" "loosestrifes" ; -- compound strife_N ;
-lin alewife_N = mkN "alewife" "alewifes" ;
-lin puddingwife_N = mkN "puddingwife" "puddingwifes" ;
-lin life_N = mkN "life" "lives" ;
-lin knife_N = mkN "knife" "knives" ;
-lin 'bowie knife_N' = mkN "bowie knife" "bowie knives" ; -- compound knife_N ;
-lin 'table-knife_N' = mkN "table-knife" "table-knives" ; -- compound knife_N ;
-lin 'palette-knife_N' = mkN "palette-knife" "palette-knives" ; -- compound knife_N ;
-lin 'pruning-knife_N' = mkN "pruning-knife" "pruning-knives" ; -- compound knife_N ;
-lin 'carving-knife_N' = mkN "carving-knife" "carving-knives" ; -- compound knife_N ;
-lin 'fish-knife_N' = mkN "fish-knife" "fish-knives" ; -- compound knife_N ;
-lin 'sheath-knife_N' = mkN "sheath-knife" "sheath-knives" ; -- compound knife_N ;
-lin 'jack-knife_N' = mkN "jack-knife" "jack-knives" ; -- compound knife_N ;
-lin 'flick-knife_N' = mkN "flick-knife" "flick-knives" ; -- compound knife_N ;
-lin 'clasp-knife_N' = mkN "clasp-knife" "clasp-knives" ; -- compound knife_N ;
-lin 'pocket-knife_N' = mkN "pocket-knife" "pocket-knives" ; -- compound knife_N ;
-lin penknife_N = mkN "penknife" "penknives" ; -- compound knife_N ;
-lin paperknife_N = mkN "paperknife" "paperknives" ; -- compound knife_N ;
-lin wife_N = mkN "wife" "wives" ;
-lin midwife_N = mkN "midwife" "midwives" ; -- compound wife_N ;
-lin housewife_N = mkN "housewife" "housewives" ; -- compound wife_N ;
-lin fishwife_N = mkN "fishwife" "fishwives" ; -- compound wife_N ;
-lin age_N = mkN "age" "ages" ;
-lin cabbage_N = mkN "cabbage" "cabbages" ; -- compound age_N ;
-lin cribbage_N = mkN "cribbage" "cribbages" ; -- compound age_N ;
-lin garbage_N = mkN "garbage" "garbages" ; -- compound age_N ;
-lin herbage_N = mkN "herbage" "herbages" ; -- compound age_N ;
-lin cage_N = mkN "cage" "cages" ; -- notcompound age_N ;
-lin birdcage_N = mkN "birdcage" "birdcages" ; -- compound age_N ;
-lin socage_N = mkN "socage" "socages" ; -- compound age_N ;
-lin adage_N = mkN "adage" "adages" ; -- compound age_N ;
-lin bandage_N = mkN "bandage" "bandages" ; -- compound age_N ;
-lin appendage_N = mkN "appendage" "appendages" ; -- compound age_N ;
-lin windage_N = mkN "windage" "windages" ; -- compound age_N ;
-lin bondage_N = mkN "bondage" "bondages" ; -- compound age_N ;
-lin poundage_N = mkN "poundage" "poundages" ; -- compound age_N ;
-lin yardage_N = mkN "yardage" "yardages" ; -- compound age_N ;
-lin cordage_N = mkN "cordage" "cordages" ; -- compound age_N ;
-lin mileage_N = mkN "mileage" "mileages" ; -- compound age_N ;
-lin lineage_N = mkN "lineage" "lineages" ; -- compound age_N ;
-lin matrilineage_N = mkN "matrilineage" "matrilineages" ; -- compound age_N ;
-lin patrilineage_N = mkN "patrilineage" "patrilineages" ; -- compound age_N ;
-lin acreage_N = mkN "acreage" "acreages" ; -- compound age_N ;
-lin wharfage_N = mkN "wharfage" "wharfages" ; -- compound age_N ;
-lin gage_N = mkN "gage" "gages" ; -- notcompound age_N ;
-lin baggage_N = mkN "baggage" "baggages" ; -- compound age_N ;
-lin luggage_N = mkN "luggage" "luggages" ; -- compound age_N ;
-lin 'hand-luggage_N' = mkN "hand-luggage" "hand-luggages" ; -- compound age_N ;
-lin greengage_N = mkN "greengage" "greengages" ; -- compound age_N ;
-lin mortgage_N = mkN "mortgage" "mortgages" ; -- compound age_N ;
-lin repechage_N = mkN "repechage" "repechages" ; -- compound age_N ;
-lin roughage_N = mkN "roughage" "roughages" ; -- compound age_N ;
-lin coliphage_N = mkN "coliphage" "coliphages" ; -- compound age_N ;
-lin bacteriophage_N = mkN "bacteriophage" "bacteriophages" ; -- compound age_N ;
-lin macrophage_N = mkN "macrophage" "macrophages" ; -- compound age_N ;
-lin microphage_N = mkN "microphage" "microphages" ; -- compound age_N ;
-lin haemorrhage_N = mkN "haemorrhage" "haemorrhages" ; -- compound age_N ;
-lin hemorrhage_N = mkN "hemorrhage" "hemorrhages" ; -- compound age_N ;
-lin verbiage_N = mkN "verbiage" "verbiages" ; -- compound age_N ;
-lin foliage_N = mkN "foliage" "foliages" ; -- compound age_N ;
-lin carriage_N = mkN "carriage" "carriages" ; -- compound age_N ;
-lin 'smoking-carriage_N' = mkN "smoking-carriage" "smoking-carriages" ; -- compound age_N ;
-lin 'gun-carriage_N' = mkN "gun-carriage" "gun-carriages" ; -- compound age_N ;
-lin 'slip-carriage_N' = mkN "slip-carriage" "slip-carriages" ; -- compound age_N ;
-lin undercarriage_N = mkN "undercarriage" "undercarriages" ; -- compound age_N ;
-lin miscarriage_N = mkN "miscarriage" "miscarriages" ; -- compound age_N ;
-lin marriage_N = mkN "marriage" "marriages" ; -- compound age_N ;
-lin remarriage_N = mkN "remarriage" "remarriages" ; -- compound age_N ;
-lin intermarriage_N = mkN "intermarriage" "intermarriages" ; -- compound age_N ;
-lin triage_N = mkN "triage" "triages" ; -- compound age_N ;
-lin leakage_N = mkN "leakage" "leakages" ; -- compound age_N ;
-lin breakage_N = mkN "breakage" "breakages" ; -- compound age_N ;
-lin package_N = mkN "package" "packages" ; -- compound age_N ;
-lin wreckage_N = mkN "wreckage" "wreckages" ; -- compound age_N ;
-lin dockage_N = mkN "dockage" "dockages" ; -- compound age_N ;
-lin lockage_N = mkN "lockage" "lockages" ; -- compound age_N ;
-lin blockage_N = mkN "blockage" "blockages" ; -- compound age_N ;
-lin truckage_N = mkN "truckage" "truckages" ; -- compound age_N ;
-lin tankage_N = mkN "tankage" "tankages" ; -- compound age_N ;
-lin linkage_N = mkN "linkage" "linkages" ; -- compound age_N ;
-lin shrinkage_N = mkN "shrinkage" "shrinkages" ; -- compound age_N ;
-lin corkage_N = mkN "corkage" "corkages" ; -- compound age_N ;
-lin scalage_N = mkN "scalage" "scalages" ; -- compound age_N ;
-lin vassalage_N = mkN "vassalage" "vassalages" ; -- compound age_N ;
-lin assemblage_N = mkN "assemblage" "assemblages" ; -- compound age_N ;
-lin fuselage_N = mkN "fuselage" "fuselages" ; -- compound age_N ;
-lin tutelage_N = mkN "tutelage" "tutelages" ; -- compound age_N ;
-lin persiflage_N = mkN "persiflage" "persiflages" ; -- compound age_N ;
-lin camouflage_N = mkN "camouflage" "camouflages" ; -- compound age_N ;
-lin mucilage_N = mkN "mucilage" "mucilages" ; -- compound age_N ;
-lin milage_N = mkN "milage" "milages" ; -- compound age_N ;
-lin spoilage_N = mkN "spoilage" "spoilages" ; -- compound age_N ;
-lin silage_N = mkN "silage" "silages" ; -- compound age_N ;
-lin ensilage_N = mkN "ensilage" "ensilages" ; -- compound age_N ;
-lin cartilage_N = mkN "cartilage" "cartilages" ; -- compound age_N ;
-lin fibrocartilage_N = mkN "fibrocartilage" "fibrocartilages" ; -- compound age_N ;
-lin enallage_N = mkN "enallage" "enallages" ; -- compound age_N ;
-lin hypallage_N = mkN "hypallage" "hypallages" ; -- compound age_N ;
-lin pillage_N = mkN "pillage" "pillages" ; -- compound age_N ;
-lin spillage_N = mkN "spillage" "spillages" ; -- compound age_N ;
-lin tillage_N = mkN "tillage" "tillages" ; -- compound age_N ;
-lin village_N = mkN "village" "villages" ; -- compound age_N ;
-lin collage_N = mkN "collage" "collages" ; -- compound age_N ;
-lin ullage_N = mkN "ullage" "ullages" ; -- compound age_N ;
-lin haulage_N = mkN "haulage" "haulages" ; -- compound age_N ;
-lin damage_N = mkN "damage" "damages" ; -- compound age_N ;
-lin ohmage_N = mkN "ohmage" "ohmages" ; -- compound age_N ;
-lin image_N = mkN "image" "images" ; -- compound age_N ;
-lin afterimage_N = mkN "afterimage" "afterimages" ; -- compound age_N ;
-lin pilgrimage_N = mkN "pilgrimage" "pilgrimages" ; -- compound age_N ;
-lin scrimmage_N = mkN "scrimmage" "scrimmages" ; -- compound age_N ;
-lin rummage_N = mkN "rummage" "rummages" ; -- compound age_N ;
-lin scrummage_N = mkN "scrummage" "scrummages" ; -- compound age_N ;
-lin homage_N = mkN "homage" "homages" ; -- compound age_N ;
-lin plumage_N = mkN "plumage" "plumages" ; -- compound age_N ;
-lin orphanage_N = mkN "orphanage" "orphanages" ; -- compound age_N ;
-lin apanage_N = mkN "apanage" "apanages" ; -- compound age_N ;
-lin appanage_N = mkN "appanage" "appanages" ; -- compound age_N ;
-lin alienage_N = mkN "alienage" "alienages" ; -- compound age_N ;
-lin signage_N = mkN "signage" "signages" ; -- compound age_N ;
-lin drainage_N = mkN "drainage" "drainages" ; -- compound age_N ;
-lin concubinage_N = mkN "concubinage" "concubinages" ; -- compound age_N ;
-lin badinage_N = mkN "badinage" "badinages" ; -- compound age_N ;
-lin villeinage_N = mkN "villeinage" "villeinages" ; -- compound age_N ;
-lin linage_N = mkN "linage" "linages" ; -- compound age_N ;
-lin coinage_N = mkN "coinage" "coinages" ; -- compound age_N ;
-lin tonnage_N = mkN "tonnage" "tonnages" ; -- compound age_N ;
-lin peonage_N = mkN "peonage" "peonages" ; -- compound age_N ;
-lin espionage_N = mkN "espionage" "espionages" ; -- compound age_N ;
-lin counterespionage_N = mkN "counterespionage" "counterespionages" ; -- compound age_N ;
-lin commonage_N = mkN "commonage" "commonages" ; -- compound age_N ;
-lin nonage_N = mkN "nonage" "nonages" ; -- compound age_N ;
-lin baronage_N = mkN "baronage" "baronages" ; -- compound age_N ;
-lin patronage_N = mkN "patronage" "patronages" ; -- compound age_N ;
-lin parsonage_N = mkN "parsonage" "parsonages" ; -- compound age_N ;
-lin personage_N = mkN "personage" "personages" ; -- compound age_N ;
-lin carnage_N = mkN "carnage" "carnages" ; -- compound age_N ;
-lin ménage_N = mkN "ménage" "ménages" ; -- notcompound age_N ;
-lin page_N = mkN "page" "pages" ; -- notcompound age_N ;
-lin 'title-page_N' = mkN "title-page" "title-pages" ; -- compound age_N ;
-lin seepage_N = mkN "seepage" "seepages" ; -- compound age_N ;
-lin pipage_N = mkN "pipage" "pipages" ; -- compound age_N ;
-lin equipage_N = mkN "equipage" "equipages" ; -- compound age_N ;
-lin rampage_N = mkN "rampage" "rampages" ; -- compound age_N ;
-lin slippage_N = mkN "slippage" "slippages" ; -- compound age_N ;
-lin stoppage_N = mkN "stoppage" "stoppages" ; -- compound age_N ;
-lin decoupage_N = mkN "decoupage" "decoupages" ; -- compound age_N ;
-lin rage_N = mkN "rage" "rages" ; -- notcompound age_N ;
-lin vicarage_N = mkN "vicarage" "vicarages" ; -- compound age_N ;
-lin garage_N = mkN "garage" "garages" ; -- compound age_N ;
-lin cellarage_N = mkN "cellarage" "cellarages" ; -- compound age_N ;
-lin umbrage_N = mkN "umbrage" "umbrages" ; -- compound age_N ;
-lin plunderage_N = mkN "plunderage" "plunderages" ; -- compound age_N ;
-lin peerage_N = mkN "peerage" "peerages" ; -- compound age_N ;
-lin steerage_N = mkN "steerage" "steerages" ; -- compound age_N ;
-lin pilferage_N = mkN "pilferage" "pilferages" ; -- compound age_N ;
-lin telpherage_N = mkN "telpherage" "telpherages" ; -- compound age_N ;
-lin brokerage_N = mkN "brokerage" "brokerages" ; -- compound age_N ;
-lin amperage_N = mkN "amperage" "amperages" ; -- compound age_N ;
-lin lighterage_N = mkN "lighterage" "lighterages" ; -- compound age_N ;
-lin porterage_N = mkN "porterage" "porterages" ; -- compound age_N ;
-lin average_N = mkN "average" "averages" ; -- compound age_N ;
-lin beverage_N = mkN "beverage" "beverages" ; -- compound age_N ;
-lin leverage_N = mkN "leverage" "leverages" ; -- compound age_N ;
-lin overage_N = mkN "overage" "overages" ; -- compound age_N ;
-lin coverage_N = mkN "coverage" "coverages" ; -- compound age_N ;
-lin sewerage_N = mkN "sewerage" "sewerages" ; -- compound age_N ;
-lin suffrage_N = mkN "suffrage" "suffrages" ; -- compound age_N ;
-lin saxifrage_N = mkN "saxifrage" "saxifrages" ; -- compound age_N ;
-lin mirage_N = mkN "mirage" "mirages" ; -- compound age_N ;
-lin umpirage_N = mkN "umpirage" "umpirages" ; -- compound age_N ;
-lin borage_N = mkN "borage" "borages" ; -- compound age_N ;
-lin forage_N = mkN "forage" "forages" ; -- compound age_N ;
-lin anchorage_N = mkN "anchorage" "anchorages" ; -- compound age_N ;
-lin seigniorage_N = mkN "seigniorage" "seigniorages" ; -- compound age_N ;
-lin moorage_N = mkN "moorage" "moorages" ; -- compound age_N ;
-lin storage_N = mkN "storage" "storages" ; -- compound age_N ;
-lin barrage_N = mkN "barrage" "barrages" ; -- compound age_N ;
-lin demurrage_N = mkN "demurrage" "demurrages" ; -- compound age_N ;
-lin arbitrage_N = mkN "arbitrage" "arbitrages" ; -- compound age_N ;
-lin outrage_N = mkN "outrage" "outrages" ; -- compound age_N ;
-lin effleurage_N = mkN "effleurage" "effleurages" ; -- compound age_N ;
-lin harbourage_N = mkN "harbourage" "harbourages" ; -- compound age_N ;
-lin courage_N = mkN "courage" "courages" ; -- compound age_N ;
-lin entourage_N = mkN "entourage" "entourages" ; -- compound age_N ;
-lin pasturage_N = mkN "pasturage" "pasturages" ; -- compound age_N ;
-lin sage_N = mkN "sage" "sages" ; -- notcompound age_N ;
-lin presage_N = mkN "presage" "presages" ; -- compound age_N ;
-lin visage_N = mkN "visage" "visages" ; -- compound age_N ;
-lin dosage_N = mkN "dosage" "dosages" ; -- compound age_N ;
-lin corsage_N = mkN "corsage" "corsages" ; -- compound age_N ;
-lin massage_N = mkN "massage" "massages" ; -- compound age_N ;
-lin passage_N = mkN "passage" "passages" ; -- compound age_N ;
-lin message_N = mkN "message" "messages" ; -- compound age_N ;
-lin dressage_N = mkN "dressage" "dressages" ; -- compound age_N ;
-lin petrissage_N = mkN "petrissage" "petrissages" ; -- compound age_N ;
-lin usage_N = mkN "usage" "usages" ; -- compound age_N ;
-lin 'ill-usage_N' = mkN "ill-usage" "ill-usages" ; -- compound age_N ;
-lin sausage_N = mkN "sausage" "sausages" ; -- compound age_N ;
-lin eatage_N = mkN "eatage" "eatages" ; -- compound age_N ;
-lin decolletage_N = mkN "decolletage" "decolletages" ; -- compound age_N ;
-lin baronetage_N = mkN "baronetage" "baronetages" ; -- compound age_N ;
-lin driftage_N = mkN "driftage" "driftages" ; -- compound age_N ;
-lin hermitage_N = mkN "hermitage" "hermitages" ; -- compound age_N ;
-lin fruitage_N = mkN "fruitage" "fruitages" ; -- compound age_N ;
-lin voltage_N = mkN "voltage" "voltages" ; -- compound age_N ;
-lin vantage_N = mkN "vantage" "vantages" ; -- compound age_N ;
-lin advantage_N = mkN "advantage" "advantages" ; -- compound age_N ;
-lin disadvantage_N = mkN "disadvantage" "disadvantages" ; -- compound age_N ;
-lin percentage_N = mkN "percentage" "percentages" ; -- compound age_N ;
-lin clientage_N = mkN "clientage" "clientages" ; -- compound age_N ;
-lin parentage_N = mkN "parentage" "parentages" ; -- compound age_N ;
-lin mintage_N = mkN "mintage" "mintages" ; -- compound age_N ;
-lin vintage_N = mkN "vintage" "vintages" ; -- compound age_N ;
-lin montage_N = mkN "montage" "montages" ; -- compound age_N ;
-lin photomontage_N = mkN "photomontage" "photomontages" ; -- compound age_N ;
-lin frontage_N = mkN "frontage" "frontages" ; -- compound age_N ;
-lin cabotage_N = mkN "cabotage" "cabotages" ; -- compound age_N ;
-lin sabotage_N = mkN "sabotage" "sabotages" ; -- compound age_N ;
-lin dotage_N = mkN "dotage" "dotages" ; -- compound age_N ;
-lin footage_N = mkN "footage" "footages" ; -- compound age_N ;
-lin rootage_N = mkN "rootage" "rootages" ; -- compound age_N ;
-lin potage_N = mkN "potage" "potages" ; -- compound age_N ;
-lin cartage_N = mkN "cartage" "cartages" ; -- compound age_N ;
-lin shortage_N = mkN "shortage" "shortages" ; -- compound age_N ;
-lin portage_N = mkN "portage" "portages" ; -- compound age_N ;
-lin reportage_N = mkN "reportage" "reportages" ; -- compound age_N ;
-lin stage_N = mkN "stage" "stages" ; -- notcompound age_N ;
-lin 'fare-stage_N' = mkN "fare-stage" "fare-stages" ; -- compound age_N ;
-lin 'landing-stage_N' = mkN "landing-stage" "landing-stages" ; -- compound age_N ;
-lin wastage_N = mkN "wastage" "wastages" ; -- compound age_N ;
-lin multistage_N = mkN "multistage" "multistages" ; -- compound age_N ;
-lin downstage_N = mkN "downstage" "downstages" ; -- compound age_N ;
-lin hostage_N = mkN "hostage" "hostages" ; -- compound age_N ;
-lin postage_N = mkN "postage" "postages" ; -- compound age_N ;
-lin upstage_N = mkN "upstage" "upstages" ; -- compound age_N ;
-lin wattage_N = mkN "wattage" "wattages" ; -- compound age_N ;
-lin curettage_N = mkN "curettage" "curettages" ; -- compound age_N ;
-lin cottage_N = mkN "cottage" "cottages" ; -- compound age_N ;
-lin pottage_N = mkN "pottage" "pottages" ; -- compound age_N ;
-lin frottage_N = mkN "frottage" "frottages" ; -- compound age_N ;
-lin outage_N = mkN "outage" "outages" ; -- compound age_N ;
-lin language_N = mkN "language" "languages" ; -- compound age_N ;
-lin paralanguage_N = mkN "paralanguage" "paralanguages" ; -- compound age_N ;
-lin metalanguage_N = mkN "metalanguage" "metalanguages" ; -- compound age_N ;
-lin slanguage_N = mkN "slanguage" "slanguages" ; -- compound age_N ;
-lin messuage_N = mkN "messuage" "messuages" ; -- compound age_N ;
-lin cleavage_N = mkN "cleavage" "cleavages" ; -- compound age_N ;
-lin gastrogavage_N = mkN "gastrogavage" "gastrogavages" ; -- compound age_N ;
-lin lavage_N = mkN "lavage" "lavages" ; -- compound age_N ;
-lin pavage_N = mkN "pavage" "pavages" ; -- compound age_N ;
-lin ravage_N = mkN "ravage" "ravages" ; -- compound age_N ;
-lin savage_N = mkN "savage" "savages" ; -- compound age_N ;
-lin salvage_N = mkN "salvage" "salvages" ; -- compound age_N ;
-lin selvage_N = mkN "selvage" "selvages" ; -- compound age_N ;
-lin lovage_N = mkN "lovage" "lovages" ; -- compound age_N ;
-lin wage_N = mkN "wage" "wages" ; -- notcompound age_N ;
-lin sewage_N = mkN "sewage" "sewages" ; -- compound age_N ;
-lin cowage_N = mkN "cowage" "cowages" ; -- compound age_N ;
-lin flowage_N = mkN "flowage" "flowages" ; -- compound age_N ;
-lin stowage_N = mkN "stowage" "stowages" ; -- compound age_N ;
-lin voyage_N = mkN "voyage" "voyages" ; -- compound age_N ;
-lin badge_N = mkN "badge" "badges" ;
-lin edge_N = mkN "edge" "edges" ;
-lin 'knife-edge_N' = mkN "knife-edge" "knife-edges" ; -- compound edge_N ;
-lin 'razor-edge_N' = mkN "razor-edge" "razor-edges" ; -- compound edge_N ;
-lin hedge_N = mkN "hedge" "hedges" ; -- notcompound edge_N ;
-lin ledge_N = mkN "ledge" "ledges" ; -- notcompound edge_N ;
-lin pledge_N = mkN "pledge" "pledges" ; -- notcompound edge_N ;
-lin sledge_N = mkN "sledge" "sledges" ; -- notcompound edge_N ;
-lin knowledge_N = mkN "knowledge" "knowledges" ; -- compound edge_N ;
-lin metaknowledge_N = mkN "metaknowledge" "metaknowledges" ; -- compound edge_N ;
-lin foreknowledge_N = mkN "foreknowledge" "foreknowledges" ; -- compound edge_N ;
-lin dredge_N = mkN "dredge" "dredges" ; -- notcompound edge_N ;
-lin featheredge_N = mkN "featheredge" "featheredges" ; -- compound edge_N ;
-lin sedge_N = mkN "sedge" "sedges" ; -- notcompound edge_N ;
-lin straightedge_N = mkN "straightedge" "straightedges" ; -- compound edge_N ;
-lin selvedge_N = mkN "selvedge" "selvedges" ; -- compound edge_N ;
-lin wedge_N = mkN "wedge" "wedges" ; -- notcompound edge_N ;
-lin midge_N = mkN "midge" "midges" ;
-lin ridge_N = mkN "ridge" "ridges" ;
-lin bridge_N = mkN "bridge" "bridges" ; -- notcompound ridge_N ;
-lin 'trestle-bridge_N' = mkN "trestle-bridge" "trestle-bridges" ; -- compound ridge_N ;
-lin weighbridge_N = mkN "weighbridge" "weighbridges" ; -- compound ridge_N ;
-lin footbridge_N = mkN "footbridge" "footbridges" ; -- compound ridge_N ;
-lin drawbridge_N = mkN "drawbridge" "drawbridges" ; -- compound ridge_N ;
-lin fridge_N = mkN "fridge" "fridges" ; -- notcompound ridge_N ;
-lin porridge_N = mkN "porridge" "porridges" ; -- compound ridge_N ;
-lin cartridge_N = mkN "cartridge" "cartridges" ; -- compound ridge_N ;
-lin 'ball-cartridge_N' = mkN "ball-cartridge" "ball-cartridges" ; -- compound ridge_N ;
-lin partridge_N = mkN "partridge" "partridges" ; -- compound ridge_N ;
-lin dodge_N = mkN "dodge" "dodges" ;
-lin lodge_N = mkN "lodge" "lodges" ;
-lin splodge_N = mkN "splodge" "splodges" ; -- notcompound lodge_N ;
-lin hodgepodge_N = mkN "hodgepodge" "hodgepodges" ;
-lin stodge_N = mkN "stodge" "stodges" ;
-lin fudge_N = mkN "fudge" "fudges" ;
-lin judge_N = mkN "judge" "judges" ;
-lin kludge_N = mkN "kludge" "kludges" ;
-lin sludge_N = mkN "sludge" "sludges" ;
-lin smudge_N = mkN "smudge" "smudges" ;
-lin nudge_N = mkN "nudge" "nudges" ;
-lin pudge_N = mkN "pudge" "pudges" ;
-lin drudge_N = mkN "drudge" "drudges" ;
-lin grudge_N = mkN "grudge" "grudges" ;
-lin trudge_N = mkN "trudge" "trudges" ;
-lin solfege_N = mkN "solfege" "solfeges" ;
-lin liege_N = mkN "liege" "lieges" ;
-lin siege_N = mkN "siege" "sieges" ;
-lin sacrilege_N = mkN "sacrilege" "sacrileges" ;
-lin privilege_N = mkN "privilege" "privileges" ;
-lin college_N = mkN "college" "colleges" ;
-lin 'training-college_N' = mkN "training-college" "training-colleges" ; -- compound college_N ;
-lin cortege_N = mkN "cortege" "corteges" ;
-lin shmegegge_N = mkN "shmegegge" "shmegegges" ;
-lin pogge_N = mkN "pogge" "pogges" ;
-lin beige_N = mkN "beige" "beiges" ;
-lin 'noblesse oblige_N' = mkN "noblesse oblige" "noblesse obliges" ;
-lin prestige_N = mkN "prestige" "prestiges" ;
-lin vestige_N = mkN "vestige" "vestiges" ;
-lin bilge_N = mkN "bilge" "bilges" ;
-lin bulge_N = mkN "bulge" "bulges" ;
-lin change_N = mkN "change" "changes" ;
-lin interchange_N = mkN "interchange" "interchanges" ; -- compound change_N ;
-lin exchange_N = mkN "exchange" "exchanges" ; -- compound change_N ;
-lin 'corn-exchange_N' = mkN "corn-exchange" "corn-exchanges" ; -- compound change_N ;
-lin flange_N = mkN "flange" "flanges" ;
-lin mélange_N = mkN "mélange" "mélanges" ;
-lin mange_N = mkN "mange" "manges" ;
-lin blancmange_N = mkN "blancmange" "blancmanges" ; -- compound mange_N ;
-lin range_N = mkN "range" "ranges" ;
-lin 'rifle-range_N' = mkN "rifle-range" "rifle-ranges" ; -- compound range_N ;
-lin 'shooting-range_N' = mkN "shooting-range" "shooting-ranges" ; -- compound range_N ;
-lin 'rocket-range_N' = mkN "rocket-range" "rocket-ranges" ; -- compound range_N ;
-lin grange_N = mkN "grange" "granges" ; -- notcompound range_N ;
-lin omnirange_N = mkN "omnirange" "omniranges" ; -- compound range_N ;
-lin orange_N = mkN "orange" "oranges" ; -- notcompound range_N ;
-lin citrange_N = mkN "citrange" "citranges" ; -- compound range_N ;
-lin challenge_N = mkN "challenge" "challenges" ;
-lin tenge_N = mkN "tenge" "tenges" ;
-lin revenge_N = mkN "revenge" "revenges" ;
-lin lozenge_N = mkN "lozenge" "lozenges" ;
-lin binge_N = mkN "binge" "binges" ;
-lin hinge_N = mkN "hinge" "hinges" ;
-lin minge_N = mkN "minge" "minges" ;
-lin fringe_N = mkN "fringe" "fringes" ;
-lin syringe_N = mkN "syringe" "syringes" ;
-lin singe_N = mkN "singe" "singes" ;
-lin tinge_N = mkN "tinge" "tinges" ;
-lin twinge_N = mkN "twinge" "twinges" ;
-lin prolonge_N = mkN "prolonge" "prolonges" ;
-lin sponge_N = mkN "sponge" "sponges" ;
-lin lunge_N = mkN "lunge" "lunges" ;
-lin muskellunge_N = mkN "muskellunge" "muskellunges" ; -- compound lunge_N ;
-lin plunge_N = mkN "plunge" "plunges" ; -- notcompound lunge_N ;
-lin lounge_N = mkN "lounge" "lounges" ;
-lin 'sun-lounge_N' = mkN "sun-lounge" "sun-lounges" ; -- compound lounge_N ;
-lin gamboge_N = mkN "gamboge" "gamboges" ;
-lin doge_N = mkN "doge" "doges" ;
-lin anagoge_N = mkN "anagoge" "anagoges" ;
-lin loge_N = mkN "loge" "loges" ;
-lin scrooge_N = mkN "scrooge" "scrooges" ;
-lin stooge_N = mkN "stooge" "stooges" ;
-lin barge_N = mkN "barge" "barges" ;
-lin charge_N = mkN "charge" "charges" ;
-lin 'depth-charge_N' = mkN "depth-charge" "depth-charges" ; -- compound charge_N ;
-lin undercharge_N = mkN "undercharge" "undercharges" ; -- compound charge_N ;
-lin countercharge_N = mkN "countercharge" "countercharges" ; -- compound charge_N ;
-lin overcharge_N = mkN "overcharge" "overcharges" ; -- compound charge_N ;
-lin surcharge_N = mkN "surcharge" "surcharges" ; -- compound charge_N ;
-lin discharge_N = mkN "discharge" "discharges" ; -- compound charge_N ;
-lin large_N = mkN "large" "larges" ;
-lin marge_N = mkN "marge" "marges" ;
-lin concierge_N = mkN "concierge" "concierges" ;
-lin serge_N = mkN "serge" "serges" ;
-lin verge_N = mkN "verge" "verges" ;
-lin dirge_N = mkN "dirge" "dirges" ;
-lin forge_N = mkN "forge" "forges" ;
-lin gorge_N = mkN "gorge" "gorges" ;
-lin urge_N = mkN "urge" "urges" ;
-lin demiurge_N = mkN "demiurge" "demiurges" ; -- compound urge_N ;
-lin splurge_N = mkN "splurge" "splurges" ; -- notcompound urge_N ;
-lin scourge_N = mkN "scourge" "scourges" ; -- compound urge_N ;
-lin purge_N = mkN "purge" "purges" ; -- notcompound urge_N ;
-lin spurge_N = mkN "spurge" "spurges" ; -- notcompound urge_N ;
-lin surge_N = mkN "surge" "surges" ; -- notcompound urge_N ;
-lin upsurge_N = mkN "upsurge" "upsurges" ; -- compound urge_N ;
-lin gauge_N = mkN "gauge" "gauges" ;
-lin 'wind-gauge_N' = mkN "wind-gauge" "wind-gauges" ; -- compound gauge_N ;
-lin 'pressure-gauge_N' = mkN "pressure-gauge" "pressure-gauges" ; -- compound gauge_N ;
-lin 'rain-gauge_N' = mkN "rain-gauge" "rain-gauges" ; -- compound gauge_N ;
-lin refuge_N = mkN "refuge" "refuges" ;
-lin vermifuge_N = mkN "vermifuge" "vermifuges" ;
-lin centrifuge_N = mkN "centrifuge" "centrifuges" ;
-lin ultracentrifuge_N = mkN "ultracentrifuge" "ultracentrifuges" ; -- compound centrifuge_N ;
-lin lactifuge_N = mkN "lactifuge" "lactifuges" ;
-lin insectifuge_N = mkN "insectifuge" "insectifuges" ;
-lin subterfuge_N = mkN "subterfuge" "subterfuges" ;
-lin luge_N = mkN "luge" "luges" ;
-lin deluge_N = mkN "deluge" "deluges" ; -- compound luge_N ;
-lin gouge_N = mkN "gouge" "gouges" ;
-lin rouge_N = mkN "rouge" "rouges" ;
-lin vouge_N = mkN "vouge" "vouges" ;
-lin cortège_N = mkN "cortège" "cortèges" ;
-lin ache_N = mkN "ache" "aches" ;
-lin 'face-ache_N' = mkN "face-ache" "face-aches" ; -- compound ache_N ;
-lin 'stomach-ache_N' = mkN "stomach-ache" "stomach-aches" ; -- compound ache_N ;
-lin cache_N = mkN "cache" "caches" ; -- notcompound ache_N ;
-lin headache_N = mkN "headache" "headaches" ; -- compound ache_N ;
-lin 'sick-headache_N' = mkN "sick-headache" "sick-headaches" ; -- compound ache_N ;
-lin stomachache_N = mkN "stomachache" "stomachaches" ; -- compound ache_N ;
-lin toothache_N = mkN "toothache" "toothaches" ; -- compound ache_N ;
-lin backache_N = mkN "backache" "backaches" ; -- compound ache_N ;
-lin panache_N = mkN "panache" "panaches" ; -- compound ache_N ;
-lin apache_N = mkN "apache" "apaches" ; -- compound ache_N ;
-lin earache_N = mkN "earache" "earaches" ; -- compound ache_N ;
-lin huarache_N = mkN "huarache" "huaraches" ; -- compound ache_N ;
-lin huisache_N = mkN "huisache" "huisaches" ; -- compound ache_N ;
-lin heartache_N = mkN "heartache" "heartaches" ; -- compound ache_N ;
-lin mustache_N = mkN "mustache" "mustaches" ; -- compound ache_N ;
-lin moustache_N = mkN "moustache" "moustaches" ; -- compound ache_N ;
-lin soutache_N = mkN "soutache" "soutaches" ; -- compound ache_N ;
-lin gouache_N = mkN "gouache" "gouaches" ; -- compound ache_N ;
-lin bellyache_N = mkN "bellyache" "bellyaches" ; -- compound ache_N ;
-lin obeche_N = mkN "obeche" "obeches" ;
-lin seiche_N = mkN "seiche" "seiches" ;
-lin microfiche_N = mkN "microfiche" "microfiches" ;
-lin caliche_N = mkN "caliche" "caliches" ;
-lin niche_N = mkN "niche" "niches" ;
-lin pastiche_N = mkN "pastiche" "pastiches" ;
-lin quiche_N = mkN "quiche" "quiches" ;
-lin avalanche_N = mkN "avalanche" "avalanches" ;
-lin 'carte blanche_N' = mkN "carte blanche" "cartes blanches" ;
-lin catananche_N = mkN "catananche" "catananches" ;
-lin tranche_N = mkN "tranche" "tranches" ;
-lin pinche_N = mkN "pinche" "pinches" ;
-lin synecdoche_N = mkN "synecdoche" "synecdoches" ;
-lin brioche_N = mkN "brioche" "brioches" ;
-lin cloche_N = mkN "cloche" "cloches" ;
-lin guilloche_N = mkN "guilloche" "guilloches" ;
-lin caroche_N = mkN "caroche" "caroches" ;
-lin thelarche_N = mkN "thelarche" "thelarches" ;
-lin démarche_N = mkN "démarche" "démarches" ;
-lin menarche_N = mkN "menarche" "menarches" ;
-lin adrenarche_N = mkN "adrenarche" "adrenarches" ;
-lin schottische_N = mkN "schottische" "schottisches" ;
-lin penuche_N = mkN "penuche" "penuches" ;
-lin douche_N = mkN "douche" "douches" ;
-lin barouche_N = mkN "barouche" "barouches" ;
-lin cartouche_N = mkN "cartouche" "cartouches" ;
-lin psyche_N = mkN "psyche" "psyches" ;
-lin crèche_N = mkN "crèche" "crèches" ;
-lin sadhe_N = mkN "sadhe" "sadhes" ;
-lin bathyscaphe_N = mkN "bathyscaphe" "bathyscaphes" ;
-lin raphe_N = mkN "raphe" "raphes" ;
-lin strophe_N = mkN "strophe" "strophes" ;
-lin anastrophe_N = mkN "anastrophe" "anastrophes" ; -- compound strophe_N ;
-lin catastrophe_N = mkN "catastrophe" "catastrophes" ; -- compound strophe_N ;
-lin antistrophe_N = mkN "antistrophe" "antistrophes" ; -- compound strophe_N ;
-lin apostrophe_N = mkN "apostrophe" "apostrophes" ; -- compound strophe_N ;
-lin bathe_N = mkN "bathe" "bathes" ;
-lin lathe_N = mkN "lathe" "lathes" ;
-lin spathe_N = mkN "spathe" "spathes" ;
-lin swathe_N = mkN "swathe" "swathes" ;
-lin tithe_N = mkN "tithe" "tithes" ;
-lin withe_N = mkN "withe" "withes" ;
-lin calanthe_N = mkN "calanthe" "calanthes" ;
-lin 'crème de menthe_N' = mkN "crème de menthe" "crème de menthes" ;
-lin absinthe_N = mkN "absinthe" "absinthes" ;
-lin scythe_N = mkN "scythe" "scythes" ;
-lin freebie_N = mkN "freebie" "freebies" ;
-lin bombie_N = mkN "bombie" "bombies" ;
-lin zombie_N = mkN "zombie" "zombies" ;
-lin specie_N = mkN "specie" "species" ;
-lin die_N = mkN "die" "dies" ;
-lin caddie_N = mkN "caddie" "caddies" ; -- compound die_N ;
-lin 'finnan haddie_N' = mkN "finnan haddie" "finnan haddies" ; -- compound die_N ;
-lin laddie_N = mkN "laddie" "laddies" ; -- compound die_N ;
-lin oldie_N = mkN "oldie" "oldies" ; -- compound die_N ;
-lin organdie_N = mkN "organdie" "organdies" ; -- compound die_N ;
-lin indie_N = mkN "indie" "indies" ; -- compound die_N ;
-lin yardie_N = mkN "yardie" "yardies" ; -- compound die_N ;
-lin birdie_N = mkN "birdie" "birdies" ; -- compound die_N ;
-lin weirdie_N = mkN "weirdie" "weirdies" ; -- compound die_N ;
-lin geordie_N = mkN "geordie" "geordies" ; -- compound die_N ;
-lin wedgie_N = mkN "wedgie" "wedgies" ;
-lin budgie_N = mkN "budgie" "budgies" ;
-lin doggie_N = mkN "doggie" "doggies" ;
-lin bogie_N = mkN "bogie" "bogies" ;
-lin dogie_N = mkN "dogie" "dogies" ;
-lin boogie_N = mkN "boogie" "boogies" ;
-lin 'boogie-woogie_N' = mkN "boogie-woogie" "boogie-woogies" ;
-lin techie_N = mkN "techie" "techies" ;
-lin toughie_N = mkN "toughie" "toughies" ;
-lin mashie_N = mkN "mashie" "mashies" ;
-lin smoothie_N = mkN "smoothie" "smoothies" ;
-lin quickie_N = mkN "quickie" "quickies" ;
-lin talkie_N = mkN "talkie" "talkies" ;
-lin 'walkie-talkie_N' = mkN "walkie-talkie" "walkie-talkies" ; -- compound talkie_N ;
-lin junkie_N = mkN "junkie" "junkies" ;
-lin punkie_N = mkN "punkie" "punkies" ;
-lin bookie_N = mkN "bookie" "bookies" ;
-lin cookie_N = mkN "cookie" "cookies" ;
-lin rookie_N = mkN "rookie" "rookies" ;
-lin darkie_N = mkN "darkie" "darkies" ;
-lin lie_N = mkN "lie" "lies" ;
-lin mealie_N = mkN "mealie" "mealies" ; -- compound lie_N ;
-lin goalie_N = mkN "goalie" "goalies" ; -- compound lie_N ;
-lin capercaillie_N = mkN "capercaillie" "capercaillies" ; -- compound lie_N ;
-lin gillie_N = mkN "gillie" "gillies" ; -- compound lie_N ;
-lin ghillie_N = mkN "ghillie" "ghillies" ; -- compound lie_N ;
-lin collie_N = mkN "collie" "collies" ; -- compound lie_N ;
-lin mollie_N = mkN "mollie" "mollies" ; -- compound lie_N ;
-lin coolie_N = mkN "coolie" "coolies" ; -- compound lie_N ;
-lin kylie_N = mkN "kylie" "kylies" ; -- compound lie_N ;
-lin ramie_N = mkN "ramie" "ramies" ;
-lin bonhomie_N = mkN "bonhomie" "bonhomies" ;
-lin anomie_N = mkN "anomie" "anomies" ;
-lin stymie_N = mkN "stymie" "stymies" ;
-lin beanie_N = mkN "beanie" "beanies" ;
-lin meanie_N = mkN "meanie" "meanies" ;
-lin genie_N = mkN "genie" "genies" ;
-lin dominie_N = mkN "dominie" "dominies" ;
-lin grannie_N = mkN "grannie" "grannies" ;
-lin brownie_N = mkN "brownie" "brownies" ;
-lin townie_N = mkN "townie" "townies" ;
-lin pie_N = mkN "pie" "pies" ;
-lin 'mince-pie_N' = mkN "mince-pie" "mince-pies" ; -- compound pie_N ;
-lin scrapie_N = mkN "scrapie" "scrapies" ; -- compound pie_N ;
-lin magpie_N = mkN "magpie" "magpies" ; -- compound pie_N ;
-lin porkpie_N = mkN "porkpie" "porkpies" ; -- compound pie_N ;
-lin kelpie_N = mkN "kelpie" "kelpies" ; -- compound pie_N ;
-lin crappie_N = mkN "crappie" "crappies" ; -- compound pie_N ;
-lin hippie_N = mkN "hippie" "hippies" ; -- compound pie_N ;
-lin koppie_N = mkN "koppie" "koppies" ; -- compound pie_N ;
-lin yuppie_N = mkN "yuppie" "yuppies" ; -- compound pie_N ;
-lin sharpie_N = mkN "sharpie" "sharpies" ; -- compound pie_N ;
-lin potpie_N = mkN "potpie" "potpies" ; -- compound pie_N ;
-lin groupie_N = mkN "groupie" "groupies" ; -- compound pie_N ;
-lin dearie_N = mkN "dearie" "dearies" ;
-lin aerie_N = mkN "aerie" "aeries" ;
-lin faerie_N = mkN "faerie" "faeries" ; -- notcompound aerie_N ;
-lin camaraderie_N = mkN "camaraderie" "camaraderies" ;
-lin menagerie_N = mkN "menagerie" "menageries" ;
-lin lingerie_N = mkN "lingerie" "lingeries" ;
-lin gaucherie_N = mkN "gaucherie" "gaucheries" ;
-lin gendarmerie_N = mkN "gendarmerie" "gendarmeries" ;
-lin chinoiserie_N = mkN "chinoiserie" "chinoiseries" ;
-lin brasserie_N = mkN "brasserie" "brasseries" ;
-lin patisserie_N = mkN "patisserie" "patisseries" ;
-lin rotisserie_N = mkN "rotisserie" "rotisseries" ;
-lin causerie_N = mkN "causerie" "causeries" ;
-lin coterie_N = mkN "coterie" "coteries" ;
-lin charcuterie_N = mkN "charcuterie" "charcuteries" ;
-lin reverie_N = mkN "reverie" "reveries" ;
-lin prairie_N = mkN "prairie" "prairies" ;
-lin calorie_N = mkN "calorie" "calories" ;
-lin knobkerrie_N = mkN "knobkerrie" "knobkerries" ;
-lin corrie_N = mkN "corrie" "corries" ;
-lin curie_N = mkN "curie" "curies" ;
-lin millicurie_N = mkN "millicurie" "millicuries" ; -- compound curie_N ;
-lin cowrie_N = mkN "cowrie" "cowries" ;
-lin eyrie_N = mkN "eyrie" "eyries" ;
-lin booboisie_N = mkN "booboisie" "booboisies" ;
-lin bourgeoisie_N = mkN "bourgeoisie" "bourgeoisies" ;
-lin falsie_N = mkN "falsie" "falsies" ;
-lin lassie_N = mkN "lassie" "lassies" ;
-lin brassie_N = mkN "brassie" "brassies" ;
-lin aussie_N = mkN "aussie" "aussies" ;
-lin jalousie_N = mkN "jalousie" "jalousies" ;
-lin tie_N = mkN "tie" "ties" ;
-lin 'cup-tie_N' = mkN "cup-tie" "cup-ties" ; -- compound tie_N ;
-lin sweetie_N = mkN "sweetie" "sweeties" ; -- compound tie_N ;
-lin softie_N = mkN "softie" "softies" ; -- compound tie_N ;
-lin nightie_N = mkN "nightie" "nighties" ; -- compound tie_N ;
-lin necktie_N = mkN "necktie" "neckties" ; -- compound tie_N ;
-lin pantie_N = mkN "pantie" "panties" ; -- compound tie_N ;
-lin coontie_N = mkN "coontie" "coonties" ; -- compound tie_N ;
-lin auntie_N = mkN "auntie" "aunties" ; -- compound tie_N ;
-lin mountie_N = mkN "mountie" "mounties" ; -- compound tie_N ;
-lin sortie_N = mkN "sortie" "sorties" ; -- compound tie_N ;
-lin 'eau-de-vie_N' = mkN "eau-de-vie" "eau-de-vies" ;
-lin movie_N = mkN "movie" "movies" ;
-lin dixie_N = mkN "dixie" "dixies" ;
-lin pixie_N = mkN "pixie" "pixies" ;
-lin pyxie_N = mkN "pyxie" "pyxies" ;
-lin floozie_N = mkN "floozie" "floozies" ;
-lin kopje_N = mkN "kopje" "kopjes" ;
-lin hardbake_N = mkN "hardbake" "hardbakes" ;
-lin clambake_N = mkN "clambake" "clambakes" ;
-lin cake_N = mkN "cake" "cakes" ;
-lin 'sponge-cake_N' = mkN "sponge-cake" "sponge-cakes" ; -- compound cake_N ;
-lin 'cattle-cake_N' = mkN "cattle-cake" "cattle-cakes" ; -- compound cake_N ;
-lin 'wedding-cake_N' = mkN "wedding-cake" "wedding-cakes" ; -- compound cake_N ;
-lin 'rock-cake_N' = mkN "rock-cake" "rock-cakes" ; -- compound cake_N ;
-lin 'oil-cake_N' = mkN "oil-cake" "oil-cakes" ; -- compound cake_N ;
-lin 'cotton-cake_N' = mkN "cotton-cake" "cotton-cakes" ; -- compound cake_N ;
-lin 'layer-cake_N' = mkN "layer-cake" "layer-cakes" ; -- compound cake_N ;
-lin teacake_N = mkN "teacake" "teacakes" ; -- compound cake_N ;
-lin seedcake_N = mkN "seedcake" "seedcakes" ; -- compound cake_N ;
-lin friedcake_N = mkN "friedcake" "friedcakes" ; -- compound cake_N ;
-lin bridecake_N = mkN "bridecake" "bridecakes" ; -- compound cake_N ;
-lin coffeecake_N = mkN "coffeecake" "coffeecakes" ; -- compound cake_N ;
-lin hoecake_N = mkN "hoecake" "hoecakes" ; -- compound cake_N ;
-lin cheesecake_N = mkN "cheesecake" "cheesecakes" ; -- compound cake_N ;
-lin beefcake_N = mkN "beefcake" "beefcakes" ; -- compound cake_N ;
-lin ashcake_N = mkN "ashcake" "ashcakes" ; -- compound cake_N ;
-lin fishcake_N = mkN "fishcake" "fishcakes" ; -- compound cake_N ;
-lin pancake_N = mkN "pancake" "pancakes" ; -- compound cake_N ;
-lin cupcake_N = mkN "cupcake" "cupcakes" ; -- compound cake_N ;
-lin oatcake_N = mkN "oatcake" "oatcakes" ; -- compound cake_N ;
-lin fruitcake_N = mkN "fruitcake" "fruitcakes" ; -- compound cake_N ;
-lin shortcake_N = mkN "shortcake" "shortcakes" ; -- compound cake_N ;
-lin yellowcake_N = mkN "yellowcake" "yellowcakes" ; -- compound cake_N ;
-lin johnnycake_N = mkN "johnnycake" "johnnycakes" ; -- compound cake_N ;
-lin fake_N = mkN "fake" "fakes" ;
-lin shake_N = mkN "shake" "shakes" ;
-lin 'milk-shake_N' = mkN "milk-shake" "milk-shakes" ; -- compound shake_N ;
-lin headshake_N = mkN "headshake" "headshakes" ; -- compound shake_N ;
-lin handshake_N = mkN "handshake" "handshakes" ; -- compound shake_N ;
-lin eggshake_N = mkN "eggshake" "eggshakes" ; -- compound shake_N ;
-lin milkshake_N = mkN "milkshake" "milkshakes" ; -- compound shake_N ;
-lin lake_N = mkN "lake" "lakes" ;
-lin flake_N = mkN "flake" "flakes" ; -- notcompound lake_N ;
-lin cornflake_N = mkN "cornflake" "cornflakes" ; -- compound lake_N ;
-lin wheatflake_N = mkN "wheatflake" "wheatflakes" ; -- compound lake_N ;
-lin snowflake_N = mkN "snowflake" "snowflakes" ; -- compound lake_N ;
-lin make_N = mkN "make" "makes" ;
-lin remake_N = mkN "remake" "remakes" ; -- compound make_N ;
-lin snake_N = mkN "snake" "snakes" ;
-lin 'sea-snake_N' = mkN "sea-snake" "sea-snakes" ; -- compound snake_N ;
-lin rattlesnake_N = mkN "rattlesnake" "rattlesnakes" ; -- compound snake_N ;
-lin blacksnake_N = mkN "blacksnake" "blacksnakes" ; -- compound snake_N ;
-lin rake_N = mkN "rake" "rakes" ;
-lin brake_N = mkN "brake" "brakes" ; -- notcompound rake_N ;
-lin 'shooting-brake_N' = mkN "shooting-brake" "shooting-brakes" ; -- compound rake_N ;
-lin handbrake_N = mkN "handbrake" "handbrakes" ; -- compound rake_N ;
-lin canebrake_N = mkN "canebrake" "canebrakes" ; -- compound rake_N ;
-lin airbrake_N = mkN "airbrake" "airbrakes" ; -- compound rake_N ;
-lin crake_N = mkN "crake" "crakes" ; -- notcompound rake_N ;
-lin corncrake_N = mkN "corncrake" "corncrakes" ; -- compound rake_N ;
-lin drake_N = mkN "drake" "drakes" ; -- notcompound rake_N ;
-lin sheldrake_N = mkN "sheldrake" "sheldrakes" ; -- compound rake_N ;
-lin mandrake_N = mkN "mandrake" "mandrakes" ; -- compound rake_N ;
-lin sake_N = mkN "sake" "sakes" ;
-lin namesake_N = mkN "namesake" "namesakes" ; -- compound sake_N ;
-lin keepsake_N = mkN "keepsake" "keepsakes" ; -- compound sake_N ;
-lin take_N = mkN "take" "takes" ;
-lin retake_N = mkN "retake" "retakes" ; -- compound take_N ;
-lin shiitake_N = mkN "shiitake" "shiitakes" ; -- compound take_N ;
-lin stocktake_N = mkN "stocktake" "stocktakes" ; -- compound take_N ;
-lin intake_N = mkN "intake" "intakes" ; -- compound take_N ;
-lin uptake_N = mkN "uptake" "uptakes" ; -- compound take_N ;
-lin reuptake_N = mkN "reuptake" "reuptakes" ; -- compound take_N ;
-lin stake_N = mkN "stake" "stakes" ; -- notcompound take_N ;
-lin grubstake_N = mkN "grubstake" "grubstakes" ; -- compound take_N ;
-lin mistake_N = mkN "mistake" "mistakes" ; -- compound take_N ;
-lin outtake_N = mkN "outtake" "outtakes" ; -- compound take_N ;
-lin quake_N = mkN "quake" "quakes" ;
-lin seaquake_N = mkN "seaquake" "seaquakes" ; -- compound quake_N ;
-lin earthquake_N = mkN "earthquake" "earthquakes" ; -- compound quake_N ;
-lin wake_N = mkN "wake" "wakes" ;
-lin kittiwake_N = mkN "kittiwake" "kittiwakes" ; -- compound wake_N ;
-lin peke_N = mkN "peke" "pekes" ;
-lin kishke_N = mkN "kishke" "kishkes" ;
-lin bike_N = mkN "bike" "bikes" ;
-lin 'push-bike_N' = mkN "push-bike" "push-bikes" ; -- compound bike_N ;
-lin minibike_N = mkN "minibike" "minibikes" ; -- compound bike_N ;
-lin motorbike_N = mkN "motorbike" "motorbikes" ; -- compound bike_N ;
-lin dike_N = mkN "dike" "dikes" ;
-lin klondike_N = mkN "klondike" "klondikes" ; -- compound dike_N ;
-lin hike_N = mkN "hike" "hikes" ;
-lin kike_N = mkN "kike" "kikes" ;
-lin like_N = mkN "like" "likes" ;
-lin dislike_N = mkN "dislike" "dislikes" ; -- compound like_N ;
-lin mike_N = mkN "mike" "mikes" ;
-lin turnpike_N = mkN "turnpike" "turnpikes" ;
-lin spike_N = mkN "spike" "spikes" ;
-lin handspike_N = mkN "handspike" "handspikes" ; -- compound spike_N ;
-lin marlinespike_N = mkN "marlinespike" "marlinespikes" ; -- compound spike_N ;
-lin shrike_N = mkN "shrike" "shrikes" ;
-lin strike_N = mkN "strike" "strikes" ;
-lin tike_N = mkN "tike" "tikes" ;
-lin yarmulke_N = mkN "yarmulke" "yarmulkes" ;
-lin karaoke_N = mkN "karaoke" "karaokes" ;
-lin coke_N = mkN "coke" "cokes" ;
-lin choke_N = mkN "choke" "chokes" ;
-lin artichoke_N = mkN "artichoke" "artichokes" ; -- compound choke_N ;
-lin joke_N = mkN "joke" "jokes" ;
-lin bloke_N = mkN "bloke" "blokes" ;
-lin moke_N = mkN "moke" "mokes" ;
-lin smoke_N = mkN "smoke" "smokes" ; -- notcompound moke_N ;
-lin poke_N = mkN "poke" "pokes" ;
-lin spoke_N = mkN "spoke" "spokes" ; -- notcompound poke_N ;
-lin stroke_N = mkN "stroke" "strokes" ;
-lin 'side-stroke_N' = mkN "side-stroke" "side-strokes" ; -- compound stroke_N ;
-lin sidestroke_N = mkN "sidestroke" "sidestrokes" ; -- compound stroke_N ;
-lin backstroke_N = mkN "backstroke" "backstrokes" ; -- compound stroke_N ;
-lin instroke_N = mkN "instroke" "instrokes" ; -- compound stroke_N ;
-lin sunstroke_N = mkN "sunstroke" "sunstrokes" ; -- compound stroke_N ;
-lin downstroke_N = mkN "downstroke" "downstrokes" ; -- compound stroke_N ;
-lin upstroke_N = mkN "upstroke" "upstrokes" ; -- compound stroke_N ;
-lin masterstroke_N = mkN "masterstroke" "masterstrokes" ; -- compound stroke_N ;
-lin heatstroke_N = mkN "heatstroke" "heatstrokes" ; -- compound stroke_N ;
-lin breaststroke_N = mkN "breaststroke" "breaststrokes" ; -- compound stroke_N ;
-lin outstroke_N = mkN "outstroke" "outstrokes" ; -- compound stroke_N ;
-lin keystroke_N = mkN "keystroke" "keystrokes" ; -- compound stroke_N ;
-lin toke_N = mkN "toke" "tokes" ;
-lin revoke_N = mkN "revoke" "revokes" ;
-lin yoke_N = mkN "yoke" "yokes" ;
-lin schipperke_N = mkN "schipperke" "schipperkes" ;
-lin uke_N = mkN "uke" "ukes" ;
-lin rebuke_N = mkN "rebuke" "rebukes" ; -- compound uke_N ;
-lin duke_N = mkN "duke" "dukes" ; -- notcompound uke_N ;
-lin archduke_N = mkN "archduke" "archdukes" ; -- compound uke_N ;
-lin juke_N = mkN "juke" "jukes" ; -- notcompound uke_N ;
-lin fluke_N = mkN "fluke" "flukes" ; -- notcompound uke_N ;
-lin puke_N = mkN "puke" "pukes" ; -- notcompound uke_N ;
-lin peruke_N = mkN "peruke" "perukes" ; -- compound uke_N ;
-lin dyke_N = mkN "dyke" "dykes" ;
-lin tyke_N = mkN "tyke" "tykes" ;
-lin ale_N = mkN "ale" "ales" ;
-lin bale_N = mkN "bale" "bales" ; -- notcompound ale_N ;
-lin timbale_N = mkN "timbale" "timbales" ; -- compound ale_N ;
-lin locale_N = mkN "locale" "locales" ; -- compound ale_N ;
-lin percale_N = mkN "percale" "percales" ; -- compound ale_N ;
-lin scale_N = mkN "scale" "scales" ; -- notcompound ale_N ;
-lin dale_N = mkN "dale" "dales" ; -- notcompound ale_N ;
-lin airedale_N = mkN "airedale" "airedales" ; -- compound ale_N ;
-lin mastoidale_N = mkN "mastoidale" "mastoidales" ; -- compound ale_N ;
-lin chippendale_N = mkN "chippendale" "chippendales" ; -- compound ale_N ;
-lin gale_N = mkN "gale" "gales" ; -- notcompound ale_N ;
-lin farthingale_N = mkN "farthingale" "farthingales" ; -- compound ale_N ;
-lin galingale_N = mkN "galingale" "galingales" ; -- compound ale_N ;
-lin nightingale_N = mkN "nightingale" "nightingales" ; -- compound ale_N ;
-lin martingale_N = mkN "martingale" "martingales" ; -- compound ale_N ;
-lin jugale_N = mkN "jugale" "jugales" ; -- compound ale_N ;
-lin shale_N = mkN "shale" "shales" ; -- notcompound ale_N ;
-lin whale_N = mkN "whale" "whales" ; -- notcompound ale_N ;
-lin 'sperm-whale_N' = mkN "sperm-whale" "sperm-whales" ; -- compound ale_N ;
-lin kale_N = mkN "kale" "kales" ; -- notcompound ale_N ;
-lin seakale_N = mkN "seakale" "seakales" ; -- compound ale_N ;
-lin male_N = mkN "male" "males" ; -- notcompound ale_N ;
-lin tamale_N = mkN "tamale" "tamales" ; -- compound ale_N ;
-lin female_N = mkN "female" "females" ; -- compound ale_N ;
-lin finale_N = mkN "finale" "finales" ; -- compound ale_N ;
-lin internationale_N = mkN "internationale" "internationales" ; -- compound ale_N ;
-lin rationale_N = mkN "rationale" "rationales" ; -- compound ale_N ;
-lin pale_N = mkN "pale" "pales" ; -- notcompound ale_N ;
-lin chorale_N = mkN "chorale" "chorales" ; -- compound ale_N ;
-lin morale_N = mkN "morale" "morales" ; -- compound ale_N ;
-lin pastorale_N = mkN "pastorale" "pastorales" ; -- compound ale_N ;
-lin sale_N = mkN "sale" "sales" ; -- notcompound ale_N ;
-lin 'jumble-sale_N' = mkN "jumble-sale" "jumble-sales" ; -- compound ale_N ;
-lin wholesale_N = mkN "wholesale" "wholesales" ; -- compound ale_N ;
-lin resale_N = mkN "resale" "resales" ; -- compound ale_N ;
-lin tale_N = mkN "tale" "tales" ; -- notcompound ale_N ;
-lin tattletale_N = mkN "tattletale" "tattletales" ; -- compound ale_N ;
-lin orbitale_N = mkN "orbitale" "orbitales" ; -- compound ale_N ;
-lin folktale_N = mkN "folktale" "folktales" ; -- compound ale_N ;
-lin telltale_N = mkN "telltale" "telltales" ; -- compound ale_N ;
-lin fairytale_N = mkN "fairytale" "fairytales" ; -- compound ale_N ;
-lin vale_N = mkN "vale" "vales" ; -- notcompound ale_N ;
-lin wale_N = mkN "wale" "wales" ; -- notcompound ale_N ;
-lin gunwale_N = mkN "gunwale" "gunwales" ; -- compound ale_N ;
-lin swale_N = mkN "swale" "swales" ; -- notcompound ale_N ;
-lin probable_N = mkN "probable" "probables" ;
-lin cable_N = mkN "cable" "cables" ;
-lin vocable_N = mkN "vocable" "vocables" ; -- compound cable_N ;
-lin fable_N = mkN "fable" "fables" ;
-lin gable_N = mkN "gable" "gables" ;
-lin untouchable_N = mkN "untouchable" "untouchables" ;
-lin perishable_N = mkN "perishable" "perishables" ;
-lin sociable_N = mkN "sociable" "sociables" ;
-lin variable_N = mkN "variable" "variables" ;
-lin breakable_N = mkN "breakable" "breakables" ;
-lin syllable_N = mkN "syllable" "syllables" ;
-lin decasyllable_N = mkN "decasyllable" "decasyllables" ; -- compound syllable_N ;
-lin disyllable_N = mkN "disyllable" "disyllables" ; -- compound syllable_N ;
-lin trisyllable_N = mkN "trisyllable" "trisyllables" ; -- compound syllable_N ;
-lin monosyllable_N = mkN "monosyllable" "monosyllables" ; -- compound syllable_N ;
-lin octosyllable_N = mkN "octosyllable" "octosyllables" ; -- compound syllable_N ;
-lin dissyllable_N = mkN "dissyllable" "dissyllables" ; -- compound syllable_N ;
-lin polysyllable_N = mkN "polysyllable" "polysyllables" ; -- compound syllable_N ;
-lin parable_N = mkN "parable" "parables" ;
-lin imponderable_N = mkN "imponderable" "imponderables" ;
-lin deliverable_N = mkN "deliverable" "deliverables" ;
-lin undesirable_N = mkN "undesirable" "undesirables" ;
-lin incurable_N = mkN "incurable" "incurables" ;
-lin durable_N = mkN "durable" "durables" ;
-lin sable_N = mkN "sable" "sables" ;
-lin disposable_N = mkN "disposable" "disposables" ; -- compound sable_N ;
-lin table_N = mkN "table" "tables" ;
-lin 'tea-table_N' = mkN "tea-table" "tea-tables" ; -- compound table_N ;
-lin 'billiard-table_N' = mkN "billiard-table" "billiard-tables" ; -- compound table_N ;
-lin 'trestle-table_N' = mkN "trestle-table" "trestle-tables" ; -- compound table_N ;
-lin 'gaming-table_N' = mkN "gaming-table" "gaming-tables" ; -- compound table_N ;
-lin 'dining-table_N' = mkN "dining-table" "dining-tables" ; -- compound table_N ;
-lin 'dressing-table_N' = mkN "dressing-table" "dressing-tables" ; -- compound table_N ;
-lin 'operating-table_N' = mkN "operating-table" "operating-tables" ; -- compound table_N ;
-lin 'pin-table_N' = mkN "pin-table" "pin-tables" ; -- compound table_N ;
-lin 'toilet-table_N' = mkN "toilet-table" "toilet-tables" ; -- compound table_N ;
-lin eatable_N = mkN "eatable" "eatables" ; -- compound table_N ;
-lin vegetable_N = mkN "vegetable" "vegetables" ; -- compound table_N ;
-lin timetable_N = mkN "timetable" "timetables" ; -- compound table_N ;
-lin inevitable_N = mkN "inevitable" "inevitables" ; -- compound table_N ;
-lin worktable_N = mkN "worktable" "worktables" ; -- compound table_N ;
-lin turntable_N = mkN "turntable" "turntables" ; -- compound table_N ;
-lin notable_N = mkN "notable" "notables" ; -- compound table_N ;
-lin watertable_N = mkN "watertable" "watertables" ; -- compound table_N ;
-lin portable_N = mkN "portable" "portables" ; -- compound table_N ;
-lin stable_N = mkN "stable" "stables" ; -- notcompound table_N ;
-lin constable_N = mkN "constable" "constables" ; -- compound table_N ;
-lin valuable_N = mkN "valuable" "valuables" ;
-lin receivable_N = mkN "receivable" "receivables" ;
-lin payable_N = mkN "payable" "payables" ;
-lin employable_N = mkN "employable" "employables" ;
-lin babble_N = mkN "babble" "babbles" ;
-lin ecobabble_N = mkN "ecobabble" "ecobabbles" ; -- compound babble_N ;
-lin psychobabble_N = mkN "psychobabble" "psychobabbles" ; -- compound babble_N ;
-lin technobabble_N = mkN "technobabble" "technobabbles" ; -- compound babble_N ;
-lin gabble_N = mkN "gabble" "gabbles" ;
-lin rabble_N = mkN "rabble" "rabbles" ;
-lin scrabble_N = mkN "scrabble" "scrabbles" ; -- notcompound rabble_N ;
-lin squabble_N = mkN "squabble" "squabbles" ;
-lin pebble_N = mkN "pebble" "pebbles" ;
-lin dibble_N = mkN "dibble" "dibbles" ;
-lin kibble_N = mkN "kibble" "kibbles" ;
-lin nibble_N = mkN "nibble" "nibbles" ;
-lin scribble_N = mkN "scribble" "scribbles" ;
-lin dribble_N = mkN "dribble" "dribbles" ;
-lin quibble_N = mkN "quibble" "quibbles" ;
-lin bobble_N = mkN "bobble" "bobbles" ;
-lin cobble_N = mkN "cobble" "cobbles" ;
-lin gobble_N = mkN "gobble" "gobbles" ;
-lin hobble_N = mkN "hobble" "hobbles" ;
-lin knobble_N = mkN "knobble" "knobbles" ;
-lin wobble_N = mkN "wobble" "wobbles" ;
-lin bubble_N = mkN "bubble" "bubbles" ;
-lin 'hubble-bubble_N' = mkN "hubble-bubble" "hubble-bubbles" ; -- compound bubble_N ;
-lin 'soap-bubble_N' = mkN "soap-bubble" "soap-bubbles" ; -- compound bubble_N ;
-lin rubble_N = mkN "rubble" "rubbles" ;
-lin stubble_N = mkN "stubble" "stubbles" ;
-lin nybble_N = mkN "nybble" "nybbles" ;
-lin treble_N = mkN "treble" "trebles" ;
-lin bible_N = mkN "bible" "bibles" ;
-lin crucible_N = mkN "crucible" "crucibles" ;
-lin edible_N = mkN "edible" "edibles" ;
-lin mandible_N = mkN "mandible" "mandibles" ;
-lin audible_N = mkN "audible" "audibles" ;
-lin dirigible_N = mkN "dirigible" "dirigibles" ;
-lin intangible_N = mkN "intangible" "intangibles" ;
-lin fungible_N = mkN "fungible" "fungibles" ;
-lin foible_N = mkN "foible" "foibles" ;
-lin thurible_N = mkN "thurible" "thuribles" ;
-lin submersible_N = mkN "submersible" "submersibles" ;
-lin reversible_N = mkN "reversible" "reversibles" ;
-lin possible_N = mkN "possible" "possibles" ;
-lin impossible_N = mkN "impossible" "impossibles" ; -- compound possible_N ;
-lin collectible_N = mkN "collectible" "collectibles" ;
-lin deductible_N = mkN "deductible" "deductibles" ;
-lin convertible_N = mkN "convertible" "convertibles" ;
-lin comestible_N = mkN "comestible" "comestibles" ;
-lin combustible_N = mkN "combustible" "combustibles" ;
-lin amble_N = mkN "amble" "ambles" ;
-lin preamble_N = mkN "preamble" "preambles" ; -- compound amble_N ;
-lin gamble_N = mkN "gamble" "gambles" ; -- notcompound amble_N ;
-lin shamble_N = mkN "shamble" "shambles" ; -- notcompound amble_N ;
-lin ramble_N = mkN "ramble" "rambles" ; -- notcompound amble_N ;
-lin bramble_N = mkN "bramble" "brambles" ; -- notcompound amble_N ;
-lin scramble_N = mkN "scramble" "scrambles" ; -- notcompound amble_N ;
-lin tremble_N = mkN "tremble" "trembles" ;
-lin ensemble_N = mkN "ensemble" "ensembles" ;
-lin thimble_N = mkN "thimble" "thimbles" ;
-lin scumble_N = mkN "scumble" "scumbles" ;
-lin fumble_N = mkN "fumble" "fumbles" ;
-lin jumble_N = mkN "jumble" "jumbles" ;
-lin mumble_N = mkN "mumble" "mumbles" ;
-lin rumble_N = mkN "rumble" "rumbles" ;
-lin grumble_N = mkN "grumble" "grumbles" ; -- notcompound rumble_N ;
-lin tumble_N = mkN "tumble" "tumbles" ;
-lin 'rough-and-tumble_N' = mkN "rough-and-tumble" "rough-and-tumbles" ; -- compound tumble_N ;
-lin stumble_N = mkN "stumble" "stumbles" ; -- notcompound tumble_N ;
-lin noble_N = mkN "noble" "nobles" ;
-lin roble_N = mkN "roble" "robles" ;
-lin marble_N = mkN "marble" "marbles" ;
-lin warble_N = mkN "warble" "warbles" ;
-lin bauble_N = mkN "bauble" "baubles" ;
-lin double_N = mkN "double" "doubles" ;
-lin rouble_N = mkN "rouble" "roubles" ;
-lin trouble_N = mkN "trouble" "troubles" ; -- notcompound rouble_N ;
-lin ruble_N = mkN "ruble" "rubles" ;
-lin chasuble_N = mkN "chasuble" "chasubles" ;
-lin treacle_N = mkN "treacle" "treacles" ;
-lin manacle_N = mkN "manacle" "manacles" ;
-lin binnacle_N = mkN "binnacle" "binnacles" ;
-lin pinnacle_N = mkN "pinnacle" "pinnacles" ;
-lin barnacle_N = mkN "barnacle" "barnacles" ;
-lin tabernacle_N = mkN "tabernacle" "tabernacles" ;
-lin miracle_N = mkN "miracle" "miracles" ;
-lin spiracle_N = mkN "spiracle" "spiracles" ;
-lin oracle_N = mkN "oracle" "oracles" ;
-lin coracle_N = mkN "coracle" "coracles" ; -- notcompound oracle_N ;
-lin spectacle_N = mkN "spectacle" "spectacles" ;
-lin pentacle_N = mkN "pentacle" "pentacles" ;
-lin tentacle_N = mkN "tentacle" "tentacles" ;
-lin receptacle_N = mkN "receptacle" "receptacles" ;
-lin obstacle_N = mkN "obstacle" "obstacles" ;
-lin cubicle_N = mkN "cubicle" "cubicles" ;
-lin icicle_N = mkN "icicle" "icicles" ;
-lin fascicle_N = mkN "fascicle" "fascicles" ;
-lin radicle_N = mkN "radicle" "radicles" ;
-lin appendicle_N = mkN "appendicle" "appendicles" ;
-lin chicle_N = mkN "chicle" "chicles" ;
-lin vehicle_N = mkN "vehicle" "vehicles" ;
-lin 'space-vehicle_N' = mkN "space-vehicle" "space-vehicles" ; -- compound vehicle_N ;
-lin silicle_N = mkN "silicle" "silicles" ;
-lin pellicle_N = mkN "pellicle" "pellicles" ;
-lin follicle_N = mkN "follicle" "follicles" ;
-lin panicle_N = mkN "panicle" "panicles" ;
-lin sanicle_N = mkN "sanicle" "sanicles" ;
-lin chronicle_N = mkN "chronicle" "chronicles" ;
-lin funicle_N = mkN "funicle" "funicles" ;
-lin ventricle_N = mkN "ventricle" "ventricles" ;
-lin utricle_N = mkN "utricle" "utricles" ;
-lin auricle_N = mkN "auricle" "auricles" ;
-lin vesicle_N = mkN "vesicle" "vesicles" ;
-lin papulovesicle_N = mkN "papulovesicle" "papulovesicles" ; -- compound vesicle_N ;
-lin versicle_N = mkN "versicle" "versicles" ;
-lin ossicle_N = mkN "ossicle" "ossicles" ;
-lin reticle_N = mkN "reticle" "reticles" ;
-lin canticle_N = mkN "canticle" "canticles" ;
-lin denticle_N = mkN "denticle" "denticles" ;
-lin conventicle_N = mkN "conventicle" "conventicles" ;
-lin article_N = mkN "article" "articles" ;
-lin particle_N = mkN "particle" "particles" ; -- notcompound article_N ;
-lin quasiparticle_N = mkN "quasiparticle" "quasiparticles" ; -- compound article_N ;
-lin antiparticle_N = mkN "antiparticle" "antiparticles" ; -- compound article_N ;
-lin testicle_N = mkN "testicle" "testicles" ;
-lin cuticle_N = mkN "cuticle" "cuticles" ;
-lin clavicle_N = mkN "clavicle" "clavicles" ;
-lin uncle_N = mkN "uncle" "uncles" ;
-lin carbuncle_N = mkN "carbuncle" "carbuncles" ; -- compound uncle_N ;
-lin peduncle_N = mkN "peduncle" "peduncles" ; -- compound uncle_N ;
-lin granduncle_N = mkN "granduncle" "granduncles" ; -- compound uncle_N ;
-lin caruncle_N = mkN "caruncle" "caruncles" ; -- compound uncle_N ;
-lin monocle_N = mkN "monocle" "monocles" ;
-lin socle_N = mkN "socle" "socles" ;
-lin tubercle_N = mkN "tubercle" "tubercles" ;
-lin circle_N = mkN "circle" "circles" ;
-lin semicircle_N = mkN "semicircle" "semicircles" ; -- compound circle_N ;
-lin muscle_N = mkN "muscle" "muscles" ;
-lin corpuscle_N = mkN "corpuscle" "corpuscles" ;
-lin boucle_N = mkN "boucle" "boucles" ;
-lin cycle_N = mkN "cycle" "cycles" ;
-lin megacycle_N = mkN "megacycle" "megacycles" ; -- compound cycle_N ;
-lin bicycle_N = mkN "bicycle" "bicycles" ; -- compound cycle_N ;
-lin unicycle_N = mkN "unicycle" "unicycles" ; -- compound cycle_N ;
-lin epicycle_N = mkN "epicycle" "epicycles" ; -- compound cycle_N ;
-lin tricycle_N = mkN "tricycle" "tricycles" ; -- compound cycle_N ;
-lin kilocycle_N = mkN "kilocycle" "kilocycles" ; -- compound cycle_N ;
-lin motorcycle_N = mkN "motorcycle" "motorcycles" ; -- compound cycle_N ;
-lin débâcle_N = mkN "débâcle" "débâcles" ;
-lin beadle_N = mkN "beadle" "beadles" ;
-lin treadle_N = mkN "treadle" "treadles" ;
-lin ladle_N = mkN "ladle" "ladles" ;
-lin cradle_N = mkN "cradle" "cradles" ;
-lin skedaddle_N = mkN "skedaddle" "skedaddles" ;
-lin paddle_N = mkN "paddle" "paddles" ;
-lin straddle_N = mkN "straddle" "straddles" ;
-lin saddle_N = mkN "saddle" "saddles" ;
-lin 'side-saddle_N' = mkN "side-saddle" "side-saddles" ; -- compound saddle_N ;
-lin 'pack-saddle_N' = mkN "pack-saddle" "pack-saddles" ; -- compound saddle_N ;
-lin sidesaddle_N = mkN "sidesaddle" "sidesaddles" ; -- compound saddle_N ;
-lin packsaddle_N = mkN "packsaddle" "packsaddles" ; -- compound saddle_N ;
-lin staddle_N = mkN "staddle" "staddles" ;
-lin twaddle_N = mkN "twaddle" "twaddles" ;
-lin paradiddle_N = mkN "paradiddle" "paradiddles" ;
-lin taradiddle_N = mkN "taradiddle" "taradiddles" ;
-lin tarradiddle_N = mkN "tarradiddle" "tarradiddles" ;
-lin fiddle_N = mkN "fiddle" "fiddles" ;
-lin middle_N = mkN "middle" "middles" ;
-lin piddle_N = mkN "piddle" "piddles" ;
-lin riddle_N = mkN "riddle" "riddles" ;
-lin griddle_N = mkN "griddle" "griddles" ; -- notcompound riddle_N ;
-lin twiddle_N = mkN "twiddle" "twiddles" ;
-lin mollycoddle_N = mkN "mollycoddle" "mollycoddles" ;
-lin doddle_N = mkN "doddle" "doddles" ;
-lin noddle_N = mkN "noddle" "noddles" ;
-lin cuddle_N = mkN "cuddle" "cuddles" ;
-lin huddle_N = mkN "huddle" "huddles" ;
-lin muddle_N = mkN "muddle" "muddles" ;
-lin puddle_N = mkN "puddle" "puddles" ;
-lin ruddle_N = mkN "ruddle" "ruddles" ;
-lin needle_N = mkN "needle" "needles" ;
-lin 'packing-needle_N' = mkN "packing-needle" "packing-needles" ; -- compound needle_N ;
-lin 'darning-needle_N' = mkN "darning-needle" "darning-needles" ; -- compound needle_N ;
-lin 'knitting-needle_N' = mkN "knitting-needle" "knitting-needles" ; -- compound needle_N ;
-lin idle_N = mkN "idle" "idles" ;
-lin bridle_N = mkN "bridle" "bridles" ; -- notcompound idle_N ;
-lin candle_N = mkN "candle" "candles" ;
-lin footcandle_N = mkN "footcandle" "footcandles" ; -- compound candle_N ;
-lin handle_N = mkN "handle" "handles" ;
-lin panhandle_N = mkN "panhandle" "panhandles" ; -- compound handle_N ;
-lin doorhandle_N = mkN "doorhandle" "doorhandles" ; -- compound handle_N ;
-lin spindle_N = mkN "spindle" "spindles" ;
-lin swindle_N = mkN "swindle" "swindles" ;
-lin bundle_N = mkN "bundle" "bundles" ;
-lin rundle_N = mkN "rundle" "rundles" ;
-lin trundle_N = mkN "trundle" "trundles" ; -- notcompound rundle_N ;
-lin boodle_N = mkN "boodle" "boodles" ;
-lin caboodle_N = mkN "caboodle" "caboodles" ; -- compound boodle_N ;
-lin noodle_N = mkN "noodle" "noodles" ;
-lin poodle_N = mkN "poodle" "poodles" ;
-lin girdle_N = mkN "girdle" "girdles" ;
-lin hurdle_N = mkN "hurdle" "hurdles" ;
-lin varicocele_N = mkN "varicocele" "varicoceles" ;
-lin oscheocele_N = mkN "oscheocele" "oscheoceles" ;
-lin meningocele_N = mkN "meningocele" "meningoceles" ;
-lin myelomeningocele_N = mkN "myelomeningocele" "myelomeningoceles" ; -- compound meningocele_N ;
-lin encephalocele_N = mkN "encephalocele" "encephaloceles" ;
-lin colpocele_N = mkN "colpocele" "colpoceles" ;
-lin laparocele_N = mkN "laparocele" "laparoceles" ;
-lin hydrocele_N = mkN "hydrocele" "hydroceles" ;
-lin ureterocele_N = mkN "ureterocele" "ureteroceles" ;
-lin urethrocele_N = mkN "urethrocele" "urethroceles" ;
-lin urocele_N = mkN "urocele" "uroceles" ;
-lin hematocele_N = mkN "hematocele" "hematoceles" ;
-lin spermatocele_N = mkN "spermatocele" "spermatoceles" ;
-lin keratocele_N = mkN "keratocele" "keratoceles" ;
-lin galactocele_N = mkN "galactocele" "galactoceles" ;
-lin rectocele_N = mkN "rectocele" "rectoceles" ;
-lin cystocele_N = mkN "cystocele" "cystoceles" ;
-lin urodele_N = mkN "urodele" "urodeles" ;
-lin allele_N = mkN "allele" "alleles" ;
-lin nonallele_N = mkN "nonallele" "nonalleles" ; -- compound allele_N ;
-lin ukulele_N = mkN "ukulele" "ukuleles" ;
-lin fistmele_N = mkN "fistmele" "fistmeles" ;
-lin clientele_N = mkN "clientele" "clienteles" ;
-lin baffle_N = mkN "baffle" "baffles" ;
-lin snaffle_N = mkN "snaffle" "snaffles" ;
-lin raffle_N = mkN "raffle" "raffles" ;
-lin waffle_N = mkN "waffle" "waffles" ;
-lin skiffle_N = mkN "skiffle" "skiffles" ;
-lin piffle_N = mkN "piffle" "piffles" ;
-lin riffle_N = mkN "riffle" "riffles" ;
-lin scuffle_N = mkN "scuffle" "scuffles" ;
-lin duffle_N = mkN "duffle" "duffles" ;
-lin shuffle_N = mkN "shuffle" "shuffles" ;
-lin reshuffle_N = mkN "reshuffle" "reshuffles" ; -- compound shuffle_N ;
-lin muffle_N = mkN "muffle" "muffles" ;
-lin snuffle_N = mkN "snuffle" "snuffles" ;
-lin ruffle_N = mkN "ruffle" "ruffles" ;
-lin truffle_N = mkN "truffle" "truffles" ; -- notcompound ruffle_N ;
-lin rifle_N = mkN "rifle" "rifles" ;
-lin trifle_N = mkN "trifle" "trifles" ; -- notcompound rifle_N ;
-lin stifle_N = mkN "stifle" "stifles" ;
-lin eagle_N = mkN "eagle" "eagles" ;
-lin beagle_N = mkN "beagle" "beagles" ; -- notcompound eagle_N ;
-lin porbeagle_N = mkN "porbeagle" "porbeagles" ; -- compound eagle_N ;
-lin spreadeagle_N = mkN "spreadeagle" "spreadeagles" ; -- compound eagle_N ;
-lin gaggle_N = mkN "gaggle" "gaggles" ;
-lin haggle_N = mkN "haggle" "haggles" ;
-lin straggle_N = mkN "straggle" "straggles" ;
-lin giggle_N = mkN "giggle" "giggles" ;
-lin jiggle_N = mkN "jiggle" "jiggles" ;
-lin wriggle_N = mkN "wriggle" "wriggles" ;
-lin squiggle_N = mkN "squiggle" "squiggles" ;
-lin wiggle_N = mkN "wiggle" "wiggles" ;
-lin boondoggle_N = mkN "boondoggle" "boondoggles" ;
-lin joggle_N = mkN "joggle" "joggles" ;
-lin toggle_N = mkN "toggle" "toggles" ;
-lin juggle_N = mkN "juggle" "juggles" ;
-lin struggle_N = mkN "struggle" "struggles" ;
-lin angle_N = mkN "angle" "angles" ;
-lin bangle_N = mkN "bangle" "bangles" ; -- notcompound angle_N ;
-lin triangle_N = mkN "triangle" "triangles" ; -- compound angle_N ;
-lin jangle_N = mkN "jangle" "jangles" ; -- notcompound angle_N ;
-lin mangle_N = mkN "mangle" "mangles" ; -- notcompound angle_N ;
-lin spangle_N = mkN "spangle" "spangles" ; -- notcompound angle_N ;
-lin quadrangle_N = mkN "quadrangle" "quadrangles" ; -- compound angle_N ;
-lin wrangle_N = mkN "wrangle" "wrangles" ; -- notcompound angle_N ;
-lin tangle_N = mkN "tangle" "tangles" ; -- notcompound angle_N ;
-lin rectangle_N = mkN "rectangle" "rectangles" ; -- compound angle_N ;
-lin wangle_N = mkN "wangle" "wangles" ; -- notcompound angle_N ;
-lin dingle_N = mkN "dingle" "dingles" ;
-lin shingle_N = mkN "shingle" "shingles" ;
-lin jingle_N = mkN "jingle" "jingles" ;
-lin cringle_N = mkN "cringle" "cringles" ;
-lin single_N = mkN "single" "singles" ;
-lin tingle_N = mkN "tingle" "tingles" ;
-lin dongle_N = mkN "dongle" "dongles" ;
-lin bungle_N = mkN "bungle" "bungles" ;
-lin jungle_N = mkN "jungle" "jungles" ;
-lin gargle_N = mkN "gargle" "gargles" ;
-lin gurgle_N = mkN "gurgle" "gurgles" ;
-lin bugle_N = mkN "bugle" "bugles" ;
-lin pinochle_N = mkN "pinochle" "pinochles" ;
-lin bile_N = mkN "bile" "biles" ;
-lin stabile_N = mkN "stabile" "stabiles" ; -- compound bile_N ;
-lin mobile_N = mkN "mobile" "mobiles" ; -- compound bile_N ;
-lin bloodmobile_N = mkN "bloodmobile" "bloodmobiles" ; -- compound bile_N ;
-lin bookmobile_N = mkN "bookmobile" "bookmobiles" ; -- compound bile_N ;
-lin automobile_N = mkN "automobile" "automobiles" ; -- compound bile_N ;
-lin snowmobile_N = mkN "snowmobile" "snowmobiles" ; -- compound bile_N ;
-lin imbecile_N = mkN "imbecile" "imbeciles" ;
-lin decile_N = mkN "decile" "deciles" ;
-lin domicile_N = mkN "domicile" "domiciles" ;
-lin crocodile_N = mkN "crocodile" "crocodiles" ;
-lin audile_N = mkN "audile" "audiles" ;
-lin file_N = mkN "file" "files" ;
-lin defile_N = mkN "defile" "defiles" ; -- compound file_N ;
-lin nailfile_N = mkN "nailfile" "nailfiles" ; -- compound file_N ;
-lin profile_N = mkN "profile" "profiles" ; -- compound file_N ;
-lin myrmecophile_N = mkN "myrmecophile" "myrmecophiles" ;
-lin pedophile_N = mkN "pedophile" "pedophiles" ;
-lin thermoacidophile_N = mkN "thermoacidophile" "thermoacidophiles" ;
-lin bibliophile_N = mkN "bibliophile" "bibliophiles" ;
-lin halophile_N = mkN "halophile" "halophiles" ;
-lin anglophile_N = mkN "anglophile" "anglophiles" ;
-lin enophile_N = mkN "enophile" "enophiles" ;
-lin technophile_N = mkN "technophile" "technophiles" ;
-lin aerophile_N = mkN "aerophile" "aerophiles" ;
-lin while_N = mkN "while" "whiles" ;
-lin mile_N = mkN "mile" "miles" ;
-lin simile_N = mkN "simile" "similes" ; -- compound mile_N ;
-lin facsimile_N = mkN "facsimile" "facsimiles" ; -- compound mile_N ;
-lin camomile_N = mkN "camomile" "camomiles" ; -- compound mile_N ;
-lin chamomile_N = mkN "chamomile" "chamomiles" ; -- compound mile_N ;
-lin smile_N = mkN "smile" "smiles" ; -- notcompound mile_N ;
-lin campanile_N = mkN "campanile" "campaniles" ;
-lin juvenile_N = mkN "juvenile" "juveniles" ;
-lin voile_N = mkN "voile" "voiles" ;
-lin pile_N = mkN "pile" "piles" ;
-lin woodpile_N = mkN "woodpile" "woodpiles" ; -- compound pile_N ;
-lin stockpile_N = mkN "stockpile" "stockpiles" ; -- compound pile_N ;
-lin thermopile_N = mkN "thermopile" "thermopiles" ; -- compound pile_N ;
-lin laetrile_N = mkN "laetrile" "laetriles" ;
-lin nitrile_N = mkN "nitrile" "nitriles" ;
-lin propenonitrile_N = mkN "propenonitrile" "propenonitriles" ; -- compound nitrile_N ;
-lin polypropenonitrile_N = mkN "polypropenonitrile" "polypropenonitriles" ; -- compound nitrile_N ;
-lin chlorobenzylidenemalononitrile_N = mkN "chlorobenzylidenemalononitrile" "chlorobenzylidenemalononitriles" ; -- compound nitrile_N ;
-lin missile_N = mkN "missile" "missiles" ;
-lin tile_N = mkN "tile" "tiles" ;
-lin 'ridge-tile_N' = mkN "ridge-tile" "ridge-tiles" ; -- compound tile_N ;
-lin volatile_N = mkN "volatile" "volatiles" ; -- compound tile_N ;
-lin 'sal volatile_N' = mkN "sal volatile" "sal volatiles" ; -- compound tile_N ;
-lin projectile_N = mkN "projectile" "projectiles" ; -- compound tile_N ;
-lin pantile_N = mkN "pantile" "pantiles" ; -- compound tile_N ;
-lin percentile_N = mkN "percentile" "percentiles" ; -- compound tile_N ;
-lin gentile_N = mkN "gentile" "gentiles" ; -- compound tile_N ;
-lin motile_N = mkN "motile" "motiles" ; -- compound tile_N ;
-lin chrysotile_N = mkN "chrysotile" "chrysotiles" ; -- compound tile_N ;
-lin reptile_N = mkN "reptile" "reptiles" ; -- compound tile_N ;
-lin quartile_N = mkN "quartile" "quartiles" ; -- compound tile_N ;
-lin stile_N = mkN "stile" "stiles" ; -- notcompound tile_N ;
-lin turnstile_N = mkN "turnstile" "turnstiles" ; -- compound tile_N ;
-lin hostile_N = mkN "hostile" "hostiles" ; -- compound tile_N ;
-lin rutile_N = mkN "rutile" "rutiles" ; -- compound tile_N ;
-lin textile_N = mkN "textile" "textiles" ; -- compound tile_N ;
-lin guile_N = mkN "guile" "guiles" ;
-lin wile_N = mkN "wile" "wiles" ;
-lin exile_N = mkN "exile" "exiles" ;
-lin cackle_N = mkN "cackle" "cackles" ;
-lin hackle_N = mkN "hackle" "hackles" ;
-lin shackle_N = mkN "shackle" "shackles" ; -- notcompound hackle_N ;
-lin mackle_N = mkN "mackle" "mackles" ;
-lin spackle_N = mkN "spackle" "spackles" ;
-lin crackle_N = mkN "crackle" "crackles" ;
-lin grackle_N = mkN "grackle" "grackles" ;
-lin tackle_N = mkN "tackle" "tackles" ;
-lin 'fishing-tackle_N' = mkN "fishing-tackle" "fishing-tackles" ; -- compound tackle_N ;
-lin deckle_N = mkN "deckle" "deckles" ;
-lin speckle_N = mkN "speckle" "speckles" ;
-lin freckle_N = mkN "freckle" "freckles" ;
-lin pickle_N = mkN "pickle" "pickles" ;
-lin prickle_N = mkN "prickle" "prickles" ;
-lin trickle_N = mkN "trickle" "trickles" ;
-lin strickle_N = mkN "strickle" "strickles" ; -- notcompound trickle_N ;
-lin sickle_N = mkN "sickle" "sickles" ;
-lin tickle_N = mkN "tickle" "tickles" ;
-lin cockle_N = mkN "cockle" "cockles" ;
-lin buckle_N = mkN "buckle" "buckles" ;
-lin turnbuckle_N = mkN "turnbuckle" "turnbuckles" ; -- compound buckle_N ;
-lin chuckle_N = mkN "chuckle" "chuckles" ;
-lin knuckle_N = mkN "knuckle" "knuckles" ;
-lin truckle_N = mkN "truckle" "truckles" ;
-lin honeysuckle_N = mkN "honeysuckle" "honeysuckles" ;
-lin ankle_N = mkN "ankle" "ankles" ;
-lin inkle_N = mkN "inkle" "inkles" ;
-lin crinkle_N = mkN "crinkle" "crinkles" ; -- notcompound inkle_N ;
-lin sprinkle_N = mkN "sprinkle" "sprinkles" ; -- notcompound inkle_N ;
-lin wrinkle_N = mkN "wrinkle" "wrinkles" ; -- notcompound inkle_N ;
-lin winkle_N = mkN "winkle" "winkles" ; -- notcompound inkle_N ;
-lin periwinkle_N = mkN "periwinkle" "periwinkles" ; -- compound inkle_N ;
-lin twinkle_N = mkN "twinkle" "twinkles" ; -- notcompound inkle_N ;
-lin sparkle_N = mkN "sparkle" "sparkles" ;
-lin farfalle_N = mkN "farfalle" "farfalles" ;
-lin belle_N = mkN "belle" "belles" ;
-lin nacelle_N = mkN "nacelle" "nacelles" ;
-lin rubicelle_N = mkN "rubicelle" "rubicelles" ;
-lin micelle_N = mkN "micelle" "micelles" ;
-lin chandelle_N = mkN "chandelle" "chandelles" ;
-lin organelle_N = mkN "organelle" "organelles" ;
-lin fontanelle_N = mkN "fontanelle" "fontanelles" ;
-lin amarelle_N = mkN "amarelle" "amarelles" ;
-lin chanterelle_N = mkN "chanterelle" "chanterelles" ;
-lin pipistrelle_N = mkN "pipistrelle" "pipistrelles" ;
-lin mademoiselle_N = mkN "mademoiselle" "mademoiselles" ;
-lin moselle_N = mkN "moselle" "moselles" ;
-lin roselle_N = mkN "roselle" "roselles" ;
-lin bagatelle_N = mkN "bagatelle" "bagatelles" ;
-lin tagliatelle_N = mkN "tagliatelle" "tagliatelles" ;
-lin tarantelle_N = mkN "tarantelle" "tarantelles" ;
-lin immortelle_N = mkN "immortelle" "immortelles" ;
-lin gazelle_N = mkN "gazelle" "gazelles" ;
-lin cocozelle_N = mkN "cocozelle" "cocozelles" ;
-lin faille_N = mkN "faille" "failles" ;
-lin braille_N = mkN "braille" "brailles" ;
-lin grisaille_N = mkN "grisaille" "grisailles" ;
-lin dishabille_N = mkN "dishabille" "dishabilles" ;
-lin marseille_N = mkN "marseille" "marseilles" ;
-lin reveille_N = mkN "reveille" "reveilles" ;
-lin chenille_N = mkN "chenille" "chenilles" ;
-lin escadrille_N = mkN "escadrille" "escadrilles" ;
-lin espadrille_N = mkN "espadrille" "espadrilles" ;
-lin quadrille_N = mkN "quadrille" "quadrilles" ;
-lin grille_N = mkN "grille" "grilles" ;
-lin bastille_N = mkN "bastille" "bastilles" ;
-lin pastille_N = mkN "pastille" "pastilles" ;
-lin ratatouille_N = mkN "ratatouille" "ratatouilles" ;
-lin coquille_N = mkN "coquille" "coquilles" ;
-lin tuille_N = mkN "tuille" "tuilles" ;
-lin vaudeville_N = mkN "vaudeville" "vaudevilles" ;
-lin splitsville_N = mkN "splitsville" "splitsvilles" ;
-lin barcarolle_N = mkN "barcarolle" "barcarolles" ;
-lin boulle_N = mkN "boulle" "boulles" ;
-lin tulle_N = mkN "tulle" "tulles" ;
-lin Pole_N = mkN "Pole" "Poles" ;
-lin bole_N = mkN "bole" "boles" ;
-lin amphibole_N = mkN "amphibole" "amphiboles" ; -- compound bole_N ;
-lin hyperbole_N = mkN "hyperbole" "hyperboles" ; -- compound bole_N ;
-lin pratincole_N = mkN "pratincole" "pratincoles" ;
-lin dole_N = mkN "dole" "doles" ;
-lin farandole_N = mkN "farandole" "farandoles" ; -- compound dole_N ;
-lin girandole_N = mkN "girandole" "girandoles" ; -- compound dole_N ;
-lin urceole_N = mkN "urceole" "urceoles" ;
-lin creole_N = mkN "creole" "creoles" ;
-lin aureole_N = mkN "aureole" "aureoles" ;
-lin bracteole_N = mkN "bracteole" "bracteoles" ;
-lin hole_N = mkN "hole" "holes" ;
-lin 'bore-hole_N' = mkN "bore-hole" "bore-holes" ; -- compound hole_N ;
-lin 'bung-hole_N' = mkN "bung-hole" "bung-holes" ; -- compound hole_N ;
-lin 'coal-hole_N' = mkN "coal-hole" "coal-holes" ; -- compound hole_N ;
-lin 'arm-hole_N' = mkN "arm-hole" "arm-holes" ; -- compound hole_N ;
-lin 'water-hole_N' = mkN "water-hole" "water-holes" ; -- compound hole_N ;
-lin 'rabbit-hole_N' = mkN "rabbit-hole" "rabbit-holes" ; -- compound hole_N ;
-lin 'bolt-hole_N' = mkN "bolt-hole" "bolt-holes" ; -- compound hole_N ;
-lin 'vent-hole_N' = mkN "vent-hole" "vent-holes" ; -- compound hole_N ;
-lin 'spy-hole_N' = mkN "spy-hole" "spy-holes" ; -- compound hole_N ;
-lin 'glory-hole_N' = mkN "glory-hole" "glory-holes" ; -- compound hole_N ;
-lin thumbhole_N = mkN "thumbhole" "thumbholes" ; -- compound hole_N ;
-lin dhole_N = mkN "dhole" "dholes" ; -- notcompound hole_N ;
-lin stokehole_N = mkN "stokehole" "stokeholes" ; -- compound hole_N ;
-lin arsehole_N = mkN "arsehole" "arseholes" ; -- compound hole_N ;
-lin bunghole_N = mkN "bunghole" "bungholes" ; -- compound hole_N ;
-lin plughole_N = mkN "plughole" "plugholes" ; -- compound hole_N ;
-lin sinkhole_N = mkN "sinkhole" "sinkholes" ; -- compound hole_N ;
-lin armhole_N = mkN "armhole" "armholes" ; -- compound hole_N ;
-lin wormhole_N = mkN "wormhole" "wormholes" ; -- compound hole_N ;
-lin manhole_N = mkN "manhole" "manholes" ; -- compound hole_N ;
-lin pinhole_N = mkN "pinhole" "pinholes" ; -- compound hole_N ;
-lin pigeonhole_N = mkN "pigeonhole" "pigeonholes" ; -- compound hole_N ;
-lin buttonhole_N = mkN "buttonhole" "buttonholes" ; -- compound hole_N ;
-lin peephole_N = mkN "peephole" "peepholes" ; -- compound hole_N ;
-lin loophole_N = mkN "loophole" "loopholes" ; -- compound hole_N ;
-lin asshole_N = mkN "asshole" "assholes" ; -- compound hole_N ;
-lin thole_N = mkN "thole" "tholes" ; -- notcompound hole_N ;
-lin rathole_N = mkN "rathole" "ratholes" ; -- compound hole_N ;
-lin knothole_N = mkN "knothole" "knotholes" ; -- compound hole_N ;
-lin pothole_N = mkN "pothole" "potholes" ; -- compound hole_N ;
-lin porthole_N = mkN "porthole" "portholes" ; -- compound hole_N ;
-lin pesthole_N = mkN "pesthole" "pestholes" ; -- compound hole_N ;
-lin posthole_N = mkN "posthole" "postholes" ; -- compound hole_N ;
-lin whole_N = mkN "whole" "wholes" ; -- notcompound hole_N ;
-lin blowhole_N = mkN "blowhole" "blowholes" ; -- compound hole_N ;
-lin foxhole_N = mkN "foxhole" "foxholes" ; -- compound hole_N ;
-lin cubbyhole_N = mkN "cubbyhole" "cubbyholes" ; -- compound hole_N ;
-lin keyhole_N = mkN "keyhole" "keyholes" ; -- compound hole_N ;
-lin bronchiole_N = mkN "bronchiole" "bronchioles" ;
-lin arteriole_N = mkN "arteriole" "arterioles" ;
-lin oriole_N = mkN "oriole" "orioles" ;
-lin capriole_N = mkN "capriole" "caprioles" ;
-lin centriole_N = mkN "centriole" "centrioles" ;
-lin petiole_N = mkN "petiole" "petioles" ;
-lin ostiole_N = mkN "ostiole" "ostioles" ;
-lin frijole_N = mkN "frijole" "frijoles" ;
-lin mole_N = mkN "mole" "moles" ;
-lin guacamole_N = mkN "guacamole" "guacamoles" ; -- compound mole_N ;
-lin pinole_N = mkN "pinole" "pinoles" ;
-lin 'telegraph-pole_N' = mkN "telegraph-pole" "telegraph-poles" ;
-lin 'totem-pole_N' = mkN "totem-pole" "totem-poles" ;
-lin 'hop-pole_N' = mkN "hop-pole" "hop-poles" ;
-lin tadpole_N = mkN "tadpole" "tadpoles" ;
-lin ridgepole_N = mkN "ridgepole" "ridgepoles" ;
-lin bargepole_N = mkN "bargepole" "bargepoles" ;
-lin flagpole_N = mkN "flagpole" "flagpoles" ;
-lin dipole_N = mkN "dipole" "dipoles" ;
-lin bibliopole_N = mkN "bibliopole" "bibliopoles" ;
-lin maypole_N = mkN "maypole" "maypoles" ;
-lin role_N = mkN "role" "roles" ;
-lin 'title-role_N' = mkN "title-role" "title-roles" ; -- compound role_N ;
-lin barcarole_N = mkN "barcarole" "barcaroles" ; -- compound role_N ;
-lin rigmarole_N = mkN "rigmarole" "rigmaroles" ; -- compound role_N ;
-lin parole_N = mkN "parole" "paroles" ; -- compound role_N ;
-lin casserole_N = mkN "casserole" "casseroles" ; -- compound role_N ;
-lin profiterole_N = mkN "profiterole" "profiteroles" ; -- compound role_N ;
-lin prole_N = mkN "prole" "proles" ; -- notcompound role_N ;
-lin sole_N = mkN "sole" "soles" ;
-lin camisole_N = mkN "camisole" "camisoles" ; -- compound sole_N ;
-lin insole_N = mkN "insole" "insoles" ; -- compound sole_N ;
-lin console_N = mkN "console" "consoles" ; -- compound sole_N ;
-lin rissole_N = mkN "rissole" "rissoles" ; -- compound sole_N ;
-lin outsole_N = mkN "outsole" "outsoles" ; -- compound sole_N ;
-lin tole_N = mkN "tole" "toles" ;
-lin atole_N = mkN "atole" "atoles" ; -- notcompound tole_N ;
-lin stole_N = mkN "stole" "stoles" ; -- notcompound tole_N ;
-lin diastole_N = mkN "diastole" "diastoles" ; -- compound tole_N ;
-lin systole_N = mkN "systole" "systoles" ; -- compound tole_N ;
-lin asystole_N = mkN "asystole" "asystoles" ; -- compound tole_N ;
-lin extrasystole_N = mkN "extrasystole" "extrasystoles" ; -- compound tole_N ;
-lin vacuole_N = mkN "vacuole" "vacuoles" ;
-lin vole_N = mkN "vole" "voles" ;
-lin 'water-vole_N' = mkN "water-vole" "water-voles" ; -- compound vole_N ;
-lin imidazole_N = mkN "imidazole" "imidazoles" ;
-lin metronidazole_N = mkN "metronidazole" "metronidazoles" ;
-lin thiabendazole_N = mkN "thiabendazole" "thiabendazoles" ;
-lin mebendazole_N = mkN "mebendazole" "mebendazoles" ;
-lin itraconazole_N = mkN "itraconazole" "itraconazoles" ;
-lin miconazole_N = mkN "miconazole" "miconazoles" ;
-lin omeprazole_N = mkN "omeprazole" "omeprazoles" ;
-lin lansoprazole_N = mkN "lansoprazole" "lansoprazoles" ;
-lin sulfamethoxazole_N = mkN "sulfamethoxazole" "sulfamethoxazoles" ;
-lin sulfisoxazole_N = mkN "sulfisoxazole" "sulfisoxazoles" ;
-lin maple_N = mkN "maple" "maples" ;
-lin staple_N = mkN "staple" "staples" ;
-lin steeple_N = mkN "steeple" "steeples" ;
-lin participle_N = mkN "participle" "participles" ;
-lin principle_N = mkN "principle" "principles" ;
-lin disciple_N = mkN "disciple" "disciples" ;
-lin triple_N = mkN "triple" "triples" ;
-lin multiple_N = mkN "multiple" "multiples" ;
-lin trample_N = mkN "trample" "tramples" ;
-lin sample_N = mkN "sample" "samples" ;
-lin example_N = mkN "example" "examples" ;
-lin 'counter-example_N' = mkN "counter-example" "counter-examples" ; -- compound example_N ;
-lin counterexample_N = mkN "counterexample" "counterexamples" ; -- compound example_N ;
-lin temple_N = mkN "temple" "temples" ;
-lin dimple_N = mkN "dimple" "dimples" ;
-lin pimple_N = mkN "pimple" "pimples" ;
-lin simple_N = mkN "simple" "simples" ;
-lin wimple_N = mkN "wimple" "wimples" ;
-lin people_2_N = mkN "people" "peoples" ;
-lin tradespeople_N = mkN "tradespeople" "tradespeoples" ; -- compound people_2_N ;
-lin apple_N = mkN "apple" "apples" ;
-lin 'crab-apple_N' = mkN "crab-apple" "crab-apples" ; -- compound apple_N ;
-lin 'eating-apple_N' = mkN "eating-apple" "eating-apples" ; -- compound apple_N ;
-lin 'oak-apple_N' = mkN "oak-apple" "oak-apples" ; -- compound apple_N ;
-lin pineapple_N = mkN "pineapple" "pineapples" ; -- compound apple_N ;
-lin scrapple_N = mkN "scrapple" "scrapples" ; -- notcompound apple_N ;
-lin mayapple_N = mkN "mayapple" "mayapples" ; -- compound apple_N ;
-lin fipple_N = mkN "fipple" "fipples" ;
-lin nipple_N = mkN "nipple" "nipples" ;
-lin ripple_N = mkN "ripple" "ripples" ;
-lin cripple_N = mkN "cripple" "cripples" ; -- notcompound ripple_N ;
-lin tipple_N = mkN "tipple" "tipples" ;
-lin purple_N = mkN "purple" "purples" ;
-lin couple_N = mkN "couple" "couples" ;
-lin thermocouple_N = mkN "thermocouple" "thermocouples" ; -- compound couple_N ;
-lin scruple_N = mkN "scruple" "scruples" ;
-lin quadruple_N = mkN "quadruple" "quadruples" ;
-lin fo'c'sle_N = mkN "fo'c'sle" "fo'c'sles" ;
-lin isle_N = mkN "isle" "isles" ;
-lin aisle_N = mkN "aisle" "aisles" ; -- notcompound isle_N ;
-lin lisle_N = mkN "lisle" "lisles" ; -- notcompound isle_N ;
-lin hassle_N = mkN "hassle" "hassles" ;
-lin tussle_N = mkN "tussle" "tussles" ;
-lin beetle_N = mkN "beetle" "beetles" ;
-lin 'black-beetle_N' = mkN "black-beetle" "black-beetles" ; -- compound beetle_N ;
-lin 'may-beetle_N' = mkN "may-beetle" "may-beetles" ; -- compound beetle_N ;
-lin dorbeetle_N = mkN "dorbeetle" "dorbeetles" ; -- compound beetle_N ;
-lin title_N = mkN "title" "titles" ;
-lin subtitle_N = mkN "subtitle" "subtitles" ; -- compound title_N ;
-lin supertitle_N = mkN "supertitle" "supertitles" ; -- compound title_N ;
-lin cantle_N = mkN "cantle" "cantles" ;
-lin mantle_N = mkN "mantle" "mantles" ;
-lin pintle_N = mkN "pintle" "pintles" ;
-lin tootle_N = mkN "tootle" "tootles" ;
-lin chipotle_N = mkN "chipotle" "chipotles" ;
-lin startle_N = mkN "startle" "startles" ;
-lin kirtle_N = mkN "kirtle" "kirtles" ;
-lin chortle_N = mkN "chortle" "chortles" ;
-lin turtle_N = mkN "turtle" "turtles" ;
-lin myrtle_N = mkN "myrtle" "myrtles" ;
-lin castle_N = mkN "castle" "castles" ;
-lin forecastle_N = mkN "forecastle" "forecastles" ; -- compound castle_N ;
-lin pestle_N = mkN "pestle" "pestles" ;
-lin trestle_N = mkN "trestle" "trestles" ;
-lin wrestle_N = mkN "wrestle" "wrestles" ;
-lin thistle_N = mkN "thistle" "thistles" ;
-lin whistle_N = mkN "whistle" "whistles" ;
-lin pennywhistle_N = mkN "pennywhistle" "pennywhistles" ; -- compound whistle_N ;
-lin epistle_N = mkN "epistle" "epistles" ;
-lin bristle_N = mkN "bristle" "bristles" ;
-lin gristle_N = mkN "gristle" "gristles" ;
-lin jostle_N = mkN "jostle" "jostles" ;
-lin apostle_N = mkN "apostle" "apostles" ;
-lin throstle_N = mkN "throstle" "throstles" ;
-lin bustle_N = mkN "bustle" "bustles" ;
-lin rustle_N = mkN "rustle" "rustles" ;
-lin battle_N = mkN "battle" "battles" ;
-lin cattle_N = mkN "cattle" "cattles" ;
-lin rattle_N = mkN "rattle" "rattles" ;
-lin prattle_N = mkN "prattle" "prattles" ; -- notcompound rattle_N ;
-lin tattle_N = mkN "tattle" "tattles" ;
-lin 'tittle-tattle_N' = mkN "tittle-tattle" "tittle-tattles" ; -- compound tattle_N ;
-lin wattle_N = mkN "wattle" "wattles" ;
-lin fettle_N = mkN "fettle" "fettles" ;
-lin kettle_N = mkN "kettle" "kettles" ;
-lin 'tea-kettle_N' = mkN "tea-kettle" "tea-kettles" ; -- compound kettle_N ;
-lin teakettle_N = mkN "teakettle" "teakettles" ; -- compound kettle_N ;
-lin mettle_N = mkN "mettle" "mettles" ;
-lin nettle_N = mkN "nettle" "nettles" ;
-lin settle_N = mkN "settle" "settles" ;
-lin skittle_N = mkN "skittle" "skittles" ;
-lin little_N = mkN "little" "littles" ;
-lin spittle_N = mkN "spittle" "spittles" ;
-lin brittle_N = mkN "brittle" "brittles" ;
-lin bottle_N = mkN "bottle" "bottles" ;
-lin 'feeding-bottle_N' = mkN "feeding-bottle" "feeding-bottles" ; -- compound bottle_N ;
-lin 'smelling-bottle_N' = mkN "smelling-bottle" "smelling-bottles" ; -- compound bottle_N ;
-lin 'ink-bottle_N' = mkN "ink-bottle" "ink-bottles" ; -- compound bottle_N ;
-lin 'water-bottle_N' = mkN "water-bottle" "water-bottles" ; -- compound bottle_N ;
-lin 'hot-water-bottle_N' = mkN "hot-water-bottle" "hot-water-bottles" ; -- compound bottle_N ;
-lin bluebottle_N = mkN "bluebottle" "bluebottles" ; -- compound bottle_N ;
-lin greenbottle_N = mkN "greenbottle" "greenbottles" ; -- compound bottle_N ;
-lin dottle_N = mkN "dottle" "dottles" ;
-lin mottle_N = mkN "mottle" "mottles" ;
-lin pottle_N = mkN "pottle" "pottles" ;
-lin crottle_N = mkN "crottle" "crottles" ;
-lin throttle_N = mkN "throttle" "throttles" ;
-lin scuttle_N = mkN "scuttle" "scuttles" ;
-lin 'coal-scuttle_N' = mkN "coal-scuttle" "coal-scuttles" ; -- compound scuttle_N ;
-lin shuttle_N = mkN "shuttle" "shuttles" ;
-lin nebule_N = mkN "nebule" "nebules" ;
-lin vestibule_N = mkN "vestibule" "vestibules" ;
-lin lobule_N = mkN "lobule" "lobules" ;
-lin globule_N = mkN "globule" "globules" ; -- notcompound lobule_N ;
-lin tubule_N = mkN "tubule" "tubules" ;
-lin microtubule_N = mkN "microtubule" "microtubules" ; -- compound tubule_N ;
-lin macule_N = mkN "macule" "macules" ;
-lin saccule_N = mkN "saccule" "saccules" ;
-lin floccule_N = mkN "floccule" "floccules" ;
-lin molecule_N = mkN "molecule" "molecules" ;
-lin macromolecule_N = mkN "macromolecule" "macromolecules" ; -- compound molecule_N ;
-lin ridicule_N = mkN "ridicule" "ridicules" ;
-lin spicule_N = mkN "spicule" "spicules" ;
-lin reticule_N = mkN "reticule" "reticules" ;
-lin animalcule_N = mkN "animalcule" "animalcules" ;
-lin locule_N = mkN "locule" "locules" ;
-lin bascule_N = mkN "bascule" "bascules" ;
-lin minuscule_N = mkN "minuscule" "minuscules" ;
-lin schedule_N = mkN "schedule" "schedules" ;
-lin module_N = mkN "module" "modules" ;
-lin nodule_N = mkN "nodule" "nodules" ;
-lin ligule_N = mkN "ligule" "ligules" ;
-lin virgule_N = mkN "virgule" "virgules" ;
-lin petiolule_N = mkN "petiolule" "petiolules" ;
-lin mule_N = mkN "mule" "mules" ;
-lin squamule_N = mkN "squamule" "squamules" ; -- compound mule_N ;
-lin gemmule_N = mkN "gemmule" "gemmules" ; -- compound mule_N ;
-lin plumule_N = mkN "plumule" "plumules" ; -- compound mule_N ;
-lin cymule_N = mkN "cymule" "cymules" ; -- compound mule_N ;
-lin granule_N = mkN "granule" "granules" ;
-lin venule_N = mkN "venule" "venules" ;
-lin gallinule_N = mkN "gallinule" "gallinules" ;
-lin zonule_N = mkN "zonule" "zonules" ;
-lin cagoule_N = mkN "cagoule" "cagoules" ;
-lin joule_N = mkN "joule" "joules" ;
-lin ampoule_N = mkN "ampoule" "ampoules" ;
-lin papule_N = mkN "papule" "papules" ;
-lin stipule_N = mkN "stipule" "stipules" ;
-lin cupule_N = mkN "cupule" "cupules" ;
-lin rule_N = mkN "rule" "rules" ;
-lin 'slide-rule_N' = mkN "slide-rule" "slide-rules" ; -- compound rule_N ;
-lin 'self-rule_N' = mkN "self-rule" "self-rules" ; -- compound rule_N ;
-lin metarule_N = mkN "metarule" "metarules" ; -- compound rule_N ;
-lin chondrule_N = mkN "chondrule" "chondrules" ; -- compound rule_N ;
-lin ferule_N = mkN "ferule" "ferules" ; -- compound rule_N ;
-lin spherule_N = mkN "spherule" "spherules" ; -- compound rule_N ;
-lin glomerule_N = mkN "glomerule" "glomerules" ; -- compound rule_N ;
-lin ferrule_N = mkN "ferrule" "ferrules" ; -- compound rule_N ;
-lin misrule_N = mkN "misrule" "misrules" ; -- compound rule_N ;
-lin capsule_N = mkN "capsule" "capsules" ;
-lin 'space-capsule_N' = mkN "space-capsule" "space-capsules" ; -- compound capsule_N ;
-lin ductule_N = mkN "ductule" "ductules" ;
-lin pustule_N = mkN "pustule" "pustules" ;
-lin valvule_N = mkN "valvule" "valvules" ;
-lin ovule_N = mkN "ovule" "ovules" ;
-lin yule_N = mkN "yule" "yules" ;
-lin guayule_N = mkN "guayule" "guayules" ; -- compound yule_N ;
-lin axle_N = mkN "axle" "axles" ;
-lin condyle_N = mkN "condyle" "condyles" ;
-lin epicondyle_N = mkN "epicondyle" "epicondyles" ; -- compound condyle_N ;
-lin argyle_N = mkN "argyle" "argyles" ;
-lin chyle_N = mkN "chyle" "chyles" ;
-lin phyle_N = mkN "phyle" "phyles" ;
-lin gargoyle_N = mkN "gargoyle" "gargoyles" ;
-lin micropyle_N = mkN "micropyle" "micropyles" ;
-lin style_N = mkN "style" "styles" ;
-lin freestyle_N = mkN "freestyle" "freestyles" ; -- compound style_N ;
-lin peristyle_N = mkN "peristyle" "peristyles" ; -- compound style_N ;
-lin cyclostyle_N = mkN "cyclostyle" "cyclostyles" ; -- compound style_N ;
-lin hairstyle_N = mkN "hairstyle" "hairstyles" ; -- compound style_N ;
-lin teazle_N = mkN "teazle" "teazles" ;
-lin dazzle_N = mkN "dazzle" "dazzles" ;
-lin frazzle_N = mkN "frazzle" "frazzles" ;
-lin drizzle_N = mkN "drizzle" "drizzles" ;
-lin grizzle_N = mkN "grizzle" "grizzles" ;
-lin sizzle_N = mkN "sizzle" "sizzles" ;
-lin swizzle_N = mkN "swizzle" "swizzles" ;
-lin schemozzle_N = mkN "schemozzle" "schemozzles" ;
-lin nozzle_N = mkN "nozzle" "nozzles" ;
-lin muzzle_N = mkN "muzzle" "muzzles" ;
-lin puzzle_N = mkN "puzzle" "puzzles" ;
-lin 'monkey-puzzle_N' = mkN "monkey-puzzle" "monkey-puzzles" ; -- compound puzzle_N ;
-lin rôle_N = mkN "rôle" "rôles" ;
-lin dame_N = mkN "dame" "dames" ;
-lin madame_N = mkN "madame" "madames" ; -- compound dame_N ;
-lin beldame_N = mkN "beldame" "beldames" ; -- compound dame_N ;
-lin fame_N = mkN "fame" "fames" ;
-lin game_N = mkN "game" "games" ;
-lin dagame_N = mkN "dagame" "dagames" ; -- compound game_N ;
-lin endgame_N = mkN "endgame" "endgames" ; -- compound game_N ;
-lin ballgame_N = mkN "ballgame" "ballgames" ; -- compound game_N ;
-lin hame_N = mkN "hame" "hames" ;
-lin shame_N = mkN "shame" "shames" ; -- notcompound hame_N ;
-lin blame_N = mkN "blame" "blames" ;
-lin flame_N = mkN "flame" "flames" ;
-lin name_N = mkN "name" "names" ;
-lin 'place-name_N' = mkN "place-name" "place-names" ; -- compound name_N ;
-lin 'pen-name_N' = mkN "pen-name" "pen-names" ; -- compound name_N ;
-lin filename_N = mkN "filename" "filenames" ; -- compound name_N ;
-lin forename_N = mkN "forename" "forenames" ; -- compound name_N ;
-lin nickname_N = mkN "nickname" "nicknames" ; -- compound name_N ;
-lin surname_N = mkN "surname" "surnames" ; -- compound name_N ;
-lin arame_N = mkN "arame" "arames" ;
-lin macrame_N = mkN "macrame" "macrames" ;
-lin frame_N = mkN "frame" "frames" ;
-lin mainframe_N = mkN "mainframe" "mainframes" ; -- compound frame_N ;
-lin airframe_N = mkN "airframe" "airframes" ; -- compound frame_N ;
-lin doorframe_N = mkN "doorframe" "doorframes" ; -- compound frame_N ;
-lin sesame_N = mkN "sesame" "sesames" ;
-lin aspartame_N = mkN "aspartame" "aspartames" ;
-lin raceme_N = mkN "raceme" "racemes" ;
-lin apodeme_N = mkN "apodeme" "apodemes" ;
-lin heme_N = mkN "heme" "hemes" ;
-lin scheme_N = mkN "scheme" "schemes" ; -- notcompound heme_N ;
-lin morpheme_N = mkN "morpheme" "morphemes" ; -- compound heme_N ;
-lin theme_N = mkN "theme" "themes" ; -- notcompound heme_N ;
-lin meme_N = mkN "meme" "memes" ;
-lin phoneme_N = mkN "phoneme" "phonemes" ;
-lin morphophoneme_N = mkN "morphophoneme" "morphophonemes" ; -- compound phoneme_N ;
-lin trireme_N = mkN "trireme" "triremes" ;
-lin monotreme_N = mkN "monotreme" "monotremes" ;
-lin extreme_N = mkN "extreme" "extremes" ;
-lin episteme_N = mkN "episteme" "epistemes" ;
-lin lexeme_N = mkN "lexeme" "lexemes" ;
-lin dime_N = mkN "dime" "dimes" ;
-lin ceftazidime_N = mkN "ceftazidime" "ceftazidimes" ; -- compound dime_N ;
-lin regime_N = mkN "regime" "regimes" ;
-lin régime_N = mkN "régime" "régimes" ;
-lin chime_N = mkN "chime" "chimes" ;
-lin lime_N = mkN "lime" "limes" ;
-lin clime_N = mkN "clime" "climes" ; -- notcompound lime_N ;
-lin birdlime_N = mkN "birdlime" "birdlimes" ; -- compound lime_N ;
-lin quicklime_N = mkN "quicklime" "quicklimes" ; -- compound lime_N ;
-lin brooklime_N = mkN "brooklime" "brooklimes" ; -- compound lime_N ;
-lin millime_N = mkN "millime" "millimes" ; -- compound lime_N ;
-lin slime_N = mkN "slime" "slimes" ; -- notcompound lime_N ;
-lin mime_N = mkN "mime" "mimes" ;
-lin pantomime_N = mkN "pantomime" "pantomimes" ; -- compound mime_N ;
-lin anime_N = mkN "anime" "animes" ;
-lin rime_N = mkN "rime" "rimes" ;
-lin crime_N = mkN "crime" "crimes" ; -- notcompound rime_N ;
-lin cybercrime_N = mkN "cybercrime" "cybercrimes" ; -- compound rime_N ;
-lin grime_N = mkN "grime" "grimes" ; -- notcompound rime_N ;
-lin prime_N = mkN "prime" "primes" ; -- notcompound rime_N ;
-lin time_N = mkN "time" "times" ;
-lin 'tea-time_N' = mkN "tea-time" "tea-times" ; -- compound time_N ;
-lin 'space-time_N' = mkN "space-time" "space-times" ; -- compound time_N ;
-lin 'half-time_N' = mkN "half-time" "half-times" ; -- compound time_N ;
-lin 'night-time_N' = mkN "night-time" "night-times" ; -- compound time_N ;
-lin bedtime_N = mkN "bedtime" "bedtimes" ; -- compound time_N ;
-lin seedtime_N = mkN "seedtime" "seedtimes" ; -- compound time_N ;
-lin peacetime_N = mkN "peacetime" "peacetimes" ; -- compound time_N ;
-lin lifetime_N = mkN "lifetime" "lifetimes" ; -- compound time_N ;
-lin paroxetime_N = mkN "paroxetime" "paroxetimes" ; -- compound time_N ;
-lin halftime_N = mkN "halftime" "halftimes" ; -- compound time_N ;
-lin ragtime_N = mkN "ragtime" "ragtimes" ; -- compound time_N ;
-lin springtime_N = mkN "springtime" "springtimes" ; -- compound time_N ;
-lin lunchtime_N = mkN "lunchtime" "lunchtimes" ; -- compound time_N ;
-lin mealtime_N = mkN "mealtime" "mealtimes" ; -- compound time_N ;
-lin schooltime_N = mkN "schooltime" "schooltimes" ; -- compound time_N ;
-lin meantime_N = mkN "meantime" "meantimes" ; -- compound time_N ;
-lin centime_N = mkN "centime" "centimes" ; -- compound time_N ;
-lin downtime_N = mkN "downtime" "downtimes" ; -- compound time_N ;
-lin xenotime_N = mkN "xenotime" "xenotimes" ; -- compound time_N ;
-lin uptime_N = mkN "uptime" "uptimes" ; -- compound time_N ;
-lin wartime_N = mkN "wartime" "wartimes" ; -- compound time_N ;
-lin summertime_N = mkN "summertime" "summertimes" ; -- compound time_N ;
-lin dinnertime_N = mkN "dinnertime" "dinnertimes" ; -- compound time_N ;
-lin overtime_N = mkN "overtime" "overtimes" ; -- compound time_N ;
-lin christmastime_N = mkN "christmastime" "christmastimes" ; -- compound time_N ;
-lin pastime_N = mkN "pastime" "pastimes" ; -- compound time_N ;
-lin daytime_N = mkN "daytime" "daytimes" ; -- compound time_N ;
-lin playtime_N = mkN "playtime" "playtimes" ; -- compound time_N ;
-lin cefotaxime_N = mkN "cefotaxime" "cefotaximes" ;
-lin oxime_N = mkN "oxime" "oximes" ;
-lin cefuroxime_N = mkN "cefuroxime" "cefuroximes" ; -- compound oxime_N ;
-lin dimethylglyoxime_N = mkN "dimethylglyoxime" "dimethylglyoximes" ; -- compound oxime_N ;
-lin oriflamme_N = mkN "oriflamme" "oriflammes" ;
-lin gramme_N = mkN "gramme" "grammes" ;
-lin kilogramme_N = mkN "kilogramme" "kilogrammes" ; -- compound gramme_N ;
-lin programme_N = mkN "programme" "programmes" ; -- compound gramme_N ;
-lin welcome_N = mkN "welcome" "welcomes" ;
-lin income_N = mkN "income" "incomes" ;
-lin abrocome_N = mkN "abrocome" "abrocomes" ;
-lin outcome_N = mkN "outcome" "outcomes" ;
-lin dome_N = mkN "dome" "domes" ;
-lin radome_N = mkN "radome" "radomes" ; -- compound dome_N ;
-lin astrodome_N = mkN "astrodome" "astrodomes" ; -- compound dome_N ;
-lin proteome_N = mkN "proteome" "proteomes" ;
-lin home_N = mkN "home" "homes" ;
-lin 'nursing-home_N' = mkN "nursing-home" "nursing-homes" ; -- compound home_N ;
-lin 'at-home_N' = mkN "at-home" "at-homes" ; -- compound home_N ;
-lin 'stay-at-home_N' = mkN "stay-at-home" "stay-at-homes" ; -- compound home_N ;
-lin 'rest-home_N' = mkN "rest-home" "rest-homes" ; -- compound home_N ;
-lin biome_N = mkN "biome" "biomes" ;
-lin genome_N = mkN "genome" "genomes" ;
-lin gnome_N = mkN "gnome" "gnomes" ;
-lin metronome_N = mkN "metronome" "metronomes" ;
-lin pome_N = mkN "pome" "pomes" ;
-lin brome_N = mkN "brome" "bromes" ;
-lin palindrome_N = mkN "palindrome" "palindromes" ;
-lin syndrome_N = mkN "syndrome" "syndromes" ;
-lin velodrome_N = mkN "velodrome" "velodromes" ;
-lin hippodrome_N = mkN "hippodrome" "hippodromes" ;
-lin aerodrome_N = mkN "aerodrome" "aerodromes" ;
-lin prodrome_N = mkN "prodrome" "prodromes" ;
-lin airdrome_N = mkN "airdrome" "airdromes" ;
-lin chrome_N = mkN "chrome" "chromes" ;
-lin monochrome_N = mkN "monochrome" "monochromes" ; -- compound chrome_N ;
-lin fluorochrome_N = mkN "fluorochrome" "fluorochromes" ; -- compound chrome_N ;
-lin hematochrome_N = mkN "hematochrome" "hematochromes" ; -- compound chrome_N ;
-lin cytochrome_N = mkN "cytochrome" "cytochromes" ; -- compound chrome_N ;
-lin polychrome_N = mkN "polychrome" "polychromes" ; -- compound chrome_N ;
-lin threesome_N = mkN "threesome" "threesomes" ;
-lin episome_N = mkN "episome" "episomes" ;
-lin ribosome_N = mkN "ribosome" "ribosomes" ;
-lin sarcosome_N = mkN "sarcosome" "sarcosomes" ;
-lin chromosome_N = mkN "chromosome" "chromosomes" ;
-lin liposome_N = mkN "liposome" "liposomes" ;
-lin acrosome_N = mkN "acrosome" "acrosomes" ;
-lin microsome_N = mkN "microsome" "microsomes" ;
-lin centrosome_N = mkN "centrosome" "centrosomes" ;
-lin lysosome_N = mkN "lysosome" "lysosomes" ;
-lin schistosome_N = mkN "schistosome" "schistosomes" ;
-lin autosome_N = mkN "autosome" "autosomes" ;
-lin foursome_N = mkN "foursome" "foursomes" ;
-lin eightsome_N = mkN "eightsome" "eightsomes" ;
-lin tome_N = mkN "tome" "tomes" ;
-lin dermatome_N = mkN "dermatome" "dermatomes" ; -- compound tome_N ;
-lin epitome_N = mkN "epitome" "epitomes" ; -- compound tome_N ;
-lin microtome_N = mkN "microtome" "microtomes" ; -- compound tome_N ;
-lin peristome_N = mkN "peristome" "peristomes" ; -- compound tome_N ;
-lin gnathostome_N = mkN "gnathostome" "gnathostomes" ; -- compound tome_N ;
-lin cyclostome_N = mkN "cyclostome" "cyclostomes" ; -- compound tome_N ;
-lin cytostome_N = mkN "cytostome" "cytostomes" ; -- compound tome_N ;
-lin rhizome_N = mkN "rhizome" "rhizomes" ;
-lin gendarme_N = mkN "gendarme" "gendarmes" ;
-lin heaume_N = mkN "heaume" "heaumes" ;
-lin fume_N = mkN "fume" "fumes" ;
-lin perfume_N = mkN "perfume" "perfumes" ; -- compound fume_N ;
-lin legume_N = mkN "legume" "legumes" ;
-lin flume_N = mkN "flume" "flumes" ;
-lin glume_N = mkN "glume" "glumes" ;
-lin volume_N = mkN "volume" "volumes" ;
-lin plume_N = mkN "plume" "plumes" ;
-lin spume_N = mkN "spume" "spumes" ;
-lin grume_N = mkN "grume" "grumes" ;
-lin costume_N = mkN "costume" "costumes" ;
-lin 'bathing-costume_N' = mkN "bathing-costume" "bathing-costumes" ; -- compound costume_N ;
-lin 'swimming-costume_N' = mkN "swimming-costume" "swimming-costumes" ; -- compound costume_N ;
-lin cyme_N = mkN "cyme" "cymes" ;
-lin chyme_N = mkN "chyme" "chymes" ;
-lin mesenchyme_N = mkN "mesenchyme" "mesenchymes" ; -- compound chyme_N ;
-lin rhyme_N = mkN "rhyme" "rhymes" ;
-lin thyme_N = mkN "thyme" "thymes" ;
-lin enzyme_N = mkN "enzyme" "enzymes" ;
-lin coenzyme_N = mkN "coenzyme" "coenzymes" ; -- compound enzyme_N ;
-lin apoenzyme_N = mkN "apoenzyme" "apoenzymes" ; -- compound enzyme_N ;
-lin proenzyme_N = mkN "proenzyme" "proenzymes" ; -- compound enzyme_N ;
-lin lysozyme_N = mkN "lysozyme" "lysozymes" ;
-lin bane_N = mkN "bane" "banes" ;
-lin 'wolf\'s-bane_N' = mkN "wolf's-bane" "wolf's-banes" ; -- compound bane_N ;
-lin fleabane_N = mkN "fleabane" "fleabanes" ; -- compound bane_N ;
-lin dogbane_N = mkN "dogbane" "dogbanes" ; -- compound bane_N ;
-lin bugbane_N = mkN "bugbane" "bugbanes" ; -- compound bane_N ;
-lin henbane_N = mkN "henbane" "henbanes" ; -- compound bane_N ;
-lin wolfsbane_N = mkN "wolfsbane" "wolfsbanes" ; -- compound bane_N ;
-lin sowbane_N = mkN "sowbane" "sowbanes" ; -- compound bane_N ;
-lin cane_N = mkN "cane" "canes" ;
-lin 'sword-cane_N' = mkN "sword-cane" "sword-canes" ; -- compound cane_N ;
-lin 'sugar-cane_N' = mkN "sugar-cane" "sugar-canes" ; -- compound cane_N ;
-lin chicane_N = mkN "chicane" "chicanes" ; -- compound cane_N ;
-lin hurricane_N = mkN "hurricane" "hurricanes" ; -- compound cane_N ;
-lin sugarcane_N = mkN "sugarcane" "sugarcanes" ; -- compound cane_N ;
-lin dane_N = mkN "dane" "danes" ;
-lin lindane_N = mkN "lindane" "lindanes" ; -- compound dane_N ;
-lin cellophane_N = mkN "cellophane" "cellophanes" ;
-lin thane_N = mkN "thane" "thanes" ;
-lin ethane_N = mkN "ethane" "ethanes" ; -- notcompound thane_N ;
-lin methane_N = mkN "methane" "methanes" ; -- compound thane_N ;
-lin aminomethane_N = mkN "aminomethane" "aminomethanes" ; -- compound thane_N ;
-lin nitrochloromethane_N = mkN "nitrochloromethane" "nitrochloromethanes" ; -- compound thane_N ;
-lin dichlorodiphenyltrichloroethane_N = mkN "dichlorodiphenyltrichloroethane" "dichlorodiphenyltrichloroethanes" ; -- compound thane_N ;
-lin urethane_N = mkN "urethane" "urethanes" ; -- compound thane_N ;
-lin polyurethane_N = mkN "polyurethane" "polyurethanes" ; -- compound thane_N ;
-lin halothane_N = mkN "halothane" "halothanes" ; -- compound thane_N ;
-lin lane_N = mkN "lane" "lanes" ;
-lin lepidomelane_N = mkN "lepidomelane" "lepidomelanes" ; -- compound lane_N ;
-lin psilomelane_N = mkN "psilomelane" "psilomelanes" ; -- compound lane_N ;
-lin plane_N = mkN "plane" "planes" ; -- notcompound lane_N ;
-lin 'smoothing-plane_N' = mkN "smoothing-plane" "smoothing-planes" ; -- compound lane_N ;
-lin 'ski-plane_N' = mkN "ski-plane" "ski-planes" ; -- compound lane_N ;
-lin 'jack-plane_N' = mkN "jack-plane" "jack-planes" ; -- compound lane_N ;
-lin seaplane_N = mkN "seaplane" "seaplanes" ; -- compound lane_N ;
-lin aquaplane_N = mkN "aquaplane" "aquaplanes" ; -- compound lane_N ;
-lin midplane_N = mkN "midplane" "midplanes" ; -- compound lane_N ;
-lin biplane_N = mkN "biplane" "biplanes" ; -- compound lane_N ;
-lin tailplane_N = mkN "tailplane" "tailplanes" ; -- compound lane_N ;
-lin monoplane_N = mkN "monoplane" "monoplanes" ; -- compound lane_N ;
-lin hydroplane_N = mkN "hydroplane" "hydroplanes" ; -- compound lane_N ;
-lin aeroplane_N = mkN "aeroplane" "aeroplanes" ; -- compound lane_N ;
-lin warplane_N = mkN "warplane" "warplanes" ; -- compound lane_N ;
-lin airplane_N = mkN "airplane" "airplanes" ; -- compound lane_N ;
-lin floatplane_N = mkN "floatplane" "floatplanes" ; -- compound lane_N ;
-lin purslane_N = mkN "purslane" "purslanes" ; -- compound lane_N ;
-lin mane_N = mkN "mane" "manes" ;
-lin balletomane_N = mkN "balletomane" "balletomanes" ; -- compound mane_N ;
-lin shaggymane_N = mkN "shaggymane" "shaggymanes" ; -- compound mane_N ;
-lin pane_N = mkN "pane" "panes" ;
-lin frangipane_N = mkN "frangipane" "frangipanes" ; -- compound pane_N ;
-lin elecampane_N = mkN "elecampane" "elecampanes" ; -- compound pane_N ;
-lin propane_N = mkN "propane" "propanes" ; -- compound pane_N ;
-lin cyclopropane_N = mkN "cyclopropane" "cyclopropanes" ; -- compound pane_N ;
-lin counterpane_N = mkN "counterpane" "counterpanes" ; -- compound pane_N ;
-lin windowpane_N = mkN "windowpane" "windowpanes" ; -- compound pane_N ;
-lin membrane_N = mkN "membrane" "membranes" ;
-lin crane_N = mkN "crane" "cranes" ;
-lin enflurane_N = mkN "enflurane" "enfluranes" ;
-lin isoflurane_N = mkN "isoflurane" "isofluranes" ;
-lin tisane_N = mkN "tisane" "tisanes" ;
-lin octane_N = mkN "octane" "octanes" ;
-lin tramontane_N = mkN "tramontane" "tramontanes" ;
-lin ultramontane_N = mkN "ultramontane" "ultramontanes" ; -- compound tramontane_N ;
-lin heptane_N = mkN "heptane" "heptanes" ;
-lin butane_N = mkN "butane" "butanes" ;
-lin soutane_N = mkN "soutane" "soutanes" ;
-lin vane_N = mkN "vane" "vanes" ;
-lin 'weather-vane_N' = mkN "weather-vane" "weather-vanes" ; -- compound vane_N ;
-lin pavane_N = mkN "pavane" "pavanes" ; -- compound vane_N ;
-lin weathervane_N = mkN "weathervane" "weathervanes" ; -- compound vane_N ;
-lin wane_N = mkN "wane" "wanes" ;
-lin hexane_N = mkN "hexane" "hexanes" ;
-lin siloxane_N = mkN "siloxane" "siloxanes" ;
-lin acne_N = mkN "acne" "acnes" ;
-lin scene_N = mkN "scene" "scenes" ;
-lin damascene_N = mkN "damascene" "damascenes" ; -- compound scene_N ;
-lin indene_N = mkN "indene" "indenes" ;
-lin gene_N = mkN "gene" "genes" ;
-lin oncogene_N = mkN "oncogene" "oncogenes" ; -- compound gene_N ;
-lin transgene_N = mkN "transgene" "transgenes" ; -- compound gene_N ;
-lin phosgene_N = mkN "phosgene" "phosgenes" ; -- compound gene_N ;
-lin polygene_N = mkN "polygene" "polygenes" ; -- compound gene_N ;
-lin achene_N = mkN "achene" "achenes" ;
-lin clomiphene_N = mkN "clomiphene" "clomiphenes" ;
-lin hexachlorophene_N = mkN "hexachlorophene" "hexachlorophenes" ;
-lin propoxyphene_N = mkN "propoxyphene" "propoxyphenes" ;
-lin sthene_N = mkN "sthene" "sthenes" ;
-lin polythene_N = mkN "polythene" "polythenes" ;
-lin butadiene_N = mkN "butadiene" "butadienes" ;
-lin hygiene_N = mkN "hygiene" "hygienes" ;
-lin alkene_N = mkN "alkene" "alkenes" ;
-lin naphthalene_N = mkN "naphthalene" "naphthalenes" ;
-lin periselene_N = mkN "periselene" "periselenes" ;
-lin aposelene_N = mkN "aposelene" "aposelenes" ;
-lin madrilene_N = mkN "madrilene" "madrilenes" ;
-lin methapyrilene_N = mkN "methapyrilene" "methapyrilenes" ;
-lin silene_N = mkN "silene" "silenes" ;
-lin hellene_N = mkN "hellene" "hellenes" ;
-lin philhellene_N = mkN "philhellene" "philhellenes" ; -- compound hellene_N ;
-lin gasolene_N = mkN "gasolene" "gasolenes" ;
-lin ethylene_N = mkN "ethylene" "ethylenes" ;
-lin trichloroethylene_N = mkN "trichloroethylene" "trichloroethylenes" ; -- compound ethylene_N ;
-lin tetrafluoroethylene_N = mkN "tetrafluoroethylene" "tetrafluoroethylenes" ; -- compound ethylene_N ;
-lin tetrachlorethylene_N = mkN "tetrachlorethylene" "tetrachlorethylenes" ; -- compound ethylene_N ;
-lin polyethylene_N = mkN "polyethylene" "polyethylenes" ; -- compound ethylene_N ;
-lin propylene_N = mkN "propylene" "propylenes" ;
-lin polypropylene_N = mkN "polypropylene" "polypropylenes" ; -- compound propylene_N ;
-lin terylene_N = mkN "terylene" "terylenes" ;
-lin acetylene_N = mkN "acetylene" "acetylenes" ;
-lin oxyacetylene_N = mkN "oxyacetylene" "oxyacetylenes" ; -- compound acetylene_N ;
-lin butylene_N = mkN "butylene" "butylenes" ;
-lin isobutylene_N = mkN "isobutylene" "isobutylenes" ; -- compound butylene_N ;
-lin polybutylene_N = mkN "polybutylene" "polybutylenes" ; -- compound butylene_N ;
-lin xylene_N = mkN "xylene" "xylenes" ;
-lin spodumene_N = mkN "spodumene" "spodumenes" ;
-lin cymene_N = mkN "cymene" "cymenes" ;
-lin retinene_N = mkN "retinene" "retinenes" ;
-lin limonene_N = mkN "limonene" "limonenes" ;
-lin lycopene_N = mkN "lycopene" "lycopenes" ;
-lin terpene_N = mkN "terpene" "terpenes" ;
-lin fullerene_N = mkN "fullerene" "fullerenes" ;
-lin buckminsterfullerene_N = mkN "buckminsterfullerene" "buckminsterfullerenes" ; -- compound fullerene_N ;
-lin gangrene_N = mkN "gangrene" "gangrenes" ;
-lin neoprene_N = mkN "neoprene" "neoprenes" ;
-lin chloroprene_N = mkN "chloroprene" "chloroprenes" ;
-lin pyrene_N = mkN "pyrene" "pyrenes" ;
-lin styrene_N = mkN "styrene" "styrenes" ;
-lin polystyrene_N = mkN "polystyrene" "polystyrenes" ; -- compound styrene_N ;
-lin sene_N = mkN "sene" "senes" ;
-lin kerosene_N = mkN "kerosene" "kerosenes" ; -- compound sene_N ;
-lin ctene_N = mkN "ctene" "ctenes" ;
-lin zygotene_N = mkN "zygotene" "zygotenes" ;
-lin diplotene_N = mkN "diplotene" "diplotenes" ;
-lin carotene_N = mkN "carotene" "carotenes" ;
-lin leptotene_N = mkN "leptotene" "leptotenes" ;
-lin pachytene_N = mkN "pachytene" "pachytenes" ;
-lin toluene_N = mkN "toluene" "toluenes" ;
-lin trinitrotoluene_N = mkN "trinitrotoluene" "trinitrotoluenes" ; -- compound toluene_N ;
-lin thiothixene_N = mkN "thiothixene" "thiothixenes" ;
-lin pyroxene_N = mkN "pyroxene" "pyroxenes" ;
-lin benzene_N = mkN "benzene" "benzenes" ;
-lin alkylbenzene_N = mkN "alkylbenzene" "alkylbenzenes" ; -- compound benzene_N ;
-lin chlorobenzene_N = mkN "chlorobenzene" "chlorobenzenes" ; -- compound benzene_N ;
-lin nitrobenzene_N = mkN "nitrobenzene" "nitrobenzenes" ; -- compound benzene_N ;
-lin Champagne_N = mkN "Champagne" "Champagnes" ;
-lin ligne_N = mkN "ligne" "lignes" ;
-lin cologne_N = mkN "cologne" "colognes" ;
-lin 'eau de cologne_N' = mkN "eau de cologne" "eau de colognes" ; -- compound cologne_N ;
-lin epergne_N = mkN "epergne" "epergnes" ;
-lin daphne_N = mkN "daphne" "daphnes" ;
-lin tetracaine_N = mkN "tetracaine" "tetracaines" ;
-lin butacaine_N = mkN "butacaine" "butacaines" ;
-lin cocaine_N = mkN "cocaine" "cocaines" ;
-lin piperocaine_N = mkN "piperocaine" "piperocaines" ;
-lin procaine_N = mkN "procaine" "procaines" ;
-lin benzocaine_N = mkN "benzocaine" "benzocaines" ;
-lin dibucaine_N = mkN "dibucaine" "dibucaines" ;
-lin demimondaine_N = mkN "demimondaine" "demimondaines" ;
-lin chatelaine_N = mkN "chatelaine" "chatelaines" ;
-lin ptomaine_N = mkN "ptomaine" "ptomaines" ;
-lin migraine_N = mkN "migraine" "migraines" ;
-lin moraine_N = mkN "moraine" "moraines" ;
-lin betaine_N = mkN "betaine" "betaines" ;
-lin bine_N = mkN "bine" "bines" ;
-lin woodbine_N = mkN "woodbine" "woodbines" ; -- compound bine_N ;
-lin combine_N = mkN "combine" "combines" ; -- compound bine_N ;
-lin columbine_N = mkN "columbine" "columbines" ; -- compound bine_N ;
-lin carbine_N = mkN "carbine" "carbines" ; -- compound bine_N ;
-lin turbine_N = mkN "turbine" "turbines" ; -- compound bine_N ;
-lin concubine_N = mkN "concubine" "concubines" ; -- compound bine_N ;
-lin thylacine_N = mkN "thylacine" "thylacines" ;
-lin vaccine_N = mkN "vaccine" "vaccines" ;
-lin fettuccine_N = mkN "fettuccine" "fettuccines" ;
-lin australopithecine_N = mkN "australopithecine" "australopithecines" ;
-lin dryopithecine_N = mkN "dryopithecine" "dryopithecines" ;
-lin medicine_N = mkN "medicine" "medicines" ;
-lin biomedicine_N = mkN "biomedicine" "biomedicines" ; -- compound medicine_N ;
-lin aeromedicine_N = mkN "aeromedicine" "aeromedicines" ; -- compound medicine_N ;
-lin colchicine_N = mkN "colchicine" "colchicines" ;
-lin plasticine_N = mkN "plasticine" "plasticines" ;
-lin pentazocine_N = mkN "pentazocine" "pentazocines" ;
-lin putrescine_N = mkN "putrescine" "putrescines" ;
-lin oscine_N = mkN "oscine" "oscines" ;
-lin leucine_N = mkN "leucine" "leucines" ;
-lin isoleucine_N = mkN "isoleucine" "isoleucines" ; -- compound leucine_N ;
-lin brucine_N = mkN "brucine" "brucines" ;
-lin glycine_N = mkN "glycine" "glycines" ;
-lin muscadine_N = mkN "muscadine" "muscadines" ;
-lin grenadine_N = mkN "grenadine" "grenadines" ;
-lin cyproheptadine_N = mkN "cyproheptadine" "cyproheptadines" ;
-lin tyrocidine_N = mkN "tyrocidine" "tyrocidines" ;
-lin phencyclidine_N = mkN "phencyclidine" "phencyclidines" ;
-lin procyclidine_N = mkN "procyclidine" "procyclidines" ;
-lin pyrimidine_N = mkN "pyrimidine" "pyrimidines" ;
-lin deoxythymidine_N = mkN "deoxythymidine" "deoxythymidines" ;
-lin quinidine_N = mkN "quinidine" "quinidines" ;
-lin clonidine_N = mkN "clonidine" "clonidines" ;
-lin meperidine_N = mkN "meperidine" "meperidines" ;
-lin cephaloridine_N = mkN "cephaloridine" "cephaloridines" ;
-lin floxuridine_N = mkN "floxuridine" "floxuridines" ;
-lin pyridine_N = mkN "pyridine" "pyridines" ;
-lin sulfapyridine_N = mkN "sulfapyridine" "sulfapyridines" ; -- compound pyridine_N ;
-lin triphosphopyridine_N = mkN "triphosphopyridine" "triphosphopyridines" ; -- compound pyridine_N ;
-lin phenazopyridine_N = mkN "phenazopyridine" "phenazopyridines" ; -- compound pyridine_N ;
-lin cimetidine_N = mkN "cimetidine" "cimetidines" ;
-lin ranitidine_N = mkN "ranitidine" "ranitidines" ;
-lin famotidine_N = mkN "famotidine" "famotidines" ;
-lin histidine_N = mkN "histidine" "histidines" ;
-lin deoxycytidine_N = mkN "deoxycytidine" "deoxycytidines" ;
-lin chlorhexidine_N = mkN "chlorhexidine" "chlorhexidines" ;
-lin brigandine_N = mkN "brigandine" "brigandines" ;
-lin celandine_N = mkN "celandine" "celandines" ;
-lin almandine_N = mkN "almandine" "almandines" ;
-lin undine_N = mkN "undine" "undines" ;
-lin iodine_N = mkN "iodine" "iodines" ;
-lin gabardine_N = mkN "gabardine" "gabardines" ;
-lin sardine_N = mkN "sardine" "sardines" ;
-lin gaberdine_N = mkN "gaberdine" "gaberdines" ;
-lin delavirdine_N = mkN "delavirdine" "delavirdines" ;
-lin sourdine_N = mkN "sourdine" "sourdines" ;
-lin lamivudine_N = mkN "lamivudine" "lamivudines" ;
-lin zidovudine_N = mkN "zidovudine" "zidovudines" ;
-lin codeine_N = mkN "codeine" "codeines" ;
-lin caffeine_N = mkN "caffeine" "caffeines" ;
-lin vicereine_N = mkN "vicereine" "vicereines" ;
-lin seine_N = mkN "seine" "seines" ;
-lin cysteine_N = mkN "cysteine" "cysteines" ;
-lin fine_N = mkN "fine" "fines" ;
-lin terbinafine_N = mkN "terbinafine" "terbinafines" ; -- compound fine_N ;
-lin affine_N = mkN "affine" "affines" ; -- compound fine_N ;
-lin confine_N = mkN "confine" "confines" ; -- compound fine_N ;
-lin asparagine_N = mkN "asparagine" "asparagines" ;
-lin aborigine_N = mkN "aborigine" "aborigines" ;
-lin engine_N = mkN "engine" "engines" ;
-lin 'fire-engine_N' = mkN "fire-engine" "fire-engines" ; -- compound engine_N ;
-lin 'steam-engine_N' = mkN "steam-engine" "steam-engines" ; -- compound engine_N ;
-lin 'traction-engine_N' = mkN "traction-engine" "traction-engines" ; -- compound engine_N ;
-lin 'gas-engine_N' = mkN "gas-engine" "gas-engines" ; -- compound engine_N ;
-lin 'pilot-engine_N' = mkN "pilot-engine" "pilot-engines" ; -- compound engine_N ;
-lin aubergine_N = mkN "aubergine" "aubergines" ;
-lin chine_N = mkN "chine" "chines" ;
-lin machine_N = mkN "machine" "machines" ; -- compound chine_N ;
-lin 'adding-machine_N' = mkN "adding-machine" "adding-machines" ; -- compound chine_N ;
-lin 'weighing-machine_N' = mkN "weighing-machine" "weighing-machines" ; -- compound chine_N ;
-lin 'washing-machine_N' = mkN "washing-machine" "washing-machines" ; -- compound chine_N ;
-lin 'threshing-machine_N' = mkN "threshing-machine" "threshing-machines" ; -- compound chine_N ;
-lin 'bathing-machine_N' = mkN "bathing-machine" "bathing-machines" ; -- compound chine_N ;
-lin 'milking-machine_N' = mkN "milking-machine" "milking-machines" ; -- compound chine_N ;
-lin 'franking-machine_N' = mkN "franking-machine" "franking-machines" ; -- compound chine_N ;
-lin 'stapling-machine_N' = mkN "stapling-machine" "stapling-machines" ; -- compound chine_N ;
-lin 'knitting-machine_N' = mkN "knitting-machine" "knitting-machines" ; -- compound chine_N ;
-lin 'sewing-machine_N' = mkN "sewing-machine" "sewing-machines" ; -- compound chine_N ;
-lin 'slot-machine_N' = mkN "slot-machine" "slot-machines" ; -- compound chine_N ;
-lin archine_N = mkN "archine" "archines" ; -- compound chine_N ;
-lin trephine_N = mkN "trephine" "trephines" ;
-lin nalorphine_N = mkN "nalorphine" "nalorphines" ;
-lin morphine_N = mkN "morphine" "morphines" ;
-lin apomorphine_N = mkN "apomorphine" "apomorphines" ; -- compound morphine_N ;
-lin phosphine_N = mkN "phosphine" "phosphines" ;
-lin shine_N = mkN "shine" "shines" ;
-lin shoeshine_N = mkN "shoeshine" "shoeshines" ; -- compound shine_N ;
-lin moonshine_N = mkN "moonshine" "moonshines" ; -- compound shine_N ;
-lin sunshine_N = mkN "sunshine" "sunshines" ; -- compound shine_N ;
-lin ornithine_N = mkN "ornithine" "ornithines" ;
-lin xanthine_N = mkN "xanthine" "xanthines" ;
-lin whine_N = mkN "whine" "whines" ;
-lin lymphokine_N = mkN "lymphokine" "lymphokines" ;
-lin cytokine_N = mkN "cytokine" "cytokines" ;
-lin line_N = mkN "line" "lines" ;
-lin 'leger line_N' = mkN "leger line" "leger lines" ; -- compound line_N ;
-lin 'load-line_N' = mkN "load-line" "load-lines" ; -- compound line_N ;
-lin 'fishing-line_N' = mkN "fishing-line" "fishing-lines" ; -- compound line_N ;
-lin 'firing-line_N' = mkN "firing-line" "firing-lines" ; -- compound line_N ;
-lin 'towing-line_N' = mkN "towing-line" "towing-lines" ; -- compound line_N ;
-lin 'telegraph-line_N' = mkN "telegraph-line" "telegraph-lines" ; -- compound line_N ;
-lin 'sash-line_N' = mkN "sash-line" "sash-lines" ; -- compound line_N ;
-lin 'trunk-line_N' = mkN "trunk-line" "trunk-lines" ; -- compound line_N ;
-lin 'goal-line_N' = mkN "goal-line" "goal-lines" ; -- compound line_N ;
-lin 'loop-line_N' = mkN "loop-line" "loop-lines" ; -- compound line_N ;
-lin 'water-line_N' = mkN "water-line" "water-lines" ; -- compound line_N ;
-lin 'night-line_N' = mkN "night-line" "night-lines" ; -- compound line_N ;
-lin 'snow-line_N' = mkN "snow-line" "snow-lines" ; -- compound line_N ;
-lin mescaline_N = mkN "mescaline" "mescalines" ; -- compound line_N ;
-lin tourmaline_N = mkN "tourmaline" "tourmalines" ; -- compound line_N ;
-lin noradrenaline_N = mkN "noradrenaline" "noradrenalines" ; -- compound line_N ;
-lin praline_N = mkN "praline" "pralines" ; -- compound line_N ;
-lin sertraline_N = mkN "sertraline" "sertralines" ; -- compound line_N ;
-lin saline_N = mkN "saline" "salines" ; -- compound line_N ;
-lin valine_N = mkN "valine" "valines" ; -- compound line_N ;
-lin hyaline_N = mkN "hyaline" "hyalines" ; -- compound line_N ;
-lin decline_N = mkN "decline" "declines" ; -- compound line_N ;
-lin incline_N = mkN "incline" "inclines" ; -- compound line_N ;
-lin monocline_N = mkN "monocline" "monoclines" ; -- compound line_N ;
-lin tetracycline_N = mkN "tetracycline" "tetracyclines" ; -- compound line_N ;
-lin chlortetracycline_N = mkN "chlortetracycline" "chlortetracyclines" ; -- compound line_N ;
-lin oxytetracycline_N = mkN "oxytetracycline" "oxytetracyclines" ; -- compound line_N ;
-lin minocycline_N = mkN "minocycline" "minocyclines" ; -- compound line_N ;
-lin doxycycline_N = mkN "doxycycline" "doxycyclines" ; -- compound line_N ;
-lin deadline_N = mkN "deadline" "deadlines" ; -- compound line_N ;
-lin headline_N = mkN "headline" "headlines" ; -- compound line_N ;
-lin breadline_N = mkN "breadline" "breadlines" ; -- compound line_N ;
-lin handline_N = mkN "handline" "handlines" ; -- compound line_N ;
-lin sideline_N = mkN "sideline" "sidelines" ; -- compound line_N ;
-lin guideline_N = mkN "guideline" "guidelines" ; -- compound line_N ;
-lin beeline_N = mkN "beeline" "beelines" ; -- compound line_N ;
-lin feline_N = mkN "feline" "felines" ; -- compound line_N ;
-lin lifeline_N = mkN "lifeline" "lifelines" ; -- compound line_N ;
-lin nepheline_N = mkN "nepheline" "nephelines" ; -- compound line_N ;
-lin anopheline_N = mkN "anopheline" "anophelines" ; -- compound line_N ;
-lin timeline_N = mkN "timeline" "timelines" ; -- compound line_N ;
-lin pipeline_N = mkN "pipeline" "pipelines" ; -- compound line_N ;
-lin shoreline_N = mkN "shoreline" "shorelines" ; -- compound line_N ;
-lin baseline_N = mkN "baseline" "baselines" ; -- compound line_N ;
-lin vaseline_N = mkN "vaseline" "vaselines" ; -- compound line_N ;
-lin dateline_N = mkN "dateline" "datelines" ; -- compound line_N ;
-lin touchline_N = mkN "touchline" "touchlines" ; -- compound line_N ;
-lin aniline_N = mkN "aniline" "anilines" ; -- compound line_N ;
-lin neckline_N = mkN "neckline" "necklines" ; -- compound line_N ;
-lin balkline_N = mkN "balkline" "balklines" ; -- compound line_N ;
-lin fedelline_N = mkN "fedelline" "fedellines" ; -- compound line_N ;
-lin milline_N = mkN "milline" "millines" ; -- compound line_N ;
-lin citrulline_N = mkN "citrulline" "citrullines" ; -- compound line_N ;
-lin pentoxifylline_N = mkN "pentoxifylline" "pentoxifyllines" ; -- compound line_N ;
-lin theophylline_N = mkN "theophylline" "theophyllines" ; -- compound line_N ;
-lin aminophylline_N = mkN "aminophylline" "aminophyllines" ; -- compound line_N ;
-lin tramline_N = mkN "tramline" "tramlines" ; -- compound line_N ;
-lin hemline_N = mkN "hemline" "hemlines" ; -- compound line_N ;
-lin choline_N = mkN "choline" "cholines" ; -- compound line_N ;
-lin methacholine_N = mkN "methacholine" "methacholines" ; -- compound line_N ;
-lin succinylcholine_N = mkN "succinylcholine" "succinylcholines" ; -- compound line_N ;
-lin acetylcholine_N = mkN "acetylcholine" "acetylcholines" ; -- compound line_N ;
-lin crinoline_N = mkN "crinoline" "crinolines" ; -- compound line_N ;
-lin trampoline_N = mkN "trampoline" "trampolines" ; -- compound line_N ;
-lin proline_N = mkN "proline" "prolines" ; -- compound line_N ;
-lin hydroxyproline_N = mkN "hydroxyproline" "hydroxyprolines" ; -- compound line_N ;
-lin gasoline_N = mkN "gasoline" "gasolines" ; -- compound line_N ;
-lin naphazoline_N = mkN "naphazoline" "naphazolines" ; -- compound line_N ;
-lin tolazoline_N = mkN "tolazoline" "tolazolines" ; -- compound line_N ;
-lin discipline_N = mkN "discipline" "disciplines" ; -- compound line_N ;
-lin indiscipline_N = mkN "indiscipline" "indisciplines" ; -- compound line_N ;
-lin hipline_N = mkN "hipline" "hiplines" ; -- compound line_N ;
-lin compline_N = mkN "compline" "complines" ; -- compound line_N ;
-lin dropline_N = mkN "dropline" "droplines" ; -- compound line_N ;
-lin spline_N = mkN "spline" "splines" ; -- notcompound line_N ;
-lin marline_N = mkN "marline" "marlines" ; -- compound line_N ;
-lin underline_N = mkN "underline" "underlines" ; -- compound line_N ;
-lin borderline_N = mkN "borderline" "borderlines" ; -- compound line_N ;
-lin waterline_N = mkN "waterline" "waterlines" ; -- compound line_N ;
-lin centerline_N = mkN "centerline" "centerlines" ; -- compound line_N ;
-lin airline_N = mkN "airline" "airlines" ; -- compound line_N ;
-lin hairline_N = mkN "hairline" "hairlines" ; -- compound line_N ;
-lin clothesline_N = mkN "clothesline" "clotheslines" ; -- compound line_N ;
-lin ratline_N = mkN "ratline" "ratlines" ; -- compound line_N ;
-lin coastline_N = mkN "coastline" "coastlines" ; -- compound line_N ;
-lin waistline_N = mkN "waistline" "waistlines" ; -- compound line_N ;
-lin outline_N = mkN "outline" "outlines" ; -- compound line_N ;
-lin masculine_N = mkN "masculine" "masculines" ; -- compound line_N ;
-lin bowline_N = mkN "bowline" "bowlines" ; -- compound line_N ;
-lin towline_N = mkN "towline" "towlines" ; -- compound line_N ;
-lin skyline_N = mkN "skyline" "skylines" ; -- compound line_N ;
-lin storyline_N = mkN "storyline" "storylines" ; -- compound line_N ;
-lin amitriptyline_N = mkN "amitriptyline" "amitriptylines" ; -- compound line_N ;
-lin protriptyline_N = mkN "protriptyline" "protriptylines" ; -- compound line_N ;
-lin nortriptyline_N = mkN "nortriptyline" "nortriptylines" ; -- compound line_N ;
-lin mine_N = mkN "mine" "mines" ;
-lin amine_N = mkN "amine" "amines" ; -- notcompound mine_N ;
-lin famine_N = mkN "famine" "famines" ; -- compound mine_N ;
-lin gamine_N = mkN "gamine" "gamines" ; -- compound mine_N ;
-lin diamine_N = mkN "diamine" "diamines" ; -- compound mine_N ;
-lin melamine_N = mkN "melamine" "melamines" ; -- compound mine_N ;
-lin pyrilamine_N = mkN "pyrilamine" "pyrilamines" ; -- compound mine_N ;
-lin gallamine_N = mkN "gallamine" "gallamines" ; -- compound mine_N ;
-lin penicillamine_N = mkN "penicillamine" "penicillamines" ; -- compound mine_N ;
-lin catecholamine_N = mkN "catecholamine" "catecholamines" ; -- compound mine_N ;
-lin phenylpropanolamine_N = mkN "phenylpropanolamine" "phenylpropanolamines" ; -- compound mine_N ;
-lin scopolamine_N = mkN "scopolamine" "scopolamines" ; -- compound mine_N ;
-lin prolamine_N = mkN "prolamine" "prolamines" ; -- compound mine_N ;
-lin phentolamine_N = mkN "phentolamine" "phentolamines" ; -- compound mine_N ;
-lin enamine_N = mkN "enamine" "enamines" ; -- compound mine_N ;
-lin methenamine_N = mkN "methenamine" "methenamines" ; -- compound mine_N ;
-lin monoamine_N = mkN "monoamine" "monoamines" ; -- compound mine_N ;
-lin dopamine_N = mkN "dopamine" "dopamines" ; -- compound mine_N ;
-lin diphenhydramine_N = mkN "diphenhydramine" "diphenhydramines" ; -- compound mine_N ;
-lin pheniramine_N = mkN "pheniramine" "pheniramines" ; -- compound mine_N ;
-lin chloramine_N = mkN "chloramine" "chloramines" ; -- compound mine_N ;
-lin imipramine_N = mkN "imipramine" "imipramines" ; -- compound mine_N ;
-lin trimipramine_N = mkN "trimipramine" "trimipramines" ; -- compound mine_N ;
-lin clomipramine_N = mkN "clomipramine" "clomipramines" ; -- compound mine_N ;
-lin desipramine_N = mkN "desipramine" "desipramines" ; -- compound mine_N ;
-lin tyramine_N = mkN "tyramine" "tyramines" ; -- compound mine_N ;
-lin glucosamine_N = mkN "glucosamine" "glucosamines" ; -- compound mine_N ;
-lin etamine_N = mkN "etamine" "etamines" ; -- compound mine_N ;
-lin amphetamine_N = mkN "amphetamine" "amphetamines" ; -- compound mine_N ;
-lin methamphetamine_N = mkN "methamphetamine" "methamphetamines" ; -- compound mine_N ;
-lin methylenedioxymethamphetamine_N = mkN "methylenedioxymethamphetamine" "methylenedioxymethamphetamines" ; -- compound mine_N ;
-lin ketamine_N = mkN "ketamine" "ketamines" ; -- compound mine_N ;
-lin ergotamine_N = mkN "ergotamine" "ergotamines" ; -- compound mine_N ;
-lin protamine_N = mkN "protamine" "protamines" ; -- compound mine_N ;
-lin histamine_N = mkN "histamine" "histamines" ; -- compound mine_N ;
-lin antihistamine_N = mkN "antihistamine" "antihistamines" ; -- compound mine_N ;
-lin glutamine_N = mkN "glutamine" "glutamines" ; -- compound mine_N ;
-lin phenyltoloxamine_N = mkN "phenyltoloxamine" "phenyltoloxamines" ; -- compound mine_N ;
-lin hyoscyamine_N = mkN "hyoscyamine" "hyoscyamines" ; -- compound mine_N ;
-lin goldmine_N = mkN "goldmine" "goldmines" ; -- compound mine_N ;
-lin landmine_N = mkN "landmine" "landmines" ; -- compound mine_N ;
-lin neostigmine_N = mkN "neostigmine" "neostigmines" ; -- compound mine_N ;
-lin physostigmine_N = mkN "physostigmine" "physostigmines" ; -- compound mine_N ;
-lin calcimine_N = mkN "calcimine" "calcimines" ; -- compound mine_N ;
-lin oxyphencyclimine_N = mkN "oxyphencyclimine" "oxyphencyclimines" ; -- compound mine_N ;
-lin coalmine_N = mkN "coalmine" "coalmines" ; -- compound mine_N ;
-lin ammine_N = mkN "ammine" "ammines" ; -- compound mine_N ;
-lin bromine_N = mkN "bromine" "bromines" ; -- compound mine_N ;
-lin merbromine_N = mkN "merbromine" "merbromines" ; -- compound mine_N ;
-lin tranylcypromine_N = mkN "tranylcypromine" "tranylcypromines" ; -- compound mine_N ;
-lin carmine_N = mkN "carmine" "carmines" ; -- compound mine_N ;
-lin bellarmine_N = mkN "bellarmine" "bellarmines" ; -- compound mine_N ;
-lin ermine_N = mkN "ermine" "ermines" ; -- compound mine_N ;
-lin countermine_N = mkN "countermine" "countermines" ; -- compound mine_N ;
-lin jasmine_N = mkN "jasmine" "jasmines" ; -- compound mine_N ;
-lin thymine_N = mkN "thymine" "thymines" ; -- compound mine_N ;
-lin canine_N = mkN "canine" "canines" ;
-lin alanine_N = mkN "alanine" "alanines" ;
-lin phenylalanine_N = mkN "phenylalanine" "phenylalanines" ; -- compound alanine_N ;
-lin safranine_N = mkN "safranine" "safranines" ;
-lin guanine_N = mkN "guanine" "guanines" ;
-lin thioguanine_N = mkN "thioguanine" "thioguanines" ; -- compound guanine_N ;
-lin canavanine_N = mkN "canavanine" "canavanines" ;
-lin mezzanine_N = mkN "mezzanine" "mezzanines" ;
-lin adenine_N = mkN "adenine" "adenines" ;
-lin strychnine_N = mkN "strychnine" "strychnines" ;
-lin arginine_N = mkN "arginine" "arginines" ;
-lin feminine_N = mkN "feminine" "feminines" ;
-lin quinine_N = mkN "quinine" "quinines" ;
-lin threonine_N = mkN "threonine" "threonines" ;
-lin buteonine_N = mkN "buteonine" "buteonines" ;
-lin cinchonine_N = mkN "cinchonine" "cinchonines" ;
-lin methionine_N = mkN "methionine" "methionines" ;
-lin thyronine_N = mkN "thyronine" "thyronines" ;
-lin iodothyronine_N = mkN "iodothyronine" "iodothyronines" ; -- compound thyronine_N ;
-lin triiodothyronine_N = mkN "triiodothyronine" "triiodothyronines" ; -- compound thyronine_N ;
-lin macedoine_N = mkN "macedoine" "macedoines" ;
-lin heroine_N = mkN "heroine" "heroines" ;
-lin pine_N = mkN "pine" "pines" ;
-lin rapine_N = mkN "rapine" "rapines" ; -- compound pine_N ;
-lin nevirapine_N = mkN "nevirapine" "nevirapines" ; -- compound pine_N ;
-lin loxapine_N = mkN "loxapine" "loxapines" ; -- compound pine_N ;
-lin clozapine_N = mkN "clozapine" "clozapines" ; -- compound pine_N ;
-lin benzodiazepine_N = mkN "benzodiazepine" "benzodiazepines" ; -- compound pine_N ;
-lin nifedipine_N = mkN "nifedipine" "nifedipines" ; -- compound pine_N ;
-lin transalpine_N = mkN "transalpine" "transalpines" ; -- compound pine_N ;
-lin chopine_N = mkN "chopine" "chopines" ; -- compound pine_N ;
-lin scallopine_N = mkN "scallopine" "scallopines" ; -- compound pine_N ;
-lin atropine_N = mkN "atropine" "atropines" ; -- compound pine_N ;
-lin Philippine_N = mkN "Philippine" "Philippines" ; -- compound pine_N ;
-lin pilocarpine_N = mkN "pilocarpine" "pilocarpines" ; -- compound pine_N ;
-lin reserpine_N = mkN "reserpine" "reserpines" ; -- compound pine_N ;
-lin orpine_N = mkN "orpine" "orpines" ; -- compound pine_N ;
-lin spine_N = mkN "spine" "spines" ; -- notcompound pine_N ;
-lin porcupine_N = mkN "porcupine" "porcupines" ; -- compound pine_N ;
-lin lupine_N = mkN "lupine" "lupines" ; -- compound pine_N ;
-lin acarine_N = mkN "acarine" "acarines" ;
-lin gregarine_N = mkN "gregarine" "gregarines" ;
-lin margarine_N = mkN "margarine" "margarines" ;
-lin marine_N = mkN "marine" "marines" ;
-lin ultramarine_N = mkN "ultramarine" "ultramarines" ; -- compound marine_N ;
-lin aquamarine_N = mkN "aquamarine" "aquamarines" ; -- compound marine_N ;
-lin submarine_N = mkN "submarine" "submarines" ; -- compound marine_N ;
-lin tubocurarine_N = mkN "tubocurarine" "tubocurarines" ;
-lin nectarine_N = mkN "nectarine" "nectarines" ;
-lin brine_N = mkN "brine" "brines" ;
-lin atabrine_N = mkN "atabrine" "atabrines" ; -- compound brine_N ;
-lin quinacrine_N = mkN "quinacrine" "quinacrines" ;
-lin orphenadrine_N = mkN "orphenadrine" "orphenadrines" ;
-lin ephedrine_N = mkN "ephedrine" "ephedrines" ;
-lin pseudoephedrine_N = mkN "pseudoephedrine" "pseudoephedrines" ; -- compound ephedrine_N ;
-lin benzedrine_N = mkN "benzedrine" "benzedrines" ;
-lin alexandrine_N = mkN "alexandrine" "alexandrines" ;
-lin glycerine_N = mkN "glycerine" "glycerines" ;
-lin nitroglycerine_N = mkN "nitroglycerine" "nitroglycerines" ; -- compound glycerine_N ;
-lin tangerine_N = mkN "tangerine" "tangerines" ;
-lin serine_N = mkN "serine" "serines" ;
-lin cycloserine_N = mkN "cycloserine" "cycloserines" ; -- compound serine_N ;
-lin passerine_N = mkN "passerine" "passerines" ; -- compound serine_N ;
-lin cadaverine_N = mkN "cadaverine" "cadaverines" ;
-lin papaverine_N = mkN "papaverine" "papaverines" ;
-lin wolverine_N = mkN "wolverine" "wolverines" ;
-lin peregrine_N = mkN "peregrine" "peregrines" ;
-lin phenylephrine_N = mkN "phenylephrine" "phenylephrines" ;
-lin epinephrine_N = mkN "epinephrine" "epinephrines" ;
-lin shrine_N = mkN "shrine" "shrines" ;
-lin sapphirine_N = mkN "sapphirine" "sapphirines" ;
-lin helleborine_N = mkN "helleborine" "helleborines" ;
-lin chlorine_N = mkN "chlorine" "chlorines" ;
-lin radiochlorine_N = mkN "radiochlorine" "radiochlorines" ; -- compound chlorine_N ;
-lin fluorine_N = mkN "fluorine" "fluorines" ;
-lin cyclobenzaprine_N = mkN "cyclobenzaprine" "cyclobenzaprines" ;
-lin azathioprine_N = mkN "azathioprine" "azathioprines" ;
-lin terrine_N = mkN "terrine" "terrines" ;
-lin viverrine_N = mkN "viverrine" "viverrines" ;
-lin latrine_N = mkN "latrine" "latrines" ;
-lin doctrine_N = mkN "doctrine" "doctrines" ;
-lin citrine_N = mkN "citrine" "citrines" ;
-lin urine_N = mkN "urine" "urines" ;
-lin taurine_N = mkN "taurine" "taurines" ; -- compound urine_N ;
-lin figurine_N = mkN "figurine" "figurines" ; -- compound urine_N ;
-lin murine_N = mkN "murine" "murines" ; -- notcompound urine_N ;
-lin tambourine_N = mkN "tambourine" "tambourines" ; -- compound urine_N ;
-lin purine_N = mkN "purine" "purines" ; -- notcompound urine_N ;
-lin mercaptopurine_N = mkN "mercaptopurine" "mercaptopurines" ; -- compound urine_N ;
-lin aminopyrine_N = mkN "aminopyrine" "aminopyrines" ;
-lin sine_N = mkN "sine" "sines" ;
-lin cuisine_N = mkN "cuisine" "cuisines" ; -- compound sine_N ;
-lin cosine_N = mkN "cosine" "cosines" ; -- compound sine_N ;
-lin sarcosine_N = mkN "sarcosine" "sarcosines" ; -- compound sine_N ;
-lin deoxyguanosine_N = mkN "deoxyguanosine" "deoxyguanosines" ; -- compound sine_N ;
-lin adenosine_N = mkN "adenosine" "adenosines" ; -- compound sine_N ;
-lin deoxyadenosine_N = mkN "deoxyadenosine" "deoxyadenosines" ; -- compound sine_N ;
-lin inosine_N = mkN "inosine" "inosines" ; -- compound sine_N ;
-lin dideoxyinosine_N = mkN "dideoxyinosine" "dideoxyinosines" ; -- compound sine_N ;
-lin tyrosine_N = mkN "tyrosine" "tyrosines" ; -- compound sine_N ;
-lin iodotyrosine_N = mkN "iodotyrosine" "iodotyrosines" ; -- compound sine_N ;
-lin cytosine_N = mkN "cytosine" "cytosines" ; -- compound sine_N ;
-lin dideoxycytosine_N = mkN "dideoxycytosine" "dideoxycytosines" ; -- compound sine_N ;
-lin arsine_N = mkN "arsine" "arsines" ; -- compound sine_N ;
-lin bassine_N = mkN "bassine" "bassines" ; -- compound sine_N ;
-lin limousine_N = mkN "limousine" "limousines" ; -- compound sine_N ;
-lin lysine_N = mkN "lysine" "lysines" ; -- compound sine_N ;
-lin tine_N = mkN "tine" "tines" ;
-lin creatine_N = mkN "creatine" "creatines" ; -- compound tine_N ;
-lin phosphocreatine_N = mkN "phosphocreatine" "phosphocreatines" ; -- compound tine_N ;
-lin dessiatine_N = mkN "dessiatine" "dessiatines" ; -- compound tine_N ;
-lin palatine_N = mkN "palatine" "palatines" ; -- compound tine_N ;
-lin gelatine_N = mkN "gelatine" "gelatines" ; -- compound tine_N ;
-lin astatine_N = mkN "astatine" "astatines" ; -- compound tine_N ;
-lin benedictine_N = mkN "benedictine" "benedictines" ; -- compound tine_N ;
-lin mexiletine_N = mkN "mexiletine" "mexiletines" ; -- compound tine_N ;
-lin reboxetine_N = mkN "reboxetine" "reboxetines" ; -- compound tine_N ;
-lin fluoxetine_N = mkN "fluoxetine" "fluoxetines" ; -- compound tine_N ;
-lin saltine_N = mkN "saltine" "saltines" ; -- compound tine_N ;
-lin brigantine_N = mkN "brigantine" "brigantines" ; -- compound tine_N ;
-lin brilliantine_N = mkN "brilliantine" "brilliantines" ; -- compound tine_N ;
-lin galantine_N = mkN "galantine" "galantines" ; -- compound tine_N ;
-lin eglantine_N = mkN "eglantine" "eglantines" ; -- compound tine_N ;
-lin quarantine_N = mkN "quarantine" "quarantines" ; -- compound tine_N ;
-lin levantine_N = mkN "levantine" "levantines" ; -- compound tine_N ;
-lin dentine_N = mkN "dentine" "dentines" ; -- compound tine_N ;
-lin argentine_N = mkN "argentine" "argentines" ; -- compound tine_N ;
-lin valentine_N = mkN "valentine" "valentines" ; -- compound tine_N ;
-lin clementine_N = mkN "clementine" "clementines" ; -- compound tine_N ;
-lin turpentine_N = mkN "turpentine" "turpentines" ; -- compound tine_N ;
-lin tontine_N = mkN "tontine" "tontines" ; -- compound tine_N ;
-lin nicotine_N = mkN "nicotine" "nicotines" ; -- compound tine_N ;
-lin guillotine_N = mkN "guillotine" "guillotines" ; -- compound tine_N ;
-lin serotine_N = mkN "serotine" "serotines" ; -- compound tine_N ;
-lin libertine_N = mkN "libertine" "libertines" ; -- compound tine_N ;
-lin vinblastine_N = mkN "vinblastine" "vinblastines" ; -- compound tine_N ;
-lin intestine_N = mkN "intestine" "intestines" ; -- compound tine_N ;
-lin philistine_N = mkN "philistine" "philistines" ; -- compound tine_N ;
-lin vincristine_N = mkN "vincristine" "vincristines" ; -- compound tine_N ;
-lin lomustine_N = mkN "lomustine" "lomustines" ; -- compound tine_N ;
-lin cystine_N = mkN "cystine" "cystines" ; -- compound tine_N ;
-lin routine_N = mkN "routine" "routines" ; -- compound tine_N ;
-lin beguine_N = mkN "beguine" "beguines" ;
-lin sanguine_N = mkN "sanguine" "sanguines" ;
-lin linguine_N = mkN "linguine" "linguines" ;
-lin primaquine_N = mkN "primaquine" "primaquines" ;
-lin equine_N = mkN "equine" "equines" ;
-lin mefloquine_N = mkN "mefloquine" "mefloquines" ;
-lin chloroquine_N = mkN "chloroquine" "chloroquines" ;
-lin hydroxychloroquine_N = mkN "hydroxychloroquine" "hydroxychloroquines" ; -- compound chloroquine_N ;
-lin vine_N = mkN "vine" "vines" ;
-lin ravine_N = mkN "ravine" "ravines" ; -- compound vine_N ;
-lin grapevine_N = mkN "grapevine" "grapevines" ; -- compound vine_N ;
-lin divine_N = mkN "divine" "divines" ; -- compound vine_N ;
-lin olivine_N = mkN "olivine" "olivines" ; -- compound vine_N ;
-lin bovine_N = mkN "bovine" "bovines" ; -- compound vine_N ;
-lin ergonovine_N = mkN "ergonovine" "ergonovines" ; -- compound vine_N ;
-lin silvervine_N = mkN "silvervine" "silvervines" ; -- compound vine_N ;
-lin wine_N = mkN "wine" "wines" ;
-lin 'canary-wine_N' = mkN "canary-wine" "canary-wines" ; -- compound wine_N ;
-lin twine_N = mkN "twine" "twines" ; -- notcompound wine_N ;
-lin thyroxine_N = mkN "thyroxine" "thyroxines" ;
-lin bombazine_N = mkN "bombazine" "bombazines" ;
-lin procarbazine_N = mkN "procarbazine" "procarbazines" ;
-lin thioridazine_N = mkN "thioridazine" "thioridazines" ;
-lin magazine_N = mkN "magazine" "magazines" ;
-lin 'powder-magazine_N' = mkN "powder-magazine" "powder-magazines" ; -- compound magazine_N ;
-lin sulfamethazine_N = mkN "sulfamethazine" "sulfamethazines" ;
-lin promethazine_N = mkN "promethazine" "promethazines" ;
-lin sulfadiazine_N = mkN "sulfadiazine" "sulfadiazines" ;
-lin thiazine_N = mkN "thiazine" "thiazines" ;
-lin phenothiazine_N = mkN "phenothiazine" "phenothiazines" ; -- compound thiazine_N ;
-lin triazine_N = mkN "triazine" "triazines" ;
-lin hydralazine_N = mkN "hydralazine" "hydralazines" ;
-lin simazine_N = mkN "simazine" "simazines" ;
-lin chlorpromazine_N = mkN "chlorpromazine" "chlorpromazines" ;
-lin perphenazine_N = mkN "perphenazine" "perphenazines" ;
-lin fluphenazine_N = mkN "fluphenazine" "fluphenazines" ;
-lin hydrazine_N = mkN "hydrazine" "hydrazines" ;
-lin piperazine_N = mkN "piperazine" "piperazines" ;
-lin prochlorperazine_N = mkN "prochlorperazine" "prochlorperazines" ;
-lin atrazine_N = mkN "atrazine" "atrazines" ;
-lin meclizine_N = mkN "meclizine" "meclizines" ;
-lin phenelzine_N = mkN "phenelzine" "phenelzines" ;
-lin benzine_N = mkN "benzine" "benzines" ;
-lin tragedienne_N = mkN "tragedienne" "tragediennes" ;
-lin comedienne_N = mkN "comedienne" "comediennes" ;
-lin julienne_N = mkN "julienne" "juliennes" ;
-lin penne_N = mkN "penne" "pennes" ;
-lin cayenne_N = mkN "cayenne" "cayennes" ;
-lin doyenne_N = mkN "doyenne" "doyennes" ;
-lin tonne_N = mkN "tonne" "tonnes" ;
-lin cretonne_N = mkN "cretonne" "cretonnes" ; -- compound tonne_N ;
-lin bone_N = mkN "bone" "bones" ;
-lin 'aitch-bone_N' = mkN "aitch-bone" "aitch-bones" ; -- compound bone_N ;
-lin 'funny-bone_N' = mkN "funny-bone" "funny-bones" ; -- compound bone_N ;
-lin redbone_N = mkN "redbone" "redbones" ; -- compound bone_N ;
-lin whalebone_N = mkN "whalebone" "whalebones" ; -- compound bone_N ;
-lin anklebone_N = mkN "anklebone" "anklebones" ; -- compound bone_N ;
-lin herringbone_N = mkN "herringbone" "herringbones" ; -- compound bone_N ;
-lin aitchbone_N = mkN "aitchbone" "aitchbones" ; -- compound bone_N ;
-lin thighbone_N = mkN "thighbone" "thighbones" ; -- compound bone_N ;
-lin fishbone_N = mkN "fishbone" "fishbones" ; -- compound bone_N ;
-lin wishbone_N = mkN "wishbone" "wishbones" ; -- compound bone_N ;
-lin backbone_N = mkN "backbone" "backbones" ; -- compound bone_N ;
-lin cheekbone_N = mkN "cheekbone" "cheekbones" ; -- compound bone_N ;
-lin heelbone_N = mkN "heelbone" "heelbones" ; -- compound bone_N ;
-lin trombone_N = mkN "trombone" "trombones" ; -- compound bone_N ;
-lin shinbone_N = mkN "shinbone" "shinbones" ; -- compound bone_N ;
-lin hipbone_N = mkN "hipbone" "hipbones" ; -- compound bone_N ;
-lin collarbone_N = mkN "collarbone" "collarbones" ; -- compound bone_N ;
-lin jawbone_N = mkN "jawbone" "jawbones" ; -- compound bone_N ;
-lin marrowbone_N = mkN "marrowbone" "marrowbones" ; -- compound bone_N ;
-lin cone_N = mkN "cone" "cones" ;
-lin 'storm-cone_N' = mkN "storm-cone" "storm-cones" ; -- compound cone_N ;
-lin 'fir-cone_N' = mkN "fir-cone" "fir-cones" ; -- compound cone_N ;
-lin pinecone_N = mkN "pinecone" "pinecones" ; -- compound cone_N ;
-lin nosecone_N = mkN "nosecone" "nosecones" ; -- compound cone_N ;
-lin silicone_N = mkN "silicone" "silicones" ; -- compound cone_N ;
-lin phragmocone_N = mkN "phragmocone" "phragmocones" ; -- compound cone_N ;
-lin scone_N = mkN "scone" "scones" ; -- notcompound cone_N ;
-lin methadone_N = mkN "methadone" "methadones" ;
-lin chlorthalidone_N = mkN "chlorthalidone" "chlorthalidones" ;
-lin primidone_N = mkN "primidone" "primidones" ;
-lin molindone_N = mkN "molindone" "molindones" ;
-lin nefazodone_N = mkN "nefazodone" "nefazodones" ;
-lin trazodone_N = mkN "trazodone" "trazodones" ;
-lin leone_N = mkN "leone" "leones" ;
-lin epigone_N = mkN "epigone" "epigones" ;
-lin bygone_N = mkN "bygone" "bygones" ;
-lin hone_N = mkN "hone" "hones" ;
-lin phone_N = mkN "phone" "phones" ; -- notcompound hone_N ;
-lin megaphone_N = mkN "megaphone" "megaphones" ; -- compound hone_N ;
-lin diaphone_N = mkN "diaphone" "diaphones" ; -- compound hone_N ;
-lin vibraphone_N = mkN "vibraphone" "vibraphones" ; -- compound hone_N ;
-lin dictaphone_N = mkN "dictaphone" "dictaphones" ; -- compound hone_N ;
-lin telephone_N = mkN "telephone" "telephones" ; -- compound hone_N ;
-lin radiotelephone_N = mkN "radiotelephone" "radiotelephones" ; -- compound hone_N ;
-lin heckelphone_N = mkN "heckelphone" "heckelphones" ; -- compound hone_N ;
-lin chordophone_N = mkN "chordophone" "chordophones" ; -- compound hone_N ;
-lin allophone_N = mkN "allophone" "allophones" ; -- compound hone_N ;
-lin xylophone_N = mkN "xylophone" "xylophones" ; -- compound hone_N ;
-lin gramophone_N = mkN "gramophone" "gramophones" ; -- compound hone_N ;
-lin 'radio-gramophone_N' = mkN "radio-gramophone" "radio-gramophones" ; -- compound hone_N ;
-lin homophone_N = mkN "homophone" "homophones" ; -- compound hone_N ;
-lin microphone_N = mkN "microphone" "microphones" ; -- compound hone_N ;
-lin saxophone_N = mkN "saxophone" "saxophones" ; -- compound hone_N ;
-lin earphone_N = mkN "earphone" "earphones" ; -- compound hone_N ;
-lin lagerphone_N = mkN "lagerphone" "lagerphones" ; -- compound hone_N ;
-lin speakerphone_N = mkN "speakerphone" "speakerphones" ; -- compound hone_N ;
-lin interphone_N = mkN "interphone" "interphones" ; -- compound hone_N ;
-lin payphone_N = mkN "payphone" "payphones" ; -- compound hone_N ;
-lin polyphone_N = mkN "polyphone" "polyphones" ; -- compound hone_N ;
-lin zabaglione_N = mkN "zabaglione" "zabagliones" ;
-lin abalone_N = mkN "abalone" "abalones" ;
-lin methaqualone_N = mkN "methaqualone" "methaqualones" ;
-lin clone_N = mkN "clone" "clones" ;
-lin cyclone_N = mkN "cyclone" "cyclones" ; -- compound clone_N ;
-lin anticyclone_N = mkN "anticyclone" "anticyclones" ; -- compound clone_N ;
-lin pallone_N = mkN "pallone" "pallones" ;
-lin triamcinolone_N = mkN "triamcinolone" "triamcinolones" ;
-lin nandrolone_N = mkN "nandrolone" "nandrolones" ;
-lin prednisolone_N = mkN "prednisolone" "prednisolones" ;
-lin anemone_N = mkN "anemone" "anemones" ;
-lin 'sea-anemone_N' = mkN "sea-anemone" "sea-anemones" ; -- compound anemone_N ;
-lin pheromone_N = mkN "pheromone" "pheromones" ;
-lin hormone_N = mkN "hormone" "hormones" ;
-lin neurohormone_N = mkN "neurohormone" "neurohormones" ; -- compound hormone_N ;
-lin phytohormone_N = mkN "phytohormone" "phytohormones" ; -- compound hormone_N ;
-lin butanone_N = mkN "butanone" "butanones" ;
-lin chloroacetophenone_N = mkN "chloroacetophenone" "chloroacetophenones" ;
-lin rotenone_N = mkN "rotenone" "rotenones" ;
-lin amrinone_N = mkN "amrinone" "amrinones" ;
-lin quinone_N = mkN "quinone" "quinones" ;
-lin ubiquinone_N = mkN "ubiquinone" "ubiquinones" ; -- compound quinone_N ;
-lin pone_N = mkN "pone" "pones" ;
-lin cornpone_N = mkN "cornpone" "cornpones" ; -- compound pone_N ;
-lin mascarpone_N = mkN "mascarpone" "mascarpones" ; -- compound pone_N ;
-lin amiodarone_N = mkN "amiodarone" "amiodarones" ;
-lin crone_N = mkN "crone" "crones" ;
-lin drone_N = mkN "drone" "drones" ;
-lin padrone_N = mkN "padrone" "padrones" ; -- compound drone_N ;
-lin norethindrone_N = mkN "norethindrone" "norethindrones" ; -- compound drone_N ;
-lin progesterone_N = mkN "progesterone" "progesterones" ;
-lin medroxyprogesterone_N = mkN "medroxyprogesterone" "medroxyprogesterones" ; -- compound progesterone_N ;
-lin corticosterone_N = mkN "corticosterone" "corticosterones" ;
-lin aldosterone_N = mkN "aldosterone" "aldosterones" ;
-lin adrenosterone_N = mkN "adrenosterone" "adrenosterones" ;
-lin androsterone_N = mkN "androsterone" "androsterones" ;
-lin testosterone_N = mkN "testosterone" "testosterones" ;
-lin methyltestosterone_N = mkN "methyltestosterone" "methyltestosterones" ; -- compound testosterone_N ;
-lin isochrone_N = mkN "isochrone" "isochrones" ;
-lin throne_N = mkN "throne" "thrones" ;
-lin buspirone_N = mkN "buspirone" "buspirones" ;
-lin estrone_N = mkN "estrone" "estrones" ;
-lin minestrone_N = mkN "minestrone" "minestrones" ; -- compound estrone_N ;
-lin aleurone_N = mkN "aleurone" "aleurones" ;
-lin sone_N = mkN "sone" "sones" ;
-lin dexamethasone_N = mkN "dexamethasone" "dexamethasones" ; -- compound sone_N ;
-lin prednisone_N = mkN "prednisone" "prednisones" ; -- compound sone_N ;
-lin cortisone_N = mkN "cortisone" "cortisones" ; -- compound sone_N ;
-lin hydrocortisone_N = mkN "hydrocortisone" "hydrocortisones" ; -- compound sone_N ;
-lin dapsone_N = mkN "dapsone" "dapsones" ; -- compound sone_N ;
-lin tone_N = mkN "tone" "tones" ;
-lin spironolactone_N = mkN "spironolactone" "spironolactones" ; -- compound tone_N ;
-lin acetone_N = mkN "acetone" "acetones" ; -- compound tone_N ;
-lin ketone_N = mkN "ketone" "ketones" ; -- compound tone_N ;
-lin nabumetone_N = mkN "nabumetone" "nabumetones" ; -- compound tone_N ;
-lin halftone_N = mkN "halftone" "halftones" ; -- compound tone_N ;
-lin barbitone_N = mkN "barbitone" "barbitones" ; -- compound tone_N ;
-lin phenobarbitone_N = mkN "phenobarbitone" "phenobarbitones" ; -- compound tone_N ;
-lin semitone_N = mkN "semitone" "semitones" ; -- compound tone_N ;
-lin baritone_N = mkN "baritone" "baritones" ; -- compound tone_N ;
-lin monotone_N = mkN "monotone" "monotones" ; -- compound tone_N ;
-lin peptone_N = mkN "peptone" "peptones" ; -- compound tone_N ;
-lin undertone_N = mkN "undertone" "undertones" ; -- compound tone_N ;
-lin overtone_N = mkN "overtone" "overtones" ; -- compound tone_N ;
-lin stone_N = mkN "stone" "stones" ; -- notcompound tone_N ;
-lin 'pumice-stone_N' = mkN "pumice-stone" "pumice-stones" ; -- compound tone_N ;
-lin 'coping-stone_N' = mkN "coping-stone" "coping-stones" ; -- compound tone_N ;
-lin 'stepping-stone_N' = mkN "stepping-stone" "stepping-stones" ; -- compound tone_N ;
-lin 'paving-stone_N' = mkN "paving-stone" "paving-stones" ; -- compound tone_N ;
-lin 'foundation-stone_N' = mkN "foundation-stone" "foundation-stones" ; -- compound tone_N ;
-lin tombstone_N = mkN "tombstone" "tombstones" ; -- compound tone_N ;
-lin kerbstone_N = mkN "kerbstone" "kerbstones" ; -- compound tone_N ;
-lin curbstone_N = mkN "curbstone" "curbstones" ; -- compound tone_N ;
-lin headstone_N = mkN "headstone" "headstones" ; -- compound tone_N ;
-lin loadstone_N = mkN "loadstone" "loadstones" ; -- compound tone_N ;
-lin fieldstone_N = mkN "fieldstone" "fieldstones" ; -- compound tone_N ;
-lin goldstone_N = mkN "goldstone" "goldstones" ; -- compound tone_N ;
-lin sandstone_N = mkN "sandstone" "sandstones" ; -- compound tone_N ;
-lin grindstone_N = mkN "grindstone" "grindstones" ; -- compound tone_N ;
-lin bloodstone_N = mkN "bloodstone" "bloodstones" ; -- compound tone_N ;
-lin lodestone_N = mkN "lodestone" "lodestones" ; -- compound tone_N ;
-lin freestone_N = mkN "freestone" "freestones" ; -- compound tone_N ;
-lin cobblestone_N = mkN "cobblestone" "cobblestones" ; -- compound tone_N ;
-lin milestone_N = mkN "milestone" "milestones" ; -- compound tone_N ;
-lin limestone_N = mkN "limestone" "limestones" ; -- compound tone_N ;
-lin rhinestone_N = mkN "rhinestone" "rhinestones" ; -- compound tone_N ;
-lin merestone_N = mkN "merestone" "merestones" ; -- compound tone_N ;
-lin firestone_N = mkN "firestone" "firestones" ; -- compound tone_N ;
-lin bluestone_N = mkN "bluestone" "bluestones" ; -- compound tone_N ;
-lin gravestone_N = mkN "gravestone" "gravestones" ; -- compound tone_N ;
-lin flagstone_N = mkN "flagstone" "flagstones" ; -- compound tone_N ;
-lin pitchstone_N = mkN "pitchstone" "pitchstones" ; -- compound tone_N ;
-lin touchstone_N = mkN "touchstone" "touchstones" ; -- compound tone_N ;
-lin hearthstone_N = mkN "hearthstone" "hearthstones" ; -- compound tone_N ;
-lin histone_N = mkN "histone" "histones" ; -- compound tone_N ;
-lin hailstone_N = mkN "hailstone" "hailstones" ; -- compound tone_N ;
-lin oilstone_N = mkN "oilstone" "oilstones" ; -- compound tone_N ;
-lin gallstone_N = mkN "gallstone" "gallstones" ; -- compound tone_N ;
-lin millstone_N = mkN "millstone" "millstones" ; -- compound tone_N ;
-lin brimstone_N = mkN "brimstone" "brimstones" ; -- compound tone_N ;
-lin rottenstone_N = mkN "rottenstone" "rottenstones" ; -- compound tone_N ;
-lin whinstone_N = mkN "whinstone" "whinstones" ; -- compound tone_N ;
-lin moonstone_N = mkN "moonstone" "moonstones" ; -- compound tone_N ;
-lin turnstone_N = mkN "turnstone" "turnstones" ; -- compound tone_N ;
-lin sunstone_N = mkN "sunstone" "sunstones" ; -- compound tone_N ;
-lin brownstone_N = mkN "brownstone" "brownstones" ; -- compound tone_N ;
-lin capstone_N = mkN "capstone" "capstones" ; -- compound tone_N ;
-lin soapstone_N = mkN "soapstone" "soapstones" ; -- compound tone_N ;
-lin dripstone_N = mkN "dripstone" "dripstones" ; -- compound tone_N ;
-lin cornerstone_N = mkN "cornerstone" "cornerstones" ; -- compound tone_N ;
-lin whetstone_N = mkN "whetstone" "whetstones" ; -- compound tone_N ;
-lin siltstone_N = mkN "siltstone" "siltstones" ; -- compound tone_N ;
-lin flintstone_N = mkN "flintstone" "flintstones" ; -- compound tone_N ;
-lin claystone_N = mkN "claystone" "claystones" ; -- compound tone_N ;
-lin keystone_N = mkN "keystone" "keystones" ; -- compound tone_N ;
-lin holystone_N = mkN "holystone" "holystones" ; -- compound tone_N ;
-lin cherrystone_N = mkN "cherrystone" "cherrystones" ; -- compound tone_N ;
-lin oxytone_N = mkN "oxytone" "oxytones" ; -- compound tone_N ;
-lin paroxytone_N = mkN "paroxytone" "paroxytones" ; -- compound tone_N ;
-lin proparoxytone_N = mkN "proparoxytone" "proparoxytones" ; -- compound tone_N ;
-lin flavone_N = mkN "flavone" "flavones" ;
-lin ceftriaxone_N = mkN "ceftriaxone" "ceftriaxones" ;
-lin naltrexone_N = mkN "naltrexone" "naltrexones" ;
-lin naloxone_N = mkN "naloxone" "naloxones" ;
-lin zone_N = mkN "zone" "zones" ;
-lin 'dropping-zone_N' = mkN "dropping-zone" "dropping-zones" ; -- compound zone_N ;
-lin cefoperazone_N = mkN "cefoperazone" "cefoperazones" ; -- compound zone_N ;
-lin phenylbutazone_N = mkN "phenylbutazone" "phenylbutazones" ; -- compound zone_N ;
-lin oxyphenbutazone_N = mkN "oxyphenbutazone" "oxyphenbutazones" ; -- compound zone_N ;
-lin ozone_N = mkN "ozone" "ozones" ; -- notcompound zone_N ;
-lin lucerne_N = mkN "lucerne" "lucernes" ;
-lin interne_N = mkN "interne" "internes" ;
-lin bourne_N = mkN "bourne" "bournes" ;
-lin nocturne_N = mkN "nocturne" "nocturnes" ;
-lin demesne_N = mkN "demesne" "demesnes" ;
-lin June_N = mkN "June" "Junes" ;
-lin tribune_N = mkN "tribune" "tribunes" ;
-lin dune_N = mkN "dune" "dunes" ;
-lin immune_N = mkN "immune" "immunes" ;
-lin commune_N = mkN "commune" "communes" ;
-lin rune_N = mkN "rune" "runes" ;
-lin prune_N = mkN "prune" "prunes" ; -- notcompound rune_N ;
-lin tune_N = mkN "tune" "tunes" ;
-lin fortune_N = mkN "fortune" "fortunes" ; -- compound tune_N ;
-lin misfortune_N = mkN "misfortune" "misfortunes" ; -- compound tune_N ;
-lin dyne_N = mkN "dyne" "dynes" ;
-lin anodyne_N = mkN "anodyne" "anodynes" ; -- compound dyne_N ;
-lin coelogyne_N = mkN "coelogyne" "coelogynes" ;
-lin groyne_N = mkN "groyne" "groynes" ;
-lin cryptocoryne_N = mkN "cryptocoryne" "cryptocorynes" ;
-lin langsyne_N = mkN "langsyne" "langsynes" ;
-lin 'mise en scène_N' = mkN "mise en scène" "mise en scènes" ;
-lin oboe_N = mkN "oboe" "oboes" ;
-lin doe_N = mkN "doe" "does" ;
-lin foe_N = mkN "foe" "foes" ;
-lin chigoe_N = mkN "chigoe" "chigoes" ;
-lin hoe_N = mkN "hoe" "hoes" ;
-lin mahoe_N = mkN "mahoe" "mahoes" ; -- compound hoe_N ;
-lin pahoehoe_N = mkN "pahoehoe" "pahoehoes" ; -- compound hoe_N ;
-lin backhoe_N = mkN "backhoe" "backhoes" ; -- compound hoe_N ;
-lin shoe_N = mkN "shoe" "shoes" ; -- notcompound hoe_N ;
-lin horseshoe_N = mkN "horseshoe" "horseshoes" ; -- compound hoe_N ;
-lin gumshoe_N = mkN "gumshoe" "gumshoes" ; -- compound hoe_N ;
-lin overshoe_N = mkN "overshoe" "overshoes" ; -- compound hoe_N ;
-lin snowshoe_N = mkN "snowshoe" "snowshoes" ; -- compound hoe_N ;
-lin leucothoe_N = mkN "leucothoe" "leucothoes" ; -- compound hoe_N ;
-lin pekoe_N = mkN "pekoe" "pekoes" ;
-lin aloe_N = mkN "aloe" "aloes" ;
-lin floe_N = mkN "floe" "floes" ;
-lin icefloe_N = mkN "icefloe" "icefloes" ; -- compound floe_N ;
-lin felloe_N = mkN "felloe" "felloes" ;
-lin sloe_N = mkN "sloe" "sloes" ;
-lin canoe_N = mkN "canoe" "canoes" ;
-lin hoopoe_N = mkN "hoopoe" "hoopoes" ;
-lin beroe_N = mkN "beroe" "beroes" ;
-lin throe_N = mkN "throe" "throes" ;
-lin toe_N = mkN "toe" "toes" ;
-lin mistletoe_N = mkN "mistletoe" "mistletoes" ; -- compound toe_N ;
-lin toetoe_N = mkN "toetoe" "toetoes" ; -- compound toe_N ;
-lin ticktacktoe_N = mkN "ticktacktoe" "ticktacktoes" ; -- compound toe_N ;
-lin tiptoe_N = mkN "tiptoe" "tiptoes" ; -- compound toe_N ;
-lin hammertoe_N = mkN "hammertoe" "hammertoes" ; -- compound toe_N ;
-lin woe_N = mkN "woe" "woes" ;
-lin pe_N = mkN "pe" "pes" ;
-lin ape_N = mkN "ape" "apes" ; -- notcompound pe_N ;
-lin cape_N = mkN "cape" "capes" ; -- compound pe_N ;
-lin scape_N = mkN "scape" "scapes" ; -- compound pe_N ;
-lin seascape_N = mkN "seascape" "seascapes" ; -- compound pe_N ;
-lin landscape_N = mkN "landscape" "landscapes" ; -- compound pe_N ;
-lin escape_N = mkN "escape" "escapes" ; -- compound pe_N ;
-lin 'fire-escape_N' = mkN "fire-escape" "fire-escapes" ; -- compound pe_N ;
-lin cityscape_N = mkN "cityscape" "cityscapes" ; -- compound pe_N ;
-lin gape_N = mkN "gape" "gapes" ; -- compound pe_N ;
-lin agape_N = mkN "agape" "agapes" ; -- compound pe_N ;
-lin shape_N = mkN "shape" "shapes" ; -- compound pe_N ;
-lin jape_N = mkN "jape" "japes" ; -- compound pe_N ;
-lin nape_N = mkN "nape" "napes" ; -- compound pe_N ;
-lin rape_N = mkN "rape" "rapes" ; -- compound pe_N ;
-lin crape_N = mkN "crape" "crapes" ; -- compound pe_N ;
-lin scrape_N = mkN "scrape" "scrapes" ; -- compound pe_N ;
-lin drape_N = mkN "drape" "drapes" ; -- compound pe_N ;
-lin serape_N = mkN "serape" "serapes" ; -- compound pe_N ;
-lin grape_N = mkN "grape" "grapes" ; -- compound pe_N ;
-lin tape_N = mkN "tape" "tapes" ; -- compound pe_N ;
-lin 'ticker-tape_N' = mkN "ticker-tape" "ticker-tapes" ; -- compound pe_N ;
-lin videotape_N = mkN "videotape" "videotapes" ; -- compound pe_N ;
-lin audiotape_N = mkN "audiotape" "audiotapes" ; -- compound pe_N ;
-lin opepe_N = mkN "opepe" "opepes" ; -- compound pe_N ;
-lin crepe_N = mkN "crepe" "crepes" ; -- compound pe_N ;
-lin recipe_N = mkN "recipe" "recipes" ; -- compound pe_N ;
-lin chichipe_N = mkN "chichipe" "chichipes" ; -- compound pe_N ;
-lin jacksnipe_N = mkN "jacksnipe" "jacksnipes" ; -- compound pe_N ;
-lin guttersnipe_N = mkN "guttersnipe" "guttersnipes" ; -- compound pe_N ;
-lin pipe_N = mkN "pipe" "pipes" ; -- compound pe_N ;
-lin 'waste-pipe_N' = mkN "waste-pipe" "waste-pipes" ; -- compound pe_N ;
-lin 'soil-pipe_N' = mkN "soil-pipe" "soil-pipes" ; -- compound pe_N ;
-lin 'exhaust-pipe_N' = mkN "exhaust-pipe" "exhaust-pipes" ; -- compound pe_N ;
-lin standpipe_N = mkN "standpipe" "standpipes" ; -- compound pe_N ;
-lin windpipe_N = mkN "windpipe" "windpipes" ; -- compound pe_N ;
-lin hosepipe_N = mkN "hosepipe" "hosepipes" ; -- compound pe_N ;
-lin stovepipe_N = mkN "stovepipe" "stovepipes" ; -- compound pe_N ;
-lin bagpipe_N = mkN "bagpipe" "bagpipes" ; -- compound pe_N ;
-lin tailpipe_N = mkN "tailpipe" "tailpipes" ; -- compound pe_N ;
-lin panpipe_N = mkN "panpipe" "panpipes" ; -- compound pe_N ;
-lin drainpipe_N = mkN "drainpipe" "drainpipes" ; -- compound pe_N ;
-lin hornpipe_N = mkN "hornpipe" "hornpipes" ; -- compound pe_N ;
-lin blowpipe_N = mkN "blowpipe" "blowpipes" ; -- compound pe_N ;
-lin gripe_N = mkN "gripe" "gripes" ; -- compound pe_N ;
-lin tripe_N = mkN "tripe" "tripes" ; -- compound pe_N ;
-lin stripe_N = mkN "stripe" "stripes" ; -- compound pe_N ;
-lin pinstripe_N = mkN "pinstripe" "pinstripes" ; -- compound pe_N ;
-lin stipe_N = mkN "stipe" "stipes" ; -- compound pe_N ;
-lin wipe_N = mkN "wipe" "wipes" ; -- compound pe_N ;
-lin swipe_N = mkN "swipe" "swipes" ; -- compound pe_N ;
-lin sideswipe_N = mkN "sideswipe" "sideswipes" ; -- compound pe_N ;
-lin guimpe_N = mkN "guimpe" "guimpes" ; -- compound pe_N ;
-lin cope_N = mkN "cope" "copes" ; -- compound pe_N ;
-lin syncope_N = mkN "syncope" "syncopes" ; -- compound pe_N ;
-lin apocope_N = mkN "apocope" "apocopes" ; -- compound pe_N ;
-lin scope_N = mkN "scope" "scopes" ; -- compound pe_N ;
-lin epidiascope_N = mkN "epidiascope" "epidiascopes" ; -- compound pe_N ;
-lin telescope_N = mkN "telescope" "telescopes" ; -- compound pe_N ;
-lin 'radio-telescope_N' = mkN "radio-telescope" "radio-telescopes" ; -- compound pe_N ;
-lin kinescope_N = mkN "kinescope" "kinescopes" ; -- compound pe_N ;
-lin periscope_N = mkN "periscope" "periscopes" ; -- compound pe_N ;
-lin stroboscope_N = mkN "stroboscope" "stroboscopes" ; -- compound pe_N ;
-lin kaleidoscope_N = mkN "kaleidoscope" "kaleidoscopes" ; -- compound pe_N ;
-lin sigmoidoscope_N = mkN "sigmoidoscope" "sigmoidoscopes" ; -- compound pe_N ;
-lin culdoscope_N = mkN "culdoscope" "culdoscopes" ; -- compound pe_N ;
-lin endoscope_N = mkN "endoscope" "endoscopes" ; -- compound pe_N ;
-lin hodoscope_N = mkN "hodoscope" "hodoscopes" ; -- compound pe_N ;
-lin stereoscope_N = mkN "stereoscope" "stereoscopes" ; -- compound pe_N ;
-lin esophagoscope_N = mkN "esophagoscope" "esophagoscopes" ; -- compound pe_N ;
-lin laryngoscope_N = mkN "laryngoscope" "laryngoscopes" ; -- compound pe_N ;
-lin bronchoscope_N = mkN "bronchoscope" "bronchoscopes" ; -- compound pe_N ;
-lin nephoscope_N = mkN "nephoscope" "nephoscopes" ; -- compound pe_N ;
-lin stethoscope_N = mkN "stethoscope" "stethoscopes" ; -- compound pe_N ;
-lin orthoscope_N = mkN "orthoscope" "orthoscopes" ; -- compound pe_N ;
-lin bioscope_N = mkN "bioscope" "bioscopes" ; -- compound pe_N ;
-lin angioscope_N = mkN "angioscope" "angioscopes" ; -- compound pe_N ;
-lin oscilloscope_N = mkN "oscilloscope" "oscilloscopes" ; -- compound pe_N ;
-lin ophthalmoscope_N = mkN "ophthalmoscope" "ophthalmoscopes" ; -- compound pe_N ;
-lin rhinoscope_N = mkN "rhinoscope" "rhinoscopes" ; -- compound pe_N ;
-lin iconoscope_N = mkN "iconoscope" "iconoscopes" ; -- compound pe_N ;
-lin colonoscope_N = mkN "colonoscope" "colonoscopes" ; -- compound pe_N ;
-lin chronoscope_N = mkN "chronoscope" "chronoscopes" ; -- compound pe_N ;
-lin laparoscope_N = mkN "laparoscope" "laparoscopes" ; -- compound pe_N ;
-lin microscope_N = mkN "microscope" "microscopes" ; -- compound pe_N ;
-lin ultramicroscope_N = mkN "ultramicroscope" "ultramicroscopes" ; -- compound pe_N ;
-lin hygroscope_N = mkN "hygroscope" "hygroscopes" ; -- compound pe_N ;
-lin synchroscope_N = mkN "synchroscope" "synchroscopes" ; -- compound pe_N ;
-lin arthroscope_N = mkN "arthroscope" "arthroscopes" ; -- compound pe_N ;
-lin horoscope_N = mkN "horoscope" "horoscopes" ; -- compound pe_N ;
-lin fluoroscope_N = mkN "fluoroscope" "fluoroscopes" ; -- compound pe_N ;
-lin electroscope_N = mkN "electroscope" "electroscopes" ; -- compound pe_N ;
-lin spectroscope_N = mkN "spectroscope" "spectroscopes" ; -- compound pe_N ;
-lin gastroscope_N = mkN "gastroscope" "gastroscopes" ; -- compound pe_N ;
-lin gyroscope_N = mkN "gyroscope" "gyroscopes" ; -- compound pe_N ;
-lin keratoscope_N = mkN "keratoscope" "keratoscopes" ; -- compound pe_N ;
-lin proctoscope_N = mkN "proctoscope" "proctoscopes" ; -- compound pe_N ;
-lin fetoscope_N = mkN "fetoscope" "fetoscopes" ; -- compound pe_N ;
-lin otoscope_N = mkN "otoscope" "otoscopes" ; -- compound pe_N ;
-lin tachistoscope_N = mkN "tachistoscope" "tachistoscopes" ; -- compound pe_N ;
-lin cryoscope_N = mkN "cryoscope" "cryoscopes" ; -- compound pe_N ;
-lin fiberscope_N = mkN "fiberscope" "fiberscopes" ; -- compound pe_N ;
-lin dope_N = mkN "dope" "dopes" ; -- compound pe_N ;
-lin hope_N = mkN "hope" "hopes" ; -- compound pe_N ;
-lin stanhope_N = mkN "stanhope" "stanhopes" ; -- compound pe_N ;
-lin calliope_N = mkN "calliope" "calliopes" ; -- compound pe_N ;
-lin escalope_N = mkN "escalope" "escalopes" ; -- compound pe_N ;
-lin malope_N = mkN "malope" "malopes" ; -- compound pe_N ;
-lin antelope_N = mkN "antelope" "antelopes" ; -- compound pe_N ;
-lin envelope_N = mkN "envelope" "envelopes" ; -- compound pe_N ;
-lin slope_N = mkN "slope" "slopes" ; -- compound pe_N ;
-lin mope_N = mkN "mope" "mopes" ; -- compound pe_N ;
-lin pope_N = mkN "pope" "popes" ; -- compound pe_N ;
-lin antipope_N = mkN "antipope" "antipopes" ; -- compound pe_N ;
-lin rope_N = mkN "rope" "ropes" ; -- compound pe_N ;
-lin 'skipping-rope_N' = mkN "skipping-rope" "skipping-ropes" ; -- compound pe_N ;
-lin 'towing-rope_N' = mkN "towing-rope" "towing-ropes" ; -- compound pe_N ;
-lin phalarope_N = mkN "phalarope" "phalaropes" ; -- compound pe_N ;
-lin hyperope_N = mkN "hyperope" "hyperopes" ; -- compound pe_N ;
-lin grope_N = mkN "grope" "gropes" ; -- compound pe_N ;
-lin misanthrope_N = mkN "misanthrope" "misanthropes" ; -- compound pe_N ;
-lin trope_N = mkN "trope" "tropes" ; -- compound pe_N ;
-lin tightrope_N = mkN "tightrope" "tightropes" ; -- compound pe_N ;
-lin heliotrope_N = mkN "heliotrope" "heliotropes" ; -- compound pe_N ;
-lin allotrope_N = mkN "allotrope" "allotropes" ; -- compound pe_N ;
-lin towrope_N = mkN "towrope" "towropes" ; -- compound pe_N ;
-lin pyrope_N = mkN "pyrope" "pyropes" ; -- compound pe_N ;
-lin isotope_N = mkN "isotope" "isotopes" ; -- compound pe_N ;
-lin radioisotope_N = mkN "radioisotope" "radioisotopes" ; -- compound pe_N ;
-lin presbyope_N = mkN "presbyope" "presbyopes" ; -- compound pe_N ;
-lin myope_N = mkN "myope" "myopes" ; -- compound pe_N ;
-lin lagniappe_N = mkN "lagniappe" "lagniappes" ; -- compound pe_N ;
-lin frappe_N = mkN "frappe" "frappes" ; -- compound pe_N ;
-lin steppe_N = mkN "steppe" "steppes" ; -- compound pe_N ;
-lin grippe_N = mkN "grippe" "grippes" ; -- compound pe_N ;
-lin taupe_N = mkN "taupe" "taupes" ; -- compound pe_N ;
-lin dupe_N = mkN "dupe" "dupes" ; -- compound pe_N ;
-lin loupe_N = mkN "loupe" "loupes" ; -- compound pe_N ;
-lin cantaloupe_N = mkN "cantaloupe" "cantaloupes" ; -- compound pe_N ;
-lin troupe_N = mkN "troupe" "troupes" ; -- compound pe_N ;
-lin drupe_N = mkN "drupe" "drupes" ; -- compound pe_N ;
-lin type_N = mkN "type" "types" ; -- compound pe_N ;
-lin 'blood-type_N' = mkN "blood-type" "blood-types" ; -- compound pe_N ;
-lin archetype_N = mkN "archetype" "archetypes" ; -- compound pe_N ;
-lin antitype_N = mkN "antitype" "antitypes" ; -- compound pe_N ;
-lin stereotype_N = mkN "stereotype" "stereotypes" ; -- compound pe_N ;
-lin daguerreotype_N = mkN "daguerreotype" "daguerreotypes" ; -- compound pe_N ;
-lin biotype_N = mkN "biotype" "biotypes" ; -- compound pe_N ;
-lin collotype_N = mkN "collotype" "collotypes" ; -- compound pe_N ;
-lin haplotype_N = mkN "haplotype" "haplotypes" ; -- compound pe_N ;
-lin genotype_N = mkN "genotype" "genotypes" ; -- compound pe_N ;
-lin phenotype_N = mkN "phenotype" "phenotypes" ; -- compound pe_N ;
-lin linotype_N = mkN "linotype" "linotypes" ; -- compound pe_N ;
-lin monotype_N = mkN "monotype" "monotypes" ; -- compound pe_N ;
-lin prototype_N = mkN "prototype" "prototypes" ; -- compound pe_N ;
-lin autotype_N = mkN "autotype" "autotypes" ; -- compound pe_N ;
-lin karyotype_N = mkN "karyotype" "karyotypes" ; -- compound pe_N ;
-lin crêpe_N = mkN "crêpe" "crêpes" ; -- notcompound pe_N ;
-lin are_N = mkN "are" "ares" ;
-lin care_N = mkN "care" "cares" ; -- notcompound are_N ;
-lin childcare_N = mkN "childcare" "childcares" ; -- compound are_N ;
-lin healthcare_N = mkN "healthcare" "healthcares" ; -- compound are_N ;
-lin medicare_N = mkN "medicare" "medicares" ; -- compound are_N ;
-lin aftercare_N = mkN "aftercare" "aftercares" ; -- compound are_N ;
-lin scare_N = mkN "scare" "scares" ; -- notcompound are_N ;
-lin daycare_N = mkN "daycare" "daycares" ; -- compound are_N ;
-lin dare_N = mkN "dare" "dares" ; -- notcompound are_N ;
-lin fare_N = mkN "fare" "fares" ; -- notcompound are_N ;
-lin fieldfare_N = mkN "fieldfare" "fieldfares" ; -- compound are_N ;
-lin thoroughfare_N = mkN "thoroughfare" "thoroughfares" ; -- compound are_N ;
-lin welfare_N = mkN "welfare" "welfares" ; -- compound are_N ;
-lin fanfare_N = mkN "fanfare" "fanfares" ; -- compound are_N ;
-lin warfare_N = mkN "warfare" "warfares" ; -- compound are_N ;
-lin 'class-warfare_N' = mkN "class-warfare" "class-warfares" ; -- compound are_N ;
-lin airfare_N = mkN "airfare" "airfares" ; -- compound are_N ;
-lin hare_N = mkN "hare" "hares" ; -- notcompound are_N ;
-lin share_N = mkN "share" "shares" ; -- notcompound are_N ;
-lin ploughshare_N = mkN "ploughshare" "ploughshares" ; -- compound are_N ;
-lin plowshare_N = mkN "plowshare" "plowshares" ; -- compound are_N ;
-lin caviare_N = mkN "caviare" "caviares" ; -- compound are_N ;
-lin blare_N = mkN "blare" "blares" ; -- notcompound are_N ;
-lin flare_N = mkN "flare" "flares" ; -- notcompound are_N ;
-lin glare_N = mkN "glare" "glares" ; -- notcompound are_N ;
-lin auriculare_N = mkN "auriculare" "auriculares" ; -- compound are_N ;
-lin mare_N = mkN "mare" "mares" ; -- notcompound are_N ;
-lin 'brood-mare_N' = mkN "brood-mare" "brood-mares" ; -- compound are_N ;
-lin 'stud-mare_N' = mkN "stud-mare" "stud-mares" ; -- compound are_N ;
-lin broodmare_N = mkN "broodmare" "broodmares" ; -- compound are_N ;
-lin nightmare_N = mkN "nightmare" "nightmares" ; -- compound are_N ;
-lin snare_N = mkN "snare" "snares" ; -- notcompound are_N ;
-lin compare_N = mkN "compare" "compares" ; -- compound are_N ;
-lin spare_N = mkN "spare" "spares" ; -- notcompound are_N ;
-lin tare_N = mkN "tare" "tares" ; -- notcompound are_N ;
-lin hectare_N = mkN "hectare" "hectares" ; -- compound are_N ;
-lin stare_N = mkN "stare" "stares" ; -- notcompound are_N ;
-lin square_N = mkN "square" "squares" ; -- compound are_N ;
-lin 't-square_N' = mkN "t-square" "t-squares" ; -- compound are_N ;
-lin 'market-square_N' = mkN "market-square" "market-squares" ; -- compound are_N ;
-lin 'set-square_N' = mkN "set-square" "set-squares" ; -- compound are_N ;
-lin ware_N = mkN "ware" "wares" ; -- notcompound are_N ;
-lin chinaware_N = mkN "chinaware" "chinawares" ; -- compound are_N ;
-lin hardware_N = mkN "hardware" "hardwares" ; -- compound are_N ;
-lin freeware_N = mkN "freeware" "freewares" ; -- compound are_N ;
-lin tableware_N = mkN "tableware" "tablewares" ; -- compound are_N ;
-lin crackleware_N = mkN "crackleware" "cracklewares" ; -- compound are_N ;
-lin stoneware_N = mkN "stoneware" "stonewares" ; -- compound are_N ;
-lin shareware_N = mkN "shareware" "sharewares" ; -- compound are_N ;
-lin agateware_N = mkN "agateware" "agatewares" ; -- compound are_N ;
-lin graniteware_N = mkN "graniteware" "granitewares" ; -- compound are_N ;
-lin metalware_N = mkN "metalware" "metalwares" ; -- compound are_N ;
-lin enamelware_N = mkN "enamelware" "enamelwares" ; -- compound are_N ;
-lin firmware_N = mkN "firmware" "firmwares" ; -- compound are_N ;
-lin woodenware_N = mkN "woodenware" "woodenwares" ; -- compound are_N ;
-lin kitchenware_N = mkN "kitchenware" "kitchenwares" ; -- compound are_N ;
-lin earthenware_N = mkN "earthenware" "earthenwares" ; -- compound are_N ;
-lin ovenware_N = mkN "ovenware" "ovenwares" ; -- compound are_N ;
-lin tinware_N = mkN "tinware" "tinwares" ; -- compound are_N ;
-lin ironware_N = mkN "ironware" "ironwares" ; -- compound are_N ;
-lin groupware_N = mkN "groupware" "groupwares" ; -- compound are_N ;
-lin dinnerware_N = mkN "dinnerware" "dinnerwares" ; -- compound are_N ;
-lin copperware_N = mkN "copperware" "copperwares" ; -- compound are_N ;
-lin lusterware_N = mkN "lusterware" "lusterwares" ; -- compound are_N ;
-lin lacquerware_N = mkN "lacquerware" "lacquerwares" ; -- compound are_N ;
-lin silverware_N = mkN "silverware" "silverwares" ; -- compound are_N ;
-lin glassware_N = mkN "glassware" "glasswares" ; -- compound are_N ;
-lin flatware_N = mkN "flatware" "flatwares" ; -- compound are_N ;
-lin software_N = mkN "software" "softwares" ; -- compound are_N ;
-lin willowware_N = mkN "willowware" "willowwares" ; -- compound are_N ;
-lin hollowware_N = mkN "hollowware" "hollowwares" ; -- compound are_N ;
-lin spyware_N = mkN "spyware" "spywares" ; -- compound are_N ;
-lin sabre_N = mkN "sabre" "sabres" ;
-lin fibre_N = mkN "fibre" "fibres" ;
-lin calibre_N = mkN "calibre" "calibres" ;
-lin timbre_N = mkN "timbre" "timbres" ;
-lin acre_N = mkN "acre" "acres" ;
-lin wiseacre_N = mkN "wiseacre" "wiseacres" ; -- compound acre_N ;
-lin nacre_N = mkN "nacre" "nacres" ; -- notcompound acre_N ;
-lin massacre_N = mkN "massacre" "massacres" ; -- compound acre_N ;
-lin chancre_N = mkN "chancre" "chancres" ;
-lin lucre_N = mkN "lucre" "lucres" ;
-lin involucre_N = mkN "involucre" "involucres" ; -- compound lucre_N ;
-lin sucre_N = mkN "sucre" "sucres" ;
-lin cadre_N = mkN "cadre" "cadres" ;
-lin padre_N = mkN "padre" "padres" ;
-lin cere_N = mkN "cere" "ceres" ;
-lin belvedere_N = mkN "belvedere" "belvederes" ;
-lin etagere_N = mkN "etagere" "etageres" ;
-lin sphere_N = mkN "sphere" "spheres" ;
-lin hemisphere_N = mkN "hemisphere" "hemispheres" ; -- compound sphere_N ;
-lin lithosphere_N = mkN "lithosphere" "lithospheres" ; -- compound sphere_N ;
-lin biosphere_N = mkN "biosphere" "biospheres" ; -- compound sphere_N ;
-lin heliosphere_N = mkN "heliosphere" "heliospheres" ; -- compound sphere_N ;
-lin chromosphere_N = mkN "chromosphere" "chromospheres" ; -- compound sphere_N ;
-lin thermosphere_N = mkN "thermosphere" "thermospheres" ; -- compound sphere_N ;
-lin atmosphere_N = mkN "atmosphere" "atmospheres" ; -- compound sphere_N ;
-lin asthenosphere_N = mkN "asthenosphere" "asthenospheres" ; -- compound sphere_N ;
-lin ionosphere_N = mkN "ionosphere" "ionospheres" ; -- compound sphere_N ;
-lin oosphere_N = mkN "oosphere" "oospheres" ; -- compound sphere_N ;
-lin troposphere_N = mkN "troposphere" "tropospheres" ; -- compound sphere_N ;
-lin hydrosphere_N = mkN "hydrosphere" "hydrospheres" ; -- compound sphere_N ;
-lin mesosphere_N = mkN "mesosphere" "mesospheres" ; -- compound sphere_N ;
-lin stratosphere_N = mkN "stratosphere" "stratospheres" ; -- compound sphere_N ;
-lin magnetosphere_N = mkN "magnetosphere" "magnetospheres" ; -- compound sphere_N ;
-lin photosphere_N = mkN "photosphere" "photospheres" ; -- compound sphere_N ;
-lin exosphere_N = mkN "exosphere" "exospheres" ; -- compound sphere_N ;
-lin bathysphere_N = mkN "bathysphere" "bathyspheres" ; -- compound sphere_N ;
-lin gomphothere_N = mkN "gomphothere" "gomphotheres" ;
-lin somewhere_N = mkN "somewhere" "somewheres" ;
-lin nowhere_N = mkN "nowhere" "nowheres" ;
-lin lavaliere_N = mkN "lavaliere" "lavalieres" ;
-lin epauliere_N = mkN "epauliere" "epaulieres" ;
-lin boutonniere_N = mkN "boutonniere" "boutonnieres" ;
-lin brassiere_N = mkN "brassiere" "brassieres" ;
-lin cubitiere_N = mkN "cubitiere" "cubitieres" ;
-lin tourtiere_N = mkN "tourtiere" "tourtieres" ;
-lin galere_N = mkN "galere" "galeres" ;
-lin mere_N = mkN "mere" "meres" ;
-lin metamere_N = mkN "metamere" "metameres" ; -- compound mere_N ;
-lin cashmere_N = mkN "cashmere" "cashmeres" ; -- compound mere_N ;
-lin sarcomere_N = mkN "sarcomere" "sarcomeres" ; -- compound mere_N ;
-lin telomere_N = mkN "telomere" "telomeres" ; -- compound mere_N ;
-lin arthromere_N = mkN "arthromere" "arthromeres" ; -- compound mere_N ;
-lin centromere_N = mkN "centromere" "centromeres" ; -- compound mere_N ;
-lin blastomere_N = mkN "blastomere" "blastomeres" ; -- compound mere_N ;
-lin ampere_N = mkN "ampere" "amperes" ;
-lin abampere_N = mkN "abampere" "abamperes" ; -- compound ampere_N ;
-lin milliampere_N = mkN "milliampere" "milliamperes" ; -- compound ampere_N ;
-lin maigre_N = mkN "maigre" "maigres" ;
-lin ogre_N = mkN "ogre" "ogres" ;
-lin sepulchre_N = mkN "sepulchre" "sepulchres" ;
-lin ochre_N = mkN "ochre" "ochres" ;
-lin euchre_N = mkN "euchre" "euchres" ;
-lin ire_N = mkN "ire" "ires" ;
-lin 'savoir-faire_N' = mkN "savoir-faire" "savoir-faires" ; -- compound ire_N ;
-lin 'laissez-faire_N' = mkN "laissez-faire" "laissez-faires" ; -- compound ire_N ;
-lin doctrinaire_N = mkN "doctrinaire" "doctrinaires" ; -- compound ire_N ;
-lin legionnaire_N = mkN "legionnaire" "legionnaires" ; -- compound ire_N ;
-lin questionnaire_N = mkN "questionnaire" "questionnaires" ; -- compound ire_N ;
-lin billionaire_N = mkN "billionaire" "billionaires" ; -- compound ire_N ;
-lin millionaire_N = mkN "millionaire" "millionaires" ; -- compound ire_N ;
-lin concessionaire_N = mkN "concessionaire" "concessionaires" ; -- compound ire_N ;
-lin commissionaire_N = mkN "commissionaire" "commissionaires" ; -- compound ire_N ;
-lin solitaire_N = mkN "solitaire" "solitaires" ; -- compound ire_N ;
-lin zaire_N = mkN "zaire" "zaires" ; -- compound ire_N ;
-lin fire_N = mkN "fire" "fires" ; -- notcompound ire_N ;
-lin 'cease-fire_N' = mkN "cease-fire" "cease-fires" ; -- compound ire_N ;
-lin 'beacon-fire_N' = mkN "beacon-fire" "beacon-fires" ; -- compound ire_N ;
-lin 'camp-fire_N' = mkN "camp-fire" "camp-fires" ; -- compound ire_N ;
-lin wildfire_N = mkN "wildfire" "wildfires" ; -- compound ire_N ;
-lin backfire_N = mkN "backfire" "backfires" ; -- compound ire_N ;
-lin cookfire_N = mkN "cookfire" "cookfires" ; -- compound ire_N ;
-lin hellfire_N = mkN "hellfire" "hellfires" ; -- compound ire_N ;
-lin shellfire_N = mkN "shellfire" "shellfires" ; -- compound ire_N ;
-lin drumfire_N = mkN "drumfire" "drumfires" ; -- compound ire_N ;
-lin bonfire_N = mkN "bonfire" "bonfires" ; -- compound ire_N ;
-lin gunfire_N = mkN "gunfire" "gunfires" ; -- compound ire_N ;
-lin campfire_N = mkN "campfire" "campfires" ; -- compound ire_N ;
-lin counterfire_N = mkN "counterfire" "counterfires" ; -- compound ire_N ;
-lin misfire_N = mkN "misfire" "misfires" ; -- compound ire_N ;
-lin grassfire_N = mkN "grassfire" "grassfires" ; -- compound ire_N ;
-lin crossfire_N = mkN "crossfire" "crossfires" ; -- compound ire_N ;
-lin spitfire_N = mkN "spitfire" "spitfires" ; -- compound ire_N ;
-lin hire_N = mkN "hire" "hires" ; -- notcompound ire_N ;
-lin sapphire_N = mkN "sapphire" "sapphires" ; -- compound ire_N ;
-lin shire_N = mkN "shire" "shires" ; -- notcompound ire_N ;
-lin mire_N = mkN "mire" "mires" ; -- notcompound ire_N ;
-lin quagmire_N = mkN "quagmire" "quagmires" ; -- compound ire_N ;
-lin moire_N = mkN "moire" "moires" ; -- compound ire_N ;
-lin grimoire_N = mkN "grimoire" "grimoires" ; -- compound ire_N ;
-lin armoire_N = mkN "armoire" "armoires" ; -- compound ire_N ;
-lin 'aide-mémoire_N' = mkN "aide-mémoire" "aide-mémoires" ; -- compound ire_N ;
-lin conservatoire_N = mkN "conservatoire" "conservatoires" ; -- compound ire_N ;
-lin escritoire_N = mkN "escritoire" "escritoires" ; -- compound ire_N ;
-lin repertoire_N = mkN "repertoire" "repertoires" ; -- compound ire_N ;
-lin vampire_N = mkN "vampire" "vampires" ; -- compound ire_N ;
-lin empire_N = mkN "empire" "empires" ; -- compound ire_N ;
-lin umpire_N = mkN "umpire" "umpires" ; -- compound ire_N ;
-lin spire_N = mkN "spire" "spires" ; -- notcompound ire_N ;
-lin sire_N = mkN "sire" "sires" ; -- notcompound ire_N ;
-lin desire_N = mkN "desire" "desires" ; -- compound ire_N ;
-lin tire_N = mkN "tire" "tires" ; -- notcompound ire_N ;
-lin satire_N = mkN "satire" "satires" ; -- compound ire_N ;
-lin attire_N = mkN "attire" "attires" ; -- compound ire_N ;
-lin quire_N = mkN "quire" "quires" ; -- compound ire_N ;
-lin squire_N = mkN "squire" "squires" ; -- compound ire_N ;
-lin esquire_N = mkN "esquire" "esquires" ; -- compound ire_N ;
-lin wire_N = mkN "wire" "wires" ; -- notcompound ire_N ;
-lin 'telegraph-wire_N' = mkN "telegraph-wire" "telegraph-wires" ; -- compound ire_N ;
-lin haywire_N = mkN "haywire" "haywires" ; -- compound ire_N ;
-lin genre_N = mkN "genre" "genres" ;
-lin ore_N = mkN "ore" "ores" ;
-lin 'lead-ore_N' = mkN "lead-ore" "lead-ores" ; -- compound ore_N ;
-lin bore_N = mkN "bore" "bores" ; -- notcompound ore_N ;
-lin hellebore_N = mkN "hellebore" "hellebores" ; -- compound ore_N ;
-lin smoothbore_N = mkN "smoothbore" "smoothbores" ; -- compound ore_N ;
-lin counterbore_N = mkN "counterbore" "counterbores" ; -- compound ore_N ;
-lin core_N = mkN "core" "cores" ; -- notcompound ore_N ;
-lin albacore_N = mkN "albacore" "albacores" ; -- compound ore_N ;
-lin manticore_N = mkN "manticore" "manticores" ; -- compound ore_N ;
-lin encore_N = mkN "encore" "encores" ; -- compound ore_N ;
-lin score_N = mkN "score" "scores" ; -- notcompound ore_N ;
-lin 'three-score_N' = mkN "three-score" "three-scores" ; -- compound ore_N ;
-lin threescore_N = mkN "threescore" "threescores" ; -- compound ore_N ;
-lin underscore_N = mkN "underscore" "underscores" ; -- compound ore_N ;
-lin fourscore_N = mkN "fourscore" "fourscores" ; -- compound ore_N ;
-lin battledore_N = mkN "battledore" "battledores" ; -- compound ore_N ;
-lin stevedore_N = mkN "stevedore" "stevedores" ; -- compound ore_N ;
-lin commodore_N = mkN "commodore" "commodores" ; -- compound ore_N ;
-lin fore_N = mkN "fore" "fores" ; -- notcompound ore_N ;
-lin pinafore_N = mkN "pinafore" "pinafores" ; -- compound ore_N ;
-lin gore_N = mkN "gore" "gores" ; -- notcompound ore_N ;
-lin chore_N = mkN "chore" "chores" ; -- notcompound ore_N ;
-lin semaphore_N = mkN "semaphore" "semaphores" ; -- compound ore_N ;
-lin conidiophore_N = mkN "conidiophore" "conidiophores" ; -- compound ore_N ;
-lin antheridiophore_N = mkN "antheridiophore" "antheridiophores" ; -- compound ore_N ;
-lin sporangiophore_N = mkN "sporangiophore" "sporangiophores" ; -- compound ore_N ;
-lin chromophore_N = mkN "chromophore" "chromophores" ; -- compound ore_N ;
-lin ctenophore_N = mkN "ctenophore" "ctenophores" ; -- compound ore_N ;
-lin siphonophore_N = mkN "siphonophore" "siphonophores" ; -- compound ore_N ;
-lin gynophore_N = mkN "gynophore" "gynophores" ; -- compound ore_N ;
-lin carpophore_N = mkN "carpophore" "carpophores" ; -- compound ore_N ;
-lin sporophore_N = mkN "sporophore" "sporophores" ; -- compound ore_N ;
-lin pneumatophore_N = mkN "pneumatophore" "pneumatophores" ; -- compound ore_N ;
-lin gametophore_N = mkN "gametophore" "gametophores" ; -- compound ore_N ;
-lin shore_N = mkN "shore" "shores" ; -- notcompound ore_N ;
-lin seashore_N = mkN "seashore" "seashores" ; -- compound ore_N ;
-lin foreshore_N = mkN "foreshore" "foreshores" ; -- compound ore_N ;
-lin whore_N = mkN "whore" "whores" ; -- notcompound ore_N ;
-lin lore_N = mkN "lore" "lores" ; -- notcompound ore_N ;
-lin folklore_N = mkN "folklore" "folklores" ; -- compound ore_N ;
-lin more_N = mkN "more" "mores" ; -- notcompound ore_N ;
-lin sycamore_N = mkN "sycamore" "sycamores" ; -- compound ore_N ;
-lin apishamore_N = mkN "apishamore" "apishamores" ; -- compound ore_N ;
-lin sophomore_N = mkN "sophomore" "sophomores" ; -- compound ore_N ;
-lin claymore_N = mkN "claymore" "claymores" ; -- compound ore_N ;
-lin signore_N = mkN "signore" "signores" ; -- compound ore_N ;
-lin snore_N = mkN "snore" "snores" ; -- notcompound ore_N ;
-lin pore_N = mkN "pore" "pores" ; -- notcompound ore_N ;
-lin blastopore_N = mkN "blastopore" "blastopores" ; -- compound ore_N ;
-lin spore_N = mkN "spore" "spores" ; -- notcompound ore_N ;
-lin megaspore_N = mkN "megaspore" "megaspores" ; -- compound ore_N ;
-lin tetraspore_N = mkN "tetraspore" "tetraspores" ; -- compound ore_N ;
-lin archespore_N = mkN "archespore" "archespores" ; -- compound ore_N ;
-lin ascospore_N = mkN "ascospore" "ascospores" ; -- compound ore_N ;
-lin endospore_N = mkN "endospore" "endospores" ; -- compound ore_N ;
-lin chlamydospore_N = mkN "chlamydospore" "chlamydospores" ; -- compound ore_N ;
-lin zygospore_N = mkN "zygospore" "zygospores" ; -- compound ore_N ;
-lin aeciospore_N = mkN "aeciospore" "aeciospores" ; -- compound ore_N ;
-lin basidiospore_N = mkN "basidiospore" "basidiospores" ; -- compound ore_N ;
-lin teliospore_N = mkN "teliospore" "teliospores" ; -- compound ore_N ;
-lin oospore_N = mkN "oospore" "oospores" ; -- compound ore_N ;
-lin zoospore_N = mkN "zoospore" "zoospores" ; -- compound ore_N ;
-lin carpospore_N = mkN "carpospore" "carpospores" ; -- compound ore_N ;
-lin microspore_N = mkN "microspore" "microspores" ; -- compound ore_N ;
-lin arthrospore_N = mkN "arthrospore" "arthrospores" ; -- compound ore_N ;
-lin polypore_N = mkN "polypore" "polypores" ; -- compound ore_N ;
-lin crore_N = mkN "crore" "crores" ; -- notcompound ore_N ;
-lin furore_N = mkN "furore" "furores" ; -- compound ore_N ;
-lin sore_N = mkN "sore" "sores" ; -- notcompound ore_N ;
-lin bedsore_N = mkN "bedsore" "bedsores" ; -- compound ore_N ;
-lin eyesore_N = mkN "eyesore" "eyesores" ; -- compound ore_N ;
-lin store_N = mkN "store" "stores" ; -- notcompound ore_N ;
-lin 'chain-store_N' = mkN "chain-store" "chain-stores" ; -- compound ore_N ;
-lin drugstore_N = mkN "drugstore" "drugstores" ; -- compound ore_N ;
-lin herbivore_N = mkN "herbivore" "herbivores" ; -- compound ore_N ;
-lin omnivore_N = mkN "omnivore" "omnivores" ; -- compound ore_N ;
-lin carnivore_N = mkN "carnivore" "carnivores" ; -- compound ore_N ;
-lin insectivore_N = mkN "insectivore" "insectivores" ; -- compound ore_N ;
-lin yore_N = mkN "yore" "yores" ; -- notcompound ore_N ;
-lin 'amour-propre_N' = mkN "amour-propre" "amour-propres" ;
-lin 'pied-à-terre_N' = mkN "pied-à-terre" "pied-à-terres" ;
-lin parterre_N = mkN "parterre" "parterres" ;
-lin murre_N = mkN "murre" "murres" ;
-lin theatre_N = mkN "theatre" "theatres" ;
-lin 'operating-theatre_N' = mkN "operating-theatre" "operating-theatres" ; -- compound theatre_N ;
-lin amphitheatre_N = mkN "amphitheatre" "amphitheatres" ; -- compound theatre_N ;
-lin spectre_N = mkN "spectre" "spectres" ;
-lin metre_N = mkN "metre" "metres" ;
-lin millimetre_N = mkN "millimetre" "millimetres" ; -- compound metre_N ;
-lin centimetre_N = mkN "centimetre" "centimetres" ; -- compound metre_N ;
-lin kilometre_N = mkN "kilometre" "kilometres" ; -- compound metre_N ;
-lin saltpetre_N = mkN "saltpetre" "saltpetres" ;
-lin litre_N = mkN "litre" "litres" ;
-lin kilolitre_N = mkN "kilolitre" "kilolitres" ; -- compound litre_N ;
-lin mitre_N = mkN "mitre" "mitres" ;
-lin nitre_N = mkN "nitre" "nitres" ;
-lin goitre_N = mkN "goitre" "goitres" ;
-lin huitre_N = mkN "huitre" "huitres" ;
-lin philtre_N = mkN "philtre" "philtres" ;
-lin 'love-philtre_N' = mkN "love-philtre" "love-philtres" ; -- compound philtre_N ;
-lin centre_N = mkN "centre" "centres" ;
-lin 'nerve-centre_N' = mkN "nerve-centre" "nerve-centres" ; -- compound centre_N ;
-lin 'storm-centre_N' = mkN "storm-centre" "storm-centres" ; -- compound centre_N ;
-lin jobcentre_N = mkN "jobcentre" "jobcentres" ; -- compound centre_N ;
-lin epicentre_N = mkN "epicentre" "epicentres" ; -- compound centre_N ;
-lin sceptre_N = mkN "sceptre" "sceptres" ;
-lin piastre_N = mkN "piastre" "piastres" ;
-lin lustre_N = mkN "lustre" "lustres" ;
-lin cure_N = mkN "cure" "cures" ;
-lin 'rest-cure_N' = mkN "rest-cure" "rest-cures" ; -- compound cure_N ;
-lin sinecure_N = mkN "sinecure" "sinecures" ; -- compound cure_N ;
-lin pedicure_N = mkN "pedicure" "pedicures" ; -- compound cure_N ;
-lin manicure_N = mkN "manicure" "manicures" ; -- compound cure_N ;
-lin epicure_N = mkN "epicure" "epicures" ; -- compound cure_N ;
-lin procedure_N = mkN "procedure" "procedures" ;
-lin supersedure_N = mkN "supersedure" "supersedures" ;
-lin verdure_N = mkN "verdure" "verdures" ;
-lin ordure_N = mkN "ordure" "ordures" ;
-lin 'force majeure_N' = mkN "force majeure" "force majeures" ;
-lin coiffure_N = mkN "coiffure" "coiffures" ;
-lin figure_N = mkN "figure" "figures" ;
-lin 'lay figure_N' = mkN "lay figure" "lay figures" ; -- compound figure_N ;
-lin subfigure_N = mkN "subfigure" "subfigures" ; -- compound figure_N ;
-lin brochure_N = mkN "brochure" "brochures" ;
-lin lure_N = mkN "lure" "lures" ;
-lin failure_N = mkN "failure" "failures" ; -- compound lure_N ;
-lin 'heart-failure_N' = mkN "heart-failure" "heart-failures" ; -- compound lure_N ;
-lin allure_N = mkN "allure" "allures" ; -- compound lure_N ;
-lin encolure_N = mkN "encolure" "encolures" ; -- compound lure_N ;
-lin manure_N = mkN "manure" "manures" ;
-lin tenure_N = mkN "tenure" "tenures" ;
-lin pleasure_N = mkN "pleasure" "pleasures" ;
-lin displeasure_N = mkN "displeasure" "displeasures" ; -- compound pleasure_N ;
-lin measure_N = mkN "measure" "measures" ;
-lin 'yard-measure_N' = mkN "yard-measure" "yard-measures" ; -- compound measure_N ;
-lin 'tape-measure_N' = mkN "tape-measure" "tape-measures" ; -- compound measure_N ;
-lin countermeasure_N = mkN "countermeasure" "countermeasures" ; -- compound measure_N ;
-lin treasure_N = mkN "treasure" "treasures" ;
-lin embrasure_N = mkN "embrasure" "embrasures" ;
-lin erasure_N = mkN "erasure" "erasures" ;
-lin incisure_N = mkN "incisure" "incisures" ;
-lin leisure_N = mkN "leisure" "leisures" ;
-lin censure_N = mkN "censure" "censures" ;
-lin tonsure_N = mkN "tonsure" "tonsures" ;
-lin closure_N = mkN "closure" "closures" ;
-lin foreclosure_N = mkN "foreclosure" "foreclosures" ; -- compound closure_N ;
-lin enclosure_N = mkN "enclosure" "enclosures" ; -- compound closure_N ;
-lin inclosure_N = mkN "inclosure" "inclosures" ; -- compound closure_N ;
-lin disclosure_N = mkN "disclosure" "disclosures" ; -- compound closure_N ;
-lin cynosure_N = mkN "cynosure" "cynosures" ;
-lin composure_N = mkN "composure" "composures" ;
-lin discomposure_N = mkN "discomposure" "discomposures" ; -- compound composure_N ;
-lin exposure_N = mkN "exposure" "exposures" ;
-lin 'time-exposure_N' = mkN "time-exposure" "time-exposures" ; -- compound exposure_N ;
-lin underexposure_N = mkN "underexposure" "underexposures" ; -- compound exposure_N ;
-lin overexposure_N = mkN "overexposure" "overexposures" ; -- compound exposure_N ;
-lin pressure_N = mkN "pressure" "pressures" ;
-lin 'blood-pressure_N' = mkN "blood-pressure" "blood-pressures" ; -- compound pressure_N ;
-lin 'high-pressure_N' = mkN "high-pressure" "high-pressures" ; -- compound pressure_N ;
-lin overpressure_N = mkN "overpressure" "overpressures" ; -- compound pressure_N ;
-lin acupressure_N = mkN "acupressure" "acupressures" ; -- compound pressure_N ;
-lin fissure_N = mkN "fissure" "fissures" ;
-lin commissure_N = mkN "commissure" "commissures" ;
-lin judicature_N = mkN "judicature" "judicatures" ;
-lin caricature_N = mkN "caricature" "caricatures" ;
-lin candidature_N = mkN "candidature" "candidatures" ;
-lin feature_N = mkN "feature" "features" ;
-lin creature_N = mkN "creature" "creatures" ;
-lin ligature_N = mkN "ligature" "ligatures" ;
-lin miniature_N = mkN "miniature" "miniatures" ;
-lin tablature_N = mkN "tablature" "tablatures" ;
-lin entablature_N = mkN "entablature" "entablatures" ; -- compound tablature_N ;
-lin nomenclature_N = mkN "nomenclature" "nomenclatures" ;
-lin filature_N = mkN "filature" "filatures" ;
-lin legislature_N = mkN "legislature" "legislatures" ;
-lin palmature_N = mkN "palmature" "palmatures" ;
-lin armature_N = mkN "armature" "armatures" ;
-lin nature_N = mkN "nature" "natures" ;
-lin signature_N = mkN "signature" "signatures" ; -- compound nature_N ;
-lin countersignature_N = mkN "countersignature" "countersignatures" ; -- compound nature_N ;
-lin quadrature_N = mkN "quadrature" "quadratures" ;
-lin temperature_N = mkN "temperature" "temperatures" ;
-lin literature_N = mkN "literature" "literatures" ;
-lin stature_N = mkN "stature" "statures" ;
-lin curvature_N = mkN "curvature" "curvatures" ;
-lin manufacture_N = mkN "manufacture" "manufactures" ;
-lin fracture_N = mkN "fracture" "fractures" ;
-lin contracture_N = mkN "contracture" "contractures" ;
-lin prefecture_N = mkN "prefecture" "prefectures" ;
-lin conjecture_N = mkN "conjecture" "conjectures" ;
-lin lecture_N = mkN "lecture" "lectures" ;
-lin 'curtain-lecture_N' = mkN "curtain-lecture" "curtain-lectures" ; -- compound lecture_N ;
-lin architecture_N = mkN "architecture" "architectures" ;
-lin cytoarchitecture_N = mkN "cytoarchitecture" "cytoarchitectures" ; -- compound architecture_N ;
-lin picture_N = mkN "picture" "pictures" ;
-lin 'word-picture_N' = mkN "word-picture" "word-pictures" ; -- compound picture_N ;
-lin stricture_N = mkN "stricture" "strictures" ;
-lin cincture_N = mkN "cincture" "cinctures" ;
-lin tincture_N = mkN "tincture" "tinctures" ;
-lin juncture_N = mkN "juncture" "junctures" ;
-lin conjuncture_N = mkN "conjuncture" "conjunctures" ; -- compound juncture_N ;
-lin puncture_N = mkN "puncture" "punctures" ;
-lin venipuncture_N = mkN "venipuncture" "venipunctures" ; -- compound puncture_N ;
-lin acupuncture_N = mkN "acupuncture" "acupunctures" ; -- compound puncture_N ;
-lin structure_N = mkN "structure" "structures" ;
-lin infrastructure_N = mkN "infrastructure" "infrastructures" ; -- compound structure_N ;
-lin substructure_N = mkN "substructure" "substructures" ; -- compound structure_N ;
-lin superstructure_N = mkN "superstructure" "superstructures" ; -- compound structure_N ;
-lin portraiture_N = mkN "portraiture" "portraitures" ;
-lin expenditure_N = mkN "expenditure" "expenditures" ;
-lin forfeiture_N = mkN "forfeiture" "forfeitures" ;
-lin discomfiture_N = mkN "discomfiture" "discomfitures" ;
-lin confiture_N = mkN "confiture" "confitures" ;
-lin primogeniture_N = mkN "primogeniture" "primogenitures" ;
-lin furniture_N = mkN "furniture" "furnitures" ;
-lin vestiture_N = mkN "vestiture" "vestitures" ;
-lin divestiture_N = mkN "divestiture" "divestitures" ; -- compound vestiture_N ;
-lin investiture_N = mkN "investiture" "investitures" ; -- compound vestiture_N ;
-lin culture_N = mkN "culture" "cultures" ;
-lin aquaculture_N = mkN "aquaculture" "aquacultures" ; -- compound culture_N ;
-lin subculture_N = mkN "subculture" "subcultures" ; -- compound culture_N ;
-lin apiculture_N = mkN "apiculture" "apicultures" ; -- compound culture_N ;
-lin sericulture_N = mkN "sericulture" "sericultures" ; -- compound culture_N ;
-lin agriculture_N = mkN "agriculture" "agricultures" ; -- compound culture_N ;
-lin arboriculture_N = mkN "arboriculture" "arboricultures" ; -- compound culture_N ;
-lin floriculture_N = mkN "floriculture" "floricultures" ; -- compound culture_N ;
-lin viticulture_N = mkN "viticulture" "viticultures" ; -- compound culture_N ;
-lin horticulture_N = mkN "horticulture" "horticultures" ; -- compound culture_N ;
-lin silviculture_N = mkN "silviculture" "silvicultures" ; -- compound culture_N ;
-lin monoculture_N = mkN "monoculture" "monocultures" ; -- compound culture_N ;
-lin cyberculture_N = mkN "cyberculture" "cybercultures" ; -- compound culture_N ;
-lin counterculture_N = mkN "counterculture" "countercultures" ; -- compound culture_N ;
-lin sepulture_N = mkN "sepulture" "sepultures" ;
-lin vulture_N = mkN "vulture" "vultures" ;
-lin debenture_N = mkN "debenture" "debentures" ;
-lin denture_N = mkN "denture" "dentures" ;
-lin indenture_N = mkN "indenture" "indentures" ; -- compound denture_N ;
-lin venture_N = mkN "venture" "ventures" ;
-lin adventure_N = mkN "adventure" "adventures" ; -- compound venture_N ;
-lin peradventure_N = mkN "peradventure" "peradventures" ; -- compound venture_N ;
-lin misadventure_N = mkN "misadventure" "misadventures" ; -- compound venture_N ;
-lin jointure_N = mkN "jointure" "jointures" ;
-lin capture_N = mkN "capture" "captures" ;
-lin recapture_N = mkN "recapture" "recaptures" ; -- compound capture_N ;
-lin rapture_N = mkN "rapture" "raptures" ;
-lin scripture_N = mkN "scripture" "scriptures" ;
-lin sculpture_N = mkN "sculpture" "sculptures" ;
-lin rupture_N = mkN "rupture" "ruptures" ;
-lin departure_N = mkN "departure" "departures" ;
-lin aperture_N = mkN "aperture" "apertures" ;
-lin overture_N = mkN "overture" "overtures" ;
-lin couverture_N = mkN "couverture" "couvertures" ;
-lin torture_N = mkN "torture" "tortures" ;
-lin nurture_N = mkN "nurture" "nurtures" ;
-lin pasture_N = mkN "pasture" "pastures" ;
-lin gesture_N = mkN "gesture" "gestures" ;
-lin vesture_N = mkN "vesture" "vestures" ;
-lin moisture_N = mkN "moisture" "moistures" ;
-lin posture_N = mkN "posture" "postures" ;
-lin imposture_N = mkN "imposture" "impostures" ; -- compound posture_N ;
-lin future_N = mkN "future" "futures" ;
-lin couture_N = mkN "couture" "coutures" ;
-lin suture_N = mkN "suture" "sutures" ;
-lin texture_N = mkN "texture" "textures" ;
-lin fixture_N = mkN "fixture" "fixtures" ;
-lin mixture_N = mkN "mixture" "mixtures" ;
-lin 'smoking-mixture_N' = mkN "smoking-mixture" "smoking-mixtures" ; -- compound mixture_N ;
-lin 'freezing-mixture_N' = mkN "freezing-mixture" "freezing-mixtures" ; -- compound mixture_N ;
-lin 'heather-mixture_N' = mkN "heather-mixture" "heather-mixtures" ; -- compound mixture_N ;
-lin admixture_N = mkN "admixture" "admixtures" ; -- compound mixture_N ;
-lin intermixture_N = mkN "intermixture" "intermixtures" ; -- compound mixture_N ;
-lin gravure_N = mkN "gravure" "gravures" ;
-lin photogravure_N = mkN "photogravure" "photogravures" ; -- compound gravure_N ;
-lin rotogravure_N = mkN "rotogravure" "rotogravures" ; -- compound gravure_N ;
-lin flexure_N = mkN "flexure" "flexures" ;
-lin dasyure_N = mkN "dasyure" "dasyures" ;
-lin azure_N = mkN "azure" "azures" ;
-lin seizure_N = mkN "seizure" "seizures" ;
-lin 'joie de vivre_N' = mkN "joie de vivre" "joie de vivres" ;
-lin oeuvre_N = mkN "oeuvre" "oeuvres" ;
-lin manoeuvre_N = mkN "manoeuvre" "manoeuvres" ; -- compound oeuvre_N ;
-lin louvre_N = mkN "louvre" "louvres" ;
-lin lyre_N = mkN "lyre" "lyres" ;
-lin pyre_N = mkN "pyre" "pyres" ;
-lin tyre_N = mkN "tyre" "tyres" ;
-lin 'porte-cochère_N' = mkN "porte-cochère" "porte-cochères" ;
-lin première_N = mkN "première" "premières" ;
-lin brassière_N = mkN "brassière" "brassières" ;
-lin portière_N = mkN "portière" "portières" ;
-lin compère_N = mkN "compère" "compères" ;
-lin confrère_N = mkN "confrère" "confrères" ;
-lin base_N = mkN "base" "bases" ;
-lin 'rocket-base_N' = mkN "rocket-base" "rocket-bases" ; -- compound base_N ;
-lin database_N = mkN "database" "databases" ; -- compound base_N ;
-lin subbase_N = mkN "subbase" "subbases" ; -- compound base_N ;
-lin firebase_N = mkN "firebase" "firebases" ; -- compound base_N ;
-lin wheelbase_N = mkN "wheelbase" "wheelbases" ; -- compound base_N ;
-lin gynobase_N = mkN "gynobase" "gynobases" ; -- compound base_N ;
-lin surbase_N = mkN "surbase" "surbases" ; -- compound base_N ;
-lin case_N = mkN "case" "cases" ;
-lin 'cigarette-case_N' = mkN "cigarette-case" "cigarette-cases" ; -- compound case_N ;
-lin 'packing-case_N' = mkN "packing-case" "packing-cases" ; -- compound case_N ;
-lin 'dressing-case_N' = mkN "dressing-case" "dressing-cases" ; -- compound case_N ;
-lin 'gear-case_N' = mkN "gear-case" "gear-cases" ; -- compound case_N ;
-lin 'letter-case_N' = mkN "letter-case" "letter-cases" ; -- compound case_N ;
-lin cardcase_N = mkN "cardcase" "cardcases" ; -- compound case_N ;
-lin notecase_N = mkN "notecase" "notecases" ; -- compound case_N ;
-lin briefcase_N = mkN "briefcase" "briefcases" ; -- compound case_N ;
-lin crankcase_N = mkN "crankcase" "crankcases" ; -- compound case_N ;
-lin bookcase_N = mkN "bookcase" "bookcases" ; -- compound case_N ;
-lin carcase_N = mkN "carcase" "carcases" ; -- compound case_N ;
-lin staircase_N = mkN "staircase" "staircases" ; -- compound case_N ;
-lin doorcase_N = mkN "doorcase" "doorcases" ; -- compound case_N ;
-lin suitcase_N = mkN "suitcase" "suitcases" ; -- compound case_N ;
-lin showcase_N = mkN "showcase" "showcases" ; -- compound case_N ;
-lin pillowcase_N = mkN "pillowcase" "pillowcases" ; -- compound case_N ;
-lin hyaluronidase_N = mkN "hyaluronidase" "hyaluronidases" ;
-lin disaccharidase_N = mkN "disaccharidase" "disaccharidases" ;
-lin oxidase_N = mkN "oxidase" "oxidases" ;
-lin peroxidase_N = mkN "peroxidase" "peroxidases" ; -- compound oxidase_N ;
-lin ease_N = mkN "ease" "eases" ;
-lin 'heart\'s-ease_N' = mkN "heart's-ease" "heart's-eases" ; -- compound ease_N ;
-lin cease_N = mkN "cease" "ceases" ; -- notcompound ease_N ;
-lin decease_N = mkN "decease" "deceases" ; -- compound ease_N ;
-lin lease_N = mkN "lease" "leases" ; -- notcompound ease_N ;
-lin sublease_N = mkN "sublease" "subleases" ; -- compound ease_N ;
-lin nuclease_N = mkN "nuclease" "nucleases" ; -- compound ease_N ;
-lin ribonuclease_N = mkN "ribonuclease" "ribonucleases" ; -- compound ease_N ;
-lin endonuclease_N = mkN "endonuclease" "endonucleases" ; -- compound ease_N ;
-lin exonuclease_N = mkN "exonuclease" "exonucleases" ; -- compound ease_N ;
-lin release_N = mkN "release" "releases" ; -- compound ease_N ;
-lin unease_N = mkN "unease" "uneases" ; -- compound ease_N ;
-lin pease_N = mkN "pease" "peases" ; -- notcompound ease_N ;
-lin crease_N = mkN "crease" "creases" ; -- notcompound ease_N ;
-lin decrease_N = mkN "decrease" "decreases" ; -- compound ease_N ;
-lin increase_N = mkN "increase" "increases" ; -- compound ease_N ;
-lin grease_N = mkN "grease" "greases" ; -- notcompound ease_N ;
-lin urease_N = mkN "urease" "ureases" ; -- compound ease_N ;
-lin disease_N = mkN "disease" "diseases" ; -- compound ease_N ;
-lin 'heart-disease_N' = mkN "heart-disease" "heart-diseases" ; -- compound ease_N ;
-lin tease_N = mkN "tease" "teases" ; -- notcompound ease_N ;
-lin protease_N = mkN "protease" "proteases" ; -- compound ease_N ;
-lin striptease_N = mkN "striptease" "stripteases" ; -- compound ease_N ;
-lin chase_N = mkN "chase" "chases" ;
-lin 'paper-chase_N' = mkN "paper-chase" "paper-chases" ; -- compound chase_N ;
-lin steeplechase_N = mkN "steeplechase" "steeplechases" ; -- compound chase_N ;
-lin purchase_N = mkN "purchase" "purchases" ; -- compound chase_N ;
-lin phase_N = mkN "phase" "phases" ;
-lin anaphase_N = mkN "anaphase" "anaphases" ; -- compound phase_N ;
-lin metaphase_N = mkN "metaphase" "metaphases" ; -- compound phase_N ;
-lin telophase_N = mkN "telophase" "telophases" ; -- compound phase_N ;
-lin prophase_N = mkN "prophase" "prophases" ; -- compound phase_N ;
-lin ukase_N = mkN "ukase" "ukases" ;
-lin catalase_N = mkN "catalase" "catalases" ;
-lin periclase_N = mkN "periclase" "periclases" ;
-lin orthoclase_N = mkN "orthoclase" "orthoclases" ;
-lin plagioclase_N = mkN "plagioclase" "plagioclases" ;
-lin coagulase_N = mkN "coagulase" "coagulases" ;
-lin amylase_N = mkN "amylase" "amylases" ;
-lin decarboxylase_N = mkN "decarboxylase" "decarboxylases" ;
-lin cocarboxylase_N = mkN "cocarboxylase" "cocarboxylases" ;
-lin zymase_N = mkN "zymase" "zymases" ;
-lin pyocyanase_N = mkN "pyocyanase" "pyocyanases" ;
-lin collagenase_N = mkN "collagenase" "collagenases" ;
-lin nitrogenase_N = mkN "nitrogenase" "nitrogenases" ;
-lin oxygenase_N = mkN "oxygenase" "oxygenases" ;
-lin cyclooxygenase_N = mkN "cyclooxygenase" "cyclooxygenases" ; -- compound oxygenase_N ;
-lin prothrombinase_N = mkN "prothrombinase" "prothrombinases" ;
-lin asparaginase_N = mkN "asparaginase" "asparaginases" ;
-lin kinase_N = mkN "kinase" "kinases" ;
-lin enterokinase_N = mkN "enterokinase" "enterokinases" ; -- compound kinase_N ;
-lin streptokinase_N = mkN "streptokinase" "streptokinases" ; -- compound kinase_N ;
-lin penicillinase_N = mkN "penicillinase" "penicillinases" ;
-lin transaminase_N = mkN "transaminase" "transaminases" ;
-lin histaminase_N = mkN "histaminase" "histaminases" ;
-lin fibrinase_N = mkN "fibrinase" "fibrinases" ;
-lin streptodornase_N = mkN "streptodornase" "streptodornases" ;
-lin lipase_N = mkN "lipase" "lipases" ;
-lin caspase_N = mkN "caspase" "caspases" ;
-lin transferase_N = mkN "transferase" "transferases" ;
-lin telomerase_N = mkN "telomerase" "telomerases" ;
-lin isomerase_N = mkN "isomerase" "isomerases" ;
-lin polymerase_N = mkN "polymerase" "polymerases" ;
-lin cholinesterase_N = mkN "cholinesterase" "cholinesterases" ;
-lin anticholinesterase_N = mkN "anticholinesterase" "anticholinesterases" ; -- compound cholinesterase_N ;
-lin phrase_N = mkN "phrase" "phrases" ;
-lin paraphrase_N = mkN "paraphrase" "paraphrases" ; -- compound phrase_N ;
-lin catchphrase_N = mkN "catchphrase" "catchphrases" ; -- compound phrase_N ;
-lin chrysoprase_N = mkN "chrysoprase" "chrysoprases" ;
-lin phosphatase_N = mkN "phosphatase" "phosphatases" ;
-lin lactase_N = mkN "lactase" "lactases" ;
-lin reductase_N = mkN "reductase" "reductases" ;
-lin oxidoreductase_N = mkN "oxidoreductase" "oxidoreductases" ; -- compound reductase_N ;
-lin secretase_N = mkN "secretase" "secretases" ;
-lin transcriptase_N = mkN "transcriptase" "transcriptases" ;
-lin invertase_N = mkN "invertase" "invertases" ;
-lin elastase_N = mkN "elastase" "elastases" ;
-lin vase_N = mkN "vase" "vases" ;
-lin gcse_N = mkN "gcse" "gcses" ;
-lin diocese_N = mkN "diocese" "dioceses" ;
-lin archdiocese_N = mkN "archdiocese" "archdioceses" ; -- compound diocese_N ;
-lin cheese_N = mkN "cheese" "cheeses" ;
-lin headcheese_N = mkN "headcheese" "headcheeses" ; -- compound cheese_N ;
-lin telegraphese_N = mkN "telegraphese" "telegrapheses" ;
-lin legalese_N = mkN "legalese" "legaleses" ;
-lin officialese_N = mkN "officialese" "officialeses" ;
-lin journalese_N = mkN "journalese" "journaleses" ;
-lin manganese_N = mkN "manganese" "manganeses" ;
-lin headlinese_N = mkN "headlinese" "headlineses" ;
-lin hollandaise_N = mkN "hollandaise" "hollandaises" ;
-lin chaise_N = mkN "chaise" "chaises" ;
-lin 'post-chaise_N' = mkN "post-chaise" "post-chaises" ; -- compound chaise_N ;
-lin malaise_N = mkN "malaise" "malaises" ;
-lin bordelaise_N = mkN "bordelaise" "bordelaises" ;
-lin marseillaise_N = mkN "marseillaise" "marseillaises" ;
-lin mayonnaise_N = mkN "mayonnaise" "mayonnaises" ;
-lin polonaise_N = mkN "polonaise" "polonaises" ;
-lin bearnaise_N = mkN "bearnaise" "bearnaises" ;
-lin raise_N = mkN "raise" "raises" ;
-lin fraise_N = mkN "fraise" "fraises" ; -- notcompound raise_N ;
-lin praise_N = mkN "praise" "praises" ; -- notcompound raise_N ;
-lin bise_N = mkN "bise" "bises" ;
-lin exercise_N = mkN "exercise" "exercises" ;
-lin excise_N = mkN "excise" "excises" ;
-lin paradise_N = mkN "paradise" "paradises" ;
-lin merchandise_N = mkN "merchandise" "merchandises" ;
-lin franchise_N = mkN "franchise" "franchises" ;
-lin valise_N = mkN "valise" "valises" ;
-lin camise_N = mkN "camise" "camises" ;
-lin demise_N = mkN "demise" "demises" ;
-lin chemise_N = mkN "chemise" "chemises" ;
-lin remise_N = mkN "remise" "remises" ;
-lin premise_N = mkN "premise" "premises" ; -- notcompound remise_N ;
-lin promise_N = mkN "promise" "promises" ;
-lin compromise_N = mkN "compromise" "compromises" ; -- compound promise_N ;
-lin surmise_N = mkN "surmise" "surmises" ;
-lin anise_N = mkN "anise" "anises" ;
-lin noise_N = mkN "noise" "noises" ;
-lin genoise_N = mkN "genoise" "genoises" ; -- compound noise_N ;
-lin poise_N = mkN "poise" "poises" ;
-lin equipoise_N = mkN "equipoise" "equipoises" ; -- compound poise_N ;
-lin counterpoise_N = mkN "counterpoise" "counterpoises" ; -- compound poise_N ;
-lin porpoise_N = mkN "porpoise" "porpoises" ; -- compound poise_N ;
-lin vichyssoise_N = mkN "vichyssoise" "vichyssoises" ;
-lin tortoise_N = mkN "tortoise" "tortoises" ;
-lin turquoise_N = mkN "turquoise" "turquoises" ;
-lin rise_N = mkN "rise" "rises" ;
-lin cerise_N = mkN "cerise" "cerises" ; -- compound rise_N ;
-lin sunrise_N = mkN "sunrise" "sunrises" ; -- compound rise_N ;
-lin enterprise_N = mkN "enterprise" "enterprises" ; -- compound rise_N ;
-lin surprise_N = mkN "surprise" "surprises" ; -- compound rise_N ;
-lin treatise_N = mkN "treatise" "treatises" ;
-lin expertise_N = mkN "expertise" "expertises" ;
-lin mortise_N = mkN "mortise" "mortises" ;
-lin guise_N = mkN "guise" "guises" ;
-lin disguise_N = mkN "disguise" "disguises" ; -- compound guise_N ;
-lin bruise_N = mkN "bruise" "bruises" ;
-lin cruise_N = mkN "cruise" "cruises" ;
-lin vise_N = mkN "vise" "vises" ;
-lin devise_N = mkN "devise" "devises" ; -- compound vise_N ;
-lin revise_N = mkN "revise" "revises" ; -- compound vise_N ;
-lin dulse_N = mkN "dulse" "dulses" ;
-lin pulse_N = mkN "pulse" "pulses" ;
-lin repulse_N = mkN "repulse" "repulses" ; -- compound pulse_N ;
-lin impulse_N = mkN "impulse" "impulses" ; -- compound pulse_N ;
-lin manse_N = mkN "manse" "manses" ;
-lin expanse_N = mkN "expanse" "expanses" ;
-lin license_N = mkN "license" "licenses" ;
-lin incense_N = mkN "incense" "incenses" ;
-lin frankincense_N = mkN "frankincense" "frankincenses" ; -- compound incense_N ;
-lin defense_N = mkN "defense" "defenses" ;
-lin offense_N = mkN "offense" "offenses" ;
-lin recompense_N = mkN "recompense" "recompenses" ;
-lin suspense_N = mkN "suspense" "suspenses" ;
-lin expense_N = mkN "expense" "expenses" ;
-lin sense_N = mkN "sense" "senses" ;
-lin 'road-sense_N' = mkN "road-sense" "road-senses" ; -- compound sense_N ;
-lin 'horse-sense_N' = mkN "horse-sense" "horse-senses" ; -- compound sense_N ;
-lin nonsense_N = mkN "nonsense" "nonsenses" ; -- compound sense_N ;
-lin somatosense_N = mkN "somatosense" "somatosenses" ; -- compound sense_N ;
-lin tense_N = mkN "tense" "tenses" ;
-lin pretense_N = mkN "pretense" "pretenses" ; -- compound tense_N ;
-lin rinse_N = mkN "rinse" "rinses" ;
-lin response_N = mkN "response" "responses" ;
-lin ribose_N = mkN "ribose" "riboses" ;
-lin deoxyribose_N = mkN "deoxyribose" "deoxyriboses" ; -- compound ribose_N ;
-lin glucose_N = mkN "glucose" "glucoses" ;
-lin dose_N = mkN "dose" "doses" ;
-lin aldose_N = mkN "aldose" "aldoses" ; -- compound dose_N ;
-lin hose_N = mkN "hose" "hoses" ;
-lin 'fire-hose_N' = mkN "fire-hose" "fire-hoses" ; -- compound hose_N ;
-lin 'panty-hose_N' = mkN "panty-hose" "panty-hoses" ; -- compound hose_N ;
-lin boothose_N = mkN "boothose" "boothoses" ; -- compound hose_N ;
-lin pantyhose_N = mkN "pantyhose" "pantyhoses" ; -- compound hose_N ;
-lin triose_N = mkN "triose" "trioses" ;
-lin close_N = mkN "close" "closes" ;
-lin cellulose_N = mkN "cellulose" "celluloses" ;
-lin pyrocellulose_N = mkN "pyrocellulose" "pyrocelluloses" ; -- compound cellulose_N ;
-lin nose_N = mkN "nose" "noses" ;
-lin 'pug-nose_N' = mkN "pug-nose" "pug-noses" ; -- compound nose_N ;
-lin conenose_N = mkN "conenose" "conenoses" ; -- compound nose_N ;
-lin raffinose_N = mkN "raffinose" "raffinoses" ; -- compound nose_N ;
-lin bullnose_N = mkN "bullnose" "bullnoses" ; -- compound nose_N ;
-lin caboose_N = mkN "caboose" "cabooses" ;
-lin mongoose_N = mkN "mongoose" "mongooses" ;
-lin noose_N = mkN "noose" "nooses" ;
-lin papoose_N = mkN "papoose" "papooses" ;
-lin pose_N = mkN "pose" "poses" ;
-lin repose_N = mkN "repose" "reposes" ; -- compound pose_N ;
-lin purpose_N = mkN "purpose" "purposes" ; -- compound pose_N ;
-lin transpose_N = mkN "transpose" "transposes" ; -- compound pose_N ;
-lin rose_N = mkN "rose" "roses" ;
-lin 'guelder rose_N' = mkN "guelder rose" "guelder roses" ; -- compound rose_N ;
-lin 'musk-rose_N' = mkN "musk-rose" "musk-roses" ; -- compound rose_N ;
-lin sucrose_N = mkN "sucrose" "sucroses" ; -- compound rose_N ;
-lin tuberose_N = mkN "tuberose" "tuberoses" ; -- compound rose_N ;
-lin rockrose_N = mkN "rockrose" "rockroses" ; -- compound rose_N ;
-lin primrose_N = mkN "primrose" "primroses" ; -- compound rose_N ;
-lin prose_N = mkN "prose" "proses" ; -- notcompound rose_N ;
-lin tetrose_N = mkN "tetrose" "tetroses" ; -- compound rose_N ;
-lin dextrose_N = mkN "dextrose" "dextroses" ; -- compound rose_N ;
-lin lactose_N = mkN "lactose" "lactoses" ;
-lin galactose_N = mkN "galactose" "galactoses" ; -- compound lactose_N ;
-lin fructose_N = mkN "fructose" "fructoses" ;
-lin ketose_N = mkN "ketose" "ketoses" ;
-lin maltose_N = mkN "maltose" "maltoses" ;
-lin pentose_N = mkN "pentose" "pentoses" ;
-lin hexose_N = mkN "hexose" "hexoses" ;
-lin aldohexose_N = mkN "aldohexose" "aldohexoses" ; -- compound hexose_N ;
-lin ketohexose_N = mkN "ketohexose" "ketohexoses" ; -- compound hexose_N ;
-lin stachyose_N = mkN "stachyose" "stachyoses" ;
-lin apse_N = mkN "apse" "apses" ;
-lin lapse_N = mkN "lapse" "lapses" ; -- notcompound apse_N ;
-lin relapse_N = mkN "relapse" "relapses" ; -- compound apse_N ;
-lin collapse_N = mkN "collapse" "collapses" ; -- compound apse_N ;
-lin prolapse_N = mkN "prolapse" "prolapses" ; -- compound apse_N ;
-lin synapse_N = mkN "synapse" "synapses" ; -- compound apse_N ;
-lin eclipse_N = mkN "eclipse" "eclipses" ;
-lin ellipse_N = mkN "ellipse" "ellipses" ;
-lin glimpse_N = mkN "glimpse" "glimpses" ;
-lin copse_N = mkN "copse" "copses" ;
-lin corpse_N = mkN "corpse" "corpses" ;
-lin apocalypse_N = mkN "apocalypse" "apocalypses" ;
-lin arse_N = mkN "arse" "arses" ;
-lin hearse_N = mkN "hearse" "hearses" ; -- compound arse_N ;
-lin erse_N = mkN "erse" "erses" ;
-lin verse_N = mkN "verse" "verses" ; -- notcompound erse_N ;
-lin traverse_N = mkN "traverse" "traverses" ; -- compound erse_N ;
-lin obverse_N = mkN "obverse" "obverses" ; -- compound erse_N ;
-lin reverse_N = mkN "reverse" "reverses" ; -- compound erse_N ;
-lin universe_N = mkN "universe" "universes" ; -- compound erse_N ;
-lin inverse_N = mkN "inverse" "inverses" ; -- compound erse_N ;
-lin converse_N = mkN "converse" "converses" ; -- compound erse_N ;
-lin corse_N = mkN "corse" "corses" ;
-lin gorse_N = mkN "gorse" "gorses" ;
-lin horse_N = mkN "horse" "horses" ;
-lin 'sea-horse_N' = mkN "sea-horse" "sea-horses" ; -- compound horse_N ;
-lin 'rocking-horse_N' = mkN "rocking-horse" "rocking-horses" ; -- compound horse_N ;
-lin 'stalking-horse_N' = mkN "stalking-horse" "stalking-horses" ; -- compound horse_N ;
-lin 'vaulting-horse_N' = mkN "vaulting-horse" "vaulting-horses" ; -- compound horse_N ;
-lin 'towel-horse_N' = mkN "towel-horse" "towel-horses" ; -- compound horse_N ;
-lin 'draught-horse_N' = mkN "draught-horse" "draught-horses" ; -- compound horse_N ;
-lin 'post-horse_N' = mkN "post-horse" "post-horses" ; -- compound horse_N ;
-lin seahorse_N = mkN "seahorse" "seahorses" ; -- compound horse_N ;
-lin redhorse_N = mkN "redhorse" "redhorses" ; -- compound horse_N ;
-lin racehorse_N = mkN "racehorse" "racehorses" ; -- compound horse_N ;
-lin packhorse_N = mkN "packhorse" "packhorses" ; -- compound horse_N ;
-lin cockhorse_N = mkN "cockhorse" "cockhorses" ; -- compound horse_N ;
-lin workhorse_N = mkN "workhorse" "workhorses" ; -- compound horse_N ;
-lin warhorse_N = mkN "warhorse" "warhorses" ; -- compound horse_N ;
-lin clotheshorse_N = mkN "clotheshorse" "clotheshorses" ; -- compound horse_N ;
-lin carthorse_N = mkN "carthorse" "carthorses" ; -- compound horse_N ;
-lin sawhorse_N = mkN "sawhorse" "sawhorses" ; -- compound horse_N ;
-lin hobbyhorse_N = mkN "hobbyhorse" "hobbyhorses" ; -- compound horse_N ;
-lin morse_N = mkN "morse" "morses" ;
-lin remorse_N = mkN "remorse" "remorses" ; -- compound morse_N ;
-lin norse_N = mkN "norse" "norses" ;
-lin worse_N = mkN "worse" "worses" ;
-lin curse_N = mkN "curse" "curses" ;
-lin nurse_N = mkN "nurse" "nurses" ;
-lin 'wet-nurse_N' = mkN "wet-nurse" "wet-nurses" ; -- compound nurse_N ;
-lin bourse_N = mkN "bourse" "bourses" ;
-lin course_N = mkN "course" "courses" ;
-lin 'golf-course_N' = mkN "golf-course" "golf-courses" ; -- compound course_N ;
-lin racecourse_N = mkN "racecourse" "racecourses" ; -- compound course_N ;
-lin recourse_N = mkN "recourse" "recourses" ; -- compound course_N ;
-lin concourse_N = mkN "concourse" "concourses" ; -- compound course_N ;
-lin watercourse_N = mkN "watercourse" "watercourses" ; -- compound course_N ;
-lin intercourse_N = mkN "intercourse" "intercourses" ; -- compound course_N ;
-lin outercourse_N = mkN "outercourse" "outercourses" ; -- compound course_N ;
-lin discourse_N = mkN "discourse" "discourses" ; -- compound course_N ;
-lin purse_N = mkN "purse" "purses" ;
-lin cutpurse_N = mkN "cutpurse" "cutpurses" ; -- compound purse_N ;
-lin thyrse_N = mkN "thyrse" "thyrses" ;
-lin bagasse_N = mkN "bagasse" "bagasses" ;
-lin chasse_N = mkN "chasse" "chasses" ;
-lin palliasse_N = mkN "palliasse" "palliasses" ;
-lin pailliasse_N = mkN "pailliasse" "pailliasses" ;
-lin paillasse_N = mkN "paillasse" "paillasses" ;
-lin masse_N = mkN "masse" "masses" ;
-lin impasse_N = mkN "impasse" "impasses" ;
-lin wrasse_N = mkN "wrasse" "wrasses" ;
-lin demitasse_N = mkN "demitasse" "demitasses" ;
-lin crevasse_N = mkN "crevasse" "crevasses" ;
-lin fesse_N = mkN "fesse" "fesses" ;
-lin largesse_N = mkN "largesse" "largesses" ;
-lin finesse_N = mkN "finesse" "finesses" ;
-lin bouillabaisse_N = mkN "bouillabaisse" "bouillabaisses" ;
-lin pelisse_N = mkN "pelisse" "pelisses" ;
-lin coulisse_N = mkN "coulisse" "coulisses" ;
-lin cuisse_N = mkN "cuisse" "cuisses" ;
-lin fosse_N = mkN "fosse" "fosses" ;
-lin posse_N = mkN "posse" "posses" ;
-lin crosse_N = mkN "crosse" "crosses" ;
-lin lacrosse_N = mkN "lacrosse" "lacrosses" ; -- compound crosse_N ;
-lin mousse_N = mkN "mousse" "mousses" ;
-lin tsetse_N = mkN "tsetse" "tsetses" ;
-lin use_N = mkN "use" "uses" ;
-lin cause_N = mkN "cause" "causes" ; -- compound use_N ;
-lin clause_N = mkN "clause" "clauses" ; -- compound use_N ;
-lin applause_N = mkN "applause" "applauses" ; -- compound use_N ;
-lin pause_N = mkN "pause" "pauses" ; -- compound use_N ;
-lin heliopause_N = mkN "heliopause" "heliopauses" ; -- compound use_N ;
-lin menopause_N = mkN "menopause" "menopauses" ; -- compound use_N ;
-lin tropopause_N = mkN "tropopause" "tropopauses" ; -- compound use_N ;
-lin abuse_N = mkN "abuse" "abuses" ; -- compound use_N ;
-lin excuse_N = mkN "excuse" "excuses" ; -- compound use_N ;
-lin coiffeuse_N = mkN "coiffeuse" "coiffeuses" ; -- compound use_N ;
-lin chartreuse_N = mkN "chartreuse" "chartreuses" ; -- compound use_N ;
-lin masseuse_N = mkN "masseuse" "masseuses" ; -- compound use_N ;
-lin fuse_N = mkN "fuse" "fuses" ; -- notcompound use_N ;
-lin 'time-fuse_N' = mkN "time-fuse" "time-fuses" ; -- compound use_N ;
-lin refuse_N = mkN "refuse" "refuses" ; -- compound use_N ;
-lin recluse_N = mkN "recluse" "recluses" ; -- compound use_N ;
-lin muse_N = mkN "muse" "muses" ; -- notcompound use_N ;
-lin hypotenuse_N = mkN "hypotenuse" "hypotenuses" ; -- compound use_N ;
-lin lobscouse_N = mkN "lobscouse" "lobscouses" ; -- compound use_N ;
-lin house_N = mkN "house" "houses" ; -- compound use_N ;
-lin 'charnel house_N' = mkN "charnel house" "charnel houses" ; -- compound use_N ;
-lin 'opera-house_N' = mkN "opera-house" "opera-houses" ; -- compound use_N ;
-lin 'coffee-house_N' = mkN "coffee-house" "coffee-houses" ; -- compound use_N ;
-lin 'ale-house_N' = mkN "ale-house" "ale-houses" ; -- compound use_N ;
-lin 'treasure-house_N' = mkN "treasure-house" "treasure-houses" ; -- compound use_N ;
-lin 'boarding-house_N' = mkN "boarding-house" "boarding-houses" ; -- compound use_N ;
-lin 'lodging-house_N' = mkN "lodging-house" "lodging-houses" ; -- compound use_N ;
-lin 'dwelling-house_N' = mkN "dwelling-house" "dwelling-houses" ; -- compound use_N ;
-lin 'gaming-house_N' = mkN "gaming-house" "gaming-houses" ; -- compound use_N ;
-lin 'clearing-house_N' = mkN "clearing-house" "clearing-houses" ; -- compound use_N ;
-lin 'eating-house_N' = mkN "eating-house" "eating-houses" ; -- compound use_N ;
-lin 'meeting-house_N' = mkN "meeting-house" "meeting-houses" ; -- compound use_N ;
-lin 'counting-house_N' = mkN "counting-house" "counting-houses" ; -- compound use_N ;
-lin 'wash-house_N' = mkN "wash-house" "wash-houses" ; -- compound use_N ;
-lin 'coal-house_N' = mkN "coal-house" "coal-houses" ; -- compound use_N ;
-lin 'chop-house_N' = mkN "chop-house" "chop-houses" ; -- compound use_N ;
-lin 'manor-house_N' = mkN "manor-house" "manor-houses" ; -- compound use_N ;
-lin 'alms-house_N' = mkN "alms-house" "alms-houses" ; -- compound use_N ;
-lin 'doss-house_N' = mkN "doss-house" "doss-houses" ; -- compound use_N ;
-lin 'joss-house_N' = mkN "joss-house" "joss-houses" ; -- compound use_N ;
-lin 'boat-house_N' = mkN "boat-house" "boat-houses" ; -- compound use_N ;
-lin 'tenement-house_N' = mkN "tenement-house" "tenement-houses" ; -- compound use_N ;
-lin 'rest-house_N' = mkN "rest-house" "rest-houses" ; -- compound use_N ;
-lin 'country-house_N' = mkN "country-house" "country-houses" ; -- compound use_N ;
-lin teahouse_N = mkN "teahouse" "teahouses" ; -- compound use_N ;
-lin clubhouse_N = mkN "clubhouse" "clubhouses" ; -- compound use_N ;
-lin madhouse_N = mkN "madhouse" "madhouses" ; -- compound use_N ;
-lin roadhouse_N = mkN "roadhouse" "roadhouses" ; -- compound use_N ;
-lin roundhouse_N = mkN "roundhouse" "roundhouses" ; -- compound use_N ;
-lin guardhouse_N = mkN "guardhouse" "guardhouses" ; -- compound use_N ;
-lin birdhouse_N = mkN "birdhouse" "birdhouses" ; -- compound use_N ;
-lin icehouse_N = mkN "icehouse" "icehouses" ; -- compound use_N ;
-lin smokehouse_N = mkN "smokehouse" "smokehouses" ; -- compound use_N ;
-lin alehouse_N = mkN "alehouse" "alehouses" ; -- compound use_N ;
-lin warehouse_N = mkN "warehouse" "warehouses" ; -- compound use_N ;
-lin whorehouse_N = mkN "whorehouse" "whorehouses" ; -- compound use_N ;
-lin storehouse_N = mkN "storehouse" "storehouses" ; -- compound use_N ;
-lin gatehouse_N = mkN "gatehouse" "gatehouses" ; -- compound use_N ;
-lin statehouse_N = mkN "statehouse" "statehouses" ; -- compound use_N ;
-lin packinghouse_N = mkN "packinghouse" "packinghouses" ; -- compound use_N ;
-lin countinghouse_N = mkN "countinghouse" "countinghouses" ; -- compound use_N ;
-lin doghouse_N = mkN "doghouse" "doghouses" ; -- compound use_N ;
-lin washhouse_N = mkN "washhouse" "washhouses" ; -- compound use_N ;
-lin bathhouse_N = mkN "bathhouse" "bathhouses" ; -- compound use_N ;
-lin steakhouse_N = mkN "steakhouse" "steakhouses" ; -- compound use_N ;
-lin blockhouse_N = mkN "blockhouse" "blockhouses" ; -- compound use_N ;
-lin cookhouse_N = mkN "cookhouse" "cookhouses" ; -- compound use_N ;
-lin barrelhouse_N = mkN "barrelhouse" "barrelhouses" ; -- compound use_N ;
-lin dollhouse_N = mkN "dollhouse" "dollhouses" ; -- compound use_N ;
-lin tollhouse_N = mkN "tollhouse" "tollhouses" ; -- compound use_N ;
-lin schoolhouse_N = mkN "schoolhouse" "schoolhouses" ; -- compound use_N ;
-lin customhouse_N = mkN "customhouse" "customhouses" ; -- compound use_N ;
-lin farmhouse_N = mkN "farmhouse" "farmhouses" ; -- compound use_N ;
-lin greenhouse_N = mkN "greenhouse" "greenhouses" ; -- compound use_N ;
-lin henhouse_N = mkN "henhouse" "henhouses" ; -- compound use_N ;
-lin flophouse_N = mkN "flophouse" "flophouses" ; -- compound use_N ;
-lin summerhouse_N = mkN "summerhouse" "summerhouses" ; -- compound use_N ;
-lin slaughterhouse_N = mkN "slaughterhouse" "slaughterhouses" ; -- compound use_N ;
-lin chapterhouse_N = mkN "chapterhouse" "chapterhouses" ; -- compound use_N ;
-lin charterhouse_N = mkN "charterhouse" "charterhouses" ; -- compound use_N ;
-lin porterhouse_N = mkN "porterhouse" "porterhouses" ; -- compound use_N ;
-lin powerhouse_N = mkN "powerhouse" "powerhouses" ; -- compound use_N ;
-lin poorhouse_N = mkN "poorhouse" "poorhouses" ; -- compound use_N ;
-lin glasshouse_N = mkN "glasshouse" "glasshouses" ; -- compound use_N ;
-lin boathouse_N = mkN "boathouse" "boathouses" ; -- compound use_N ;
-lin lighthouse_N = mkN "lighthouse" "lighthouses" ; -- compound use_N ;
-lin penthouse_N = mkN "penthouse" "penthouses" ; -- compound use_N ;
-lin hothouse_N = mkN "hothouse" "hothouses" ; -- compound use_N ;
-lin pilothouse_N = mkN "pilothouse" "pilothouses" ; -- compound use_N ;
-lin pothouse_N = mkN "pothouse" "pothouses" ; -- compound use_N ;
-lin courthouse_N = mkN "courthouse" "courthouses" ; -- compound use_N ;
-lin oasthouse_N = mkN "oasthouse" "oasthouses" ; -- compound use_N ;
-lin guesthouse_N = mkN "guesthouse" "guesthouses" ; -- compound use_N ;
-lin posthouse_N = mkN "posthouse" "posthouses" ; -- compound use_N ;
-lin nuthouse_N = mkN "nuthouse" "nuthouses" ; -- compound use_N ;
-lin outhouse_N = mkN "outhouse" "outhouses" ; -- compound use_N ;
-lin cowhouse_N = mkN "cowhouse" "cowhouses" ; -- compound use_N ;
-lin playhouse_N = mkN "playhouse" "playhouses" ; -- compound use_N ;
-lin blouse_N = mkN "blouse" "blouses" ; -- compound use_N ;
-lin booklouse_N = mkN "booklouse" "booklouses" ; -- compound use_N ;
-lin burnouse_N = mkN "burnouse" "burnouses" ; -- compound use_N ;
-lin spouse_N = mkN "spouse" "spouses" ; -- compound use_N ;
-lin carouse_N = mkN "carouse" "carouses" ; -- compound use_N ;
-lin sandgrouse_N = mkN "sandgrouse" "sandgrouses" ; -- compound use_N ;
-lin souse_N = mkN "souse" "souses" ; -- compound use_N ;
-lin ruse_N = mkN "ruse" "ruses" ; -- notcompound use_N ;
-lin cruse_N = mkN "cruse" "cruses" ; -- notcompound use_N ;
-lin disuse_N = mkN "disuse" "disuses" ; -- compound use_N ;
-lin misuse_N = mkN "misuse" "misuses" ; -- compound use_N ;
-lin cayuse_N = mkN "cayuse" "cayuses" ; -- compound use_N ;
-lin hawse_N = mkN "hawse" "hawses" ;
-lin tawse_N = mkN "tawse" "tawses" ;
-lin dowse_N = mkN "dowse" "dowses" ;
-lin browse_N = mkN "browse" "browses" ;
-lin drowse_N = mkN "drowse" "drowses" ;
-lin debate_N = mkN "debate" "debates" ;
-lin rebate_N = mkN "rebate" "rebates" ;
-lin 'rent-rebate_N' = mkN "rent-rebate" "rent-rebates" ; -- compound rebate_N ;
-lin celibate_N = mkN "celibate" "celibates" ;
-lin probate_N = mkN "probate" "probates" ;
-lin reprobate_N = mkN "reprobate" "reprobates" ; -- compound probate_N ;
-lin sorbate_N = mkN "sorbate" "sorbates" ;
-lin absorbate_N = mkN "absorbate" "absorbates" ; -- compound sorbate_N ;
-lin adsorbate_N = mkN "adsorbate" "adsorbates" ; -- compound sorbate_N ;
-lin predicate_N = mkN "predicate" "predicates" ;
-lin syndicate_N = mkN "syndicate" "syndicates" ;
-lin pontificate_N = mkN "pontificate" "pontificates" ;
-lin certificate_N = mkN "certificate" "certificates" ;
-lin silicate_N = mkN "silicate" "silicates" ;
-lin borosilicate_N = mkN "borosilicate" "borosilicates" ; -- compound silicate_N ;
-lin fluosilicate_N = mkN "fluosilicate" "fluosilicates" ; -- compound silicate_N ;
-lin triplicate_N = mkN "triplicate" "triplicates" ;
-lin duplicate_N = mkN "duplicate" "duplicates" ;
-lin quadruplicate_N = mkN "quadruplicate" "quadruplicates" ;
-lin tunicate_N = mkN "tunicate" "tunicates" ;
-lin affricate_N = mkN "affricate" "affricates" ;
-lin suricate_N = mkN "suricate" "suricates" ;
-lin sophisticate_N = mkN "sophisticate" "sophisticates" ;
-lin advocate_N = mkN "advocate" "advocates" ;
-lin date_N = mkN "date" "dates" ;
-lin vanadate_N = mkN "vanadate" "vanadates" ; -- compound date_N ;
-lin candidate_N = mkN "candidate" "candidates" ; -- compound date_N ;
-lin noncandidate_N = mkN "noncandidate" "noncandidates" ; -- compound date_N ;
-lin methylphenidate_N = mkN "methylphenidate" "methylphenidates" ; -- compound date_N ;
-lin mandate_N = mkN "mandate" "mandates" ; -- compound date_N ;
-lin update_N = mkN "update" "updates" ; -- compound date_N ;
-lin chordate_N = mkN "chordate" "chordates" ; -- compound date_N ;
-lin cephalochordate_N = mkN "cephalochordate" "cephalochordates" ; -- compound date_N ;
-lin transudate_N = mkN "transudate" "transudates" ; -- compound date_N ;
-lin exudate_N = mkN "exudate" "exudates" ; -- compound date_N ;
-lin maleate_N = mkN "maleate" "maleates" ;
-lin laureate_N = mkN "laureate" "laureates" ;
-lin baccalaureate_N = mkN "baccalaureate" "baccalaureates" ; -- compound laureate_N ;
-lin fate_N = mkN "fate" "fates" ;
-lin sucralfate_N = mkN "sucralfate" "sucralfates" ; -- compound fate_N ;
-lin sulfate_N = mkN "sulfate" "sulfates" ; -- compound fate_N ;
-lin gate_N = mkN "gate" "gates" ;
-lin 'starting-gate_N' = mkN "starting-gate" "starting-gates" ; -- compound gate_N ;
-lin 'lock-gate_N' = mkN "lock-gate" "lock-gates" ; -- compound gate_N ;
-lin 'wicket-gate_N' = mkN "wicket-gate" "wicket-gates" ; -- compound gate_N ;
-lin agate_N = mkN "agate" "agates" ; -- notcompound gate_N ;
-lin floodgate_N = mkN "floodgate" "floodgates" ; -- compound gate_N ;
-lin sluicegate_N = mkN "sluicegate" "sluicegates" ; -- compound gate_N ;
-lin legate_N = mkN "legate" "legates" ; -- compound gate_N ;
-lin delegate_N = mkN "delegate" "delegates" ; -- compound gate_N ;
-lin segregate_N = mkN "segregate" "segregates" ; -- compound gate_N ;
-lin aggregate_N = mkN "aggregate" "aggregates" ; -- compound gate_N ;
-lin lichgate_N = mkN "lichgate" "lichgates" ; -- compound gate_N ;
-lin lychgate_N = mkN "lychgate" "lychgates" ; -- compound gate_N ;
-lin profligate_N = mkN "profligate" "profligates" ; -- compound gate_N ;
-lin frigate_N = mkN "frigate" "frigates" ; -- compound gate_N ;
-lin tailgate_N = mkN "tailgate" "tailgates" ; -- compound gate_N ;
-lin tollgate_N = mkN "tollgate" "tollgates" ; -- compound gate_N ;
-lin vulgate_N = mkN "vulgate" "vulgates" ; -- compound gate_N ;
-lin surrogate_N = mkN "surrogate" "surrogates" ; -- compound gate_N ;
-lin margate_N = mkN "margate" "margates" ; -- compound gate_N ;
-lin billingsgate_N = mkN "billingsgate" "billingsgates" ; -- compound gate_N ;
-lin hate_N = mkN "hate" "hates" ;
-lin patriarchate_N = mkN "patriarchate" "patriarchates" ; -- compound hate_N ;
-lin caliphate_N = mkN "caliphate" "caliphates" ; -- compound hate_N ;
-lin sulphate_N = mkN "sulphate" "sulphates" ; -- compound hate_N ;
-lin phosphate_N = mkN "phosphate" "phosphates" ; -- compound hate_N ;
-lin organophosphate_N = mkN "organophosphate" "organophosphates" ; -- compound hate_N ;
-lin pyrophosphate_N = mkN "pyrophosphate" "pyrophosphates" ; -- compound hate_N ;
-lin polyphosphate_N = mkN "polyphosphate" "polyphosphates" ; -- compound hate_N ;
-lin xanthate_N = mkN "xanthate" "xanthates" ; -- compound hate_N ;
-lin noviciate_N = mkN "noviciate" "noviciates" ;
-lin associate_N = mkN "associate" "associates" ;
-lin intermediate_N = mkN "intermediate" "intermediates" ;
-lin dibranchiate_N = mkN "dibranchiate" "dibranchiates" ;
-lin ciliate_N = mkN "ciliate" "ciliates" ;
-lin affiliate_N = mkN "affiliate" "affiliates" ;
-lin hellgrammiate_N = mkN "hellgrammiate" "hellgrammiates" ;
-lin opiate_N = mkN "opiate" "opiates" ;
-lin vicariate_N = mkN "vicariate" "vicariates" ;
-lin inebriate_N = mkN "inebriate" "inebriates" ;
-lin repatriate_N = mkN "repatriate" "repatriates" ;
-lin expatriate_N = mkN "expatriate" "expatriates" ;
-lin initiate_N = mkN "initiate" "initiates" ;
-lin uninitiate_N = mkN "uninitiate" "uninitiates" ; -- compound initiate_N ;
-lin novitiate_N = mkN "novitiate" "novitiates" ;
-lin licentiate_N = mkN "licentiate" "licentiates" ;
-lin skate_N = mkN "skate" "skates" ;
-lin 'ice-skate_N' = mkN "ice-skate" "ice-skates" ; -- compound skate_N ;
-lin 'roller-skate_N' = mkN "roller-skate" "roller-skates" ; -- compound skate_N ;
-lin cheapskate_N = mkN "cheapskate" "cheapskates" ; -- compound skate_N ;
-lin cardinalate_N = mkN "cardinalate" "cardinalates" ;
-lin palate_N = mkN "palate" "palates" ;
-lin oxalate_N = mkN "oxalate" "oxalates" ;
-lin oblate_N = mkN "oblate" "oblates" ;
-lin chelate_N = mkN "chelate" "chelates" ;
-lin prelate_N = mkN "prelate" "prelates" ;
-lin correlate_N = mkN "correlate" "correlates" ;
-lin flagellate_N = mkN "flagellate" "flagellates" ;
-lin dinoflagellate_N = mkN "dinoflagellate" "dinoflagellates" ; -- compound flagellate_N ;
-lin distillate_N = mkN "distillate" "distillates" ;
-lin chocolate_N = mkN "chocolate" "chocolates" ;
-lin percolate_N = mkN "percolate" "percolates" ;
-lin plate_N = mkN "plate" "plates" ;
-lin 'gold-plate_N' = mkN "gold-plate" "gold-plates" ; -- compound plate_N ;
-lin 'l-plate_N' = mkN "l-plate" "l-plates" ; -- compound plate_N ;
-lin 'tin-plate_N' = mkN "tin-plate" "tin-plates" ; -- compound plate_N ;
-lin 'finger-plate_N' = mkN "finger-plate" "finger-plates" ; -- compound plate_N ;
-lin 'quarter-plate_N' = mkN "quarter-plate" "quarter-plates" ; -- compound plate_N ;
-lin 'armour-plate_N' = mkN "armour-plate" "armour-plates" ; -- compound plate_N ;
-lin 'breast-plate_N' = mkN "breast-plate" "breast-plates" ; -- compound plate_N ;
-lin faceplate_N = mkN "faceplate" "faceplates" ; -- compound plate_N ;
-lin nameplate_N = mkN "nameplate" "nameplates" ; -- compound plate_N ;
-lin fishplate_N = mkN "fishplate" "fishplates" ; -- compound plate_N ;
-lin backplate_N = mkN "backplate" "backplates" ; -- compound plate_N ;
-lin bookplate_N = mkN "bookplate" "bookplates" ; -- compound plate_N ;
-lin template_N = mkN "template" "templates" ; -- compound plate_N ;
-lin electroplate_N = mkN "electroplate" "electroplates" ; -- compound plate_N ;
-lin numberplate_N = mkN "numberplate" "numberplates" ; -- compound plate_N ;
-lin boilerplate_N = mkN "boilerplate" "boilerplates" ; -- compound plate_N ;
-lin copperplate_N = mkN "copperplate" "copperplates" ; -- compound plate_N ;
-lin doorplate_N = mkN "doorplate" "doorplates" ; -- compound plate_N ;
-lin hotplate_N = mkN "hotplate" "hotplates" ; -- compound plate_N ;
-lin footplate_N = mkN "footplate" "footplates" ; -- compound plate_N ;
-lin breastplate_N = mkN "breastplate" "breastplates" ; -- compound plate_N ;
-lin slate_N = mkN "slate" "slates" ;
-lin matriculate_N = mkN "matriculate" "matriculates" ;
-lin particulate_N = mkN "particulate" "particulates" ;
-lin unguiculate_N = mkN "unguiculate" "unguiculates" ;
-lin ungulate_N = mkN "ungulate" "ungulates" ;
-lin consulate_N = mkN "consulate" "consulates" ;
-lin proconsulate_N = mkN "proconsulate" "proconsulates" ; -- compound consulate_N ;
-lin postulate_N = mkN "postulate" "postulates" ;
-lin salicylate_N = mkN "salicylate" "salicylates" ;
-lin mate_N = mkN "mate" "mates" ;
-lin 'room-mate_N' = mkN "room-mate" "room-mates" ; -- compound mate_N ;
-lin meprobamate_N = mkN "meprobamate" "meprobamates" ; -- compound mate_N ;
-lin carbamate_N = mkN "carbamate" "carbamates" ; -- compound mate_N ;
-lin hamate_N = mkN "hamate" "hamates" ; -- compound mate_N ;
-lin meclofenamate_N = mkN "meclofenamate" "meclofenamates" ; -- compound mate_N ;
-lin glutamate_N = mkN "glutamate" "glutamates" ; -- compound mate_N ;
-lin stalemate_N = mkN "stalemate" "stalemates" ; -- compound mate_N ;
-lin tablemate_N = mkN "tablemate" "tablemates" ; -- compound mate_N ;
-lin stablemate_N = mkN "stablemate" "stablemates" ; -- compound mate_N ;
-lin housemate_N = mkN "housemate" "housemates" ; -- compound mate_N ;
-lin sublimate_N = mkN "sublimate" "sublimates" ; -- compound mate_N ;
-lin climate_N = mkN "climate" "climates" ; -- compound mate_N ;
-lin primate_N = mkN "primate" "primates" ; -- compound mate_N ;
-lin ultimate_N = mkN "ultimate" "ultimates" ; -- compound mate_N ;
-lin penultimate_N = mkN "penultimate" "penultimates" ; -- compound mate_N ;
-lin intimate_N = mkN "intimate" "intimates" ; -- compound mate_N ;
-lin estimate_N = mkN "estimate" "estimates" ; -- compound mate_N ;
-lin underestimate_N = mkN "underestimate" "underestimates" ; -- compound mate_N ;
-lin overestimate_N = mkN "overestimate" "overestimates" ; -- compound mate_N ;
-lin guesstimate_N = mkN "guesstimate" "guesstimates" ; -- compound mate_N ;
-lin checkmate_N = mkN "checkmate" "checkmates" ; -- compound mate_N ;
-lin bunkmate_N = mkN "bunkmate" "bunkmates" ; -- compound mate_N ;
-lin workmate_N = mkN "workmate" "workmates" ; -- compound mate_N ;
-lin schoolmate_N = mkN "schoolmate" "schoolmates" ; -- compound mate_N ;
-lin teammate_N = mkN "teammate" "teammates" ; -- compound mate_N ;
-lin roommate_N = mkN "roommate" "roommates" ; -- compound mate_N ;
-lin inmate_N = mkN "inmate" "inmates" ; -- compound mate_N ;
-lin diplomate_N = mkN "diplomate" "diplomates" ; -- compound mate_N ;
-lin chromate_N = mkN "chromate" "chromates" ; -- compound mate_N ;
-lin bichromate_N = mkN "bichromate" "bichromates" ; -- compound mate_N ;
-lin shipmate_N = mkN "shipmate" "shipmates" ; -- compound mate_N ;
-lin helpmate_N = mkN "helpmate" "helpmates" ; -- compound mate_N ;
-lin campmate_N = mkN "campmate" "campmates" ; -- compound mate_N ;
-lin classmate_N = mkN "classmate" "classmates" ; -- compound mate_N ;
-lin messmate_N = mkN "messmate" "messmates" ; -- compound mate_N ;
-lin flatmate_N = mkN "flatmate" "flatmates" ; -- compound mate_N ;
-lin humate_N = mkN "humate" "humates" ; -- compound mate_N ;
-lin playmate_N = mkN "playmate" "playmates" ; -- compound mate_N ;
-lin manganate_N = mkN "manganate" "manganates" ;
-lin permanganate_N = mkN "permanganate" "permanganates" ; -- compound manganate_N ;
-lin khanate_N = mkN "khanate" "khanates" ;
-lin pomegranate_N = mkN "pomegranate" "pomegranates" ;
-lin sultanate_N = mkN "sultanate" "sultanates" ;
-lin thiocyanate_N = mkN "thiocyanate" "thiocyanates" ;
-lin isothiocyanate_N = mkN "isothiocyanate" "isothiocyanates" ; -- compound thiocyanate_N ;
-lin isocyanate_N = mkN "isocyanate" "isocyanates" ;
-lin enate_N = mkN "enate" "enates" ;
-lin homogenate_N = mkN "homogenate" "homogenates" ; -- compound enate_N ;
-lin senate_N = mkN "senate" "senates" ; -- notcompound enate_N ;
-lin arsenate_N = mkN "arsenate" "arsenates" ; -- compound enate_N ;
-lin agnate_N = mkN "agnate" "agnates" ;
-lin magnate_N = mkN "magnate" "magnates" ; -- notcompound agnate_N ;
-lin cognate_N = mkN "cognate" "cognates" ;
-lin rabbinate_N = mkN "rabbinate" "rabbinates" ;
-lin ordinate_N = mkN "ordinate" "ordinates" ;
-lin subordinate_N = mkN "subordinate" "subordinates" ; -- compound ordinate_N ;
-lin coordinate_N = mkN "coordinate" "coordinates" ; -- compound ordinate_N ;
-lin laminate_N = mkN "laminate" "laminates" ;
-lin geminate_N = mkN "geminate" "geminates" ;
-lin fulminate_N = mkN "fulminate" "fulminates" ;
-lin aluminate_N = mkN "aluminate" "aluminates" ;
-lin carinate_N = mkN "carinate" "carinates" ;
-lin dimenhydrinate_N = mkN "dimenhydrinate" "dimenhydrinates" ;
-lin palatinate_N = mkN "palatinate" "palatinates" ;
-lin carbonate_N = mkN "carbonate" "carbonates" ;
-lin bicarbonate_N = mkN "bicarbonate" "bicarbonates" ; -- compound carbonate_N ;
-lin archidiaconate_N = mkN "archidiaconate" "archidiaconates" ;
-lin odonate_N = mkN "odonate" "odonates" ;
-lin neonate_N = mkN "neonate" "neonates" ;
-lin sulfonate_N = mkN "sulfonate" "sulfonates" ;
-lin alkylbenzenesulfonate_N = mkN "alkylbenzenesulfonate" "alkylbenzenesulfonates" ; -- compound sulfonate_N ;
-lin alendronate_N = mkN "alendronate" "alendronates" ;
-lin unfortunate_N = mkN "unfortunate" "unfortunates" ;
-lin propenoate_N = mkN "propenoate" "propenoates" ;
-lin benzoate_N = mkN "benzoate" "benzoates" ;
-lin pate_N = mkN "pate" "pates" ;
-lin 'bald-pate_N' = mkN "bald-pate" "bald-pates" ; -- compound pate_N ;
-lin episcopate_N = mkN "episcopate" "episcopates" ; -- compound pate_N ;
-lin spate_N = mkN "spate" "spates" ; -- notcompound pate_N ;
-lin rate_N = mkN "rate" "rates" ;
-lin 'death-rate_N' = mkN "death-rate" "death-rates" ; -- compound rate_N ;
-lin 'bank-rate_N' = mkN "bank-rate" "bank-rates" ; -- compound rate_N ;
-lin 'water-rate_N' = mkN "water-rate" "water-rates" ; -- compound rate_N ;
-lin 'poor-rate_N' = mkN "poor-rate" "poor-rates" ; -- compound rate_N ;
-lin karate_N = mkN "karate" "karates" ; -- compound rate_N ;
-lin separate_N = mkN "separate" "separates" ; -- compound rate_N ;
-lin vertebrate_N = mkN "vertebrate" "vertebrates" ; -- compound rate_N ;
-lin invertebrate_N = mkN "invertebrate" "invertebrates" ; -- compound rate_N ;
-lin clofibrate_N = mkN "clofibrate" "clofibrates" ; -- compound rate_N ;
-lin crate_N = mkN "crate" "crates" ; -- notcompound rate_N ;
-lin quadrate_N = mkN "quadrate" "quadrates" ; -- compound rate_N ;
-lin biquadrate_N = mkN "biquadrate" "biquadrates" ; -- compound rate_N ;
-lin hydrate_N = mkN "hydrate" "hydrates" ; -- compound rate_N ;
-lin carbohydrate_N = mkN "carbohydrate" "carbohydrates" ; -- compound rate_N ;
-lin monohydrate_N = mkN "monohydrate" "monohydrates" ; -- compound rate_N ;
-lin cerate_N = mkN "cerate" "cerates" ; -- compound rate_N ;
-lin dinocerate_N = mkN "dinocerate" "dinocerates" ; -- compound rate_N ;
-lin confederate_N = mkN "confederate" "confederates" ; -- compound rate_N ;
-lin moderate_N = mkN "moderate" "moderates" ; -- compound rate_N ;
-lin agglomerate_N = mkN "agglomerate" "agglomerates" ; -- compound rate_N ;
-lin conglomerate_N = mkN "conglomerate" "conglomerates" ; -- compound rate_N ;
-lin degenerate_N = mkN "degenerate" "degenerates" ; -- compound rate_N ;
-lin desperate_N = mkN "desperate" "desperates" ; -- compound rate_N ;
-lin literate_N = mkN "literate" "literates" ; -- compound rate_N ;
-lin aliterate_N = mkN "aliterate" "aliterates" ; -- compound rate_N ;
-lin illiterate_N = mkN "illiterate" "illiterates" ; -- compound rate_N ;
-lin coelenterate_N = mkN "coelenterate" "coelenterates" ; -- compound rate_N ;
-lin grate_N = mkN "grate" "grates" ; -- notcompound rate_N ;
-lin ingrate_N = mkN "ingrate" "ingrates" ; -- compound rate_N ;
-lin deathrate_N = mkN "deathrate" "deathrates" ; -- compound rate_N ;
-lin birthrate_N = mkN "birthrate" "birthrates" ; -- compound rate_N ;
-lin emirate_N = mkN "emirate" "emirates" ; -- compound rate_N ;
-lin pirate_N = mkN "pirate" "pirates" ; -- compound rate_N ;
-lin aspirate_N = mkN "aspirate" "aspirates" ; -- compound rate_N ;
-lin levirate_N = mkN "levirate" "levirates" ; -- compound rate_N ;
-lin triumvirate_N = mkN "triumvirate" "triumvirates" ; -- compound rate_N ;
-lin quadrumvirate_N = mkN "quadrumvirate" "quadrumvirates" ; -- compound rate_N ;
-lin borate_N = mkN "borate" "borates" ; -- compound rate_N ;
-lin chlorate_N = mkN "chlorate" "chlorates" ; -- compound rate_N ;
-lin perchlorate_N = mkN "perchlorate" "perchlorates" ; -- compound rate_N ;
-lin electorate_N = mkN "electorate" "electorates" ; -- compound rate_N ;
-lin inspectorate_N = mkN "inspectorate" "inspectorates" ; -- compound rate_N ;
-lin directorate_N = mkN "directorate" "directorates" ; -- compound rate_N ;
-lin protectorate_N = mkN "protectorate" "protectorates" ; -- compound rate_N ;
-lin doctorate_N = mkN "doctorate" "doctorates" ; -- compound rate_N ;
-lin pastorate_N = mkN "pastorate" "pastorates" ; -- compound rate_N ;
-lin prate_N = mkN "prate" "prates" ; -- notcompound rate_N ;
-lin citrate_N = mkN "citrate" "citrates" ; -- compound rate_N ;
-lin nitrate_N = mkN "nitrate" "nitrates" ; -- compound rate_N ;
-lin filtrate_N = mkN "filtrate" "filtrates" ; -- compound rate_N ;
-lin concentrate_N = mkN "concentrate" "concentrates" ; -- compound rate_N ;
-lin tartrate_N = mkN "tartrate" "tartrates" ; -- compound rate_N ;
-lin bitartrate_N = mkN "bitartrate" "bitartrates" ; -- compound rate_N ;
-lin substrate_N = mkN "substrate" "substrates" ; -- compound rate_N ;
-lin magistrate_N = mkN "magistrate" "magistrates" ; -- compound rate_N ;
-lin superstrate_N = mkN "superstrate" "superstrates" ; -- compound rate_N ;
-lin urate_N = mkN "urate" "urates" ; -- notcompound rate_N ;
-lin curate_N = mkN "curate" "curates" ; -- compound rate_N ;
-lin barbiturate_N = mkN "barbiturate" "barbiturates" ; -- compound rate_N ;
-lin condensate_N = mkN "condensate" "condensates" ;
-lin hydrolysate_N = mkN "hydrolysate" "hydrolysates" ;
-lin lactate_N = mkN "lactate" "lactates" ;
-lin dictate_N = mkN "dictate" "dictates" ;
-lin acetate_N = mkN "acetate" "acetates" ;
-lin oxalacetate_N = mkN "oxalacetate" "oxalacetates" ; -- compound acetate_N ;
-lin capitate_N = mkN "capitate" "capitates" ;
-lin precipitate_N = mkN "precipitate" "precipitates" ;
-lin tomtate_N = mkN "tomtate" "tomtates" ;
-lin edentate_N = mkN "edentate" "edentates" ;
-lin potentate_N = mkN "potentate" "potentates" ;
-lin state_N = mkN "state" "states" ;
-lin estate_N = mkN "estate" "estates" ; -- notcompound state_N ;
-lin testate_N = mkN "testate" "testates" ; -- compound state_N ;
-lin tungstate_N = mkN "tungstate" "tungstates" ; -- compound state_N ;
-lin apostate_N = mkN "apostate" "apostates" ; -- compound state_N ;
-lin prostate_N = mkN "prostate" "prostates" ; -- compound state_N ;
-lin interstate_N = mkN "interstate" "interstates" ; -- compound state_N ;
-lin graduate_N = mkN "graduate" "graduates" ;
-lin undergraduate_N = mkN "undergraduate" "undergraduates" ; -- compound graduate_N ;
-lin postgraduate_N = mkN "postgraduate" "postgraduates" ; -- compound graduate_N ;
-lin eluate_N = mkN "eluate" "eluates" ;
-lin private_N = mkN "private" "privates" ;
-lin solvate_N = mkN "solvate" "solvates" ;
-lin methotrexate_N = mkN "methotrexate" "methotrexates" ;
-lin entr'acte_N = mkN "entr'acte" "entr'actes" ;
-lin stacte_N = mkN "stacte" "stactes" ;
-lin oligochaete_N = mkN "oligochaete" "oligochaetes" ;
-lin polychaete_N = mkN "polychaete" "polychaetes" ;
-lin ascomycete_N = mkN "ascomycete" "ascomycetes" ;
-lin discomycete_N = mkN "discomycete" "discomycetes" ;
-lin basidiomycete_N = mkN "basidiomycete" "basidiomycetes" ;
-lin actinomycete_N = mkN "actinomycete" "actinomycetes" ;
-lin gasteromycete_N = mkN "gasteromycete" "gasteromycetes" ;
-lin blastomycete_N = mkN "blastomycete" "blastomycetes" ;
-lin exegete_N = mkN "exegete" "exegetes" ;
-lin machete_N = mkN "machete" "machetes" ;
-lin spirochete_N = mkN "spirochete" "spirochetes" ;
-lin esthete_N = mkN "esthete" "esthetes" ;
-lin aesthete_N = mkN "aesthete" "aesthetes" ; -- notcompound esthete_N ;
-lin athlete_N = mkN "athlete" "athletes" ;
-lin pentathlete_N = mkN "pentathlete" "pentathletes" ; -- compound athlete_N ;
-lin bolete_N = mkN "bolete" "boletes" ;
-lin gamete_N = mkN "gamete" "gametes" ;
-lin agamete_N = mkN "agamete" "agametes" ; -- notcompound gamete_N ;
-lin isogamete_N = mkN "isogamete" "isogametes" ; -- compound gamete_N ;
-lin anisogamete_N = mkN "anisogamete" "anisogametes" ; -- compound gamete_N ;
-lin concrete_N = mkN "concrete" "concretes" ;
-lin ferroconcrete_N = mkN "ferroconcrete" "ferroconcretes" ; -- compound concrete_N ;
-lin bite_N = mkN "bite" "bites" ;
-lin 'flea-bite_N' = mkN "flea-bite" "flea-bites" ; -- compound bite_N ;
-lin snakebite_N = mkN "snakebite" "snakebites" ; -- compound bite_N ;
-lin albite_N = mkN "albite" "albites" ; -- compound bite_N ;
-lin jacobite_N = mkN "jacobite" "jacobites" ; -- compound bite_N ;
-lin niobite_N = mkN "niobite" "niobites" ; -- compound bite_N ;
-lin trilobite_N = mkN "trilobite" "trilobites" ; -- compound bite_N ;
-lin cenobite_N = mkN "cenobite" "cenobites" ; -- compound bite_N ;
-lin overbite_N = mkN "overbite" "overbites" ; -- compound bite_N ;
-lin frostbite_N = mkN "frostbite" "frostbites" ; -- compound bite_N ;
-lin dacite_N = mkN "dacite" "dacites" ;
-lin anthracite_N = mkN "anthracite" "anthracites" ;
-lin calcite_N = mkN "calcite" "calcites" ;
-lin nitrocalcite_N = mkN "nitrocalcite" "nitrocalcites" ; -- compound calcite_N ;
-lin chalcocite_N = mkN "chalcocite" "chalcocites" ;
-lin lepidocrocite_N = mkN "lepidocrocite" "lepidocrocites" ;
-lin plebiscite_N = mkN "plebiscite" "plebiscites" ;
-lin pollucite_N = mkN "pollucite" "pollucites" ;
-lin andradite_N = mkN "andradite" "andradites" ;
-lin luddite_N = mkN "luddite" "luddites" ;
-lin zinnwaldite_N = mkN "zinnwaldite" "zinnwaldites" ;
-lin pentlandite_N = mkN "pentlandite" "pentlandites" ;
-lin heulandite_N = mkN "heulandite" "heulandites" ;
-lin almandite_N = mkN "almandite" "almandites" ;
-lin hermaphrodite_N = mkN "hermaphrodite" "hermaphrodites" ;
-lin pseudohermaphrodite_N = mkN "pseudohermaphrodite" "pseudohermaphrodites" ; -- compound hermaphrodite_N ;
-lin argyrodite_N = mkN "argyrodite" "argyrodites" ;
-lin cordite_N = mkN "cordite" "cordites" ;
-lin jadeite_N = mkN "jadeite" "jadeites" ;
-lin augite_N = mkN "augite" "augites" ;
-lin malachite_N = mkN "malachite" "malachites" ;
-lin graphite_N = mkN "graphite" "graphites" ;
-lin hemimorphite_N = mkN "hemimorphite" "hemimorphites" ;
-lin pyromorphite_N = mkN "pyromorphite" "pyromorphites" ;
-lin goethite_N = mkN "goethite" "goethites" ;
-lin anorthite_N = mkN "anorthite" "anorthites" ;
-lin white_N = mkN "white" "whites" ;
-lin bobwhite_N = mkN "bobwhite" "bobwhites" ; -- compound white_N ;
-lin kite_N = mkN "kite" "kites" ;
-lin 'box-kite_N' = mkN "box-kite" "box-kites" ; -- compound kite_N ;
-lin greenockite_N = mkN "greenockite" "greenockites" ; -- compound kite_N ;
-lin samarskite_N = mkN "samarskite" "samarskites" ; -- compound kite_N ;
-lin cristobalite_N = mkN "cristobalite" "cristobalites" ;
-lin sodalite_N = mkN "sodalite" "sodalites" ;
-lin halite_N = mkN "halite" "halites" ;
-lin socialite_N = mkN "socialite" "socialites" ;
-lin copalite_N = mkN "copalite" "copalites" ;
-lin tantalite_N = mkN "tantalite" "tantalites" ;
-lin elite_N = mkN "elite" "elites" ;
-lin 'pre-raphaelite_N' = mkN "pre-raphaelite" "pre-raphaelites" ; -- compound elite_N ;
-lin scheelite_N = mkN "scheelite" "scheelites" ; -- compound elite_N ;
-lin bakelite_N = mkN "bakelite" "bakelites" ; -- compound elite_N ;
-lin Carmelite_N = mkN "Carmelite" "Carmelites" ; -- compound elite_N ;
-lin carnallite_N = mkN "carnallite" "carnallites" ;
-lin crystallite_N = mkN "crystallite" "crystallites" ;
-lin satellite_N = mkN "satellite" "satellites" ;
-lin argillite_N = mkN "argillite" "argillites" ;
-lin anthophyllite_N = mkN "anthophyllite" "anthophyllites" ;
-lin pyrophyllite_N = mkN "pyrophyllite" "pyrophyllites" ;
-lin metabolite_N = mkN "metabolite" "metabolites" ;
-lin antimetabolite_N = mkN "antimetabolite" "antimetabolites" ; -- compound metabolite_N ;
-lin amphibolite_N = mkN "amphibolite" "amphibolites" ;
-lin crocolite_N = mkN "crocolite" "crocolites" ;
-lin lepidolite_N = mkN "lepidolite" "lepidolites" ;
-lin theodolite_N = mkN "theodolite" "theodolites" ;
-lin rhodolite_N = mkN "rhodolite" "rhodolites" ;
-lin zeolite_N = mkN "zeolite" "zeolites" ;
-lin tremolite_N = mkN "tremolite" "tremolites" ;
-lin actinolite_N = mkN "actinolite" "actinolites" ;
-lin aerolite_N = mkN "aerolite" "aerolites" ;
-lin saprolite_N = mkN "saprolite" "saprolites" ;
-lin coprolite_N = mkN "coprolite" "coprolites" ;
-lin natrolite_N = mkN "natrolite" "natrolites" ;
-lin chrysolite_N = mkN "chrysolite" "chrysolites" ;
-lin rhyolite_N = mkN "rhyolite" "rhyolites" ;
-lin cryolite_N = mkN "cryolite" "cryolites" ;
-lin aplite_N = mkN "aplite" "aplites" ;
-lin pearlite_N = mkN "pearlite" "pearlites" ;
-lin marlite_N = mkN "marlite" "marlites" ;
-lin kimberlite_N = mkN "kimberlite" "kimberlites" ;
-lin vermiculite_N = mkN "vermiculite" "vermiculites" ;
-lin cellulite_N = mkN "cellulite" "cellulites" ;
-lin nummulite_N = mkN "nummulite" "nummulites" ;
-lin tachylite_N = mkN "tachylite" "tachylites" ;
-lin stylite_N = mkN "stylite" "stylites" ;
-lin élite_N = mkN "élite" "élites" ;
-lin mite_N = mkN "mite" "mites" ;
-lin bedlamite_N = mkN "bedlamite" "bedlamites" ; -- compound mite_N ;
-lin dynamite_N = mkN "dynamite" "dynamites" ; -- compound mite_N ;
-lin wolframite_N = mkN "wolframite" "wolframites" ; -- compound mite_N ;
-lin samite_N = mkN "samite" "samites" ; -- compound mite_N ;
-lin catamite_N = mkN "catamite" "catamites" ; -- compound mite_N ;
-lin eremite_N = mkN "eremite" "eremites" ; -- compound mite_N ;
-lin semite_N = mkN "semite" "semites" ; -- compound mite_N ;
-lin 'anti-semite_N' = mkN "anti-semite" "anti-semites" ; -- compound mite_N ;
-lin stalagmite_N = mkN "stalagmite" "stalagmites" ; -- compound mite_N ;
-lin gummite_N = mkN "gummite" "gummites" ; -- compound mite_N ;
-lin sodomite_N = mkN "sodomite" "sodomites" ; -- compound mite_N ;
-lin fomite_N = mkN "fomite" "fomites" ; -- compound mite_N ;
-lin dolomite_N = mkN "dolomite" "dolomites" ; -- compound mite_N ;
-lin chromite_N = mkN "chromite" "chromites" ; -- compound mite_N ;
-lin marmite_N = mkN "marmite" "marmites" ; -- compound mite_N ;
-lin termite_N = mkN "termite" "termites" ; -- compound mite_N ;
-lin tridymite_N = mkN "tridymite" "tridymites" ; -- compound mite_N ;
-lin suburbanite_N = mkN "suburbanite" "suburbanites" ;
-lin vulcanite_N = mkN "vulcanite" "vulcanites" ;
-lin manganite_N = mkN "manganite" "manganites" ;
-lin morganite_N = mkN "morganite" "morganites" ;
-lin aphanite_N = mkN "aphanite" "aphanites" ;
-lin strontianite_N = mkN "strontianite" "strontianites" ;
-lin vesuvianite_N = mkN "vesuvianite" "vesuvianites" ;
-lin germanite_N = mkN "germanite" "germanites" ;
-lin granite_N = mkN "granite" "granites" ;
-lin sylvanite_N = mkN "sylvanite" "sylvanites" ;
-lin kyanite_N = mkN "kyanite" "kyanites" ;
-lin stibnite_N = mkN "stibnite" "stibnites" ;
-lin molybdenite_N = mkN "molybdenite" "molybdenites" ;
-lin hiddenite_N = mkN "hiddenite" "hiddenites" ;
-lin wulfenite_N = mkN "wulfenite" "wulfenites" ;
-lin zinkenite_N = mkN "zinkenite" "zinkenites" ;
-lin ilmenite_N = mkN "ilmenite" "ilmenites" ;
-lin austenite_N = mkN "austenite" "austenites" ;
-lin olivenite_N = mkN "olivenite" "olivenites" ;
-lin lignite_N = mkN "lignite" "lignites" ;
-lin gelignite_N = mkN "gelignite" "gelignites" ; -- compound lignite_N ;
-lin kainite_N = mkN "kainite" "kainites" ;
-lin vanadinite_N = mkN "vanadinite" "vanadinites" ;
-lin langbeinite_N = mkN "langbeinite" "langbeinites" ;
-lin nephelinite_N = mkN "nephelinite" "nephelinites" ;
-lin kaolinite_N = mkN "kaolinite" "kaolinites" ;
-lin gadolinite_N = mkN "gadolinite" "gadolinites" ;
-lin uraninite_N = mkN "uraninite" "uraninites" ;
-lin pinite_N = mkN "pinite" "pinites" ;
-lin belemnite_N = mkN "belemnite" "belemnites" ;
-lin hausmannite_N = mkN "hausmannite" "hausmannites" ;
-lin stannite_N = mkN "stannite" "stannites" ;
-lin ebonite_N = mkN "ebonite" "ebonites" ;
-lin aconite_N = mkN "aconite" "aconites" ;
-lin taconite_N = mkN "taconite" "taconites" ; -- notcompound aconite_N ;
-lin glauconite_N = mkN "glauconite" "glauconites" ;
-lin rhodonite_N = mkN "rhodonite" "rhodonites" ;
-lin aragonite_N = mkN "aragonite" "aragonites" ;
-lin paragonite_N = mkN "paragonite" "paragonites" ; -- notcompound aragonite_N ;
-lin amblygonite_N = mkN "amblygonite" "amblygonites" ;
-lin limonite_N = mkN "limonite" "limonites" ;
-lin ammonite_N = mkN "ammonite" "ammonites" ;
-lin fergusonite_N = mkN "fergusonite" "fergusonites" ;
-lin bentonite_N = mkN "bentonite" "bentonites" ;
-lin wollastonite_N = mkN "wollastonite" "wollastonites" ;
-lin kernite_N = mkN "kernite" "kernites" ;
-lin bornite_N = mkN "bornite" "bornites" ;
-lin gunite_N = mkN "gunite" "gunites" ;
-lin hydrazoite_N = mkN "hydrazoite" "hydrazoites" ;
-lin trophozoite_N = mkN "trophozoite" "trophozoites" ;
-lin merozoite_N = mkN "merozoite" "merozoites" ;
-lin sporozoite_N = mkN "sporozoite" "sporozoites" ;
-lin phlogopite_N = mkN "phlogopite" "phlogopites" ;
-lin spite_N = mkN "spite" "spites" ;
-lin despite_N = mkN "despite" "despites" ; -- compound spite_N ;
-lin respite_N = mkN "respite" "respites" ; -- compound spite_N ;
-lin rite_N = mkN "rite" "rites" ;
-lin sybarite_N = mkN "sybarite" "sybarites" ; -- compound rite_N ;
-lin hypocrite_N = mkN "hypocrite" "hypocrites" ; -- compound rite_N ;
-lin archimandrite_N = mkN "archimandrite" "archimandrites" ; -- compound rite_N ;
-lin alexandrite_N = mkN "alexandrite" "alexandrites" ; -- compound rite_N ;
-lin dendrite_N = mkN "dendrite" "dendrites" ; -- compound rite_N ;
-lin chondrite_N = mkN "chondrite" "chondrites" ; -- compound rite_N ;
-lin achondrite_N = mkN "achondrite" "achondrites" ; -- compound rite_N ;
-lin rensselaerite_N = mkN "rensselaerite" "rensselaerites" ; -- compound rite_N ;
-lin glycerite_N = mkN "glycerite" "glycerites" ; -- compound rite_N ;
-lin siderite_N = mkN "siderite" "siderites" ; -- compound rite_N ;
-lin cordierite_N = mkN "cordierite" "cordierites" ; -- compound rite_N ;
-lin garnierite_N = mkN "garnierite" "garnierites" ; -- compound rite_N ;
-lin sclerite_N = mkN "sclerite" "sclerites" ; -- compound rite_N ;
-lin millerite_N = mkN "millerite" "millerites" ; -- compound rite_N ;
-lin kieserite_N = mkN "kieserite" "kieserites" ; -- compound rite_N ;
-lin laterite_N = mkN "laterite" "laterites" ; -- compound rite_N ;
-lin preterite_N = mkN "preterite" "preterites" ; -- compound rite_N ;
-lin cassiterite_N = mkN "cassiterite" "cassiterites" ; -- compound rite_N ;
-lin marguerite_N = mkN "marguerite" "marguerites" ; -- compound rite_N ;
-lin nephrite_N = mkN "nephrite" "nephrites" ; -- compound rite_N ;
-lin erythrite_N = mkN "erythrite" "erythrites" ; -- compound rite_N ;
-lin meteorite_N = mkN "meteorite" "meteorites" ; -- compound rite_N ;
-lin micrometeorite_N = mkN "micrometeorite" "micrometeorites" ; -- compound rite_N ;
-lin anchorite_N = mkN "anchorite" "anchorites" ; -- compound rite_N ;
-lin thorite_N = mkN "thorite" "thorites" ; -- compound rite_N ;
-lin diorite_N = mkN "diorite" "diorites" ; -- compound rite_N ;
-lin chlorite_N = mkN "chlorite" "chlorites" ; -- compound rite_N ;
-lin hypochlorite_N = mkN "hypochlorite" "hypochlorites" ; -- compound rite_N ;
-lin evaporite_N = mkN "evaporite" "evaporites" ; -- compound rite_N ;
-lin fluorite_N = mkN "fluorite" "fluorites" ; -- compound rite_N ;
-lin favorite_N = mkN "favorite" "favorites" ; -- compound rite_N ;
-lin sprite_N = mkN "sprite" "sprites" ; -- notcompound rite_N ;
-lin cuprite_N = mkN "cuprite" "cuprites" ; -- compound rite_N ;
-lin ferrite_N = mkN "ferrite" "ferrites" ; -- compound rite_N ;
-lin nitrite_N = mkN "nitrite" "nitrites" ; -- compound rite_N ;
-lin labourite_N = mkN "labourite" "labourites" ; -- compound rite_N ;
-lin damourite_N = mkN "damourite" "damourites" ; -- compound rite_N ;
-lin favourite_N = mkN "favourite" "favourites" ; -- compound rite_N ;
-lin azurite_N = mkN "azurite" "azurites" ; -- compound rite_N ;
-lin rewrite_N = mkN "rewrite" "rewrites" ; -- compound rite_N ;
-lin pyrite_N = mkN "pyrite" "pyrites" ; -- compound rite_N ;
-lin chalcopyrite_N = mkN "chalcopyrite" "chalcopyrites" ; -- compound rite_N ;
-lin arsenopyrite_N = mkN "arsenopyrite" "arsenopyrites" ; -- compound rite_N ;
-lin site_N = mkN "site" "sites" ;
-lin 'bomb-site_N' = mkN "bomb-site" "bomb-sites" ; -- compound site_N ;
-lin 'launching-site_N' = mkN "launching-site" "launching-sites" ; -- compound site_N ;
-lin pallasite_N = mkN "pallasite" "pallasites" ; -- compound site_N ;
-lin bastnasite_N = mkN "bastnasite" "bastnasites" ; -- compound site_N ;
-lin parasite_N = mkN "parasite" "parasites" ; -- compound site_N ;
-lin hemiparasite_N = mkN "hemiparasite" "hemiparasites" ; -- compound site_N ;
-lin endoparasite_N = mkN "endoparasite" "endoparasites" ; -- compound site_N ;
-lin ectoparasite_N = mkN "ectoparasite" "ectoparasites" ; -- compound site_N ;
-lin gibbsite_N = mkN "gibbsite" "gibbsites" ; -- compound site_N ;
-lin adesite_N = mkN "adesite" "adesites" ; -- compound site_N ;
-lin andesite_N = mkN "andesite" "andesites" ; -- compound site_N ;
-lin magnesite_N = mkN "magnesite" "magnesites" ; -- compound site_N ;
-lin requisite_N = mkN "requisite" "requisites" ; -- compound site_N ;
-lin prerequisite_N = mkN "prerequisite" "prerequisites" ; -- compound site_N ;
-lin perquisite_N = mkN "perquisite" "perquisites" ; -- compound site_N ;
-lin martensite_N = mkN "martensite" "martensites" ; -- compound site_N ;
-lin chamosite_N = mkN "chamosite" "chamosites" ; -- compound site_N ;
-lin composite_N = mkN "composite" "composites" ; -- compound site_N ;
-lin opposite_N = mkN "opposite" "opposites" ; -- compound site_N ;
-lin rhodochrosite_N = mkN "rhodochrosite" "rhodochrosites" ; -- compound site_N ;
-lin phillipsite_N = mkN "phillipsite" "phillipsites" ; -- compound site_N ;
-lin campsite_N = mkN "campsite" "campsites" ; -- compound site_N ;
-lin cerussite_N = mkN "cerussite" "cerussites" ; -- compound site_N ;
-lin pyrolusite_N = mkN "pyrolusite" "pyrolusites" ; -- compound site_N ;
-lin haematite_N = mkN "haematite" "haematites" ;
-lin hematite_N = mkN "hematite" "hematites" ;
-lin pegmatite_N = mkN "pegmatite" "pegmatites" ;
-lin apatite_N = mkN "apatite" "apatites" ;
-lin fluorapatite_N = mkN "fluorapatite" "fluorapatites" ; -- compound apatite_N ;
-lin ratite_N = mkN "ratite" "ratites" ;
-lin stalactite_N = mkN "stalactite" "stalactites" ;
-lin magnetite_N = mkN "magnetite" "magnetites" ;
-lin petite_N = mkN "petite" "petites" ;
-lin appetite_N = mkN "appetite" "appetites" ; -- compound petite_N ;
-lin thortveitite_N = mkN "thortveitite" "thortveitites" ;
-lin tektite_N = mkN "tektite" "tektites" ;
-lin cobaltite_N = mkN "cobaltite" "cobaltites" ;
-lin smaltite_N = mkN "smaltite" "smaltites" ;
-lin argentite_N = mkN "argentite" "argentites" ;
-lin cementite_N = mkN "cementite" "cementites" ;
-lin peridotite_N = mkN "peridotite" "peridotites" ;
-lin pyrrhotite_N = mkN "pyrrhotite" "pyrrhotites" ;
-lin biotite_N = mkN "biotite" "biotites" ;
-lin carnotite_N = mkN "carnotite" "carnotites" ;
-lin celestite_N = mkN "celestite" "celestites" ;
-lin transvestite_N = mkN "transvestite" "transvestites" ;
-lin mesquite_N = mkN "mesquite" "mesquites" ;
-lin suite_N = mkN "suite" "suites" ;
-lin sylvite_N = mkN "sylvite" "sylvites" ;
-lin invite_N = mkN "invite" "invites" ;
-lin muscovite_N = mkN "muscovite" "muscovites" ;
-lin bauxite_N = mkN "bauxite" "bauxites" ;
-lin baddeleyite_N = mkN "baddeleyite" "baddeleyites" ;
-lin chabazite_N = mkN "chabazite" "chabazites" ;
-lin monazite_N = mkN "monazite" "monazites" ;
-lin kunzite_N = mkN "kunzite" "kunzites" ;
-lin quartzite_N = mkN "quartzite" "quartzites" ;
-lin wurtzite_N = mkN "wurtzite" "wurtzites" ;
-lin ante_N = mkN "ante" "antes" ;
-lin confidante_N = mkN "confidante" "confidantes" ; -- compound ante_N ;
-lin andante_N = mkN "andante" "andantes" ; -- compound ante_N ;
-lin bacchante_N = mkN "bacchante" "bacchantes" ; -- compound ante_N ;
-lin vigilante_N = mkN "vigilante" "vigilantes" ; -- compound ante_N ;
-lin diamante_N = mkN "diamante" "diamantes" ; -- compound ante_N ;
-lin transmigrante_N = mkN "transmigrante" "transmigrantes" ; -- compound ante_N ;
-lin courante_N = mkN "courante" "courantes" ; -- compound ante_N ;
-lin 'poste restante_N' = mkN "poste restante" "poste restantes" ; -- compound ante_N ;
-lin dilettante_N = mkN "dilettante" "dilettantes" ; -- compound ante_N ;
-lin debutante_N = mkN "debutante" "debutantes" ; -- compound ante_N ;
-lin débutante_N = mkN "débutante" "débutantes" ; -- compound ante_N ;
-lin sente_N = mkN "sente" "sentes" ;
-lin entente_N = mkN "entente" "ententes" ;
-lin détente_N = mkN "détente" "détentes" ;
-lin monte_N = mkN "monte" "montes" ;
-lin cote_N = mkN "cote" "cotes" ;
-lin entrecote_N = mkN "entrecote" "entrecotes" ; -- compound cote_N ;
-lin dovecote_N = mkN "dovecote" "dovecotes" ; -- compound cote_N ;
-lin anecdote_N = mkN "anecdote" "anecdotes" ;
-lin antidote_N = mkN "antidote" "antidotes" ;
-lin zoomastigote_N = mkN "zoomastigote" "zoomastigotes" ;
-lin hypermastigote_N = mkN "hypermastigote" "hypermastigotes" ;
-lin polymastigote_N = mkN "polymastigote" "polymastigotes" ;
-lin ravigote_N = mkN "ravigote" "ravigotes" ;
-lin zygote_N = mkN "zygote" "zygotes" ;
-lin homozygote_N = mkN "homozygote" "homozygotes" ; -- compound zygote_N ;
-lin heterozygote_N = mkN "heterozygote" "heterozygotes" ; -- compound zygote_N ;
-lin amniote_N = mkN "amniote" "amniotes" ;
-lin matelote_N = mkN "matelote" "matelotes" ;
-lin mote_N = mkN "mote" "motes" ;
-lin note_N = mkN "note" "notes" ;
-lin parthenote_N = mkN "parthenote" "parthenotes" ; -- compound note_N ;
-lin banknote_N = mkN "banknote" "banknotes" ; -- compound note_N ;
-lin footnote_N = mkN "footnote" "footnotes" ; -- compound note_N ;
-lin keynote_N = mkN "keynote" "keynotes" ; -- compound note_N ;
-lin capote_N = mkN "capote" "capotes" ;
-lin sapote_N = mkN "sapote" "sapotes" ;
-lin compote_N = mkN "compote" "compotes" ;
-lin garrote_N = mkN "garrote" "garrotes" ;
-lin creosote_N = mkN "creosote" "creosotes" ;
-lin tote_N = mkN "tote" "totes" ;
-lin asymptote_N = mkN "asymptote" "asymptotes" ; -- compound tote_N ;
-lin quote_N = mkN "quote" "quotes" ;
-lin vote_N = mkN "vote" "votes" ;
-lin peyote_N = mkN "peyote" "peyotes" ;
-lin coyote_N = mkN "coyote" "coyotes" ;
-lin prokaryote_N = mkN "prokaryote" "prokaryotes" ;
-lin eukaryote_N = mkN "eukaryote" "eukaryotes" ;
-lin azote_N = mkN "azote" "azotes" ;
-lin ecarte_N = mkN "ecarte" "ecartes" ;
-lin forte_N = mkN "forte" "fortes" ;
-lin pianoforte_N = mkN "pianoforte" "pianofortes" ; -- compound forte_N ;
-lin torte_N = mkN "torte" "tortes" ;
-lin baste_N = mkN "baste" "bastes" ;
-lin caste_N = mkN "caste" "castes" ;
-lin 'half-caste_N' = mkN "half-caste" "half-castes" ; -- compound caste_N ;
-lin conacaste_N = mkN "conacaste" "conacastes" ; -- compound caste_N ;
-lin outcaste_N = mkN "outcaste" "outcastes" ; -- compound caste_N ;
-lin haste_N = mkN "haste" "hastes" ;
-lin paste_N = mkN "paste" "pastes" ;
-lin fishpaste_N = mkN "fishpaste" "fishpastes" ; -- compound paste_N ;
-lin toothpaste_N = mkN "toothpaste" "toothpastes" ; -- compound paste_N ;
-lin tagasaste_N = mkN "tagasaste" "tagasastes" ;
-lin taste_N = mkN "taste" "tastes" ;
-lin foretaste_N = mkN "foretaste" "foretastes" ; -- compound taste_N ;
-lin aftertaste_N = mkN "aftertaste" "aftertastes" ; -- compound taste_N ;
-lin distaste_N = mkN "distaste" "distastes" ; -- compound taste_N ;
-lin waste_N = mkN "waste" "wastes" ;
-lin modiste_N = mkN "modiste" "modistes" ;
-lin piste_N = mkN "piste" "pistes" ;
-lin batiste_N = mkN "batiste" "batistes" ;
-lin artiste_N = mkN "artiste" "artistes" ;
-lin riposte_N = mkN "riposte" "ripostes" ;
-lin matte_N = mkN "matte" "mattes" ;
-lin barbette_N = mkN "barbette" "barbettes" ;
-lin suffragette_N = mkN "suffragette" "suffragettes" ;
-lin georgette_N = mkN "georgette" "georgettes" ;
-lin courgette_N = mkN "courgette" "courgettes" ;
-lin planchette_N = mkN "planchette" "planchettes" ;
-lin brochette_N = mkN "brochette" "brochettes" ;
-lin couchette_N = mkN "couchette" "couchettes" ;
-lin oubliette_N = mkN "oubliette" "oubliettes" ;
-lin serviette_N = mkN "serviette" "serviettes" ;
-lin diskette_N = mkN "diskette" "diskettes" ;
-lin palette_N = mkN "palette" "palettes" ;
-lin omelette_N = mkN "omelette" "omelettes" ;
-lin flannelette_N = mkN "flannelette" "flannelettes" ;
-lin novelette_N = mkN "novelette" "novelettes" ;
-lin pallette_N = mkN "pallette" "pallettes" ;
-lin epaulette_N = mkN "epaulette" "epaulettes" ;
-lin poulette_N = mkN "poulette" "poulettes" ;
-lin roulette_N = mkN "roulette" "roulettes" ;
-lin roomette_N = mkN "roomette" "roomettes" ;
-lin kitchenette_N = mkN "kitchenette" "kitchenettes" ;
-lin vignette_N = mkN "vignette" "vignettes" ;
-lin lorgnette_N = mkN "lorgnette" "lorgnettes" ;
-lin dinette_N = mkN "dinette" "dinettes" ;
-lin midinette_N = mkN "midinette" "midinettes" ; -- compound dinette_N ;
-lin stockinette_N = mkN "stockinette" "stockinettes" ;
-lin maisonnette_N = mkN "maisonnette" "maisonnettes" ;
-lin marionette_N = mkN "marionette" "marionettes" ;
-lin mignonette_N = mkN "mignonette" "mignonettes" ;
-lin maisonette_N = mkN "maisonette" "maisonettes" ;
-lin lunette_N = mkN "lunette" "lunettes" ;
-lin brunette_N = mkN "brunette" "brunettes" ;
-lin pipette_N = mkN "pipette" "pipettes" ;
-lin cigarette_N = mkN "cigarette" "cigarettes" ;
-lin lazarette_N = mkN "lazarette" "lazarettes" ;
-lin soubrette_N = mkN "soubrette" "soubrettes" ;
-lin launderette_N = mkN "launderette" "launderettes" ;
-lin usherette_N = mkN "usherette" "usherettes" ;
-lin leatherette_N = mkN "leatherette" "leatherettes" ;
-lin farmerette_N = mkN "farmerette" "farmerettes" ;
-lin aigrette_N = mkN "aigrette" "aigrettes" ;
-lin vinaigrette_N = mkN "vinaigrette" "vinaigrettes" ; -- compound aigrette_N ;
-lin 'drum-majorette_N' = mkN "drum-majorette" "drum-majorettes" ;
-lin barrette_N = mkN "barrette" "barrettes" ;
-lin burette_N = mkN "burette" "burettes" ;
-lin curette_N = mkN "curette" "curettes" ;
-lin anisette_N = mkN "anisette" "anisettes" ;
-lin rosette_N = mkN "rosette" "rosettes" ;
-lin cassette_N = mkN "cassette" "cassettes" ;
-lin videocassette_N = mkN "videocassette" "videocassettes" ; -- compound cassette_N ;
-lin audiocassette_N = mkN "audiocassette" "audiocassettes" ; -- compound cassette_N ;
-lin musette_N = mkN "musette" "musettes" ;
-lin octette_N = mkN "octette" "octettes" ;
-lin sextette_N = mkN "sextette" "sextettes" ;
-lin silhouette_N = mkN "silhouette" "silhouettes" ;
-lin pirouette_N = mkN "pirouette" "pirouettes" ;
-lin briquette_N = mkN "briquette" "briquettes" ;
-lin etiquette_N = mkN "etiquette" "etiquettes" ;
-lin banquette_N = mkN "banquette" "banquettes" ;
-lin coquette_N = mkN "coquette" "coquettes" ;
-lin moquette_N = mkN "moquette" "moquettes" ;
-lin croquette_N = mkN "croquette" "croquettes" ;
-lin statuette_N = mkN "statuette" "statuettes" ;
-lin corvette_N = mkN "corvette" "corvettes" ;
-lin layette_N = mkN "layette" "layettes" ;
-lin winceyette_N = mkN "winceyette" "winceyettes" ;
-lin gazette_N = mkN "gazette" "gazettes" ;
-lin cocotte_N = mkN "cocotte" "cocottes" ;
-lin charlotte_N = mkN "charlotte" "charlottes" ;
-lin culotte_N = mkN "culotte" "culottes" ;
-lin garotte_N = mkN "garotte" "garottes" ;
-lin garrotte_N = mkN "garrotte" "garrottes" ;
-lin gavotte_N = mkN "gavotte" "gavottes" ;
-lin butte_N = mkN "butte" "buttes" ;
-lin saute_N = mkN "saute" "sautes" ;
-lin tribute_N = mkN "tribute" "tributes" ;
-lin attribute_N = mkN "attribute" "attributes" ; -- compound tribute_N ;
-lin scute_N = mkN "scute" "scutes" ;
-lin chute_N = mkN "chute" "chutes" ;
-lin parachute_N = mkN "parachute" "parachutes" ; -- compound chute_N ;
-lin waterchute_N = mkN "waterchute" "waterchutes" ; -- compound chute_N ;
-lin jute_N = mkN "jute" "jutes" ;
-lin lute_N = mkN "lute" "lutes" ;
-lin salute_N = mkN "salute" "salutes" ; -- compound lute_N ;
-lin flute_N = mkN "flute" "flutes" ; -- notcompound lute_N ;
-lin 'nose-flute_N' = mkN "nose-flute" "nose-flutes" ; -- compound lute_N ;
-lin solute_N = mkN "solute" "solutes" ; -- compound lute_N ;
-lin absolute_N = mkN "absolute" "absolutes" ; -- compound lute_N ;
-lin volute_N = mkN "volute" "volutes" ; -- compound lute_N ;
-lin mute_N = mkN "mute" "mutes" ;
-lin 'deaf mute_N' = mkN "deaf mute" "deaf mutes" ; -- compound mute_N ;
-lin malamute_N = mkN "malamute" "malamutes" ; -- compound mute_N ;
-lin commute_N = mkN "commute" "commutes" ; -- compound mute_N ;
-lin minute_N = mkN "minute" "minutes" ;
-lin veloute_N = mkN "veloute" "veloutes" ;
-lin route_N = mkN "route" "routes" ;
-lin repute_N = mkN "repute" "reputes" ;
-lin disrepute_N = mkN "disrepute" "disreputes" ; -- compound repute_N ;
-lin dispute_N = mkN "dispute" "disputes" ;
-lin brute_N = mkN "brute" "brutes" ;
-lin statute_N = mkN "statute" "statutes" ;
-lin substitute_N = mkN "substitute" "substitutes" ;
-lin institute_N = mkN "institute" "institutes" ;
-lin prostitute_N = mkN "prostitute" "prostitutes" ;
-lin byte_N = mkN "byte" "bytes" ;
-lin megabyte_N = mkN "megabyte" "megabytes" ; -- compound byte_N ;
-lin gigabyte_N = mkN "gigabyte" "gigabytes" ; -- compound byte_N ;
-lin terabyte_N = mkN "terabyte" "terabytes" ; -- compound byte_N ;
-lin petabyte_N = mkN "petabyte" "petabytes" ; -- compound byte_N ;
-lin zettabyte_N = mkN "zettabyte" "zettabytes" ; -- compound byte_N ;
-lin yottabyte_N = mkN "yottabyte" "yottabytes" ; -- compound byte_N ;
-lin exabyte_N = mkN "exabyte" "exabytes" ; -- compound byte_N ;
-lin kilobyte_N = mkN "kilobyte" "kilobytes" ; -- compound byte_N ;
-lin microgliacyte_N = mkN "microgliacyte" "microgliacytes" ;
-lin neurogliacyte_N = mkN "neurogliacyte" "neurogliacytes" ;
-lin leucocyte_N = mkN "leucocyte" "leucocytes" ;
-lin osteocyte_N = mkN "osteocyte" "osteocytes" ;
-lin phagocyte_N = mkN "phagocyte" "phagocytes" ;
-lin lymphocyte_N = mkN "lymphocyte" "lymphocytes" ;
-lin acanthocyte_N = mkN "acanthocyte" "acanthocytes" ;
-lin histiocyte_N = mkN "histiocyte" "histiocytes" ;
-lin leukocyte_N = mkN "leukocyte" "leukocytes" ;
-lin megalocyte_N = mkN "megalocyte" "megalocytes" ;
-lin myelocyte_N = mkN "myelocyte" "myelocytes" ;
-lin reticulocyte_N = mkN "reticulocyte" "reticulocytes" ;
-lin granulocyte_N = mkN "granulocyte" "granulocytes" ;
-lin melanocyte_N = mkN "melanocyte" "melanocytes" ;
-lin choanocyte_N = mkN "choanocyte" "choanocytes" ;
-lin monocyte_N = mkN "monocyte" "monocytes" ;
-lin oocyte_N = mkN "oocyte" "oocytes" ;
-lin microcyte_N = mkN "microcyte" "microcytes" ;
-lin oligodendrocyte_N = mkN "oligodendrocyte" "oligodendrocytes" ;
-lin siderocyte_N = mkN "siderocyte" "siderocytes" ;
-lin spherocyte_N = mkN "spherocyte" "spherocytes" ;
-lin astrocyte_N = mkN "astrocyte" "astrocytes" ;
-lin spermatocyte_N = mkN "spermatocyte" "spermatocytes" ;
-lin gametocyte_N = mkN "gametocyte" "gametocytes" ;
-lin blastocyte_N = mkN "blastocyte" "blastocytes" ;
-lin akaryocyte_N = mkN "akaryocyte" "akaryocytes" ;
-lin megakaryocyte_N = mkN "megakaryocyte" "megakaryocytes" ; -- compound akaryocyte_N ;
-lin troglodyte_N = mkN "troglodyte" "troglodytes" ;
-lin hemiepiphyte_N = mkN "hemiepiphyte" "hemiepiphytes" ;
-lin myrmecophyte_N = mkN "myrmecophyte" "myrmecophytes" ;
-lin pteridophyte_N = mkN "pteridophyte" "pteridophytes" ;
-lin geophyte_N = mkN "geophyte" "geophytes" ;
-lin neophyte_N = mkN "neophyte" "neophytes" ;
-lin osteophyte_N = mkN "osteophyte" "osteophytes" ;
-lin lithophyte_N = mkN "lithophyte" "lithophytes" ;
-lin halophyte_N = mkN "halophyte" "halophytes" ;
-lin psilophyte_N = mkN "psilophyte" "psilophytes" ;
-lin thallophyte_N = mkN "thallophyte" "thallophytes" ;
-lin holophyte_N = mkN "holophyte" "holophytes" ;
-lin zoophyte_N = mkN "zoophyte" "zoophytes" ;
-lin hygrophyte_N = mkN "hygrophyte" "hygrophytes" ;
-lin sporophyte_N = mkN "sporophyte" "sporophytes" ;
-lin saprophyte_N = mkN "saprophyte" "saprophytes" ;
-lin mesophyte_N = mkN "mesophyte" "mesophytes" ;
-lin spermatophyte_N = mkN "spermatophyte" "spermatophytes" ;
-lin gametophyte_N = mkN "gametophyte" "gametophytes" ;
-lin megagametophyte_N = mkN "megagametophyte" "megagametophytes" ; -- compound gametophyte_N ;
-lin microgametophyte_N = mkN "microgametophyte" "microgametophytes" ; -- compound gametophyte_N ;
-lin autophyte_N = mkN "autophyte" "autophytes" ;
-lin bryophyte_N = mkN "bryophyte" "bryophytes" ;
-lin proselyte_N = mkN "proselyte" "proselytes" ;
-lin acolyte_N = mkN "acolyte" "acolytes" ;
-lin electrolyte_N = mkN "electrolyte" "electrolytes" ;
-lin polyelectrolyte_N = mkN "polyelectrolyte" "polyelectrolytes" ; -- compound electrolyte_N ;
-lin fête_N = mkN "fête" "fêtes" ;
-lin arête_N = mkN "arête" "arêtes" ;
-lin 'tête-à-tête_N' = mkN "tête-à-tête" "tête-à-têtes" ;
-lin cue_N = mkN "cue" "cues" ;
-lin barbecue_N = mkN "barbecue" "barbecues" ; -- compound cue_N ;
-lin fescue_N = mkN "fescue" "fescues" ; -- compound cue_N ;
-lin rescue_N = mkN "rescue" "rescues" ; -- compound cue_N ;
-lin miscue_N = mkN "miscue" "miscues" ; -- compound cue_N ;
-lin due_N = mkN "due" "dues" ;
-lin residue_N = mkN "residue" "residues" ; -- compound due_N ;
-lin fondue_N = mkN "fondue" "fondues" ; -- compound due_N ;
-lin queue_N = mkN "queue" "queues" ;
-lin ague_N = mkN "ague" "agues" ;
-lin league_N = mkN "league" "leagues" ; -- compound ague_N ;
-lin colleague_N = mkN "colleague" "colleagues" ; -- compound ague_N ;
-lin plague_N = mkN "plague" "plagues" ; -- notcompound ague_N ;
-lin segue_N = mkN "segue" "segues" ;
-lin intrigue_N = mkN "intrigue" "intrigues" ;
-lin fatigue_N = mkN "fatigue" "fatigues" ;
-lin cangue_N = mkN "cangue" "cangues" ;
-lin harangue_N = mkN "harangue" "harangues" ;
-lin dengue_N = mkN "dengue" "dengues" ;
-lin meringue_N = mkN "meringue" "meringues" ;
-lin 'chaise longue_N' = mkN "chaise longue" "chaise longues" ;
-lin tongue_N = mkN "tongue" "tongues" ;
-lin bluetongue_N = mkN "bluetongue" "bluetongues" ; -- compound tongue_N ;
-lin earthtongue_N = mkN "earthtongue" "earthtongues" ; -- compound tongue_N ;
-lin oxtongue_N = mkN "oxtongue" "oxtongues" ; -- compound tongue_N ;
-lin pedagogue_N = mkN "pedagogue" "pedagogues" ;
-lin demagogue_N = mkN "demagogue" "demagogues" ;
-lin emmenagogue_N = mkN "emmenagogue" "emmenagogues" ;
-lin hypnagogue_N = mkN "hypnagogue" "hypnagogues" ;
-lin synagogue_N = mkN "synagogue" "synagogues" ;
-lin galactagogue_N = mkN "galactagogue" "galactagogues" ;
-lin decalogue_N = mkN "decalogue" "decalogues" ;
-lin dialogue_N = mkN "dialogue" "dialogues" ;
-lin analogue_N = mkN "analogue" "analogues" ;
-lin catalogue_N = mkN "catalogue" "catalogues" ;
-lin eclogue_N = mkN "eclogue" "eclogues" ;
-lin travelogue_N = mkN "travelogue" "travelogues" ;
-lin epilogue_N = mkN "epilogue" "epilogues" ;
-lin monologue_N = mkN "monologue" "monologues" ;
-lin prologue_N = mkN "prologue" "prologues" ;
-lin duologue_N = mkN "duologue" "duologues" ;
-lin rogue_N = mkN "rogue" "rogues" ;
-lin brogue_N = mkN "brogue" "brogues" ; -- notcompound rogue_N ;
-lin drogue_N = mkN "drogue" "drogues" ; -- notcompound rogue_N ;
-lin vogue_N = mkN "vogue" "vogues" ;
-lin morgue_N = mkN "morgue" "morgues" ;
-lin fugue_N = mkN "fugue" "fugues" ;
-lin hue_N = mkN "hue" "hues" ;
-lin value_N = mkN "value" "values" ;
-lin eigenvalue_N = mkN "eigenvalue" "eigenvalues" ; -- compound value_N ;
-lin blue_N = mkN "blue" "blues" ;
-lin 'true-blue_N' = mkN "true-blue" "true-blues" ; -- compound blue_N ;
-lin 'peacock-blue_N' = mkN "peacock-blue" "peacock-blues" ; -- compound blue_N ;
-lin 'sky-blue_N' = mkN "sky-blue" "sky-blues" ; -- compound blue_N ;
-lin clue_N = mkN "clue" "clues" ;
-lin flue_N = mkN "flue" "flues" ;
-lin glue_N = mkN "glue" "glues" ;
-lin venue_N = mkN "venue" "venues" ;
-lin avenue_N = mkN "avenue" "avenues" ; -- notcompound venue_N ;
-lin revenue_N = mkN "revenue" "revenues" ; -- compound venue_N ;
-lin retinue_N = mkN "retinue" "retinues" ;
-lin ingénue_N = mkN "ingénue" "ingénues" ;
-lin macaque_N = mkN "macaque" "macaques" ;
-lin claque_N = mkN "claque" "claques" ;
-lin plaque_N = mkN "plaque" "plaques" ;
-lin cheque_N = mkN "cheque" "cheques" ;
-lin discotheque_N = mkN "discotheque" "discotheques" ;
-lin cacique_N = mkN "cacique" "caciques" ;
-lin oblique_N = mkN "oblique" "obliques" ;
-lin clique_N = mkN "clique" "cliques" ;
-lin silique_N = mkN "silique" "siliques" ;
-lin technique_N = mkN "technique" "techniques" ;
-lin pique_N = mkN "pique" "piques" ;
-lin physique_N = mkN "physique" "physiques" ;
-lin critique_N = mkN "critique" "critiques" ;
-lin antique_N = mkN "antique" "antiques" ;
-lin mystique_N = mkN "mystique" "mystiques" ;
-lin boutique_N = mkN "boutique" "boutiques" ;
-lin bezique_N = mkN "bezique" "beziques" ;
-lin calque_N = mkN "calque" "calques" ;
-lin catafalque_N = mkN "catafalque" "catafalques" ;
-lin pulque_N = mkN "pulque" "pulques" ;
-lin toque_N = mkN "toque" "toques" ;
-lin barque_N = mkN "barque" "barques" ;
-lin marque_N = mkN "marque" "marques" ;
-lin cirque_N = mkN "cirque" "cirques" ;
-lin torque_N = mkN "torque" "torques" ;
-lin casque_N = mkN "casque" "casques" ;
-lin monegasque_N = mkN "monegasque" "monegasques" ;
-lin masque_N = mkN "masque" "masques" ;
-lin arabesque_N = mkN "arabesque" "arabesques" ;
-lin burlesque_N = mkN "burlesque" "burlesques" ;
-lin romanesque_N = mkN "romanesque" "romanesques" ;
-lin grotesque_N = mkN "grotesque" "grotesques" ;
-lin bisque_N = mkN "bisque" "bisques" ;
-lin odalisque_N = mkN "odalisque" "odalisques" ;
-lin mosque_N = mkN "mosque" "mosques" ;
-lin rue_N = mkN "rue" "rues" ;
-lin sprue_N = mkN "sprue" "sprues" ; -- notcompound rue_N ;
-lin true_N = mkN "true" "trues" ; -- notcompound rue_N ;
-lin issue_N = mkN "issue" "issues" ;
-lin reissue_N = mkN "reissue" "reissues" ; -- compound issue_N ;
-lin tissue_N = mkN "tissue" "tissues" ; -- notcompound issue_N ;
-lin statue_N = mkN "statue" "statues" ;
-lin virtue_N = mkN "virtue" "virtues" ;
-lin battue_N = mkN "battue" "battues" ;
-lin revue_N = mkN "revue" "revues" ;
-lin cave_N = mkN "cave" "caves" ;
-lin heave_N = mkN "heave" "heaves" ;
-lin leave_N = mkN "leave" "leaves" ;
-lin 'sick-leave_N' = mkN "sick-leave" "sick-leaves" ; -- compound leave_N ;
-lin greave_N = mkN "greave" "greaves" ;
-lin weave_N = mkN "weave" "weaves" ;
-lin agave_N = mkN "agave" "agaves" ;
-lin shave_N = mkN "shave" "shaves" ;
-lin spokeshave_N = mkN "spokeshave" "spokeshaves" ; -- compound shave_N ;
-lin enclave_N = mkN "enclave" "enclaves" ;
-lin conclave_N = mkN "conclave" "conclaves" ;
-lin autoclave_N = mkN "autoclave" "autoclaves" ;
-lin slave_N = mkN "slave" "slaves" ;
-lin 'galley-slave_N' = mkN "galley-slave" "galley-slaves" ; -- compound slave_N ;
-lin nave_N = mkN "nave" "naves" ;
-lin knave_N = mkN "knave" "knaves" ; -- notcompound nave_N ;
-lin pave_N = mkN "pave" "paves" ;
-lin rave_N = mkN "rave" "raves" ;
-lin brave_N = mkN "brave" "braves" ; -- notcompound rave_N ;
-lin grave_N = mkN "grave" "graves" ; -- notcompound rave_N ;
-lin landgrave_N = mkN "landgrave" "landgraves" ; -- compound rave_N ;
-lin margrave_N = mkN "margrave" "margraves" ; -- compound rave_N ;
-lin burgrave_N = mkN "burgrave" "burgraves" ; -- compound rave_N ;
-lin trave_N = mkN "trave" "traves" ; -- notcompound rave_N ;
-lin architrave_N = mkN "architrave" "architraves" ; -- compound rave_N ;
-lin save_N = mkN "save" "saves" ;
-lin octave_N = mkN "octave" "octaves" ;
-lin stave_N = mkN "stave" "staves" ;
-lin wave_N = mkN "wave" "waves" ;
-lin 'sound-wave_N' = mkN "sound-wave" "sound-waves" ; -- compound wave_N ;
-lin brainwave_N = mkN "brainwave" "brainwaves" ; -- compound wave_N ;
-lin microwave_N = mkN "microwave" "microwaves" ; -- compound wave_N ;
-lin heatwave_N = mkN "heatwave" "heatwaves" ; -- compound wave_N ;
-lin eve_N = mkN "eve" "eves" ;
-lin sleeve_N = mkN "sleeve" "sleeves" ; -- compound eve_N ;
-lin shirtsleeve_N = mkN "shirtsleeve" "shirtsleeves" ; -- compound eve_N ;
-lin peeve_N = mkN "peeve" "peeves" ; -- compound eve_N ;
-lin reeve_N = mkN "reeve" "reeves" ; -- compound eve_N ;
-lin 'make-believe_N' = mkN "make-believe" "make-believes" ; -- compound eve_N ;
-lin reprieve_N = mkN "reprieve" "reprieves" ; -- compound eve_N ;
-lin sieve_N = mkN "sieve" "sieves" ; -- compound eve_N ;
-lin neve_N = mkN "neve" "neves" ; -- notcompound eve_N ;
-lin breve_N = mkN "breve" "breves" ; -- notcompound eve_N ;
-lin semibreve_N = mkN "semibreve" "semibreves" ; -- compound eve_N ;
-lin dive_N = mkN "dive" "dives" ;
-lin 'crash-dive_N' = mkN "crash-dive" "crash-dives" ; -- compound dive_N ;
-lin 'power-dive_N' = mkN "power-dive" "power-dives" ; -- compound dive_N ;
-lin nosedive_N = mkN "nosedive" "nosedives" ; -- compound dive_N ;
-lin endive_N = mkN "endive" "endives" ; -- compound dive_N ;
-lin give_N = mkN "give" "gives" ;
-lin hive_N = mkN "hive" "hives" ;
-lin chive_N = mkN "chive" "chives" ; -- notcompound hive_N ;
-lin archive_N = mkN "archive" "archives" ; -- compound hive_N ;
-lin beehive_N = mkN "beehive" "beehives" ; -- compound hive_N ;
-lin jive_N = mkN "jive" "jives" ;
-lin olive_N = mkN "olive" "olives" ;
-lin drive_N = mkN "drive" "drives" ;
-lin 'test-drive_N' = mkN "test-drive" "test-drives" ; -- compound drive_N ;
-lin 'whist-drive_N' = mkN "whist-drive" "whist-drives" ; -- compound drive_N ;
-lin overdrive_N = mkN "overdrive" "overdrives" ; -- compound drive_N ;
-lin abrasive_N = mkN "abrasive" "abrasives" ;
-lin adhesive_N = mkN "adhesive" "adhesives" ;
-lin compulsive_N = mkN "compulsive" "compulsives" ;
-lin defensive_N = mkN "defensive" "defensives" ;
-lin offensive_N = mkN "offensive" "offensives" ;
-lin counteroffensive_N = mkN "counteroffensive" "counteroffensives" ; -- compound offensive_N ;
-lin hypotensive_N = mkN "hypotensive" "hypotensives" ;
-lin hypertensive_N = mkN "hypertensive" "hypertensives" ;
-lin antihypertensive_N = mkN "antihypertensive" "antihypertensives" ; -- compound hypertensive_N ;
-lin plosive_N = mkN "plosive" "plosives" ;
-lin explosive_N = mkN "explosive" "explosives" ; -- compound plosive_N ;
-lin corrosive_N = mkN "corrosive" "corrosives" ;
-lin subversive_N = mkN "subversive" "subversives" ;
-lin passive_N = mkN "passive" "passives" ;
-lin progressive_N = mkN "progressive" "progressives" ;
-lin depressive_N = mkN "depressive" "depressives" ;
-lin 'manic-depressive_N' = mkN "manic-depressive" "manic-depressives" ; -- compound depressive_N ;
-lin obsessive_N = mkN "obsessive" "obsessives" ;
-lin missive_N = mkN "missive" "missives" ;
-lin antitussive_N = mkN "antitussive" "antitussives" ;
-lin exclusive_N = mkN "exclusive" "exclusives" ;
-lin fricative_N = mkN "fricative" "fricatives" ;
-lin vocative_N = mkN "vocative" "vocatives" ;
-lin dative_N = mkN "dative" "datives" ;
-lin sedative_N = mkN "sedative" "sedatives" ; -- compound dative_N ;
-lin negative_N = mkN "negative" "negatives" ;
-lin prerogative_N = mkN "prerogative" "prerogatives" ;
-lin interrogative_N = mkN "interrogative" "interrogatives" ;
-lin purgative_N = mkN "purgative" "purgatives" ;
-lin palliative_N = mkN "palliative" "palliatives" ;
-lin initiative_N = mkN "initiative" "initiatives" ;
-lin ablative_N = mkN "ablative" "ablatives" ;
-lin relative_N = mkN "relative" "relatives" ;
-lin correlative_N = mkN "correlative" "correlatives" ; -- compound relative_N ;
-lin contemplative_N = mkN "contemplative" "contemplatives" ;
-lin superlative_N = mkN "superlative" "superlatives" ;
-lin copulative_N = mkN "copulative" "copulatives" ;
-lin affirmative_N = mkN "affirmative" "affirmatives" ;
-lin formative_N = mkN "formative" "formatives" ;
-lin native_N = mkN "native" "natives" ;
-lin nominative_N = mkN "nominative" "nominatives" ; -- compound native_N ;
-lin carminative_N = mkN "carminative" "carminatives" ; -- compound native_N ;
-lin determinative_N = mkN "determinative" "determinatives" ; -- compound native_N ;
-lin alternative_N = mkN "alternative" "alternatives" ; -- compound native_N ;
-lin inchoative_N = mkN "inchoative" "inchoatives" ;
-lin comparative_N = mkN "comparative" "comparatives" ;
-lin imperative_N = mkN "imperative" "imperatives" ;
-lin operative_N = mkN "operative" "operatives" ;
-lin cooperative_N = mkN "cooperative" "cooperatives" ; -- compound operative_N ;
-lin iterative_N = mkN "iterative" "iteratives" ;
-lin commemorative_N = mkN "commemorative" "commemoratives" ;
-lin restorative_N = mkN "restorative" "restoratives" ;
-lin narrative_N = mkN "narrative" "narratives" ;
-lin durative_N = mkN "durative" "duratives" ;
-lin accusative_N = mkN "accusative" "accusatives" ;
-lin recitative_N = mkN "recitative" "recitatives" ;
-lin representative_N = mkN "representative" "representatives" ;
-lin frequentative_N = mkN "frequentative" "frequentatives" ;
-lin preventative_N = mkN "preventative" "preventatives" ;
-lin optative_N = mkN "optative" "optatives" ;
-lin derivative_N = mkN "derivative" "derivatives" ;
-lin preservative_N = mkN "preservative" "preservatives" ;
-lin conservative_N = mkN "conservative" "conservatives" ;
-lin neoconservative_N = mkN "neoconservative" "neoconservatives" ; -- compound conservative_N ;
-lin laxative_N = mkN "laxative" "laxatives" ;
-lin fixative_N = mkN "fixative" "fixatives" ;
-lin active_N = mkN "active" "actives" ;
-lin perfective_N = mkN "perfective" "perfectives" ;
-lin imperfective_N = mkN "imperfective" "imperfectives" ; -- compound perfective_N ;
-lin objective_N = mkN "objective" "objectives" ;
-lin adjective_N = mkN "adjective" "adjectives" ;
-lin collective_N = mkN "collective" "collectives" ;
-lin connective_N = mkN "connective" "connectives" ;
-lin retrospective_N = mkN "retrospective" "retrospectives" ;
-lin perspective_N = mkN "perspective" "perspectives" ;
-lin directive_N = mkN "directive" "directives" ;
-lin corrective_N = mkN "corrective" "correctives" ;
-lin detective_N = mkN "detective" "detectives" ;
-lin invective_N = mkN "invective" "invectives" ;
-lin subjunctive_N = mkN "subjunctive" "subjunctives" ;
-lin conjunctive_N = mkN "conjunctive" "conjunctives" ;
-lin expletive_N = mkN "expletive" "expletives" ;
-lin additive_N = mkN "additive" "additives" ;
-lin fugitive_N = mkN "fugitive" "fugitives" ;
-lin primitive_N = mkN "primitive" "primitives" ;
-lin genitive_N = mkN "genitive" "genitives" ;
-lin lenitive_N = mkN "lenitive" "lenitives" ;
-lin infinitive_N = mkN "infinitive" "infinitives" ;
-lin positive_N = mkN "positive" "positives" ;
-lin partitive_N = mkN "partitive" "partitives" ;
-lin substantive_N = mkN "substantive" "substantives" ;
-lin incentive_N = mkN "incentive" "incentives" ;
-lin disincentive_N = mkN "disincentive" "disincentives" ; -- compound incentive_N ;
-lin preventive_N = mkN "preventive" "preventives" ;
-lin motive_N = mkN "motive" "motives" ;
-lin locomotive_N = mkN "locomotive" "locomotives" ; -- compound motive_N ;
-lin captive_N = mkN "captive" "captives" ;
-lin contraceptive_N = mkN "contraceptive" "contraceptives" ;
-lin consumptive_N = mkN "consumptive" "consumptives" ;
-lin digestive_N = mkN "digestive" "digestives" ;
-lin executive_N = mkN "executive" "executives" ;
-lin diminutive_N = mkN "diminutive" "diminutives" ;
-lin 'qui vive_N' = mkN "qui vive" "qui vives" ;
-lin reflexive_N = mkN "reflexive" "reflexives" ;
-lin salve_N = mkN "salve" "salves" ;
-lin valve_N = mkN "valve" "valves" ;
-lin 'sluice-valve_N' = mkN "sluice-valve" "sluice-valves" ; -- compound valve_N ;
-lin 'throttle-valve_N' = mkN "throttle-valve" "throttle-valves" ; -- compound valve_N ;
-lin 'safety-valve_N' = mkN "safety-valve" "safety-valves" ; -- compound valve_N ;
-lin bivalve_N = mkN "bivalve" "bivalves" ; -- compound valve_N ;
-lin helve_N = mkN "helve" "helves" ;
-lin resolve_N = mkN "resolve" "resolves" ;
-lin dissolve_N = mkN "dissolve" "dissolves" ;
-lin above_N = mkN "above" "aboves" ;
-lin cove_N = mkN "cove" "coves" ;
-lin alcove_N = mkN "alcove" "alcoves" ; -- compound cove_N ;
-lin dove_N = mkN "dove" "doves" ;
-lin turtledove_N = mkN "turtledove" "turtledoves" ; -- compound dove_N ;
-lin ringdove_N = mkN "ringdove" "ringdoves" ; -- compound dove_N ;
-lin shove_N = mkN "shove" "shoves" ;
-lin perijove_N = mkN "perijove" "perijoves" ;
-lin apojove_N = mkN "apojove" "apojoves" ;
-lin love_N = mkN "love" "loves" ;
-lin 'light-o\'-love_N' = mkN "light-o'-love" "light-o'-loves" ; -- compound love_N ;
-lin 'cupboard-love_N' = mkN "cupboard-love" "cupboard-loves" ; -- compound love_N ;
-lin 'calf-love_N' = mkN "calf-love" "calf-loves" ; -- compound love_N ;
-lin clove_N = mkN "clove" "cloves" ; -- notcompound love_N ;
-lin truelove_N = mkN "truelove" "trueloves" ; -- compound love_N ;
-lin glove_N = mkN "glove" "gloves" ; -- notcompound love_N ;
-lin 'boxing-glove_N' = mkN "boxing-glove" "boxing-gloves" ; -- compound love_N ;
-lin foxglove_N = mkN "foxglove" "foxgloves" ; -- compound love_N ;
-lin ladylove_N = mkN "ladylove" "ladyloves" ; -- compound love_N ;
-lin move_N = mkN "move" "moves" ;
-lin remove_N = mkN "remove" "removes" ; -- compound move_N ;
-lin groove_N = mkN "groove" "grooves" ;
-lin drove_N = mkN "drove" "droves" ;
-lin grove_N = mkN "grove" "groves" ;
-lin mangrove_N = mkN "mangrove" "mangroves" ; -- compound grove_N ;
-lin trove_N = mkN "trove" "troves" ;
-lin 'treasure-trove_N' = mkN "treasure-trove" "treasure-troves" ; -- compound trove_N ;
-lin stove_N = mkN "stove" "stoves" ;
-lin 'gas-stove_N' = mkN "gas-stove" "gas-stoves" ; -- compound stove_N ;
-lin 'spirit-stove_N' = mkN "spirit-stove" "spirit-stoves" ; -- compound stove_N ;
-lin cookstove_N = mkN "cookstove" "cookstoves" ; -- compound stove_N ;
-lin nerve_N = mkN "nerve" "nerves" ;
-lin serve_N = mkN "serve" "serves" ;
-lin reserve_N = mkN "reserve" "reserves" ; -- compound serve_N ;
-lin preserve_N = mkN "preserve" "preserves" ; -- compound serve_N ;
-lin conserve_N = mkN "conserve" "conserves" ; -- compound serve_N ;
-lin verve_N = mkN "verve" "verves" ;
-lin swerve_N = mkN "swerve" "swerves" ;
-lin curve_N = mkN "curve" "curves" ;
-lin mauve_N = mkN "mauve" "mauves" ;
-lin awe_N = mkN "awe" "awes" ;
-lin ewe_N = mkN "ewe" "ewes" ;
-lin lechwe_N = mkN "lechwe" "lechwes" ;
-lin axe_N = mkN "axe" "axes" ;
-lin 'ice-axe_N' = mkN "ice-axe" "ice-axes" ; -- compound axe_N ;
-lin 'battle-axe_N' = mkN "battle-axe" "battle-axes" ; -- compound axe_N ;
-lin poleaxe_N = mkN "poleaxe" "poleaxes" ; -- compound axe_N ;
-lin pickaxe_N = mkN "pickaxe" "pickaxes" ; -- compound axe_N ;
-lin annexe_N = mkN "annexe" "annexes" ;
-lin dye_N = mkN "dye" "dyes" ;
-lin 'hair-dye_N' = mkN "hair-dye" "hair-dyes" ; -- compound dye_N ;
-lin eye_N = mkN "eye" "eyes" ;
-lin 'bull\'s-eye_N' = mkN "bull's-eye" "bull's-eyes" ; -- compound eye_N ;
-lin deadeye_N = mkN "deadeye" "deadeyes" ; -- compound eye_N ;
-lin redeye_N = mkN "redeye" "redeyes" ; -- compound eye_N ;
-lin bigeye_N = mkN "bigeye" "bigeyes" ; -- compound eye_N ;
-lin sockeye_N = mkN "sockeye" "sockeyes" ; -- compound eye_N ;
-lin buckeye_N = mkN "buckeye" "buckeyes" ; -- compound eye_N ;
-lin walleye_N = mkN "walleye" "walleyes" ; -- compound eye_N ;
-lin goldeneye_N = mkN "goldeneye" "goldeneyes" ; -- compound eye_N ;
-lin greeneye_N = mkN "greeneye" "greeneyes" ; -- compound eye_N ;
-lin shuteye_N = mkN "shuteye" "shuteyes" ; -- compound eye_N ;
-lin oxeye_N = mkN "oxeye" "oxeyes" ; -- compound eye_N ;
-lin lye_N = mkN "lye" "lyes" ;
-lin rye_N = mkN "rye" "ryes" ;
-lin barye_N = mkN "barye" "baryes" ; -- compound rye_N ;
-lin stye_N = mkN "stye" "styes" ;
-lin daze_N = mkN "daze" "dazes" ;
-lin gaze_N = mkN "gaze" "gazes" ;
-lin haze_N = mkN "haze" "hazes" ;
-lin kamikaze_N = mkN "kamikaze" "kamikazes" ;
-lin blaze_N = mkN "blaze" "blazes" ;
-lin glaze_N = mkN "glaze" "glazes" ;
-lin maze_N = mkN "maze" "mazes" ;
-lin craze_N = mkN "craze" "crazes" ;
-lin graze_N = mkN "graze" "grazes" ;
-lin adze_N = mkN "adze" "adzes" ;
-lin wheeze_N = mkN "wheeze" "wheezes" ;
-lin sneeze_N = mkN "sneeze" "sneezes" ;
-lin breeze_N = mkN "breeze" "breezes" ;
-lin 'sea-breeze_N' = mkN "sea-breeze" "sea-breezes" ; -- compound breeze_N ;
-lin freeze_N = mkN "freeze" "freezes" ;
-lin 'wage-freeze_N' = mkN "wage-freeze" "wage-freezes" ; -- compound freeze_N ;
-lin 'deep-freeze_N' = mkN "deep-freeze" "deep-freezes" ; -- compound freeze_N ;
-lin antifreeze_N = mkN "antifreeze" "antifreezes" ; -- compound freeze_N ;
-lin squeeze_N = mkN "squeeze" "squeezes" ;
-lin frieze_N = mkN "frieze" "friezes" ;
-lin trapeze_N = mkN "trapeze" "trapezes" ;
-lin baize_N = mkN "baize" "baizes" ;
-lin maize_N = mkN "maize" "maizes" ;
-lin prize_N = mkN "prize" "prizes" ;
-lin size_N = mkN "size" "sizes" ;
-lin assize_N = mkN "assize" "assizes" ; -- compound size_N ;
-lin outsize_N = mkN "outsize" "outsizes" ; -- compound size_N ;
-lin bronze_N = mkN "bronze" "bronzes" ;
-lin doze_N = mkN "doze" "dozes" ;
-lin ooze_N = mkN "ooze" "oozes" ;
-lin booze_N = mkN "booze" "boozes" ; -- notcompound ooze_N ;
-lin shmooze_N = mkN "shmooze" "shmoozes" ; -- notcompound ooze_N ;
-lin snooze_N = mkN "snooze" "snoozes" ; -- notcompound ooze_N ;
-lin furze_N = mkN "furze" "furzes" ;
-lin gauze_N = mkN "gauze" "gauzes" ;
-lin fuze_N = mkN "fuze" "fuzes" ;
-lin fiancée_N = mkN "fiancée" "fiancées" ;
-lin lycée_N = mkN "lycée" "lycées" ;
-lin protégée_N = mkN "protégée" "protégées" ;
-lin mêlée_N = mkN "mêlée" "mêlées" ;
-lin matinée_N = mkN "matinée" "matinées" ;
-lin épée_N = mkN "épée" "épées" ;
-lin soirée_N = mkN "soirée" "soirées" ;
-lin entrée_N = mkN "entrée" "entrées" ;
-lin purée_N = mkN "purée" "purées" ;
-lin 'arrière pensée_N' = mkN "arrière pensée" "arrière pensées" ;
-lin corvée_N = mkN "corvée" "corvées" ;
-lin sheaf_N = mkN "sheaf" "sheaves" ;
-lin leaf_N = mkN "leaf" "leaves" ;
-lin 'tea-leaf_N' = mkN "tea-leaf" "tea-leaves" ; -- compound leaf_N ;
-lin 'maple-leaf_N' = mkN "maple-leaf" "maple-leaves" ; -- compound leaf_N ;
-lin 'rose-leaf_N' = mkN "rose-leaf" "rose-leaves" ; -- compound leaf_N ;
-lin 'fig-leaf_N' = mkN "fig-leaf" "fig-leaves" ; -- compound leaf_N ;
-lin cloverleaf_N = mkN "cloverleaf" "cloverleaves" ; -- compound leaf_N ;
-lin flyleaf_N = mkN "flyleaf" "flyleaves" ; -- compound leaf_N ;
-lin loaf_N = mkN "loaf" "loaves" ;
-lin deaf_N = mkN "deaf" "deafs" ;
-lin 'gold-leaf_N' = mkN "gold-leaf" "gold-leafs" ;
-lin bloodleaf_N = mkN "bloodleaf" "bloodleafs" ;
-lin satinleaf_N = mkN "satinleaf" "satinleafs" ;
-lin leatherleaf_N = mkN "leatherleaf" "leatherleafs" ;
-lin waterleaf_N = mkN "waterleaf" "waterleafs" ;
-lin interleaf_N = mkN "interleaf" "interleafs" ;
-lin sweetleaf_N = mkN "sweetleaf" "sweetleafs" ;
-lin velvetleaf_N = mkN "velvetleaf" "velvetleafs" ;
-lin heartleaf_N = mkN "heartleaf" "heartleafs" ;
-lin pilaf_N = mkN "pilaf" "pilafs" ;
-lin kenaf_N = mkN "kenaf" "kenafs" ;
-lin oaf_N = mkN "oaf" "oafs" ;
-lin 'sugar-loaf_N' = mkN "sugar-loaf" "sugar-loafs" ; -- compound oaf_N ;
-lin sugarloaf_N = mkN "sugarloaf" "sugarloafs" ; -- compound oaf_N ;
-lin raf_N = mkN "raf" "rafs" ;
-lin daraf_N = mkN "daraf" "darafs" ; -- compound raf_N ;
-lin wraf_N = mkN "wraf" "wrafs" ; -- notcompound raf_N ;
-lin usaf_N = mkN "usaf" "usafs" ;
-lin beef_N = mkN "beef" "beeves" ;
-lin thief_N = mkN "thief" "thieves" ;
-lin 'sneak-thief_N' = mkN "sneak-thief" "sneak-thieves" ; -- compound thief_N ;
-lin reef_N = mkN "reef" "reefs" ;
-lin 'coral-reef_N' = mkN "coral-reef" "coral-reefs" ; -- compound reef_N ;
-lin chef_N = mkN "chef" "chefs" ;
-lin fief_N = mkN "fief" "fiefs" ;
-lin chief_N = mkN "chief" "chiefs" ;
-lin kerchief_N = mkN "kerchief" "kerchiefs" ; -- compound chief_N ;
-lin neckerchief_N = mkN "neckerchief" "neckerchiefs" ; -- compound chief_N ;
-lin handkerchief_N = mkN "handkerchief" "handkerchiefs" ; -- compound chief_N ;
-lin 'pocket-handkerchief_N' = mkN "pocket-handkerchief" "pocket-handkerchiefs" ; -- compound chief_N ;
-lin mischief_N = mkN "mischief" "mischiefs" ; -- compound chief_N ;
-lin belief_N = mkN "belief" "beliefs" ;
-lin unbelief_N = mkN "unbelief" "unbeliefs" ; -- compound belief_N ;
-lin disbelief_N = mkN "disbelief" "disbeliefs" ; -- compound belief_N ;
-lin relief_N = mkN "relief" "reliefs" ;
-lin 'bas-relief_N' = mkN "bas-relief" "bas-reliefs" ; -- compound relief_N ;
-lin 'low-relief_N' = mkN "low-relief" "low-reliefs" ; -- compound relief_N ;
-lin brief_N = mkN "brief" "briefs" ;
-lin grief_N = mkN "grief" "griefs" ;
-lin clef_N = mkN "clef" "clefs" ;
-lin ref_N = mkN "ref" "refs" ;
-lin 'riff-raff_N' = mkN "riff-raff" "riff-rafves" ;
-lin caff_N = mkN "caff" "caffs" ;
-lin gaff_N = mkN "gaff" "gaffs" ;
-lin shandygaff_N = mkN "shandygaff" "shandygaffs" ; -- compound gaff_N ;
-lin chaff_N = mkN "chaff" "chaffs" ;
-lin sclaff_N = mkN "sclaff" "sclaffs" ;
-lin pilaff_N = mkN "pilaff" "pilaffs" ;
-lin staff_N = mkN "staff" "staffs" ;
-lin pikestaff_N = mkN "pikestaff" "pikestaffs" ; -- compound staff_N ;
-lin flagstaff_N = mkN "flagstaff" "flagstaffs" ; -- compound staff_N ;
-lin distaff_N = mkN "distaff" "distaffs" ; -- compound staff_N ;
-lin tipstaff_N = mkN "tipstaff" "tipstaffs" ; -- compound staff_N ;
-lin quarterstaff_N = mkN "quarterstaff" "quarterstaffs" ; -- compound staff_N ;
-lin quaff_N = mkN "quaff" "quaffs" ;
-lin teff_N = mkN "teff" "teffs" ;
-lin biff_N = mkN "biff" "biffs" ;
-lin whiff_N = mkN "whiff" "whiffs" ;
-lin skiff_N = mkN "skiff" "skiffs" ;
-lin cliff_N = mkN "cliff" "cliffs" ;
-lin bailiff_N = mkN "bailiff" "bailiffs" ;
-lin niff_N = mkN "niff" "niffs" ;
-lin sniff_N = mkN "sniff" "sniffs" ; -- notcompound niff_N ;
-lin spiff_N = mkN "spiff" "spiffs" ;
-lin riff_N = mkN "riff" "riffs" ;
-lin tariff_N = mkN "tariff" "tariffs" ; -- compound riff_N ;
-lin midriff_N = mkN "midriff" "midriffs" ; -- compound riff_N ;
-lin sheriff_N = mkN "sheriff" "sheriffs" ; -- compound riff_N ;
-lin tiff_N = mkN "tiff" "tiffs" ;
-lin caitiff_N = mkN "caitiff" "caitiffs" ; -- compound tiff_N ;
-lin plaintiff_N = mkN "plaintiff" "plaintiffs" ; -- compound tiff_N ;
-lin pontiff_N = mkN "pontiff" "pontiffs" ; -- compound tiff_N ;
-lin stiff_N = mkN "stiff" "stiffs" ; -- notcompound tiff_N ;
-lin mastiff_N = mkN "mastiff" "mastiffs" ; -- compound tiff_N ;
-lin quiff_N = mkN "quiff" "quiffs" ;
-lin 'mid-off_N' = mkN "mid-off" "mid-offs" ;
-lin 'rake-off_N' = mkN "rake-off" "rake-offs" ;
-lin 'take-off_N' = mkN "take-off" "take-offs" ;
-lin 'write-off_N' = mkN "write-off" "write-offs" ;
-lin 'brush-off_N' = mkN "brush-off" "brush-offs" ;
-lin 'pull-off_N' = mkN "pull-off" "pull-offs" ;
-lin 'spin-off_N' = mkN "spin-off" "spin-offs" ;
-lin 'turn-off_N' = mkN "turn-off" "turn-offs" ;
-lin 'run-off_N' = mkN "run-off" "run-offs" ;
-lin 'rip-off_N' = mkN "rip-off" "rip-offs" ;
-lin 'tip-off_N' = mkN "tip-off" "tip-offs" ;
-lin 'lift-off_N' = mkN "lift-off" "lift-offs" ;
-lin 'blast-off_N' = mkN "blast-off" "blast-offs" ;
-lin 'show-off_N' = mkN "show-off" "show-offs" ;
-lin 'lay-off_N' = mkN "lay-off" "lay-offs" ;
-lin 'play-off_N' = mkN "play-off" "play-offs" ; -- notcompound 'lay-off_N' ;
-lin scoff_N = mkN "scoff" "scoffs" ;
-lin handoff_N = mkN "handoff" "handoffs" ;
-lin sendoff_N = mkN "sendoff" "sendoffs" ;
-lin tradeoff_N = mkN "tradeoff" "tradeoffs" ;
-lin teeoff_N = mkN "teeoff" "teeoffs" ;
-lin feoff_N = mkN "feoff" "feoffs" ;
-lin takeoff_N = mkN "takeoff" "takeoffs" ;
-lin kickoff_N = mkN "kickoff" "kickoffs" ;
-lin knockoff_N = mkN "knockoff" "knockoffs" ;
-lin selloff_N = mkN "selloff" "selloffs" ;
-lin spinoff_N = mkN "spinoff" "spinoffs" ;
-lin turnoff_N = mkN "turnoff" "turnoffs" ;
-lin runoff_N = mkN "runoff" "runoffs" ;
-lin toff_N = mkN "toff" "toffs" ;
-lin liftoff_N = mkN "liftoff" "liftoffs" ; -- compound toff_N ;
-lin blastoff_N = mkN "blastoff" "blastoffs" ; -- compound toff_N ;
-lin cutoff_N = mkN "cutoff" "cutoffs" ; -- compound toff_N ;
-lin putoff_N = mkN "putoff" "putoffs" ; -- compound toff_N ;
-lin layoff_N = mkN "layoff" "layoffs" ;
-lin playoff_N = mkN "playoff" "playoffs" ; -- notcompound layoff_N ;
-lin payoff_N = mkN "payoff" "payoffs" ;
-lin buff_N = mkN "buff" "buffs" ;
-lin 'blindman\'s buff_N' = mkN "blindman's buff" "blindman's buffs" ; -- compound buff_N ;
-lin rebuff_N = mkN "rebuff" "rebuffs" ; -- compound buff_N ;
-lin cuff_N = mkN "cuff" "cuffs" ;
-lin handcuff_N = mkN "handcuff" "handcuffs" ; -- compound cuff_N ;
-lin scuff_N = mkN "scuff" "scuffs" ; -- notcompound cuff_N ;
-lin duff_N = mkN "duff" "duffs" ;
-lin huff_N = mkN "huff" "huffs" ;
-lin luff_N = mkN "luff" "luffs" ;
-lin bluff_N = mkN "bluff" "bluffs" ; -- notcompound luff_N ;
-lin fluff_N = mkN "fluff" "fluffs" ; -- notcompound luff_N ;
-lin muff_N = mkN "muff" "muffs" ;
-lin earmuff_N = mkN "earmuff" "earmuffs" ; -- compound muff_N ;
-lin snuff_N = mkN "snuff" "snuffs" ;
-lin puff_N = mkN "puff" "puffs" ;
-lin 'powder-puff_N' = mkN "powder-puff" "powder-puffs" ; -- compound puff_N ;
-lin powderpuff_N = mkN "powderpuff" "powderpuffs" ; -- compound puff_N ;
-lin ruff_N = mkN "ruff" "ruffs" ;
-lin scruff_N = mkN "scruff" "scruffs" ; -- notcompound ruff_N ;
-lin dandruff_N = mkN "dandruff" "dandruffs" ; -- compound ruff_N ;
-lin woodruff_N = mkN "woodruff" "woodruffs" ; -- compound ruff_N ;
-lin tuff_N = mkN "tuff" "tuffs" ;
-lin stuff_N = mkN "stuff" "stuffs" ; -- notcompound tuff_N ;
-lin 'sob-stuff_N' = mkN "sob-stuff" "sob-stuffs" ; -- compound tuff_N ;
-lin breadstuff_N = mkN "breadstuff" "breadstuffs" ; -- compound tuff_N ;
-lin foodstuff_N = mkN "foodstuff" "foodstuffs" ; -- compound tuff_N ;
-lin dyestuff_N = mkN "dyestuff" "dyestuffs" ; -- compound tuff_N ;
-lin naif_N = mkN "naif" "naifs" ;
-lin waif_N = mkN "waif" "waifs" ;
-lin mudhif_N = mkN "mudhif" "mudhifs" ;
-lin calif_N = mkN "calif" "califs" ;
-lin gonif_N = mkN "gonif" "gonifs" ;
-lin coif_N = mkN "coif" "coifs" ;
-lin serif_N = mkN "serif" "serifs" ;
-lin massif_N = mkN "massif" "massifs" ;
-lin aperitif_N = mkN "aperitif" "aperitifs" ;
-lin motif_N = mkN "motif" "motifs" ;
-lin calf_N = mkN "calf" "calves" ;
-lin half_N = mkN "half" "halves" ;
-lin behalf_N = mkN "behalf" "behalves" ; -- compound half_N ;
-lin elf_N = mkN "elf" "elves" ;
-lin shelf_N = mkN "shelf" "shelves" ; -- notcompound elf_N ;
-lin self_N = mkN "self" "selves" ; -- notcompound elf_N ;
-lin wolf_N = mkN "wolf" "wolves" ;
-lin werewolf_N = mkN "werewolf" "werewolves" ; -- compound wolf_N ;
-lin delf_N = mkN "delf" "delfs" ;
-lin bookshelf_N = mkN "bookshelf" "bookshelfs" ;
-lin pelf_N = mkN "pelf" "pelfs" ;
-lin golf_N = mkN "golf" "golfs" ;
-lin 'clock-golf_N' = mkN "clock-golf" "clock-golfs" ; -- compound golf_N ;
-lin aardwolf_N = mkN "aardwolf" "aardwolfs" ;
-lin gulf_N = mkN "gulf" "gulfs" ;
-lin imf_N = mkN "imf" "imfs" ;
-lin bumf_N = mkN "bumf" "bumfs" ;
-lin goof_N = mkN "goof" "goofs" ;
-lin hoof_N = mkN "hoof" "hoofs" ;
-lin poof_N = mkN "poof" "poofs" ;
-lin spoof_N = mkN "spoof" "spoofs" ; -- notcompound poof_N ;
-lin roof_N = mkN "roof" "roofs" ;
-lin 'sunshine-roof_N' = mkN "sunshine-roof" "sunshine-roofs" ; -- compound roof_N ;
-lin sunroof_N = mkN "sunroof" "sunroofs" ; -- compound roof_N ;
-lin proof_N = mkN "proof" "proofs" ; -- notcompound roof_N ;
-lin 'galley-proof_N' = mkN "galley-proof" "galley-proofs" ; -- compound roof_N ;
-lin reproof_N = mkN "reproof" "reproofs" ; -- compound roof_N ;
-lin waterproof_N = mkN "waterproof" "waterproofs" ; -- compound roof_N ;
-lin disproof_N = mkN "disproof" "disproofs" ; -- compound roof_N ;
-lin woof_N = mkN "woof" "woofs" ;
-lin scarf_N = mkN "scarf" "scarfs" ;
-lin headscarf_N = mkN "headscarf" "headscarfs" ; -- compound scarf_N ;
-lin wharf_N = mkN "wharf" "wharfs" ;
-lin dwarf_N = mkN "dwarf" "dwarfs" ;
-lin zarf_N = mkN "zarf" "zarfs" ;
-lin serf_N = mkN "serf" "serfs" ;
-lin scurf_N = mkN "scurf" "scurfs" ;
-lin surf_N = mkN "surf" "surfs" ;
-lin turf_N = mkN "turf" "turfs" ;
-lin lilyturf_N = mkN "lilyturf" "lilyturfs" ; -- compound turf_N ;
-lin pouf_N = mkN "pouf" "poufs" ;
-lin shebang_N = mkN "shebang" "IRREG" ;
-lin drubbing_N = mkN "drubbing" "IRREG" ;
-lin wording_N = mkN "wording" "IRREG" ;
-lin offing_N = mkN "offing" "IRREG" ;
-lin licking_N = mkN "licking" "IRREG" ;
-lin asking_N = mkN "asking" "IRREG" ;
-lin twinkling_N = mkN "twinkling" "IRREG" ;
-lin gloaming_N = mkN "gloaming" "IRREG" ;
-lin oncoming_N = mkN "oncoming" "IRREG" ;
-lin strapping_N = mkN "strapping" "IRREG" ;
-lin footing_N = mkN "footing" "IRREG" ;
-lin kg_N = mkN "kg" "kg" ;
-lin mg_N = mkN "mg" "mg" ;
-lin offspring_N = mkN "offspring" "offspring" ;
-lin herring_N = mkN "herring" "herring" ;
-lin 'lady-in-waiting_N' = mkN "lady-in-waiting" "ladies-in-waiting" ;
-lin whiting_N = mkN "whiting" "whiting" ;
-lin mpg_N = mkN "mpg" "mpg" ;
-lin g_N = mkN "g" "gs" ;
-lin bag_N = mkN "bag" "bags" ;
-lin 'tea-bag_N' = mkN "tea-bag" "tea-bags" ; -- compound bag_N ;
-lin 'game-bag_N' = mkN "game-bag" "game-bags" ; -- compound bag_N ;
-lin 'sleeping-bag_N' = mkN "sleeping-bag" "sleeping-bags" ; -- compound bag_N ;
-lin 'carrier-bag_N' = mkN "carrier-bag" "carrier-bags" ; -- compound bag_N ;
-lin fleabag_N = mkN "fleabag" "fleabags" ; -- compound bag_N ;
-lin seabag_N = mkN "seabag" "seabags" ; -- compound bag_N ;
-lin handbag_N = mkN "handbag" "handbags" ; -- compound bag_N ;
-lin sandbag_N = mkN "sandbag" "sandbags" ; -- compound bag_N ;
-lin windbag_N = mkN "windbag" "windbags" ; -- compound bag_N ;
-lin saddlebag_N = mkN "saddlebag" "saddlebags" ; -- compound bag_N ;
-lin gamebag_N = mkN "gamebag" "gamebags" ; -- compound bag_N ;
-lin nosebag_N = mkN "nosebag" "nosebags" ; -- compound bag_N ;
-lin ragbag_N = mkN "ragbag" "ragbags" ; -- compound bag_N ;
-lin workbag_N = mkN "workbag" "workbags" ; -- compound bag_N ;
-lin mailbag_N = mkN "mailbag" "mailbags" ; -- compound bag_N ;
-lin schoolbag_N = mkN "schoolbag" "schoolbags" ; -- compound bag_N ;
-lin beanbag_N = mkN "beanbag" "beanbags" ; -- compound bag_N ;
-lin gasbag_N = mkN "gasbag" "gasbags" ; -- compound bag_N ;
-lin carpetbag_N = mkN "carpetbag" "carpetbags" ; -- compound bag_N ;
-lin kitbag_N = mkN "kitbag" "kitbags" ; -- compound bag_N ;
-lin postbag_N = mkN "postbag" "postbags" ; -- compound bag_N ;
-lin moneybag_N = mkN "moneybag" "moneybags" ; -- compound bag_N ;
-lin fag_N = mkN "fag" "fags" ;
-lin 'brain-fag_N' = mkN "brain-fag" "brain-fags" ; -- compound fag_N ;
-lin gag_N = mkN "gag" "gags" ;
-lin hag_N = mkN "hag" "hags" ;
-lin shag_N = mkN "shag" "shags" ; -- notcompound hag_N ;
-lin jag_N = mkN "jag" "jags" ;
-lin lag_N = mkN "lag" "lags" ;
-lin 'time-lag_N' = mkN "time-lag" "time-lags" ; -- compound lag_N ;
-lin flag_N = mkN "flag" "flags" ; -- notcompound lag_N ;
-lin 'yellow-flag_N' = mkN "yellow-flag" "yellow-flags" ; -- compound lag_N ;
-lin slag_N = mkN "slag" "slags" ; -- notcompound lag_N ;
-lin gulag_N = mkN "gulag" "gulags" ; -- compound lag_N ;
-lin greylag_N = mkN "greylag" "greylags" ; -- compound lag_N ;
-lin mag_N = mkN "mag" "mags" ;
-lin nag_N = mkN "nag" "nags" ;
-lin snag_N = mkN "snag" "snags" ; -- notcompound nag_N ;
-lin rag_N = mkN "rag" "rags" ;
-lin brag_N = mkN "brag" "brags" ; -- notcompound rag_N ;
-lin crag_N = mkN "crag" "crags" ; -- notcompound rag_N ;
-lin scrag_N = mkN "scrag" "scrags" ; -- notcompound rag_N ;
-lin drag_N = mkN "drag" "drags" ; -- notcompound rag_N ;
-lin dishrag_N = mkN "dishrag" "dishrags" ; -- compound rag_N ;
-lin sprag_N = mkN "sprag" "sprags" ; -- notcompound rag_N ;
-lin sag_N = mkN "sag" "sags" ;
-lin tag_N = mkN "tag" "tags" ;
-lin ragtag_N = mkN "ragtag" "ragtags" ; -- compound tag_N ;
-lin stag_N = mkN "stag" "stags" ; -- notcompound tag_N ;
-lin wag_N = mkN "wag" "wags" ;
-lin scalawag_N = mkN "scalawag" "scalawags" ; -- compound wag_N ;
-lin swag_N = mkN "swag" "swags" ; -- notcompound wag_N ;
-lin scallywag_N = mkN "scallywag" "scallywags" ; -- compound wag_N ;
-lin zigzag_N = mkN "zigzag" "zigzags" ;
-lin eeg_N = mkN "eeg" "eegs" ;
-lin keg_N = mkN "keg" "kegs" ;
-lin skeg_N = mkN "skeg" "skegs" ; -- notcompound keg_N ;
-lin leg_N = mkN "leg" "legs" ;
-lin foreleg_N = mkN "foreleg" "forelegs" ; -- compound leg_N ;
-lin dogleg_N = mkN "dogleg" "doglegs" ; -- compound leg_N ;
-lin blackleg_N = mkN "blackleg" "blacklegs" ; -- compound leg_N ;
-lin bootleg_N = mkN "bootleg" "bootlegs" ; -- compound leg_N ;
-lin bowleg_N = mkN "bowleg" "bowlegs" ; -- compound leg_N ;
-lin nutmeg_N = mkN "nutmeg" "nutmegs" ;
-lin peg_N = mkN "peg" "pegs" ;
-lin 'clothes-peg_N' = mkN "clothes-peg" "clothes-pegs" ; -- compound peg_N ;
-lin 'tent-peg_N' = mkN "tent-peg" "tent-pegs" ; -- compound peg_N ;
-lin dreg_N = mkN "dreg" "dregs" ;
-lin teg_N = mkN "teg" "tegs" ;
-lin thalweg_N = mkN "thalweg" "thalwegs" ;
-lin egg_N = mkN "egg" "eggs" ;
-lin 'nest-egg_N' = mkN "nest-egg" "nest-eggs" ; -- compound egg_N ;
-lin glogg_N = mkN "glogg" "gloggs" ;
-lin dig_N = mkN "dig" "digs" ;
-lin shindig_N = mkN "shindig" "shindigs" ; -- compound dig_N ;
-lin fig_N = mkN "fig" "figs" ;
-lin caprifig_N = mkN "caprifig" "caprifigs" ; -- compound fig_N ;
-lin gig_N = mkN "gig" "gigs" ;
-lin whirligig_N = mkN "whirligig" "whirligigs" ; -- compound gig_N ;
-lin fizgig_N = mkN "fizgig" "fizgigs" ; -- compound gig_N ;
-lin whig_N = mkN "whig" "whigs" ;
-lin jig_N = mkN "jig" "jigs" ;
-lin thingmajig_N = mkN "thingmajig" "thingmajigs" ; -- compound jig_N ;
-lin thingumajig_N = mkN "thingumajig" "thingumajigs" ; -- compound jig_N ;
-lin pfennig_N = mkN "pfennig" "pfennigs" ;
-lin pig_N = mkN "pig" "pigs" ;
-lin 'guinea-pig_N' = mkN "guinea-pig" "guinea-pigs" ; -- compound pig_N ;
-lin 'sucking-pig_N' = mkN "sucking-pig" "sucking-pigs" ; -- compound pig_N ;
-lin rig_N = mkN "rig" "rigs" ;
-lin 'oil-rig_N' = mkN "oil-rig" "oil-rigs" ; -- compound rig_N ;
-lin brig_N = mkN "brig" "brigs" ; -- notcompound rig_N ;
-lin prig_N = mkN "prig" "prigs" ; -- notcompound rig_N ;
-lin sprig_N = mkN "sprig" "sprigs" ; -- notcompound rig_N ;
-lin wig_N = mkN "wig" "wigs" ;
-lin 'afro-wig_N' = mkN "afro-wig" "afro-wigs" ; -- compound wig_N ;
-lin bigwig_N = mkN "bigwig" "bigwigs" ; -- compound wig_N ;
-lin periwig_N = mkN "periwig" "periwigs" ; -- compound wig_N ;
-lin earwig_N = mkN "earwig" "earwigs" ; -- compound wig_N ;
-lin swig_N = mkN "swig" "swigs" ; -- notcompound wig_N ;
-lin twig_N = mkN "twig" "twigs" ; -- notcompound wig_N ;
-lin bang_N = mkN "bang" "bangs" ;
-lin whizbang_N = mkN "whizbang" "whizbangs" ; -- compound bang_N ;
-lin fang_N = mkN "fang" "fangs" ;
-lin gang_N = mkN "gang" "gangs" ;
-lin 'chain-gang_N' = mkN "chain-gang" "chain-gangs" ; -- compound gang_N ;
-lin 'press-gang_N' = mkN "press-gang" "press-gangs" ; -- compound gang_N ;
-lin hang_N = mkN "hang" "hangs" ;
-lin bhang_N = mkN "bhang" "bhangs" ; -- notcompound hang_N ;
-lin overhang_N = mkN "overhang" "overhangs" ; -- compound hang_N ;
-lin whang_N = mkN "whang" "whangs" ; -- notcompound hang_N ;
-lin kiang_N = mkN "kiang" "kiangs" ;
-lin kaoliang_N = mkN "kaoliang" "kaoliangs" ;
-lin clang_N = mkN "clang" "clangs" ;
-lin slang_N = mkN "slang" "slangs" ;
-lin siamang_N = mkN "siamang" "siamangs" ;
-lin pang_N = mkN "pang" "pangs" ;
-lin trepang_N = mkN "trepang" "trepangs" ; -- compound pang_N ;
-lin kalumpang_N = mkN "kalumpang" "kalumpangs" ; -- compound pang_N ;
-lin marang_N = mkN "marang" "marangs" ;
-lin parang_N = mkN "parang" "parangs" ;
-lin boomerang_N = mkN "boomerang" "boomerangs" ;
-lin prang_N = mkN "prang" "prangs" ;
-lin sprechgesang_N = mkN "sprechgesang" "sprechgesangs" ;
-lin tang_N = mkN "tang" "tangs" ;
-lin satang_N = mkN "satang" "satangs" ; -- compound tang_N ;
-lin mustang_N = mkN "mustang" "mustangs" ; -- compound tang_N ;
-lin 'orang-outang_N' = mkN "orang-outang" "orang-outangs" ; -- compound tang_N ;
-lin mahuang_N = mkN "mahuang" "mahuangs" ;
-lin twang_N = mkN "twang" "twangs" ;
-lin yang_N = mkN "yang" "yangs" ;
-lin ginseng_N = mkN "ginseng" "ginsengs" ;
-lin banteng_N = mkN "banteng" "bantengs" ;
-lin mayeng_N = mkN "mayeng" "mayengs" ;
-lin swabbing_N = mkN "swabbing" "swabbings" ;
-lin webbing_N = mkN "webbing" "webbings" ;
-lin fibbing_N = mkN "fibbing" "fibbings" ;
-lin ribbing_N = mkN "ribbing" "ribbings" ;
-lin throbbing_N = mkN "throbbing" "throbbings" ;
-lin dubbing_N = mkN "dubbing" "dubbings" ;
-lin clubbing_N = mkN "clubbing" "clubbings" ;
-lin rubbing_N = mkN "rubbing" "rubbings" ;
-lin subbing_N = mkN "subbing" "subbings" ;
-lin 'rock-climbing_N' = mkN "rock-climbing" "rock-climbings" ;
-lin bombing_N = mkN "bombing" "bombings" ;
-lin plumbing_N = mkN "plumbing" "plumbings" ;
-lin tubing_N = mkN "tubing" "tubings" ;
-lin facing_N = mkN "facing" "facings" ;
-lin surfacing_N = mkN "surfacing" "surfacings" ; -- compound facing_N ;
-lin lacing_N = mkN "lacing" "lacings" ;
-lin placing_N = mkN "placing" "placings" ; -- notcompound lacing_N ;
-lin pacing_N = mkN "pacing" "pacings" ;
-lin spacing_N = mkN "spacing" "spacings" ; -- notcompound pacing_N ;
-lin 'double-spacing_N' = mkN "double-spacing" "double-spacings" ; -- compound pacing_N ;
-lin 'single-spacing_N' = mkN "single-spacing" "single-spacings" ; -- compound pacing_N ;
-lin racing_N = mkN "racing" "racings" ;
-lin horseracing_N = mkN "horseracing" "horseracings" ; -- compound racing_N ;
-lin tracing_N = mkN "tracing" "tracings" ; -- notcompound racing_N ;
-lin icing_N = mkN "icing" "icings" ;
-lin slicing_N = mkN "slicing" "slicings" ; -- notcompound icing_N ;
-lin rejoicing_N = mkN "rejoicing" "rejoicings" ; -- compound icing_N ;
-lin voicing_N = mkN "voicing" "voicings" ; -- compound icing_N ;
-lin pricing_N = mkN "pricing" "pricings" ; -- notcompound icing_N ;
-lin servicing_N = mkN "servicing" "servicings" ; -- compound icing_N ;
-lin dancing_N = mkN "dancing" "dancings" ;
-lin 'tap-dancing_N' = mkN "tap-dancing" "tap-dancings" ; -- compound dancing_N ;
-lin financing_N = mkN "financing" "financings" ;
-lin fencing_N = mkN "fencing" "fencings" ;
-lin trouncing_N = mkN "trouncing" "trouncings" ;
-lin adducing_N = mkN "adducing" "adducings" ;
-lin reducing_N = mkN "reducing" "reducings" ;
-lin ding_N = mkN "ding" "dings" ;
-lin beading_N = mkN "beading" "beadings" ; -- compound ding_N ;
-lin heading_N = mkN "heading" "headings" ; -- compound ding_N ;
-lin 'cross-heading_N' = mkN "cross-heading" "cross-headings" ; -- compound ding_N ;
-lin subheading_N = mkN "subheading" "subheadings" ; -- compound ding_N ;
-lin crossheading_N = mkN "crossheading" "crossheadings" ; -- compound ding_N ;
-lin leading_N = mkN "leading" "leadings" ; -- compound ding_N ;
-lin pleading_N = mkN "pleading" "pleadings" ; -- compound ding_N ;
-lin reading_N = mkN "reading" "readings" ; -- compound ding_N ;
-lin 'lip-reading_N' = mkN "lip-reading" "lip-readings" ; -- compound ding_N ;
-lin 'play-reading_N' = mkN "play-reading" "play-readings" ; -- compound ding_N ;
-lin lipreading_N = mkN "lipreading" "lipreadings" ; -- compound ding_N ;
-lin misreading_N = mkN "misreading" "misreadings" ; -- compound ding_N ;
-lin shading_N = mkN "shading" "shadings" ; -- compound ding_N ;
-lin lading_N = mkN "lading" "ladings" ; -- compound ding_N ;
-lin rollerblading_N = mkN "rollerblading" "rollerbladings" ; -- compound ding_N ;
-lin loading_N = mkN "loading" "loadings" ; -- compound ding_N ;
-lin unloading_N = mkN "unloading" "unloadings" ; -- compound ding_N ;
-lin grading_N = mkN "grading" "gradings" ; -- compound ding_N ;
-lin trading_N = mkN "trading" "tradings" ; -- compound ding_N ;
-lin wading_N = mkN "wading" "wadings" ; -- compound ding_N ;
-lin padding_N = mkN "padding" "paddings" ; -- compound ding_N ;
-lin wadding_N = mkN "wadding" "waddings" ; -- compound ding_N ;
-lin bedding_N = mkN "bedding" "beddings" ; -- compound ding_N ;
-lin featherbedding_N = mkN "featherbedding" "featherbeddings" ; -- compound ding_N ;
-lin shedding_N = mkN "shedding" "sheddings" ; -- compound ding_N ;
-lin 'load-shedding_N' = mkN "load-shedding" "load-sheddings" ; -- compound ding_N ;
-lin sledding_N = mkN "sledding" "sleddings" ; -- compound ding_N ;
-lin bobsledding_N = mkN "bobsledding" "bobsleddings" ; -- compound ding_N ;
-lin wedding_N = mkN "wedding" "weddings" ; -- compound ding_N ;
-lin bidding_N = mkN "bidding" "biddings" ; -- compound ding_N ;
-lin plodding_N = mkN "plodding" "ploddings" ; -- compound ding_N ;
-lin budding_N = mkN "budding" "buddings" ; -- compound ding_N ;
-lin pudding_N = mkN "pudding" "puddings" ; -- compound ding_N ;
-lin 'pease-pudding_N' = mkN "pease-pudding" "pease-puddings" ; -- compound ding_N ;
-lin 'plum-pudding_N' = mkN "plum-pudding" "plum-puddings" ; -- compound ding_N ;
-lin receding_N = mkN "receding" "recedings" ; -- compound ding_N ;
-lin proceeding_N = mkN "proceeding" "proceedings" ; -- compound ding_N ;
-lin feeding_N = mkN "feeding" "feedings" ; -- compound ding_N ;
-lin spoonfeeding_N = mkN "spoonfeeding" "spoonfeedings" ; -- compound ding_N ;
-lin overfeeding_N = mkN "overfeeding" "overfeedings" ; -- compound ding_N ;
-lin bleeding_N = mkN "bleeding" "bleedings" ; -- compound ding_N ;
-lin speeding_N = mkN "speeding" "speedings" ; -- compound ding_N ;
-lin breeding_N = mkN "breeding" "breedings" ; -- compound ding_N ;
-lin 'ill-breeding_N' = mkN "ill-breeding" "ill-breedings" ; -- compound ding_N ;
-lin inbreeding_N = mkN "inbreeding" "inbreedings" ; -- compound ding_N ;
-lin upbraiding_N = mkN "upbraiding" "upbraidings" ; -- compound ding_N ;
-lin hiding_N = mkN "hiding" "hidings" ; -- compound ding_N ;
-lin chiding_N = mkN "chiding" "chidings" ; -- compound ding_N ;
-lin gliding_N = mkN "gliding" "glidings" ; -- compound ding_N ;
-lin backsliding_N = mkN "backsliding" "backslidings" ; -- compound ding_N ;
-lin pyramiding_N = mkN "pyramiding" "pyramidings" ; -- compound ding_N ;
-lin riding_N = mkN "riding" "ridings" ; -- compound ding_N ;
-lin surfriding_N = mkN "surfriding" "surfridings" ; -- compound ding_N ;
-lin siding_N = mkN "siding" "sidings" ; -- compound ding_N ;
-lin gelding_N = mkN "gelding" "geldings" ; -- compound ding_N ;
-lin fielding_N = mkN "fielding" "fieldings" ; -- compound ding_N ;
-lin shielding_N = mkN "shielding" "shieldings" ; -- compound ding_N ;
-lin welding_N = mkN "welding" "weldings" ; -- compound ding_N ;
-lin gilding_N = mkN "gilding" "gildings" ; -- compound ding_N ;
-lin building_N = mkN "building" "buildings" ; -- compound ding_N ;
-lin 'jerry-building_N' = mkN "jerry-building" "jerry-buildings" ; -- compound ding_N ;
-lin rebuilding_N = mkN "rebuilding" "rebuildings" ; -- compound ding_N ;
-lin shipbuilding_N = mkN "shipbuilding" "shipbuildings" ; -- compound ding_N ;
-lin outbuilding_N = mkN "outbuilding" "outbuildings" ; -- compound ding_N ;
-lin bodybuilding_N = mkN "bodybuilding" "bodybuildings" ; -- compound ding_N ;
-lin wilding_N = mkN "wilding" "wildings" ; -- compound ding_N ;
-lin scolding_N = mkN "scolding" "scoldings" ; -- compound ding_N ;
-lin scaffolding_N = mkN "scaffolding" "scaffoldings" ; -- compound ding_N ;
-lin unfolding_N = mkN "unfolding" "unfoldings" ; -- compound ding_N ;
-lin holding_N = mkN "holding" "holdings" ; -- compound ding_N ;
-lin landholding_N = mkN "landholding" "landholdings" ; -- compound ding_N ;
-lin shareholding_N = mkN "shareholding" "shareholdings" ; -- compound ding_N ;
-lin withholding_N = mkN "withholding" "withholdings" ; -- compound ding_N ;
-lin stockholding_N = mkN "stockholding" "stockholdings" ; -- compound ding_N ;
-lin smallholding_N = mkN "smallholding" "smallholdings" ; -- compound ding_N ;
-lin molding_N = mkN "molding" "moldings" ; -- compound ding_N ;
-lin moulding_N = mkN "moulding" "mouldings" ; -- compound ding_N ;
-lin landing_N = mkN "landing" "landings" ; -- compound ding_N ;
-lin 'crash-landing_N' = mkN "crash-landing" "crash-landings" ; -- compound ding_N ;
-lin standing_N = mkN "standing" "standings" ; -- compound ding_N ;
-lin understanding_N = mkN "understanding" "understandings" ; -- compound ding_N ;
-lin misunderstanding_N = mkN "misunderstanding" "misunderstandings" ; -- compound ding_N ;
-lin ending_N = mkN "ending" "endings" ; -- compound ding_N ;
-lin bending_N = mkN "bending" "bendings" ; -- compound ding_N ;
-lin lending_N = mkN "lending" "lendings" ; -- compound ding_N ;
-lin mending_N = mkN "mending" "mendings" ; -- compound ding_N ;
-lin spending_N = mkN "spending" "spendings" ; -- compound ding_N ;
-lin expending_N = mkN "expending" "expendings" ; -- compound ding_N ;
-lin sending_N = mkN "sending" "sendings" ; -- compound ding_N ;
-lin vending_N = mkN "vending" "vendings" ; -- compound ding_N ;
-lin binding_N = mkN "binding" "bindings" ; -- compound ding_N ;
-lin bookbinding_N = mkN "bookbinding" "bookbindings" ; -- compound ding_N ;
-lin finding_N = mkN "finding" "findings" ; -- compound ding_N ;
-lin 'fault-finding_N' = mkN "fault-finding" "fault-findings" ; -- compound ding_N ;
-lin faultfinding_N = mkN "faultfinding" "faultfindings" ; -- compound ding_N ;
-lin grinding_N = mkN "grinding" "grindings" ; -- compound ding_N ;
-lin bonding_N = mkN "bonding" "bondings" ; -- compound ding_N ;
-lin pounding_N = mkN "pounding" "poundings" ; -- compound ding_N ;
-lin rounding_N = mkN "rounding" "roundings" ; -- compound ding_N ;
-lin grounding_N = mkN "grounding" "groundings" ; -- compound ding_N ;
-lin sounding_N = mkN "sounding" "soundings" ; -- compound ding_N ;
-lin 'echo-sounding_N' = mkN "echo-sounding" "echo-soundings" ; -- compound ding_N ;
-lin boding_N = mkN "boding" "bodings" ; -- compound ding_N ;
-lin foreboding_N = mkN "foreboding" "forebodings" ; -- compound ding_N ;
-lin decoding_N = mkN "decoding" "decodings" ; -- compound ding_N ;
-lin recoding_N = mkN "recoding" "recodings" ; -- compound ding_N ;
-lin encoding_N = mkN "encoding" "encodings" ; -- compound ding_N ;
-lin brooding_N = mkN "brooding" "broodings" ; -- compound ding_N ;
-lin boarding_N = mkN "boarding" "boardings" ; -- compound ding_N ;
-lin skateboarding_N = mkN "skateboarding" "skateboardings" ; -- compound ding_N ;
-lin weatherboarding_N = mkN "weatherboarding" "weatherboardings" ; -- compound ding_N ;
-lin snowboarding_N = mkN "snowboarding" "snowboardings" ; -- compound ding_N ;
-lin hoarding_N = mkN "hoarding" "hoardings" ; -- compound ding_N ;
-lin forwarding_N = mkN "forwarding" "forwardings" ; -- compound ding_N ;
-lin recording_N = mkN "recording" "recordings" ; -- compound ding_N ;
-lin 'sound-recording_N' = mkN "sound-recording" "sound-recordings" ; -- compound ding_N ;
-lin rewording_N = mkN "rewording" "rewordings" ; -- compound ding_N ;
-lin clouding_N = mkN "clouding" "cloudings" ; -- compound ding_N ;
-lin crowding_N = mkN "crowding" "crowdings" ; -- compound ding_N ;
-lin being_N = mkN "being" "beings" ;
-lin 'well-being_N' = mkN "well-being" "well-beings" ; -- compound being_N ;
-lin wellbeing_N = mkN "wellbeing" "wellbeings" ; -- compound being_N ;
-lin nonbeing_N = mkN "nonbeing" "nonbeings" ; -- compound being_N ;
-lin peeing_N = mkN "peeing" "peeings" ;
-lin sightseeing_N = mkN "sightseeing" "sightseeings" ;
-lin ageing_N = mkN "ageing" "ageings" ;
-lin dyeing_N = mkN "dyeing" "dyeings" ;
-lin chafing_N = mkN "chafing" "chafings" ;
-lin briefing_N = mkN "briefing" "briefings" ;
-lin debriefing_N = mkN "debriefing" "debriefings" ; -- compound briefing_N ;
-lin puffing_N = mkN "puffing" "puffings" ;
-lin stuffing_N = mkN "stuffing" "stuffings" ;
-lin golfing_N = mkN "golfing" "golfings" ;
-lin roofing_N = mkN "roofing" "roofings" ;
-lin waterproofing_N = mkN "waterproofing" "waterproofings" ; -- compound roofing_N ;
-lin surfing_N = mkN "surfing" "surfings" ;
-lin aging_N = mkN "aging" "agings" ;
-lin packaging_N = mkN "packaging" "packagings" ; -- compound aging_N ;
-lin imaging_N = mkN "imaging" "imagings" ; -- compound aging_N ;
-lin paging_N = mkN "paging" "pagings" ; -- notcompound aging_N ;
-lin foraging_N = mkN "foraging" "foragings" ; -- compound aging_N ;
-lin messaging_N = mkN "messaging" "messagings" ; -- compound aging_N ;
-lin staging_N = mkN "staging" "stagings" ; -- notcompound aging_N ;
-lin ravaging_N = mkN "ravaging" "ravagings" ; -- compound aging_N ;
-lin edging_N = mkN "edging" "edgings" ;
-lin lodging_N = mkN "lodging" "lodgings" ;
-lin shagging_N = mkN "shagging" "shaggings" ;
-lin lagging_N = mkN "lagging" "laggings" ;
-lin flagging_N = mkN "flagging" "flaggings" ; -- notcompound lagging_N ;
-lin bragging_N = mkN "bragging" "braggings" ;
-lin 'chin-wagging_N' = mkN "chin-wagging" "chin-waggings" ;
-lin legging_N = mkN "legging" "leggings" ;
-lin bootlegging_N = mkN "bootlegging" "bootleggings" ; -- compound legging_N ;
-lin digging_N = mkN "digging" "diggings" ;
-lin rigging_N = mkN "rigging" "riggings" ;
-lin wigging_N = mkN "wigging" "wiggings" ;
-lin jogging_N = mkN "jogging" "joggings" ;
-lin logging_N = mkN "logging" "loggings" ;
-lin flogging_N = mkN "flogging" "floggings" ; -- notcompound logging_N ;
-lin nogging_N = mkN "nogging" "noggings" ;
-lin snogging_N = mkN "snogging" "snoggings" ; -- notcompound nogging_N ;
-lin mugging_N = mkN "mugging" "muggings" ;
-lin banging_N = mkN "banging" "bangings" ;
-lin hanging_N = mkN "hanging" "hangings" ;
-lin slinging_N = mkN "slinging" "slingings" ;
-lin ringing_N = mkN "ringing" "ringings" ;
-lin upbringing_N = mkN "upbringing" "upbringings" ; -- compound ringing_N ;
-lin singing_N = mkN "singing" "singings" ;
-lin 'part-singing_N' = mkN "part-singing" "part-singings" ; -- compound singing_N ;
-lin longing_N = mkN "longing" "longings" ;
-lin belonging_N = mkN "belonging" "belongings" ; -- compound longing_N ;
-lin merging_N = mkN "merging" "mergings" ;
-lin forging_N = mkN "forging" "forgings" ;
-lin urging_N = mkN "urging" "urgings" ;
-lin luging_N = mkN "luging" "lugings" ;
-lin teaching_N = mkN "teaching" "teachings" ;
-lin coaching_N = mkN "coaching" "coachings" ;
-lin poaching_N = mkN "poaching" "poachings" ;
-lin belching_N = mkN "belching" "belchings" ;
-lin ranching_N = mkN "ranching" "ranchings" ;
-lin branching_N = mkN "branching" "branchings" ; -- notcompound ranching_N ;
-lin drenching_N = mkN "drenching" "drenchings" ;
-lin launching_N = mkN "launching" "launchings" ;
-lin lunching_N = mkN "lunching" "lunchings" ;
-lin lynching_N = mkN "lynching" "lynchings" ;
-lin catching_N = mkN "catching" "catchings" ;
-lin hatching_N = mkN "hatching" "hatchings" ;
-lin patching_N = mkN "patching" "patchings" ;
-lin 'fire-watching_N' = mkN "fire-watching" "fire-watchings" ;
-lin 'clock-watching_N' = mkN "clock-watching" "clock-watchings" ;
-lin etching_N = mkN "etching" "etchings" ;
-lin stretching_N = mkN "stretching" "stretchings" ; -- notcompound etching_N ;
-lin pitching_N = mkN "pitching" "pitchings" ;
-lin witching_N = mkN "witching" "witchings" ;
-lin 'square-bashing_N' = mkN "square-bashing" "square-bashings" ;
-lin lashing_N = mkN "lashing" "lashings" ;
-lin flashing_N = mkN "flashing" "flashings" ; -- notcompound lashing_N ;
-lin smashing_N = mkN "smashing" "smashings" ;
-lin thrashing_N = mkN "thrashing" "thrashings" ;
-lin washing_N = mkN "washing" "washings" ;
-lin dishwashing_N = mkN "dishwashing" "dishwashings" ; -- compound washing_N ;
-lin brainwashing_N = mkN "brainwashing" "brainwashings" ; -- compound washing_N ;
-lin threshing_N = mkN "threshing" "threshings" ;
-lin rubbishing_N = mkN "rubbishing" "rubbishings" ;
-lin fishing_N = mkN "fishing" "fishings" ;
-lin 'fly-fishing_N' = mkN "fly-fishing" "fly-fishings" ; -- compound fishing_N ;
-lin vanishing_N = mkN "vanishing" "vanishings" ;
-lin furnishing_N = mkN "furnishing" "furnishings" ;
-lin bushing_N = mkN "bushing" "bushings" ;
-lin thing_N = mkN "thing" "things" ;
-lin bathing_N = mkN "bathing" "bathings" ; -- compound thing_N ;
-lin 'sea-bathing_N' = mkN "sea-bathing" "sea-bathings" ; -- compound thing_N ;
-lin sheathing_N = mkN "sheathing" "sheathings" ; -- compound thing_N ;
-lin breathing_N = mkN "breathing" "breathings" ; -- compound thing_N ;
-lin loathing_N = mkN "loathing" "loathings" ; -- compound thing_N ;
-lin swathing_N = mkN "swathing" "swathings" ; -- compound thing_N ;
-lin teething_N = mkN "teething" "teethings" ; -- compound thing_N ;
-lin clothing_N = mkN "clothing" "clothings" ; -- compound thing_N ;
-lin underclothing_N = mkN "underclothing" "underclothings" ; -- compound thing_N ;
-lin nothing_N = mkN "nothing" "nothings" ; -- compound thing_N ;
-lin 'good-for-nothing_N' = mkN "good-for-nothing" "good-for-nothings" ; -- compound thing_N ;
-lin farthing_N = mkN "farthing" "farthings" ; -- compound thing_N ;
-lin plaything_N = mkN "plaything" "playthings" ; -- compound thing_N ;
-lin skiing_N = mkN "skiing" "skiings" ;
-lin 'water-skiing_N' = mkN "water-skiing" "water-skiings" ; -- compound skiing_N ;
-lin king_N = mkN "king" "kings" ;
-lin baking_N = mkN "baking" "bakings" ; -- compound king_N ;
-lin speaking_N = mkN "speaking" "speakings" ; -- compound king_N ;
-lin 'prison-breaking_N' = mkN "prison-breaking" "prison-breakings" ; -- compound king_N ;
-lin groundbreaking_N = mkN "groundbreaking" "groundbreakings" ; -- compound king_N ;
-lin strikebreaking_N = mkN "strikebreaking" "strikebreakings" ; -- compound king_N ;
-lin housebreaking_N = mkN "housebreaking" "housebreakings" ; -- compound king_N ;
-lin shaking_N = mkN "shaking" "shakings" ; -- compound king_N ;
-lin handshaking_N = mkN "handshaking" "handshakings" ; -- compound king_N ;
-lin making_N = mkN "making" "makings" ; -- compound king_N ;
-lin 'mischief-making_N' = mkN "mischief-making" "mischief-makings" ; -- compound king_N ;
-lin moviemaking_N = mkN "moviemaking" "moviemakings" ; -- compound king_N ;
-lin homemaking_N = mkN "homemaking" "homemakings" ; -- compound king_N ;
-lin winemaking_N = mkN "winemaking" "winemakings" ; -- compound king_N ;
-lin shoemaking_N = mkN "shoemaking" "shoemakings" ; -- compound king_N ;
-lin lovemaking_N = mkN "lovemaking" "lovemakings" ; -- compound king_N ;
-lin matchmaking_N = mkN "matchmaking" "matchmakings" ; -- compound king_N ;
-lin rainmaking_N = mkN "rainmaking" "rainmakings" ; -- compound king_N ;
-lin mapmaking_N = mkN "mapmaking" "mapmakings" ; -- compound king_N ;
-lin papermaking_N = mkN "papermaking" "papermakings" ; -- compound king_N ;
-lin dressmaking_N = mkN "dressmaking" "dressmakings" ; -- compound king_N ;
-lin cabinetmaking_N = mkN "cabinetmaking" "cabinetmakings" ; -- compound king_N ;
-lin printmaking_N = mkN "printmaking" "printmakings" ; -- compound king_N ;
-lin lawmaking_N = mkN "lawmaking" "lawmakings" ; -- compound king_N ;
-lin haymaking_N = mkN "haymaking" "haymakings" ; -- compound king_N ;
-lin moneymaking_N = mkN "moneymaking" "moneymakings" ; -- compound king_N ;
-lin merrymaking_N = mkN "merrymaking" "merrymakings" ; -- compound king_N ;
-lin muckraking_N = mkN "muckraking" "muckrakings" ; -- compound king_N ;
-lin forsaking_N = mkN "forsaking" "forsakings" ; -- compound king_N ;
-lin 'leave-taking_N' = mkN "leave-taking" "leave-takings" ; -- compound king_N ;
-lin stocktaking_N = mkN "stocktaking" "stocktakings" ; -- compound king_N ;
-lin undertaking_N = mkN "undertaking" "undertakings" ; -- compound king_N ;
-lin waking_N = mkN "waking" "wakings" ; -- compound king_N ;
-lin backing_N = mkN "backing" "backings" ; -- compound king_N ;
-lin whacking_N = mkN "whacking" "whackings" ; -- compound king_N ;
-lin highjacking_N = mkN "highjacking" "highjackings" ; -- compound king_N ;
-lin carjacking_N = mkN "carjacking" "carjackings" ; -- compound king_N ;
-lin blacking_N = mkN "blacking" "blackings" ; -- compound king_N ;
-lin smacking_N = mkN "smacking" "smackings" ; -- compound king_N ;
-lin packing_N = mkN "packing" "packings" ; -- compound king_N ;
-lin meatpacking_N = mkN "meatpacking" "meatpackings" ; -- compound king_N ;
-lin cracking_N = mkN "cracking" "crackings" ; -- compound king_N ;
-lin hydrocracking_N = mkN "hydrocracking" "hydrocrackings" ; -- compound king_N ;
-lin barracking_N = mkN "barracking" "barrackings" ; -- compound king_N ;
-lin sacking_N = mkN "sacking" "sackings" ; -- compound king_N ;
-lin ransacking_N = mkN "ransacking" "ransackings" ; -- compound king_N ;
-lin hopsacking_N = mkN "hopsacking" "hopsackings" ; -- compound king_N ;
-lin picking_N = mkN "picking" "pickings" ; -- compound king_N ;
-lin pricking_N = mkN "pricking" "prickings" ; -- compound king_N ;
-lin ticking_N = mkN "ticking" "tickings" ; -- compound king_N ;
-lin 'pig-sticking_N' = mkN "pig-sticking" "pig-stickings" ; -- compound king_N ;
-lin pigsticking_N = mkN "pigsticking" "pigstickings" ; -- compound king_N ;
-lin docking_N = mkN "docking" "dockings" ; -- compound king_N ;
-lin locking_N = mkN "locking" "lockings" ; -- compound king_N ;
-lin blocking_N = mkN "blocking" "blockings" ; -- compound king_N ;
-lin clocking_N = mkN "clocking" "clockings" ; -- compound king_N ;
-lin smocking_N = mkN "smocking" "smockings" ; -- compound king_N ;
-lin stocking_N = mkN "stocking" "stockings" ; -- compound king_N ;
-lin bluestocking_N = mkN "bluestocking" "bluestockings" ; -- compound king_N ;
-lin ducking_N = mkN "ducking" "duckings" ; -- compound king_N ;
-lin sucking_N = mkN "sucking" "suckings" ; -- compound king_N ;
-lin seeking_N = mkN "seeking" "seekings" ; -- compound king_N ;
-lin 'self-seeking_N' = mkN "self-seeking" "self-seekings" ; -- compound king_N ;
-lin liking_N = mkN "liking" "likings" ; -- compound king_N ;
-lin viking_N = mkN "viking" "vikings" ; -- compound king_N ;
-lin 'pony-trekking_N' = mkN "pony-trekking" "pony-trekkings" ; -- compound king_N ;
-lin deerstalking_N = mkN "deerstalking" "deerstalkings" ; -- compound king_N ;
-lin walking_N = mkN "walking" "walkings" ; -- compound king_N ;
-lin 'fire-walking_N' = mkN "fire-walking" "fire-walkings" ; -- compound king_N ;
-lin sleepwalking_N = mkN "sleepwalking" "sleepwalkings" ; -- compound king_N ;
-lin banking_N = mkN "banking" "bankings" ; -- compound king_N ;
-lin planking_N = mkN "planking" "plankings" ; -- compound king_N ;
-lin spanking_N = mkN "spanking" "spankings" ; -- compound king_N ;
-lin ranking_N = mkN "ranking" "rankings" ; -- compound king_N ;
-lin thinking_N = mkN "thinking" "thinkings" ; -- compound king_N ;
-lin drinking_N = mkN "drinking" "drinkings" ; -- compound king_N ;
-lin shrinking_N = mkN "shrinking" "shrinkings" ; -- compound king_N ;
-lin sinking_N = mkN "sinking" "sinkings" ; -- compound king_N ;
-lin trunking_N = mkN "trunking" "trunkings" ; -- compound king_N ;
-lin choking_N = mkN "choking" "chokings" ; -- compound king_N ;
-lin smoking_N = mkN "smoking" "smokings" ; -- compound king_N ;
-lin booking_N = mkN "booking" "bookings" ; -- compound king_N ;
-lin cooking_N = mkN "cooking" "cookings" ; -- compound king_N ;
-lin looking_N = mkN "looking" "lookings" ; -- compound king_N ;
-lin marking_N = mkN "marking" "markings" ; -- compound king_N ;
-lin parking_N = mkN "parking" "parkings" ; -- compound king_N ;
-lin shirking_N = mkN "shirking" "shirkings" ; -- compound king_N ;
-lin working_N = mkN "working" "workings" ; -- compound king_N ;
-lin metalworking_N = mkN "metalworking" "metalworkings" ; -- compound king_N ;
-lin masking_N = mkN "masking" "maskings" ; -- compound king_N ;
-lin cornhusking_N = mkN "cornhusking" "cornhuskings" ; -- compound king_N ;
-lin ling_N = mkN "ling" "lings" ;
-lin scaling_N = mkN "scaling" "scalings" ; -- compound ling_N ;
-lin dealing_N = mkN "dealing" "dealings" ; -- compound ling_N ;
-lin 'double-dealing_N' = mkN "double-dealing" "double-dealings" ; -- compound ling_N ;
-lin healing_N = mkN "healing" "healings" ; -- compound ling_N ;
-lin 'faith-healing_N' = mkN "faith-healing" "faith-healings" ; -- compound ling_N ;
-lin annealing_N = mkN "annealing" "annealings" ; -- compound ling_N ;
-lin rosemaling_N = mkN "rosemaling" "rosemalings" ; -- compound ling_N ;
-lin paling_N = mkN "paling" "palings" ; -- compound ling_N ;
-lin teetotaling_N = mkN "teetotaling" "teetotalings" ; -- compound ling_N ;
-lin bling_N = mkN "bling" "blings" ; -- notcompound ling_N ;
-lin stabling_N = mkN "stabling" "stablings" ; -- compound ling_N ;
-lin sibling_N = mkN "sibling" "siblings" ; -- compound ling_N ;
-lin gambling_N = mkN "gambling" "gamblings" ; -- compound ling_N ;
-lin brambling_N = mkN "brambling" "bramblings" ; -- compound ling_N ;
-lin mumbling_N = mkN "mumbling" "mumblings" ; -- compound ling_N ;
-lin rumbling_N = mkN "rumbling" "rumblings" ; -- compound ling_N ;
-lin marbling_N = mkN "marbling" "marblings" ; -- compound ling_N ;
-lin doubling_N = mkN "doubling" "doublings" ; -- compound ling_N ;
-lin cling_N = mkN "cling" "clings" ; -- notcompound ling_N ;
-lin cycling_N = mkN "cycling" "cyclings" ; -- compound ling_N ;
-lin recycling_N = mkN "recycling" "recyclings" ; -- compound ling_N ;
-lin bicycling_N = mkN "bicycling" "bicyclings" ; -- compound ling_N ;
-lin motorcycling_N = mkN "motorcycling" "motorcyclings" ; -- compound ling_N ;
-lin meddling_N = mkN "meddling" "meddlings" ; -- compound ling_N ;
-lin middling_N = mkN "middling" "middlings" ; -- compound ling_N ;
-lin seedling_N = mkN "seedling" "seedlings" ; -- compound ling_N ;
-lin worldling_N = mkN "worldling" "worldlings" ; -- compound ling_N ;
-lin handling_N = mkN "handling" "handlings" ; -- compound ling_N ;
-lin kindling_N = mkN "kindling" "kindlings" ; -- compound ling_N ;
-lin dwindling_N = mkN "dwindling" "dwindlings" ; -- compound ling_N ;
-lin bundling_N = mkN "bundling" "bundlings" ; -- compound ling_N ;
-lin foundling_N = mkN "foundling" "foundlings" ; -- compound ling_N ;
-lin groundling_N = mkN "groundling" "groundlings" ; -- compound ling_N ;
-lin codling_N = mkN "codling" "codlings" ; -- compound ling_N ;
-lin curdling_N = mkN "curdling" "curdlings" ; -- compound ling_N ;
-lin princeling_N = mkN "princeling" "princelings" ; -- compound ling_N ;
-lin modeling_N = mkN "modeling" "modelings" ; -- compound ling_N ;
-lin yodeling_N = mkN "yodeling" "yodelings" ; -- compound ling_N ;
-lin feeling_N = mkN "feeling" "feelings" ; -- compound ling_N ;
-lin 'class-feeling_N' = mkN "class-feeling" "class-feelings" ; -- compound ling_N ;
-lin 'fellow-feeling_N' = mkN "fellow-feeling" "fellow-feelings" ; -- compound ling_N ;
-lin wheeling_N = mkN "wheeling" "wheelings" ; -- compound ling_N ;
-lin fledgeling_N = mkN "fledgeling" "fledgelings" ; -- compound ling_N ;
-lin ridgeling_N = mkN "ridgeling" "ridgelings" ; -- compound ling_N ;
-lin changeling_N = mkN "changeling" "changelings" ; -- compound ling_N ;
-lin snorkeling_N = mkN "snorkeling" "snorkelings" ; -- compound ling_N ;
-lin paneling_N = mkN "paneling" "panelings" ; -- compound ling_N ;
-lin hireling_N = mkN "hireling" "hirelings" ; -- compound ling_N ;
-lin nurseling_N = mkN "nurseling" "nurselings" ; -- compound ling_N ;
-lin fueling_N = mkN "fueling" "fuelings" ; -- compound ling_N ;
-lin raveling_N = mkN "raveling" "ravelings" ; -- compound ling_N ;
-lin starveling_N = mkN "starveling" "starvelings" ; -- compound ling_N ;
-lin doweling_N = mkN "doweling" "dowelings" ; -- compound ling_N ;
-lin toweling_N = mkN "toweling" "towelings" ; -- compound ling_N ;
-lin fling_N = mkN "fling" "flings" ; -- notcompound ling_N ;
-lin beagling_N = mkN "beagling" "beaglings" ; -- compound ling_N ;
-lin fledgling_N = mkN "fledgling" "fledglings" ; -- compound ling_N ;
-lin smuggling_N = mkN "smuggling" "smugglings" ; -- compound ling_N ;
-lin angling_N = mkN "angling" "anglings" ; -- compound ling_N ;
-lin shingling_N = mkN "shingling" "shinglings" ; -- compound ling_N ;
-lin mingling_N = mkN "mingling" "minglings" ; -- compound ling_N ;
-lin hatchling_N = mkN "hatchling" "hatchlings" ; -- compound ling_N ;
-lin vetchling_N = mkN "vetchling" "vetchlings" ; -- compound ling_N ;
-lin failing_N = mkN "failing" "failings" ; -- compound ling_N ;
-lin mailing_N = mkN "mailing" "mailings" ; -- compound ling_N ;
-lin railing_N = mkN "railing" "railings" ; -- compound ling_N ;
-lin trailing_N = mkN "trailing" "trailings" ; -- compound ling_N ;
-lin sailing_N = mkN "sailing" "sailings" ; -- compound ling_N ;
-lin parasailing_N = mkN "parasailing" "parasailings" ; -- compound ling_N ;
-lin retailing_N = mkN "retailing" "retailings" ; -- compound ling_N ;
-lin wailing_N = mkN "wailing" "wailings" ; -- compound ling_N ;
-lin ceiling_N = mkN "ceiling" "ceilings" ; -- compound ling_N ;
-lin veiling_N = mkN "veiling" "veilings" ; -- compound ling_N ;
-lin unveiling_N = mkN "unveiling" "unveilings" ; -- compound ling_N ;
-lin filing_N = mkN "filing" "filings" ; -- compound ling_N ;
-lin profiling_N = mkN "profiling" "profilings" ; -- compound ling_N ;
-lin boiling_N = mkN "boiling" "boilings" ; -- compound ling_N ;
-lin soiling_N = mkN "soiling" "soilings" ; -- compound ling_N ;
-lin stockpiling_N = mkN "stockpiling" "stockpilings" ; -- compound ling_N ;
-lin tiling_N = mkN "tiling" "tilings" ; -- compound ling_N ;
-lin weakling_N = mkN "weakling" "weaklings" ; -- compound ling_N ;
-lin crackling_N = mkN "crackling" "cracklings" ; -- compound ling_N ;
-lin heckling_N = mkN "heckling" "hecklings" ; -- compound ling_N ;
-lin prickling_N = mkN "prickling" "pricklings" ; -- compound ling_N ;
-lin swashbuckling_N = mkN "swashbuckling" "swashbucklings" ; -- compound ling_N ;
-lin duckling_N = mkN "duckling" "ducklings" ; -- compound ling_N ;
-lin truckling_N = mkN "truckling" "trucklings" ; -- compound ling_N ;
-lin suckling_N = mkN "suckling" "sucklings" ; -- compound ling_N ;
-lin inkling_N = mkN "inkling" "inklings" ; -- compound ling_N ;
-lin sprinkling_N = mkN "sprinkling" "sprinklings" ; -- compound ling_N ;
-lin calling_N = mkN "calling" "callings" ; -- compound ling_N ;
-lin appalling_N = mkN "appalling" "appallings" ; -- compound ling_N ;
-lin 'dry-walling_N' = mkN "dry-walling" "dry-wallings" ; -- compound ling_N ;
-lin stonewalling_N = mkN "stonewalling" "stonewallings" ; -- compound ling_N ;
-lin modelling_N = mkN "modelling" "modellings" ; -- compound ling_N ;
-lin panelling_N = mkN "panelling" "panellings" ; -- compound ling_N ;
-lin spelling_N = mkN "spelling" "spellings" ; -- compound ling_N ;
-lin misspelling_N = mkN "misspelling" "misspellings" ; -- compound ling_N ;
-lin selling_N = mkN "selling" "sellings" ; -- compound ling_N ;
-lin telling_N = mkN "telling" "tellings" ; -- compound ling_N ;
-lin fortunetelling_N = mkN "fortunetelling" "fortunetellings" ; -- compound ling_N ;
-lin travelling_N = mkN "travelling" "travellings" ; -- compound ling_N ;
-lin dwelling_N = mkN "dwelling" "dwellings" ; -- compound ling_N ;
-lin 'pile-dwelling_N' = mkN "pile-dwelling" "pile-dwellings" ; -- compound ling_N ;
-lin towelling_N = mkN "towelling" "towellings" ; -- compound ling_N ;
-lin swelling_N = mkN "swelling" "swellings" ; -- compound ling_N ;
-lin yelling_N = mkN "yelling" "yellings" ; -- compound ling_N ;
-lin filling_N = mkN "filling" "fillings" ; -- compound ling_N ;
-lin refilling_N = mkN "refilling" "refillings" ; -- compound ling_N ;
-lin schilling_N = mkN "schilling" "schillings" ; -- compound ling_N ;
-lin shilling_N = mkN "shilling" "shillings" ; -- compound ling_N ;
-lin killing_N = mkN "killing" "killings" ; -- compound ling_N ;
-lin milling_N = mkN "milling" "millings" ; -- compound ling_N ;
-lin drilling_N = mkN "drilling" "drillings" ; -- compound ling_N ;
-lin shrilling_N = mkN "shrilling" "shrillings" ; -- compound ling_N ;
-lin tilling_N = mkN "tilling" "tillings" ; -- compound ling_N ;
-lin rolling_N = mkN "rolling" "rollings" ; -- compound ling_N ;
-lin 'log-rolling_N' = mkN "log-rolling" "log-rollings" ; -- compound ling_N ;
-lin logrolling_N = mkN "logrolling" "logrollings" ; -- compound ling_N ;
-lin sculling_N = mkN "sculling" "scullings" ; -- compound ling_N ;
-lin 'leg-pulling_N' = mkN "leg-pulling" "leg-pullings" ; -- compound ling_N ;
-lin cymling_N = mkN "cymling" "cymlings" ; -- compound ling_N ;
-lin greenling_N = mkN "greenling" "greenlings" ; -- compound ling_N ;
-lin cooling_N = mkN "cooling" "coolings" ; -- compound ling_N ;
-lin schooling_N = mkN "schooling" "schoolings" ; -- compound ling_N ;
-lin caroling_N = mkN "caroling" "carolings" ; -- compound ling_N ;
-lin sapling_N = mkN "sapling" "saplings" ; -- compound ling_N ;
-lin tripling_N = mkN "tripling" "triplings" ; -- compound ling_N ;
-lin stripling_N = mkN "stripling" "striplings" ; -- compound ling_N ;
-lin sampling_N = mkN "sampling" "samplings" ; -- compound ling_N ;
-lin dumpling_N = mkN "dumpling" "dumplings" ; -- compound ling_N ;
-lin coupling_N = mkN "coupling" "couplings" ; -- compound ling_N ;
-lin quadrupling_N = mkN "quadrupling" "quadruplings" ; -- compound ling_N ;
-lin quintupling_N = mkN "quintupling" "quintuplings" ; -- compound ling_N ;
-lin darling_N = mkN "darling" "darlings" ; -- compound ling_N ;
-lin yearling_N = mkN "yearling" "yearlings" ; -- compound ling_N ;
-lin unsnarling_N = mkN "unsnarling" "unsnarlings" ; -- compound ling_N ;
-lin sparling_N = mkN "sparling" "sparlings" ; -- compound ling_N ;
-lin starling_N = mkN "starling" "starlings" ; -- compound ling_N ;
-lin sanderling_N = mkN "sanderling" "sanderlings" ; -- compound ling_N ;
-lin underling_N = mkN "underling" "underlings" ; -- compound ling_N ;
-lin fingerling_N = mkN "fingerling" "fingerlings" ; -- compound ling_N ;
-lin sterling_N = mkN "sterling" "sterlings" ; -- compound ling_N ;
-lin birling_N = mkN "birling" "birlings" ; -- compound ling_N ;
-lin curling_N = mkN "curling" "curlings" ; -- compound ling_N ;
-lin hurling_N = mkN "hurling" "hurlings" ; -- compound ling_N ;
-lin sling_N = mkN "sling" "slings" ; -- notcompound ling_N ;
-lin riesling_N = mkN "riesling" "rieslings" ; -- compound ling_N ;
-lin brisling_N = mkN "brisling" "brislings" ; -- compound ling_N ;
-lin quisling_N = mkN "quisling" "quislings" ; -- compound ling_N ;
-lin gosling_N = mkN "gosling" "goslings" ; -- compound ling_N ;
-lin nursling_N = mkN "nursling" "nurslings" ; -- compound ling_N ;
-lin catling_N = mkN "catling" "catlings" ; -- compound ling_N ;
-lin scantling_N = mkN "scantling" "scantlings" ; -- compound ling_N ;
-lin dismantling_N = mkN "dismantling" "dismantlings" ; -- compound ling_N ;
-lin nestling_N = mkN "nestling" "nestlings" ; -- compound ling_N ;
-lin wrestling_N = mkN "wrestling" "wrestlings" ; -- compound ling_N ;
-lin whistling_N = mkN "whistling" "whistlings" ; -- compound ling_N ;
-lin rustling_N = mkN "rustling" "rustlings" ; -- compound ling_N ;
-lin 'sabre-rattling_N' = mkN "sabre-rattling" "sabre-rattlings" ; -- compound ling_N ;
-lin settling_N = mkN "settling" "settlings" ; -- compound ling_N ;
-lin belittling_N = mkN "belittling" "belittlings" ; -- compound ling_N ;
-lin mottling_N = mkN "mottling" "mottlings" ; -- compound ling_N ;
-lin hauling_N = mkN "hauling" "haulings" ; -- compound ling_N ;
-lin scheduling_N = mkN "scheduling" "schedulings" ; -- compound ling_N ;
-lin ruling_N = mkN "ruling" "rulings" ; -- compound ling_N ;
-lin bowling_N = mkN "bowling" "bowlings" ; -- compound ling_N ;
-lin cowling_N = mkN "cowling" "cowlings" ; -- compound ling_N ;
-lin growling_N = mkN "growling" "growlings" ; -- compound ling_N ;
-lin naming_N = mkN "naming" "namings" ;
-lin coaming_N = mkN "coaming" "coamings" ;
-lin framing_N = mkN "framing" "framings" ;
-lin priming_N = mkN "priming" "primings" ;
-lin timing_N = mkN "timing" "timings" ;
-lin filming_N = mkN "filming" "filmings" ;
-lin hamming_N = mkN "hamming" "hammings" ;
-lin jamming_N = mkN "jamming" "jammings" ;
-lin programming_N = mkN "programming" "programmings" ;
-lin multiprogramming_N = mkN "multiprogramming" "multiprogrammings" ; -- compound programming_N ;
-lin lemming_N = mkN "lemming" "lemmings" ;
-lin skimming_N = mkN "skimming" "skimmings" ;
-lin trimming_N = mkN "trimming" "trimmings" ;
-lin swimming_N = mkN "swimming" "swimmings" ;
-lin humming_N = mkN "humming" "hummings" ;
-lin drumming_N = mkN "drumming" "drummings" ;
-lin coming_N = mkN "coming" "comings" ;
-lin homecoming_N = mkN "homecoming" "homecomings" ; -- compound coming_N ;
-lin shortcoming_N = mkN "shortcoming" "shortcomings" ; -- compound coming_N ;
-lin blooming_N = mkN "blooming" "bloomings" ;
-lin blossoming_N = mkN "blossoming" "blossomings" ;
-lin arming_N = mkN "arming" "armings" ;
-lin farming_N = mkN "farming" "farmings" ; -- notcompound arming_N ;
-lin 'dairy-farming_N' = mkN "dairy-farming" "dairy-farmings" ; -- compound arming_N ;
-lin disarming_N = mkN "disarming" "disarmings" ; -- compound arming_N ;
-lin 'house-warming_N' = mkN "house-warming" "house-warmings" ; -- compound arming_N ;
-lin housewarming_N = mkN "housewarming" "housewarmings" ; -- compound arming_N ;
-lin informing_N = mkN "informing" "informings" ;
-lin brainstorming_N = mkN "brainstorming" "brainstormings" ;
-lin leaning_N = mkN "leaning" "leanings" ;
-lin cleaning_N = mkN "cleaning" "cleanings" ; -- notcompound leaning_N ;
-lin 'spring-cleaning_N' = mkN "spring-cleaning" "spring-cleanings" ; -- compound leaning_N ;
-lin 'dry-cleaning_N' = mkN "dry-cleaning" "dry-cleanings" ; -- compound leaning_N ;
-lin housecleaning_N = mkN "housecleaning" "housecleanings" ; -- compound leaning_N ;
-lin meaning_N = mkN "meaning" "meanings" ;
-lin weaning_N = mkN "weaning" "weanings" ;
-lin tobogganing_N = mkN "tobogganing" "tobogganings" ;
-lin waning_N = mkN "waning" "wanings" ;
-lin broadening_N = mkN "broadening" "broadenings" ;
-lin widening_N = mkN "widening" "widenings" ;
-lin gardening_N = mkN "gardening" "gardenings" ;
-lin 'market-gardening_N' = mkN "market-gardening" "market-gardenings" ; -- compound gardening_N ;
-lin hardening_N = mkN "hardening" "hardenings" ;
-lin screening_N = mkN "screening" "screenings" ;
-lin stiffening_N = mkN "stiffening" "stiffenings" ;
-lin strengthening_N = mkN "strengthening" "strengthenings" ;
-lin weakening_N = mkN "weakening" "weakenings" ;
-lin awakening_N = mkN "awakening" "awakenings" ;
-lin blackening_N = mkN "blackening" "blackenings" ;
-lin thickening_N = mkN "thickening" "thickenings" ;
-lin quickening_N = mkN "quickening" "quickenings" ;
-lin likening_N = mkN "likening" "likenings" ;
-lin deepening_N = mkN "deepening" "deepenings" ;
-lin ripening_N = mkN "ripening" "ripenings" ;
-lin opening_N = mkN "opening" "openings" ;
-lin happening_N = mkN "happening" "happenings" ;
-lin loosening_N = mkN "loosening" "loosenings" ;
-lin worsening_N = mkN "worsening" "worsenings" ;
-lin sweetening_N = mkN "sweetening" "sweetenings" ;
-lin softening_N = mkN "softening" "softenings" ;
-lin lightening_N = mkN "lightening" "lightenings" ;
-lin tightening_N = mkN "tightening" "tightenings" ;
-lin whitening_N = mkN "whitening" "whitenings" ;
-lin shortening_N = mkN "shortening" "shortenings" ;
-lin fastening_N = mkN "fastening" "fastenings" ;
-lin listening_N = mkN "listening" "listenings" ;
-lin relistening_N = mkN "relistening" "relistenings" ; -- compound listening_N ;
-lin moistening_N = mkN "moistening" "moistenings" ;
-lin christening_N = mkN "christening" "christenings" ;
-lin evening_N = mkN "evening" "evenings" ;
-lin campaigning_N = mkN "campaigning" "campaignings" ;
-lin designing_N = mkN "designing" "designings" ;
-lin bargaining_N = mkN "bargaining" "bargainings" ;
-lin graining_N = mkN "graining" "grainings" ;
-lin training_N = mkN "training" "trainings" ;
-lin retraining_N = mkN "retraining" "retrainings" ; -- compound training_N ;
-lin staining_N = mkN "staining" "stainings" ;
-lin combining_N = mkN "combining" "combinings" ;
-lin dining_N = mkN "dining" "dinings" ;
-lin refining_N = mkN "refining" "refinings" ;
-lin shining_N = mkN "shining" "shinings" ;
-lin lining_N = mkN "lining" "linings" ;
-lin reclining_N = mkN "reclining" "reclinings" ; -- compound lining_N ;
-lin mining_N = mkN "mining" "minings" ;
-lin joining_N = mkN "joining" "joinings" ;
-lin pining_N = mkN "pining" "pinings" ;
-lin scanning_N = mkN "scanning" "scannings" ;
-lin planning_N = mkN "planning" "plannings" ;
-lin tanning_N = mkN "tanning" "tannings" ;
-lin caravanning_N = mkN "caravanning" "caravannings" ;
-lin kenning_N = mkN "kenning" "kennings" ;
-lin inning_N = mkN "inning" "innings" ;
-lin beginning_N = mkN "beginning" "beginnings" ; -- compound inning_N ;
-lin pinning_N = mkN "pinning" "pinnings" ; -- notcompound inning_N ;
-lin spinning_N = mkN "spinning" "spinnings" ; -- notcompound inning_N ;
-lin tinning_N = mkN "tinning" "tinnings" ; -- notcompound inning_N ;
-lin winning_N = mkN "winning" "winnings" ; -- notcompound inning_N ;
-lin cunning_N = mkN "cunning" "cunnings" ;
-lin running_N = mkN "running" "runnings" ;
-lin gunrunning_N = mkN "gunrunning" "gunrunnings" ; -- compound running_N ;
-lin microphoning_N = mkN "microphoning" "microphonings" ;
-lin vacationing_N = mkN "vacationing" "vacationings" ;
-lin rationing_N = mkN "rationing" "rationings" ;
-lin conditioning_N = mkN "conditioning" "conditionings" ;
-lin 'air-conditioning_N' = mkN "air-conditioning" "air-conditionings" ; -- compound conditioning_N ;
-lin repositioning_N = mkN "repositioning" "repositionings" ;
-lin questioning_N = mkN "questioning" "questionings" ;
-lin reckoning_N = mkN "reckoning" "reckonings" ;
-lin cloning_N = mkN "cloning" "clonings" ;
-lin cocooning_N = mkN "cocooning" "cocoonings" ;
-lin ballooning_N = mkN "ballooning" "balloonings" ;
-lin crooning_N = mkN "crooning" "croonings" ;
-lin ironing_N = mkN "ironing" "ironings" ;
-lin reasoning_N = mkN "reasoning" "reasonings" ;
-lin seasoning_N = mkN "seasoning" "seasonings" ;
-lin poisoning_N = mkN "poisoning" "poisonings" ;
-lin 'blood-poisoning_N' = mkN "blood-poisoning" "blood-poisonings" ; -- compound poisoning_N ;
-lin stoning_N = mkN "stoning" "stonings" ;
-lin zoning_N = mkN "zoning" "zonings" ;
-lin darning_N = mkN "darning" "darnings" ;
-lin learning_N = mkN "learning" "learnings" ;
-lin yearning_N = mkN "yearning" "yearnings" ;
-lin warning_N = mkN "warning" "warnings" ;
-lin forewarning_N = mkN "forewarning" "forewarnings" ; -- compound warning_N ;
-lin morning_N = mkN "morning" "mornings" ;
-lin burning_N = mkN "burning" "burnings" ;
-lin heartburning_N = mkN "heartburning" "heartburnings" ; -- compound burning_N ;
-lin mourning_N = mkN "mourning" "mournings" ;
-lin turning_N = mkN "turning" "turnings" ;
-lin 'table-turning_N' = mkN "table-turning" "table-turnings" ; -- compound turning_N ;
-lin lightning_N = mkN "lightning" "lightnings" ;
-lin 'sheet-lightning_N' = mkN "sheet-lightning" "sheet-lightnings" ; -- compound lightning_N ;
-lin pruning_N = mkN "pruning" "prunings" ;
-lin tuning_N = mkN "tuning" "tunings" ;
-lin awning_N = mkN "awning" "awnings" ;
-lin 'well-doing_N' = mkN "well-doing" "well-doings" ;
-lin wrongdoing_N = mkN "wrongdoing" "wrongdoings" ;
-lin undoing_N = mkN "undoing" "undoings" ;
-lin misdoing_N = mkN "misdoing" "misdoings" ;
-lin going_N = mkN "going" "goings" ;
-lin ping_N = mkN "ping" "pings" ;
-lin landscaping_N = mkN "landscaping" "landscapings" ; -- compound ping_N ;
-lin shaping_N = mkN "shaping" "shapings" ; -- compound ping_N ;
-lin scraping_N = mkN "scraping" "scrapings" ; -- compound ping_N ;
-lin keeping_N = mkN "keeping" "keepings" ; -- compound ping_N ;
-lin peacekeeping_N = mkN "peacekeeping" "peacekeepings" ; -- compound ping_N ;
-lin beekeeping_N = mkN "beekeeping" "beekeepings" ; -- compound ping_N ;
-lin safekeeping_N = mkN "safekeeping" "safekeepings" ; -- compound ping_N ;
-lin timekeeping_N = mkN "timekeeping" "timekeepings" ; -- compound ping_N ;
-lin bookkeeping_N = mkN "bookkeeping" "bookkeepings" ; -- compound ping_N ;
-lin sleeping_N = mkN "sleeping" "sleepings" ; -- compound ping_N ;
-lin sweeping_N = mkN "sweeping" "sweepings" ; -- compound ping_N ;
-lin minesweeping_N = mkN "minesweeping" "minesweepings" ; -- compound ping_N ;
-lin piping_N = mkN "piping" "pipings" ; -- compound ping_N ;
-lin stovepiping_N = mkN "stovepiping" "stovepipings" ; -- compound ping_N ;
-lin striping_N = mkN "striping" "stripings" ; -- compound ping_N ;
-lin gossiping_N = mkN "gossiping" "gossipings" ; -- compound ping_N ;
-lin helping_N = mkN "helping" "helpings" ; -- compound ping_N ;
-lin gulping_N = mkN "gulping" "gulpings" ; -- compound ping_N ;
-lin camping_N = mkN "camping" "campings" ; -- compound ping_N ;
-lin primping_N = mkN "primping" "primpings" ; -- compound ping_N ;
-lin chomping_N = mkN "chomping" "chompings" ; -- compound ping_N ;
-lin dumping_N = mkN "dumping" "dumpings" ; -- compound ping_N ;
-lin jumping_N = mkN "jumping" "jumpings" ; -- compound ping_N ;
-lin 'pole-jumping_N' = mkN "pole-jumping" "pole-jumpings" ; -- compound ping_N ;
-lin showjumping_N = mkN "showjumping" "showjumpings" ; -- compound ping_N ;
-lin stumping_N = mkN "stumping" "stumpings" ; -- compound ping_N ;
-lin coping_N = mkN "coping" "copings" ; -- compound ping_N ;
-lin roping_N = mkN "roping" "ropings" ; -- compound ping_N ;
-lin mapping_N = mkN "mapping" "mappings" ; -- compound ping_N ;
-lin kidnapping_N = mkN "kidnapping" "kidnappings" ; -- compound ping_N ;
-lin 'table-rapping_N' = mkN "table-rapping" "table-rappings" ; -- compound ping_N ;
-lin wrapping_N = mkN "wrapping" "wrappings" ; -- compound ping_N ;
-lin tapping_N = mkN "tapping" "tappings" ; -- compound ping_N ;
-lin shipping_N = mkN "shipping" "shippings" ; -- compound ping_N ;
-lin whipping_N = mkN "whipping" "whippings" ; -- compound ping_N ;
-lin horsewhipping_N = mkN "horsewhipping" "horsewhippings" ; -- compound ping_N ;
-lin clipping_N = mkN "clipping" "clippings" ; -- compound ping_N ;
-lin 'press-clipping_N' = mkN "press-clipping" "press-clippings" ; -- compound ping_N ;
-lin snipping_N = mkN "snipping" "snippings" ; -- compound ping_N ;
-lin dripping_N = mkN "dripping" "drippings" ; -- compound ping_N ;
-lin shopping_N = mkN "shopping" "shoppings" ; -- compound ping_N ;
-lin 'name-dropping_N' = mkN "name-dropping" "name-droppings" ; -- compound ping_N ;
-lin topping_N = mkN "topping" "toppings" ; -- compound ping_N ;
-lin stopping_N = mkN "stopping" "stoppings" ; -- compound ping_N ;
-lin cupping_N = mkN "cupping" "cuppings" ; -- compound ping_N ;
-lin supping_N = mkN "supping" "suppings" ; -- compound ping_N ;
-lin grasping_N = mkN "grasping" "graspings" ; -- compound ping_N ;
-lin grouping_N = mkN "grouping" "groupings" ; -- compound ping_N ;
-lin typing_N = mkN "typing" "typings" ; -- compound ping_N ;
-lin ring_N = mkN "ring" "rings" ;
-lin 'prize-ring_N' = mkN "prize-ring" "prize-rings" ; -- compound ring_N ;
-lin 'wedding-ring_N' = mkN "wedding-ring" "wedding-rings" ; -- compound ring_N ;
-lin 'mourning-ring_N' = mkN "mourning-ring" "mourning-rings" ; -- compound ring_N ;
-lin 'seal-ring_N' = mkN "seal-ring" "seal-rings" ; -- compound ring_N ;
-lin 'napkin-ring_N' = mkN "napkin-ring" "napkin-rings" ; -- compound ring_N ;
-lin 'gas-ring_N' = mkN "gas-ring" "gas-rings" ; -- compound ring_N ;
-lin 'signet-ring_N' = mkN "signet-ring" "signet-rings" ; -- compound ring_N ;
-lin daring_N = mkN "daring" "darings" ; -- compound ring_N ;
-lin bearing_N = mkN "bearing" "bearings" ; -- compound ring_N ;
-lin 'child-bearing_N' = mkN "child-bearing" "child-bearings" ; -- compound ring_N ;
-lin ballbearing_N = mkN "ballbearing" "ballbearings" ; -- compound ring_N ;
-lin gearing_N = mkN "gearing" "gearings" ; -- compound ring_N ;
-lin hearing_N = mkN "hearing" "hearings" ; -- compound ring_N ;
-lin rehearing_N = mkN "rehearing" "rehearings" ; -- compound ring_N ;
-lin shearing_N = mkN "shearing" "shearings" ; -- compound ring_N ;
-lin sheepshearing_N = mkN "sheepshearing" "sheepshearings" ; -- compound ring_N ;
-lin clearing_N = mkN "clearing" "clearings" ; -- compound ring_N ;
-lin tearing_N = mkN "tearing" "tearings" ; -- compound ring_N ;
-lin swearing_N = mkN "swearing" "swearings" ; -- compound ring_N ;
-lin seafaring_N = mkN "seafaring" "seafarings" ; -- compound ring_N ;
-lin wayfaring_N = mkN "wayfaring" "wayfarings" ; -- compound ring_N ;
-lin sharing_N = mkN "sharing" "sharings" ; -- compound ring_N ;
-lin 'profit-sharing_N' = mkN "profit-sharing" "profit-sharings" ; -- compound ring_N ;
-lin paring_N = mkN "paring" "parings" ; -- compound ring_N ;
-lin lumbering_N = mkN "lumbering" "lumberings" ; -- compound ring_N ;
-lin squandering_N = mkN "squandering" "squanderings" ; -- compound ring_N ;
-lin wandering_N = mkN "wandering" "wanderings" ; -- compound ring_N ;
-lin rendering_N = mkN "rendering" "renderings" ; -- compound ring_N ;
-lin laundering_N = mkN "laundering" "launderings" ; -- compound ring_N ;
-lin plundering_N = mkN "plundering" "plunderings" ; -- compound ring_N ;
-lin foundering_N = mkN "foundering" "founderings" ; -- compound ring_N ;
-lin ordering_N = mkN "ordering" "orderings" ; -- compound ring_N ;
-lin reordering_N = mkN "reordering" "reorderings" ; -- compound ring_N ;
-lin cheering_N = mkN "cheering" "cheerings" ; -- compound ring_N ;
-lin sloganeering_N = mkN "sloganeering" "sloganeerings" ; -- compound ring_N ;
-lin veneering_N = mkN "veneering" "veneerings" ; -- compound ring_N ;
-lin mountaineering_N = mkN "mountaineering" "mountaineerings" ; -- compound ring_N ;
-lin engineering_N = mkN "engineering" "engineerings" ; -- compound ring_N ;
-lin electioneering_N = mkN "electioneering" "electioneerings" ; -- compound ring_N ;
-lin racketeering_N = mkN "racketeering" "racketeerings" ; -- compound ring_N ;
-lin steering_N = mkN "steering" "steerings" ; -- compound ring_N ;
-lin offering_N = mkN "offering" "offerings" ; -- compound ring_N ;
-lin 'peace-offering_N' = mkN "peace-offering" "peace-offerings" ; -- compound ring_N ;
-lin 'thank-offering_N' = mkN "thank-offering" "thank-offerings" ; -- compound ring_N ;
-lin suffering_N = mkN "suffering" "sufferings" ; -- compound ring_N ;
-lin badgering_N = mkN "badgering" "badgerings" ; -- compound ring_N ;
-lin fingering_N = mkN "fingering" "fingerings" ; -- compound ring_N ;
-lin malingering_N = mkN "malingering" "malingerings" ; -- compound ring_N ;
-lin scandalmongering_N = mkN "scandalmongering" "scandalmongerings" ; -- compound ring_N ;
-lin warmongering_N = mkN "warmongering" "warmongerings" ; -- compound ring_N ;
-lin gathering_N = mkN "gathering" "gatherings" ; -- compound ring_N ;
-lin woolgathering_N = mkN "woolgathering" "woolgatherings" ; -- compound ring_N ;
-lin ingathering_N = mkN "ingathering" "ingatherings" ; -- compound ring_N ;
-lin dithering_N = mkN "dithering" "ditherings" ; -- compound ring_N ;
-lin soldiering_N = mkN "soldiering" "soldierings" ; -- compound ring_N ;
-lin hankering_N = mkN "hankering" "hankerings" ; -- compound ring_N ;
-lin papering_N = mkN "papering" "paperings" ; -- compound ring_N ;
-lin newspapering_N = mkN "newspapering" "newspaperings" ; -- compound ring_N ;
-lin tapering_N = mkN "tapering" "taperings" ; -- compound ring_N ;
-lin whispering_N = mkN "whispering" "whisperings" ; -- compound ring_N ;
-lin nosering_N = mkN "nosering" "noserings" ; -- compound ring_N ;
-lin catering_N = mkN "catering" "caterings" ; -- compound ring_N ;
-lin watering_N = mkN "watering" "waterings" ; -- compound ring_N ;
-lin centering_N = mkN "centering" "centerings" ; -- compound ring_N ;
-lin quartering_N = mkN "quartering" "quarterings" ; -- compound ring_N ;
-lin plastering_N = mkN "plastering" "plasterings" ; -- compound ring_N ;
-lin mastering_N = mkN "mastering" "masterings" ; -- compound ring_N ;
-lin festering_N = mkN "festering" "festerings" ; -- compound ring_N ;
-lin fostering_N = mkN "fostering" "fosterings" ; -- compound ring_N ;
-lin battering_N = mkN "battering" "batterings" ; -- compound ring_N ;
-lin scattering_N = mkN "scattering" "scatterings" ; -- compound ring_N ;
-lin smattering_N = mkN "smattering" "smatterings" ; -- compound ring_N ;
-lin lettering_N = mkN "lettering" "letterings" ; -- compound ring_N ;
-lin neutering_N = mkN "neutering" "neuterings" ; -- compound ring_N ;
-lin covering_N = mkN "covering" "coverings" ; -- compound ring_N ;
-lin lowering_N = mkN "lowering" "lowerings" ; -- compound ring_N ;
-lin airing_N = mkN "airing" "airings" ; -- compound ring_N ;
-lin pairing_N = mkN "pairing" "pairings" ; -- compound ring_N ;
-lin acquiring_N = mkN "acquiring" "acquirings" ; -- compound ring_N ;
-lin wiring_N = mkN "wiring" "wirings" ; -- compound ring_N ;
-lin lockring_N = mkN "lockring" "lockrings" ; -- compound ring_N ;
-lin bullring_N = mkN "bullring" "bullrings" ; -- compound ring_N ;
-lin boring_N = mkN "boring" "borings" ; -- compound ring_N ;
-lin shoring_N = mkN "shoring" "shorings" ; -- compound ring_N ;
-lin tailoring_N = mkN "tailoring" "tailorings" ; -- compound ring_N ;
-lin coloring_N = mkN "coloring" "colorings" ; -- compound ring_N ;
-lin honoring_N = mkN "honoring" "honorings" ; -- compound ring_N ;
-lin flooring_N = mkN "flooring" "floorings" ; -- compound ring_N ;
-lin mooring_N = mkN "mooring" "moorings" ; -- compound ring_N ;
-lin censoring_N = mkN "censoring" "censorings" ; -- compound ring_N ;
-lin monitoring_N = mkN "monitoring" "monitorings" ; -- compound ring_N ;
-lin motoring_N = mkN "motoring" "motorings" ; -- compound ring_N ;
-lin spring_N = mkN "spring" "springs" ; -- notcompound ring_N ;
-lin bedspring_N = mkN "bedspring" "bedsprings" ; -- compound ring_N ;
-lin handspring_N = mkN "handspring" "handsprings" ; -- compound ring_N ;
-lin mainspring_N = mkN "mainspring" "mainsprings" ; -- compound ring_N ;
-lin hairspring_N = mkN "hairspring" "hairsprings" ; -- compound ring_N ;
-lin dayspring_N = mkN "dayspring" "daysprings" ; -- compound ring_N ;
-lin barring_N = mkN "barring" "barrings" ; -- compound ring_N ;
-lin earring_N = mkN "earring" "earrings" ; -- compound ring_N ;
-lin sparring_N = mkN "sparring" "sparrings" ; -- compound ring_N ;
-lin shirring_N = mkN "shirring" "shirrings" ; -- compound ring_N ;
-lin stirring_N = mkN "stirring" "stirrings" ; -- compound ring_N ;
-lin incurring_N = mkN "incurring" "incurrings" ; -- compound ring_N ;
-lin furring_N = mkN "furring" "furrings" ; -- compound ring_N ;
-lin string_N = mkN "string" "strings" ; -- notcompound ring_N ;
-lin substring_N = mkN "substring" "substrings" ; -- compound ring_N ;
-lin shoestring_N = mkN "shoestring" "shoestrings" ; -- compound ring_N ;
-lin latchstring_N = mkN "latchstring" "latchstrings" ; -- compound ring_N ;
-lin hamstring_N = mkN "hamstring" "hamstrings" ; -- compound ring_N ;
-lin superstring_N = mkN "superstring" "superstrings" ; -- compound ring_N ;
-lin drawstring_N = mkN "drawstring" "drawstrings" ; -- compound ring_N ;
-lin bowstring_N = mkN "bowstring" "bowstrings" ; -- compound ring_N ;
-lin conjuring_N = mkN "conjuring" "conjurings" ; -- compound ring_N ;
-lin scouring_N = mkN "scouring" "scourings" ; -- compound ring_N ;
-lin colouring_N = mkN "colouring" "colourings" ; -- compound ring_N ;
-lin inpouring_N = mkN "inpouring" "inpourings" ; -- compound ring_N ;
-lin outpouring_N = mkN "outpouring" "outpourings" ; -- compound ring_N ;
-lin souring_N = mkN "souring" "sourings" ; -- compound ring_N ;
-lin touring_N = mkN "touring" "tourings" ; -- compound ring_N ;
-lin flavouring_N = mkN "flavouring" "flavourings" ; -- compound ring_N ;
-lin picturing_N = mkN "picturing" "picturings" ; -- compound ring_N ;
-lin posturing_N = mkN "posturing" "posturings" ; -- compound ring_N ;
-lin suturing_N = mkN "suturing" "suturings" ; -- compound ring_N ;
-lin wring_N = mkN "wring" "wrings" ; -- notcompound ring_N ;
-lin keyring_N = mkN "keyring" "keyrings" ; -- compound ring_N ;
-lin casing_N = mkN "casing" "casings" ;
-lin easing_N = mkN "easing" "easings" ;
-lin pleasing_N = mkN "pleasing" "pleasings" ; -- notcompound easing_N ;
-lin teasing_N = mkN "teasing" "teasings" ; -- notcompound easing_N ;
-lin antialiasing_N = mkN "antialiasing" "antialiasings" ;
-lin phrasing_N = mkN "phrasing" "phrasings" ;
-lin raising_N = mkN "raising" "raisings" ;
-lin 'fire-raising_N' = mkN "fire-raising" "fire-raisings" ; -- compound raising_N ;
-lin braising_N = mkN "braising" "braisings" ; -- notcompound raising_N ;
-lin rising_N = mkN "rising" "risings" ;
-lin uprising_N = mkN "uprising" "uprisings" ; -- compound rising_N ;
-lin advertising_N = mkN "advertising" "advertisings" ;
-lin devising_N = mkN "devising" "devisings" ;
-lin condensing_N = mkN "condensing" "condensings" ;
-lin sensing_N = mkN "sensing" "sensings" ;
-lin closing_N = mkN "closing" "closings" ;
-lin composing_N = mkN "composing" "composings" ;
-lin nursing_N = mkN "nursing" "nursings" ;
-lin coursing_N = mkN "coursing" "coursings" ;
-lin gassing_N = mkN "gassing" "gassings" ;
-lin passing_N = mkN "passing" "passings" ;
-lin processing_N = mkN "processing" "processings" ;
-lin multiprocessing_N = mkN "multiprocessing" "multiprocessings" ; -- compound processing_N ;
-lin blessing_N = mkN "blessing" "blessings" ;
-lin caressing_N = mkN "caressing" "caressings" ;
-lin dressing_N = mkN "dressing" "dressings" ;
-lin 'salad-dressing_N' = mkN "salad-dressing" "salad-dressings" ; -- compound dressing_N ;
-lin 'top-dressing_N' = mkN "top-dressing" "top-dressings" ; -- compound dressing_N ;
-lin 'window-dressing_N' = mkN "window-dressing" "window-dressings" ; -- compound dressing_N ;
-lin hairdressing_N = mkN "hairdressing" "hairdressings" ; -- compound dressing_N ;
-lin pressing_N = mkN "pressing" "pressings" ;
-lin crossing_N = mkN "crossing" "crossings" ;
-lin degaussing_N = mkN "degaussing" "degaussings" ;
-lin causing_N = mkN "causing" "causings" ;
-lin refocusing_N = mkN "refocusing" "refocusings" ;
-lin housing_N = mkN "housing" "housings" ;
-lin warehousing_N = mkN "warehousing" "warehousings" ; -- compound housing_N ;
-lin dowsing_N = mkN "dowsing" "dowsings" ;
-lin ting_N = mkN "ting" "tings" ;
-lin dating_N = mkN "dating" "datings" ; -- compound ting_N ;
-lin updating_N = mkN "updating" "updatings" ; -- compound ting_N ;
-lin eating_N = mkN "eating" "eatings" ; -- compound ting_N ;
-lin beating_N = mkN "beating" "beatings" ; -- compound ting_N ;
-lin heating_N = mkN "heating" "heatings" ; -- compound ting_N ;
-lin overheating_N = mkN "overheating" "overheatings" ; -- compound ting_N ;
-lin seating_N = mkN "seating" "seatings" ; -- compound ting_N ;
-lin delegating_N = mkN "delegating" "delegatings" ; -- compound ting_N ;
-lin skating_N = mkN "skating" "skatings" ; -- compound ting_N ;
-lin 'ice-skating_N' = mkN "ice-skating" "ice-skatings" ; -- compound ting_N ;
-lin plating_N = mkN "plating" "platings" ; -- compound ting_N ;
-lin slating_N = mkN "slating" "slatings" ; -- compound ting_N ;
-lin inoculating_N = mkN "inoculating" "inoculatings" ; -- compound ting_N ;
-lin boating_N = mkN "boating" "boatings" ; -- compound ting_N ;
-lin bareboating_N = mkN "bareboating" "bareboatings" ; -- compound ting_N ;
-lin coating_N = mkN "coating" "coatings" ; -- compound ting_N ;
-lin floating_N = mkN "floating" "floatings" ; -- compound ting_N ;
-lin rating_N = mkN "rating" "ratings" ; -- compound ting_N ;
-lin berating_N = mkN "berating" "beratings" ; -- compound ting_N ;
-lin grating_N = mkN "grating" "gratings" ; -- compound ting_N ;
-lin acting_N = mkN "acting" "actings" ; -- compound ting_N ;
-lin 'play-acting_N' = mkN "play-acting" "play-actings" ; -- compound ting_N ;
-lin erecting_N = mkN "erecting" "erectings" ; -- compound ting_N ;
-lin depicting_N = mkN "depicting" "depictings" ; -- compound ting_N ;
-lin conducting_N = mkN "conducting" "conductings" ; -- compound ting_N ;
-lin sheeting_N = mkN "sheeting" "sheetings" ; -- compound ting_N ;
-lin meeting_N = mkN "meeting" "meetings" ; -- compound ting_N ;
-lin 'race-meeting_N' = mkN "race-meeting" "race-meetings" ; -- compound ting_N ;
-lin 'prayer-meeting_N' = mkN "prayer-meeting" "prayer-meetings" ; -- compound ting_N ;
-lin greeting_N = mkN "greeting" "greetings" ; -- compound ting_N ;
-lin pargeting_N = mkN "pargeting" "pargetings" ; -- compound ting_N ;
-lin crocheting_N = mkN "crocheting" "crochetings" ; -- compound ting_N ;
-lin junketing_N = mkN "junketing" "junketings" ; -- compound ting_N ;
-lin marketing_N = mkN "marketing" "marketings" ; -- compound ting_N ;
-lin telemarketing_N = mkN "telemarketing" "telemarketings" ; -- compound ting_N ;
-lin drafting_N = mkN "drafting" "draftings" ; -- compound ting_N ;
-lin 'face-lifting_N' = mkN "face-lifting" "face-liftings" ; -- compound ting_N ;
-lin 'table-lifting_N' = mkN "table-lifting" "table-liftings" ; -- compound ting_N ;
-lin shoplifting_N = mkN "shoplifting" "shopliftings" ; -- compound ting_N ;
-lin uplifting_N = mkN "uplifting" "upliftings" ; -- compound ting_N ;
-lin weightlifting_N = mkN "weightlifting" "weightliftings" ; -- compound ting_N ;
-lin drifting_N = mkN "drifting" "driftings" ; -- compound ting_N ;
-lin yachting_N = mkN "yachting" "yachtings" ; -- compound ting_N ;
-lin fighting_N = mkN "fighting" "fightings" ; -- compound ting_N ;
-lin 'in-fighting_N' = mkN "in-fighting" "in-fightings" ; -- compound ting_N ;
-lin cockfighting_N = mkN "cockfighting" "cockfightings" ; -- compound ting_N ;
-lin bullfighting_N = mkN "bullfighting" "bullfightings" ; -- compound ting_N ;
-lin lighting_N = mkN "lighting" "lightings" ; -- compound ting_N ;
-lin 'strip-lighting_N' = mkN "strip-lighting" "strip-lightings" ; -- compound ting_N ;
-lin backlighting_N = mkN "backlighting" "backlightings" ; -- compound ting_N ;
-lin sighting_N = mkN "sighting" "sightings" ; -- compound ting_N ;
-lin baiting_N = mkN "baiting" "baitings" ; -- compound ting_N ;
-lin editing_N = mkN "editing" "editings" ; -- compound ting_N ;
-lin writing_N = mkN "writing" "writings" ; -- compound ting_N ;
-lin handwriting_N = mkN "handwriting" "handwritings" ; -- compound ting_N ;
-lin rewriting_N = mkN "rewriting" "rewritings" ; -- compound ting_N ;
-lin skywriting_N = mkN "skywriting" "skywritings" ; -- compound ting_N ;
-lin visiting_N = mkN "visiting" "visitings" ; -- compound ting_N ;
-lin repositing_N = mkN "repositing" "repositings" ; -- compound ting_N ;
-lin suiting_N = mkN "suiting" "suitings" ; -- compound ting_N ;
-lin salting_N = mkN "salting" "saltings" ; -- compound ting_N ;
-lin belting_N = mkN "belting" "beltings" ; -- compound ting_N ;
-lin quilting_N = mkN "quilting" "quiltings" ; -- compound ting_N ;
-lin vaulting_N = mkN "vaulting" "vaultings" ; -- compound ting_N ;
-lin banting_N = mkN "banting" "bantings" ; -- compound ting_N ;
-lin planting_N = mkN "planting" "plantings" ; -- compound ting_N ;
-lin supplanting_N = mkN "supplanting" "supplantings" ; -- compound ting_N ;
-lin panting_N = mkN "panting" "pantings" ; -- compound ting_N ;
-lin painting_N = mkN "painting" "paintings" ; -- compound ting_N ;
-lin 'genre-painting_N' = mkN "genre-painting" "genre-paintings" ; -- compound ting_N ;
-lin 'oil-painting_N' = mkN "oil-painting" "oil-paintings" ; -- compound ting_N ;
-lin 'wall-painting_N' = mkN "wall-painting" "wall-paintings" ; -- compound ting_N ;
-lin anointing_N = mkN "anointing" "anointings" ; -- compound ting_N ;
-lin printing_N = mkN "printing" "printings" ; -- compound ting_N ;
-lin imprinting_N = mkN "imprinting" "imprintings" ; -- compound ting_N ;
-lin fingerprinting_N = mkN "fingerprinting" "fingerprintings" ; -- compound ting_N ;
-lin tinting_N = mkN "tinting" "tintings" ; -- compound ting_N ;
-lin bunting_N = mkN "bunting" "buntings" ; -- compound ting_N ;
-lin hunting_N = mkN "hunting" "huntings" ; -- compound ting_N ;
-lin accounting_N = mkN "accounting" "accountings" ; -- compound ting_N ;
-lin mounting_N = mkN "mounting" "mountings" ; -- compound ting_N ;
-lin wainscoting_N = mkN "wainscoting" "wainscotings" ; -- compound ting_N ;
-lin fagoting_N = mkN "fagoting" "fagotings" ; -- compound ting_N ;
-lin rioting_N = mkN "rioting" "riotings" ; -- compound ting_N ;
-lin piloting_N = mkN "piloting" "pilotings" ; -- compound ting_N ;
-lin shooting_N = mkN "shooting" "shootings" ; -- compound ting_N ;
-lin 'line-shooting_N' = mkN "line-shooting" "line-shootings" ; -- compound ting_N ;
-lin 'crap-shooting_N' = mkN "crap-shooting" "crap-shootings" ; -- compound ting_N ;
-lin 'trap-shooting_N' = mkN "trap-shooting" "trap-shootings" ; -- compound ting_N ;
-lin looting_N = mkN "looting" "lootings" ; -- compound ting_N ;
-lin rooting_N = mkN "rooting" "rootings" ; -- compound ting_N ;
-lin prompting_N = mkN "prompting" "promptings" ; -- compound ting_N ;
-lin parting_N = mkN "parting" "partings" ; -- compound ting_N ;
-lin averting_N = mkN "averting" "avertings" ; -- compound ting_N ;
-lin shirting_N = mkN "shirting" "shirtings" ; -- compound ting_N ;
-lin importing_N = mkN "importing" "importings" ; -- compound ting_N ;
-lin exporting_N = mkN "exporting" "exportings" ; -- compound ting_N ;
-lin sorting_N = mkN "sorting" "sortings" ; -- compound ting_N ;
-lin sting_N = mkN "sting" "stings" ; -- notcompound ting_N ;
-lin basting_N = mkN "basting" "bastings" ; -- compound ting_N ;
-lin casting_N = mkN "casting" "castings" ; -- compound ting_N ;
-lin broadcasting_N = mkN "broadcasting" "broadcastings" ; -- compound ting_N ;
-lin feasting_N = mkN "feasting" "feastings" ; -- compound ting_N ;
-lin everlasting_N = mkN "everlasting" "everlastings" ; -- compound ting_N ;
-lin roasting_N = mkN "roasting" "roastings" ; -- compound ting_N ;
-lin toasting_N = mkN "toasting" "toastings" ; -- compound ting_N ;
-lin pasting_N = mkN "pasting" "pastings" ; -- compound ting_N ;
-lin tasting_N = mkN "tasting" "tastings" ; -- compound ting_N ;
-lin birdnesting_N = mkN "birdnesting" "birdnestings" ; -- compound ting_N ;
-lin testing_N = mkN "testing" "testings" ; -- compound ting_N ;
-lin investing_N = mkN "investing" "investings" ; -- compound ting_N ;
-lin listing_N = mkN "listing" "listings" ; -- compound ting_N ;
-lin costing_N = mkN "costing" "costings" ; -- compound ting_N ;
-lin posting_N = mkN "posting" "postings" ; -- compound ting_N ;
-lin frosting_N = mkN "frosting" "frostings" ; -- compound ting_N ;
-lin 'crop-dusting_N' = mkN "crop-dusting" "crop-dustings" ; -- compound ting_N ;
-lin batting_N = mkN "batting" "battings" ; -- compound ting_N ;
-lin matting_N = mkN "matting" "mattings" ; -- compound ting_N ;
-lin tatting_N = mkN "tatting" "tattings" ; -- compound ting_N ;
-lin letting_N = mkN "letting" "lettings" ; -- compound ting_N ;
-lin 'blood-letting_N' = mkN "blood-letting" "blood-lettings" ; -- compound ting_N ;
-lin bloodletting_N = mkN "bloodletting" "bloodlettings" ; -- compound ting_N ;
-lin netting_N = mkN "netting" "nettings" ; -- compound ting_N ;
-lin setting_N = mkN "setting" "settings" ; -- compound ting_N ;
-lin 'trend-setting_N' = mkN "trend-setting" "trend-settings" ; -- compound ting_N ;
-lin wetting_N = mkN "wetting" "wettings" ; -- compound ting_N ;
-lin babbitting_N = mkN "babbitting" "babbittings" ; -- compound ting_N ;
-lin fitting_N = mkN "fitting" "fittings" ; -- compound ting_N ;
-lin pipefitting_N = mkN "pipefitting" "pipefittings" ; -- compound ting_N ;
-lin outfitting_N = mkN "outfitting" "outfittings" ; -- compound ting_N ;
-lin 'word-splitting_N' = mkN "word-splitting" "word-splittings" ; -- compound ting_N ;
-lin hairsplitting_N = mkN "hairsplitting" "hairsplittings" ; -- compound ting_N ;
-lin knitting_N = mkN "knitting" "knittings" ; -- compound ting_N ;
-lin pitting_N = mkN "pitting" "pittings" ; -- compound ting_N ;
-lin spitting_N = mkN "spitting" "spittings" ; -- compound ting_N ;
-lin sitting_N = mkN "sitting" "sittings" ; -- compound ting_N ;
-lin babysitting_N = mkN "babysitting" "babysittings" ; -- compound ting_N ;
-lin jotting_N = mkN "jotting" "jottings" ; -- compound ting_N ;
-lin cutting_N = mkN "cutting" "cuttings" ; -- compound ting_N ;
-lin 'press-cutting_N' = mkN "press-cutting" "press-cuttings" ; -- compound ting_N ;
-lin shutting_N = mkN "shutting" "shuttings" ; -- compound ting_N ;
-lin fluting_N = mkN "fluting" "flutings" ; -- compound ting_N ;
-lin telecommuting_N = mkN "telecommuting" "telecommutings" ; -- compound ting_N ;
-lin outing_N = mkN "outing" "outings" ; -- compound ting_N ;
-lin scouting_N = mkN "scouting" "scoutings" ; -- compound ting_N ;
-lin shouting_N = mkN "shouting" "shoutings" ; -- compound ting_N ;
-lin barbecuing_N = mkN "barbecuing" "barbecuings" ;
-lin bluing_N = mkN "bluing" "bluings" ;
-lin weaving_N = mkN "weaving" "weavings" ;
-lin hairweaving_N = mkN "hairweaving" "hairweavings" ; -- compound weaving_N ;
-lin paving_N = mkN "paving" "pavings" ;
-lin raving_N = mkN "raving" "ravings" ;
-lin craving_N = mkN "craving" "cravings" ; -- notcompound raving_N ;
-lin engraving_N = mkN "engraving" "engravings" ; -- compound raving_N ;
-lin saving_N = mkN "saving" "savings" ;
-lin 'face-saving_N' = mkN "face-saving" "face-savings" ; -- compound saving_N ;
-lin 'daylight-saving_N' = mkN "daylight-saving" "daylight-savings" ; -- compound saving_N ;
-lin lifesaving_N = mkN "lifesaving" "lifesavings" ; -- compound saving_N ;
-lin believing_N = mkN "believing" "believings" ;
-lin diving_N = mkN "diving" "divings" ;
-lin 'skin-diving_N' = mkN "skin-diving" "skin-divings" ; -- compound diving_N ;
-lin skydiving_N = mkN "skydiving" "skydivings" ; -- compound diving_N ;
-lin giving_N = mkN "giving" "givings" ;
-lin 'alms-giving_N' = mkN "alms-giving" "alms-givings" ; -- compound giving_N ;
-lin misgiving_N = mkN "misgiving" "misgivings" ; -- compound giving_N ;
-lin thanksgiving_N = mkN "thanksgiving" "thanksgivings" ; -- compound giving_N ;
-lin living_N = mkN "living" "livings" ;
-lin 'free-living_N' = mkN "free-living" "free-livings" ; -- compound living_N ;
-lin reliving_N = mkN "reliving" "relivings" ; -- compound living_N ;
-lin driving_N = mkN "driving" "drivings" ;
-lin deriving_N = mkN "deriving" "derivings" ;
-lin striving_N = mkN "striving" "strivings" ;
-lin calving_N = mkN "calving" "calvings" ;
-lin dissolving_N = mkN "dissolving" "dissolvings" ;
-lin grooving_N = mkN "grooving" "groovings" ;
-lin carving_N = mkN "carving" "carvings" ;
-lin woodcarving_N = mkN "woodcarving" "woodcarvings" ; -- compound carving_N ;
-lin serving_N = mkN "serving" "servings" ;
-lin wing_N = mkN "wing" "wings" ;
-lin 'left-wing_N' = mkN "left-wing" "left-wings" ; -- compound wing_N ;
-lin 'right-wing_N' = mkN "right-wing" "right-wings" ; -- compound wing_N ;
-lin drawing_N = mkN "drawing" "drawings" ; -- compound wing_N ;
-lin 'wash-drawing_N' = mkN "wash-drawing" "wash-drawings" ; -- compound wing_N ;
-lin redwing_N = mkN "redwing" "redwings" ; -- compound wing_N ;
-lin lacewing_N = mkN "lacewing" "lacewings" ; -- compound wing_N ;
-lin anglewing_N = mkN "anglewing" "anglewings" ; -- compound wing_N ;
-lin brewing_N = mkN "brewing" "brewings" ; -- compound wing_N ;
-lin forewing_N = mkN "forewing" "forewings" ; -- compound wing_N ;
-lin sewing_N = mkN "sewing" "sewings" ; -- compound wing_N ;
-lin bitewing_N = mkN "bitewing" "bitewings" ; -- compound wing_N ;
-lin stewing_N = mkN "stewing" "stewings" ; -- compound wing_N ;
-lin bluewing_N = mkN "bluewing" "bluewings" ; -- compound wing_N ;
-lin greenwing_N = mkN "greenwing" "greenwings" ; -- compound wing_N ;
-lin bowing_N = mkN "bowing" "bowings" ; -- compound wing_N ;
-lin elbowing_N = mkN "elbowing" "elbowings" ; -- compound wing_N ;
-lin shadowing_N = mkN "shadowing" "shadowings" ; -- compound wing_N ;
-lin showing_N = mkN "showing" "showings" ; -- compound wing_N ;
-lin blowing_N = mkN "blowing" "blowings" ; -- compound wing_N ;
-lin mellowing_N = mkN "mellowing" "mellowings" ; -- compound wing_N ;
-lin following_N = mkN "following" "followings" ; -- compound wing_N ;
-lin plowing_N = mkN "plowing" "plowings" ; -- compound wing_N ;
-lin knowing_N = mkN "knowing" "knowings" ; -- compound wing_N ;
-lin rowing_N = mkN "rowing" "rowings" ; -- compound wing_N ;
-lin growing_N = mkN "growing" "growings" ; -- compound wing_N ;
-lin narrowing_N = mkN "narrowing" "narrowings" ; -- compound wing_N ;
-lin borrowing_N = mkN "borrowing" "borrowings" ; -- compound wing_N ;
-lin lapwing_N = mkN "lapwing" "lapwings" ; -- compound wing_N ;
-lin underwing_N = mkN "underwing" "underwings" ; -- compound wing_N ;
-lin swing_N = mkN "swing" "swings" ; -- notcompound wing_N ;
-lin downswing_N = mkN "downswing" "downswings" ; -- compound wing_N ;
-lin batwing_N = mkN "batwing" "batwings" ; -- compound wing_N ;
-lin waxwing_N = mkN "waxwing" "waxwings" ; -- compound wing_N ;
-lin coaxing_N = mkN "coaxing" "coaxings" ;
-lin waxing_N = mkN "waxing" "waxings" ;
-lin indexing_N = mkN "indexing" "indexings" ;
-lin autosexing_N = mkN "autosexing" "autosexings" ;
-lin boxing_N = mkN "boxing" "boxings" ;
-lin 'shadow-boxing_N' = mkN "shadow-boxing" "shadow-boxings" ; -- compound boxing_N ;
-lin shadowboxing_N = mkN "shadowboxing" "shadowboxings" ; -- compound boxing_N ;
-lin haying_N = mkN "haying" "hayings" ;
-lin laying_N = mkN "laying" "layings" ;
-lin minelaying_N = mkN "minelaying" "minelayings" ; -- compound laying_N ;
-lin bricklaying_N = mkN "bricklaying" "bricklayings" ; -- compound laying_N ;
-lin playing_N = mkN "playing" "playings" ; -- notcompound laying_N ;
-lin roleplaying_N = mkN "roleplaying" "roleplayings" ; -- compound laying_N ;
-lin spaying_N = mkN "spaying" "spayings" ;
-lin spraying_N = mkN "spraying" "sprayings" ;
-lin saying_N = mkN "saying" "sayings" ;
-lin naysaying_N = mkN "naysaying" "naysayings" ; -- compound saying_N ;
-lin surveying_N = mkN "surveying" "surveyings" ;
-lin lying_N = mkN "lying" "lyings" ;
-lin rallying_N = mkN "rallying" "rallyings" ; -- compound lying_N ;
-lin bullying_N = mkN "bullying" "bullyings" ; -- compound lying_N ;
-lin copying_N = mkN "copying" "copyings" ;
-lin spying_N = mkN "spying" "spyings" ;
-lin crying_N = mkN "crying" "cryings" ;
-lin frying_N = mkN "frying" "fryings" ;
-lin dairying_N = mkN "dairying" "dairyings" ;
-lin quarrying_N = mkN "quarrying" "quarryings" ;
-lin worrying_N = mkN "worrying" "worryings" ;
-lin burying_N = mkN "burying" "buryings" ;
-lin reburying_N = mkN "reburying" "reburyings" ; -- compound burying_N ;
-lin tying_N = mkN "tying" "tyings" ;
-lin untying_N = mkN "untying" "untyings" ; -- compound tying_N ;
-lin emptying_N = mkN "emptying" "emptyings" ; -- compound tying_N ;
-lin buying_N = mkN "buying" "buyings" ;
-lin zing_N = mkN "zing" "zings" ;
-lin 'crystal-gazing_N' = mkN "crystal-gazing" "crystal-gazings" ; -- compound zing_N ;
-lin stargazing_N = mkN "stargazing" "stargazings" ; -- compound zing_N ;
-lin razing_N = mkN "razing" "razings" ; -- compound zing_N ;
-lin grazing_N = mkN "grazing" "grazings" ; -- compound zing_N ;
-lin seizing_N = mkN "seizing" "seizings" ; -- compound zing_N ;
-lin energizing_N = mkN "energizing" "energizings" ; -- compound zing_N ;
-lin philosophizing_N = mkN "philosophizing" "philosophizings" ; -- compound zing_N ;
-lin moralizing_N = mkN "moralizing" "moralizings" ; -- compound zing_N ;
-lin symbolizing_N = mkN "symbolizing" "symbolizings" ; -- compound zing_N ;
-lin emphasizing_N = mkN "emphasizing" "emphasizings" ; -- compound zing_N ;
-lin capsizing_N = mkN "capsizing" "capsizings" ; -- compound zing_N ;
-lin sensitizing_N = mkN "sensitizing" "sensitizings" ; -- compound zing_N ;
-lin bong_N = mkN "bong" "bongs" ;
-lin billabong_N = mkN "billabong" "billabongs" ; -- compound bong_N ;
-lin dong_N = mkN "dong" "dongs" ;
-lin 'ding-dong_N' = mkN "ding-dong" "ding-dongs" ; -- compound dong_N ;
-lin quandong_N = mkN "quandong" "quandongs" ; -- compound dong_N ;
-lin gong_N = mkN "gong" "gongs" ;
-lin dugong_N = mkN "dugong" "dugongs" ; -- compound gong_N ;
-lin souchong_N = mkN "souchong" "souchongs" ;
-lin thong_N = mkN "thong" "thongs" ;
-lin diphthong_N = mkN "diphthong" "diphthongs" ; -- compound thong_N ;
-lin kurrajong_N = mkN "kurrajong" "kurrajongs" ;
-lin mahjong_N = mkN "mahjong" "mahjongs" ;
-lin long_N = mkN "long" "longs" ;
-lin tagalong_N = mkN "tagalong" "tagalongs" ; -- compound long_N ;
-lin singalong_N = mkN "singalong" "singalongs" ; -- compound long_N ;
-lin oblong_N = mkN "oblong" "oblongs" ; -- compound long_N ;
-lin oolong_N = mkN "oolong" "oolongs" ; -- compound long_N ;
-lin furlong_N = mkN "furlong" "furlongs" ; -- compound long_N ;
-lin scuppernong_N = mkN "scuppernong" "scuppernongs" ;
-lin pingpong_N = mkN "pingpong" "pingpongs" ;
-lin kampong_N = mkN "kampong" "kampongs" ;
-lin barong_N = mkN "barong" "barongs" ;
-lin sarong_N = mkN "sarong" "sarongs" ;
-lin throng_N = mkN "throng" "throngs" ;
-lin prong_N = mkN "prong" "prongs" ;
-lin binturong_N = mkN "binturong" "binturongs" ;
-lin wrong_N = mkN "wrong" "wrongs" ;
-lin song_N = mkN "song" "songs" ;
-lin 'love-song_N' = mkN "love-song" "love-songs" ; -- compound song_N ;
-lin 'drinking-song_N' = mkN "drinking-song" "drinking-songs" ; -- compound song_N ;
-lin 'swan-song_N' = mkN "swan-song" "swan-songs" ; -- compound song_N ;
-lin 'part-song_N' = mkN "part-song" "part-songs" ; -- compound song_N ;
-lin singsong_N = mkN "singsong" "singsongs" ; -- compound song_N ;
-lin folksong_N = mkN "folksong" "folksongs" ; -- compound song_N ;
-lin evensong_N = mkN "evensong" "evensongs" ; -- compound song_N ;
-lin plainsong_N = mkN "plainsong" "plainsongs" ; -- compound song_N ;
-lin partsong_N = mkN "partsong" "partsongs" ; -- compound song_N ;
-lin biltong_N = mkN "biltong" "biltongs" ;
-lin bettong_N = mkN "bettong" "bettongs" ;
-lin burrawong_N = mkN "burrawong" "burrawongs" ;
-lin currawong_N = mkN "currawong" "currawongs" ;
-lin bung_N = mkN "bung" "bungs" ;
-lin geebung_N = mkN "geebung" "geebungs" ; -- compound bung_N ;
-lin dung_N = mkN "dung" "dungs" ;
-lin tudung_N = mkN "tudung" "tudungs" ; -- compound dung_N ;
-lin lung_N = mkN "lung" "lungs" ;
-lin aqualung_N = mkN "aqualung" "aqualungs" ; -- compound lung_N ;
-lin quellung_N = mkN "quellung" "quellungs" ; -- compound lung_N ;
-lin mung_N = mkN "mung" "mungs" ;
-lin young_N = mkN "young" "youngs" ;
-lin pung_N = mkN "pung" "pungs" ;
-lin pungapung_N = mkN "pungapung" "pungapungs" ; -- compound pung_N ;
-lin rung_N = mkN "rung" "rungs" ;
-lin shantung_N = mkN "shantung" "shantungs" ;
-lin bog_N = mkN "bog" "bogs" ;
-lin cog_N = mkN "cog" "cogs" ;
-lin dog_N = mkN "dog" "dogs" ;
-lin 'sea-dog_N' = mkN "sea-dog" "sea-dogs" ; -- compound dog_N ;
-lin 'sausage-dog_N' = mkN "sausage-dog" "sausage-dogs" ; -- compound dog_N ;
-lin 'pug-dog_N' = mkN "pug-dog" "pug-dogs" ; -- compound dog_N ;
-lin 'pariah-dog_N' = mkN "pariah-dog" "pariah-dogs" ; -- compound dog_N ;
-lin 'lap-dog_N' = mkN "lap-dog" "lap-dogs" ; -- compound dog_N ;
-lin firedog_N = mkN "firedog" "firedogs" ; -- compound dog_N ;
-lin housedog_N = mkN "housedog" "housedogs" ; -- compound dog_N ;
-lin watchdog_N = mkN "watchdog" "watchdogs" ; -- compound dog_N ;
-lin bulldog_N = mkN "bulldog" "bulldogs" ; -- compound dog_N ;
-lin coondog_N = mkN "coondog" "coondogs" ; -- compound dog_N ;
-lin gundog_N = mkN "gundog" "gundogs" ; -- compound dog_N ;
-lin lapdog_N = mkN "lapdog" "lapdogs" ; -- compound dog_N ;
-lin sheepdog_N = mkN "sheepdog" "sheepdogs" ; -- compound dog_N ;
-lin underdog_N = mkN "underdog" "underdogs" ; -- compound dog_N ;
-lin waterdog_N = mkN "waterdog" "waterdogs" ; -- compound dog_N ;
-lin hotdog_N = mkN "hotdog" "hotdogs" ; -- compound dog_N ;
-lin coydog_N = mkN "coydog" "coydogs" ; -- compound dog_N ;
-lin fog_N = mkN "fog" "fogs" ;
-lin hog_N = mkN "hog" "hogs" ;
-lin 'road-hog_N' = mkN "road-hog" "road-hogs" ; -- compound hog_N ;
-lin quahog_N = mkN "quahog" "quahogs" ; -- compound hog_N ;
-lin mummichog_N = mkN "mummichog" "mummichogs" ; -- compound hog_N ;
-lin groundhog_N = mkN "groundhog" "groundhogs" ; -- compound hog_N ;
-lin hedgehog_N = mkN "hedgehog" "hedgehogs" ; -- compound hog_N ;
-lin warthog_N = mkN "warthog" "warthogs" ; -- compound hog_N ;
-lin jog_N = mkN "jog" "jogs" ;
-lin log_N = mkN "log" "logs" ;
-lin 'yule-log_N' = mkN "yule-log" "yule-logs" ; -- compound log_N ;
-lin analog_N = mkN "analog" "analogs" ; -- compound log_N ;
-lin catalog_N = mkN "catalog" "catalogs" ; -- compound log_N ;
-lin clog_N = mkN "clog" "clogs" ; -- notcompound log_N ;
-lin backlog_N = mkN "backlog" "backlogs" ; -- compound log_N ;
-lin smog_N = mkN "smog" "smogs" ;
-lin nog_N = mkN "nog" "nogs" ;
-lin eggnog_N = mkN "eggnog" "eggnogs" ; -- compound nog_N ;
-lin frog_N = mkN "frog" "frogs" ;
-lin bullfrog_N = mkN "bullfrog" "bullfrogs" ; -- compound frog_N ;
-lin leapfrog_N = mkN "leapfrog" "leapfrogs" ; -- compound frog_N ;
-lin grog_N = mkN "grog" "grogs" ;
-lin sprog_N = mkN "sprog" "sprogs" ;
-lin tautog_N = mkN "tautog" "tautogs" ;
-lin wog_N = mkN "wog" "wogs" ;
-lin golliwog_N = mkN "golliwog" "golliwogs" ; -- compound wog_N ;
-lin erg_N = mkN "erg" "ergs" ;
-lin berg_N = mkN "berg" "bergs" ; -- notcompound erg_N ;
-lin rydberg_N = mkN "rydberg" "rydbergs" ; -- compound erg_N ;
-lin iceberg_N = mkN "iceberg" "icebergs" ; -- compound erg_N ;
-lin cyborg_N = mkN "cyborg" "cyborgs" ;
-lin burg_N = mkN "burg" "burgs" ;
-lin faubourg_N = mkN "faubourg" "faubourgs" ;
-lin quahaug_N = mkN "quahaug" "quahaugs" ;
-lin bug_N = mkN "bug" "bugs" ;
-lin 'may-bug_N' = mkN "may-bug" "may-bugs" ; -- compound bug_N ;
-lin 'mealy-bug_N' = mkN "mealy-bug" "mealy-bugs" ; -- compound bug_N ;
-lin bedbug_N = mkN "bedbug" "bedbugs" ; -- compound bug_N ;
-lin tumblebug_N = mkN "tumblebug" "tumblebugs" ; -- compound bug_N ;
-lin doodlebug_N = mkN "doodlebug" "doodlebugs" ; -- compound bug_N ;
-lin firebug_N = mkN "firebug" "firebugs" ; -- compound bug_N ;
-lin humbug_N = mkN "humbug" "humbugs" ; -- compound bug_N ;
-lin superbug_N = mkN "superbug" "superbugs" ; -- compound bug_N ;
-lin jitterbug_N = mkN "jitterbug" "jitterbugs" ; -- compound bug_N ;
-lin shutterbug_N = mkN "shutterbug" "shutterbugs" ; -- compound bug_N ;
-lin ladybug_N = mkN "ladybug" "ladybugs" ; -- compound bug_N ;
-lin mealybug_N = mkN "mealybug" "mealybugs" ; -- compound bug_N ;
-lin dug_N = mkN "dug" "dugs" ;
-lin fug_N = mkN "fug" "fugs" ;
-lin hug_N = mkN "hug" "hugs" ;
-lin chug_N = mkN "chug" "chugs" ; -- notcompound hug_N ;
-lin thug_N = mkN "thug" "thugs" ; -- notcompound hug_N ;
-lin jug_N = mkN "jug" "jugs" ;
-lin 'toby-jug_N' = mkN "toby-jug" "toby-jugs" ; -- compound jug_N ;
-lin lug_N = mkN "lug" "lugs" ;
-lin plug_N = mkN "plug" "plugs" ; -- notcompound lug_N ;
-lin 'sparking-plug_N' = mkN "sparking-plug" "sparking-plugs" ; -- compound lug_N ;
-lin 'spark-plug_N' = mkN "spark-plug" "spark-plugs" ; -- compound lug_N ;
-lin fireplug_N = mkN "fireplug" "fireplugs" ; -- compound lug_N ;
-lin drainplug_N = mkN "drainplug" "drainplugs" ; -- compound lug_N ;
-lin earplug_N = mkN "earplug" "earplugs" ; -- compound lug_N ;
-lin slug_N = mkN "slug" "slugs" ; -- notcompound lug_N ;
-lin mug_N = mkN "mug" "mugs" ;
-lin snug_N = mkN "snug" "snugs" ;
-lin pug_N = mkN "pug" "pugs" ;
-lin rug_N = mkN "rug" "rugs" ;
-lin 'prayer-rug_N' = mkN "prayer-rug" "prayer-rugs" ; -- compound rug_N ;
-lin drug_N = mkN "drug" "drugs" ; -- notcompound rug_N ;
-lin shrug_N = mkN "shrug" "shrugs" ; -- notcompound rug_N ;
-lin hearthrug_N = mkN "hearthrug" "hearthrugs" ; -- compound rug_N ;
-lin tug_N = mkN "tug" "tugs" ;
-lin much_N = mkN "much" "IRREG" ;
-lin nonesuch_N = mkN "nonesuch" "IRREG" ;
-lin nonsuch_N = mkN "nonsuch" "IRREG" ;
-lin soh_N = mkN "soh" "IRREG" ;
-lin synchroflash_N = mkN "synchroflash" "IRREG" ;
-lin plash_N = mkN "plash" "IRREG" ;
-lin roach_N = mkN "roach" "roach" ;
-lin tench_N = mkN "tench" "tench" ;
-lin perch_N = mkN "perch" "perch" ;
-lin Dutch_N = mkN "Dutch" "Dutch" ;
-lin enough_N = mkN "enough" "enough" ;
-lin mph_N = mkN "mph" "mph" ;
-lin squash_N = mkN "squash" "squash" ;
-lin baksheesh_N = mkN "baksheesh" "baksheesh" ;
-lin backsheesh_N = mkN "backsheesh" "backsheesh" ;
-lin fish_N = mkN "fish" "fish" ;
-lin 'sea-fish_N' = mkN "sea-fish" "sea-fish" ; -- compound fish_N ;
-lin 'ground-fish_N' = mkN "ground-fish" "ground-fish" ; -- compound fish_N ;
-lin 'flying-fish_N' = mkN "flying-fish" "flying-fish" ; -- compound fish_N ;
-lin 'silver-fish_N' = mkN "silver-fish" "silver-fish" ; -- compound fish_N ;
-lin 'pilot-fish_N' = mkN "pilot-fish" "pilot-fish" ; -- compound fish_N ;
-lin goldfish_N = mkN "goldfish" "goldfish" ; -- compound fish_N ;
-lin codfish_N = mkN "codfish" "codfish" ; -- compound fish_N ;
-lin swordfish_N = mkN "swordfish" "swordfish" ; -- compound fish_N ;
-lin dogfish_N = mkN "dogfish" "dogfish" ; -- compound fish_N ;
-lin stockfish_N = mkN "stockfish" "stockfish" ; -- compound fish_N ;
-lin shellfish_N = mkN "shellfish" "shellfish" ; -- compound fish_N ;
-lin sunfish_N = mkN "sunfish" "sunfish" ; -- compound fish_N ;
-lin starfish_N = mkN "starfish" "starfish" ; -- compound fish_N ;
-lin catfish_N = mkN "catfish" "catfish" ; -- compound fish_N ;
-lin flatfish_N = mkN "flatfish" "flatfish" ; -- compound fish_N ;
-lin jellyfish_N = mkN "jellyfish" "jellyfish" ; -- compound fish_N ;
-lin tooth_N = mkN "tooth" "teeth" ;
-lin 'milk-tooth_N' = mkN "milk-tooth" "milk-teeth" ; -- compound tooth_N ;
-lin 'wisdom-tooth_N' = mkN "wisdom-tooth" "wisdom-teeth" ; -- compound tooth_N ;
-lin eyetooth_N = mkN "eyetooth" "eyeteeth" ; -- compound tooth_N ;
-lin bucktooth_N = mkN "bucktooth" "buckteeth" ; -- compound tooth_N ;
-lin fellah_1_N = mkN "fellah" "fellaheen" ;
-lin fellah_2_N = mkN "fellah" "fellahin" ;
-lin kasbah_N = mkN "kasbah" "kasbahs" ;
-lin shahadah_N = mkN "shahadah" "shahadahs" ;
-lin numdah_N = mkN "numdah" "numdahs" ;
-lin verandah_N = mkN "verandah" "verandahs" ;
-lin purdah_N = mkN "purdah" "purdahs" ;
-lin howdah_N = mkN "howdah" "howdahs" ;
-lin whydah_N = mkN "whydah" "whydahs" ;
-lin obeah_N = mkN "obeah" "obeahs" ;
-lin loofah_N = mkN "loofah" "loofahs" ;
-lin ephah_N = mkN "ephah" "ephahs" ;
-lin shah_N = mkN "shah" "shahs" ;
-lin rupiah_N = mkN "rupiah" "rupiahs" ;
-lin shariah_N = mkN "shariah" "shariahs" ;
-lin pariah_N = mkN "pariah" "pariahs" ;
-lin messiah_N = mkN "messiah" "messiahs" ;
-lin rajah_N = mkN "rajah" "rajahs" ;
-lin maharajah_N = mkN "maharajah" "maharajahs" ; -- compound rajah_N ;
-lin hallelujah_N = mkN "hallelujah" "hallelujahs" ;
-lin punkah_N = mkN "punkah" "punkahs" ;
-lin hookah_N = mkN "hookah" "hookahs" ;
-lin blah_N = mkN "blah" "blahs" ;
-lin challah_N = mkN "challah" "challahs" ;
-lin wallah_N = mkN "wallah" "wallahs" ;
-lin megillah_N = mkN "megillah" "megillahs" ;
-lin ayatollah_N = mkN "ayatollah" "ayatollahs" ;
-lin mullah_N = mkN "mullah" "mullahs" ;
-lin nullah_N = mkN "nullah" "nullahs" ;
-lin rugulah_N = mkN "rugulah" "rugulahs" ;
-lin amah_N = mkN "amah" "amahs" ;
-lin savannah_N = mkN "savannah" "savannahs" ;
-lin jonah_N = mkN "jonah" "jonahs" ;
-lin mynah_N = mkN "mynah" "mynahs" ;
-lin opah_N = mkN "opah" "opahs" ;
-lin menorah_N = mkN "menorah" "menorahs" ;
-lin sirrah_N = mkN "sirrah" "sirrahs" ;
-lin hurrah_N = mkN "hurrah" "hurrahs" ;
-lin tussah_N = mkN "tussah" "tussahs" ;
-lin waratah_N = mkN "waratah" "waratahs" ;
-lin cheetah_N = mkN "cheetah" "cheetahs" ;
-lin shittah_N = mkN "shittah" "shittahs" ;
-lin mikvah_N = mkN "mikvah" "mikvahs" ;
-lin mitzvah_N = mkN "mitzvah" "mitzvahs" ;
-lin da'wah_N = mkN "da'wah" "da'wahs" ;
-lin fatwah_N = mkN "fatwah" "fatwahs" ;
-lin ayah_N = mkN "ayah" "ayahs" ;
-lin aliyah_N = mkN "aliyah" "aliyahs" ;
-lin mezuzah_N = mkN "mezuzah" "mezuzahs" ;
-lin beach_N = mkN "beach" "beaches" ;
-lin leach_N = mkN "leach" "leaches" ;
-lin bleach_N = mkN "bleach" "bleaches" ; -- notcompound leach_N ;
-lin peach_N = mkN "peach" "peaches" ;
-lin reach_N = mkN "reach" "reaches" ;
-lin breach_N = mkN "breach" "breaches" ; -- notcompound reach_N ;
-lin outreach_N = mkN "outreach" "outreaches" ; -- compound reach_N ;
-lin taoiseach_N = mkN "taoiseach" "taoiseaches" ;
-lin logomach_N = mkN "logomach" "logomaches" ;
-lin sumach_N = mkN "sumach" "sumaches" ;
-lin spinach_N = mkN "spinach" "spinaches" ;
-lin coach_N = mkN "coach" "coaches" ;
-lin 'slip-coach_N' = mkN "slip-coach" "slip-coaches" ; -- compound coach_N ;
-lin stagecoach_N = mkN "stagecoach" "stagecoaches" ; -- compound coach_N ;
-lin motorcoach_N = mkN "motorcoach" "motorcoaches" ; -- compound coach_N ;
-lin slowcoach_N = mkN "slowcoach" "slowcoaches" ; -- compound coach_N ;
-lin loach_N = mkN "loach" "loaches" ;
-lin cockroach_N = mkN "cockroach" "cockroaches" ;
-lin reproach_N = mkN "reproach" "reproaches" ;
-lin approach_N = mkN "approach" "approaches" ;
-lin amphibrach_N = mkN "amphibrach" "amphibraches" ;
-lin orach_N = mkN "orach" "oraches" ;
-lin beech_N = mkN "beech" "beeches" ;
-lin leech_N = mkN "leech" "leeches" ;
-lin horseleech_N = mkN "horseleech" "horseleeches" ; -- compound leech_N ;
-lin speech_N = mkN "speech" "speeches" ;
-lin breech_N = mkN "breech" "breeches" ;
-lin screech_N = mkN "screech" "screeches" ;
-lin tech_N = mkN "tech" "teches" ;
-lin tovarich_N = mkN "tovarich" "tovariches" ;
-lin ostrich_N = mkN "ostrich" "ostriches" ;
-lin sandwich_N = mkN "sandwich" "sandwiches" ;
-lin belch_N = mkN "belch" "belches" ;
-lin squelch_N = mkN "squelch" "squelches" ;
-lin liebfraumilch_N = mkN "liebfraumilch" "liebfraumilches" ;
-lin gulch_N = mkN "gulch" "gulches" ;
-lin mulch_N = mkN "mulch" "mulches" ;
-lin ranch_N = mkN "ranch" "ranches" ;
-lin branch_N = mkN "branch" "branches" ; -- notcompound ranch_N ;
-lin elasmobranch_N = mkN "elasmobranch" "elasmobranches" ; -- compound ranch_N ;
-lin bench_N = mkN "bench" "benches" ;
-lin 'cross-bench_N' = mkN "cross-bench" "cross-benches" ; -- compound bench_N ;
-lin 'front-bench_N' = mkN "front-bench" "front-benches" ; -- compound bench_N ;
-lin backbench_N = mkN "backbench" "backbenches" ; -- compound bench_N ;
-lin workbench_N = mkN "workbench" "workbenches" ; -- compound bench_N ;
-lin crossbench_N = mkN "crossbench" "crossbenches" ; -- compound bench_N ;
-lin french_N = mkN "french" "frenches" ;
-lin trench_N = mkN "trench" "trenches" ;
-lin wrench_N = mkN "wrench" "wrenches" ;
-lin 'monkey-wrench_N' = mkN "monkey-wrench" "monkey-wrenches" ; -- compound wrench_N ;
-lin stench_N = mkN "stench" "stenches" ;
-lin wench_N = mkN "wench" "wenches" ;
-lin inch_N = mkN "inch" "inches" ;
-lin cinch_N = mkN "cinch" "cinches" ; -- notcompound inch_N ;
-lin finch_N = mkN "finch" "finches" ; -- notcompound inch_N ;
-lin goldfinch_N = mkN "goldfinch" "goldfinches" ; -- compound inch_N ;
-lin chaffinch_N = mkN "chaffinch" "chaffinches" ; -- compound inch_N ;
-lin bullfinch_N = mkN "bullfinch" "bullfinches" ; -- compound inch_N ;
-lin grassfinch_N = mkN "grassfinch" "grassfinches" ; -- compound inch_N ;
-lin hawfinch_N = mkN "hawfinch" "hawfinches" ; -- compound inch_N ;
-lin clinch_N = mkN "clinch" "clinches" ; -- notcompound inch_N ;
-lin pinch_N = mkN "pinch" "pinches" ; -- notcompound inch_N ;
-lin squinch_N = mkN "squinch" "squinches" ; -- compound inch_N ;
-lin winch_N = mkN "winch" "winches" ; -- notcompound inch_N ;
-lin conch_N = mkN "conch" "conches" ;
-lin haunch_N = mkN "haunch" "haunches" ;
-lin launch_N = mkN "launch" "launches" ;
-lin paunch_N = mkN "paunch" "paunches" ;
-lin bunch_N = mkN "bunch" "bunches" ;
-lin hunch_N = mkN "hunch" "hunches" ;
-lin lunch_N = mkN "lunch" "lunches" ;
-lin clunch_N = mkN "clunch" "clunches" ; -- notcompound lunch_N ;
-lin munch_N = mkN "munch" "munches" ;
-lin punch_N = mkN "punch" "punches" ;
-lin 'rabbit-punch_N' = mkN "rabbit-punch" "rabbit-punches" ; -- compound punch_N ;
-lin counterpunch_N = mkN "counterpunch" "counterpunches" ; -- compound punch_N ;
-lin brunch_N = mkN "brunch" "brunches" ;
-lin crunch_N = mkN "crunch" "crunches" ;
-lin buttercrunch_N = mkN "buttercrunch" "buttercrunches" ; -- compound crunch_N ;
-lin scrunch_N = mkN "scrunch" "scrunches" ; -- notcompound crunch_N ;
-lin lynch_N = mkN "lynch" "lynches" ;
-lin moloch_N = mkN "moloch" "moloches" ;
-lin hooch_N = mkN "hooch" "hooches" ;
-lin pooch_N = mkN "pooch" "pooches" ;
-lin brooch_N = mkN "brooch" "brooches" ;
-lin arch_N = mkN "arch" "arches" ;
-lin March_N = mkN "March" "Marches" ; -- notcompound arch_N ;
-lin search_N = mkN "search" "searches" ; -- compound arch_N ;
-lin research_N = mkN "research" "researches" ; -- compound arch_N ;
-lin larch_N = mkN "larch" "larches" ; -- notcompound arch_N ;
-lin 'hunger-march_N' = mkN "hunger-march" "hunger-marches" ; -- compound arch_N ;
-lin routemarch_N = mkN "routemarch" "routemarches" ; -- compound arch_N ;
-lin countermarch_N = mkN "countermarch" "countermarches" ; -- compound arch_N ;
-lin ethnarch_N = mkN "ethnarch" "ethnarches" ; -- compound arch_N ;
-lin eparch_N = mkN "eparch" "eparches" ; -- compound arch_N ;
-lin hierarch_N = mkN "hierarch" "hierarches" ; -- compound arch_N ;
-lin starch_N = mkN "starch" "starches" ; -- notcompound arch_N ;
-lin cornstarch_N = mkN "cornstarch" "cornstarches" ; -- compound arch_N ;
-lin exarch_N = mkN "exarch" "exarches" ; -- compound arch_N ;
-lin surfperch_N = mkN "surfperch" "surfperches" ;
-lin birch_N = mkN "birch" "birches" ;
-lin smirch_N = mkN "smirch" "smirches" ;
-lin scorch_N = mkN "scorch" "scorches" ;
-lin porch_N = mkN "porch" "porches" ;
-lin 'sun-porch_N' = mkN "sun-porch" "sun-porches" ; -- compound porch_N ;
-lin torch_N = mkN "torch" "torches" ;
-lin blowtorch_N = mkN "blowtorch" "blowtorches" ; -- compound torch_N ;
-lin church_N = mkN "church" "churches" ;
-lin lurch_N = mkN "lurch" "lurches" ;
-lin mensch_N = mkN "mensch" "mensches" ;
-lin kirsch_N = mkN "kirsch" "kirsches" ;
-lin borsch_N = mkN "borsch" "borsches" ;
-lin kitsch_N = mkN "kitsch" "kitsches" ;
-lin bortsch_N = mkN "bortsch" "bortsches" ;
-lin putsch_N = mkN "putsch" "putsches" ;
-lin batch_N = mkN "batch" "batches" ;
-lin catch_N = mkN "catch" "catches" ;
-lin 'safety-catch_N' = mkN "safety-catch" "safety-catches" ; -- compound catch_N ;
-lin hatch_N = mkN "hatch" "hatches" ;
-lin thatch_N = mkN "thatch" "thatches" ; -- notcompound hatch_N ;
-lin nuthatch_N = mkN "nuthatch" "nuthatches" ; -- compound hatch_N ;
-lin latch_N = mkN "latch" "latches" ;
-lin potlatch_N = mkN "potlatch" "potlatches" ; -- compound latch_N ;
-lin match_N = mkN "match" "matches" ;
-lin 'love-match_N' = mkN "love-match" "love-matches" ; -- compound match_N ;
-lin 'sparring-match_N' = mkN "sparring-match" "sparring-matches" ; -- compound match_N ;
-lin 'boxing-match_N' = mkN "boxing-match" "boxing-matches" ; -- compound match_N ;
-lin 'safety-match_N' = mkN "safety-match" "safety-matches" ; -- compound match_N ;
-lin mismatch_N = mkN "mismatch" "mismatches" ; -- compound match_N ;
-lin snatch_N = mkN "snatch" "snatches" ;
-lin patch_N = mkN "patch" "patches" ;
-lin eyepatch_N = mkN "eyepatch" "eyepatches" ; -- compound patch_N ;
-lin despatch_N = mkN "despatch" "despatches" ; -- compound patch_N ;
-lin dispatch_N = mkN "dispatch" "dispatches" ; -- compound patch_N ;
-lin crosspatch_N = mkN "crosspatch" "crosspatches" ; -- compound patch_N ;
-lin ratch_N = mkN "ratch" "ratches" ;
-lin scratch_N = mkN "scratch" "scratches" ; -- notcompound ratch_N ;
-lin watch_N = mkN "watch" "watches" ;
-lin 'night-watch_N' = mkN "night-watch" "night-watches" ; -- compound watch_N ;
-lin dogwatch_N = mkN "dogwatch" "dogwatches" ; -- compound watch_N ;
-lin stopwatch_N = mkN "stopwatch" "stopwatches" ; -- compound watch_N ;
-lin swatch_N = mkN "swatch" "swatches" ; -- notcompound watch_N ;
-lin wristwatch_N = mkN "wristwatch" "wristwatches" ; -- compound watch_N ;
-lin fetch_N = mkN "fetch" "fetches" ;
-lin ketch_N = mkN "ketch" "ketches" ;
-lin sketch_N = mkN "sketch" "sketches" ; -- notcompound ketch_N ;
-lin stretch_N = mkN "stretch" "stretches" ;
-lin homestretch_N = mkN "homestretch" "homestretches" ; -- compound stretch_N ;
-lin wretch_N = mkN "wretch" "wretches" ;
-lin vetch_N = mkN "vetch" "vetches" ;
-lin kvetch_N = mkN "kvetch" "kvetches" ; -- notcompound vetch_N ;
-lin itch_N = mkN "itch" "itches" ;
-lin aitch_N = mkN "aitch" "aitches" ; -- notcompound itch_N ;
-lin bitch_N = mkN "bitch" "bitches" ; -- notcompound itch_N ;
-lin ditch_N = mkN "ditch" "ditches" ; -- notcompound itch_N ;
-lin hitch_N = mkN "hitch" "hitches" ; -- notcompound itch_N ;
-lin 'clove hitch_N' = mkN "clove hitch" "clove hitches" ; -- compound itch_N ;
-lin flitch_N = mkN "flitch" "flitches" ; -- notcompound itch_N ;
-lin pitch_N = mkN "pitch" "pitches" ; -- notcompound itch_N ;
-lin stitch_N = mkN "stitch" "stitches" ; -- notcompound itch_N ;
-lin 'hemming-stitch_N' = mkN "hemming-stitch" "hemming-stitches" ; -- compound itch_N ;
-lin 'chain-stitch_N' = mkN "chain-stitch" "chain-stitches" ; -- compound itch_N ;
-lin 'cross-stitch_N' = mkN "cross-stitch" "cross-stitches" ; -- compound itch_N ;
-lin backstitch_N = mkN "backstitch" "backstitches" ; -- compound itch_N ;
-lin lockstitch_N = mkN "lockstitch" "lockstitches" ; -- compound itch_N ;
-lin hemstitch_N = mkN "hemstitch" "hemstitches" ; -- compound itch_N ;
-lin whipstitch_N = mkN "whipstitch" "whipstitches" ; -- compound itch_N ;
-lin witch_N = mkN "witch" "witches" ; -- notcompound itch_N ;
-lin switch_N = mkN "switch" "switches" ; -- notcompound itch_N ;
-lin 'time-switch_N' = mkN "time-switch" "time-switches" ; -- compound itch_N ;
-lin twitch_N = mkN "twitch" "twitches" ; -- notcompound itch_N ;
-lin botch_N = mkN "botch" "botches" ;
-lin scotch_N = mkN "scotch" "scotches" ;
-lin hopscotch_N = mkN "hopscotch" "hopscotches" ; -- compound scotch_N ;
-lin butterscotch_N = mkN "butterscotch" "butterscotches" ; -- compound scotch_N ;
-lin blotch_N = mkN "blotch" "blotches" ;
-lin splotch_N = mkN "splotch" "splotches" ;
-lin notch_N = mkN "notch" "notches" ;
-lin hotchpotch_N = mkN "hotchpotch" "hotchpotches" ;
-lin crotch_N = mkN "crotch" "crotches" ;
-lin nautch_N = mkN "nautch" "nautches" ;
-lin butch_N = mkN "butch" "butches" ;
-lin cutch_N = mkN "cutch" "cutches" ;
-lin 'double-dutch_N' = mkN "double-dutch" "double-dutches" ;
-lin hutch_N = mkN "hutch" "hutches" ;
-lin 'rabbit-hutch_N' = mkN "rabbit-hutch" "rabbit-hutches" ; -- compound hutch_N ;
-lin clutch_N = mkN "clutch" "clutches" ;
-lin crutch_N = mkN "crutch" "crutches" ;
-lin debauch_N = mkN "debauch" "debauches" ;
-lin couch_N = mkN "couch" "couches" ;
-lin slouch_N = mkN "slouch" "slouches" ;
-lin pouch_N = mkN "pouch" "pouches" ;
-lin crouch_N = mkN "crouch" "crouches" ;
-lin grouch_N = mkN "grouch" "grouches" ;
-lin touch_N = mkN "touch" "touches" ;
-lin stomach_N = mkN "stomach" "stomachs" ;
-lin sassenach_N = mkN "sassenach" "sassenachs" ;
-lin cromlech_N = mkN "cromlech" "cromlechs" ;
-lin Czech_N = mkN "Czech" "Czechs" ;
-lin reich_N = mkN "reich" "reichs" ;
-lin loch_N = mkN "loch" "lochs" ;
-lin epoch_N = mkN "epoch" "epochs" ;
-lin pibroch_N = mkN "pibroch" "pibrochs" ;
-lin oligarch_N = mkN "oligarch" "oligarchs" ;
-lin matriarch_N = mkN "matriarch" "matriarchs" ;
-lin patriarch_N = mkN "patriarch" "patriarchs" ;
-lin monarch_N = mkN "monarch" "monarchs" ;
-lin pentateuch_N = mkN "pentateuch" "pentateuchs" ;
-lin eunuch_N = mkN "eunuch" "eunuchs" ;
-lin diptych_N = mkN "diptych" "diptychs" ;
-lin triptych_N = mkN "triptych" "triptychs" ;
-lin lamedh_N = mkN "lamedh" "lamedhs" ;
-lin ceilidh_N = mkN "ceilidh" "ceilidhs" ;
-lin yodh_N = mkN "yodh" "yodhs" ;
-lin sigeh_N = mkN "sigeh" "sigehs" ;
-lin tabbouleh_N = mkN "tabbouleh" "tabboulehs" ;
-lin meshuggeneh_N = mkN "meshuggeneh" "meshuggenehs" ;
-lin lanseh_N = mkN "lanseh" "lansehs" ;
-lin kaffiyeh_N = mkN "kaffiyeh" "kaffiyehs" ;
-lin shillelagh_N = mkN "shillelagh" "shillelaghs" ;
-lin sleigh_N = mkN "sleigh" "sleighs" ;
-lin bobsleigh_N = mkN "bobsleigh" "bobsleighs" ; -- compound sleigh_N ;
-lin neigh_N = mkN "neigh" "neighs" ;
-lin high_N = mkN "high" "highs" ;
-lin thigh_N = mkN "thigh" "thighs" ; -- notcompound high_N ;
-lin sigh_N = mkN "sigh" "sighs" ;
-lin burgh_N = mkN "burgh" "burghs" ;
-lin laugh_N = mkN "laugh" "laughs" ;
-lin 'horse-laugh_N' = mkN "horse-laugh" "horse-laughs" ; -- compound laugh_N ;
-lin bellylaugh_N = mkN "bellylaugh" "bellylaughs" ; -- compound laugh_N ;
-lin bough_N = mkN "bough" "boughs" ;
-lin cough_N = mkN "cough" "coughs" ;
-lin 'whooping-cough_N' = mkN "whooping-cough" "whooping-coughs" ; -- compound cough_N ;
-lin hiccough_N = mkN "hiccough" "hiccoughs" ; -- compound cough_N ;
-lin dough_N = mkN "dough" "doughs" ;
-lin sourdough_N = mkN "sourdough" "sourdoughs" ; -- compound dough_N ;
-lin chough_N = mkN "chough" "choughs" ;
-lin lough_N = mkN "lough" "loughs" ;
-lin plough_N = mkN "plough" "ploughs" ; -- notcompound lough_N ;
-lin snowplough_N = mkN "snowplough" "snowploughs" ; -- compound lough_N ;
-lin furlough_N = mkN "furlough" "furloughs" ; -- compound lough_N ;
-lin slough_N = mkN "slough" "sloughs" ; -- notcompound lough_N ;
-lin rough_N = mkN "rough" "roughs" ;
-lin 'pull-through_N' = mkN "pull-through" "pull-throughs" ; -- compound rough_N ;
-lin 'run-through_N' = mkN "run-through" "run-throughs" ; -- compound rough_N ;
-lin 'follow-through_N' = mkN "follow-through" "follow-throughs" ; -- compound rough_N ;
-lin breakthrough_N = mkN "breakthrough" "breakthroughs" ; -- compound rough_N ;
-lin borough_N = mkN "borough" "boroughs" ; -- compound rough_N ;
-lin gainsborough_N = mkN "gainsborough" "gainsboroughs" ; -- compound rough_N ;
-lin trough_N = mkN "trough" "troughs" ; -- notcompound rough_N ;
-lin tough_N = mkN "tough" "toughs" ;
-lin lakh_N = mkN "lakh" "lakhs" ;
-lin samekh_N = mkN "samekh" "samekhs" ;
-lin sheikh_N = mkN "sheikh" "sheikhs" ;
-lin sikh_N = mkN "sikh" "sikhs" ;
-lin pharaoh_N = mkN "pharaoh" "pharaohs" ;
-lin doh_N = mkN "doh" "dohs" ;
-lin kaph_N = mkN "kaph" "kaphs" ;
-lin paraph_N = mkN "paraph" "paraphs" ;
-lin seraph_N = mkN "seraph" "seraphs" ;
-lin graph_N = mkN "graph" "graphs" ;
-lin paragraph_N = mkN "paragraph" "paragraphs" ; -- compound graph_N ;
-lin telegraph_N = mkN "telegraph" "telegraphs" ; -- compound graph_N ;
-lin radiotelegraph_N = mkN "radiotelegraph" "radiotelegraphs" ; -- compound graph_N ;
-lin digraph_N = mkN "digraph" "digraphs" ; -- compound graph_N ;
-lin epigraph_N = mkN "epigraph" "epigraphs" ; -- compound graph_N ;
-lin ideograph_N = mkN "ideograph" "ideographs" ; -- compound graph_N ;
-lin mimeograph_N = mkN "mimeograph" "mimeographs" ; -- compound graph_N ;
-lin tachograph_N = mkN "tachograph" "tachographs" ; -- compound graph_N ;
-lin lithograph_N = mkN "lithograph" "lithographs" ; -- compound graph_N ;
-lin photolithograph_N = mkN "photolithograph" "photolithographs" ; -- compound graph_N ;
-lin biograph_N = mkN "biograph" "biographs" ; -- compound graph_N ;
-lin radiograph_N = mkN "radiograph" "radiographs" ; -- compound graph_N ;
-lin autoradiograph_N = mkN "autoradiograph" "autoradiographs" ; -- compound graph_N ;
-lin cardiograph_N = mkN "cardiograph" "cardiographs" ; -- compound graph_N ;
-lin echocardiograph_N = mkN "echocardiograph" "echocardiographs" ; -- compound graph_N ;
-lin electrocardiograph_N = mkN "electrocardiograph" "electrocardiographs" ; -- compound graph_N ;
-lin ballistocardiograph_N = mkN "ballistocardiograph" "ballistocardiographs" ; -- compound graph_N ;
-lin heliograph_N = mkN "heliograph" "heliographs" ; -- compound graph_N ;
-lin echoencephalograph_N = mkN "echoencephalograph" "echoencephalographs" ; -- compound graph_N ;
-lin electroencephalograph_N = mkN "electroencephalograph" "electroencephalographs" ; -- compound graph_N ;
-lin allograph_N = mkN "allograph" "allographs" ; -- compound graph_N ;
-lin oscillograph_N = mkN "oscillograph" "oscillographs" ; -- compound graph_N ;
-lin holograph_N = mkN "holograph" "holographs" ; -- compound graph_N ;
-lin homograph_N = mkN "homograph" "homographs" ; -- compound graph_N ;
-lin tomograph_N = mkN "tomograph" "tomographs" ; -- compound graph_N ;
-lin thermograph_N = mkN "thermograph" "thermographs" ; -- compound graph_N ;
-lin seismograph_N = mkN "seismograph" "seismographs" ; -- compound graph_N ;
-lin plethysmograph_N = mkN "plethysmograph" "plethysmographs" ; -- compound graph_N ;
-lin kymograph_N = mkN "kymograph" "kymographs" ; -- compound graph_N ;
-lin stenograph_N = mkN "stenograph" "stenographs" ; -- compound graph_N ;
-lin phonograph_N = mkN "phonograph" "phonographs" ; -- compound graph_N ;
-lin monograph_N = mkN "monograph" "monographs" ; -- compound graph_N ;
-lin chronograph_N = mkN "chronograph" "chronographs" ; -- compound graph_N ;
-lin sonograph_N = mkN "sonograph" "sonographs" ; -- compound graph_N ;
-lin barograph_N = mkN "barograph" "barographs" ; -- compound graph_N ;
-lin photomicrograph_N = mkN "photomicrograph" "photomicrographs" ; -- compound graph_N ;
-lin spirograph_N = mkN "spirograph" "spirographs" ; -- compound graph_N ;
-lin electrograph_N = mkN "electrograph" "electrographs" ; -- compound graph_N ;
-lin spectrograph_N = mkN "spectrograph" "spectrographs" ; -- compound graph_N ;
-lin pyrograph_N = mkN "pyrograph" "pyrographs" ; -- compound graph_N ;
-lin addressograph_N = mkN "addressograph" "addressographs" ; -- compound graph_N ;
-lin hectograph_N = mkN "hectograph" "hectographs" ; -- compound graph_N ;
-lin pictograph_N = mkN "pictograph" "pictographs" ; -- compound graph_N ;
-lin magnetograph_N = mkN "magnetograph" "magnetographs" ; -- compound graph_N ;
-lin pantograph_N = mkN "pantograph" "pantographs" ; -- compound graph_N ;
-lin photograph_N = mkN "photograph" "photographs" ; -- compound graph_N ;
-lin telephotograph_N = mkN "telephotograph" "telephotographs" ; -- compound graph_N ;
-lin radiophotograph_N = mkN "radiophotograph" "radiophotographs" ; -- compound graph_N ;
-lin cryptograph_N = mkN "cryptograph" "cryptographs" ; -- compound graph_N ;
-lin autograph_N = mkN "autograph" "autographs" ; -- compound graph_N ;
-lin electromyograph_N = mkN "electromyograph" "electromyographs" ; -- compound graph_N ;
-lin viewgraph_N = mkN "viewgraph" "viewgraphs" ; -- compound graph_N ;
-lin polygraph_N = mkN "polygraph" "polygraphs" ; -- compound graph_N ;
-lin epitaph_N = mkN "epitaph" "epitaphs" ;
-lin cenotaph_N = mkN "cenotaph" "cenotaphs" ;
-lin aleph_N = mkN "aleph" "alephs" ;
-lin caliph_N = mkN "caliph" "caliphs" ;
-lin sylph_N = mkN "sylph" "sylphs" ;
-lin oomph_N = mkN "oomph" "oomphs" ;
-lin triumph_N = mkN "triumph" "triumphs" ;
-lin lymph_N = mkN "lymph" "lymphs" ;
-lin perilymph_N = mkN "perilymph" "perilymphs" ; -- compound lymph_N ;
-lin endolymph_N = mkN "endolymph" "endolymphs" ; -- compound lymph_N ;
-lin karyolymph_N = mkN "karyolymph" "karyolymphs" ; -- compound lymph_N ;
-lin nymph_N = mkN "nymph" "nymphs" ;
-lin 'water-nymph_N' = mkN "water-nymph" "water-nymphs" ; -- compound nymph_N ;
-lin qoph_N = mkN "qoph" "qophs" ;
-lin heterotroph_N = mkN "heterotroph" "heterotrophs" ;
-lin morosoph_N = mkN "morosoph" "morosophs" ;
-lin endomorph_N = mkN "endomorph" "endomorphs" ;
-lin lagomorph_N = mkN "lagomorph" "lagomorphs" ;
-lin enantiomorph_N = mkN "enantiomorph" "enantiomorphs" ;
-lin allomorph_N = mkN "allomorph" "allomorphs" ;
-lin mesomorph_N = mkN "mesomorph" "mesomorphs" ;
-lin ectomorph_N = mkN "ectomorph" "ectomorphs" ;
-lin rhizomorph_N = mkN "rhizomorph" "rhizomorphs" ;
-lin polymorph_N = mkN "polymorph" "polymorphs" ;
-lin glyph_N = mkN "glyph" "glyphs" ;
-lin anaglyph_N = mkN "anaglyph" "anaglyphs" ; -- compound glyph_N ;
-lin hieroglyph_N = mkN "hieroglyph" "hieroglyphs" ; -- compound glyph_N ;
-lin petroglyph_N = mkN "petroglyph" "petroglyphs" ; -- compound glyph_N ;
-lin catarrh_N = mkN "catarrh" "catarrhs" ;
-lin myrrh_N = mkN "myrrh" "myrrhs" ;
-lin ash_N = mkN "ash" "ashes" ;
-lin bash_N = mkN "bash" "bashes" ; -- notcompound ash_N ;
-lin calabash_N = mkN "calabash" "calabashes" ; -- compound ash_N ;
-lin cash_N = mkN "cash" "cashes" ; -- notcompound ash_N ;
-lin dash_N = mkN "dash" "dashes" ; -- notcompound ash_N ;
-lin balderdash_N = mkN "balderdash" "balderdashes" ; -- compound ash_N ;
-lin leash_N = mkN "leash" "leashes" ; -- compound ash_N ;
-lin gash_N = mkN "gash" "gashes" ; -- notcompound ash_N ;
-lin hash_N = mkN "hash" "hashes" ; -- notcompound ash_N ;
-lin rehash_N = mkN "rehash" "rehashes" ; -- compound ash_N ;
-lin lash_N = mkN "lash" "lashes" ; -- notcompound ash_N ;
-lin calash_N = mkN "calash" "calashes" ; -- compound ash_N ;
-lin clash_N = mkN "clash" "clashes" ; -- notcompound ash_N ;
-lin whitelash_N = mkN "whitelash" "whitelashes" ; -- compound ash_N ;
-lin eyelash_N = mkN "eyelash" "eyelashes" ; -- compound ash_N ;
-lin flash_N = mkN "flash" "flashes" ; -- notcompound ash_N ;
-lin 'shoulder-flash_N' = mkN "shoulder-flash" "shoulder-flashes" ; -- compound ash_N ;
-lin 'heat-flash_N' = mkN "heat-flash" "heat-flashes" ; -- compound ash_N ;
-lin photoflash_N = mkN "photoflash" "photoflashes" ; -- compound ash_N ;
-lin newsflash_N = mkN "newsflash" "newsflashes" ; -- compound ash_N ;
-lin backlash_N = mkN "backlash" "backlashes" ; -- compound ash_N ;
-lin whiplash_N = mkN "whiplash" "whiplashes" ; -- compound ash_N ;
-lin splash_N = mkN "splash" "splashes" ; -- notcompound ash_N ;
-lin slash_N = mkN "slash" "slashes" ; -- notcompound ash_N ;
-lin goulash_N = mkN "goulash" "goulashes" ; -- compound ash_N ;
-lin mash_N = mkN "mash" "mashes" ; -- notcompound ash_N ;
-lin mishmash_N = mkN "mishmash" "mishmashes" ; -- compound ash_N ;
-lin smash_N = mkN "smash" "smashes" ; -- notcompound ash_N ;
-lin rash_N = mkN "rash" "rashes" ; -- notcompound ash_N ;
-lin crash_N = mkN "crash" "crashes" ; -- notcompound ash_N ;
-lin nettlerash_N = mkN "nettlerash" "nettlerashes" ; -- compound ash_N ;
-lin thrash_N = mkN "thrash" "thrashes" ; -- notcompound ash_N ;
-lin trash_N = mkN "trash" "trashes" ; -- notcompound ash_N ;
-lin sash_N = mkN "sash" "sashes" ; -- notcompound ash_N ;
-lin succotash_N = mkN "succotash" "succotashes" ; -- compound ash_N ;
-lin potash_N = mkN "potash" "potashes" ; -- compound ash_N ;
-lin musquash_N = mkN "musquash" "musquashes" ; -- compound ash_N ;
-lin wash_N = mkN "wash" "washes" ; -- notcompound ash_N ;
-lin 'color-wash_N' = mkN "color-wash" "color-washes" ; -- compound ash_N ;
-lin 'colour-wash_N' = mkN "colour-wash" "colour-washes" ; -- compound ash_N ;
-lin whitewash_N = mkN "whitewash" "whitewashes" ; -- compound ash_N ;
-lin eyewash_N = mkN "eyewash" "eyewashes" ; -- compound ash_N ;
-lin pigwash_N = mkN "pigwash" "pigwashes" ; -- compound ash_N ;
-lin hogwash_N = mkN "hogwash" "hogwashes" ; -- compound ash_N ;
-lin backwash_N = mkN "backwash" "backwashes" ; -- compound ash_N ;
-lin blackwash_N = mkN "blackwash" "blackwashes" ; -- compound ash_N ;
-lin swash_N = mkN "swash" "swashes" ; -- notcompound ash_N ;
-lin flesh_N = mkN "flesh" "fleshes" ;
-lin 'goose-flesh_N' = mkN "goose-flesh" "goose-fleshes" ; -- compound flesh_N ;
-lin horseflesh_N = mkN "horseflesh" "horsefleshes" ; -- compound flesh_N ;
-lin mesh_N = mkN "mesh" "meshes" ;
-lin synchromesh_N = mkN "synchromesh" "synchromeshes" ; -- compound mesh_N ;
-lin resh_N = mkN "resh" "reshes" ;
-lin Swedish_N = mkN "Swedish" "Swedes" ;
-lin nebbish_N = mkN "nebbish" "nebbishes" ;
-lin rubbish_N = mkN "rubbish" "rubbishes" ;
-lin dish_N = mkN "dish" "dishes" ;
-lin 'chafing dish_N' = mkN "chafing dish" "chafing dishes" ; -- compound dish_N ;
-lin 'side-dish_N' = mkN "side-dish" "side-dishes" ; -- compound dish_N ;
-lin radish_N = mkN "radish" "radishes" ; -- compound dish_N ;
-lin horseradish_N = mkN "horseradish" "horseradishes" ; -- compound dish_N ;
-lin yiddish_N = mkN "yiddish" "yiddishes" ; -- compound dish_N ;
-lin threadfish_N = mkN "threadfish" "threadfishes" ;
-lin toadfish_N = mkN "toadfish" "toadfishes" ;
-lin redfish_N = mkN "redfish" "redfishes" ;
-lin sandfish_N = mkN "sandfish" "sandfishes" ;
-lin groundfish_N = mkN "groundfish" "groundfishes" ;
-lin lizardfish_N = mkN "lizardfish" "lizardfishes" ;
-lin spadefish_N = mkN "spadefish" "spadefishes" ;
-lin paddlefish_N = mkN "paddlefish" "paddlefishes" ;
-lin needlefish_N = mkN "needlefish" "needlefishes" ;
-lin filefish_N = mkN "filefish" "filefishes" ;
-lin tilefish_N = mkN "tilefish" "tilefishes" ;
-lin cuttlefish_N = mkN "cuttlefish" "cuttlefishes" ;
-lin porcupinefish_N = mkN "porcupinefish" "porcupinefishes" ;
-lin bonefish_N = mkN "bonefish" "bonefishes" ;
-lin stonefish_N = mkN "stonefish" "stonefishes" ;
-lin snipefish_N = mkN "snipefish" "snipefishes" ;
-lin pipefish_N = mkN "pipefish" "pipefishes" ;
-lin goosefish_N = mkN "goosefish" "goosefishes" ;
-lin rosefish_N = mkN "rosefish" "rosefishes" ;
-lin whitefish_N = mkN "whitefish" "whitefishes" ;
-lin tonguefish_N = mkN "tonguefish" "tonguefishes" ;
-lin bluefish_N = mkN "bluefish" "bluefishes" ;
-lin wolffish_N = mkN "wolffish" "wolffishes" ;
-lin hagfish_N = mkN "hagfish" "hagfishes" ;
-lin flagfish_N = mkN "flagfish" "flagfishes" ;
-lin pigfish_N = mkN "pigfish" "pigfishes" ;
-lin kingfish_N = mkN "kingfish" "kingfishes" ;
-lin clingfish_N = mkN "clingfish" "clingfishes" ;
-lin lungfish_N = mkN "lungfish" "lungfishes" ;
-lin hogfish_N = mkN "hogfish" "hogfishes" ;
-lin frogfish_N = mkN "frogfish" "frogfishes" ;
-lin conchfish_N = mkN "conchfish" "conchfishes" ;
-lin killifish_N = mkN "killifish" "killifishes" ;
-lin weakfish_N = mkN "weakfish" "weakfishes" ;
-lin blackfish_N = mkN "blackfish" "blackfishes" ;
-lin rockfish_N = mkN "rockfish" "rockfishes" ;
-lin monkfish_N = mkN "monkfish" "monkfishes" ;
-lin porkfish_N = mkN "porkfish" "porkfishes" ;
-lin dealfish_N = mkN "dealfish" "dealfishes" ;
-lin cardinalfish_N = mkN "cardinalfish" "cardinalfishes" ;
-lin angelfish_N = mkN "angelfish" "angelfishes" ;
-lin barrelfish_N = mkN "barrelfish" "barrelfishes" ;
-lin squirrelfish_N = mkN "squirrelfish" "squirrelfishes" ;
-lin damselfish_N = mkN "damselfish" "damselfishes" ;
-lin snailfish_N = mkN "snailfish" "snailfishes" ;
-lin sailfish_N = mkN "sailfish" "sailfishes" ;
-lin oilfish_N = mkN "oilfish" "oilfishes" ;
-lin billfish_N = mkN "billfish" "billfishes" ;
-lin pearlfish_N = mkN "pearlfish" "pearlfishes" ;
-lin panfish_N = mkN "panfish" "panfishes" ;
-lin dolphinfish_N = mkN "dolphinfish" "dolphinfishes" ;
-lin pinfish_N = mkN "pinfish" "pinfishes" ;
-lin ribbonfish_N = mkN "ribbonfish" "ribbonfishes" ;
-lin surgeonfish_N = mkN "surgeonfish" "surgeonfishes" ;
-lin lionfish_N = mkN "lionfish" "lionfishes" ;
-lin scorpionfish_N = mkN "scorpionfish" "scorpionfishes" ;
-lin balloonfish_N = mkN "balloonfish" "balloonfishes" ;
-lin moonfish_N = mkN "moonfish" "moonfishes" ;
-lin lanternfish_N = mkN "lanternfish" "lanternfishes" ;
-lin buffalofish_N = mkN "buffalofish" "buffalofishes" ;
-lin mosquitofish_N = mkN "mosquitofish" "mosquitofishes" ;
-lin soapfish_N = mkN "soapfish" "soapfishes" ;
-lin shrimpfish_N = mkN "shrimpfish" "shrimpfishes" ;
-lin lumpfish_N = mkN "lumpfish" "lumpfishes" ;
-lin spearfish_N = mkN "spearfish" "spearfishes" ;
-lin dollarfish_N = mkN "dollarfish" "dollarfishes" ;
-lin oarfish_N = mkN "oarfish" "oarfishes" ;
-lin boarfish_N = mkN "boarfish" "boarfishes" ; -- notcompound oarfish_N ;
-lin guitarfish_N = mkN "guitarfish" "guitarfishes" ;
-lin rudderfish_N = mkN "rudderfish" "rudderfishes" ;
-lin triggerfish_N = mkN "triggerfish" "triggerfishes" ;
-lin archerfish_N = mkN "archerfish" "archerfishes" ;
-lin soldierfish_N = mkN "soldierfish" "soldierfishes" ;
-lin butterfish_N = mkN "butterfish" "butterfishes" ;
-lin silverfish_N = mkN "silverfish" "silverfishes" ;
-lin alligatorfish_N = mkN "alligatorfish" "alligatorfishes" ;
-lin doctorfish_N = mkN "doctorfish" "doctorfishes" ;
-lin burrfish_N = mkN "burrfish" "burrfishes" ;
-lin cutlassfish_N = mkN "cutlassfish" "cutlassfishes" ;
-lin batfish_N = mkN "batfish" "batfishes" ;
-lin goatfish_N = mkN "goatfish" "goatfishes" ;
-lin lancetfish_N = mkN "lancetfish" "lancetfishes" ;
-lin cornetfish_N = mkN "cornetfish" "cornetfishes" ;
-lin trumpetfish_N = mkN "trumpetfish" "trumpetfishes" ;
-lin driftfish_N = mkN "driftfish" "driftfishes" ;
-lin rabbitfish_N = mkN "rabbitfish" "rabbitfishes" ;
-lin pilotfish_N = mkN "pilotfish" "pilotfishes" ;
-lin parrotfish_N = mkN "parrotfish" "parrotfishes" ;
-lin harvestfish_N = mkN "harvestfish" "harvestfishes" ;
-lin jawfish_N = mkN "jawfish" "jawfishes" ;
-lin crawfish_N = mkN "crawfish" "crawfishes" ;
-lin sawfish_N = mkN "sawfish" "sawfishes" ;
-lin jewfish_N = mkN "jewfish" "jewfishes" ;
-lin cowfish_N = mkN "cowfish" "cowfishes" ;
-lin blowfish_N = mkN "blowfish" "blowfishes" ;
-lin boxfish_N = mkN "boxfish" "boxfishes" ;
-lin crayfish_N = mkN "crayfish" "crayfishes" ;
-lin ladyfish_N = mkN "ladyfish" "ladyfishes" ;
-lin hashish_N = mkN "hashish" "hashishes" ;
-lin Turkish_N = mkN "Turkish" "Turkishes" ;
-lin relish_N = mkN "relish" "relishes" ;
-lin English_N = mkN "English" "Englishes" ;
-lin Polish_N = mkN "Polish" "Polishes" ;
-lin polish_N = mkN "polish" "polishes" ;
-lin 'nail-polish_N' = mkN "nail-polish" "nail-polishes" ; -- compound polish_N ;
-lin blemish_N = mkN "blemish" "blemishes" ;
-lin flemish_N = mkN "flemish" "flemishes" ;
-lin skirmish_N = mkN "skirmish" "skirmishes" ;
-lin Danish_N = mkN "Danish" "Danishes" ;
-lin Spanish_N = mkN "Spanish" "Spanishes" ;
-lin finish_N = mkN "finish" "finishes" ;
-lin knish_N = mkN "knish" "knishes" ;
-lin Finnish_N = mkN "Finnish" "Finnishes" ;
-lin garnish_N = mkN "garnish" "garnishes" ;
-lin tarnish_N = mkN "tarnish" "tarnishes" ;
-lin varnish_N = mkN "varnish" "varnishes" ;
-lin 'nail-varnish_N' = mkN "nail-varnish" "nail-varnishes" ; -- compound varnish_N ;
-lin Irish_N = mkN "Irish" "Irishes" ;
-lin parish_N = mkN "parish" "parishes" ;
-lin gibberish_N = mkN "gibberish" "gibberishes" ;
-lin flourish_N = mkN "flourish" "flourishes" ;
-lin fetish_N = mkN "fetish" "fetishes" ;
-lin anguish_N = mkN "anguish" "anguishes" ;
-lin squish_N = mkN "squish" "squishes" ;
-lin dervish_N = mkN "dervish" "dervishes" ;
-lin wish_N = mkN "wish" "wishes" ;
-lin swish_N = mkN "swish" "swishes" ; -- notcompound wish_N ;
-lin welsh_N = mkN "welsh" "welshes" ;
-lin bosh_N = mkN "bosh" "boshes" ;
-lin cosh_N = mkN "cosh" "coshes" ;
-lin galosh_N = mkN "galosh" "galoshes" ;
-lin golosh_N = mkN "golosh" "goloshes" ;
-lin nosh_N = mkN "nosh" "noshes" ;
-lin tarboosh_N = mkN "tarboosh" "tarbooshes" ;
-lin swoosh_N = mkN "swoosh" "swooshes" ;
-lin tosh_N = mkN "tosh" "toshes" ;
-lin macintosh_N = mkN "macintosh" "macintoshes" ; -- compound tosh_N ;
-lin mackintosh_N = mkN "mackintosh" "mackintoshes" ; -- compound tosh_N ;
-lin marsh_N = mkN "marsh" "marshes" ;
-lin bush_N = mkN "bush" "bushes" ;
-lin spicebush_N = mkN "spicebush" "spicebushes" ; -- compound bush_N ;
-lin minniebush_N = mkN "minniebush" "minniebushes" ; -- compound bush_N ;
-lin needlebush_N = mkN "needlebush" "needlebushes" ; -- compound bush_N ;
-lin tanglebush_N = mkN "tanglebush" "tanglebushes" ; -- compound bush_N ;
-lin brittlebush_N = mkN "brittlebush" "brittlebushes" ; -- compound bush_N ;
-lin flannelbush_N = mkN "flannelbush" "flannelbushes" ; -- compound bush_N ;
-lin ambush_N = mkN "ambush" "ambushes" ; -- compound bush_N ;
-lin goldenbush_N = mkN "goldenbush" "goldenbushes" ; -- compound bush_N ;
-lin staggerbush_N = mkN "staggerbush" "staggerbushes" ; -- compound bush_N ;
-lin fetterbush_N = mkN "fetterbush" "fetterbushes" ; -- compound bush_N ;
-lin lawyerbush_N = mkN "lawyerbush" "lawyerbushes" ; -- compound bush_N ;
-lin saltbush_N = mkN "saltbush" "saltbushes" ; -- compound bush_N ;
-lin squawbush_N = mkN "squawbush" "squawbushes" ; -- compound bush_N ;
-lin daisybush_N = mkN "daisybush" "daisybushes" ; -- compound bush_N ;
-lin gush_N = mkN "gush" "gushes" ;
-lin hush_N = mkN "hush" "hushes" ;
-lin lush_N = mkN "lush" "lushes" ;
-lin blush_N = mkN "blush" "blushes" ; -- notcompound lush_N ;
-lin flush_N = mkN "flush" "flushes" ; -- notcompound lush_N ;
-lin plush_N = mkN "plush" "plushes" ; -- notcompound lush_N ;
-lin slush_N = mkN "slush" "slushes" ; -- notcompound lush_N ;
-lin mush_N = mkN "mush" "mushes" ;
-lin push_N = mkN "push" "pushes" ;
-lin 'bell-push_N' = mkN "bell-push" "bell-pushes" ; -- compound push_N ;
-lin rush_N = mkN "rush" "rushes" ;
-lin 'gold-rush_N' = mkN "gold-rush" "gold-rushes" ; -- compound rush_N ;
-lin brush_N = mkN "brush" "brushes" ; -- notcompound rush_N ;
-lin 'scrubbing-brush_N' = mkN "scrubbing-brush" "scrubbing-brushes" ; -- compound rush_N ;
-lin 'shaving-brush_N' = mkN "shaving-brush" "shaving-brushes" ; -- compound rush_N ;
-lin sagebrush_N = mkN "sagebrush" "sagebrushes" ; -- compound rush_N ;
-lin bottlebrush_N = mkN "bottlebrush" "bottlebrushes" ; -- compound rush_N ;
-lin toothbrush_N = mkN "toothbrush" "toothbrushes" ; -- compound rush_N ;
-lin nailbrush_N = mkN "nailbrush" "nailbrushes" ; -- compound rush_N ;
-lin underbrush_N = mkN "underbrush" "underbrushes" ; -- compound rush_N ;
-lin airbrush_N = mkN "airbrush" "airbrushes" ; -- compound rush_N ;
-lin hairbrush_N = mkN "hairbrush" "hairbrushes" ; -- compound rush_N ;
-lin clothesbrush_N = mkN "clothesbrush" "clothesbrushes" ; -- compound rush_N ;
-lin paintbrush_N = mkN "paintbrush" "paintbrushes" ; -- compound rush_N ;
-lin crush_N = mkN "crush" "crushes" ; -- notcompound rush_N ;
-lin thrush_N = mkN "thrush" "thrushes" ; -- notcompound rush_N ;
-lin bulrush_N = mkN "bulrush" "bulrushes" ; -- compound rush_N ;
-lin inrush_N = mkN "inrush" "inrushes" ; -- compound rush_N ;
-lin onrush_N = mkN "onrush" "onrushes" ; -- compound rush_N ;
-lin qurush_N = mkN "qurush" "qurushes" ; -- compound rush_N ;
-lin bath_N = mkN "bath" "baths" ;
-lin 'blood-bath_N' = mkN "blood-bath" "blood-baths" ; -- compound bath_N ;
-lin 'mud-bath_N' = mkN "mud-bath" "mud-baths" ; -- compound bath_N ;
-lin 'swimming-bath_N' = mkN "swimming-bath" "swimming-baths" ; -- compound bath_N ;
-lin 'hip-bath_N' = mkN "hip-bath" "hip-baths" ; -- compound bath_N ;
-lin 'shower-bath_N' = mkN "shower-bath" "shower-baths" ; -- compound bath_N ;
-lin 'vapour-bath_N' = mkN "vapour-bath" "vapour-baths" ; -- compound bath_N ;
-lin 'foot-bath_N' = mkN "foot-bath" "foot-baths" ; -- compound bath_N ;
-lin sabbath_N = mkN "sabbath" "sabbaths" ; -- compound bath_N ;
-lin bloodbath_N = mkN "bloodbath" "bloodbaths" ; -- compound bath_N ;
-lin birdbath_N = mkN "birdbath" "birdbaths" ; -- compound bath_N ;
-lin eyebath_N = mkN "eyebath" "eyebaths" ; -- compound bath_N ;
-lin footbath_N = mkN "footbath" "footbaths" ; -- compound bath_N ;
-lin death_N = mkN "death" "deaths" ;
-lin megadeath_N = mkN "megadeath" "megadeaths" ; -- compound death_N ;
-lin heath_N = mkN "heath" "heaths" ;
-lin sheath_N = mkN "sheath" "sheaths" ; -- notcompound heath_N ;
-lin breath_N = mkN "breath" "breaths" ;
-lin wreath_N = mkN "wreath" "wreaths" ;
-lin 'bay-wreath_N' = mkN "bay-wreath" "bay-wreaths" ; -- compound wreath_N ;
-lin goliath_N = mkN "goliath" "goliaths" ;
-lin lath_N = mkN "lath" "laths" ;
-lin philomath_N = mkN "philomath" "philomaths" ;
-lin aftermath_N = mkN "aftermath" "aftermaths" ;
-lin polymath_N = mkN "polymath" "polymaths" ;
-lin toxicognath_N = mkN "toxicognath" "toxicognaths" ;
-lin plectognath_N = mkN "plectognath" "plectognaths" ;
-lin oath_N = mkN "oath" "oaths" ;
-lin path_N = mkN "path" "paths" ;
-lin 'bridle-path_N' = mkN "bridle-path" "bridle-paths" ; -- compound path_N ;
-lin 'flare-path_N' = mkN "flare-path" "flare-paths" ; -- compound path_N ;
-lin 'towing-path_N' = mkN "towing-path" "towing-paths" ; -- compound path_N ;
-lin naprapath_N = mkN "naprapath" "naprapaths" ; -- compound path_N ;
-lin homeopath_N = mkN "homeopath" "homeopaths" ; -- compound path_N ;
-lin homoeopath_N = mkN "homoeopath" "homoeopaths" ; -- compound path_N ;
-lin osteopath_N = mkN "osteopath" "osteopaths" ; -- compound path_N ;
-lin psychopath_N = mkN "psychopath" "psychopaths" ; -- compound path_N ;
-lin sociopath_N = mkN "sociopath" "sociopaths" ; -- compound path_N ;
-lin naturopath_N = mkN "naturopath" "naturopaths" ; -- compound path_N ;
-lin warpath_N = mkN "warpath" "warpaths" ; -- compound path_N ;
-lin footpath_N = mkN "footpath" "footpaths" ; -- compound path_N ;
-lin towpath_N = mkN "towpath" "towpaths" ; -- compound path_N ;
-lin bypath_N = mkN "bypath" "bypaths" ; -- compound path_N ;
-lin wrath_N = mkN "wrath" "wraths" ;
-lin swath_N = mkN "swath" "swaths" ;
-lin breadth_N = mkN "breadth" "breadths" ;
-lin 'hair-breadth_N' = mkN "hair-breadth" "hair-breadths" ; -- compound breadth_N ;
-lin 'hair\'s-breadth_N' = mkN "hair's-breadth" "hair's-breadths" ; -- compound breadth_N ;
-lin handbreadth_N = mkN "handbreadth" "handbreadths" ; -- compound breadth_N ;
-lin width_N = mkN "width" "widths" ;
-lin bandwidth_N = mkN "bandwidth" "bandwidths" ; -- compound width_N ;
-lin beth_N = mkN "beth" "beths" ;
-lin heth_N = mkN "heth" "heths" ;
-lin daleth_N = mkN "daleth" "daleths" ;
-lin shibboleth_N = mkN "shibboleth" "shibboleths" ;
-lin teth_N = mkN "teth" "teths" ;
-lin length_N = mkN "length" "lengths" ;
-lin 'cable-length_N' = mkN "cable-length" "cable-lengths" ; -- compound length_N ;
-lin 'cable\'s-length_N' = mkN "cable's-length" "cable's-lengths" ; -- compound length_N ;
-lin wavelength_N = mkN "wavelength" "wavelengths" ; -- compound length_N ;
-lin strength_N = mkN "strength" "strengths" ;
-lin faith_N = mkN "faith" "faiths" ;
-lin wraith_N = mkN "wraith" "wraiths" ;
-lin kith_N = mkN "kith" "kiths" ;
-lin megalith_N = mkN "megalith" "megaliths" ;
-lin ptyalith_N = mkN "ptyalith" "ptyaliths" ;
-lin eolith_N = mkN "eolith" "eoliths" ;
-lin paleolith_N = mkN "paleolith" "paleoliths" ; -- compound eolith_N ;
-lin neolith_N = mkN "neolith" "neoliths" ; -- notcompound eolith_N ;
-lin batholith_N = mkN "batholith" "batholiths" ;
-lin sialolith_N = mkN "sialolith" "sialoliths" ;
-lin xenolith_N = mkN "xenolith" "xenoliths" ;
-lin monolith_N = mkN "monolith" "monoliths" ;
-lin enterolith_N = mkN "enterolith" "enteroliths" ;
-lin coprolith_N = mkN "coprolith" "coproliths" ;
-lin urolith_N = mkN "urolith" "uroliths" ;
-lin smith_N = mkN "smith" "smiths" ;
-lin goldsmith_N = mkN "goldsmith" "goldsmiths" ; -- compound smith_N ;
-lin wordsmith_N = mkN "wordsmith" "wordsmiths" ; -- compound smith_N ;
-lin blacksmith_N = mkN "blacksmith" "blacksmiths" ; -- compound smith_N ;
-lin locksmith_N = mkN "locksmith" "locksmiths" ; -- compound smith_N ;
-lin clocksmith_N = mkN "clocksmith" "clocksmiths" ; -- compound smith_N ;
-lin tinsmith_N = mkN "tinsmith" "tinsmiths" ; -- compound smith_N ;
-lin gunsmith_N = mkN "gunsmith" "gunsmiths" ; -- compound smith_N ;
-lin coppersmith_N = mkN "coppersmith" "coppersmiths" ; -- compound smith_N ;
-lin silversmith_N = mkN "silversmith" "silversmiths" ; -- compound smith_N ;
-lin arrowsmith_N = mkN "arrowsmith" "arrowsmiths" ; -- compound smith_N ;
-lin zenith_N = mkN "zenith" "zeniths" ;
-lin pith_N = mkN "pith" "piths" ;
-lin crith_N = mkN "crith" "criths" ;
-lin health_N = mkN "health" "healths" ;
-lin stealth_N = mkN "stealth" "stealths" ;
-lin wealth_N = mkN "wealth" "wealths" ;
-lin commonwealth_N = mkN "commonwealth" "commonwealths" ; -- compound wealth_N ;
-lin filth_N = mkN "filth" "filths" ;
-lin tilth_N = mkN "tilth" "tilths" ;
-lin warmth_N = mkN "warmth" "warmths" ;
-lin tragacanth_N = mkN "tragacanth" "tragacanths" ;
-lin coelacanth_N = mkN "coelacanth" "coelacanths" ;
-lin perianth_N = mkN "perianth" "perianths" ;
-lin amaranth_N = mkN "amaranth" "amaranths" ;
-lin tenth_N = mkN "tenth" "tenths" ;
-lin terebinth_N = mkN "terebinth" "terebinths" ;
-lin hyacinth_N = mkN "hyacinth" "hyacinths" ;
-lin waterhyacinth_N = mkN "waterhyacinth" "waterhyacinths" ; -- compound hyacinth_N ;
-lin plinth_N = mkN "plinth" "plinths" ;
-lin helminth_N = mkN "helminth" "helminths" ;
-lin ninth_N = mkN "ninth" "ninths" ;
-lin labyrinth_N = mkN "labyrinth" "labyrinths" ;
-lin absinth_N = mkN "absinth" "absinths" ;
-lin billionth_N = mkN "billionth" "billionths" ;
-lin millionth_N = mkN "millionth" "millionths" ;
-lin trillionth_N = mkN "trillionth" "trillionths" ;
-lin month_N = mkN "month" "months" ;
-lin twelvemonth_N = mkN "twelvemonth" "twelvemonths" ; -- compound month_N ;
-lin goth_N = mkN "goth" "goths" ;
-lin cloth_N = mkN "cloth" "cloths" ;
-lin 'tea-cloth_N' = mkN "tea-cloth" "tea-cloths" ; -- compound cloth_N ;
-lin 'face-cloth_N' = mkN "face-cloth" "face-cloths" ; -- compound cloth_N ;
-lin 'pilot-cloth_N' = mkN "pilot-cloth" "pilot-cloths" ; -- compound cloth_N ;
-lin 'tray-cloth_N' = mkN "tray-cloth" "tray-cloths" ; -- compound cloth_N ;
-lin broadcloth_N = mkN "broadcloth" "broadcloths" ; -- compound cloth_N ;
-lin tablecloth_N = mkN "tablecloth" "tablecloths" ; -- compound cloth_N ;
-lin cerecloth_N = mkN "cerecloth" "cerecloths" ; -- compound cloth_N ;
-lin cheesecloth_N = mkN "cheesecloth" "cheesecloths" ; -- compound cloth_N ;
-lin horsecloth_N = mkN "horsecloth" "horsecloths" ; -- compound cloth_N ;
-lin breechcloth_N = mkN "breechcloth" "breechcloths" ; -- compound cloth_N ;
-lin washcloth_N = mkN "washcloth" "washcloths" ; -- compound cloth_N ;
-lin dishcloth_N = mkN "dishcloth" "dishcloths" ; -- compound cloth_N ;
-lin backcloth_N = mkN "backcloth" "backcloths" ; -- compound cloth_N ;
-lin sackcloth_N = mkN "sackcloth" "sackcloths" ; -- compound cloth_N ;
-lin neckcloth_N = mkN "neckcloth" "neckcloths" ; -- compound cloth_N ;
-lin sailcloth_N = mkN "sailcloth" "sailcloths" ; -- compound cloth_N ;
-lin oilcloth_N = mkN "oilcloth" "oilcloths" ; -- compound cloth_N ;
-lin loincloth_N = mkN "loincloth" "loincloths" ; -- compound cloth_N ;
-lin haircloth_N = mkN "haircloth" "haircloths" ; -- compound cloth_N ;
-lin dustcloth_N = mkN "dustcloth" "dustcloths" ; -- compound cloth_N ;
-lin sloth_N = mkN "sloth" "sloths" ;
-lin moth_N = mkN "moth" "moths" ;
-lin 'clothes-moth_N' = mkN "clothes-moth" "clothes-moths" ; -- compound moth_N ;
-lin hawkmoth_N = mkN "hawkmoth" "hawkmoths" ; -- compound moth_N ;
-lin mammoth_N = mkN "mammoth" "mammoths" ; -- compound moth_N ;
-lin booth_N = mkN "booth" "booths" ;
-lin 'polling-booth_N' = mkN "polling-booth" "polling-booths" ; -- compound booth_N ;
-lin phonebooth_N = mkN "phonebooth" "phonebooths" ; -- compound booth_N ;
-lin tollbooth_N = mkN "tollbooth" "tollbooths" ; -- compound booth_N ;
-lin smooth_N = mkN "smooth" "smooths" ;
-lin sooth_N = mkN "sooth" "sooths" ;
-lin 'dog\'s-tooth_N' = mkN "dog's-tooth" "dog's-tooths" ;
-lin dogtooth_N = mkN "dogtooth" "dogtooths" ;
-lin sawtooth_N = mkN "sawtooth" "sawtooths" ;
-lin broth_N = mkN "broth" "broths" ;
-lin froth_N = mkN "froth" "froths" ;
-lin troth_N = mkN "troth" "troths" ;
-lin depth_N = mkN "depth" "depths" ;
-lin earth_N = mkN "earth" "earths" ;
-lin dearth_N = mkN "dearth" "dearths" ; -- notcompound earth_N ;
-lin hearth_N = mkN "hearth" "hearths" ; -- notcompound earth_N ;
-lin berth_N = mkN "berth" "berths" ;
-lin 'sick-berth_N' = mkN "sick-berth" "sick-berths" ; -- compound berth_N ;
-lin birth_N = mkN "birth" "births" ;
-lin 'live-birth_N' = mkN "live-birth" "live-births" ; -- compound birth_N ;
-lin childbirth_N = mkN "childbirth" "childbirths" ; -- compound birth_N ;
-lin rebirth_N = mkN "rebirth" "rebirths" ; -- compound birth_N ;
-lin stillbirth_N = mkN "stillbirth" "stillbirths" ; -- compound birth_N ;
-lin afterbirth_N = mkN "afterbirth" "afterbirths" ; -- compound birth_N ;
-lin firth_N = mkN "firth" "firths" ;
-lin girth_N = mkN "girth" "girths" ;
-lin mirth_N = mkN "mirth" "mirths" ;
-lin penn'orth_N = mkN "penn'orth" "penn'orths" ;
-lin ha'p'orth_N = mkN "ha'p'orth" "ha'p'orths" ;
-lin North_N = mkN "North" "Norths" ;
-lin worth_N = mkN "worth" "worths" ;
-lin pennyworth_N = mkN "pennyworth" "pennyworths" ; -- compound worth_N ;
-lin halfpennyworth_N = mkN "halfpennyworth" "halfpennyworths" ; -- compound worth_N ;
-lin musth_N = mkN "musth" "musths" ;
-lin sleuth_N = mkN "sleuth" "sleuths" ;
-lin azimuth_N = mkN "azimuth" "azimuths" ;
-lin altazimuth_N = mkN "altazimuth" "altazimuths" ; -- compound azimuth_N ;
-lin bismuth_N = mkN "bismuth" "bismuths" ;
-lin South_N = mkN "South" "Souths" ;
-lin mouth_N = mkN "mouth" "mouths" ;
-lin 'foot-and-mouth_N' = mkN "foot-and-mouth" "foot-and-mouths" ; -- compound mouth_N ;
-lin loudmouth_N = mkN "loudmouth" "loudmouths" ; -- compound mouth_N ;
-lin largemouth_N = mkN "largemouth" "largemouths" ; -- compound mouth_N ;
-lin frogmouth_N = mkN "frogmouth" "frogmouths" ; -- compound mouth_N ;
-lin goalmouth_N = mkN "goalmouth" "goalmouths" ; -- compound mouth_N ;
-lin smallmouth_N = mkN "smallmouth" "smallmouths" ; -- compound mouth_N ;
-lin blabbermouth_N = mkN "blabbermouth" "blabbermouths" ; -- compound mouth_N ;
-lin vermouth_N = mkN "vermouth" "vermouths" ; -- compound mouth_N ;
-lin motormouth_N = mkN "motormouth" "motormouths" ; -- compound mouth_N ;
-lin wrymouth_N = mkN "wrymouth" "wrymouths" ; -- compound mouth_N ;
-lin youth_N = mkN "youth" "youths" ;
-lin truth_N = mkN "truth" "truths" ;
-lin 'half-truth_N' = mkN "half-truth" "half-truths" ; -- compound truth_N ;
-lin untruth_N = mkN "untruth" "untruths" ; -- compound truth_N ;
-lin growth_N = mkN "growth" "growths" ;
-lin ingrowth_N = mkN "ingrowth" "ingrowths" ; -- compound growth_N ;
-lin undergrowth_N = mkN "undergrowth" "undergrowths" ; -- compound growth_N ;
-lin overgrowth_N = mkN "overgrowth" "overgrowths" ; -- compound growth_N ;
-lin outgrowth_N = mkN "outgrowth" "outgrowths" ; -- compound growth_N ;
-lin myth_N = mkN "myth" "myths" ;
-lin 'genius loci_N' = mkN "genius loci" "IRREG" ;
-lin 'modus operandi_N' = mkN "modus operandi" "IRREG" ;
-lin 'modus vivendi_N' = mkN "modus vivendi" "IRREG" ;
-lin 'fait accompli_N' = mkN "fait accompli" "IRREG" ;
-lin 'vox populi_N' = mkN "vox populi" "IRREG" ;
-lin mi_N = mkN "mi" "IRREG" ;
-lin 'decree nisi_N' = mkN "decree nisi" "IRREG" ;
-lin ti_N = mkN "ti" "IRREG" ;
-lin samurai_N = mkN "samurai" "samurai" ;
-lin 'casus belli_N' = mkN "casus belli" "casus belli" ;
-lin zucchini_N = mkN "zucchini" "zucchini" ;
-lin confetti_N = mkN "confetti" "confetti" ;
-lin assagai_N = mkN "assagai" "assagais" ;
-lin assegai_N = mkN "assegai" "assegais" ;
-lin nilgai_N = mkN "nilgai" "nilgais" ;
-lin thai_N = mkN "thai" "thais" ;
-lin kowhai_N = mkN "kowhai" "kowhais" ;
-lin salai_N = mkN "salai" "salais" ;
-lin lanai_N = mkN "lanai" "lanais" ;
-lin caravanserai_N = mkN "caravanserai" "caravanserais" ;
-lin bonsai_N = mkN "bonsai" "bonsais" ;
-lin matai_N = mkN "matai" "matais" ;
-lin chigetai_N = mkN "chigetai" "chigetais" ;
-lin banzai_N = mkN "banzai" "banzais" ;
-lin niqaabi_N = mkN "niqaabi" "niqaabis" ;
-lin kohlrabi_N = mkN "kohlrabi" "kohlrabis" ;
-lin wasabi_N = mkN "wasabi" "wasabis" ;
-lin tabi_N = mkN "tabi" "tabis" ;
-lin rabbi_N = mkN "rabbi" "rabbis" ;
-lin cbi_N = mkN "cbi" "cbis" ;
-lin alibi_N = mkN "alibi" "alibis" ;
-lin bilimbi_N = mkN "bilimbi" "bilimbis" ;
-lin zombi_N = mkN "zombi" "zombis" ;
-lin obi_N = mkN "obi" "obis" ;
-lin krubi_N = mkN "krubi" "krubis" ;
-lin khadi_N = mkN "khadi" "khadis" ;
-lin qadi_N = mkN "qadi" "qadis" ;
-lin wadi_N = mkN "wadi" "wadis" ;
-lin gaddi_N = mkN "gaddi" "gaddis" ;
-lin cedi_N = mkN "cedi" "cedis" ;
-lin garibaldi_N = mkN "garibaldi" "garibaldis" ;
-lin effendi_N = mkN "effendi" "effendis" ;
-lin hindi_N = mkN "hindi" "hindis" ;
-lin salmagundi_N = mkN "salmagundi" "salmagundis" ;
-lin barramundi_N = mkN "barramundi" "barramundis" ;
-lin jaguarundi_N = mkN "jaguarundi" "jaguarundis" ;
-lin lei_N = mkN "lei" "leis" ;
-lin lwei_N = mkN "lwei" "lweis" ;
-lin 'sci fi_N' = mkN "sci fi" "sci fis" ;
-lin 'hi-fi_N' = mkN "hi-fi" "hi-fis" ;
-lin naafi_N = mkN "naafi" "naafis" ;
-lin gi_N = mkN "gi" "gis" ;
-lin nagi_N = mkN "nagi" "nagis" ; -- compound gi_N ;
-lin yagi_N = mkN "yagi" "yagis" ; -- compound gi_N ;
-lin lungi_N = mkN "lungi" "lungis" ; -- compound gi_N ;
-lin shogi_N = mkN "shogi" "shogis" ; -- compound gi_N ;
-lin pirogi_N = mkN "pirogi" "pirogis" ; -- compound gi_N ;
-lin yogi_N = mkN "yogi" "yogis" ; -- compound gi_N ;
-lin corgi_N = mkN "corgi" "corgis" ; -- compound gi_N ;
-lin chi_N = mkN "chi" "chis" ;
-lin hibachi_N = mkN "hibachi" "hibachis" ; -- compound chi_N ;
-lin mariachi_N = mkN "mariachi" "mariachis" ; -- compound chi_N ;
-lin gnocchi_N = mkN "gnocchi" "gnocchis" ; -- compound chi_N ;
-lin chichi_N = mkN "chichi" "chichis" ; -- compound chi_N ;
-lin lichi_N = mkN "lichi" "lichis" ; -- compound chi_N ;
-lin pichi_N = mkN "pichi" "pichis" ; -- compound chi_N ;
-lin litchi_N = mkN "litchi" "litchis" ; -- compound chi_N ;
-lin sandhi_N = mkN "sandhi" "sandhis" ;
-lin phi_N = mkN "phi" "phis" ;
-lin bangladeshi_N = mkN "bangladeshi" "bangladeshis" ;
-lin sushi_N = mkN "sushi" "sushis" ;
-lin lathi_N = mkN "lathi" "lathis" ;
-lin aalii_N = mkN "aalii" "aaliis" ;
-lin hadji_N = mkN "hadji" "hadjis" ;
-lin hajji_N = mkN "hajji" "hajjis" ;
-lin basenji_N = mkN "basenji" "basenjis" ;
-lin shoji_N = mkN "shoji" "shojis" ;
-lin fuji_N = mkN "fuji" "fujis" ;
-lin khaki_N = mkN "khaki" "khakis" ;
-lin kaki_N = mkN "kaki" "kakis" ;
-lin souvlaki_N = mkN "souvlaki" "souvlakis" ;
-lin saki_N = mkN "saki" "sakis" ;
-lin sukiyaki_N = mkN "sukiyaki" "sukiyakis" ;
-lin teriyaki_N = mkN "teriyaki" "teriyakis" ;
-lin dashiki_N = mkN "dashiki" "dashikis" ;
-lin ski_N = mkN "ski" "skis" ;
-lin baronduki_N = mkN "baronduki" "barondukis" ;
-lin chilli_N = mkN "chilli" "chillies" ;
-lin li_N = mkN "li" "lis" ;
-lin bengali_N = mkN "bengali" "bengalis" ; -- compound li_N ;
-lin argali_N = mkN "argali" "argalis" ; -- compound li_N ;
-lin alkali_N = mkN "alkali" "alkalis" ; -- compound li_N ;
-lin Somali_N = mkN "Somali" "Somalis" ; -- compound li_N ;
-lin nepali_N = mkN "nepali" "nepalis" ; -- compound li_N ;
-lin israeli_N = mkN "israeli" "israelis" ; -- compound li_N ;
-lin swahili_N = mkN "swahili" "swahilis" ; -- compound li_N ;
-lin chili_N = mkN "chili" "chilis" ; -- compound li_N ;
-lin vermicelli_N = mkN "vermicelli" "vermicellis" ; -- compound li_N ;
-lin piccalilli_N = mkN "piccalilli" "piccalillis" ; -- compound li_N ;
-lin broccoli_N = mkN "broccoli" "broccolis" ; -- compound li_N ;
-lin aioli_N = mkN "aioli" "aiolis" ; -- compound li_N ;
-lin mostaccioli_N = mkN "mostaccioli" "mostacciolis" ; -- compound li_N ;
-lin ravioli_N = mkN "ravioli" "raviolis" ; -- compound li_N ;
-lin muesli_N = mkN "muesli" "mueslis" ; -- compound li_N ;
-lin douroucouli_N = mkN "douroucouli" "douroucoulis" ; -- compound li_N ;
-lin patchouli_N = mkN "patchouli" "patchoulis" ; -- compound li_N ;
-lin 'lapis lazuli_N' = mkN "lapis lazuli" "lapis lazulis" ; -- compound li_N ;
-lin nagami_N = mkN "nagami" "nagamis" ;
-lin origami_N = mkN "origami" "origamis" ;
-lin salami_N = mkN "salami" "salamis" ;
-lin tsunami_N = mkN "tsunami" "tsunamis" ;
-lin pastrami_N = mkN "pastrami" "pastramis" ;
-lin swami_N = mkN "swami" "swamis" ;
-lin elemi_N = mkN "elemi" "elemis" ;
-lin sashimi_N = mkN "sashimi" "sashimis" ;
-lin salmi_N = mkN "salmi" "salmis" ;
-lin marumi_N = mkN "marumi" "marumis" ;
-lin ani_N = mkN "ani" "anis" ;
-lin Afghani_N = mkN "Afghani" "Afghanis" ; -- notcompound ani_N ;
-lin omani_N = mkN "omani" "omanis" ; -- compound ani_N ;
-lin frangipani_N = mkN "frangipani" "frangipanis" ; -- compound ani_N ;
-lin rani_N = mkN "rani" "ranis" ; -- notcompound ani_N ;
-lin maharani_N = mkN "maharani" "maharanis" ; -- compound ani_N ;
-lin guarani_N = mkN "guarani" "guaranis" ; -- compound ani_N ;
-lin Pakistani_N = mkN "Pakistani" "Pakistanis" ; -- compound ani_N ;
-lin afghanistani_N = mkN "afghanistani" "afghanistanis" ; -- compound ani_N ;
-lin hindustani_N = mkN "hindustani" "hindustanis" ; -- compound ani_N ;
-lin bhutani_N = mkN "bhutani" "bhutanis" ; -- compound ani_N ;
-lin biryani_N = mkN "biryani" "biryanis" ; -- compound ani_N ;
-lin lilangeni_N = mkN "lilangeni" "lilangenis" ;
-lin yemeni_N = mkN "yemeni" "yemenis" ;
-lin bahraini_N = mkN "bahraini" "bahrainis" ;
-lin malahini_N = mkN "malahini" "malahinis" ;
-lin tahini_N = mkN "tahini" "tahinis" ;
-lin bikini_N = mkN "bikini" "bikinis" ;
-lin blini_N = mkN "blini" "blinis" ;
-lin tortellini_N = mkN "tortellini" "tortellinis" ;
-lin konini_N = mkN "konini" "koninis" ;
-lin martini_N = mkN "martini" "martinis" ;
-lin spaghettini_N = mkN "spaghettini" "spaghettinis" ;
-lin penni_N = mkN "penni" "pennis" ;
-lin cannelloni_N = mkN "cannelloni" "cannellonis" ;
-lin macaroni_N = mkN "macaroni" "macaronis" ;
-lin pepperoni_N = mkN "pepperoni" "pepperonis" ;
-lin rigatoni_N = mkN "rigatoni" "rigatonis" ;
-lin poi_N = mkN "poi" "pois" ;
-lin octroi_N = mkN "octroi" "octrois" ;
-lin envoi_N = mkN "envoi" "envois" ;
-lin borzoi_N = mkN "borzoi" "borzois" ;
-lin pi_N = mkN "pi" "pis" ;
-lin okapi_N = mkN "okapi" "okapis" ; -- compound pi_N ;
-lin kepi_N = mkN "kepi" "kepis" ; -- compound pi_N ;
-lin scampi_N = mkN "scampi" "scampis" ; -- compound pi_N ;
-lin topi_N = mkN "topi" "topis" ; -- compound pi_N ;
-lin qi_N = mkN "qi" "qis" ;
-lin iraqi_N = mkN "iraqi" "iraqis" ; -- compound qi_N ;
-lin safari_N = mkN "safari" "safaris" ;
-lin hegari_N = mkN "hegari" "hegaris" ;
-lin uakari_N = mkN "uakari" "uakaris" ;
-lin lari_N = mkN "lari" "laris" ;
-lin certiorari_N = mkN "certiorari" "certioraris" ;
-lin sari_N = mkN "sari" "saris" ;
-lin qatari_N = mkN "qatari" "qataris" ;
-lin mapinguari_N = mkN "mapinguari" "mapinguaris" ;
-lin souari_N = mkN "souari" "souaris" ;
-lin charivari_N = mkN "charivari" "charivaris" ;
-lin indri_N = mkN "indri" "indris" ;
-lin 'beri-beri_N' = mkN "beri-beri" "beri-beris" ;
-lin beriberi_N = mkN "beriberi" "beriberis" ;
-lin peri_N = mkN "peri" "peris" ;
-lin grigri_N = mkN "grigri" "grigris" ;
-lin 'hara-kiri_N' = mkN "hara-kiri" "hara-kiris" ;
-lin harakiri_N = mkN "harakiri" "harakiris" ;
-lin kashmiri_N = mkN "kashmiri" "kashmiris" ;
-lin cassiri_N = mkN "cassiri" "cassiris" ;
-lin daiquiri_N = mkN "daiquiri" "daiquiris" ;
-lin maori_N = mkN "maori" "maoris" ;
-lin satori_N = mkN "satori" "satoris" ;
-lin potpourri_N = mkN "potpourri" "potpourris" ;
-lin tetri_N = mkN "tetri" "tetris" ;
-lin kauri_N = mkN "kauri" "kauris" ;
-lin khukuri_N = mkN "khukuri" "khukuris" ;
-lin houri_N = mkN "houri" "houris" ;
-lin venturi_N = mkN "venturi" "venturis" ;
-lin dalasi_N = mkN "dalasi" "dalasis" ;
-lin sannyasi_N = mkN "sannyasi" "sannyasis" ;
-lin pachisi_N = mkN "pachisi" "pachisis" ;
-lin psi_N = mkN "psi" "psis" ;
-lin farsi_N = mkN "farsi" "farsis" ;
-lin jati_N = mkN "jati" "jatis" ;
-lin coati_N = mkN "coati" "coatis" ;
-lin jupati_N = mkN "jupati" "jupatis" ;
-lin literati_N = mkN "literati" "literatis" ;
-lin culturati_N = mkN "culturati" "culturatis" ;
-lin siswati_N = mkN "siswati" "siswatis" ;
-lin dti_N = mkN "dti" "dtis" ;
-lin spermaceti_N = mkN "spermaceti" "spermacetis" ;
-lin yeti_N = mkN "yeti" "yetis" ;
-lin shufti_N = mkN "shufti" "shuftis" ;
-lin mufti_N = mkN "mufti" "muftis" ;
-lin kuwaiti_N = mkN "kuwaiti" "kuwaitis" ;
-lin seniti_N = mkN "seniti" "senitis" ;
-lin wapiti_N = mkN "wapiti" "wapitis" ;
-lin titi_N = mkN "titi" "titis" ;
-lin ziti_N = mkN "ziti" "zitis" ;
-lin bhakti_N = mkN "bhakti" "bhaktis" ;
-lin bolti_N = mkN "bolti" "boltis" ;
-lin anti_N = mkN "anti" "antis" ;
-lin chianti_N = mkN "chianti" "chiantis" ; -- compound anti_N ;
-lin inti_N = mkN "inti" "intis" ;
-lin dhoti_N = mkN "dhoti" "dhotis" ;
-lin loti_N = mkN "loti" "lotis" ;
-lin ghatti_N = mkN "ghatti" "ghattis" ;
-lin chapatti_N = mkN "chapatti" "chapattis" ;
-lin spaghetti_N = mkN "spaghetti" "spaghettis" ;
-lin manicotti_N = mkN "manicotti" "manicottis" ;
-lin 'tutti-frutti_N' = mkN "tutti-frutti" "tutti-fruttis" ;
-lin agouti_N = mkN "agouti" "agoutis" ;
-lin ennui_N = mkN "ennui" "ennuis" ;
-lin jiqui_N = mkN "jiqui" "jiquis" ;
-lin etui_N = mkN "etui" "etuis" ;
-lin wi_N = mkN "wi" "wis" ;
-lin kiwi_N = mkN "kiwi" "kiwis" ; -- compound wi_N ;
-lin xi_N = mkN "xi" "xis" ;
-lin maxi_N = mkN "maxi" "maxis" ; -- compound xi_N ;
-lin taxi_N = mkN "taxi" "taxis" ; -- compound xi_N ;
-lin nazi_N = mkN "nazi" "nazis" ;
-lin swazi_N = mkN "swazi" "swazis" ;
-lin raj_N = mkN "raj" "IRREG" ;
-lin dj_N = mkN "dj" "djs" ;
-lin hajj_N = mkN "hajj" "hajjs" ;
-lin munj_N = mkN "munj" "munjs" ;
-lin outback_N = mkN "outback" "IRREG" ;
-lin haddock_N = mkN "haddock" "haddock" ;
-lin duck_N = mkN "duck" "duck" ;
-lin wk_N = mkN "wk" "wk" ;
-lin beak_N = mkN "beak" "beaks" ;
-lin halfbeak_N = mkN "halfbeak" "halfbeaks" ; -- compound beak_N ;
-lin grosbeak_N = mkN "grosbeak" "grosbeaks" ; -- compound beak_N ;
-lin leak_N = mkN "leak" "leaks" ;
-lin sneak_N = mkN "sneak" "sneaks" ;
-lin peak_N = mkN "peak" "peaks" ;
-lin doublespeak_N = mkN "doublespeak" "doublespeaks" ; -- compound peak_N ;
-lin doctorspeak_N = mkN "doctorspeak" "doctorspeaks" ; -- compound peak_N ;
-lin newspeak_N = mkN "newspeak" "newspeaks" ; -- compound peak_N ;
-lin break_N = mkN "break" "breaks" ;
-lin 'tea-break_N' = mkN "tea-break" "tea-breaks" ; -- compound break_N ;
-lin windbreak_N = mkN "windbreak" "windbreaks" ; -- compound break_N ;
-lin firebreak_N = mkN "firebreak" "firebreaks" ; -- compound break_N ;
-lin gaolbreak_N = mkN "gaolbreak" "gaolbreaks" ; -- compound break_N ;
-lin heartbreak_N = mkN "heartbreak" "heartbreaks" ; -- compound break_N ;
-lin outbreak_N = mkN "outbreak" "outbreaks" ; -- compound break_N ;
-lin daybreak_N = mkN "daybreak" "daybreaks" ; -- compound break_N ;
-lin creak_N = mkN "creak" "creaks" ;
-lin freak_N = mkN "freak" "freaks" ;
-lin streak_N = mkN "streak" "streaks" ;
-lin hairstreak_N = mkN "hairstreak" "hairstreaks" ; -- compound streak_N ;
-lin teak_N = mkN "teak" "teaks" ;
-lin steak_N = mkN "steak" "steaks" ; -- notcompound teak_N ;
-lin 'rump-steak_N' = mkN "rump-steak" "rump-steaks" ; -- compound teak_N ;
-lin beefsteak_N = mkN "beefsteak" "beefsteaks" ; -- compound teak_N ;
-lin squeak_N = mkN "squeak" "squeaks" ;
-lin pipsqueak_N = mkN "pipsqueak" "pipsqueaks" ; -- compound squeak_N ;
-lin tweak_N = mkN "tweak" "tweaks" ;
-lin dhak_N = mkN "dhak" "dhaks" ;
-lin flak_N = mkN "flak" "flaks" ;
-lin tokamak_N = mkN "tokamak" "tokamaks" ;
-lin yashmak_N = mkN "yashmak" "yashmaks" ;
-lin oak_N = mkN "oak" "oaks" ;
-lin 'holm-oak_N' = mkN "holm-oak" "holm-oaks" ; -- compound oak_N ;
-lin cloak_N = mkN "cloak" "cloaks" ; -- notcompound oak_N ;
-lin 'opera-cloak_N' = mkN "opera-cloak" "opera-cloaks" ; -- compound oak_N ;
-lin croak_N = mkN "croak" "croaks" ; -- notcompound oak_N ;
-lin soak_N = mkN "soak" "soaks" ; -- notcompound oak_N ;
-lin anorak_N = mkN "anorak" "anoraks" ;
-lin slovak_N = mkN "slovak" "slovaks" ;
-lin Czechoslovak_N = mkN "Czechoslovak" "Czechoslovaks" ; -- compound slovak_N ;
-lin yak_N = mkN "yak" "yaks" ;
-lin kayak_N = mkN "kayak" "kayaks" ; -- compound yak_N ;
-lin 'ack-ack_N' = mkN "ack-ack" "ack-acks" ;
-lin back_N = mkN "back" "backs" ;
-lin huckaback_N = mkN "huckaback" "huckabacks" ; -- compound back_N ;
-lin feedback_N = mkN "feedback" "feedbacks" ; -- compound back_N ;
-lin biofeedback_N = mkN "biofeedback" "biofeedbacks" ; -- compound back_N ;
-lin diamondback_N = mkN "diamondback" "diamondbacks" ; -- compound back_N ;
-lin hardback_N = mkN "hardback" "hardbacks" ; -- compound back_N ;
-lin dieback_N = mkN "dieback" "diebacks" ; -- compound back_N ;
-lin zwieback_N = mkN "zwieback" "zwiebacks" ; -- compound back_N ;
-lin saddleback_N = mkN "saddleback" "saddlebacks" ; -- compound back_N ;
-lin prickleback_N = mkN "prickleback" "pricklebacks" ; -- compound back_N ;
-lin stickleback_N = mkN "stickleback" "sticklebacks" ; -- compound back_N ;
-lin comeback_N = mkN "comeback" "comebacks" ; -- compound back_N ;
-lin horseback_N = mkN "horseback" "horsebacks" ; -- compound back_N ;
-lin halfback_N = mkN "halfback" "halfbacks" ; -- compound back_N ;
-lin slingback_N = mkN "slingback" "slingbacks" ; -- compound back_N ;
-lin wingback_N = mkN "wingback" "wingbacks" ; -- compound back_N ;
-lin hogback_N = mkN "hogback" "hogbacks" ; -- compound back_N ;
-lin hunchback_N = mkN "hunchback" "hunchbacks" ; -- compound back_N ;
-lin hatchback_N = mkN "hatchback" "hatchbacks" ; -- compound back_N ;
-lin touchback_N = mkN "touchback" "touchbacks" ; -- compound back_N ;
-lin flashback_N = mkN "flashback" "flashbacks" ; -- compound back_N ;
-lin kickback_N = mkN "kickback" "kickbacks" ; -- compound back_N ;
-lin tailback_N = mkN "tailback" "tailbacks" ; -- compound back_N ;
-lin rollback_N = mkN "rollback" "rollbacks" ; -- compound back_N ;
-lin fullback_N = mkN "fullback" "fullbacks" ; -- compound back_N ;
-lin pullback_N = mkN "pullback" "pullbacks" ; -- compound back_N ;
-lin greenback_N = mkN "greenback" "greenbacks" ; -- compound back_N ;
-lin finback_N = mkN "finback" "finbacks" ; -- compound back_N ;
-lin humpback_N = mkN "humpback" "humpbacks" ; -- compound back_N ;
-lin cornerback_N = mkN "cornerback" "cornerbacks" ; -- compound back_N ;
-lin paperback_N = mkN "paperback" "paperbacks" ; -- compound back_N ;
-lin quarterback_N = mkN "quarterback" "quarterbacks" ; -- compound back_N ;
-lin silverback_N = mkN "silverback" "silverbacks" ; -- compound back_N ;
-lin razorback_N = mkN "razorback" "razorbacks" ; -- compound back_N ;
-lin canvasback_N = mkN "canvasback" "canvasbacks" ; -- compound back_N ;
-lin mossback_N = mkN "mossback" "mossbacks" ; -- compound back_N ;
-lin fatback_N = mkN "fatback" "fatbacks" ; -- compound back_N ;
-lin setback_N = mkN "setback" "setbacks" ; -- compound back_N ;
-lin cutback_N = mkN "cutback" "cutbacks" ; -- compound back_N ;
-lin clawback_N = mkN "clawback" "clawbacks" ; -- compound back_N ;
-lin drawback_N = mkN "drawback" "drawbacks" ; -- compound back_N ;
-lin blowback_N = mkN "blowback" "blowbacks" ; -- compound back_N ;
-lin throwback_N = mkN "throwback" "throwbacks" ; -- compound back_N ;
-lin playback_N = mkN "playback" "playbacks" ; -- compound back_N ;
-lin payback_N = mkN "payback" "paybacks" ; -- compound back_N ;
-lin greyback_N = mkN "greyback" "greybacks" ; -- compound back_N ;
-lin piggyback_N = mkN "piggyback" "piggybacks" ; -- compound back_N ;
-lin hack_N = mkN "hack" "hacks" ;
-lin shack_N = mkN "shack" "shacks" ; -- notcompound hack_N ;
-lin whack_N = mkN "whack" "whacks" ; -- notcompound hack_N ;
-lin jack_N = mkN "jack" "jacks" ;
-lin steeplejack_N = mkN "steeplejack" "steeplejacks" ; -- compound jack_N ;
-lin applejack_N = mkN "applejack" "applejacks" ; -- compound jack_N ;
-lin supplejack_N = mkN "supplejack" "supplejacks" ; -- compound jack_N ;
-lin highjack_N = mkN "highjack" "highjacks" ; -- compound jack_N ;
-lin hijack_N = mkN "hijack" "hijacks" ; -- compound jack_N ;
-lin blackjack_N = mkN "blackjack" "blackjacks" ; -- compound jack_N ;
-lin cheapjack_N = mkN "cheapjack" "cheapjacks" ; -- compound jack_N ;
-lin flapjack_N = mkN "flapjack" "flapjacks" ; -- compound jack_N ;
-lin skipjack_N = mkN "skipjack" "skipjacks" ; -- compound jack_N ;
-lin amberjack_N = mkN "amberjack" "amberjacks" ; -- compound jack_N ;
-lin lumberjack_N = mkN "lumberjack" "lumberjacks" ; -- compound jack_N ;
-lin natterjack_N = mkN "natterjack" "natterjacks" ; -- compound jack_N ;
-lin crossjack_N = mkN "crossjack" "crossjacks" ; -- compound jack_N ;
-lin bootjack_N = mkN "bootjack" "bootjacks" ; -- compound jack_N ;
-lin lack_N = mkN "lack" "lacks" ;
-lin black_N = mkN "black" "blacks" ; -- notcompound lack_N ;
-lin 'lamp-black_N' = mkN "lamp-black" "lamp-blacks" ; -- compound lack_N ;
-lin shoeblack_N = mkN "shoeblack" "shoeblacks" ; -- compound lack_N ;
-lin bootblack_N = mkN "bootblack" "bootblacks" ; -- compound lack_N ;
-lin clack_N = mkN "clack" "clacks" ; -- notcompound lack_N ;
-lin pollack_N = mkN "pollack" "pollacks" ; -- compound lack_N ;
-lin polack_N = mkN "polack" "polacks" ; -- compound lack_N ;
-lin slack_N = mkN "slack" "slacks" ; -- notcompound lack_N ;
-lin smack_N = mkN "smack" "smacks" ;
-lin knack_N = mkN "knack" "knacks" ;
-lin 'knick-knack_N' = mkN "knick-knack" "knick-knacks" ; -- compound knack_N ;
-lin nicknack_N = mkN "nicknack" "nicknacks" ; -- compound knack_N ;
-lin knickknack_N = mkN "knickknack" "knickknacks" ; -- compound knack_N ;
-lin snack_N = mkN "snack" "snacks" ;
-lin pack_N = mkN "pack" "packs" ;
-lin 'face-pack_N' = mkN "face-pack" "face-packs" ; -- compound pack_N ;
-lin icepack_N = mkN "icepack" "icepacks" ; -- compound pack_N ;
-lin backpack_N = mkN "backpack" "backpacks" ; -- compound pack_N ;
-lin rack_N = mkN "rack" "racks" ;
-lin 'luggage-rack_N' = mkN "luggage-rack" "luggage-racks" ; -- compound rack_N ;
-lin 'pipe-rack_N' = mkN "pipe-rack" "pipe-racks" ; -- compound rack_N ;
-lin 'plate-rack_N' = mkN "plate-rack" "plate-racks" ; -- compound rack_N ;
-lin 'towel-rack_N' = mkN "towel-rack" "towel-racks" ; -- compound rack_N ;
-lin barmbrack_N = mkN "barmbrack" "barmbracks" ; -- compound rack_N ;
-lin crack_N = mkN "crack" "cracks" ; -- notcompound rack_N ;
-lin wisecrack_N = mkN "wisecrack" "wisecracks" ; -- compound rack_N ;
-lin hitchrack_N = mkN "hitchrack" "hitchracks" ; -- compound rack_N ;
-lin rickrack_N = mkN "rickrack" "rickracks" ; -- compound rack_N ;
-lin arrack_N = mkN "arrack" "arracks" ; -- compound rack_N ;
-lin barrack_N = mkN "barrack" "barracks" ; -- compound rack_N ;
-lin carrack_N = mkN "carrack" "carracks" ; -- compound rack_N ;
-lin track_N = mkN "track" "tracks" ; -- notcompound rack_N ;
-lin 'half-track_N' = mkN "half-track" "half-tracks" ; -- compound rack_N ;
-lin 'cinder-track_N' = mkN "cinder-track" "cinder-tracks" ; -- compound rack_N ;
-lin 'cart-track_N' = mkN "cart-track" "cart-tracks" ; -- compound rack_N ;
-lin 'dirt-track_N' = mkN "dirt-track" "dirt-tracks" ; -- compound rack_N ;
-lin coatrack_N = mkN "coatrack" "coatracks" ; -- compound rack_N ;
-lin soundtrack_N = mkN "soundtrack" "soundtracks" ; -- compound rack_N ;
-lin racetrack_N = mkN "racetrack" "racetracks" ; -- compound rack_N ;
-lin sidetrack_N = mkN "sidetrack" "sidetracks" ; -- compound rack_N ;
-lin toastrack_N = mkN "toastrack" "toastracks" ; -- compound rack_N ;
-lin wrack_N = mkN "wrack" "wracks" ; -- notcompound rack_N ;
-lin bladderwrack_N = mkN "bladderwrack" "bladderwracks" ; -- compound rack_N ;
-lin hayrack_N = mkN "hayrack" "hayracks" ; -- compound rack_N ;
-lin sack_N = mkN "sack" "sacks" ;
-lin rucksack_N = mkN "rucksack" "rucksacks" ; -- compound sack_N ;
-lin knapsack_N = mkN "knapsack" "knapsacks" ; -- compound sack_N ;
-lin gripsack_N = mkN "gripsack" "gripsacks" ; -- compound sack_N ;
-lin haversack_N = mkN "haversack" "haversacks" ; -- compound sack_N ;
-lin gunnysack_N = mkN "gunnysack" "gunnysacks" ; -- compound sack_N ;
-lin tack_N = mkN "tack" "tacks" ;
-lin thumbtack_N = mkN "thumbtack" "thumbtacks" ; -- compound tack_N ;
-lin hardtack_N = mkN "hardtack" "hardtacks" ; -- compound tack_N ;
-lin ticktack_N = mkN "ticktack" "ticktacks" ; -- compound tack_N ;
-lin tintack_N = mkN "tintack" "tintacks" ; -- compound tack_N ;
-lin stack_N = mkN "stack" "stacks" ; -- notcompound tack_N ;
-lin smokestack_N = mkN "smokestack" "smokestacks" ; -- compound tack_N ;
-lin haystack_N = mkN "haystack" "haystacks" ; -- compound tack_N ;
-lin chimneystack_N = mkN "chimneystack" "chimneystacks" ; -- compound tack_N ;
-lin attack_N = mkN "attack" "attacks" ; -- compound tack_N ;
-lin counterattack_N = mkN "counterattack" "counterattacks" ; -- compound tack_N ;
-lin quack_N = mkN "quack" "quacks" ;
-lin 'quack-quack_N' = mkN "quack-quack" "quack-quacks" ; -- compound quack_N ;
-lin thwack_N = mkN "thwack" "thwacks" ;
-lin beck_N = mkN "beck" "becks" ;
-lin pinchbeck_N = mkN "pinchbeck" "pinchbecks" ; -- compound beck_N ;
-lin deck_N = mkN "deck" "decks" ;
-lin 'quarter-deck_N' = mkN "quarter-deck" "quarter-decks" ; -- compound deck_N ;
-lin foredeck_N = mkN "foredeck" "foredecks" ; -- compound deck_N ;
-lin afterdeck_N = mkN "afterdeck" "afterdecks" ; -- compound deck_N ;
-lin quarterdeck_N = mkN "quarterdeck" "quarterdecks" ; -- compound deck_N ;
-lin heck_N = mkN "heck" "hecks" ;
-lin check_N = mkN "check" "checks" ; -- notcompound heck_N ;
-lin countercheck_N = mkN "countercheck" "counterchecks" ; -- compound heck_N ;
-lin crosscheck_N = mkN "crosscheck" "crosschecks" ; -- compound heck_N ;
-lin paycheck_N = mkN "paycheck" "paychecks" ; -- compound heck_N ;
-lin fleck_N = mkN "fleck" "flecks" ;
-lin neck_N = mkN "neck" "necks" ;
-lin 'bull-neck_N' = mkN "bull-neck" "bull-necks" ; -- compound neck_N ;
-lin 'crew-neck_N' = mkN "crew-neck" "crew-necks" ; -- compound neck_N ;
-lin redneck_N = mkN "redneck" "rednecks" ; -- compound neck_N ;
-lin fiddleneck_N = mkN "fiddleneck" "fiddlenecks" ; -- compound neck_N ;
-lin turtleneck_N = mkN "turtleneck" "turtlenecks" ; -- compound neck_N ;
-lin littleneck_N = mkN "littleneck" "littlenecks" ; -- compound neck_N ;
-lin bottleneck_N = mkN "bottleneck" "bottlenecks" ; -- compound neck_N ;
-lin gooseneck_N = mkN "gooseneck" "goosenecks" ; -- compound neck_N ;
-lin roughneck_N = mkN "roughneck" "roughnecks" ; -- compound neck_N ;
-lin crookneck_N = mkN "crookneck" "crooknecks" ; -- compound neck_N ;
-lin rubberneck_N = mkN "rubberneck" "rubbernecks" ; -- compound neck_N ;
-lin leatherneck_N = mkN "leatherneck" "leathernecks" ; -- compound neck_N ;
-lin wryneck_N = mkN "wryneck" "wrynecks" ; -- compound neck_N ;
-lin peck_N = mkN "peck" "pecks" ;
-lin copeck_N = mkN "copeck" "copecks" ; -- compound peck_N ;
-lin kopeck_N = mkN "kopeck" "kopecks" ; -- compound peck_N ;
-lin speck_N = mkN "speck" "specks" ; -- notcompound peck_N ;
-lin flyspeck_N = mkN "flyspeck" "flyspecks" ; -- compound peck_N ;
-lin wreck_N = mkN "wreck" "wrecks" ;
-lin shipwreck_N = mkN "shipwreck" "shipwrecks" ; -- compound wreck_N ;
-lin dick_N = mkN "dick" "dicks" ;
-lin benedick_N = mkN "benedick" "benedicks" ; -- compound dick_N ;
-lin hick_N = mkN "hick" "hicks" ;
-lin chick_N = mkN "chick" "chicks" ; -- notcompound hick_N ;
-lin 'pea-chick_N' = mkN "pea-chick" "pea-chicks" ; -- compound hick_N ;
-lin peachick_N = mkN "peachick" "peachicks" ; -- compound hick_N ;
-lin dabchick_N = mkN "dabchick" "dabchicks" ; -- compound hick_N ;
-lin thick_N = mkN "thick" "thicks" ; -- notcompound hick_N ;
-lin kick_N = mkN "kick" "kicks" ;
-lin 'goal-kick_N' = mkN "goal-kick" "goal-kicks" ; -- compound kick_N ;
-lin 'drop-kick_N' = mkN "drop-kick" "drop-kicks" ; -- compound kick_N ;
-lin 'corner-kick_N' = mkN "corner-kick" "corner-kicks" ; -- compound kick_N ;
-lin dropkick_N = mkN "dropkick" "dropkicks" ; -- compound kick_N ;
-lin lick_N = mkN "lick" "licks" ;
-lin 'salt-lick_N' = mkN "salt-lick" "salt-licks" ; -- compound lick_N ;
-lin niblick_N = mkN "niblick" "niblicks" ; -- compound lick_N ;
-lin click_N = mkN "click" "clicks" ; -- notcompound lick_N ;
-lin flick_N = mkN "flick" "flicks" ; -- notcompound lick_N ;
-lin slick_N = mkN "slick" "slicks" ; -- notcompound lick_N ;
-lin 'oil-slick_N' = mkN "oil-slick" "oil-slicks" ; -- compound lick_N ;
-lin cowlick_N = mkN "cowlick" "cowlicks" ; -- compound lick_N ;
-lin gimmick_N = mkN "gimmick" "gimmicks" ;
-lin nick_N = mkN "nick" "nicks" ;
-lin snick_N = mkN "snick" "snicks" ; -- notcompound nick_N ;
-lin pick_N = mkN "pick" "picks" ;
-lin icepick_N = mkN "icepick" "icepicks" ; -- compound pick_N ;
-lin toothpick_N = mkN "toothpick" "toothpicks" ; -- compound pick_N ;
-lin rick_N = mkN "rick" "ricks" ;
-lin brick_N = mkN "brick" "bricks" ; -- notcompound rick_N ;
-lin goldbrick_N = mkN "goldbrick" "goldbricks" ; -- compound rick_N ;
-lin firebrick_N = mkN "firebrick" "firebricks" ; -- compound rick_N ;
-lin crick_N = mkN "crick" "cricks" ; -- notcompound rick_N ;
-lin limerick_N = mkN "limerick" "limericks" ; -- compound rick_N ;
-lin maverick_N = mkN "maverick" "mavericks" ; -- compound rick_N ;
-lin prick_N = mkN "prick" "pricks" ; -- notcompound rick_N ;
-lin pinprick_N = mkN "pinprick" "pinpricks" ; -- compound rick_N ;
-lin derrick_N = mkN "derrick" "derricks" ; -- compound rick_N ;
-lin trick_N = mkN "trick" "tricks" ; -- notcompound rick_N ;
-lin wrick_N = mkN "wrick" "wricks" ; -- notcompound rick_N ;
-lin hayrick_N = mkN "hayrick" "hayricks" ; -- compound rick_N ;
-lin sick_N = mkN "sick" "sicks" ;
-lin tick_N = mkN "tick" "ticks" ;
-lin bluetick_N = mkN "bluetick" "blueticks" ; -- compound tick_N ;
-lin downtick_N = mkN "downtick" "downticks" ; -- compound tick_N ;
-lin uptick_N = mkN "uptick" "upticks" ; -- compound tick_N ;
-lin stick_N = mkN "stick" "sticks" ; -- notcompound tick_N ;
-lin 'swizzle-stick_N' = mkN "swizzle-stick" "swizzle-sticks" ; -- compound tick_N ;
-lin 'shooting-stick_N' = mkN "shooting-stick" "shooting-sticks" ; -- compound tick_N ;
-lin 'joss-stick_N' = mkN "joss-stick" "joss-sticks" ; -- compound tick_N ;
-lin 'joy-stick_N' = mkN "joy-stick" "joy-sticks" ; -- compound tick_N ;
-lin breadstick_N = mkN "breadstick" "breadsticks" ; -- compound tick_N ;
-lin yardstick_N = mkN "yardstick" "yardsticks" ; -- compound tick_N ;
-lin swordstick_N = mkN "swordstick" "swordsticks" ; -- compound tick_N ;
-lin fiddlestick_N = mkN "fiddlestick" "fiddlesticks" ; -- compound tick_N ;
-lin candlestick_N = mkN "candlestick" "candlesticks" ; -- compound tick_N ;
-lin singlestick_N = mkN "singlestick" "singlesticks" ; -- compound tick_N ;
-lin matchstick_N = mkN "matchstick" "matchsticks" ; -- compound tick_N ;
-lin maulstick_N = mkN "maulstick" "maulsticks" ; -- compound tick_N ;
-lin broomstick_N = mkN "broomstick" "broomsticks" ; -- compound tick_N ;
-lin drumstick_N = mkN "drumstick" "drumsticks" ; -- compound tick_N ;
-lin slapstick_N = mkN "slapstick" "slapsticks" ; -- compound tick_N ;
-lin dipstick_N = mkN "dipstick" "dipsticks" ; -- compound tick_N ;
-lin lipstick_N = mkN "lipstick" "lipsticks" ; -- compound tick_N ;
-lin chopstick_N = mkN "chopstick" "chopsticks" ; -- compound tick_N ;
-lin meterstick_N = mkN "meterstick" "metersticks" ; -- compound tick_N ;
-lin joystick_N = mkN "joystick" "joysticks" ; -- compound tick_N ;
-lin quick_N = mkN "quick" "quicks" ;
-lin wick_N = mkN "wick" "wicks" ;
-lin candlewick_N = mkN "candlewick" "candlewicks" ; -- compound wick_N ;
-lin bailiwick_N = mkN "bailiwick" "bailiwicks" ; -- compound wick_N ;
-lin cottonwick_N = mkN "cottonwick" "cottonwicks" ; -- compound wick_N ;
-lin bock_N = mkN "bock" "bocks" ;
-lin cock_N = mkN "cock" "cocks" ;
-lin peacock_N = mkN "peacock" "peacocks" ; -- compound cock_N ;
-lin woodcock_N = mkN "woodcock" "woodcocks" ; -- compound cock_N ;
-lin shuttlecock_N = mkN "shuttlecock" "shuttlecocks" ; -- compound cock_N ;
-lin gamecock_N = mkN "gamecock" "gamecocks" ; -- compound cock_N ;
-lin spatchcock_N = mkN "spatchcock" "spatchcocks" ; -- compound cock_N ;
-lin blackcock_N = mkN "blackcock" "blackcocks" ; -- compound cock_N ;
-lin ballcock_N = mkN "ballcock" "ballcocks" ; -- compound cock_N ;
-lin turncock_N = mkN "turncock" "turncocks" ; -- compound cock_N ;
-lin stopcock_N = mkN "stopcock" "stopcocks" ; -- compound cock_N ;
-lin weathercock_N = mkN "weathercock" "weathercocks" ; -- compound cock_N ;
-lin moorcock_N = mkN "moorcock" "moorcocks" ; -- compound cock_N ;
-lin petcock_N = mkN "petcock" "petcocks" ; -- compound cock_N ;
-lin haycock_N = mkN "haycock" "haycocks" ; -- compound cock_N ;
-lin poppycock_N = mkN "poppycock" "poppycocks" ; -- compound cock_N ;
-lin dock_N = mkN "dock" "docks" ;
-lin 'graving dock_N' = mkN "graving dock" "graving docks" ; -- compound dock_N ;
-lin 'finnan haddock_N' = mkN "finnan haddock" "finnan haddocks" ; -- compound dock_N ;
-lin shaddock_N = mkN "shaddock" "shaddocks" ; -- compound dock_N ;
-lin paddock_N = mkN "paddock" "paddocks" ; -- compound dock_N ;
-lin piddock_N = mkN "piddock" "piddocks" ; -- compound dock_N ;
-lin spatterdock_N = mkN "spatterdock" "spatterdocks" ; -- compound dock_N ;
-lin airdock_N = mkN "airdock" "airdocks" ; -- compound dock_N ;
-lin burdock_N = mkN "burdock" "burdocks" ; -- compound dock_N ;
-lin hock_N = mkN "hock" "hocks" ;
-lin chock_N = mkN "chock" "chocks" ; -- notcompound hock_N ;
-lin shock_N = mkN "shock" "shocks" ; -- notcompound hock_N ;
-lin 'shell-shock_N' = mkN "shell-shock" "shell-shocks" ; -- compound hock_N ;
-lin foreshock_N = mkN "foreshock" "foreshocks" ; -- compound hock_N ;
-lin aftershock_N = mkN "aftershock" "aftershocks" ; -- compound hock_N ;
-lin hollyhock_N = mkN "hollyhock" "hollyhocks" ; -- compound hock_N ;
-lin lock_N = mkN "lock" "locks" ;
-lin 'combination-lock_N' = mkN "combination-lock" "combination-locks" ; -- compound lock_N ;
-lin 'safety-lock_N' = mkN "safety-lock" "safety-locks" ; -- compound lock_N ;
-lin block_N = mkN "block" "blocks" ; -- notcompound lock_N ;
-lin 'wood-block_N' = mkN "wood-block" "wood-blocks" ; -- compound lock_N ;
-lin 'office-block_N' = mkN "office-block" "office-blocks" ; -- compound lock_N ;
-lin 'scribbling-block_N' = mkN "scribbling-block" "scribbling-blocks" ; -- compound lock_N ;
-lin 'stumbling-block_N' = mkN "stumbling-block" "stumbling-blocks" ; -- compound lock_N ;
-lin 'breech-block_N' = mkN "breech-block" "breech-blocks" ; -- compound lock_N ;
-lin 'sketch-block_N' = mkN "sketch-block" "sketch-blocks" ; -- compound lock_N ;
-lin 'tower-block_N' = mkN "tower-block" "tower-blocks" ; -- compound lock_N ;
-lin 'pulley-block_N' = mkN "pulley-block" "pulley-blocks" ; -- compound lock_N ;
-lin roadblock_N = mkN "roadblock" "roadblocks" ; -- compound lock_N ;
-lin breechblock_N = mkN "breechblock" "breechblocks" ; -- compound lock_N ;
-lin cellblock_N = mkN "cellblock" "cellblocks" ; -- compound lock_N ;
-lin clock_N = mkN "clock" "clocks" ; -- notcompound lock_N ;
-lin 'alarm-clock_N' = mkN "alarm-clock" "alarm-clocks" ; -- compound lock_N ;
-lin 'cuckoo-clock_N' = mkN "cuckoo-clock" "cuckoo-clocks" ; -- compound lock_N ;
-lin deadlock_N = mkN "deadlock" "deadlocks" ; -- compound lock_N ;
-lin headlock_N = mkN "headlock" "headlocks" ; -- compound lock_N ;
-lin dreadlock_N = mkN "dreadlock" "dreadlocks" ; -- compound lock_N ;
-lin padlock_N = mkN "padlock" "padlocks" ; -- compound lock_N ;
-lin wedlock_N = mkN "wedlock" "wedlocks" ; -- compound lock_N ;
-lin gridlock_N = mkN "gridlock" "gridlocks" ; -- compound lock_N ;
-lin forelock_N = mkN "forelock" "forelocks" ; -- compound lock_N ;
-lin havelock_N = mkN "havelock" "havelocks" ; -- compound lock_N ;
-lin flock_N = mkN "flock" "flocks" ; -- notcompound lock_N ;
-lin schlock_N = mkN "schlock" "schlocks" ; -- notcompound lock_N ;
-lin matchlock_N = mkN "matchlock" "matchlocks" ; -- compound lock_N ;
-lin ballock_N = mkN "ballock" "ballocks" ; -- compound lock_N ;
-lin hillock_N = mkN "hillock" "hillocks" ; -- compound lock_N ;
-lin bollock_N = mkN "bollock" "bollocks" ; -- compound lock_N ;
-lin bullock_N = mkN "bullock" "bullocks" ; -- compound lock_N ;
-lin hemlock_N = mkN "hemlock" "hemlocks" ; -- compound lock_N ;
-lin gunlock_N = mkN "gunlock" "gunlocks" ; -- compound lock_N ;
-lin charlock_N = mkN "charlock" "charlocks" ; -- compound lock_N ;
-lin warlock_N = mkN "warlock" "warlocks" ; -- compound lock_N ;
-lin hammerlock_N = mkN "hammerlock" "hammerlocks" ; -- compound lock_N ;
-lin interlock_N = mkN "interlock" "interlocks" ; -- compound lock_N ;
-lin airlock_N = mkN "airlock" "airlocks" ; -- compound lock_N ;
-lin doorlock_N = mkN "doorlock" "doorlocks" ; -- compound lock_N ;
-lin fetlock_N = mkN "fetlock" "fetlocks" ; -- compound lock_N ;
-lin flintlock_N = mkN "flintlock" "flintlocks" ; -- compound lock_N ;
-lin rowlock_N = mkN "rowlock" "rowlocks" ; -- compound lock_N ;
-lin mock_N = mkN "mock" "mocks" ;
-lin hammock_N = mkN "hammock" "hammocks" ; -- compound mock_N ;
-lin hummock_N = mkN "hummock" "hummocks" ; -- compound mock_N ;
-lin smock_N = mkN "smock" "smocks" ; -- notcompound mock_N ;
-lin knock_N = mkN "knock" "knocks" ;
-lin antiknock_N = mkN "antiknock" "antiknocks" ; -- compound knock_N ;
-lin bannock_N = mkN "bannock" "bannocks" ;
-lin pock_N = mkN "pock" "pocks" ;
-lin rock_N = mkN "rock" "rocks" ;
-lin crock_N = mkN "crock" "crocks" ; -- notcompound rock_N ;
-lin bedrock_N = mkN "bedrock" "bedrocks" ; -- compound rock_N ;
-lin frock_N = mkN "frock" "frocks" ; -- notcompound rock_N ;
-lin shamrock_N = mkN "shamrock" "shamrocks" ; -- compound rock_N ;
-lin sock_N = mkN "sock" "socks" ;
-lin windsock_N = mkN "windsock" "windsocks" ; -- compound sock_N ;
-lin cassock_N = mkN "cassock" "cassocks" ; -- compound sock_N ;
-lin hassock_N = mkN "hassock" "hassocks" ; -- compound sock_N ;
-lin tussock_N = mkN "tussock" "tussocks" ; -- compound sock_N ;
-lin 'tick-tock_N' = mkN "tick-tock" "tick-tocks" ;
-lin ticktock_N = mkN "ticktock" "ticktocks" ;
-lin stock_N = mkN "stock" "stocks" ;
-lin 'laughing-stock_N' = mkN "laughing-stock" "laughing-stocks" ; -- compound stock_N ;
-lin 'rolling-stock_N' = mkN "rolling-stock" "rolling-stocks" ; -- compound stock_N ;
-lin headstock_N = mkN "headstock" "headstocks" ; -- compound stock_N ;
-lin feedstock_N = mkN "feedstock" "feedstocks" ; -- compound stock_N ;
-lin bloodstock_N = mkN "bloodstock" "bloodstocks" ; -- compound stock_N ;
-lin diestock_N = mkN "diestock" "diestocks" ; -- compound stock_N ;
-lin livestock_N = mkN "livestock" "livestocks" ; -- compound stock_N ;
-lin tailstock_N = mkN "tailstock" "tailstocks" ; -- compound stock_N ;
-lin penstock_N = mkN "penstock" "penstocks" ; -- compound stock_N ;
-lin alpenstock_N = mkN "alpenstock" "alpenstocks" ; -- compound stock_N ;
-lin linstock_N = mkN "linstock" "linstocks" ; -- compound stock_N ;
-lin rootstock_N = mkN "rootstock" "rootstocks" ; -- compound stock_N ;
-lin mattock_N = mkN "mattock" "mattocks" ;
-lin buttock_N = mkN "buttock" "buttocks" ;
-lin buck_N = mkN "buck" "bucks" ;
-lin roebuck_N = mkN "roebuck" "roebucks" ; -- compound buck_N ;
-lin bushbuck_N = mkN "bushbuck" "bushbucks" ; -- compound buck_N ;
-lin blackbuck_N = mkN "blackbuck" "blackbucks" ; -- compound buck_N ;
-lin waterbuck_N = mkN "waterbuck" "waterbucks" ; -- compound buck_N ;
-lin shelduck_N = mkN "shelduck" "shelducks" ;
-lin geoduck_N = mkN "geoduck" "geoducks" ;
-lin fuck_N = mkN "fuck" "fucks" ;
-lin huck_N = mkN "huck" "hucks" ;
-lin chuck_N = mkN "chuck" "chucks" ; -- notcompound huck_N ;
-lin shuck_N = mkN "shuck" "shucks" ; -- notcompound huck_N ;
-lin luck_N = mkN "luck" "lucks" ;
-lin cluck_N = mkN "cluck" "clucks" ; -- notcompound luck_N ;
-lin pluck_N = mkN "pluck" "plucks" ; -- notcompound luck_N ;
-lin potluck_N = mkN "potluck" "potlucks" ; -- compound luck_N ;
-lin muck_N = mkN "muck" "mucks" ;
-lin schmuck_N = mkN "schmuck" "schmucks" ; -- notcompound muck_N ;
-lin canuck_N = mkN "canuck" "canucks" ;
-lin puck_N = mkN "puck" "pucks" ;
-lin ruck_N = mkN "ruck" "rucks" ;
-lin truck_N = mkN "truck" "trucks" ; -- notcompound ruck_N ;
-lin 'garden-truck_N' = mkN "garden-truck" "garden-trucks" ; -- compound ruck_N ;
-lin suck_N = mkN "suck" "sucks" ;
-lin tuck_N = mkN "tuck" "tucks" ;
-lin hacek_N = mkN "hacek" "haceks" ;
-lin geek_N = mkN "geek" "geeks" ;
-lin cheek_N = mkN "cheek" "cheeks" ;
-lin leek_N = mkN "leek" "leeks" ;
-lin peek_N = mkN "peek" "peeks" ;
-lin reek_N = mkN "reek" "reeks" ;
-lin Greek_N = mkN "Greek" "Greeks" ; -- notcompound reek_N ;
-lin creek_N = mkN "creek" "creeks" ; -- notcompound reek_N ;
-lin fenugreek_N = mkN "fenugreek" "fenugreeks" ; -- compound reek_N ;
-lin seek_N = mkN "seek" "seeks" ;
-lin 'hide-and-seek_N' = mkN "hide-and-seek" "hide-and-seeks" ; -- compound seek_N ;
-lin week_N = mkN "week" "weeks" ;
-lin midweek_N = mkN "midweek" "midweeks" ; -- compound week_N ;
-lin workweek_N = mkN "workweek" "workweeks" ; -- compound week_N ;
-lin shriek_N = mkN "shriek" "shrieks" ;
-lin lek_N = mkN "lek" "leks" ;
-lin fartlek_N = mkN "fartlek" "fartleks" ; -- compound lek_N ;
-lin kopek_N = mkN "kopek" "kopeks" ;
-lin trek_N = mkN "trek" "treks" ;
-lin haik_N = mkN "haik" "haiks" ;
-lin hygrodeik_N = mkN "hygrodeik" "hygrodeiks" ;
-lin sheik_N = mkN "sheik" "sheiks" ;
-lin apparatchik_N = mkN "apparatchik" "apparatchiks" ;
-lin muzhik_N = mkN "muzhik" "muzhiks" ;
-lin moujik_N = mkN "moujik" "moujiks" ;
-lin malik_N = mkN "malik" "maliks" ;
-lin suslik_N = mkN "suslik" "susliks" ;
-lin chutzpanik_N = mkN "chutzpanik" "chutzpaniks" ;
-lin nudnik_N = mkN "nudnik" "nudniks" ;
-lin beatnik_N = mkN "beatnik" "beatniks" ;
-lin sputnik_N = mkN "sputnik" "sputniks" ;
-lin kolkhoznik_N = mkN "kolkhoznik" "kolkhozniks" ;
-lin kibbutznik_N = mkN "kibbutznik" "kibbutzniks" ;
-lin tupik_N = mkN "tupik" "tupiks" ;
-lin tugrik_N = mkN "tugrik" "tugriks" ;
-lin batik_N = mkN "batik" "batiks" ;
-lin shtik_N = mkN "shtik" "shtiks" ;
-lin realpolitik_N = mkN "realpolitik" "realpolitiks" ;
-lin bolshevik_N = mkN "bolshevik" "bolsheviks" ;
-lin balk_N = mkN "balk" "balks" ;
-lin calk_N = mkN "calk" "calks" ;
-lin chalk_N = mkN "chalk" "chalks" ;
-lin nitrochalk_N = mkN "nitrochalk" "nitrochalks" ; -- compound chalk_N ;
-lin talk_N = mkN "talk" "talks" ;
-lin 'table-talk_N' = mkN "table-talk" "table-talks" ; -- compound talk_N ;
-lin 'double-talk_N' = mkN "double-talk" "double-talks" ; -- compound talk_N ;
-lin 'baby-talk_N' = mkN "baby-talk" "baby-talks" ; -- compound talk_N ;
-lin backtalk_N = mkN "backtalk" "backtalks" ; -- compound talk_N ;
-lin stalk_N = mkN "stalk" "stalks" ; -- notcompound talk_N ;
-lin beanstalk_N = mkN "beanstalk" "beanstalks" ; -- compound talk_N ;
-lin cornstalk_N = mkN "cornstalk" "cornstalks" ; -- compound talk_N ;
-lin crosstalk_N = mkN "crosstalk" "crosstalks" ; -- compound talk_N ;
-lin walk_N = mkN "walk" "walks" ;
-lin boardwalk_N = mkN "boardwalk" "boardwalks" ; -- compound walk_N ;
-lin sidewalk_N = mkN "sidewalk" "sidewalks" ; -- compound walk_N ;
-lin cakewalk_N = mkN "cakewalk" "cakewalks" ; -- compound walk_N ;
-lin ropewalk_N = mkN "ropewalk" "ropewalks" ; -- compound walk_N ;
-lin moonwalk_N = mkN "moonwalk" "moonwalks" ; -- compound walk_N ;
-lin sheepwalk_N = mkN "sheepwalk" "sheepwalks" ; -- compound walk_N ;
-lin crosswalk_N = mkN "crosswalk" "crosswalks" ; -- compound walk_N ;
-lin catwalk_N = mkN "catwalk" "catwalks" ; -- compound walk_N ;
-lin skywalk_N = mkN "skywalk" "skywalks" ; -- compound walk_N ;
-lin elk_N = mkN "elk" "elks" ;
-lin whelk_N = mkN "whelk" "whelks" ; -- notcompound elk_N ;
-lin ilk_N = mkN "ilk" "ilks" ;
-lin milk_N = mkN "milk" "milks" ; -- notcompound ilk_N ;
-lin 'skimmed-milk_N' = mkN "skimmed-milk" "skimmed-milks" ; -- compound ilk_N ;
-lin buttermilk_N = mkN "buttermilk" "buttermilks" ; -- compound ilk_N ;
-lin silk_N = mkN "silk" "silks" ; -- notcompound ilk_N ;
-lin 'oil-silk_N' = mkN "oil-silk" "oil-silks" ; -- compound ilk_N ;
-lin cornsilk_N = mkN "cornsilk" "cornsilks" ; -- compound ilk_N ;
-lin folk_N = mkN "folk" "folks" ;
-lin gentlefolk_N = mkN "gentlefolk" "gentlefolks" ; -- compound folk_N ;
-lin homefolk_N = mkN "homefolk" "homefolks" ; -- compound folk_N ;
-lin yolk_N = mkN "yolk" "yolks" ;
-lin baulk_N = mkN "baulk" "baulks" ;
-lin caulk_N = mkN "caulk" "caulks" ;
-lin bulk_N = mkN "bulk" "bulks" ;
-lin hulk_N = mkN "hulk" "hulks" ;
-lin sulk_N = mkN "sulk" "sulks" ;
-lin bank_N = mkN "bank" "banks" ;
-lin 'cloud-bank_N' = mkN "cloud-bank" "cloud-banks" ; -- compound bank_N ;
-lin 'oyster-bank_N' = mkN "oyster-bank" "oyster-banks" ; -- compound bank_N ;
-lin 'savings-bank_N' = mkN "savings-bank" "savings-banks" ; -- compound bank_N ;
-lin sandbank_N = mkN "sandbank" "sandbanks" ; -- compound bank_N ;
-lin mountebank_N = mkN "mountebank" "mountebanks" ; -- compound bank_N ;
-lin fogbank_N = mkN "fogbank" "fogbanks" ; -- compound bank_N ;
-lin riverbank_N = mkN "riverbank" "riverbanks" ; -- compound bank_N ;
-lin snowbank_N = mkN "snowbank" "snowbanks" ; -- compound bank_N ;
-lin hank_N = mkN "hank" "hanks" ;
-lin shank_N = mkN "shank" "shanks" ; -- notcompound hank_N ;
-lin redshank_N = mkN "redshank" "redshanks" ; -- compound hank_N ;
-lin hindshank_N = mkN "hindshank" "hindshanks" ; -- compound hank_N ;
-lin foreshank_N = mkN "foreshank" "foreshanks" ; -- compound hank_N ;
-lin greenshank_N = mkN "greenshank" "greenshanks" ; -- compound hank_N ;
-lin sheepshank_N = mkN "sheepshank" "sheepshanks" ; -- compound hank_N ;
-lin skank_N = mkN "skank" "skanks" ;
-lin blank_N = mkN "blank" "blanks" ;
-lin clank_N = mkN "clank" "clanks" ;
-lin flank_N = mkN "flank" "flanks" ;
-lin plank_N = mkN "plank" "planks" ;
-lin gangplank_N = mkN "gangplank" "gangplanks" ; -- compound plank_N ;
-lin spank_N = mkN "spank" "spanks" ;
-lin rank_N = mkN "rank" "ranks" ;
-lin 'cab-rank_N' = mkN "cab-rank" "cab-ranks" ; -- compound rank_N ;
-lin crank_N = mkN "crank" "cranks" ; -- notcompound rank_N ;
-lin frank_N = mkN "frank" "franks" ; -- notcompound rank_N ;
-lin prank_N = mkN "prank" "pranks" ; -- notcompound rank_N ;
-lin tank_N = mkN "tank" "tanks" ;
-lin 'think-tank_N' = mkN "think-tank" "think-tanks" ; -- compound tank_N ;
-lin wank_N = mkN "wank" "wanks" ;
-lin swank_N = mkN "swank" "swanks" ; -- notcompound wank_N ;
-lin yank_N = mkN "yank" "yanks" ;
-lin ink_N = mkN "ink" "inks" ;
-lin 'pen-and-ink_N' = mkN "pen-and-ink" "pen-and-inks" ; -- compound ink_N ;
-lin 'marking-ink_N' = mkN "marking-ink" "marking-inks" ; -- compound ink_N ;
-lin 'writing-ink_N' = mkN "writing-ink" "writing-inks" ; -- compound ink_N ;
-lin 'printing-ink_N' = mkN "printing-ink" "printing-inks" ; -- compound ink_N ;
-lin fink_N = mkN "fink" "finks" ; -- notcompound ink_N ;
-lin chink_N = mkN "chink" "chinks" ; -- notcompound ink_N ;
-lin think_N = mkN "think" "thinks" ; -- notcompound ink_N ;
-lin 'double-think_N' = mkN "double-think" "double-thinks" ; -- compound ink_N ;
-lin doublethink_N = mkN "doublethink" "doublethinks" ; -- compound ink_N ;
-lin rethink_N = mkN "rethink" "rethinks" ; -- compound ink_N ;
-lin groupthink_N = mkN "groupthink" "groupthinks" ; -- compound ink_N ;
-lin kink_N = mkN "kink" "kinks" ; -- notcompound ink_N ;
-lin skink_N = mkN "skink" "skinks" ; -- notcompound ink_N ;
-lin link_N = mkN "link" "links" ; -- notcompound ink_N ;
-lin blink_N = mkN "blink" "blinks" ; -- notcompound ink_N ;
-lin clink_N = mkN "clink" "clinks" ; -- notcompound ink_N ;
-lin cufflink_N = mkN "cufflink" "cufflinks" ; -- compound ink_N ;
-lin bobolink_N = mkN "bobolink" "bobolinks" ; -- compound ink_N ;
-lin uplink_N = mkN "uplink" "uplinks" ; -- compound ink_N ;
-lin hyperlink_N = mkN "hyperlink" "hyperlinks" ; -- compound ink_N ;
-lin mink_N = mkN "mink" "minks" ; -- notcompound ink_N ;
-lin pink_N = mkN "pink" "pinks" ; -- notcompound ink_N ;
-lin rink_N = mkN "rink" "rinks" ; -- notcompound ink_N ;
-lin 'skating-rink_N' = mkN "skating-rink" "skating-rinks" ; -- compound ink_N ;
-lin brink_N = mkN "brink" "brinks" ; -- notcompound ink_N ;
-lin drink_N = mkN "drink" "drinks" ; -- notcompound ink_N ;
-lin icerink_N = mkN "icerink" "icerinks" ; -- compound ink_N ;
-lin shrink_N = mkN "shrink" "shrinks" ; -- notcompound ink_N ;
-lin sink_N = mkN "sink" "sinks" ; -- notcompound ink_N ;
-lin countersink_N = mkN "countersink" "countersinks" ; -- compound ink_N ;
-lin stink_N = mkN "stink" "stinks" ; -- notcompound ink_N ;
-lin wink_N = mkN "wink" "winks" ; -- notcompound ink_N ;
-lin chewink_N = mkN "chewink" "chewinks" ; -- compound ink_N ;
-lin conk_N = mkN "conk" "conks" ;
-lin honk_N = mkN "honk" "honks" ;
-lin plonk_N = mkN "plonk" "plonks" ;
-lin monk_N = mkN "monk" "monks" ;
-lin honkytonk_N = mkN "honkytonk" "honkytonks" ;
-lin bunk_N = mkN "bunk" "bunks" ;
-lin dunk_N = mkN "dunk" "dunks" ;
-lin funk_N = mkN "funk" "funks" ;
-lin hunk_N = mkN "hunk" "hunks" ;
-lin chunk_N = mkN "chunk" "chunks" ; -- notcompound hunk_N ;
-lin thunk_N = mkN "thunk" "thunks" ; -- notcompound hunk_N ;
-lin junk_N = mkN "junk" "junks" ;
-lin skunk_N = mkN "skunk" "skunks" ;
-lin clunk_N = mkN "clunk" "clunks" ;
-lin plunk_N = mkN "plunk" "plunks" ;
-lin chipmunk_N = mkN "chipmunk" "chipmunks" ;
-lin punk_N = mkN "punk" "punks" ;
-lin cyberpunk_N = mkN "cyberpunk" "cyberpunks" ; -- compound punk_N ;
-lin spunk_N = mkN "spunk" "spunks" ; -- notcompound punk_N ;
-lin drunk_N = mkN "drunk" "drunks" ;
-lin trunk_N = mkN "trunk" "trunks" ;
-lin springbok_N = mkN "springbok" "springboks" ;
-lin steenbok_N = mkN "steenbok" "steenboks" ;
-lin gemsbok_N = mkN "gemsbok" "gemsboks" ;
-lin book_N = mkN "book" "books" ;
-lin 'road-book_N' = mkN "road-book" "road-books" ; -- compound book_N ;
-lin 'picture-book_N' = mkN "picture-book" "picture-books" ; -- compound book_N ;
-lin 'phrase-book_N' = mkN "phrase-book" "phrase-books" ; -- compound book_N ;
-lin 'minute-book_N' = mkN "minute-book" "minute-books" ; -- compound book_N ;
-lin 'statute-book_N' = mkN "statute-book" "statute-books" ; -- compound book_N ;
-lin 'sketch-book_N' = mkN "sketch-book" "sketch-books" ; -- compound book_N ;
-lin 'bank-book_N' = mkN "bank-book" "bank-books" ; -- compound book_N ;
-lin 'order-book_N' = mkN "order-book" "order-books" ; -- compound book_N ;
-lin 'prayer-book_N' = mkN "prayer-book" "prayer-books" ; -- compound book_N ;
-lin 'pocket-book_N' = mkN "pocket-book" "pocket-books" ; -- compound book_N ;
-lin 'cookery-book_N' = mkN "cookery-book" "cookery-books" ; -- compound book_N ;
-lin roadbook_N = mkN "roadbook" "roadbooks" ; -- compound book_N ;
-lin handbook_N = mkN "handbook" "handbooks" ; -- compound book_N ;
-lin wordbook_N = mkN "wordbook" "wordbooks" ; -- compound book_N ;
-lin studbook_N = mkN "studbook" "studbooks" ; -- compound book_N ;
-lin guidebook_N = mkN "guidebook" "guidebooks" ; -- compound book_N ;
-lin phonebook_N = mkN "phonebook" "phonebooks" ; -- compound book_N ;
-lin scorebook_N = mkN "scorebook" "scorebooks" ; -- compound book_N ;
-lin casebook_N = mkN "casebook" "casebooks" ; -- compound book_N ;
-lin notebook_N = mkN "notebook" "notebooks" ; -- compound book_N ;
-lin chequebook_N = mkN "chequebook" "chequebooks" ; -- compound book_N ;
-lin songbook_N = mkN "songbook" "songbooks" ; -- compound book_N ;
-lin logbook_N = mkN "logbook" "logbooks" ; -- compound book_N ;
-lin matchbook_N = mkN "matchbook" "matchbooks" ; -- compound book_N ;
-lin sketchbook_N = mkN "sketchbook" "sketchbooks" ; -- compound book_N ;
-lin checkbook_N = mkN "checkbook" "checkbooks" ; -- compound book_N ;
-lin bankbook_N = mkN "bankbook" "bankbooks" ; -- compound book_N ;
-lin cookbook_N = mkN "cookbook" "cookbooks" ; -- compound book_N ;
-lin workbook_N = mkN "workbook" "workbooks" ; -- compound book_N ;
-lin schoolbook_N = mkN "schoolbook" "schoolbooks" ; -- compound book_N ;
-lin hornbook_N = mkN "hornbook" "hornbooks" ; -- compound book_N ;
-lin scrapbook_N = mkN "scrapbook" "scrapbooks" ; -- compound book_N ;
-lin yearbook_N = mkN "yearbook" "yearbooks" ; -- compound book_N ;
-lin passbook_N = mkN "passbook" "passbooks" ; -- compound book_N ;
-lin pocketbook_N = mkN "pocketbook" "pocketbooks" ; -- compound book_N ;
-lin promptbook_N = mkN "promptbook" "promptbooks" ; -- compound book_N ;
-lin textbook_N = mkN "textbook" "textbooks" ; -- compound book_N ;
-lin daybook_N = mkN "daybook" "daybooks" ; -- compound book_N ;
-lin playbook_N = mkN "playbook" "playbooks" ; -- compound book_N ;
-lin copybook_N = mkN "copybook" "copybooks" ; -- compound book_N ;
-lin storybook_N = mkN "storybook" "storybooks" ; -- compound book_N ;
-lin cook_N = mkN "cook" "cooks" ;
-lin 'pastry-cook_N' = mkN "pastry-cook" "pastry-cooks" ; -- compound cook_N ;
-lin gook_N = mkN "gook" "gooks" ;
-lin gobbledygook_N = mkN "gobbledygook" "gobbledygooks" ; -- compound gook_N ;
-lin hook_N = mkN "hook" "hooks" ;
-lin 'pruning-hook_N' = mkN "pruning-hook" "pruning-hooks" ; -- compound hook_N ;
-lin 'reaping-hook_N' = mkN "reaping-hook" "reaping-hooks" ; -- compound hook_N ;
-lin 'fish-hook_N' = mkN "fish-hook" "fish-hooks" ; -- compound hook_N ;
-lin 'boat-hook_N' = mkN "boat-hook" "boat-hooks" ; -- compound hook_N ;
-lin 'crochet-hook_N' = mkN "crochet-hook" "crochet-hooks" ; -- compound hook_N ;
-lin ravehook_N = mkN "ravehook" "ravehooks" ; -- compound hook_N ;
-lin fishhook_N = mkN "fishhook" "fishhooks" ; -- compound hook_N ;
-lin billhook_N = mkN "billhook" "billhooks" ; -- compound hook_N ;
-lin buttonhook_N = mkN "buttonhook" "buttonhooks" ; -- compound hook_N ;
-lin tenterhook_N = mkN "tenterhook" "tenterhooks" ; -- compound hook_N ;
-lin shook_N = mkN "shook" "shooks" ; -- notcompound hook_N ;
-lin pothook_N = mkN "pothook" "pothooks" ; -- compound hook_N ;
-lin skyhook_N = mkN "skyhook" "skyhooks" ; -- compound hook_N ;
-lin kook_N = mkN "kook" "kooks" ;
-lin look_N = mkN "look" "looks" ;
-lin overlook_N = mkN "overlook" "overlooks" ; -- compound look_N ;
-lin outlook_N = mkN "outlook" "outlooks" ; -- compound look_N ;
-lin nook_N = mkN "nook" "nooks" ;
-lin 'ingle-nook_N' = mkN "ingle-nook" "ingle-nooks" ; -- compound nook_N ;
-lin schnook_N = mkN "schnook" "schnooks" ; -- notcompound nook_N ;
-lin chinook_N = mkN "chinook" "chinooks" ; -- compound nook_N ;
-lin snook_N = mkN "snook" "snooks" ; -- notcompound nook_N ;
-lin spook_N = mkN "spook" "spooks" ;
-lin rook_N = mkN "rook" "rooks" ;
-lin brook_N = mkN "brook" "brooks" ; -- notcompound rook_N ;
-lin crook_N = mkN "crook" "crooks" ; -- notcompound rook_N ;
-lin nainsook_N = mkN "nainsook" "nainsooks" ;
-lin kapok_N = mkN "kapok" "kapoks" ;
-lin bitok_N = mkN "bitok" "bitoks" ;
-lin wok_N = mkN "wok" "woks" ;
-lin ark_N = mkN "ark" "arks" ;
-lin bark_N = mkN "bark" "barks" ; -- notcompound ark_N ;
-lin lacebark_N = mkN "lacebark" "lacebarks" ; -- compound ark_N ;
-lin shagbark_N = mkN "shagbark" "shagbarks" ; -- compound ark_N ;
-lin smoothbark_N = mkN "smoothbark" "smoothbarks" ; -- compound ark_N ;
-lin tanbark_N = mkN "tanbark" "tanbarks" ; -- compound ark_N ;
-lin stringybark_N = mkN "stringybark" "stringybarks" ; -- compound ark_N ;
-lin dark_N = mkN "dark" "darks" ; -- notcompound ark_N ;
-lin shark_N = mkN "shark" "sharks" ; -- notcompound ark_N ;
-lin lark_N = mkN "lark" "larks" ; -- notcompound ark_N ;
-lin titlark_N = mkN "titlark" "titlarks" ; -- compound ark_N ;
-lin meadowlark_N = mkN "meadowlark" "meadowlarks" ; -- compound ark_N ;
-lin skylark_N = mkN "skylark" "skylarks" ; -- compound ark_N ;
-lin mark_N = mkN "mark" "marks" ; -- notcompound ark_N ;
-lin 'question-mark_N' = mkN "question-mark" "question-marks" ; -- compound ark_N ;
-lin 'stress-mark_N' = mkN "stress-mark" "stress-marks" ; -- compound ark_N ;
-lin landmark_N = mkN "landmark" "landmarks" ; -- compound ark_N ;
-lin trademark_N = mkN "trademark" "trademarks" ; -- compound ark_N ;
-lin tidemark_N = mkN "tidemark" "tidemarks" ; -- compound ark_N ;
-lin telemark_N = mkN "telemark" "telemarks" ; -- compound ark_N ;
-lin remark_N = mkN "remark" "remarks" ; -- compound ark_N ;
-lin benchmark_N = mkN "benchmark" "benchmarks" ; -- compound ark_N ;
-lin deutschmark_N = mkN "deutschmark" "deutschmarks" ; -- compound ark_N ;
-lin birthmark_N = mkN "birthmark" "birthmarks" ; -- compound ark_N ;
-lin pockmark_N = mkN "pockmark" "pockmarks" ; -- compound ark_N ;
-lin bookmark_N = mkN "bookmark" "bookmarks" ; -- compound ark_N ;
-lin hallmark_N = mkN "hallmark" "hallmarks" ; -- compound ark_N ;
-lin earmark_N = mkN "earmark" "earmarks" ; -- compound ark_N ;
-lin fingermark_N = mkN "fingermark" "fingermarks" ; -- compound ark_N ;
-lin watermark_N = mkN "watermark" "watermarks" ; -- compound ark_N ;
-lin pressmark_N = mkN "pressmark" "pressmarks" ; -- compound ark_N ;
-lin mintmark_N = mkN "mintmark" "mintmarks" ; -- compound ark_N ;
-lin footmark_N = mkN "footmark" "footmarks" ; -- compound ark_N ;
-lin postmark_N = mkN "postmark" "postmarks" ; -- compound ark_N ;
-lin nark_N = mkN "nark" "narks" ; -- notcompound ark_N ;
-lin park_N = mkN "park" "parks" ; -- notcompound ark_N ;
-lin ballpark_N = mkN "ballpark" "ballparks" ; -- compound ark_N ;
-lin spark_N = mkN "spark" "sparks" ; -- notcompound ark_N ;
-lin quark_N = mkN "quark" "quarks" ; -- compound ark_N ;
-lin antiquark_N = mkN "antiquark" "antiquarks" ; -- compound ark_N ;
-lin aardvark_N = mkN "aardvark" "aardvarks" ; -- compound ark_N ;
-lin bulwark_N = mkN "bulwark" "bulwarks" ; -- compound ark_N ;
-lin berk_N = mkN "berk" "berks" ;
-lin hauberk_N = mkN "hauberk" "hauberks" ; -- compound berk_N ;
-lin jerk_N = mkN "jerk" "jerks" ;
-lin clerk_N = mkN "clerk" "clerks" ;
-lin 'tally-clerk_N' = mkN "tally-clerk" "tally-clerks" ; -- compound clerk_N ;
-lin salesclerk_N = mkN "salesclerk" "salesclerks" ; -- compound clerk_N ;
-lin perk_N = mkN "perk" "perks" ;
-lin dirk_N = mkN "dirk" "dirks" ;
-lin kirk_N = mkN "kirk" "kirks" ;
-lin smirk_N = mkN "smirk" "smirks" ;
-lin stirk_N = mkN "stirk" "stirks" ;
-lin quirk_N = mkN "quirk" "quirks" ;
-lin cork_N = mkN "cork" "corks" ;
-lin fork_N = mkN "fork" "forks" ;
-lin 'tuning-fork_N' = mkN "tuning-fork" "tuning-forks" ; -- compound fork_N ;
-lin 'toasting-fork_N' = mkN "toasting-fork" "toasting-forks" ; -- compound fork_N ;
-lin 'carving-fork_N' = mkN "carving-fork" "carving-forks" ; -- compound fork_N ;
-lin tablefork_N = mkN "tablefork" "tableforks" ; -- compound fork_N ;
-lin pitchfork_N = mkN "pitchfork" "pitchforks" ; -- compound fork_N ;
-lin hayfork_N = mkN "hayfork" "hayforks" ; -- compound fork_N ;
-lin pork_N = mkN "pork" "porks" ;
-lin stork_N = mkN "stork" "storks" ;
-lin work_N = mkN "work" "works" ;
-lin 'life-work_N' = mkN "life-work" "life-works" ; -- compound work_N ;
-lin 'social-work_N' = mkN "social-work" "social-works" ; -- compound work_N ;
-lin 'donkey-work_N' = mkN "donkey-work" "donkey-works" ; -- compound work_N ;
-lin fieldwork_N = mkN "fieldwork" "fieldworks" ; -- compound work_N ;
-lin handwork_N = mkN "handwork" "handworks" ; -- compound work_N ;
-lin groundwork_N = mkN "groundwork" "groundworks" ; -- compound work_N ;
-lin woodwork_N = mkN "woodwork" "woodworks" ; -- compound work_N ;
-lin lacework_N = mkN "lacework" "laceworks" ; -- compound work_N ;
-lin piecework_N = mkN "piecework" "pieceworks" ; -- compound work_N ;
-lin spadework_N = mkN "spadework" "spadeworks" ; -- compound work_N ;
-lin lifework_N = mkN "lifework" "lifeworks" ; -- compound work_N ;
-lin needlework_N = mkN "needlework" "needleworks" ; -- compound work_N ;
-lin trestlework_N = mkN "trestlework" "trestleworks" ; -- compound work_N ;
-lin framework_N = mkN "framework" "frameworks" ; -- compound work_N ;
-lin timework_N = mkN "timework" "timeworks" ; -- compound work_N ;
-lin homework_N = mkN "homework" "homeworks" ; -- compound work_N ;
-lin stonework_N = mkN "stonework" "stoneworks" ; -- compound work_N ;
-lin pipework_N = mkN "pipework" "pipeworks" ; -- compound work_N ;
-lin firework_N = mkN "firework" "fireworks" ; -- compound work_N ;
-lin wirework_N = mkN "wirework" "wireworks" ; -- compound work_N ;
-lin casework_N = mkN "casework" "caseworks" ; -- compound work_N ;
-lin coursework_N = mkN "coursework" "courseworks" ; -- compound work_N ;
-lin housework_N = mkN "housework" "houseworks" ; -- compound work_N ;
-lin patchwork_N = mkN "patchwork" "patchworks" ; -- compound work_N ;
-lin brushwork_N = mkN "brushwork" "brushworks" ; -- compound work_N ;
-lin earthwork_N = mkN "earthwork" "earthworks" ; -- compound work_N ;
-lin handiwork_N = mkN "handiwork" "handiworks" ; -- compound work_N ;
-lin hackwork_N = mkN "hackwork" "hackworks" ; -- compound work_N ;
-lin brickwork_N = mkN "brickwork" "brickworks" ; -- compound work_N ;
-lin clockwork_N = mkN "clockwork" "clockworks" ; -- compound work_N ;
-lin metalwork_N = mkN "metalwork" "metalworks" ; -- compound work_N ;
-lin wheelwork_N = mkN "wheelwork" "wheelworks" ; -- compound work_N ;
-lin crewelwork_N = mkN "crewelwork" "crewelworks" ; -- compound work_N ;
-lin millwork_N = mkN "millwork" "millworks" ; -- compound work_N ;
-lin teamwork_N = mkN "teamwork" "teamworks" ; -- compound work_N ;
-lin openwork_N = mkN "openwork" "openworks" ; -- compound work_N ;
-lin ironwork_N = mkN "ironwork" "ironworks" ; -- compound work_N ;
-lin drawnwork_N = mkN "drawnwork" "drawnworks" ; -- compound work_N ;
-lin leatherwork_N = mkN "leatherwork" "leatherworks" ; -- compound work_N ;
-lin wickerwork_N = mkN "wickerwork" "wickerworks" ; -- compound work_N ;
-lin paperwork_N = mkN "paperwork" "paperworks" ; -- compound work_N ;
-lin silverwork_N = mkN "silverwork" "silverworks" ; -- compound work_N ;
-lin overwork_N = mkN "overwork" "overworks" ; -- compound work_N ;
-lin classwork_N = mkN "classwork" "classworks" ; -- compound work_N ;
-lin guesswork_N = mkN "guesswork" "guessworks" ; -- compound work_N ;
-lin flatwork_N = mkN "flatwork" "flatworks" ; -- compound work_N ;
-lin network_N = mkN "network" "networks" ; -- compound work_N ;
-lin cabinetwork_N = mkN "cabinetwork" "cabinetworks" ; -- compound work_N ;
-lin fretwork_N = mkN "fretwork" "fretworks" ; -- compound work_N ;
-lin nightwork_N = mkN "nightwork" "nightworks" ; -- compound work_N ;
-lin footwork_N = mkN "footwork" "footworks" ; -- compound work_N ;
-lin artwork_N = mkN "artwork" "artworks" ; -- compound work_N ;
-lin breastwork_N = mkN "breastwork" "breastworks" ; -- compound work_N ;
-lin cutwork_N = mkN "cutwork" "cutworks" ; -- compound work_N ;
-lin outwork_N = mkN "outwork" "outworks" ; -- compound work_N ;
-lin waxwork_N = mkN "waxwork" "waxworks" ; -- compound work_N ;
-lin bodywork_N = mkN "bodywork" "bodyworks" ; -- compound work_N ;
-lin busywork_N = mkN "busywork" "busyworks" ; -- compound work_N ;
-lin Turk_N = mkN "Turk" "Turks" ;
-lin murk_N = mkN "murk" "murks" ;
-lin cask_N = mkN "cask" "casks" ;
-lin flask_N = mkN "flask" "flasks" ;
-lin 'hip-flask_N' = mkN "hip-flask" "hip-flasks" ; -- compound flask_N ;
-lin 'powder-flask_N' = mkN "powder-flask" "powder-flasks" ; -- compound flask_N ;
-lin hipflask_N = mkN "hipflask" "hipflasks" ; -- compound flask_N ;
-lin mask_N = mkN "mask" "masks" ;
-lin 'death-mask_N' = mkN "death-mask" "death-masks" ; -- compound mask_N ;
-lin 'gas-mask_N' = mkN "gas-mask" "gas-masks" ; -- compound mask_N ;
-lin damask_N = mkN "damask" "damasks" ; -- compound mask_N ;
-lin gasmask_N = mkN "gasmask" "gasmasks" ; -- compound mask_N ;
-lin task_N = mkN "task" "tasks" ;
-lin desk_N = mkN "desk" "desks" ;
-lin 'writing-desk_N' = mkN "writing-desk" "writing-desks" ; -- compound desk_N ;
-lin 'reception-desk_N' = mkN "reception-desk" "reception-desks" ; -- compound desk_N ;
-lin disk_N = mkN "disk" "disks" ;
-lin videodisk_N = mkN "videodisk" "videodisks" ; -- compound disk_N ;
-lin lutefisk_N = mkN "lutefisk" "lutefisks" ;
-lin whisk_N = mkN "whisk" "whisks" ;
-lin 'egg-whisk_N' = mkN "egg-whisk" "egg-whisks" ; -- compound whisk_N ;
-lin obelisk_N = mkN "obelisk" "obelisks" ;
-lin basilisk_N = mkN "basilisk" "basilisks" ;
-lin risk_N = mkN "risk" "risks" ;
-lin tamarisk_N = mkN "tamarisk" "tamarisks" ; -- compound risk_N ;
-lin bassarisk_N = mkN "bassarisk" "bassarisks" ; -- compound risk_N ;
-lin asterisk_N = mkN "asterisk" "asterisks" ; -- compound risk_N ;
-lin frisk_N = mkN "frisk" "frisks" ; -- notcompound risk_N ;
-lin bosk_N = mkN "bosk" "bosks" ;
-lin kiosk_N = mkN "kiosk" "kiosks" ;
-lin abelmosk_N = mkN "abelmosk" "abelmosks" ;
-lin cusk_N = mkN "cusk" "cusks" ;
-lin dusk_N = mkN "dusk" "dusks" ;
-lin husk_N = mkN "husk" "husks" ;
-lin cornhusk_N = mkN "cornhusk" "cornhusks" ; -- compound husk_N ;
-lin mollusk_N = mkN "mollusk" "mollusks" ;
-lin musk_N = mkN "musk" "musks" ;
-lin rusk_N = mkN "rusk" "rusks" ;
-lin tusk_N = mkN "tusk" "tusks" ;
-lin auk_N = mkN "auk" "auks" ;
-lin padauk_N = mkN "padauk" "padauks" ; -- compound auk_N ;
-lin dybbuk_N = mkN "dybbuk" "dybbuks" ;
-lin gerenuk_N = mkN "gerenuk" "gerenuks" ;
-lin souk_N = mkN "souk" "souks" ;
-lin gawk_N = mkN "gawk" "gawks" ;
-lin hawk_N = mkN "hawk" "hawks" ;
-lin tomahawk_N = mkN "tomahawk" "tomahawks" ; -- compound hawk_N ;
-lin mohawk_N = mkN "mohawk" "mohawks" ; -- compound hawk_N ;
-lin goshawk_N = mkN "goshawk" "goshawks" ; -- compound hawk_N ;
-lin nighthawk_N = mkN "nighthawk" "nighthawks" ; -- compound hawk_N ;
-lin squawk_N = mkN "squawk" "squawks" ;
-lin 'sea-level_N' = mkN "sea-level" "IRREG" ;
-lin 'end-all_N' = mkN "end-all" "IRREG" ;
-lin knell_N = mkN "knell" "IRREG" ;
-lin sell_N = mkN "sell" "IRREG" ;
-lin kill_N = mkN "kill" "IRREG" ;
-lin 'john bull_N' = mkN "john bull" "IRREG" ;
-lin whirl_N = mkN "whirl" "IRREG" ;
-lin teal_N = mkN "teal" "teal" ;
-lin 'court-martial_N' = mkN "court-martial" "courts-martial" ;
-lin mackerel_N = mkN "mackerel" "mackerel" ;
-lin pickerel_N = mkN "pickerel" "pickerel" ;
-lin brill_N = mkN "brill" "brill" ;
-lin ml_N = mkN "ml" "ml" ;
-lin 'guinea-fowl_N' = mkN "guinea-fowl" "guinea-fowl" ;
-lin kraal_N = mkN "kraal" "kraals" ;
-lin cabal_N = mkN "cabal" "cabals" ;
-lin cannibal_N = mkN "cannibal" "cannibals" ;
-lin gimbal_N = mkN "gimbal" "gimbals" ;
-lin cymbal_N = mkN "cymbal" "cymbals" ;
-lin caracal_N = mkN "caracal" "caracals" ;
-lin decal_N = mkN "decal" "decals" ;
-lin radical_N = mkN "radical" "radicals" ;
-lin medical_N = mkN "medical" "medicals" ;
-lin periodical_N = mkN "periodical" "periodicals" ;
-lin pontifical_N = mkN "pontifical" "pontificals" ;
-lin encyclical_N = mkN "encyclical" "encyclicals" ;
-lin chemical_N = mkN "chemical" "chemicals" ;
-lin 'petro-chemical_N' = mkN "petro-chemical" "petro-chemicals" ; -- compound chemical_N ;
-lin petrochemical_N = mkN "petrochemical" "petrochemicals" ; -- compound chemical_N ;
-lin neurochemical_N = mkN "neurochemical" "neurochemicals" ; -- compound chemical_N ;
-lin phytochemical_N = mkN "phytochemical" "phytochemicals" ; -- compound chemical_N ;
-lin botanical_N = mkN "botanical" "botanicals" ;
-lin arsenical_N = mkN "arsenical" "arsenicals" ;
-lin technical_N = mkN "technical" "technicals" ;
-lin theatrical_N = mkN "theatrical" "theatricals" ;
-lin musical_N = mkN "musical" "musicals" ;
-lin sabbatical_N = mkN "sabbatical" "sabbaticals" ;
-lin hypothetical_N = mkN "hypothetical" "hypotheticals" ;
-lin metical_N = mkN "metical" "meticals" ;
-lin vertical_N = mkN "vertical" "verticals" ;
-lin pharmaceutical_N = mkN "pharmaceutical" "pharmaceuticals" ;
-lin radiopharmaceutical_N = mkN "radiopharmaceutical" "radiopharmaceuticals" ; -- compound pharmaceutical_N ;
-lin local_N = mkN "local" "locals" ;
-lin reciprocal_N = mkN "reciprocal" "reciprocals" ;
-lin pascal_N = mkN "pascal" "pascals" ;
-lin rascal_N = mkN "rascal" "rascals" ;
-lin mescal_N = mkN "mescal" "mescals" ;
-lin coucal_N = mkN "coucal" "coucals" ;
-lin medal_N = mkN "medal" "medals" ;
-lin pedal_N = mkN "pedal" "pedals" ;
-lin bridal_N = mkN "bridal" "bridals" ;
-lin scandal_N = mkN "scandal" "scandals" ;
-lin sandal_N = mkN "sandal" "sandals" ;
-lin vandal_N = mkN "vandal" "vandals" ;
-lin poundal_N = mkN "poundal" "poundals" ;
-lin antipodal_N = mkN "antipodal" "antipodals" ;
-lin deal_N = mkN "deal" "deals" ;
-lin ideal_N = mkN "ideal" "ideals" ; -- notcompound deal_N ;
-lin ordeal_N = mkN "ordeal" "ordeals" ; -- compound deal_N ;
-lin misdeal_N = mkN "misdeal" "misdeals" ; -- compound deal_N ;
-lin antidiarrheal_N = mkN "antidiarrheal" "antidiarrheals" ;
-lin meal_N = mkN "meal" "meals" ;
-lin wholemeal_N = mkN "wholemeal" "wholemeals" ; -- compound meal_N ;
-lin bonemeal_N = mkN "bonemeal" "bonemeals" ; -- compound meal_N ;
-lin cornmeal_N = mkN "cornmeal" "cornmeals" ; -- compound meal_N ;
-lin watermeal_N = mkN "watermeal" "watermeals" ; -- compound meal_N ;
-lin oatmeal_N = mkN "oatmeal" "oatmeals" ; -- compound meal_N ;
-lin hymeneal_N = mkN "hymeneal" "hymeneals" ;
-lin cochineal_N = mkN "cochineal" "cochineals" ;
-lin peal_N = mkN "peal" "peals" ;
-lin repeal_N = mkN "repeal" "repeals" ; -- compound peal_N ;
-lin appeal_N = mkN "appeal" "appeals" ; -- compound peal_N ;
-lin real_N = mkN "real" "reals" ;
-lin cereal_N = mkN "cereal" "cereals" ; -- compound real_N ;
-lin seal_N = mkN "seal" "seals" ;
-lin goldenseal_N = mkN "goldenseal" "goldenseals" ; -- compound seal_N ;
-lin underseal_N = mkN "underseal" "underseals" ; -- compound seal_N ;
-lin lacteal_N = mkN "lacteal" "lacteals" ;
-lin steal_N = mkN "steal" "steals" ;
-lin squeal_N = mkN "squeal" "squeals" ;
-lin veal_N = mkN "veal" "veals" ;
-lin weal_N = mkN "weal" "weals" ;
-lin zeal_N = mkN "zeal" "zeals" ;
-lin offal_N = mkN "offal" "offals" ;
-lin gal_N = mkN "gal" "gals" ;
-lin agal_N = mkN "agal" "agals" ; -- notcompound gal_N ;
-lin paralegal_N = mkN "paralegal" "paralegals" ; -- compound gal_N ;
-lin prodigal_N = mkN "prodigal" "prodigals" ; -- compound gal_N ;
-lin madrigal_N = mkN "madrigal" "madrigals" ; -- compound gal_N ;
-lin warrigal_N = mkN "warrigal" "warrigals" ; -- compound gal_N ;
-lin galangal_N = mkN "galangal" "galangals" ; -- compound gal_N ;
-lin antifungal_N = mkN "antifungal" "antifungals" ; -- compound gal_N ;
-lin seneschal_N = mkN "seneschal" "seneschals" ;
-lin marshal_N = mkN "marshal" "marshals" ;
-lin wherewithal_N = mkN "wherewithal" "wherewithals" ;
-lin betrothal_N = mkN "betrothal" "betrothals" ;
-lin narwhal_N = mkN "narwhal" "narwhals" ;
-lin bilabial_N = mkN "bilabial" "bilabials" ;
-lin adverbial_N = mkN "adverbial" "adverbials" ;
-lin facial_N = mkN "facial" "facials" ;
-lin special_N = mkN "special" "specials" ;
-lin official_N = mkN "official" "officials" ;
-lin provincial_N = mkN "provincial" "provincials" ;
-lin uncial_N = mkN "uncial" "uncials" ;
-lin social_N = mkN "social" "socials" ;
-lin commercial_N = mkN "commercial" "commercials" ;
-lin infomercial_N = mkN "infomercial" "infomercials" ;
-lin dial_N = mkN "dial" "dials" ;
-lin 'clock-dial_N' = mkN "clock-dial" "clock-dials" ; -- compound dial_N ;
-lin radial_N = mkN "radial" "radials" ; -- compound dial_N ;
-lin sundial_N = mkN "sundial" "sundials" ; -- compound dial_N ;
-lin cordial_N = mkN "cordial" "cordials" ; -- compound dial_N ;
-lin phial_N = mkN "phial" "phials" ;
-lin binomial_N = mkN "binomial" "binomials" ;
-lin polynomial_N = mkN "polynomial" "polynomials" ;
-lin denial_N = mkN "denial" "denials" ;
-lin 'self-denial_N' = mkN "self-denial" "self-denials" ; -- compound denial_N ;
-lin menial_N = mkN "menial" "menials" ;
-lin finial_N = mkN "finial" "finials" ;
-lin biennial_N = mkN "biennial" "biennials" ;
-lin triennial_N = mkN "triennial" "triennials" ;
-lin perennial_N = mkN "perennial" "perennials" ;
-lin centennial_N = mkN "centennial" "centennials" ;
-lin bicentennial_N = mkN "bicentennial" "bicentennials" ; -- compound centennial_N ;
-lin semicentennial_N = mkN "semicentennial" "semicentennials" ; -- compound centennial_N ;
-lin sesquicentennial_N = mkN "sesquicentennial" "sesquicentennials" ; -- compound centennial_N ;
-lin quincentennial_N = mkN "quincentennial" "quincentennials" ; -- compound centennial_N ;
-lin tercentennial_N = mkN "tercentennial" "tercentennials" ; -- compound centennial_N ;
-lin quatercentennial_N = mkN "quatercentennial" "quatercentennials" ; -- compound centennial_N ;
-lin colonial_N = mkN "colonial" "colonials" ;
-lin ceremonial_N = mkN "ceremonial" "ceremonials" ;
-lin testimonial_N = mkN "testimonial" "testimonials" ;
-lin marsupial_N = mkN "marsupial" "marsupials" ;
-lin antimalarial_N = mkN "antimalarial" "antimalarials" ;
-lin aerial_N = mkN "aerial" "aerials" ;
-lin imperial_N = mkN "imperial" "imperials" ;
-lin serial_N = mkN "serial" "serials" ;
-lin material_N = mkN "material" "materials" ;
-lin antibacterial_N = mkN "antibacterial" "antibacterials" ;
-lin memorial_N = mkN "memorial" "memorials" ;
-lin equatorial_N = mkN "equatorial" "equatorials" ;
-lin factorial_N = mkN "factorial" "factorials" ;
-lin pictorial_N = mkN "pictorial" "pictorials" ;
-lin editorial_N = mkN "editorial" "editorials" ;
-lin territorial_N = mkN "territorial" "territorials" ;
-lin advertorial_N = mkN "advertorial" "advertorials" ;
-lin tutorial_N = mkN "tutorial" "tutorials" ;
-lin trial_N = mkN "trial" "trials" ;
-lin patrial_N = mkN "patrial" "patrials" ; -- compound trial_N ;
-lin retrial_N = mkN "retrial" "retrials" ; -- compound trial_N ;
-lin pretrial_N = mkN "pretrial" "pretrials" ; -- compound trial_N ;
-lin mistrial_N = mkN "mistrial" "mistrials" ; -- compound trial_N ;
-lin urial_N = mkN "urial" "urials" ;
-lin burial_N = mkN "burial" "burials" ; -- notcompound urial_N ;
-lin sial_N = mkN "sial" "sials" ;
-lin initial_N = mkN "initial" "initials" ;
-lin exponential_N = mkN "exponential" "exponentials" ;
-lin differential_N = mkN "differential" "differentials" ;
-lin essential_N = mkN "essential" "essentials" ;
-lin inessential_N = mkN "inessential" "inessentials" ; -- compound essential_N ;
-lin potential_N = mkN "potential" "potentials" ;
-lin vial_N = mkN "vial" "vials" ;
-lin gavial_N = mkN "gavial" "gavials" ; -- compound vial_N ;
-lin jackal_N = mkN "jackal" "jackals" ;
-lin halal_N = mkN "halal" "halals" ;
-lin salal_N = mkN "salal" "salals" ;
-lin decimal_N = mkN "decimal" "decimals" ;
-lin animal_N = mkN "animal" "animals" ;
-lin 'sea-animal_N' = mkN "sea-animal" "sea-animals" ; -- compound animal_N ;
-lin 'pack-animal_N' = mkN "pack-animal" "pack-animals" ; -- compound animal_N ;
-lin planetesimal_N = mkN "planetesimal" "planetesimals" ;
-lin infinitesimal_N = mkN "infinitesimal" "infinitesimals" ;
-lin mammal_N = mkN "mammal" "mammals" ;
-lin thermal_N = mkN "thermal" "thermals" ;
-lin normal_N = mkN "normal" "normals" ;
-lin subnormal_N = mkN "subnormal" "subnormals" ; -- compound normal_N ;
-lin canal_N = mkN "canal" "canals" ;
-lin 'ship-canal_N' = mkN "ship-canal" "ship-canals" ; -- compound canal_N ;
-lin bacchanal_N = mkN "bacchanal" "bacchanals" ;
-lin propanal_N = mkN "propanal" "propanals" ;
-lin propenal_N = mkN "propenal" "propenals" ;
-lin arsenal_N = mkN "arsenal" "arsenals" ;
-lin signal_N = mkN "signal" "signals" ;
-lin 'time-signal_N' = mkN "time-signal" "time-signals" ; -- compound signal_N ;
-lin 'storm-signal_N' = mkN "storm-signal" "storm-signals" ; -- compound signal_N ;
-lin fogsignal_N = mkN "fogsignal" "fogsignals" ; -- compound signal_N ;
-lin cardinal_N = mkN "cardinal" "cardinals" ;
-lin ordinal_N = mkN "ordinal" "ordinals" ;
-lin final_N = mkN "final" "finals" ;
-lin 'cup-final_N' = mkN "cup-final" "cup-finals" ; -- compound final_N ;
-lin semifinal_N = mkN "semifinal" "semifinals" ; -- compound final_N ;
-lin quarterfinal_N = mkN "quarterfinal" "quarterfinals" ; -- compound final_N ;
-lin original_N = mkN "original" "originals" ;
-lin aboriginal_N = mkN "aboriginal" "aboriginals" ; -- compound original_N ;
-lin virginal_N = mkN "virginal" "virginals" ;
-lin trigeminal_N = mkN "trigeminal" "trigeminals" ;
-lin criminal_N = mkN "criminal" "criminals" ;
-lin abdominal_N = mkN "abdominal" "abdominals" ;
-lin terminal_N = mkN "terminal" "terminals" ;
-lin urinal_N = mkN "urinal" "urinals" ;
-lin hymnal_N = mkN "hymnal" "hymnals" ;
-lin diagonal_N = mkN "diagonal" "diagonals" ;
-lin recessional_N = mkN "recessional" "recessionals" ;
-lin processional_N = mkN "processional" "processionals" ;
-lin confessional_N = mkN "confessional" "confessionals" ;
-lin professional_N = mkN "professional" "professionals" ;
-lin paraprofessional_N = mkN "paraprofessional" "paraprofessionals" ; -- compound professional_N ;
-lin semiprofessional_N = mkN "semiprofessional" "semiprofessionals" ; -- compound professional_N ;
-lin national_N = mkN "national" "nationals" ;
-lin international_N = mkN "international" "internationals" ; -- compound national_N ;
-lin sectional_N = mkN "sectional" "sectionals" ;
-lin devotional_N = mkN "devotional" "devotionals" ;
-lin proportional_N = mkN "proportional" "proportionals" ;
-lin constitutional_N = mkN "constitutional" "constitutionals" ;
-lin monal_N = mkN "monal" "monals" ;
-lin personal_N = mkN "personal" "personals" ;
-lin infernal_N = mkN "infernal" "infernals" ;
-lin external_N = mkN "external" "externals" ;
-lin journal_N = mkN "journal" "journals" ;
-lin tribunal_N = mkN "tribunal" "tribunals" ;
-lin coal_N = mkN "coal" "coals" ;
-lin 'sea-coal_N' = mkN "sea-coal" "sea-coals" ; -- compound coal_N ;
-lin 'steam-coal_N' = mkN "steam-coal" "steam-coals" ; -- compound coal_N ;
-lin charcoal_N = mkN "charcoal" "charcoals" ; -- compound coal_N ;
-lin foal_N = mkN "foal" "foals" ;
-lin goal_N = mkN "goal" "goals" ;
-lin shoal_N = mkN "shoal" "shoals" ;
-lin antiprotozoal_N = mkN "antiprotozoal" "antiprotozoals" ;
-lin pal_N = mkN "pal" "pals" ;
-lin sepal_N = mkN "sepal" "sepals" ; -- compound pal_N ;
-lin tepal_N = mkN "tepal" "tepals" ; -- compound pal_N ;
-lin principal_N = mkN "principal" "principals" ; -- compound pal_N ;
-lin pipal_N = mkN "pipal" "pipals" ; -- compound pal_N ;
-lin opal_N = mkN "opal" "opals" ; -- notcompound pal_N ;
-lin copal_N = mkN "copal" "copals" ; -- compound pal_N ;
-lin nopal_N = mkN "nopal" "nopals" ; -- compound pal_N ;
-lin carpal_N = mkN "carpal" "carpals" ; -- compound pal_N ;
-lin metacarpal_N = mkN "metacarpal" "metacarpals" ; -- compound pal_N ;
-lin cathedral_N = mkN "cathedral" "cathedrals" ;
-lin liberal_N = mkN "liberal" "liberals" ;
-lin neoliberal_N = mkN "neoliberal" "neoliberals" ; -- compound liberal_N ;
-lin folderal_N = mkN "folderal" "folderals" ;
-lin peripheral_N = mkN "peripheral" "peripherals" ;
-lin numeral_N = mkN "numeral" "numerals" ;
-lin general_N = mkN "general" "generals" ;
-lin 'quartermaster-general_N' = mkN "quartermaster-general" "quartermaster-generals" ; -- compound general_N ;
-lin 'major-general_N' = mkN "major-general" "major-generals" ; -- compound general_N ;
-lin 'governor-general_N' = mkN "governor-general" "governor-generals" ; -- compound general_N ;
-lin 'solicitor-general_N' = mkN "solicitor-general" "solicitor-generals" ; -- compound general_N ;
-lin 'secretary-general_N' = mkN "secretary-general" "secretary-generals" ; -- compound general_N ;
-lin mineral_N = mkN "mineral" "minerals" ;
-lin funeral_N = mkN "funeral" "funerals" ;
-lin quadrilateral_N = mkN "quadrilateral" "quadrilaterals" ;
-lin equilateral_N = mkN "equilateral" "equilaterals" ;
-lin collateral_N = mkN "collateral" "collaterals" ;
-lin literal_N = mkN "literal" "literals" ;
-lin integral_N = mkN "integral" "integrals" ;
-lin admiral_N = mkN "admiral" "admirals" ;
-lin 'rear-admiral_N' = mkN "rear-admiral" "rear-admirals" ; -- compound admiral_N ;
-lin spiral_N = mkN "spiral" "spirals" ;
-lin antiviral_N = mkN "antiviral" "antivirals" ;
-lin oral_N = mkN "oral" "orals" ;
-lin coral_N = mkN "coral" "corals" ; -- notcompound oral_N ;
-lin goral_N = mkN "goral" "gorals" ; -- notcompound oral_N ;
-lin moral_N = mkN "moral" "morals" ; -- notcompound oral_N ;
-lin balmoral_N = mkN "balmoral" "balmorals" ; -- compound oral_N ;
-lin corporal_N = mkN "corporal" "corporals" ; -- compound oral_N ;
-lin 'lance-corporal_N' = mkN "lance-corporal" "lance-corporals" ; -- compound oral_N ;
-lin pectoral_N = mkN "pectoral" "pectorals" ; -- compound oral_N ;
-lin postdoctoral_N = mkN "postdoctoral" "postdoctorals" ; -- compound oral_N ;
-lin pastoral_N = mkN "pastoral" "pastorals" ; -- compound oral_N ;
-lin littoral_N = mkN "littoral" "littorals" ; -- compound oral_N ;
-lin deferral_N = mkN "deferral" "deferrals" ;
-lin referral_N = mkN "referral" "referrals" ;
-lin corral_N = mkN "corral" "corrals" ;
-lin triquetral_N = mkN "triquetral" "triquetrals" ;
-lin central_N = mkN "central" "centrals" ;
-lin mistral_N = mkN "mistral" "mistrals" ;
-lin austral_N = mkN "austral" "australs" ;
-lin neutral_N = mkN "neutral" "neutrals" ;
-lin furfural_N = mkN "furfural" "furfurals" ;
-lin inaugural_N = mkN "inaugural" "inaugurals" ;
-lin plural_N = mkN "plural" "plurals" ;
-lin mural_N = mkN "mural" "murals" ;
-lin natural_N = mkN "natural" "naturals" ;
-lin supernatural_N = mkN "supernatural" "supernaturals" ; -- compound natural_N ;
-lin guttural_N = mkN "guttural" "gutturals" ;
-lin nasal_N = mkN "nasal" "nasals" ;
-lin appraisal_N = mkN "appraisal" "appraisals" ;
-lin reappraisal_N = mkN "reappraisal" "reappraisals" ; -- compound appraisal_N ;
-lin diflunisal_N = mkN "diflunisal" "diflunisals" ;
-lin despisal_N = mkN "despisal" "despisals" ;
-lin reprisal_N = mkN "reprisal" "reprisals" ;
-lin sisal_N = mkN "sisal" "sisals" ;
-lin devisal_N = mkN "devisal" "devisals" ;
-lin commensal_N = mkN "commensal" "commensals" ;
-lin proposal_N = mkN "proposal" "proposals" ;
-lin counterproposal_N = mkN "counterproposal" "counterproposals" ; -- compound proposal_N ;
-lin disposal_N = mkN "disposal" "disposals" ;
-lin 'mine-disposal_N' = mkN "mine-disposal" "mine-disposals" ; -- compound disposal_N ;
-lin thimerosal_N = mkN "thimerosal" "thimerosals" ;
-lin rehearsal_N = mkN "rehearsal" "rehearsals" ;
-lin tarsal_N = mkN "tarsal" "tarsals" ;
-lin metatarsal_N = mkN "metatarsal" "metatarsals" ; -- compound tarsal_N ;
-lin dispersal_N = mkN "dispersal" "dispersals" ;
-lin traversal_N = mkN "traversal" "traversals" ;
-lin reversal_N = mkN "reversal" "reversals" ;
-lin universal_N = mkN "universal" "universals" ;
-lin vassal_N = mkN "vassal" "vassals" ;
-lin missal_N = mkN "missal" "missals" ;
-lin dismissal_N = mkN "dismissal" "dismissals" ; -- compound missal_N ;
-lin dossal_N = mkN "dossal" "dossals" ;
-lin hypoglossal_N = mkN "hypoglossal" "hypoglossals" ;
-lin refusal_N = mkN "refusal" "refusals" ;
-lin espousal_N = mkN "espousal" "espousals" ;
-lin arousal_N = mkN "arousal" "arousals" ;
-lin carousal_N = mkN "carousal" "carousals" ; -- notcompound arousal_N ;
-lin perusal_N = mkN "perusal" "perusals" ;
-lin palatal_N = mkN "palatal" "palatals" ;
-lin fractal_N = mkN "fractal" "fractals" ;
-lin acetal_N = mkN "acetal" "acetals" ;
-lin hemiacetal_N = mkN "hemiacetal" "hemiacetals" ; -- compound acetal_N ;
-lin varietal_N = mkN "varietal" "varietals" ;
-lin metal_N = mkN "metal" "metals" ;
-lin 'road-metal_N' = mkN "road-metal" "road-metals" ; -- compound metal_N ;
-lin 'bell-metal_N' = mkN "bell-metal" "bell-metals" ; -- compound metal_N ;
-lin bimetal_N = mkN "bimetal" "bimetals" ; -- compound metal_N ;
-lin nonmetal_N = mkN "nonmetal" "nonmetals" ; -- compound metal_N ;
-lin gunmetal_N = mkN "gunmetal" "gunmetals" ; -- compound metal_N ;
-lin petal_N = mkN "petal" "petals" ;
-lin barbital_N = mkN "barbital" "barbitals" ;
-lin mephobarbital_N = mkN "mephobarbital" "mephobarbitals" ; -- compound barbital_N ;
-lin amobarbital_N = mkN "amobarbital" "amobarbitals" ; -- compound barbital_N ;
-lin metharbital_N = mkN "metharbital" "metharbitals" ;
-lin recital_N = mkN "recital" "recitals" ;
-lin commital_N = mkN "commital" "commitals" ;
-lin capital_N = mkN "capital" "capitals" ;
-lin hospital_N = mkN "hospital" "hospitals" ;
-lin 'field-hospital_N' = mkN "field-hospital" "field-hospitals" ; -- compound hospital_N ;
-lin requital_N = mkN "requital" "requitals" ;
-lin placental_N = mkN "placental" "placentals" ;
-lin accidental_N = mkN "accidental" "accidentals" ;
-lin occidental_N = mkN "occidental" "occidentals" ;
-lin incidental_N = mkN "incidental" "incidentals" ;
-lin oriental_N = mkN "oriental" "orientals" ;
-lin fundamental_N = mkN "fundamental" "fundamentals" ;
-lin ornamental_N = mkN "ornamental" "ornamentals" ;
-lin thiopental_N = mkN "thiopental" "thiopentals" ;
-lin rental_N = mkN "rental" "rentals" ;
-lin quintal_N = mkN "quintal" "quintals" ;
-lin frontal_N = mkN "frontal" "frontals" ;
-lin horizontal_N = mkN "horizontal" "horizontals" ;
-lin buntal_N = mkN "buntal" "buntals" ;
-lin total_N = mkN "total" "totals" ;
-lin subtotal_N = mkN "subtotal" "subtotals" ; -- compound total_N ;
-lin mortal_N = mkN "mortal" "mortals" ;
-lin immortal_N = mkN "immortal" "immortals" ; -- compound mortal_N ;
-lin portal_N = mkN "portal" "portals" ;
-lin pedestal_N = mkN "pedestal" "pedestals" ;
-lin vestal_N = mkN "vestal" "vestals" ;
-lin intercostal_N = mkN "intercostal" "intercostals" ;
-lin borstal_N = mkN "borstal" "borstals" ;
-lin crystal_N = mkN "crystal" "crystals" ;
-lin 'rock-crystal_N' = mkN "rock-crystal" "rock-crystals" ; -- compound crystal_N ;
-lin acquittal_N = mkN "acquittal" "acquittals" ;
-lin rebuttal_N = mkN "rebuttal" "rebuttals" ;
-lin gradual_N = mkN "gradual" "graduals" ;
-lin residual_N = mkN "residual" "residuals" ;
-lin individual_N = mkN "individual" "individuals" ;
-lin lingual_N = mkN "lingual" "linguals" ;
-lin bilingual_N = mkN "bilingual" "bilinguals" ; -- compound lingual_N ;
-lin monolingual_N = mkN "monolingual" "monolinguals" ; -- compound lingual_N ;
-lin manual_N = mkN "manual" "manuals" ;
-lin annual_N = mkN "annual" "annuals" ;
-lin equal_N = mkN "equal" "equals" ;
-lin rorqual_N = mkN "rorqual" "rorquals" ;
-lin construal_N = mkN "construal" "construals" ;
-lin misconstrual_N = mkN "misconstrual" "misconstruals" ; -- compound construal_N ;
-lin audiovisual_N = mkN "audiovisual" "audiovisuals" ;
-lin intellectual_N = mkN "intellectual" "intellectuals" ;
-lin victual_N = mkN "victual" "victuals" ;
-lin ritual_N = mkN "ritual" "rituals" ;
-lin spiritual_N = mkN "spiritual" "spirituals" ; -- compound ritual_N ;
-lin bisexual_N = mkN "bisexual" "bisexuals" ;
-lin pansexual_N = mkN "pansexual" "pansexuals" ;
-lin homosexual_N = mkN "homosexual" "homosexuals" ;
-lin heterosexual_N = mkN "heterosexual" "heterosexuals" ;
-lin transsexual_N = mkN "transsexual" "transsexuals" ;
-lin upheaval_N = mkN "upheaval" "upheavals" ;
-lin retrieval_N = mkN "retrieval" "retrievals" ;
-lin coeval_N = mkN "coeval" "coevals" ;
-lin carnival_N = mkN "carnival" "carnivals" ;
-lin rival_N = mkN "rival" "rivals" ;
-lin arrival_N = mkN "arrival" "arrivals" ; -- compound rival_N ;
-lin festival_N = mkN "festival" "festivals" ;
-lin revival_N = mkN "revival" "revivals" ;
-lin survival_N = mkN "survival" "survivals" ;
-lin oval_N = mkN "oval" "ovals" ;
-lin removal_N = mkN "removal" "removals" ; -- compound oval_N ;
-lin approval_N = mkN "approval" "approvals" ; -- compound oval_N ;
-lin disapproval_N = mkN "disapproval" "disapprovals" ; -- compound oval_N ;
-lin serval_N = mkN "serval" "servals" ;
-lin interval_N = mkN "interval" "intervals" ;
-lin withdrawal_N = mkN "withdrawal" "withdrawals" ;
-lin renewal_N = mkN "renewal" "renewals" ;
-lin bestowal_N = mkN "bestowal" "bestowals" ;
-lin avowal_N = mkN "avowal" "avowals" ;
-lin disavowal_N = mkN "disavowal" "disavowals" ; -- compound avowal_N ;
-lin gayal_N = mkN "gayal" "gayals" ;
-lin defrayal_N = mkN "defrayal" "defrayals" ;
-lin betrayal_N = mkN "betrayal" "betrayals" ;
-lin portrayal_N = mkN "portrayal" "portrayals" ;
-lin royal_N = mkN "royal" "royals" ;
-lin pennyroyal_N = mkN "pennyroyal" "pennyroyals" ; -- compound royal_N ;
-lin quetzal_N = mkN "quetzal" "quetzals" ;
-lin dirndl_N = mkN "dirndl" "dirndls" ;
-lin groenendael_N = mkN "groenendael" "groenendaels" ;
-lin gael_N = mkN "gael" "gaels" ;
-lin tael_N = mkN "tael" "taels" ;
-lin babel_N = mkN "babel" "babels" ;
-lin label_N = mkN "label" "labels" ;
-lin rebel_N = mkN "rebel" "rebels" ;
-lin jezebel_N = mkN "jezebel" "jezebels" ;
-lin decibel_N = mkN "decibel" "decibels" ;
-lin libel_N = mkN "libel" "libels" ;
-lin umbel_N = mkN "umbel" "umbels" ;
-lin barbel_N = mkN "barbel" "barbels" ;
-lin corbel_N = mkN "corbel" "corbels" ;
-lin rubel_N = mkN "rubel" "rubels" ;
-lin pedicel_N = mkN "pedicel" "pedicels" ;
-lin lenticel_N = mkN "lenticel" "lenticels" ;
-lin chancel_N = mkN "chancel" "chancels" ;
-lin pennoncel_N = mkN "pennoncel" "pennoncels" ;
-lin marcel_N = mkN "marcel" "marcels" ;
-lin parcel_N = mkN "parcel" "parcels" ;
-lin tiercel_N = mkN "tiercel" "tiercels" ;
-lin citadel_N = mkN "citadel" "citadels" ;
-lin seidel_N = mkN "seidel" "seidels" ;
-lin infidel_N = mkN "infidel" "infidels" ;
-lin zinfandel_N = mkN "zinfandel" "zinfandels" ;
-lin rondel_N = mkN "rondel" "rondels" ;
-lin roundel_N = mkN "roundel" "roundels" ;
-lin asphodel_N = mkN "asphodel" "asphodels" ;
-lin model_N = mkN "model" "models" ;
-lin supermodel_N = mkN "supermodel" "supermodels" ; -- compound model_N ;
-lin yodel_N = mkN "yodel" "yodels" ;
-lin fardel_N = mkN "fardel" "fardels" ;
-lin strudel_N = mkN "strudel" "strudels" ;
-lin eel_N = mkN "eel" "eels" ;
-lin 'conger-eel_N' = mkN "conger-eel" "conger-eels" ; -- compound eel_N ;
-lin feel_N = mkN "feel" "feels" ; -- notcompound eel_N ;
-lin heel_N = mkN "heel" "heels" ; -- notcompound eel_N ;
-lin wheel_N = mkN "wheel" "wheels" ; -- notcompound eel_N ;
-lin 'balance-wheel_N' = mkN "balance-wheel" "balance-wheels" ; -- compound eel_N ;
-lin 'paddle-wheel_N' = mkN "paddle-wheel" "paddle-wheels" ; -- compound eel_N ;
-lin 'nose-wheel_N' = mkN "nose-wheel" "nose-wheels" ; -- compound eel_N ;
-lin 'spinning-wheel_N' = mkN "spinning-wheel" "spinning-wheels" ; -- compound eel_N ;
-lin 'steering-wheel_N' = mkN "steering-wheel" "steering-wheels" ; -- compound eel_N ;
-lin 'driving-wheel_N' = mkN "driving-wheel" "driving-wheels" ; -- compound eel_N ;
-lin 'water-wheel_N' = mkN "water-wheel" "water-wheels" ; -- compound eel_N ;
-lin 'prayer-wheel_N' = mkN "prayer-wheel" "prayer-wheels" ; -- compound eel_N ;
-lin 'sprocket-wheel_N' = mkN "sprocket-wheel" "sprocket-wheels" ; -- compound eel_N ;
-lin handwheel_N = mkN "handwheel" "handwheels" ; -- compound eel_N ;
-lin freewheel_N = mkN "freewheel" "freewheels" ; -- compound eel_N ;
-lin paddlewheel_N = mkN "paddlewheel" "paddlewheels" ; -- compound eel_N ;
-lin nosewheel_N = mkN "nosewheel" "nosewheels" ; -- compound eel_N ;
-lin cogwheel_N = mkN "cogwheel" "cogwheels" ; -- compound eel_N ;
-lin millwheel_N = mkN "millwheel" "millwheels" ; -- compound eel_N ;
-lin pinwheel_N = mkN "pinwheel" "pinwheels" ; -- compound eel_N ;
-lin waterwheel_N = mkN "waterwheel" "waterwheels" ; -- compound eel_N ;
-lin cartwheel_N = mkN "cartwheel" "cartwheels" ; -- compound eel_N ;
-lin flywheel_N = mkN "flywheel" "flywheels" ; -- compound eel_N ;
-lin keel_N = mkN "keel" "keels" ; -- notcompound eel_N ;
-lin kneel_N = mkN "kneel" "kneels" ; -- notcompound eel_N ;
-lin peel_N = mkN "peel" "peels" ; -- notcompound eel_N ;
-lin reel_N = mkN "reel" "reels" ; -- notcompound eel_N ;
-lin creel_N = mkN "creel" "creels" ; -- notcompound eel_N ;
-lin newsreel_N = mkN "newsreel" "newsreels" ; -- compound eel_N ;
-lin cockateel_N = mkN "cockateel" "cockateels" ; -- compound eel_N ;
-lin steel_N = mkN "steel" "steels" ; -- notcompound eel_N ;
-lin falafel_N = mkN "falafel" "falafels" ;
-lin rijsttaffel_N = mkN "rijsttaffel" "rijsttaffels" ;
-lin duffel_N = mkN "duffel" "duffels" ;
-lin gel_N = mkN "gel" "gels" ;
-lin bagel_N = mkN "bagel" "bagels" ; -- compound gel_N ;
-lin cudgel_N = mkN "cudgel" "cudgels" ; -- compound gel_N ;
-lin angel_N = mkN "angel" "angels" ; -- compound gel_N ;
-lin archangel_N = mkN "archangel" "archangels" ; -- compound gel_N ;
-lin hydrogel_N = mkN "hydrogel" "hydrogels" ; -- compound gel_N ;
-lin lorchel_N = mkN "lorchel" "lorchels" ;
-lin hatchel_N = mkN "hatchel" "hatchels" ;
-lin satchel_N = mkN "satchel" "satchels" ;
-lin isohel_N = mkN "isohel" "isohels" ;
-lin bushel_N = mkN "bushel" "bushels" ;
-lin bethel_N = mkN "bethel" "bethels" ;
-lin brothel_N = mkN "brothel" "brothels" ;
-lin schlemiel_N = mkN "schlemiel" "schlemiels" ;
-lin daniel_N = mkN "daniel" "daniels" ;
-lin spaniel_N = mkN "spaniel" "spaniels" ;
-lin 'water-spaniel_N' = mkN "water-spaniel" "water-spaniels" ; -- compound spaniel_N ;
-lin spiel_N = mkN "spiel" "spiels" ;
-lin glockenspiel_N = mkN "glockenspiel" "glockenspiels" ; -- compound spiel_N ;
-lin riel_N = mkN "riel" "riels" ;
-lin materiel_N = mkN "materiel" "materiels" ; -- compound riel_N ;
-lin oriel_N = mkN "oriel" "oriels" ; -- notcompound riel_N ;
-lin seckel_N = mkN "seckel" "seckels" ;
-lin nickel_N = mkN "nickel" "nickels" ;
-lin 'cupro-nickel_N' = mkN "cupro-nickel" "cupro-nickels" ; -- compound nickel_N ;
-lin cupronickel_N = mkN "cupronickel" "cupronickels" ; -- compound nickel_N ;
-lin pumpernickel_N = mkN "pumpernickel" "pumpernickels" ; -- compound nickel_N ;
-lin shekel_N = mkN "shekel" "shekels" ;
-lin yokel_N = mkN "yokel" "yokels" ;
-lin schnorkel_N = mkN "schnorkel" "schnorkels" ;
-lin snorkel_N = mkN "snorkel" "snorkels" ;
-lin parallel_N = mkN "parallel" "parallels" ;
-lin camel_N = mkN "camel" "camels" ;
-lin enamel_N = mkN "enamel" "enamels" ;
-lin caramel_N = mkN "caramel" "caramels" ;
-lin gimel_N = mkN "gimel" "gimels" ;
-lin trammel_N = mkN "trammel" "trammels" ;
-lin stammel_N = mkN "stammel" "stammels" ;
-lin pommel_N = mkN "pommel" "pommels" ;
-lin kümmel_N = mkN "kümmel" "kümmels" ;
-lin calomel_N = mkN "calomel" "calomels" ;
-lin oenomel_N = mkN "oenomel" "oenomels" ;
-lin hydromel_N = mkN "hydromel" "hydromels" ;
-lin panel_N = mkN "panel" "panels" ;
-lin crenel_N = mkN "crenel" "crenels" ;
-lin spinel_N = mkN "spinel" "spinels" ;
-lin sentinel_N = mkN "sentinel" "sentinels" ;
-lin simnel_N = mkN "simnel" "simnels" ;
-lin channel_N = mkN "channel" "channels" ;
-lin flannel_N = mkN "flannel" "flannels" ;
-lin fennel_N = mkN "fennel" "fennels" ;
-lin kennel_N = mkN "kennel" "kennels" ;
-lin personnel_N = mkN "personnel" "personnels" ;
-lin funnel_N = mkN "funnel" "funnels" ;
-lin gunnel_N = mkN "gunnel" "gunnels" ;
-lin chunnel_N = mkN "chunnel" "chunnels" ;
-lin runnel_N = mkN "runnel" "runnels" ;
-lin tunnel_N = mkN "tunnel" "tunnels" ;
-lin 'wind-tunnel_N' = mkN "wind-tunnel" "wind-tunnels" ; -- compound tunnel_N ;
-lin colonel_N = mkN "colonel" "colonels" ;
-lin grapnel_N = mkN "grapnel" "grapnels" ;
-lin shrapnel_N = mkN "shrapnel" "shrapnels" ;
-lin darnel_N = mkN "darnel" "darnels" ;
-lin kernel_N = mkN "kernel" "kernels" ;
-lin pimpernel_N = mkN "pimpernel" "pimpernels" ;
-lin blastocoel_N = mkN "blastocoel" "blastocoels" ;
-lin noel_N = mkN "noel" "noels" ;
-lin chapel_N = mkN "chapel" "chapels" ;
-lin 'side-chapel_N' = mkN "side-chapel" "side-chapels" ; -- compound chapel_N ;
-lin 'lady-chapel_N' = mkN "lady-chapel" "lady-chapels" ; -- compound chapel_N ;
-lin lapel_N = mkN "lapel" "lapels" ;
-lin scalpel_N = mkN "scalpel" "scalpels" ;
-lin sapropel_N = mkN "sapropel" "sapropels" ;
-lin rappel_N = mkN "rappel" "rappels" ;
-lin estoppel_N = mkN "estoppel" "estoppels" ;
-lin carpel_N = mkN "carpel" "carpels" ;
-lin gospel_N = mkN "gospel" "gospels" ;
-lin apparel_N = mkN "apparel" "apparels" ;
-lin gambrel_N = mkN "gambrel" "gambrels" ;
-lin timbrel_N = mkN "timbrel" "timbrels" ;
-lin tumbrel_N = mkN "tumbrel" "tumbrels" ;
-lin spandrel_N = mkN "spandrel" "spandrels" ;
-lin scoundrel_N = mkN "scoundrel" "scoundrels" ;
-lin norethynodrel_N = mkN "norethynodrel" "norethynodrels" ;
-lin doggerel_N = mkN "doggerel" "doggerels" ;
-lin cockerel_N = mkN "cockerel" "cockerels" ;
-lin dotterel_N = mkN "dotterel" "dotterels" ;
-lin mongrel_N = mkN "mongrel" "mongrels" ;
-lin morel_N = mkN "morel" "morels" ;
-lin barrel_N = mkN "barrel" "barrels" ;
-lin 'pork-barrel_N' = mkN "pork-barrel" "pork-barrels" ; -- compound barrel_N ;
-lin carrel_N = mkN "carrel" "carrels" ;
-lin quarrel_N = mkN "quarrel" "quarrels" ;
-lin squirrel_N = mkN "squirrel" "squirrels" ;
-lin sorrel_N = mkN "sorrel" "sorrels" ;
-lin petrel_N = mkN "petrel" "petrels" ;
-lin wastrel_N = mkN "wastrel" "wastrels" ;
-lin norgestrel_N = mkN "norgestrel" "norgestrels" ;
-lin kestrel_N = mkN "kestrel" "kestrels" ;
-lin minstrel_N = mkN "minstrel" "minstrels" ;
-lin laurel_N = mkN "laurel" "laurels" ;
-lin easel_N = mkN "easel" "easels" ;
-lin teasel_N = mkN "teasel" "teasels" ; -- notcompound easel_N ;
-lin weasel_N = mkN "weasel" "weasels" ; -- notcompound easel_N ;
-lin groundsel_N = mkN "groundsel" "groundsels" ;
-lin diesel_N = mkN "diesel" "diesels" ;
-lin chisel_N = mkN "chisel" "chisels" ;
-lin damsel_N = mkN "damsel" "damsels" ;
-lin tinsel_N = mkN "tinsel" "tinsels" ;
-lin counsel_N = mkN "counsel" "counsels" ;
-lin morsel_N = mkN "morsel" "morsels" ;
-lin tassel_N = mkN "tassel" "tassels" ;
-lin vessel_N = mkN "vessel" "vessels" ;
-lin 'blood-vessel_N' = mkN "blood-vessel" "blood-vessels" ; -- compound vessel_N ;
-lin 'sailing-vessel_N' = mkN "sailing-vessel" "sailing-vessels" ; -- compound vessel_N ;
-lin mussel_N = mkN "mussel" "mussels" ;
-lin streusel_N = mkN "streusel" "streusels" ;
-lin carousel_N = mkN "carousel" "carousels" ;
-lin muscatel_N = mkN "muscatel" "muscatels" ;
-lin ratel_N = mkN "ratel" "ratels" ;
-lin betel_N = mkN "betel" "betels" ;
-lin mantel_N = mkN "mantel" "mantels" ;
-lin overmantel_N = mkN "overmantel" "overmantels" ; -- compound mantel_N ;
-lin lintel_N = mkN "lintel" "lintels" ;
-lin hotel_N = mkN "hotel" "hotels" ;
-lin motel_N = mkN "motel" "motels" ;
-lin cartel_N = mkN "cartel" "cartels" ;
-lin pastel_N = mkN "pastel" "pastels" ;
-lin canistel_N = mkN "canistel" "canistels" ;
-lin hostel_N = mkN "hostel" "hostels" ;
-lin chattel_N = mkN "chattel" "chattels" ;
-lin duel_N = mkN "duel" "duels" ;
-lin fuel_N = mkN "fuel" "fuels" ;
-lin sequel_N = mkN "sequel" "sequels" ;
-lin gruel_N = mkN "gruel" "gruels" ;
-lin 'pari-mutuel_N' = mkN "pari-mutuel" "pari-mutuels" ;
-lin parimutuel_N = mkN "parimutuel" "parimutuels" ;
-lin gavel_N = mkN "gavel" "gavels" ;
-lin navel_N = mkN "navel" "navels" ;
-lin gravel_N = mkN "gravel" "gravels" ;
-lin travel_N = mkN "travel" "travels" ;
-lin bevel_N = mkN "bevel" "bevels" ;
-lin level_N = mkN "level" "levels" ;
-lin 'a-level_N' = mkN "a-level" "a-levels" ; -- compound level_N ;
-lin 'o-level_N' = mkN "o-level" "o-levels" ; -- compound level_N ;
-lin 'water-level_N' = mkN "water-level" "water-levels" ; -- compound level_N ;
-lin 'spirit-level_N' = mkN "spirit-level" "spirit-levels" ; -- compound level_N ;
-lin revel_N = mkN "revel" "revels" ;
-lin snivel_N = mkN "snivel" "snivels" ;
-lin drivel_N = mkN "drivel" "drivels" ;
-lin swivel_N = mkN "swivel" "swivels" ;
-lin hovel_N = mkN "hovel" "hovels" ;
-lin shovel_N = mkN "shovel" "shovels" ; -- notcompound hovel_N ;
-lin novel_N = mkN "novel" "novels" ;
-lin marvel_N = mkN "marvel" "marvels" ;
-lin knawel_N = mkN "knawel" "knawels" ;
-lin jewel_N = mkN "jewel" "jewels" ;
-lin newel_N = mkN "newel" "newels" ;
-lin bowel_N = mkN "bowel" "bowels" ;
-lin dowel_N = mkN "dowel" "dowels" ;
-lin rowel_N = mkN "rowel" "rowels" ;
-lin trowel_N = mkN "trowel" "trowels" ; -- notcompound rowel_N ;
-lin towel_N = mkN "towel" "towels" ;
-lin 'tea-towel_N' = mkN "tea-towel" "tea-towels" ; -- compound towel_N ;
-lin dishtowel_N = mkN "dishtowel" "dishtowels" ; -- compound towel_N ;
-lin vowel_N = mkN "vowel" "vowels" ;
-lin semivowel_N = mkN "semivowel" "semivowels" ; -- compound vowel_N ;
-lin pixel_N = mkN "pixel" "pixels" ;
-lin teazel_N = mkN "teazel" "teazels" ;
-lin hazel_N = mkN "hazel" "hazels" ;
-lin 'witch-hazel_N' = mkN "witch-hazel" "witch-hazels" ; -- compound hazel_N ;
-lin schlimazel_N = mkN "schlimazel" "schlimazels" ;
-lin bezel_N = mkN "bezel" "bezels" ;
-lin 'mangel-wurzel_N' = mkN "mangel-wurzel" "mangel-wurzels" ;
-lin pretzel_N = mkN "pretzel" "pretzels" ;
-lin schnitzel_N = mkN "schnitzel" "schnitzels" ;
-lin ouzel_N = mkN "ouzel" "ouzels" ;
-lin kohl_N = mkN "kohl" "kohls" ;
-lin buhl_N = mkN "buhl" "buhls" ;
-lin sprachgefuhl_N = mkN "sprachgefuhl" "sprachgefuhls" ;
-lin bail_N = mkN "bail" "bails" ;
-lin fail_N = mkN "fail" "fails" ;
-lin hail_N = mkN "hail" "hails" ;
-lin jail_N = mkN "jail" "jails" ;
-lin kail_N = mkN "kail" "kails" ;
-lin flail_N = mkN "flail" "flails" ;
-lin mail_N = mkN "mail" "mails" ;
-lin 'e-mail_N' = mkN "e-mail" "e-mails" ; -- compound mail_N ;
-lin 'ring-mail_N' = mkN "ring-mail" "ring-mails" ; -- compound mail_N ;
-lin 'chain-mail_N' = mkN "chain-mail" "chain-mails" ; -- compound mail_N ;
-lin camail_N = mkN "camail" "camails" ; -- compound mail_N ;
-lin freemail_N = mkN "freemail" "freemails" ; -- compound mail_N ;
-lin blackmail_N = mkN "blackmail" "blackmails" ; -- compound mail_N ;
-lin greenmail_N = mkN "greenmail" "greenmails" ; -- compound mail_N ;
-lin airmail_N = mkN "airmail" "airmails" ; -- compound mail_N ;
-lin nail_N = mkN "nail" "nails" ;
-lin thumbnail_N = mkN "thumbnail" "thumbnails" ; -- compound nail_N ;
-lin hobnail_N = mkN "hobnail" "hobnails" ; -- compound nail_N ;
-lin treenail_N = mkN "treenail" "treenails" ; -- compound nail_N ;
-lin toenail_N = mkN "toenail" "toenails" ; -- compound nail_N ;
-lin agnail_N = mkN "agnail" "agnails" ; -- compound nail_N ;
-lin hangnail_N = mkN "hangnail" "hangnails" ; -- compound nail_N ;
-lin fingernail_N = mkN "fingernail" "fingernails" ; -- compound nail_N ;
-lin doornail_N = mkN "doornail" "doornails" ; -- compound nail_N ;
-lin snail_N = mkN "snail" "snails" ; -- notcompound nail_N ;
-lin seasnail_N = mkN "seasnail" "seasnails" ; -- compound nail_N ;
-lin pail_N = mkN "pail" "pails" ;
-lin 'slop-pail_N' = mkN "slop-pail" "slop-pails" ; -- compound pail_N ;
-lin rail_N = mkN "rail" "rails" ;
-lin 'towel-rail_N' = mkN "towel-rail" "towel-rails" ; -- compound rail_N ;
-lin brail_N = mkN "brail" "brails" ; -- notcompound rail_N ;
-lin handrail_N = mkN "handrail" "handrails" ; -- compound rail_N ;
-lin guardrail_N = mkN "guardrail" "guardrails" ; -- compound rail_N ;
-lin frail_N = mkN "frail" "frails" ; -- notcompound rail_N ;
-lin taffrail_N = mkN "taffrail" "taffrails" ; -- compound rail_N ;
-lin grail_N = mkN "grail" "grails" ; -- notcompound rail_N ;
-lin monorail_N = mkN "monorail" "monorails" ; -- compound rail_N ;
-lin trail_N = mkN "trail" "trails" ; -- notcompound rail_N ;
-lin contrail_N = mkN "contrail" "contrails" ; -- compound rail_N ;
-lin sail_N = mkN "sail" "sails" ;
-lin parasail_N = mkN "parasail" "parasails" ; -- compound sail_N ;
-lin headsail_N = mkN "headsail" "headsails" ; -- compound sail_N ;
-lin foresail_N = mkN "foresail" "foresails" ; -- compound sail_N ;
-lin gaffsail_N = mkN "gaffsail" "gaffsails" ; -- compound sail_N ;
-lin lugsail_N = mkN "lugsail" "lugsails" ; -- compound sail_N ;
-lin mainsail_N = mkN "mainsail" "mainsails" ; -- compound sail_N ;
-lin topsail_N = mkN "topsail" "topsails" ; -- compound sail_N ;
-lin wassail_N = mkN "wassail" "wassails" ; -- compound sail_N ;
-lin spritsail_N = mkN "spritsail" "spritsails" ; -- compound sail_N ;
-lin staysail_N = mkN "staysail" "staysails" ; -- compound sail_N ;
-lin skysail_N = mkN "skysail" "skysails" ; -- compound sail_N ;
-lin tail_N = mkN "tail" "tails" ;
-lin bobtail_N = mkN "bobtail" "bobtails" ; -- compound tail_N ;
-lin broadtail_N = mkN "broadtail" "broadtails" ; -- compound tail_N ;
-lin redtail_N = mkN "redtail" "redtails" ; -- compound tail_N ;
-lin swordtail_N = mkN "swordtail" "swordtails" ; -- compound tail_N ;
-lin detail_N = mkN "detail" "details" ; -- compound tail_N ;
-lin freetail_N = mkN "freetail" "freetails" ; -- compound tail_N ;
-lin tripletail_N = mkN "tripletail" "tripletails" ; -- compound tail_N ;
-lin bristletail_N = mkN "bristletail" "bristletails" ; -- compound tail_N ;
-lin retail_N = mkN "retail" "retails" ; -- compound tail_N ;
-lin squaretail_N = mkN "squaretail" "squaretails" ; -- compound tail_N ;
-lin horsetail_N = mkN "horsetail" "horsetails" ; -- compound tail_N ;
-lin dovetail_N = mkN "dovetail" "dovetails" ; -- compound tail_N ;
-lin wagtail_N = mkN "wagtail" "wagtails" ; -- compound tail_N ;
-lin pigtail_N = mkN "pigtail" "pigtails" ; -- compound tail_N ;
-lin ringtail_N = mkN "ringtail" "ringtails" ; -- compound tail_N ;
-lin cocktail_N = mkN "cocktail" "cocktails" ; -- compound tail_N ;
-lin fantail_N = mkN "fantail" "fantails" ; -- compound tail_N ;
-lin entail_N = mkN "entail" "entails" ; -- compound tail_N ;
-lin pentail_N = mkN "pentail" "pentails" ; -- compound tail_N ;
-lin pintail_N = mkN "pintail" "pintails" ; -- compound tail_N ;
-lin cottontail_N = mkN "cottontail" "cottontails" ; -- compound tail_N ;
-lin browntail_N = mkN "browntail" "browntails" ; -- compound tail_N ;
-lin whiptail_N = mkN "whiptail" "whiptails" ; -- compound tail_N ;
-lin flickertail_N = mkN "flickertail" "flickertails" ; -- compound tail_N ;
-lin scissortail_N = mkN "scissortail" "scissortails" ; -- compound tail_N ;
-lin cattail_N = mkN "cattail" "cattails" ; -- compound tail_N ;
-lin coattail_N = mkN "coattail" "coattails" ; -- compound tail_N ;
-lin shirttail_N = mkN "shirttail" "shirttails" ; -- compound tail_N ;
-lin yellowtail_N = mkN "yellowtail" "yellowtails" ; -- compound tail_N ;
-lin oxtail_N = mkN "oxtail" "oxtails" ; -- compound tail_N ;
-lin foxtail_N = mkN "foxtail" "foxtails" ; -- compound tail_N ;
-lin ponytail_N = mkN "ponytail" "ponytails" ; -- compound tail_N ;
-lin quail_N = mkN "quail" "quails" ;
-lin avail_N = mkN "avail" "avails" ;
-lin travail_N = mkN "travail" "travails" ; -- notcompound avail_N ;
-lin wail_N = mkN "wail" "wails" ;
-lin bulbil_N = mkN "bulbil" "bulbils" ;
-lin gerbil_N = mkN "gerbil" "gerbils" ;
-lin uracil_N = mkN "uracil" "uracils" ;
-lin thiouracil_N = mkN "thiouracil" "thiouracils" ; -- compound uracil_N ;
-lin propylthiouracil_N = mkN "propylthiouracil" "propylthiouracils" ; -- compound uracil_N ;
-lin fluorouracil_N = mkN "fluorouracil" "fluorouracils" ; -- compound uracil_N ;
-lin codicil_N = mkN "codicil" "codicils" ;
-lin verticil_N = mkN "verticil" "verticils" ;
-lin pencil_N = mkN "pencil" "pencils" ;
-lin 'slate-pencil_N' = mkN "slate-pencil" "slate-pencils" ; -- compound pencil_N ;
-lin stencil_N = mkN "stencil" "stencils" ;
-lin council_N = mkN "council" "councils" ;
-lin chlorambucil_N = mkN "chlorambucil" "chlorambucils" ;
-lin minoxidil_N = mkN "minoxidil" "minoxidils" ;
-lin daffodil_N = mkN "daffodil" "daffodils" ;
-lin nonpareil_N = mkN "nonpareil" "nonpareils" ;
-lin veil_N = mkN "veil" "veils" ;
-lin tadalafil_N = mkN "tadalafil" "tadalafils" ;
-lin sildenafil_N = mkN "sildenafil" "sildenafils" ;
-lin vardenafil_N = mkN "vardenafil" "vardenafils" ;
-lin vigil_N = mkN "vigil" "vigils" ;
-lin argil_N = mkN "argil" "argils" ;
-lin kanchil_N = mkN "kanchil" "kanchils" ;
-lin archil_N = mkN "archil" "archils" ;
-lin orchil_N = mkN "orchil" "orchils" ;
-lin nihil_N = mkN "nihil" "nihils" ;
-lin dphil_N = mkN "dphil" "dphils" ;
-lin acidophil_N = mkN "acidophil" "acidophils" ;
-lin anglophil_N = mkN "anglophil" "anglophils" ;
-lin eosinophil_N = mkN "eosinophil" "eosinophils" ;
-lin neutrophil_N = mkN "neutrophil" "neutrophils" ;
-lin basophil_N = mkN "basophil" "basophils" ;
-lin mil_N = mkN "mil" "mils" ;
-lin verapamil_N = mkN "verapamil" "verapamils" ; -- compound mil_N ;
-lin tamil_N = mkN "tamil" "tamils" ; -- compound mil_N ;
-lin nil_N = mkN "nil" "nils" ;
-lin anil_N = mkN "anil" "anils" ; -- notcompound nil_N ;
-lin oil_N = mkN "oil" "oils" ;
-lin 'cod-liver oil_N' = mkN "cod-liver oil" "cod-liver oils" ; -- compound oil_N ;
-lin 'castor oil_N' = mkN "castor oil" "castor oils" ; -- compound oil_N ;
-lin 'salad-oil_N' = mkN "salad-oil" "salad-oils" ; -- compound oil_N ;
-lin 'shale-oil_N' = mkN "shale-oil" "shale-oils" ; -- compound oil_N ;
-lin 'tung-oil_N' = mkN "tung-oil" "tung-oils" ; -- compound oil_N ;
-lin 'palm-oil_N' = mkN "palm-oil" "palm-oils" ; -- compound oil_N ;
-lin 'hair-oil_N' = mkN "hair-oil" "hair-oils" ; -- compound oil_N ;
-lin boil_N = mkN "boil" "boils" ; -- notcompound oil_N ;
-lin gumboil_N = mkN "gumboil" "gumboils" ; -- compound oil_N ;
-lin coil_N = mkN "coil" "coils" ; -- notcompound oil_N ;
-lin recoil_N = mkN "recoil" "recoils" ; -- compound oil_N ;
-lin foil_N = mkN "foil" "foils" ; -- notcompound oil_N ;
-lin 'gold-foil_N' = mkN "gold-foil" "gold-foils" ; -- compound oil_N ;
-lin trefoil_N = mkN "trefoil" "trefoils" ; -- compound oil_N ;
-lin cinquefoil_N = mkN "cinquefoil" "cinquefoils" ; -- compound oil_N ;
-lin tinfoil_N = mkN "tinfoil" "tinfoils" ; -- compound oil_N ;
-lin hydrofoil_N = mkN "hydrofoil" "hydrofoils" ; -- compound oil_N ;
-lin featherfoil_N = mkN "featherfoil" "featherfoils" ; -- compound oil_N ;
-lin counterfoil_N = mkN "counterfoil" "counterfoils" ; -- compound oil_N ;
-lin airfoil_N = mkN "airfoil" "airfoils" ; -- compound oil_N ;
-lin turmoil_N = mkN "turmoil" "turmoils" ; -- compound oil_N ;
-lin spoil_N = mkN "spoil" "spoils" ; -- notcompound oil_N ;
-lin broil_N = mkN "broil" "broils" ; -- notcompound oil_N ;
-lin soil_N = mkN "soil" "soils" ; -- notcompound oil_N ;
-lin 'night-soil_N' = mkN "night-soil" "night-soils" ; -- compound oil_N ;
-lin subsoil_N = mkN "subsoil" "subsoils" ; -- compound oil_N ;
-lin topsoil_N = mkN "topsoil" "topsoils" ; -- compound oil_N ;
-lin toil_N = mkN "toil" "toils" ; -- notcompound oil_N ;
-lin neuropil_N = mkN "neuropil" "neuropils" ;
-lin pupil_N = mkN "pupil" "pupils" ;
-lin aril_N = mkN "aril" "arils" ;
-lin courbaril_N = mkN "courbaril" "courbarils" ; -- compound aril_N ;
-lin fibril_N = mkN "fibril" "fibrils" ;
-lin myofibril_N = mkN "myofibril" "myofibrils" ; -- compound fibril_N ;
-lin nombril_N = mkN "nombril" "nombrils" ;
-lin tumbril_N = mkN "tumbril" "tumbrils" ;
-lin tendril_N = mkN "tendril" "tendrils" ;
-lin peril_N = mkN "peril" "perils" ;
-lin zoril_N = mkN "zoril" "zorils" ;
-lin April_N = mkN "April" "Aprils" ;
-lin enalapril_N = mkN "enalapril" "enalaprils" ;
-lin trandolapril_N = mkN "trandolapril" "trandolaprils" ;
-lin ramipril_N = mkN "ramipril" "ramiprils" ;
-lin lisinopril_N = mkN "lisinopril" "lisinoprils" ;
-lin captopril_N = mkN "captopril" "captoprils" ;
-lin nostril_N = mkN "nostril" "nostrils" ;
-lin bovril_N = mkN "bovril" "bovrils" ;
-lin basil_N = mkN "basil" "basils" ;
-lin utensil_N = mkN "utensil" "utensils" ;
-lin tonsil_N = mkN "tonsil" "tonsils" ;
-lin fossil_N = mkN "fossil" "fossils" ;
-lin microfossil_N = mkN "microfossil" "microfossils" ; -- compound fossil_N ;
-lin fusil_N = mkN "fusil" "fusils" ;
-lin lentil_N = mkN "lentil" "lentils" ;
-lin pistil_N = mkN "pistil" "pistils" ;
-lin fauteuil_N = mkN "fauteuil" "fauteuils" ;
-lin jonquil_N = mkN "jonquil" "jonquils" ;
-lin evil_N = mkN "evil" "evils" ;
-lin devil_N = mkN "devil" "devils" ; -- notcompound evil_N ;
-lin daredevil_N = mkN "daredevil" "daredevils" ; -- compound evil_N ;
-lin weevil_N = mkN "weevil" "weevils" ; -- compound evil_N ;
-lin anvil_N = mkN "anvil" "anvils" ;
-lin chervil_N = mkN "chervil" "chervils" ;
-lin axil_N = mkN "axil" "axils" ;
-lin cefadroxil_N = mkN "cefadroxil" "cefadroxils" ;
-lin gemfibrozil_N = mkN "gemfibrozil" "gemfibrozils" ;
-lin shtikl_N = mkN "shtikl" "shtikls" ;
-lin 'cure-all_N' = mkN "cure-all" "cure-alls" ;
-lin 'fuck-all_N' = mkN "fuck-all" "fuck-alls" ;
-lin 'bugger-all_N' = mkN "bugger-all" "bugger-alls" ;
-lin 'free-for-all_N' = mkN "free-for-all" "free-for-alls" ;
-lin 'know-all_N' = mkN "know-all" "know-alls" ;
-lin ball_N = mkN "ball" "balls" ;
-lin 'time-ball_N' = mkN "time-ball" "time-balls" ; -- compound ball_N ;
-lin 'medicine-ball_N' = mkN "medicine-ball" "medicine-balls" ; -- compound ball_N ;
-lin 'golf-ball_N' = mkN "golf-ball" "golf-balls" ; -- compound ball_N ;
-lin 'punching-ball_N' = mkN "punching-ball" "punching-balls" ; -- compound ball_N ;
-lin 'no-ball_N' = mkN "no-ball" "no-balls" ; -- compound ball_N ;
-lin 'brandy-ball_N' = mkN "brandy-ball" "brandy-balls" ; -- compound ball_N ;
-lin handball_N = mkN "handball" "handballs" ; -- compound ball_N ;
-lin hardball_N = mkN "hardball" "hardballs" ; -- compound ball_N ;
-lin knuckleball_N = mkN "knuckleball" "knuckleballs" ; -- compound ball_N ;
-lin fireball_N = mkN "fireball" "fireballs" ; -- compound ball_N ;
-lin baseball_N = mkN "baseball" "baseballs" ; -- compound ball_N ;
-lin eyeball_N = mkN "eyeball" "eyeballs" ; -- compound ball_N ;
-lin puffball_N = mkN "puffball" "puffballs" ; -- compound ball_N ;
-lin punchball_N = mkN "punchball" "punchballs" ; -- compound ball_N ;
-lin highball_N = mkN "highball" "highballs" ; -- compound ball_N ;
-lin fishball_N = mkN "fishball" "fishballs" ; -- compound ball_N ;
-lin pushball_N = mkN "pushball" "pushballs" ; -- compound ball_N ;
-lin mothball_N = mkN "mothball" "mothballs" ; -- compound ball_N ;
-lin earthball_N = mkN "earthball" "earthballs" ; -- compound ball_N ;
-lin trackball_N = mkN "trackball" "trackballs" ; -- compound ball_N ;
-lin stickball_N = mkN "stickball" "stickballs" ; -- compound ball_N ;
-lin beanball_N = mkN "beanball" "beanballs" ; -- compound ball_N ;
-lin pinball_N = mkN "pinball" "pinballs" ; -- compound ball_N ;
-lin cannonball_N = mkN "cannonball" "cannonballs" ; -- compound ball_N ;
-lin tetherball_N = mkN "tetherball" "tetherballs" ; -- compound ball_N ;
-lin hairball_N = mkN "hairball" "hairballs" ; -- compound ball_N ;
-lin sourball_N = mkN "sourball" "sourballs" ; -- compound ball_N ;
-lin meatball_N = mkN "meatball" "meatballs" ; -- compound ball_N ;
-lin basketball_N = mkN "basketball" "basketballs" ; -- compound ball_N ;
-lin netball_N = mkN "netball" "netballs" ; -- compound ball_N ;
-lin racquetball_N = mkN "racquetball" "racquetballs" ; -- compound ball_N ;
-lin softball_N = mkN "softball" "softballs" ; -- compound ball_N ;
-lin spitball_N = mkN "spitball" "spitballs" ; -- compound ball_N ;
-lin paintball_N = mkN "paintball" "paintballs" ; -- compound ball_N ;
-lin football_N = mkN "football" "footballs" ; -- compound ball_N ;
-lin fastball_N = mkN "fastball" "fastballs" ; -- compound ball_N ;
-lin screwball_N = mkN "screwball" "screwballs" ; -- compound ball_N ;
-lin snowball_N = mkN "snowball" "snowballs" ; -- compound ball_N ;
-lin brandyball_N = mkN "brandyball" "brandyballs" ; -- compound ball_N ;
-lin volleyball_N = mkN "volleyball" "volleyballs" ; -- compound ball_N ;
-lin call_N = mkN "call" "calls" ;
-lin 'trunk-call_N' = mkN "trunk-call" "trunk-calls" ; -- compound call_N ;
-lin 'roll-call_N' = mkN "roll-call" "roll-calls" ; -- compound call_N ;
-lin 'curtain-call_N' = mkN "curtain-call" "curtain-calls" ; -- compound call_N ;
-lin birdcall_N = mkN "birdcall" "birdcalls" ; -- compound call_N ;
-lin phonecall_N = mkN "phonecall" "phonecalls" ; -- compound call_N ;
-lin recall_N = mkN "recall" "recalls" ; -- compound call_N ;
-lin catcall_N = mkN "catcall" "catcalls" ; -- compound call_N ;
-lin holdall_N = mkN "holdall" "holdalls" ;
-lin fall_N = mkN "fall" "falls" ;
-lin landfall_N = mkN "landfall" "landfalls" ; -- compound fall_N ;
-lin windfall_N = mkN "windfall" "windfalls" ; -- compound fall_N ;
-lin icefall_N = mkN "icefall" "icefalls" ; -- compound fall_N ;
-lin rainfall_N = mkN "rainfall" "rainfalls" ; -- compound fall_N ;
-lin downfall_N = mkN "downfall" "downfalls" ; -- compound fall_N ;
-lin waterfall_N = mkN "waterfall" "waterfalls" ; -- compound fall_N ;
-lin pratfall_N = mkN "pratfall" "pratfalls" ; -- compound fall_N ;
-lin nightfall_N = mkN "nightfall" "nightfalls" ; -- compound fall_N ;
-lin pitfall_N = mkN "pitfall" "pitfalls" ; -- compound fall_N ;
-lin footfall_N = mkN "footfall" "footfalls" ; -- compound fall_N ;
-lin shortfall_N = mkN "shortfall" "shortfalls" ; -- compound fall_N ;
-lin outfall_N = mkN "outfall" "outfalls" ; -- compound fall_N ;
-lin snowfall_N = mkN "snowfall" "snowfalls" ; -- compound fall_N ;
-lin gall_N = mkN "gall" "galls" ;
-lin hall_N = mkN "hall" "halls" ;
-lin 'music-hall_N' = mkN "music-hall" "music-halls" ; -- compound hall_N ;
-lin 'guild-hall_N' = mkN "guild-hall" "guild-halls" ; -- compound hall_N ;
-lin 'dance-hall_N' = mkN "dance-hall" "dance-halls" ; -- compound hall_N ;
-lin 'concert-hall_N' = mkN "concert-hall" "concert-halls" ; -- compound hall_N ;
-lin catchall_N = mkN "catchall" "catchalls" ; -- compound hall_N ;
-lin gildhall_N = mkN "gildhall" "gildhalls" ; -- compound hall_N ;
-lin guildhall_N = mkN "guildhall" "guildhalls" ; -- compound hall_N ;
-lin small_N = mkN "small" "smalls" ;
-lin pall_N = mkN "pall" "palls" ;
-lin spall_N = mkN "spall" "spalls" ; -- notcompound pall_N ;
-lin overall_N = mkN "overall" "overalls" ;
-lin coverall_N = mkN "coverall" "coveralls" ; -- notcompound overall_N ;
-lin thrall_N = mkN "thrall" "thralls" ;
-lin tall_N = mkN "tall" "talls" ;
-lin stall_N = mkN "stall" "stalls" ; -- notcompound tall_N ;
-lin 'coffee-stall_N' = mkN "coffee-stall" "coffee-stalls" ; -- compound tall_N ;
-lin thumbstall_N = mkN "thumbstall" "thumbstalls" ; -- compound tall_N ;
-lin headstall_N = mkN "headstall" "headstalls" ; -- compound tall_N ;
-lin bookstall_N = mkN "bookstall" "bookstalls" ; -- compound tall_N ;
-lin fingerstall_N = mkN "fingerstall" "fingerstalls" ; -- compound tall_N ;
-lin squall_N = mkN "squall" "squalls" ;
-lin wall_N = mkN "wall" "walls" ;
-lin 'sea-wall_N' = mkN "sea-wall" "sea-walls" ; -- compound wall_N ;
-lin 'party-wall_N' = mkN "party-wall" "party-walls" ; -- compound wall_N ;
-lin sidewall_N = mkN "sidewall" "sidewalls" ; -- compound wall_N ;
-lin firewall_N = mkN "firewall" "firewalls" ; -- compound wall_N ;
-lin footwall_N = mkN "footwall" "footwalls" ; -- compound wall_N ;
-lin carryall_N = mkN "carryall" "carryalls" ;
-lin ell_N = mkN "ell" "ells" ;
-lin bell_N = mkN "bell" "bells" ; -- notcompound ell_N ;
-lin 'diving-bell_N' = mkN "diving-bell" "diving-bells" ; -- compound ell_N ;
-lin 'sleigh-bell_N' = mkN "sleigh-bell" "sleigh-bells" ; -- compound ell_N ;
-lin 'shop-bell_N' = mkN "shop-bell" "shop-bells" ; -- compound ell_N ;
-lin 'night-bell_N' = mkN "night-bell" "night-bells" ; -- compound ell_N ;
-lin dumbbell_N = mkN "dumbbell" "dumbbells" ; -- compound ell_N ;
-lin handbell_N = mkN "handbell" "handbells" ; -- compound ell_N ;
-lin harebell_N = mkN "harebell" "harebells" ; -- compound ell_N ;
-lin bluebell_N = mkN "bluebell" "bluebells" ; -- compound ell_N ;
-lin barbell_N = mkN "barbell" "barbells" ; -- compound ell_N ;
-lin doorbell_N = mkN "doorbell" "doorbells" ; -- compound ell_N ;
-lin cowbell_N = mkN "cowbell" "cowbells" ; -- compound ell_N ;
-lin snowbell_N = mkN "snowbell" "snowbells" ; -- compound ell_N ;
-lin cell_N = mkN "cell" "cells" ; -- notcompound ell_N ;
-lin 'nerve-cell_N' = mkN "nerve-cell" "nerve-cells" ; -- compound ell_N ;
-lin dell_N = mkN "dell" "dells" ; -- notcompound ell_N ;
-lin fell_N = mkN "fell" "fells" ; -- notcompound ell_N ;
-lin hell_N = mkN "hell" "hells" ; -- notcompound ell_N ;
-lin shell_N = mkN "shell" "shells" ; -- notcompound ell_N ;
-lin 'scallop-shell_N' = mkN "scallop-shell" "scallop-shells" ; -- compound ell_N ;
-lin seashell_N = mkN "seashell" "seashells" ; -- compound ell_N ;
-lin bombshell_N = mkN "bombshell" "bombshells" ; -- compound ell_N ;
-lin cockleshell_N = mkN "cockleshell" "cockleshells" ; -- compound ell_N ;
-lin tortoiseshell_N = mkN "tortoiseshell" "tortoiseshells" ; -- compound ell_N ;
-lin eggshell_N = mkN "eggshell" "eggshells" ; -- compound ell_N ;
-lin clamshell_N = mkN "clamshell" "clamshells" ; -- compound ell_N ;
-lin nutshell_N = mkN "nutshell" "nutshells" ; -- compound ell_N ;
-lin smell_N = mkN "smell" "smells" ; -- notcompound ell_N ;
-lin spell_N = mkN "spell" "spells" ; -- notcompound ell_N ;
-lin well_N = mkN "well" "wells" ; -- notcompound ell_N ;
-lin 'tube-well_N' = mkN "tube-well" "tube-wells" ; -- compound ell_N ;
-lin 'oil-well_N' = mkN "oil-well" "oil-wells" ; -- compound ell_N ;
-lin 'ne\'er-do-well_N' = mkN "ne'er-do-well" "ne'er-do-wells" ; -- compound ell_N ;
-lin speedwell_N = mkN "speedwell" "speedwells" ; -- compound ell_N ;
-lin farewell_N = mkN "farewell" "farewells" ; -- compound ell_N ;
-lin inkwell_N = mkN "inkwell" "inkwells" ; -- compound ell_N ;
-lin gromwell_N = mkN "gromwell" "gromwells" ; -- compound ell_N ;
-lin stairwell_N = mkN "stairwell" "stairwells" ; -- compound ell_N ;
-lin swell_N = mkN "swell" "swells" ; -- notcompound ell_N ;
-lin maxwell_N = mkN "maxwell" "maxwells" ; -- compound ell_N ;
-lin yell_N = mkN "yell" "yells" ; -- notcompound ell_N ;
-lin ill_N = mkN "ill" "ills" ;
-lin bill_N = mkN "bill" "bills" ; -- notcompound ill_N ;
-lin 'bank-bill_N' = mkN "bank-bill" "bank-bills" ; -- compound ill_N ;
-lin broadbill_N = mkN "broadbill" "broadbills" ; -- compound ill_N ;
-lin handbill_N = mkN "handbill" "handbills" ; -- compound ill_N ;
-lin saddlebill_N = mkN "saddlebill" "saddlebills" ; -- compound ill_N ;
-lin shoebill_N = mkN "shoebill" "shoebills" ; -- compound ill_N ;
-lin openbill_N = mkN "openbill" "openbills" ; -- compound ill_N ;
-lin spoonbill_N = mkN "spoonbill" "spoonbills" ; -- compound ill_N ;
-lin hornbill_N = mkN "hornbill" "hornbills" ; -- compound ill_N ;
-lin thornbill_N = mkN "thornbill" "thornbills" ; -- compound ill_N ;
-lin razorbill_N = mkN "razorbill" "razorbills" ; -- compound ill_N ;
-lin cranesbill_N = mkN "cranesbill" "cranesbills" ; -- compound ill_N ;
-lin storksbill_N = mkN "storksbill" "storksbills" ; -- compound ill_N ;
-lin crossbill_N = mkN "crossbill" "crossbills" ; -- compound ill_N ;
-lin boatbill_N = mkN "boatbill" "boatbills" ; -- compound ill_N ;
-lin playbill_N = mkN "playbill" "playbills" ; -- compound ill_N ;
-lin waybill_N = mkN "waybill" "waybills" ; -- compound ill_N ;
-lin ivorybill_N = mkN "ivorybill" "ivorybills" ; -- compound ill_N ;
-lin dill_N = mkN "dill" "dills" ; -- notcompound ill_N ;
-lin fill_N = mkN "fill" "fills" ; -- notcompound ill_N ;
-lin landfill_N = mkN "landfill" "landfills" ; -- compound ill_N ;
-lin refill_N = mkN "refill" "refills" ; -- compound ill_N ;
-lin gill_N = mkN "gill" "gills" ; -- notcompound ill_N ;
-lin bluegill_N = mkN "bluegill" "bluegills" ; -- compound ill_N ;
-lin aspergill_N = mkN "aspergill" "aspergills" ; -- compound ill_N ;
-lin hill_N = mkN "hill" "hills" ; -- notcompound ill_N ;
-lin 'ant-hill_N' = mkN "ant-hill" "ant-hills" ; -- compound ill_N ;
-lin chill_N = mkN "chill" "chills" ; -- notcompound ill_N ;
-lin molehill_N = mkN "molehill" "molehills" ; -- compound ill_N ;
-lin dunghill_N = mkN "dunghill" "dunghills" ; -- compound ill_N ;
-lin downhill_N = mkN "downhill" "downhills" ; -- compound ill_N ;
-lin uphill_N = mkN "uphill" "uphills" ; -- compound ill_N ;
-lin shill_N = mkN "shill" "shills" ; -- notcompound ill_N ;
-lin thill_N = mkN "thill" "thills" ; -- notcompound ill_N ;
-lin anthill_N = mkN "anthill" "anthills" ; -- compound ill_N ;
-lin foothill_N = mkN "foothill" "foothills" ; -- compound ill_N ;
-lin roadkill_N = mkN "roadkill" "roadkills" ; -- compound ill_N ;
-lin overkill_N = mkN "overkill" "overkills" ; -- compound ill_N ;
-lin skill_N = mkN "skill" "skills" ; -- notcompound ill_N ;
-lin mill_N = mkN "mill" "mills" ; -- notcompound ill_N ;
-lin 'coffee-mill_N' = mkN "coffee-mill" "coffee-mills" ; -- compound ill_N ;
-lin 'rolling-mill_N' = mkN "rolling-mill" "rolling-mills" ; -- compound ill_N ;
-lin 'lumber-mill_N' = mkN "lumber-mill" "lumber-mills" ; -- compound ill_N ;
-lin 'pepper-mill_N' = mkN "pepper-mill" "pepper-mills" ; -- compound ill_N ;
-lin treadmill_N = mkN "treadmill" "treadmills" ; -- compound ill_N ;
-lin windmill_N = mkN "windmill" "windmills" ; -- compound ill_N ;
-lin spicemill_N = mkN "spicemill" "spicemills" ; -- compound ill_N ;
-lin lumbermill_N = mkN "lumbermill" "lumbermills" ; -- compound ill_N ;
-lin papermill_N = mkN "papermill" "papermills" ; -- compound ill_N ;
-lin watermill_N = mkN "watermill" "watermills" ; -- compound ill_N ;
-lin gristmill_N = mkN "gristmill" "gristmills" ; -- compound ill_N ;
-lin sawmill_N = mkN "sawmill" "sawmills" ; -- compound ill_N ;
-lin pill_N = mkN "pill" "pills" ; -- notcompound ill_N ;
-lin 'sleeping-pill_N' = mkN "sleeping-pill" "sleeping-pills" ; -- compound ill_N ;
-lin spill_N = mkN "spill" "spills" ; -- notcompound ill_N ;
-lin overspill_N = mkN "overspill" "overspills" ; -- compound ill_N ;
-lin rill_N = mkN "rill" "rills" ; -- notcompound ill_N ;
-lin drill_N = mkN "drill" "drills" ; -- notcompound ill_N ;
-lin 'burr-drill_N' = mkN "burr-drill" "burr-drills" ; -- compound ill_N ;
-lin mandrill_N = mkN "mandrill" "mandrills" ; -- compound ill_N ;
-lin frill_N = mkN "frill" "frills" ; -- notcompound ill_N ;
-lin grill_N = mkN "grill" "grills" ; -- notcompound ill_N ;
-lin thrill_N = mkN "thrill" "thrills" ; -- notcompound ill_N ;
-lin krill_N = mkN "krill" "krills" ; -- notcompound ill_N ;
-lin trill_N = mkN "trill" "trills" ; -- notcompound ill_N ;
-lin sill_N = mkN "sill" "sills" ; -- notcompound ill_N ;
-lin doorsill_N = mkN "doorsill" "doorsills" ; -- compound ill_N ;
-lin windowsill_N = mkN "windowsill" "windowsills" ; -- compound ill_N ;
-lin till_N = mkN "till" "tills" ; -- notcompound ill_N ;
-lin still_N = mkN "still" "stills" ; -- notcompound ill_N ;
-lin standstill_N = mkN "standstill" "standstills" ; -- compound ill_N ;
-lin quill_N = mkN "quill" "quills" ; -- compound ill_N ;
-lin squill_N = mkN "squill" "squills" ; -- compound ill_N ;
-lin will_N = mkN "will" "wills" ; -- notcompound ill_N ;
-lin 'self-will_N' = mkN "self-will" "self-wills" ; -- compound ill_N ;
-lin goodwill_N = mkN "goodwill" "goodwills" ; -- compound ill_N ;
-lin nimblewill_N = mkN "nimblewill" "nimblewills" ; -- compound ill_N ;
-lin poorwill_N = mkN "poorwill" "poorwills" ; -- compound ill_N ;
-lin whippoorwill_N = mkN "whippoorwill" "whippoorwills" ; -- compound ill_N ;
-lin swill_N = mkN "swill" "swills" ; -- notcompound ill_N ;
-lin pigswill_N = mkN "pigswill" "pigswills" ; -- compound ill_N ;
-lin twill_N = mkN "twill" "twills" ; -- notcompound ill_N ;
-lin zill_N = mkN "zill" "zills" ; -- notcompound ill_N ;
-lin boll_N = mkN "boll" "bolls" ;
-lin doll_N = mkN "doll" "dolls" ;
-lin moll_N = mkN "moll" "molls" ;
-lin knoll_N = mkN "knoll" "knolls" ;
-lin poll_N = mkN "poll" "polls" ;
-lin deedpoll_N = mkN "deedpoll" "deedpolls" ; -- compound poll_N ;
-lin redpoll_N = mkN "redpoll" "redpolls" ; -- compound poll_N ;
-lin blackpoll_N = mkN "blackpoll" "blackpolls" ; -- compound poll_N ;
-lin roll_N = mkN "roll" "rolls" ;
-lin 'sausage-roll_N' = mkN "sausage-roll" "sausage-rolls" ; -- compound roll_N ;
-lin 'death-roll_N' = mkN "death-roll" "death-rolls" ; -- compound roll_N ;
-lin 'rock-\'n-roll_N' = mkN "rock-'n-roll" "rock-'n-rolls" ; -- compound roll_N ;
-lin 'toilet-roll_N' = mkN "toilet-roll" "toilet-rolls" ; -- compound roll_N ;
-lin 'rent-roll_N' = mkN "rent-roll" "rent-rolls" ; -- compound roll_N ;
-lin scroll_N = mkN "scroll" "scrolls" ; -- notcompound roll_N ;
-lin bedroll_N = mkN "bedroll" "bedrolls" ; -- compound roll_N ;
-lin bankroll_N = mkN "bankroll" "bankrolls" ; -- compound roll_N ;
-lin troll_N = mkN "troll" "trolls" ; -- notcompound roll_N ;
-lin stroll_N = mkN "stroll" "strolls" ; -- notcompound roll_N ;
-lin payroll_N = mkN "payroll" "payrolls" ; -- compound roll_N ;
-lin jellyroll_N = mkN "jellyroll" "jellyrolls" ; -- compound roll_N ;
-lin plimsoll_N = mkN "plimsoll" "plimsolls" ;
-lin toll_N = mkN "toll" "tolls" ;
-lin atoll_N = mkN "atoll" "atolls" ; -- notcompound toll_N ;
-lin bull_N = mkN "bull" "bulls" ;
-lin cull_N = mkN "cull" "culls" ;
-lin scull_N = mkN "scull" "sculls" ; -- notcompound cull_N ;
-lin gull_N = mkN "gull" "gulls" ;
-lin seagull_N = mkN "seagull" "seagulls" ; -- compound gull_N ;
-lin hull_N = mkN "hull" "hulls" ;
-lin skull_N = mkN "skull" "skulls" ;
-lin numskull_N = mkN "numskull" "numskulls" ; -- compound skull_N ;
-lin lull_N = mkN "lull" "lulls" ;
-lin mull_N = mkN "mull" "mulls" ;
-lin pull_N = mkN "pull" "pulls" ;
-lin 'leg-pull_N' = mkN "leg-pull" "leg-pulls" ; -- compound pull_N ;
-lin bellpull_N = mkN "bellpull" "bellpulls" ; -- compound pull_N ;
-lin idyll_N = mkN "idyll" "idylls" ;
-lin argyll_N = mkN "argyll" "argylls" ;
-lin cataphyll_N = mkN "cataphyll" "cataphylls" ;
-lin xanthophyll_N = mkN "xanthophyll" "xanthophylls" ;
-lin chlorophyll_N = mkN "chlorophyll" "chlorophylls" ;
-lin bacteriochlorophyll_N = mkN "bacteriochlorophyll" "bacteriochlorophylls" ; -- compound chlorophyll_N ;
-lin sporophyll_N = mkN "sporophyll" "sporophylls" ;
-lin megasporophyll_N = mkN "megasporophyll" "megasporophylls" ; -- compound sporophyll_N ;
-lin microsporophyll_N = mkN "microsporophyll" "microsporophylls" ; -- compound sporophyll_N ;
-lin prophyll_N = mkN "prophyll" "prophylls" ;
-lin foryml_N = mkN "foryml" "forymls" ;
-lin gaol_N = mkN "gaol" "gaols" ;
-lin gambol_N = mkN "gambol" "gambols" ;
-lin symbol_N = mkN "symbol" "symbols" ;
-lin col_N = mkN "col" "cols" ;
-lin chloramphenicol_N = mkN "chloramphenicol" "chloramphenicols" ; -- compound col_N ;
-lin protocol_N = mkN "protocol" "protocols" ; -- compound col_N ;
-lin dol_N = mkN "dol" "dols" ;
-lin idol_N = mkN "idol" "idols" ; -- notcompound dol_N ;
-lin haloperidol_N = mkN "haloperidol" "haloperidols" ; -- compound dol_N ;
-lin aldol_N = mkN "aldol" "aldols" ; -- compound dol_N ;
-lin acetaldol_N = mkN "acetaldol" "acetaldols" ; -- compound dol_N ;
-lin mongol_N = mkN "mongol" "mongols" ;
-lin googol_N = mkN "googol" "googols" ;
-lin alcohol_N = mkN "alcohol" "alcohols" ;
-lin gasohol_N = mkN "gasohol" "gasohols" ;
-lin naphthol_N = mkN "naphthol" "naphthols" ;
-lin menthol_N = mkN "menthol" "menthols" ;
-lin diol_N = mkN "diol" "diols" ;
-lin estradiol_N = mkN "estradiol" "estradiols" ; -- compound diol_N ;
-lin pregnanediol_N = mkN "pregnanediol" "pregnanediols" ; -- compound diol_N ;
-lin vitriol_N = mkN "vitriol" "vitriols" ;
-lin estriol_N = mkN "estriol" "estriols" ;
-lin viol_N = mkN "viol" "viols" ;
-lin salol_N = mkN "salol" "salols" ;
-lin labetalol_N = mkN "labetalol" "labetalols" ;
-lin carvedilol_N = mkN "carvedilol" "carvedilols" ;
-lin pyrogallol_N = mkN "pyrogallol" "pyrogallols" ;
-lin nadolol_N = mkN "nadolol" "nadolols" ;
-lin pindolol_N = mkN "pindolol" "pindolols" ;
-lin timolol_N = mkN "timolol" "timolols" ;
-lin esmolol_N = mkN "esmolol" "esmolols" ;
-lin propanolol_N = mkN "propanolol" "propanolols" ;
-lin atenolol_N = mkN "atenolol" "atenolols" ;
-lin metoprolol_N = mkN "metoprolol" "metoprolols" ;
-lin acebutolol_N = mkN "acebutolol" "acebutolols" ;
-lin methocarbamol_N = mkN "methocarbamol" "methocarbamols" ;
-lin thymol_N = mkN "thymol" "thymols" ;
-lin methanol_N = mkN "methanol" "methanols" ;
-lin tribromoethanol_N = mkN "tribromoethanol" "tribromoethanols" ;
-lin propanol_N = mkN "propanol" "propanols" ;
-lin mestranol_N = mkN "mestranol" "mestranols" ;
-lin cyclohexanol_N = mkN "cyclohexanol" "cyclohexanols" ;
-lin enol_N = mkN "enol" "enols" ;
-lin phenol_N = mkN "phenol" "phenols" ; -- notcompound enol_N ;
-lin metaproterenol_N = mkN "metaproterenol" "metaproterenols" ; -- compound enol_N ;
-lin isoproterenol_N = mkN "isoproterenol" "isoproterenols" ; -- compound enol_N ;
-lin tetrahydrocannabinol_N = mkN "tetrahydrocannabinol" "tetrahydrocannabinols" ;
-lin dronabinol_N = mkN "dronabinol" "dronabinols" ;
-lin resorcinol_N = mkN "resorcinol" "resorcinols" ;
-lin allopurinol_N = mkN "allopurinol" "allopurinols" ;
-lin ethchlorvynol_N = mkN "ethchlorvynol" "ethchlorvynols" ;
-lin cool_N = mkN "cool" "cools" ;
-lin fool_N = mkN "fool" "fools" ;
-lin tomfool_N = mkN "tomfool" "tomfools" ; -- compound fool_N ;
-lin school_N = mkN "school" "schools" ;
-lin 'riding-school_N' = mkN "riding-school" "riding-schools" ; -- compound school_N ;
-lin 'boarding-school_N' = mkN "boarding-school" "boarding-schools" ; -- compound school_N ;
-lin 'choir-school_N' = mkN "choir-school" "choir-schools" ; -- compound school_N ;
-lin 'day-school_N' = mkN "day-school" "day-schools" ; -- compound school_N ;
-lin preschool_N = mkN "preschool" "preschools" ; -- compound school_N ;
-lin playschool_N = mkN "playschool" "playschools" ; -- compound school_N ;
-lin linalool_N = mkN "linalool" "linalools" ;
-lin pool_N = mkN "pool" "pools" ;
-lin 'swimming-pool_N' = mkN "swimming-pool" "swimming-pools" ; -- compound pool_N ;
-lin whirlpool_N = mkN "whirlpool" "whirlpools" ; -- compound pool_N ;
-lin spool_N = mkN "spool" "spools" ; -- notcompound pool_N ;
-lin cesspool_N = mkN "cesspool" "cesspools" ; -- compound pool_N ;
-lin drool_N = mkN "drool" "drools" ;
-lin tool_N = mkN "tool" "tools" ;
-lin stool_N = mkN "stool" "stools" ; -- notcompound tool_N ;
-lin 'music-stool_N' = mkN "music-stool" "music-stools" ; -- compound tool_N ;
-lin 'ducking-stool_N' = mkN "ducking-stool" "ducking-stools" ; -- compound tool_N ;
-lin 'camp-stool_N' = mkN "camp-stool" "camp-stools" ; -- compound tool_N ;
-lin toadstool_N = mkN "toadstool" "toadstools" ; -- compound tool_N ;
-lin campstool_N = mkN "campstool" "campstools" ; -- compound tool_N ;
-lin footstool_N = mkN "footstool" "footstools" ; -- compound tool_N ;
-lin wool_N = mkN "wool" "wools" ;
-lin 'cotton-wool_N' = mkN "cotton-wool" "cotton-wools" ; -- compound wool_N ;
-lin 'glass-wool_N' = mkN "glass-wool" "glass-wools" ; -- compound wool_N ;
-lin longwool_N = mkN "longwool" "longwools" ; -- compound wool_N ;
-lin carol_N = mkN "carol" "carols" ;
-lin dicumarol_N = mkN "dicumarol" "dicumarols" ;
-lin glycerol_N = mkN "glycerol" "glycerols" ;
-lin folderol_N = mkN "folderol" "folderols" ;
-lin gingerol_N = mkN "gingerol" "gingerols" ;
-lin sterol_N = mkN "sterol" "sterols" ;
-lin diethylstilbesterol_N = mkN "diethylstilbesterol" "diethylstilbesterols" ; -- compound sterol_N ;
-lin cholesterol_N = mkN "cholesterol" "cholesterols" ; -- compound sterol_N ;
-lin ergosterol_N = mkN "ergosterol" "ergosterols" ; -- compound sterol_N ;
-lin albuterol_N = mkN "albuterol" "albuterols" ;
-lin patrol_N = mkN "patrol" "patrols" ;
-lin petrol_N = mkN "petrol" "petrols" ;
-lin control_N = mkN "control" "controls" ;
-lin 'price-control_N' = mkN "price-control" "price-controls" ; -- compound control_N ;
-lin 'fire-control_N' = mkN "fire-control" "fire-controls" ; -- compound control_N ;
-lin 'self-control_N' = mkN "self-control" "self-controls" ; -- compound control_N ;
-lin 'birth-control_N' = mkN "birth-control" "birth-controls" ; -- compound control_N ;
-lin diethylstilbestrol_N = mkN "diethylstilbestrol" "diethylstilbestrols" ;
-lin megestrol_N = mkN "megestrol" "megestrols" ;
-lin hexestrol_N = mkN "hexestrol" "hexestrols" ;
-lin sol_N = mkN "sol" "sols" ;
-lin parasol_N = mkN "parasol" "parasols" ; -- compound sol_N ;
-lin cresol_N = mkN "cresol" "cresols" ; -- compound sol_N ;
-lin creosol_N = mkN "creosol" "creosols" ; -- compound sol_N ;
-lin regosol_N = mkN "regosol" "regosols" ; -- compound sol_N ;
-lin aerosol_N = mkN "aerosol" "aerosols" ; -- compound sol_N ;
-lin cytosol_N = mkN "cytosol" "cytosols" ; -- compound sol_N ;
-lin lysol_N = mkN "lysol" "lysols" ; -- compound sol_N ;
-lin mannitol_N = mkN "mannitol" "mannitols" ;
-lin capitol_N = mkN "capitol" "capitols" ;
-lin pentaerythritol_N = mkN "pentaerythritol" "pentaerythritols" ;
-lin inositol_N = mkN "inositol" "inositols" ;
-lin pistol_N = mkN "pistol" "pistols" ;
-lin wittol_N = mkN "wittol" "wittols" ;
-lin vol_N = mkN "vol" "vols" ;
-lin coyol_N = mkN "coyol" "coyols" ;
-lin pentylenetetrazol_N = mkN "pentylenetetrazol" "pentylenetetrazols" ;
-lin podzol_N = mkN "podzol" "podzols" ;
-lin benzol_N = mkN "benzol" "benzols" ;
-lin earl_N = mkN "earl" "earls" ;
-lin pearl_N = mkN "pearl" "pearls" ; -- notcompound earl_N ;
-lin 'mother-of-pearl_N' = mkN "mother-of-pearl" "mother-of-pearls" ; -- compound earl_N ;
-lin marl_N = mkN "marl" "marls" ;
-lin snarl_N = mkN "snarl" "snarls" ;
-lin girl_N = mkN "girl" "girls" ;
-lin 'nautch-girl_N' = mkN "nautch-girl" "nautch-girls" ; -- compound girl_N ;
-lin 'call-girl_N' = mkN "call-girl" "call-girls" ; -- compound girl_N ;
-lin 'mill-girl_N' = mkN "mill-girl" "mill-girls" ; -- compound girl_N ;
-lin 'shop-girl_N' = mkN "shop-girl" "shop-girls" ; -- compound girl_N ;
-lin 'flower-girl_N' = mkN "flower-girl" "flower-girls" ; -- compound girl_N ;
-lin 'chorus-girl_N' = mkN "chorus-girl" "chorus-girls" ; -- compound girl_N ;
-lin 'street-girl_N' = mkN "street-girl" "street-girls" ; -- compound girl_N ;
-lin homegirl_N = mkN "homegirl" "homegirls" ; -- compound girl_N ;
-lin schoolgirl_N = mkN "schoolgirl" "schoolgirls" ; -- compound girl_N ;
-lin salesgirl_N = mkN "salesgirl" "salesgirls" ; -- compound girl_N ;
-lin cowgirl_N = mkN "cowgirl" "cowgirls" ; -- compound girl_N ;
-lin showgirl_N = mkN "showgirl" "showgirls" ; -- compound girl_N ;
-lin daygirl_N = mkN "daygirl" "daygirls" ; -- compound girl_N ;
-lin skirl_N = mkN "skirl" "skirls" ;
-lin swirl_N = mkN "swirl" "swirls" ;
-lin twirl_N = mkN "twirl" "twirls" ;
-lin schorl_N = mkN "schorl" "schorls" ;
-lin whorl_N = mkN "whorl" "whorls" ;
-lin burl_N = mkN "burl" "burls" ;
-lin curl_N = mkN "curl" "curls" ;
-lin hurl_N = mkN "hurl" "hurls" ;
-lin churl_N = mkN "churl" "churls" ; -- notcompound hurl_N ;
-lin purl_N = mkN "purl" "purls" ;
-lin axolotl_N = mkN "axolotl" "axolotls" ;
-lin rotl_N = mkN "rotl" "rotls" ;
-lin caul_N = mkN "caul" "cauls" ;
-lin gaul_N = mkN "gaul" "gauls" ;
-lin haul_N = mkN "haul" "hauls" ;
-lin overhaul_N = mkN "overhaul" "overhauls" ; -- compound haul_N ;
-lin maul_N = mkN "maul" "mauls" ;
-lin caterwaul_N = mkN "caterwaul" "caterwauls" ;
-lin bulbul_N = mkN "bulbul" "bulbuls" ;
-lin cul_N = mkN "cul" "culs" ;
-lin picul_N = mkN "picul" "piculs" ; -- compound cul_N ;
-lin tubful_N = mkN "tubful" "tubfuls" ;
-lin headful_N = mkN "headful" "headfuls" ;
-lin handful_N = mkN "handful" "handfuls" ;
-lin spadeful_N = mkN "spadeful" "spadefuls" ;
-lin thimbleful_N = mkN "thimbleful" "thimblefuls" ;
-lin shoeful_N = mkN "shoeful" "shoefuls" ;
-lin pipeful_N = mkN "pipeful" "pipefuls" ;
-lin houseful_N = mkN "houseful" "housefuls" ;
-lin plateful_N = mkN "plateful" "platefuls" ;
-lin eyeful_N = mkN "eyeful" "eyefuls" ;
-lin shelfful_N = mkN "shelfful" "shelffuls" ;
-lin jugful_N = mkN "jugful" "jugfuls" ;
-lin dishful_N = mkN "dishful" "dishfuls" ;
-lin faithful_N = mkN "faithful" "faithfuls" ;
-lin mouthful_N = mkN "mouthful" "mouthfuls" ;
-lin shovelful_N = mkN "shovelful" "shovelfuls" ;
-lin pailful_N = mkN "pailful" "pailfuls" ;
-lin roomful_N = mkN "roomful" "roomfuls" ;
-lin armful_N = mkN "armful" "armfuls" ;
-lin skinful_N = mkN "skinful" "skinfuls" ;
-lin spoonful_N = mkN "spoonful" "spoonfuls" ;
-lin teaspoonful_N = mkN "teaspoonful" "teaspoonfuls" ; -- compound spoonful_N ;
-lin tablespoonful_N = mkN "tablespoonful" "tablespoonfuls" ; -- compound spoonful_N ;
-lin dessertspoonful_N = mkN "dessertspoonful" "dessertspoonfuls" ; -- compound spoonful_N ;
-lin barnful_N = mkN "barnful" "barnfuls" ;
-lin capful_N = mkN "capful" "capfuls" ;
-lin lapful_N = mkN "lapful" "lapfuls" ;
-lin skepful_N = mkN "skepful" "skepfuls" ;
-lin scoopful_N = mkN "scoopful" "scoopfuls" ;
-lin cupful_N = mkN "cupful" "cupfuls" ;
-lin carful_N = mkN "carful" "carfuls" ;
-lin earful_N = mkN "earful" "earfuls" ;
-lin jarful_N = mkN "jarful" "jarfuls" ;
-lin containerful_N = mkN "containerful" "containerfuls" ;
-lin glassful_N = mkN "glassful" "glassfuls" ;
-lin hatful_N = mkN "hatful" "hatfuls" ;
-lin pocketful_N = mkN "pocketful" "pocketfuls" ;
-lin bucketful_N = mkN "bucketful" "bucketfuls" ;
-lin boxful_N = mkN "boxful" "boxfuls" ;
-lin bellyful_N = mkN "bellyful" "bellyfuls" ;
-lin mogul_N = mkN "mogul" "moguls" ;
-lin manul_N = mkN "manul" "manuls" ;
-lin foul_N = mkN "foul" "fouls" ;
-lin ghoul_N = mkN "ghoul" "ghouls" ;
-lin soul_N = mkN "soul" "souls" ;
-lin pul_N = mkN "pul" "puls" ;
-lin peepul_N = mkN "peepul" "peepuls" ; -- compound pul_N ;
-lin consul_N = mkN "consul" "consuls" ;
-lin proconsul_N = mkN "proconsul" "proconsuls" ; -- compound consul_N ;
-lin awl_N = mkN "awl" "awls" ;
-lin bradawl_N = mkN "bradawl" "bradawls" ; -- compound awl_N ;
-lin shawl_N = mkN "shawl" "shawls" ; -- notcompound awl_N ;
-lin pawl_N = mkN "pawl" "pawls" ; -- notcompound awl_N ;
-lin brawl_N = mkN "brawl" "brawls" ; -- notcompound awl_N ;
-lin crawl_N = mkN "crawl" "crawls" ; -- notcompound awl_N ;
-lin 'pub-crawl_N' = mkN "pub-crawl" "pub-crawls" ; -- compound awl_N ;
-lin scrawl_N = mkN "scrawl" "scrawls" ; -- notcompound awl_N ;
-lin drawl_N = mkN "drawl" "drawls" ; -- notcompound awl_N ;
-lin sprawl_N = mkN "sprawl" "sprawls" ; -- notcompound awl_N ;
-lin trawl_N = mkN "trawl" "trawls" ; -- notcompound awl_N ;
-lin yawl_N = mkN "yawl" "yawls" ; -- notcompound awl_N ;
-lin owl_N = mkN "owl" "owls" ;
-lin 'screech-owl_N' = mkN "screech-owl" "screech-owls" ; -- compound owl_N ;
-lin bowl_N = mkN "bowl" "bowls" ; -- notcompound owl_N ;
-lin 'finger-bowl_N' = mkN "finger-bowl" "finger-bowls" ; -- compound owl_N ;
-lin 'dust-bowl_N' = mkN "dust-bowl" "dust-bowls" ; -- compound owl_N ;
-lin punchbowl_N = mkN "punchbowl" "punchbowls" ; -- compound owl_N ;
-lin washbowl_N = mkN "washbowl" "washbowls" ; -- compound owl_N ;
-lin fishbowl_N = mkN "fishbowl" "fishbowls" ; -- compound owl_N ;
-lin cowl_N = mkN "cowl" "cowls" ; -- notcompound owl_N ;
-lin scowl_N = mkN "scowl" "scowls" ; -- notcompound owl_N ;
-lin fowl_N = mkN "fowl" "fowls" ; -- notcompound owl_N ;
-lin peafowl_N = mkN "peafowl" "peafowls" ; -- compound owl_N ;
-lin wildfowl_N = mkN "wildfowl" "wildfowls" ; -- compound owl_N ;
-lin waterfowl_N = mkN "waterfowl" "waterfowls" ; -- compound owl_N ;
-lin moorfowl_N = mkN "moorfowl" "moorfowls" ; -- compound owl_N ;
-lin howl_N = mkN "howl" "howls" ; -- notcompound owl_N ;
-lin jowl_N = mkN "jowl" "jowls" ; -- notcompound owl_N ;
-lin growl_N = mkN "growl" "growls" ; -- notcompound owl_N ;
-lin prowl_N = mkN "prowl" "prowls" ; -- notcompound owl_N ;
-lin sibyl_N = mkN "sibyl" "sibyls" ;
-lin acyl_N = mkN "acyl" "acyls" ;
-lin cacodyl_N = mkN "cacodyl" "cacodyls" ;
-lin ethyl_N = mkN "ethyl" "ethyls" ;
-lin methyl_N = mkN "methyl" "methyls" ; -- notcompound ethyl_N ;
-lin hydroxymethyl_N = mkN "hydroxymethyl" "hydroxymethyls" ; -- compound ethyl_N ;
-lin anesthyl_N = mkN "anesthyl" "anesthyls" ;
-lin alkyl_N = mkN "alkyl" "alkyls" ;
-lin allyl_N = mkN "allyl" "allyls" ;
-lin amyl_N = mkN "amyl" "amyls" ;
-lin uranyl_N = mkN "uranyl" "uranyls" ;
-lin vinyl_N = mkN "vinyl" "vinyls" ;
-lin carbonyl_N = mkN "carbonyl" "carbonyls" ;
-lin propyl_N = mkN "propyl" "propyls" ;
-lin beryl_N = mkN "beryl" "beryls" ;
-lin chrysoberyl_N = mkN "chrysoberyl" "chrysoberyls" ; -- compound beryl_N ;
-lin glyceryl_N = mkN "glyceryl" "glyceryls" ;
-lin tetryl_N = mkN "tetryl" "tetryls" ;
-lin dactyl_N = mkN "dactyl" "dactyls" ;
-lin pterodactyl_N = mkN "pterodactyl" "pterodactyls" ; -- compound dactyl_N ;
-lin acetyl_N = mkN "acetyl" "acetyls" ;
-lin butyl_N = mkN "butyl" "butyls" ;
-lin carboxyl_N = mkN "carboxyl" "carboxyls" ;
-lin hydroxyl_N = mkN "hydroxyl" "hydroxyls" ;
-lin benzyl_N = mkN "benzyl" "benzyls" ;
-lin ma'am_N = mkN "ma'am" "IRREG" ;
-lin sham_N = mkN "sham" "IRREG" ;
-lin random_N = mkN "random" "IRREG" ;
-lin modicum_N = mkN "modicum" "modica" ;
-lin addendum_N = mkN "addendum" "addenda" ;
-lin corrigendum_N = mkN "corrigendum" "corrigenda" ;
-lin 'reductio ad absurdum_N' = mkN "reductio ad absurdum" "reductio ad absurda" ;
-lin millennium_N = mkN "millennium" "millennia" ;
-lin solarium_N = mkN "solarium" "solaria" ;
-lin bacterium_N = mkN "bacterium" "bacteria" ;
-lin consortium_N = mkN "consortium" "consortia" ;
-lin candelabrum_N = mkN "candelabrum" "candelabra" ;
-lin simulacrum_N = mkN "simulacrum" "simulacra" ;
-lin spectrum_N = mkN "spectrum" "spectra" ;
-lin datum_N = mkN "datum" "data" ;
-lin desideratum_N = mkN "desideratum" "desiderata" ;
-lin erratum_N = mkN "erratum" "errata" ;
-lin stratum_N = mkN "stratum" "strata" ;
-lin substratum_N = mkN "substratum" "substrata" ; -- compound stratum_N ;
-lin 'obiter dictum_N' = mkN "obiter dictum" "obiter dicta" ;
-lin quantum_N = mkN "quantum" "quanta" ;
-lin ovum_N = mkN "ovum" "ova" ;
-lin bream_N = mkN "bream" "bream" ;
-lin 'sea-bream_N' = mkN "sea-bream" "sea-bream" ; -- compound bream_N ;
-lin cm_N = mkN "cm" "cm" ;
-lin dm_N = mkN "dm" "dm" ;
-lin km_N = mkN "km" "km" ;
-lin mm_N = mkN "mm" "mm" ;
-lin rpm_N = mkN "rpm" "rpm" ;
-lin wpm_N = mkN "wpm" "wpm" ;
-lin salaam_N = mkN "salaam" "salaams" ;
-lin cam_N = mkN "cam" "cams" ;
-lin webcam_N = mkN "webcam" "webcams" ; -- compound cam_N ;
-lin piroxicam_N = mkN "piroxicam" "piroxicams" ; -- compound cam_N ;
-lin scam_N = mkN "scam" "scams" ; -- notcompound cam_N ;
-lin dam_N = mkN "dam" "dams" ;
-lin 'mill-dam_N' = mkN "mill-dam" "mill-dams" ; -- compound dam_N ;
-lin 'coffer-dam_N' = mkN "coffer-dam" "coffer-dams" ; -- compound dam_N ;
-lin macadam_N = mkN "macadam" "macadams" ; -- compound dam_N ;
-lin 'tar-macadam_N' = mkN "tar-macadam" "tar-macadams" ; -- compound dam_N ;
-lin tarmacadam_N = mkN "tarmacadam" "tarmacadams" ; -- compound dam_N ;
-lin madam_N = mkN "madam" "madams" ; -- compound dam_N ;
-lin beldam_N = mkN "beldam" "beldams" ; -- compound dam_N ;
-lin milldam_N = mkN "milldam" "milldams" ; -- compound dam_N ;
-lin beam_N = mkN "beam" "beams" ;
-lin moonbeam_N = mkN "moonbeam" "moonbeams" ; -- compound beam_N ;
-lin hornbeam_N = mkN "hornbeam" "hornbeams" ; -- compound beam_N ;
-lin sunbeam_N = mkN "sunbeam" "sunbeams" ; -- compound beam_N ;
-lin crossbeam_N = mkN "crossbeam" "crossbeams" ; -- compound beam_N ;
-lin gleam_N = mkN "gleam" "gleams" ;
-lin ream_N = mkN "ream" "reams" ;
-lin cream_N = mkN "cream" "creams" ; -- notcompound ream_N ;
-lin 'ice cream_N' = mkN "ice cream" "ice creams" ; -- compound ream_N ;
-lin 'face-cream_N' = mkN "face-cream" "face-creams" ; -- compound ream_N ;
-lin 'ice-cream_N' = mkN "ice-cream" "ice-creams" ; -- compound ream_N ;
-lin scream_N = mkN "scream" "screams" ; -- notcompound ream_N ;
-lin dream_N = mkN "dream" "dreams" ; -- notcompound ream_N ;
-lin pipedream_N = mkN "pipedream" "pipedreams" ; -- compound ream_N ;
-lin daydream_N = mkN "daydream" "daydreams" ; -- compound ream_N ;
-lin stream_N = mkN "stream" "streams" ; -- notcompound ream_N ;
-lin headstream_N = mkN "headstream" "headstreams" ; -- compound ream_N ;
-lin midstream_N = mkN "midstream" "midstreams" ; -- compound ream_N ;
-lin bloodstream_N = mkN "bloodstream" "bloodstreams" ; -- compound ream_N ;
-lin mainstream_N = mkN "mainstream" "mainstreams" ; -- compound ream_N ;
-lin slipstream_N = mkN "slipstream" "slipstreams" ; -- compound ream_N ;
-lin airstream_N = mkN "airstream" "airstreams" ; -- compound ream_N ;
-lin seam_N = mkN "seam" "seams" ;
-lin 'coal-seam_N' = mkN "coal-seam" "coal-seams" ; -- compound seam_N ;
-lin team_N = mkN "team" "teams" ;
-lin steam_N = mkN "steam" "steams" ; -- notcompound team_N ;
-lin gam_N = mkN "gam" "gams" ;
-lin amalgam_N = mkN "amalgam" "amalgams" ; -- compound gam_N ;
-lin lingam_N = mkN "lingam" "lingams" ; -- compound gam_N ;
-lin cryptogam_N = mkN "cryptogam" "cryptogams" ; -- compound gam_N ;
-lin ham_N = mkN "ham" "hams" ;
-lin gingham_N = mkN "gingham" "ginghams" ; -- compound ham_N ;
-lin brougham_N = mkN "brougham" "broughams" ; -- compound ham_N ;
-lin sealyham_N = mkN "sealyham" "sealyhams" ; -- compound ham_N ;
-lin jam_N = mkN "jam" "jams" ;
-lin 'log-jam_N' = mkN "log-jam" "log-jams" ; -- compound jam_N ;
-lin logjam_N = mkN "logjam" "logjams" ; -- compound jam_N ;
-lin clam_N = mkN "clam" "clams" ;
-lin bedlam_N = mkN "bedlam" "bedlams" ;
-lin midazolam_N = mkN "midazolam" "midazolams" ;
-lin triazolam_N = mkN "triazolam" "triazolams" ;
-lin alprazolam_N = mkN "alprazolam" "alprazolams" ;
-lin estazolam_N = mkN "estazolam" "estazolams" ;
-lin slam_N = mkN "slam" "slams" ;
-lin Islam_N = mkN "Islam" "Islams" ; -- notcompound slam_N ;
-lin imam_N = mkN "imam" "imams" ;
-lin aztreonam_N = mkN "aztreonam" "aztreonams" ;
-lin jeroboam_N = mkN "jeroboam" "jeroboams" ;
-lin foam_N = mkN "foam" "foams" ;
-lin polyfoam_N = mkN "polyfoam" "polyfoams" ; -- compound foam_N ;
-lin loam_N = mkN "loam" "loams" ;
-lin diazepam_N = mkN "diazepam" "diazepams" ;
-lin temazepam_N = mkN "temazepam" "temazepams" ;
-lin lorazepam_N = mkN "lorazepam" "lorazepams" ;
-lin nitrazepam_N = mkN "nitrazepam" "nitrazepams" ;
-lin flurazepam_N = mkN "flurazepam" "flurazepams" ;
-lin oxazepam_N = mkN "oxazepam" "oxazepams" ;
-lin spam_N = mkN "spam" "spams" ;
-lin ram_N = mkN "ram" "rams" ;
-lin avaram_N = mkN "avaram" "avarams" ; -- compound ram_N ;
-lin dram_N = mkN "dram" "drams" ; -- notcompound ram_N ;
-lin fluidram_N = mkN "fluidram" "fluidrams" ; -- compound ram_N ;
-lin wolfram_N = mkN "wolfram" "wolframs" ; -- compound ram_N ;
-lin gram_N = mkN "gram" "grams" ; -- notcompound ram_N ;
-lin diagram_N = mkN "diagram" "diagrams" ; -- compound ram_N ;
-lin myriagram_N = mkN "myriagram" "myriagrams" ; -- compound ram_N ;
-lin dekagram_N = mkN "dekagram" "dekagrams" ; -- compound ram_N ;
-lin anagram_N = mkN "anagram" "anagrams" ; -- compound ram_N ;
-lin tetragram_N = mkN "tetragram" "tetragrams" ; -- compound ram_N ;
-lin hexagram_N = mkN "hexagram" "hexagrams" ; -- compound ram_N ;
-lin cablegram_N = mkN "cablegram" "cablegrams" ; -- compound ram_N ;
-lin telegram_N = mkN "telegram" "telegrams" ; -- compound ram_N ;
-lin bigram_N = mkN "bigram" "bigrams" ; -- compound ram_N ;
-lin decigram_N = mkN "decigram" "decigrams" ; -- compound ram_N ;
-lin milligram_N = mkN "milligram" "milligrams" ; -- compound ram_N ;
-lin epigram_N = mkN "epigram" "epigrams" ; -- compound ram_N ;
-lin trigram_N = mkN "trigram" "trigrams" ; -- compound ram_N ;
-lin antigram_N = mkN "antigram" "antigrams" ; -- compound ram_N ;
-lin tangram_N = mkN "tangram" "tangrams" ; -- compound ram_N ;
-lin engram_N = mkN "engram" "engrams" ; -- compound ram_N ;
-lin cladogram_N = mkN "cladogram" "cladograms" ; -- compound ram_N ;
-lin ideogram_N = mkN "ideogram" "ideograms" ; -- compound ram_N ;
-lin hysterosalpingogram_N = mkN "hysterosalpingogram" "hysterosalpingograms" ; -- compound ram_N ;
-lin logogram_N = mkN "logogram" "logograms" ; -- compound ram_N ;
-lin tachogram_N = mkN "tachogram" "tachograms" ; -- compound ram_N ;
-lin radiogram_N = mkN "radiogram" "radiograms" ; -- compound ram_N ;
-lin echocardiogram_N = mkN "echocardiogram" "echocardiograms" ; -- compound ram_N ;
-lin angiocardiogram_N = mkN "angiocardiogram" "angiocardiograms" ; -- compound ram_N ;
-lin electrocardiogram_N = mkN "electrocardiogram" "electrocardiograms" ; -- compound ram_N ;
-lin ballistocardiogram_N = mkN "ballistocardiogram" "ballistocardiograms" ; -- compound ram_N ;
-lin audiogram_N = mkN "audiogram" "audiograms" ; -- compound ram_N ;
-lin angiogram_N = mkN "angiogram" "angiograms" ; -- compound ram_N ;
-lin lymphangiogram_N = mkN "lymphangiogram" "lymphangiograms" ; -- compound ram_N ;
-lin heliogram_N = mkN "heliogram" "heliograms" ; -- compound ram_N ;
-lin arteriogram_N = mkN "arteriogram" "arteriograms" ; -- compound ram_N ;
-lin encephalogram_N = mkN "encephalogram" "encephalograms" ; -- compound ram_N ;
-lin echoencephalogram_N = mkN "echoencephalogram" "echoencephalograms" ; -- compound ram_N ;
-lin electroencephalogram_N = mkN "electroencephalogram" "electroencephalograms" ; -- compound ram_N ;
-lin parallelogram_N = mkN "parallelogram" "parallelograms" ; -- compound ram_N ;
-lin myelogram_N = mkN "myelogram" "myelograms" ; -- compound ram_N ;
-lin pyelogram_N = mkN "pyelogram" "pyelograms" ; -- compound ram_N ;
-lin kilogram_N = mkN "kilogram" "kilograms" ; -- compound ram_N ;
-lin oscillogram_N = mkN "oscillogram" "oscillograms" ; -- compound ram_N ;
-lin bologram_N = mkN "bologram" "bolograms" ; -- compound ram_N ;
-lin hologram_N = mkN "hologram" "holograms" ; -- compound ram_N ;
-lin mammogram_N = mkN "mammogram" "mammograms" ; -- compound ram_N ;
-lin nomogram_N = mkN "nomogram" "nomograms" ; -- compound ram_N ;
-lin thermogram_N = mkN "thermogram" "thermograms" ; -- compound ram_N ;
-lin seismogram_N = mkN "seismogram" "seismograms" ; -- compound ram_N ;
-lin nanogram_N = mkN "nanogram" "nanograms" ; -- compound ram_N ;
-lin roentgenogram_N = mkN "roentgenogram" "roentgenograms" ; -- compound ram_N ;
-lin venogram_N = mkN "venogram" "venograms" ; -- compound ram_N ;
-lin electroretinogram_N = mkN "electroretinogram" "electroretinograms" ; -- compound ram_N ;
-lin phonogram_N = mkN "phonogram" "phonograms" ; -- compound ram_N ;
-lin monogram_N = mkN "monogram" "monograms" ; -- compound ram_N ;
-lin sonogram_N = mkN "sonogram" "sonograms" ; -- compound ram_N ;
-lin lipogram_N = mkN "lipogram" "lipograms" ; -- compound ram_N ;
-lin microgram_N = mkN "microgram" "micrograms" ; -- compound ram_N ;
-lin grogram_N = mkN "grogram" "grograms" ; -- compound ram_N ;
-lin arthrogram_N = mkN "arthrogram" "arthrograms" ; -- compound ram_N ;
-lin spirogram_N = mkN "spirogram" "spirograms" ; -- compound ram_N ;
-lin program_N = mkN "program" "programs" ; -- compound ram_N ;
-lin spectrogram_N = mkN "spectrogram" "spectrograms" ; -- compound ram_N ;
-lin isogram_N = mkN "isogram" "isograms" ; -- compound ram_N ;
-lin chromatogram_N = mkN "chromatogram" "chromatograms" ; -- compound ram_N ;
-lin hectogram_N = mkN "hectogram" "hectograms" ; -- compound ram_N ;
-lin cryptogram_N = mkN "cryptogram" "cryptograms" ; -- compound ram_N ;
-lin histogram_N = mkN "histogram" "histograms" ; -- compound ram_N ;
-lin myogram_N = mkN "myogram" "myograms" ; -- compound ram_N ;
-lin electromyogram_N = mkN "electromyogram" "electromyograms" ; -- compound ram_N ;
-lin ashram_N = mkN "ashram" "ashrams" ; -- compound ram_N ;
-lin disulfiram_N = mkN "disulfiram" "disulfirams" ; -- compound ram_N ;
-lin buckram_N = mkN "buckram" "buckrams" ; -- compound ram_N ;
-lin foram_N = mkN "foram" "forams" ; -- compound ram_N ;
-lin marjoram_N = mkN "marjoram" "marjorams" ; -- compound ram_N ;
-lin pram_N = mkN "pram" "prams" ; -- notcompound ram_N ;
-lin tram_N = mkN "tram" "trams" ; -- notcompound ram_N ;
-lin balsam_N = mkN "balsam" "balsams" ;
-lin jetsam_N = mkN "jetsam" "jetsams" ;
-lin flotsam_N = mkN "flotsam" "flotsams" ;
-lin tam_N = mkN "tam" "tams" ;
-lin bantam_N = mkN "bantam" "bantams" ; -- compound tam_N ;
-lin wigwam_N = mkN "wigwam" "wigwams" ;
-lin exam_N = mkN "exam" "exams" ;
-lin yam_N = mkN "yam" "yams" ;
-lin icbm_N = mkN "icbm" "icbms" ;
-lin em_N = mkN "em" "ems" ;
-lin diadem_N = mkN "diadem" "diadems" ; -- compound em_N ;
-lin tandem_N = mkN "tandem" "tandems" ; -- compound em_N ;
-lin modem_N = mkN "modem" "modems" ; -- compound em_N ;
-lin neem_N = mkN "neem" "neems" ; -- compound em_N ;
-lin esteem_N = mkN "esteem" "esteems" ; -- compound em_N ;
-lin 'self-esteem_N' = mkN "self-esteem" "self-esteems" ; -- compound em_N ;
-lin disesteem_N = mkN "disesteem" "disesteems" ; -- compound em_N ;
-lin gem_N = mkN "gem" "gems" ; -- notcompound em_N ;
-lin stratagem_N = mkN "stratagem" "stratagems" ; -- compound em_N ;
-lin dodgem_N = mkN "dodgem" "dodgems" ; -- compound em_N ;
-lin hem_N = mkN "hem" "hems" ; -- notcompound em_N ;
-lin sachem_N = mkN "sachem" "sachems" ; -- compound em_N ;
-lin anthem_N = mkN "anthem" "anthems" ; -- compound em_N ;
-lin enanthem_N = mkN "enanthem" "enanthems" ; -- compound em_N ;
-lin exanthem_N = mkN "exanthem" "exanthems" ; -- compound em_N ;
-lin mayhem_N = mkN "mayhem" "mayhems" ; -- compound em_N ;
-lin requiem_N = mkN "requiem" "requiems" ; -- compound em_N ;
-lin emblem_N = mkN "emblem" "emblems" ; -- compound em_N ;
-lin problem_N = mkN "problem" "problems" ; -- compound em_N ;
-lin phellem_N = mkN "phellem" "phellems" ; -- compound em_N ;
-lin golem_N = mkN "golem" "golems" ; -- compound em_N ;
-lin moslem_N = mkN "moslem" "moslems" ; -- compound em_N ;
-lin ylem_N = mkN "ylem" "ylems" ; -- compound em_N ;
-lin xylem_N = mkN "xylem" "xylems" ; -- compound em_N ;
-lin mem_N = mkN "mem" "mems" ; -- notcompound em_N ;
-lin phloem_N = mkN "phloem" "phloems" ; -- compound em_N ;
-lin pseudophloem_N = mkN "pseudophloem" "pseudophloems" ; -- compound em_N ;
-lin poem_N = mkN "poem" "poems" ; -- compound em_N ;
-lin 'tone-poem_N' = mkN "tone-poem" "tone-poems" ; -- compound em_N ;
-lin harem_N = mkN "harem" "harems" ; -- compound em_N ;
-lin theorem_N = mkN "theorem" "theorems" ; -- compound em_N ;
-lin categorem_N = mkN "categorem" "categorems" ; -- compound em_N ;
-lin syncategorem_N = mkN "syncategorem" "syncategorems" ; -- compound em_N ;
-lin retem_N = mkN "retem" "retems" ; -- compound em_N ;
-lin item_N = mkN "item" "items" ; -- compound em_N ;
-lin totem_N = mkN "totem" "totems" ; -- compound em_N ;
-lin 'post-mortem_N' = mkN "post-mortem" "post-mortems" ; -- compound em_N ;
-lin postmortem_N = mkN "postmortem" "postmortems" ; -- compound em_N ;
-lin stem_N = mkN "stem" "stems" ; -- notcompound em_N ;
-lin bluestem_N = mkN "bluestem" "bluestems" ; -- compound em_N ;
-lin wingstem_N = mkN "wingstem" "wingstems" ; -- compound em_N ;
-lin meristem_N = mkN "meristem" "meristems" ; -- compound em_N ;
-lin brainstem_N = mkN "brainstem" "brainstems" ; -- compound em_N ;
-lin system_N = mkN "system" "systems" ; -- compound em_N ;
-lin subsystem_N = mkN "subsystem" "subsystems" ; -- compound em_N ;
-lin ecosystem_N = mkN "ecosystem" "ecosystems" ; -- compound em_N ;
-lin diltiazem_N = mkN "diltiazem" "diltiazems" ; -- compound em_N ;
-lin fm_N = mkN "fm" "fms" ;
-lin agm_N = mkN "agm" "agms" ;
-lin diaphragm_N = mkN "diaphragm" "diaphragms" ; -- compound agm_N ;
-lin apophthegm_N = mkN "apophthegm" "apophthegms" ;
-lin apothegm_N = mkN "apothegm" "apothegms" ;
-lin phlegm_N = mkN "phlegm" "phlegms" ;
-lin paradigm_N = mkN "paradigm" "paradigms" ;
-lin drachm_N = mkN "drachm" "drachms" ;
-lin ohm_N = mkN "ohm" "ohms" ;
-lin abohm_N = mkN "abohm" "abohms" ; -- compound ohm_N ;
-lin megohm_N = mkN "megohm" "megohms" ; -- compound ohm_N ;
-lin logarithm_N = mkN "logarithm" "logarithms" ;
-lin antilogarithm_N = mkN "antilogarithm" "antilogarithms" ; -- compound logarithm_N ;
-lin algorithm_N = mkN "algorithm" "algorithms" ;
-lin rhythm_N = mkN "rhythm" "rhythms" ;
-lin aim_N = mkN "aim" "aims" ;
-lin claim_N = mkN "claim" "claims" ; -- notcompound aim_N ;
-lin 'wage-claim_N' = mkN "wage-claim" "wage-claims" ; -- compound aim_N ;
-lin 'pay-claim_N' = mkN "pay-claim" "pay-claims" ; -- compound aim_N ;
-lin acclaim_N = mkN "acclaim" "acclaims" ; -- compound aim_N ;
-lin counterclaim_N = mkN "counterclaim" "counterclaims" ; -- compound aim_N ;
-lin quitclaim_N = mkN "quitclaim" "quitclaims" ; -- compound aim_N ;
-lin shim_N = mkN "shim" "shims" ;
-lin whim_N = mkN "whim" "whims" ;
-lin hakim_N = mkN "hakim" "hakims" ;
-lin skim_N = mkN "skim" "skims" ;
-lin angelim_N = mkN "angelim" "angelims" ;
-lin prelim_N = mkN "prelim" "prelims" ;
-lin Muslim_N = mkN "Muslim" "Muslims" ;
-lin nim_N = mkN "nim" "nims" ;
-lin denim_N = mkN "denim" "denims" ; -- compound nim_N ;
-lin minim_N = mkN "minim" "minims" ; -- compound nim_N ;
-lin paynim_N = mkN "paynim" "paynims" ; -- compound nim_N ;
-lin rim_N = mkN "rim" "rims" ;
-lin brim_N = mkN "brim" "brims" ; -- notcompound rim_N ;
-lin scrim_N = mkN "scrim" "scrims" ; -- notcompound rim_N ;
-lin interim_N = mkN "interim" "interims" ; -- compound rim_N ;
-lin megrim_N = mkN "megrim" "megrims" ; -- compound rim_N ;
-lin pilgrim_N = mkN "pilgrim" "pilgrims" ; -- compound rim_N ;
-lin trim_N = mkN "trim" "trims" ; -- notcompound rim_N ;
-lin alastrim_N = mkN "alastrim" "alastrims" ; -- compound rim_N ;
-lin victim_N = mkN "victim" "victims" ;
-lin vim_N = mkN "vim" "vims" ;
-lin swim_N = mkN "swim" "swims" ;
-lin maxim_N = mkN "maxim" "maxims" ;
-lin balm_N = mkN "balm" "balms" ;
-lin calm_N = mkN "calm" "calms" ;
-lin realm_N = mkN "realm" "realms" ;
-lin palm_N = mkN "palm" "palms" ;
-lin 'oil-palm_N' = mkN "oil-palm" "oil-palms" ; -- compound palm_N ;
-lin napalm_N = mkN "napalm" "napalms" ; -- compound palm_N ;
-lin psalm_N = mkN "psalm" "psalms" ;
-lin qualm_N = mkN "qualm" "qualms" ;
-lin elm_N = mkN "elm" "elms" ;
-lin 'witch-elm_N' = mkN "witch-elm" "witch-elms" ; -- compound elm_N ;
-lin helm_N = mkN "helm" "helms" ; -- notcompound elm_N ;
-lin film_N = mkN "film" "films" ;
-lin 'sound-film_N' = mkN "sound-film" "sound-films" ; -- compound film_N ;
-lin 'cine-film_N' = mkN "cine-film" "cine-films" ; -- compound film_N ;
-lin telefilm_N = mkN "telefilm" "telefilms" ; -- compound film_N ;
-lin microfilm_N = mkN "microfilm" "microfilms" ; -- compound film_N ;
-lin olm_N = mkN "olm" "olms" ;
-lin haulm_N = mkN "haulm" "haulms" ;
-lin culm_N = mkN "culm" "culms" ;
-lin intercom_N = mkN "intercom" "intercoms" ;
-lin princedom_N = mkN "princedom" "princedoms" ;
-lin freedom_N = mkN "freedom" "freedoms" ;
-lin dukedom_N = mkN "dukedom" "dukedoms" ;
-lin boredom_N = mkN "boredom" "boredoms" ;
-lin fiefdom_N = mkN "fiefdom" "fiefdoms" ;
-lin serfdom_N = mkN "serfdom" "serfdoms" ;
-lin kingdom_N = mkN "kingdom" "kingdoms" ;
-lin subkingdom_N = mkN "subkingdom" "subkingdoms" ; -- compound kingdom_N ;
-lin sheikhdom_N = mkN "sheikhdom" "sheikhdoms" ;
-lin sheikdom_N = mkN "sheikdom" "sheikdoms" ;
-lin officialdom_N = mkN "officialdom" "officialdoms" ;
-lin thraldom_N = mkN "thraldom" "thraldoms" ;
-lin cuckoldom_N = mkN "cuckoldom" "cuckoldoms" ;
-lin earldom_N = mkN "earldom" "earldoms" ;
-lin filmdom_N = mkN "filmdom" "filmdoms" ;
-lin fandom_N = mkN "fandom" "fandoms" ;
-lin christendom_N = mkN "christendom" "christendoms" ;
-lin condom_N = mkN "condom" "condoms" ;
-lin corundom_N = mkN "corundom" "corundoms" ;
-lin sodom_N = mkN "sodom" "sodoms" ;
-lin stardom_N = mkN "stardom" "stardoms" ;
-lin martyrdom_N = mkN "martyrdom" "martyrdoms" ;
-lin wisdom_N = mkN "wisdom" "wisdoms" ;
-lin 'topsy-turvydom_N' = mkN "topsy-turvydom" "topsy-turvydoms" ;
-lin fathom_N = mkN "fathom" "fathoms" ;
-lin idiom_N = mkN "idiom" "idioms" ;
-lin axiom_N = mkN "axiom" "axioms" ;
-lin slalom_N = mkN "slalom" "slaloms" ;
-lin celom_N = mkN "celom" "celoms" ;
-lin cardamom_N = mkN "cardamom" "cardamoms" ;
-lin supermom_N = mkN "supermom" "supermoms" ;
-lin venom_N = mkN "venom" "venoms" ;
-lin boom_N = mkN "boom" "booms" ;
-lin 'jib-boom_N' = mkN "jib-boom" "jib-booms" ; -- compound boom_N ;
-lin naboom_N = mkN "naboom" "nabooms" ; -- compound boom_N ;
-lin jibboom_N = mkN "jibboom" "jibbooms" ; -- compound boom_N ;
-lin keurboom_N = mkN "keurboom" "keurbooms" ; -- compound boom_N ;
-lin doom_N = mkN "doom" "dooms" ;
-lin loom_N = mkN "loom" "looms" ;
-lin bloom_N = mkN "bloom" "blooms" ; -- notcompound loom_N ;
-lin checkerbloom_N = mkN "checkerbloom" "checkerblooms" ; -- compound loom_N ;
-lin broadloom_N = mkN "broadloom" "broadlooms" ; -- compound loom_N ;
-lin handloom_N = mkN "handloom" "handlooms" ; -- compound loom_N ;
-lin gloom_N = mkN "gloom" "glooms" ; -- notcompound loom_N ;
-lin heirloom_N = mkN "heirloom" "heirlooms" ; -- compound loom_N ;
-lin simoom_N = mkN "simoom" "simooms" ;
-lin room_N = mkN "room" "rooms" ;
-lin 'billiard-room_N' = mkN "billiard-room" "billiard-rooms" ; -- compound room_N ;
-lin 'reading-room_N' = mkN "reading-room" "reading-rooms" ; -- compound room_N ;
-lin 'smoking-room_N' = mkN "smoking-room" "smoking-rooms" ; -- compound room_N ;
-lin 'dining-room_N' = mkN "dining-room" "dining-rooms" ; -- compound room_N ;
-lin 'morning-room_N' = mkN "morning-room" "morning-rooms" ; -- compound room_N ;
-lin 'seating-room_N' = mkN "seating-room" "seating-rooms" ; -- compound room_N ;
-lin 'waiting-room_N' = mkN "waiting-room" "waiting-rooms" ; -- compound room_N ;
-lin 'sitting-room_N' = mkN "sitting-room" "sitting-rooms" ; -- compound room_N ;
-lin 'bedsitting-room_N' = mkN "bedsitting-room" "bedsitting-rooms" ; -- compound room_N ;
-lin 'cutting-room_N' = mkN "cutting-room" "cutting-rooms" ; -- compound room_N ;
-lin 'living-room_N' = mkN "living-room" "living-rooms" ; -- compound room_N ;
-lin 'drawing-room_N' = mkN "drawing-room" "drawing-rooms" ; -- compound room_N ;
-lin 'sick-room_N' = mkN "sick-room" "sick-rooms" ; -- compound room_N ;
-lin 'still-room_N' = mkN "still-room" "still-rooms" ; -- compound room_N ;
-lin 'common-room_N' = mkN "common-room" "common-rooms" ; -- compound room_N ;
-lin 'pump-room_N' = mkN "pump-room" "pump-rooms" ; -- compound room_N ;
-lin 'powder-room_N' = mkN "powder-room" "powder-rooms" ; -- compound room_N ;
-lin tearoom_N = mkN "tearoom" "tearooms" ; -- compound room_N ;
-lin broom_N = mkN "broom" "brooms" ; -- notcompound room_N ;
-lin clubroom_N = mkN "clubroom" "clubrooms" ; -- compound room_N ;
-lin headroom_N = mkN "headroom" "headrooms" ; -- compound room_N ;
-lin bedroom_N = mkN "bedroom" "bedrooms" ; -- compound room_N ;
-lin cardroom_N = mkN "cardroom" "cardrooms" ; -- compound room_N ;
-lin boardroom_N = mkN "boardroom" "boardrooms" ; -- compound room_N ;
-lin guardroom_N = mkN "guardroom" "guardrooms" ; -- compound room_N ;
-lin wardroom_N = mkN "wardroom" "wardrooms" ; -- compound room_N ;
-lin saleroom_N = mkN "saleroom" "salerooms" ; -- compound room_N ;
-lin storeroom_N = mkN "storeroom" "storerooms" ; -- compound room_N ;
-lin houseroom_N = mkN "houseroom" "houserooms" ; -- compound room_N ;
-lin stateroom_N = mkN "stateroom" "staterooms" ; -- compound room_N ;
-lin anteroom_N = mkN "anteroom" "anterooms" ; -- compound room_N ;
-lin groom_N = mkN "groom" "grooms" ; -- notcompound room_N ;
-lin bridegroom_N = mkN "bridegroom" "bridegrooms" ; -- compound room_N ;
-lin strongroom_N = mkN "strongroom" "strongrooms" ; -- compound room_N ;
-lin lunchroom_N = mkN "lunchroom" "lunchrooms" ; -- compound room_N ;
-lin washroom_N = mkN "washroom" "washrooms" ; -- compound room_N ;
-lin mushroom_N = mkN "mushroom" "mushrooms" ; -- compound room_N ;
-lin bathroom_N = mkN "bathroom" "bathrooms" ; -- compound room_N ;
-lin cloakroom_N = mkN "cloakroom" "cloakrooms" ; -- compound room_N ;
-lin backroom_N = mkN "backroom" "backrooms" ; -- compound room_N ;
-lin checkroom_N = mkN "checkroom" "checkrooms" ; -- compound room_N ;
-lin sickroom_N = mkN "sickroom" "sickrooms" ; -- compound room_N ;
-lin stockroom_N = mkN "stockroom" "stockrooms" ; -- compound room_N ;
-lin darkroom_N = mkN "darkroom" "darkrooms" ; -- compound room_N ;
-lin workroom_N = mkN "workroom" "workrooms" ; -- compound room_N ;
-lin ballroom_N = mkN "ballroom" "ballrooms" ; -- compound room_N ;
-lin grillroom_N = mkN "grillroom" "grillrooms" ; -- compound room_N ;
-lin stillroom_N = mkN "stillroom" "stillrooms" ; -- compound room_N ;
-lin schoolroom_N = mkN "schoolroom" "schoolrooms" ; -- compound room_N ;
-lin poolroom_N = mkN "poolroom" "poolrooms" ; -- compound room_N ;
-lin greenroom_N = mkN "greenroom" "greenrooms" ; -- compound room_N ;
-lin gunroom_N = mkN "gunroom" "gunrooms" ; -- compound room_N ;
-lin taproom_N = mkN "taproom" "taprooms" ; -- compound room_N ;
-lin barroom_N = mkN "barroom" "barrooms" ; -- compound room_N ;
-lin lumberroom_N = mkN "lumberroom" "lumberrooms" ; -- compound room_N ;
-lin classroom_N = mkN "classroom" "classrooms" ; -- compound room_N ;
-lin newsroom_N = mkN "newsroom" "newsrooms" ; -- compound room_N ;
-lin courtroom_N = mkN "courtroom" "courtrooms" ; -- compound room_N ;
-lin guestroom_N = mkN "guestroom" "guestrooms" ; -- compound room_N ;
-lin vroom_N = mkN "vroom" "vrooms" ; -- notcompound room_N ;
-lin showroom_N = mkN "showroom" "showrooms" ; -- compound room_N ;
-lin playroom_N = mkN "playroom" "playrooms" ; -- compound room_N ;
-lin zoom_N = mkN "zoom" "zooms" ;
-lin pom_N = mkN "pom" "poms" ;
-lin carom_N = mkN "carom" "caroms" ;
-lin pogrom_N = mkN "pogrom" "pogroms" ;
-lin prom_N = mkN "prom" "proms" ;
-lin angstrom_N = mkN "angstrom" "angstroms" ;
-lin maelstrom_N = mkN "maelstrom" "maelstroms" ;
-lin som_N = mkN "som" "soms" ;
-lin besom_N = mkN "besom" "besoms" ; -- compound som_N ;
-lin hansom_N = mkN "hansom" "hansoms" ; -- compound som_N ;
-lin ransom_N = mkN "ransom" "ransoms" ; -- compound som_N ;
-lin transom_N = mkN "transom" "transoms" ; -- compound som_N ;
-lin bosom_N = mkN "bosom" "bosoms" ; -- compound som_N ;
-lin blossom_N = mkN "blossom" "blossoms" ; -- compound som_N ;
-lin tom_N = mkN "tom" "toms" ;
-lin atom_N = mkN "atom" "atoms" ; -- notcompound tom_N ;
-lin diatom_N = mkN "diatom" "diatoms" ; -- compound tom_N ;
-lin tomtom_N = mkN "tomtom" "tomtoms" ; -- compound tom_N ;
-lin phantom_N = mkN "phantom" "phantoms" ; -- compound tom_N ;
-lin symptom_N = mkN "symptom" "symptoms" ; -- compound tom_N ;
-lin custom_N = mkN "custom" "customs" ; -- compound tom_N ;
-lin bottom_N = mkN "bottom" "bottoms" ; -- compound tom_N ;
-lin 'rock-bottom_N' = mkN "rock-bottom" "rock-bottoms" ; -- compound tom_N ;
-lin rm_N = mkN "rm" "rms" ;
-lin arm_N = mkN "arm" "arms" ; -- notcompound rm_N ;
-lin barm_N = mkN "barm" "barms" ; -- compound rm_N ;
-lin yardarm_N = mkN "yardarm" "yardarms" ; -- compound rm_N ;
-lin firearm_N = mkN "firearm" "firearms" ; -- compound rm_N ;
-lin forearm_N = mkN "forearm" "forearms" ; -- compound rm_N ;
-lin farm_N = mkN "farm" "farms" ; -- compound rm_N ;
-lin 'stud-farm_N' = mkN "stud-farm" "stud-farms" ; -- compound rm_N ;
-lin 'sewage-farm_N' = mkN "sewage-farm" "sewage-farms" ; -- compound rm_N ;
-lin 'home-farm_N' = mkN "home-farm" "home-farms" ; -- compound rm_N ;
-lin 'dairy-farm_N' = mkN "dairy-farm" "dairy-farms" ; -- compound rm_N ;
-lin harm_N = mkN "harm" "harms" ; -- compound rm_N ;
-lin charm_N = mkN "charm" "charms" ; -- compound rm_N ;
-lin alarm_N = mkN "alarm" "alarms" ; -- compound rm_N ;
-lin 'fire-alarm_N' = mkN "fire-alarm" "fire-alarms" ; -- compound rm_N ;
-lin 'burglar-alarm_N' = mkN "burglar-alarm" "burglar-alarms" ; -- compound rm_N ;
-lin schoolmarm_N = mkN "schoolmarm" "schoolmarms" ; -- compound rm_N ;
-lin swarm_N = mkN "swarm" "swarms" ; -- compound rm_N ;
-lin berm_N = mkN "berm" "berms" ; -- compound rm_N ;
-lin placoderm_N = mkN "placoderm" "placoderms" ; -- compound rm_N ;
-lin ostracoderm_N = mkN "ostracoderm" "ostracoderms" ; -- compound rm_N ;
-lin endoderm_N = mkN "endoderm" "endoderms" ; -- compound rm_N ;
-lin echinoderm_N = mkN "echinoderm" "echinoderms" ; -- compound rm_N ;
-lin mesoderm_N = mkN "mesoderm" "mesoderms" ; -- compound rm_N ;
-lin chordamesoderm_N = mkN "chordamesoderm" "chordamesoderms" ; -- compound rm_N ;
-lin ectoderm_N = mkN "ectoderm" "ectoderms" ; -- compound rm_N ;
-lin blastoderm_N = mkN "blastoderm" "blastoderms" ; -- compound rm_N ;
-lin pachyderm_N = mkN "pachyderm" "pachyderms" ; -- compound rm_N ;
-lin germ_N = mkN "germ" "germs" ; -- compound rm_N ;
-lin herm_N = mkN "herm" "herms" ; -- compound rm_N ;
-lin therm_N = mkN "therm" "therms" ; -- compound rm_N ;
-lin homeotherm_N = mkN "homeotherm" "homeotherms" ; -- compound rm_N ;
-lin poikilotherm_N = mkN "poikilotherm" "poikilotherms" ; -- compound rm_N ;
-lin isotherm_N = mkN "isotherm" "isotherms" ; -- compound rm_N ;
-lin exotherm_N = mkN "exotherm" "exotherms" ; -- compound rm_N ;
-lin perm_N = mkN "perm" "perms" ; -- compound rm_N ;
-lin sperm_N = mkN "sperm" "sperms" ; -- compound rm_N ;
-lin perisperm_N = mkN "perisperm" "perisperms" ; -- compound rm_N ;
-lin endosperm_N = mkN "endosperm" "endosperms" ; -- compound rm_N ;
-lin angiosperm_N = mkN "angiosperm" "angiosperms" ; -- compound rm_N ;
-lin gymnosperm_N = mkN "gymnosperm" "gymnosperms" ; -- compound rm_N ;
-lin progymnosperm_N = mkN "progymnosperm" "progymnosperms" ; -- compound rm_N ;
-lin term_N = mkN "term" "terms" ; -- compound rm_N ;
-lin midterm_N = mkN "midterm" "midterms" ; -- compound rm_N ;
-lin firm_N = mkN "firm" "firms" ; -- compound rm_N ;
-lin squirm_N = mkN "squirm" "squirms" ; -- compound rm_N ;
-lin corm_N = mkN "corm" "corms" ; -- compound rm_N ;
-lin form_N = mkN "form" "forms" ; -- compound rm_N ;
-lin 'order-form_N' = mkN "order-form" "order-forms" ; -- compound rm_N ;
-lin reform_N = mkN "reform" "reforms" ; -- compound rm_N ;
-lin cuneiform_N = mkN "cuneiform" "cuneiforms" ; -- compound rm_N ;
-lin uniform_N = mkN "uniform" "uniforms" ; -- compound rm_N ;
-lin pisiform_N = mkN "pisiform" "pisiforms" ; -- compound rm_N ;
-lin iodoform_N = mkN "iodoform" "iodoforms" ; -- compound rm_N ;
-lin haloform_N = mkN "haloform" "haloforms" ; -- compound rm_N ;
-lin bromoform_N = mkN "bromoform" "bromoforms" ; -- compound rm_N ;
-lin chloroform_N = mkN "chloroform" "chloroforms" ; -- compound rm_N ;
-lin fluoroform_N = mkN "fluoroform" "fluoroforms" ; -- compound rm_N ;
-lin platform_N = mkN "platform" "platforms" ; -- compound rm_N ;
-lin cairngorm_N = mkN "cairngorm" "cairngorms" ; -- compound rm_N ;
-lin norm_N = mkN "norm" "norms" ; -- compound rm_N ;
-lin storm_N = mkN "storm" "storms" ; -- compound rm_N ;
-lin sandstorm_N = mkN "sandstorm" "sandstorms" ; -- compound rm_N ;
-lin windstorm_N = mkN "windstorm" "windstorms" ; -- compound rm_N ;
-lin firestorm_N = mkN "firestorm" "firestorms" ; -- compound rm_N ;
-lin hailstorm_N = mkN "hailstorm" "hailstorms" ; -- compound rm_N ;
-lin rainstorm_N = mkN "rainstorm" "rainstorms" ; -- compound rm_N ;
-lin brainstorm_N = mkN "brainstorm" "brainstorms" ; -- compound rm_N ;
-lin thunderstorm_N = mkN "thunderstorm" "thunderstorms" ; -- compound rm_N ;
-lin snowstorm_N = mkN "snowstorm" "snowstorms" ; -- compound rm_N ;
-lin worm_N = mkN "worm" "worms" ; -- compound rm_N ;
-lin 'glow-worm_N' = mkN "glow-worm" "glow-worms" ; -- compound rm_N ;
-lin 'slow-worm_N' = mkN "slow-worm" "slow-worms" ; -- compound rm_N ;
-lin webworm_N = mkN "webworm" "webworms" ; -- compound rm_N ;
-lin blindworm_N = mkN "blindworm" "blindworms" ; -- compound rm_N ;
-lin bloodworm_N = mkN "bloodworm" "bloodworms" ; -- compound rm_N ;
-lin woodworm_N = mkN "woodworm" "woodworms" ; -- compound rm_N ;
-lin cabbageworm_N = mkN "cabbageworm" "cabbageworms" ; -- compound rm_N ;
-lin tapeworm_N = mkN "tapeworm" "tapeworms" ; -- compound rm_N ;
-lin wireworm_N = mkN "wireworm" "wireworms" ; -- compound rm_N ;
-lin caseworm_N = mkN "caseworm" "caseworms" ; -- compound rm_N ;
-lin ringworm_N = mkN "ringworm" "ringworms" ; -- compound rm_N ;
-lin lugworm_N = mkN "lugworm" "lugworms" ; -- compound rm_N ;
-lin earthworm_N = mkN "earthworm" "earthworms" ; -- compound rm_N ;
-lin silkworm_N = mkN "silkworm" "silkworms" ; -- compound rm_N ;
-lin bookworm_N = mkN "bookworm" "bookworms" ; -- compound rm_N ;
-lin hookworm_N = mkN "hookworm" "hookworms" ; -- compound rm_N ;
-lin mealworm_N = mkN "mealworm" "mealworms" ; -- compound rm_N ;
-lin eelworm_N = mkN "eelworm" "eelworms" ; -- compound rm_N ;
-lin bollworm_N = mkN "bollworm" "bollworms" ; -- compound rm_N ;
-lin pinworm_N = mkN "pinworm" "pinworms" ; -- compound rm_N ;
-lin shipworm_N = mkN "shipworm" "shipworms" ; -- compound rm_N ;
-lin cankerworm_N = mkN "cankerworm" "cankerworms" ; -- compound rm_N ;
-lin caddisworm_N = mkN "caddisworm" "caddisworms" ; -- compound rm_N ;
-lin wheatworm_N = mkN "wheatworm" "wheatworms" ; -- compound rm_N ;
-lin flatworm_N = mkN "flatworm" "flatworms" ; -- compound rm_N ;
-lin cutworm_N = mkN "cutworm" "cutworms" ; -- compound rm_N ;
-lin strawworm_N = mkN "strawworm" "strawworms" ; -- compound rm_N ;
-lin glowworm_N = mkN "glowworm" "glowworms" ; -- compound rm_N ;
-lin arrowworm_N = mkN "arrowworm" "arrowworms" ; -- compound rm_N ;
-lin armyworm_N = mkN "armyworm" "armyworms" ; -- compound rm_N ;
-lin sarcasm_N = mkN "sarcasm" "sarcasms" ;
-lin orgasm_N = mkN "orgasm" "orgasms" ;
-lin chasm_N = mkN "chasm" "chasms" ;
-lin enthusiasm_N = mkN "enthusiasm" "enthusiasms" ;
-lin iconoclasm_N = mkN "iconoclasm" "iconoclasms" ;
-lin plasm_N = mkN "plasm" "plasms" ;
-lin sarcoplasm_N = mkN "sarcoplasm" "sarcoplasms" ; -- compound plasm_N ;
-lin endoplasm_N = mkN "endoplasm" "endoplasms" ; -- compound plasm_N ;
-lin nucleoplasm_N = mkN "nucleoplasm" "nucleoplasms" ; -- compound plasm_N ;
-lin neoplasm_N = mkN "neoplasm" "neoplasms" ; -- compound plasm_N ;
-lin hyaloplasm_N = mkN "hyaloplasm" "hyaloplasms" ; -- compound plasm_N ;
-lin piroplasm_N = mkN "piroplasm" "piroplasms" ; -- compound plasm_N ;
-lin ectoplasm_N = mkN "ectoplasm" "ectoplasms" ; -- compound plasm_N ;
-lin protoplasm_N = mkN "protoplasm" "protoplasms" ; -- compound plasm_N ;
-lin cytoplasm_N = mkN "cytoplasm" "cytoplasms" ; -- compound plasm_N ;
-lin pleonasm_N = mkN "pleonasm" "pleonasms" ;
-lin spasm_N = mkN "spasm" "spasms" ;
-lin laryngospasm_N = mkN "laryngospasm" "laryngospasms" ; -- compound spasm_N ;
-lin bronchospasm_N = mkN "bronchospasm" "bronchospasms" ; -- compound spasm_N ;
-lin cardiospasm_N = mkN "cardiospasm" "cardiospasms" ; -- compound spasm_N ;
-lin blepharospasm_N = mkN "blepharospasm" "blepharospasms" ; -- compound spasm_N ;
-lin phantasm_N = mkN "phantasm" "phantasms" ;
-lin ism_N = mkN "ism" "isms" ;
-lin judaism_N = mkN "judaism" "judaisms" ; -- compound ism_N ;
-lin archaism_N = mkN "archaism" "archaisms" ; -- compound ism_N ;
-lin cubism_N = mkN "cubism" "cubisms" ; -- compound ism_N ;
-lin lambdacism_N = mkN "lambdacism" "lambdacisms" ; -- compound ism_N ;
-lin supremacism_N = mkN "supremacism" "supremacisms" ; -- compound ism_N ;
-lin racism_N = mkN "racism" "racisms" ; -- compound ism_N ;
-lin ostracism_N = mkN "ostracism" "ostracisms" ; -- compound ism_N ;
-lin solecism_N = mkN "solecism" "solecisms" ; -- compound ism_N ;
-lin mosaicism_N = mkN "mosaicism" "mosaicisms" ; -- compound ism_N ;
-lin logicism_N = mkN "logicism" "logicisms" ; -- compound ism_N ;
-lin ethicism_N = mkN "ethicism" "ethicisms" ; -- compound ism_N ;
-lin anglicism_N = mkN "anglicism" "anglicisms" ; -- compound ism_N ;
-lin gallicism_N = mkN "gallicism" "gallicisms" ; -- compound ism_N ;
-lin catholicism_N = mkN "catholicism" "catholicisms" ; -- compound ism_N ;
-lin organicism_N = mkN "organicism" "organicisms" ; -- compound ism_N ;
-lin laconicism_N = mkN "laconicism" "laconicisms" ; -- compound ism_N ;
-lin cynicism_N = mkN "cynicism" "cynicisms" ; -- compound ism_N ;
-lin stoicism_N = mkN "stoicism" "stoicisms" ; -- compound ism_N ;
-lin hypericism_N = mkN "hypericism" "hypericisms" ; -- compound ism_N ;
-lin empiricism_N = mkN "empiricism" "empiricisms" ; -- compound ism_N ;
-lin historicism_N = mkN "historicism" "historicisms" ; -- compound ism_N ;
-lin lyricism_N = mkN "lyricism" "lyricisms" ; -- compound ism_N ;
-lin classicism_N = mkN "classicism" "classicisms" ; -- compound ism_N ;
-lin neoclassicism_N = mkN "neoclassicism" "neoclassicisms" ; -- compound ism_N ;
-lin fanaticism_N = mkN "fanaticism" "fanaticisms" ; -- compound ism_N ;
-lin didacticism_N = mkN "didacticism" "didacticisms" ; -- compound ism_N ;
-lin eclecticism_N = mkN "eclecticism" "eclecticisms" ; -- compound ism_N ;
-lin asceticism_N = mkN "asceticism" "asceticisms" ; -- compound ism_N ;
-lin athleticism_N = mkN "athleticism" "athleticisms" ; -- compound ism_N ;
-lin geneticism_N = mkN "geneticism" "geneticisms" ; -- compound ism_N ;
-lin criticism_N = mkN "criticism" "criticisms" ; -- compound ism_N ;
-lin romanticism_N = mkN "romanticism" "romanticisms" ; -- compound ism_N ;
-lin neoromanticism_N = mkN "neoromanticism" "neoromanticisms" ; -- compound ism_N ;
-lin eroticism_N = mkN "eroticism" "eroticisms" ; -- compound ism_N ;
-lin autoeroticism_N = mkN "autoeroticism" "autoeroticisms" ; -- compound ism_N ;
-lin exoticism_N = mkN "exoticism" "exoticisms" ; -- compound ism_N ;
-lin scepticism_N = mkN "scepticism" "scepticisms" ; -- compound ism_N ;
-lin skepticism_N = mkN "skepticism" "skepticisms" ; -- compound ism_N ;
-lin ecclesiasticism_N = mkN "ecclesiasticism" "ecclesiasticisms" ; -- compound ism_N ;
-lin scholasticism_N = mkN "scholasticism" "scholasticisms" ; -- compound ism_N ;
-lin monasticism_N = mkN "monasticism" "monasticisms" ; -- compound ism_N ;
-lin agnosticism_N = mkN "agnosticism" "agnosticisms" ; -- compound ism_N ;
-lin mysticism_N = mkN "mysticism" "mysticisms" ; -- compound ism_N ;
-lin witticism_N = mkN "witticism" "witticisms" ; -- compound ism_N ;
-lin exorcism_N = mkN "exorcism" "exorcisms" ; -- compound ism_N ;
-lin fascism_N = mkN "fascism" "fascisms" ; -- compound ism_N ;
-lin tribadism_N = mkN "tribadism" "tribadisms" ; -- compound ism_N ;
-lin hypogonadism_N = mkN "hypogonadism" "hypogonadisms" ; -- compound ism_N ;
-lin sadism_N = mkN "sadism" "sadisms" ; -- compound ism_N ;
-lin ophidism_N = mkN "ophidism" "ophidisms" ; -- compound ism_N ;
-lin invalidism_N = mkN "invalidism" "invalidisms" ; -- compound ism_N ;
-lin hypoparathyroidism_N = mkN "hypoparathyroidism" "hypoparathyroidisms" ; -- compound ism_N ;
-lin hyperparathyroidism_N = mkN "hyperparathyroidism" "hyperparathyroidisms" ; -- compound ism_N ;
-lin hypothyroidism_N = mkN "hypothyroidism" "hypothyroidisms" ; -- compound ism_N ;
-lin hyperthyroidism_N = mkN "hyperthyroidism" "hyperthyroidisms" ; -- compound ism_N ;
-lin druidism_N = mkN "druidism" "druidisms" ; -- compound ism_N ;
-lin gourmandism_N = mkN "gourmandism" "gourmandisms" ; -- compound ism_N ;
-lin methodism_N = mkN "methodism" "methodisms" ; -- compound ism_N ;
-lin nudism_N = mkN "nudism" "nudisms" ; -- compound ism_N ;
-lin deism_N = mkN "deism" "deisms" ; -- compound ism_N ;
-lin absenteeism_N = mkN "absenteeism" "absenteeisms" ; -- compound ism_N ;
-lin ageism_N = mkN "ageism" "ageisms" ; -- compound ism_N ;
-lin theism_N = mkN "theism" "theisms" ; -- compound ism_N ;
-lin atheism_N = mkN "atheism" "atheisms" ; -- compound ism_N ;
-lin tritheism_N = mkN "tritheism" "tritheisms" ; -- compound ism_N ;
-lin pantheism_N = mkN "pantheism" "pantheisms" ; -- compound ism_N ;
-lin monotheism_N = mkN "monotheism" "monotheisms" ; -- compound ism_N ;
-lin polytheism_N = mkN "polytheism" "polytheisms" ; -- compound ism_N ;
-lin ableism_N = mkN "ableism" "ableisms" ; -- compound ism_N ;
-lin misoneism_N = mkN "misoneism" "misoneisms" ; -- compound ism_N ;
-lin pacifism_N = mkN "pacifism" "pacifisms" ; -- compound ism_N ;
-lin dwarfism_N = mkN "dwarfism" "dwarfisms" ; -- compound ism_N ;
-lin imagism_N = mkN "imagism" "imagisms" ; -- compound ism_N ;
-lin suffragism_N = mkN "suffragism" "suffragisms" ; -- compound ism_N ;
-lin meningism_N = mkN "meningism" "meningisms" ; -- compound ism_N ;
-lin paralogism_N = mkN "paralogism" "paralogisms" ; -- compound ism_N ;
-lin syllogism_N = mkN "syllogism" "syllogisms" ; -- compound ism_N ;
-lin neologism_N = mkN "neologism" "neologisms" ; -- compound ism_N ;
-lin biologism_N = mkN "biologism" "biologisms" ; -- compound ism_N ;
-lin synergism_N = mkN "synergism" "synergisms" ; -- compound ism_N ;
-lin catechism_N = mkN "catechism" "catechisms" ; -- compound ism_N ;
-lin masochism_N = mkN "masochism" "masochisms" ; -- compound ism_N ;
-lin sadomasochism_N = mkN "sadomasochism" "sadomasochisms" ; -- compound ism_N ;
-lin anarchism_N = mkN "anarchism" "anarchisms" ; -- compound ism_N ;
-lin monarchism_N = mkN "monarchism" "monarchisms" ; -- compound ism_N ;
-lin anorchism_N = mkN "anorchism" "anorchisms" ; -- compound ism_N ;
-lin monorchism_N = mkN "monorchism" "monorchisms" ; -- compound ism_N ;
-lin schism_N = mkN "schism" "schisms" ; -- notcompound ism_N ;
-lin buddhism_N = mkN "buddhism" "buddhisms" ; -- compound ism_N ;
-lin diastrophism_N = mkN "diastrophism" "diastrophisms" ; -- compound ism_N ;
-lin sophism_N = mkN "sophism" "sophisms" ; -- compound ism_N ;
-lin theosophism_N = mkN "theosophism" "theosophisms" ; -- compound ism_N ;
-lin anamorphism_N = mkN "anamorphism" "anamorphisms" ; -- compound ism_N ;
-lin katamorphism_N = mkN "katamorphism" "katamorphisms" ; -- compound ism_N ;
-lin metamorphism_N = mkN "metamorphism" "metamorphisms" ; -- compound ism_N ;
-lin dimorphism_N = mkN "dimorphism" "dimorphisms" ; -- compound ism_N ;
-lin pleomorphism_N = mkN "pleomorphism" "pleomorphisms" ; -- compound ism_N ;
-lin enantiomorphism_N = mkN "enantiomorphism" "enantiomorphisms" ; -- compound ism_N ;
-lin homomorphism_N = mkN "homomorphism" "homomorphisms" ; -- compound ism_N ;
-lin zoomorphism_N = mkN "zoomorphism" "zoomorphisms" ; -- compound ism_N ;
-lin anthropomorphism_N = mkN "anthropomorphism" "anthropomorphisms" ; -- compound ism_N ;
-lin isomorphism_N = mkN "isomorphism" "isomorphisms" ; -- compound ism_N ;
-lin polymorphism_N = mkN "polymorphism" "polymorphisms" ; -- compound ism_N ;
-lin fetishism_N = mkN "fetishism" "fetishisms" ; -- compound ism_N ;
-lin prognathism_N = mkN "prognathism" "prognathisms" ; -- compound ism_N ;
-lin erethism_N = mkN "erethism" "erethisms" ; -- compound ism_N ;
-lin obiism_N = mkN "obiism" "obiisms" ; -- compound ism_N ;
-lin kabbalism_N = mkN "kabbalism" "kabbalisms" ; -- compound ism_N ;
-lin cannibalism_N = mkN "cannibalism" "cannibalisms" ; -- compound ism_N ;
-lin tribalism_N = mkN "tribalism" "tribalisms" ; -- compound ism_N ;
-lin radicalism_N = mkN "radicalism" "radicalisms" ; -- compound ism_N ;
-lin syndicalism_N = mkN "syndicalism" "syndicalisms" ; -- compound ism_N ;
-lin evangelicalism_N = mkN "evangelicalism" "evangelicalisms" ; -- compound ism_N ;
-lin clericalism_N = mkN "clericalism" "clericalisms" ; -- compound ism_N ;
-lin localism_N = mkN "localism" "localisms" ; -- compound ism_N ;
-lin bipedalism_N = mkN "bipedalism" "bipedalisms" ; -- compound ism_N ;
-lin vandalism_N = mkN "vandalism" "vandalisms" ; -- compound ism_N ;
-lin feudalism_N = mkN "feudalism" "feudalisms" ; -- compound ism_N ;
-lin idealism_N = mkN "idealism" "idealisms" ; -- compound ism_N ;
-lin realism_N = mkN "realism" "realisms" ; -- compound ism_N ;
-lin surrealism_N = mkN "surrealism" "surrealisms" ; -- compound ism_N ;
-lin legalism_N = mkN "legalism" "legalisms" ; -- compound ism_N ;
-lin racialism_N = mkN "racialism" "racialisms" ; -- compound ism_N ;
-lin specialism_N = mkN "specialism" "specialisms" ; -- compound ism_N ;
-lin provincialism_N = mkN "provincialism" "provincialisms" ; -- compound ism_N ;
-lin socialism_N = mkN "socialism" "socialisms" ; -- compound ism_N ;
-lin commercialism_N = mkN "commercialism" "commercialisms" ; -- compound ism_N ;
-lin parochialism_N = mkN "parochialism" "parochialisms" ; -- compound ism_N ;
-lin colonialism_N = mkN "colonialism" "colonialisms" ; -- compound ism_N ;
-lin neocolonialism_N = mkN "neocolonialism" "neocolonialisms" ; -- compound ism_N ;
-lin imperialism_N = mkN "imperialism" "imperialisms" ; -- compound ism_N ;
-lin serialism_N = mkN "serialism" "serialisms" ; -- compound ism_N ;
-lin materialism_N = mkN "materialism" "materialisms" ; -- compound ism_N ;
-lin industrialism_N = mkN "industrialism" "industrialisms" ; -- compound ism_N ;
-lin existentialism_N = mkN "existentialism" "existentialisms" ; -- compound ism_N ;
-lin colloquialism_N = mkN "colloquialism" "colloquialisms" ; -- compound ism_N ;
-lin animalism_N = mkN "animalism" "animalisms" ; -- compound ism_N ;
-lin minimalism_N = mkN "minimalism" "minimalisms" ; -- compound ism_N ;
-lin formalism_N = mkN "formalism" "formalisms" ; -- compound ism_N ;
-lin originalism_N = mkN "originalism" "originalisms" ; -- compound ism_N ;
-lin criminalism_N = mkN "criminalism" "criminalisms" ; -- compound ism_N ;
-lin nominalism_N = mkN "nominalism" "nominalisms" ; -- compound ism_N ;
-lin regionalism_N = mkN "regionalism" "regionalisms" ; -- compound ism_N ;
-lin professionalism_N = mkN "professionalism" "professionalisms" ; -- compound ism_N ;
-lin nationalism_N = mkN "nationalism" "nationalisms" ; -- compound ism_N ;
-lin denominationalism_N = mkN "denominationalism" "denominationalisms" ; -- compound ism_N ;
-lin internationalism_N = mkN "internationalism" "internationalisms" ; -- compound ism_N ;
-lin rationalism_N = mkN "rationalism" "rationalisms" ; -- compound ism_N ;
-lin operationalism_N = mkN "operationalism" "operationalisms" ; -- compound ism_N ;
-lin sensationalism_N = mkN "sensationalism" "sensationalisms" ; -- compound ism_N ;
-lin sectionalism_N = mkN "sectionalism" "sectionalisms" ; -- compound ism_N ;
-lin functionalism_N = mkN "functionalism" "functionalisms" ; -- compound ism_N ;
-lin traditionalism_N = mkN "traditionalism" "traditionalisms" ; -- compound ism_N ;
-lin constitutionalism_N = mkN "constitutionalism" "constitutionalisms" ; -- compound ism_N ;
-lin maternalism_N = mkN "maternalism" "maternalisms" ; -- compound ism_N ;
-lin paternalism_N = mkN "paternalism" "paternalisms" ; -- compound ism_N ;
-lin journalism_N = mkN "journalism" "journalisms" ; -- compound ism_N ;
-lin photojournalism_N = mkN "photojournalism" "photojournalisms" ; -- compound ism_N ;
-lin communalism_N = mkN "communalism" "communalisms" ; -- compound ism_N ;
-lin liberalism_N = mkN "liberalism" "liberalisms" ; -- compound ism_N ;
-lin neoliberalism_N = mkN "neoliberalism" "neoliberalisms" ; -- compound ism_N ;
-lin federalism_N = mkN "federalism" "federalisms" ; -- compound ism_N ;
-lin bilateralism_N = mkN "bilateralism" "bilateralisms" ; -- compound ism_N ;
-lin unilateralism_N = mkN "unilateralism" "unilateralisms" ; -- compound ism_N ;
-lin literalism_N = mkN "literalism" "literalisms" ; -- compound ism_N ;
-lin moralism_N = mkN "moralism" "moralisms" ; -- compound ism_N ;
-lin amoralism_N = mkN "amoralism" "amoralisms" ; -- compound ism_N ;
-lin centralism_N = mkN "centralism" "centralisms" ; -- compound ism_N ;
-lin neutralism_N = mkN "neutralism" "neutralisms" ; -- compound ism_N ;
-lin pluralism_N = mkN "pluralism" "pluralisms" ; -- compound ism_N ;
-lin ruralism_N = mkN "ruralism" "ruralisms" ; -- compound ism_N ;
-lin naturalism_N = mkN "naturalism" "naturalisms" ; -- compound ism_N ;
-lin supernaturalism_N = mkN "supernaturalism" "supernaturalisms" ; -- compound ism_N ;
-lin structuralism_N = mkN "structuralism" "structuralisms" ; -- compound ism_N ;
-lin multiculturalism_N = mkN "multiculturalism" "multiculturalisms" ; -- compound ism_N ;
-lin commensalism_N = mkN "commensalism" "commensalisms" ; -- compound ism_N ;
-lin universalism_N = mkN "universalism" "universalisms" ; -- compound ism_N ;
-lin fatalism_N = mkN "fatalism" "fatalisms" ; -- compound ism_N ;
-lin capitalism_N = mkN "capitalism" "capitalisms" ; -- compound ism_N ;
-lin vitalism_N = mkN "vitalism" "vitalisms" ; -- compound ism_N ;
-lin occidentalism_N = mkN "occidentalism" "occidentalisms" ; -- compound ism_N ;
-lin transcendentalism_N = mkN "transcendentalism" "transcendentalisms" ; -- compound ism_N ;
-lin orientalism_N = mkN "orientalism" "orientalisms" ; -- compound ism_N ;
-lin mentalism_N = mkN "mentalism" "mentalisms" ; -- compound ism_N ;
-lin fundamentalism_N = mkN "fundamentalism" "fundamentalisms" ; -- compound ism_N ;
-lin ornamentalism_N = mkN "ornamentalism" "ornamentalisms" ; -- compound ism_N ;
-lin experimentalism_N = mkN "experimentalism" "experimentalisms" ; -- compound ism_N ;
-lin sentimentalism_N = mkN "sentimentalism" "sentimentalisms" ; -- compound ism_N ;
-lin environmentalism_N = mkN "environmentalism" "environmentalisms" ; -- compound ism_N ;
-lin instrumentalism_N = mkN "instrumentalism" "instrumentalisms" ; -- compound ism_N ;
-lin sacerdotalism_N = mkN "sacerdotalism" "sacerdotalisms" ; -- compound ism_N ;
-lin pentecostalism_N = mkN "pentecostalism" "pentecostalisms" ; -- compound ism_N ;
-lin dualism_N = mkN "dualism" "dualisms" ; -- compound ism_N ;
-lin individualism_N = mkN "individualism" "individualisms" ; -- compound ism_N ;
-lin bilingualism_N = mkN "bilingualism" "bilingualisms" ; -- compound ism_N ;
-lin sensualism_N = mkN "sensualism" "sensualisms" ; -- compound ism_N ;
-lin ritualism_N = mkN "ritualism" "ritualisms" ; -- compound ism_N ;
-lin spiritualism_N = mkN "spiritualism" "spiritualisms" ; -- compound ism_N ;
-lin conceptualism_N = mkN "conceptualism" "conceptualisms" ; -- compound ism_N ;
-lin contextualism_N = mkN "contextualism" "contextualisms" ; -- compound ism_N ;
-lin transsexualism_N = mkN "transsexualism" "transsexualisms" ; -- compound ism_N ;
-lin revivalism_N = mkN "revivalism" "revivalisms" ; -- compound ism_N ;
-lin royalism_N = mkN "royalism" "royalisms" ; -- compound ism_N ;
-lin ptyalism_N = mkN "ptyalism" "ptyalisms" ; -- compound ism_N ;
-lin evangelism_N = mkN "evangelism" "evangelisms" ; -- compound ism_N ;
-lin televangelism_N = mkN "televangelism" "televangelisms" ; -- compound ism_N ;
-lin parallelism_N = mkN "parallelism" "parallelisms" ; -- compound ism_N ;
-lin autotelism_N = mkN "autotelism" "autotelisms" ; -- compound ism_N ;
-lin probabilism_N = mkN "probabilism" "probabilisms" ; -- compound ism_N ;
-lin pugilism_N = mkN "pugilism" "pugilisms" ; -- compound ism_N ;
-lin nihilism_N = mkN "nihilism" "nihilisms" ; -- compound ism_N ;
-lin virilism_N = mkN "virilism" "virilisms" ; -- compound ism_N ;
-lin mercantilism_N = mkN "mercantilism" "mercantilisms" ; -- compound ism_N ;
-lin infantilism_N = mkN "infantilism" "infantilisms" ; -- compound ism_N ;
-lin bimetallism_N = mkN "bimetallism" "bimetallisms" ; -- compound ism_N ;
-lin pointillism_N = mkN "pointillism" "pointillisms" ; -- compound ism_N ;
-lin diabolism_N = mkN "diabolism" "diabolisms" ; -- compound ism_N ;
-lin anabolism_N = mkN "anabolism" "anabolisms" ; -- compound ism_N ;
-lin catabolism_N = mkN "catabolism" "catabolisms" ; -- compound ism_N ;
-lin metabolism_N = mkN "metabolism" "metabolisms" ; -- compound ism_N ;
-lin holometabolism_N = mkN "holometabolism" "holometabolisms" ; -- compound ism_N ;
-lin heterometabolism_N = mkN "heterometabolism" "heterometabolisms" ; -- compound ism_N ;
-lin embolism_N = mkN "embolism" "embolisms" ; -- compound ism_N ;
-lin thromboembolism_N = mkN "thromboembolism" "thromboembolisms" ; -- compound ism_N ;
-lin symbolism_N = mkN "symbolism" "symbolisms" ; -- compound ism_N ;
-lin mongolism_N = mkN "mongolism" "mongolisms" ; -- compound ism_N ;
-lin holism_N = mkN "holism" "holisms" ; -- compound ism_N ;
-lin workaholism_N = mkN "workaholism" "workaholisms" ; -- compound ism_N ;
-lin alcoholism_N = mkN "alcoholism" "alcoholisms" ; -- compound ism_N ;
-lin sciolism_N = mkN "sciolism" "sciolisms" ; -- compound ism_N ;
-lin somnambulism_N = mkN "somnambulism" "somnambulisms" ; -- compound ism_N ;
-lin funambulism_N = mkN "funambulism" "funambulisms" ; -- compound ism_N ;
-lin oculism_N = mkN "oculism" "oculisms" ; -- compound ism_N ;
-lin populism_N = mkN "populism" "populisms" ; -- compound ism_N ;
-lin botulism_N = mkN "botulism" "botulisms" ; -- compound ism_N ;
-lin dynamism_N = mkN "dynamism" "dynamisms" ; -- compound ism_N ;
-lin dysphemism_N = mkN "dysphemism" "dysphemisms" ; -- compound ism_N ;
-lin euphemism_N = mkN "euphemism" "euphemisms" ; -- compound ism_N ;
-lin extremism_N = mkN "extremism" "extremisms" ; -- compound ism_N ;
-lin totemism_N = mkN "totemism" "totemisms" ; -- compound ism_N ;
-lin animism_N = mkN "animism" "animisms" ; -- compound ism_N ;
-lin pessimism_N = mkN "pessimism" "pessimisms" ; -- compound ism_N ;
-lin optimism_N = mkN "optimism" "optimisms" ; -- compound ism_N ;
-lin momism_N = mkN "momism" "momisms" ; -- compound ism_N ;
-lin atomism_N = mkN "atomism" "atomisms" ; -- compound ism_N ;
-lin alarmism_N = mkN "alarmism" "alarmisms" ; -- compound ism_N ;
-lin reformism_N = mkN "reformism" "reformisms" ; -- compound ism_N ;
-lin nonconformism_N = mkN "nonconformism" "nonconformisms" ; -- compound ism_N ;
-lin republicanism_N = mkN "republicanism" "republicanisms" ; -- compound ism_N ;
-lin americanism_N = mkN "americanism" "americanisms" ; -- compound ism_N ;
-lin volcanism_N = mkN "volcanism" "volcanisms" ; -- compound ism_N ;
-lin muhammadanism_N = mkN "muhammadanism" "muhammadanisms" ; -- compound ism_N ;
-lin epicureanism_N = mkN "epicureanism" "epicureanisms" ; -- compound ism_N ;
-lin paganism_N = mkN "paganism" "paganisms" ; -- compound ism_N ;
-lin hooliganism_N = mkN "hooliganism" "hooliganisms" ; -- compound ism_N ;
-lin organism_N = mkN "organism" "organisms" ; -- compound ism_N ;
-lin 'micro-organism_N' = mkN "micro-organism" "micro-organisms" ; -- compound ism_N ;
-lin microorganism_N = mkN "microorganism" "microorganisms" ; -- compound ism_N ;
-lin mechanism_N = mkN "mechanism" "mechanisms" ; -- compound ism_N ;
-lin lesbianism_N = mkN "lesbianism" "lesbianisms" ; -- compound ism_N ;
-lin ruffianism_N = mkN "ruffianism" "ruffianisms" ; -- compound ism_N ;
-lin bohemianism_N = mkN "bohemianism" "bohemianisms" ; -- compound ism_N ;
-lin antinomianism_N = mkN "antinomianism" "antinomianisms" ; -- compound ism_N ;
-lin pianism_N = mkN "pianism" "pianisms" ; -- compound ism_N ;
-lin millenarianism_N = mkN "millenarianism" "millenarianisms" ; -- compound ism_N ;
-lin predestinarianism_N = mkN "predestinarianism" "predestinarianisms" ; -- compound ism_N ;
-lin sectarianism_N = mkN "sectarianism" "sectarianisms" ; -- compound ism_N ;
-lin vegetarianism_N = mkN "vegetarianism" "vegetarianisms" ; -- compound ism_N ;
-lin hereditarianism_N = mkN "hereditarianism" "hereditarianisms" ; -- compound ism_N ;
-lin egalitarianism_N = mkN "egalitarianism" "egalitarianisms" ; -- compound ism_N ;
-lin totalitarianism_N = mkN "totalitarianism" "totalitarianisms" ; -- compound ism_N ;
-lin utilitarianism_N = mkN "utilitarianism" "utilitarianisms" ; -- compound ism_N ;
-lin humanitarianism_N = mkN "humanitarianism" "humanitarianisms" ; -- compound ism_N ;
-lin unitarianism_N = mkN "unitarianism" "unitarianisms" ; -- compound ism_N ;
-lin authoritarianism_N = mkN "authoritarianism" "authoritarianisms" ; -- compound ism_N ;
-lin establishmentarianism_N = mkN "establishmentarianism" "establishmentarianisms" ; -- compound ism_N ;
-lin antiestablishmentarianism_N = mkN "antiestablishmentarianism" "antiestablishmentarianisms" ; -- compound ism_N ;
-lin libertarianism_N = mkN "libertarianism" "libertarianisms" ; -- compound ism_N ;
-lin presbyterianism_N = mkN "presbyterianism" "presbyterianisms" ; -- compound ism_N ;
-lin shamanism_N = mkN "shamanism" "shamanisms" ; -- compound ism_N ;
-lin humanism_N = mkN "humanism" "humanisms" ; -- compound ism_N ;
-lin charlatanism_N = mkN "charlatanism" "charlatanisms" ; -- compound ism_N ;
-lin puritanism_N = mkN "puritanism" "puritanisms" ; -- compound ism_N ;
-lin ultramontanism_N = mkN "ultramontanism" "ultramontanisms" ; -- compound ism_N ;
-lin galvanism_N = mkN "galvanism" "galvanisms" ; -- compound ism_N ;
-lin hoydenism_N = mkN "hoydenism" "hoydenisms" ; -- compound ism_N ;
-lin alienism_N = mkN "alienism" "alienisms" ; -- compound ism_N ;
-lin philhellenism_N = mkN "philhellenism" "philhellenisms" ; -- compound ism_N ;
-lin hypersplenism_N = mkN "hypersplenism" "hypersplenisms" ; -- compound ism_N ;
-lin ecumenism_N = mkN "ecumenism" "ecumenisms" ; -- compound ism_N ;
-lin albinism_N = mkN "albinism" "albinisms" ; -- compound ism_N ;
-lin jacobinism_N = mkN "jacobinism" "jacobinisms" ; -- compound ism_N ;
-lin caffeinism_N = mkN "caffeinism" "caffeinisms" ; -- compound ism_N ;
-lin feminism_N = mkN "feminism" "feminisms" ; -- compound ism_N ;
-lin determinism_N = mkN "determinism" "determinisms" ; -- compound ism_N ;
-lin luminism_N = mkN "luminism" "luminisms" ; -- compound ism_N ;
-lin actinism_N = mkN "actinism" "actinisms" ; -- compound ism_N ;
-lin cretinism_N = mkN "cretinism" "cretinisms" ; -- compound ism_N ;
-lin philistinism_N = mkN "philistinism" "philistinisms" ; -- compound ism_N ;
-lin calvinism_N = mkN "calvinism" "calvinisms" ; -- compound ism_N ;
-lin chauvinism_N = mkN "chauvinism" "chauvinisms" ; -- compound ism_N ;
-lin laconism_N = mkN "laconism" "laconisms" ; -- compound ism_N ;
-lin hedonism_N = mkN "hedonism" "hedonisms" ; -- compound ism_N ;
-lin antagonism_N = mkN "antagonism" "antagonisms" ; -- compound ism_N ;
-lin religionism_N = mkN "religionism" "religionisms" ; -- compound ism_N ;
-lin unionism_N = mkN "unionism" "unionisms" ; -- compound ism_N ;
-lin 'trade-unionism_N' = mkN "trade-unionism" "trade-unionisms" ; -- compound ism_N ;
-lin revisionism_N = mkN "revisionism" "revisionisms" ; -- compound ism_N ;
-lin expansionism_N = mkN "expansionism" "expansionisms" ; -- compound ism_N ;
-lin secessionism_N = mkN "secessionism" "secessionisms" ; -- compound ism_N ;
-lin impressionism_N = mkN "impressionism" "impressionisms" ; -- compound ism_N ;
-lin expressionism_N = mkN "expressionism" "expressionisms" ; -- compound ism_N ;
-lin neoexpressionism_N = mkN "neoexpressionism" "neoexpressionisms" ; -- compound ism_N ;
-lin creationism_N = mkN "creationism" "creationisms" ; -- compound ism_N ;
-lin segregationism_N = mkN "segregationism" "segregationisms" ; -- compound ism_N ;
-lin associationism_N = mkN "associationism" "associationisms" ; -- compound ism_N ;
-lin deviationism_N = mkN "deviationism" "deviationisms" ; -- compound ism_N ;
-lin isolationism_N = mkN "isolationism" "isolationisms" ; -- compound ism_N ;
-lin reincarnationism_N = mkN "reincarnationism" "reincarnationisms" ; -- compound ism_N ;
-lin separationism_N = mkN "separationism" "separationisms" ; -- compound ism_N ;
-lin moderationism_N = mkN "moderationism" "moderationisms" ; -- compound ism_N ;
-lin reactionism_N = mkN "reactionism" "reactionisms" ; -- compound ism_N ;
-lin abstractionism_N = mkN "abstractionism" "abstractionisms" ; -- compound ism_N ;
-lin perfectionism_N = mkN "perfectionism" "perfectionisms" ; -- compound ism_N ;
-lin insurrectionism_N = mkN "insurrectionism" "insurrectionisms" ; -- compound ism_N ;
-lin protectionism_N = mkN "protectionism" "protectionisms" ; -- compound ism_N ;
-lin reductionism_N = mkN "reductionism" "reductionisms" ; -- compound ism_N ;
-lin obstructionism_N = mkN "obstructionism" "obstructionisms" ; -- compound ism_N ;
-lin exhibitionism_N = mkN "exhibitionism" "exhibitionisms" ; -- compound ism_N ;
-lin abolitionism_N = mkN "abolitionism" "abolitionisms" ; -- compound ism_N ;
-lin intuitionism_N = mkN "intuitionism" "intuitionisms" ; -- compound ism_N ;
-lin revolutionism_N = mkN "revolutionism" "revolutionisms" ; -- compound ism_N ;
-lin zionism_N = mkN "zionism" "zionisms" ; -- compound ism_N ;
-lin monism_N = mkN "monism" "monisms" ; -- compound ism_N ;
-lin eudemonism_N = mkN "eudemonism" "eudemonisms" ; -- compound ism_N ;
-lin Mormonism_N = mkN "Mormonism" "Mormonisms" ; -- compound ism_N ;
-lin aldosteronism_N = mkN "aldosteronism" "aldosteronisms" ; -- compound ism_N ;
-lin anachronism_N = mkN "anachronism" "anachronisms" ; -- compound ism_N ;
-lin synchronism_N = mkN "synchronism" "synchronisms" ; -- compound ism_N ;
-lin asynchronism_N = mkN "asynchronism" "asynchronisms" ; -- compound ism_N ;
-lin modernism_N = mkN "modernism" "modernisms" ; -- compound ism_N ;
-lin postmodernism_N = mkN "postmodernism" "postmodernisms" ; -- compound ism_N ;
-lin southernism_N = mkN "southernism" "southernisms" ; -- compound ism_N ;
-lin communism_N = mkN "communism" "communisms" ; -- compound ism_N ;
-lin opportunism_N = mkN "opportunism" "opportunisms" ; -- compound ism_N ;
-lin maoism_N = mkN "maoism" "maoisms" ; -- compound ism_N ;
-lin egoism_N = mkN "egoism" "egoisms" ; -- compound ism_N ;
-lin jingoism_N = mkN "jingoism" "jingoisms" ; -- compound ism_N ;
-lin voodooism_N = mkN "voodooism" "voodooisms" ; -- compound ism_N ;
-lin heroism_N = mkN "heroism" "heroisms" ; -- compound ism_N ;
-lin dichroism_N = mkN "dichroism" "dichroisms" ; -- compound ism_N ;
-lin trichroism_N = mkN "trichroism" "trichroisms" ; -- compound ism_N ;
-lin pleochroism_N = mkN "pleochroism" "pleochroisms" ; -- compound ism_N ;
-lin escapism_N = mkN "escapism" "escapisms" ; -- compound ism_N ;
-lin priapism_N = mkN "priapism" "priapisms" ; -- compound ism_N ;
-lin theanthropism_N = mkN "theanthropism" "theanthropisms" ; -- compound ism_N ;
-lin malapropism_N = mkN "malapropism" "malapropisms" ; -- compound ism_N ;
-lin tropism_N = mkN "tropism" "tropisms" ; -- compound ism_N ;
-lin geotropism_N = mkN "geotropism" "geotropisms" ; -- compound ism_N ;
-lin ergotropism_N = mkN "ergotropism" "ergotropisms" ; -- compound ism_N ;
-lin trophotropism_N = mkN "trophotropism" "trophotropisms" ; -- compound ism_N ;
-lin heliotropism_N = mkN "heliotropism" "heliotropisms" ; -- compound ism_N ;
-lin thermotropism_N = mkN "thermotropism" "thermotropisms" ; -- compound ism_N ;
-lin neurotropism_N = mkN "neurotropism" "neurotropisms" ; -- compound ism_N ;
-lin phototropism_N = mkN "phototropism" "phototropisms" ; -- compound ism_N ;
-lin meteortropism_N = mkN "meteortropism" "meteortropisms" ; -- compound ism_N ;
-lin barbarism_N = mkN "barbarism" "barbarisms" ; -- compound ism_N ;
-lin vulgarism_N = mkN "vulgarism" "vulgarisms" ; -- compound ism_N ;
-lin blepharism_N = mkN "blepharism" "blepharisms" ; -- compound ism_N ;
-lin incendiarism_N = mkN "incendiarism" "incendiarisms" ; -- compound ism_N ;
-lin plagiarism_N = mkN "plagiarism" "plagiarisms" ; -- compound ism_N ;
-lin secularism_N = mkN "secularism" "secularisms" ; -- compound ism_N ;
-lin particularism_N = mkN "particularism" "particularisms" ; -- compound ism_N ;
-lin popularism_N = mkN "popularism" "popularisms" ; -- compound ism_N ;
-lin insularism_N = mkN "insularism" "insularisms" ; -- compound ism_N ;
-lin monetarism_N = mkN "monetarism" "monetarisms" ; -- compound ism_N ;
-lin militarism_N = mkN "militarism" "militarisms" ; -- compound ism_N ;
-lin hyperpituitarism_N = mkN "hyperpituitarism" "hyperpituitarisms" ; -- compound ism_N ;
-lin careerism_N = mkN "careerism" "careerisms" ; -- compound ism_N ;
-lin wellerism_N = mkN "wellerism" "wellerisms" ; -- compound ism_N ;
-lin allomerism_N = mkN "allomerism" "allomerisms" ; -- compound ism_N ;
-lin isomerism_N = mkN "isomerism" "isomerisms" ; -- compound ism_N ;
-lin mesmerism_N = mkN "mesmerism" "mesmerisms" ; -- compound ism_N ;
-lin consumerism_N = mkN "consumerism" "consumerisms" ; -- compound ism_N ;
-lin mannerism_N = mkN "mannerism" "mannerisms" ; -- compound ism_N ;
-lin spoonerism_N = mkN "spoonerism" "spoonerisms" ; -- compound ism_N ;
-lin pauperism_N = mkN "pauperism" "pauperisms" ; -- compound ism_N ;
-lin asterism_N = mkN "asterism" "asterisms" ; -- compound ism_N ;
-lin chrism_N = mkN "chrism" "chrisms" ; -- notcompound ism_N ;
-lin vampirism_N = mkN "vampirism" "vampirisms" ; -- compound ism_N ;
-lin algorism_N = mkN "algorism" "algorisms" ; -- compound ism_N ;
-lin aphorism_N = mkN "aphorism" "aphorisms" ; -- compound ism_N ;
-lin meliorism_N = mkN "meliorism" "meliorisms" ; -- compound ism_N ;
-lin behaviorism_N = mkN "behaviorism" "behaviorisms" ; -- compound ism_N ;
-lin terrorism_N = mkN "terrorism" "terrorisms" ; -- compound ism_N ;
-lin ecoterrorism_N = mkN "ecoterrorism" "ecoterrorisms" ; -- compound ism_N ;
-lin narcoterrorism_N = mkN "narcoterrorism" "narcoterrorisms" ; -- compound ism_N ;
-lin theoterrorism_N = mkN "theoterrorism" "theoterrorisms" ; -- compound ism_N ;
-lin bioterrorism_N = mkN "bioterrorism" "bioterrorisms" ; -- compound ism_N ;
-lin counterterrorism_N = mkN "counterterrorism" "counterterrorisms" ; -- compound ism_N ;
-lin prism_N = mkN "prism" "prisms" ; -- notcompound ism_N ;
-lin biprism_N = mkN "biprism" "biprisms" ; -- compound ism_N ;
-lin centrism_N = mkN "centrism" "centrisms" ; -- compound ism_N ;
-lin ethnocentrism_N = mkN "ethnocentrism" "ethnocentrisms" ; -- compound ism_N ;
-lin anthropocentrism_N = mkN "anthropocentrism" "anthropocentrisms" ; -- compound ism_N ;
-lin epicurism_N = mkN "epicurism" "epicurisms" ; -- compound ism_N ;
-lin amateurism_N = mkN "amateurism" "amateurisms" ; -- compound ism_N ;
-lin voyeurism_N = mkN "voyeurism" "voyeurisms" ; -- compound ism_N ;
-lin behaviourism_N = mkN "behaviourism" "behaviourisms" ; -- compound ism_N ;
-lin tourism_N = mkN "tourism" "tourisms" ; -- compound ism_N ;
-lin ecotourism_N = mkN "ecotourism" "ecotourisms" ; -- compound ism_N ;
-lin purism_N = mkN "purism" "purisms" ; -- compound ism_N ;
-lin naturism_N = mkN "naturism" "naturisms" ; -- compound ism_N ;
-lin adventurism_N = mkN "adventurism" "adventurisms" ; -- compound ism_N ;
-lin futurism_N = mkN "futurism" "futurisms" ; -- compound ism_N ;
-lin solipsism_N = mkN "solipsism" "solipsisms" ; -- compound ism_N ;
-lin narcissism_N = mkN "narcissism" "narcissisms" ; -- compound ism_N ;
-lin bossism_N = mkN "bossism" "bossisms" ; -- compound ism_N ;
-lin defeatism_N = mkN "defeatism" "defeatisms" ; -- compound ism_N ;
-lin cataphatism_N = mkN "cataphatism" "cataphatisms" ; -- compound ism_N ;
-lin apophatism_N = mkN "apophatism" "apophatisms" ; -- compound ism_N ;
-lin suprematism_N = mkN "suprematism" "suprematisms" ; -- compound ism_N ;
-lin systematism_N = mkN "systematism" "systematisms" ; -- compound ism_N ;
-lin pragmatism_N = mkN "pragmatism" "pragmatisms" ; -- compound ism_N ;
-lin stigmatism_N = mkN "stigmatism" "stigmatisms" ; -- compound ism_N ;
-lin astigmatism_N = mkN "astigmatism" "astigmatisms" ; -- compound ism_N ;
-lin dogmatism_N = mkN "dogmatism" "dogmatisms" ; -- compound ism_N ;
-lin animatism_N = mkN "animatism" "animatisms" ; -- compound ism_N ;
-lin chromatism_N = mkN "chromatism" "chromatisms" ; -- compound ism_N ;
-lin automatism_N = mkN "automatism" "automatisms" ; -- compound ism_N ;
-lin rheumatism_N = mkN "rheumatism" "rheumatisms" ; -- compound ism_N ;
-lin separatism_N = mkN "separatism" "separatisms" ; -- compound ism_N ;
-lin corporatism_N = mkN "corporatism" "corporatisms" ; -- compound ism_N ;
-lin conservatism_N = mkN "conservatism" "conservatisms" ; -- compound ism_N ;
-lin neoconservatism_N = mkN "neoconservatism" "neoconservatisms" ; -- compound ism_N ;
-lin synthetism_N = mkN "synthetism" "synthetisms" ; -- compound ism_N ;
-lin quietism_N = mkN "quietism" "quietisms" ; -- compound ism_N ;
-lin magnetism_N = mkN "magnetism" "magnetisms" ; -- compound ism_N ;
-lin diamagnetism_N = mkN "diamagnetism" "diamagnetisms" ; -- compound ism_N ;
-lin paramagnetism_N = mkN "paramagnetism" "paramagnetisms" ; -- compound ism_N ;
-lin ferrimagnetism_N = mkN "ferrimagnetism" "ferrimagnetisms" ; -- compound ism_N ;
-lin ferromagnetism_N = mkN "ferromagnetism" "ferromagnetisms" ; -- compound ism_N ;
-lin antiferromagnetism_N = mkN "antiferromagnetism" "antiferromagnetisms" ; -- compound ism_N ;
-lin electromagnetism_N = mkN "electromagnetism" "electromagnetisms" ; -- compound ism_N ;
-lin concretism_N = mkN "concretism" "concretisms" ; -- compound ism_N ;
-lin syncretism_N = mkN "syncretism" "syncretisms" ; -- compound ism_N ;
-lin leftism_N = mkN "leftism" "leftisms" ; -- compound ism_N ;
-lin rightism_N = mkN "rightism" "rightisms" ; -- compound ism_N ;
-lin hermaphroditism_N = mkN "hermaphroditism" "hermaphroditisms" ; -- compound ism_N ;
-lin pseudohermaphroditism_N = mkN "pseudohermaphroditism" "pseudohermaphroditisms" ; -- compound ism_N ;
-lin asynclitism_N = mkN "asynclitism" "asynclitisms" ; -- compound ism_N ;
-lin elitism_N = mkN "elitism" "elitisms" ; -- compound ism_N ;
-lin eremitism_N = mkN "eremitism" "eremitisms" ; -- compound ism_N ;
-lin 'anti-semitism_N' = mkN "anti-semitism" "anti-semitisms" ; -- compound ism_N ;
-lin favoritism_N = mkN "favoritism" "favoritisms" ; -- compound ism_N ;
-lin favouritism_N = mkN "favouritism" "favouritisms" ; -- compound ism_N ;
-lin parasitism_N = mkN "parasitism" "parasitisms" ; -- compound ism_N ;
-lin cultism_N = mkN "cultism" "cultisms" ; -- compound ism_N ;
-lin occultism_N = mkN "occultism" "occultisms" ; -- compound ism_N ;
-lin gigantism_N = mkN "gigantism" "gigantisms" ; -- compound ism_N ;
-lin giantism_N = mkN "giantism" "giantisms" ; -- compound ism_N ;
-lin vigilantism_N = mkN "vigilantism" "vigilantisms" ; -- compound ism_N ;
-lin tarantism_N = mkN "tarantism" "tarantisms" ; -- compound ism_N ;
-lin obscurantism_N = mkN "obscurantism" "obscurantisms" ; -- compound ism_N ;
-lin protestantism_N = mkN "protestantism" "protestantisms" ; -- compound ism_N ;
-lin irredentism_N = mkN "irredentism" "irredentisms" ; -- compound ism_N ;
-lin irridentism_N = mkN "irridentism" "irridentisms" ; -- compound ism_N ;
-lin presentism_N = mkN "presentism" "presentisms" ; -- compound ism_N ;
-lin egotism_N = mkN "egotism" "egotisms" ; -- compound ism_N ;
-lin ergotism_N = mkN "ergotism" "ergotisms" ; -- compound ism_N ;
-lin patriotism_N = mkN "patriotism" "patriotisms" ; -- compound ism_N ;
-lin hypnotism_N = mkN "hypnotism" "hypnotisms" ; -- compound ism_N ;
-lin nepotism_N = mkN "nepotism" "nepotisms" ; -- compound ism_N ;
-lin despotism_N = mkN "despotism" "despotisms" ; -- compound ism_N ;
-lin baptism_N = mkN "baptism" "baptisms" ; -- compound ism_N ;
-lin chartism_N = mkN "chartism" "chartisms" ; -- compound ism_N ;
-lin transvestism_N = mkN "transvestism" "transvestisms" ; -- compound ism_N ;
-lin fattism_N = mkN "fattism" "fattisms" ; -- compound ism_N ;
-lin autism_N = mkN "autism" "autisms" ; -- compound ism_N ;
-lin absolutism_N = mkN "absolutism" "absolutisms" ; -- compound ism_N ;
-lin mutism_N = mkN "mutism" "mutisms" ; -- compound ism_N ;
-lin proselytism_N = mkN "proselytism" "proselytisms" ; -- compound ism_N ;
-lin hinduism_N = mkN "hinduism" "hinduisms" ; -- compound ism_N ;
-lin euphuism_N = mkN "euphuism" "euphuisms" ; -- compound ism_N ;
-lin ventriloquism_N = mkN "ventriloquism" "ventriloquisms" ; -- compound ism_N ;
-lin truism_N = mkN "truism" "truisms" ; -- compound ism_N ;
-lin altruism_N = mkN "altruism" "altruisms" ; -- compound ism_N ;
-lin favism_N = mkN "favism" "favisms" ; -- compound ism_N ;
-lin atavism_N = mkN "atavism" "atavisms" ; -- compound ism_N ;
-lin recidivism_N = mkN "recidivism" "recidivisms" ; -- compound ism_N ;
-lin progressivism_N = mkN "progressivism" "progressivisms" ; -- compound ism_N ;
-lin relativism_N = mkN "relativism" "relativisms" ; -- compound ism_N ;
-lin nativism_N = mkN "nativism" "nativisms" ; -- compound ism_N ;
-lin activism_N = mkN "activism" "activisms" ; -- compound ism_N ;
-lin subjectivism_N = mkN "subjectivism" "subjectivisms" ; -- compound ism_N ;
-lin collectivism_N = mkN "collectivism" "collectivisms" ; -- compound ism_N ;
-lin constructivism_N = mkN "constructivism" "constructivisms" ; -- compound ism_N ;
-lin deconstructivism_N = mkN "deconstructivism" "deconstructivisms" ; -- compound ism_N ;
-lin primitivism_N = mkN "primitivism" "primitivisms" ; -- compound ism_N ;
-lin positivism_N = mkN "positivism" "positivisms" ; -- compound ism_N ;
-lin descriptivism_N = mkN "descriptivism" "descriptivisms" ; -- compound ism_N ;
-lin prescriptivism_N = mkN "prescriptivism" "prescriptivisms" ; -- compound ism_N ;
-lin fauvism_N = mkN "fauvism" "fauvisms" ; -- compound ism_N ;
-lin sexism_N = mkN "sexism" "sexisms" ; -- compound ism_N ;
-lin heterosexism_N = mkN "heterosexism" "heterosexisms" ; -- compound ism_N ;
-lin marxism_N = mkN "marxism" "marxisms" ; -- compound ism_N ;
-lin bruxism_N = mkN "bruxism" "bruxisms" ; -- compound ism_N ;
-lin hobbyism_N = mkN "hobbyism" "hobbyisms" ; -- compound ism_N ;
-lin lobbyism_N = mkN "lobbyism" "lobbyisms" ; -- compound ism_N ;
-lin grundyism_N = mkN "grundyism" "grundyisms" ; -- compound ism_N ;
-lin rowdyism_N = mkN "rowdyism" "rowdyisms" ; -- compound ism_N ;
-lin mccarthyism_N = mkN "mccarthyism" "mccarthyisms" ; -- compound ism_N ;
-lin cronyism_N = mkN "cronyism" "cronyisms" ; -- compound ism_N ;
-lin nazism_N = mkN "nazism" "nazisms" ; -- compound ism_N ;
-lin paracosm_N = mkN "paracosm" "paracosms" ;
-lin macrocosm_N = mkN "macrocosm" "macrocosms" ;
-lin microcosm_N = mkN "microcosm" "microcosms" ;
-lin abysm_N = mkN "abysm" "abysms" ;
-lin cataclysm_N = mkN "cataclysm" "cataclysms" ;
-lin aneurysm_N = mkN "aneurysm" "aneurysms" ;
-lin paroxysm_N = mkN "paroxysm" "paroxysms" ;
-lin meerschaum_N = mkN "meerschaum" "meerschaums" ;
-lin bum_N = mkN "bum" "bums" ;
-lin stumblebum_N = mkN "stumblebum" "stumblebums" ; -- compound bum_N ;
-lin sebum_N = mkN "sebum" "sebums" ; -- compound bum_N ;
-lin album_N = mkN "album" "albums" ; -- compound bum_N ;
-lin 'stamp-album_N' = mkN "stamp-album" "stamp-albums" ; -- compound bum_N ;
-lin guaiacum_N = mkN "guaiacum" "guaiacums" ;
-lin cecum_N = mkN "cecum" "cecums" ;
-lin 'vade-mecum_N' = mkN "vade-mecum" "vade-mecums" ;
-lin angrecum_N = mkN "angrecum" "angrecums" ;
-lin capsicum_N = mkN "capsicum" "capsicums" ;
-lin talcum_N = mkN "talcum" "talcums" ;
-lin cynancum_N = mkN "cynancum" "cynancums" ;
-lin locum_N = mkN "locum" "locums" ;
-lin scum_N = mkN "scum" "scums" ;
-lin molluscum_N = mkN "molluscum" "molluscums" ; -- compound scum_N ;
-lin sedum_N = mkN "sedum" "sedums" ;
-lin pallidum_N = mkN "pallidum" "pallidums" ;
-lin dumdum_N = mkN "dumdum" "dumdums" ;
-lin explicandum_N = mkN "explicandum" "explicandums" ;
-lin memorandum_N = mkN "memorandum" "memorandums" ;
-lin pudendum_N = mkN "pudendum" "pudendums" ;
-lin referendum_N = mkN "referendum" "referendums" ;
-lin alundum_N = mkN "alundum" "alundums" ;
-lin carborundum_N = mkN "carborundum" "carborundums" ;
-lin corundum_N = mkN "corundum" "corundums" ;
-lin athenaeum_N = mkN "athenaeum" "athenaeums" ;
-lin lyceum_N = mkN "lyceum" "lyceums" ;
-lin 'te deum_N' = mkN "te deum" "te deums" ;
-lin geum_N = mkN "geum" "geums" ;
-lin rheum_N = mkN "rheum" "rheums" ;
-lin ileum_N = mkN "ileum" "ileums" ;
-lin linoleum_N = mkN "linoleum" "linoleums" ;
-lin petroleum_N = mkN "petroleum" "petroleums" ;
-lin mausoleum_N = mkN "mausoleum" "mausoleums" ;
-lin succedaneum_N = mkN "succedaneum" "succedaneums" ;
-lin perineum_N = mkN "perineum" "perineums" ;
-lin peritoneum_N = mkN "peritoneum" "peritoneums" ;
-lin mezereum_N = mkN "mezereum" "mezereums" ;
-lin museum_N = mkN "museum" "museums" ;
-lin endosteum_N = mkN "endosteum" "endosteums" ;
-lin periosteum_N = mkN "periosteum" "periosteums" ;
-lin gum_N = mkN "gum" "gums" ;
-lin 'chewing-gum_N' = mkN "chewing-gum" "chewing-gums" ; -- compound gum_N ;
-lin begum_N = mkN "begum" "begums" ; -- compound gum_N ;
-lin hum_N = mkN "hum" "hums" ;
-lin chum_N = mkN "chum" "chums" ; -- notcompound hum_N ;
-lin sorghum_N = mkN "sorghum" "sorghums" ; -- compound hum_N ;
-lin labium_N = mkN "labium" "labiums" ;
-lin cambium_N = mkN "cambium" "cambiums" ;
-lin columbium_N = mkN "columbium" "columbiums" ;
-lin ununbium_N = mkN "ununbium" "ununbiums" ;
-lin niobium_N = mkN "niobium" "niobiums" ;
-lin ammobium_N = mkN "ammobium" "ammobiums" ;
-lin dendrobium_N = mkN "dendrobium" "dendrobiums" ;
-lin erbium_N = mkN "erbium" "erbiums" ;
-lin terbium_N = mkN "terbium" "terbiums" ; -- notcompound erbium_N ;
-lin ytterbium_N = mkN "ytterbium" "ytterbiums" ; -- compound erbium_N ;
-lin euphorbium_N = mkN "euphorbium" "euphorbiums" ;
-lin aecium_N = mkN "aecium" "aeciums" ;
-lin perithecium_N = mkN "perithecium" "peritheciums" ;
-lin apothecium_N = mkN "apothecium" "apotheciums" ;
-lin cleistothecium_N = mkN "cleistothecium" "cleistotheciums" ;
-lin paramecium_N = mkN "paramecium" "parameciums" ;
-lin gynoecium_N = mkN "gynoecium" "gynoeciums" ;
-lin androecium_N = mkN "androecium" "androeciums" ;
-lin gametoecium_N = mkN "gametoecium" "gametoeciums" ;
-lin americium_N = mkN "americium" "americiums" ;
-lin calcium_N = mkN "calcium" "calciums" ;
-lin francium_N = mkN "francium" "franciums" ;
-lin lawrencium_N = mkN "lawrencium" "lawrenciums" ;
-lin caladium_N = mkN "caladium" "caladiums" ;
-lin palladium_N = mkN "palladium" "palladiums" ;
-lin vanadium_N = mkN "vanadium" "vanadiums" ;
-lin radium_N = mkN "radium" "radiums" ;
-lin stadium_N = mkN "stadium" "stadiums" ;
-lin ununquadium_N = mkN "ununquadium" "ununquadiums" ;
-lin medium_N = mkN "medium" "mediums" ;
-lin tedium_N = mkN "tedium" "tediums" ;
-lin rubidium_N = mkN "rubidium" "rubidiums" ;
-lin coccidium_N = mkN "coccidium" "coccidiums" ;
-lin oncidium_N = mkN "oncidium" "oncidiums" ;
-lin glochidium_N = mkN "glochidium" "glochidiums" ;
-lin regnellidium_N = mkN "regnellidium" "regnellidiums" ;
-lin pycnidium_N = mkN "pycnidium" "pycnidiums" ;
-lin ctenidium_N = mkN "ctenidium" "ctenidiums" ;
-lin conidium_N = mkN "conidium" "conidiums" ;
-lin antheridium_N = mkN "antheridium" "antheridiums" ;
-lin peridium_N = mkN "peridium" "peridiums" ;
-lin iridium_N = mkN "iridium" "iridiums" ;
-lin osmiridium_N = mkN "osmiridium" "osmiridiums" ; -- compound iridium_N ;
-lin clostridium_N = mkN "clostridium" "clostridiums" ;
-lin basidium_N = mkN "basidium" "basidiums" ;
-lin hypobasidium_N = mkN "hypobasidium" "hypobasidiums" ; -- compound basidium_N ;
-lin praesidium_N = mkN "praesidium" "praesidiums" ;
-lin presidium_N = mkN "presidium" "presidiums" ;
-lin ommatidium_N = mkN "ommatidium" "ommatidiums" ;
-lin pyxidium_N = mkN "pyxidium" "pyxidiums" ;
-lin scandium_N = mkN "scandium" "scandiums" ;
-lin compendium_N = mkN "compendium" "compendiums" ;
-lin indium_N = mkN "indium" "indiums" ;
-lin odium_N = mkN "odium" "odiums" ;
-lin rhodium_N = mkN "rhodium" "rhodiums" ; -- notcompound odium_N ;
-lin plasmodium_N = mkN "plasmodium" "plasmodiums" ; -- compound odium_N ;
-lin podium_N = mkN "podium" "podiums" ; -- notcompound odium_N ;
-lin parapodium_N = mkN "parapodium" "parapodiums" ; -- compound odium_N ;
-lin stylopodium_N = mkN "stylopodium" "stylopodiums" ; -- compound odium_N ;
-lin sodium_N = mkN "sodium" "sodiums" ; -- notcompound odium_N ;
-lin epicardium_N = mkN "epicardium" "epicardiums" ;
-lin pericardium_N = mkN "pericardium" "pericardiums" ;
-lin endocardium_N = mkN "endocardium" "endocardiums" ;
-lin myocardium_N = mkN "myocardium" "myocardiums" ;
-lin precordium_N = mkN "precordium" "precordiums" ;
-lin rutherfordium_N = mkN "rutherfordium" "rutherfordiums" ;
-lin primordium_N = mkN "primordium" "primordiums" ;
-lin exordium_N = mkN "exordium" "exordiums" ;
-lin florilegium_N = mkN "florilegium" "florilegiums" ;
-lin gynostegium_N = mkN "gynostegium" "gynostegiums" ;
-lin sporangium_N = mkN "sporangium" "sporangiums" ;
-lin megasporangium_N = mkN "megasporangium" "megasporangiums" ; -- compound sporangium_N ;
-lin tetrasporangium_N = mkN "tetrasporangium" "tetrasporangiums" ; -- compound sporangium_N ;
-lin microsporangium_N = mkN "microsporangium" "microsporangiums" ; -- compound sporangium_N ;
-lin leptosporangium_N = mkN "leptosporangium" "leptosporangiums" ; -- compound sporangium_N ;
-lin eusporangium_N = mkN "eusporangium" "eusporangiums" ; -- compound sporangium_N ;
-lin gametangium_N = mkN "gametangium" "gametangiums" ;
-lin seaborgium_N = mkN "seaborgium" "seaborgiums" ;
-lin uropygium_N = mkN "uropygium" "uropygiums" ;
-lin pterygium_N = mkN "pterygium" "pterygiums" ;
-lin brachium_N = mkN "brachium" "brachiums" ;
-lin ischium_N = mkN "ischium" "ischiums" ;
-lin promethium_N = mkN "promethium" "promethiums" ;
-lin lithium_N = mkN "lithium" "lithiums" ;
-lin hypanthium_N = mkN "hypanthium" "hypanthiums" ;
-lin pythium_N = mkN "pythium" "pythiums" ;
-lin nobelium_N = mkN "nobelium" "nobeliums" ;
-lin mycelium_N = mkN "mycelium" "myceliums" ;
-lin promycelium_N = mkN "promycelium" "promyceliums" ; -- compound mycelium_N ;
-lin helium_N = mkN "helium" "heliums" ;
-lin epithelium_N = mkN "epithelium" "epitheliums" ; -- compound helium_N ;
-lin neuroepithelium_N = mkN "neuroepithelium" "neuroepitheliums" ; -- compound helium_N ;
-lin perithelium_N = mkN "perithelium" "peritheliums" ; -- compound helium_N ;
-lin endothelium_N = mkN "endothelium" "endotheliums" ; -- compound helium_N ;
-lin mesothelium_N = mkN "mesothelium" "mesotheliums" ; -- compound helium_N ;
-lin berkelium_N = mkN "berkelium" "berkeliums" ;
-lin ilium_N = mkN "ilium" "iliums" ;
-lin cilium_N = mkN "cilium" "ciliums" ; -- notcompound ilium_N ;
-lin gallium_N = mkN "gallium" "galliums" ;
-lin thallium_N = mkN "thallium" "thalliums" ;
-lin pallium_N = mkN "pallium" "palliums" ;
-lin archipallium_N = mkN "archipallium" "archipalliums" ; -- compound pallium_N ;
-lin neopallium_N = mkN "neopallium" "neopalliums" ; -- compound pallium_N ;
-lin bdellium_N = mkN "bdellium" "bdelliums" ;
-lin verticillium_N = mkN "verticillium" "verticilliums" ;
-lin trillium_N = mkN "trillium" "trilliums" ;
-lin beryllium_N = mkN "beryllium" "berylliums" ;
-lin folium_N = mkN "folium" "foliums" ;
-lin scholium_N = mkN "scholium" "scholiums" ;
-lin thulium_N = mkN "thulium" "thuliums" ;
-lin dictostylium_N = mkN "dictostylium" "dictostyliums" ;
-lin epithalamium_N = mkN "epithalamium" "epithalamiums" ;
-lin cadmium_N = mkN "cadmium" "cadmiums" ;
-lin premium_N = mkN "premium" "premiums" ;
-lin holmium_N = mkN "holmium" "holmiums" ;
-lin encomium_N = mkN "encomium" "encomiums" ;
-lin chromium_N = mkN "chromium" "chromiums" ;
-lin fermium_N = mkN "fermium" "fermiums" ;
-lin trichodesmium_N = mkN "trichodesmium" "trichodesmiums" ;
-lin osmium_N = mkN "osmium" "osmiums" ;
-lin neodymium_N = mkN "neodymium" "neodymiums" ;
-lin praseodymium_N = mkN "praseodymium" "praseodymiums" ;
-lin germanium_N = mkN "germanium" "germaniums" ;
-lin cranium_N = mkN "cranium" "craniums" ;
-lin epicranium_N = mkN "epicranium" "epicraniums" ; -- compound cranium_N ;
-lin endocranium_N = mkN "endocranium" "endocraniums" ; -- compound cranium_N ;
-lin geranium_N = mkN "geranium" "geraniums" ;
-lin uranium_N = mkN "uranium" "uraniums" ;
-lin titanium_N = mkN "titanium" "titaniums" ;
-lin dubnium_N = mkN "dubnium" "dubniums" ;
-lin proscenium_N = mkN "proscenium" "prosceniums" ;
-lin roentgenium_N = mkN "roentgenium" "roentgeniums" ;
-lin rhenium_N = mkN "rhenium" "rheniums" ;
-lin ruthenium_N = mkN "ruthenium" "rutheniums" ;
-lin selenium_N = mkN "selenium" "seleniums" ;
-lin hymenium_N = mkN "hymenium" "hymeniums" ;
-lin hafnium_N = mkN "hafnium" "hafniums" ;
-lin einsteinium_N = mkN "einsteinium" "einsteiniums" ;
-lin delphinium_N = mkN "delphinium" "delphiniums" ;
-lin triclinium_N = mkN "triclinium" "tricliniums" ;
-lin pollinium_N = mkN "pollinium" "polliniums" ;
-lin gadolinium_N = mkN "gadolinium" "gadoliniums" ;
-lin condominium_N = mkN "condominium" "condominiums" ;
-lin aluminium_N = mkN "aluminium" "aluminiums" ;
-lin actinium_N = mkN "actinium" "actiniums" ;
-lin protactinium_N = mkN "protactinium" "protactiniums" ; -- compound actinium_N ;
-lin bimillennium_N = mkN "bimillennium" "bimillenniums" ;
-lin quadrennium_N = mkN "quadrennium" "quadrenniums" ;
-lin quinquennium_N = mkN "quinquennium" "quinquenniums" ;
-lin meconium_N = mkN "meconium" "meconiums" ;
-lin zirconium_N = mkN "zirconium" "zirconiums" ;
-lin syconium_N = mkN "syconium" "syconiums" ;
-lin archegonium_N = mkN "archegonium" "archegoniums" ;
-lin euphonium_N = mkN "euphonium" "euphoniums" ;
-lin polonium_N = mkN "polonium" "poloniums" ;
-lin pandemonium_N = mkN "pandemonium" "pandemoniums" ;
-lin polemonium_N = mkN "polemonium" "polemoniums" ;
-lin ammonium_N = mkN "ammonium" "ammoniums" ;
-lin harmonium_N = mkN "harmonium" "harmoniums" ;
-lin plutonium_N = mkN "plutonium" "plutoniums" ;
-lin diazonium_N = mkN "diazonium" "diazoniums" ;
-lin californium_N = mkN "californium" "californiums" ;
-lin neptunium_N = mkN "neptunium" "neptuniums" ;
-lin opium_N = mkN "opium" "opiums" ;
-lin europium_N = mkN "europium" "europiums" ; -- compound opium_N ;
-lin marsupium_N = mkN "marsupium" "marsupiums" ;
-lin barium_N = mkN "barium" "bariums" ;
-lin columbarium_N = mkN "columbarium" "columbariums" ; -- compound barium_N ;
-lin herbarium_N = mkN "herbarium" "herbariums" ; -- compound barium_N ;
-lin samarium_N = mkN "samarium" "samariums" ;
-lin honorarium_N = mkN "honorarium" "honorariums" ;
-lin terrarium_N = mkN "terrarium" "terrariums" ;
-lin planetarium_N = mkN "planetarium" "planetariums" ;
-lin armamentarium_N = mkN "armamentarium" "armamentariums" ;
-lin aquarium_N = mkN "aquarium" "aquariums" ;
-lin vivarium_N = mkN "vivarium" "vivariums" ;
-lin equilibrium_N = mkN "equilibrium" "equilibriums" ;
-lin disequilibrium_N = mkN "disequilibrium" "disequilibriums" ; -- compound equilibrium_N ;
-lin opprobrium_N = mkN "opprobrium" "opprobriums" ;
-lin manubrium_N = mkN "manubrium" "manubriums" ;
-lin scolopendrium_N = mkN "scolopendrium" "scolopendriums" ;
-lin hypochondrium_N = mkN "hypochondrium" "hypochondriums" ;
-lin cerium_N = mkN "cerium" "ceriums" ;
-lin ferrocerium_N = mkN "ferrocerium" "ferroceriums" ; -- compound cerium_N ;
-lin meitnerium_N = mkN "meitnerium" "meitneriums" ;
-lin imperium_N = mkN "imperium" "imperiums" ;
-lin puerperium_N = mkN "puerperium" "puerperiums" ;
-lin corynebacterium_N = mkN "corynebacterium" "corynebacteriums" ;
-lin nitrobacterium_N = mkN "nitrobacterium" "nitrobacteriums" ;
-lin psalterium_N = mkN "psalterium" "psalteriums" ;
-lin deuterium_N = mkN "deuterium" "deuteriums" ;
-lin bohrium_N = mkN "bohrium" "bohriums" ;
-lin delirium_N = mkN "delirium" "deliriums" ;
-lin phoenicophorium_N = mkN "phoenicophorium" "phoenicophoriums" ;
-lin thorium_N = mkN "thorium" "thoriums" ;
-lin emporium_N = mkN "emporium" "emporiums" ;
-lin sensorium_N = mkN "sensorium" "sensoriums" ;
-lin aspersorium_N = mkN "aspersorium" "aspersoriums" ;
-lin sudatorium_N = mkN "sudatorium" "sudatoriums" ;
-lin crematorium_N = mkN "crematorium" "crematoriums" ;
-lin sanatorium_N = mkN "sanatorium" "sanatoriums" ;
-lin moratorium_N = mkN "moratorium" "moratoriums" ;
-lin praetorium_N = mkN "praetorium" "praetoriums" ;
-lin auditorium_N = mkN "auditorium" "auditoriums" ;
-lin tentorium_N = mkN "tentorium" "tentoriums" ;
-lin scriptorium_N = mkN "scriptorium" "scriptoriums" ;
-lin haustorium_N = mkN "haustorium" "haustoriums" ;
-lin atrium_N = mkN "atrium" "atriums" ;
-lin endometrium_N = mkN "endometrium" "endometriums" ;
-lin myometrium_N = mkN "myometrium" "myometriums" ;
-lin ununtrium_N = mkN "ununtrium" "ununtriums" ;
-lin epigastrium_N = mkN "epigastrium" "epigastriums" ;
-lin yttrium_N = mkN "yttrium" "yttriums" ;
-lin curium_N = mkN "curium" "curiums" ;
-lin perineurium_N = mkN "perineurium" "perineuriums" ;
-lin endoneurium_N = mkN "endoneurium" "endoneuriums" ;
-lin anthurium_N = mkN "anthurium" "anthuriums" ;
-lin tellurium_N = mkN "tellurium" "telluriums" ;
-lin gymnasium_N = mkN "gymnasium" "gymnasiums" ;
-lin cesium_N = mkN "cesium" "cesiums" ;
-lin magnesium_N = mkN "magnesium" "magnesiums" ;
-lin symposium_N = mkN "symposium" "symposiums" ;
-lin dysprosium_N = mkN "dysprosium" "dysprosiums" ;
-lin hassium_N = mkN "hassium" "hassiums" ;
-lin potassium_N = mkN "potassium" "potassiums" ;
-lin indusium_N = mkN "indusium" "indusiums" ;
-lin perimysium_N = mkN "perimysium" "perimysiums" ;
-lin domatium_N = mkN "domatium" "domatiums" ;
-lin darmstadtium_N = mkN "darmstadtium" "darmstadtiums" ;
-lin podetium_N = mkN "podetium" "podetiums" ;
-lin technetium_N = mkN "technetium" "technetiums" ;
-lin lutetium_N = mkN "lutetium" "lutetiums" ;
-lin tritium_N = mkN "tritium" "tritiums" ;
-lin ununpentium_N = mkN "ununpentium" "ununpentiums" ;
-lin dracontium_N = mkN "dracontium" "dracontiums" ;
-lin strontium_N = mkN "strontium" "strontiums" ;
-lin sclerotium_N = mkN "sclerotium" "sclerotiums" ;
-lin nasturtium_N = mkN "nasturtium" "nasturtiums" ;
-lin syncytium_N = mkN "syncytium" "syncytiums" ;
-lin colloquium_N = mkN "colloquium" "colloquiums" ;
-lin mendelevium_N = mkN "mendelevium" "mendeleviums" ;
-lin quadrivium_N = mkN "quadrivium" "quadriviums" ;
-lin trivium_N = mkN "trivium" "triviums" ;
-lin effluvium_N = mkN "effluvium" "effluviums" ;
-lin ununhexium_N = mkN "ununhexium" "ununhexiums" ;
-lin trapezium_N = mkN "trapezium" "trapeziums" ;
-lin oakum_N = mkN "oakum" "oakums" ;
-lin bunkum_N = mkN "bunkum" "bunkums" ;
-lin alum_N = mkN "alum" "alums" ;
-lin tantalum_N = mkN "tantalum" "tantalums" ; -- compound alum_N ;
-lin hoodlum_N = mkN "hoodlum" "hoodlums" ;
-lin hilum_N = mkN "hilum" "hilums" ;
-lin cerebellum_N = mkN "cerebellum" "cerebellums" ;
-lin paleocerebellum_N = mkN "paleocerebellum" "paleocerebellums" ; -- compound cerebellum_N ;
-lin flagellum_N = mkN "flagellum" "flagellums" ;
-lin vellum_N = mkN "vellum" "vellums" ;
-lin spirillum_N = mkN "spirillum" "spirillums" ;
-lin spathiphyllum_N = mkN "spathiphyllum" "spathiphyllums" ;
-lin epiphyllum_N = mkN "epiphyllum" "epiphyllums" ;
-lin doliolum_N = mkN "doliolum" "doliolums" ;
-lin plum_N = mkN "plum" "plums" ;
-lin peplum_N = mkN "peplum" "peplums" ; -- compound plum_N ;
-lin sugarplum_N = mkN "sugarplum" "sugarplums" ; -- compound plum_N ;
-lin slum_N = mkN "slum" "slums" ;
-lin pabulum_N = mkN "pabulum" "pabulums" ;
-lin acetabulum_N = mkN "acetabulum" "acetabulums" ;
-lin infundibulum_N = mkN "infundibulum" "infundibulums" ;
-lin speculum_N = mkN "speculum" "speculums" ;
-lin curriculum_N = mkN "curriculum" "curriculums" ;
-lin reticulum_N = mkN "reticulum" "reticulums" ;
-lin diverticulum_N = mkN "diverticulum" "diverticulums" ;
-lin operculum_N = mkN "operculum" "operculums" ;
-lin pendulum_N = mkN "pendulum" "pendulums" ;
-lin cingulum_N = mkN "cingulum" "cingulums" ;
-lin capitulum_N = mkN "capitulum" "capitulums" ;
-lin phylum_N = mkN "phylum" "phylums" ;
-lin subphylum_N = mkN "subphylum" "subphylums" ; -- compound phylum_N ;
-lin superphylum_N = mkN "superphylum" "superphylums" ; -- compound phylum_N ;
-lin asylum_N = mkN "asylum" "asylums" ;
-lin mum_N = mkN "mum" "mums" ;
-lin helianthemum_N = mkN "helianthemum" "helianthemums" ; -- compound mum_N ;
-lin xeranthemum_N = mkN "xeranthemum" "xeranthemums" ; -- compound mum_N ;
-lin chrysanthemum_N = mkN "chrysanthemum" "chrysanthemums" ; -- compound mum_N ;
-lin extremum_N = mkN "extremum" "extremums" ; -- compound mum_N ;
-lin minimum_N = mkN "minimum" "minimums" ; -- compound mum_N ;
-lin optimum_N = mkN "optimum" "optimums" ; -- compound mum_N ;
-lin maximum_N = mkN "maximum" "maximums" ; -- compound mum_N ;
-lin galbanum_N = mkN "galbanum" "galbanums" ;
-lin labdanum_N = mkN "labdanum" "labdanums" ;
-lin laudanum_N = mkN "laudanum" "laudanums" ;
-lin origanum_N = mkN "origanum" "origanums" ;
-lin lanthanum_N = mkN "lanthanum" "lanthanums" ;
-lin tympanum_N = mkN "tympanum" "tympanums" ;
-lin molybdenum_N = mkN "molybdenum" "molybdenums" ;
-lin duodenum_N = mkN "duodenum" "duodenums" ;
-lin plenum_N = mkN "plenum" "plenums" ;
-lin sangapenum_N = mkN "sangapenum" "sangapenums" ;
-lin sphagnum_N = mkN "sphagnum" "sphagnums" ;
-lin magnum_N = mkN "magnum" "magnums" ;
-lin interregnum_N = mkN "interregnum" "interregnums" ;
-lin lignum_N = mkN "lignum" "lignums" ;
-lin antirrhinum_N = mkN "antirrhinum" "antirrhinums" ;
-lin aluminum_N = mkN "aluminum" "aluminums" ;
-lin platinum_N = mkN "platinum" "platinums" ;
-lin mediastinum_N = mkN "mediastinum" "mediastinums" ;
-lin annum_N = mkN "annum" "annums" ;
-lin eriogonum_N = mkN "eriogonum" "eriogonums" ;
-lin sternum_N = mkN "sternum" "sternums" ;
-lin laburnum_N = mkN "laburnum" "laburnums" ;
-lin jejunum_N = mkN "jejunum" "jejunums" ;
-lin khoum_N = mkN "khoum" "khoums" ;
-lin wampum_N = mkN "wampum" "wampums" ;
-lin rum_N = mkN "rum" "rums" ;
-lin arum_N = mkN "arum" "arums" ; -- notcompound rum_N ;
-lin 'harum-scarum_N' = mkN "harum-scarum" "harum-scarums" ; -- compound rum_N ;
-lin cerebrum_N = mkN "cerebrum" "cerebrums" ; -- compound rum_N ;
-lin ambulacrum_N = mkN "ambulacrum" "ambulacrums" ; -- compound rum_N ;
-lin sacrum_N = mkN "sacrum" "sacrums" ; -- compound rum_N ;
-lin fulcrum_N = mkN "fulcrum" "fulcrums" ; -- compound rum_N ;
-lin scrum_N = mkN "scrum" "scrums" ; -- notcompound rum_N ;
-lin drum_N = mkN "drum" "drums" ; -- notcompound rum_N ;
-lin 'side-drum_N' = mkN "side-drum" "side-drums" ; -- compound rum_N ;
-lin 'snare-drum_N' = mkN "snare-drum" "snare-drums" ; -- compound rum_N ;
-lin kettledrum_N = mkN "kettledrum" "kettledrums" ; -- compound rum_N ;
-lin panjandrum_N = mkN "panjandrum" "panjandrums" ; -- compound rum_N ;
-lin conundrum_N = mkN "conundrum" "conundrums" ; -- compound rum_N ;
-lin eardrum_N = mkN "eardrum" "eardrums" ; -- compound rum_N ;
-lin serum_N = mkN "serum" "serums" ; -- compound rum_N ;
-lin antiserum_N = mkN "antiserum" "antiserums" ; -- compound rum_N ;
-lin thrum_N = mkN "thrum" "thrums" ; -- notcompound rum_N ;
-lin pyrethrum_N = mkN "pyrethrum" "pyrethrums" ; -- compound rum_N ;
-lin decorum_N = mkN "decorum" "decorums" ; -- compound rum_N ;
-lin indecorum_N = mkN "indecorum" "indecorums" ; -- compound rum_N ;
-lin forum_N = mkN "forum" "forums" ; -- compound rum_N ;
-lin variorum_N = mkN "variorum" "variorums" ; -- compound rum_N ;
-lin jorum_N = mkN "jorum" "jorums" ; -- compound rum_N ;
-lin quorum_N = mkN "quorum" "quorums" ; -- compound rum_N ;
-lin electrum_N = mkN "electrum" "electrums" ; -- compound rum_N ;
-lin plectrum_N = mkN "plectrum" "plectrums" ; -- compound rum_N ;
-lin chetrum_N = mkN "chetrum" "chetrums" ; -- compound rum_N ;
-lin ngultrum_N = mkN "ngultrum" "ngultrums" ; -- compound rum_N ;
-lin antrum_N = mkN "antrum" "antrums" ; -- compound rum_N ;
-lin tantrum_N = mkN "tantrum" "tantrums" ; -- compound rum_N ;
-lin centrum_N = mkN "centrum" "centrums" ; -- compound rum_N ;
-lin strum_N = mkN "strum" "strums" ; -- notcompound rum_N ;
-lin hippeastrum_N = mkN "hippeastrum" "hippeastrums" ; -- compound rum_N ;
-lin colostrum_N = mkN "colostrum" "colostrums" ; -- compound rum_N ;
-lin nostrum_N = mkN "nostrum" "nostrums" ; -- compound rum_N ;
-lin rostrum_N = mkN "rostrum" "rostrums" ; -- compound rum_N ;
-lin claustrum_N = mkN "claustrum" "claustrums" ; -- compound rum_N ;
-lin lustrum_N = mkN "lustrum" "lustrums" ; -- compound rum_N ;
-lin durum_N = mkN "durum" "durums" ; -- compound rum_N ;
-lin sum_N = mkN "sum" "sums" ;
-lin abomasum_N = mkN "abomasum" "abomasums" ; -- compound sum_N ;
-lin checksum_N = mkN "checksum" "checksums" ; -- compound sum_N ;
-lin gypsum_N = mkN "gypsum" "gypsums" ; -- compound sum_N ;
-lin dorsum_N = mkN "dorsum" "dorsums" ; -- compound sum_N ;
-lin odontoglossum_N = mkN "odontoglossum" "odontoglossums" ; -- compound sum_N ;
-lin possum_N = mkN "possum" "possums" ; -- compound sum_N ;
-lin opossum_N = mkN "opossum" "opossums" ; -- compound sum_N ;
-lin alyssum_N = mkN "alyssum" "alyssums" ; -- compound sum_N ;
-lin relatum_N = mkN "relatum" "relatums" ;
-lin petrolatum_N = mkN "petrolatum" "petrolatums" ;
-lin ultimatum_N = mkN "ultimatum" "ultimatums" ;
-lin designatum_N = mkN "designatum" "designatums" ;
-lin ageratum_N = mkN "ageratum" "ageratums" ;
-lin denotatum_N = mkN "denotatum" "denotatums" ;
-lin rectum_N = mkN "rectum" "rectums" ;
-lin dictum_N = mkN "dictum" "dictums" ;
-lin sanctum_N = mkN "sanctum" "sanctums" ;
-lin punctum_N = mkN "punctum" "punctums" ;
-lin acetum_N = mkN "acetum" "acetums" ;
-lin gnetum_N = mkN "gnetum" "gnetums" ;
-lin pinetum_N = mkN "pinetum" "pinetums" ;
-lin combretum_N = mkN "combretum" "combretums" ;
-lin arboretum_N = mkN "arboretum" "arboretums" ;
-lin mentum_N = mkN "mentum" "mentums" ;
-lin cementum_N = mkN "cementum" "cementums" ; -- compound mentum_N ;
-lin omentum_N = mkN "omentum" "omentums" ; -- notcompound mentum_N ;
-lin momentum_N = mkN "momentum" "momentums" ; -- compound mentum_N ;
-lin tomentum_N = mkN "tomentum" "tomentums" ; -- compound mentum_N ;
-lin indumentum_N = mkN "indumentum" "indumentums" ; -- compound mentum_N ;
-lin scrotum_N = mkN "scrotum" "scrotums" ;
-lin factotum_N = mkN "factotum" "factotums" ;
-lin teetotum_N = mkN "teetotum" "teetotums" ;
-lin septum_N = mkN "septum" "septums" ;
-lin frustum_N = mkN "frustum" "frustums" ;
-lin sputum_N = mkN "sputum" "sputums" ;
-lin vacuum_N = mkN "vacuum" "vacuums" ;
-lin continuum_N = mkN "continuum" "continuums" ;
-lin menstruum_N = mkN "menstruum" "menstruums" ;
-lin bvm_N = mkN "bvm" "bvms" ;
-lin shawm_N = mkN "shawm" "shawms" ;
-lin sawm_N = mkN "sawm" "sawms" ;
-lin gym_N = mkN "gym" "gyms" ;
-lin pertainym_N = mkN "pertainym" "pertainyms" ;
-lin pseudonym_N = mkN "pseudonym" "pseudonyms" ;
-lin holonym_N = mkN "holonym" "holonyms" ;
-lin homonym_N = mkN "homonym" "homonyms" ;
-lin synonym_N = mkN "synonym" "synonyms" ;
-lin eponym_N = mkN "eponym" "eponyms" ;
-lin troponym_N = mkN "troponym" "troponyms" ;
-lin hyponym_N = mkN "hyponym" "hyponyms" ;
-lin acronym_N = mkN "acronym" "acronyms" ;
-lin meronym_N = mkN "meronym" "meronyms" ;
-lin heteronym_N = mkN "heteronym" "heteronyms" ;
-lin retronym_N = mkN "retronym" "retronyms" ;
-lin metonym_N = mkN "metonym" "metonyms" ;
-lin antonym_N = mkN "antonym" "antonyms" ;
-lin hypernym_N = mkN "hypernym" "hypernyms" ;
-lin empyrean_N = mkN "empyrean" "IRREG" ;
-lin sudden_N = mkN "sudden" "IRREG" ;
-lin 'whipper-in_N' = mkN "whipper-in" "IRREG" ;
-lin welkin_N = mkN "welkin" "IRREG" ;
-lin 'dail eireann_N' = mkN "dail eireann" "IRREG" ;
-lin 'looker-on_N' = mkN "looker-on" "looker-a" ;
-lin criterion_1_N = mkN "criterion" "criteria" ;
-lin 'sine qua non_N' = mkN "sine qua non" "sine qua na" ;
-lin phenomenon_N = mkN "phenomenon" "phenomena" ;
-lin spermatozoon_N = mkN "spermatozoon" "spermatozoa" ;
-lin repairman_N = mkN "repairman" "repairman" ;
-lin man_N = mkN "man" "men" ;
-lin 'ad-man_N' = mkN "ad-man" "ad-men" ; -- compound man_N ;
-lin 'he-man_N' = mkN "he-man" "he-men" ; -- compound man_N ;
-lin 'medicine-man_N' = mkN "medicine-man" "medicine-men" ; -- compound man_N ;
-lin 'g-man_N' = mkN "g-man" "g-men" ; -- compound man_N ;
-lin 'muffin-man_N' = mkN "muffin-man" "muffin-men" ; -- compound man_N ;
-lin 'con-man_N' = mkN "con-man" "con-men" ; -- compound man_N ;
-lin 'barrow-man_N' = mkN "barrow-man" "barrow-men" ; -- compound man_N ;
-lin 'property-man_N' = mkN "property-man" "property-men" ; -- compound man_N ;
-lin seaman_N = mkN "seaman" "seamen" ; -- compound man_N ;
-lin indiaman_N = mkN "indiaman" "indiamen" ; -- compound man_N ;
-lin militiaman_N = mkN "militiaman" "militiamen" ; -- compound man_N ;
-lin cameraman_N = mkN "cameraman" "cameramen" ; -- compound man_N ;
-lin cabman_N = mkN "cabman" "cabmen" ; -- compound man_N ;
-lin headman_N = mkN "headman" "headmen" ; -- compound man_N ;
-lin madman_N = mkN "madman" "madmen" ; -- compound man_N ;
-lin roadman_N = mkN "roadman" "roadmen" ; -- compound man_N ;
-lin freedman_N = mkN "freedman" "freedmen" ; -- compound man_N ;
-lin husbandman_N = mkN "husbandman" "husbandmen" ; -- compound man_N ;
-lin sandman_N = mkN "sandman" "sandmen" ; -- compound man_N ;
-lin bondman_N = mkN "bondman" "bondmen" ; -- compound man_N ;
-lin soundman_N = mkN "soundman" "soundmen" ; -- compound man_N ;
-lin woodman_N = mkN "woodman" "woodmen" ; -- compound man_N ;
-lin placeman_N = mkN "placeman" "placemen" ; -- compound man_N ;
-lin iceman_N = mkN "iceman" "icemen" ; -- compound man_N ;
-lin policeman_N = mkN "policeman" "policemen" ; -- compound man_N ;
-lin serviceman_N = mkN "serviceman" "servicemen" ; -- compound man_N ;
-lin 'ex-serviceman_N' = mkN "ex-serviceman" "ex-servicemen" ; -- compound man_N ;
-lin freeman_N = mkN "freeman" "freemen" ; -- compound man_N ;
-lin committeeman_N = mkN "committeeman" "committeemen" ; -- compound man_N ;
-lin baggageman_N = mkN "baggageman" "baggagemen" ; -- compound man_N ;
-lin liegeman_N = mkN "liegeman" "liegemen" ; -- compound man_N ;
-lin orangeman_N = mkN "orangeman" "orangemen" ; -- compound man_N ;
-lin brakeman_N = mkN "brakeman" "brakemen" ; -- compound man_N ;
-lin stableman_N = mkN "stableman" "stablemen" ; -- compound man_N ;
-lin nobleman_N = mkN "nobleman" "noblemen" ; -- compound man_N ;
-lin muscleman_N = mkN "muscleman" "musclemen" ; -- compound man_N ;
-lin middleman_N = mkN "middleman" "middlemen" ; -- compound man_N ;
-lin rifleman_N = mkN "rifleman" "riflemen" ; -- compound man_N ;
-lin gentleman_N = mkN "gentleman" "gentlemen" ; -- compound man_N ;
-lin cattleman_N = mkN "cattleman" "cattlemen" ; -- compound man_N ;
-lin lineman_N = mkN "lineman" "linemen" ; -- compound man_N ;
-lin fireman_N = mkN "fireman" "firemen" ; -- compound man_N ;
-lin wireman_N = mkN "wireman" "wiremen" ; -- compound man_N ;
-lin foreman_N = mkN "foreman" "foremen" ; -- compound man_N ;
-lin longshoreman_N = mkN "longshoreman" "longshoremen" ; -- compound man_N ;
-lin exciseman_N = mkN "exciseman" "excisemen" ; -- compound man_N ;
-lin horseman_N = mkN "horseman" "horsemen" ; -- compound man_N ;
-lin houseman_N = mkN "houseman" "housemen" ; -- compound man_N ;
-lin minuteman_N = mkN "minuteman" "minutemen" ; -- compound man_N ;
-lin caveman_N = mkN "caveman" "cavemen" ; -- compound man_N ;
-lin gagman_N = mkN "gagman" "gagmen" ; -- compound man_N ;
-lin hangman_N = mkN "hangman" "hangmen" ; -- compound man_N ;
-lin wingman_N = mkN "wingman" "wingmen" ; -- compound man_N ;
-lin strongman_N = mkN "strongman" "strongmen" ; -- compound man_N ;
-lin frogman_N = mkN "frogman" "frogmen" ; -- compound man_N ;
-lin coachman_N = mkN "coachman" "coachmen" ; -- compound man_N ;
-lin sandwichman_N = mkN "sandwichman" "sandwichmen" ; -- compound man_N ;
-lin henchman_N = mkN "henchman" "henchmen" ; -- compound man_N ;
-lin frenchman_N = mkN "frenchman" "frenchmen" ; -- compound man_N ;
-lin churchman_N = mkN "churchman" "churchmen" ; -- compound man_N ;
-lin watchman_N = mkN "watchman" "watchmen" ; -- compound man_N ;
-lin 'night-watchman_N' = mkN "night-watchman" "night-watchmen" ; -- compound man_N ;
-lin pitchman_N = mkN "pitchman" "pitchmen" ; -- compound man_N ;
-lin switchman_N = mkN "switchman" "switchmen" ; -- compound man_N ;
-lin scotchman_N = mkN "scotchman" "scotchmen" ; -- compound man_N ;
-lin dutchman_N = mkN "dutchman" "dutchmen" ; -- compound man_N ;
-lin ploughman_N = mkN "ploughman" "ploughmen" ; -- compound man_N ;
-lin washman_N = mkN "washman" "washmen" ; -- compound man_N ;
-lin freshman_N = mkN "freshman" "freshmen" ; -- compound man_N ;
-lin englishman_N = mkN "englishman" "englishmen" ; -- compound man_N ;
-lin irishman_N = mkN "irishman" "irishmen" ; -- compound man_N ;
-lin welshman_N = mkN "welshman" "welshmen" ; -- compound man_N ;
-lin bushman_N = mkN "bushman" "bushmen" ; -- compound man_N ;
-lin northman_N = mkN "northman" "northmen" ; -- compound man_N ;
-lin milkman_N = mkN "milkman" "milkmen" ; -- compound man_N ;
-lin linkman_N = mkN "linkman" "linkmen" ; -- compound man_N ;
-lin workman_N = mkN "workman" "workmen" ; -- compound man_N ;
-lin signalman_N = mkN "signalman" "signalmen" ; -- compound man_N ;
-lin coalman_N = mkN "coalman" "coalmen" ; -- compound man_N ;
-lin mailman_N = mkN "mailman" "mailmen" ; -- compound man_N ;
-lin councilman_N = mkN "councilman" "councilmen" ; -- compound man_N ;
-lin oilman_N = mkN "oilman" "oilmen" ; -- compound man_N ;
-lin schoolman_N = mkN "schoolman" "schoolmen" ; -- compound man_N ;
-lin patrolman_N = mkN "patrolman" "patrolmen" ; -- compound man_N ;
-lin trainman_N = mkN "trainman" "trainmen" ; -- compound man_N ;
-lin gunman_N = mkN "gunman" "gunmen" ; -- compound man_N ;
-lin yeoman_N = mkN "yeoman" "yeomen" ; -- compound man_N ;
-lin woman_N = mkN "woman" "women" ; -- compound man_N ;
-lin madwoman_N = mkN "madwoman" "madwomen" ; -- compound man_N ;
-lin bondwoman_N = mkN "bondwoman" "bondwomen" ; -- compound man_N ;
-lin policewoman_N = mkN "policewoman" "policewomen" ; -- compound man_N ;
-lin committeewoman_N = mkN "committeewoman" "committeewomen" ; -- compound man_N ;
-lin needlewoman_N = mkN "needlewoman" "needlewomen" ; -- compound man_N ;
-lin gentlewoman_N = mkN "gentlewoman" "gentlewomen" ; -- compound man_N ;
-lin forewoman_N = mkN "forewoman" "forewomen" ; -- compound man_N ;
-lin horsewoman_N = mkN "horsewoman" "horsewomen" ; -- compound man_N ;
-lin frenchwoman_N = mkN "frenchwoman" "frenchwomen" ; -- compound man_N ;
-lin scotchwoman_N = mkN "scotchwoman" "scotchwomen" ; -- compound man_N ;
-lin washwoman_N = mkN "washwoman" "washwomen" ; -- compound man_N ;
-lin englishwoman_N = mkN "englishwoman" "englishwomen" ; -- compound man_N ;
-lin irishwoman_N = mkN "irishwoman" "irishwomen" ; -- compound man_N ;
-lin councilwoman_N = mkN "councilwoman" "councilwomen" ; -- compound man_N ;
-lin beggarwoman_N = mkN "beggarwoman" "beggarwomen" ; -- compound man_N ;
-lin charwoman_N = mkN "charwoman" "charwomen" ; -- compound man_N ;
-lin washerwoman_N = mkN "washerwoman" "washerwomen" ; -- compound man_N ;
-lin airwoman_N = mkN "airwoman" "airwomen" ; -- compound man_N ;
-lin saleswoman_N = mkN "saleswoman" "saleswomen" ; -- compound man_N ;
-lin stateswoman_N = mkN "stateswoman" "stateswomen" ; -- compound man_N ;
-lin kinswoman_N = mkN "kinswoman" "kinswomen" ; -- compound man_N ;
-lin oarswoman_N = mkN "oarswoman" "oarswomen" ; -- compound man_N ;
-lin outdoorswoman_N = mkN "outdoorswoman" "outdoorswomen" ; -- compound man_N ;
-lin congresswoman_N = mkN "congresswoman" "congresswomen" ; -- compound man_N ;
-lin scotswoman_N = mkN "scotswoman" "scotswomen" ; -- compound man_N ;
-lin selectwoman_N = mkN "selectwoman" "selectwomen" ; -- compound man_N ;
-lin laundrywoman_N = mkN "laundrywoman" "laundrywomen" ; -- compound man_N ;
-lin countrywoman_N = mkN "countrywoman" "countrywomen" ; -- compound man_N ;
-lin vestrywoman_N = mkN "vestrywoman" "vestrywomen" ; -- compound man_N ;
-lin chapman_N = mkN "chapman" "chapmen" ; -- compound man_N ;
-lin sheepman_N = mkN "sheepman" "sheepmen" ; -- compound man_N ;
-lin midshipman_N = mkN "midshipman" "midshipmen" ; -- compound man_N ;
-lin barman_N = mkN "barman" "barmen" ; -- compound man_N ;
-lin beggarman_N = mkN "beggarman" "beggarmen" ; -- compound man_N ;
-lin lumberman_N = mkN "lumberman" "lumbermen" ; -- compound man_N ;
-lin alderman_N = mkN "alderman" "aldermen" ; -- compound man_N ;
-lin trencherman_N = mkN "trencherman" "trenchermen" ; -- compound man_N ;
-lin washerman_N = mkN "washerman" "washermen" ; -- compound man_N ;
-lin fisherman_N = mkN "fisherman" "fishermen" ; -- compound man_N ;
-lin weatherman_N = mkN "weatherman" "weathermen" ; -- compound man_N ;
-lin merman_N = mkN "merman" "mermen" ; -- compound man_N ;
-lin newspaperman_N = mkN "newspaperman" "newspapermen" ; -- compound man_N ;
-lin superman_N = mkN "superman" "supermen" ; -- compound man_N ;
-lin waterman_N = mkN "waterman" "watermen" ; -- compound man_N ;
-lin lobsterman_N = mkN "lobsterman" "lobstermen" ; -- compound man_N ;
-lin airman_N = mkN "airman" "airmen" ; -- compound man_N ;
-lin chairman_N = mkN "chairman" "chairmen" ; -- compound man_N ;
-lin anchorman_N = mkN "anchorman" "anchormen" ; -- compound man_N ;
-lin doorman_N = mkN "doorman" "doormen" ; -- compound man_N ;
-lin motorman_N = mkN "motorman" "motormen" ; -- compound man_N ;
-lin seedsman_N = mkN "seedsman" "seedsmen" ; -- compound man_N ;
-lin fieldsman_N = mkN "fieldsman" "fieldsmen" ; -- compound man_N ;
-lin bandsman_N = mkN "bandsman" "bandsmen" ; -- compound man_N ;
-lin trainbandsman_N = mkN "trainbandsman" "trainbandsmen" ; -- compound man_N ;
-lin landsman_N = mkN "landsman" "landsmen" ; -- compound man_N ;
-lin bondsman_N = mkN "bondsman" "bondsmen" ; -- compound man_N ;
-lin roundsman_N = mkN "roundsman" "roundsmen" ; -- compound man_N ;
-lin groundsman_N = mkN "groundsman" "groundsmen" ; -- compound man_N ;
-lin woodsman_N = mkN "woodsman" "woodsmen" ; -- compound man_N ;
-lin backwoodsman_N = mkN "backwoodsman" "backwoodsmen" ; -- compound man_N ;
-lin guardsman_N = mkN "guardsman" "guardsmen" ; -- compound man_N ;
-lin coastguardsman_N = mkN "coastguardsman" "coastguardsmen" ; -- compound man_N ;
-lin herdsman_N = mkN "herdsman" "herdsmen" ; -- compound man_N ;
-lin swordsman_N = mkN "swordsman" "swordsmen" ; -- compound man_N ;
-lin ombudsman_N = mkN "ombudsman" "ombudsmen" ; -- compound man_N ;
-lin tribesman_N = mkN "tribesman" "tribesmen" ; -- compound man_N ;
-lin tradesman_N = mkN "tradesman" "tradesmen" ; -- compound man_N ;
-lin sidesman_N = mkN "sidesman" "sidesmen" ; -- compound man_N ;
-lin plainclothesman_N = mkN "plainclothesman" "plainclothesmen" ; -- compound man_N ;
-lin spokesman_N = mkN "spokesman" "spokesmen" ; -- compound man_N ;
-lin dalesman_N = mkN "dalesman" "dalesmen" ; -- compound man_N ;
-lin salesman_N = mkN "salesman" "salesmen" ; -- compound man_N ;
-lin linesman_N = mkN "linesman" "linesmen" ; -- compound man_N ;
-lin statesman_N = mkN "statesman" "statesmen" ; -- compound man_N ;
-lin cragsman_N = mkN "cragsman" "cragsmen" ; -- compound man_N ;
-lin cracksman_N = mkN "cracksman" "cracksmen" ; -- compound man_N ;
-lin marksman_N = mkN "marksman" "marksmen" ; -- compound man_N ;
-lin helmsman_N = mkN "helmsman" "helmsmen" ; -- compound man_N ;
-lin clansman_N = mkN "clansman" "clansmen" ; -- compound man_N ;
-lin plainsman_N = mkN "plainsman" "plainsmen" ; -- compound man_N ;
-lin kinsman_N = mkN "kinsman" "kinsmen" ; -- compound man_N ;
-lin townsman_N = mkN "townsman" "townsmen" ; -- compound man_N ;
-lin oarsman_N = mkN "oarsman" "oarsmen" ; -- compound man_N ;
-lin steersman_N = mkN "steersman" "steersmen" ; -- compound man_N ;
-lin frontiersman_N = mkN "frontiersman" "frontiersmen" ; -- compound man_N ;
-lin outdoorsman_N = mkN "outdoorsman" "outdoorsmen" ; -- compound man_N ;
-lin lowerclassman_N = mkN "lowerclassman" "lowerclassmen" ; -- compound man_N ;
-lin chessman_N = mkN "chessman" "chessmen" ; -- compound man_N ;
-lin businessman_N = mkN "businessman" "businessmen" ; -- compound man_N ;
-lin congressman_N = mkN "congressman" "congressmen" ; -- compound man_N ;
-lin pressman_N = mkN "pressman" "pressmen" ; -- compound man_N ;
-lin batsman_N = mkN "batsman" "batsmen" ; -- compound man_N ;
-lin raftsman_N = mkN "raftsman" "raftsmen" ; -- compound man_N ;
-lin craftsman_N = mkN "craftsman" "craftsmen" ; -- compound man_N ;
-lin draftsman_N = mkN "draftsman" "draftsmen" ; -- compound man_N ;
-lin yachtsman_N = mkN "yachtsman" "yachtsmen" ; -- compound man_N ;
-lin draughtsman_N = mkN "draughtsman" "draughtsmen" ; -- compound man_N ;
-lin pointsman_N = mkN "pointsman" "pointsmen" ; -- compound man_N ;
-lin huntsman_N = mkN "huntsman" "huntsmen" ; -- compound man_N ;
-lin scotsman_N = mkN "scotsman" "scotsmen" ; -- compound man_N ;
-lin sportsman_N = mkN "sportsman" "sportsmen" ; -- compound man_N ;
-lin busman_N = mkN "busman" "busmen" ; -- compound man_N ;
-lin batman_N = mkN "batman" "batmen" ; -- compound man_N ;
-lin boatman_N = mkN "boatman" "boatmen" ; -- compound man_N ;
-lin selectman_N = mkN "selectman" "selectmen" ; -- compound man_N ;
-lin aircraftman_N = mkN "aircraftman" "aircraftmen" ; -- compound man_N ;
-lin liftman_N = mkN "liftman" "liftmen" ; -- compound man_N ;
-lin pitman_N = mkN "pitman" "pitmen" ; -- compound man_N ;
-lin merchantman_N = mkN "merchantman" "merchantmen" ; -- compound man_N ;
-lin footman_N = mkN "footman" "footmen" ; -- compound man_N ;
-lin potman_N = mkN "potman" "potmen" ; -- compound man_N ;
-lin harvestman_N = mkN "harvestman" "harvestmen" ; -- compound man_N ;
-lin postman_N = mkN "postman" "postmen" ; -- compound man_N ;
-lin dustman_N = mkN "dustman" "dustmen" ; -- compound man_N ;
-lin lawman_N = mkN "lawman" "lawmen" ; -- compound man_N ;
-lin bowman_N = mkN "bowman" "bowmen" ; -- compound man_N ;
-lin longbowman_N = mkN "longbowman" "longbowmen" ; -- compound man_N ;
-lin cowman_N = mkN "cowman" "cowmen" ; -- compound man_N ;
-lin showman_N = mkN "showman" "showmen" ; -- compound man_N ;
-lin plowman_N = mkN "plowman" "plowmen" ; -- compound man_N ;
-lin snowman_N = mkN "snowman" "snowmen" ; -- compound man_N ;
-lin layman_N = mkN "layman" "laymen" ; -- compound man_N ;
-lin highwayman_N = mkN "highwayman" "highwaymen" ; -- compound man_N ;
-lin railwayman_N = mkN "railwayman" "railwaymen" ; -- compound man_N ;
-lin handyman_N = mkN "handyman" "handymen" ; -- compound man_N ;
-lin bogeyman_N = mkN "bogeyman" "bogeymen" ; -- compound man_N ;
-lin journeyman_N = mkN "journeyman" "journeymen" ; -- compound man_N ;
-lin clergyman_N = mkN "clergyman" "clergymen" ; -- compound man_N ;
-lin tallyman_N = mkN "tallyman" "tallymen" ; -- compound man_N ;
-lin laundryman_N = mkN "laundryman" "laundrymen" ; -- compound man_N ;
-lin nurseryman_N = mkN "nurseryman" "nurserymen" ; -- compound man_N ;
-lin liveryman_N = mkN "liveryman" "liverymen" ; -- compound man_N ;
-lin deliveryman_N = mkN "deliveryman" "deliverymen" ; -- compound man_N ;
-lin dairyman_N = mkN "dairyman" "dairymen" ; -- compound man_N ;
-lin cavalryman_N = mkN "cavalryman" "cavalrymen" ; -- compound man_N ;
-lin quarryman_N = mkN "quarryman" "quarrymen" ; -- compound man_N ;
-lin ferryman_N = mkN "ferryman" "ferrymen" ; -- compound man_N ;
-lin poultryman_N = mkN "poultryman" "poultrymen" ; -- compound man_N ;
-lin infantryman_N = mkN "infantryman" "infantrymen" ; -- compound man_N ;
-lin pantryman_N = mkN "pantryman" "pantrymen" ; -- compound man_N ;
-lin countryman_N = mkN "countryman" "countrymen" ; -- compound man_N ;
-lin vestryman_N = mkN "vestryman" "vestrymen" ; -- compound man_N ;
-lin juryman_N = mkN "juryman" "jurymen" ; -- compound man_N ;
-lin yen_N = mkN "yen" "yen" ;
-lin beduin_N = mkN "beduin" "beduin" ;
-lin bedouin_N = mkN "bedouin" "bedouin" ;
-lin 'hanger-on_N' = mkN "hanger-on" "hangers-on" ;
-lin salmon_N = mkN "salmon" "salmon" ;
-lin 'rock-salmon_N' = mkN "rock-salmon" "rock-salmon" ; -- compound salmon_N ;
-lin bison_N = mkN "bison" "bison" ;
-lin ban_N = mkN "ban" "bans" ;
-lin turban_N = mkN "turban" "turbans" ; -- compound ban_N ;
-lin cuban_N = mkN "cuban" "cubans" ; -- compound ban_N ;
-lin can_N = mkN "can" "cans" ;
-lin 'garbage-can_N' = mkN "garbage-can" "garbage-cans" ; -- compound can_N ;
-lin 'watering-can_N' = mkN "watering-can" "watering-cans" ; -- compound can_N ;
-lin 'ash-can_N' = mkN "ash-can" "ash-cans" ; -- compound can_N ;
-lin osteostracan_N = mkN "osteostracan" "osteostracans" ; -- compound can_N ;
-lin heterostracan_N = mkN "heterostracan" "heterostracans" ; -- compound can_N ;
-lin moroccan_N = mkN "moroccan" "moroccans" ; -- compound can_N ;
-lin pecan_N = mkN "pecan" "pecans" ; -- compound can_N ;
-lin ashcan_N = mkN "ashcan" "ashcans" ; -- compound can_N ;
-lin jamaican_N = mkN "jamaican" "jamaicans" ; -- compound can_N ;
-lin mozambican_N = mkN "mozambican" "mozambicans" ; -- compound can_N ;
-lin barbican_N = mkN "barbican" "barbicans" ; -- compound can_N ;
-lin publican_N = mkN "publican" "publicans" ; -- compound can_N ;
-lin republican_N = mkN "republican" "republicans" ; -- compound can_N ;
-lin pelican_N = mkN "pelican" "pelicans" ; -- compound can_N ;
-lin anglican_N = mkN "anglican" "anglicans" ; -- compound can_N ;
-lin pemmican_N = mkN "pemmican" "pemmicans" ; -- compound can_N ;
-lin dominican_N = mkN "dominican" "dominicans" ; -- compound can_N ;
-lin 'costa rican_N' = mkN "costa rican" "costa ricans" ; -- compound can_N ;
-lin American_N = mkN "American" "Americans" ; -- compound can_N ;
-lin 'Afro-American_N' = mkN "Afro-American" "Afro-Americans" ; -- compound can_N ;
-lin African_N = mkN "African" "Africans" ; -- compound can_N ;
-lin vatican_N = mkN "vatican" "vaticans" ; -- compound can_N ;
-lin mexican_N = mkN "mexican" "mexicans" ; -- compound can_N ;
-lin oilcan_N = mkN "oilcan" "oilcans" ; -- compound can_N ;
-lin cancan_N = mkN "cancan" "cancans" ; -- compound can_N ;
-lin scan_N = mkN "scan" "scans" ; -- notcompound can_N ;
-lin madagascan_N = mkN "madagascan" "madagascans" ; -- compound can_N ;
-lin franciscan_N = mkN "franciscan" "franciscans" ; -- compound can_N ;
-lin toucan_N = mkN "toucan" "toucans" ; -- compound can_N ;
-lin ramadan_N = mkN "ramadan" "ramadans" ;
-lin muhammadan_N = mkN "muhammadan" "muhammadans" ;
-lin mohammedan_N = mkN "mohammedan" "mohammedans" ;
-lin sedan_N = mkN "sedan" "sedans" ;
-lin harridan_N = mkN "harridan" "harridans" ;
-lin ugandan_N = mkN "ugandan" "ugandans" ;
-lin rwandan_N = mkN "rwandan" "rwandans" ;
-lin bermudan_N = mkN "bermudan" "bermudans" ;
-lin paean_N = mkN "paean" "paeans" ;
-lin bean_N = mkN "bean" "beans" ;
-lin 'cacao-bean_N' = mkN "cacao-bean" "cacao-beans" ; -- compound bean_N ;
-lin 'kidney-bean_N' = mkN "kidney-bean" "kidney-beans" ; -- compound bean_N ;
-lin butterbean_N = mkN "butterbean" "butterbeans" ; -- compound bean_N ;
-lin cetacean_N = mkN "cetacean" "cetaceans" ;
-lin testacean_N = mkN "testacean" "testaceans" ;
-lin crustacean_N = mkN "crustacean" "crustaceans" ;
-lin larvacean_N = mkN "larvacean" "larvaceans" ;
-lin ocean_N = mkN "ocean" "oceans" ;
-lin dean_N = mkN "dean" "deans" ;
-lin proboscidean_N = mkN "proboscidean" "proboscideans" ; -- compound dean_N ;
-lin gean_N = mkN "gean" "geans" ;
-lin kampuchean_N = mkN "kampuchean" "kampucheans" ;
-lin jean_N = mkN "jean" "jeans" ;
-lin lean_N = mkN "lean" "leans" ;
-lin clean_N = mkN "clean" "cleans" ; -- notcompound lean_N ;
-lin 'spring-clean_N' = mkN "spring-clean" "spring-cleans" ; -- compound lean_N ;
-lin chilean_N = mkN "chilean" "chileans" ; -- compound lean_N ;
-lin tyrolean_N = mkN "tyrolean" "tyroleans" ; -- compound lean_N ;
-lin mean_N = mkN "mean" "means" ;
-lin platyctenean_N = mkN "platyctenean" "platycteneans" ;
-lin guinean_N = mkN "guinean" "guineans" ;
-lin European_N = mkN "European" "Europeans" ;
-lin zairean_N = mkN "zairean" "zaireans" ;
-lin salvadorean_N = mkN "salvadorean" "salvadoreans" ;
-lin korean_N = mkN "korean" "koreans" ;
-lin Singaporean_N = mkN "Singaporean" "Singaporeans" ;
-lin eritrean_N = mkN "eritrean" "eritreans" ;
-lin epicurean_N = mkN "epicurean" "epicureans" ;
-lin Zimbabwean_N = mkN "Zimbabwean" "Zimbabweans" ;
-lin fan_N = mkN "fan" "fans" ;
-lin lagan_N = mkN "lagan" "lagans" ;
-lin balagan_N = mkN "balagan" "balagans" ; -- compound lagan_N ;
-lin pagan_N = mkN "pagan" "pagans" ;
-lin suffragan_N = mkN "suffragan" "suffragans" ;
-lin vegan_N = mkN "vegan" "vegans" ;
-lin balbriggan_N = mkN "balbriggan" "balbriggans" ;
-lin toboggan_N = mkN "toboggan" "toboggans" ;
-lin cardigan_N = mkN "cardigan" "cardigans" ;
-lin hooligan_N = mkN "hooligan" "hooligans" ;
-lin ptarmigan_N = mkN "ptarmigan" "ptarmigans" ;
-lin longan_N = mkN "longan" "longans" ;
-lin tongan_N = mkN "tongan" "tongans" ;
-lin hogan_N = mkN "hogan" "hogans" ;
-lin slogan_N = mkN "slogan" "slogans" ;
-lin brogan_N = mkN "brogan" "brogans" ;
-lin organ_N = mkN "organ" "organs" ;
-lin 'hand-organ_N' = mkN "hand-organ" "hand-organs" ; -- compound organ_N ;
-lin 'pipe-organ_N' = mkN "pipe-organ" "pipe-organs" ; -- compound organ_N ;
-lin 'sense-organ_N' = mkN "sense-organ" "sense-organs" ; -- compound organ_N ;
-lin 'mouth-organ_N' = mkN "mouth-organ" "mouth-organs" ; -- compound organ_N ;
-lin ortygan_N = mkN "ortygan" "ortygans" ;
-lin sabahan_N = mkN "sabahan" "sabahans" ;
-lin yataghan_N = mkN "yataghan" "yataghans" ;
-lin Afghan_N = mkN "Afghan" "Afghans" ;
-lin khan_N = mkN "khan" "khans" ;
-lin astrakhan_N = mkN "astrakhan" "astrakhans" ; -- compound khan_N ;
-lin tryptophan_N = mkN "tryptophan" "tryptophans" ;
-lin orphan_N = mkN "orphan" "orphans" ;
-lin levallorphan_N = mkN "levallorphan" "levallorphans" ; -- compound orphan_N ;
-lin leviathan_N = mkN "leviathan" "leviathans" ;
-lin elizabethan_N = mkN "elizabethan" "elizabethans" ;
-lin ghanaian_N = mkN "ghanaian" "ghanaians" ;
-lin fabian_N = mkN "fabian" "fabians" ;
-lin Arabian_N = mkN "Arabian" "Arabians" ;
-lin 'saudi arabian_N' = mkN "saudi arabian" "saudi arabians" ;
-lin amphibian_N = mkN "amphibian" "amphibians" ;
-lin Namibian_N = mkN "Namibian" "Namibians" ;
-lin gambian_N = mkN "gambian" "gambians" ;
-lin zambian_N = mkN "zambian" "zambians" ;
-lin colombian_N = mkN "colombian" "colombians" ;
-lin lesbian_N = mkN "lesbian" "lesbians" ;
-lin magician_N = mkN "magician" "magicians" ;
-lin logician_N = mkN "logician" "logicians" ;
-lin academician_N = mkN "academician" "academicians" ;
-lin technician_N = mkN "technician" "technicians" ;
-lin clinician_N = mkN "clinician" "clinicians" ;
-lin rhetorician_N = mkN "rhetorician" "rhetoricians" ;
-lin pediatrician_N = mkN "pediatrician" "pediatricians" ;
-lin geriatrician_N = mkN "geriatrician" "geriatricians" ;
-lin patrician_N = mkN "patrician" "patricians" ;
-lin electrician_N = mkN "electrician" "electricians" ;
-lin econometrician_N = mkN "econometrician" "econometricians" ;
-lin trigonometrician_N = mkN "trigonometrician" "trigonometricians" ;
-lin obstetrician_N = mkN "obstetrician" "obstetricians" ;
-lin musician_N = mkN "musician" "musicians" ;
-lin physician_N = mkN "physician" "physicians" ;
-lin mathematician_N = mkN "mathematician" "mathematicians" ;
-lin practician_N = mkN "practician" "practicians" ;
-lin tactician_N = mkN "tactician" "tacticians" ;
-lin dialectician_N = mkN "dialectician" "dialecticians" ;
-lin esthetician_N = mkN "esthetician" "estheticians" ;
-lin dietician_N = mkN "dietician" "dieticians" ;
-lin arithmetician_N = mkN "arithmetician" "arithmeticians" ;
-lin cosmetician_N = mkN "cosmetician" "cosmeticians" ;
-lin phonetician_N = mkN "phonetician" "phoneticians" ;
-lin theoretician_N = mkN "theoretician" "theoreticians" ;
-lin politician_N = mkN "politician" "politicians" ;
-lin optician_N = mkN "optician" "opticians" ;
-lin mortician_N = mkN "mortician" "morticians" ;
-lin statistician_N = mkN "statistician" "statisticians" ;
-lin diagnostician_N = mkN "diagnostician" "diagnosticians" ;
-lin acoustician_N = mkN "acoustician" "acousticians" ;
-lin beautician_N = mkN "beautician" "beauticians" ;
-lin confucian_N = mkN "confucian" "confucians" ;
-lin barbadian_N = mkN "barbadian" "barbadians" ;
-lin arcadian_N = mkN "arcadian" "arcadians" ;
-lin trinidadian_N = mkN "trinidadian" "trinidadians" ;
-lin chadian_N = mkN "chadian" "chadians" ;
-lin Canadian_N = mkN "Canadian" "Canadians" ;
-lin grenadian_N = mkN "grenadian" "grenadians" ;
-lin radian_N = mkN "radian" "radians" ;
-lin steradian_N = mkN "steradian" "steradians" ; -- compound radian_N ;
-lin milliradian_N = mkN "milliradian" "milliradians" ; -- compound radian_N ;
-lin microradian_N = mkN "microradian" "microradians" ; -- compound radian_N ;
-lin tragedian_N = mkN "tragedian" "tragedians" ;
-lin median_N = mkN "median" "medians" ;
-lin comedian_N = mkN "comedian" "comedians" ; -- compound median_N ;
-lin ascidian_N = mkN "ascidian" "ascidians" ;
-lin meridian_N = mkN "meridian" "meridians" ;
-lin sarcosporidian_N = mkN "sarcosporidian" "sarcosporidians" ;
-lin haplosporidian_N = mkN "haplosporidian" "haplosporidians" ;
-lin haemosporidian_N = mkN "haemosporidian" "haemosporidians" ;
-lin microsporidian_N = mkN "microsporidian" "microsporidians" ;
-lin myxosporidian_N = mkN "myxosporidian" "myxosporidians" ;
-lin obsidian_N = mkN "obsidian" "obsidians" ;
-lin actinomyxidian_N = mkN "actinomyxidian" "actinomyxidians" ;
-lin Indian_N = mkN "Indian" "Indians" ;
-lin 'anglo-indian_N' = mkN "anglo-indian" "anglo-indians" ;
-lin burundian_N = mkN "burundian" "burundians" ;
-lin cambodian_N = mkN "cambodian" "cambodians" ;
-lin custodian_N = mkN "custodian" "custodians" ;
-lin guardian_N = mkN "guardian" "guardians" ;
-lin edwardian_N = mkN "edwardian" "edwardians" ;
-lin plebeian_N = mkN "plebeian" "plebeians" ;
-lin bruneian_N = mkN "bruneian" "bruneians" ;
-lin ruffian_N = mkN "ruffian" "ruffians" ;
-lin collegian_N = mkN "collegian" "collegians" ;
-lin norwegian_N = mkN "norwegian" "norwegians" ;
-lin glaswegian_N = mkN "glaswegian" "glaswegians" ;
-lin belgian_N = mkN "belgian" "belgians" ;
-lin theologian_N = mkN "theologian" "theologians" ;
-lin georgian_N = mkN "georgian" "georgians" ;
-lin crossopterygian_N = mkN "crossopterygian" "crossopterygians" ;
-lin ornithischian_N = mkN "ornithischian" "ornithischians" ;
-lin saurischian_N = mkN "saurischian" "saurischians" ;
-lin corinthian_N = mkN "corinthian" "corinthians" ;
-lin fijian_N = mkN "fijian" "fijians" ;
-lin Czechoslovakian_N = mkN "Czechoslovakian" "Czechoslovakians" ;
-lin sarawakian_N = mkN "sarawakian" "sarawakians" ;
-lin sesquipedalian_N = mkN "sesquipedalian" "sesquipedalians" ;
-lin malian_N = mkN "malian" "malians" ;
-lin Somalian_N = mkN "Somalian" "Somalians" ; -- compound malian_N ;
-lin episcopalian_N = mkN "episcopalian" "episcopalians" ;
-lin australian_N = mkN "australian" "australians" ;
-lin Italian_N = mkN "Italian" "Italians" ;
-lin liverpudlian_N = mkN "liverpudlian" "liverpudlians" ;
-lin carnelian_N = mkN "carnelian" "carnelians" ;
-lin cornelian_N = mkN "cornelian" "cornelians" ;
-lin caecilian_N = mkN "caecilian" "caecilians" ;
-lin sicilian_N = mkN "sicilian" "sicilians" ;
-lin reptilian_N = mkN "reptilian" "reptilians" ;
-lin civilian_N = mkN "civilian" "civilians" ;
-lin Brazilian_N = mkN "Brazilian" "Brazilians" ;
-lin vaudevillian_N = mkN "vaudevillian" "vaudevillians" ;
-lin mongolian_N = mkN "mongolian" "mongolians" ;
-lin bahamian_N = mkN "bahamian" "bahamians" ;
-lin bohemian_N = mkN "bohemian" "bohemians" ;
-lin simian_N = mkN "simian" "simians" ;
-lin prosimian_N = mkN "prosimian" "prosimians" ; -- compound simian_N ;
-lin antinomian_N = mkN "antinomian" "antinomians" ;
-lin banian_N = mkN "banian" "banians" ;
-lin Albanian_N = mkN "Albanian" "Albanians" ; -- notcompound banian_N ;
-lin Jordanian_N = mkN "Jordanian" "Jordanians" ;
-lin panamanian_N = mkN "panamanian" "panamanians" ;
-lin Romanian_N = mkN "Romanian" "Romanians" ;
-lin Iranian_N = mkN "Iranian" "Iranians" ;
-lin mauritanian_N = mkN "mauritanian" "mauritanians" ;
-lin tanzanian_N = mkN "tanzanian" "tanzanians" ;
-lin athenian_N = mkN "athenian" "athenians" ;
-lin Armenian_N = mkN "Armenian" "Armenians" ;
-lin slovenian_N = mkN "slovenian" "slovenians" ;
-lin peridinian_N = mkN "peridinian" "peridinians" ;
-lin sarcodinian_N = mkN "sarcodinian" "sarcodinians" ;
-lin argentinian_N = mkN "argentinian" "argentinians" ;
-lin palestinian_N = mkN "palestinian" "palestinians" ;
-lin Macedonian_N = mkN "Macedonian" "Macedonians" ;
-lin 'sierra leonian_N' = mkN "sierra leonian" "sierra leonians" ;
-lin tobagonian_N = mkN "tobagonian" "tobagonians" ;
-lin gorgonian_N = mkN "gorgonian" "gorgonians" ;
-lin chelonian_N = mkN "chelonian" "chelonians" ;
-lin cameroonian_N = mkN "cameroonian" "cameroonians" ;
-lin newtonian_N = mkN "newtonian" "newtonians" ;
-lin oxonian_N = mkN "oxonian" "oxonians" ;
-lin californian_N = mkN "californian" "californians" ;
-lin mancunian_N = mkN "mancunian" "mancunians" ;
-lin olympian_N = mkN "olympian" "olympians" ;
-lin ethiopian_N = mkN "ethiopian" "ethiopians" ;
-lin thespian_N = mkN "thespian" "thespians" ;
-lin barbarian_N = mkN "barbarian" "barbarians" ;
-lin abecedarian_N = mkN "abecedarian" "abecedarians" ;
-lin Bulgarian_N = mkN "Bulgarian" "Bulgarians" ;
-lin vulgarian_N = mkN "vulgarian" "vulgarians" ;
-lin Hungarian_N = mkN "Hungarian" "Hungarians" ;
-lin radiolarian_N = mkN "radiolarian" "radiolarians" ;
-lin sertularian_N = mkN "sertularian" "sertularians" ;
-lin grammarian_N = mkN "grammarian" "grammarians" ;
-lin planarian_N = mkN "planarian" "planarians" ;
-lin nonagenarian_N = mkN "nonagenarian" "nonagenarians" ;
-lin septuagenarian_N = mkN "septuagenarian" "septuagenarians" ;
-lin sexagenarian_N = mkN "sexagenarian" "sexagenarians" ;
-lin octogenarian_N = mkN "octogenarian" "octogenarians" ;
-lin millenarian_N = mkN "millenarian" "millenarians" ;
-lin centenarian_N = mkN "centenarian" "centenarians" ;
-lin valetudinarian_N = mkN "valetudinarian" "valetudinarians" ;
-lin latitudinarian_N = mkN "latitudinarian" "latitudinarians" ;
-lin platitudinarian_N = mkN "platitudinarian" "platitudinarians" ; -- notcompound latitudinarian_N ;
-lin disciplinarian_N = mkN "disciplinarian" "disciplinarians" ;
-lin seminarian_N = mkN "seminarian" "seminarians" ;
-lin veterinarian_N = mkN "veterinarian" "veterinarians" ;
-lin librarian_N = mkN "librarian" "librarians" ;
-lin contrarian_N = mkN "contrarian" "contrarians" ;
-lin sabbatarian_N = mkN "sabbatarian" "sabbatarians" ;
-lin sectarian_N = mkN "sectarian" "sectarians" ;
-lin vegetarian_N = mkN "vegetarian" "vegetarians" ;
-lin proletarian_N = mkN "proletarian" "proletarians" ;
-lin egalitarian_N = mkN "egalitarian" "egalitarians" ;
-lin totalitarian_N = mkN "totalitarian" "totalitarians" ;
-lin equalitarian_N = mkN "equalitarian" "equalitarians" ;
-lin utilitarian_N = mkN "utilitarian" "utilitarians" ;
-lin humanitarian_N = mkN "humanitarian" "humanitarians" ;
-lin unitarian_N = mkN "unitarian" "unitarians" ;
-lin authoritarian_N = mkN "authoritarian" "authoritarians" ;
-lin necessitarian_N = mkN "necessitarian" "necessitarians" ;
-lin gibraltarian_N = mkN "gibraltarian" "gibraltarians" ;
-lin parliamentarian_N = mkN "parliamentarian" "parliamentarians" ;
-lin rotarian_N = mkN "rotarian" "rotarians" ;
-lin libertarian_N = mkN "libertarian" "libertarians" ;
-lin antiquarian_N = mkN "antiquarian" "antiquarians" ;
-lin liberian_N = mkN "liberian" "liberians" ;
-lin nigerian_N = mkN "nigerian" "nigerians" ;
-lin algerian_N = mkN "algerian" "algerians" ;
-lin megatherian_N = mkN "megatherian" "megatherians" ;
-lin metatherian_N = mkN "metatherian" "metatherians" ;
-lin prototherian_N = mkN "prototherian" "prototherians" ;
-lin valerian_N = mkN "valerian" "valerians" ;
-lin presbyterian_N = mkN "presbyterian" "presbyterians" ;
-lin ecuadorian_N = mkN "ecuadorian" "ecuadorians" ;
-lin infusorian_N = mkN "infusorian" "infusorians" ;
-lin salutatorian_N = mkN "salutatorian" "salutatorians" ;
-lin valedictorian_N = mkN "valedictorian" "valedictorians" ;
-lin victorian_N = mkN "victorian" "victorians" ;
-lin historian_N = mkN "historian" "historians" ;
-lin lancastrian_N = mkN "lancastrian" "lancastrians" ;
-lin pedestrian_N = mkN "pedestrian" "pedestrians" ;
-lin equestrian_N = mkN "equestrian" "equestrians" ;
-lin austrian_N = mkN "austrian" "austrians" ;
-lin saurian_N = mkN "saurian" "saurians" ;
-lin durian_N = mkN "durian" "durians" ;
-lin tellurian_N = mkN "tellurian" "tellurians" ;
-lin Syrian_N = mkN "Syrian" "Syrians" ;
-lin Asian_N = mkN "Asian" "Asians" ;
-lin caucasian_N = mkN "caucasian" "caucasians" ;
-lin eurasian_N = mkN "eurasian" "eurasians" ;
-lin indonesian_N = mkN "indonesian" "indonesians" ;
-lin tunisian_N = mkN "tunisian" "tunisians" ;
-lin parisian_N = mkN "parisian" "parisians" ;
-lin ceratopsian_N = mkN "ceratopsian" "ceratopsians" ;
-lin Persian_N = mkN "Persian" "Persians" ;
-lin hessian_N = mkN "hessian" "hessians" ;
-lin Russian_N = mkN "Russian" "Russians" ;
-lin Prussian_N = mkN "Prussian" "Prussians" ;
-lin malaysian_N = mkN "malaysian" "malaysians" ;
-lin dalmatian_N = mkN "dalmatian" "dalmatians" ;
-lin montserratian_N = mkN "montserratian" "montserratians" ;
-lin alsatian_N = mkN "alsatian" "alsatians" ;
-lin haitian_N = mkN "haitian" "haitians" ;
-lin tahitian_N = mkN "tahitian" "tahitians" ;
-lin mauritian_N = mkN "mauritian" "mauritians" ;
-lin dietitian_N = mkN "dietitian" "dietitians" ;
-lin gentian_N = mkN "gentian" "gentians" ;
-lin laotian_N = mkN "laotian" "laotians" ;
-lin egyptian_N = mkN "egyptian" "egyptians" ;
-lin martian_N = mkN "martian" "martians" ;
-lin christian_N = mkN "christian" "christians" ;
-lin fustian_N = mkN "fustian" "fustians" ;
-lin djiboutian_N = mkN "djiboutian" "djiboutians" ;
-lin lilliputian_N = mkN "lilliputian" "lilliputians" ;
-lin shavian_N = mkN "shavian" "shavians" ;
-lin yugoslavian_N = mkN "yugoslavian" "yugoslavians" ;
-lin Scandinavian_N = mkN "Scandinavian" "Scandinavians" ;
-lin bolivian_N = mkN "bolivian" "bolivians" ;
-lin antediluvian_N = mkN "antediluvian" "antediluvians" ;
-lin postdiluvian_N = mkN "postdiluvian" "postdiluvians" ;
-lin peruvian_N = mkN "peruvian" "peruvians" ;
-lin malawian_N = mkN "malawian" "malawians" ;
-lin trojan_N = mkN "trojan" "trojans" ;
-lin 'sri lankan_N' = mkN "sri lankan" "sri lankans" ;
-lin acanthocephalan_N = mkN "acanthocephalan" "acanthocephalans" ;
-lin holocephalan_N = mkN "holocephalan" "holocephalans" ;
-lin melphalan_N = mkN "melphalan" "melphalans" ;
-lin guatemalan_N = mkN "guatemalan" "guatemalans" ;
-lin catalan_N = mkN "catalan" "catalans" ;
-lin clan_N = mkN "clan" "clans" ;
-lin gamelan_N = mkN "gamelan" "gamelans" ;
-lin venezuelan_N = mkN "venezuelan" "venezuelans" ;
-lin flan_N = mkN "flan" "flans" ;
-lin raglan_N = mkN "raglan" "raglans" ;
-lin anguillan_N = mkN "anguillan" "anguillans" ;
-lin collembolan_N = mkN "collembolan" "collembolans" ;
-lin angolan_N = mkN "angolan" "angolans" ;
-lin solan_N = mkN "solan" "solans" ;
-lin ortolan_N = mkN "ortolan" "ortolans" ;
-lin plan_N = mkN "plan" "plans" ;
-lin 'ground-plan_N' = mkN "ground-plan" "ground-plans" ; -- compound plan_N ;
-lin courlan_N = mkN "courlan" "courlans" ;
-lin élan_N = mkN "élan" "élans" ;
-lin shaman_N = mkN "shaman" "shamans" ;
-lin yardman_N = mkN "yardman" "yardmans" ;
-lin fugleman_N = mkN "fugleman" "fuglemans" ;
-lin posseman_N = mkN "posseman" "possemans" ;
-lin bagman_N = mkN "bagman" "bagmans" ;
-lin swagman_N = mkN "swagman" "swagmans" ;
-lin brahman_N = mkN "brahman" "brahmans" ;
-lin caiman_N = mkN "caiman" "caimans" ;
-lin liman_N = mkN "liman" "limans" ;
-lin ceriman_N = mkN "ceriman" "cerimans" ;
-lin stockman_N = mkN "stockman" "stockmans" ;
-lin pullman_N = mkN "pullman" "pullmans" ;
-lin dolman_N = mkN "dolman" "dolmans" ;
-lin dragoman_N = mkN "dragoman" "dragomans" ;
-lin roman_N = mkN "roman" "romans" ;
-lin soman_N = mkN "soman" "somans" ;
-lin ottoman_N = mkN "ottoman" "ottomans" ;
-lin spokeswoman_N = mkN "spokeswoman" "spokeswomans" ;
-lin frontierswoman_N = mkN "frontierswoman" "frontierswomans" ;
-lin businesswoman_N = mkN "businesswoman" "businesswomans" ;
-lin newswoman_N = mkN "newswoman" "newswomans" ;
-lin assemblywoman_N = mkN "assemblywoman" "assemblywomans" ;
-lin German_N = mkN "German" "Germans" ;
-lin timberman_N = mkN "timberman" "timbermans" ;
-lin lighterman_N = mkN "lighterman" "lightermans" ;
-lin letterman_N = mkN "letterman" "lettermans" ;
-lin norman_N = mkN "norman" "normans" ;
-lin gasman_N = mkN "gasman" "gasmans" ;
-lin beadsman_N = mkN "beadsman" "beadsmans" ;
-lin headsman_N = mkN "headsman" "headsmans" ;
-lin talisman_N = mkN "talisman" "talismans" ;
-lin groomsman_N = mkN "groomsman" "groomsmans" ;
-lin aircraftsman_N = mkN "aircraftsman" "aircraftsmans" ;
-lin human_N = mkN "human" "humans" ;
-lin crewman_N = mkN "crewman" "crewmans" ;
-lin aircrewman_N = mkN "aircrewman" "aircrewmans" ; -- compound crewman_N ;
-lin cayman_N = mkN "cayman" "caymans" ;
-lin assemblyman_N = mkN "assemblyman" "assemblymans" ;
-lin artilleryman_N = mkN "artilleryman" "artillerymans" ;
-lin everyman_N = mkN "everyman" "everymans" ;
-lin nan_N = mkN "nan" "nans" ;
-lin finnan_N = mkN "finnan" "finnans" ; -- compound nan_N ;
-lin koan_N = mkN "koan" "koans" ;
-lin loan_N = mkN "loan" "loans" ;
-lin moan_N = mkN "moan" "moans" ;
-lin samoan_N = mkN "samoan" "samoans" ; -- compound moan_N ;
-lin roan_N = mkN "roan" "roans" ;
-lin groan_N = mkN "groan" "groans" ; -- notcompound roan_N ;
-lin metazoan_N = mkN "metazoan" "metazoans" ;
-lin scyphozoan_N = mkN "scyphozoan" "scyphozoans" ;
-lin anthozoan_N = mkN "anthozoan" "anthozoans" ;
-lin heliozoan_N = mkN "heliozoan" "heliozoans" ;
-lin hydrozoan_N = mkN "hydrozoan" "hydrozoans" ;
-lin sporozoan_N = mkN "sporozoan" "sporozoans" ;
-lin protozoan_N = mkN "protozoan" "protozoans" ;
-lin leucocytozoan_N = mkN "leucocytozoan" "leucocytozoans" ;
-lin bryozoan_N = mkN "bryozoan" "bryozoans" ;
-lin pan_N = mkN "pan" "pans" ;
-lin 'warming-pan_N' = mkN "warming-pan" "warming-pans" ; -- compound pan_N ;
-lin 'dripping-pan_N' = mkN "dripping-pan" "dripping-pans" ; -- compound pan_N ;
-lin 'frying-pan_N' = mkN "frying-pan" "frying-pans" ; -- compound pan_N ;
-lin 'ash-pan_N' = mkN "ash-pan" "ash-pans" ; -- compound pan_N ;
-lin 'fry-pan_N' = mkN "fry-pan" "fry-pans" ; -- compound pan_N ;
-lin 'patty-pan_N' = mkN "patty-pan" "patty-pans" ; -- compound pan_N ;
-lin japan_N = mkN "japan" "japans" ; -- compound pan_N ;
-lin bedpan_N = mkN "bedpan" "bedpans" ; -- compound pan_N ;
-lin skidpan_N = mkN "skidpan" "skidpans" ; -- compound pan_N ;
-lin saucepan_N = mkN "saucepan" "saucepans" ; -- compound pan_N ;
-lin trepan_N = mkN "trepan" "trepans" ; -- compound pan_N ;
-lin flunitrazepan_N = mkN "flunitrazepan" "flunitrazepans" ; -- compound pan_N ;
-lin dishpan_N = mkN "dishpan" "dishpans" ; -- compound pan_N ;
-lin taipan_N = mkN "taipan" "taipans" ; -- compound pan_N ;
-lin marzipan_N = mkN "marzipan" "marzipans" ; -- compound pan_N ;
-lin jampan_N = mkN "jampan" "jampans" ; -- compound pan_N ;
-lin sampan_N = mkN "sampan" "sampans" ; -- compound pan_N ;
-lin tragopan_N = mkN "tragopan" "tragopans" ; -- compound pan_N ;
-lin tarpan_N = mkN "tarpan" "tarpans" ; -- compound pan_N ;
-lin kirpan_N = mkN "kirpan" "kirpans" ; -- compound pan_N ;
-lin span_N = mkN "span" "spans" ; -- notcompound pan_N ;
-lin 'life-span_N' = mkN "life-span" "life-spans" ; -- compound pan_N ;
-lin wingspan_N = mkN "wingspan" "wingspans" ; -- compound pan_N ;
-lin saltpan_N = mkN "saltpan" "saltpans" ; -- compound pan_N ;
-lin dustpan_N = mkN "dustpan" "dustpans" ; -- compound pan_N ;
-lin 'also-ran_N' = mkN "also-ran" "also-rans" ;
-lin catamaran_N = mkN "catamaran" "catamarans" ;
-lin trimaran_N = mkN "trimaran" "trimarans" ;
-lin saran_N = mkN "saran" "sarans" ;
-lin bran_N = mkN "bran" "brans" ;
-lin cran_N = mkN "cran" "crans" ;
-lin lutheran_N = mkN "lutheran" "lutherans" ;
-lin moneran_N = mkN "moneran" "monerans" ;
-lin veteran_N = mkN "veteran" "veterans" ;
-lin mecopteran_N = mkN "mecopteran" "mecopterans" ;
-lin onychophoran_N = mkN "onychophoran" "onychophorans" ;
-lin koran_N = mkN "koran" "korans" ;
-lin andorran_N = mkN "andorran" "andorrans" ;
-lin sporran_N = mkN "sporran" "sporrans" ;
-lin sumatran_N = mkN "sumatran" "sumatrans" ;
-lin pesantran_N = mkN "pesantran" "pesantrans" ;
-lin honduran_N = mkN "honduran" "hondurans" ;
-lin furan_N = mkN "furan" "furans" ;
-lin nitrofuran_N = mkN "nitrofuran" "nitrofurans" ; -- compound furan_N ;
-lin benzofuran_N = mkN "benzofuran" "benzofurans" ; -- compound furan_N ;
-lin proturan_N = mkN "proturan" "proturans" ;
-lin brachyuran_N = mkN "brachyuran" "brachyurans" ;
-lin pulasan_N = mkN "pulasan" "pulasans" ;
-lin diocesan_N = mkN "diocesan" "diocesans" ;
-lin parmesan_N = mkN "parmesan" "parmesans" ;
-lin courtesan_N = mkN "courtesan" "courtesans" ;
-lin artisan_N = mkN "artisan" "artisans" ;
-lin partisan_N = mkN "partisan" "partisans" ; -- notcompound artisan_N ;
-lin nonpartisan_N = mkN "nonpartisan" "nonpartisans" ; -- compound artisan_N ;
-lin tan_N = mkN "tan" "tans" ;
-lin charlatan_N = mkN "charlatan" "charlatans" ; -- compound tan_N ;
-lin ratan_N = mkN "ratan" "ratans" ; -- compound tan_N ;
-lin satan_N = mkN "satan" "satans" ; -- compound tan_N ;
-lin Tibetan_N = mkN "Tibetan" "Tibetans" ; -- compound tan_N ;
-lin caftan_N = mkN "caftan" "caftans" ; -- compound tan_N ;
-lin shaitan_N = mkN "shaitan" "shaitans" ; -- compound tan_N ;
-lin neapolitan_N = mkN "neapolitan" "neapolitans" ; -- compound tan_N ;
-lin cosmopolitan_N = mkN "cosmopolitan" "cosmopolitans" ; -- compound tan_N ;
-lin metropolitan_N = mkN "metropolitan" "metropolitans" ; -- compound tan_N ;
-lin samaritan_N = mkN "samaritan" "samaritans" ; -- compound tan_N ;
-lin puritan_N = mkN "puritan" "puritans" ; -- compound tan_N ;
-lin titan_N = mkN "titan" "titans" ; -- compound tan_N ;
-lin anatotitan_N = mkN "anatotitan" "anatotitans" ; -- compound tan_N ;
-lin sultan_N = mkN "sultan" "sultans" ; -- compound tan_N ;
-lin fantan_N = mkN "fantan" "fantans" ; -- compound tan_N ;
-lin constantan_N = mkN "constantan" "constantans" ; -- compound tan_N ;
-lin suntan_N = mkN "suntan" "suntans" ; -- compound tan_N ;
-lin spartan_N = mkN "spartan" "spartans" ; -- compound tan_N ;
-lin valsartan_N = mkN "valsartan" "valsartans" ; -- compound tan_N ;
-lin tartan_N = mkN "tartan" "tartans" ; -- compound tan_N ;
-lin quartan_N = mkN "quartan" "quartans" ; -- compound tan_N ;
-lin sacristan_N = mkN "sacristan" "sacristans" ; -- compound tan_N ;
-lin capstan_N = mkN "capstan" "capstans" ; -- compound tan_N ;
-lin harmattan_N = mkN "harmattan" "harmattans" ; -- compound tan_N ;
-lin rattan_N = mkN "rattan" "rattans" ; -- compound tan_N ;
-lin 'orang-utan_N' = mkN "orang-utan" "orang-utans" ; -- compound tan_N ;
-lin rambutan_N = mkN "rambutan" "rambutans" ; -- compound tan_N ;
-lin orangutan_N = mkN "orangutan" "orangutans" ; -- compound tan_N ;
-lin 'orang-outan_N' = mkN "orang-outan" "orang-outans" ; -- compound tan_N ;
-lin guan_N = mkN "guan" "guans" ;
-lin nicaraguan_N = mkN "nicaraguan" "nicaraguans" ; -- compound guan_N ;
-lin taguan_N = mkN "taguan" "taguans" ; -- compound guan_N ;
-lin antiguan_N = mkN "antiguan" "antiguans" ; -- compound guan_N ;
-lin papuan_N = mkN "papuan" "papuans" ;
-lin nauruan_N = mkN "nauruan" "nauruans" ;
-lin yuan_N = mkN "yuan" "yuans" ;
-lin van_N = mkN "van" "vans" ;
-lin 'luggage-van_N' = mkN "luggage-van" "luggage-vans" ; -- compound van_N ;
-lin caravan_N = mkN "caravan" "caravans" ; -- compound van_N ;
-lin divan_N = mkN "divan" "divans" ; -- compound van_N ;
-lin minivan_N = mkN "minivan" "minivans" ; -- compound van_N ;
-lin sylvan_N = mkN "sylvan" "sylvans" ; -- compound van_N ;
-lin cordovan_N = mkN "cordovan" "cordovans" ; -- compound van_N ;
-lin jawan_N = mkN "jawan" "jawans" ;
-lin rowan_N = mkN "rowan" "rowans" ;
-lin swan_N = mkN "swan" "swans" ;
-lin texan_N = mkN "texan" "texans" ;
-lin malayan_N = mkN "malayan" "malayans" ;
-lin paraguayan_N = mkN "paraguayan" "paraguayans" ;
-lin uruguayan_N = mkN "uruguayan" "uruguayans" ;
-lin libyan_N = mkN "libyan" "libyans" ;
-lin cyan_N = mkN "cyan" "cyans" ;
-lin wesleyan_N = mkN "wesleyan" "wesleyans" ;
-lin banyan_N = mkN "banyan" "banyans" ;
-lin kenyan_N = mkN "kenyan" "kenyans" ;
-lin minyan_N = mkN "minyan" "minyans" ;
-lin aryan_N = mkN "aryan" "aryans" ;
-lin en_N = mkN "en" "ens" ;
-lin hallowe'en_N = mkN "hallowe'en" "hallowe'ens" ; -- compound en_N ;
-lin ben_N = mkN "ben" "bens" ; -- notcompound en_N ;
-lin saracen_N = mkN "saracen" "saracens" ; -- compound en_N ;
-lin den_N = mkN "den" "dens" ; -- notcompound en_N ;
-lin 'gambling-den_N' = mkN "gambling-den" "gambling-dens" ; -- compound en_N ;
-lin 'opium-den_N' = mkN "opium-den" "opium-dens" ; -- compound en_N ;
-lin menhaden_N = mkN "menhaden" "menhadens" ; -- compound en_N ;
-lin midden_N = mkN "midden" "middens" ; -- compound en_N ;
-lin pudden_N = mkN "pudden" "puddens" ; -- compound en_N ;
-lin maiden_N = mkN "maiden" "maidens" ; -- compound en_N ;
-lin gulden_N = mkN "gulden" "guldens" ; -- compound en_N ;
-lin linden_N = mkN "linden" "lindens" ; -- compound en_N ;
-lin wiesenboden_N = mkN "wiesenboden" "wiesenbodens" ; -- compound en_N ;
-lin garden_N = mkN "garden" "gardens" ; -- compound en_N ;
-lin 'tea-garden_N' = mkN "tea-garden" "tea-gardens" ; -- compound en_N ;
-lin 'roof-garden_N' = mkN "roof-garden" "roof-gardens" ; -- compound en_N ;
-lin 'rock-garden_N' = mkN "rock-garden" "rock-gardens" ; -- compound en_N ;
-lin 'hop-garden_N' = mkN "hop-garden" "hop-gardens" ; -- compound en_N ;
-lin 'market-garden_N' = mkN "market-garden" "market-gardens" ; -- compound en_N ;
-lin warden_N = mkN "warden" "wardens" ; -- compound en_N ;
-lin churchwarden_N = mkN "churchwarden" "churchwardens" ; -- compound en_N ;
-lin burden_N = mkN "burden" "burdens" ; -- compound en_N ;
-lin overburden_N = mkN "overburden" "overburdens" ; -- compound en_N ;
-lin hoyden_N = mkN "hoyden" "hoydens" ; -- compound en_N ;
-lin 'might-have-been_N' = mkN "might-have-been" "might-have-beens" ; -- compound en_N ;
-lin 'has-been_N' = mkN "has-been" "has-beens" ; -- compound en_N ;
-lin shebeen_N = mkN "shebeen" "shebeens" ; -- compound en_N ;
-lin dudeen_N = mkN "dudeen" "dudeens" ; -- compound en_N ;
-lin sheen_N = mkN "sheen" "sheens" ; -- compound en_N ;
-lin keen_N = mkN "keen" "keens" ; -- compound en_N ;
-lin palankeen_N = mkN "palankeen" "palankeens" ; -- compound en_N ;
-lin nankeen_N = mkN "nankeen" "nankeens" ; -- compound en_N ;
-lin colleen_N = mkN "colleen" "colleens" ; -- compound en_N ;
-lin spleen_N = mkN "spleen" "spleens" ; -- compound en_N ;
-lin peen_N = mkN "peen" "peens" ; -- compound en_N ;
-lin screen_N = mkN "screen" "screens" ; -- compound en_N ;
-lin 'smoke-screen_N' = mkN "smoke-screen" "smoke-screens" ; -- compound en_N ;
-lin windscreen_N = mkN "windscreen" "windscreens" ; -- compound en_N ;
-lin silkscreen_N = mkN "silkscreen" "silkscreens" ; -- compound en_N ;
-lin sunscreen_N = mkN "sunscreen" "sunscreens" ; -- compound en_N ;
-lin green_N = mkN "green" "greens" ; -- compound en_N ;
-lin 'pea-green_N' = mkN "pea-green" "pea-greens" ; -- compound en_N ;
-lin 'sea-green_N' = mkN "sea-green" "sea-greens" ; -- compound en_N ;
-lin 'sage-green_N' = mkN "sage-green" "sage-greens" ; -- compound en_N ;
-lin 'bowling-green_N' = mkN "bowling-green" "bowling-greens" ; -- compound en_N ;
-lin 'putting-green_N' = mkN "putting-green" "putting-greens" ; -- compound en_N ;
-lin tendergreen_N = mkN "tendergreen" "tendergreens" ; -- compound en_N ;
-lin wintergreen_N = mkN "wintergreen" "wintergreens" ; -- compound en_N ;
-lin evergreen_N = mkN "evergreen" "evergreens" ; -- compound en_N ;
-lin moreen_N = mkN "moreen" "moreens" ; -- compound en_N ;
-lin tureen_N = mkN "tureen" "tureens" ; -- compound en_N ;
-lin unseen_N = mkN "unseen" "unseens" ; -- compound en_N ;
-lin lateen_N = mkN "lateen" "lateens" ; -- compound en_N ;
-lin sateen_N = mkN "sateen" "sateens" ; -- compound en_N ;
-lin preteen_N = mkN "preteen" "preteens" ; -- compound en_N ;
-lin velveteen_N = mkN "velveteen" "velveteens" ; -- compound en_N ;
-lin canteen_N = mkN "canteen" "canteens" ; -- compound en_N ;
-lin poteen_N = mkN "poteen" "poteens" ; -- compound en_N ;
-lin mangosteen_N = mkN "mangosteen" "mangosteens" ; -- compound en_N ;
-lin queen_N = mkN "queen" "queens" ; -- compound en_N ;
-lin 'go-between_N' = mkN "go-between" "go-betweens" ; -- compound en_N ;
-lin fedayeen_N = mkN "fedayeen" "fedayeens" ; -- compound en_N ;
-lin fen_N = mkN "fen" "fens" ; -- notcompound en_N ;
-lin flurbiprofen_N = mkN "flurbiprofen" "flurbiprofens" ; -- compound en_N ;
-lin fenoprofen_N = mkN "fenoprofen" "fenoprofens" ; -- compound en_N ;
-lin ketoprofen_N = mkN "ketoprofen" "ketoprofens" ; -- compound en_N ;
-lin ibuprofen_N = mkN "ibuprofen" "ibuprofens" ; -- compound en_N ;
-lin gen_N = mkN "gen" "gens" ; -- notcompound en_N ;
-lin collagen_N = mkN "collagen" "collagens" ; -- compound en_N ;
-lin mutagen_N = mkN "mutagen" "mutagens" ; -- compound en_N ;
-lin antigen_N = mkN "antigen" "antigens" ; -- compound en_N ;
-lin glycogen_N = mkN "glycogen" "glycogens" ; -- compound en_N ;
-lin pathogen_N = mkN "pathogen" "pathogens" ; -- compound en_N ;
-lin halogen_N = mkN "halogen" "halogens" ; -- compound en_N ;
-lin chromogen_N = mkN "chromogen" "chromogens" ; -- compound en_N ;
-lin methanogen_N = mkN "methanogen" "methanogens" ; -- compound en_N ;
-lin cyanogen_N = mkN "cyanogen" "cyanogens" ; -- compound en_N ;
-lin carcinogen_N = mkN "carcinogen" "carcinogens" ; -- compound en_N ;
-lin hallucinogen_N = mkN "hallucinogen" "hallucinogens" ; -- compound en_N ;
-lin urobilinogen_N = mkN "urobilinogen" "urobilinogens" ; -- compound en_N ;
-lin plasminogen_N = mkN "plasminogen" "plasminogens" ; -- compound en_N ;
-lin fibrinogen_N = mkN "fibrinogen" "fibrinogens" ; -- compound en_N ;
-lin pepsinogen_N = mkN "pepsinogen" "pepsinogens" ; -- compound en_N ;
-lin trypsinogen_N = mkN "trypsinogen" "trypsinogens" ; -- compound en_N ;
-lin agglutinogen_N = mkN "agglutinogen" "agglutinogens" ; -- compound en_N ;
-lin isoagglutinogen_N = mkN "isoagglutinogen" "isoagglutinogens" ; -- compound en_N ;
-lin immunogen_N = mkN "immunogen" "immunogens" ; -- compound en_N ;
-lin acrogen_N = mkN "acrogen" "acrogens" ; -- compound en_N ;
-lin androgen_N = mkN "androgen" "androgens" ; -- compound en_N ;
-lin hydrogen_N = mkN "hydrogen" "hydrogens" ; -- compound en_N ;
-lin nitrogen_N = mkN "nitrogen" "nitrogens" ; -- compound en_N ;
-lin goitrogen_N = mkN "goitrogen" "goitrogens" ; -- compound en_N ;
-lin estrogen_N = mkN "estrogen" "estrogens" ; -- compound en_N ;
-lin pyrogen_N = mkN "pyrogen" "pyrogens" ; -- compound en_N ;
-lin teratogen_N = mkN "teratogen" "teratogens" ; -- compound en_N ;
-lin lactogen_N = mkN "lactogen" "lactogens" ; -- compound en_N ;
-lin mitogen_N = mkN "mitogen" "mitogens" ; -- compound en_N ;
-lin cryogen_N = mkN "cryogen" "cryogens" ; -- compound en_N ;
-lin allergen_N = mkN "allergen" "allergens" ; -- compound en_N ;
-lin morgen_N = mkN "morgen" "morgens" ; -- compound en_N ;
-lin roentgen_N = mkN "roentgen" "roentgens" ; -- compound en_N ;
-lin röntgen_N = mkN "röntgen" "röntgens" ; -- compound en_N ;
-lin oxygen_N = mkN "oxygen" "oxygens" ; -- compound en_N ;
-lin hen_N = mkN "hen" "hens" ; -- notcompound en_N ;
-lin 'brood-hen_N' = mkN "brood-hen" "brood-hens" ; -- compound en_N ;
-lin peahen_N = mkN "peahen" "peahens" ; -- compound en_N ;
-lin lichen_N = mkN "lichen" "lichens" ; -- compound en_N ;
-lin ascolichen_N = mkN "ascolichen" "ascolichens" ; -- compound en_N ;
-lin basidiolichen_N = mkN "basidiolichen" "basidiolichens" ; -- compound en_N ;
-lin groschen_N = mkN "groschen" "groschens" ; -- compound en_N ;
-lin kitchen_N = mkN "kitchen" "kitchens" ; -- compound en_N ;
-lin 'soup-kitchen_N' = mkN "soup-kitchen" "soup-kitchens" ; -- compound en_N ;
-lin pfannkuchen_N = mkN "pfannkuchen" "pfannkuchens" ; -- compound en_N ;
-lin acetaminophen_N = mkN "acetaminophen" "acetaminophens" ; -- compound en_N ;
-lin hyphen_N = mkN "hyphen" "hyphens" ; -- compound en_N ;
-lin waterhen_N = mkN "waterhen" "waterhens" ; -- compound en_N ;
-lin moorhen_N = mkN "moorhen" "moorhens" ; -- compound en_N ;
-lin then_N = mkN "then" "thens" ; -- notcompound en_N ;
-lin heathen_N = mkN "heathen" "heathens" ; -- compound en_N ;
-lin burthen_N = mkN "burthen" "burthens" ; -- compound en_N ;
-lin greyhen_N = mkN "greyhen" "greyhens" ; -- compound en_N ;
-lin lien_N = mkN "lien" "liens" ; -- compound en_N ;
-lin alien_N = mkN "alien" "aliens" ; -- compound en_N ;
-lin mien_N = mkN "mien" "miens" ; -- compound en_N ;
-lin nigerien_N = mkN "nigerien" "nigeriens" ; -- compound en_N ;
-lin ken_N = mkN "ken" "kens" ; -- notcompound en_N ;
-lin bracken_N = mkN "bracken" "brackens" ; -- compound en_N ;
-lin chicken_N = mkN "chicken" "chickens" ; -- compound en_N ;
-lin token_N = mkN "token" "tokens" ; -- compound en_N ;
-lin 'love-token_N' = mkN "love-token" "love-tokens" ; -- compound en_N ;
-lin magdalen_N = mkN "magdalen" "magdalens" ; -- compound en_N ;
-lin glen_N = mkN "glen" "glens" ; -- notcompound en_N ;
-lin pollen_N = mkN "pollen" "pollens" ; -- compound en_N ;
-lin cyclamen_N = mkN "cyclamen" "cyclamens" ; -- compound en_N ;
-lin flamen_N = mkN "flamen" "flamens" ; -- compound en_N ;
-lin foramen_N = mkN "foramen" "foramens" ; -- compound en_N ;
-lin stamen_N = mkN "stamen" "stamens" ; -- compound en_N ;
-lin putamen_N = mkN "putamen" "putamens" ; -- compound en_N ;
-lin examen_N = mkN "examen" "examens" ; -- compound en_N ;
-lin semen_N = mkN "semen" "semens" ; -- compound en_N ;
-lin specimen_N = mkN "specimen" "specimens" ; -- compound en_N ;
-lin regimen_N = mkN "regimen" "regimens" ; -- compound en_N ;
-lin dolmen_N = mkN "dolmen" "dolmens" ; -- compound en_N ;
-lin omen_N = mkN "omen" "omens" ; -- compound en_N ;
-lin abdomen_N = mkN "abdomen" "abdomens" ; -- compound en_N ;
-lin praenomen_N = mkN "praenomen" "praenomens" ; -- compound en_N ;
-lin agnomen_N = mkN "agnomen" "agnomens" ; -- compound en_N ;
-lin cognomen_N = mkN "cognomen" "cognomens" ; -- compound en_N ;
-lin albumen_N = mkN "albumen" "albumens" ; -- compound en_N ;
-lin acumen_N = mkN "acumen" "acumens" ; -- compound en_N ;
-lin catechumen_N = mkN "catechumen" "catechumens" ; -- compound en_N ;
-lin lumen_N = mkN "lumen" "lumens" ; -- compound en_N ;
-lin numen_N = mkN "numen" "numens" ; -- compound en_N ;
-lin rumen_N = mkN "rumen" "rumens" ; -- compound en_N ;
-lin cerumen_N = mkN "cerumen" "cerumens" ; -- compound en_N ;
-lin bitumen_N = mkN "bitumen" "bitumens" ; -- compound en_N ;
-lin hymen_N = mkN "hymen" "hymens" ; -- compound en_N ;
-lin linen_N = mkN "linen" "linens" ; -- compound en_N ;
-lin 'table-linen_N' = mkN "table-linen" "table-linens" ; -- compound en_N ;
-lin pen_N = mkN "pen" "pens" ; -- notcompound en_N ;
-lin 'fountain-pen_N' = mkN "fountain-pen" "fountain-pens" ; -- compound en_N ;
-lin 'ballpoint-pen_N' = mkN "ballpoint-pen" "ballpoint-pens" ; -- compound en_N ;
-lin ballpen_N = mkN "ballpen" "ballpens" ; -- compound en_N ;
-lin bullpen_N = mkN "bullpen" "bullpens" ; -- compound en_N ;
-lin open_N = mkN "open" "opens" ; -- compound en_N ;
-lin aspen_N = mkN "aspen" "aspens" ; -- compound en_N ;
-lin playpen_N = mkN "playpen" "playpens" ; -- compound en_N ;
-lin bren_N = mkN "bren" "brens" ; -- notcompound en_N ;
-lin brethren_N = mkN "brethren" "brethrens" ; -- compound en_N ;
-lin siren_N = mkN "siren" "sirens" ; -- compound en_N ;
-lin barren_N = mkN "barren" "barrens" ; -- compound en_N ;
-lin warren_N = mkN "warren" "warrens" ; -- compound en_N ;
-lin 'rabbit-warren_N' = mkN "rabbit-warren" "rabbit-warrens" ; -- compound en_N ;
-lin wren_N = mkN "wren" "wrens" ; -- notcompound en_N ;
-lin sen_N = mkN "sen" "sens" ; -- notcompound en_N ;
-lin spiegeleisen_N = mkN "spiegeleisen" "spiegeleisens" ; -- compound en_N ;
-lin greisen_N = mkN "greisen" "greisens" ; -- compound en_N ;
-lin samisen_N = mkN "samisen" "samisens" ; -- compound en_N ;
-lin bunsen_N = mkN "bunsen" "bunsens" ; -- compound en_N ;
-lin chosen_N = mkN "chosen" "chosens" ; -- compound en_N ;
-lin lederhosen_N = mkN "lederhosen" "lederhosens" ; -- compound en_N ;
-lin delicatessen_N = mkN "delicatessen" "delicatessens" ; -- compound en_N ;
-lin drusen_N = mkN "drusen" "drusens" ; -- compound en_N ;
-lin platen_N = mkN "platen" "platens" ; -- compound en_N ;
-lin sauerbraten_N = mkN "sauerbraten" "sauerbratens" ; -- compound en_N ;
-lin kindergarten_N = mkN "kindergarten" "kindergartens" ; -- compound en_N ;
-lin marten_N = mkN "marten" "martens" ; -- compound en_N ;
-lin tungsten_N = mkN "tungsten" "tungstens" ; -- compound en_N ;
-lin batten_N = mkN "batten" "battens" ; -- compound en_N ;
-lin latten_N = mkN "latten" "lattens" ; -- compound en_N ;
-lin patten_N = mkN "patten" "pattens" ; -- compound en_N ;
-lin kitten_N = mkN "kitten" "kittens" ; -- compound en_N ;
-lin mitten_N = mkN "mitten" "mittens" ; -- compound en_N ;
-lin gluten_N = mkN "gluten" "glutens" ; -- compound en_N ;
-lin heaven_N = mkN "heaven" "heavens" ; -- compound en_N ;
-lin leaven_N = mkN "leaven" "leavens" ; -- compound en_N ;
-lin haven_N = mkN "haven" "havens" ; -- compound en_N ;
-lin raven_N = mkN "raven" "ravens" ; -- compound en_N ;
-lin craven_N = mkN "craven" "cravens" ; -- compound en_N ;
-lin even_N = mkN "even" "evens" ; -- compound en_N ;
-lin given_N = mkN "given" "givens" ; -- compound en_N ;
-lin oven_N = mkN "oven" "ovens" ; -- compound en_N ;
-lin 'gas-oven_N' = mkN "gas-oven" "gas-ovens" ; -- compound en_N ;
-lin coven_N = mkN "coven" "covens" ; -- compound en_N ;
-lin sloven_N = mkN "sloven" "slovens" ; -- compound en_N ;
-lin wen_N = mkN "wen" "wens" ; -- notcompound en_N ;
-lin woodwaxen_N = mkN "woodwaxen" "woodwaxens" ; -- compound en_N ;
-lin vixen_N = mkN "vixen" "vixens" ; -- compound en_N ;
-lin naproxen_N = mkN "naproxen" "naproxens" ; -- compound en_N ;
-lin doyen_N = mkN "doyen" "doyens" ; -- compound en_N ;
-lin zen_N = mkN "zen" "zens" ; -- notcompound en_N ;
-lin mizen_N = mkN "mizen" "mizens" ; -- compound en_N ;
-lin denizen_N = mkN "denizen" "denizens" ; -- compound en_N ;
-lin citizen_N = mkN "citizen" "citizens" ; -- compound en_N ;
-lin dozen_N = mkN "dozen" "dozens" ; -- compound en_N ;
-lin mizzen_N = mkN "mizzen" "mizzens" ; -- compound en_N ;
-lin campaign_N = mkN "campaign" "campaigns" ;
-lin reign_N = mkN "reign" "reigns" ;
-lin sovereign_N = mkN "sovereign" "sovereigns" ; -- compound reign_N ;
-lin coign_N = mkN "coign" "coigns" ;
-lin sign_N = mkN "sign" "signs" ;
-lin design_N = mkN "design" "designs" ; -- compound sign_N ;
-lin ensign_N = mkN "ensign" "ensigns" ; -- compound sign_N ;
-lin countersign_N = mkN "countersign" "countersigns" ; -- compound sign_N ;
-lin autobahn_N = mkN "autobahn" "autobahns" ;
-lin fohn_N = mkN "fohn" "fohns" ;
-lin demijohn_N = mkN "demijohn" "demijohns" ;
-lin in_N = mkN "in" "ins" ;
-lin 'lead-in_N' = mkN "lead-in" "lead-ins" ; -- compound in_N ;
-lin 'stand-in_N' = mkN "stand-in" "stand-ins" ; -- compound in_N ;
-lin 'trade-in_N' = mkN "trade-in" "trade-ins" ; -- compound in_N ;
-lin 'lie-in_N' = mkN "lie-in" "lie-ins" ; -- compound in_N ;
-lin 'phone-in_N' = mkN "phone-in" "phone-ins" ; -- compound in_N ;
-lin 'cave-in_N' = mkN "cave-in" "cave-ins" ; -- compound in_N ;
-lin 'drive-in_N' = mkN "drive-in" "drive-ins" ; -- compound in_N ;
-lin 'teach-in_N' = mkN "teach-in" "teach-ins" ; -- compound in_N ;
-lin 'break-in_N' = mkN "break-in" "break-ins" ; -- compound in_N ;
-lin 'tuck-in_N' = mkN "tuck-in" "tuck-ins" ; -- compound in_N ;
-lin 'work-in_N' = mkN "work-in" "work-ins" ; -- compound in_N ;
-lin 'pull-in_N' = mkN "pull-in" "pull-ins" ; -- compound in_N ;
-lin 'sit-in_N' = mkN "sit-in" "sit-ins" ; -- compound in_N ;
-lin 'throw-in_N' = mkN "throw-in" "throw-ins" ; -- compound in_N ;
-lin marocain_N = mkN "marocain" "marocains" ; -- compound in_N ;
-lin disdain_N = mkN "disdain" "disdains" ; -- compound in_N ;
-lin gain_N = mkN "gain" "gains" ; -- compound in_N ;
-lin bargain_N = mkN "bargain" "bargains" ; -- compound in_N ;
-lin chain_N = mkN "chain" "chains" ; -- compound in_N ;
-lin 'watch-chain_N' = mkN "watch-chain" "watch-chains" ; -- compound in_N ;
-lin blain_N = mkN "blain" "blains" ; -- compound in_N ;
-lin chilblain_N = mkN "chilblain" "chilblains" ; -- compound in_N ;
-lin porcelain_N = mkN "porcelain" "porcelains" ; -- compound in_N ;
-lin villain_N = mkN "villain" "villains" ; -- compound in_N ;
-lin plain_N = mkN "plain" "plains" ; -- compound in_N ;
-lin chaplain_N = mkN "chaplain" "chaplains" ; -- compound in_N ;
-lin floodplain_N = mkN "floodplain" "floodplains" ; -- compound in_N ;
-lin peneplain_N = mkN "peneplain" "peneplains" ; -- compound in_N ;
-lin chamberlain_N = mkN "chamberlain" "chamberlains" ; -- compound in_N ;
-lin slain_N = mkN "slain" "slains" ; -- compound in_N ;
-lin main_N = mkN "main" "mains" ; -- compound in_N ;
-lin 'water-main_N' = mkN "water-main" "water-mains" ; -- compound in_N ;
-lin legerdemain_N = mkN "legerdemain" "legerdemains" ; -- compound in_N ;
-lin domain_N = mkN "domain" "domains" ; -- compound in_N ;
-lin pearmain_N = mkN "pearmain" "pearmains" ; -- compound in_N ;
-lin mortmain_N = mkN "mortmain" "mortmains" ; -- compound in_N ;
-lin pain_N = mkN "pain" "pains" ; -- compound in_N ;
-lin papain_N = mkN "papain" "papains" ; -- compound in_N ;
-lin rain_N = mkN "rain" "rains" ; -- compound in_N ;
-lin brain_N = mkN "brain" "brains" ; -- compound in_N ;
-lin midbrain_N = mkN "midbrain" "midbrains" ; -- compound in_N ;
-lin hindbrain_N = mkN "hindbrain" "hindbrains" ; -- compound in_N ;
-lin forebrain_N = mkN "forebrain" "forebrains" ; -- compound in_N ;
-lin scatterbrain_N = mkN "scatterbrain" "scatterbrains" ; -- compound in_N ;
-lin drain_N = mkN "drain" "drains" ; -- compound in_N ;
-lin suzerain_N = mkN "suzerain" "suzerains" ; -- compound in_N ;
-lin refrain_N = mkN "refrain" "refrains" ; -- compound in_N ;
-lin grain_N = mkN "grain" "grains" ; -- compound in_N ;
-lin grosgrain_N = mkN "grosgrain" "grosgrains" ; -- compound in_N ;
-lin sprain_N = mkN "sprain" "sprains" ; -- compound in_N ;
-lin terrain_N = mkN "terrain" "terrains" ; -- compound in_N ;
-lin murrain_N = mkN "murrain" "murrains" ; -- compound in_N ;
-lin train_N = mkN "train" "trains" ; -- compound in_N ;
-lin 'mail-train_N' = mkN "mail-train" "mail-trains" ; -- compound in_N ;
-lin 'liner-train_N' = mkN "liner-train" "liner-trains" ; -- compound in_N ;
-lin 'boat-train_N' = mkN "boat-train" "boat-trains" ; -- compound in_N ;
-lin 'freight-train_N' = mkN "freight-train" "freight-trains" ; -- compound in_N ;
-lin quatrain_N = mkN "quatrain" "quatrains" ; -- compound in_N ;
-lin strain_N = mkN "strain" "strains" ; -- compound in_N ;
-lin eyestrain_N = mkN "eyestrain" "eyestrains" ; -- compound in_N ;
-lin overstrain_N = mkN "overstrain" "overstrains" ; -- compound in_N ;
-lin chieftain_N = mkN "chieftain" "chieftains" ; -- compound in_N ;
-lin plantain_N = mkN "plantain" "plantains" ; -- compound in_N ;
-lin fountain_N = mkN "fountain" "fountains" ; -- compound in_N ;
-lin 'soda-fountain_N' = mkN "soda-fountain" "soda-fountains" ; -- compound in_N ;
-lin 'drinking-fountain_N' = mkN "drinking-fountain" "drinking-fountains" ; -- compound in_N ;
-lin mountain_N = mkN "mountain" "mountains" ; -- compound in_N ;
-lin chevrotain_N = mkN "chevrotain" "chevrotains" ; -- compound in_N ;
-lin captain_N = mkN "captain" "captains" ; -- compound in_N ;
-lin 'flag-captain_N' = mkN "flag-captain" "flag-captains" ; -- compound in_N ;
-lin curtain_N = mkN "curtain" "curtains" ; -- compound in_N ;
-lin 'drop-curtain_N' = mkN "drop-curtain" "drop-curtains" ; -- compound in_N ;
-lin 'safety-curtain_N' = mkN "safety-curtain" "safety-curtains" ; -- compound in_N ;
-lin stain_N = mkN "stain" "stains" ; -- compound in_N ;
-lin bloodstain_N = mkN "bloodstain" "bloodstains" ; -- compound in_N ;
-lin counterstain_N = mkN "counterstain" "counterstains" ; -- compound in_N ;
-lin wain_N = mkN "wain" "wains" ; -- compound in_N ;
-lin swain_N = mkN "swain" "swains" ; -- compound in_N ;
-lin boatswain_N = mkN "boatswain" "boatswains" ; -- compound in_N ;
-lin coxswain_N = mkN "coxswain" "coxswains" ; -- compound in_N ;
-lin twain_N = mkN "twain" "twains" ; -- compound in_N ;
-lin bin_N = mkN "bin" "bins" ; -- notcompound in_N ;
-lin 'ash-bin_N' = mkN "ash-bin" "ash-bins" ; -- compound in_N ;
-lin cabin_N = mkN "cabin" "cabins" ; -- compound in_N ;
-lin 'log-cabin_N' = mkN "log-cabin" "log-cabins" ; -- compound in_N ;
-lin cannabin_N = mkN "cannabin" "cannabins" ; -- compound in_N ;
-lin sabin_N = mkN "sabin" "sabins" ; -- compound in_N ;
-lin bobbin_N = mkN "bobbin" "bobbins" ; -- compound in_N ;
-lin dobbin_N = mkN "dobbin" "dobbins" ; -- compound in_N ;
-lin dubbin_N = mkN "dubbin" "dubbins" ; -- compound in_N ;
-lin nubbin_N = mkN "nubbin" "nubbins" ; -- compound in_N ;
-lin wastebin_N = mkN "wastebin" "wastebins" ; -- compound in_N ;
-lin coalbin_N = mkN "coalbin" "coalbins" ; -- compound in_N ;
-lin mombin_N = mkN "mombin" "mombins" ; -- compound in_N ;
-lin thrombin_N = mkN "thrombin" "thrombins" ; -- compound in_N ;
-lin prothrombin_N = mkN "prothrombin" "prothrombins" ; -- compound in_N ;
-lin jacobin_N = mkN "jacobin" "jacobins" ; -- compound in_N ;
-lin globin_N = mkN "globin" "globins" ; -- compound in_N ;
-lin haemoglobin_N = mkN "haemoglobin" "haemoglobins" ; -- compound in_N ;
-lin hemoglobin_N = mkN "hemoglobin" "hemoglobins" ; -- compound in_N ;
-lin oxyhemoglobin_N = mkN "oxyhemoglobin" "oxyhemoglobins" ; -- compound in_N ;
-lin haptoglobin_N = mkN "haptoglobin" "haptoglobins" ; -- compound in_N ;
-lin myoglobin_N = mkN "myoglobin" "myoglobins" ; -- compound in_N ;
-lin robin_N = mkN "robin" "robins" ; -- compound in_N ;
-lin litterbin_N = mkN "litterbin" "litterbins" ; -- compound in_N ;
-lin dustbin_N = mkN "dustbin" "dustbins" ; -- compound in_N ;
-lin bilirubin_N = mkN "bilirubin" "bilirubins" ; -- compound in_N ;
-lin psilocybin_N = mkN "psilocybin" "psilocybins" ; -- compound in_N ;
-lin loonybin_N = mkN "loonybin" "loonybins" ; -- compound in_N ;
-lin indomethacin_N = mkN "indomethacin" "indomethacins" ; -- compound in_N ;
-lin niacin_N = mkN "niacin" "niacins" ; -- compound in_N ;
-lin characin_N = mkN "characin" "characins" ; -- compound in_N ;
-lin bacitracin_N = mkN "bacitracin" "bacitracins" ; -- compound in_N ;
-lin ciprofloxacin_N = mkN "ciprofloxacin" "ciprofloxacins" ; -- compound in_N ;
-lin capsaicin_N = mkN "capsaicin" "capsaicins" ; -- compound in_N ;
-lin doxorubicin_N = mkN "doxorubicin" "doxorubicins" ; -- compound in_N ;
-lin gentamicin_N = mkN "gentamicin" "gentamicins" ; -- compound in_N ;
-lin ricin_N = mkN "ricin" "ricins" ; -- compound in_N ;
-lin amphotericin_N = mkN "amphotericin" "amphotericins" ; -- compound in_N ;
-lin tyrothricin_N = mkN "tyrothricin" "tyrothricins" ; -- compound in_N ;
-lin streptothricin_N = mkN "streptothricin" "streptothricins" ; -- compound in_N ;
-lin novobiocin_N = mkN "novobiocin" "novobiocins" ; -- compound in_N ;
-lin oxytocin_N = mkN "oxytocin" "oxytocins" ; -- compound in_N ;
-lin mucin_N = mkN "mucin" "mucins" ; -- compound in_N ;
-lin cephaloglycin_N = mkN "cephaloglycin" "cephaloglycins" ; -- compound in_N ;
-lin kanamycin_N = mkN "kanamycin" "kanamycins" ; -- compound in_N ;
-lin tobramycin_N = mkN "tobramycin" "tobramycins" ; -- compound in_N ;
-lin mithramycin_N = mkN "mithramycin" "mithramycins" ; -- compound in_N ;
-lin antimycin_N = mkN "antimycin" "antimycins" ; -- compound in_N ;
-lin carbomycin_N = mkN "carbomycin" "carbomycins" ; -- compound in_N ;
-lin vancomycin_N = mkN "vancomycin" "vancomycins" ; -- compound in_N ;
-lin lincomycin_N = mkN "lincomycin" "lincomycins" ; -- compound in_N ;
-lin mycomycin_N = mkN "mycomycin" "mycomycins" ; -- compound in_N ;
-lin neomycin_N = mkN "neomycin" "neomycins" ; -- compound in_N ;
-lin viomycin_N = mkN "viomycin" "viomycins" ; -- compound in_N ;
-lin actinomycin_N = mkN "actinomycin" "actinomycins" ; -- compound in_N ;
-lin spectinomycin_N = mkN "spectinomycin" "spectinomycins" ; -- compound in_N ;
-lin azithromycin_N = mkN "azithromycin" "azithromycins" ; -- compound in_N ;
-lin erythromycin_N = mkN "erythromycin" "erythromycins" ; -- compound in_N ;
-lin mitomycin_N = mkN "mitomycin" "mitomycins" ; -- compound in_N ;
-lin streptomycin_N = mkN "streptomycin" "streptomycins" ; -- compound in_N ;
-lin dihydrostreptomycin_N = mkN "dihydrostreptomycin" "dihydrostreptomycins" ; -- compound in_N ;
-lin din_N = mkN "din" "dins" ; -- notcompound in_N ;
-lin paladin_N = mkN "paladin" "paladins" ; -- compound in_N ;
-lin gramicidin_N = mkN "gramicidin" "gramicidins" ; -- compound in_N ;
-lin mujahidin_N = mkN "mujahidin" "mujahidins" ; -- compound in_N ;
-lin acetophenetidin_N = mkN "acetophenetidin" "acetophenetidins" ; -- compound in_N ;
-lin prostaglandin_N = mkN "prostaglandin" "prostaglandins" ; -- compound in_N ;
-lin verdin_N = mkN "verdin" "verdins" ; -- compound in_N ;
-lin fluorescein_N = mkN "fluorescein" "fluoresceins" ; -- compound in_N ;
-lin skein_N = mkN "skein" "skeins" ; -- compound in_N ;
-lin phenolphthalein_N = mkN "phenolphthalein" "phenolphthaleins" ; -- compound in_N ;
-lin villein_N = mkN "villein" "villeins" ; -- compound in_N ;
-lin mullein_N = mkN "mullein" "mulleins" ; -- compound in_N ;
-lin triolein_N = mkN "triolein" "trioleins" ; -- compound in_N ;
-lin terreplein_N = mkN "terreplein" "terrepleins" ; -- compound in_N ;
-lin fräulein_N = mkN "fräulein" "fräuleins" ; -- compound in_N ;
-lin rein_N = mkN "rein" "reins" ; -- compound in_N ;
-lin 'leading-rein_N' = mkN "leading-rein" "leading-reins" ; -- compound in_N ;
-lin turnverein_N = mkN "turnverein" "turnvereins" ; -- compound in_N ;
-lin casein_N = mkN "casein" "caseins" ; -- compound in_N ;
-lin protein_N = mkN "protein" "proteins" ; -- compound in_N ;
-lin glycoprotein_N = mkN "glycoprotein" "glycoproteins" ; -- compound in_N ;
-lin iodoprotein_N = mkN "iodoprotein" "iodoproteins" ; -- compound in_N ;
-lin nucleoprotein_N = mkN "nucleoprotein" "nucleoproteins" ; -- compound in_N ;
-lin phosphoprotein_N = mkN "phosphoprotein" "phosphoproteins" ; -- compound in_N ;
-lin hemoprotein_N = mkN "hemoprotein" "hemoproteins" ; -- compound in_N ;
-lin lipoprotein_N = mkN "lipoprotein" "lipoproteins" ; -- compound in_N ;
-lin scleroprotein_N = mkN "scleroprotein" "scleroproteins" ; -- compound in_N ;
-lin thyroprotein_N = mkN "thyroprotein" "thyroproteins" ; -- compound in_N ;
-lin fetoprotein_N = mkN "fetoprotein" "fetoproteins" ; -- compound in_N ;
-lin vein_N = mkN "vein" "veins" ; -- compound in_N ;
-lin fin_N = mkN "fin" "fins" ; -- notcompound in_N ;
-lin threadfin_N = mkN "threadfin" "threadfins" ; -- compound in_N ;
-lin bluefin_N = mkN "bluefin" "bluefins" ; -- compound in_N ;
-lin paraffin_N = mkN "paraffin" "paraffins" ; -- compound in_N ;
-lin griffin_N = mkN "griffin" "griffins" ; -- compound in_N ;
-lin boffin_N = mkN "boffin" "boffins" ; -- compound in_N ;
-lin coffin_N = mkN "coffin" "coffins" ; -- compound in_N ;
-lin muffin_N = mkN "muffin" "muffins" ; -- compound in_N ;
-lin ragamuffin_N = mkN "ragamuffin" "ragamuffins" ; -- compound in_N ;
-lin puffin_N = mkN "puffin" "puffins" ; -- compound in_N ;
-lin bowfin_N = mkN "bowfin" "bowfins" ; -- compound in_N ;
-lin yellowfin_N = mkN "yellowfin" "yellowfins" ; -- compound in_N ;
-lin gin_N = mkN "gin" "gins" ; -- notcompound in_N ;
-lin 'sloe-gin_N' = mkN "sloe-gin" "sloe-gins" ; -- compound in_N ;
-lin reagin_N = mkN "reagin" "reagins" ; -- compound in_N ;
-lin pidgin_N = mkN "pidgin" "pidgins" ; -- compound in_N ;
-lin biggin_N = mkN "biggin" "biggins" ; -- compound in_N ;
-lin noggin_N = mkN "noggin" "noggins" ; -- compound in_N ;
-lin origin_N = mkN "origin" "origins" ; -- compound in_N ;
-lin algin_N = mkN "algin" "algins" ; -- compound in_N ;
-lin margin_N = mkN "margin" "margins" ; -- compound in_N ;
-lin 'profit-margin_N' = mkN "profit-margin" "profit-margins" ; -- compound in_N ;
-lin virgin_N = mkN "virgin" "virgins" ; -- compound in_N ;
-lin hin_N = mkN "hin" "hins" ; -- notcompound in_N ;
-lin chin_N = mkN "chin" "chins" ; -- notcompound in_N ;
-lin baldachin_N = mkN "baldachin" "baldachins" ; -- compound in_N ;
-lin catechin_N = mkN "catechin" "catechins" ; -- compound in_N ;
-lin cochin_N = mkN "cochin" "cochins" ; -- compound in_N ;
-lin urchin_N = mkN "urchin" "urchins" ; -- compound in_N ;
-lin 'sea-urchin_N' = mkN "sea-urchin" "sea-urchins" ; -- compound in_N ;
-lin 'street-urchin_N' = mkN "street-urchin" "street-urchins" ; -- compound in_N ;
-lin capuchin_N = mkN "capuchin" "capuchins" ; -- compound in_N ;
-lin dolphin_N = mkN "dolphin" "dolphins" ; -- compound in_N ;
-lin endorphin_N = mkN "endorphin" "endorphins" ; -- compound in_N ;
-lin dauphin_N = mkN "dauphin" "dauphins" ; -- compound in_N ;
-lin shin_N = mkN "shin" "shins" ; -- notcompound in_N ;
-lin lecithin_N = mkN "lecithin" "lecithins" ; -- compound in_N ;
-lin strophanthin_N = mkN "strophanthin" "strophanthins" ; -- compound in_N ;
-lin zeaxanthin_N = mkN "zeaxanthin" "zeaxanthins" ; -- compound in_N ;
-lin cephalothin_N = mkN "cephalothin" "cephalothins" ; -- compound in_N ;
-lin whin_N = mkN "whin" "whins" ; -- notcompound in_N ;
-lin kin_N = mkN "kin" "kins" ; -- notcompound in_N ;
-lin manakin_N = mkN "manakin" "manakins" ; -- compound in_N ;
-lin takin_N = mkN "takin" "takins" ; -- compound in_N ;
-lin lambkin_N = mkN "lambkin" "lambkins" ; -- compound in_N ;
-lin bodkin_N = mkN "bodkin" "bodkins" ; -- compound in_N ;
-lin ramekin_N = mkN "ramekin" "ramekins" ; -- compound in_N ;
-lin mutchkin_N = mkN "mutchkin" "mutchkins" ; -- compound in_N ;
-lin manikin_N = mkN "manikin" "manikins" ; -- compound in_N ;
-lin cannikin_N = mkN "cannikin" "cannikins" ; -- compound in_N ;
-lin pannikin_N = mkN "pannikin" "pannikins" ; -- compound in_N ;
-lin napkin_N = mkN "napkin" "napkins" ; -- compound in_N ;
-lin limpkin_N = mkN "limpkin" "limpkins" ; -- compound in_N ;
-lin bumpkin_N = mkN "bumpkin" "bumpkins" ; -- compound in_N ;
-lin pumpkin_N = mkN "pumpkin" "pumpkins" ; -- compound in_N ;
-lin kilderkin_N = mkN "kilderkin" "kilderkins" ; -- compound in_N ;
-lin gherkin_N = mkN "gherkin" "gherkins" ; -- compound in_N ;
-lin jerkin_N = mkN "jerkin" "jerkins" ; -- compound in_N ;
-lin firkin_N = mkN "firkin" "firkins" ; -- compound in_N ;
-lin skin_N = mkN "skin" "skins" ; -- notcompound in_N ;
-lin 'water-skin_N' = mkN "water-skin" "water-skins" ; -- compound in_N ;
-lin gaskin_N = mkN "gaskin" "gaskins" ; -- compound in_N ;
-lin lambskin_N = mkN "lambskin" "lambskins" ; -- compound in_N ;
-lin redskin_N = mkN "redskin" "redskins" ; -- compound in_N ;
-lin moleskin_N = mkN "moleskin" "moleskins" ; -- compound in_N ;
-lin wineskin_N = mkN "wineskin" "wineskins" ; -- compound in_N ;
-lin doeskin_N = mkN "doeskin" "doeskins" ; -- compound in_N ;
-lin foreskin_N = mkN "foreskin" "foreskins" ; -- compound in_N ;
-lin pigskin_N = mkN "pigskin" "pigskins" ; -- compound in_N ;
-lin siskin_N = mkN "siskin" "siskins" ; -- compound in_N ;
-lin buckskin_N = mkN "buckskin" "buckskins" ; -- compound in_N ;
-lin sharkskin_N = mkN "sharkskin" "sharkskins" ; -- compound in_N ;
-lin sealskin_N = mkN "sealskin" "sealskins" ; -- compound in_N ;
-lin oilskin_N = mkN "oilskin" "oilskins" ; -- compound in_N ;
-lin onionskin_N = mkN "onionskin" "onionskins" ; -- compound in_N ;
-lin sheepskin_N = mkN "sheepskin" "sheepskins" ; -- compound in_N ;
-lin bearskin_N = mkN "bearskin" "bearskins" ; -- compound in_N ;
-lin deerskin_N = mkN "deerskin" "deerskins" ; -- compound in_N ;
-lin waterskin_N = mkN "waterskin" "waterskins" ; -- compound in_N ;
-lin goatskin_N = mkN "goatskin" "goatskins" ; -- compound in_N ;
-lin buskin_N = mkN "buskin" "buskins" ; -- compound in_N ;
-lin cowskin_N = mkN "cowskin" "cowskins" ; -- compound in_N ;
-lin catkin_N = mkN "catkin" "catkins" ; -- compound in_N ;
-lin interleukin_N = mkN "interleukin" "interleukins" ; -- compound in_N ;
-lin amygdalin_N = mkN "amygdalin" "amygdalins" ; -- compound in_N ;
-lin enkephalin_N = mkN "enkephalin" "enkephalins" ; -- compound in_N ;
-lin formalin_N = mkN "formalin" "formalins" ; -- compound in_N ;
-lin adrenalin_N = mkN "adrenalin" "adrenalins" ; -- compound in_N ;
-lin keratohyalin_N = mkN "keratohyalin" "keratohyalins" ; -- compound in_N ;
-lin ptyalin_N = mkN "ptyalin" "ptyalins" ; -- compound in_N ;
-lin goblin_N = mkN "goblin" "goblins" ; -- compound in_N ;
-lin hobgoblin_N = mkN "hobgoblin" "hobgoblins" ; -- compound in_N ;
-lin capelin_N = mkN "capelin" "capelins" ; -- compound in_N ;
-lin zeppelin_N = mkN "zeppelin" "zeppelins" ; -- compound in_N ;
-lin ghrelin_N = mkN "ghrelin" "ghrelins" ; -- compound in_N ;
-lin glutelin_N = mkN "glutelin" "glutelins" ; -- compound in_N ;
-lin javelin_N = mkN "javelin" "javelins" ; -- compound in_N ;
-lin myelin_N = mkN "myelin" "myelins" ; -- compound in_N ;
-lin metheglin_N = mkN "metheglin" "metheglins" ; -- compound in_N ;
-lin phycobilin_N = mkN "phycobilin" "phycobilins" ; -- compound in_N ;
-lin urobilin_N = mkN "urobilin" "urobilins" ; -- compound in_N ;
-lin subtilin_N = mkN "subtilin" "subtilins" ; -- compound in_N ;
-lin motilin_N = mkN "motilin" "motilins" ; -- compound in_N ;
-lin franklin_N = mkN "franklin" "franklins" ; -- compound in_N ;
-lin gibberellin_N = mkN "gibberellin" "gibberellins" ; -- compound in_N ;
-lin piperacillin_N = mkN "piperacillin" "piperacillins" ; -- compound in_N ;
-lin oxacillin_N = mkN "oxacillin" "oxacillins" ; -- compound in_N ;
-lin dicloxacillin_N = mkN "dicloxacillin" "dicloxacillins" ; -- compound in_N ;
-lin nafcillin_N = mkN "nafcillin" "nafcillins" ; -- compound in_N ;
-lin methicillin_N = mkN "methicillin" "methicillins" ; -- compound in_N ;
-lin penicillin_N = mkN "penicillin" "penicillins" ; -- compound in_N ;
-lin ampicillin_N = mkN "ampicillin" "ampicillins" ; -- compound in_N ;
-lin amoxicillin_N = mkN "amoxicillin" "amoxicillins" ; -- compound in_N ;
-lin vanillin_N = mkN "vanillin" "vanillins" ; -- compound in_N ;
-lin gremlin_N = mkN "gremlin" "gremlins" ; -- compound in_N ;
-lin kremlin_N = mkN "kremlin" "kremlins" ; -- compound in_N ;
-lin drumlin_N = mkN "drumlin" "drumlins" ; -- compound in_N ;
-lin kaolin_N = mkN "kaolin" "kaolins" ; -- compound in_N ;
-lin mandolin_N = mkN "mandolin" "mandolins" ; -- compound in_N ;
-lin pangolin_N = mkN "pangolin" "pangolins" ; -- compound in_N ;
-lin violin_N = mkN "violin" "violins" ; -- compound in_N ;
-lin lanolin_N = mkN "lanolin" "lanolins" ; -- compound in_N ;
-lin complin_N = mkN "complin" "complins" ; -- compound in_N ;
-lin poplin_N = mkN "poplin" "poplins" ; -- compound in_N ;
-lin marlin_N = mkN "marlin" "marlins" ; -- compound in_N ;
-lin berlin_N = mkN "berlin" "berlins" ; -- compound in_N ;
-lin muslin_N = mkN "muslin" "muslins" ; -- compound in_N ;
-lin ratlin_N = mkN "ratlin" "ratlins" ; -- compound in_N ;
-lin tarpaulin_N = mkN "tarpaulin" "tarpaulins" ; -- compound in_N ;
-lin globulin_N = mkN "globulin" "globulins" ; -- compound in_N ;
-lin immunoglobulin_N = mkN "immunoglobulin" "immunoglobulins" ; -- compound in_N ;
-lin thyroglobulin_N = mkN "thyroglobulin" "thyroglobulins" ; -- compound in_N ;
-lin tuberculin_N = mkN "tuberculin" "tuberculins" ; -- compound in_N ;
-lin inulin_N = mkN "inulin" "inulins" ; -- compound in_N ;
-lin capulin_N = mkN "capulin" "capulins" ; -- compound in_N ;
-lin insulin_N = mkN "insulin" "insulins" ; -- compound in_N ;
-lin botulin_N = mkN "botulin" "botulins" ; -- compound in_N ;
-lin pyroxylin_N = mkN "pyroxylin" "pyroxylins" ; -- compound in_N ;
-lin min_N = mkN "min" "mins" ; -- notcompound in_N ;
-lin vitamin_N = mkN "vitamin" "vitamins" ; -- compound in_N ;
-lin multivitamin_N = mkN "multivitamin" "multivitamins" ; -- compound in_N ;
-lin provitamin_N = mkN "provitamin" "provitamins" ; -- compound in_N ;
-lin hemin_N = mkN "hemin" "hemins" ; -- compound in_N ;
-lin theremin_N = mkN "theremin" "theremins" ; -- compound in_N ;
-lin brahmin_N = mkN "brahmin" "brahmins" ; -- compound in_N ;
-lin vermin_N = mkN "vermin" "vermins" ; -- compound in_N ;
-lin metformin_N = mkN "metformin" "metformins" ; -- compound in_N ;
-lin plasmin_N = mkN "plasmin" "plasmins" ; -- compound in_N ;
-lin albumin_N = mkN "albumin" "albumins" ; -- compound in_N ;
-lin lactalbumin_N = mkN "lactalbumin" "lactalbumins" ; -- compound in_N ;
-lin cumin_N = mkN "cumin" "cumins" ; -- compound in_N ;
-lin humin_N = mkN "humin" "humins" ; -- compound in_N ;
-lin melanin_N = mkN "melanin" "melanins" ; -- compound in_N ;
-lin phycocyanin_N = mkN "phycocyanin" "phycocyanins" ; -- compound in_N ;
-lin pyocyanin_N = mkN "pyocyanin" "pyocyanins" ; -- compound in_N ;
-lin carrageenin_N = mkN "carrageenin" "carrageenins" ; -- compound in_N ;
-lin renin_N = mkN "renin" "renins" ; -- compound in_N ;
-lin antivenin_N = mkN "antivenin" "antivenins" ; -- compound in_N ;
-lin lignin_N = mkN "lignin" "lignins" ; -- compound in_N ;
-lin kinin_N = mkN "kinin" "kinins" ; -- compound in_N ;
-lin cholecystokinin_N = mkN "cholecystokinin" "cholecystokinins" ; -- compound in_N ;
-lin linin_N = mkN "linin" "linins" ; -- compound in_N ;
-lin agglutinin_N = mkN "agglutinin" "agglutinins" ; -- compound in_N ;
-lin isoagglutinin_N = mkN "isoagglutinin" "isoagglutinins" ; -- compound in_N ;
-lin tannin_N = mkN "tannin" "tannins" ; -- compound in_N ;
-lin rennin_N = mkN "rennin" "rennins" ; -- compound in_N ;
-lin saponin_N = mkN "saponin" "saponins" ; -- compound in_N ;
-lin opsonin_N = mkN "opsonin" "opsonins" ; -- compound in_N ;
-lin melatonin_N = mkN "melatonin" "melatonins" ; -- compound in_N ;
-lin calcitonin_N = mkN "calcitonin" "calcitonins" ; -- compound in_N ;
-lin serotonin_N = mkN "serotonin" "serotonins" ; -- compound in_N ;
-lin coin_N = mkN "coin" "coins" ; -- compound in_N ;
-lin sainfoin_N = mkN "sainfoin" "sainfoins" ; -- compound in_N ;
-lin join_N = mkN "join" "joins" ; -- compound in_N ;
-lin loin_N = mkN "loin" "loins" ; -- compound in_N ;
-lin tenderloin_N = mkN "tenderloin" "tenderloins" ; -- compound in_N ;
-lin sirloin_N = mkN "sirloin" "sirloins" ; -- compound in_N ;
-lin ganoin_N = mkN "ganoin" "ganoins" ; -- compound in_N ;
-lin talapoin_N = mkN "talapoin" "talapoins" ; -- compound in_N ;
-lin heroin_N = mkN "heroin" "heroins" ; -- compound in_N ;
-lin groin_N = mkN "groin" "groins" ; -- compound in_N ;
-lin hydantoin_N = mkN "hydantoin" "hydantoins" ; -- compound in_N ;
-lin diphenylhydantoin_N = mkN "diphenylhydantoin" "diphenylhydantoins" ; -- compound in_N ;
-lin nitrofurantoin_N = mkN "nitrofurantoin" "nitrofurantoins" ; -- compound in_N ;
-lin mephenytoin_N = mkN "mephenytoin" "mephenytoins" ; -- compound in_N ;
-lin quoin_N = mkN "quoin" "quoins" ; -- compound in_N ;
-lin benzoin_N = mkN "benzoin" "benzoins" ; -- compound in_N ;
-lin pin_N = mkN "pin" "pins" ; -- notcompound in_N ;
-lin 'skittle-pin_N' = mkN "skittle-pin" "skittle-pins" ; -- compound in_N ;
-lin 'scarf-pin_N' = mkN "scarf-pin" "scarf-pins" ; -- compound in_N ;
-lin 'rolling-pin_N' = mkN "rolling-pin" "rolling-pins" ; -- compound in_N ;
-lin 'drawing-pin_N' = mkN "drawing-pin" "drawing-pins" ; -- compound in_N ;
-lin 'belaying-pin_N' = mkN "belaying-pin" "belaying-pins" ; -- compound in_N ;
-lin 'clothes-pin_N' = mkN "clothes-pin" "clothes-pins" ; -- compound in_N ;
-lin 'safety-pin_N' = mkN "safety-pin" "safety-pins" ; -- compound in_N ;
-lin chincapin_N = mkN "chincapin" "chincapins" ; -- compound in_N ;
-lin lapin_N = mkN "lapin" "lapins" ; -- compound in_N ;
-lin terrapin_N = mkN "terrapin" "terrapins" ; -- compound in_N ;
-lin headpin_N = mkN "headpin" "headpins" ; -- compound in_N ;
-lin candlepin_N = mkN "candlepin" "candlepins" ; -- compound in_N ;
-lin tholepin_N = mkN "tholepin" "tholepins" ; -- compound in_N ;
-lin ninepin_N = mkN "ninepin" "ninepins" ; -- compound in_N ;
-lin doxepin_N = mkN "doxepin" "doxepins" ; -- compound in_N ;
-lin kingpin_N = mkN "kingpin" "kingpins" ; -- compound in_N ;
-lin linchpin_N = mkN "linchpin" "linchpins" ; -- compound in_N ;
-lin lynchpin_N = mkN "lynchpin" "lynchpins" ; -- compound in_N ;
-lin stickpin_N = mkN "stickpin" "stickpins" ; -- compound in_N ;
-lin duckpin_N = mkN "duckpin" "duckpins" ; -- compound in_N ;
-lin sculpin_N = mkN "sculpin" "sculpins" ; -- compound in_N ;
-lin rifampin_N = mkN "rifampin" "rifampins" ; -- compound in_N ;
-lin tenpin_N = mkN "tenpin" "tenpins" ; -- compound in_N ;
-lin gonadotropin_N = mkN "gonadotropin" "gonadotropins" ; -- compound in_N ;
-lin thyrotropin_N = mkN "thyrotropin" "thyrotropins" ; -- compound in_N ;
-lin somatotropin_N = mkN "somatotropin" "somatotropins" ; -- compound in_N ;
-lin pippin_N = mkN "pippin" "pippins" ; -- compound in_N ;
-lin hairpin_N = mkN "hairpin" "hairpins" ; -- compound in_N ;
-lin spin_N = mkN "spin" "spins" ; -- notcompound in_N ;
-lin clothespin_N = mkN "clothespin" "clothespins" ; -- compound in_N ;
-lin backspin_N = mkN "backspin" "backspins" ; -- compound in_N ;
-lin tailspin_N = mkN "tailspin" "tailspins" ; -- compound in_N ;
-lin downspin_N = mkN "downspin" "downspins" ; -- compound in_N ;
-lin topspin_N = mkN "topspin" "topspins" ; -- compound in_N ;
-lin hatpin_N = mkN "hatpin" "hatpins" ; -- compound in_N ;
-lin lupin_N = mkN "lupin" "lupins" ; -- compound in_N ;
-lin mandarin_N = mkN "mandarin" "mandarins" ; -- compound in_N ;
-lin stearin_N = mkN "stearin" "stearins" ; -- compound in_N ;
-lin tristearin_N = mkN "tristearin" "tristearins" ; -- compound in_N ;
-lin warfarin_N = mkN "warfarin" "warfarins" ; -- compound in_N ;
-lin margarin_N = mkN "margarin" "margarins" ; -- compound in_N ;
-lin saccharin_N = mkN "saccharin" "saccharins" ; -- compound in_N ;
-lin tamarin_N = mkN "tamarin" "tamarins" ; -- compound in_N ;
-lin heparin_N = mkN "heparin" "heparins" ; -- compound in_N ;
-lin sarin_N = mkN "sarin" "sarins" ; -- compound in_N ;
-lin savarin_N = mkN "savarin" "savarins" ; -- compound in_N ;
-lin alizarin_N = mkN "alizarin" "alizarins" ; -- compound in_N ;
-lin fibrin_N = mkN "fibrin" "fibrins" ; -- compound in_N ;
-lin chloropicrin_N = mkN "chloropicrin" "chloropicrins" ; -- compound in_N ;
-lin chondrin_N = mkN "chondrin" "chondrins" ; -- compound in_N ;
-lin cyanohydrin_N = mkN "cyanohydrin" "cyanohydrins" ; -- compound in_N ;
-lin nitroglycerin_N = mkN "nitroglycerin" "nitroglycerins" ; -- compound in_N ;
-lin hemosiderin_N = mkN "hemosiderin" "hemosiderins" ; -- compound in_N ;
-lin luciferin_N = mkN "luciferin" "luciferins" ; -- compound in_N ;
-lin gorgerin_N = mkN "gorgerin" "gorgerins" ; -- compound in_N ;
-lin proaccelerin_N = mkN "proaccelerin" "proaccelerins" ; -- compound in_N ;
-lin piperin_N = mkN "piperin" "piperins" ; -- compound in_N ;
-lin serin_N = mkN "serin" "serins" ; -- compound in_N ;
-lin culverin_N = mkN "culverin" "culverins" ; -- compound in_N ;
-lin grin_N = mkN "grin" "grins" ; -- notcompound in_N ;
-lin chagrin_N = mkN "chagrin" "chagrins" ; -- compound in_N ;
-lin filaggrin_N = mkN "filaggrin" "filaggrins" ; -- compound in_N ;
-lin phycoerythrin_N = mkN "phycoerythrin" "phycoerythrins" ; -- compound in_N ;
-lin aspirin_N = mkN "aspirin" "aspirins" ; -- compound in_N ;
-lin ribavirin_N = mkN "ribavirin" "ribavirins" ; -- compound in_N ;
-lin florin_N = mkN "florin" "florins" ; -- compound in_N ;
-lin salvinorin_N = mkN "salvinorin" "salvinorins" ; -- compound in_N ;
-lin cephalosporin_N = mkN "cephalosporin" "cephalosporins" ; -- compound in_N ;
-lin transferrin_N = mkN "transferrin" "transferrins" ; -- compound in_N ;
-lin gastrin_N = mkN "gastrin" "gastrins" ; -- compound in_N ;
-lin dextrin_N = mkN "dextrin" "dextrins" ; -- compound in_N ;
-lin burin_N = mkN "burin" "burins" ; -- compound in_N ;
-lin porphyrin_N = mkN "porphyrin" "porphyrins" ; -- compound in_N ;
-lin butyrin_N = mkN "butyrin" "butyrins" ; -- compound in_N ;
-lin tributyrin_N = mkN "tributyrin" "tributyrins" ; -- compound in_N ;
-lin sin_N = mkN "sin" "sins" ; -- notcompound in_N ;
-lin basin_N = mkN "basin" "basins" ; -- compound in_N ;
-lin 'wash-hand-basin_N' = mkN "wash-hand-basin" "wash-hand-basins" ; -- compound in_N ;
-lin 'drainage-basin_N' = mkN "drainage-basin" "drainage-basins" ; -- compound in_N ;
-lin 'slop-basin_N' = mkN "slop-basin" "slop-basins" ; -- compound in_N ;
-lin 'river-basin_N' = mkN "river-basin" "river-basins" ; -- compound in_N ;
-lin 'catchment-basin_N' = mkN "catchment-basin" "catchment-basins" ; -- compound in_N ;
-lin washbasin_N = mkN "washbasin" "washbasins" ; -- compound in_N ;
-lin moccasin_N = mkN "moccasin" "moccasins" ; -- compound in_N ;
-lin tocsin_N = mkN "tocsin" "tocsins" ; -- compound in_N ;
-lin resin_N = mkN "resin" "resins" ; -- compound in_N ;
-lin ceresin_N = mkN "ceresin" "ceresins" ; -- compound in_N ;
-lin oleoresin_N = mkN "oleoresin" "oleoresins" ; -- compound in_N ;
-lin raisin_N = mkN "raisin" "raisins" ; -- compound in_N ;
-lin khamsin_N = mkN "khamsin" "khamsins" ; -- compound in_N ;
-lin angiotensin_N = mkN "angiotensin" "angiotensins" ; -- compound in_N ;
-lin eosin_N = mkN "eosin" "eosins" ; -- compound in_N ;
-lin thymosin_N = mkN "thymosin" "thymosins" ; -- compound in_N ;
-lin rosin_N = mkN "rosin" "rosins" ; -- compound in_N ;
-lin myosin_N = mkN "myosin" "myosins" ; -- compound in_N ;
-lin actomyosin_N = mkN "actomyosin" "actomyosins" ; -- compound in_N ;
-lin terazosin_N = mkN "terazosin" "terazosins" ; -- compound in_N ;
-lin prazosin_N = mkN "prazosin" "prazosins" ; -- compound in_N ;
-lin doxazosin_N = mkN "doxazosin" "doxazosins" ; -- compound in_N ;
-lin pepsin_N = mkN "pepsin" "pepsins" ; -- compound in_N ;
-lin opsin_N = mkN "opsin" "opsins" ; -- compound in_N ;
-lin iodopsin_N = mkN "iodopsin" "iodopsins" ; -- compound in_N ;
-lin trypsin_N = mkN "trypsin" "trypsins" ; -- compound in_N ;
-lin assassin_N = mkN "assassin" "assassins" ; -- compound in_N ;
-lin vasopressin_N = mkN "vasopressin" "vasopressins" ; -- compound in_N ;
-lin lypressin_N = mkN "lypressin" "lypressins" ; -- compound in_N ;
-lin cousin_N = mkN "cousin" "cousins" ; -- compound in_N ;
-lin lysin_N = mkN "lysin" "lysins" ; -- compound in_N ;
-lin hemolysin_N = mkN "hemolysin" "hemolysins" ; -- compound in_N ;
-lin streptolysin_N = mkN "streptolysin" "streptolysins" ; -- compound in_N ;
-lin cytolysin_N = mkN "cytolysin" "cytolysins" ; -- compound in_N ;
-lin tin_N = mkN "tin" "tins" ; -- notcompound in_N ;
-lin pancreatin_N = mkN "pancreatin" "pancreatins" ; -- compound in_N ;
-lin latin_N = mkN "latin" "latins" ; -- compound in_N ;
-lin gelatin_N = mkN "gelatin" "gelatins" ; -- compound in_N ;
-lin glycerogelatin_N = mkN "glycerogelatin" "glycerogelatins" ; -- compound in_N ;
-lin chromatin_N = mkN "chromatin" "chromatins" ; -- compound in_N ;
-lin achromatin_N = mkN "achromatin" "achromatins" ; -- compound in_N ;
-lin keratin_N = mkN "keratin" "keratins" ; -- compound in_N ;
-lin satin_N = mkN "satin" "satins" ; -- compound in_N ;
-lin pravastatin_N = mkN "pravastatin" "pravastatins" ; -- compound in_N ;
-lin cerivastatin_N = mkN "cerivastatin" "cerivastatins" ; -- compound in_N ;
-lin simvastatin_N = mkN "simvastatin" "simvastatins" ; -- compound in_N ;
-lin lovastatin_N = mkN "lovastatin" "lovastatins" ; -- compound in_N ;
-lin atorvastatin_N = mkN "atorvastatin" "atorvastatins" ; -- compound in_N ;
-lin fluvastatin_N = mkN "fluvastatin" "fluvastatins" ; -- compound in_N ;
-lin nystatin_N = mkN "nystatin" "nystatins" ; -- compound in_N ;
-lin actin_N = mkN "actin" "actins" ; -- compound in_N ;
-lin prolactin_N = mkN "prolactin" "prolactins" ; -- compound in_N ;
-lin lectin_N = mkN "lectin" "lectins" ; -- compound in_N ;
-lin pectin_N = mkN "pectin" "pectins" ; -- compound in_N ;
-lin acetin_N = mkN "acetin" "acetins" ; -- compound in_N ;
-lin erythropoietin_N = mkN "erythropoietin" "erythropoietins" ; -- compound in_N ;
-lin bulletin_N = mkN "bulletin" "bulletins" ; -- compound in_N ;
-lin cretin_N = mkN "cretin" "cretins" ; -- compound in_N ;
-lin secretin_N = mkN "secretin" "secretins" ; -- compound in_N ;
-lin azadirachtin_N = mkN "azadirachtin" "azadirachtins" ; -- compound in_N ;
-lin chitin_N = mkN "chitin" "chitins" ; -- compound in_N ;
-lin palmitin_N = mkN "palmitin" "palmitins" ; -- compound in_N ;
-lin tripalmitin_N = mkN "tripalmitin" "tripalmitins" ; -- compound in_N ;
-lin precipitin_N = mkN "precipitin" "precipitins" ; -- compound in_N ;
-lin ferritin_N = mkN "ferritin" "ferritins" ; -- compound in_N ;
-lin gabapentin_N = mkN "gabapentin" "gabapentins" ; -- compound in_N ;
-lin biotin_N = mkN "biotin" "biotins" ; -- compound in_N ;
-lin martin_N = mkN "martin" "martins" ; -- compound in_N ;
-lin proconvertin_N = mkN "proconvertin" "proconvertins" ; -- compound in_N ;
-lin elastin_N = mkN "elastin" "elastins" ; -- compound in_N ;
-lin thromboplastin_N = mkN "thromboplastin" "thromboplastins" ; -- compound in_N ;
-lin progestin_N = mkN "progestin" "progestins" ; -- compound in_N ;
-lin cutin_N = mkN "cutin" "cutins" ; -- compound in_N ;
-lin penguin_N = mkN "penguin" "penguins" ; -- compound in_N ;
-lin quin_N = mkN "quin" "quins" ; -- compound in_N ;
-lin harlequin_N = mkN "harlequin" "harlequins" ; -- compound in_N ;
-lin mannequin_N = mkN "mannequin" "mannequins" ; -- compound in_N ;
-lin lambrequin_N = mkN "lambrequin" "lambrequins" ; -- compound in_N ;
-lin sequin_N = mkN "sequin" "sequins" ; -- compound in_N ;
-lin palanquin_N = mkN "palanquin" "palanquins" ; -- compound in_N ;
-lin iodochlorhydroxyquin_N = mkN "iodochlorhydroxyquin" "iodochlorhydroxyquins" ; -- compound in_N ;
-lin ruin_N = mkN "ruin" "ruins" ; -- compound in_N ;
-lin bruin_N = mkN "bruin" "bruins" ; -- compound in_N ;
-lin flavin_N = mkN "flavin" "flavins" ; -- compound in_N ;
-lin riboflavin_N = mkN "riboflavin" "riboflavins" ; -- compound in_N ;
-lin spavin_N = mkN "spavin" "spavins" ; -- compound in_N ;
-lin kelvin_N = mkN "kelvin" "kelvins" ; -- compound in_N ;
-lin griseofulvin_N = mkN "griseofulvin" "griseofulvins" ; -- compound in_N ;
-lin win_N = mkN "win" "wins" ; -- notcompound in_N ;
-lin twin_N = mkN "twin" "twins" ; -- notcompound in_N ;
-lin relaxin_N = mkN "relaxin" "relaxins" ; -- compound in_N ;
-lin cephalexin_N = mkN "cephalexin" "cephalexins" ; -- compound in_N ;
-lin digoxin_N = mkN "digoxin" "digoxins" ; -- compound in_N ;
-lin dioxin_N = mkN "dioxin" "dioxins" ; -- compound in_N ;
-lin toxin_N = mkN "toxin" "toxins" ; -- compound in_N ;
-lin aflatoxin_N = mkN "aflatoxin" "aflatoxins" ; -- compound in_N ;
-lin anatoxin_N = mkN "anatoxin" "anatoxins" ; -- compound in_N ;
-lin digitoxin_N = mkN "digitoxin" "digitoxins" ; -- compound in_N ;
-lin antitoxin_N = mkN "antitoxin" "antitoxins" ; -- compound in_N ;
-lin saxitoxin_N = mkN "saxitoxin" "saxitoxins" ; -- compound in_N ;
-lin mycotoxin_N = mkN "mycotoxin" "mycotoxins" ; -- compound in_N ;
-lin endotoxin_N = mkN "endotoxin" "endotoxins" ; -- compound in_N ;
-lin tetrodotoxin_N = mkN "tetrodotoxin" "tetrodotoxins" ; -- compound in_N ;
-lin enterotoxin_N = mkN "enterotoxin" "enterotoxins" ; -- compound in_N ;
-lin nephrotoxin_N = mkN "nephrotoxin" "nephrotoxins" ; -- compound in_N ;
-lin neurotoxin_N = mkN "neurotoxin" "neurotoxins" ; -- compound in_N ;
-lin hepatotoxin_N = mkN "hepatotoxin" "hepatotoxins" ; -- compound in_N ;
-lin cytotoxin_N = mkN "cytotoxin" "cytotoxins" ; -- compound in_N ;
-lin exotoxin_N = mkN "exotoxin" "exotoxins" ; -- compound in_N ;
-lin auxin_N = mkN "auxin" "auxins" ; -- compound in_N ;
-lin polymyxin_N = mkN "polymyxin" "polymyxins" ; -- compound in_N ;
-lin yin_N = mkN "yin" "yins" ; -- notcompound in_N ;
-lin ayin_N = mkN "ayin" "ayins" ; -- compound in_N ;
-lin zayin_N = mkN "zayin" "zayins" ; -- compound in_N ;
-lin tiyin_N = mkN "tiyin" "tiyins" ; -- compound in_N ;
-lin oxaprozin_N = mkN "oxaprozin" "oxaprozins" ; -- compound in_N ;
-lin hoatzin_N = mkN "hoatzin" "hoatzins" ; -- compound in_N ;
-lin muezzin_N = mkN "muezzin" "muezzins" ; -- compound in_N ;
-lin kiln_N = mkN "kiln" "kilns" ;
-lin limekiln_N = mkN "limekiln" "limekilns" ; -- compound kiln_N ;
-lin brickkiln_N = mkN "brickkiln" "brickkilns" ; -- compound kiln_N ;
-lin damn_N = mkN "damn" "damns" ;
-lin column_N = mkN "column" "columns" ;
-lin autumn_N = mkN "autumn" "autumns" ;
-lin hymn_N = mkN "hymn" "hymns" ;
-lin inn_N = mkN "inn" "inns" ;
-lin finn_N = mkN "finn" "finns" ; -- notcompound inn_N ;
-lin jinn_N = mkN "jinn" "jinns" ; -- notcompound inn_N ;
-lin djinn_N = mkN "djinn" "djinns" ; -- notcompound inn_N ;
-lin 'mid-on_N' = mkN "mid-on" "mid-ons" ;
-lin 'come-on_N' = mkN "come-on" "come-ons" ;
-lin 'knock-on_N' = mkN "knock-on" "knock-ons" ;
-lin 'roll-on_N' = mkN "roll-on" "roll-ons" ;
-lin 'turn-on_N' = mkN "turn-on" "turn-ons" ;
-lin 'put-on_N' = mkN "put-on" "put-ons" ;
-lin 'follow-on_N' = mkN "follow-on" "follow-ons" ;
-lin 'try-on_N' = mkN "try-on" "try-ons" ;
-lin kaon_N = mkN "kaon" "kaons" ;
-lin gibbon_N = mkN "gibbon" "gibbons" ;
-lin ribbon_N = mkN "ribbon" "ribbons" ;
-lin bonbon_N = mkN "bonbon" "bonbons" ;
-lin carbon_N = mkN "carbon" "carbons" ;
-lin radiocarbon_N = mkN "radiocarbon" "radiocarbons" ; -- compound carbon_N ;
-lin halocarbon_N = mkN "halocarbon" "halocarbons" ; -- compound carbon_N ;
-lin hydrocarbon_N = mkN "hydrocarbon" "hydrocarbons" ; -- compound carbon_N ;
-lin fluorocarbon_N = mkN "fluorocarbon" "fluorocarbons" ; -- compound carbon_N ;
-lin hydrofluorocarbon_N = mkN "hydrofluorocarbon" "hydrofluorocarbons" ; -- compound carbon_N ;
-lin chlorofluorocarbon_N = mkN "chlorofluorocarbon" "chlorofluorocarbons" ; -- compound carbon_N ;
-lin hydrochlorofluorocarbon_N = mkN "hydrochlorofluorocarbon" "hydrochlorofluorocarbons" ; -- compound carbon_N ;
-lin perfluorocarbon_N = mkN "perfluorocarbon" "perfluorocarbons" ; -- compound carbon_N ;
-lin bourbon_N = mkN "bourbon" "bourbons" ;
-lin con_N = mkN "con" "cons" ;
-lin 'mod con_N' = mkN "mod con" "mod cons" ; -- compound con_N ;
-lin bacon_N = mkN "bacon" "bacons" ; -- compound con_N ;
-lin 'chaw-bacon_N' = mkN "chaw-bacon" "chaw-bacons" ; -- compound con_N ;
-lin beacon_N = mkN "beacon" "beacons" ; -- compound con_N ;
-lin deacon_N = mkN "deacon" "deacons" ; -- compound con_N ;
-lin subdeacon_N = mkN "subdeacon" "subdeacons" ; -- compound con_N ;
-lin archdeacon_N = mkN "archdeacon" "archdeacons" ; -- compound con_N ;
-lin macon_N = mkN "macon" "macons" ; -- compound con_N ;
-lin icon_N = mkN "icon" "icons" ; -- notcompound con_N ;
-lin rubicon_N = mkN "rubicon" "rubicons" ; -- compound con_N ;
-lin orthicon_N = mkN "orthicon" "orthicons" ; -- compound con_N ;
-lin helicon_N = mkN "helicon" "helicons" ; -- compound con_N ;
-lin silicon_N = mkN "silicon" "silicons" ; -- compound con_N ;
-lin pantechnicon_N = mkN "pantechnicon" "pantechnicons" ; -- compound con_N ;
-lin emoticon_N = mkN "emoticon" "emoticons" ; -- compound con_N ;
-lin panopticon_N = mkN "panopticon" "panopticons" ; -- compound con_N ;
-lin onomasticon_N = mkN "onomasticon" "onomasticons" ; -- compound con_N ;
-lin lexicon_N = mkN "lexicon" "lexicons" ; -- compound con_N ;
-lin falcon_N = mkN "falcon" "falcons" ; -- compound con_N ;
-lin gyrfalcon_N = mkN "gyrfalcon" "gyrfalcons" ; -- compound con_N ;
-lin zircon_N = mkN "zircon" "zircons" ; -- compound con_N ;
-lin don_N = mkN "don" "dons" ;
-lin radon_N = mkN "radon" "radons" ; -- compound don_N ;
-lin boustrophedon_N = mkN "boustrophedon" "boustrophedons" ; -- compound don_N ;
-lin cotyledon_N = mkN "cotyledon" "cotyledons" ; -- compound don_N ;
-lin myrmidon_N = mkN "myrmidon" "myrmidons" ; -- compound don_N ;
-lin gueridon_N = mkN "gueridon" "gueridons" ; -- compound don_N ;
-lin abandon_N = mkN "abandon" "abandons" ; -- compound don_N ;
-lin tendon_N = mkN "tendon" "tendons" ; -- compound don_N ;
-lin codon_N = mkN "codon" "codons" ; -- compound don_N ;
-lin trachodon_N = mkN "trachodon" "trachodons" ; -- compound don_N ;
-lin mylodon_N = mkN "mylodon" "mylodons" ; -- compound don_N ;
-lin iguanodon_N = mkN "iguanodon" "iguanodons" ; -- compound don_N ;
-lin dimetrodon_N = mkN "dimetrodon" "dimetrodons" ; -- compound don_N ;
-lin chaetodon_N = mkN "chaetodon" "chaetodons" ; -- compound don_N ;
-lin dicamptodon_N = mkN "dicamptodon" "dicamptodons" ; -- compound don_N ;
-lin mastodon_N = mkN "mastodon" "mastodons" ; -- compound don_N ;
-lin bombardon_N = mkN "bombardon" "bombardons" ; -- compound don_N ;
-lin pardon_N = mkN "pardon" "pardons" ; -- compound don_N ;
-lin guerdon_N = mkN "guerdon" "guerdons" ; -- compound don_N ;
-lin cordon_N = mkN "cordon" "cordons" ; -- compound don_N ;
-lin eon_N = mkN "eon" "eons" ;
-lin aeon_N = mkN "aeon" "aeons" ; -- notcompound eon_N ;
-lin widgeon_N = mkN "widgeon" "widgeons" ; -- compound eon_N ;
-lin dudgeon_N = mkN "dudgeon" "dudgeons" ; -- compound eon_N ;
-lin gudgeon_N = mkN "gudgeon" "gudgeons" ; -- compound eon_N ;
-lin bludgeon_N = mkN "bludgeon" "bludgeons" ; -- compound eon_N ;
-lin curmudgeon_N = mkN "curmudgeon" "curmudgeons" ; -- compound eon_N ;
-lin pigeon_N = mkN "pigeon" "pigeons" ; -- compound eon_N ;
-lin 'carrier-pigeon_N' = mkN "carrier-pigeon" "carrier-pigeons" ; -- compound eon_N ;
-lin dungeon_N = mkN "dungeon" "dungeons" ; -- compound eon_N ;
-lin habergeon_N = mkN "habergeon" "habergeons" ; -- compound eon_N ;
-lin surgeon_N = mkN "surgeon" "surgeons" ; -- compound eon_N ;
-lin neurosurgeon_N = mkN "neurosurgeon" "neurosurgeons" ; -- compound eon_N ;
-lin sturgeon_N = mkN "sturgeon" "sturgeons" ; -- compound eon_N ;
-lin luncheon_N = mkN "luncheon" "luncheons" ; -- compound eon_N ;
-lin truncheon_N = mkN "truncheon" "truncheons" ; -- compound eon_N ;
-lin scutcheon_N = mkN "scutcheon" "scutcheons" ; -- compound eon_N ;
-lin escutcheon_N = mkN "escutcheon" "escutcheons" ; -- compound eon_N ;
-lin pantheon_N = mkN "pantheon" "pantheons" ; -- compound eon_N ;
-lin nucleon_N = mkN "nucleon" "nucleons" ; -- compound eon_N ;
-lin chameleon_N = mkN "chameleon" "chameleons" ; -- compound eon_N ;
-lin galleon_N = mkN "galleon" "galleons" ; -- compound eon_N ;
-lin napoleon_N = mkN "napoleon" "napoleons" ; -- compound eon_N ;
-lin neon_N = mkN "neon" "neons" ; -- notcompound eon_N ;
-lin bandoneon_N = mkN "bandoneon" "bandoneons" ; -- compound eon_N ;
-lin peon_N = mkN "peon" "peons" ; -- notcompound eon_N ;
-lin mezereon_N = mkN "mezereon" "mezereons" ; -- compound eon_N ;
-lin chiffon_N = mkN "chiffon" "chiffons" ;
-lin griffon_N = mkN "griffon" "griffons" ;
-lin agon_N = mkN "agon" "agons" ;
-lin decagon_N = mkN "decagon" "decagons" ; -- compound agon_N ;
-lin undecagon_N = mkN "undecagon" "undecagons" ; -- compound agon_N ;
-lin dodecagon_N = mkN "dodecagon" "dodecagons" ; -- compound agon_N ;
-lin glucagon_N = mkN "glucagon" "glucagons" ; -- compound agon_N ;
-lin flagon_N = mkN "flagon" "flagons" ; -- notcompound agon_N ;
-lin nonagon_N = mkN "nonagon" "nonagons" ; -- compound agon_N ;
-lin paragon_N = mkN "paragon" "paragons" ; -- compound agon_N ;
-lin dragon_N = mkN "dragon" "dragons" ; -- notcompound agon_N ;
-lin pendragon_N = mkN "pendragon" "pendragons" ; -- compound agon_N ;
-lin snapdragon_N = mkN "snapdragon" "snapdragons" ; -- compound agon_N ;
-lin tarragon_N = mkN "tarragon" "tarragons" ; -- compound agon_N ;
-lin octagon_N = mkN "octagon" "octagons" ; -- compound agon_N ;
-lin pentagon_N = mkN "pentagon" "pentagons" ; -- compound agon_N ;
-lin heptagon_N = mkN "heptagon" "heptagons" ; -- compound agon_N ;
-lin wagon_N = mkN "wagon" "wagons" ; -- notcompound agon_N ;
-lin 'tea-wagon_N' = mkN "tea-wagon" "tea-wagons" ; -- compound agon_N ;
-lin 'water-wagon_N' = mkN "water-wagon" "water-wagons" ; -- compound agon_N ;
-lin 'paddy-wagon_N' = mkN "paddy-wagon" "paddy-wagons" ; -- compound agon_N ;
-lin bandwagon_N = mkN "bandwagon" "bandwagons" ; -- compound agon_N ;
-lin hexagon_N = mkN "hexagon" "hexagons" ; -- compound agon_N ;
-lin waggon_N = mkN "waggon" "waggons" ;
-lin 'station-waggon_N' = mkN "station-waggon" "station-waggons" ; -- compound waggon_N ;
-lin 'water-waggon_N' = mkN "water-waggon" "water-waggons" ; -- compound waggon_N ;
-lin perigon_N = mkN "perigon" "perigons" ;
-lin trigon_N = mkN "trigon" "trigons" ;
-lin pteropogon_N = mkN "pteropogon" "pteropogons" ;
-lin trogon_N = mkN "trogon" "trogons" ;
-lin isogon_N = mkN "isogon" "isogons" ;
-lin argon_N = mkN "argon" "argons" ;
-lin jargon_N = mkN "jargon" "jargons" ; -- notcompound argon_N ;
-lin gorgon_N = mkN "gorgon" "gorgons" ;
-lin polygon_N = mkN "polygon" "polygons" ;
-lin chon_N = mkN "chon" "chons" ;
-lin cabochon_N = mkN "cabochon" "cabochons" ; -- compound chon_N ;
-lin phon_N = mkN "phon" "phons" ;
-lin siphon_N = mkN "siphon" "siphons" ; -- compound phon_N ;
-lin antiphon_N = mkN "antiphon" "antiphons" ; -- compound phon_N ;
-lin colophon_N = mkN "colophon" "colophons" ; -- compound phon_N ;
-lin gryphon_N = mkN "gryphon" "gryphons" ; -- compound phon_N ;
-lin syphon_N = mkN "syphon" "syphons" ; -- compound phon_N ;
-lin marathon_N = mkN "marathon" "marathons" ;
-lin autochthon_N = mkN "autochthon" "autochthons" ;
-lin python_N = mkN "python" "pythons" ;
-lin ion_N = mkN "ion" "ions" ;
-lin suspicion_N = mkN "suspicion" "suspicions" ; -- compound ion_N ;
-lin coercion_N = mkN "coercion" "coercions" ; -- compound ion_N ;
-lin scion_N = mkN "scion" "scions" ; -- notcompound ion_N ;
-lin collodion_N = mkN "collodion" "collodions" ; -- compound ion_N ;
-lin accordion_N = mkN "accordion" "accordions" ; -- compound ion_N ;
-lin contagion_N = mkN "contagion" "contagions" ; -- compound ion_N ;
-lin legion_N = mkN "legion" "legions" ; -- compound ion_N ;
-lin region_N = mkN "region" "regions" ; -- compound ion_N ;
-lin religion_N = mkN "religion" "religions" ; -- compound ion_N ;
-lin logion_N = mkN "logion" "logions" ; -- compound ion_N ;
-lin trichion_N = mkN "trichion" "trichions" ; -- compound ion_N ;
-lin falchion_N = mkN "falchion" "falchions" ; -- compound ion_N ;
-lin stanchion_N = mkN "stanchion" "stanchions" ; -- compound ion_N ;
-lin crotaphion_N = mkN "crotaphion" "crotaphions" ; -- compound ion_N ;
-lin fashion_N = mkN "fashion" "fashions" ; -- compound ion_N ;
-lin refashion_N = mkN "refashion" "refashions" ; -- compound ion_N ;
-lin cushion_N = mkN "cushion" "cushions" ; -- compound ion_N ;
-lin pincushion_N = mkN "pincushion" "pincushions" ; -- compound ion_N ;
-lin gnathion_N = mkN "gnathion" "gnathions" ; -- compound ion_N ;
-lin parathion_N = mkN "parathion" "parathions" ; -- compound ion_N ;
-lin acanthion_N = mkN "acanthion" "acanthions" ; -- compound ion_N ;
-lin prosthion_N = mkN "prosthion" "prosthions" ; -- compound ion_N ;
-lin lion_N = mkN "lion" "lions" ; -- notcompound ion_N ;
-lin 'sea-lion_N' = mkN "sea-lion" "sea-lions" ; -- compound ion_N ;
-lin tatterdemalion_N = mkN "tatterdemalion" "tatterdemalions" ; -- compound ion_N ;
-lin battalion_N = mkN "battalion" "battalions" ; -- compound ion_N ;
-lin obelion_N = mkN "obelion" "obelions" ; -- compound ion_N ;
-lin dandelion_N = mkN "dandelion" "dandelions" ; -- compound ion_N ;
-lin perihelion_N = mkN "perihelion" "perihelions" ; -- compound ion_N ;
-lin aphelion_N = mkN "aphelion" "aphelions" ; -- compound ion_N ;
-lin parhelion_N = mkN "parhelion" "parhelions" ; -- compound ion_N ;
-lin tetraskelion_N = mkN "tetraskelion" "tetraskelions" ; -- compound ion_N ;
-lin triskelion_N = mkN "triskelion" "triskelions" ; -- compound ion_N ;
-lin ganglion_N = mkN "ganglion" "ganglions" ; -- compound ion_N ;
-lin vermilion_N = mkN "vermilion" "vermilions" ; -- compound ion_N ;
-lin cotilion_N = mkN "cotilion" "cotilions" ; -- compound ion_N ;
-lin postilion_N = mkN "postilion" "postilions" ; -- compound ion_N ;
-lin pavilion_N = mkN "pavilion" "pavilions" ; -- compound ion_N ;
-lin rapscallion_N = mkN "rapscallion" "rapscallions" ; -- compound ion_N ;
-lin medallion_N = mkN "medallion" "medallions" ; -- compound ion_N ;
-lin stallion_N = mkN "stallion" "stallions" ; -- compound ion_N ;
-lin rebellion_N = mkN "rebellion" "rebellions" ; -- compound ion_N ;
-lin hellion_N = mkN "hellion" "hellions" ; -- compound ion_N ;
-lin billion_N = mkN "billion" "billions" ; -- compound ion_N ;
-lin modillion_N = mkN "modillion" "modillions" ; -- compound ion_N ;
-lin million_N = mkN "million" "millions" ; -- compound ion_N ;
-lin pillion_N = mkN "pillion" "pillions" ; -- compound ion_N ;
-lin quadrillion_N = mkN "quadrillion" "quadrillions" ; -- compound ion_N ;
-lin trillion_N = mkN "trillion" "trillions" ; -- compound ion_N ;
-lin octillion_N = mkN "octillion" "octillions" ; -- compound ion_N ;
-lin quintillion_N = mkN "quintillion" "quintillions" ; -- compound ion_N ;
-lin cotillion_N = mkN "cotillion" "cotillions" ; -- compound ion_N ;
-lin septillion_N = mkN "septillion" "septillions" ; -- compound ion_N ;
-lin postillion_N = mkN "postillion" "postillions" ; -- compound ion_N ;
-lin sextillion_N = mkN "sextillion" "sextillions" ; -- compound ion_N ;
-lin bullion_N = mkN "bullion" "bullions" ; -- compound ion_N ;
-lin scullion_N = mkN "scullion" "scullions" ; -- compound ion_N ;
-lin slumgullion_N = mkN "slumgullion" "slumgullions" ; -- compound ion_N ;
-lin mullion_N = mkN "mullion" "mullions" ; -- compound ion_N ;
-lin scolion_N = mkN "scolion" "scolions" ; -- compound ion_N ;
-lin condylion_N = mkN "condylion" "condylions" ; -- compound ion_N ;
-lin camion_N = mkN "camion" "camions" ; -- compound ion_N ;
-lin prothalamion_N = mkN "prothalamion" "prothalamions" ; -- compound ion_N ;
-lin acromion_N = mkN "acromion" "acromions" ; -- compound ion_N ;
-lin entomion_N = mkN "entomion" "entomions" ; -- compound ion_N ;
-lin fermion_N = mkN "fermion" "fermions" ; -- compound ion_N ;
-lin thermion_N = mkN "thermion" "thermions" ; -- compound ion_N ;
-lin anion_N = mkN "anion" "anions" ; -- compound ion_N ;
-lin fanion_N = mkN "fanion" "fanions" ; -- compound ion_N ;
-lin stephanion_N = mkN "stephanion" "stephanions" ; -- compound ion_N ;
-lin companion_N = mkN "companion" "companions" ; -- compound ion_N ;
-lin 'stable-companion_N' = mkN "stable-companion" "stable-companions" ; -- compound ion_N ;
-lin sphenion_N = mkN "sphenion" "sphenions" ; -- compound ion_N ;
-lin inion_N = mkN "inion" "inions" ; -- compound ion_N ;
-lin rhinion_N = mkN "rhinion" "rhinions" ; -- compound ion_N ;
-lin minion_N = mkN "minion" "minions" ; -- compound ion_N ;
-lin dominion_N = mkN "dominion" "dominions" ; -- compound ion_N ;
-lin pinion_N = mkN "pinion" "pinions" ; -- compound ion_N ;
-lin opinion_N = mkN "opinion" "opinions" ; -- compound ion_N ;
-lin amnion_N = mkN "amnion" "amnions" ; -- compound ion_N ;
-lin onion_N = mkN "onion" "onions" ; -- compound ion_N ;
-lin gonion_N = mkN "gonion" "gonions" ; -- compound ion_N ;
-lin pogonion_N = mkN "pogonion" "pogonions" ; -- compound ion_N ;
-lin coronion_N = mkN "coronion" "coronions" ; -- compound ion_N ;
-lin union_N = mkN "union" "unions" ; -- compound ion_N ;
-lin 'trade-union_N' = mkN "trade-union" "trade-unions" ; -- compound ion_N ;
-lin 'trades-union_N' = mkN "trades-union" "trades-unions" ; -- compound ion_N ;
-lin bunion_N = mkN "bunion" "bunions" ; -- compound ion_N ;
-lin reunion_N = mkN "reunion" "reunions" ; -- compound ion_N ;
-lin communion_N = mkN "communion" "communions" ; -- compound ion_N ;
-lin 'self-communion_N' = mkN "self-communion" "self-communions" ; -- compound ion_N ;
-lin intercommunion_N = mkN "intercommunion" "intercommunions" ; -- compound ion_N ;
-lin disunion_N = mkN "disunion" "disunions" ; -- compound ion_N ;
-lin pion_N = mkN "pion" "pions" ; -- notcompound ion_N ;
-lin campion_N = mkN "campion" "campions" ; -- compound ion_N ;
-lin champion_N = mkN "champion" "champions" ; -- compound ion_N ;
-lin rampion_N = mkN "rampion" "rampions" ; -- compound ion_N ;
-lin tampion_N = mkN "tampion" "tampions" ; -- compound ion_N ;
-lin metopion_N = mkN "metopion" "metopions" ; -- compound ion_N ;
-lin scorpion_N = mkN "scorpion" "scorpions" ; -- compound ion_N ;
-lin clarion_N = mkN "clarion" "clarions" ; -- compound ion_N ;
-lin mitochondrion_N = mkN "mitochondrion" "mitochondrions" ; -- compound ion_N ;
-lin kerion_N = mkN "kerion" "kerions" ; -- compound ion_N ;
-lin criterion_2_N = mkN "criterion" "criterions" ; -- compound ion_N ;
-lin pterion_N = mkN "pterion" "pterions" ; -- compound ion_N ;
-lin asterion_N = mkN "asterion" "asterions" ; -- compound ion_N ;
-lin virion_N = mkN "virion" "virions" ; -- compound ion_N ;
-lin chorion_N = mkN "chorion" "chorions" ; -- compound ion_N ;
-lin morion_N = mkN "morion" "morions" ; -- compound ion_N ;
-lin prion_N = mkN "prion" "prions" ; -- notcompound ion_N ;
-lin carrion_N = mkN "carrion" "carrions" ; -- compound ion_N ;
-lin centurion_N = mkN "centurion" "centurions" ; -- compound ion_N ;
-lin occasion_N = mkN "occasion" "occasions" ; -- compound ion_N ;
-lin nasion_N = mkN "nasion" "nasions" ; -- compound ion_N ;
-lin abrasion_N = mkN "abrasion" "abrasions" ; -- compound ion_N ;
-lin dermabrasion_N = mkN "dermabrasion" "dermabrasions" ; -- compound ion_N ;
-lin suasion_N = mkN "suasion" "suasions" ; -- compound ion_N ;
-lin persuasion_N = mkN "persuasion" "persuasions" ; -- compound ion_N ;
-lin dissuasion_N = mkN "dissuasion" "dissuasions" ; -- compound ion_N ;
-lin evasion_N = mkN "evasion" "evasions" ; -- compound ion_N ;
-lin invasion_N = mkN "invasion" "invasions" ; -- compound ion_N ;
-lin pervasion_N = mkN "pervasion" "pervasions" ; -- compound ion_N ;
-lin adhesion_N = mkN "adhesion" "adhesions" ; -- compound ion_N ;
-lin cohesion_N = mkN "cohesion" "cohesions" ; -- compound ion_N ;
-lin lesion_N = mkN "lesion" "lesions" ; -- compound ion_N ;
-lin decision_N = mkN "decision" "decisions" ; -- compound ion_N ;
-lin indecision_N = mkN "indecision" "indecisions" ; -- compound ion_N ;
-lin precision_N = mkN "precision" "precisions" ; -- compound ion_N ;
-lin imprecision_N = mkN "imprecision" "imprecisions" ; -- compound ion_N ;
-lin circumcision_N = mkN "circumcision" "circumcisions" ; -- compound ion_N ;
-lin incision_N = mkN "incision" "incisions" ; -- compound ion_N ;
-lin excision_N = mkN "excision" "excisions" ; -- compound ion_N ;
-lin elision_N = mkN "elision" "elisions" ; -- compound ion_N ;
-lin collision_N = mkN "collision" "collisions" ; -- compound ion_N ;
-lin derision_N = mkN "derision" "derisions" ; -- compound ion_N ;
-lin vision_N = mkN "vision" "visions" ; -- compound ion_N ;
-lin television_N = mkN "television" "televisions" ; -- compound ion_N ;
-lin revision_N = mkN "revision" "revisions" ; -- compound ion_N ;
-lin prevision_N = mkN "prevision" "previsions" ; -- compound ion_N ;
-lin division_N = mkN "division" "divisions" ; -- compound ion_N ;
-lin 'word-division_N' = mkN "word-division" "word-divisions" ; -- compound ion_N ;
-lin 'cross-division_N' = mkN "cross-division" "cross-divisions" ; -- compound ion_N ;
-lin subdivision_N = mkN "subdivision" "subdivisions" ; -- compound ion_N ;
-lin provision_N = mkN "provision" "provisions" ; -- compound ion_N ;
-lin retrovision_N = mkN "retrovision" "retrovisions" ; -- compound ion_N ;
-lin supervision_N = mkN "supervision" "supervisions" ; -- compound ion_N ;
-lin emulsion_N = mkN "emulsion" "emulsions" ; -- compound ion_N ;
-lin repulsion_N = mkN "repulsion" "repulsions" ; -- compound ion_N ;
-lin impulsion_N = mkN "impulsion" "impulsions" ; -- compound ion_N ;
-lin compulsion_N = mkN "compulsion" "compulsions" ; -- compound ion_N ;
-lin propulsion_N = mkN "propulsion" "propulsions" ; -- compound ion_N ;
-lin expulsion_N = mkN "expulsion" "expulsions" ; -- compound ion_N ;
-lin avulsion_N = mkN "avulsion" "avulsions" ; -- compound ion_N ;
-lin revulsion_N = mkN "revulsion" "revulsions" ; -- compound ion_N ;
-lin convulsion_N = mkN "convulsion" "convulsions" ; -- compound ion_N ;
-lin scansion_N = mkN "scansion" "scansions" ; -- compound ion_N ;
-lin mansion_N = mkN "mansion" "mansions" ; -- compound ion_N ;
-lin expansion_N = mkN "expansion" "expansions" ; -- compound ion_N ;
-lin ascension_N = mkN "ascension" "ascensions" ; -- compound ion_N ;
-lin condescension_N = mkN "condescension" "condescensions" ; -- compound ion_N ;
-lin comprehension_N = mkN "comprehension" "comprehensions" ; -- compound ion_N ;
-lin incomprehension_N = mkN "incomprehension" "incomprehensions" ; -- compound ion_N ;
-lin apprehension_N = mkN "apprehension" "apprehensions" ; -- compound ion_N ;
-lin misapprehension_N = mkN "misapprehension" "misapprehensions" ; -- compound ion_N ;
-lin declension_N = mkN "declension" "declensions" ; -- compound ion_N ;
-lin dimension_N = mkN "dimension" "dimensions" ; -- compound ion_N ;
-lin pension_N = mkN "pension" "pensions" ; -- compound ion_N ;
-lin suspension_N = mkN "suspension" "suspensions" ; -- compound ion_N ;
-lin resuspension_N = mkN "resuspension" "resuspensions" ; -- compound ion_N ;
-lin dissension_N = mkN "dissension" "dissensions" ; -- compound ion_N ;
-lin tension_N = mkN "tension" "tensions" ; -- compound ion_N ;
-lin pretension_N = mkN "pretension" "pretensions" ; -- compound ion_N ;
-lin intension_N = mkN "intension" "intensions" ; -- compound ion_N ;
-lin hypotension_N = mkN "hypotension" "hypotensions" ; -- compound ion_N ;
-lin distension_N = mkN "distension" "distensions" ; -- compound ion_N ;
-lin extension_N = mkN "extension" "extensions" ; -- compound ion_N ;
-lin coextension_N = mkN "coextension" "coextensions" ; -- compound ion_N ;
-lin hyperextension_N = mkN "hyperextension" "hyperextensions" ; -- compound ion_N ;
-lin plosion_N = mkN "plosion" "plosions" ; -- compound ion_N ;
-lin implosion_N = mkN "implosion" "implosions" ; -- compound ion_N ;
-lin explosion_N = mkN "explosion" "explosions" ; -- compound ion_N ;
-lin erosion_N = mkN "erosion" "erosions" ; -- compound ion_N ;
-lin corrosion_N = mkN "corrosion" "corrosions" ; -- compound ion_N ;
-lin submersion_N = mkN "submersion" "submersions" ; -- compound ion_N ;
-lin immersion_N = mkN "immersion" "immersions" ; -- compound ion_N ;
-lin aspersion_N = mkN "aspersion" "aspersions" ; -- compound ion_N ;
-lin dispersion_N = mkN "dispersion" "dispersions" ; -- compound ion_N ;
-lin interspersion_N = mkN "interspersion" "interspersions" ; -- compound ion_N ;
-lin version_N = mkN "version" "versions" ; -- compound ion_N ;
-lin aversion_N = mkN "aversion" "aversions" ; -- compound ion_N ;
-lin extraversion_N = mkN "extraversion" "extraversions" ; -- compound ion_N ;
-lin subversion_N = mkN "subversion" "subversions" ; -- compound ion_N ;
-lin countersubversion_N = mkN "countersubversion" "countersubversions" ; -- compound ion_N ;
-lin animadversion_N = mkN "animadversion" "animadversions" ; -- compound ion_N ;
-lin eversion_N = mkN "eversion" "eversions" ; -- compound ion_N ;
-lin reversion_N = mkN "reversion" "reversions" ; -- compound ion_N ;
-lin ambiversion_N = mkN "ambiversion" "ambiversions" ; -- compound ion_N ;
-lin diversion_N = mkN "diversion" "diversions" ; -- compound ion_N ;
-lin inversion_N = mkN "inversion" "inversions" ; -- compound ion_N ;
-lin conversion_N = mkN "conversion" "conversions" ; -- compound ion_N ;
-lin retroversion_N = mkN "retroversion" "retroversions" ; -- compound ion_N ;
-lin introversion_N = mkN "introversion" "introversions" ; -- compound ion_N ;
-lin extroversion_N = mkN "extroversion" "extroversions" ; -- compound ion_N ;
-lin perversion_N = mkN "perversion" "perversions" ; -- compound ion_N ;
-lin torsion_N = mkN "torsion" "torsions" ; -- compound ion_N ;
-lin recursion_N = mkN "recursion" "recursions" ; -- compound ion_N ;
-lin incursion_N = mkN "incursion" "incursions" ; -- compound ion_N ;
-lin excursion_N = mkN "excursion" "excursions" ; -- compound ion_N ;
-lin passion_N = mkN "passion" "passions" ; -- compound ion_N ;
-lin compassion_N = mkN "compassion" "compassions" ; -- compound ion_N ;
-lin dispassion_N = mkN "dispassion" "dispassions" ; -- compound ion_N ;
-lin cession_N = mkN "cession" "cessions" ; -- compound ion_N ;
-lin accession_N = mkN "accession" "accessions" ; -- compound ion_N ;
-lin succession_N = mkN "succession" "successions" ; -- compound ion_N ;
-lin recession_N = mkN "recession" "recessions" ; -- compound ion_N ;
-lin precession_N = mkN "precession" "precessions" ; -- compound ion_N ;
-lin secession_N = mkN "secession" "secessions" ; -- compound ion_N ;
-lin concession_N = mkN "concession" "concessions" ; -- compound ion_N ;
-lin procession_N = mkN "procession" "processions" ; -- compound ion_N ;
-lin intercession_N = mkN "intercession" "intercessions" ; -- compound ion_N ;
-lin confession_N = mkN "confession" "confessions" ; -- compound ion_N ;
-lin profession_N = mkN "profession" "professions" ; -- compound ion_N ;
-lin regression_N = mkN "regression" "regressions" ; -- compound ion_N ;
-lin aggression_N = mkN "aggression" "aggressions" ; -- compound ion_N ;
-lin nonaggression_N = mkN "nonaggression" "nonaggressions" ; -- compound ion_N ;
-lin digression_N = mkN "digression" "digressions" ; -- compound ion_N ;
-lin progression_N = mkN "progression" "progressions" ; -- compound ion_N ;
-lin retrogression_N = mkN "retrogression" "retrogressions" ; -- compound ion_N ;
-lin transgression_N = mkN "transgression" "transgressions" ; -- compound ion_N ;
-lin depression_N = mkN "depression" "depressions" ; -- compound ion_N ;
-lin repression_N = mkN "repression" "repressions" ; -- compound ion_N ;
-lin impression_N = mkN "impression" "impressions" ; -- compound ion_N ;
-lin compression_N = mkN "compression" "compressions" ; -- compound ion_N ;
-lin decompression_N = mkN "decompression" "decompressions" ; -- compound ion_N ;
-lin oppression_N = mkN "oppression" "oppressions" ; -- compound ion_N ;
-lin suppression_N = mkN "suppression" "suppressions" ; -- compound ion_N ;
-lin immunosuppression_N = mkN "immunosuppression" "immunosuppressions" ; -- compound ion_N ;
-lin expression_N = mkN "expression" "expressions" ; -- compound ion_N ;
-lin session_N = mkN "session" "sessions" ; -- compound ion_N ;
-lin obsession_N = mkN "obsession" "obsessions" ; -- compound ion_N ;
-lin supersession_N = mkN "supersession" "supersessions" ; -- compound ion_N ;
-lin possession_N = mkN "possession" "possessions" ; -- compound ion_N ;
-lin 'self-possession_N' = mkN "self-possession" "self-possessions" ; -- compound ion_N ;
-lin repossession_N = mkN "repossession" "repossessions" ; -- compound ion_N ;
-lin prepossession_N = mkN "prepossession" "prepossessions" ; -- compound ion_N ;
-lin dispossession_N = mkN "dispossession" "dispossessions" ; -- compound ion_N ;
-lin recission_N = mkN "recission" "recissions" ; -- compound ion_N ;
-lin scission_N = mkN "scission" "scissions" ; -- compound ion_N ;
-lin abscission_N = mkN "abscission" "abscissions" ; -- compound ion_N ;
-lin fission_N = mkN "fission" "fissions" ; -- compound ion_N ;
-lin mission_N = mkN "mission" "missions" ; -- compound ion_N ;
-lin submission_N = mkN "submission" "submissions" ; -- compound ion_N ;
-lin admission_N = mkN "admission" "admissions" ; -- compound ion_N ;
-lin readmission_N = mkN "readmission" "readmissions" ; -- compound ion_N ;
-lin emission_N = mkN "emission" "emissions" ; -- compound ion_N ;
-lin photoemission_N = mkN "photoemission" "photoemissions" ; -- compound ion_N ;
-lin remission_N = mkN "remission" "remissions" ; -- compound ion_N ;
-lin commission_N = mkN "commission" "commissions" ; -- compound ion_N ;
-lin omission_N = mkN "omission" "omissions" ; -- compound ion_N ;
-lin permission_N = mkN "permission" "permissions" ; -- compound ion_N ;
-lin pretermission_N = mkN "pretermission" "pretermissions" ; -- compound ion_N ;
-lin intermission_N = mkN "intermission" "intermissions" ; -- compound ion_N ;
-lin transmission_N = mkN "transmission" "transmissions" ; -- compound ion_N ;
-lin manumission_N = mkN "manumission" "manumissions" ; -- compound ion_N ;
-lin succussion_N = mkN "succussion" "succussions" ; -- compound ion_N ;
-lin concussion_N = mkN "concussion" "concussions" ; -- compound ion_N ;
-lin percussion_N = mkN "percussion" "percussions" ; -- compound ion_N ;
-lin repercussion_N = mkN "repercussion" "repercussions" ; -- compound ion_N ;
-lin discussion_N = mkN "discussion" "discussions" ; -- compound ion_N ;
-lin fusion_N = mkN "fusion" "fusions" ; -- compound ion_N ;
-lin affusion_N = mkN "affusion" "affusions" ; -- compound ion_N ;
-lin effusion_N = mkN "effusion" "effusions" ; -- compound ion_N ;
-lin diffusion_N = mkN "diffusion" "diffusions" ; -- compound ion_N ;
-lin rediffusion_N = mkN "rediffusion" "rediffusions" ; -- compound ion_N ;
-lin suffusion_N = mkN "suffusion" "suffusions" ; -- compound ion_N ;
-lin infusion_N = mkN "infusion" "infusions" ; -- compound ion_N ;
-lin confusion_N = mkN "confusion" "confusions" ; -- compound ion_N ;
-lin profusion_N = mkN "profusion" "profusions" ; -- compound ion_N ;
-lin perfusion_N = mkN "perfusion" "perfusions" ; -- compound ion_N ;
-lin transfusion_N = mkN "transfusion" "transfusions" ; -- compound ion_N ;
-lin 'blood-transfusion_N' = mkN "blood-transfusion" "blood-transfusions" ; -- compound ion_N ;
-lin occlusion_N = mkN "occlusion" "occlusions" ; -- compound ion_N ;
-lin abocclusion_N = mkN "abocclusion" "abocclusions" ; -- compound ion_N ;
-lin malocclusion_N = mkN "malocclusion" "malocclusions" ; -- compound ion_N ;
-lin preclusion_N = mkN "preclusion" "preclusions" ; -- compound ion_N ;
-lin seclusion_N = mkN "seclusion" "seclusions" ; -- compound ion_N ;
-lin inclusion_N = mkN "inclusion" "inclusions" ; -- compound ion_N ;
-lin conclusion_N = mkN "conclusion" "conclusions" ; -- compound ion_N ;
-lin exclusion_N = mkN "exclusion" "exclusions" ; -- compound ion_N ;
-lin delusion_N = mkN "delusion" "delusions" ; -- compound ion_N ;
-lin allusion_N = mkN "allusion" "allusions" ; -- compound ion_N ;
-lin illusion_N = mkN "illusion" "illusions" ; -- compound ion_N ;
-lin disillusion_N = mkN "disillusion" "disillusions" ; -- compound ion_N ;
-lin collusion_N = mkN "collusion" "collusions" ; -- compound ion_N ;
-lin intrusion_N = mkN "intrusion" "intrusions" ; -- compound ion_N ;
-lin protrusion_N = mkN "protrusion" "protrusions" ; -- compound ion_N ;
-lin extrusion_N = mkN "extrusion" "extrusions" ; -- compound ion_N ;
-lin contusion_N = mkN "contusion" "contusions" ; -- compound ion_N ;
-lin symphysion_N = mkN "symphysion" "symphysions" ; -- compound ion_N ;
-lin libation_N = mkN "libation" "libations" ; -- compound ion_N ;
-lin probation_N = mkN "probation" "probations" ; -- compound ion_N ;
-lin reprobation_N = mkN "reprobation" "reprobations" ; -- compound ion_N ;
-lin approbation_N = mkN "approbation" "approbations" ; -- compound ion_N ;
-lin disapprobation_N = mkN "disapprobation" "disapprobations" ; -- compound ion_N ;
-lin exacerbation_N = mkN "exacerbation" "exacerbations" ; -- compound ion_N ;
-lin conurbation_N = mkN "conurbation" "conurbations" ; -- compound ion_N ;
-lin perturbation_N = mkN "perturbation" "perturbations" ; -- compound ion_N ;
-lin masturbation_N = mkN "masturbation" "masturbations" ; -- compound ion_N ;
-lin incubation_N = mkN "incubation" "incubations" ; -- compound ion_N ;
-lin cation_N = mkN "cation" "cations" ; -- compound ion_N ;
-lin placation_N = mkN "placation" "placations" ; -- compound ion_N ;
-lin vacation_N = mkN "vacation" "vacations" ; -- compound ion_N ;
-lin defecation_N = mkN "defecation" "defecations" ; -- compound ion_N ;
-lin deprecation_N = mkN "deprecation" "deprecations" ; -- compound ion_N ;
-lin imprecation_N = mkN "imprecation" "imprecations" ; -- compound ion_N ;
-lin syllabication_N = mkN "syllabication" "syllabications" ; -- compound ion_N ;
-lin eradication_N = mkN "eradication" "eradications" ; -- compound ion_N ;
-lin abdication_N = mkN "abdication" "abdications" ; -- compound ion_N ;
-lin dedication_N = mkN "dedication" "dedications" ; -- compound ion_N ;
-lin rededication_N = mkN "rededication" "rededications" ; -- compound ion_N ;
-lin medication_N = mkN "medication" "medications" ; -- compound ion_N ;
-lin indication_N = mkN "indication" "indications" ; -- compound ion_N ;
-lin contraindication_N = mkN "contraindication" "contraindications" ; -- compound ion_N ;
-lin vindication_N = mkN "vindication" "vindications" ; -- compound ion_N ;
-lin syndication_N = mkN "syndication" "syndications" ; -- compound ion_N ;
-lin adjudication_N = mkN "adjudication" "adjudications" ; -- compound ion_N ;
-lin syllabification_N = mkN "syllabification" "syllabifications" ; -- compound ion_N ;
-lin pacification_N = mkN "pacification" "pacifications" ; -- compound ion_N ;
-lin opacification_N = mkN "opacification" "opacifications" ; -- compound ion_N ;
-lin specification_N = mkN "specification" "specifications" ; -- compound ion_N ;
-lin calcification_N = mkN "calcification" "calcifications" ; -- compound ion_N ;
-lin decalcification_N = mkN "decalcification" "decalcifications" ; -- compound ion_N ;
-lin edification_N = mkN "edification" "edifications" ; -- compound ion_N ;
-lin acidification_N = mkN "acidification" "acidifications" ; -- compound ion_N ;
-lin solidification_N = mkN "solidification" "solidifications" ; -- compound ion_N ;
-lin codification_N = mkN "codification" "codifications" ; -- compound ion_N ;
-lin modification_N = mkN "modification" "modifications" ; -- compound ion_N ;
-lin deification_N = mkN "deification" "deifications" ; -- compound ion_N ;
-lin preachification_N = mkN "preachification" "preachifications" ; -- compound ion_N ;
-lin qualification_N = mkN "qualification" "qualifications" ; -- compound ion_N ;
-lin disqualification_N = mkN "disqualification" "disqualifications" ; -- compound ion_N ;
-lin vilification_N = mkN "vilification" "vilifications" ; -- compound ion_N ;
-lin jollification_N = mkN "jollification" "jollifications" ; -- compound ion_N ;
-lin mollification_N = mkN "mollification" "mollifications" ; -- compound ion_N ;
-lin nullification_N = mkN "nullification" "nullifications" ; -- compound ion_N ;
-lin amplification_N = mkN "amplification" "amplifications" ; -- compound ion_N ;
-lin exemplification_N = mkN "exemplification" "exemplifications" ; -- compound ion_N ;
-lin simplification_N = mkN "simplification" "simplifications" ; -- compound ion_N ;
-lin oversimplification_N = mkN "oversimplification" "oversimplifications" ; -- compound ion_N ;
-lin ramification_N = mkN "ramification" "ramifications" ; -- compound ion_N ;
-lin mummification_N = mkN "mummification" "mummifications" ; -- compound ion_N ;
-lin humification_N = mkN "humification" "humifications" ; -- compound ion_N ;
-lin organification_N = mkN "organification" "organifications" ; -- compound ion_N ;
-lin magnification_N = mkN "magnification" "magnifications" ; -- compound ion_N ;
-lin signification_N = mkN "signification" "significations" ; -- compound ion_N ;
-lin cartilaginification_N = mkN "cartilaginification" "cartilaginifications" ; -- compound ion_N ;
-lin vinification_N = mkN "vinification" "vinifications" ; -- compound ion_N ;
-lin indemnification_N = mkN "indemnification" "indemnifications" ; -- compound ion_N ;
-lin ammonification_N = mkN "ammonification" "ammonifications" ; -- compound ion_N ;
-lin saponification_N = mkN "saponification" "saponifications" ; -- compound ion_N ;
-lin personification_N = mkN "personification" "personifications" ; -- compound ion_N ;
-lin unification_N = mkN "unification" "unifications" ; -- compound ion_N ;
-lin reunification_N = mkN "reunification" "reunifications" ; -- compound ion_N ;
-lin typification_N = mkN "typification" "typifications" ; -- compound ion_N ;
-lin clarification_N = mkN "clarification" "clarifications" ; -- compound ion_N ;
-lin verification_N = mkN "verification" "verifications" ; -- compound ion_N ;
-lin transmogrification_N = mkN "transmogrification" "transmogrifications" ; -- compound ion_N ;
-lin glorification_N = mkN "glorification" "glorifications" ; -- compound ion_N ;
-lin electrification_N = mkN "electrification" "electrifications" ; -- compound ion_N ;
-lin metrification_N = mkN "metrification" "metrifications" ; -- compound ion_N ;
-lin nitrification_N = mkN "nitrification" "nitrifications" ; -- compound ion_N ;
-lin vitrification_N = mkN "vitrification" "vitrifications" ; -- compound ion_N ;
-lin gentrification_N = mkN "gentrification" "gentrifications" ; -- compound ion_N ;
-lin purification_N = mkN "purification" "purifications" ; -- compound ion_N ;
-lin gasification_N = mkN "gasification" "gasifications" ; -- compound ion_N ;
-lin falsification_N = mkN "falsification" "falsifications" ; -- compound ion_N ;
-lin phacoemulsification_N = mkN "phacoemulsification" "phacoemulsifications" ; -- compound ion_N ;
-lin intensification_N = mkN "intensification" "intensifications" ; -- compound ion_N ;
-lin versification_N = mkN "versification" "versifications" ; -- compound ion_N ;
-lin diversification_N = mkN "diversification" "diversifications" ; -- compound ion_N ;
-lin classification_N = mkN "classification" "classifications" ; -- compound ion_N ;
-lin declassification_N = mkN "declassification" "declassifications" ; -- compound ion_N ;
-lin reclassification_N = mkN "reclassification" "reclassifications" ; -- compound ion_N ;
-lin ossification_N = mkN "ossification" "ossifications" ; -- compound ion_N ;
-lin deossification_N = mkN "deossification" "deossifications" ; -- compound ion_N ;
-lin beatification_N = mkN "beatification" "beatifications" ; -- compound ion_N ;
-lin ratification_N = mkN "ratification" "ratifications" ; -- compound ion_N ;
-lin gratification_N = mkN "gratification" "gratifications" ; -- compound ion_N ;
-lin stratification_N = mkN "stratification" "stratifications" ; -- compound ion_N ;
-lin objectification_N = mkN "objectification" "objectifications" ; -- compound ion_N ;
-lin rectification_N = mkN "rectification" "rectifications" ; -- compound ion_N ;
-lin sanctification_N = mkN "sanctification" "sanctifications" ; -- compound ion_N ;
-lin fructification_N = mkN "fructification" "fructifications" ; -- compound ion_N ;
-lin stultification_N = mkN "stultification" "stultifications" ; -- compound ion_N ;
-lin quantification_N = mkN "quantification" "quantifications" ; -- compound ion_N ;
-lin identification_N = mkN "identification" "identifications" ; -- compound ion_N ;
-lin notification_N = mkN "notification" "notifications" ; -- compound ion_N ;
-lin certification_N = mkN "certification" "certifications" ; -- compound ion_N ;
-lin desertification_N = mkN "desertification" "desertifications" ; -- compound ion_N ;
-lin fortification_N = mkN "fortification" "fortifications" ; -- compound ion_N ;
-lin mortification_N = mkN "mortification" "mortifications" ; -- compound ion_N ;
-lin justification_N = mkN "justification" "justifications" ; -- compound ion_N ;
-lin mystification_N = mkN "mystification" "mystifications" ; -- compound ion_N ;
-lin beautification_N = mkN "beautification" "beautifications" ; -- compound ion_N ;
-lin vivification_N = mkN "vivification" "vivifications" ; -- compound ion_N ;
-lin detoxification_N = mkN "detoxification" "detoxifications" ; -- compound ion_N ;
-lin denazification_N = mkN "denazification" "denazifications" ; -- compound ion_N ;
-lin eutrophication_N = mkN "eutrophication" "eutrophications" ; -- compound ion_N ;
-lin publication_N = mkN "publication" "publications" ; -- compound ion_N ;
-lin republication_N = mkN "republication" "republications" ; -- compound ion_N ;
-lin plication_N = mkN "plication" "plications" ; -- compound ion_N ;
-lin replication_N = mkN "replication" "replications" ; -- compound ion_N ;
-lin multiplication_N = mkN "multiplication" "multiplications" ; -- compound ion_N ;
-lin implication_N = mkN "implication" "implications" ; -- compound ion_N ;
-lin complication_N = mkN "complication" "complications" ; -- compound ion_N ;
-lin application_N = mkN "application" "applications" ; -- compound ion_N ;
-lin misapplication_N = mkN "misapplication" "misapplications" ; -- compound ion_N ;
-lin supplication_N = mkN "supplication" "supplications" ; -- compound ion_N ;
-lin duplication_N = mkN "duplication" "duplications" ; -- compound ion_N ;
-lin reduplication_N = mkN "reduplication" "reduplications" ; -- compound ion_N ;
-lin explication_N = mkN "explication" "explications" ; -- compound ion_N ;
-lin formication_N = mkN "formication" "formications" ; -- compound ion_N ;
-lin fornication_N = mkN "fornication" "fornications" ; -- compound ion_N ;
-lin communication_N = mkN "communication" "communications" ; -- compound ion_N ;
-lin telecommunication_N = mkN "telecommunication" "telecommunications" ; -- compound ion_N ;
-lin intercommunication_N = mkN "intercommunication" "intercommunications" ; -- compound ion_N ;
-lin excommunication_N = mkN "excommunication" "excommunications" ; -- compound ion_N ;
-lin prevarication_N = mkN "prevarication" "prevarications" ; -- compound ion_N ;
-lin divarication_N = mkN "divarication" "divarications" ; -- compound ion_N ;
-lin fabrication_N = mkN "fabrication" "fabrications" ; -- compound ion_N ;
-lin prefabrication_N = mkN "prefabrication" "prefabrications" ; -- compound ion_N ;
-lin imbrication_N = mkN "imbrication" "imbrications" ; -- compound ion_N ;
-lin lubrication_N = mkN "lubrication" "lubrications" ; -- compound ion_N ;
-lin affrication_N = mkN "affrication" "affrications" ; -- compound ion_N ;
-lin metrication_N = mkN "metrication" "metrications" ; -- compound ion_N ;
-lin extrication_N = mkN "extrication" "extrications" ; -- compound ion_N ;
-lin viatication_N = mkN "viatication" "viatications" ; -- compound ion_N ;
-lin authentication_N = mkN "authentication" "authentications" ; -- compound ion_N ;
-lin decortication_N = mkN "decortication" "decortications" ; -- compound ion_N ;
-lin urtication_N = mkN "urtication" "urtications" ; -- compound ion_N ;
-lin mastication_N = mkN "mastication" "mastications" ; -- compound ion_N ;
-lin domestication_N = mkN "domestication" "domestications" ; -- compound ion_N ;
-lin sophistication_N = mkN "sophistication" "sophistications" ; -- compound ion_N ;
-lin prognostication_N = mkN "prognostication" "prognostications" ; -- compound ion_N ;
-lin rustication_N = mkN "rustication" "rustications" ; -- compound ion_N ;
-lin intoxication_N = mkN "intoxication" "intoxications" ; -- compound ion_N ;
-lin defalcation_N = mkN "defalcation" "defalcations" ; -- compound ion_N ;
-lin inculcation_N = mkN "inculcation" "inculcations" ; -- compound ion_N ;
-lin truncation_N = mkN "truncation" "truncations" ; -- compound ion_N ;
-lin suffocation_N = mkN "suffocation" "suffocations" ; -- compound ion_N ;
-lin location_N = mkN "location" "locations" ; -- compound ion_N ;
-lin 'radio-location_N' = mkN "radio-location" "radio-locations" ; -- compound ion_N ;
-lin relocation_N = mkN "relocation" "relocations" ; -- compound ion_N ;
-lin bilocation_N = mkN "bilocation" "bilocations" ; -- compound ion_N ;
-lin allocation_N = mkN "allocation" "allocations" ; -- compound ion_N ;
-lin reallocation_N = mkN "reallocation" "reallocations" ; -- compound ion_N ;
-lin collocation_N = mkN "collocation" "collocations" ; -- compound ion_N ;
-lin echolocation_N = mkN "echolocation" "echolocations" ; -- compound ion_N ;
-lin dislocation_N = mkN "dislocation" "dislocations" ; -- compound ion_N ;
-lin translocation_N = mkN "translocation" "translocations" ; -- compound ion_N ;
-lin embrocation_N = mkN "embrocation" "embrocations" ; -- compound ion_N ;
-lin reciprocation_N = mkN "reciprocation" "reciprocations" ; -- compound ion_N ;
-lin vocation_N = mkN "vocation" "vocations" ; -- compound ion_N ;
-lin avocation_N = mkN "avocation" "avocations" ; -- compound ion_N ;
-lin evocation_N = mkN "evocation" "evocations" ; -- compound ion_N ;
-lin revocation_N = mkN "revocation" "revocations" ; -- compound ion_N ;
-lin equivocation_N = mkN "equivocation" "equivocations" ; -- compound ion_N ;
-lin invocation_N = mkN "invocation" "invocations" ; -- compound ion_N ;
-lin convocation_N = mkN "convocation" "convocations" ; -- compound ion_N ;
-lin provocation_N = mkN "provocation" "provocations" ; -- compound ion_N ;
-lin demarcation_N = mkN "demarcation" "demarcations" ; -- compound ion_N ;
-lin altercation_N = mkN "altercation" "altercations" ; -- compound ion_N ;
-lin furcation_N = mkN "furcation" "furcations" ; -- compound ion_N ;
-lin bifurcation_N = mkN "bifurcation" "bifurcations" ; -- compound ion_N ;
-lin trifurcation_N = mkN "trifurcation" "trifurcations" ; -- compound ion_N ;
-lin confiscation_N = mkN "confiscation" "confiscations" ; -- compound ion_N ;
-lin obfuscation_N = mkN "obfuscation" "obfuscations" ; -- compound ion_N ;
-lin coruscation_N = mkN "coruscation" "coruscations" ; -- compound ion_N ;
-lin education_N = mkN "education" "educations" ; -- compound ion_N ;
-lin coeducation_N = mkN "coeducation" "coeducations" ; -- compound ion_N ;
-lin gradation_N = mkN "gradation" "gradations" ; -- compound ion_N ;
-lin degradation_N = mkN "degradation" "degradations" ; -- compound ion_N ;
-lin predation_N = mkN "predation" "predations" ; -- compound ion_N ;
-lin depredation_N = mkN "depredation" "depredations" ; -- compound ion_N ;
-lin sedation_N = mkN "sedation" "sedations" ; -- compound ion_N ;
-lin elucidation_N = mkN "elucidation" "elucidations" ; -- compound ion_N ;
-lin validation_N = mkN "validation" "validations" ; -- compound ion_N ;
-lin invalidation_N = mkN "invalidation" "invalidations" ; -- compound ion_N ;
-lin consolidation_N = mkN "consolidation" "consolidations" ; -- compound ion_N ;
-lin intimidation_N = mkN "intimidation" "intimidations" ; -- compound ion_N ;
-lin dilapidation_N = mkN "dilapidation" "dilapidations" ; -- compound ion_N ;
-lin trepidation_N = mkN "trepidation" "trepidations" ; -- compound ion_N ;
-lin cuspidation_N = mkN "cuspidation" "cuspidations" ; -- compound ion_N ;
-lin fluoridation_N = mkN "fluoridation" "fluoridations" ; -- compound ion_N ;
-lin liquidation_N = mkN "liquidation" "liquidations" ; -- compound ion_N ;
-lin oxidation_N = mkN "oxidation" "oxidations" ; -- compound ion_N ;
-lin emendation_N = mkN "emendation" "emendations" ; -- compound ion_N ;
-lin commendation_N = mkN "commendation" "commendations" ; -- compound ion_N ;
-lin recommendation_N = mkN "recommendation" "recommendations" ; -- compound ion_N ;
-lin superfecundation_N = mkN "superfecundation" "superfecundations" ; -- compound ion_N ;
-lin inundation_N = mkN "inundation" "inundations" ; -- compound ion_N ;
-lin foundation_N = mkN "foundation" "foundations" ; -- compound ion_N ;
-lin accommodation_N = mkN "accommodation" "accommodations" ; -- compound ion_N ;
-lin retardation_N = mkN "retardation" "retardations" ; -- compound ion_N ;
-lin denudation_N = mkN "denudation" "denudations" ; -- compound ion_N ;
-lin exudation_N = mkN "exudation" "exudations" ; -- compound ion_N ;
-lin ideation_N = mkN "ideation" "ideations" ; -- compound ion_N ;
-lin enucleation_N = mkN "enucleation" "enucleations" ; -- compound ion_N ;
-lin permeation_N = mkN "permeation" "permeations" ; -- compound ion_N ;
-lin lineation_N = mkN "lineation" "lineations" ; -- compound ion_N ;
-lin delineation_N = mkN "delineation" "delineations" ; -- compound ion_N ;
-lin creation_N = mkN "creation" "creations" ; -- compound ion_N ;
-lin recreation_N = mkN "recreation" "recreations" ; -- compound ion_N ;
-lin procreation_N = mkN "procreation" "procreations" ; -- compound ion_N ;
-lin propagation_N = mkN "propagation" "propagations" ; -- compound ion_N ;
-lin divagation_N = mkN "divagation" "divagations" ; -- compound ion_N ;
-lin variegation_N = mkN "variegation" "variegations" ; -- compound ion_N ;
-lin legation_N = mkN "legation" "legations" ; -- compound ion_N ;
-lin delegation_N = mkN "delegation" "delegations" ; -- compound ion_N ;
-lin relegation_N = mkN "relegation" "relegations" ; -- compound ion_N ;
-lin allegation_N = mkN "allegation" "allegations" ; -- compound ion_N ;
-lin negation_N = mkN "negation" "negations" ; -- compound ion_N ;
-lin abnegation_N = mkN "abnegation" "abnegations" ; -- compound ion_N ;
-lin 'self-abnegation_N' = mkN "self-abnegation" "self-abnegations" ; -- compound ion_N ;
-lin segregation_N = mkN "segregation" "segregations" ; -- compound ion_N ;
-lin desegregation_N = mkN "desegregation" "desegregations" ; -- compound ion_N ;
-lin aggregation_N = mkN "aggregation" "aggregations" ; -- compound ion_N ;
-lin congregation_N = mkN "congregation" "congregations" ; -- compound ion_N ;
-lin ligation_N = mkN "ligation" "ligations" ; -- compound ion_N ;
-lin obligation_N = mkN "obligation" "obligations" ; -- compound ion_N ;
-lin colligation_N = mkN "colligation" "colligations" ; -- compound ion_N ;
-lin fumigation_N = mkN "fumigation" "fumigations" ; -- compound ion_N ;
-lin irrigation_N = mkN "irrigation" "irrigations" ; -- compound ion_N ;
-lin litigation_N = mkN "litigation" "litigations" ; -- compound ion_N ;
-lin mitigation_N = mkN "mitigation" "mitigations" ; -- compound ion_N ;
-lin castigation_N = mkN "castigation" "castigations" ; -- compound ion_N ;
-lin investigation_N = mkN "investigation" "investigations" ; -- compound ion_N ;
-lin instigation_N = mkN "instigation" "instigations" ; -- compound ion_N ;
-lin navigation_N = mkN "navigation" "navigations" ; -- compound ion_N ;
-lin circumnavigation_N = mkN "circumnavigation" "circumnavigations" ; -- compound ion_N ;
-lin promulgation_N = mkN "promulgation" "promulgations" ; -- compound ion_N ;
-lin elongation_N = mkN "elongation" "elongations" ; -- compound ion_N ;
-lin prolongation_N = mkN "prolongation" "prolongations" ; -- compound ion_N ;
-lin rogation_N = mkN "rogation" "rogations" ; -- compound ion_N ;
-lin abrogation_N = mkN "abrogation" "abrogations" ; -- compound ion_N ;
-lin subrogation_N = mkN "subrogation" "subrogations" ; -- compound ion_N ;
-lin derogation_N = mkN "derogation" "derogations" ; -- compound ion_N ;
-lin supererogation_N = mkN "supererogation" "supererogations" ; -- compound ion_N ;
-lin prorogation_N = mkN "prorogation" "prorogations" ; -- compound ion_N ;
-lin interrogation_N = mkN "interrogation" "interrogations" ; -- compound ion_N ;
-lin objurgation_N = mkN "objurgation" "objurgations" ; -- compound ion_N ;
-lin purgation_N = mkN "purgation" "purgations" ; -- compound ion_N ;
-lin expurgation_N = mkN "expurgation" "expurgations" ; -- compound ion_N ;
-lin centrifugation_N = mkN "centrifugation" "centrifugations" ; -- compound ion_N ;
-lin ultracentrifugation_N = mkN "ultracentrifugation" "ultracentrifugations" ; -- compound ion_N ;
-lin subjugation_N = mkN "subjugation" "subjugations" ; -- compound ion_N ;
-lin conjugation_N = mkN "conjugation" "conjugations" ; -- compound ion_N ;
-lin corrugation_N = mkN "corrugation" "corrugations" ; -- compound ion_N ;
-lin glaciation_N = mkN "glaciation" "glaciations" ; -- compound ion_N ;
-lin emaciation_N = mkN "emaciation" "emaciations" ; -- compound ion_N ;
-lin speciation_N = mkN "speciation" "speciations" ; -- compound ion_N ;
-lin depreciation_N = mkN "depreciation" "depreciations" ; -- compound ion_N ;
-lin appreciation_N = mkN "appreciation" "appreciations" ; -- compound ion_N ;
-lin officiation_N = mkN "officiation" "officiations" ; -- compound ion_N ;
-lin enunciation_N = mkN "enunciation" "enunciations" ; -- compound ion_N ;
-lin denunciation_N = mkN "denunciation" "denunciations" ; -- compound ion_N ;
-lin renunciation_N = mkN "renunciation" "renunciations" ; -- compound ion_N ;
-lin annunciation_N = mkN "annunciation" "annunciations" ; -- compound ion_N ;
-lin pronunciation_N = mkN "pronunciation" "pronunciations" ; -- compound ion_N ;
-lin mispronunciation_N = mkN "mispronunciation" "mispronunciations" ; -- compound ion_N ;
-lin association_N = mkN "association" "associations" ; -- compound ion_N ;
-lin disassociation_N = mkN "disassociation" "disassociations" ; -- compound ion_N ;
-lin dissociation_N = mkN "dissociation" "dissociations" ; -- compound ion_N ;
-lin radiation_N = mkN "radiation" "radiations" ; -- compound ion_N ;
-lin irradiation_N = mkN "irradiation" "irradiations" ; -- compound ion_N ;
-lin mediation_N = mkN "mediation" "mediations" ; -- compound ion_N ;
-lin bioremediation_N = mkN "bioremediation" "bioremediations" ; -- compound ion_N ;
-lin repudiation_N = mkN "repudiation" "repudiations" ; -- compound ion_N ;
-lin brachiation_N = mkN "brachiation" "brachiations" ; -- compound ion_N ;
-lin retaliation_N = mkN "retaliation" "retaliations" ; -- compound ion_N ;
-lin conciliation_N = mkN "conciliation" "conciliations" ; -- compound ion_N ;
-lin reconciliation_N = mkN "reconciliation" "reconciliations" ; -- compound ion_N ;
-lin affiliation_N = mkN "affiliation" "affiliations" ; -- compound ion_N ;
-lin reaffiliation_N = mkN "reaffiliation" "reaffiliations" ; -- compound ion_N ;
-lin humiliation_N = mkN "humiliation" "humiliations" ; -- compound ion_N ;
-lin palliation_N = mkN "palliation" "palliations" ; -- compound ion_N ;
-lin foliation_N = mkN "foliation" "foliations" ; -- compound ion_N ;
-lin defoliation_N = mkN "defoliation" "defoliations" ; -- compound ion_N ;
-lin exfoliation_N = mkN "exfoliation" "exfoliations" ; -- compound ion_N ;
-lin spoliation_N = mkN "spoliation" "spoliations" ; -- compound ion_N ;
-lin columniation_N = mkN "columniation" "columniations" ; -- compound ion_N ;
-lin expiation_N = mkN "expiation" "expiations" ; -- compound ion_N ;
-lin variation_N = mkN "variation" "variations" ; -- compound ion_N ;
-lin covariation_N = mkN "covariation" "covariations" ; -- compound ion_N ;
-lin inebriation_N = mkN "inebriation" "inebriations" ; -- compound ion_N ;
-lin excoriation_N = mkN "excoriation" "excoriations" ; -- compound ion_N ;
-lin appropriation_N = mkN "appropriation" "appropriations" ; -- compound ion_N ;
-lin misappropriation_N = mkN "misappropriation" "misappropriations" ; -- compound ion_N ;
-lin expropriation_N = mkN "expropriation" "expropriations" ; -- compound ion_N ;
-lin repatriation_N = mkN "repatriation" "repatriations" ; -- compound ion_N ;
-lin infuriation_N = mkN "infuriation" "infuriations" ; -- compound ion_N ;
-lin luxuriation_N = mkN "luxuriation" "luxuriations" ; -- compound ion_N ;
-lin expatiation_N = mkN "expatiation" "expatiations" ; -- compound ion_N ;
-lin ingratiation_N = mkN "ingratiation" "ingratiations" ; -- compound ion_N ;
-lin satiation_N = mkN "satiation" "satiations" ; -- compound ion_N ;
-lin initiation_N = mkN "initiation" "initiations" ; -- compound ion_N ;
-lin propitiation_N = mkN "propitiation" "propitiations" ; -- compound ion_N ;
-lin vitiation_N = mkN "vitiation" "vitiations" ; -- compound ion_N ;
-lin substantiation_N = mkN "substantiation" "substantiations" ; -- compound ion_N ;
-lin transubstantiation_N = mkN "transubstantiation" "transubstantiations" ; -- compound ion_N ;
-lin consubstantiation_N = mkN "consubstantiation" "consubstantiations" ; -- compound ion_N ;
-lin instantiation_N = mkN "instantiation" "instantiations" ; -- compound ion_N ;
-lin exponentiation_N = mkN "exponentiation" "exponentiations" ; -- compound ion_N ;
-lin differentiation_N = mkN "differentiation" "differentiations" ; -- compound ion_N ;
-lin dedifferentiation_N = mkN "dedifferentiation" "dedifferentiations" ; -- compound ion_N ;
-lin potentiation_N = mkN "potentiation" "potentiations" ; -- compound ion_N ;
-lin negotiation_N = mkN "negotiation" "negotiations" ; -- compound ion_N ;
-lin aviation_N = mkN "aviation" "aviations" ; -- compound ion_N ;
-lin obviation_N = mkN "obviation" "obviations" ; -- compound ion_N ;
-lin deviation_N = mkN "deviation" "deviations" ; -- compound ion_N ;
-lin alleviation_N = mkN "alleviation" "alleviations" ; -- compound ion_N ;
-lin abbreviation_N = mkN "abbreviation" "abbreviations" ; -- compound ion_N ;
-lin asphyxiation_N = mkN "asphyxiation" "asphyxiations" ; -- compound ion_N ;
-lin debarkation_N = mkN "debarkation" "debarkations" ; -- compound ion_N ;
-lin embarkation_N = mkN "embarkation" "embarkations" ; -- compound ion_N ;
-lin disembarkation_N = mkN "disembarkation" "disembarkations" ; -- compound ion_N ;
-lin escalation_N = mkN "escalation" "escalations" ; -- compound ion_N ;
-lin 'de-escalation_N' = mkN "de-escalation" "de-escalations" ; -- compound ion_N ;
-lin inhalation_N = mkN "inhalation" "inhalations" ; -- compound ion_N ;
-lin exhalation_N = mkN "exhalation" "exhalations" ; -- compound ion_N ;
-lin ablation_N = mkN "ablation" "ablations" ; -- compound ion_N ;
-lin oblation_N = mkN "oblation" "oblations" ; -- compound ion_N ;
-lin elation_N = mkN "elation" "elations" ; -- compound ion_N ;
-lin chelation_N = mkN "chelation" "chelations" ; -- compound ion_N ;
-lin crenelation_N = mkN "crenelation" "crenelations" ; -- compound ion_N ;
-lin relation_N = mkN "relation" "relations" ; -- compound ion_N ;
-lin 'blood-relation_N' = mkN "blood-relation" "blood-relations" ; -- compound ion_N ;
-lin interrelation_N = mkN "interrelation" "interrelations" ; -- compound ion_N ;
-lin correlation_N = mkN "correlation" "correlations" ; -- compound ion_N ;
-lin revelation_N = mkN "revelation" "revelations" ; -- compound ion_N ;
-lin deflation_N = mkN "deflation" "deflations" ; -- compound ion_N ;
-lin reflation_N = mkN "reflation" "reflations" ; -- compound ion_N ;
-lin insufflation_N = mkN "insufflation" "insufflations" ; -- compound ion_N ;
-lin stagflation_N = mkN "stagflation" "stagflations" ; -- compound ion_N ;
-lin inflation_N = mkN "inflation" "inflations" ; -- compound ion_N ;
-lin hyperinflation_N = mkN "hyperinflation" "hyperinflations" ; -- compound ion_N ;
-lin disinflation_N = mkN "disinflation" "disinflations" ; -- compound ion_N ;
-lin sibilation_N = mkN "sibilation" "sibilations" ; -- compound ion_N ;
-lin assibilation_N = mkN "assibilation" "assibilations" ; -- compound ion_N ;
-lin jubilation_N = mkN "jubilation" "jubilations" ; -- compound ion_N ;
-lin dilation_N = mkN "dilation" "dilations" ; -- compound ion_N ;
-lin vasodilation_N = mkN "vasodilation" "vasodilations" ; -- compound ion_N ;
-lin invigilation_N = mkN "invigilation" "invigilations" ; -- compound ion_N ;
-lin annihilation_N = mkN "annihilation" "annihilations" ; -- compound ion_N ;
-lin assimilation_N = mkN "assimilation" "assimilations" ; -- compound ion_N ;
-lin dissimilation_N = mkN "dissimilation" "dissimilations" ; -- compound ion_N ;
-lin epilation_N = mkN "epilation" "epilations" ; -- compound ion_N ;
-lin depilation_N = mkN "depilation" "depilations" ; -- compound ion_N ;
-lin compilation_N = mkN "compilation" "compilations" ; -- compound ion_N ;
-lin ventilation_N = mkN "ventilation" "ventilations" ; -- compound ion_N ;
-lin hyperventilation_N = mkN "hyperventilation" "hyperventilations" ; -- compound ion_N ;
-lin mutilation_N = mkN "mutilation" "mutilations" ; -- compound ion_N ;
-lin lallation_N = mkN "lallation" "lallations" ; -- compound ion_N ;
-lin spallation_N = mkN "spallation" "spallations" ; -- compound ion_N ;
-lin installation_N = mkN "installation" "installations" ; -- compound ion_N ;
-lin cancellation_N = mkN "cancellation" "cancellations" ; -- compound ion_N ;
-lin parcellation_N = mkN "parcellation" "parcellations" ; -- compound ion_N ;
-lin flagellation_N = mkN "flagellation" "flagellations" ; -- compound ion_N ;
-lin appellation_N = mkN "appellation" "appellations" ; -- compound ion_N ;
-lin interpellation_N = mkN "interpellation" "interpellations" ; -- compound ion_N ;
-lin tessellation_N = mkN "tessellation" "tessellations" ; -- compound ion_N ;
-lin constellation_N = mkN "constellation" "constellations" ; -- compound ion_N ;
-lin vacillation_N = mkN "vacillation" "vacillations" ; -- compound ion_N ;
-lin oscillation_N = mkN "oscillation" "oscillations" ; -- compound ion_N ;
-lin fibrillation_N = mkN "fibrillation" "fibrillations" ; -- compound ion_N ;
-lin defibrillation_N = mkN "defibrillation" "defibrillations" ; -- compound ion_N ;
-lin titillation_N = mkN "titillation" "titillations" ; -- compound ion_N ;
-lin cantillation_N = mkN "cantillation" "cantillations" ; -- compound ion_N ;
-lin scintillation_N = mkN "scintillation" "scintillations" ; -- compound ion_N ;
-lin distillation_N = mkN "distillation" "distillations" ; -- compound ion_N ;
-lin instillation_N = mkN "instillation" "instillations" ; -- compound ion_N ;
-lin collation_N = mkN "collation" "collations" ; -- compound ion_N ;
-lin machicolation_N = mkN "machicolation" "machicolations" ; -- compound ion_N ;
-lin percolation_N = mkN "percolation" "percolations" ; -- compound ion_N ;
-lin variolation_N = mkN "variolation" "variolations" ; -- compound ion_N ;
-lin etiolation_N = mkN "etiolation" "etiolations" ; -- compound ion_N ;
-lin violation_N = mkN "violation" "violations" ; -- compound ion_N ;
-lin immolation_N = mkN "immolation" "immolations" ; -- compound ion_N ;
-lin extrapolation_N = mkN "extrapolation" "extrapolations" ; -- compound ion_N ;
-lin interpolation_N = mkN "interpolation" "interpolations" ; -- compound ion_N ;
-lin desolation_N = mkN "desolation" "desolations" ; -- compound ion_N ;
-lin isolation_N = mkN "isolation" "isolations" ; -- compound ion_N ;
-lin insolation_N = mkN "insolation" "insolations" ; -- compound ion_N ;
-lin consolation_N = mkN "consolation" "consolations" ; -- compound ion_N ;
-lin contemplation_N = mkN "contemplation" "contemplations" ; -- compound ion_N ;
-lin legislation_N = mkN "legislation" "legislations" ; -- compound ion_N ;
-lin translation_N = mkN "translation" "translations" ; -- compound ion_N ;
-lin mistranslation_N = mkN "mistranslation" "mistranslations" ; -- compound ion_N ;
-lin confabulation_N = mkN "confabulation" "confabulations" ; -- compound ion_N ;
-lin tintinnabulation_N = mkN "tintinnabulation" "tintinnabulations" ; -- compound ion_N ;
-lin tabulation_N = mkN "tabulation" "tabulations" ; -- compound ion_N ;
-lin tribulation_N = mkN "tribulation" "tribulations" ; -- compound ion_N ;
-lin ambulation_N = mkN "ambulation" "ambulations" ; -- compound ion_N ;
-lin perambulation_N = mkN "perambulation" "perambulations" ; -- compound ion_N ;
-lin ejaculation_N = mkN "ejaculation" "ejaculations" ; -- compound ion_N ;
-lin flocculation_N = mkN "flocculation" "flocculations" ; -- compound ion_N ;
-lin peculation_N = mkN "peculation" "peculations" ; -- compound ion_N ;
-lin speculation_N = mkN "speculation" "speculations" ; -- compound ion_N ;
-lin fasciculation_N = mkN "fasciculation" "fasciculations" ; -- compound ion_N ;
-lin pandiculation_N = mkN "pandiculation" "pandiculations" ; -- compound ion_N ;
-lin vermiculation_N = mkN "vermiculation" "vermiculations" ; -- compound ion_N ;
-lin matriculation_N = mkN "matriculation" "matriculations" ; -- compound ion_N ;
-lin vesiculation_N = mkN "vesiculation" "vesiculations" ; -- compound ion_N ;
-lin reticulation_N = mkN "reticulation" "reticulations" ; -- compound ion_N ;
-lin articulation_N = mkN "articulation" "articulations" ; -- compound ion_N ;
-lin abarticulation_N = mkN "abarticulation" "abarticulations" ; -- compound ion_N ;
-lin gesticulation_N = mkN "gesticulation" "gesticulations" ; -- compound ion_N ;
-lin calculation_N = mkN "calculation" "calculations" ; -- compound ion_N ;
-lin recalculation_N = mkN "recalculation" "recalculations" ; -- compound ion_N ;
-lin miscalculation_N = mkN "miscalculation" "miscalculations" ; -- compound ion_N ;
-lin inoculation_N = mkN "inoculation" "inoculations" ; -- compound ion_N ;
-lin circulation_N = mkN "circulation" "circulations" ; -- compound ion_N ;
-lin recirculation_N = mkN "recirculation" "recirculations" ; -- compound ion_N ;
-lin emasculation_N = mkN "emasculation" "emasculations" ; -- compound ion_N ;
-lin osculation_N = mkN "osculation" "osculations" ; -- compound ion_N ;
-lin adulation_N = mkN "adulation" "adulations" ; -- compound ion_N ;
-lin stridulation_N = mkN "stridulation" "stridulations" ; -- compound ion_N ;
-lin undulation_N = mkN "undulation" "undulations" ; -- compound ion_N ;
-lin modulation_N = mkN "modulation" "modulations" ; -- compound ion_N ;
-lin demodulation_N = mkN "demodulation" "demodulations" ; -- compound ion_N ;
-lin coagulation_N = mkN "coagulation" "coagulations" ; -- compound ion_N ;
-lin anticoagulation_N = mkN "anticoagulation" "anticoagulations" ; -- compound ion_N ;
-lin thermocoagulation_N = mkN "thermocoagulation" "thermocoagulations" ; -- compound ion_N ;
-lin photocoagulation_N = mkN "photocoagulation" "photocoagulations" ; -- compound ion_N ;
-lin regulation_N = mkN "regulation" "regulations" ; -- compound ion_N ;
-lin deregulation_N = mkN "deregulation" "deregulations" ; -- compound ion_N ;
-lin autoregulation_N = mkN "autoregulation" "autoregulations" ; -- compound ion_N ;
-lin angulation_N = mkN "angulation" "angulations" ; -- compound ion_N ;
-lin triangulation_N = mkN "triangulation" "triangulations" ; -- compound ion_N ;
-lin strangulation_N = mkN "strangulation" "strangulations" ; -- compound ion_N ;
-lin pullulation_N = mkN "pullulation" "pullulations" ; -- compound ion_N ;
-lin ululation_N = mkN "ululation" "ululations" ; -- compound ion_N ;
-lin emulation_N = mkN "emulation" "emulations" ; -- compound ion_N ;
-lin simulation_N = mkN "simulation" "simulations" ; -- compound ion_N ;
-lin dissimulation_N = mkN "dissimulation" "dissimulations" ; -- compound ion_N ;
-lin stimulation_N = mkN "stimulation" "stimulations" ; -- compound ion_N ;
-lin formulation_N = mkN "formulation" "formulations" ; -- compound ion_N ;
-lin accumulation_N = mkN "accumulation" "accumulations" ; -- compound ion_N ;
-lin granulation_N = mkN "granulation" "granulations" ; -- compound ion_N ;
-lin cannulation_N = mkN "cannulation" "cannulations" ; -- compound ion_N ;
-lin manipulation_N = mkN "manipulation" "manipulations" ; -- compound ion_N ;
-lin stipulation_N = mkN "stipulation" "stipulations" ; -- compound ion_N ;
-lin copulation_N = mkN "copulation" "copulations" ; -- compound ion_N ;
-lin population_N = mkN "population" "populations" ; -- compound ion_N ;
-lin subpopulation_N = mkN "subpopulation" "subpopulations" ; -- compound ion_N ;
-lin depopulation_N = mkN "depopulation" "depopulations" ; -- compound ion_N ;
-lin overpopulation_N = mkN "overpopulation" "overpopulations" ; -- compound ion_N ;
-lin gastrulation_N = mkN "gastrulation" "gastrulations" ; -- compound ion_N ;
-lin insulation_N = mkN "insulation" "insulations" ; -- compound ion_N ;
-lin encapsulation_N = mkN "encapsulation" "encapsulations" ; -- compound ion_N ;
-lin congratulation_N = mkN "congratulation" "congratulations" ; -- compound ion_N ;
-lin capitulation_N = mkN "capitulation" "capitulations" ; -- compound ion_N ;
-lin recapitulation_N = mkN "recapitulation" "recapitulations" ; -- compound ion_N ;
-lin postulation_N = mkN "postulation" "postulations" ; -- compound ion_N ;
-lin expostulation_N = mkN "expostulation" "expostulations" ; -- compound ion_N ;
-lin ovulation_N = mkN "ovulation" "ovulations" ; -- compound ion_N ;
-lin anovulation_N = mkN "anovulation" "anovulations" ; -- compound ion_N ;
-lin acylation_N = mkN "acylation" "acylations" ; -- compound ion_N ;
-lin acetylation_N = mkN "acetylation" "acetylations" ; -- compound ion_N ;
-lin decarboxylation_N = mkN "decarboxylation" "decarboxylations" ; -- compound ion_N ;
-lin defamation_N = mkN "defamation" "defamations" ; -- compound ion_N ;
-lin amalgamation_N = mkN "amalgamation" "amalgamations" ; -- compound ion_N ;
-lin acclamation_N = mkN "acclamation" "acclamations" ; -- compound ion_N ;
-lin declamation_N = mkN "declamation" "declamations" ; -- compound ion_N ;
-lin reclamation_N = mkN "reclamation" "reclamations" ; -- compound ion_N ;
-lin proclamation_N = mkN "proclamation" "proclamations" ; -- compound ion_N ;
-lin exclamation_N = mkN "exclamation" "exclamations" ; -- compound ion_N ;
-lin desquamation_N = mkN "desquamation" "desquamations" ; -- compound ion_N ;
-lin cremation_N = mkN "cremation" "cremations" ; -- compound ion_N ;
-lin decimation_N = mkN "decimation" "decimations" ; -- compound ion_N ;
-lin sublimation_N = mkN "sublimation" "sublimations" ; -- compound ion_N ;
-lin acclimation_N = mkN "acclimation" "acclimations" ; -- compound ion_N ;
-lin collimation_N = mkN "collimation" "collimations" ; -- compound ion_N ;
-lin animation_N = mkN "animation" "animations" ; -- compound ion_N ;
-lin lacrimation_N = mkN "lacrimation" "lacrimations" ; -- compound ion_N ;
-lin legitimation_N = mkN "legitimation" "legitimations" ; -- compound ion_N ;
-lin intimation_N = mkN "intimation" "intimations" ; -- compound ion_N ;
-lin estimation_N = mkN "estimation" "estimations" ; -- compound ion_N ;
-lin underestimation_N = mkN "underestimation" "underestimations" ; -- compound ion_N ;
-lin approximation_N = mkN "approximation" "approximations" ; -- compound ion_N ;
-lin inflammation_N = mkN "inflammation" "inflammations" ; -- compound ion_N ;
-lin summation_N = mkN "summation" "summations" ; -- compound ion_N ;
-lin consummation_N = mkN "consummation" "consummations" ; -- compound ion_N ;
-lin automation_N = mkN "automation" "automations" ; -- compound ion_N ;
-lin affirmation_N = mkN "affirmation" "affirmations" ; -- compound ion_N ;
-lin confirmation_N = mkN "confirmation" "confirmations" ; -- compound ion_N ;
-lin formation_N = mkN "formation" "formations" ; -- compound ion_N ;
-lin 're-formation_N' = mkN "re-formation" "re-formations" ; -- compound ion_N ;
-lin 'back-formation_N' = mkN "back-formation" "back-formations" ; -- compound ion_N ;
-lin deformation_N = mkN "deformation" "deformations" ; -- compound ion_N ;
-lin reformation_N = mkN "reformation" "reformations" ; -- compound ion_N ;
-lin preformation_N = mkN "preformation" "preformations" ; -- compound ion_N ;
-lin counterreformation_N = mkN "counterreformation" "counterreformations" ; -- compound ion_N ;
-lin malformation_N = mkN "malformation" "malformations" ; -- compound ion_N ;
-lin information_N = mkN "information" "informations" ; -- compound ion_N ;
-lin disinformation_N = mkN "disinformation" "disinformations" ; -- compound ion_N ;
-lin misinformation_N = mkN "misinformation" "misinformations" ; -- compound ion_N ;
-lin conformation_N = mkN "conformation" "conformations" ; -- compound ion_N ;
-lin transformation_N = mkN "transformation" "transformations" ; -- compound ion_N ;
-lin exhumation_N = mkN "exhumation" "exhumations" ; -- compound ion_N ;
-lin nation_N = mkN "nation" "nations" ; -- compound ion_N ;
-lin profanation_N = mkN "profanation" "profanations" ; -- compound ion_N ;
-lin planation_N = mkN "planation" "planations" ; -- compound ion_N ;
-lin explanation_N = mkN "explanation" "explanations" ; -- compound ion_N ;
-lin emanation_N = mkN "emanation" "emanations" ; -- compound ion_N ;
-lin miscegenation_N = mkN "miscegenation" "miscegenations" ; -- compound ion_N ;
-lin hydrogenation_N = mkN "hydrogenation" "hydrogenations" ; -- compound ion_N ;
-lin oxygenation_N = mkN "oxygenation" "oxygenations" ; -- compound ion_N ;
-lin hyphenation_N = mkN "hyphenation" "hyphenations" ; -- compound ion_N ;
-lin alienation_N = mkN "alienation" "alienations" ; -- compound ion_N ;
-lin concatenation_N = mkN "concatenation" "concatenations" ; -- compound ion_N ;
-lin venation_N = mkN "venation" "venations" ; -- compound ion_N ;
-lin rejuvenation_N = mkN "rejuvenation" "rejuvenations" ; -- compound ion_N ;
-lin stagnation_N = mkN "stagnation" "stagnations" ; -- compound ion_N ;
-lin impregnation_N = mkN "impregnation" "impregnations" ; -- compound ion_N ;
-lin indignation_N = mkN "indignation" "indignations" ; -- compound ion_N ;
-lin designation_N = mkN "designation" "designations" ; -- compound ion_N ;
-lin resignation_N = mkN "resignation" "resignations" ; -- compound ion_N ;
-lin assignation_N = mkN "assignation" "assignations" ; -- compound ion_N ;
-lin combination_N = mkN "combination" "combinations" ; -- compound ion_N ;
-lin recombination_N = mkN "recombination" "recombinations" ; -- compound ion_N ;
-lin vaccination_N = mkN "vaccination" "vaccinations" ; -- compound ion_N ;
-lin calcination_N = mkN "calcination" "calcinations" ; -- compound ion_N ;
-lin ratiocination_N = mkN "ratiocination" "ratiocinations" ; -- compound ion_N ;
-lin fascination_N = mkN "fascination" "fascinations" ; -- compound ion_N ;
-lin hallucination_N = mkN "hallucination" "hallucinations" ; -- compound ion_N ;
-lin pseudohallucination_N = mkN "pseudohallucination" "pseudohallucinations" ; -- compound ion_N ;
-lin iodination_N = mkN "iodination" "iodinations" ; -- compound ion_N ;
-lin ordination_N = mkN "ordination" "ordinations" ; -- compound ion_N ;
-lin subordination_N = mkN "subordination" "subordinations" ; -- compound ion_N ;
-lin insubordination_N = mkN "insubordination" "insubordinations" ; -- compound ion_N ;
-lin coordination_N = mkN "coordination" "coordinations" ; -- compound ion_N ;
-lin incoordination_N = mkN "incoordination" "incoordinations" ; -- compound ion_N ;
-lin imagination_N = mkN "imagination" "imaginations" ; -- compound ion_N ;
-lin pagination_N = mkN "pagination" "paginations" ; -- compound ion_N ;
-lin invagination_N = mkN "invagination" "invaginations" ; -- compound ion_N ;
-lin machination_N = mkN "machination" "machinations" ; -- compound ion_N ;
-lin trephination_N = mkN "trephination" "trephinations" ; -- compound ion_N ;
-lin desalination_N = mkN "desalination" "desalinations" ; -- compound ion_N ;
-lin declination_N = mkN "declination" "declinations" ; -- compound ion_N ;
-lin inclination_N = mkN "inclination" "inclinations" ; -- compound ion_N ;
-lin disinclination_N = mkN "disinclination" "disinclinations" ; -- compound ion_N ;
-lin demyelination_N = mkN "demyelination" "demyelinations" ; -- compound ion_N ;
-lin pollination_N = mkN "pollination" "pollinations" ; -- compound ion_N ;
-lin deamination_N = mkN "deamination" "deaminations" ; -- compound ion_N ;
-lin lamination_N = mkN "lamination" "laminations" ; -- compound ion_N ;
-lin transamination_N = mkN "transamination" "transaminations" ; -- compound ion_N ;
-lin contamination_N = mkN "contamination" "contaminations" ; -- compound ion_N ;
-lin decontamination_N = mkN "decontamination" "decontaminations" ; -- compound ion_N ;
-lin examination_N = mkN "examination" "examinations" ; -- compound ion_N ;
-lin 'self-examination_N' = mkN "self-examination" "self-examinations" ; -- compound ion_N ;
-lin 'cross-examination_N' = mkN "cross-examination" "cross-examinations" ; -- compound ion_N ;
-lin gemination_N = mkN "gemination" "geminations" ; -- compound ion_N ;
-lin insemination_N = mkN "insemination" "inseminations" ; -- compound ion_N ;
-lin dissemination_N = mkN "dissemination" "disseminations" ; -- compound ion_N ;
-lin elimination_N = mkN "elimination" "eliminations" ; -- compound ion_N ;
-lin recrimination_N = mkN "recrimination" "recriminations" ; -- compound ion_N ;
-lin incrimination_N = mkN "incrimination" "incriminations" ; -- compound ion_N ;
-lin discrimination_N = mkN "discrimination" "discriminations" ; -- compound ion_N ;
-lin culmination_N = mkN "culmination" "culminations" ; -- compound ion_N ;
-lin fulmination_N = mkN "fulmination" "fulminations" ; -- compound ion_N ;
-lin commination_N = mkN "commination" "comminations" ; -- compound ion_N ;
-lin abomination_N = mkN "abomination" "abominations" ; -- compound ion_N ;
-lin domination_N = mkN "domination" "dominations" ; -- compound ion_N ;
-lin predomination_N = mkN "predomination" "predominations" ; -- compound ion_N ;
-lin nomination_N = mkN "nomination" "nominations" ; -- compound ion_N ;
-lin denomination_N = mkN "denomination" "denominations" ; -- compound ion_N ;
-lin germination_N = mkN "germination" "germinations" ; -- compound ion_N ;
-lin termination_N = mkN "termination" "terminations" ; -- compound ion_N ;
-lin determination_N = mkN "determination" "determinations" ; -- compound ion_N ;
-lin 'self-determination_N' = mkN "self-determination" "self-determinations" ; -- compound ion_N ;
-lin redetermination_N = mkN "redetermination" "redeterminations" ; -- compound ion_N ;
-lin predetermination_N = mkN "predetermination" "predeterminations" ; -- compound ion_N ;
-lin extermination_N = mkN "extermination" "exterminations" ; -- compound ion_N ;
-lin illumination_N = mkN "illumination" "illuminations" ; -- compound ion_N ;
-lin rumination_N = mkN "rumination" "ruminations" ; -- compound ion_N ;
-lin supination_N = mkN "supination" "supinations" ; -- compound ion_N ;
-lin peregrination_N = mkN "peregrination" "peregrinations" ; -- compound ion_N ;
-lin chlorination_N = mkN "chlorination" "chlorinations" ; -- compound ion_N ;
-lin prechlorination_N = mkN "prechlorination" "prechlorinations" ; -- compound ion_N ;
-lin indoctrination_N = mkN "indoctrination" "indoctrinations" ; -- compound ion_N ;
-lin assassination_N = mkN "assassination" "assassinations" ; -- compound ion_N ;
-lin plastination_N = mkN "plastination" "plastinations" ; -- compound ion_N ;
-lin procrastination_N = mkN "procrastination" "procrastinations" ; -- compound ion_N ;
-lin destination_N = mkN "destination" "destinations" ; -- compound ion_N ;
-lin predestination_N = mkN "predestination" "predestinations" ; -- compound ion_N ;
-lin festination_N = mkN "festination" "festinations" ; -- compound ion_N ;
-lin agglutination_N = mkN "agglutination" "agglutinations" ; -- compound ion_N ;
-lin hemagglutination_N = mkN "hemagglutination" "hemagglutinations" ; -- compound ion_N ;
-lin isoagglutination_N = mkN "isoagglutination" "isoagglutinations" ; -- compound ion_N ;
-lin ruination_N = mkN "ruination" "ruinations" ; -- compound ion_N ;
-lin divination_N = mkN "divination" "divinations" ; -- compound ion_N ;
-lin damnation_N = mkN "damnation" "damnations" ; -- compound ion_N ;
-lin condemnation_N = mkN "condemnation" "condemnations" ; -- compound ion_N ;
-lin perennation_N = mkN "perennation" "perennations" ; -- compound ion_N ;
-lin cachinnation_N = mkN "cachinnation" "cachinnations" ; -- compound ion_N ;
-lin carbonation_N = mkN "carbonation" "carbonations" ; -- compound ion_N ;
-lin donation_N = mkN "donation" "donations" ; -- compound ion_N ;
-lin condonation_N = mkN "condonation" "condonations" ; -- compound ion_N ;
-lin fractionation_N = mkN "fractionation" "fractionations" ; -- compound ion_N ;
-lin coronation_N = mkN "coronation" "coronations" ; -- compound ion_N ;
-lin pronation_N = mkN "pronation" "pronations" ; -- compound ion_N ;
-lin personation_N = mkN "personation" "personations" ; -- compound ion_N ;
-lin impersonation_N = mkN "impersonation" "impersonations" ; -- compound ion_N ;
-lin detonation_N = mkN "detonation" "detonations" ; -- compound ion_N ;
-lin intonation_N = mkN "intonation" "intonations" ; -- compound ion_N ;
-lin carnation_N = mkN "carnation" "carnations" ; -- compound ion_N ;
-lin incarnation_N = mkN "incarnation" "incarnations" ; -- compound ion_N ;
-lin reincarnation_N = mkN "reincarnation" "reincarnations" ; -- compound ion_N ;
-lin hibernation_N = mkN "hibernation" "hibernations" ; -- compound ion_N ;
-lin alternation_N = mkN "alternation" "alternations" ; -- compound ion_N ;
-lin consternation_N = mkN "consternation" "consternations" ; -- compound ion_N ;
-lin vernation_N = mkN "vernation" "vernations" ; -- compound ion_N ;
-lin subornation_N = mkN "subornation" "subornations" ; -- compound ion_N ;
-lin eburnation_N = mkN "eburnation" "eburnations" ; -- compound ion_N ;
-lin anticipation_N = mkN "anticipation" "anticipations" ; -- compound ion_N ;
-lin participation_N = mkN "participation" "participations" ; -- compound ion_N ;
-lin emancipation_N = mkN "emancipation" "emancipations" ; -- compound ion_N ;
-lin dissipation_N = mkN "dissipation" "dissipations" ; -- compound ion_N ;
-lin obstipation_N = mkN "obstipation" "obstipations" ; -- compound ion_N ;
-lin constipation_N = mkN "constipation" "constipations" ; -- compound ion_N ;
-lin palpation_N = mkN "palpation" "palpations" ; -- compound ion_N ;
-lin exculpation_N = mkN "exculpation" "exculpations" ; -- compound ion_N ;
-lin syncopation_N = mkN "syncopation" "syncopations" ; -- compound ion_N ;
-lin extirpation_N = mkN "extirpation" "extirpations" ; -- compound ion_N ;
-lin usurpation_N = mkN "usurpation" "usurpations" ; -- compound ion_N ;
-lin occupation_N = mkN "occupation" "occupations" ; -- compound ion_N ;
-lin preoccupation_N = mkN "preoccupation" "preoccupations" ; -- compound ion_N ;
-lin ration_N = mkN "ration" "rations" ; -- compound ion_N ;
-lin declaration_N = mkN "declaration" "declarations" ; -- compound ion_N ;
-lin exhilaration_N = mkN "exhilaration" "exhilarations" ; -- compound ion_N ;
-lin reparation_N = mkN "reparation" "reparations" ; -- compound ion_N ;
-lin preparation_N = mkN "preparation" "preparations" ; -- compound ion_N ;
-lin separation_N = mkN "separation" "separations" ; -- compound ion_N ;
-lin celebration_N = mkN "celebration" "celebrations" ; -- compound ion_N ;
-lin palpebration_N = mkN "palpebration" "palpebrations" ; -- compound ion_N ;
-lin cerebration_N = mkN "cerebration" "cerebrations" ; -- compound ion_N ;
-lin libration_N = mkN "libration" "librations" ; -- compound ion_N ;
-lin calibration_N = mkN "calibration" "calibrations" ; -- compound ion_N ;
-lin equilibration_N = mkN "equilibration" "equilibrations" ; -- compound ion_N ;
-lin vibration_N = mkN "vibration" "vibrations" ; -- compound ion_N ;
-lin adumbration_N = mkN "adumbration" "adumbrations" ; -- compound ion_N ;
-lin lucubration_N = mkN "lucubration" "lucubrations" ; -- compound ion_N ;
-lin desecration_N = mkN "desecration" "desecrations" ; -- compound ion_N ;
-lin consecration_N = mkN "consecration" "consecrations" ; -- compound ion_N ;
-lin execration_N = mkN "execration" "execrations" ; -- compound ion_N ;
-lin hydration_N = mkN "hydration" "hydrations" ; -- compound ion_N ;
-lin dehydration_N = mkN "dehydration" "dehydrations" ; -- compound ion_N ;
-lin aeration_N = mkN "aeration" "aerations" ; -- compound ion_N ;
-lin liberation_N = mkN "liberation" "liberations" ; -- compound ion_N ;
-lin deliberation_N = mkN "deliberation" "deliberations" ; -- compound ion_N ;
-lin reverberation_N = mkN "reverberation" "reverberations" ; -- compound ion_N ;
-lin laceration_N = mkN "laceration" "lacerations" ; -- compound ion_N ;
-lin maceration_N = mkN "maceration" "macerations" ; -- compound ion_N ;
-lin ulceration_N = mkN "ulceration" "ulcerations" ; -- compound ion_N ;
-lin incarceration_N = mkN "incarceration" "incarcerations" ; -- compound ion_N ;
-lin evisceration_N = mkN "evisceration" "eviscerations" ; -- compound ion_N ;
-lin federation_N = mkN "federation" "federations" ; -- compound ion_N ;
-lin confederation_N = mkN "confederation" "confederations" ; -- compound ion_N ;
-lin consideration_N = mkN "consideration" "considerations" ; -- compound ion_N ;
-lin reconsideration_N = mkN "reconsideration" "reconsiderations" ; -- compound ion_N ;
-lin inconsideration_N = mkN "inconsideration" "inconsiderations" ; -- compound ion_N ;
-lin moderation_N = mkN "moderation" "moderations" ; -- compound ion_N ;
-lin immoderation_N = mkN "immoderation" "immoderations" ; -- compound ion_N ;
-lin vociferation_N = mkN "vociferation" "vociferations" ; -- compound ion_N ;
-lin proliferation_N = mkN "proliferation" "proliferations" ; -- compound ion_N ;
-lin nonproliferation_N = mkN "nonproliferation" "nonproliferations" ; -- compound ion_N ;
-lin exaggeration_N = mkN "exaggeration" "exaggerations" ; -- compound ion_N ;
-lin refrigeration_N = mkN "refrigeration" "refrigerations" ; -- compound ion_N ;
-lin acceleration_N = mkN "acceleration" "accelerations" ; -- compound ion_N ;
-lin deceleration_N = mkN "deceleration" "decelerations" ; -- compound ion_N ;
-lin toleration_N = mkN "toleration" "tolerations" ; -- compound ion_N ;
-lin agglomeration_N = mkN "agglomeration" "agglomerations" ; -- compound ion_N ;
-lin conglomeration_N = mkN "conglomeration" "conglomerations" ; -- compound ion_N ;
-lin numeration_N = mkN "numeration" "numerations" ; -- compound ion_N ;
-lin enumeration_N = mkN "enumeration" "enumerations" ; -- compound ion_N ;
-lin generation_N = mkN "generation" "generations" ; -- compound ion_N ;
-lin degeneration_N = mkN "degeneration" "degenerations" ; -- compound ion_N ;
-lin regeneration_N = mkN "regeneration" "regenerations" ; -- compound ion_N ;
-lin veneration_N = mkN "veneration" "venerations" ; -- compound ion_N ;
-lin incineration_N = mkN "incineration" "incinerations" ; -- compound ion_N ;
-lin itineration_N = mkN "itineration" "itinerations" ; -- compound ion_N ;
-lin exoneration_N = mkN "exoneration" "exonerations" ; -- compound ion_N ;
-lin remuneration_N = mkN "remuneration" "remunerations" ; -- compound ion_N ;
-lin operation_N = mkN "operation" "operations" ; -- compound ion_N ;
-lin cooperation_N = mkN "cooperation" "cooperations" ; -- compound ion_N ;
-lin exasperation_N = mkN "exasperation" "exasperations" ; -- compound ion_N ;
-lin desperation_N = mkN "desperation" "desperations" ; -- compound ion_N ;
-lin recuperation_N = mkN "recuperation" "recuperations" ; -- compound ion_N ;
-lin vituperation_N = mkN "vituperation" "vituperations" ; -- compound ion_N ;
-lin commiseration_N = mkN "commiseration" "commiserations" ; -- compound ion_N ;
-lin iteration_N = mkN "iteration" "iterations" ; -- compound ion_N ;
-lin reiteration_N = mkN "reiteration" "reiterations" ; -- compound ion_N ;
-lin obliteration_N = mkN "obliteration" "obliterations" ; -- compound ion_N ;
-lin alliteration_N = mkN "alliteration" "alliterations" ; -- compound ion_N ;
-lin transliteration_N = mkN "transliteration" "transliterations" ; -- compound ion_N ;
-lin alteration_N = mkN "alteration" "alterations" ; -- compound ion_N ;
-lin adulteration_N = mkN "adulteration" "adulterations" ; -- compound ion_N ;
-lin exenteration_N = mkN "exenteration" "exenterations" ; -- compound ion_N ;
-lin perseveration_N = mkN "perseveration" "perseverations" ; -- compound ion_N ;
-lin asseveration_N = mkN "asseveration" "asseverations" ; -- compound ion_N ;
-lin deflagration_N = mkN "deflagration" "deflagrations" ; -- compound ion_N ;
-lin conflagration_N = mkN "conflagration" "conflagrations" ; -- compound ion_N ;
-lin integration_N = mkN "integration" "integrations" ; -- compound ion_N ;
-lin reintegration_N = mkN "reintegration" "reintegrations" ; -- compound ion_N ;
-lin disintegration_N = mkN "disintegration" "disintegrations" ; -- compound ion_N ;
-lin migration_N = mkN "migration" "migrations" ; -- compound ion_N ;
-lin emigration_N = mkN "emigration" "emigrations" ; -- compound ion_N ;
-lin immigration_N = mkN "immigration" "immigrations" ; -- compound ion_N ;
-lin transmigration_N = mkN "transmigration" "transmigrations" ; -- compound ion_N ;
-lin denigration_N = mkN "denigration" "denigrations" ; -- compound ion_N ;
-lin admiration_N = mkN "admiration" "admirations" ; -- compound ion_N ;
-lin aspiration_N = mkN "aspiration" "aspirations" ; -- compound ion_N ;
-lin respiration_N = mkN "respiration" "respirations" ; -- compound ion_N ;
-lin transpiration_N = mkN "transpiration" "transpirations" ; -- compound ion_N ;
-lin inspiration_N = mkN "inspiration" "inspirations" ; -- compound ion_N ;
-lin perspiration_N = mkN "perspiration" "perspirations" ; -- compound ion_N ;
-lin expiration_N = mkN "expiration" "expirations" ; -- compound ion_N ;
-lin oration_N = mkN "oration" "orations" ; -- compound ion_N ;
-lin elaboration_N = mkN "elaboration" "elaborations" ; -- compound ion_N ;
-lin collaboration_N = mkN "collaboration" "collaborations" ; -- compound ion_N ;
-lin corroboration_N = mkN "corroboration" "corroborations" ; -- compound ion_N ;
-lin decoration_N = mkN "decoration" "decorations" ; -- compound ion_N ;
-lin adoration_N = mkN "adoration" "adorations" ; -- compound ion_N ;
-lin perforation_N = mkN "perforation" "perforations" ; -- compound ion_N ;
-lin melioration_N = mkN "melioration" "meliorations" ; -- compound ion_N ;
-lin amelioration_N = mkN "amelioration" "ameliorations" ; -- compound ion_N ;
-lin deterioration_N = mkN "deterioration" "deteriorations" ; -- compound ion_N ;
-lin defloration_N = mkN "defloration" "deflorations" ; -- compound ion_N ;
-lin coloration_N = mkN "coloration" "colorations" ; -- compound ion_N ;
-lin discoloration_N = mkN "discoloration" "discolorations" ; -- compound ion_N ;
-lin exploration_N = mkN "exploration" "explorations" ; -- compound ion_N ;
-lin commemoration_N = mkN "commemoration" "commemorations" ; -- compound ion_N ;
-lin evaporation_N = mkN "evaporation" "evaporations" ; -- compound ion_N ;
-lin pervaporation_N = mkN "pervaporation" "pervaporations" ; -- compound ion_N ;
-lin corporation_N = mkN "corporation" "corporations" ; -- compound ion_N ;
-lin incorporation_N = mkN "incorporation" "incorporations" ; -- compound ion_N ;
-lin peroration_N = mkN "peroration" "perorations" ; -- compound ion_N ;
-lin proration_N = mkN "proration" "prorations" ; -- compound ion_N ;
-lin expectoration_N = mkN "expectoration" "expectorations" ; -- compound ion_N ;
-lin restoration_N = mkN "restoration" "restorations" ; -- compound ion_N ;
-lin narration_N = mkN "narration" "narrations" ; -- compound ion_N ;
-lin aberration_N = mkN "aberration" "aberrations" ; -- compound ion_N ;
-lin serration_N = mkN "serration" "serrations" ; -- compound ion_N ;
-lin susurration_N = mkN "susurration" "susurrations" ; -- compound ion_N ;
-lin penetration_N = mkN "penetration" "penetrations" ; -- compound ion_N ;
-lin interpenetration_N = mkN "interpenetration" "interpenetrations" ; -- compound ion_N ;
-lin perpetration_N = mkN "perpetration" "perpetrations" ; -- compound ion_N ;
-lin arbitration_N = mkN "arbitration" "arbitrations" ; -- compound ion_N ;
-lin titration_N = mkN "titration" "titrations" ; -- compound ion_N ;
-lin filtration_N = mkN "filtration" "filtrations" ; -- compound ion_N ;
-lin infiltration_N = mkN "infiltration" "infiltrations" ; -- compound ion_N ;
-lin concentration_N = mkN "concentration" "concentrations" ; -- compound ion_N ;
-lin eventration_N = mkN "eventration" "eventrations" ; -- compound ion_N ;
-lin castration_N = mkN "castration" "castrations" ; -- compound ion_N ;
-lin orchestration_N = mkN "orchestration" "orchestrations" ; -- compound ion_N ;
-lin fenestration_N = mkN "fenestration" "fenestrations" ; -- compound ion_N ;
-lin defenestration_N = mkN "defenestration" "defenestrations" ; -- compound ion_N ;
-lin sequestration_N = mkN "sequestration" "sequestrations" ; -- compound ion_N ;
-lin registration_N = mkN "registration" "registrations" ; -- compound ion_N ;
-lin ministration_N = mkN "ministration" "ministrations" ; -- compound ion_N ;
-lin administration_N = mkN "administration" "administrations" ; -- compound ion_N ;
-lin demonstration_N = mkN "demonstration" "demonstrations" ; -- compound ion_N ;
-lin counterdemonstration_N = mkN "counterdemonstration" "counterdemonstrations" ; -- compound ion_N ;
-lin prostration_N = mkN "prostration" "prostrations" ; -- compound ion_N ;
-lin illustration_N = mkN "illustration" "illustrations" ; -- compound ion_N ;
-lin frustration_N = mkN "frustration" "frustrations" ; -- compound ion_N ;
-lin duration_N = mkN "duration" "durations" ; -- compound ion_N ;
-lin figuration_N = mkN "figuration" "figurations" ; -- compound ion_N ;
-lin prefiguration_N = mkN "prefiguration" "prefigurations" ; -- compound ion_N ;
-lin configuration_N = mkN "configuration" "configurations" ; -- compound ion_N ;
-lin reconfiguration_N = mkN "reconfiguration" "reconfigurations" ; -- compound ion_N ;
-lin transfiguration_N = mkN "transfiguration" "transfigurations" ; -- compound ion_N ;
-lin inauguration_N = mkN "inauguration" "inaugurations" ; -- compound ion_N ;
-lin abjuration_N = mkN "abjuration" "abjurations" ; -- compound ion_N ;
-lin adjuration_N = mkN "adjuration" "adjurations" ; -- compound ion_N ;
-lin conjuration_N = mkN "conjuration" "conjurations" ; -- compound ion_N ;
-lin discolouration_N = mkN "discolouration" "discolourations" ; -- compound ion_N ;
-lin suppuration_N = mkN "suppuration" "suppurations" ; -- compound ion_N ;
-lin mensuration_N = mkN "mensuration" "mensurations" ; -- compound ion_N ;
-lin maturation_N = mkN "maturation" "maturations" ; -- compound ion_N ;
-lin saturation_N = mkN "saturation" "saturations" ; -- compound ion_N ;
-lin acculturation_N = mkN "acculturation" "acculturations" ; -- compound ion_N ;
-lin gyration_N = mkN "gyration" "gyrations" ; -- compound ion_N ;
-lin intravasation_N = mkN "intravasation" "intravasations" ; -- compound ion_N ;
-lin extravasation_N = mkN "extravasation" "extravasations" ; -- compound ion_N ;
-lin globalisation_N = mkN "globalisation" "globalisations" ; -- compound ion_N ;
-lin legalisation_N = mkN "legalisation" "legalisations" ; -- compound ion_N ;
-lin industrialisation_N = mkN "industrialisation" "industrialisations" ; -- compound ion_N ;
-lin normalisation_N = mkN "normalisation" "normalisations" ; -- compound ion_N ;
-lin marginalisation_N = mkN "marginalisation" "marginalisations" ; -- compound ion_N ;
-lin denationalisation_N = mkN "denationalisation" "denationalisations" ; -- compound ion_N ;
-lin institutionalisation_N = mkN "institutionalisation" "institutionalisations" ; -- compound ion_N ;
-lin liberalisation_N = mkN "liberalisation" "liberalisations" ; -- compound ion_N ;
-lin decentralisation_N = mkN "decentralisation" "decentralisations" ; -- compound ion_N ;
-lin digitalisation_N = mkN "digitalisation" "digitalisations" ; -- compound ion_N ;
-lin capitalisation_N = mkN "capitalisation" "capitalisations" ; -- compound ion_N ;
-lin destabilisation_N = mkN "destabilisation" "destabilisations" ; -- compound ion_N ;
-lin mobilisation_N = mkN "mobilisation" "mobilisations" ; -- compound ion_N ;
-lin demobilisation_N = mkN "demobilisation" "demobilisations" ; -- compound ion_N ;
-lin optimisation_N = mkN "optimisation" "optimisations" ; -- compound ion_N ;
-lin organisation_N = mkN "organisation" "organisations" ; -- compound ion_N ;
-lin reorganisation_N = mkN "reorganisation" "reorganisations" ; -- compound ion_N ;
-lin modernisation_N = mkN "modernisation" "modernisations" ; -- compound ion_N ;
-lin demilitarisation_N = mkN "demilitarisation" "demilitarisations" ; -- compound ion_N ;
-lin characterisation_N = mkN "characterisation" "characterisations" ; -- compound ion_N ;
-lin computerisation_N = mkN "computerisation" "computerisations" ; -- compound ion_N ;
-lin democratisation_N = mkN "democratisation" "democratisations" ; -- compound ion_N ;
-lin privatisation_N = mkN "privatisation" "privatisations" ; -- compound ion_N ;
-lin improvisation_N = mkN "improvisation" "improvisations" ; -- compound ion_N ;
-lin pulsation_N = mkN "pulsation" "pulsations" ; -- compound ion_N ;
-lin condensation_N = mkN "condensation" "condensations" ; -- compound ion_N ;
-lin compensation_N = mkN "compensation" "compensations" ; -- compound ion_N ;
-lin overcompensation_N = mkN "overcompensation" "overcompensations" ; -- compound ion_N ;
-lin dispensation_N = mkN "dispensation" "dispensations" ; -- compound ion_N ;
-lin sensation_N = mkN "sensation" "sensations" ; -- compound ion_N ;
-lin tergiversation_N = mkN "tergiversation" "tergiversations" ; -- compound ion_N ;
-lin malversation_N = mkN "malversation" "malversations" ; -- compound ion_N ;
-lin conversation_N = mkN "conversation" "conversations" ; -- compound ion_N ;
-lin cessation_N = mkN "cessation" "cessations" ; -- compound ion_N ;
-lin inspissation_N = mkN "inspissation" "inspissations" ; -- compound ion_N ;
-lin causation_N = mkN "causation" "causations" ; -- compound ion_N ;
-lin accusation_N = mkN "accusation" "accusations" ; -- compound ion_N ;
-lin recusation_N = mkN "recusation" "recusations" ; -- compound ion_N ;
-lin dilatation_N = mkN "dilatation" "dilatations" ; -- compound ion_N ;
-lin floatation_N = mkN "floatation" "floatations" ; -- compound ion_N ;
-lin lactation_N = mkN "lactation" "lactations" ; -- compound ion_N ;
-lin ablactation_N = mkN "ablactation" "ablactations" ; -- compound ion_N ;
-lin affectation_N = mkN "affectation" "affectations" ; -- compound ion_N ;
-lin delectation_N = mkN "delectation" "delectations" ; -- compound ion_N ;
-lin expectation_N = mkN "expectation" "expectations" ; -- compound ion_N ;
-lin dictation_N = mkN "dictation" "dictations" ; -- compound ion_N ;
-lin coarctation_N = mkN "coarctation" "coarctations" ; -- compound ion_N ;
-lin eructation_N = mkN "eructation" "eructations" ; -- compound ion_N ;
-lin superfetation_N = mkN "superfetation" "superfetations" ; -- compound ion_N ;
-lin vegetation_N = mkN "vegetation" "vegetations" ; -- compound ion_N ;
-lin interpretation_N = mkN "interpretation" "interpretations" ; -- compound ion_N ;
-lin reinterpretation_N = mkN "reinterpretation" "reinterpretations" ; -- compound ion_N ;
-lin misinterpretation_N = mkN "misinterpretation" "misinterpretations" ; -- compound ion_N ;
-lin habitation_N = mkN "habitation" "habitations" ; -- compound ion_N ;
-lin cohabitation_N = mkN "cohabitation" "cohabitations" ; -- compound ion_N ;
-lin citation_N = mkN "citation" "citations" ; -- compound ion_N ;
-lin recitation_N = mkN "recitation" "recitations" ; -- compound ion_N ;
-lin elicitation_N = mkN "elicitation" "elicitations" ; -- compound ion_N ;
-lin felicitation_N = mkN "felicitation" "felicitations" ; -- compound ion_N ;
-lin solicitation_N = mkN "solicitation" "solicitations" ; -- compound ion_N ;
-lin incitation_N = mkN "incitation" "incitations" ; -- compound ion_N ;
-lin resuscitation_N = mkN "resuscitation" "resuscitations" ; -- compound ion_N ;
-lin excitation_N = mkN "excitation" "excitations" ; -- compound ion_N ;
-lin meditation_N = mkN "meditation" "meditations" ; -- compound ion_N ;
-lin premeditation_N = mkN "premeditation" "premeditations" ; -- compound ion_N ;
-lin accreditation_N = mkN "accreditation" "accreditations" ; -- compound ion_N ;
-lin agitation_N = mkN "agitation" "agitations" ; -- compound ion_N ;
-lin prestidigitation_N = mkN "prestidigitation" "prestidigitations" ; -- compound ion_N ;
-lin cogitation_N = mkN "cogitation" "cogitations" ; -- compound ion_N ;
-lin excogitation_N = mkN "excogitation" "excogitations" ; -- compound ion_N ;
-lin regurgitation_N = mkN "regurgitation" "regurgitations" ; -- compound ion_N ;
-lin rehabilitation_N = mkN "rehabilitation" "rehabilitations" ; -- compound ion_N ;
-lin debilitation_N = mkN "debilitation" "debilitations" ; -- compound ion_N ;
-lin facilitation_N = mkN "facilitation" "facilitations" ; -- compound ion_N ;
-lin imitation_N = mkN "imitation" "imitations" ; -- compound ion_N ;
-lin limitation_N = mkN "limitation" "limitations" ; -- compound ion_N ;
-lin delimitation_N = mkN "delimitation" "delimitations" ; -- compound ion_N ;
-lin sanitation_N = mkN "sanitation" "sanitations" ; -- compound ion_N ;
-lin blaxploitation_N = mkN "blaxploitation" "blaxploitations" ; -- compound ion_N ;
-lin exploitation_N = mkN "exploitation" "exploitations" ; -- compound ion_N ;
-lin overexploitation_N = mkN "overexploitation" "overexploitations" ; -- compound ion_N ;
-lin sexploitation_N = mkN "sexploitation" "sexploitations" ; -- compound ion_N ;
-lin capitation_N = mkN "capitation" "capitations" ; -- compound ion_N ;
-lin decapitation_N = mkN "decapitation" "decapitations" ; -- compound ion_N ;
-lin crepitation_N = mkN "crepitation" "crepitations" ; -- compound ion_N ;
-lin decrepitation_N = mkN "decrepitation" "decrepitations" ; -- compound ion_N ;
-lin precipitation_N = mkN "precipitation" "precipitations" ; -- compound ion_N ;
-lin palpitation_N = mkN "palpitation" "palpitations" ; -- compound ion_N ;
-lin irritation_N = mkN "irritation" "irritations" ; -- compound ion_N ;
-lin hesitation_N = mkN "hesitation" "hesitations" ; -- compound ion_N ;
-lin visitation_N = mkN "visitation" "visitations" ; -- compound ion_N ;
-lin jactitation_N = mkN "jactitation" "jactitations" ; -- compound ion_N ;
-lin gravitation_N = mkN "gravitation" "gravitations" ; -- compound ion_N ;
-lin levitation_N = mkN "levitation" "levitations" ; -- compound ion_N ;
-lin invitation_N = mkN "invitation" "invitations" ; -- compound ion_N ;
-lin saltation_N = mkN "saltation" "saltations" ; -- compound ion_N ;
-lin exaltation_N = mkN "exaltation" "exaltations" ; -- compound ion_N ;
-lin auscultation_N = mkN "auscultation" "auscultations" ; -- compound ion_N ;
-lin consultation_N = mkN "consultation" "consultations" ; -- compound ion_N ;
-lin exultation_N = mkN "exultation" "exultations" ; -- compound ion_N ;
-lin decantation_N = mkN "decantation" "decantations" ; -- compound ion_N ;
-lin recantation_N = mkN "recantation" "recantations" ; -- compound ion_N ;
-lin incantation_N = mkN "incantation" "incantations" ; -- compound ion_N ;
-lin plantation_N = mkN "plantation" "plantations" ; -- compound ion_N ;
-lin implantation_N = mkN "implantation" "implantations" ; -- compound ion_N ;
-lin transplantation_N = mkN "transplantation" "transplantations" ; -- compound ion_N ;
-lin placentation_N = mkN "placentation" "placentations" ; -- compound ion_N ;
-lin indentation_N = mkN "indentation" "indentations" ; -- compound ion_N ;
-lin orientation_N = mkN "orientation" "orientations" ; -- compound ion_N ;
-lin reorientation_N = mkN "reorientation" "reorientations" ; -- compound ion_N ;
-lin disorientation_N = mkN "disorientation" "disorientations" ; -- compound ion_N ;
-lin lamentation_N = mkN "lamentation" "lamentations" ; -- compound ion_N ;
-lin ornamentation_N = mkN "ornamentation" "ornamentations" ; -- compound ion_N ;
-lin implementation_N = mkN "implementation" "implementations" ; -- compound ion_N ;
-lin complementation_N = mkN "complementation" "complementations" ; -- compound ion_N ;
-lin supplementation_N = mkN "supplementation" "supplementations" ; -- compound ion_N ;
-lin fragmentation_N = mkN "fragmentation" "fragmentations" ; -- compound ion_N ;
-lin segmentation_N = mkN "segmentation" "segmentations" ; -- compound ion_N ;
-lin pigmentation_N = mkN "pigmentation" "pigmentations" ; -- compound ion_N ;
-lin depigmentation_N = mkN "depigmentation" "depigmentations" ; -- compound ion_N ;
-lin hypopigmentation_N = mkN "hypopigmentation" "hypopigmentations" ; -- compound ion_N ;
-lin hyperpigmentation_N = mkN "hyperpigmentation" "hyperpigmentations" ; -- compound ion_N ;
-lin augmentation_N = mkN "augmentation" "augmentations" ; -- compound ion_N ;
-lin regimentation_N = mkN "regimentation" "regimentations" ; -- compound ion_N ;
-lin experimentation_N = mkN "experimentation" "experimentations" ; -- compound ion_N ;
-lin fomentation_N = mkN "fomentation" "fomentations" ; -- compound ion_N ;
-lin fermentation_N = mkN "fermentation" "fermentations" ; -- compound ion_N ;
-lin documentation_N = mkN "documentation" "documentations" ; -- compound ion_N ;
-lin argumentation_N = mkN "argumentation" "argumentations" ; -- compound ion_N ;
-lin instrumentation_N = mkN "instrumentation" "instrumentations" ; -- compound ion_N ;
-lin presentation_N = mkN "presentation" "presentations" ; -- compound ion_N ;
-lin representation_N = mkN "representation" "representations" ; -- compound ion_N ;
-lin misrepresentation_N = mkN "misrepresentation" "misrepresentations" ; -- compound ion_N ;
-lin ostentation_N = mkN "ostentation" "ostentations" ; -- compound ion_N ;
-lin confrontation_N = mkN "confrontation" "confrontations" ; -- compound ion_N ;
-lin flotation_N = mkN "flotation" "flotations" ; -- compound ion_N ;
-lin notation_N = mkN "notation" "notations" ; -- compound ion_N ;
-lin annotation_N = mkN "annotation" "annotations" ; -- compound ion_N ;
-lin connotation_N = mkN "connotation" "connotations" ; -- compound ion_N ;
-lin potation_N = mkN "potation" "potations" ; -- compound ion_N ;
-lin rotation_N = mkN "rotation" "rotations" ; -- compound ion_N ;
-lin dextrorotation_N = mkN "dextrorotation" "dextrorotations" ; -- compound ion_N ;
-lin levorotation_N = mkN "levorotation" "levorotations" ; -- compound ion_N ;
-lin quotation_N = mkN "quotation" "quotations" ; -- compound ion_N ;
-lin misquotation_N = mkN "misquotation" "misquotations" ; -- compound ion_N ;
-lin adaptation_N = mkN "adaptation" "adaptations" ; -- compound ion_N ;
-lin acceptation_N = mkN "acceptation" "acceptations" ; -- compound ion_N ;
-lin septation_N = mkN "septation" "septations" ; -- compound ion_N ;
-lin temptation_N = mkN "temptation" "temptations" ; -- compound ion_N ;
-lin dissertation_N = mkN "dissertation" "dissertations" ; -- compound ion_N ;
-lin flirtation_N = mkN "flirtation" "flirtations" ; -- compound ion_N ;
-lin exhortation_N = mkN "exhortation" "exhortations" ; -- compound ion_N ;
-lin deportation_N = mkN "deportation" "deportations" ; -- compound ion_N ;
-lin teleportation_N = mkN "teleportation" "teleportations" ; -- compound ion_N ;
-lin importation_N = mkN "importation" "importations" ; -- compound ion_N ;
-lin transportation_N = mkN "transportation" "transportations" ; -- compound ion_N ;
-lin exportation_N = mkN "exportation" "exportations" ; -- compound ion_N ;
-lin station_N = mkN "station" "stations" ; -- compound ion_N ;
-lin 'police-station_N' = mkN "police-station" "police-stations" ; -- compound ion_N ;
-lin 'coaling-station_N' = mkN "coaling-station" "coaling-stations" ; -- compound ion_N ;
-lin 'polling-station_N' = mkN "polling-station" "polling-stations" ; -- compound ion_N ;
-lin 'weather-station_N' = mkN "weather-station" "weather-stations" ; -- compound ion_N ;
-lin 'power-station_N' = mkN "power-station" "power-stations" ; -- compound ion_N ;
-lin 'gas-station_N' = mkN "gas-station" "gas-stations" ; -- compound ion_N ;
-lin 'pay-station_N' = mkN "pay-station" "pay-stations" ; -- compound ion_N ;
-lin devastation_N = mkN "devastation" "devastations" ; -- compound ion_N ;
-lin substation_N = mkN "substation" "substations" ; -- compound ion_N ;
-lin manifestation_N = mkN "manifestation" "manifestations" ; -- compound ion_N ;
-lin infestation_N = mkN "infestation" "infestations" ; -- compound ion_N ;
-lin disinfestation_N = mkN "disinfestation" "disinfestations" ; -- compound ion_N ;
-lin gestation_N = mkN "gestation" "gestations" ; -- compound ion_N ;
-lin molestation_N = mkN "molestation" "molestations" ; -- compound ion_N ;
-lin deforestation_N = mkN "deforestation" "deforestations" ; -- compound ion_N ;
-lin reforestation_N = mkN "reforestation" "reforestations" ; -- compound ion_N ;
-lin afforestation_N = mkN "afforestation" "afforestations" ; -- compound ion_N ;
-lin 're-afforestation_N' = mkN "re-afforestation" "re-afforestations" ; -- compound ion_N ;
-lin detestation_N = mkN "detestation" "detestations" ; -- compound ion_N ;
-lin protestation_N = mkN "protestation" "protestations" ; -- compound ion_N ;
-lin attestation_N = mkN "attestation" "attestations" ; -- compound ion_N ;
-lin workstation_N = mkN "workstation" "workstations" ; -- compound ion_N ;
-lin outstation_N = mkN "outstation" "outstations" ; -- compound ion_N ;
-lin gustation_N = mkN "gustation" "gustations" ; -- compound ion_N ;
-lin incrustation_N = mkN "incrustation" "incrustations" ; -- compound ion_N ;
-lin refutation_N = mkN "refutation" "refutations" ; -- compound ion_N ;
-lin confutation_N = mkN "confutation" "confutations" ; -- compound ion_N ;
-lin salutation_N = mkN "salutation" "salutations" ; -- compound ion_N ;
-lin mutation_N = mkN "mutation" "mutations" ; -- compound ion_N ;
-lin commutation_N = mkN "commutation" "commutations" ; -- compound ion_N ;
-lin permutation_N = mkN "permutation" "permutations" ; -- compound ion_N ;
-lin transmutation_N = mkN "transmutation" "transmutations" ; -- compound ion_N ;
-lin nutation_N = mkN "nutation" "nutations" ; -- compound ion_N ;
-lin deputation_N = mkN "deputation" "deputations" ; -- compound ion_N ;
-lin reputation_N = mkN "reputation" "reputations" ; -- compound ion_N ;
-lin amputation_N = mkN "amputation" "amputations" ; -- compound ion_N ;
-lin imputation_N = mkN "imputation" "imputations" ; -- compound ion_N ;
-lin computation_N = mkN "computation" "computations" ; -- compound ion_N ;
-lin disputation_N = mkN "disputation" "disputations" ; -- compound ion_N ;
-lin evacuation_N = mkN "evacuation" "evacuations" ; -- compound ion_N ;
-lin graduation_N = mkN "graduation" "graduations" ; -- compound ion_N ;
-lin disambiguation_N = mkN "disambiguation" "disambiguations" ; -- compound ion_N ;
-lin valuation_N = mkN "valuation" "valuations" ; -- compound ion_N ;
-lin evaluation_N = mkN "evaluation" "evaluations" ; -- compound ion_N ;
-lin devaluation_N = mkN "devaluation" "devaluations" ; -- compound ion_N ;
-lin reevaluation_N = mkN "reevaluation" "reevaluations" ; -- compound ion_N ;
-lin revaluation_N = mkN "revaluation" "revaluations" ; -- compound ion_N ;
-lin underevaluation_N = mkN "underevaluation" "underevaluations" ; -- compound ion_N ;
-lin undervaluation_N = mkN "undervaluation" "undervaluations" ; -- compound ion_N ;
-lin overvaluation_N = mkN "overvaluation" "overvaluations" ; -- compound ion_N ;
-lin attenuation_N = mkN "attenuation" "attenuations" ; -- compound ion_N ;
-lin extenuation_N = mkN "extenuation" "extenuations" ; -- compound ion_N ;
-lin insinuation_N = mkN "insinuation" "insinuations" ; -- compound ion_N ;
-lin continuation_N = mkN "continuation" "continuations" ; -- compound ion_N ;
-lin superannuation_N = mkN "superannuation" "superannuations" ; -- compound ion_N ;
-lin equation_N = mkN "equation" "equations" ; -- compound ion_N ;
-lin menstruation_N = mkN "menstruation" "menstruations" ; -- compound ion_N ;
-lin infatuation_N = mkN "infatuation" "infatuations" ; -- compound ion_N ;
-lin punctuation_N = mkN "punctuation" "punctuations" ; -- compound ion_N ;
-lin fluctuation_N = mkN "fluctuation" "fluctuations" ; -- compound ion_N ;
-lin perpetuation_N = mkN "perpetuation" "perpetuations" ; -- compound ion_N ;
-lin habituation_N = mkN "habituation" "habituations" ; -- compound ion_N ;
-lin situation_N = mkN "situation" "situations" ; -- compound ion_N ;
-lin accentuation_N = mkN "accentuation" "accentuations" ; -- compound ion_N ;
-lin excavation_N = mkN "excavation" "excavations" ; -- compound ion_N ;
-lin aggravation_N = mkN "aggravation" "aggravations" ; -- compound ion_N ;
-lin elevation_N = mkN "elevation" "elevations" ; -- compound ion_N ;
-lin salivation_N = mkN "salivation" "salivations" ; -- compound ion_N ;
-lin derivation_N = mkN "derivation" "derivations" ; -- compound ion_N ;
-lin privation_N = mkN "privation" "privations" ; -- compound ion_N ;
-lin deprivation_N = mkN "deprivation" "deprivations" ; -- compound ion_N ;
-lin activation_N = mkN "activation" "activations" ; -- compound ion_N ;
-lin deactivation_N = mkN "deactivation" "deactivations" ; -- compound ion_N ;
-lin inactivation_N = mkN "inactivation" "inactivations" ; -- compound ion_N ;
-lin titivation_N = mkN "titivation" "titivations" ; -- compound ion_N ;
-lin cultivation_N = mkN "cultivation" "cultivations" ; -- compound ion_N ;
-lin motivation_N = mkN "motivation" "motivations" ; -- compound ion_N ;
-lin captivation_N = mkN "captivation" "captivations" ; -- compound ion_N ;
-lin estivation_N = mkN "estivation" "estivations" ; -- compound ion_N ;
-lin salvation_N = mkN "salvation" "salvations" ; -- compound ion_N ;
-lin solvation_N = mkN "solvation" "solvations" ; -- compound ion_N ;
-lin ovation_N = mkN "ovation" "ovations" ; -- compound ion_N ;
-lin novation_N = mkN "novation" "novations" ; -- compound ion_N ;
-lin renovation_N = mkN "renovation" "renovations" ; -- compound ion_N ;
-lin innovation_N = mkN "innovation" "innovations" ; -- compound ion_N ;
-lin starvation_N = mkN "starvation" "starvations" ; -- compound ion_N ;
-lin enervation_N = mkN "enervation" "enervations" ; -- compound ion_N ;
-lin innervation_N = mkN "innervation" "innervations" ; -- compound ion_N ;
-lin observation_N = mkN "observation" "observations" ; -- compound ion_N ;
-lin reservation_N = mkN "reservation" "reservations" ; -- compound ion_N ;
-lin preservation_N = mkN "preservation" "preservations" ; -- compound ion_N ;
-lin 'self-preservation_N' = mkN "self-preservation" "self-preservations" ; -- compound ion_N ;
-lin conservation_N = mkN "conservation" "conservations" ; -- compound ion_N ;
-lin incurvation_N = mkN "incurvation" "incurvations" ; -- compound ion_N ;
-lin relaxation_N = mkN "relaxation" "relaxations" ; -- compound ion_N ;
-lin taxation_N = mkN "taxation" "taxations" ; -- compound ion_N ;
-lin indexation_N = mkN "indexation" "indexations" ; -- compound ion_N ;
-lin annexation_N = mkN "annexation" "annexations" ; -- compound ion_N ;
-lin vexation_N = mkN "vexation" "vexations" ; -- compound ion_N ;
-lin fixation_N = mkN "fixation" "fixations" ; -- compound ion_N ;
-lin prefixation_N = mkN "prefixation" "prefixations" ; -- compound ion_N ;
-lin affixation_N = mkN "affixation" "affixations" ; -- compound ion_N ;
-lin suffixation_N = mkN "suffixation" "suffixations" ; -- compound ion_N ;
-lin luxation_N = mkN "luxation" "luxations" ; -- compound ion_N ;
-lin subluxation_N = mkN "subluxation" "subluxations" ; -- compound ion_N ;
-lin ruggedization_N = mkN "ruggedization" "ruggedizations" ; -- compound ion_N ;
-lin hybridization_N = mkN "hybridization" "hybridizations" ; -- compound ion_N ;
-lin fluoridization_N = mkN "fluoridization" "fluoridizations" ; -- compound ion_N ;
-lin subsidization_N = mkN "subsidization" "subsidizations" ; -- compound ion_N ;
-lin oxidization_N = mkN "oxidization" "oxidizations" ; -- compound ion_N ;
-lin standardization_N = mkN "standardization" "standardizations" ; -- compound ion_N ;
-lin bastardization_N = mkN "bastardization" "bastardizations" ; -- compound ion_N ;
-lin marbleization_N = mkN "marbleization" "marbleizations" ; -- compound ion_N ;
-lin mythologization_N = mkN "mythologization" "mythologizations" ; -- compound ion_N ;
-lin demythologization_N = mkN "demythologization" "demythologizations" ; -- compound ion_N ;
-lin tribalization_N = mkN "tribalization" "tribalizations" ; -- compound ion_N ;
-lin detribalization_N = mkN "detribalization" "detribalizations" ; -- compound ion_N ;
-lin globalization_N = mkN "globalization" "globalizations" ; -- compound ion_N ;
-lin verbalization_N = mkN "verbalization" "verbalizations" ; -- compound ion_N ;
-lin topicalization_N = mkN "topicalization" "topicalizations" ; -- compound ion_N ;
-lin lexicalization_N = mkN "lexicalization" "lexicalizations" ; -- compound ion_N ;
-lin focalization_N = mkN "focalization" "focalizations" ; -- compound ion_N ;
-lin localization_N = mkN "localization" "localizations" ; -- compound ion_N ;
-lin scandalization_N = mkN "scandalization" "scandalizations" ; -- compound ion_N ;
-lin idealization_N = mkN "idealization" "idealizations" ; -- compound ion_N ;
-lin realization_N = mkN "realization" "realizations" ; -- compound ion_N ;
-lin legalization_N = mkN "legalization" "legalizations" ; -- compound ion_N ;
-lin specialization_N = mkN "specialization" "specializations" ; -- compound ion_N ;
-lin socialization_N = mkN "socialization" "socializations" ; -- compound ion_N ;
-lin commercialization_N = mkN "commercialization" "commercializations" ; -- compound ion_N ;
-lin serialization_N = mkN "serialization" "serializations" ; -- compound ion_N ;
-lin materialization_N = mkN "materialization" "materializations" ; -- compound ion_N ;
-lin territorialization_N = mkN "territorialization" "territorializations" ; -- compound ion_N ;
-lin industrialization_N = mkN "industrialization" "industrializations" ; -- compound ion_N ;
-lin decimalization_N = mkN "decimalization" "decimalizations" ; -- compound ion_N ;
-lin animalization_N = mkN "animalization" "animalizations" ; -- compound ion_N ;
-lin formalization_N = mkN "formalization" "formalizations" ; -- compound ion_N ;
-lin normalization_N = mkN "normalization" "normalizations" ; -- compound ion_N ;
-lin canalization_N = mkN "canalization" "canalizations" ; -- compound ion_N ;
-lin penalization_N = mkN "penalization" "penalizations" ; -- compound ion_N ;
-lin signalization_N = mkN "signalization" "signalizations" ; -- compound ion_N ;
-lin finalization_N = mkN "finalization" "finalizations" ; -- compound ion_N ;
-lin marginalization_N = mkN "marginalization" "marginalizations" ; -- compound ion_N ;
-lin criminalization_N = mkN "criminalization" "criminalizations" ; -- compound ion_N ;
-lin decriminalization_N = mkN "decriminalization" "decriminalizations" ; -- compound ion_N ;
-lin diagonalization_N = mkN "diagonalization" "diagonalizations" ; -- compound ion_N ;
-lin professionalization_N = mkN "professionalization" "professionalizations" ; -- compound ion_N ;
-lin nationalization_N = mkN "nationalization" "nationalizations" ; -- compound ion_N ;
-lin denationalization_N = mkN "denationalization" "denationalizations" ; -- compound ion_N ;
-lin internationalization_N = mkN "internationalization" "internationalizations" ; -- compound ion_N ;
-lin rationalization_N = mkN "rationalization" "rationalizations" ; -- compound ion_N ;
-lin fictionalization_N = mkN "fictionalization" "fictionalizations" ; -- compound ion_N ;
-lin conventionalization_N = mkN "conventionalization" "conventionalizations" ; -- compound ion_N ;
-lin institutionalization_N = mkN "institutionalization" "institutionalizations" ; -- compound ion_N ;
-lin depersonalization_N = mkN "depersonalization" "depersonalizations" ; -- compound ion_N ;
-lin internalization_N = mkN "internalization" "internalizations" ; -- compound ion_N ;
-lin externalization_N = mkN "externalization" "externalizations" ; -- compound ion_N ;
-lin liberalization_N = mkN "liberalization" "liberalizations" ; -- compound ion_N ;
-lin federalization_N = mkN "federalization" "federalizations" ; -- compound ion_N ;
-lin generalization_N = mkN "generalization" "generalizations" ; -- compound ion_N ;
-lin demineralization_N = mkN "demineralization" "demineralizations" ; -- compound ion_N ;
-lin lateralization_N = mkN "lateralization" "lateralizations" ; -- compound ion_N ;
-lin moralization_N = mkN "moralization" "moralizations" ; -- compound ion_N ;
-lin demoralization_N = mkN "demoralization" "demoralizations" ; -- compound ion_N ;
-lin centralization_N = mkN "centralization" "centralizations" ; -- compound ion_N ;
-lin decentralization_N = mkN "decentralization" "decentralizations" ; -- compound ion_N ;
-lin neutralization_N = mkN "neutralization" "neutralizations" ; -- compound ion_N ;
-lin pluralization_N = mkN "pluralization" "pluralizations" ; -- compound ion_N ;
-lin naturalization_N = mkN "naturalization" "naturalizations" ; -- compound ion_N ;
-lin nasalization_N = mkN "nasalization" "nasalizations" ; -- compound ion_N ;
-lin digitalization_N = mkN "digitalization" "digitalizations" ; -- compound ion_N ;
-lin capitalization_N = mkN "capitalization" "capitalizations" ; -- compound ion_N ;
-lin overcapitalization_N = mkN "overcapitalization" "overcapitalizations" ; -- compound ion_N ;
-lin hospitalization_N = mkN "hospitalization" "hospitalizations" ; -- compound ion_N ;
-lin vitalization_N = mkN "vitalization" "vitalizations" ; -- compound ion_N ;
-lin devitalization_N = mkN "devitalization" "devitalizations" ; -- compound ion_N ;
-lin revitalization_N = mkN "revitalization" "revitalizations" ; -- compound ion_N ;
-lin sentimentalization_N = mkN "sentimentalization" "sentimentalizations" ; -- compound ion_N ;
-lin compartmentalization_N = mkN "compartmentalization" "compartmentalizations" ; -- compound ion_N ;
-lin brutalization_N = mkN "brutalization" "brutalizations" ; -- compound ion_N ;
-lin individualization_N = mkN "individualization" "individualizations" ; -- compound ion_N ;
-lin equalization_N = mkN "equalization" "equalizations" ; -- compound ion_N ;
-lin visualization_N = mkN "visualization" "visualizations" ; -- compound ion_N ;
-lin intellectualization_N = mkN "intellectualization" "intellectualizations" ; -- compound ion_N ;
-lin spiritualization_N = mkN "spiritualization" "spiritualizations" ; -- compound ion_N ;
-lin conceptualization_N = mkN "conceptualization" "conceptualizations" ; -- compound ion_N ;
-lin channelization_N = mkN "channelization" "channelizations" ; -- compound ion_N ;
-lin novelization_N = mkN "novelization" "novelizations" ; -- compound ion_N ;
-lin stabilization_N = mkN "stabilization" "stabilizations" ; -- compound ion_N ;
-lin destabilization_N = mkN "destabilization" "destabilizations" ; -- compound ion_N ;
-lin mobilization_N = mkN "mobilization" "mobilizations" ; -- compound ion_N ;
-lin demobilization_N = mkN "demobilization" "demobilizations" ; -- compound ion_N ;
-lin immobilization_N = mkN "immobilization" "immobilizations" ; -- compound ion_N ;
-lin sterilization_N = mkN "sterilization" "sterilizations" ; -- compound ion_N ;
-lin fossilization_N = mkN "fossilization" "fossilizations" ; -- compound ion_N ;
-lin fertilization_N = mkN "fertilization" "fertilizations" ; -- compound ion_N ;
-lin 'cross-fertilization_N' = mkN "cross-fertilization" "cross-fertilizations" ; -- compound ion_N ;
-lin utilization_N = mkN "utilization" "utilizations" ; -- compound ion_N ;
-lin civilization_N = mkN "civilization" "civilizations" ; -- compound ion_N ;
-lin crystallization_N = mkN "crystallization" "crystallizations" ; -- compound ion_N ;
-lin symbolization_N = mkN "symbolization" "symbolizations" ; -- compound ion_N ;
-lin idolization_N = mkN "idolization" "idolizations" ; -- compound ion_N ;
-lin monopolization_N = mkN "monopolization" "monopolizations" ; -- compound ion_N ;
-lin vacuolization_N = mkN "vacuolization" "vacuolizations" ; -- compound ion_N ;
-lin stylization_N = mkN "stylization" "stylizations" ; -- compound ion_N ;
-lin minimization_N = mkN "minimization" "minimizations" ; -- compound ion_N ;
-lin victimization_N = mkN "victimization" "victimizations" ; -- compound ion_N ;
-lin optimization_N = mkN "optimization" "optimizations" ; -- compound ion_N ;
-lin maximization_N = mkN "maximization" "maximizations" ; -- compound ion_N ;
-lin solmization_N = mkN "solmization" "solmizations" ; -- compound ion_N ;
-lin randomization_N = mkN "randomization" "randomizations" ; -- compound ion_N ;
-lin atomization_N = mkN "atomization" "atomizations" ; -- compound ion_N ;
-lin dichotomization_N = mkN "dichotomization" "dichotomizations" ; -- compound ion_N ;
-lin urbanization_N = mkN "urbanization" "urbanizations" ; -- compound ion_N ;
-lin vulcanization_N = mkN "vulcanization" "vulcanizations" ; -- compound ion_N ;
-lin organization_N = mkN "organization" "organizations" ; -- compound ion_N ;
-lin reorganization_N = mkN "reorganization" "reorganizations" ; -- compound ion_N ;
-lin disorganization_N = mkN "disorganization" "disorganizations" ; -- compound ion_N ;
-lin mechanization_N = mkN "mechanization" "mechanizations" ; -- compound ion_N ;
-lin humanization_N = mkN "humanization" "humanizations" ; -- compound ion_N ;
-lin dehumanization_N = mkN "dehumanization" "dehumanizations" ; -- compound ion_N ;
-lin galvanization_N = mkN "galvanization" "galvanizations" ; -- compound ion_N ;
-lin homogenization_N = mkN "homogenization" "homogenizations" ; -- compound ion_N ;
-lin lysogenization_N = mkN "lysogenization" "lysogenizations" ; -- compound ion_N ;
-lin desalinization_N = mkN "desalinization" "desalinizations" ; -- compound ion_N ;
-lin destalinization_N = mkN "destalinization" "destalinizations" ; -- compound ion_N ;
-lin hyalinization_N = mkN "hyalinization" "hyalinizations" ; -- compound ion_N ;
-lin myelinization_N = mkN "myelinization" "myelinizations" ; -- compound ion_N ;
-lin masculinization_N = mkN "masculinization" "masculinizations" ; -- compound ion_N ;
-lin feminization_N = mkN "feminization" "feminizations" ; -- compound ion_N ;
-lin keratinization_N = mkN "keratinization" "keratinizations" ; -- compound ion_N ;
-lin solemnization_N = mkN "solemnization" "solemnizations" ; -- compound ion_N ;
-lin carbonization_N = mkN "carbonization" "carbonizations" ; -- compound ion_N ;
-lin ionization_N = mkN "ionization" "ionizations" ; -- compound ion_N ;
-lin unionization_N = mkN "unionization" "unionizations" ; -- compound ion_N ;
-lin colonization_N = mkN "colonization" "colonizations" ; -- compound ion_N ;
-lin decolonization_N = mkN "decolonization" "decolonizations" ; -- compound ion_N ;
-lin demonization_N = mkN "demonization" "demonizations" ; -- compound ion_N ;
-lin harmonization_N = mkN "harmonization" "harmonizations" ; -- compound ion_N ;
-lin reharmonization_N = mkN "reharmonization" "reharmonizations" ; -- compound ion_N ;
-lin canonization_N = mkN "canonization" "canonizations" ; -- compound ion_N ;
-lin synchronization_N = mkN "synchronization" "synchronizations" ; -- compound ion_N ;
-lin opsonization_N = mkN "opsonization" "opsonizations" ; -- compound ion_N ;
-lin modernization_N = mkN "modernization" "modernizations" ; -- compound ion_N ;
-lin fraternization_N = mkN "fraternization" "fraternizations" ; -- compound ion_N ;
-lin westernization_N = mkN "westernization" "westernizations" ; -- compound ion_N ;
-lin immunization_N = mkN "immunization" "immunizations" ; -- compound ion_N ;
-lin communization_N = mkN "communization" "communizations" ; -- compound ion_N ;
-lin barbarization_N = mkN "barbarization" "barbarizations" ; -- compound ion_N ;
-lin vulgarization_N = mkN "vulgarization" "vulgarizations" ; -- compound ion_N ;
-lin familiarization_N = mkN "familiarization" "familiarizations" ; -- compound ion_N ;
-lin polarization_N = mkN "polarization" "polarizations" ; -- compound ion_N ;
-lin depolarization_N = mkN "depolarization" "depolarizations" ; -- compound ion_N ;
-lin solarization_N = mkN "solarization" "solarizations" ; -- compound ion_N ;
-lin secularization_N = mkN "secularization" "secularizations" ; -- compound ion_N ;
-lin particularization_N = mkN "particularization" "particularizations" ; -- compound ion_N ;
-lin circularization_N = mkN "circularization" "circularizations" ; -- compound ion_N ;
-lin vascularization_N = mkN "vascularization" "vascularizations" ; -- compound ion_N ;
-lin regularization_N = mkN "regularization" "regularizations" ; -- compound ion_N ;
-lin popularization_N = mkN "popularization" "popularizations" ; -- compound ion_N ;
-lin summarization_N = mkN "summarization" "summarizations" ; -- compound ion_N ;
-lin demilitarization_N = mkN "demilitarization" "demilitarizations" ; -- compound ion_N ;
-lin remilitarization_N = mkN "remilitarization" "remilitarizations" ; -- compound ion_N ;
-lin tenderization_N = mkN "tenderization" "tenderizations" ; -- compound ion_N ;
-lin bowdlerization_N = mkN "bowdlerization" "bowdlerizations" ; -- compound ion_N ;
-lin isomerization_N = mkN "isomerization" "isomerizations" ; -- compound ion_N ;
-lin polymerization_N = mkN "polymerization" "polymerizations" ; -- compound ion_N ;
-lin pauperization_N = mkN "pauperization" "pauperizations" ; -- compound ion_N ;
-lin characterization_N = mkN "characterization" "characterizations" ; -- compound ion_N ;
-lin catheterization_N = mkN "catheterization" "catheterizations" ; -- compound ion_N ;
-lin computerization_N = mkN "computerization" "computerizations" ; -- compound ion_N ;
-lin pulverization_N = mkN "pulverization" "pulverizations" ; -- compound ion_N ;
-lin theorization_N = mkN "theorization" "theorizations" ; -- compound ion_N ;
-lin categorization_N = mkN "categorization" "categorizations" ; -- compound ion_N ;
-lin authorization_N = mkN "authorization" "authorizations" ; -- compound ion_N ;
-lin glamorization_N = mkN "glamorization" "glamorizations" ; -- compound ion_N ;
-lin memorization_N = mkN "memorization" "memorizations" ; -- compound ion_N ;
-lin vaporization_N = mkN "vaporization" "vaporizations" ; -- compound ion_N ;
-lin extemporization_N = mkN "extemporization" "extemporizations" ; -- compound ion_N ;
-lin terrorization_N = mkN "terrorization" "terrorizations" ; -- compound ion_N ;
-lin factorization_N = mkN "factorization" "factorizations" ; -- compound ion_N ;
-lin motorization_N = mkN "motorization" "motorizations" ; -- compound ion_N ;
-lin pasteurization_N = mkN "pasteurization" "pasteurizations" ; -- compound ion_N ;
-lin miniaturization_N = mkN "miniaturization" "miniaturizations" ; -- compound ion_N ;
-lin dramatization_N = mkN "dramatization" "dramatizations" ; -- compound ion_N ;
-lin schematization_N = mkN "schematization" "schematizations" ; -- compound ion_N ;
-lin anathematization_N = mkN "anathematization" "anathematizations" ; -- compound ion_N ;
-lin systematization_N = mkN "systematization" "systematizations" ; -- compound ion_N ;
-lin stigmatization_N = mkN "stigmatization" "stigmatizations" ; -- compound ion_N ;
-lin acclimatization_N = mkN "acclimatization" "acclimatizations" ; -- compound ion_N ;
-lin democratization_N = mkN "democratization" "democratizations" ; -- compound ion_N ;
-lin hypostatization_N = mkN "hypostatization" "hypostatizations" ; -- compound ion_N ;
-lin privatization_N = mkN "privatization" "privatizations" ; -- compound ion_N ;
-lin alphabetization_N = mkN "alphabetization" "alphabetizations" ; -- compound ion_N ;
-lin magnetization_N = mkN "magnetization" "magnetizations" ; -- compound ion_N ;
-lin demagnetization_N = mkN "demagnetization" "demagnetizations" ; -- compound ion_N ;
-lin monetization_N = mkN "monetization" "monetizations" ; -- compound ion_N ;
-lin demonetization_N = mkN "demonetization" "demonetizations" ; -- compound ion_N ;
-lin digitization_N = mkN "digitization" "digitizations" ; -- compound ion_N ;
-lin unitization_N = mkN "unitization" "unitizations" ; -- compound ion_N ;
-lin sensitization_N = mkN "sensitization" "sensitizations" ; -- compound ion_N ;
-lin desensitization_N = mkN "desensitization" "desensitizations" ; -- compound ion_N ;
-lin quantization_N = mkN "quantization" "quantizations" ; -- compound ion_N ;
-lin peptization_N = mkN "peptization" "peptizations" ; -- compound ion_N ;
-lin amortization_N = mkN "amortization" "amortizations" ; -- compound ion_N ;
-lin collectivization_N = mkN "collectivization" "collectivizations" ; -- compound ion_N ;
-lin action_N = mkN "action" "actions" ; -- compound ion_N ;
-lin 'delayed-action_N' = mkN "delayed-action" "delayed-actions" ; -- compound ion_N ;
-lin redaction_N = mkN "redaction" "redactions" ; -- compound ion_N ;
-lin reaction_N = mkN "reaction" "reactions" ; -- compound ion_N ;
-lin overreaction_N = mkN "overreaction" "overreactions" ; -- compound ion_N ;
-lin faction_N = mkN "faction" "factions" ; -- compound ion_N ;
-lin calefaction_N = mkN "calefaction" "calefactions" ; -- compound ion_N ;
-lin tumefaction_N = mkN "tumefaction" "tumefactions" ; -- compound ion_N ;
-lin benefaction_N = mkN "benefaction" "benefactions" ; -- compound ion_N ;
-lin stupefaction_N = mkN "stupefaction" "stupefactions" ; -- compound ion_N ;
-lin rarefaction_N = mkN "rarefaction" "rarefactions" ; -- compound ion_N ;
-lin putrefaction_N = mkN "putrefaction" "putrefactions" ; -- compound ion_N ;
-lin liquefaction_N = mkN "liquefaction" "liquefactions" ; -- compound ion_N ;
-lin petrifaction_N = mkN "petrifaction" "petrifactions" ; -- compound ion_N ;
-lin satisfaction_N = mkN "satisfaction" "satisfactions" ; -- compound ion_N ;
-lin dissatisfaction_N = mkN "dissatisfaction" "dissatisfactions" ; -- compound ion_N ;
-lin inaction_N = mkN "inaction" "inactions" ; -- compound ion_N ;
-lin impaction_N = mkN "impaction" "impactions" ; -- compound ion_N ;
-lin compaction_N = mkN "compaction" "compactions" ; -- compound ion_N ;
-lin interaction_N = mkN "interaction" "interactions" ; -- compound ion_N ;
-lin counteraction_N = mkN "counteraction" "counteractions" ; -- compound ion_N ;
-lin fraction_N = mkN "fraction" "fractions" ; -- compound ion_N ;
-lin refraction_N = mkN "refraction" "refractions" ; -- compound ion_N ;
-lin diffraction_N = mkN "diffraction" "diffractions" ; -- compound ion_N ;
-lin infraction_N = mkN "infraction" "infractions" ; -- compound ion_N ;
-lin traction_N = mkN "traction" "tractions" ; -- compound ion_N ;
-lin subtraction_N = mkN "subtraction" "subtractions" ; -- compound ion_N ;
-lin detraction_N = mkN "detraction" "detractions" ; -- compound ion_N ;
-lin retraction_N = mkN "retraction" "retractions" ; -- compound ion_N ;
-lin contraction_N = mkN "contraction" "contractions" ; -- compound ion_N ;
-lin protraction_N = mkN "protraction" "protractions" ; -- compound ion_N ;
-lin abstraction_N = mkN "abstraction" "abstractions" ; -- compound ion_N ;
-lin distraction_N = mkN "distraction" "distractions" ; -- compound ion_N ;
-lin attraction_N = mkN "attraction" "attractions" ; -- compound ion_N ;
-lin counterattraction_N = mkN "counterattraction" "counterattractions" ; -- compound ion_N ;
-lin extraction_N = mkN "extraction" "extractions" ; -- compound ion_N ;
-lin transaction_N = mkN "transaction" "transactions" ; -- compound ion_N ;
-lin exaction_N = mkN "exaction" "exactions" ; -- compound ion_N ;
-lin defection_N = mkN "defection" "defections" ; -- compound ion_N ;
-lin refection_N = mkN "refection" "refections" ; -- compound ion_N ;
-lin affection_N = mkN "affection" "affections" ; -- compound ion_N ;
-lin disaffection_N = mkN "disaffection" "disaffections" ; -- compound ion_N ;
-lin infection_N = mkN "infection" "infections" ; -- compound ion_N ;
-lin suprainfection_N = mkN "suprainfection" "suprainfections" ; -- compound ion_N ;
-lin superinfection_N = mkN "superinfection" "superinfections" ; -- compound ion_N ;
-lin disinfection_N = mkN "disinfection" "disinfections" ; -- compound ion_N ;
-lin confection_N = mkN "confection" "confections" ; -- compound ion_N ;
-lin perfection_N = mkN "perfection" "perfections" ; -- compound ion_N ;
-lin imperfection_N = mkN "imperfection" "imperfections" ; -- compound ion_N ;
-lin abjection_N = mkN "abjection" "abjections" ; -- compound ion_N ;
-lin objection_N = mkN "objection" "objections" ; -- compound ion_N ;
-lin subjection_N = mkN "subjection" "subjections" ; -- compound ion_N ;
-lin ejection_N = mkN "ejection" "ejections" ; -- compound ion_N ;
-lin dejection_N = mkN "dejection" "dejections" ; -- compound ion_N ;
-lin rejection_N = mkN "rejection" "rejections" ; -- compound ion_N ;
-lin injection_N = mkN "injection" "injections" ; -- compound ion_N ;
-lin projection_N = mkN "projection" "projections" ; -- compound ion_N ;
-lin introjection_N = mkN "introjection" "introjections" ; -- compound ion_N ;
-lin interjection_N = mkN "interjection" "interjections" ; -- compound ion_N ;
-lin election_N = mkN "election" "elections" ; -- compound ion_N ;
-lin 'by-election_N' = mkN "by-election" "by-elections" ; -- compound ion_N ;
-lin reelection_N = mkN "reelection" "reelections" ; -- compound ion_N ;
-lin selection_N = mkN "selection" "selections" ; -- compound ion_N ;
-lin deflection_N = mkN "deflection" "deflections" ; -- compound ion_N ;
-lin reflection_N = mkN "reflection" "reflections" ; -- compound ion_N ;
-lin interreflection_N = mkN "interreflection" "interreflections" ; -- compound ion_N ;
-lin inflection_N = mkN "inflection" "inflections" ; -- compound ion_N ;
-lin retroflection_N = mkN "retroflection" "retroflections" ; -- compound ion_N ;
-lin genuflection_N = mkN "genuflection" "genuflections" ; -- compound ion_N ;
-lin predilection_N = mkN "predilection" "predilections" ; -- compound ion_N ;
-lin collection_N = mkN "collection" "collections" ; -- compound ion_N ;
-lin 'loan-collection_N' = mkN "loan-collection" "loan-collections" ; -- compound ion_N ;
-lin recollection_N = mkN "recollection" "recollections" ; -- compound ion_N ;
-lin connection_N = mkN "connection" "connections" ; -- compound ion_N ;
-lin interconnection_N = mkN "interconnection" "interconnections" ; -- compound ion_N ;
-lin disconnection_N = mkN "disconnection" "disconnections" ; -- compound ion_N ;
-lin circumspection_N = mkN "circumspection" "circumspections" ; -- compound ion_N ;
-lin inspection_N = mkN "inspection" "inspections" ; -- compound ion_N ;
-lin retrospection_N = mkN "retrospection" "retrospections" ; -- compound ion_N ;
-lin introspection_N = mkN "introspection" "introspections" ; -- compound ion_N ;
-lin erection_N = mkN "erection" "erections" ; -- compound ion_N ;
-lin direction_N = mkN "direction" "directions" ; -- compound ion_N ;
-lin indirection_N = mkN "indirection" "indirections" ; -- compound ion_N ;
-lin misdirection_N = mkN "misdirection" "misdirections" ; -- compound ion_N ;
-lin correction_N = mkN "correction" "corrections" ; -- compound ion_N ;
-lin resurrection_N = mkN "resurrection" "resurrections" ; -- compound ion_N ;
-lin insurrection_N = mkN "insurrection" "insurrections" ; -- compound ion_N ;
-lin section_N = mkN "section" "sections" ; -- compound ion_N ;
-lin 'cross-section_N' = mkN "cross-section" "cross-sections" ; -- compound ion_N ;
-lin subsection_N = mkN "subsection" "subsections" ; -- compound ion_N ;
-lin venesection_N = mkN "venesection" "venesections" ; -- compound ion_N ;
-lin resection_N = mkN "resection" "resections" ; -- compound ion_N ;
-lin bisection_N = mkN "bisection" "bisections" ; -- compound ion_N ;
-lin vivisection_N = mkN "vivisection" "vivisections" ; -- compound ion_N ;
-lin intersection_N = mkN "intersection" "intersections" ; -- compound ion_N ;
-lin dissection_N = mkN "dissection" "dissections" ; -- compound ion_N ;
-lin detection_N = mkN "detection" "detections" ; -- compound ion_N ;
-lin protection_N = mkN "protection" "protections" ; -- compound ion_N ;
-lin radioprotection_N = mkN "radioprotection" "radioprotections" ; -- compound ion_N ;
-lin advection_N = mkN "advection" "advections" ; -- compound ion_N ;
-lin convection_N = mkN "convection" "convections" ; -- compound ion_N ;
-lin diction_N = mkN "diction" "dictions" ; -- compound ion_N ;
-lin contradiction_N = mkN "contradiction" "contradictions" ; -- compound ion_N ;
-lin addiction_N = mkN "addiction" "addictions" ; -- compound ion_N ;
-lin malediction_N = mkN "malediction" "maledictions" ; -- compound ion_N ;
-lin valediction_N = mkN "valediction" "valedictions" ; -- compound ion_N ;
-lin benediction_N = mkN "benediction" "benedictions" ; -- compound ion_N ;
-lin prediction_N = mkN "prediction" "predictions" ; -- compound ion_N ;
-lin indiction_N = mkN "indiction" "indictions" ; -- compound ion_N ;
-lin interdiction_N = mkN "interdiction" "interdictions" ; -- compound ion_N ;
-lin jurisdiction_N = mkN "jurisdiction" "jurisdictions" ; -- compound ion_N ;
-lin fiction_N = mkN "fiction" "fictions" ; -- compound ion_N ;
-lin nonfiction_N = mkN "nonfiction" "nonfictions" ; -- compound ion_N ;
-lin dereliction_N = mkN "dereliction" "derelictions" ; -- compound ion_N ;
-lin affliction_N = mkN "affliction" "afflictions" ; -- compound ion_N ;
-lin infliction_N = mkN "infliction" "inflictions" ; -- compound ion_N ;
-lin depiction_N = mkN "depiction" "depictions" ; -- compound ion_N ;
-lin friction_N = mkN "friction" "frictions" ; -- compound ion_N ;
-lin restriction_N = mkN "restriction" "restrictions" ; -- compound ion_N ;
-lin constriction_N = mkN "constriction" "constrictions" ; -- compound ion_N ;
-lin vasoconstriction_N = mkN "vasoconstriction" "vasoconstrictions" ; -- compound ion_N ;
-lin eviction_N = mkN "eviction" "evictions" ; -- compound ion_N ;
-lin conviction_N = mkN "conviction" "convictions" ; -- compound ion_N ;
-lin sanction_N = mkN "sanction" "sanctions" ; -- compound ion_N ;
-lin distinction_N = mkN "distinction" "distinctions" ; -- compound ion_N ;
-lin contradistinction_N = mkN "contradistinction" "contradistinctions" ; -- compound ion_N ;
-lin extinction_N = mkN "extinction" "extinctions" ; -- compound ion_N ;
-lin unction_N = mkN "unction" "unctions" ; -- compound ion_N ;
-lin function_N = mkN "function" "functions" ; -- compound ion_N ;
-lin malfunction_N = mkN "malfunction" "malfunctions" ; -- compound ion_N ;
-lin dysfunction_N = mkN "dysfunction" "dysfunctions" ; -- compound ion_N ;
-lin junction_N = mkN "junction" "junctions" ; -- compound ion_N ;
-lin 't-junction_N' = mkN "t-junction" "t-junctions" ; -- compound ion_N ;
-lin injunction_N = mkN "injunction" "injunctions" ; -- compound ion_N ;
-lin conjunction_N = mkN "conjunction" "conjunctions" ; -- compound ion_N ;
-lin thermojunction_N = mkN "thermojunction" "thermojunctions" ; -- compound ion_N ;
-lin disjunction_N = mkN "disjunction" "disjunctions" ; -- compound ion_N ;
-lin nondisjunction_N = mkN "nondisjunction" "nondisjunctions" ; -- compound ion_N ;
-lin compunction_N = mkN "compunction" "compunctions" ; -- compound ion_N ;
-lin expunction_N = mkN "expunction" "expunctions" ; -- compound ion_N ;
-lin decoction_N = mkN "decoction" "decoctions" ; -- compound ion_N ;
-lin concoction_N = mkN "concoction" "concoctions" ; -- compound ion_N ;
-lin auction_N = mkN "auction" "auctions" ; -- compound ion_N ;
-lin abduction_N = mkN "abduction" "abductions" ; -- compound ion_N ;
-lin subduction_N = mkN "subduction" "subductions" ; -- compound ion_N ;
-lin adduction_N = mkN "adduction" "adductions" ; -- compound ion_N ;
-lin deduction_N = mkN "deduction" "deductions" ; -- compound ion_N ;
-lin reduction_N = mkN "reduction" "reductions" ; -- compound ion_N ;
-lin seduction_N = mkN "seduction" "seductions" ; -- compound ion_N ;
-lin circumduction_N = mkN "circumduction" "circumductions" ; -- compound ion_N ;
-lin induction_N = mkN "induction" "inductions" ; -- compound ion_N ;
-lin conduction_N = mkN "conduction" "conductions" ; -- compound ion_N ;
-lin production_N = mkN "production" "productions" ; -- compound ion_N ;
-lin reproduction_N = mkN "reproduction" "reproductions" ; -- compound ion_N ;
-lin coproduction_N = mkN "coproduction" "coproductions" ; -- compound ion_N ;
-lin underproduction_N = mkN "underproduction" "underproductions" ; -- compound ion_N ;
-lin overproduction_N = mkN "overproduction" "overproductions" ; -- compound ion_N ;
-lin introduction_N = mkN "introduction" "introductions" ; -- compound ion_N ;
-lin reintroduction_N = mkN "reintroduction" "reintroductions" ; -- compound ion_N ;
-lin transduction_N = mkN "transduction" "transductions" ; -- compound ion_N ;
-lin obstruction_N = mkN "obstruction" "obstructions" ; -- compound ion_N ;
-lin destruction_N = mkN "destruction" "destructions" ; -- compound ion_N ;
-lin instruction_N = mkN "instruction" "instructions" ; -- compound ion_N ;
-lin construction_N = mkN "construction" "constructions" ; -- compound ion_N ;
-lin deconstruction_N = mkN "deconstruction" "deconstructions" ; -- compound ion_N ;
-lin reconstruction_N = mkN "reconstruction" "reconstructions" ; -- compound ion_N ;
-lin misconstruction_N = mkN "misconstruction" "misconstructions" ; -- compound ion_N ;
-lin suction_N = mkN "suction" "suctions" ; -- compound ion_N ;
-lin liposuction_N = mkN "liposuction" "liposuctions" ; -- compound ion_N ;
-lin deletion_N = mkN "deletion" "deletions" ; -- compound ion_N ;
-lin depletion_N = mkN "depletion" "depletions" ; -- compound ion_N ;
-lin repletion_N = mkN "repletion" "repletions" ; -- compound ion_N ;
-lin completion_N = mkN "completion" "completions" ; -- compound ion_N ;
-lin accretion_N = mkN "accretion" "accretions" ; -- compound ion_N ;
-lin secretion_N = mkN "secretion" "secretions" ; -- compound ion_N ;
-lin hypersecretion_N = mkN "hypersecretion" "hypersecretions" ; -- compound ion_N ;
-lin concretion_N = mkN "concretion" "concretions" ; -- compound ion_N ;
-lin discretion_N = mkN "discretion" "discretions" ; -- compound ion_N ;
-lin indiscretion_N = mkN "indiscretion" "indiscretions" ; -- compound ion_N ;
-lin excretion_N = mkN "excretion" "excretions" ; -- compound ion_N ;
-lin imbibition_N = mkN "imbibition" "imbibitions" ; -- compound ion_N ;
-lin inhibition_N = mkN "inhibition" "inhibitions" ; -- compound ion_N ;
-lin prohibition_N = mkN "prohibition" "prohibitions" ; -- compound ion_N ;
-lin exhibition_N = mkN "exhibition" "exhibitions" ; -- compound ion_N ;
-lin ambition_N = mkN "ambition" "ambitions" ; -- compound ion_N ;
-lin tradition_N = mkN "tradition" "traditions" ; -- compound ion_N ;
-lin extradition_N = mkN "extradition" "extraditions" ; -- compound ion_N ;
-lin addition_N = mkN "addition" "additions" ; -- compound ion_N ;
-lin edition_N = mkN "edition" "editions" ; -- compound ion_N ;
-lin expedition_N = mkN "expedition" "expeditions" ; -- compound ion_N ;
-lin sedition_N = mkN "sedition" "seditions" ; -- compound ion_N ;
-lin rendition_N = mkN "rendition" "renditions" ; -- compound ion_N ;
-lin condition_N = mkN "condition" "conditions" ; -- compound ion_N ;
-lin precondition_N = mkN "precondition" "preconditions" ; -- compound ion_N ;
-lin perdition_N = mkN "perdition" "perditions" ; -- compound ion_N ;
-lin audition_N = mkN "audition" "auditions" ; -- compound ion_N ;
-lin erudition_N = mkN "erudition" "eruditions" ; -- compound ion_N ;
-lin coalition_N = mkN "coalition" "coalitions" ; -- compound ion_N ;
-lin abolition_N = mkN "abolition" "abolitions" ; -- compound ion_N ;
-lin demolition_N = mkN "demolition" "demolitions" ; -- compound ion_N ;
-lin volition_N = mkN "volition" "volitions" ; -- compound ion_N ;
-lin inanition_N = mkN "inanition" "inanitions" ; -- compound ion_N ;
-lin ignition_N = mkN "ignition" "ignitions" ; -- compound ion_N ;
-lin cognition_N = mkN "cognition" "cognitions" ; -- compound ion_N ;
-lin recognition_N = mkN "recognition" "recognitions" ; -- compound ion_N ;
-lin precognition_N = mkN "precognition" "precognitions" ; -- compound ion_N ;
-lin definition_N = mkN "definition" "definitions" ; -- compound ion_N ;
-lin redefinition_N = mkN "redefinition" "redefinitions" ; -- compound ion_N ;
-lin monition_N = mkN "monition" "monitions" ; -- compound ion_N ;
-lin admonition_N = mkN "admonition" "admonitions" ; -- compound ion_N ;
-lin premonition_N = mkN "premonition" "premonitions" ; -- compound ion_N ;
-lin munition_N = mkN "munition" "munitions" ; -- compound ion_N ;
-lin ammunition_N = mkN "ammunition" "ammunitions" ; -- compound ion_N ;
-lin coition_N = mkN "coition" "coitions" ; -- compound ion_N ;
-lin apparition_N = mkN "apparition" "apparitions" ; -- compound ion_N ;
-lin contrition_N = mkN "contrition" "contritions" ; -- compound ion_N ;
-lin attrition_N = mkN "attrition" "attritions" ; -- compound ion_N ;
-lin nutrition_N = mkN "nutrition" "nutritions" ; -- compound ion_N ;
-lin malnutrition_N = mkN "malnutrition" "malnutritions" ; -- compound ion_N ;
-lin micturition_N = mkN "micturition" "micturitions" ; -- compound ion_N ;
-lin parturition_N = mkN "parturition" "parturitions" ; -- compound ion_N ;
-lin acquisition_N = mkN "acquisition" "acquisitions" ; -- compound ion_N ;
-lin requisition_N = mkN "requisition" "requisitions" ; -- compound ion_N ;
-lin inquisition_N = mkN "inquisition" "inquisitions" ; -- compound ion_N ;
-lin disquisition_N = mkN "disquisition" "disquisitions" ; -- compound ion_N ;
-lin transition_N = mkN "transition" "transitions" ; -- compound ion_N ;
-lin position_N = mkN "position" "positions" ; -- compound ion_N ;
-lin juxtaposition_N = mkN "juxtaposition" "juxtapositions" ; -- compound ion_N ;
-lin deposition_N = mkN "deposition" "depositions" ; -- compound ion_N ;
-lin redeposition_N = mkN "redeposition" "redepositions" ; -- compound ion_N ;
-lin antiredeposition_N = mkN "antiredeposition" "antiredepositions" ; -- compound ion_N ;
-lin electrodeposition_N = mkN "electrodeposition" "electrodepositions" ; -- compound ion_N ;
-lin preposition_N = mkN "preposition" "prepositions" ; -- compound ion_N ;
-lin malposition_N = mkN "malposition" "malpositions" ; -- compound ion_N ;
-lin imposition_N = mkN "imposition" "impositions" ; -- compound ion_N ;
-lin reimposition_N = mkN "reimposition" "reimpositions" ; -- compound ion_N ;
-lin composition_N = mkN "composition" "compositions" ; -- compound ion_N ;
-lin decomposition_N = mkN "decomposition" "decompositions" ; -- compound ion_N ;
-lin proposition_N = mkN "proposition" "propositions" ; -- compound ion_N ;
-lin apposition_N = mkN "apposition" "appositions" ; -- compound ion_N ;
-lin opposition_N = mkN "opposition" "oppositions" ; -- compound ion_N ;
-lin supposition_N = mkN "supposition" "suppositions" ; -- compound ion_N ;
-lin presupposition_N = mkN "presupposition" "presuppositions" ; -- compound ion_N ;
-lin superposition_N = mkN "superposition" "superpositions" ; -- compound ion_N ;
-lin interposition_N = mkN "interposition" "interpositions" ; -- compound ion_N ;
-lin disposition_N = mkN "disposition" "dispositions" ; -- compound ion_N ;
-lin redisposition_N = mkN "redisposition" "redispositions" ; -- compound ion_N ;
-lin predisposition_N = mkN "predisposition" "predispositions" ; -- compound ion_N ;
-lin indisposition_N = mkN "indisposition" "indispositions" ; -- compound ion_N ;
-lin transposition_N = mkN "transposition" "transpositions" ; -- compound ion_N ;
-lin postposition_N = mkN "postposition" "postpositions" ; -- compound ion_N ;
-lin exposition_N = mkN "exposition" "expositions" ; -- compound ion_N ;
-lin petition_N = mkN "petition" "petitions" ; -- compound ion_N ;
-lin repetition_N = mkN "repetition" "repetitions" ; -- compound ion_N ;
-lin competition_N = mkN "competition" "competitions" ; -- compound ion_N ;
-lin dentition_N = mkN "dentition" "dentitions" ; -- compound ion_N ;
-lin partition_N = mkN "partition" "partitions" ; -- compound ion_N ;
-lin superstition_N = mkN "superstition" "superstitions" ; -- compound ion_N ;
-lin fruition_N = mkN "fruition" "fruitions" ; -- compound ion_N ;
-lin tuition_N = mkN "tuition" "tuitions" ; -- compound ion_N ;
-lin intuition_N = mkN "intuition" "intuitions" ; -- compound ion_N ;
-lin mention_N = mkN "mention" "mentions" ; -- compound ion_N ;
-lin detention_N = mkN "detention" "detentions" ; -- compound ion_N ;
-lin retention_N = mkN "retention" "retentions" ; -- compound ion_N ;
-lin intention_N = mkN "intention" "intentions" ; -- compound ion_N ;
-lin contention_N = mkN "contention" "contentions" ; -- compound ion_N ;
-lin abstention_N = mkN "abstention" "abstentions" ; -- compound ion_N ;
-lin distention_N = mkN "distention" "distentions" ; -- compound ion_N ;
-lin attention_N = mkN "attention" "attentions" ; -- compound ion_N ;
-lin inattention_N = mkN "inattention" "inattentions" ; -- compound ion_N ;
-lin contravention_N = mkN "contravention" "contraventions" ; -- compound ion_N ;
-lin subvention_N = mkN "subvention" "subventions" ; -- compound ion_N ;
-lin prevention_N = mkN "prevention" "preventions" ; -- compound ion_N ;
-lin circumvention_N = mkN "circumvention" "circumventions" ; -- compound ion_N ;
-lin invention_N = mkN "invention" "inventions" ; -- compound ion_N ;
-lin convention_N = mkN "convention" "conventions" ; -- compound ion_N ;
-lin supervention_N = mkN "supervention" "superventions" ; -- compound ion_N ;
-lin intervention_N = mkN "intervention" "interventions" ; -- compound ion_N ;
-lin nonintervention_N = mkN "nonintervention" "noninterventions" ; -- compound ion_N ;
-lin lotion_N = mkN "lotion" "lotions" ; -- compound ion_N ;
-lin motion_N = mkN "motion" "motions" ; -- compound ion_N ;
-lin emotion_N = mkN "emotion" "emotions" ; -- compound ion_N ;
-lin demotion_N = mkN "demotion" "demotions" ; -- compound ion_N ;
-lin commotion_N = mkN "commotion" "commotions" ; -- compound ion_N ;
-lin locomotion_N = mkN "locomotion" "locomotions" ; -- compound ion_N ;
-lin promotion_N = mkN "promotion" "promotions" ; -- compound ion_N ;
-lin notion_N = mkN "notion" "notions" ; -- compound ion_N ;
-lin potion_N = mkN "potion" "potions" ; -- compound ion_N ;
-lin 'love-potion_N' = mkN "love-potion" "love-potions" ; -- compound ion_N ;
-lin devotion_N = mkN "devotion" "devotions" ; -- compound ion_N ;
-lin caption_N = mkN "caption" "captions" ; -- compound ion_N ;
-lin contraption_N = mkN "contraption" "contraptions" ; -- compound ion_N ;
-lin contraception_N = mkN "contraception" "contraceptions" ; -- compound ion_N ;
-lin deception_N = mkN "deception" "deceptions" ; -- compound ion_N ;
-lin reception_N = mkN "reception" "receptions" ; -- compound ion_N ;
-lin inception_N = mkN "inception" "inceptions" ; -- compound ion_N ;
-lin conception_N = mkN "conception" "conceptions" ; -- compound ion_N ;
-lin preconception_N = mkN "preconception" "preconceptions" ; -- compound ion_N ;
-lin misconception_N = mkN "misconception" "misconceptions" ; -- compound ion_N ;
-lin proprioception_N = mkN "proprioception" "proprioceptions" ; -- compound ion_N ;
-lin interoception_N = mkN "interoception" "interoceptions" ; -- compound ion_N ;
-lin exteroception_N = mkN "exteroception" "exteroceptions" ; -- compound ion_N ;
-lin perception_N = mkN "perception" "perceptions" ; -- compound ion_N ;
-lin apperception_N = mkN "apperception" "apperceptions" ; -- compound ion_N ;
-lin interception_N = mkN "interception" "interceptions" ; -- compound ion_N ;
-lin intussusception_N = mkN "intussusception" "intussusceptions" ; -- compound ion_N ;
-lin exception_N = mkN "exception" "exceptions" ; -- compound ion_N ;
-lin ascription_N = mkN "ascription" "ascriptions" ; -- compound ion_N ;
-lin subscription_N = mkN "subscription" "subscriptions" ; -- compound ion_N ;
-lin description_N = mkN "description" "descriptions" ; -- compound ion_N ;
-lin prescription_N = mkN "prescription" "prescriptions" ; -- compound ion_N ;
-lin circumscription_N = mkN "circumscription" "circumscriptions" ; -- compound ion_N ;
-lin transcription_N = mkN "transcription" "transcriptions" ; -- compound ion_N ;
-lin inscription_N = mkN "inscription" "inscriptions" ; -- compound ion_N ;
-lin conscription_N = mkN "conscription" "conscriptions" ; -- compound ion_N ;
-lin proscription_N = mkN "proscription" "proscriptions" ; -- compound ion_N ;
-lin superscription_N = mkN "superscription" "superscriptions" ; -- compound ion_N ;
-lin 'pre-emption_N' = mkN "pre-emption" "pre-emptions" ; -- compound ion_N ;
-lin redemption_N = mkN "redemption" "redemptions" ; -- compound ion_N ;
-lin preemption_N = mkN "preemption" "preemptions" ; -- compound ion_N ;
-lin exemption_N = mkN "exemption" "exemptions" ; -- compound ion_N ;
-lin gumption_N = mkN "gumption" "gumptions" ; -- compound ion_N ;
-lin subsumption_N = mkN "subsumption" "subsumptions" ; -- compound ion_N ;
-lin resumption_N = mkN "resumption" "resumptions" ; -- compound ion_N ;
-lin presumption_N = mkN "presumption" "presumptions" ; -- compound ion_N ;
-lin consumption_N = mkN "consumption" "consumptions" ; -- compound ion_N ;
-lin assumption_N = mkN "assumption" "assumptions" ; -- compound ion_N ;
-lin option_N = mkN "option" "options" ; -- compound ion_N ;
-lin adoption_N = mkN "adoption" "adoptions" ; -- compound ion_N ;
-lin sorption_N = mkN "sorption" "sorptions" ; -- compound ion_N ;
-lin absorption_N = mkN "absorption" "absorptions" ; -- compound ion_N ;
-lin malabsorption_N = mkN "malabsorption" "malabsorptions" ; -- compound ion_N ;
-lin adsorption_N = mkN "adsorption" "adsorptions" ; -- compound ion_N ;
-lin desorption_N = mkN "desorption" "desorptions" ; -- compound ion_N ;
-lin resorption_N = mkN "resorption" "resorptions" ; -- compound ion_N ;
-lin chemisorption_N = mkN "chemisorption" "chemisorptions" ; -- compound ion_N ;
-lin eruption_N = mkN "eruption" "eruptions" ; -- compound ion_N ;
-lin interruption_N = mkN "interruption" "interruptions" ; -- compound ion_N ;
-lin irruption_N = mkN "irruption" "irruptions" ; -- compound ion_N ;
-lin corruption_N = mkN "corruption" "corruptions" ; -- compound ion_N ;
-lin disruption_N = mkN "disruption" "disruptions" ; -- compound ion_N ;
-lin desertion_N = mkN "desertion" "desertions" ; -- compound ion_N ;
-lin insertion_N = mkN "insertion" "insertions" ; -- compound ion_N ;
-lin assertion_N = mkN "assertion" "assertions" ; -- compound ion_N ;
-lin 'self-assertion_N' = mkN "self-assertion" "self-assertions" ; -- compound ion_N ;
-lin reassertion_N = mkN "reassertion" "reassertions" ; -- compound ion_N ;
-lin exertion_N = mkN "exertion" "exertions" ; -- compound ion_N ;
-lin overexertion_N = mkN "overexertion" "overexertions" ; -- compound ion_N ;
-lin abortion_N = mkN "abortion" "abortions" ; -- compound ion_N ;
-lin portion_N = mkN "portion" "portions" ; -- compound ion_N ;
-lin proportion_N = mkN "proportion" "proportions" ; -- compound ion_N ;
-lin disproportion_N = mkN "disproportion" "disproportions" ; -- compound ion_N ;
-lin contortion_N = mkN "contortion" "contortions" ; -- compound ion_N ;
-lin distortion_N = mkN "distortion" "distortions" ; -- compound ion_N ;
-lin extortion_N = mkN "extortion" "extortions" ; -- compound ion_N ;
-lin bastion_N = mkN "bastion" "bastions" ; -- compound ion_N ;
-lin suggestion_N = mkN "suggestion" "suggestions" ; -- compound ion_N ;
-lin autosuggestion_N = mkN "autosuggestion" "autosuggestions" ; -- compound ion_N ;
-lin digestion_N = mkN "digestion" "digestions" ; -- compound ion_N ;
-lin indigestion_N = mkN "indigestion" "indigestions" ; -- compound ion_N ;
-lin congestion_N = mkN "congestion" "congestions" ; -- compound ion_N ;
-lin question_N = mkN "question" "questions" ; -- compound ion_N ;
-lin exhaustion_N = mkN "exhaustion" "exhaustions" ; -- compound ion_N ;
-lin combustion_N = mkN "combustion" "combustions" ; -- compound ion_N ;
-lin caution_N = mkN "caution" "cautions" ; -- compound ion_N ;
-lin precaution_N = mkN "precaution" "precautions" ; -- compound ion_N ;
-lin incaution_N = mkN "incaution" "incautions" ; -- compound ion_N ;
-lin retribution_N = mkN "retribution" "retributions" ; -- compound ion_N ;
-lin contribution_N = mkN "contribution" "contributions" ; -- compound ion_N ;
-lin distribution_N = mkN "distribution" "distributions" ; -- compound ion_N ;
-lin redistribution_N = mkN "redistribution" "redistributions" ; -- compound ion_N ;
-lin equidistribution_N = mkN "equidistribution" "equidistributions" ; -- compound ion_N ;
-lin attribution_N = mkN "attribution" "attributions" ; -- compound ion_N ;
-lin prosecution_N = mkN "prosecution" "prosecutions" ; -- compound ion_N ;
-lin persecution_N = mkN "persecution" "persecutions" ; -- compound ion_N ;
-lin execution_N = mkN "execution" "executions" ; -- compound ion_N ;
-lin locution_N = mkN "locution" "locutions" ; -- compound ion_N ;
-lin elocution_N = mkN "elocution" "elocutions" ; -- compound ion_N ;
-lin allocution_N = mkN "allocution" "allocutions" ; -- compound ion_N ;
-lin circumlocution_N = mkN "circumlocution" "circumlocutions" ; -- compound ion_N ;
-lin electrocution_N = mkN "electrocution" "electrocutions" ; -- compound ion_N ;
-lin ablution_N = mkN "ablution" "ablutions" ; -- compound ion_N ;
-lin elution_N = mkN "elution" "elutions" ; -- compound ion_N ;
-lin dilution_N = mkN "dilution" "dilutions" ; -- compound ion_N ;
-lin pollution_N = mkN "pollution" "pollutions" ; -- compound ion_N ;
-lin solution_N = mkN "solution" "solutions" ; -- compound ion_N ;
-lin absolution_N = mkN "absolution" "absolutions" ; -- compound ion_N ;
-lin resolution_N = mkN "resolution" "resolutions" ; -- compound ion_N ;
-lin irresolution_N = mkN "irresolution" "irresolutions" ; -- compound ion_N ;
-lin dissolution_N = mkN "dissolution" "dissolutions" ; -- compound ion_N ;
-lin volution_N = mkN "volution" "volutions" ; -- compound ion_N ;
-lin evolution_N = mkN "evolution" "evolutions" ; -- compound ion_N ;
-lin devolution_N = mkN "devolution" "devolutions" ; -- compound ion_N ;
-lin macroevolution_N = mkN "macroevolution" "macroevolutions" ; -- compound ion_N ;
-lin microevolution_N = mkN "microevolution" "microevolutions" ; -- compound ion_N ;
-lin revolution_N = mkN "revolution" "revolutions" ; -- compound ion_N ;
-lin 'counter-revolution_N' = mkN "counter-revolution" "counter-revolutions" ; -- compound ion_N ;
-lin counterrevolution_N = mkN "counterrevolution" "counterrevolutions" ; -- compound ion_N ;
-lin circumvolution_N = mkN "circumvolution" "circumvolutions" ; -- compound ion_N ;
-lin involution_N = mkN "involution" "involutions" ; -- compound ion_N ;
-lin convolution_N = mkN "convolution" "convolutions" ; -- compound ion_N ;
-lin diminution_N = mkN "diminution" "diminutions" ; -- compound ion_N ;
-lin substitution_N = mkN "substitution" "substitutions" ; -- compound ion_N ;
-lin destitution_N = mkN "destitution" "destitutions" ; -- compound ion_N ;
-lin restitution_N = mkN "restitution" "restitutions" ; -- compound ion_N ;
-lin institution_N = mkN "institution" "institutions" ; -- compound ion_N ;
-lin constitution_N = mkN "constitution" "constitutions" ; -- compound ion_N ;
-lin prostitution_N = mkN "prostitution" "prostitutions" ; -- compound ion_N ;
-lin oblivion_N = mkN "oblivion" "oblivions" ; -- compound ion_N ;
-lin alluvion_N = mkN "alluvion" "alluvions" ; -- compound ion_N ;
-lin flexion_N = mkN "flexion" "flexions" ; -- compound ion_N ;
-lin reflexion_N = mkN "reflexion" "reflexions" ; -- compound ion_N ;
-lin dorsiflexion_N = mkN "dorsiflexion" "dorsiflexions" ; -- compound ion_N ;
-lin inflexion_N = mkN "inflexion" "inflexions" ; -- compound ion_N ;
-lin genuflexion_N = mkN "genuflexion" "genuflexions" ; -- compound ion_N ;
-lin complexion_N = mkN "complexion" "complexions" ; -- compound ion_N ;
-lin connexion_N = mkN "connexion" "connexions" ; -- compound ion_N ;
-lin crucifixion_N = mkN "crucifixion" "crucifixions" ; -- compound ion_N ;
-lin zion_N = mkN "zion" "zions" ; -- notcompound ion_N ;
-lin chalazion_N = mkN "chalazion" "chalazions" ; -- compound ion_N ;
-lin donjon_N = mkN "donjon" "donjons" ;
-lin ikon_N = mkN "ikon" "ikons" ;
-lin halon_N = mkN "halon" "halons" ;
-lin paleencephalon_N = mkN "paleencephalon" "paleencephalons" ; -- compound halon_N ;
-lin neencephalon_N = mkN "neencephalon" "neencephalons" ; -- compound halon_N ;
-lin diencephalon_N = mkN "diencephalon" "diencephalons" ; -- compound halon_N ;
-lin telencephalon_N = mkN "telencephalon" "telencephalons" ; -- compound halon_N ;
-lin myelencephalon_N = mkN "myelencephalon" "myelencephalons" ; -- compound halon_N ;
-lin rhinencephalon_N = mkN "rhinencephalon" "rhinencephalons" ; -- compound halon_N ;
-lin metencephalon_N = mkN "metencephalon" "metencephalons" ; -- compound halon_N ;
-lin salon_N = mkN "salon" "salons" ;
-lin 'beauty-salon_N' = mkN "beauty-salon" "beauty-salons" ; -- compound salon_N ;
-lin talon_N = mkN "talon" "talons" ;
-lin schizopetalon_N = mkN "schizopetalon" "schizopetalons" ; -- compound talon_N ;
-lin felon_N = mkN "felon" "felons" ;
-lin echelon_N = mkN "echelon" "echelons" ;
-lin melon_N = mkN "melon" "melons" ;
-lin pademelon_N = mkN "pademelon" "pademelons" ; -- compound melon_N ;
-lin muskmelon_N = mkN "muskmelon" "muskmelons" ; -- compound melon_N ;
-lin watermelon_N = mkN "watermelon" "watermelons" ; -- compound melon_N ;
-lin mouflon_N = mkN "mouflon" "mouflons" ;
-lin tiglon_N = mkN "tiglon" "tiglons" ;
-lin decathlon_N = mkN "decathlon" "decathlons" ;
-lin pentathlon_N = mkN "pentathlon" "pentathlons" ;
-lin epsilon_N = mkN "epsilon" "epsilons" ;
-lin upsilon_N = mkN "upsilon" "upsilons" ;
-lin gallon_N = mkN "gallon" "gallons" ;
-lin papillon_N = mkN "papillon" "papillons" ;
-lin carillon_N = mkN "carillon" "carillons" ;
-lin bouillon_N = mkN "bouillon" "bouillons" ;
-lin colon_N = mkN "colon" "colons" ;
-lin megacolon_N = mkN "megacolon" "megacolons" ; -- compound colon_N ;
-lin semicolon_N = mkN "semicolon" "semicolons" ; -- compound colon_N ;
-lin mesocolon_N = mkN "mesocolon" "mesocolons" ; -- compound colon_N ;
-lin stolon_N = mkN "stolon" "stolons" ;
-lin merlon_N = mkN "merlon" "merlons" ;
-lin nylon_N = mkN "nylon" "nylons" ;
-lin pylon_N = mkN "pylon" "pylons" ;
-lin cinnamon_N = mkN "cinnamon" "cinnamons" ;
-lin daemon_N = mkN "daemon" "daemons" ;
-lin demon_N = mkN "demon" "demons" ;
-lin cacodemon_N = mkN "cacodemon" "cacodemons" ; -- compound demon_N ;
-lin eudemon_N = mkN "eudemon" "eudemons" ; -- compound demon_N ;
-lin hegemon_N = mkN "hegemon" "hegemons" ;
-lin lemon_N = mkN "lemon" "lemons" ;
-lin gammon_N = mkN "gammon" "gammons" ;
-lin backgammon_N = mkN "backgammon" "backgammons" ; -- compound gammon_N ;
-lin mammon_N = mkN "mammon" "mammons" ;
-lin persimmon_N = mkN "persimmon" "persimmons" ;
-lin common_N = mkN "common" "commons" ;
-lin gnomon_N = mkN "gnomon" "gnomons" ;
-lin sermon_N = mkN "sermon" "sermons" ;
-lin Mormon_N = mkN "Mormon" "Mormons" ;
-lin ichneumon_N = mkN "ichneumon" "ichneumons" ;
-lin etymon_N = mkN "etymon" "etymons" ;
-lin canon_N = mkN "canon" "canons" ;
-lin organon_N = mkN "organon" "organons" ;
-lin olecranon_N = mkN "olecranon" "olecranons" ;
-lin paregmenon_N = mkN "paregmenon" "paregmenons" ;
-lin prolegomenon_N = mkN "prolegomenon" "prolegomenons" ;
-lin epiphenomenon_N = mkN "epiphenomenon" "epiphenomenons" ;
-lin noumenon_N = mkN "noumenon" "noumenons" ;
-lin tenon_N = mkN "tenon" "tenons" ;
-lin guenon_N = mkN "guenon" "guenons" ;
-lin xenon_N = mkN "xenon" "xenons" ;
-lin chignon_N = mkN "chignon" "chignons" ;
-lin bourguignon_N = mkN "bourguignon" "bourguignons" ;
-lin ninon_N = mkN "ninon" "ninons" ;
-lin pinon_N = mkN "pinon" "pinons" ;
-lin cannon_N = mkN "cannon" "cannons" ;
-lin watercannon_N = mkN "watercannon" "watercannons" ; -- compound cannon_N ;
-lin pennon_N = mkN "pennon" "pennons" ;
-lin boon_N = mkN "boon" "boons" ;
-lin baboon_N = mkN "baboon" "baboons" ; -- compound boon_N ;
-lin coon_N = mkN "coon" "coons" ;
-lin racoon_N = mkN "racoon" "racoons" ; -- compound coon_N ;
-lin raccoon_N = mkN "raccoon" "raccoons" ; -- compound coon_N ;
-lin puccoon_N = mkN "puccoon" "puccoons" ; -- compound coon_N ;
-lin cocoon_N = mkN "cocoon" "cocoons" ; -- compound coon_N ;
-lin tycoon_N = mkN "tycoon" "tycoons" ; -- compound coon_N ;
-lin bridoon_N = mkN "bridoon" "bridoons" ;
-lin cardoon_N = mkN "cardoon" "cardoons" ;
-lin buffoon_N = mkN "buffoon" "buffoons" ;
-lin goon_N = mkN "goon" "goons" ;
-lin lagoon_N = mkN "lagoon" "lagoons" ; -- compound goon_N ;
-lin dragoon_N = mkN "dragoon" "dragoons" ; -- compound goon_N ;
-lin jargoon_N = mkN "jargoon" "jargoons" ; -- compound goon_N ;
-lin typhoon_N = mkN "typhoon" "typhoons" ;
-lin dioon_N = mkN "dioon" "dioons" ;
-lin loon_N = mkN "loon" "loons" ;
-lin saloon_N = mkN "saloon" "saloons" ; -- compound loon_N ;
-lin pantaloon_N = mkN "pantaloon" "pantaloons" ; -- compound loon_N ;
-lin doubloon_N = mkN "doubloon" "doubloons" ; -- compound loon_N ;
-lin balloon_N = mkN "balloon" "balloons" ; -- compound loon_N ;
-lin 'kite-balloon_N' = mkN "kite-balloon" "kite-balloons" ; -- compound loon_N ;
-lin moon_N = mkN "moon" "moons" ;
-lin simoon_N = mkN "simoon" "simoons" ; -- compound moon_N ;
-lin honeymoon_N = mkN "honeymoon" "honeymoons" ; -- compound moon_N ;
-lin noon_N = mkN "noon" "noons" ;
-lin forenoon_N = mkN "forenoon" "forenoons" ; -- compound noon_N ;
-lin afternoon_N = mkN "afternoon" "afternoons" ; -- compound noon_N ;
-lin midafternoon_N = mkN "midafternoon" "midafternoons" ; -- compound noon_N ;
-lin poon_N = mkN "poon" "poons" ;
-lin lampoon_N = mkN "lampoon" "lampoons" ; -- compound poon_N ;
-lin harpoon_N = mkN "harpoon" "harpoons" ; -- compound poon_N ;
-lin spoon_N = mkN "spoon" "spoons" ; -- notcompound poon_N ;
-lin teaspoon_N = mkN "teaspoon" "teaspoons" ; -- compound poon_N ;
-lin tablespoon_N = mkN "tablespoon" "tablespoons" ; -- compound poon_N ;
-lin soupspoon_N = mkN "soupspoon" "soupspoons" ; -- compound poon_N ;
-lin dessertspoon_N = mkN "dessertspoon" "dessertspoons" ; -- compound poon_N ;
-lin macaroon_N = mkN "macaroon" "macaroons" ;
-lin maroon_N = mkN "maroon" "maroons" ;
-lin quadroon_N = mkN "quadroon" "quadroons" ;
-lin kroon_N = mkN "kroon" "kroons" ;
-lin tenoroon_N = mkN "tenoroon" "tenoroons" ;
-lin octoroon_N = mkN "octoroon" "octoroons" ;
-lin vinegarroon_N = mkN "vinegarroon" "vinegarroons" ;
-lin poltroon_N = mkN "poltroon" "poltroons" ;
-lin monsoon_N = mkN "monsoon" "monsoons" ;
-lin bassoon_N = mkN "bassoon" "bassoons" ;
-lin contrabassoon_N = mkN "contrabassoon" "contrabassoons" ; -- compound bassoon_N ;
-lin saskatoon_N = mkN "saskatoon" "saskatoons" ;
-lin platoon_N = mkN "platoon" "platoons" ;
-lin pontoon_N = mkN "pontoon" "pontoons" ;
-lin cartoon_N = mkN "cartoon" "cartoons" ;
-lin festoon_N = mkN "festoon" "festoons" ;
-lin spittoon_N = mkN "spittoon" "spittoons" ;
-lin swoon_N = mkN "swoon" "swoons" ;
-lin capon_N = mkN "capon" "capons" ;
-lin weapon_N = mkN "weapon" "weapons" ;
-lin bioweapon_N = mkN "bioweapon" "bioweapons" ; -- compound weapon_N ;
-lin slipon_N = mkN "slipon" "slipons" ;
-lin crampon_N = mkN "crampon" "crampons" ;
-lin tampon_N = mkN "tampon" "tampons" ;
-lin pompon_N = mkN "pompon" "pompons" ;
-lin tarpon_N = mkN "tarpon" "tarpons" ;
-lin coupon_N = mkN "coupon" "coupons" ;
-lin baron_N = mkN "baron" "barons" ;
-lin macron_N = mkN "macron" "macrons" ;
-lin micron_N = mkN "micron" "microns" ;
-lin omicron_N = mkN "omicron" "omicrons" ; -- notcompound micron_N ;
-lin chylomicron_N = mkN "chylomicron" "chylomicrons" ; -- compound micron_N ;
-lin hadron_N = mkN "hadron" "hadrons" ;
-lin squadron_N = mkN "squadron" "squadrons" ;
-lin decahedron_N = mkN "decahedron" "decahedrons" ;
-lin dodecahedron_N = mkN "dodecahedron" "dodecahedrons" ; -- compound decahedron_N ;
-lin tetrahedron_N = mkN "tetrahedron" "tetrahedrons" ;
-lin icosahedron_N = mkN "icosahedron" "icosahedrons" ;
-lin octahedron_N = mkN "octahedron" "octahedrons" ;
-lin pentahedron_N = mkN "pentahedron" "pentahedrons" ;
-lin hexahedron_N = mkN "hexahedron" "hexahedrons" ;
-lin rhombohedron_N = mkN "rhombohedron" "rhombohedrons" ;
-lin trapezohedron_N = mkN "trapezohedron" "trapezohedrons" ;
-lin polyhedron_N = mkN "polyhedron" "polyhedrons" ;
-lin caldron_N = mkN "caldron" "caldrons" ;
-lin chaldron_N = mkN "chaldron" "chaldrons" ;
-lin cauldron_N = mkN "cauldron" "cauldrons" ;
-lin epidendron_N = mkN "epidendron" "epidendrons" ;
-lin rhododendron_N = mkN "rhododendron" "rhododendrons" ;
-lin philodendron_N = mkN "philodendron" "philodendrons" ;
-lin interferon_N = mkN "interferon" "interferons" ;
-lin heron_N = mkN "heron" "herons" ;
-lin aileron_N = mkN "aileron" "ailerons" ;
-lin ephemeron_N = mkN "ephemeron" "ephemerons" ;
-lin chaperon_N = mkN "chaperon" "chaperons" ;
-lin operon_N = mkN "operon" "operons" ;
-lin hyperon_N = mkN "hyperon" "hyperons" ;
-lin enteron_N = mkN "enteron" "enterons" ;
-lin archenteron_N = mkN "archenteron" "archenterons" ; -- compound enteron_N ;
-lin coelenteron_N = mkN "coelenteron" "coelenterons" ; -- compound enteron_N ;
-lin neuropteron_N = mkN "neuropteron" "neuropterons" ;
-lin deuteron_N = mkN "deuteron" "deuterons" ;
-lin saffron_N = mkN "saffron" "saffrons" ;
-lin chanfron_N = mkN "chanfron" "chanfrons" ;
-lin nephron_N = mkN "nephron" "nephrons" ;
-lin iron_N = mkN "iron" "irons" ;
-lin 'angle-iron_N' = mkN "angle-iron" "angle-irons" ; -- compound iron_N ;
-lin 'pig-iron_N' = mkN "pig-iron" "pig-irons" ; -- compound iron_N ;
-lin 'branding-iron_N' = mkN "branding-iron" "branding-irons" ; -- compound iron_N ;
-lin 'smoothing-iron_N' = mkN "smoothing-iron" "smoothing-irons" ; -- compound iron_N ;
-lin 'grappling-iron_N' = mkN "grappling-iron" "grappling-irons" ; -- compound iron_N ;
-lin 'searing-iron_N' = mkN "searing-iron" "searing-irons" ; -- compound iron_N ;
-lin 'soldering-iron_N' = mkN "soldering-iron" "soldering-irons" ; -- compound iron_N ;
-lin 'putting-iron_N' = mkN "putting-iron" "putting-irons" ; -- compound iron_N ;
-lin 'scrap-iron_N' = mkN "scrap-iron" "scrap-irons" ; -- compound iron_N ;
-lin 'cramp-iron_N' = mkN "cramp-iron" "cramp-irons" ; -- compound iron_N ;
-lin 'flat-iron_N' = mkN "flat-iron" "flat-irons" ; -- compound iron_N ;
-lin midiron_N = mkN "midiron" "midirons" ; -- compound iron_N ;
-lin gridiron_N = mkN "gridiron" "gridirons" ; -- compound iron_N ;
-lin andiron_N = mkN "andiron" "andirons" ; -- compound iron_N ;
-lin flatiron_N = mkN "flatiron" "flatirons" ; -- compound iron_N ;
-lin boron_N = mkN "boron" "borons" ;
-lin moron_N = mkN "moron" "morons" ;
-lin oxymoron_N = mkN "oxymoron" "oxymorons" ; -- compound moron_N ;
-lin apron_N = mkN "apron" "aprons" ;
-lin matron_N = mkN "matron" "matrons" ;
-lin patron_N = mkN "patron" "patrons" ;
-lin betatron_N = mkN "betatron" "betatrons" ;
-lin bevatron_N = mkN "bevatron" "bevatrons" ;
-lin electron_N = mkN "electron" "electrons" ;
-lin photoelectron_N = mkN "photoelectron" "photoelectrons" ; -- compound electron_N ;
-lin magnetron_N = mkN "magnetron" "magnetrons" ;
-lin citron_N = mkN "citron" "citrons" ;
-lin quercitron_N = mkN "quercitron" "quercitrons" ; -- compound citron_N ;
-lin positron_N = mkN "positron" "positrons" ;
-lin intron_N = mkN "intron" "introns" ;
-lin cyclotron_N = mkN "cyclotron" "cyclotrons" ;
-lin synchrocyclotron_N = mkN "synchrocyclotron" "synchrocyclotrons" ; -- compound cyclotron_N ;
-lin cosmotron_N = mkN "cosmotron" "cosmotrons" ;
-lin synchrotron_N = mkN "synchrotron" "synchrotrons" ;
-lin plastron_N = mkN "plastron" "plastrons" ;
-lin klystron_N = mkN "klystron" "klystrons" ;
-lin neutron_N = mkN "neutron" "neutrons" ;
-lin antineutron_N = mkN "antineutron" "antineutrons" ; -- compound neutron_N ;
-lin linuron_N = mkN "linuron" "linurons" ;
-lin chevron_N = mkN "chevron" "chevrons" ;
-lin son_N = mkN "son" "sons" ;
-lin reason_N = mkN "reason" "reasons" ; -- compound son_N ;
-lin treason_N = mkN "treason" "treasons" ; -- compound son_N ;
-lin season_N = mkN "season" "seasons" ; -- compound son_N ;
-lin preseason_N = mkN "preseason" "preseasons" ; -- compound son_N ;
-lin mason_N = mkN "mason" "masons" ; -- compound son_N ;
-lin freemason_N = mkN "freemason" "freemasons" ; -- compound son_N ;
-lin stonemason_N = mkN "stonemason" "stonemasons" ; -- compound son_N ;
-lin diapason_N = mkN "diapason" "diapasons" ; -- compound son_N ;
-lin dobson_N = mkN "dobson" "dobsons" ; -- compound son_N ;
-lin grandson_N = mkN "grandson" "grandsons" ; -- compound son_N ;
-lin godson_N = mkN "godson" "godsons" ; -- compound son_N ;
-lin meson_N = mkN "meson" "mesons" ; -- compound son_N ;
-lin antimeson_N = mkN "antimeson" "antimesons" ; -- compound son_N ;
-lin liaison_N = mkN "liaison" "liaisons" ; -- compound son_N ;
-lin benison_N = mkN "benison" "benisons" ; -- compound son_N ;
-lin venison_N = mkN "venison" "venisons" ; -- compound son_N ;
-lin unison_N = mkN "unison" "unisons" ; -- compound son_N ;
-lin poison_N = mkN "poison" "poisons" ; -- compound son_N ;
-lin caparison_N = mkN "caparison" "caparisons" ; -- compound son_N ;
-lin comparison_N = mkN "comparison" "comparisons" ; -- compound son_N ;
-lin grison_N = mkN "grison" "grisons" ; -- compound son_N ;
-lin orison_N = mkN "orison" "orisons" ; -- compound son_N ;
-lin prison_N = mkN "prison" "prisons" ; -- compound son_N ;
-lin garrison_N = mkN "garrison" "garrisons" ; -- compound son_N ;
-lin keelson_N = mkN "keelson" "keelsons" ; -- compound son_N ;
-lin nelson_N = mkN "nelson" "nelsons" ; -- compound son_N ;
-lin damson_N = mkN "damson" "damsons" ; -- compound son_N ;
-lin crimson_N = mkN "crimson" "crimsons" ; -- compound son_N ;
-lin boson_N = mkN "boson" "bosons" ; -- compound son_N ;
-lin transposon_N = mkN "transposon" "transposons" ; -- compound son_N ;
-lin stepson_N = mkN "stepson" "stepsons" ; -- compound son_N ;
-lin arson_N = mkN "arson" "arsons" ; -- compound son_N ;
-lin parson_N = mkN "parson" "parsons" ; -- compound son_N ;
-lin person_N = mkN "person" "persons" ; -- compound son_N ;
-lin foreperson_N = mkN "foreperson" "forepersons" ; -- compound son_N ;
-lin nonperson_N = mkN "nonperson" "nonpersons" ; -- compound son_N ;
-lin counterperson_N = mkN "counterperson" "counterpersons" ; -- compound son_N ;
-lin spokesperson_N = mkN "spokesperson" "spokespersons" ; -- compound son_N ;
-lin salesperson_N = mkN "salesperson" "salespersons" ; -- compound son_N ;
-lin businessperson_N = mkN "businessperson" "businesspersons" ; -- compound son_N ;
-lin lesson_N = mkN "lesson" "lessons" ; -- compound son_N ;
-lin caisson_N = mkN "caisson" "caissons" ; -- compound son_N ;
-lin frisson_N = mkN "frisson" "frissons" ; -- compound son_N ;
-lin stetson_N = mkN "stetson" "stetsons" ; -- compound son_N ;
-lin advowson_N = mkN "advowson" "advowsons" ; -- compound son_N ;
-lin hyson_N = mkN "hyson" "hysons" ; -- compound son_N ;
-lin ton_N = mkN "ton" "tons" ;
-lin baton_N = mkN "baton" "batons" ; -- compound ton_N ;
-lin hyperbaton_N = mkN "hyperbaton" "hyperbatons" ; -- compound ton_N ;
-lin megaton_N = mkN "megaton" "megatons" ; -- compound ton_N ;
-lin automaton_N = mkN "automaton" "automatons" ; -- compound ton_N ;
-lin craton_N = mkN "craton" "cratons" ; -- compound ton_N ;
-lin sheraton_N = mkN "sheraton" "sheratons" ; -- compound ton_N ;
-lin phaeton_N = mkN "phaeton" "phaetons" ; -- compound ton_N ;
-lin asyndeton_N = mkN "asyndeton" "asyndetons" ; -- compound ton_N ;
-lin polysyndeton_N = mkN "polysyndeton" "polysyndetons" ; -- compound ton_N ;
-lin halogeton_N = mkN "halogeton" "halogetons" ; -- compound ton_N ;
-lin doubleton_N = mkN "doubleton" "doubletons" ; -- compound ton_N ;
-lin skeleton_N = mkN "skeleton" "skeletons" ; -- compound ton_N ;
-lin endoskeleton_N = mkN "endoskeleton" "endoskeletons" ; -- compound ton_N ;
-lin cytoskeleton_N = mkN "cytoskeleton" "cytoskeletons" ; -- compound ton_N ;
-lin exoskeleton_N = mkN "exoskeleton" "exoskeletons" ; -- compound ton_N ;
-lin singleton_N = mkN "singleton" "singletons" ; -- compound ton_N ;
-lin simpleton_N = mkN "simpleton" "simpletons" ; -- compound ton_N ;
-lin magneton_N = mkN "magneton" "magnetons" ; -- compound ton_N ;
-lin wellington_N = mkN "wellington" "wellingtons" ; -- compound ton_N ;
-lin chiton_N = mkN "chiton" "chitons" ; -- compound ton_N ;
-lin soliton_N = mkN "soliton" "solitons" ; -- compound ton_N ;
-lin piton_N = mkN "piton" "pitons" ; -- compound ton_N ;
-lin briton_N = mkN "briton" "britons" ; -- compound ton_N ;
-lin triton_N = mkN "triton" "tritons" ; -- compound ton_N ;
-lin graviton_N = mkN "graviton" "gravitons" ; -- compound ton_N ;
-lin nekton_N = mkN "nekton" "nektons" ; -- compound ton_N ;
-lin plankton_N = mkN "plankton" "planktons" ; -- compound ton_N ;
-lin zooplankton_N = mkN "zooplankton" "zooplanktons" ; -- compound ton_N ;
-lin phytoplankton_N = mkN "phytoplankton" "phytoplanktons" ; -- compound ton_N ;
-lin stilton_N = mkN "stilton" "stiltons" ; -- compound ton_N ;
-lin wilton_N = mkN "wilton" "wiltons" ; -- compound ton_N ;
-lin canton_N = mkN "canton" "cantons" ; -- compound ton_N ;
-lin wanton_N = mkN "wanton" "wantons" ; -- compound ton_N ;
-lin badminton_N = mkN "badminton" "badmintons" ; -- compound ton_N ;
-lin photon_N = mkN "photon" "photons" ; -- compound ton_N ;
-lin kiloton_N = mkN "kiloton" "kilotons" ; -- compound ton_N ;
-lin croton_N = mkN "croton" "crotons" ; -- compound ton_N ;
-lin proton_N = mkN "proton" "protons" ; -- compound ton_N ;
-lin antiproton_N = mkN "antiproton" "antiprotons" ; -- compound ton_N ;
-lin polyptoton_N = mkN "polyptoton" "polyptotons" ; -- compound ton_N ;
-lin alkapton_N = mkN "alkapton" "alkaptons" ; -- compound ton_N ;
-lin lepton_N = mkN "lepton" "leptons" ; -- compound ton_N ;
-lin antilepton_N = mkN "antilepton" "antileptons" ; -- compound ton_N ;
-lin krypton_N = mkN "krypton" "kryptons" ; -- compound ton_N ;
-lin carton_N = mkN "carton" "cartons" ; -- compound ton_N ;
-lin burton_N = mkN "burton" "burtons" ; -- compound ton_N ;
-lin charleston_N = mkN "charleston" "charlestons" ; -- compound ton_N ;
-lin phlogiston_N = mkN "phlogiston" "phlogistons" ; -- compound ton_N ;
-lin piston_N = mkN "piston" "pistons" ; -- compound ton_N ;
-lin cotton_N = mkN "cotton" "cottons" ; -- compound ton_N ;
-lin guncotton_N = mkN "guncotton" "guncottons" ; -- compound ton_N ;
-lin button_N = mkN "button" "buttons" ; -- compound ton_N ;
-lin glutton_N = mkN "glutton" "gluttons" ; -- compound ton_N ;
-lin mutton_N = mkN "mutton" "muttons" ; -- compound ton_N ;
-lin teuton_N = mkN "teuton" "teutons" ; -- compound ton_N ;
-lin futon_N = mkN "futon" "futons" ; -- compound ton_N ;
-lin muton_N = mkN "muton" "mutons" ; -- compound ton_N ;
-lin mouton_N = mkN "mouton" "moutons" ; -- compound ton_N ;
-lin crouton_N = mkN "crouton" "croutons" ; -- compound ton_N ;
-lin newton_N = mkN "newton" "newtons" ; -- compound ton_N ;
-lin sexton_N = mkN "sexton" "sextons" ; -- compound ton_N ;
-lin psilophyton_N = mkN "psilophyton" "psilophytons" ; -- compound ton_N ;
-lin tauon_N = mkN "tauon" "tauons" ;
-lin antitauon_N = mkN "antitauon" "antitauons" ; -- compound tauon_N ;
-lin gluon_N = mkN "gluon" "gluons" ;
-lin muon_N = mkN "muon" "muons" ;
-lin antimuon_N = mkN "antimuon" "antimuons" ; -- compound muon_N ;
-lin axon_N = mkN "axon" "axons" ;
-lin klaxon_N = mkN "klaxon" "klaxons" ; -- notcompound axon_N ;
-lin saxon_N = mkN "saxon" "saxons" ; -- notcompound axon_N ;
-lin 'anglo-saxon_N' = mkN "anglo-saxon" "anglo-saxons" ; -- compound axon_N ;
-lin exon_N = mkN "exon" "exons" ;
-lin rayon_N = mkN "rayon" "rayons" ;
-lin crayon_N = mkN "crayon" "crayons" ; -- notcompound rayon_N ;
-lin halcyon_N = mkN "halcyon" "halcyons" ;
-lin canyon_N = mkN "canyon" "canyons" ;
-lin toyon_N = mkN "toyon" "toyons" ;
-lin baryon_N = mkN "baryon" "baryons" ;
-lin antibaryon_N = mkN "antibaryon" "antibaryons" ; -- compound baryon_N ;
-lin dacryon_N = mkN "dacryon" "dacryons" ;
-lin ophryon_N = mkN "ophryon" "ophryons" ;
-lin blazon_N = mkN "blazon" "blazons" ;
-lin amazon_N = mkN "amazon" "amazons" ;
-lin horizon_N = mkN "horizon" "horizons" ;
-lin soupçon_N = mkN "soupçon" "soupçons" ;
-lin cañon_N = mkN "cañon" "cañons" ;
-lin rn_N = mkN "rn" "rns" ;
-lin barn_N = mkN "barn" "barns" ; -- compound rn_N ;
-lin 'tithe-barn_N' = mkN "tithe-barn" "tithe-barns" ; -- compound rn_N ;
-lin cowbarn_N = mkN "cowbarn" "cowbarns" ; -- compound rn_N ;
-lin darn_N = mkN "darn" "darns" ; -- compound rn_N ;
-lin 'pay-as-you-earn_N' = mkN "pay-as-you-earn" "pay-as-you-earns" ; -- compound rn_N ;
-lin tarn_N = mkN "tarn" "tarns" ; -- compound rn_N ;
-lin yarn_N = mkN "yarn" "yarns" ; -- compound rn_N ;
-lin 'rope-yarn_N' = mkN "rope-yarn" "rope-yarns" ; -- compound rn_N ;
-lin ern_N = mkN "ern" "erns" ; -- notcompound rn_N ;
-lin concern_N = mkN "concern" "concerns" ; -- compound rn_N ;
-lin unconcern_N = mkN "unconcern" "unconcerns" ; -- compound rn_N ;
-lin modern_N = mkN "modern" "moderns" ; -- compound rn_N ;
-lin fern_N = mkN "fern" "ferns" ; -- compound rn_N ;
-lin 'tree-fern_N' = mkN "tree-fern" "tree-ferns" ; -- compound rn_N ;
-lin kern_N = mkN "kern" "kerns" ; -- compound rn_N ;
-lin casern_N = mkN "casern" "caserns" ; -- compound rn_N ;
-lin tern_N = mkN "tern" "terns" ; -- compound rn_N ;
-lin lectern_N = mkN "lectern" "lecterns" ; -- compound rn_N ;
-lin subaltern_N = mkN "subaltern" "subalterns" ; -- compound rn_N ;
-lin lantern_N = mkN "lantern" "lanterns" ; -- compound rn_N ;
-lin 'jack-o\'-lantern_N' = mkN "jack-o'-lantern" "jack-o'-lanterns" ; -- compound rn_N ;
-lin 'storm-lantern_N' = mkN "storm-lantern" "storm-lanterns" ; -- compound rn_N ;
-lin intern_N = mkN "intern" "interns" ; -- compound rn_N ;
-lin stern_N = mkN "stern" "sterns" ; -- compound rn_N ;
-lin pastern_N = mkN "pastern" "pasterns" ; -- compound rn_N ;
-lin western_N = mkN "western" "westerns" ; -- compound rn_N ;
-lin cistern_N = mkN "cistern" "cisterns" ; -- compound rn_N ;
-lin postern_N = mkN "postern" "posterns" ; -- compound rn_N ;
-lin slattern_N = mkN "slattern" "slatterns" ; -- compound rn_N ;
-lin pattern_N = mkN "pattern" "patterns" ; -- compound rn_N ;
-lin 'willow-pattern_N' = mkN "willow-pattern" "willow-patterns" ; -- compound rn_N ;
-lin bittern_N = mkN "bittern" "bitterns" ; -- compound rn_N ;
-lin cittern_N = mkN "cittern" "citterns" ; -- compound rn_N ;
-lin extern_N = mkN "extern" "externs" ; -- compound rn_N ;
-lin quern_N = mkN "quern" "querns" ; -- compound rn_N ;
-lin cavern_N = mkN "cavern" "caverns" ; -- compound rn_N ;
-lin klavern_N = mkN "klavern" "klaverns" ; -- compound rn_N ;
-lin tavern_N = mkN "tavern" "taverns" ; -- compound rn_N ;
-lin wyvern_N = mkN "wyvern" "wyverns" ; -- compound rn_N ;
-lin bairn_N = mkN "bairn" "bairns" ; -- compound rn_N ;
-lin cairn_N = mkN "cairn" "cairns" ; -- compound rn_N ;
-lin firstborn_N = mkN "firstborn" "firstborns" ; -- compound rn_N ;
-lin corn_N = mkN "corn" "corns" ; -- compound rn_N ;
-lin 'seed-corn_N' = mkN "seed-corn" "seed-corns" ; -- compound rn_N ;
-lin acorn_N = mkN "acorn" "acorns" ; -- compound rn_N ;
-lin bicorn_N = mkN "bicorn" "bicorns" ; -- compound rn_N ;
-lin unicorn_N = mkN "unicorn" "unicorns" ; -- compound rn_N ;
-lin tricorn_N = mkN "tricorn" "tricorns" ; -- compound rn_N ;
-lin broomcorn_N = mkN "broomcorn" "broomcorns" ; -- compound rn_N ;
-lin popcorn_N = mkN "popcorn" "popcorns" ; -- compound rn_N ;
-lin peppercorn_N = mkN "peppercorn" "peppercorns" ; -- compound rn_N ;
-lin scorn_N = mkN "scorn" "scorns" ; -- compound rn_N ;
-lin barleycorn_N = mkN "barleycorn" "barleycorns" ; -- compound rn_N ;
-lin horn_N = mkN "horn" "horns" ; -- compound rn_N ;
-lin 'powder-horn_N' = mkN "powder-horn" "powder-horns" ; -- compound rn_N ;
-lin shoehorn_N = mkN "shoehorn" "shoehorns" ; -- compound rn_N ;
-lin leghorn_N = mkN "leghorn" "leghorns" ; -- compound rn_N ;
-lin bighorn_N = mkN "bighorn" "bighorns" ; -- compound rn_N ;
-lin longhorn_N = mkN "longhorn" "longhorns" ; -- compound rn_N ;
-lin pronghorn_N = mkN "pronghorn" "pronghorns" ; -- compound rn_N ;
-lin foghorn_N = mkN "foghorn" "foghorns" ; -- compound rn_N ;
-lin stinkhorn_N = mkN "stinkhorn" "stinkhorns" ; -- compound rn_N ;
-lin flugelhorn_N = mkN "flugelhorn" "flugelhorns" ; -- compound rn_N ;
-lin bullhorn_N = mkN "bullhorn" "bullhorns" ; -- compound rn_N ;
-lin krummhorn_N = mkN "krummhorn" "krummhorns" ; -- compound rn_N ;
-lin greenhorn_N = mkN "greenhorn" "greenhorns" ; -- compound rn_N ;
-lin thorn_N = mkN "thorn" "thorns" ; -- compound rn_N ;
-lin whitethorn_N = mkN "whitethorn" "whitethorns" ; -- compound rn_N ;
-lin blackthorn_N = mkN "blackthorn" "blackthorns" ; -- compound rn_N ;
-lin buckthorn_N = mkN "buckthorn" "buckthorns" ; -- compound rn_N ;
-lin shorthorn_N = mkN "shorthorn" "shorthorns" ; -- compound rn_N ;
-lin hawthorn_N = mkN "hawthorn" "hawthorns" ; -- compound rn_N ;
-lin saxhorn_N = mkN "saxhorn" "saxhorns" ; -- compound rn_N ;
-lin morn_N = mkN "morn" "morns" ; -- compound rn_N ;
-lin porn_N = mkN "porn" "porns" ; -- compound rn_N ;
-lin srn_N = mkN "srn" "srns" ; -- notcompound rn_N ;
-lin urn_N = mkN "urn" "urns" ; -- notcompound rn_N ;
-lin 'tea-urn_N' = mkN "tea-urn" "tea-urns" ; -- compound rn_N ;
-lin burn_N = mkN "burn" "burns" ; -- compound rn_N ;
-lin windburn_N = mkN "windburn" "windburns" ; -- compound rn_N ;
-lin sideburn_N = mkN "sideburn" "sideburns" ; -- compound rn_N ;
-lin sunburn_N = mkN "sunburn" "sunburns" ; -- compound rn_N ;
-lin heartburn_N = mkN "heartburn" "heartburns" ; -- compound rn_N ;
-lin churn_N = mkN "churn" "churns" ; -- compound rn_N ;
-lin 'milk-churn_N' = mkN "milk-churn" "milk-churns" ; -- compound rn_N ;
-lin bourn_N = mkN "bourn" "bourns" ; -- compound rn_N ;
-lin sojourn_N = mkN "sojourn" "sojourns" ; -- compound rn_N ;
-lin turn_N = mkN "turn" "turns" ; -- compound rn_N ;
-lin 'right-turn_N' = mkN "right-turn" "right-turns" ; -- compound rn_N ;
-lin 'u-turn_N' = mkN "u-turn" "u-turns" ; -- compound rn_N ;
-lin return_N = mkN "return" "returns" ; -- compound rn_N ;
-lin 'day-return_N' = mkN "day-return" "day-returns" ; -- compound rn_N ;
-lin downturn_N = mkN "downturn" "downturns" ; -- compound rn_N ;
-lin upturn_N = mkN "upturn" "upturns" ; -- compound rn_N ;
-lin overturn_N = mkN "overturn" "overturns" ; -- compound rn_N ;
-lin bo'sn_N = mkN "bo'sn" "bo'sns" ;
-lin usn_N = mkN "usn" "usns" ;
-lin un_N = mkN "un" "uns" ;
-lin faun_N = mkN "faun" "fauns" ; -- compound un_N ;
-lin leprechaun_N = mkN "leprechaun" "leprechauns" ; -- compound un_N ;
-lin bun_N = mkN "bun" "buns" ; -- notcompound un_N ;
-lin tabun_N = mkN "tabun" "tabuns" ; -- compound un_N ;
-lin oyabun_N = mkN "oyabun" "oyabuns" ; -- compound un_N ;
-lin dun_N = mkN "dun" "duns" ; -- notcompound un_N ;
-lin fun_N = mkN "fun" "funs" ; -- notcompound un_N ;
-lin gun_N = mkN "gun" "guns" ; -- notcompound un_N ;
-lin 'machine-gun_N' = mkN "machine-gun" "machine-guns" ; -- compound un_N ;
-lin 'grease-gun_N' = mkN "grease-gun" "grease-guns" ; -- compound un_N ;
-lin 'minute-gun_N' = mkN "minute-gun" "minute-guns" ; -- compound un_N ;
-lin 'whaling-gun_N' = mkN "whaling-gun" "whaling-guns" ; -- compound un_N ;
-lin 'spring-gun_N' = mkN "spring-gun" "spring-guns" ; -- compound un_N ;
-lin 'bren-gun_N' = mkN "bren-gun" "bren-guns" ; -- compound un_N ;
-lin 'spray-gun_N' = mkN "spray-gun" "spray-guns" ; -- compound un_N ;
-lin 'tommy-gun_N' = mkN "tommy-gun" "tommy-guns" ; -- compound un_N ;
-lin flashgun_N = mkN "flashgun" "flashguns" ; -- compound un_N ;
-lin shogun_N = mkN "shogun" "shoguns" ; -- compound un_N ;
-lin popgun_N = mkN "popgun" "popguns" ; -- compound un_N ;
-lin shotgun_N = mkN "shotgun" "shotguns" ; -- compound un_N ;
-lin blowgun_N = mkN "blowgun" "blowguns" ; -- compound un_N ;
-lin hun_N = mkN "hun" "huns" ; -- notcompound un_N ;
-lin nun_N = mkN "nun" "nuns" ; -- notcompound un_N ;
-lin noun_N = mkN "noun" "nouns" ; -- compound un_N ;
-lin adnoun_N = mkN "adnoun" "adnouns" ; -- compound un_N ;
-lin pronoun_N = mkN "pronoun" "pronouns" ; -- compound un_N ;
-lin pun_N = mkN "pun" "puns" ; -- notcompound un_N ;
-lin homespun_N = mkN "homespun" "homespuns" ; -- compound un_N ;
-lin run_N = mkN "run" "runs" ; -- notcompound un_N ;
-lin 'fowl-run_N' = mkN "fowl-run" "fowl-runs" ; -- compound un_N ;
-lin 'chicken-run_N' = mkN "chicken-run" "chicken-runs" ; -- compound un_N ;
-lin rerun_N = mkN "rerun" "reruns" ; -- compound un_N ;
-lin funrun_N = mkN "funrun" "funruns" ; -- compound un_N ;
-lin sheeprun_N = mkN "sheeprun" "sheepruns" ; -- compound un_N ;
-lin sun_N = mkN "sun" "suns" ; -- notcompound un_N ;
-lin bo'sun_N = mkN "bo'sun" "bo'suns" ; -- compound un_N ;
-lin whitsun_N = mkN "whitsun" "whitsuns" ; -- compound un_N ;
-lin tun_N = mkN "tun" "tuns" ; -- notcompound un_N ;
-lin awn_N = mkN "awn" "awns" ;
-lin dawn_N = mkN "dawn" "dawns" ; -- notcompound awn_N ;
-lin fawn_N = mkN "fawn" "fawns" ; -- notcompound awn_N ;
-lin lawn_N = mkN "lawn" "lawns" ; -- notcompound awn_N ;
-lin pawn_N = mkN "pawn" "pawns" ; -- notcompound awn_N ;
-lin spawn_N = mkN "spawn" "spawns" ; -- notcompound awn_N ;
-lin brawn_N = mkN "brawn" "brawns" ; -- notcompound awn_N ;
-lin prawn_N = mkN "prawn" "prawns" ; -- notcompound awn_N ;
-lin yawn_N = mkN "yawn" "yawns" ; -- notcompound awn_N ;
-lin down_N = mkN "down" "downs" ;
-lin 'climb-down_N' = mkN "climb-down" "climb-downs" ; -- compound down_N ;
-lin 'rub-down_N' = mkN "rub-down" "rub-downs" ; -- compound down_N ;
-lin 'hand-me-down_N' = mkN "hand-me-down" "hand-me-downs" ; -- compound down_N ;
-lin 'close-down_N' = mkN "close-down" "close-downs" ; -- compound down_N ;
-lin 'dressing-down_N' = mkN "dressing-down" "dressing-downs" ; -- compound down_N ;
-lin 'back-down_N' = mkN "back-down" "back-downs" ; -- compound down_N ;
-lin 'crack-down_N' = mkN "crack-down" "crack-downs" ; -- compound down_N ;
-lin 'clamp-down_N' = mkN "clamp-down" "clamp-downs" ; -- compound down_N ;
-lin 'swan\'s-down_N' = mkN "swan's-down" "swan's-downs" ; -- compound down_N ;
-lin 'let-down_N' = mkN "let-down" "let-downs" ; -- compound down_N ;
-lin 'put-down_N' = mkN "put-down" "put-downs" ; -- compound down_N ;
-lin rubdown_N = mkN "rubdown" "rubdowns" ; -- compound down_N ;
-lin standdown_N = mkN "standdown" "standdowns" ; -- compound down_N ;
-lin shakedown_N = mkN "shakedown" "shakedowns" ; -- compound down_N ;
-lin takedown_N = mkN "takedown" "takedowns" ; -- compound down_N ;
-lin thistledown_N = mkN "thistledown" "thistledowns" ; -- compound down_N ;
-lin comedown_N = mkN "comedown" "comedowns" ; -- compound down_N ;
-lin touchdown_N = mkN "touchdown" "touchdowns" ; -- compound down_N ;
-lin splashdown_N = mkN "splashdown" "splashdowns" ; -- compound down_N ;
-lin breakdown_N = mkN "breakdown" "breakdowns" ; -- compound down_N ;
-lin crackdown_N = mkN "crackdown" "crackdowns" ; -- compound down_N ;
-lin lockdown_N = mkN "lockdown" "lockdowns" ; -- compound down_N ;
-lin knockdown_N = mkN "knockdown" "knockdowns" ; -- compound down_N ;
-lin lookdown_N = mkN "lookdown" "lookdowns" ; -- compound down_N ;
-lin rundown_N = mkN "rundown" "rundowns" ; -- compound down_N ;
-lin sundown_N = mkN "sundown" "sundowns" ; -- compound down_N ;
-lin godown_N = mkN "godown" "godowns" ; -- compound down_N ;
-lin clampdown_N = mkN "clampdown" "clampdowns" ; -- compound down_N ;
-lin eiderdown_N = mkN "eiderdown" "eiderdowns" ; -- compound down_N ;
-lin meltdown_N = mkN "meltdown" "meltdowns" ; -- compound down_N ;
-lin countdown_N = mkN "countdown" "countdowns" ; -- compound down_N ;
-lin shutdown_N = mkN "shutdown" "shutdowns" ; -- compound down_N ;
-lin showdown_N = mkN "showdown" "showdowns" ; -- compound down_N ;
-lin slowdown_N = mkN "slowdown" "slowdowns" ; -- compound down_N ;
-lin gown_N = mkN "gown" "gowns" ;
-lin 'dressing-gown_N' = mkN "dressing-gown" "dressing-gowns" ; -- compound gown_N ;
-lin nightgown_N = mkN "nightgown" "nightgowns" ; -- compound gown_N ;
-lin clown_N = mkN "clown" "clowns" ;
-lin renown_N = mkN "renown" "renowns" ;
-lin unknown_N = mkN "unknown" "unknowns" ;
-lin brown_N = mkN "brown" "browns" ;
-lin crown_N = mkN "crown" "crowns" ;
-lin 'half-crown_N' = mkN "half-crown" "half-crowns" ; -- compound crown_N ;
-lin frown_N = mkN "frown" "frowns" ;
-lin town_N = mkN "town" "towns" ;
-lin 'market-town_N' = mkN "market-town" "market-towns" ; -- compound town_N ;
-lin hometown_N = mkN "hometown" "hometowns" ; -- compound town_N ;
-lin uptown_N = mkN "uptown" "uptowns" ; -- compound town_N ;
-lin shantytown_N = mkN "shantytown" "shantytowns" ; -- compound town_N ;
-lin tyiyn_N = mkN "tyiyn" "tyiyns" ;
-lin selsyn_N = mkN "selsyn" "selsyns" ;
-lin do_N = mkN "do" "di" ;
-lin bastinado_N = mkN "bastinado" "bastinadi" ; -- compound do_N ;
-lin 'el dorado_N' = mkN "el dorado" "el doradi" ; -- compound do_N ;
-lin go_N = mkN "go" "gi" ;
-lin 'sentry-go_N' = mkN "sentry-go" "sentry-gi" ; -- compound go_N ;
-lin 'billy-ho_N' = mkN "billy-ho" "billy-hi" ;
-lin dekko_N = mkN "dekko" "dekki" ;
-lin mo_N = mkN "mo" "mi" ;
-lin intro_N = mkN "intro" "intri" ;
-lin so_N = mkN "so" "si" ;
-lin 'stand-to_N' = mkN "stand-to" "stand-ti" ;
-lin graffito_N = mkN "graffito" "graffiti" ;
-lin ditto_N = mkN "ditto" "ditti" ;
-lin 'quid pro quo_N' = mkN "quid pro quo" "quid pro qui" ;
-lin 'status quo_N' = mkN "status quo" "status qui" ;
-lin buffalo_N = mkN "buffalo" "buffalo" ;
-lin 'billy-o_N' = mkN "billy-o" "billy-oes" ;
-lin carabao_N = mkN "carabao" "carabaoes" ;
-lin fao_N = mkN "fao" "faoes" ;
-lin hao_N = mkN "hao" "haoes" ;
-lin jiao_N = mkN "jiao" "jiaoes" ;
-lin lao_N = mkN "lao" "laoes" ;
-lin curaçao_N = mkN "curaçao" "curaçaoes" ;
-lin cacao_N = mkN "cacao" "cacaos" ;
-lin gazebo_N = mkN "gazebo" "gazeboes" ;
-lin ceibo_N = mkN "ceibo" "ceiboes" ;
-lin angwantibo_N = mkN "angwantibo" "angwantiboes" ;
-lin mambo_N = mkN "mambo" "mamboes" ;
-lin bimbo_N = mkN "bimbo" "bimboes" ;
-lin umbo_N = mkN "umbo" "umboes" ;
-lin 'mumbo-jumbo_N' = mkN "mumbo-jumbo" "mumbo-jumboes" ; -- compound umbo_N ;
-lin columbo_N = mkN "columbo" "columboes" ; -- compound umbo_N ;
-lin adobo_N = mkN "adobo" "adoboes" ;
-lin bubo_N = mkN "bubo" "buboes" ;
-lin abo_N = mkN "abo" "abos" ;
-lin placebo_N = mkN "placebo" "placebos" ;
-lin limbo_N = mkN "limbo" "limbos" ;
-lin gumbo_N = mkN "gumbo" "gumbos" ;
-lin hobo_N = mkN "hobo" "hobos" ;
-lin kobo_N = mkN "kobo" "kobos" ;
-lin yobo_N = mkN "yobo" "yobos" ;
-lin co_N = mkN "co" "coes" ;
-lin guanaco_N = mkN "guanaco" "guanacoes" ; -- compound co_N ;
-lin touraco_N = mkN "touraco" "touracoes" ; -- compound co_N ;
-lin taco_N = mkN "taco" "tacoes" ; -- compound co_N ;
-lin morocco_N = mkN "morocco" "moroccoes" ; -- compound co_N ;
-lin deco_N = mkN "deco" "decoes" ; -- compound co_N ;
-lin zydeco_N = mkN "zydeco" "zydecoes" ; -- compound co_N ;
-lin magnifico_N = mkN "magnifico" "magnificoes" ; -- compound co_N ;
-lin calico_N = mkN "calico" "calicoes" ; -- compound co_N ;
-lin nco_N = mkN "nco" "ncoes" ; -- notcompound co_N ;
-lin flamenco_N = mkN "flamenco" "flamencoes" ; -- compound co_N ;
-lin bunco_N = mkN "bunco" "buncoes" ; -- compound co_N ;
-lin junco_N = mkN "junco" "juncoes" ; -- compound co_N ;
-lin rococo_N = mkN "rococo" "rococoes" ; -- compound co_N ;
-lin tabasco_N = mkN "tabasco" "tabascoes" ; -- compound co_N ;
-lin barbasco_N = mkN "barbasco" "barbascoes" ; -- compound co_N ;
-lin cisco_N = mkN "cisco" "ciscoes" ; -- compound co_N ;
-lin pachuco_N = mkN "pachuco" "pachucoes" ; -- compound co_N ;
-lin basuco_N = mkN "basuco" "basucoes" ; -- compound co_N ;
-lin tobacco_N = mkN "tobacco" "tobaccos" ;
-lin sirocco_N = mkN "sirocco" "siroccos" ;
-lin stucco_N = mkN "stucco" "stuccos" ;
-lin medico_N = mkN "medico" "medicos" ;
-lin portico_N = mkN "portico" "porticos" ;
-lin bronco_N = mkN "bronco" "broncos" ;
-lin coco_N = mkN "coco" "cocos" ;
-lin fiasco_N = mkN "fiasco" "fiascos" ;
-lin fresco_N = mkN "fresco" "frescos" ;
-lin disco_N = mkN "disco" "discos" ;
-lin 'derring-do_N' = mkN "derring-do" "derring-does" ;
-lin ado_N = mkN "ado" "adoes" ;
-lin fado_N = mkN "fado" "fadoes" ; -- notcompound ado_N ;
-lin carbonado_N = mkN "carbonado" "carbonadoes" ; -- compound ado_N ;
-lin aficionado_N = mkN "aficionado" "aficionadoes" ; -- compound ado_N ;
-lin tornado_N = mkN "tornado" "tornadoes" ; -- compound ado_N ;
-lin strappado_N = mkN "strappado" "strappadoes" ; -- compound ado_N ;
-lin desperado_N = mkN "desperado" "desperadoes" ; -- compound ado_N ;
-lin albedo_N = mkN "albedo" "albedoes" ;
-lin torpedo_N = mkN "torpedo" "torpedoes" ;
-lin teredo_N = mkN "teredo" "teredoes" ;
-lin livedo_N = mkN "livedo" "livedoes" ;
-lin aikido_N = mkN "aikido" "aikidoes" ;
-lin dildo_N = mkN "dildo" "dildoes" ;
-lin glissando_N = mkN "glissando" "glissandoes" ;
-lin sforzando_N = mkN "sforzando" "sforzandoes" ;
-lin decrescendo_N = mkN "decrescendo" "decrescendoes" ;
-lin innuendo_N = mkN "innuendo" "innuendoes" ;
-lin secondo_N = mkN "secondo" "secondoes" ;
-lin judo_N = mkN "judo" "judoes" ;
-lin ludo_N = mkN "ludo" "ludoes" ;
-lin peludo_N = mkN "peludo" "peludoes" ; -- compound ludo_N ;
-lin testudo_N = mkN "testudo" "testudoes" ;
-lin 'how-d\'ye-do_N' = mkN "how-d'ye-do" "how-d'ye-dos" ;
-lin 'to-do_N' = mkN "to-do" "to-dos" ;
-lin avocado_N = mkN "avocado" "avocados" ;
-lin dado_N = mkN "dado" "dados" ;
-lin mikado_N = mkN "mikado" "mikados" ;
-lin bravado_N = mkN "bravado" "bravados" ;
-lin credo_N = mkN "credo" "credos" ;
-lin tuxedo_N = mkN "tuxedo" "tuxedos" ;
-lin libido_N = mkN "libido" "libidos" ;
-lin lido_N = mkN "lido" "lidos" ;
-lin commando_N = mkN "commando" "commandos" ;
-lin accelerando_N = mkN "accelerando" "accelerandos" ;
-lin crescendo_N = mkN "crescendo" "crescendos" ;
-lin diminuendo_N = mkN "diminuendo" "diminuendos" ;
-lin rondo_N = mkN "rondo" "rondos" ;
-lin dodo_N = mkN "dodo" "dodos" ;
-lin hairdo_N = mkN "hairdo" "hairdos" ;
-lin escudo_N = mkN "escudo" "escudos" ;
-lin pseudo_N = mkN "pseudo" "pseudos" ;
-lin maleo_N = mkN "maleo" "maleoes" ;
-lin vireo_N = mkN "vireo" "vireoes" ;
-lin oreo_N = mkN "oreo" "oreoes" ;
-lin video_N = mkN "video" "videos" ;
-lin rodeo_N = mkN "rodeo" "rodeos" ;
-lin cameo_N = mkN "cameo" "cameos" ;
-lin roneo_N = mkN "roneo" "roneos" ;
-lin stereo_N = mkN "stereo" "stereos" ;
-lin fo_N = mkN "fo" "foes" ;
-lin info_N = mkN "info" "infoes" ; -- compound fo_N ;
-lin bufo_N = mkN "bufo" "bufoes" ; -- compound fo_N ;
-lin lumbago_N = mkN "lumbago" "lumbagoes" ;
-lin pichiciago_N = mkN "pichiciago" "pichiciagoes" ;
-lin galago_N = mkN "galago" "galagoes" ;
-lin imago_N = mkN "imago" "imagoes" ;
-lin sago_N = mkN "sago" "sagoes" ;
-lin 'pearl-sago_N' = mkN "pearl-sago" "pearl-sagoes" ; -- compound sago_N ;
-lin sapsago_N = mkN "sapsago" "sapsagoes" ; -- compound sago_N ;
-lin superego_N = mkN "superego" "superegoes" ;
-lin indigo_N = mkN "indigo" "indigoes" ;
-lin vitiligo_N = mkN "vitiligo" "vitiligoes" ;
-lin loligo_N = mkN "loligo" "loligoes" ;
-lin amigo_N = mkN "amigo" "amigoes" ;
-lin intertrigo_N = mkN "intertrigo" "intertrigoes" ;
-lin prurigo_N = mkN "prurigo" "prurigoes" ;
-lin impetigo_N = mkN "impetigo" "impetigoes" ;
-lin vertigo_N = mkN "vertigo" "vertigoes" ;
-lin ginkgo_N = mkN "ginkgo" "ginkgoes" ;
-lin sango_N = mkN "sango" "sangoes" ;
-lin pengo_N = mkN "pengo" "pengoes" ;
-lin bingo_N = mkN "bingo" "bingoes" ;
-lin dingo_N = mkN "dingo" "dingoes" ;
-lin jingo_N = mkN "jingo" "jingoes" ;
-lin lingo_N = mkN "lingo" "lingoes" ;
-lin gringo_N = mkN "gringo" "gringoes" ;
-lin mongo_N = mkN "mongo" "mongoes" ;
-lin eryngo_N = mkN "eryngo" "eryngoes" ;
-lin logo_N = mkN "logo" "logoes" ;
-lin embargo_N = mkN "embargo" "embargoes" ;
-lin cargo_N = mkN "cargo" "cargoes" ;
-lin supercargo_N = mkN "supercargo" "supercargoes" ; -- compound cargo_N ;
-lin sorgo_N = mkN "sorgo" "sorgoes" ;
-lin outgo_N = mkN "outgo" "outgoes" ;
-lin lanugo_N = mkN "lanugo" "lanugoes" ;
-lin plumbago_N = mkN "plumbago" "plumbagos" ;
-lin dago_N = mkN "dago" "dagos" ;
-lin archipelago_N = mkN "archipelago" "archipelagos" ;
-lin virago_N = mkN "virago" "viragos" ;
-lin farrago_N = mkN "farrago" "farragos" ;
-lin ego_N = mkN "ego" "egos" ;
-lin 'alter ego_N' = mkN "alter ego" "alter egos" ; -- compound ego_N ;
-lin fandango_N = mkN "fandango" "fandangos" ;
-lin mango_N = mkN "mango" "mangos" ;
-lin tango_N = mkN "tango" "tangos" ;
-lin quango_N = mkN "quango" "quangos" ;
-lin flamingo_N = mkN "flamingo" "flamingos" ;
-lin bongo_N = mkN "bongo" "bongos" ;
-lin largo_N = mkN "largo" "largos" ;
-lin macho_N = mkN "macho" "machoes" ;
-lin nacho_N = mkN "nacho" "nachoes" ;
-lin gazpacho_N = mkN "gazpacho" "gazpachoes" ;
-lin echo_N = mkN "echo" "echoes" ;
-lin 're-echo_N' = mkN "re-echo" "re-echoes" ; -- compound echo_N ;
-lin mho_N = mkN "mho" "mhoes" ;
-lin coho_N = mkN "coho" "cohoes" ;
-lin rho_N = mkN "rho" "rhoes" ;
-lin sesotho_N = mkN "sesotho" "sesothoes" ;
-lin who_N = mkN "who" "whoes" ;
-lin poncho_N = mkN "poncho" "ponchos" ;
-lin gaucho_N = mkN "gaucho" "gauchos" ;
-lin nympho_N = mkN "nympho" "nymphos" ;
-lin sotho_N = mkN "sotho" "sothos" ;
-lin capriccio_N = mkN "capriccio" "capriccios" ;
-lin nuncio_N = mkN "nuncio" "nuncios" ;
-lin internuncio_N = mkN "internuncio" "internuncios" ; -- compound nuncio_N ;
-lin braggadocio_N = mkN "braggadocio" "braggadocios" ;
-lin radio_N = mkN "radio" "radios" ;
-lin presidio_N = mkN "presidio" "presidios" ;
-lin audio_N = mkN "audio" "audios" ;
-lin studio_N = mkN "studio" "studios" ;
-lin agio_N = mkN "agio" "agios" ;
-lin adagio_N = mkN "adagio" "adagios" ; -- compound agio_N ;
-lin arpeggio_N = mkN "arpeggio" "arpeggios" ;
-lin pistachio_N = mkN "pistachio" "pistachios" ;
-lin mustachio_N = mkN "mustachio" "mustachios" ;
-lin radicchio_N = mkN "radicchio" "radicchios" ;
-lin seraglio_N = mkN "seraglio" "seraglios" ;
-lin intaglio_N = mkN "intaglio" "intaglios" ;
-lin imbroglio_N = mkN "imbroglio" "imbroglios" ;
-lin punctilio_N = mkN "punctilio" "punctilios" ;
-lin folio_N = mkN "folio" "folios" ;
-lin portfolio_N = mkN "portfolio" "portfolios" ; -- compound folio_N ;
-lin polio_N = mkN "polio" "polios" ;
-lin bagnio_N = mkN "bagnio" "bagnios" ;
-lin scenario_N = mkN "scenario" "scenarios" ;
-lin impresario_N = mkN "impresario" "impresarios" ;
-lin vibrio_N = mkN "vibrio" "vibrios" ;
-lin oratorio_N = mkN "oratorio" "oratorios" ;
-lin barrio_N = mkN "barrio" "barrios" ;
-lin trio_N = mkN "trio" "trios" ;
-lin curio_N = mkN "curio" "curios" ;
-lin fellatio_N = mkN "fellatio" "fellatios" ;
-lin patio_N = mkN "patio" "patios" ;
-lin ratio_N = mkN "ratio" "ratios" ;
-lin mojo_N = mkN "mojo" "mojoes" ;
-lin banjo_N = mkN "banjo" "banjos" ;
-lin ko_N = mkN "ko" "koes" ;
-lin mako_N = mkN "mako" "makoes" ; -- compound ko_N ;
-lin makomako_N = mkN "makomako" "makomakoes" ; -- compound ko_N ;
-lin nameko_N = mkN "nameko" "namekoes" ; -- compound ko_N ;
-lin pachinko_N = mkN "pachinko" "pachinkoes" ; -- compound ko_N ;
-lin pinko_N = mkN "pinko" "pinkoes" ; -- compound ko_N ;
-lin gecko_N = mkN "gecko" "geckos" ;
-lin gingko_N = mkN "gingko" "gingkos" ;
-lin robalo_N = mkN "robalo" "robaloes" ;
-lin cattalo_N = mkN "cattalo" "cattaloes" ;
-lin tangelo_N = mkN "tangelo" "tangeloes" ;
-lin tupelo_N = mkN "tupelo" "tupeloes" ;
-lin ilo_N = mkN "ilo" "iloes" ;
-lin milo_N = mkN "milo" "miloes" ; -- notcompound ilo_N ;
-lin smilo_N = mkN "smilo" "smiloes" ; -- notcompound ilo_N ;
-lin bargello_N = mkN "bargello" "bargelloes" ;
-lin jello_N = mkN "jello" "jelloes" ;
-lin trompillo_N = mkN "trompillo" "trompilloes" ;
-lin cigarillo_N = mkN "cigarillo" "cigarilloes" ;
-lin tomatillo_N = mkN "tomatillo" "tomatilloes" ;
-lin ocotillo_N = mkN "ocotillo" "ocotilloes" ;
-lin blanquillo_N = mkN "blanquillo" "blanquilloes" ;
-lin criollo_N = mkN "criollo" "criolloes" ;
-lin phyllo_N = mkN "phyllo" "phylloes" ;
-lin bolo_N = mkN "bolo" "boloes" ;
-lin cocobolo_N = mkN "cocobolo" "cocoboloes" ; -- compound bolo_N ;
-lin polo_N = mkN "polo" "poloes" ;
-lin 'water-polo_N' = mkN "water-polo" "water-poloes" ; -- compound polo_N ;
-lin ovolo_N = mkN "ovolo" "ovoloes" ;
-lin 'water-buffalo_N' = mkN "water-buffalo" "water-buffalos" ;
-lin halo_N = mkN "halo" "halos" ;
-lin pueblo_N = mkN "pueblo" "pueblos" ;
-lin pomelo_N = mkN "pomelo" "pomelos" ;
-lin kilo_N = mkN "kilo" "kilos" ;
-lin silo_N = mkN "silo" "silos" ;
-lin cello_N = mkN "cello" "cellos" ;
-lin morello_N = mkN "morello" "morellos" ;
-lin peccadillo_N = mkN "peccadillo" "peccadillos" ;
-lin armadillo_N = mkN "armadillo" "armadillos" ;
-lin piccolo_N = mkN "piccolo" "piccolos" ;
-lin gigolo_N = mkN "gigolo" "gigolos" ;
-lin tremolo_N = mkN "tremolo" "tremolos" ;
-lin solo_N = mkN "solo" "solos" ;
-lin mamo_N = mkN "mamo" "mamoes" ;
-lin supremo_N = mkN "supremo" "supremoes" ;
-lin primo_N = mkN "primo" "primoes" ;
-lin centesimo_N = mkN "centesimo" "centesimoes" ;
-lin centimo_N = mkN "centimo" "centimoes" ;
-lin machismo_N = mkN "machismo" "machismoes" ;
-lin sumo_N = mkN "sumo" "sumoes" ;
-lin dynamo_N = mkN "dynamo" "dynamos" ;
-lin demo_N = mkN "demo" "demos" ;
-lin memo_N = mkN "memo" "memos" ;
-lin eskimo_N = mkN "eskimo" "eskimos" ;
-lin generalissimo_N = mkN "generalissimo" "generalissimos" ;
-lin 'major-domo_N' = mkN "major-domo" "major-domos" ;
-lin homo_N = mkN "homo" "homos" ;
-lin oregano_N = mkN "oregano" "oreganoes" ;
-lin boliviano_N = mkN "boliviano" "bolivianoes" ;
-lin llano_N = mkN "llano" "llanoes" ;
-lin pompano_N = mkN "pompano" "pompanoes" ;
-lin gitano_N = mkN "gitano" "gitanoes" ;
-lin jalapeno_N = mkN "jalapeno" "jalapenoes" ;
-lin segno_N = mkN "segno" "segnoes" ;
-lin techno_N = mkN "techno" "technoes" ;
-lin cappuccino_N = mkN "cappuccino" "cappuccinoes" ;
-lin contadino_N = mkN "contadino" "contadinoes" ;
-lin chino_N = mkN "chino" "chinoes" ;
-lin kino_N = mkN "kino" "kinoes" ;
-lin lino_N = mkN "lino" "linoes" ;
-lin amino_N = mkN "amino" "aminoes" ;
-lin palomino_N = mkN "palomino" "palominoes" ;
-lin solferino_N = mkN "solferino" "solferinoes" ;
-lin merino_N = mkN "merino" "merinoes" ;
-lin virino_N = mkN "virino" "virinoes" ;
-lin neutrino_N = mkN "neutrino" "neutrinoes" ;
-lin antineutrino_N = mkN "antineutrino" "antineutrinoes" ; -- compound neutrino_N ;
-lin grissino_N = mkN "grissino" "grissinoes" ;
-lin vino_N = mkN "vino" "vinoes" ;
-lin pruno_N = mkN "pruno" "prunoes" ;
-lin volcano_N = mkN "volcano" "volcanos" ;
-lin beano_N = mkN "beano" "beanos" ;
-lin piano_N = mkN "piano" "pianos" ;
-lin 'player-piano_N' = mkN "player-piano" "player-pianos" ; -- compound piano_N ;
-lin soprano_N = mkN "soprano" "sopranos" ;
-lin 'mezzo-soprano_N' = mkN "mezzo-soprano" "mezzo-sopranos" ; -- compound soprano_N ;
-lin guano_N = mkN "guano" "guanos" ;
-lin albino_N = mkN "albino" "albinos" ;
-lin bambino_N = mkN "bambino" "bambinos" ;
-lin maraschino_N = mkN "maraschino" "maraschinos" ;
-lin rhino_N = mkN "rhino" "rhinos" ;
-lin domino_N = mkN "domino" "dominos" ;
-lin filipino_N = mkN "filipino" "filipinos" ;
-lin casino_N = mkN "casino" "casinos" ;
-lin kakemono_N = mkN "kakemono" "kakemonos" ;
-lin kimono_N = mkN "kimono" "kimonos" ;
-lin inferno_N = mkN "inferno" "infernos" ;
-lin boo_N = mkN "boo" "boos" ;
-lin 'peek-a-boo_N' = mkN "peek-a-boo" "peek-a-boos" ; -- compound boo_N ;
-lin baboo_N = mkN "baboo" "baboos" ; -- compound boo_N ;
-lin bugaboo_N = mkN "bugaboo" "bugaboos" ; -- compound boo_N ;
-lin peekaboo_N = mkN "peekaboo" "peekaboos" ; -- compound boo_N ;
-lin taboo_N = mkN "taboo" "taboos" ; -- compound boo_N ;
-lin bamboo_N = mkN "bamboo" "bamboos" ; -- compound boo_N ;
-lin coo_N = mkN "coo" "coos" ;
-lin 'cock-a-doodle-doo_N' = mkN "cock-a-doodle-doo" "cock-a-doodle-doos" ;
-lin hoodoo_N = mkN "hoodoo" "hoodoos" ;
-lin voodoo_N = mkN "voodoo" "voodoos" ;
-lin nardoo_N = mkN "nardoo" "nardoos" ;
-lin goo_N = mkN "goo" "goos" ;
-lin burgoo_N = mkN "burgoo" "burgoos" ; -- compound goo_N ;
-lin wahoo_N = mkN "wahoo" "wahoos" ;
-lin yahoo_N = mkN "yahoo" "yahoos" ;
-lin ballyhoo_N = mkN "ballyhoo" "ballyhoos" ;
-lin cuckoo_N = mkN "cuckoo" "cuckoos" ;
-lin loo_N = mkN "loo" "loos" ;
-lin hullabaloo_N = mkN "hullabaloo" "hullabaloos" ; -- compound loo_N ;
-lin igloo_N = mkN "igloo" "igloos" ; -- compound loo_N ;
-lin halloo_N = mkN "halloo" "halloos" ; -- compound loo_N ;
-lin waterloo_N = mkN "waterloo" "waterloos" ; -- compound loo_N ;
-lin purloo_N = mkN "purloo" "purloos" ; -- compound loo_N ;
-lin moo_N = mkN "moo" "moos" ;
-lin shampoo_N = mkN "shampoo" "shampoos" ;
-lin kangaroo_N = mkN "kangaroo" "kangaroos" ;
-lin switcheroo_N = mkN "switcheroo" "switcheroos" ;
-lin potoroo_N = mkN "potoroo" "potoroos" ;
-lin sissoo_N = mkN "sissoo" "sissoos" ;
-lin cockatoo_N = mkN "cockatoo" "cockatoos" ;
-lin tattoo_N = mkN "tattoo" "tattoos" ;
-lin zoo_N = mkN "zoo" "zoos" ;
-lin kazoo_N = mkN "kazoo" "kazoos" ; -- compound zoo_N ;
-lin po_N = mkN "po" "poes" ;
-lin capo_N = mkN "capo" "capoes" ; -- compound po_N ;
-lin hypo_N = mkN "hypo" "hypoes" ; -- compound po_N ;
-lin gestapo_N = mkN "gestapo" "gestapos" ;
-lin tempo_N = mkN "tempo" "tempos" ;
-lin hippo_N = mkN "hippo" "hippos" ;
-lin expo_N = mkN "expo" "expos" ;
-lin faro_N = mkN "faro" "faroes" ;
-lin claro_N = mkN "claro" "claroes" ;
-lin saguaro_N = mkN "saguaro" "saguaroes" ;
-lin gabbro_N = mkN "gabbro" "gabbroes" ;
-lin macro_N = mkN "macro" "macroes" ;
-lin cero_N = mkN "cero" "ceroes" ;
-lin bracero_N = mkN "bracero" "braceroes" ; -- compound cero_N ;
-lin cicero_N = mkN "cicero" "ciceroes" ; -- compound cero_N ;
-lin curandero_N = mkN "curandero" "curanderoes" ;
-lin hero_N = mkN "hero" "heroes" ;
-lin 'anti-hero_N' = mkN "anti-hero" "anti-heroes" ; -- compound hero_N ;
-lin antihero_N = mkN "antihero" "antiheroes" ; -- compound hero_N ;
-lin banderillero_N = mkN "banderillero" "banderilleroes" ;
-lin novillero_N = mkN "novillero" "novilleroes" ;
-lin torero_N = mkN "torero" "toreroes" ;
-lin vaquero_N = mkN "vaquero" "vaqueroes" ;
-lin negro_N = mkN "negro" "negroes" ;
-lin aggro_N = mkN "aggro" "aggroes" ;
-lin giro_N = mkN "giro" "giroes" ;
-lin miro_N = mkN "miro" "miroes" ;
-lin appro_N = mkN "appro" "approes" ;
-lin burro_N = mkN "burro" "burroes" ;
-lin retro_N = mkN "retro" "retroes" ;
-lin chiaroscuro_N = mkN "chiaroscuro" "chiaroscuroes" ;
-lin taro_N = mkN "taro" "taros" ;
-lin bolero_N = mkN "bolero" "boleros" ;
-lin sombrero_N = mkN "sombrero" "sombreros" ;
-lin zero_N = mkN "zero" "zeros" ;
-lin allegro_N = mkN "allegro" "allegros" ;
-lin biro_N = mkN "biro" "biros" ;
-lin cruzeiro_N = mkN "cruzeiro" "cruzeiros" ;
-lin autogiro_N = mkN "autogiro" "autogiros" ;
-lin tiro_N = mkN "tiro" "tiros" ;
-lin pro_N = mkN "pro" "pros" ;
-lin metro_N = mkN "metro" "metros" ;
-lin maestro_N = mkN "maestro" "maestros" ;
-lin bistro_N = mkN "bistro" "bistros" ;
-lin politburo_N = mkN "politburo" "politburos" ;
-lin euro_N = mkN "euro" "euros" ;
-lin gyro_N = mkN "gyro" "gyros" ;
-lin autogyro_N = mkN "autogyro" "autogyros" ; -- compound gyro_N ;
-lin tyro_N = mkN "tyro" "tyros" ;
-lin miso_N = mkN "miso" "misoes" ;
-lin mafioso_N = mkN "mafioso" "mafiosoes" ;
-lin arioso_N = mkN "arioso" "ariosoes" ;
-lin gesso_N = mkN "gesso" "gessoes" ;
-lin fatso_N = mkN "fatso" "fatsoes" ;
-lin 'so-and-so_N' = mkN "so-and-so" "so-and-sos" ;
-lin peso_N = mkN "peso" "pesos" ;
-lin proviso_N = mkN "proviso" "provisos" ;
-lin virtuoso_N = mkN "virtuoso" "virtuosos" ;
-lin calypso_N = mkN "calypso" "calypsos" ;
-lin verso_N = mkN "verso" "versos" ;
-lin torso_N = mkN "torso" "torsos" ;
-lin lasso_N = mkN "lasso" "lassos" ;
-lin espresso_N = mkN "espresso" "espressos" ;
-lin rabato_N = mkN "rabato" "rabatoes" ;
-lin rubato_N = mkN "rubato" "rubatoes" ;
-lin spiccato_N = mkN "spiccato" "spiccatoes" ;
-lin pizzicato_N = mkN "pizzicato" "pizzicatoes" ;
-lin tomato_N = mkN "tomato" "tomatoes" ;
-lin ostinato_N = mkN "ostinato" "ostinatoes" ;
-lin inamorato_N = mkN "inamorato" "inamoratoes" ;
-lin castrato_N = mkN "castrato" "castratoes" ;
-lin potato_N = mkN "potato" "potatoes" ;
-lin veto_N = mkN "veto" "vetoes" ;
-lin pashto_N = mkN "pashto" "pashtoes" ;
-lin sgraffito_N = mkN "sgraffito" "sgraffitoes" ;
-lin caracolito_N = mkN "caracolito" "caracolitoes" ;
-lin burrito_N = mkN "burrito" "burritoes" ;
-lin mosquito_N = mkN "mosquito" "mosquitoes" ;
-lin esperanto_N = mkN "esperanto" "esperantoes" ;
-lin pentimento_N = mkN "pentimento" "pentimentoes" ;
-lin divertimento_N = mkN "divertimento" "divertimentoes" ;
-lin pinto_N = mkN "pinto" "pintoes" ;
-lin conto_N = mkN "conto" "contoes" ;
-lin telephoto_N = mkN "telephoto" "telephotoes" ;
-lin koto_N = mkN "koto" "kotoes" ;
-lin antipasto_N = mkN "antipasto" "antipastoes" ;
-lin impasto_N = mkN "impasto" "impastoes" ;
-lin pesto_N = mkN "pesto" "pestoes" ;
-lin gusto_N = mkN "gusto" "gustoes" ;
-lin larghetto_N = mkN "larghetto" "larghettoes" ;
-lin amaretto_N = mkN "amaretto" "amarettoes" ;
-lin cavetto_N = mkN "cavetto" "cavettoes" ;
-lin lotto_N = mkN "lotto" "lottoes" ;
-lin potto_N = mkN "potto" "pottoes" ;
-lin prosciutto_N = mkN "prosciutto" "prosciuttoes" ;
-lin razbliuto_N = mkN "razbliuto" "razbliutoes" ;
-lin 'talking-to_N' = mkN "talking-to" "talking-tos" ;
-lin 'lean-to_N' = mkN "lean-to" "lean-tos" ;
-lin 'set-to_N' = mkN "set-to" "set-tos" ;
-lin obbligato_N = mkN "obbligato" "obbligatos" ;
-lin vibrato_N = mkN "vibrato" "vibratos" ;
-lin recto_N = mkN "recto" "rectos" ;
-lin magneto_N = mkN "magneto" "magnetos" ;
-lin bonito_N = mkN "bonito" "bonitos" ;
-lin alto_N = mkN "alto" "altos" ;
-lin contralto_N = mkN "contralto" "contraltos" ; -- compound alto_N ;
-lin canto_N = mkN "canto" "cantos" ;
-lin panto_N = mkN "panto" "pantos" ;
-lin quattrocento_N = mkN "quattrocento" "quattrocentos" ;
-lin pronunciamento_N = mkN "pronunciamento" "pronunciamentos" ;
-lin memento_N = mkN "memento" "mementos" ;
-lin pimento_N = mkN "pimento" "pimentos" ;
-lin photo_N = mkN "photo" "photos" ;
-lin quarto_N = mkN "quarto" "quartos" ;
-lin concerto_N = mkN "concerto" "concertos" ;
-lin manifesto_N = mkN "manifesto" "manifestos" ;
-lin mulatto_N = mkN "mulatto" "mulattos" ;
-lin ghetto_N = mkN "ghetto" "ghettos" ;
-lin stiletto_N = mkN "stiletto" "stilettos" ;
-lin palmetto_N = mkN "palmetto" "palmettos" ;
-lin lazaretto_N = mkN "lazaretto" "lazarettos" ;
-lin libretto_N = mkN "libretto" "librettos" ;
-lin allegretto_N = mkN "allegretto" "allegrettos" ;
-lin falsetto_N = mkN "falsetto" "falsettos" ;
-lin motto_N = mkN "motto" "mottos" ;
-lin grotto_N = mkN "grotto" "grottos" ;
-lin risotto_N = mkN "risotto" "risottos" ;
-lin auto_N = mkN "auto" "autos" ;
-lin avo_N = mkN "avo" "avoes" ;
-lin afropavo_N = mkN "afropavo" "afropavoes" ; -- compound avo_N ;
-lin centavo_N = mkN "centavo" "centavoes" ; -- compound avo_N ;
-lin 'multum in parvo_N' = mkN "multum in parvo" "multum in parvoes" ;
-lin servo_N = mkN "servo" "servoes" ;
-lin bravo_N = mkN "bravo" "bravos" ;
-lin octavo_N = mkN "octavo" "octavos" ;
-lin salvo_N = mkN "salvo" "salvos" ;
-lin billyo_N = mkN "billyo" "billyoes" ;
-lin arroyo_N = mkN "arroyo" "arroyoes" ;
-lin 'yo-yo_N' = mkN "yo-yo" "yo-yos" ;
-lin embryo_N = mkN "embryo" "embryos" ;
-lin chorizo_N = mkN "chorizo" "chorizoes" ;
-lin mestizo_N = mkN "mestizo" "mestizoes" ;
-lin rebozo_N = mkN "rebozo" "rebozoes" ;
-lin corozo_N = mkN "corozo" "corozoes" ;
-lin orzo_N = mkN "orzo" "orzoes" ;
-lin matzo_N = mkN "matzo" "matzoes" ;
-lin ouzo_N = mkN "ouzo" "ouzoes" ;
-lin paparazzo_N = mkN "paparazzo" "paparazzoes" ;
-lin scherzo_N = mkN "scherzo" "scherzos" ;
-lin intermezzo_N = mkN "intermezzo" "intermezzos" ;
-lin 'runner-up_N' = mkN "runner-up" "IRREG" ;
-lin p_N = mkN "p" "pp" ;
-lin sheep_N = mkN "sheep" "sheep" ;
-lin 'merino-sheep_N' = mkN "merino-sheep" "merino-sheep" ; -- compound sheep_N ;
-lin carp_N = mkN "carp" "carp" ;
-lin bap_N = mkN "bap" "baps" ;
-lin cap_N = mkN "cap" "caps" ;
-lin 'wishing-cap_N' = mkN "wishing-cap" "wishing-caps" ; -- compound cap_N ;
-lin 'bathing-cap_N' = mkN "bathing-cap" "bathing-caps" ; -- compound cap_N ;
-lin mobcap_N = mkN "mobcap" "mobcaps" ; -- compound cap_N ;
-lin hubcap_N = mkN "hubcap" "hubcaps" ; -- compound cap_N ;
-lin madcap_N = mkN "madcap" "madcaps" ; -- compound cap_N ;
-lin redcap_N = mkN "redcap" "redcaps" ; -- compound cap_N ;
-lin icecap_N = mkN "icecap" "icecaps" ; -- compound cap_N ;
-lin kneecap_N = mkN "kneecap" "kneecaps" ; -- compound cap_N ;
-lin bottlecap_N = mkN "bottlecap" "bottlecaps" ; -- compound cap_N ;
-lin toecap_N = mkN "toecap" "toecaps" ; -- compound cap_N ;
-lin recap_N = mkN "recap" "recaps" ; -- compound cap_N ;
-lin whitecap_N = mkN "whitecap" "whitecaps" ; -- compound cap_N ;
-lin handicap_N = mkN "handicap" "handicaps" ; -- compound cap_N ;
-lin blackcap_N = mkN "blackcap" "blackcaps" ; -- compound cap_N ;
-lin milkcap_N = mkN "milkcap" "milkcaps" ; -- compound cap_N ;
-lin skullcap_N = mkN "skullcap" "skullcaps" ; -- compound cap_N ;
-lin foolscap_N = mkN "foolscap" "foolscaps" ; -- compound cap_N ;
-lin nightcap_N = mkN "nightcap" "nightcaps" ; -- compound cap_N ;
-lin snowcap_N = mkN "snowcap" "snowcaps" ; -- compound cap_N ;
-lin skycap_N = mkN "skycap" "skycaps" ; -- compound cap_N ;
-lin waxycap_N = mkN "waxycap" "waxycaps" ; -- compound cap_N ;
-lin heap_N = mkN "heap" "heaps" ;
-lin 'slag-heap_N' = mkN "slag-heap" "slag-heaps" ; -- compound heap_N ;
-lin 'muck-heap_N' = mkN "muck-heap" "muck-heaps" ; -- compound heap_N ;
-lin slagheap_N = mkN "slagheap" "slagheaps" ; -- compound heap_N ;
-lin scrapheap_N = mkN "scrapheap" "scrapheaps" ; -- compound heap_N ;
-lin leap_N = mkN "leap" "leaps" ;
-lin neap_N = mkN "neap" "neaps" ;
-lin gap_N = mkN "gap" "gaps" ;
-lin stopgap_N = mkN "stopgap" "stopgaps" ; -- compound gap_N ;
-lin hap_N = mkN "hap" "haps" ;
-lin chap_N = mkN "chap" "chaps" ; -- notcompound hap_N ;
-lin mishap_N = mkN "mishap" "mishaps" ; -- compound hap_N ;
-lin lap_N = mkN "lap" "laps" ;
-lin clap_N = mkN "clap" "claps" ; -- notcompound lap_N ;
-lin handclap_N = mkN "handclap" "handclaps" ; -- compound lap_N ;
-lin thunderclap_N = mkN "thunderclap" "thunderclaps" ; -- compound lap_N ;
-lin flap_N = mkN "flap" "flaps" ; -- notcompound lap_N ;
-lin earflap_N = mkN "earflap" "earflaps" ; -- compound lap_N ;
-lin overlap_N = mkN "overlap" "overlaps" ; -- compound lap_N ;
-lin burlap_N = mkN "burlap" "burlaps" ; -- compound lap_N ;
-lin slap_N = mkN "slap" "slaps" ; -- notcompound lap_N ;
-lin dewlap_N = mkN "dewlap" "dewlaps" ; -- compound lap_N ;
-lin map_N = mkN "map" "maps" ;
-lin 'sketch-map_N' = mkN "sketch-map" "sketch-maps" ; -- compound map_N ;
-lin 'weather-map_N' = mkN "weather-map" "weather-maps" ; -- compound map_N ;
-lin bitmap_N = mkN "bitmap" "bitmaps" ; -- compound map_N ;
-lin nap_N = mkN "nap" "naps" ;
-lin 'cat-nap_N' = mkN "cat-nap" "cat-naps" ; -- compound nap_N ;
-lin snap_N = mkN "snap" "snaps" ; -- notcompound nap_N ;
-lin 'brandy-snap_N' = mkN "brandy-snap" "brandy-snaps" ; -- compound nap_N ;
-lin gingersnap_N = mkN "gingersnap" "gingersnaps" ; -- compound nap_N ;
-lin brandysnap_N = mkN "brandysnap" "brandysnaps" ; -- compound nap_N ;
-lin soap_N = mkN "soap" "soaps" ;
-lin pap_N = mkN "pap" "paps" ;
-lin genipap_N = mkN "genipap" "genipaps" ; -- compound pap_N ;
-lin rap_N = mkN "rap" "raps" ;
-lin crap_N = mkN "crap" "craps" ; -- notcompound rap_N ;
-lin scrap_N = mkN "scrap" "scraps" ; -- notcompound rap_N ;
-lin trap_N = mkN "trap" "traps" ; -- notcompound rap_N ;
-lin 'booby-trap_N' = mkN "booby-trap" "booby-traps" ; -- compound rap_N ;
-lin satrap_N = mkN "satrap" "satraps" ; -- compound rap_N ;
-lin firetrap_N = mkN "firetrap" "firetraps" ; -- compound rap_N ;
-lin mousetrap_N = mkN "mousetrap" "mousetraps" ; -- compound rap_N ;
-lin deathtrap_N = mkN "deathtrap" "deathtraps" ; -- compound rap_N ;
-lin mantrap_N = mkN "mantrap" "mantraps" ; -- compound rap_N ;
-lin suntrap_N = mkN "suntrap" "suntraps" ; -- compound rap_N ;
-lin claptrap_N = mkN "claptrap" "claptraps" ; -- compound rap_N ;
-lin strap_N = mkN "strap" "straps" ; -- notcompound rap_N ;
-lin 'chin-strap_N' = mkN "chin-strap" "chin-straps" ; -- compound rap_N ;
-lin 'shoulder-strap_N' = mkN "shoulder-strap" "shoulder-straps" ; -- compound rap_N ;
-lin bootstrap_N = mkN "bootstrap" "bootstraps" ; -- compound rap_N ;
-lin rattrap_N = mkN "rattrap" "rattraps" ; -- compound rap_N ;
-lin flytrap_N = mkN "flytrap" "flytraps" ; -- compound rap_N ;
-lin wrap_N = mkN "wrap" "wraps" ; -- notcompound rap_N ;
-lin sap_N = mkN "sap" "saps" ;
-lin pinesap_N = mkN "pinesap" "pinesaps" ; -- compound sap_N ;
-lin tap_N = mkN "tap" "taps" ;
-lin wiretap_N = mkN "wiretap" "wiretaps" ; -- compound tap_N ;
-lin swap_N = mkN "swap" "swaps" ;
-lin yap_N = mkN "yap" "yaps" ;
-lin zap_N = mkN "zap" "zaps" ;
-lin edp_N = mkN "edp" "edps" ;
-lin beep_N = mkN "beep" "beeps" ;
-lin deep_N = mkN "deep" "deeps" ;
-lin cheep_N = mkN "cheep" "cheeps" ;
-lin jeep_N = mkN "jeep" "jeeps" ;
-lin keep_N = mkN "keep" "keeps" ;
-lin upkeep_N = mkN "upkeep" "upkeeps" ; -- compound keep_N ;
-lin bleep_N = mkN "bleep" "bleeps" ;
-lin sleep_N = mkN "sleep" "sleeps" ;
-lin 'cat-sleep_N' = mkN "cat-sleep" "cat-sleeps" ; -- compound sleep_N ;
-lin 'beauty-sleep_N' = mkN "beauty-sleep" "beauty-sleeps" ; -- compound sleep_N ;
-lin electrosleep_N = mkN "electrosleep" "electrosleeps" ; -- compound sleep_N ;
-lin peep_N = mkN "peep" "peeps" ;
-lin bopeep_N = mkN "bopeep" "bopeeps" ; -- compound peep_N ;
-lin cassareep_N = mkN "cassareep" "cassareeps" ;
-lin creep_N = mkN "creep" "creeps" ;
-lin steep_N = mkN "steep" "steeps" ;
-lin sweep_N = mkN "sweep" "sweeps" ;
-lin 'chimney-sweep_N' = mkN "chimney-sweep" "chimney-sweeps" ; -- compound sweep_N ;
-lin chimneysweep_N = mkN "chimneysweep" "chimneysweeps" ; -- compound sweep_N ;
-lin skep_N = mkN "skep" "skeps" ;
-lin schlep_N = mkN "schlep" "schleps" ;
-lin julep_N = mkN "julep" "juleps" ;
-lin stoep_N = mkN "stoep" "stoeps" ;
-lin pep_N = mkN "pep" "peps" ;
-lin rep_N = mkN "rep" "reps" ;
-lin prep_N = mkN "prep" "preps" ; -- notcompound rep_N ;
-lin step_N = mkN "step" "steps" ;
-lin 'one-step_N' = mkN "one-step" "one-steps" ; -- compound step_N ;
-lin 'goose-step_N' = mkN "goose-step" "goose-steps" ; -- compound step_N ;
-lin 'two-step_N' = mkN "two-step" "two-steps" ; -- compound step_N ;
-lin sidestep_N = mkN "sidestep" "sidesteps" ; -- compound step_N ;
-lin quickstep_N = mkN "quickstep" "quicksteps" ; -- compound step_N ;
-lin lockstep_N = mkN "lockstep" "locksteps" ; -- compound step_N ;
-lin instep_N = mkN "instep" "insteps" ; -- compound step_N ;
-lin doorstep_N = mkN "doorstep" "doorsteps" ; -- compound step_N ;
-lin footstep_N = mkN "footstep" "footsteps" ; -- compound step_N ;
-lin gp_N = mkN "gp" "gp's" ;
-lin hp_N = mkN "hp" "hps" ;
-lin dip_N = mkN "dip" "dips" ;
-lin hip_N = mkN "hip" "hips" ;
-lin chip_N = mkN "chip" "chips" ; -- notcompound hip_N ;
-lin biochip_N = mkN "biochip" "biochips" ; -- compound hip_N ;
-lin ship_N = mkN "ship" "ships" ; -- notcompound hip_N ;
-lin 'sailing-ship_N' = mkN "sailing-ship" "sailing-ships" ; -- compound hip_N ;
-lin 'training-ship_N' = mkN "training-ship" "training-ships" ; -- compound hip_N ;
-lin 'weather-ship_N' = mkN "weather-ship" "weather-ships" ; -- compound hip_N ;
-lin headship_N = mkN "headship" "headships" ; -- compound hip_N ;
-lin friendship_N = mkN "friendship" "friendships" ; -- compound hip_N ;
-lin hardship_N = mkN "hardship" "hardships" ; -- compound hip_N ;
-lin guardship_N = mkN "guardship" "guardships" ; -- compound hip_N ;
-lin stewardship_N = mkN "stewardship" "stewardships" ; -- compound hip_N ;
-lin lordship_N = mkN "lordship" "lordships" ; -- compound hip_N ;
-lin overlordship_N = mkN "overlordship" "overlordships" ; -- compound hip_N ;
-lin spaceship_N = mkN "spaceship" "spaceships" ; -- compound hip_N ;
-lin apprenticeship_N = mkN "apprenticeship" "apprenticeships" ; -- compound hip_N ;
-lin acquaintanceship_N = mkN "acquaintanceship" "acquaintanceships" ; -- compound hip_N ;
-lin comradeship_N = mkN "comradeship" "comradeships" ; -- compound hip_N ;
-lin traineeship_N = mkN "traineeship" "traineeships" ; -- compound hip_N ;
-lin trusteeship_N = mkN "trusteeship" "trusteeships" ; -- compound hip_N ;
-lin judgeship_N = mkN "judgeship" "judgeships" ; -- compound hip_N ;
-lin discipleship_N = mkN "discipleship" "discipleships" ; -- compound hip_N ;
-lin apostleship_N = mkN "apostleship" "apostleships" ; -- compound hip_N ;
-lin battleship_N = mkN "battleship" "battleships" ; -- compound hip_N ;
-lin cattleship_N = mkN "cattleship" "cattleships" ; -- compound hip_N ;
-lin thaneship_N = mkN "thaneship" "thaneships" ; -- compound hip_N ;
-lin tribuneship_N = mkN "tribuneship" "tribuneships" ; -- compound hip_N ;
-lin lectureship_N = mkN "lectureship" "lectureships" ; -- compound hip_N ;
-lin associateship_N = mkN "associateship" "associateships" ; -- compound hip_N ;
-lin primateship_N = mkN "primateship" "primateships" ; -- compound hip_N ;
-lin bailiffship_N = mkN "bailiffship" "bailiffships" ; -- compound hip_N ;
-lin flagship_N = mkN "flagship" "flagships" ; -- compound hip_N ;
-lin kingship_N = mkN "kingship" "kingships" ; -- compound hip_N ;
-lin messiahship_N = mkN "messiahship" "messiahships" ; -- compound hip_N ;
-lin clerkship_N = mkN "clerkship" "clerkships" ; -- compound hip_N ;
-lin marshalship_N = mkN "marshalship" "marshalships" ; -- compound hip_N ;
-lin cardinalship_N = mkN "cardinalship" "cardinalships" ; -- compound hip_N ;
-lin principalship_N = mkN "principalship" "principalships" ; -- compound hip_N ;
-lin generalship_N = mkN "generalship" "generalships" ; -- compound hip_N ;
-lin consulship_N = mkN "consulship" "consulships" ; -- compound hip_N ;
-lin proconsulship_N = mkN "proconsulship" "proconsulships" ; -- compound hip_N ;
-lin steamship_N = mkN "steamship" "steamships" ; -- compound hip_N ;
-lin deanship_N = mkN "deanship" "deanships" ; -- compound hip_N ;
-lin academicianship_N = mkN "academicianship" "academicianships" ; -- compound hip_N ;
-lin musicianship_N = mkN "musicianship" "musicianships" ; -- compound hip_N ;
-lin custodianship_N = mkN "custodianship" "custodianships" ; -- compound hip_N ;
-lin guardianship_N = mkN "guardianship" "guardianships" ; -- compound hip_N ;
-lin librarianship_N = mkN "librarianship" "librarianships" ; -- compound hip_N ;
-lin seamanship_N = mkN "seamanship" "seamanships" ; -- compound hip_N ;
-lin foremanship_N = mkN "foremanship" "foremanships" ; -- compound hip_N ;
-lin horsemanship_N = mkN "horsemanship" "horsemanships" ; -- compound hip_N ;
-lin brinkmanship_N = mkN "brinkmanship" "brinkmanships" ; -- compound hip_N ;
-lin workmanship_N = mkN "workmanship" "workmanships" ; -- compound hip_N ;
-lin penmanship_N = mkN "penmanship" "penmanships" ; -- compound hip_N ;
-lin 'one-upmanship_N' = mkN "one-upmanship" "one-upmanships" ; -- compound hip_N ;
-lin chairmanship_N = mkN "chairmanship" "chairmanships" ; -- compound hip_N ;
-lin swordsmanship_N = mkN "swordsmanship" "swordsmanships" ; -- compound hip_N ;
-lin salesmanship_N = mkN "salesmanship" "salesmanships" ; -- compound hip_N ;
-lin gamesmanship_N = mkN "gamesmanship" "gamesmanships" ; -- compound hip_N ;
-lin statesmanship_N = mkN "statesmanship" "statesmanships" ; -- compound hip_N ;
-lin marksmanship_N = mkN "marksmanship" "marksmanships" ; -- compound hip_N ;
-lin oarsmanship_N = mkN "oarsmanship" "oarsmanships" ; -- compound hip_N ;
-lin craftsmanship_N = mkN "craftsmanship" "craftsmanships" ; -- compound hip_N ;
-lin sportsmanship_N = mkN "sportsmanship" "sportsmanships" ; -- compound hip_N ;
-lin boatmanship_N = mkN "boatmanship" "boatmanships" ; -- compound hip_N ;
-lin showmanship_N = mkN "showmanship" "showmanships" ; -- compound hip_N ;
-lin partisanship_N = mkN "partisanship" "partisanships" ; -- compound hip_N ;
-lin wardenship_N = mkN "wardenship" "wardenships" ; -- compound hip_N ;
-lin citizenship_N = mkN "citizenship" "citizenships" ; -- compound hip_N ;
-lin captainship_N = mkN "captainship" "captainships" ; -- compound hip_N ;
-lin kinship_N = mkN "kinship" "kinships" ; -- compound hip_N ;
-lin companionship_N = mkN "companionship" "companionships" ; -- compound hip_N ;
-lin championship_N = mkN "championship" "championships" ; -- compound hip_N ;
-lin relationship_N = mkN "relationship" "relationships" ; -- compound hip_N ;
-lin steprelationship_N = mkN "steprelationship" "steprelationships" ; -- compound hip_N ;
-lin interrelationship_N = mkN "interrelationship" "interrelationships" ; -- compound hip_N ;
-lin internship_N = mkN "internship" "internships" ; -- compound hip_N ;
-lin township_N = mkN "township" "townships" ; -- compound hip_N ;
-lin troopship_N = mkN "troopship" "troopships" ; -- compound hip_N ;
-lin scholarship_N = mkN "scholarship" "scholarships" ; -- compound hip_N ;
-lin starship_N = mkN "starship" "starships" ; -- compound hip_N ;
-lin warship_N = mkN "warship" "warships" ; -- compound hip_N ;
-lin membership_N = mkN "membership" "memberships" ; -- compound hip_N ;
-lin leadership_N = mkN "leadership" "leaderships" ; -- compound hip_N ;
-lin readership_N = mkN "readership" "readerships" ; -- compound hip_N ;
-lin eldership_N = mkN "eldership" "elderships" ; -- compound hip_N ;
-lin commandership_N = mkN "commandership" "commanderships" ; -- compound hip_N ;
-lin wardership_N = mkN "wardership" "warderships" ; -- compound hip_N ;
-lin managership_N = mkN "managership" "managerships" ; -- compound hip_N ;
-lin teachership_N = mkN "teachership" "teacherships" ; -- compound hip_N ;
-lin premiership_N = mkN "premiership" "premierships" ; -- compound hip_N ;
-lin viziership_N = mkN "viziership" "vizierships" ; -- compound hip_N ;
-lin speakership_N = mkN "speakership" "speakerships" ; -- compound hip_N ;
-lin controllership_N = mkN "controllership" "controllerships" ; -- compound hip_N ;
-lin comptrollership_N = mkN "comptrollership" "comptrollerships" ; -- compound hip_N ;
-lin rulership_N = mkN "rulership" "rulerships" ; -- compound hip_N ;
-lin partnership_N = mkN "partnership" "partnerships" ; -- compound hip_N ;
-lin copartnership_N = mkN "copartnership" "copartnerships" ; -- compound hip_N ;
-lin ownership_N = mkN "ownership" "ownerships" ; -- compound hip_N ;
-lin treasurership_N = mkN "treasurership" "treasurerships" ; -- compound hip_N ;
-lin mastership_N = mkN "mastership" "masterships" ; -- compound hip_N ;
-lin headmastership_N = mkN "headmastership" "headmasterships" ; -- compound hip_N ;
-lin receivership_N = mkN "receivership" "receiverships" ; -- compound hip_N ;
-lin airship_N = mkN "airship" "airships" ; -- compound hip_N ;
-lin ambassadorship_N = mkN "ambassadorship" "ambassadorships" ; -- compound hip_N ;
-lin authorship_N = mkN "authorship" "authorships" ; -- compound hip_N ;
-lin priorship_N = mkN "priorship" "priorships" ; -- compound hip_N ;
-lin counselorship_N = mkN "counselorship" "counselorships" ; -- compound hip_N ;
-lin chancellorship_N = mkN "chancellorship" "chancellorships" ; -- compound hip_N ;
-lin councillorship_N = mkN "councillorship" "councillorships" ; -- compound hip_N ;
-lin governorship_N = mkN "governorship" "governorships" ; -- compound hip_N ;
-lin censorship_N = mkN "censorship" "censorships" ; -- compound hip_N ;
-lin sponsorship_N = mkN "sponsorship" "sponsorships" ; -- compound hip_N ;
-lin professorship_N = mkN "professorship" "professorships" ; -- compound hip_N ;
-lin legislatorship_N = mkN "legislatorship" "legislatorships" ; -- compound hip_N ;
-lin senatorship_N = mkN "senatorship" "senatorships" ; -- compound hip_N ;
-lin moderatorship_N = mkN "moderatorship" "moderatorships" ; -- compound hip_N ;
-lin curatorship_N = mkN "curatorship" "curatorships" ; -- compound hip_N ;
-lin dictatorship_N = mkN "dictatorship" "dictatorships" ; -- compound hip_N ;
-lin inspectorship_N = mkN "inspectorship" "inspectorships" ; -- compound hip_N ;
-lin rectorship_N = mkN "rectorship" "rectorships" ; -- compound hip_N ;
-lin directorship_N = mkN "directorship" "directorships" ; -- compound hip_N ;
-lin protectorship_N = mkN "protectorship" "protectorships" ; -- compound hip_N ;
-lin proctorship_N = mkN "proctorship" "proctorships" ; -- compound hip_N ;
-lin instructorship_N = mkN "instructorship" "instructorships" ; -- compound hip_N ;
-lin praetorship_N = mkN "praetorship" "praetorships" ; -- compound hip_N ;
-lin proprietorship_N = mkN "proprietorship" "proprietorships" ; -- compound hip_N ;
-lin solicitorship_N = mkN "solicitorship" "solicitorships" ; -- compound hip_N ;
-lin editorship_N = mkN "editorship" "editorships" ; -- compound hip_N ;
-lin precentorship_N = mkN "precentorship" "precentorships" ; -- compound hip_N ;
-lin preceptorship_N = mkN "preceptorship" "preceptorships" ; -- compound hip_N ;
-lin pastorship_N = mkN "pastorship" "pastorships" ; -- compound hip_N ;
-lin tutorship_N = mkN "tutorship" "tutorships" ; -- compound hip_N ;
-lin worship_N = mkN "worship" "worships" ; -- compound hip_N ;
-lin 'sun-worship_N' = mkN "sun-worship" "sun-worships" ; -- compound hip_N ;
-lin headmistressship_N = mkN "headmistressship" "headmistressships" ; -- compound hip_N ;
-lin cadetship_N = mkN "cadetship" "cadetships" ; -- compound hip_N ;
-lin lightship_N = mkN "lightship" "lightships" ; -- compound hip_N ;
-lin accountantship_N = mkN "accountantship" "accountantships" ; -- compound hip_N ;
-lin studentship_N = mkN "studentship" "studentships" ; -- compound hip_N ;
-lin courtship_N = mkN "courtship" "courtships" ; -- compound hip_N ;
-lin fellowship_N = mkN "fellowship" "fellowships" ; -- compound hip_N ;
-lin 'good-fellowship_N' = mkN "good-fellowship" "good-fellowships" ; -- compound hip_N ;
-lin ladyship_N = mkN "ladyship" "ladyships" ; -- compound hip_N ;
-lin attorneyship_N = mkN "attorneyship" "attorneyships" ; -- compound hip_N ;
-lin viceroyship_N = mkN "viceroyship" "viceroyships" ; -- compound hip_N ;
-lin secretaryship_N = mkN "secretaryship" "secretaryships" ; -- compound hip_N ;
-lin whip_N = mkN "whip" "whips" ; -- notcompound hip_N ;
-lin horsewhip_N = mkN "horsewhip" "horsewhips" ; -- compound hip_N ;
-lin coachwhip_N = mkN "coachwhip" "coachwhips" ; -- compound hip_N ;
-lin kip_N = mkN "kip" "kips" ;
-lin skip_N = mkN "skip" "skips" ; -- notcompound kip_N ;
-lin lip_N = mkN "lip" "lips" ;
-lin blip_N = mkN "blip" "blips" ; -- notcompound lip_N ;
-lin clip_N = mkN "clip" "clips" ; -- notcompound lip_N ;
-lin paperclip_N = mkN "paperclip" "paperclips" ; -- compound lip_N ;
-lin harelip_N = mkN "harelip" "harelips" ; -- compound lip_N ;
-lin flip_N = mkN "flip" "flips" ; -- notcompound lip_N ;
-lin fillip_N = mkN "fillip" "fillips" ; -- compound lip_N ;
-lin underlip_N = mkN "underlip" "underlips" ; -- compound lip_N ;
-lin overlip_N = mkN "overlip" "overlips" ; -- compound lip_N ;
-lin slip_N = mkN "slip" "slips" ; -- notcompound lip_N ;
-lin 'side-slip_N' = mkN "side-slip" "side-slips" ; -- compound lip_N ;
-lin landslip_N = mkN "landslip" "landslips" ; -- compound lip_N ;
-lin gymslip_N = mkN "gymslip" "gymslips" ; -- compound lip_N ;
-lin cowslip_N = mkN "cowslip" "cowslips" ; -- compound lip_N ;
-lin pillowslip_N = mkN "pillowslip" "pillowslips" ; -- compound lip_N ;
-lin payslip_N = mkN "payslip" "payslips" ; -- compound lip_N ;
-lin tulip_N = mkN "tulip" "tulips" ; -- compound lip_N ;
-lin oxlip_N = mkN "oxlip" "oxlips" ; -- compound lip_N ;
-lin nip_N = mkN "nip" "nips" ;
-lin genip_N = mkN "genip" "genips" ; -- compound nip_N ;
-lin turnip_N = mkN "turnip" "turnips" ; -- compound nip_N ;
-lin snip_N = mkN "snip" "snips" ; -- notcompound nip_N ;
-lin parsnip_N = mkN "parsnip" "parsnips" ; -- compound nip_N ;
-lin pip_N = mkN "pip" "pips" ;
-lin rip_N = mkN "rip" "rips" ;
-lin scrip_N = mkN "scrip" "scrips" ; -- notcompound rip_N ;
-lin drip_N = mkN "drip" "drips" ; -- notcompound rip_N ;
-lin grip_N = mkN "grip" "grips" ; -- notcompound rip_N ;
-lin trip_N = mkN "trip" "trips" ; -- notcompound rip_N ;
-lin egotrip_N = mkN "egotrip" "egotrips" ; -- compound rip_N ;
-lin strip_N = mkN "strip" "strips" ; -- notcompound rip_N ;
-lin 'landing-strip_N' = mkN "landing-strip" "landing-strips" ; -- compound rip_N ;
-lin airstrip_N = mkN "airstrip" "airstrips" ; -- compound rip_N ;
-lin sip_N = mkN "sip" "sips" ;
-lin gossip_N = mkN "gossip" "gossips" ; -- compound sip_N ;
-lin tip_N = mkN "tip" "tips" ;
-lin fingertip_N = mkN "fingertip" "fingertips" ; -- compound tip_N ;
-lin quip_N = mkN "quip" "quips" ;
-lin vip_N = mkN "vip" "vips" ;
-lin yip_N = mkN "yip" "yips" ;
-lin zip_N = mkN "zip" "zips" ;
-lin jp_N = mkN "jp" "jps" ;
-lin lp_N = mkN "lp" "lps" ;
-lin alp_N = mkN "alp" "alps" ; -- notcompound lp_N ;
-lin scalp_N = mkN "scalp" "scalps" ; -- compound lp_N ;
-lin salp_N = mkN "salp" "salps" ; -- compound lp_N ;
-lin help_N = mkN "help" "helps" ; -- compound lp_N ;
-lin 'self-help_N' = mkN "self-help" "self-helps" ; -- compound lp_N ;
-lin whelp_N = mkN "whelp" "whelps" ; -- compound lp_N ;
-lin kelp_N = mkN "kelp" "kelps" ; -- compound lp_N ;
-lin megilp_N = mkN "megilp" "megilps" ; -- compound lp_N ;
-lin gulp_N = mkN "gulp" "gulps" ; -- compound lp_N ;
-lin pulp_N = mkN "pulp" "pulps" ; -- compound lp_N ;
-lin 'wood-pulp_N' = mkN "wood-pulp" "wood-pulps" ; -- compound lp_N ;
-lin mp_N = mkN "mp" "mp's" ;
-lin amp_N = mkN "amp" "amps" ;
-lin camp_N = mkN "camp" "camps" ; -- notcompound amp_N ;
-lin 'aide-de-camp_N' = mkN "aide-de-camp" "aide-de-camps" ; -- compound amp_N ;
-lin scamp_N = mkN "scamp" "scamps" ; -- notcompound amp_N ;
-lin damp_N = mkN "damp" "damps" ; -- notcompound amp_N ;
-lin 'choke-damp_N' = mkN "choke-damp" "choke-damps" ; -- compound amp_N ;
-lin chokedamp_N = mkN "chokedamp" "chokedamps" ; -- compound amp_N ;
-lin firedamp_N = mkN "firedamp" "firedamps" ; -- compound amp_N ;
-lin afterdamp_N = mkN "afterdamp" "afterdamps" ; -- compound amp_N ;
-lin gamp_N = mkN "gamp" "gamps" ; -- notcompound amp_N ;
-lin champ_N = mkN "champ" "champs" ; -- notcompound amp_N ;
-lin lamp_N = mkN "lamp" "lamps" ; -- notcompound amp_N ;
-lin 'arc-lamp_N' = mkN "arc-lamp" "arc-lamps" ; -- compound amp_N ;
-lin 'reading-lamp_N' = mkN "reading-lamp" "reading-lamps" ; -- compound amp_N ;
-lin 'riding-lamp_N' = mkN "riding-lamp" "riding-lamps" ; -- compound amp_N ;
-lin 'spirit-lamp_N' = mkN "spirit-lamp" "spirit-lamps" ; -- compound amp_N ;
-lin 'safety-lamp_N' = mkN "safety-lamp" "safety-lamps" ; -- compound amp_N ;
-lin clamp_N = mkN "clamp" "clamps" ; -- notcompound amp_N ;
-lin headlamp_N = mkN "headlamp" "headlamps" ; -- compound amp_N ;
-lin foglamp_N = mkN "foglamp" "foglamps" ; -- compound amp_N ;
-lin sunlamp_N = mkN "sunlamp" "sunlamps" ; -- compound amp_N ;
-lin blowlamp_N = mkN "blowlamp" "blowlamps" ; -- compound amp_N ;
-lin ramp_N = mkN "ramp" "ramps" ; -- notcompound amp_N ;
-lin cramp_N = mkN "cramp" "cramps" ; -- notcompound amp_N ;
-lin tramp_N = mkN "tramp" "tramps" ; -- notcompound amp_N ;
-lin tamp_N = mkN "tamp" "tamps" ; -- notcompound amp_N ;
-lin stamp_N = mkN "stamp" "stamps" ; -- notcompound amp_N ;
-lin 'postage-stamp_N' = mkN "postage-stamp" "postage-stamps" ; -- compound amp_N ;
-lin handstamp_N = mkN "handstamp" "handstamps" ; -- compound amp_N ;
-lin vamp_N = mkN "vamp" "vamps" ; -- notcompound amp_N ;
-lin swamp_N = mkN "swamp" "swamps" ; -- notcompound amp_N ;
-lin hemp_N = mkN "hemp" "hemps" ;
-lin temp_N = mkN "temp" "temps" ;
-lin imp_N = mkN "imp" "imps" ;
-lin chimp_N = mkN "chimp" "chimps" ; -- notcompound imp_N ;
-lin limp_N = mkN "limp" "limps" ; -- notcompound imp_N ;
-lin blimp_N = mkN "blimp" "blimps" ; -- notcompound imp_N ;
-lin pimp_N = mkN "pimp" "pimps" ; -- notcompound imp_N ;
-lin crimp_N = mkN "crimp" "crimps" ; -- notcompound imp_N ;
-lin shrimp_N = mkN "shrimp" "shrimps" ; -- notcompound imp_N ;
-lin wimp_N = mkN "wimp" "wimps" ; -- notcompound imp_N ;
-lin pomp_N = mkN "pomp" "pomps" ;
-lin psychopomp_N = mkN "psychopomp" "psychopomps" ; -- compound pomp_N ;
-lin romp_N = mkN "romp" "romps" ;
-lin stomp_N = mkN "stomp" "stomps" ;
-lin bump_N = mkN "bump" "bumps" ;
-lin dump_N = mkN "dump" "dumps" ;
-lin hump_N = mkN "hump" "humps" ;
-lin chump_N = mkN "chump" "chumps" ; -- notcompound hump_N ;
-lin thump_N = mkN "thump" "thumps" ; -- notcompound hump_N ;
-lin callithump_N = mkN "callithump" "callithumps" ; -- compound hump_N ;
-lin jump_N = mkN "jump" "jumps" ;
-lin 'ski-jump_N' = mkN "ski-jump" "ski-jumps" ; -- compound jump_N ;
-lin lump_N = mkN "lump" "lumps" ;
-lin clump_N = mkN "clump" "clumps" ; -- notcompound lump_N ;
-lin plump_N = mkN "plump" "plumps" ; -- notcompound lump_N ;
-lin sugarlump_N = mkN "sugarlump" "sugarlumps" ; -- compound lump_N ;
-lin slump_N = mkN "slump" "slumps" ; -- notcompound lump_N ;
-lin pump_N = mkN "pump" "pumps" ;
-lin 'stomach-pump_N' = mkN "stomach-pump" "stomach-pumps" ; -- compound pump_N ;
-lin 'air-pump_N' = mkN "air-pump" "air-pumps" ; -- compound pump_N ;
-lin rump_N = mkN "rump" "rumps" ;
-lin frump_N = mkN "frump" "frumps" ; -- notcompound rump_N ;
-lin trump_N = mkN "trump" "trumps" ; -- notcompound rump_N ;
-lin sump_N = mkN "sump" "sumps" ;
-lin stump_N = mkN "stump" "stumps" ;
-lin mugwump_N = mkN "mugwump" "mugwumps" ;
-lin 'co-op_N' = mkN "co-op" "co-ops" ;
-lin bop_N = mkN "bop" "bops" ;
-lin cop_N = mkN "cop" "cops" ;
-lin 'speed-cop_N' = mkN "speed-cop" "speed-cops" ; -- compound cop_N ;
-lin fop_N = mkN "fop" "fops" ;
-lin hop_N = mkN "hop" "hops" ;
-lin chop_N = mkN "chop" "chops" ; -- notcompound hop_N ;
-lin porkchop_N = mkN "porkchop" "porkchops" ; -- compound hop_N ;
-lin bellhop_N = mkN "bellhop" "bellhops" ; -- compound hop_N ;
-lin carhop_N = mkN "carhop" "carhops" ; -- compound hop_N ;
-lin shop_N = mkN "shop" "shops" ; -- notcompound hop_N ;
-lin 'tuck-shop_N' = mkN "tuck-shop" "tuck-shops" ; -- compound hop_N ;
-lin 'junk-shop_N' = mkN "junk-shop" "junk-shops" ; -- compound hop_N ;
-lin 'slop-shop_N' = mkN "slop-shop" "slop-shops" ; -- compound hop_N ;
-lin 'print-shop_N' = mkN "print-shop" "print-shops" ; -- compound hop_N ;
-lin teashop_N = mkN "teashop" "teashops" ; -- compound hop_N ;
-lin bishop_N = mkN "bishop" "bishops" ; -- compound hop_N ;
-lin archbishop_N = mkN "archbishop" "archbishops" ; -- compound hop_N ;
-lin bookshop_N = mkN "bookshop" "bookshops" ; -- compound hop_N ;
-lin workshop_N = mkN "workshop" "workshops" ; -- compound hop_N ;
-lin pawnshop_N = mkN "pawnshop" "pawnshops" ; -- compound hop_N ;
-lin slopshop_N = mkN "slopshop" "slopshops" ; -- compound hop_N ;
-lin barbershop_N = mkN "barbershop" "barbershops" ; -- compound hop_N ;
-lin sweatshop_N = mkN "sweatshop" "sweatshops" ; -- compound hop_N ;
-lin thriftshop_N = mkN "thriftshop" "thriftshops" ; -- compound hop_N ;
-lin toyshop_N = mkN "toyshop" "toyshops" ; -- compound hop_N ;
-lin flop_N = mkN "flop" "flops" ;
-lin megaflop_N = mkN "megaflop" "megaflops" ; -- compound flop_N ;
-lin teraflop_N = mkN "teraflop" "teraflops" ; -- compound flop_N ;
-lin bellyflop_N = mkN "bellyflop" "bellyflops" ; -- compound flop_N ;
-lin glop_N = mkN "glop" "glops" ;
-lin scallop_N = mkN "scallop" "scallops" ;
-lin gallop_N = mkN "gallop" "gallops" ;
-lin wallop_N = mkN "wallop" "wallops" ;
-lin scollop_N = mkN "scollop" "scollops" ;
-lin dollop_N = mkN "dollop" "dollops" ;
-lin trollop_N = mkN "trollop" "trollops" ;
-lin plop_N = mkN "plop" "plops" ;
-lin orlop_N = mkN "orlop" "orlops" ;
-lin slop_N = mkN "slop" "slops" ;
-lin mop_N = mkN "mop" "mops" ;
-lin dustmop_N = mkN "dustmop" "dustmops" ; -- compound mop_N ;
-lin coop_N = mkN "coop" "coops" ;
-lin hencoop_N = mkN "hencoop" "hencoops" ; -- compound coop_N ;
-lin scoop_N = mkN "scoop" "scoops" ; -- notcompound coop_N ;
-lin hoop_N = mkN "hoop" "hoops" ;
-lin whoop_N = mkN "whoop" "whoops" ; -- notcompound hoop_N ;
-lin loop_N = mkN "loop" "loops" ;
-lin sloop_N = mkN "sloop" "sloops" ; -- notcompound loop_N ;
-lin snoop_N = mkN "snoop" "snoops" ;
-lin poop_N = mkN "poop" "poops" ;
-lin nincompoop_N = mkN "nincompoop" "nincompoops" ; -- compound poop_N ;
-lin droop_N = mkN "droop" "droops" ;
-lin troop_N = mkN "troop" "troops" ;
-lin stoop_N = mkN "stoop" "stoops" ;
-lin swoop_N = mkN "swoop" "swoops" ;
-lin pop_N = mkN "pop" "pops" ;
-lin lollipop_N = mkN "lollipop" "lollipops" ; -- compound pop_N ;
-lin maypop_N = mkN "maypop" "maypops" ; -- compound pop_N ;
-lin crop_N = mkN "crop" "crops" ;
-lin 'hunting-crop_N' = mkN "hunting-crop" "hunting-crops" ; -- compound crop_N ;
-lin 'catch-crop_N' = mkN "catch-crop" "catch-crops" ; -- compound crop_N ;
-lin stonecrop_N = mkN "stonecrop" "stonecrops" ; -- compound crop_N ;
-lin outcrop_N = mkN "outcrop" "outcrops" ; -- compound crop_N ;
-lin drop_N = mkN "drop" "drops" ;
-lin 'tear-drop_N' = mkN "tear-drop" "tear-drops" ; -- compound drop_N ;
-lin eyedrop_N = mkN "eyedrop" "eyedrops" ; -- compound drop_N ;
-lin backdrop_N = mkN "backdrop" "backdrops" ; -- compound drop_N ;
-lin maildrop_N = mkN "maildrop" "maildrops" ; -- compound drop_N ;
-lin gumdrop_N = mkN "gumdrop" "gumdrops" ; -- compound drop_N ;
-lin raindrop_N = mkN "raindrop" "raindrops" ; -- compound drop_N ;
-lin eardrop_N = mkN "eardrop" "eardrops" ; -- compound drop_N ;
-lin teardrop_N = mkN "teardrop" "teardrops" ; -- compound drop_N ;
-lin airdrop_N = mkN "airdrop" "airdrops" ; -- compound drop_N ;
-lin dewdrop_N = mkN "dewdrop" "dewdrops" ; -- compound drop_N ;
-lin snowdrop_N = mkN "snowdrop" "snowdrops" ; -- compound drop_N ;
-lin prop_N = mkN "prop" "props" ;
-lin 'pit-prop_N' = mkN "pit-prop" "pit-props" ; -- compound prop_N ;
-lin turboprop_N = mkN "turboprop" "turboprops" ; -- compound prop_N ;
-lin agitprop_N = mkN "agitprop" "agitprops" ; -- compound prop_N ;
-lin pitprop_N = mkN "pitprop" "pitprops" ; -- compound prop_N ;
-lin caltrop_N = mkN "caltrop" "caltrops" ;
-lin strop_N = mkN "strop" "strops" ;
-lin sop_N = mkN "sop" "sops" ;
-lin milksop_N = mkN "milksop" "milksops" ; -- compound sop_N ;
-lin soursop_N = mkN "soursop" "soursops" ; -- compound sop_N ;
-lin hyssop_N = mkN "hyssop" "hyssops" ; -- compound sop_N ;
-lin sweetsop_N = mkN "sweetsop" "sweetsops" ; -- compound sop_N ;
-lin top_N = mkN "top" "tops" ;
-lin 'humming-top_N' = mkN "humming-top" "humming-tops" ; -- compound top_N ;
-lin 'whipping-top_N' = mkN "whipping-top" "whipping-tops" ; -- compound top_N ;
-lin hardtop_N = mkN "hardtop" "hardtops" ; -- compound top_N ;
-lin tabletop_N = mkN "tabletop" "tabletops" ; -- compound top_N ;
-lin foretop_N = mkN "foretop" "foretops" ; -- compound top_N ;
-lin housetop_N = mkN "housetop" "housetops" ; -- compound top_N ;
-lin rooftop_N = mkN "rooftop" "rooftops" ; -- compound top_N ;
-lin blacktop_N = mkN "blacktop" "blacktops" ; -- compound top_N ;
-lin desktop_N = mkN "desktop" "desktops" ; -- compound top_N ;
-lin hilltop_N = mkN "hilltop" "hilltops" ; -- compound top_N ;
-lin laptop_N = mkN "laptop" "laptops" ; -- compound top_N ;
-lin tiptop_N = mkN "tiptop" "tiptops" ; -- compound top_N ;
-lin feathertop_N = mkN "feathertop" "feathertops" ; -- compound top_N ;
-lin countertop_N = mkN "countertop" "countertops" ; -- compound top_N ;
-lin stop_N = mkN "stop" "stops" ; -- notcompound top_N ;
-lin 'whistle-stop_N' = mkN "whistle-stop" "whistle-stops" ; -- compound top_N ;
-lin 'night-stop_N' = mkN "night-stop" "night-stops" ; -- compound top_N ;
-lin backstop_N = mkN "backstop" "backstops" ; -- compound top_N ;
-lin doorstop_N = mkN "doorstop" "doorstops" ; -- compound top_N ;
-lin shortstop_N = mkN "shortstop" "shortstops" ; -- compound top_N ;
-lin flattop_N = mkN "flattop" "flattops" ; -- compound top_N ;
-lin screwtop_N = mkN "screwtop" "screwtops" ; -- compound top_N ;
-lin wop_N = mkN "wop" "wops" ;
-lin swop_N = mkN "swop" "swops" ; -- notcompound wop_N ;
-lin repp_N = mkN "repp" "repps" ;
-lin epicarp_N = mkN "epicarp" "epicarps" ;
-lin mericarp_N = mkN "mericarp" "mericarps" ;
-lin pericarp_N = mkN "pericarp" "pericarps" ;
-lin ascocarp_N = mkN "ascocarp" "ascocarps" ;
-lin podocarp_N = mkN "podocarp" "podocarps" ;
-lin basidiocarp_N = mkN "basidiocarp" "basidiocarps" ;
-lin angiocarp_N = mkN "angiocarp" "angiocarps" ;
-lin monocarp_N = mkN "monocarp" "monocarps" ;
-lin acrocarp_N = mkN "acrocarp" "acrocarps" ;
-lin dipterocarp_N = mkN "dipterocarp" "dipterocarps" ;
-lin sporocarp_N = mkN "sporocarp" "sporocarps" ;
-lin pleurocarp_N = mkN "pleurocarp" "pleurocarps" ;
-lin mesocarp_N = mkN "mesocarp" "mesocarps" ;
-lin schizocarp_N = mkN "schizocarp" "schizocarps" ;
-lin scarp_N = mkN "scarp" "scarps" ;
-lin harp_N = mkN "harp" "harps" ;
-lin sharp_N = mkN "sharp" "sharps" ; -- notcompound harp_N ;
-lin cardsharp_N = mkN "cardsharp" "cardsharps" ; -- compound harp_N ;
-lin warp_N = mkN "warp" "warps" ;
-lin twerp_N = mkN "twerp" "twerps" ;
-lin chirp_N = mkN "chirp" "chirps" ;
-lin burp_N = mkN "burp" "burps" ;
-lin asp_N = mkN "asp" "asps" ;
-lin gasp_N = mkN "gasp" "gasps" ; -- notcompound asp_N ;
-lin hasp_N = mkN "hasp" "hasps" ; -- notcompound asp_N ;
-lin clasp_N = mkN "clasp" "clasps" ; -- notcompound asp_N ;
-lin rasp_N = mkN "rasp" "rasps" ; -- notcompound asp_N ;
-lin grasp_N = mkN "grasp" "grasps" ; -- notcompound asp_N ;
-lin wasp_N = mkN "wasp" "wasps" ; -- notcompound asp_N ;
-lin esp_N = mkN "esp" "esps" ;
-lin lisp_N = mkN "lisp" "lisps" ;
-lin crisp_N = mkN "crisp" "crisps" ;
-lin wisp_N = mkN "wisp" "wisps" ;
-lin 'will-o\'-the-wisp_N' = mkN "will-o'-the-wisp" "will-o'-the-wisps" ; -- compound wisp_N ;
-lin cusp_N = mkN "cusp" "cusps" ;
-lin 'rub-up_N' = mkN "rub-up" "rub-ups" ;
-lin 'speed-up_N' = mkN "speed-up" "speed-ups" ;
-lin 'build-up_N' = mkN "build-up" "build-ups" ;
-lin 'hold-up_N' = mkN "hold-up" "hold-ups" ;
-lin 'send-up_N' = mkN "send-up" "send-ups" ;
-lin 'tie-up_N' = mkN "tie-up" "tie-ups" ;
-lin 'shake-up_N' = mkN "shake-up" "shake-ups" ;
-lin 'make-up_N' = mkN "make-up" "make-ups" ;
-lin 'take-up_N' = mkN "take-up" "take-ups" ;
-lin 'pile-up_N' = mkN "pile-up" "pile-ups" ;
-lin 'pick-me-up_N' = mkN "pick-me-up" "pick-me-ups" ;
-lin 'frame-up_N' = mkN "frame-up" "frame-ups" ;
-lin 'line-up_N' = mkN "line-up" "line-ups" ;
-lin 'flare-up_N' = mkN "flare-up" "flare-ups" ;
-lin 'close-up_N' = mkN "close-up" "close-ups" ;
-lin 'write-up_N' = mkN "write-up" "write-ups" ;
-lin 'paste-up_N' = mkN "paste-up" "paste-ups" ;
-lin 'rave-up_N' = mkN "rave-up" "rave-ups" ;
-lin 'booze-up_N' = mkN "booze-up" "booze-ups" ;
-lin 'hang-up_N' = mkN "hang-up" "hang-ups" ;
-lin 'washing-up_N' = mkN "washing-up" "washing-ups" ;
-lin 'summing-up_N' = mkN "summing-up" "summing-ups" ;
-lin 'blowing-up_N' = mkN "blowing-up" "blowing-ups" ;
-lin 'punch-up_N' = mkN "punch-up" "punch-ups" ;
-lin 'high-up_N' = mkN "high-up" "high-ups" ;
-lin 'lash-up_N' = mkN "lash-up" "lash-ups" ;
-lin 'smash-up_N' = mkN "smash-up" "smash-ups" ;
-lin 'nosh-up_N' = mkN "nosh-up" "nosh-ups" ;
-lin 'brush-up_N' = mkN "brush-up" "brush-ups" ;
-lin 'break-up_N' = mkN "break-up" "break-ups" ;
-lin 'back-up_N' = mkN "back-up" "back-ups" ;
-lin 'crack-up_N' = mkN "crack-up" "crack-ups" ;
-lin 'pick-up_N' = mkN "pick-up" "pick-ups" ;
-lin 'stick-up_N' = mkN "stick-up" "stick-ups" ;
-lin 'mock-up_N' = mkN "mock-up" "mock-ups" ;
-lin 'link-up_N' = mkN "link-up" "link-ups" ;
-lin 'hook-up_N' = mkN "hook-up" "hook-ups" ;
-lin 'mark-up_N' = mkN "mark-up" "mark-ups" ;
-lin 'call-up_N' = mkN "call-up" "call-ups" ;
-lin 'pull-up_N' = mkN "pull-up" "pull-ups" ;
-lin 'snarl-up_N' = mkN "snarl-up" "snarl-ups" ;
-lin 'clean-up_N' = mkN "clean-up" "clean-ups" ;
-lin 'pin-up_N' = mkN "pin-up" "pin-ups" ;
-lin 'burn-up_N' = mkN "burn-up" "burn-ups" ;
-lin 'turn-up_N' = mkN "turn-up" "turn-ups" ;
-lin 'run-up_N' = mkN "run-up" "run-ups" ;
-lin 'sun-up_N' = mkN "sun-up" "sun-ups" ;
-lin 'grown-up_N' = mkN "grown-up" "grown-ups" ;
-lin 'slip-up_N' = mkN "slip-up" "slip-ups" ;
-lin 'cover-up_N' = mkN "cover-up" "cover-ups" ;
-lin 'balls-up_N' = mkN "balls-up" "balls-ups" ;
-lin 'mess-up_N' = mkN "mess-up" "mess-ups" ;
-lin 'press-up_N' = mkN "press-up" "press-ups" ;
-lin 'toss-up_N' = mkN "toss-up" "toss-ups" ;
-lin 'get-up_N' = mkN "get-up" "get-ups" ;
-lin 'let-up_N' = mkN "let-up" "let-ups" ;
-lin 'set-up_N' = mkN "set-up" "set-ups" ;
-lin 'bust-up_N' = mkN "bust-up" "bust-ups" ;
-lin 'dust-up_N' = mkN "dust-up" "dust-ups" ;
-lin 'blow-up_N' = mkN "blow-up" "blow-ups" ;
-lin 'follow-up_N' = mkN "follow-up" "follow-ups" ;
-lin 'mix-up_N' = mkN "mix-up" "mix-ups" ;
-lin scaup_N = mkN "scaup" "scaups" ;
-lin cup_N = mkN "cup" "cups" ;
-lin 'egg-cup_N' = mkN "egg-cup" "egg-cups" ; -- compound cup_N ;
-lin 'loving-cup_N' = mkN "loving-cup" "loving-cups" ; -- compound cup_N ;
-lin 'acorn-cup_N' = mkN "acorn-cup" "acorn-cups" ; -- compound cup_N ;
-lin 'stirrup-cup_N' = mkN "stirrup-cup" "stirrup-cups" ; -- compound cup_N ;
-lin teacup_N = mkN "teacup" "teacups" ; -- compound cup_N ;
-lin hiccup_N = mkN "hiccup" "hiccups" ; -- compound cup_N ;
-lin whitecup_N = mkN "whitecup" "whitecups" ; -- compound cup_N ;
-lin eyecup_N = mkN "eyecup" "eyecups" ; -- compound cup_N ;
-lin eggcup_N = mkN "eggcup" "eggcups" ; -- compound cup_N ;
-lin kingcup_N = mkN "kingcup" "kingcups" ; -- compound cup_N ;
-lin buttercup_N = mkN "buttercup" "buttercups" ; -- compound cup_N ;
-lin scup_N = mkN "scup" "scups" ; -- notcompound cup_N ;
-lin buildup_N = mkN "buildup" "buildups" ;
-lin holdup_N = mkN "holdup" "holdups" ;
-lin roundup_N = mkN "roundup" "roundups" ;
-lin makeup_N = mkN "makeup" "makeups" ;
-lin pileup_N = mkN "pileup" "pileups" ;
-lin lineup_N = mkN "lineup" "lineups" ;
-lin closeup_N = mkN "closeup" "closeups" ;
-lin catchup_N = mkN "catchup" "catchups" ;
-lin ketchup_N = mkN "ketchup" "ketchups" ;
-lin washup_N = mkN "washup" "washups" ;
-lin pushup_N = mkN "pushup" "pushups" ;
-lin wickiup_N = mkN "wickiup" "wickiups" ;
-lin backup_N = mkN "backup" "backups" ;
-lin stackup_N = mkN "stackup" "stackups" ;
-lin checkup_N = mkN "checkup" "checkups" ;
-lin pickup_N = mkN "pickup" "pickups" ;
-lin cockup_N = mkN "cockup" "cockups" ;
-lin lockup_N = mkN "lockup" "lockups" ;
-lin hookup_N = mkN "hookup" "hookups" ;
-lin markup_N = mkN "markup" "markups" ;
-lin ballup_N = mkN "ballup" "ballups" ;
-lin cleanup_N = mkN "cleanup" "cleanups" ;
-lin sannup_N = mkN "sannup" "sannups" ;
-lin burnup_N = mkN "burnup" "burnups" ;
-lin runup_N = mkN "runup" "runups" ;
-lin coup_N = mkN "coup" "coups" ;
-lin countercoup_N = mkN "countercoup" "countercoups" ; -- compound coup_N ;
-lin cantaloup_N = mkN "cantaloup" "cantaloups" ;
-lin croup_N = mkN "croup" "croups" ;
-lin group_N = mkN "group" "groups" ;
-lin 'blood-group_N' = mkN "blood-group" "blood-groups" ; -- compound group_N ;
-lin 'age-group_N' = mkN "age-group" "age-groups" ; -- compound group_N ;
-lin 'skiffle-group_N' = mkN "skiffle-group" "skiffle-groups" ; -- compound group_N ;
-lin subgroup_N = mkN "subgroup" "subgroups" ; -- compound group_N ;
-lin playgroup_N = mkN "playgroup" "playgroups" ; -- compound group_N ;
-lin soup_N = mkN "soup" "soups" ;
-lin 'pea-soup_N' = mkN "pea-soup" "pea-soups" ; -- compound soup_N ;
-lin stoup_N = mkN "stoup" "stoups" ;
-lin pup_N = mkN "pup" "pups" ;
-lin sirup_N = mkN "sirup" "sirups" ;
-lin chirrup_N = mkN "chirrup" "chirrups" ;
-lin stirrup_N = mkN "stirrup" "stirrups" ;
-lin syrup_N = mkN "syrup" "syrups" ;
-lin sup_N = mkN "sup" "sups" ;
-lin tossup_N = mkN "tossup" "tossups" ; -- compound sup_N ;
-lin catsup_N = mkN "catsup" "catsups" ; -- compound sup_N ;
-lin tup_N = mkN "tup" "tups" ;
-lin letup_N = mkN "letup" "letups" ; -- compound tup_N ;
-lin setup_N = mkN "setup" "setups" ; -- compound tup_N ;
-lin startup_N = mkN "startup" "startups" ; -- compound tup_N ;
-lin screwup_N = mkN "screwup" "screwups" ;
-lin vp_N = mkN "vp" "vps" ;
-lin gyp_N = mkN "gyp" "gyps" ;
-lin polyp_N = mkN "polyp" "polyps" ;
-lin iq_N = mkN "iq" "iqs" ;
-lin qepiq_N = mkN "qepiq" "qepiqs" ; -- compound iq_N ;
-lin dander_N = mkN "dander" "IRREG" ;
-lin 'hugger-mugger_N' = mkN "hugger-mugger" "IRREG" ;
-lin smother_N = mkN "smother" "IRREG" ;
-lin 'pis aller_N' = mkN "pis aller" "IRREG" ;
-lin simmer_N = mkN "simmer" "IRREG" ;
-lin hereafter_N = mkN "hereafter" "IRREG" ;
-lin welter_N = mkN "welter" "IRREG" ;
-lin whir_N = mkN "whir" "IRREG" ;
-lin señor_N = mkN "señor" "IRREG" ;
-lin herr_N = mkN "herr" "IRREG" ;
-lin whirr_N = mkN "whirr" "IRREG" ;
-lin monsieur_N = mkN "monsieur" "IRREG" ;
-lin 'man-of-war_N' = mkN "man-of-war" "men*-of-war" ;
-lin deer_N = mkN "deer" "deer" ;
-lin 'musk-deer_N' = mkN "musk-deer" "musk-deer" ; -- compound deer_N ;
-lin 'fallow-deer_N' = mkN "fallow-deer" "fallow-deer" ; -- compound deer_N ;
-lin reindeer_N = mkN "reindeer" "reindeer" ; -- compound deer_N ;
-lin denier_N = mkN "denier" "denier" ;
-lin horsepower_N = mkN "horsepower" "horsepower" ;
-lin maar_N = mkN "maar" "maars" ;
-lin bazaar_N = mkN "bazaar" "bazaars" ;
-lin bar_N = mkN "bar" "bars" ;
-lin 'sand-bar_N' = mkN "sand-bar" "sand-bars" ; -- compound bar_N ;
-lin 'space-bar_N' = mkN "space-bar" "space-bars" ; -- compound bar_N ;
-lin 'snack-bar_N' = mkN "snack-bar" "snack-bars" ; -- compound bar_N ;
-lin 'oyster-bar_N' = mkN "oyster-bar" "oyster-bars" ; -- compound bar_N ;
-lin 'color-bar_N' = mkN "color-bar" "color-bars" ; -- compound bar_N ;
-lin 'colour-bar_N' = mkN "colour-bar" "colour-bars" ; -- compound bar_N ;
-lin cinnabar_N = mkN "cinnabar" "cinnabars" ; -- compound bar_N ;
-lin sandbar_N = mkN "sandbar" "sandbars" ; -- compound bar_N ;
-lin sidebar_N = mkN "sidebar" "sidebars" ; -- compound bar_N ;
-lin handlebar_N = mkN "handlebar" "handlebars" ; -- compound bar_N ;
-lin millibar_N = mkN "millibar" "millibars" ; -- compound bar_N ;
-lin minibar_N = mkN "minibar" "minibars" ; -- compound bar_N ;
-lin milkbar_N = mkN "milkbar" "milkbars" ; -- compound bar_N ;
-lin tollbar_N = mkN "tollbar" "tollbars" ; -- compound bar_N ;
-lin liquidambar_N = mkN "liquidambar" "liquidambars" ; -- compound bar_N ;
-lin sambar_N = mkN "sambar" "sambars" ; -- compound bar_N ;
-lin isobar_N = mkN "isobar" "isobars" ; -- compound bar_N ;
-lin durbar_N = mkN "durbar" "durbars" ; -- compound bar_N ;
-lin crossbar_N = mkN "crossbar" "crossbars" ; -- compound bar_N ;
-lin busbar_N = mkN "busbar" "busbars" ; -- compound bar_N ;
-lin drawbar_N = mkN "drawbar" "drawbars" ; -- compound bar_N ;
-lin crowbar_N = mkN "crowbar" "crowbars" ; -- compound bar_N ;
-lin car_N = mkN "car" "cars" ;
-lin 'cable-car_N' = mkN "cable-car" "cable-cars" ; -- compound car_N ;
-lin 'smoking-car_N' = mkN "smoking-car" "smoking-cars" ; -- compound car_N ;
-lin 'dining-car_N' = mkN "dining-car" "dining-cars" ; -- compound car_N ;
-lin 'sleeping-car_N' = mkN "sleeping-car" "sleeping-cars" ; -- compound car_N ;
-lin 'jaunting-car_N' = mkN "jaunting-car" "jaunting-cars" ; -- compound car_N ;
-lin 'tank-car_N' = mkN "tank-car" "tank-cars" ; -- compound car_N ;
-lin 'tram-car_N' = mkN "tram-car" "tram-cars" ; -- compound car_N ;
-lin 'parlour-car_N' = mkN "parlour-car" "parlour-cars" ; -- compound car_N ;
-lin 'sports-car_N' = mkN "sports-car" "sports-cars" ; -- compound car_N ;
-lin 'flat-car_N' = mkN "flat-car" "flat-cars" ; -- compound car_N ;
-lin 'trolley-car_N' = mkN "trolley-car" "trolley-cars" ; -- compound car_N ;
-lin handcar_N = mkN "handcar" "handcars" ; -- compound car_N ;
-lin sidecar_N = mkN "sidecar" "sidecars" ; -- compound car_N ;
-lin horsecar_N = mkN "horsecar" "horsecars" ; -- compound car_N ;
-lin minicar_N = mkN "minicar" "minicars" ; -- compound car_N ;
-lin vicar_N = mkN "vicar" "vicars" ; -- compound car_N ;
-lin stockcar_N = mkN "stockcar" "stockcars" ; -- compound car_N ;
-lin railcar_N = mkN "railcar" "railcars" ; -- compound car_N ;
-lin tramcar_N = mkN "tramcar" "tramcars" ; -- compound car_N ;
-lin motorcar_N = mkN "motorcar" "motorcars" ; -- compound car_N ;
-lin scar_N = mkN "scar" "scars" ; -- notcompound car_N ;
-lin lascar_N = mkN "lascar" "lascars" ; -- compound car_N ;
-lin oscar_N = mkN "oscar" "oscars" ; -- compound car_N ;
-lin flatcar_N = mkN "flatcar" "flatcars" ; -- compound car_N ;
-lin streetcar_N = mkN "streetcar" "streetcars" ; -- compound car_N ;
-lin boxcar_N = mkN "boxcar" "boxcars" ; -- compound car_N ;
-lin radar_N = mkN "radar" "radars" ;
-lin cheddar_N = mkN "cheddar" "cheddars" ;
-lin cedar_N = mkN "cedar" "cedars" ;
-lin lidar_N = mkN "lidar" "lidars" ;
-lin calendar_N = mkN "calendar" "calendars" ;
-lin deodar_N = mkN "deodar" "deodars" ;
-lin sirdar_N = mkN "sirdar" "sirdars" ;
-lin ear_N = mkN "ear" "ears" ;
-lin bear_N = mkN "bear" "bears" ; -- notcompound ear_N ;
-lin forebear_N = mkN "forebear" "forebears" ; -- compound ear_N ;
-lin bugbear_N = mkN "bugbear" "bugbears" ; -- compound ear_N ;
-lin forbear_N = mkN "forbear" "forbears" ; -- compound ear_N ;
-lin dear_N = mkN "dear" "dears" ; -- notcompound ear_N ;
-lin fear_N = mkN "fear" "fears" ; -- notcompound ear_N ;
-lin gear_N = mkN "gear" "gears" ; -- notcompound ear_N ;
-lin 'landing-gear_N' = mkN "landing-gear" "landing-gears" ; -- compound ear_N ;
-lin 'steering-gear_N' = mkN "steering-gear" "steering-gears" ; -- compound ear_N ;
-lin 'worm-gear_N' = mkN "worm-gear" "worm-gears" ; -- compound ear_N ;
-lin headgear_N = mkN "headgear" "headgears" ; -- compound ear_N ;
-lin shear_N = mkN "shear" "shears" ; -- notcompound ear_N ;
-lin clear_N = mkN "clear" "clears" ; -- notcompound ear_N ;
-lin trochlear_N = mkN "trochlear" "trochlears" ; -- compound ear_N ;
-lin smear_N = mkN "smear" "smears" ; -- notcompound ear_N ;
-lin pear_N = mkN "pear" "pears" ; -- notcompound ear_N ;
-lin spear_N = mkN "spear" "spears" ; -- notcompound ear_N ;
-lin rear_N = mkN "rear" "rears" ; -- notcompound ear_N ;
-lin tear_N = mkN "tear" "tears" ; -- notcompound ear_N ;
-lin wheatear_N = mkN "wheatear" "wheatears" ; -- compound ear_N ;
-lin wear_N = mkN "wear" "wears" ; -- notcompound ear_N ;
-lin handwear_N = mkN "handwear" "handwears" ; -- compound ear_N ;
-lin loungewear_N = mkN "loungewear" "loungewears" ; -- compound ear_N ;
-lin beachwear_N = mkN "beachwear" "beachwears" ; -- compound ear_N ;
-lin neckwear_N = mkN "neckwear" "neckwears" ; -- compound ear_N ;
-lin workwear_N = mkN "workwear" "workwears" ; -- compound ear_N ;
-lin formalwear_N = mkN "formalwear" "formalwears" ; -- compound ear_N ;
-lin underwear_N = mkN "underwear" "underwears" ; -- compound ear_N ;
-lin outerwear_N = mkN "outerwear" "outerwears" ; -- compound ear_N ;
-lin sportswear_N = mkN "sportswear" "sportswears" ; -- compound ear_N ;
-lin nightwear_N = mkN "nightwear" "nightwears" ; -- compound ear_N ;
-lin knitwear_N = mkN "knitwear" "knitwears" ; -- compound ear_N ;
-lin footwear_N = mkN "footwear" "footwears" ; -- compound ear_N ;
-lin year_N = mkN "year" "years" ; -- notcompound ear_N ;
-lin 'leap-year_N' = mkN "leap-year" "leap-years" ; -- compound ear_N ;
-lin shofar_N = mkN "shofar" "shofars" ;
-lin gar_N = mkN "gar" "gars" ;
-lin agar_N = mkN "agar" "agars" ; -- notcompound gar_N ;
-lin 'agar-agar_N' = mkN "agar-agar" "agar-agars" ; -- compound gar_N ;
-lin vinegar_N = mkN "vinegar" "vinegars" ; -- compound gar_N ;
-lin eggar_N = mkN "eggar" "eggars" ; -- compound gar_N ;
-lin beggar_N = mkN "beggar" "beggars" ; -- compound gar_N ;
-lin cigar_N = mkN "cigar" "cigars" ; -- compound gar_N ;
-lin budgerigar_N = mkN "budgerigar" "budgerigars" ; -- compound gar_N ;
-lin realgar_N = mkN "realgar" "realgars" ; -- compound gar_N ;
-lin hangar_N = mkN "hangar" "hangars" ; -- compound gar_N ;
-lin cougar_N = mkN "cougar" "cougars" ; -- compound gar_N ;
-lin sugar_N = mkN "sugar" "sugars" ; -- compound gar_N ;
-lin 'grape-sugar_N' = mkN "grape-sugar" "grape-sugars" ; -- compound gar_N ;
-lin 'loaf-sugar_N' = mkN "loaf-sugar" "loaf-sugars" ; -- compound gar_N ;
-lin 'barley-sugar_N' = mkN "barley-sugar" "barley-sugars" ; -- compound gar_N ;
-lin lahar_N = mkN "lahar" "lahars" ;
-lin char_N = mkN "char" "chars" ;
-lin eschar_N = mkN "eschar" "eschars" ; -- compound char_N ;
-lin justiciar_N = mkN "justiciar" "justiciars" ;
-lin liar_N = mkN "liar" "liars" ;
-lin familiar_N = mkN "familiar" "familiars" ; -- compound liar_N ;
-lin briar_N = mkN "briar" "briars" ;
-lin sweetbriar_N = mkN "sweetbriar" "sweetbriars" ; -- compound briar_N ;
-lin friar_N = mkN "friar" "friars" ;
-lin caviar_N = mkN "caviar" "caviars" ;
-lin jar_N = mkN "jar" "jars" ;
-lin jamjar_N = mkN "jamjar" "jamjars" ; -- compound jar_N ;
-lin nightjar_N = mkN "nightjar" "nightjars" ; -- compound jar_N ;
-lin scalar_N = mkN "scalar" "scalars" ;
-lin medlar_N = mkN "medlar" "medlars" ;
-lin pedlar_N = mkN "pedlar" "pedlars" ;
-lin velar_N = mkN "velar" "velars" ;
-lin burglar_N = mkN "burglar" "burglars" ;
-lin ashlar_N = mkN "ashlar" "ashlars" ;
-lin cellar_N = mkN "cellar" "cellars" ;
-lin 'salt-cellar_N' = mkN "salt-cellar" "salt-cellars" ; -- compound cellar_N ;
-lin saltcellar_N = mkN "saltcellar" "saltcellars" ; -- compound cellar_N ;
-lin pillar_N = mkN "pillar" "pillars" ;
-lin caterpillar_N = mkN "caterpillar" "caterpillars" ; -- compound pillar_N ;
-lin collar_N = mkN "collar" "collars" ;
-lin 'dog-collar_N' = mkN "dog-collar" "dog-collars" ; -- compound collar_N ;
-lin dollar_N = mkN "dollar" "dollars" ;
-lin eurodollar_N = mkN "eurodollar" "eurodollars" ; -- compound dollar_N ;
-lin escolar_N = mkN "escolar" "escolars" ;
-lin alveolar_N = mkN "alveolar" "alveolars" ;
-lin scholar_N = mkN "scholar" "scholars" ;
-lin molar_N = mkN "molar" "molars" ;
-lin premolar_N = mkN "premolar" "premolars" ; -- compound molar_N ;
-lin exemplar_N = mkN "exemplar" "exemplars" ;
-lin poplar_N = mkN "poplar" "poplars" ;
-lin vernacular_N = mkN "vernacular" "vernaculars" ;
-lin spectacular_N = mkN "spectacular" "spectaculars" ;
-lin perpendicular_N = mkN "perpendicular" "perpendiculars" ;
-lin funicular_N = mkN "funicular" "funiculars" ;
-lin particular_N = mkN "particular" "particulars" ;
-lin circular_N = mkN "circular" "circulars" ;
-lin regular_N = mkN "regular" "regulars" ;
-lin irregular_N = mkN "irregular" "irregulars" ; -- compound regular_N ;
-lin singular_N = mkN "singular" "singulars" ;
-lin jugular_N = mkN "jugular" "jugulars" ;
-lin scapular_N = mkN "scapular" "scapulars" ;
-lin jacamar_N = mkN "jacamar" "jacamars" ;
-lin khimar_N = mkN "khimar" "khimars" ;
-lin fulmar_N = mkN "fulmar" "fulmars" ;
-lin dammar_N = mkN "dammar" "dammars" ;
-lin grammar_N = mkN "grammar" "grammars" ;
-lin chanar_N = mkN "chanar" "chanars" ;
-lin denar_N = mkN "denar" "denars" ;
-lin thenar_N = mkN "thenar" "thenars" ;
-lin dinar_N = mkN "dinar" "dinars" ;
-lin seminar_N = mkN "seminar" "seminars" ;
-lin sonar_N = mkN "sonar" "sonars" ;
-lin oar_N = mkN "oar" "oars" ;
-lin boar_N = mkN "boar" "boars" ; -- notcompound oar_N ;
-lin roar_N = mkN "roar" "roars" ; -- notcompound oar_N ;
-lin uproar_N = mkN "uproar" "uproars" ; -- compound oar_N ;
-lin soar_N = mkN "soar" "soars" ; -- notcompound oar_N ;
-lin par_N = mkN "par" "pars" ;
-lin apar_N = mkN "apar" "apars" ; -- notcompound par_N ;
-lin spar_N = mkN "spar" "spars" ; -- notcompound par_N ;
-lin feldspar_N = mkN "feldspar" "feldspars" ; -- compound par_N ;
-lin felspar_N = mkN "felspar" "felspars" ; -- compound par_N ;
-lin registrar_N = mkN "registrar" "registrars" ;
-lin quasar_N = mkN "quasar" "quasars" ;
-lin caesar_N = mkN "caesar" "caesars" ;
-lin pulsar_N = mkN "pulsar" "pulsars" ;
-lin bursar_N = mkN "bursar" "bursars" ;
-lin antimacassar_N = mkN "antimacassar" "antimacassars" ;
-lin commissar_N = mkN "commissar" "commissars" ;
-lin hussar_N = mkN "hussar" "hussars" ;
-lin tsar_N = mkN "tsar" "tsars" ;
-lin tar_N = mkN "tar" "tars" ;
-lin 'coal-tar_N' = mkN "coal-tar" "coal-tars" ; -- compound tar_N ;
-lin avatar_N = mkN "avatar" "avatars" ; -- compound tar_N ;
-lin nectar_N = mkN "nectar" "nectars" ; -- compound tar_N ;
-lin scimitar_N = mkN "scimitar" "scimitars" ; -- compound tar_N ;
-lin sitar_N = mkN "sitar" "sitars" ; -- compound tar_N ;
-lin guitar_N = mkN "guitar" "guitars" ; -- compound tar_N ;
-lin altar_N = mkN "altar" "altars" ; -- compound tar_N ;
-lin tartar_N = mkN "tartar" "tartars" ; -- compound tar_N ;
-lin mortar_N = mkN "mortar" "mortars" ; -- compound tar_N ;
-lin star_N = mkN "star" "stars" ; -- notcompound tar_N ;
-lin 'pole-star_N' = mkN "pole-star" "pole-stars" ; -- compound tar_N ;
-lin 'film-star_N' = mkN "film-star" "film-stars" ; -- compound tar_N ;
-lin 'co-star_N' = mkN "co-star" "co-stars" ; -- compound tar_N ;
-lin loadstar_N = mkN "loadstar" "loadstars" ; -- compound tar_N ;
-lin lodestar_N = mkN "lodestar" "lodestars" ; -- compound tar_N ;
-lin earthstar_N = mkN "earthstar" "earthstars" ; -- compound tar_N ;
-lin instar_N = mkN "instar" "instars" ; -- compound tar_N ;
-lin attar_N = mkN "attar" "attars" ; -- compound tar_N ;
-lin cottar_N = mkN "cottar" "cottars" ; -- compound tar_N ;
-lin guar_N = mkN "guar" "guars" ;
-lin jaguar_N = mkN "jaguar" "jaguars" ; -- compound guar_N ;
-lin bolivar_N = mkN "bolivar" "bolivars" ;
-lin cultivar_N = mkN "cultivar" "cultivars" ;
-lin lekvar_N = mkN "lekvar" "lekvars" ;
-lin samovar_N = mkN "samovar" "samovars" ;
-lin louvar_N = mkN "louvar" "louvars" ;
-lin war_N = mkN "war" "wars" ;
-lin salwar_N = mkN "salwar" "salwars" ; -- compound war_N ;
-lin Magyar_N = mkN "Magyar" "Magyars" ;
-lin alcazar_N = mkN "alcazar" "alcazars" ;
-lin lazar_N = mkN "lazar" "lazars" ;
-lin czar_N = mkN "czar" "czars" ;
-lin izar_N = mkN "izar" "izars" ;
-lin tzar_N = mkN "tzar" "tzars" ;
-lin nebuchadnezzar_N = mkN "nebuchadnezzar" "nebuchadnezzars" ;
-lin caber_N = mkN "caber" "cabers" ;
-lin saber_N = mkN "saber" "sabers" ;
-lin jabber_N = mkN "jabber" "jabbers" ;
-lin clabber_N = mkN "clabber" "clabbers" ;
-lin grabber_N = mkN "grabber" "grabbers" ;
-lin stabber_N = mkN "stabber" "stabbers" ;
-lin dibber_N = mkN "dibber" "dibbers" ;
-lin fibber_N = mkN "fibber" "fibbers" ;
-lin cobber_N = mkN "cobber" "cobbers" ;
-lin jobber_N = mkN "jobber" "jobbers" ;
-lin stockjobber_N = mkN "stockjobber" "stockjobbers" ; -- compound jobber_N ;
-lin clobber_N = mkN "clobber" "clobbers" ;
-lin slobber_N = mkN "slobber" "slobbers" ;
-lin robber_N = mkN "robber" "robbers" ;
-lin graverobber_N = mkN "graverobber" "graverobbers" ; -- compound robber_N ;
-lin lubber_N = mkN "lubber" "lubbers" ;
-lin blubber_N = mkN "blubber" "blubbers" ; -- notcompound lubber_N ;
-lin landlubber_N = mkN "landlubber" "landlubbers" ; -- compound lubber_N ;
-lin rubber_N = mkN "rubber" "rubbers" ;
-lin 'india-rubber_N' = mkN "india-rubber" "india-rubbers" ; -- compound rubber_N ;
-lin 'foam-rubber_N' = mkN "foam-rubber" "foam-rubbers" ; -- compound rubber_N ;
-lin scrubber_N = mkN "scrubber" "scrubbers" ; -- notcompound rubber_N ;
-lin 'money-grubber_N' = mkN "money-grubber" "money-grubbers" ; -- compound rubber_N ;
-lin moneygrubber_N = mkN "moneygrubber" "moneygrubbers" ; -- compound rubber_N ;
-lin weber_N = mkN "weber" "webers" ;
-lin fiber_N = mkN "fiber" "fibers" ;
-lin briber_N = mkN "briber" "bribers" ;
-lin scriber_N = mkN "scriber" "scribers" ;
-lin subscriber_N = mkN "subscriber" "subscribers" ; -- compound scriber_N ;
-lin transcriber_N = mkN "transcriber" "transcribers" ; -- compound scriber_N ;
-lin amber_N = mkN "amber" "ambers" ;
-lin camber_N = mkN "camber" "cambers" ; -- notcompound amber_N ;
-lin chamber_N = mkN "chamber" "chambers" ; -- notcompound amber_N ;
-lin 'council-chamber_N' = mkN "council-chamber" "council-chambers" ; -- compound amber_N ;
-lin antechamber_N = mkN "antechamber" "antechambers" ; -- compound amber_N ;
-lin clamber_N = mkN "clamber" "clambers" ; -- notcompound amber_N ;
-lin ember_N = mkN "ember" "embers" ;
-lin December_N = mkN "December" "Decembers" ; -- compound ember_N ;
-lin member_N = mkN "member" "members" ; -- notcompound ember_N ;
-lin nonmember_N = mkN "nonmember" "nonmembers" ; -- compound ember_N ;
-lin September_N = mkN "September" "Septembers" ; -- compound ember_N ;
-lin November_N = mkN "November" "Novembers" ; -- compound ember_N ;
-lin limber_N = mkN "limber" "limbers" ;
-lin climber_N = mkN "climber" "climbers" ; -- notcompound limber_N ;
-lin timber_N = mkN "timber" "timbers" ;
-lin bomber_N = mkN "bomber" "bombers" ;
-lin 'dive-bomber_N' = mkN "dive-bomber" "dive-bombers" ; -- compound bomber_N ;
-lin comber_N = mkN "comber" "combers" ;
-lin beachcomber_N = mkN "beachcomber" "beachcombers" ; -- compound comber_N ;
-lin umber_N = mkN "umber" "umbers" ;
-lin cucumber_N = mkN "cucumber" "cucumbers" ; -- compound umber_N ;
-lin lumber_N = mkN "lumber" "lumbers" ; -- notcompound umber_N ;
-lin clumber_N = mkN "clumber" "clumbers" ; -- notcompound umber_N ;
-lin plumber_N = mkN "plumber" "plumbers" ; -- notcompound umber_N ;
-lin slumber_N = mkN "slumber" "slumbers" ; -- notcompound umber_N ;
-lin number_N = mkN "number" "numbers" ; -- notcompound umber_N ;
-lin 'box-number_N' = mkN "box-number" "box-numbers" ; -- compound umber_N ;
-lin October_N = mkN "October" "Octobers" ;
-lin barber_N = mkN "barber" "barbers" ;
-lin absorber_N = mkN "absorber" "absorbers" ;
-lin disturber_N = mkN "disturber" "disturbers" ;
-lin dauber_N = mkN "dauber" "daubers" ;
-lin tuber_N = mkN "tuber" "tubers" ;
-lin facer_N = mkN "facer" "facers" ;
-lin lacer_N = mkN "lacer" "lacers" ;
-lin placer_N = mkN "placer" "placers" ; -- notcompound lacer_N ;
-lin pacer_N = mkN "pacer" "pacers" ;
-lin racer_N = mkN "racer" "racers" ;
-lin bracer_N = mkN "bracer" "bracers" ; -- notcompound racer_N ;
-lin tracer_N = mkN "tracer" "tracers" ; -- notcompound racer_N ;
-lin soccer_N = mkN "soccer" "soccers" ;
-lin dicer_N = mkN "dicer" "dicers" ;
-lin officer_N = mkN "officer" "officers" ;
-lin 'field-officer_N' = mkN "field-officer" "field-officers" ; -- compound officer_N ;
-lin 'police-officer_N' = mkN "police-officer" "police-officers" ; -- compound officer_N ;
-lin 'law-officer_N' = mkN "law-officer" "law-officers" ; -- compound officer_N ;
-lin sacrificer_N = mkN "sacrificer" "sacrificers" ;
-lin artificer_N = mkN "artificer" "artificers" ;
-lin splicer_N = mkN "splicer" "splicers" ;
-lin slicer_N = mkN "slicer" "slicers" ;
-lin voicer_N = mkN "voicer" "voicers" ;
-lin ricer_N = mkN "ricer" "ricers" ;
-lin noticer_N = mkN "noticer" "noticers" ;
-lin ulcer_N = mkN "ulcer" "ulcers" ;
-lin cancer_N = mkN "cancer" "cancers" ;
-lin dancer_N = mkN "dancer" "dancers" ;
-lin 'rope-dancer_N' = mkN "rope-dancer" "rope-dancers" ; -- compound dancer_N ;
-lin 'ballet-dancer_N' = mkN "ballet-dancer" "ballet-dancers" ; -- compound dancer_N ;
-lin lancer_N = mkN "lancer" "lancers" ;
-lin balancer_N = mkN "balancer" "balancers" ; -- compound lancer_N ;
-lin freelancer_N = mkN "freelancer" "freelancers" ; -- compound lancer_N ;
-lin geomancer_N = mkN "geomancer" "geomancers" ;
-lin lithomancer_N = mkN "lithomancer" "lithomancers" ;
-lin onomancer_N = mkN "onomancer" "onomancers" ;
-lin necromancer_N = mkN "necromancer" "necromancers" ;
-lin hydromancer_N = mkN "hydromancer" "hydromancers" ;
-lin oneiromancer_N = mkN "oneiromancer" "oneiromancers" ;
-lin pyromancer_N = mkN "pyromancer" "pyromancers" ;
-lin prancer_N = mkN "prancer" "prancers" ;
-lin advancer_N = mkN "advancer" "advancers" ;
-lin conveyancer_N = mkN "conveyancer" "conveyancers" ;
-lin fencer_N = mkN "fencer" "fencers" ;
-lin silencer_N = mkN "silencer" "silencers" ;
-lin sequencer_N = mkN "sequencer" "sequencers" ;
-lin mincer_N = mkN "mincer" "mincers" ;
-lin pincer_N = mkN "pincer" "pincers" ;
-lin bouncer_N = mkN "bouncer" "bouncers" ;
-lin announcer_N = mkN "announcer" "announcers" ;
-lin grocer_N = mkN "grocer" "grocers" ;
-lin greengrocer_N = mkN "greengrocer" "greengrocers" ; -- compound grocer_N ;
-lin mercer_N = mkN "mercer" "mercers" ;
-lin saucer_N = mkN "saucer" "saucers" ;
-lin traducer_N = mkN "traducer" "traducers" ;
-lin adducer_N = mkN "adducer" "adducers" ;
-lin reducer_N = mkN "reducer" "reducers" ;
-lin seducer_N = mkN "seducer" "seducers" ;
-lin inducer_N = mkN "inducer" "inducers" ;
-lin producer_N = mkN "producer" "producers" ;
-lin reproducer_N = mkN "reproducer" "reproducers" ; -- compound producer_N ;
-lin transducer_N = mkN "transducer" "transducers" ;
-lin header_N = mkN "header" "headers" ;
-lin leader_N = mkN "leader" "leaders" ;
-lin 'strike-leader_N' = mkN "strike-leader" "strike-leaders" ; -- compound leader_N ;
-lin 'loss-leader_N' = mkN "loss-leader" "loss-leaders" ; -- compound leader_N ;
-lin bandleader_N = mkN "bandleader" "bandleaders" ; -- compound leader_N ;
-lin ringleader_N = mkN "ringleader" "ringleaders" ; -- compound leader_N ;
-lin cheerleader_N = mkN "cheerleader" "cheerleaders" ; -- compound leader_N ;
-lin misleader_N = mkN "misleader" "misleaders" ; -- compound leader_N ;
-lin reader_N = mkN "reader" "readers" ;
-lin 'mind-reader_N' = mkN "mind-reader" "mind-readers" ; -- compound reader_N ;
-lin 'map-reader_N' = mkN "map-reader" "map-readers" ; -- compound reader_N ;
-lin 'thought-reader_N' = mkN "thought-reader" "thought-readers" ; -- compound reader_N ;
-lin proofreader_N = mkN "proofreader" "proofreaders" ; -- compound reader_N ;
-lin nonreader_N = mkN "nonreader" "nonreaders" ; -- compound reader_N ;
-lin spreader_N = mkN "spreader" "spreaders" ; -- notcompound reader_N ;
-lin newsreader_N = mkN "newsreader" "newsreaders" ; -- compound reader_N ;
-lin sightreader_N = mkN "sightreader" "sightreaders" ; -- compound reader_N ;
-lin escalader_N = mkN "escalader" "escaladers" ;
-lin rollerblader_N = mkN "rollerblader" "rollerbladers" ;
-lin loader_N = mkN "loader" "loaders" ;
-lin freeloader_N = mkN "freeloader" "freeloaders" ; -- compound loader_N ;
-lin breechloader_N = mkN "breechloader" "breechloaders" ; -- compound loader_N ;
-lin autoloader_N = mkN "autoloader" "autoloaders" ; -- compound loader_N ;
-lin abrader_N = mkN "abrader" "abraders" ;
-lin masquerader_N = mkN "masquerader" "masqueraders" ;
-lin grader_N = mkN "grader" "graders" ;
-lin trader_N = mkN "trader" "traders" ;
-lin 'free-trader_N' = mkN "free-trader" "free-traders" ; -- compound trader_N ;
-lin crusader_N = mkN "crusader" "crusaders" ;
-lin persuader_N = mkN "persuader" "persuaders" ;
-lin invader_N = mkN "invader" "invaders" ;
-lin wader_N = mkN "wader" "waders" ;
-lin adder_N = mkN "adder" "adders" ;
-lin ladder_N = mkN "ladder" "ladders" ; -- notcompound adder_N ;
-lin 'rope-ladder_N' = mkN "rope-ladder" "rope-ladders" ; -- compound adder_N ;
-lin 'scaling-ladder_N' = mkN "scaling-ladder" "scaling-ladders" ; -- compound adder_N ;
-lin bladder_N = mkN "bladder" "bladders" ; -- notcompound adder_N ;
-lin 'air-bladder_N' = mkN "air-bladder" "air-bladders" ; -- compound adder_N ;
-lin gallbladder_N = mkN "gallbladder" "gallbladders" ; -- compound adder_N ;
-lin stepladder_N = mkN "stepladder" "stepladders" ; -- compound adder_N ;
-lin madder_N = mkN "madder" "madders" ; -- notcompound adder_N ;
-lin bedder_N = mkN "bedder" "bedders" ;
-lin shedder_N = mkN "shedder" "shedders" ;
-lin sledder_N = mkN "sledder" "sledders" ;
-lin shredder_N = mkN "shredder" "shredders" ;
-lin bidder_N = mkN "bidder" "bidders" ;
-lin skidder_N = mkN "skidder" "skidders" ;
-lin dodder_N = mkN "dodder" "dodders" ;
-lin fodder_N = mkN "fodder" "fodders" ;
-lin 'cannon-fodder_N' = mkN "cannon-fodder" "cannon-fodders" ; -- compound fodder_N ;
-lin plodder_N = mkN "plodder" "plodders" ;
-lin udder_N = mkN "udder" "udders" ;
-lin shudder_N = mkN "shudder" "shudders" ; -- notcompound udder_N ;
-lin mudder_N = mkN "mudder" "mudders" ; -- notcompound udder_N ;
-lin rudder_N = mkN "rudder" "rudders" ; -- notcompound udder_N ;
-lin feeder_N = mkN "feeder" "feeders" ;
-lin speeder_N = mkN "speeder" "speeders" ;
-lin breeder_N = mkN "breeder" "breeders" ;
-lin mouthbreeder_N = mkN "mouthbreeder" "mouthbreeders" ; -- compound breeder_N ;
-lin stockbreeder_N = mkN "stockbreeder" "stockbreeders" ; -- compound breeder_N ;
-lin seeder_N = mkN "seeder" "seeders" ;
-lin weeder_N = mkN "weeder" "weeders" ;
-lin raider_N = mkN "raider" "raiders" ;
-lin upbraider_N = mkN "upbraider" "upbraiders" ; -- compound raider_N ;
-lin cider_N = mkN "cider" "ciders" ;
-lin eider_N = mkN "eider" "eiders" ;
-lin glider_N = mkN "glider" "gliders" ;
-lin collider_N = mkN "collider" "colliders" ;
-lin slider_N = mkN "slider" "sliders" ;
-lin voider_N = mkN "voider" "voiders" ;
-lin spider_N = mkN "spider" "spiders" ;
-lin rider_N = mkN "rider" "riders" ;
-lin 'dispatch-rider_N' = mkN "dispatch-rider" "dispatch-riders" ; -- compound rider_N ;
-lin roughrider_N = mkN "roughrider" "roughriders" ; -- compound rider_N ;
-lin strider_N = mkN "strider" "striders" ; -- notcompound rider_N ;
-lin outrider_N = mkN "outrider" "outriders" ; -- compound rider_N ;
-lin insider_N = mkN "insider" "insiders" ;
-lin outsider_N = mkN "outsider" "outsiders" ;
-lin divider_N = mkN "divider" "dividers" ;
-lin subdivider_N = mkN "subdivider" "subdividers" ; -- compound divider_N ;
-lin provider_N = mkN "provider" "providers" ;
-lin alder_N = mkN "alder" "alders" ;
-lin elder_N = mkN "elder" "elders" ;
-lin fielder_N = mkN "fielder" "fielders" ; -- compound elder_N ;
-lin infielder_N = mkN "infielder" "infielders" ; -- compound elder_N ;
-lin outfielder_N = mkN "outfielder" "outfielders" ; -- compound elder_N ;
-lin welder_N = mkN "welder" "welders" ; -- notcompound elder_N ;
-lin gilder_N = mkN "gilder" "gilders" ;
-lin builder_N = mkN "builder" "builders" ;
-lin 'coach-builder_N' = mkN "coach-builder" "coach-builders" ; -- compound builder_N ;
-lin 'jerry-builder_N' = mkN "jerry-builder" "jerry-builders" ; -- compound builder_N ;
-lin homebuilder_N = mkN "homebuilder" "homebuilders" ; -- compound builder_N ;
-lin coachbuilder_N = mkN "coachbuilder" "coachbuilders" ; -- compound builder_N ;
-lin shipbuilder_N = mkN "shipbuilder" "shipbuilders" ; -- compound builder_N ;
-lin boatbuilder_N = mkN "boatbuilder" "boatbuilders" ; -- compound builder_N ;
-lin bodybuilder_N = mkN "bodybuilder" "bodybuilders" ; -- compound builder_N ;
-lin guilder_N = mkN "guilder" "guilders" ;
-lin folder_N = mkN "folder" "folders" ;
-lin holder_N = mkN "holder" "holders" ;
-lin 'bond-holder_N' = mkN "bond-holder" "bond-holders" ; -- compound holder_N ;
-lin 'office-holder_N' = mkN "office-holder" "office-holders" ; -- compound holder_N ;
-lin 'stake-holder_N' = mkN "stake-holder" "stake-holders" ; -- compound holder_N ;
-lin 'cigarette-holder_N' = mkN "cigarette-holder" "cigarette-holders" ; -- compound holder_N ;
-lin 'gas-holder_N' = mkN "gas-holder" "gas-holders" ; -- compound holder_N ;
-lin jobholder_N = mkN "jobholder" "jobholders" ; -- compound holder_N ;
-lin landholder_N = mkN "landholder" "landholders" ; -- compound holder_N ;
-lin bondholder_N = mkN "bondholder" "bondholders" ; -- compound holder_N ;
-lin cardholder_N = mkN "cardholder" "cardholders" ; -- compound holder_N ;
-lin beholder_N = mkN "beholder" "beholders" ; -- compound holder_N ;
-lin placeholder_N = mkN "placeholder" "placeholders" ; -- compound holder_N ;
-lin officeholder_N = mkN "officeholder" "officeholders" ; -- compound holder_N ;
-lin freeholder_N = mkN "freeholder" "freeholders" ; -- compound holder_N ;
-lin stakeholder_N = mkN "stakeholder" "stakeholders" ; -- compound holder_N ;
-lin shareholder_N = mkN "shareholder" "shareholders" ; -- compound holder_N ;
-lin leaseholder_N = mkN "leaseholder" "leaseholders" ; -- compound holder_N ;
-lin householder_N = mkN "householder" "householders" ; -- compound holder_N ;
-lin slaveholder_N = mkN "slaveholder" "slaveholders" ; -- compound holder_N ;
-lin withholder_N = mkN "withholder" "withholders" ; -- compound holder_N ;
-lin stockholder_N = mkN "stockholder" "stockholders" ; -- compound holder_N ;
-lin smallholder_N = mkN "smallholder" "smallholders" ; -- compound holder_N ;
-lin upholder_N = mkN "upholder" "upholders" ; -- compound holder_N ;
-lin potholder_N = mkN "potholder" "potholders" ; -- compound holder_N ;
-lin policyholder_N = mkN "policyholder" "policyholders" ; -- compound holder_N ;
-lin copyholder_N = mkN "copyholder" "copyholders" ; -- compound holder_N ;
-lin polder_N = mkN "polder" "polders" ;
-lin solder_N = mkN "solder" "solders" ;
-lin 'soft-solder_N' = mkN "soft-solder" "soft-solders" ; -- compound solder_N ;
-lin boulder_N = mkN "boulder" "boulders" ;
-lin shoulder_N = mkN "shoulder" "shoulders" ;
-lin smoulder_N = mkN "smoulder" "smoulders" ;
-lin oleander_N = mkN "oleander" "oleanders" ;
-lin meander_N = mkN "meander" "meanders" ;
-lin gander_N = mkN "gander" "ganders" ;
-lin 'right-hander_N' = mkN "right-hander" "right-handers" ;
-lin backhander_N = mkN "backhander" "backhanders" ;
-lin coriander_N = mkN "coriander" "corianders" ;
-lin lander_N = mkN "lander" "landers" ;
-lin zealander_N = mkN "zealander" "zealanders" ; -- compound lander_N ;
-lin icelander_N = mkN "icelander" "icelanders" ; -- compound lander_N ;
-lin highlander_N = mkN "highlander" "highlanders" ; -- compound lander_N ;
-lin hollander_N = mkN "hollander" "hollanders" ; -- compound lander_N ;
-lin colander_N = mkN "colander" "colanders" ; -- compound lander_N ;
-lin netherlander_N = mkN "netherlander" "netherlanders" ; -- compound lander_N ;
-lin slander_N = mkN "slander" "slanders" ; -- notcompound lander_N ;
-lin islander_N = mkN "islander" "islanders" ; -- compound lander_N ;
-lin lowlander_N = mkN "lowlander" "lowlanders" ; -- compound lander_N ;
-lin salamander_N = mkN "salamander" "salamanders" ;
-lin demander_N = mkN "demander" "demanders" ;
-lin commander_N = mkN "commander" "commanders" ;
-lin 'wing-commander_N' = mkN "wing-commander" "wing-commanders" ; -- compound commander_N ;
-lin germander_N = mkN "germander" "germanders" ;
-lin gerrymander_N = mkN "gerrymander" "gerrymanders" ;
-lin pander_N = mkN "pander" "panders" ;
-lin goosander_N = mkN "goosander" "goosanders" ;
-lin stander_N = mkN "stander" "standers" ;
-lin grandstander_N = mkN "grandstander" "grandstanders" ; -- compound stander_N ;
-lin withstander_N = mkN "withstander" "withstanders" ; -- compound stander_N ;
-lin bystander_N = mkN "bystander" "bystanders" ; -- compound stander_N ;
-lin bender_N = mkN "bender" "benders" ;
-lin hellbender_N = mkN "hellbender" "hellbenders" ; -- compound bender_N ;
-lin ascender_N = mkN "ascender" "ascenders" ;
-lin descender_N = mkN "descender" "descenders" ;
-lin fender_N = mkN "fender" "fenders" ;
-lin defender_N = mkN "defender" "defenders" ; -- compound fender_N ;
-lin offender_N = mkN "offender" "offenders" ; -- compound fender_N ;
-lin gender_N = mkN "gender" "genders" ;
-lin apprehender_N = mkN "apprehender" "apprehenders" ;
-lin weekender_N = mkN "weekender" "weekenders" ;
-lin lender_N = mkN "lender" "lenders" ;
-lin calender_N = mkN "calender" "calenders" ; -- compound lender_N ;
-lin blender_N = mkN "blender" "blenders" ; -- notcompound lender_N ;
-lin cullender_N = mkN "cullender" "cullenders" ; -- compound lender_N ;
-lin moneylender_N = mkN "moneylender" "moneylenders" ; -- compound lender_N ;
-lin mender_N = mkN "mender" "menders" ;
-lin roadmender_N = mkN "roadmender" "roadmenders" ; -- compound mender_N ;
-lin spender_N = mkN "spender" "spenders" ;
-lin suspender_N = mkN "suspender" "suspenders" ; -- compound spender_N ;
-lin render_N = mkN "render" "renders" ;
-lin surrender_N = mkN "surrender" "surrenders" ; -- compound render_N ;
-lin sender_N = mkN "sender" "senders" ;
-lin tender_N = mkN "tender" "tenders" ;
-lin pretender_N = mkN "pretender" "pretenders" ; -- compound tender_N ;
-lin contender_N = mkN "contender" "contenders" ; -- compound tender_N ;
-lin bartender_N = mkN "bartender" "bartenders" ; -- compound tender_N ;
-lin vender_N = mkN "vender" "venders" ;
-lin lavender_N = mkN "lavender" "lavenders" ; -- compound vender_N ;
-lin provender_N = mkN "provender" "provenders" ; -- compound vender_N ;
-lin remainder_N = mkN "remainder" "remainders" ;
-lin attainder_N = mkN "attainder" "attainders" ;
-lin binder_N = mkN "binder" "binders" ;
-lin highbinder_N = mkN "highbinder" "highbinders" ; -- compound binder_N ;
-lin bookbinder_N = mkN "bookbinder" "bookbinders" ; -- compound binder_N ;
-lin spellbinder_N = mkN "spellbinder" "spellbinders" ; -- compound binder_N ;
-lin cinder_N = mkN "cinder" "cinders" ;
-lin finder_N = mkN "finder" "finders" ;
-lin 'path-finder_N' = mkN "path-finder" "path-finders" ; -- compound finder_N ;
-lin 'direction-finder_N' = mkN "direction-finder" "direction-finders" ; -- compound finder_N ;
-lin 'water-finder_N' = mkN "water-finder" "water-finders" ; -- compound finder_N ;
-lin 'fault-finder_N' = mkN "fault-finder" "fault-finders" ; -- compound finder_N ;
-lin rangefinder_N = mkN "rangefinder" "rangefinders" ; -- compound finder_N ;
-lin viewfinder_N = mkN "viewfinder" "viewfinders" ; -- compound finder_N ;
-lin cylinder_N = mkN "cylinder" "cylinders" ;
-lin minder_N = mkN "minder" "minders" ;
-lin 'baby-minder_N' = mkN "baby-minder" "baby-minders" ; -- compound minder_N ;
-lin reminder_N = mkN "reminder" "reminders" ; -- compound minder_N ;
-lin babyminder_N = mkN "babyminder" "babyminders" ; -- compound minder_N ;
-lin rejoinder_N = mkN "rejoinder" "rejoinders" ;
-lin surrejoinder_N = mkN "surrejoinder" "surrejoinders" ; -- compound rejoinder_N ;
-lin grinder_N = mkN "grinder" "grinders" ;
-lin 'organ-grinder_N' = mkN "organ-grinder" "organ-grinders" ; -- compound grinder_N ;
-lin tinder_N = mkN "tinder" "tinders" ;
-lin winder_N = mkN "winder" "winders" ;
-lin sidewinder_N = mkN "sidewinder" "sidewinders" ; -- compound winder_N ;
-lin seconder_N = mkN "seconder" "seconders" ;
-lin absconder_N = mkN "absconder" "absconders" ;
-lin transponder_N = mkN "transponder" "transponders" ;
-lin wonder_N = mkN "wonder" "wonders" ;
-lin thunder_N = mkN "thunder" "thunders" ;
-lin blunder_N = mkN "blunder" "blunders" ;
-lin plunder_N = mkN "plunder" "plunders" ;
-lin bounder_N = mkN "bounder" "bounders" ;
-lin founder_N = mkN "founder" "founders" ;
-lin 'bell-founder_N' = mkN "bell-founder" "bell-founders" ; -- compound founder_N ;
-lin cofounder_N = mkN "cofounder" "cofounders" ; -- compound founder_N ;
-lin flounder_N = mkN "flounder" "flounders" ;
-lin pounder_N = mkN "pounder" "pounders" ;
-lin 'four-pounder_N' = mkN "four-pounder" "four-pounders" ; -- compound pounder_N ;
-lin rounder_N = mkN "rounder" "rounders" ;
-lin 'all-rounder_N' = mkN "all-rounder" "all-rounders" ; -- compound rounder_N ;
-lin grounder_N = mkN "grounder" "grounders" ; -- notcompound rounder_N ;
-lin backgrounder_N = mkN "backgrounder" "backgrounders" ; -- compound rounder_N ;
-lin sounder_N = mkN "sounder" "sounders" ;
-lin 'echo-sounder_N' = mkN "echo-sounder" "echo-sounders" ; -- compound sounder_N ;
-lin sunder_N = mkN "sunder" "sunders" ;
-lin decoder_N = mkN "decoder" "decoders" ;
-lin 'do-gooder_N' = mkN "do-gooder" "do-gooders" ;
-lin larder_N = mkN "larder" "larders" ;
-lin boarder_N = mkN "boarder" "boarders" ;
-lin 'day-boarder_N' = mkN "day-boarder" "day-boarders" ; -- compound boarder_N ;
-lin skateboarder_N = mkN "skateboarder" "skateboarders" ; -- compound boarder_N ;
-lin snowboarder_N = mkN "snowboarder" "snowboarders" ; -- compound boarder_N ;
-lin hoarder_N = mkN "hoarder" "hoarders" ;
-lin warder_N = mkN "warder" "warders" ;
-lin yarder_N = mkN "yarder" "yarders" ;
-lin herder_N = mkN "herder" "herders" ;
-lin sheepherder_N = mkN "sheepherder" "sheepherders" ; -- compound herder_N ;
-lin girder_N = mkN "girder" "girders" ;
-lin order_N = mkN "order" "orders" ;
-lin 'banning-order_N' = mkN "banning-order" "banning-orders" ; -- compound order_N ;
-lin 'money-order_N' = mkN "money-order" "money-orders" ; -- compound order_N ;
-lin border_N = mkN "border" "borders" ; -- notcompound order_N ;
-lin suborder_N = mkN "suborder" "suborders" ; -- compound order_N ;
-lin recorder_N = mkN "recorder" "recorders" ; -- compound order_N ;
-lin 'tape-recorder_N' = mkN "tape-recorder" "tape-recorders" ; -- compound order_N ;
-lin camcorder_N = mkN "camcorder" "camcorders" ; -- compound order_N ;
-lin reorder_N = mkN "reorder" "reorders" ; -- compound order_N ;
-lin superorder_N = mkN "superorder" "superorders" ; -- compound order_N ;
-lin disorder_N = mkN "disorder" "disorders" ; -- compound order_N ;
-lin murder_N = mkN "murder" "murders" ;
-lin marauder_N = mkN "marauder" "marauders" ;
-lin intruder_N = mkN "intruder" "intruders" ;
-lin chowder_N = mkN "chowder" "chowders" ;
-lin clowder_N = mkN "clowder" "clowders" ;
-lin powder_N = mkN "powder" "powders" ;
-lin 'face-powder_N' = mkN "face-powder" "face-powders" ; -- compound powder_N ;
-lin 'plate-powder_N' = mkN "plate-powder" "plate-powders" ; -- compound powder_N ;
-lin 'bleaching-powder_N' = mkN "bleaching-powder" "bleaching-powders" ; -- compound powder_N ;
-lin 'baking-powder_N' = mkN "baking-powder" "baking-powders" ; -- compound powder_N ;
-lin 'milk-powder_N' = mkN "milk-powder" "milk-powders" ; -- compound powder_N ;
-lin 'insect-powder_N' = mkN "insect-powder" "insect-powders" ; -- compound powder_N ;
-lin 'toilet-powder_N' = mkN "toilet-powder" "toilet-powders" ; -- compound powder_N ;
-lin 'curry-powder_N' = mkN "curry-powder" "curry-powders" ; -- compound powder_N ;
-lin toothpowder_N = mkN "toothpowder" "toothpowders" ; -- compound powder_N ;
-lin gunpowder_N = mkN "gunpowder" "gunpowders" ; -- compound powder_N ;
-lin cyder_N = mkN "cyder" "cyders" ;
-lin beer_N = mkN "beer" "beers" ;
-lin killdeer_N = mkN "killdeer" "killdeers" ;
-lin cheer_N = mkN "cheer" "cheers" ;
-lin jeer_N = mkN "jeer" "jeers" ;
-lin leer_N = mkN "leer" "leers" ;
-lin fleer_N = mkN "fleer" "fleers" ; -- notcompound leer_N ;
-lin bandoleer_N = mkN "bandoleer" "bandoleers" ; -- compound leer_N ;
-lin pistoleer_N = mkN "pistoleer" "pistoleers" ; -- compound leer_N ;
-lin ameer_N = mkN "ameer" "ameers" ;
-lin emeer_N = mkN "emeer" "emeers" ;
-lin schmeer_N = mkN "schmeer" "schmeers" ;
-lin buccaneer_N = mkN "buccaneer" "buccaneers" ;
-lin sloganeer_N = mkN "sloganeer" "sloganeers" ;
-lin veneer_N = mkN "veneer" "veneers" ;
-lin mountaineer_N = mkN "mountaineer" "mountaineers" ;
-lin carbineer_N = mkN "carbineer" "carbineers" ;
-lin engineer_N = mkN "engineer" "engineers" ;
-lin mutineer_N = mkN "mutineer" "mutineers" ;
-lin scrutineer_N = mkN "scrutineer" "scrutineers" ;
-lin pioneer_N = mkN "pioneer" "pioneers" ;
-lin auctioneer_N = mkN "auctioneer" "auctioneers" ;
-lin conventioneer_N = mkN "conventioneer" "conventioneers" ;
-lin sneer_N = mkN "sneer" "sneers" ;
-lin peer_N = mkN "peer" "peers" ;
-lin compeer_N = mkN "compeer" "compeers" ; -- compound peer_N ;
-lin career_N = mkN "career" "careers" ;
-lin seer_N = mkN "seer" "seers" ;
-lin overseer_N = mkN "overseer" "overseers" ; -- compound seer_N ;
-lin sightseer_N = mkN "sightseer" "sightseers" ; -- compound seer_N ;
-lin privateer_N = mkN "privateer" "privateers" ;
-lin gadgeteer_N = mkN "gadgeteer" "gadgeteers" ;
-lin racketeer_N = mkN "racketeer" "racketeers" ;
-lin musketeer_N = mkN "musketeer" "musketeers" ;
-lin pamphleteer_N = mkN "pamphleteer" "pamphleteers" ;
-lin muleteer_N = mkN "muleteer" "muleteers" ;
-lin sonneteer_N = mkN "sonneteer" "sonneteers" ;
-lin puppeteer_N = mkN "puppeteer" "puppeteers" ;
-lin profiteer_N = mkN "profiteer" "profiteers" ;
-lin volunteer_N = mkN "volunteer" "volunteers" ;
-lin charioteer_N = mkN "charioteer" "charioteers" ;
-lin steer_N = mkN "steer" "steers" ;
-lin gazetteer_N = mkN "gazetteer" "gazetteers" ;
-lin queer_N = mkN "queer" "queers" ;
-lin cockchafer_N = mkN "cockchafer" "cockchafers" ;
-lin loafer_N = mkN "loafer" "loafers" ;
-lin strafer_N = mkN "strafer" "strafers" ;
-lin wafer_N = mkN "wafer" "wafers" ;
-lin reefer_N = mkN "reefer" "reefers" ;
-lin gaffer_N = mkN "gaffer" "gaffers" ;
-lin quaffer_N = mkN "quaffer" "quaffers" ;
-lin whiffer_N = mkN "whiffer" "whiffers" ;
-lin sniffer_N = mkN "sniffer" "sniffers" ;
-lin offer_N = mkN "offer" "offers" ;
-lin coffer_N = mkN "coffer" "coffers" ; -- notcompound offer_N ;
-lin scoffer_N = mkN "scoffer" "scoffers" ; -- notcompound offer_N ;
-lin goffer_N = mkN "goffer" "goffers" ; -- notcompound offer_N ;
-lin counteroffer_N = mkN "counteroffer" "counteroffers" ; -- compound offer_N ;
-lin proffer_N = mkN "proffer" "proffers" ; -- notcompound offer_N ;
-lin buffer_N = mkN "buffer" "buffers" ;
-lin scuffer_N = mkN "scuffer" "scuffers" ;
-lin duffer_N = mkN "duffer" "duffers" ;
-lin bluffer_N = mkN "bluffer" "bluffers" ;
-lin snuffer_N = mkN "snuffer" "snuffers" ;
-lin candlesnuffer_N = mkN "candlesnuffer" "candlesnuffers" ; -- compound snuffer_N ;
-lin puffer_N = mkN "puffer" "puffers" ;
-lin stuffer_N = mkN "stuffer" "stuffers" ;
-lin laticifer_N = mkN "laticifer" "laticifers" ;
-lin lucifer_N = mkN "lucifer" "lucifers" ;
-lin crucifer_N = mkN "crucifer" "crucifers" ;
-lin heifer_N = mkN "heifer" "heifers" ;
-lin lifer_N = mkN "lifer" "lifers" ;
-lin umbellifer_N = mkN "umbellifer" "umbellifers" ; -- compound lifer_N ;
-lin conifer_N = mkN "conifer" "conifers" ;
-lin thurifer_N = mkN "thurifer" "thurifers" ;
-lin rotifer_N = mkN "rotifer" "rotifers" ;
-lin aquifer_N = mkN "aquifer" "aquifers" ;
-lin telfer_N = mkN "telfer" "telfers" ;
-lin golfer_N = mkN "golfer" "golfers" ;
-lin gofer_N = mkN "gofer" "gofers" ;
-lin hoofer_N = mkN "hoofer" "hoofers" ;
-lin roofer_N = mkN "roofer" "roofers" ;
-lin woofer_N = mkN "woofer" "woofers" ;
-lin subwoofer_N = mkN "subwoofer" "subwoofers" ; -- compound woofer_N ;
-lin twofer_N = mkN "twofer" "twofers" ;
-lin surfer_N = mkN "surfer" "surfers" ;
-lin transfer_N = mkN "transfer" "transfers" ;
-lin titfer_N = mkN "titfer" "titfers" ;
-lin langlaufer_N = mkN "langlaufer" "langlaufers" ;
-lin laager_N = mkN "laager" "laagers" ;
-lin lager_N = mkN "lager" "lagers" ;
-lin pillager_N = mkN "pillager" "pillagers" ; -- compound lager_N ;
-lin villager_N = mkN "villager" "villagers" ; -- compound lager_N ;
-lin manager_N = mkN "manager" "managers" ;
-lin tanager_N = mkN "tanager" "tanagers" ;
-lin teenager_N = mkN "teenager" "teenagers" ;
-lin onager_N = mkN "onager" "onagers" ;
-lin forager_N = mkN "forager" "foragers" ;
-lin arbitrager_N = mkN "arbitrager" "arbitragers" ;
-lin massager_N = mkN "massager" "massagers" ;
-lin vintager_N = mkN "vintager" "vintagers" ;
-lin stager_N = mkN "stager" "stagers" ;
-lin upstager_N = mkN "upstager" "upstagers" ; -- compound stager_N ;
-lin cottager_N = mkN "cottager" "cottagers" ;
-lin salvager_N = mkN "salvager" "salvagers" ;
-lin wager_N = mkN "wager" "wagers" ;
-lin dowager_N = mkN "dowager" "dowagers" ; -- compound wager_N ;
-lin voyager_N = mkN "voyager" "voyagers" ;
-lin badger_N = mkN "badger" "badgers" ;
-lin cadger_N = mkN "cadger" "cadgers" ;
-lin edger_N = mkN "edger" "edgers" ;
-lin hedger_N = mkN "hedger" "hedgers" ; -- notcompound edger_N ;
-lin ledger_N = mkN "ledger" "ledgers" ; -- notcompound edger_N ;
-lin pledger_N = mkN "pledger" "pledgers" ; -- notcompound edger_N ;
-lin dredger_N = mkN "dredger" "dredgers" ; -- notcompound edger_N ;
-lin abridger_N = mkN "abridger" "abridgers" ;
-lin codger_N = mkN "codger" "codgers" ;
-lin dodger_N = mkN "dodger" "dodgers" ;
-lin lodger_N = mkN "lodger" "lodgers" ;
-lin nudger_N = mkN "nudger" "nudgers" ;
-lin trudger_N = mkN "trudger" "trudgers" ;
-lin jaeger_N = mkN "jaeger" "jaegers" ;
-lin besieger_N = mkN "besieger" "besiegers" ;
-lin integer_N = mkN "integer" "integers" ;
-lin bagger_N = mkN "bagger" "baggers" ;
-lin sandbagger_N = mkN "sandbagger" "sandbaggers" ; -- compound bagger_N ;
-lin carpetbagger_N = mkN "carpetbagger" "carpetbaggers" ; -- compound bagger_N ;
-lin dagger_N = mkN "dagger" "daggers" ;
-lin nagger_N = mkN "nagger" "naggers" ;
-lin bragger_N = mkN "bragger" "braggers" ;
-lin tagger_N = mkN "tagger" "taggers" ;
-lin stagger_N = mkN "stagger" "staggers" ; -- notcompound tagger_N ;
-lin swagger_N = mkN "swagger" "swaggers" ;
-lin bootlegger_N = mkN "bootlegger" "bootleggers" ;
-lin digger_N = mkN "digger" "diggers" ;
-lin 'gold-digger_N' = mkN "gold-digger" "gold-diggers" ; -- compound digger_N ;
-lin gravedigger_N = mkN "gravedigger" "gravediggers" ; -- compound digger_N ;
-lin jigger_N = mkN "jigger" "jiggers" ;
-lin nigger_N = mkN "nigger" "niggers" ;
-lin snigger_N = mkN "snigger" "sniggers" ; -- notcompound nigger_N ;
-lin rigger_N = mkN "rigger" "riggers" ;
-lin trigger_N = mkN "trigger" "triggers" ; -- notcompound rigger_N ;
-lin 'hair-trigger_N' = mkN "hair-trigger" "hair-triggers" ; -- compound rigger_N ;
-lin outrigger_N = mkN "outrigger" "outriggers" ; -- compound rigger_N ;
-lin jogger_N = mkN "jogger" "joggers" ;
-lin blogger_N = mkN "blogger" "bloggers" ;
-lin flogger_N = mkN "flogger" "floggers" ;
-lin slogger_N = mkN "slogger" "sloggers" ;
-lin footslogger_N = mkN "footslogger" "footsloggers" ; -- compound slogger_N ;
-lin bugger_N = mkN "bugger" "buggers" ;
-lin debugger_N = mkN "debugger" "debuggers" ; -- compound bugger_N ;
-lin hugger_N = mkN "hugger" "huggers" ;
-lin lugger_N = mkN "lugger" "luggers" ;
-lin slugger_N = mkN "slugger" "sluggers" ; -- notcompound lugger_N ;
-lin mugger_N = mkN "mugger" "muggers" ;
-lin rugger_N = mkN "rugger" "ruggers" ;
-lin geiger_N = mkN "geiger" "geigers" ;
-lin liger_N = mkN "liger" "ligers" ;
-lin obliger_N = mkN "obliger" "obligers" ; -- compound liger_N ;
-lin armiger_N = mkN "armiger" "armigers" ;
-lin tiger_N = mkN "tiger" "tigers" ;
-lin anger_N = mkN "anger" "angers" ;
-lin banger_N = mkN "banger" "bangers" ; -- notcompound anger_N ;
-lin danger_N = mkN "danger" "dangers" ; -- notcompound anger_N ;
-lin ganger_N = mkN "ganger" "gangers" ; -- notcompound anger_N ;
-lin doppelganger_N = mkN "doppelganger" "doppelgangers" ; -- compound anger_N ;
-lin hanger_N = mkN "hanger" "hangers" ; -- notcompound anger_N ;
-lin 'cliff-hanger_N' = mkN "cliff-hanger" "cliff-hangers" ; -- compound anger_N ;
-lin 'clothes-hanger_N' = mkN "clothes-hanger" "clothes-hangers" ; -- compound anger_N ;
-lin 'dress-hanger_N' = mkN "dress-hanger" "dress-hangers" ; -- compound anger_N ;
-lin 'coat-hanger_N' = mkN "coat-hanger" "coat-hangers" ; -- compound anger_N ;
-lin changer_N = mkN "changer" "changers" ; -- notcompound anger_N ;
-lin 'auto-changer_N' = mkN "auto-changer" "auto-changers" ; -- compound anger_N ;
-lin exchanger_N = mkN "exchanger" "exchangers" ; -- compound anger_N ;
-lin moneychanger_N = mkN "moneychanger" "moneychangers" ; -- compound anger_N ;
-lin cliffhanger_N = mkN "cliffhanger" "cliffhangers" ; -- compound anger_N ;
-lin straphanger_N = mkN "straphanger" "straphangers" ; -- compound anger_N ;
-lin paperhanger_N = mkN "paperhanger" "paperhangers" ; -- compound anger_N ;
-lin phalanger_N = mkN "phalanger" "phalangers" ; -- compound anger_N ;
-lin clanger_N = mkN "clanger" "clangers" ; -- notcompound anger_N ;
-lin manger_N = mkN "manger" "mangers" ; -- notcompound anger_N ;
-lin ranger_N = mkN "ranger" "rangers" ; -- notcompound anger_N ;
-lin arranger_N = mkN "arranger" "arrangers" ; -- compound anger_N ;
-lin stranger_N = mkN "stranger" "strangers" ; -- notcompound anger_N ;
-lin challenger_N = mkN "challenger" "challengers" ;
-lin passenger_N = mkN "passenger" "passengers" ;
-lin messenger_N = mkN "messenger" "messengers" ;
-lin avenger_N = mkN "avenger" "avengers" ;
-lin scavenger_N = mkN "scavenger" "scavengers" ; -- notcompound avenger_N ;
-lin harbinger_N = mkN "harbinger" "harbingers" ;
-lin humdinger_N = mkN "humdinger" "humdingers" ;
-lin finger_N = mkN "finger" "fingers" ;
-lin 'ring-finger_N' = mkN "ring-finger" "ring-fingers" ; -- compound finger_N ;
-lin forefinger_N = mkN "forefinger" "forefingers" ; -- compound finger_N ;
-lin ladyfinger_N = mkN "ladyfinger" "ladyfingers" ; -- compound finger_N ;
-lin ginger_N = mkN "ginger" "gingers" ;
-lin slinger_N = mkN "slinger" "slingers" ;
-lin mudslinger_N = mkN "mudslinger" "mudslingers" ; -- compound slinger_N ;
-lin pinger_N = mkN "pinger" "pingers" ;
-lin ringer_N = mkN "ringer" "ringers" ;
-lin 'bell-ringer_N' = mkN "bell-ringer" "bell-ringers" ; -- compound ringer_N ;
-lin springer_N = mkN "springer" "springers" ; -- notcompound ringer_N ;
-lin derringer_N = mkN "derringer" "derringers" ; -- compound ringer_N ;
-lin porringer_N = mkN "porringer" "porringers" ; -- compound ringer_N ;
-lin stringer_N = mkN "stringer" "stringers" ; -- notcompound ringer_N ;
-lin wringer_N = mkN "wringer" "wringers" ; -- notcompound ringer_N ;
-lin singer_N = mkN "singer" "singers" ;
-lin 'torch-singer_N' = mkN "torch-singer" "torch-singers" ; -- compound singer_N ;
-lin 'lieder-singer_N' = mkN "lieder-singer" "lieder-singers" ; -- compound singer_N ;
-lin stinger_N = mkN "stinger" "stingers" ;
-lin winger_N = mkN "winger" "wingers" ;
-lin 'left-winger_N' = mkN "left-winger" "left-wingers" ; -- compound winger_N ;
-lin 'right-winger_N' = mkN "right-winger" "right-wingers" ; -- compound winger_N ;
-lin swinger_N = mkN "swinger" "swingers" ; -- notcompound winger_N ;
-lin zinger_N = mkN "zinger" "zingers" ;
-lin conger_N = mkN "conger" "congers" ;
-lin longer_N = mkN "longer" "longers" ;
-lin monger_N = mkN "monger" "mongers" ;
-lin 'rumour-monger_N' = mkN "rumour-monger" "rumour-mongers" ; -- compound monger_N ;
-lin wordmonger_N = mkN "wordmonger" "wordmongers" ; -- compound monger_N ;
-lin scaremonger_N = mkN "scaremonger" "scaremongers" ; -- compound monger_N ;
-lin whoremonger_N = mkN "whoremonger" "whoremongers" ; -- compound monger_N ;
-lin cheesemonger_N = mkN "cheesemonger" "cheesemongers" ; -- compound monger_N ;
-lin hatemonger_N = mkN "hatemonger" "hatemongers" ; -- compound monger_N ;
-lin fishmonger_N = mkN "fishmonger" "fishmongers" ; -- compound monger_N ;
-lin scandalmonger_N = mkN "scandalmonger" "scandalmongers" ; -- compound monger_N ;
-lin ironmonger_N = mkN "ironmonger" "ironmongers" ; -- compound monger_N ;
-lin warmonger_N = mkN "warmonger" "warmongers" ; -- compound monger_N ;
-lin costermonger_N = mkN "costermonger" "costermongers" ; -- compound monger_N ;
-lin newsmonger_N = mkN "newsmonger" "newsmongers" ; -- compound monger_N ;
-lin sponger_N = mkN "sponger" "spongers" ;
-lin hunger_N = mkN "hunger" "hungers" ;
-lin lunger_N = mkN "lunger" "lungers" ;
-lin plunger_N = mkN "plunger" "plungers" ; -- notcompound lunger_N ;
-lin lounger_N = mkN "lounger" "loungers" ;
-lin scrounger_N = mkN "scrounger" "scroungers" ;
-lin cataloger_N = mkN "cataloger" "catalogers" ;
-lin astrologer_N = mkN "astrologer" "astrologers" ;
-lin booger_N = mkN "booger" "boogers" ;
-lin charger_N = mkN "charger" "chargers" ;
-lin supercharger_N = mkN "supercharger" "superchargers" ; -- compound charger_N ;
-lin enlarger_N = mkN "enlarger" "enlargers" ;
-lin merger_N = mkN "merger" "mergers" ;
-lin serger_N = mkN "serger" "sergers" ;
-lin verger_N = mkN "verger" "vergers" ;
-lin forger_N = mkN "forger" "forgers" ;
-lin burger_N = mkN "burger" "burgers" ;
-lin tunaburger_N = mkN "tunaburger" "tunaburgers" ; -- compound burger_N ;
-lin cheeseburger_N = mkN "cheeseburger" "cheeseburgers" ; -- compound burger_N ;
-lin hamburger_N = mkN "hamburger" "hamburgers" ; -- compound burger_N ;
-lin luxemburger_N = mkN "luxemburger" "luxemburgers" ; -- compound burger_N ;
-lin auger_N = mkN "auger" "augers" ;
-lin luger_N = mkN "luger" "lugers" ;
-lin gouger_N = mkN "gouger" "gougers" ;
-lin bleacher_N = mkN "bleacher" "bleachers" ;
-lin preacher_N = mkN "preacher" "preachers" ;
-lin teacher_N = mkN "teacher" "teachers" ;
-lin schoolteacher_N = mkN "schoolteacher" "schoolteachers" ; -- compound teacher_N ;
-lin stomacher_N = mkN "stomacher" "stomachers" ;
-lin poacher_N = mkN "poacher" "poachers" ;
-lin lecher_N = mkN "lecher" "lechers" ;
-lin welcher_N = mkN "welcher" "welchers" ;
-lin rancher_N = mkN "rancher" "ranchers" ;
-lin 'cross-bencher_N' = mkN "cross-bencher" "cross-benchers" ;
-lin 'front-bencher_N' = mkN "front-bencher" "front-benchers" ;
-lin backbencher_N = mkN "backbencher" "backbenchers" ;
-lin crossbencher_N = mkN "crossbencher" "crossbenchers" ;
-lin frontbencher_N = mkN "frontbencher" "frontbenchers" ;
-lin trencher_N = mkN "trencher" "trenchers" ;
-lin wencher_N = mkN "wencher" "wenchers" ;
-lin clincher_N = mkN "clincher" "clinchers" ;
-lin launcher_N = mkN "launcher" "launchers" ;
-lin luncher_N = mkN "luncher" "lunchers" ;
-lin muncher_N = mkN "muncher" "munchers" ;
-lin puncher_N = mkN "puncher" "punchers" ;
-lin ocher_N = mkN "ocher" "ochers" ;
-lin moocher_N = mkN "moocher" "moochers" ; -- compound ocher_N ;
-lin archer_N = mkN "archer" "archers" ;
-lin searcher_N = mkN "searcher" "searchers" ; -- compound archer_N ;
-lin researcher_N = mkN "researcher" "researchers" ; -- compound archer_N ;
-lin marcher_N = mkN "marcher" "marchers" ; -- notcompound archer_N ;
-lin 'hunger-marcher_N' = mkN "hunger-marcher" "hunger-marchers" ; -- compound archer_N ;
-lin percher_N = mkN "percher" "perchers" ;
-lin scorcher_N = mkN "scorcher" "scorchers" ;
-lin lurcher_N = mkN "lurcher" "lurchers" ;
-lin pinscher_N = mkN "pinscher" "pinschers" ;
-lin affenpinscher_N = mkN "affenpinscher" "affenpinschers" ; -- compound pinscher_N ;
-lin catcher_N = mkN "catcher" "catchers" ;
-lin 'oyster-catcher_N' = mkN "oyster-catcher" "oyster-catchers" ; -- compound catcher_N ;
-lin oystercatcher_N = mkN "oystercatcher" "oystercatchers" ; -- compound catcher_N ;
-lin gnatcatcher_N = mkN "gnatcatcher" "gnatcatchers" ; -- compound catcher_N ;
-lin cowcatcher_N = mkN "cowcatcher" "cowcatchers" ; -- compound catcher_N ;
-lin flycatcher_N = mkN "flycatcher" "flycatchers" ; -- compound catcher_N ;
-lin thatcher_N = mkN "thatcher" "thatchers" ;
-lin snatcher_N = mkN "snatcher" "snatchers" ;
-lin 'body-snatcher_N' = mkN "body-snatcher" "body-snatchers" ; -- compound snatcher_N ;
-lin dispatcher_N = mkN "dispatcher" "dispatchers" ;
-lin scratcher_N = mkN "scratcher" "scratchers" ;
-lin backscratcher_N = mkN "backscratcher" "backscratchers" ; -- compound scratcher_N ;
-lin watcher_N = mkN "watcher" "watchers" ;
-lin 'fire-watcher_N' = mkN "fire-watcher" "fire-watchers" ; -- compound watcher_N ;
-lin birdwatcher_N = mkN "birdwatcher" "birdwatchers" ; -- compound watcher_N ;
-lin portwatcher_N = mkN "portwatcher" "portwatchers" ; -- compound watcher_N ;
-lin etcher_N = mkN "etcher" "etchers" ;
-lin sketcher_N = mkN "sketcher" "sketchers" ; -- notcompound etcher_N ;
-lin stretcher_N = mkN "stretcher" "stretchers" ; -- notcompound etcher_N ;
-lin pitcher_N = mkN "pitcher" "pitchers" ;
-lin stitcher_N = mkN "stitcher" "stitchers" ;
-lin dowitcher_N = mkN "dowitcher" "dowitchers" ;
-lin switcher_N = mkN "switcher" "switchers" ;
-lin botcher_N = mkN "botcher" "botchers" ;
-lin butcher_N = mkN "butcher" "butchers" ;
-lin 'pork-butcher_N' = mkN "pork-butcher" "pork-butchers" ; -- compound butcher_N ;
-lin blucher_N = mkN "blucher" "bluchers" ;
-lin sloucher_N = mkN "sloucher" "slouchers" ;
-lin toucher_N = mkN "toucher" "touchers" ;
-lin voucher_N = mkN "voucher" "vouchers" ;
-lin weigher_N = mkN "weigher" "weighers" ;
-lin burgher_N = mkN "burgher" "burghers" ;
-lin laugher_N = mkN "laugher" "laughers" ;
-lin paragrapher_N = mkN "paragrapher" "paragraphers" ;
-lin telegrapher_N = mkN "telegrapher" "telegraphers" ;
-lin calligrapher_N = mkN "calligrapher" "calligraphers" ;
-lin lexicographer_N = mkN "lexicographer" "lexicographers" ;
-lin geographer_N = mkN "geographer" "geographers" ;
-lin paleographer_N = mkN "paleographer" "paleographers" ;
-lin choreographer_N = mkN "choreographer" "choreographers" ;
-lin lithographer_N = mkN "lithographer" "lithographers" ;
-lin biographer_N = mkN "biographer" "biographers" ;
-lin autobiographer_N = mkN "autobiographer" "autobiographers" ; -- compound biographer_N ;
-lin radiographer_N = mkN "radiographer" "radiographers" ;
-lin hagiographer_N = mkN "hagiographer" "hagiographers" ;
-lin bibliographer_N = mkN "bibliographer" "bibliographers" ;
-lin crystallographer_N = mkN "crystallographer" "crystallographers" ;
-lin demographer_N = mkN "demographer" "demographers" ;
-lin cosmographer_N = mkN "cosmographer" "cosmographers" ;
-lin oceanographer_N = mkN "oceanographer" "oceanographers" ;
-lin stenographer_N = mkN "stenographer" "stenographers" ;
-lin ethnographer_N = mkN "ethnographer" "ethnographers" ;
-lin pornographer_N = mkN "pornographer" "pornographers" ;
-lin typographer_N = mkN "typographer" "typographers" ;
-lin pyrographer_N = mkN "pyrographer" "pyrographers" ;
-lin photographer_N = mkN "photographer" "photographers" ;
-lin 'press-photographer_N' = mkN "press-photographer" "press-photographers" ; -- compound photographer_N ;
-lin cartographer_N = mkN "cartographer" "cartographers" ;
-lin cipher_N = mkN "cipher" "ciphers" ;
-lin telpher_N = mkN "telpher" "telphers" ;
-lin gopher_N = mkN "gopher" "gophers" ;
-lin philosopher_N = mkN "philosopher" "philosophers" ;
-lin cypher_N = mkN "cypher" "cyphers" ;
-lin haberdasher_N = mkN "haberdasher" "haberdashers" ;
-lin lasher_N = mkN "lasher" "lashers" ;
-lin flasher_N = mkN "flasher" "flashers" ; -- notcompound lasher_N ;
-lin splasher_N = mkN "splasher" "splashers" ; -- notcompound lasher_N ;
-lin slasher_N = mkN "slasher" "slashers" ; -- notcompound lasher_N ;
-lin masher_N = mkN "masher" "mashers" ;
-lin smasher_N = mkN "smasher" "smashers" ; -- notcompound masher_N ;
-lin rasher_N = mkN "rasher" "rashers" ;
-lin gatecrasher_N = mkN "gatecrasher" "gatecrashers" ; -- compound rasher_N ;
-lin thrasher_N = mkN "thrasher" "thrashers" ; -- notcompound rasher_N ;
-lin washer_N = mkN "washer" "washers" ;
-lin dishwasher_N = mkN "dishwasher" "dishwashers" ; -- compound washer_N ;
-lin fresher_N = mkN "fresher" "freshers" ;
-lin refresher_N = mkN "refresher" "refreshers" ; -- compound fresher_N ;
-lin thresher_N = mkN "thresher" "threshers" ;
-lin fisher_N = mkN "fisher" "fishers" ;
-lin kingfisher_N = mkN "kingfisher" "kingfishers" ; -- compound fisher_N ;
-lin publisher_N = mkN "publisher" "publishers" ;
-lin polisher_N = mkN "polisher" "polishers" ;
-lin skirmisher_N = mkN "skirmisher" "skirmishers" ;
-lin vanisher_N = mkN "vanisher" "vanishers" ;
-lin finisher_N = mkN "finisher" "finishers" ;
-lin refinisher_N = mkN "refinisher" "refinishers" ; -- compound finisher_N ;
-lin admonisher_N = mkN "admonisher" "admonishers" ;
-lin varnisher_N = mkN "varnisher" "varnishers" ;
-lin perisher_N = mkN "perisher" "perishers" ;
-lin Britisher_N = mkN "Britisher" "Britishers" ;
-lin languisher_N = mkN "languisher" "languishers" ;
-lin extinguisher_N = mkN "extinguisher" "extinguishers" ;
-lin 'fire-extinguisher_N' = mkN "fire-extinguisher" "fire-extinguishers" ; -- compound extinguisher_N ;
-lin 'well-wisher_N' = mkN "well-wisher" "well-wishers" ;
-lin welsher_N = mkN "welsher" "welshers" ;
-lin kosher_N = mkN "kosher" "koshers" ;
-lin nosher_N = mkN "nosher" "noshers" ;
-lin usher_N = mkN "usher" "ushers" ;
-lin ambusher_N = mkN "ambusher" "ambushers" ; -- compound usher_N ;
-lin gusher_N = mkN "gusher" "gushers" ; -- notcompound usher_N ;
-lin musher_N = mkN "musher" "mushers" ; -- notcompound usher_N ;
-lin pusher_N = mkN "pusher" "pushers" ; -- notcompound usher_N ;
-lin 'pen-pusher_N' = mkN "pen-pusher" "pen-pushers" ; -- compound usher_N ;
-lin penpusher_N = mkN "penpusher" "penpushers" ; -- compound usher_N ;
-lin rusher_N = mkN "rusher" "rushers" ; -- notcompound usher_N ;
-lin crusher_N = mkN "crusher" "crushers" ; -- notcompound usher_N ;
-lin bather_N = mkN "bather" "bathers" ;
-lin sunbather_N = mkN "sunbather" "sunbathers" ; -- compound bather_N ;
-lin feather_N = mkN "feather" "feathers" ;
-lin 'quill-feather_N' = mkN "quill-feather" "quill-feathers" ; -- compound feather_N ;
-lin heather_N = mkN "heather" "heathers" ;
-lin leather_N = mkN "leather" "leathers" ;
-lin 'shoe-leather_N' = mkN "shoe-leather" "shoe-leathers" ; -- compound leather_N ;
-lin 'wash-leather_N' = mkN "wash-leather" "wash-leathers" ; -- compound leather_N ;
-lin 'chamois-leather_N' = mkN "chamois-leather" "chamois-leathers" ; -- compound leather_N ;
-lin 'chammy-leather_N' = mkN "chammy-leather" "chammy-leathers" ; -- compound leather_N ;
-lin breather_N = mkN "breather" "breathers" ;
-lin weather_N = mkN "weather" "weathers" ;
-lin father_N = mkN "father" "fathers" ;
-lin 'foster-father_N' = mkN "foster-father" "foster-fathers" ; -- compound father_N ;
-lin grandfather_N = mkN "grandfather" "grandfathers" ; -- compound father_N ;
-lin godfather_N = mkN "godfather" "godfathers" ; -- compound father_N ;
-lin forefather_N = mkN "forefather" "forefathers" ; -- compound father_N ;
-lin housefather_N = mkN "housefather" "housefathers" ; -- compound father_N ;
-lin stepfather_N = mkN "stepfather" "stepfathers" ; -- compound father_N ;
-lin gather_N = mkN "gather" "gathers" ;
-lin lather_N = mkN "lather" "lathers" ;
-lin blather_N = mkN "blather" "blathers" ; -- notcompound lather_N ;
-lin ether_N = mkN "ether" "ethers" ;
-lin aether_N = mkN "aether" "aethers" ; -- notcompound ether_N ;
-lin 'get-together_N' = mkN "get-together" "get-togethers" ; -- compound ether_N ;
-lin blether_N = mkN "blether" "blethers" ; -- notcompound ether_N ;
-lin tether_N = mkN "tether" "tethers" ; -- notcompound ether_N ;
-lin wether_N = mkN "wether" "wethers" ; -- notcompound ether_N ;
-lin bellwether_N = mkN "bellwether" "bellwethers" ; -- compound ether_N ;
-lin dither_N = mkN "dither" "dithers" ;
-lin tither_N = mkN "tither" "tithers" ;
-lin zither_N = mkN "zither" "zithers" ;
-lin anther_N = mkN "anther" "anthers" ;
-lin panther_N = mkN "panther" "panthers" ; -- notcompound anther_N ;
-lin other_N = mkN "other" "others" ;
-lin bother_N = mkN "bother" "bothers" ; -- notcompound other_N ;
-lin mother_N = mkN "mother" "mothers" ; -- notcompound other_N ;
-lin 'foster-mother_N' = mkN "foster-mother" "foster-mothers" ; -- compound other_N ;
-lin grandmother_N = mkN "grandmother" "grandmothers" ; -- compound other_N ;
-lin godmother_N = mkN "godmother" "godmothers" ; -- compound other_N ;
-lin foremother_N = mkN "foremother" "foremothers" ; -- compound other_N ;
-lin housemother_N = mkN "housemother" "housemothers" ; -- compound other_N ;
-lin stepmother_N = mkN "stepmother" "stepmothers" ; -- compound other_N ;
-lin pother_N = mkN "pother" "pothers" ; -- notcompound other_N ;
-lin brother_N = mkN "brother" "brothers" ; -- notcompound other_N ;
-lin 'half-brother_N' = mkN "half-brother" "half-brothers" ; -- compound other_N ;
-lin 'foster-brother_N' = mkN "foster-brother" "foster-brothers" ; -- compound other_N ;
-lin stepbrother_N = mkN "stepbrother" "stepbrothers" ; -- compound other_N ;
-lin shanghaier_N = mkN "shanghaier" "shanghaiers" ;
-lin bier_N = mkN "bier" "biers" ;
-lin ribier_N = mkN "ribier" "ribiers" ; -- compound bier_N ;
-lin glacier_N = mkN "glacier" "glaciers" ;
-lin fancier_N = mkN "fancier" "fanciers" ;
-lin 'bird-fancier_N' = mkN "bird-fancier" "bird-fanciers" ; -- compound fancier_N ;
-lin financier_N = mkN "financier" "financiers" ;
-lin brigadier_N = mkN "brigadier" "brigadiers" ;
-lin grenadier_N = mkN "grenadier" "grenadiers" ;
-lin soldier_N = mkN "soldier" "soldiers" ;
-lin bombardier_N = mkN "bombardier" "bombardiers" ;
-lin boulevardier_N = mkN "boulevardier" "boulevardiers" ;
-lin halberdier_N = mkN "halberdier" "halberdiers" ;
-lin pacifier_N = mkN "pacifier" "pacifiers" ;
-lin specifier_N = mkN "specifier" "specifiers" ;
-lin modifier_N = mkN "modifier" "modifiers" ;
-lin qualifier_N = mkN "qualifier" "qualifiers" ;
-lin nullifier_N = mkN "nullifier" "nullifiers" ;
-lin amplifier_N = mkN "amplifier" "amplifiers" ;
-lin magnifier_N = mkN "magnifier" "magnifiers" ;
-lin purifier_N = mkN "purifier" "purifiers" ;
-lin falsifier_N = mkN "falsifier" "falsifiers" ;
-lin emulsifier_N = mkN "emulsifier" "emulsifiers" ;
-lin intensifier_N = mkN "intensifier" "intensifiers" ;
-lin versifier_N = mkN "versifier" "versifiers" ;
-lin classifier_N = mkN "classifier" "classifiers" ;
-lin rectifier_N = mkN "rectifier" "rectifiers" ;
-lin quantifier_N = mkN "quantifier" "quantifiers" ;
-lin identifier_N = mkN "identifier" "identifiers" ;
-lin testifier_N = mkN "testifier" "testifiers" ;
-lin complexifier_N = mkN "complexifier" "complexifiers" ;
-lin satisfier_N = mkN "satisfier" "satisfiers" ;
-lin cashier_N = mkN "cashier" "cashiers" ;
-lin clothier_N = mkN "clothier" "clothiers" ;
-lin luthier_N = mkN "luthier" "luthiers" ;
-lin skier_N = mkN "skier" "skiers" ;
-lin espalier_N = mkN "espalier" "espaliers" ;
-lin cavalier_N = mkN "cavalier" "cavaliers" ;
-lin chandelier_N = mkN "chandelier" "chandeliers" ;
-lin sommelier_N = mkN "sommelier" "sommeliers" ;
-lin atelier_N = mkN "atelier" "ateliers" ;
-lin hotelier_N = mkN "hotelier" "hoteliers" ;
-lin flier_N = mkN "flier" "fliers" ;
-lin highflier_N = mkN "highflier" "highfliers" ; -- compound flier_N ;
-lin fusilier_N = mkN "fusilier" "fusiliers" ;
-lin dallier_N = mkN "dallier" "dalliers" ;
-lin collier_N = mkN "collier" "colliers" ;
-lin bandolier_N = mkN "bandolier" "bandoliers" ;
-lin gondolier_N = mkN "gondolier" "gondoliers" ;
-lin plier_N = mkN "plier" "pliers" ;
-lin multiplier_N = mkN "multiplier" "multipliers" ; -- compound plier_N ;
-lin supplier_N = mkN "supplier" "suppliers" ; -- compound plier_N ;
-lin outlier_N = mkN "outlier" "outliers" ;
-lin haulier_N = mkN "haulier" "hauliers" ;
-lin premier_N = mkN "premier" "premiers" ;
-lin costumier_N = mkN "costumier" "costumiers" ;
-lin latanier_N = mkN "latanier" "lataniers" ;
-lin pannier_N = mkN "pannier" "panniers" ;
-lin chiffonier_N = mkN "chiffonier" "chiffoniers" ;
-lin pier_N = mkN "pier" "piers" ;
-lin rapier_N = mkN "rapier" "rapiers" ; -- compound pier_N ;
-lin photocopier_N = mkN "photocopier" "photocopiers" ; -- compound pier_N ;
-lin occupier_N = mkN "occupier" "occupiers" ; -- compound pier_N ;
-lin 'owner-occupier_N' = mkN "owner-occupier" "owner-occupiers" ; -- compound pier_N ;
-lin croupier_N = mkN "croupier" "croupiers" ; -- compound pier_N ;
-lin brier_N = mkN "brier" "briers" ;
-lin bullbrier_N = mkN "bullbrier" "bullbriers" ; -- compound brier_N ;
-lin sweetbrier_N = mkN "sweetbrier" "sweetbriers" ; -- compound brier_N ;
-lin crier_N = mkN "crier" "criers" ;
-lin 'town-crier_N' = mkN "town-crier" "town-criers" ; -- compound crier_N ;
-lin drier_N = mkN "drier" "driers" ;
-lin 'spin-drier_N' = mkN "spin-drier" "spin-driers" ; -- compound drier_N ;
-lin frier_N = mkN "frier" "friers" ;
-lin barrier_N = mkN "barrier" "barriers" ;
-lin carrier_N = mkN "carrier" "carriers" ;
-lin 'luggage-carrier_N' = mkN "luggage-carrier" "luggage-carriers" ; -- compound carrier_N ;
-lin 'troop-carrier_N' = mkN "troop-carrier" "troop-carriers" ; -- compound carrier_N ;
-lin farrier_N = mkN "farrier" "farriers" ;
-lin harrier_N = mkN "harrier" "harriers" ;
-lin terrier_N = mkN "terrier" "terriers" ;
-lin 'bull-terrier_N' = mkN "bull-terrier" "bull-terriers" ; -- compound terrier_N ;
-lin 'fox-terrier_N' = mkN "fox-terrier" "fox-terriers" ; -- compound terrier_N ;
-lin bullterrier_N = mkN "bullterrier" "bullterriers" ; -- compound terrier_N ;
-lin worrier_N = mkN "worrier" "worriers" ;
-lin currier_N = mkN "currier" "curriers" ;
-lin furrier_N = mkN "furrier" "furriers" ;
-lin trier_N = mkN "trier" "triers" ;
-lin courier_N = mkN "courier" "couriers" ;
-lin couturier_N = mkN "couturier" "couturiers" ;
-lin osier_N = mkN "osier" "osiers" ;
-lin hosier_N = mkN "hosier" "hosiers" ; -- notcompound osier_N ;
-lin crosier_N = mkN "crosier" "crosiers" ; -- notcompound osier_N ;
-lin tarsier_N = mkN "tarsier" "tarsiers" ;
-lin cuirassier_N = mkN "cuirassier" "cuirassiers" ;
-lin dossier_N = mkN "dossier" "dossiers" ;
-lin tier_N = mkN "tier" "tiers" ;
-lin rentier_N = mkN "rentier" "rentiers" ; -- compound tier_N ;
-lin frontier_N = mkN "frontier" "frontiers" ; -- compound tier_N ;
-lin courtier_N = mkN "courtier" "courtiers" ; -- compound tier_N ;
-lin bustier_N = mkN "bustier" "bustiers" ; -- compound tier_N ;
-lin métier_N = mkN "métier" "métiers" ; -- notcompound tier_N ;
-lin clavier_N = mkN "clavier" "claviers" ;
-lin glazier_N = mkN "glazier" "glaziers" ;
-lin brazier_N = mkN "brazier" "braziers" ;
-lin grazier_N = mkN "grazier" "graziers" ;
-lin vizier_N = mkN "vizier" "viziers" ;
-lin crozier_N = mkN "crozier" "croziers" ;
-lin baker_N = mkN "baker" "bakers" ;
-lin beaker_N = mkN "beaker" "beakers" ;
-lin leaker_N = mkN "leaker" "leakers" ;
-lin speaker_N = mkN "speaker" "speakers" ;
-lin loudspeaker_N = mkN "loudspeaker" "loudspeakers" ; -- compound speaker_N ;
-lin breaker_N = mkN "breaker" "breakers" ;
-lin 'ship-breaker_N' = mkN "ship-breaker" "ship-breakers" ; -- compound breaker_N ;
-lin windbreaker_N = mkN "windbreaker" "windbreakers" ; -- compound breaker_N ;
-lin icebreaker_N = mkN "icebreaker" "icebreakers" ; -- compound breaker_N ;
-lin safebreaker_N = mkN "safebreaker" "safebreakers" ; -- compound breaker_N ;
-lin tiebreaker_N = mkN "tiebreaker" "tiebreakers" ; -- compound breaker_N ;
-lin strikebreaker_N = mkN "strikebreaker" "strikebreakers" ; -- compound breaker_N ;
-lin stonebreaker_N = mkN "stonebreaker" "stonebreakers" ; -- compound breaker_N ;
-lin housebreaker_N = mkN "housebreaker" "housebreakers" ; -- compound breaker_N ;
-lin heartbreaker_N = mkN "heartbreaker" "heartbreakers" ; -- compound breaker_N ;
-lin jawbreaker_N = mkN "jawbreaker" "jawbreakers" ; -- compound breaker_N ;
-lin lawbreaker_N = mkN "lawbreaker" "lawbreakers" ; -- compound breaker_N ;
-lin streaker_N = mkN "streaker" "streakers" ;
-lin squeaker_N = mkN "squeaker" "squeakers" ;
-lin shaker_N = mkN "shaker" "shakers" ;
-lin boneshaker_N = mkN "boneshaker" "boneshakers" ; -- compound shaker_N ;
-lin saltshaker_N = mkN "saltshaker" "saltshakers" ; -- compound shaker_N ;
-lin maker_N = mkN "maker" "makers" ;
-lin 'mischief-maker_N' = mkN "mischief-maker" "mischief-makers" ; -- compound maker_N ;
-lin 'cabinet-maker_N' = mkN "cabinet-maker" "cabinet-makers" ; -- compound maker_N ;
-lin 'holiday-maker_N' = mkN "holiday-maker" "holiday-makers" ; -- compound maker_N ;
-lin peacemaker_N = mkN "peacemaker" "peacemakers" ; -- compound maker_N ;
-lin pacemaker_N = mkN "pacemaker" "pacemakers" ; -- compound maker_N ;
-lin diemaker_N = mkN "diemaker" "diemakers" ; -- compound maker_N ;
-lin troublemaker_N = mkN "troublemaker" "troublemakers" ; -- compound maker_N ;
-lin candlemaker_N = mkN "candlemaker" "candlemakers" ; -- compound maker_N ;
-lin shoemaker_N = mkN "shoemaker" "shoemakers" ; -- compound maker_N ;
-lin ropemaker_N = mkN "ropemaker" "ropemakers" ; -- compound maker_N ;
-lin noisemaker_N = mkN "noisemaker" "noisemakers" ; -- compound maker_N ;
-lin wigmaker_N = mkN "wigmaker" "wigmakers" ; -- compound maker_N ;
-lin kingmaker_N = mkN "kingmaker" "kingmakers" ; -- compound maker_N ;
-lin matchmaker_N = mkN "matchmaker" "matchmakers" ; -- compound maker_N ;
-lin watchmaker_N = mkN "watchmaker" "watchmakers" ; -- compound maker_N ;
-lin cloakmaker_N = mkN "cloakmaker" "cloakmakers" ; -- compound maker_N ;
-lin bookmaker_N = mkN "bookmaker" "bookmakers" ; -- compound maker_N ;
-lin steelmaker_N = mkN "steelmaker" "steelmakers" ; -- compound maker_N ;
-lin sailmaker_N = mkN "sailmaker" "sailmakers" ; -- compound maker_N ;
-lin toolmaker_N = mkN "toolmaker" "toolmakers" ; -- compound maker_N ;
-lin rainmaker_N = mkN "rainmaker" "rainmakers" ; -- compound maker_N ;
-lin patternmaker_N = mkN "patternmaker" "patternmakers" ; -- compound maker_N ;
-lin glassmaker_N = mkN "glassmaker" "glassmakers" ; -- compound maker_N ;
-lin dressmaker_N = mkN "dressmaker" "dressmakers" ; -- compound maker_N ;
-lin hatmaker_N = mkN "hatmaker" "hatmakers" ; -- compound maker_N ;
-lin cabinetmaker_N = mkN "cabinetmaker" "cabinetmakers" ; -- compound maker_N ;
-lin garmentmaker_N = mkN "garmentmaker" "garmentmakers" ; -- compound maker_N ;
-lin tentmaker_N = mkN "tentmaker" "tentmakers" ; -- compound maker_N ;
-lin printmaker_N = mkN "printmaker" "printmakers" ; -- compound maker_N ;
-lin bootmaker_N = mkN "bootmaker" "bootmakers" ; -- compound maker_N ;
-lin shirtmaker_N = mkN "shirtmaker" "shirtmakers" ; -- compound maker_N ;
-lin lawmaker_N = mkN "lawmaker" "lawmakers" ; -- compound maker_N ;
-lin haymaker_N = mkN "haymaker" "haymakers" ; -- compound maker_N ;
-lin playmaker_N = mkN "playmaker" "playmakers" ; -- compound maker_N ;
-lin moneymaker_N = mkN "moneymaker" "moneymakers" ; -- compound maker_N ;
-lin merrymaker_N = mkN "merrymaker" "merrymakers" ; -- compound maker_N ;
-lin spinnaker_N = mkN "spinnaker" "spinnakers" ;
-lin croaker_N = mkN "croaker" "croakers" ;
-lin soaker_N = mkN "soaker" "soakers" ;
-lin muckraker_N = mkN "muckraker" "muckrakers" ;
-lin taker_N = mkN "taker" "takers" ;
-lin caretaker_N = mkN "caretaker" "caretakers" ; -- compound taker_N ;
-lin stocktaker_N = mkN "stocktaker" "stocktakers" ; -- compound taker_N ;
-lin partaker_N = mkN "partaker" "partakers" ; -- compound taker_N ;
-lin undertaker_N = mkN "undertaker" "undertakers" ; -- compound taker_N ;
-lin quaker_N = mkN "quaker" "quakers" ;
-lin waker_N = mkN "waker" "wakers" ;
-lin backer_N = mkN "backer" "backers" ;
-lin linebacker_N = mkN "linebacker" "linebackers" ; -- compound backer_N ;
-lin hacker_N = mkN "hacker" "hackers" ;
-lin whacker_N = mkN "whacker" "whackers" ; -- notcompound hacker_N ;
-lin bushwhacker_N = mkN "bushwhacker" "bushwhackers" ; -- compound hacker_N ;
-lin highjacker_N = mkN "highjacker" "highjackers" ;
-lin hijacker_N = mkN "hijacker" "hijackers" ;
-lin slacker_N = mkN "slacker" "slackers" ;
-lin smacker_N = mkN "smacker" "smackers" ;
-lin knacker_N = mkN "knacker" "knackers" ;
-lin packer_N = mkN "packer" "packers" ;
-lin backpacker_N = mkN "backpacker" "backpackers" ; -- compound packer_N ;
-lin racker_N = mkN "racker" "rackers" ;
-lin cracker_N = mkN "cracker" "crackers" ; -- notcompound racker_N ;
-lin 'soda-cracker_N' = mkN "soda-cracker" "soda-crackers" ; -- compound racker_N ;
-lin safecracker_N = mkN "safecracker" "safecrackers" ; -- compound racker_N ;
-lin firecracker_N = mkN "firecracker" "firecrackers" ; -- compound racker_N ;
-lin nutcracker_N = mkN "nutcracker" "nutcrackers" ; -- compound racker_N ;
-lin tracker_N = mkN "tracker" "trackers" ; -- notcompound racker_N ;
-lin tacker_N = mkN "tacker" "tackers" ;
-lin stacker_N = mkN "stacker" "stackers" ; -- notcompound tacker_N ;
-lin attacker_N = mkN "attacker" "attackers" ; -- compound tacker_N ;
-lin decker_N = mkN "decker" "deckers" ;
-lin 'three-decker_N' = mkN "three-decker" "three-deckers" ; -- compound decker_N ;
-lin 'double-decker_N' = mkN "double-decker" "double-deckers" ; -- compound decker_N ;
-lin checker_N = mkN "checker" "checkers" ;
-lin necker_N = mkN "necker" "neckers" ;
-lin pecker_N = mkN "pecker" "peckers" ;
-lin woodpecker_N = mkN "woodpecker" "woodpeckers" ; -- compound pecker_N ;
-lin wrecker_N = mkN "wrecker" "wreckers" ;
-lin housewrecker_N = mkN "housewrecker" "housewreckers" ; -- compound wrecker_N ;
-lin bicker_N = mkN "bicker" "bickers" ;
-lin trafficker_N = mkN "trafficker" "traffickers" ;
-lin kicker_N = mkN "kicker" "kickers" ;
-lin dropkicker_N = mkN "dropkicker" "dropkickers" ; -- compound kicker_N ;
-lin flicker_N = mkN "flicker" "flickers" ;
-lin slicker_N = mkN "slicker" "slickers" ;
-lin picnicker_N = mkN "picnicker" "picnickers" ;
-lin snicker_N = mkN "snicker" "snickers" ;
-lin picker_N = mkN "picker" "pickers" ;
-lin 'hop-picker_N' = mkN "hop-picker" "hop-pickers" ; -- compound picker_N ;
-lin ragpicker_N = mkN "ragpicker" "ragpickers" ; -- compound picker_N ;
-lin nitpicker_N = mkN "nitpicker" "nitpickers" ; -- compound picker_N ;
-lin pricker_N = mkN "pricker" "prickers" ;
-lin ticker_N = mkN "ticker" "tickers" ;
-lin sticker_N = mkN "sticker" "stickers" ; -- notcompound ticker_N ;
-lin 'bill-sticker_N' = mkN "bill-sticker" "bill-stickers" ; -- compound ticker_N ;
-lin wicker_N = mkN "wicker" "wickers" ;
-lin cocker_N = mkN "cocker" "cockers" ;
-lin docker_N = mkN "docker" "dockers" ;
-lin shocker_N = mkN "shocker" "shockers" ;
-lin locker_N = mkN "locker" "lockers" ;
-lin blocker_N = mkN "blocker" "blockers" ; -- notcompound locker_N ;
-lin footlocker_N = mkN "footlocker" "footlockers" ; -- compound locker_N ;
-lin mocker_N = mkN "mocker" "mockers" ;
-lin knocker_N = mkN "knocker" "knockers" ;
-lin doorknocker_N = mkN "doorknocker" "doorknockers" ; -- compound knocker_N ;
-lin rocker_N = mkN "rocker" "rockers" ;
-lin stocker_N = mkN "stocker" "stockers" ;
-lin fucker_N = mkN "fucker" "fuckers" ;
-lin pucker_N = mkN "pucker" "puckers" ;
-lin sucker_N = mkN "sucker" "suckers" ;
-lin bloodsucker_N = mkN "bloodsucker" "bloodsuckers" ; -- compound sucker_N ;
-lin cocksucker_N = mkN "cocksucker" "cocksuckers" ; -- compound sucker_N ;
-lin sharksucker_N = mkN "sharksucker" "sharksuckers" ; -- compound sucker_N ;
-lin sapsucker_N = mkN "sapsucker" "sapsuckers" ; -- compound sucker_N ;
-lin lumpsucker_N = mkN "lumpsucker" "lumpsuckers" ; -- compound sucker_N ;
-lin seersucker_N = mkN "seersucker" "seersuckers" ; -- compound sucker_N ;
-lin goatsucker_N = mkN "goatsucker" "goatsuckers" ; -- compound sucker_N ;
-lin tucker_N = mkN "tucker" "tuckers" ;
-lin baedeker_N = mkN "baedeker" "baedekers" ;
-lin seeker_N = mkN "seeker" "seekers" ;
-lin 'self-seeker_N' = mkN "self-seeker" "self-seekers" ; -- compound seeker_N ;
-lin placeseeker_N = mkN "placeseeker" "placeseekers" ; -- compound seeker_N ;
-lin hiker_N = mkN "hiker" "hikers" ;
-lin hitchhiker_N = mkN "hitchhiker" "hitchhikers" ; -- compound hiker_N ;
-lin striker_N = mkN "striker" "strikers" ;
-lin trekker_N = mkN "trekker" "trekkers" ;
-lin chukker_N = mkN "chukker" "chukkers" ;
-lin balker_N = mkN "balker" "balkers" ;
-lin talker_N = mkN "talker" "talkers" ;
-lin codetalker_N = mkN "codetalker" "codetalkers" ; -- compound talker_N ;
-lin stalker_N = mkN "stalker" "stalkers" ; -- notcompound talker_N ;
-lin deerstalker_N = mkN "deerstalker" "deerstalkers" ; -- compound talker_N ;
-lin walker_N = mkN "walker" "walkers" ;
-lin 'fire-walker_N' = mkN "fire-walker" "fire-walkers" ; -- compound walker_N ;
-lin 'floor-walker_N' = mkN "floor-walker" "floor-walkers" ; -- compound walker_N ;
-lin spacewalker_N = mkN "spacewalker" "spacewalkers" ; -- compound walker_N ;
-lin ropewalker_N = mkN "ropewalker" "ropewalkers" ; -- compound walker_N ;
-lin sleepwalker_N = mkN "sleepwalker" "sleepwalkers" ; -- compound walker_N ;
-lin shopwalker_N = mkN "shopwalker" "shopwalkers" ; -- compound walker_N ;
-lin floorwalker_N = mkN "floorwalker" "floorwalkers" ; -- compound walker_N ;
-lin streetwalker_N = mkN "streetwalker" "streetwalkers" ; -- compound walker_N ;
-lin jaywalker_N = mkN "jaywalker" "jaywalkers" ; -- compound walker_N ;
-lin skulker_N = mkN "skulker" "skulkers" ;
-lin banker_N = mkN "banker" "bankers" ;
-lin canker_N = mkN "canker" "cankers" ;
-lin scrimshanker_N = mkN "scrimshanker" "scrimshankers" ;
-lin flanker_N = mkN "flanker" "flankers" ;
-lin spanker_N = mkN "spanker" "spankers" ;
-lin ranker_N = mkN "ranker" "rankers" ;
-lin tanker_N = mkN "tanker" "tankers" ;
-lin 'oil-tanker_N' = mkN "oil-tanker" "oil-tankers" ; -- compound tanker_N ;
-lin supertanker_N = mkN "supertanker" "supertankers" ; -- compound tanker_N ;
-lin yanker_N = mkN "yanker" "yankers" ;
-lin thinker_N = mkN "thinker" "thinkers" ;
-lin 'free-thinker_N' = mkN "free-thinker" "free-thinkers" ; -- compound thinker_N ;
-lin blinker_N = mkN "blinker" "blinkers" ;
-lin clinker_N = mkN "clinker" "clinkers" ;
-lin drinker_N = mkN "drinker" "drinkers" ;
-lin sinker_N = mkN "sinker" "sinkers" ;
-lin tinker_N = mkN "tinker" "tinkers" ;
-lin stinker_N = mkN "stinker" "stinkers" ; -- notcompound tinker_N ;
-lin winker_N = mkN "winker" "winkers" ;
-lin conker_N = mkN "conker" "conkers" ;
-lin honker_N = mkN "honker" "honkers" ;
-lin bunker_N = mkN "bunker" "bunkers" ;
-lin dunker_N = mkN "dunker" "dunkers" ;
-lin choker_N = mkN "choker" "chokers" ;
-lin hogchoker_N = mkN "hogchoker" "hogchokers" ; -- compound choker_N ;
-lin joker_N = mkN "joker" "jokers" ;
-lin smoker_N = mkN "smoker" "smokers" ;
-lin 'chain-smoker_N' = mkN "chain-smoker" "chain-smokers" ; -- compound smoker_N ;
-lin nonsmoker_N = mkN "nonsmoker" "nonsmokers" ; -- compound smoker_N ;
-lin booker_N = mkN "booker" "bookers" ;
-lin cooker_N = mkN "cooker" "cookers" ;
-lin 'pressure-cooker_N' = mkN "pressure-cooker" "pressure-cookers" ; -- compound cooker_N ;
-lin 'gas-cooker_N' = mkN "gas-cooker" "gas-cookers" ; -- compound cooker_N ;
-lin hooker_N = mkN "hooker" "hookers" ;
-lin looker_N = mkN "looker" "lookers" ;
-lin onlooker_N = mkN "onlooker" "onlookers" ; -- compound looker_N ;
-lin snooker_N = mkN "snooker" "snookers" ;
-lin poker_N = mkN "poker" "pokers" ;
-lin 'strip-poker_N' = mkN "strip-poker" "strip-pokers" ; -- compound poker_N ;
-lin broker_N = mkN "broker" "brokers" ;
-lin stockbroker_N = mkN "stockbroker" "stockbrokers" ; -- compound broker_N ;
-lin pawnbroker_N = mkN "pawnbroker" "pawnbrokers" ; -- compound broker_N ;
-lin shipbroker_N = mkN "shipbroker" "shipbrokers" ; -- compound broker_N ;
-lin backstroker_N = mkN "backstroker" "backstrokers" ;
-lin breaststroker_N = mkN "breaststroker" "breaststrokers" ;
-lin stoker_N = mkN "stoker" "stokers" ;
-lin barker_N = mkN "barker" "barkers" ;
-lin marker_N = mkN "marker" "markers" ;
-lin 'billiard-marker_N' = mkN "billiard-marker" "billiard-markers" ; -- compound marker_N ;
-lin bookmarker_N = mkN "bookmarker" "bookmarkers" ; -- compound marker_N ;
-lin tearjerker_N = mkN "tearjerker" "tearjerkers" ;
-lin berserker_N = mkN "berserker" "berserkers" ;
-lin shirker_N = mkN "shirker" "shirkers" ;
-lin smirker_N = mkN "smirker" "smirkers" ;
-lin corker_N = mkN "corker" "corkers" ;
-lin porker_N = mkN "porker" "porkers" ;
-lin worker_N = mkN "worker" "workers" ;
-lin 'shock-worker_N' = mkN "shock-worker" "shock-workers" ; -- compound worker_N ;
-lin fieldworker_N = mkN "fieldworker" "fieldworkers" ; -- compound worker_N ;
-lin woodworker_N = mkN "woodworker" "woodworkers" ; -- compound worker_N ;
-lin needleworker_N = mkN "needleworker" "needleworkers" ; -- compound worker_N ;
-lin mineworker_N = mkN "mineworker" "mineworkers" ; -- compound worker_N ;
-lin metalworker_N = mkN "metalworker" "metalworkers" ; -- compound worker_N ;
-lin brainworker_N = mkN "brainworker" "brainworkers" ; -- compound worker_N ;
-lin nonworker_N = mkN "nonworker" "nonworkers" ; -- compound worker_N ;
-lin ironworker_N = mkN "ironworker" "ironworkers" ; -- compound worker_N ;
-lin coworker_N = mkN "coworker" "coworkers" ; -- compound worker_N ;
-lin lurker_N = mkN "lurker" "lurkers" ;
-lin esker_N = mkN "esker" "eskers" ;
-lin whisker_N = mkN "whisker" "whiskers" ;
-lin busker_N = mkN "busker" "buskers" ;
-lin cornhusker_N = mkN "cornhusker" "cornhuskers" ;
-lin tusker_N = mkN "tusker" "tuskers" ;
-lin gawker_N = mkN "gawker" "gawkers" ;
-lin hawker_N = mkN "hawker" "hawkers" ;
-lin squawker_N = mkN "squawker" "squawkers" ;
-lin scaler_N = mkN "scaler" "scalers" ;
-lin pedaler_N = mkN "pedaler" "pedalers" ;
-lin dealer_N = mkN "dealer" "dealers" ;
-lin 'double-dealer_N' = mkN "double-dealer" "double-dealers" ; -- compound dealer_N ;
-lin 'stamp-dealer_N' = mkN "stamp-dealer" "stamp-dealers" ; -- compound dealer_N ;
-lin bookdealer_N = mkN "bookdealer" "bookdealers" ; -- compound dealer_N ;
-lin newsdealer_N = mkN "newsdealer" "newsdealers" ; -- compound dealer_N ;
-lin healer_N = mkN "healer" "healers" ;
-lin sealer_N = mkN "sealer" "sealers" ;
-lin squealer_N = mkN "squealer" "squealers" ;
-lin haler_N = mkN "haler" "halers" ;
-lin inhaler_N = mkN "inhaler" "inhalers" ; -- compound haler_N ;
-lin whaler_N = mkN "whaler" "whalers" ; -- notcompound haler_N ;
-lin signaler_N = mkN "signaler" "signalers" ;
-lin wholesaler_N = mkN "wholesaler" "wholesalers" ;
-lin teetotaler_N = mkN "teetotaler" "teetotalers" ;
-lin victualer_N = mkN "victualer" "victualers" ;
-lin babbler_N = mkN "babbler" "babblers" ;
-lin dabbler_N = mkN "dabbler" "dabblers" ;
-lin squabbler_N = mkN "squabbler" "squabblers" ;
-lin nibbler_N = mkN "nibbler" "nibblers" ;
-lin scribbler_N = mkN "scribbler" "scribblers" ;
-lin dribbler_N = mkN "dribbler" "dribblers" ;
-lin quibbler_N = mkN "quibbler" "quibblers" ;
-lin cobbler_N = mkN "cobbler" "cobblers" ;
-lin gobbler_N = mkN "gobbler" "gobblers" ;
-lin hobbler_N = mkN "hobbler" "hobblers" ;
-lin wobbler_N = mkN "wobbler" "wobblers" ;
-lin bubbler_N = mkN "bubbler" "bubblers" ;
-lin gambler_N = mkN "gambler" "gamblers" ;
-lin rambler_N = mkN "rambler" "ramblers" ;
-lin scrambler_N = mkN "scrambler" "scramblers" ; -- notcompound rambler_N ;
-lin assembler_N = mkN "assembler" "assemblers" ;
-lin dissembler_N = mkN "dissembler" "dissemblers" ;
-lin fumbler_N = mkN "fumbler" "fumblers" ;
-lin grumbler_N = mkN "grumbler" "grumblers" ;
-lin tumbler_N = mkN "tumbler" "tumblers" ;
-lin stumbler_N = mkN "stumbler" "stumblers" ; -- notcompound tumbler_N ;
-lin warbler_N = mkN "warbler" "warblers" ;
-lin doubler_N = mkN "doubler" "doublers" ;
-lin chronicler_N = mkN "chronicler" "chroniclers" ;
-lin saddler_N = mkN "saddler" "saddlers" ;
-lin waddler_N = mkN "waddler" "waddlers" ;
-lin twaddler_N = mkN "twaddler" "twaddlers" ; -- notcompound waddler_N ;
-lin meddler_N = mkN "meddler" "meddlers" ;
-lin peddler_N = mkN "peddler" "peddlers" ;
-lin fiddler_N = mkN "fiddler" "fiddlers" ;
-lin tiddler_N = mkN "tiddler" "tiddlers" ;
-lin twiddler_N = mkN "twiddler" "twiddlers" ;
-lin toddler_N = mkN "toddler" "toddlers" ;
-lin huddler_N = mkN "huddler" "huddlers" ;
-lin puddler_N = mkN "puddler" "puddlers" ;
-lin wheedler_N = mkN "wheedler" "wheedlers" ;
-lin idler_N = mkN "idler" "idlers" ;
-lin handler_N = mkN "handler" "handlers" ;
-lin chandler_N = mkN "chandler" "chandlers" ; -- notcompound handler_N ;
-lin 'ship\'s-chandler_N' = mkN "ship's-chandler" "ship's-chandlers" ; -- compound handler_N ;
-lin 'wax-chandler_N' = mkN "wax-chandler" "wax-chandlers" ; -- compound handler_N ;
-lin panhandler_N = mkN "panhandler" "panhandlers" ; -- compound handler_N ;
-lin landler_N = mkN "landler" "landlers" ;
-lin swindler_N = mkN "swindler" "swindlers" ;
-lin fondler_N = mkN "fondler" "fondlers" ;
-lin hurdler_N = mkN "hurdler" "hurdlers" ;
-lin dawdler_N = mkN "dawdler" "dawdlers" ;
-lin modeler_N = mkN "modeler" "modelers" ;
-lin feeler_N = mkN "feeler" "feelers" ;
-lin wheeler_N = mkN "wheeler" "wheelers" ;
-lin 'four-wheeler_N' = mkN "four-wheeler" "four-wheelers" ; -- compound wheeler_N ;
-lin sternwheeler_N = mkN "sternwheeler" "sternwheelers" ; -- compound wheeler_N ;
-lin kneeler_N = mkN "kneeler" "kneelers" ;
-lin peeler_N = mkN "peeler" "peelers" ;
-lin reeler_N = mkN "reeler" "reelers" ;
-lin quarreler_N = mkN "quarreler" "quarrelers" ;
-lin dueler_N = mkN "dueler" "duelers" ;
-lin traveler_N = mkN "traveler" "travelers" ;
-lin leveler_N = mkN "leveler" "levelers" ;
-lin reveler_N = mkN "reveler" "revelers" ;
-lin shoveler_N = mkN "shoveler" "shovelers" ;
-lin jeweler_N = mkN "jeweler" "jewelers" ;
-lin waffler_N = mkN "waffler" "wafflers" ;
-lin sniffler_N = mkN "sniffler" "snifflers" ;
-lin shuffler_N = mkN "shuffler" "shufflers" ;
-lin muffler_N = mkN "muffler" "mufflers" ;
-lin snuffler_N = mkN "snuffler" "snufflers" ;
-lin trifler_N = mkN "trifler" "triflers" ;
-lin stifler_N = mkN "stifler" "stiflers" ;
-lin finagler_N = mkN "finagler" "finaglers" ;
-lin haggler_N = mkN "haggler" "hagglers" ;
-lin straggler_N = mkN "straggler" "stragglers" ;
-lin wriggler_N = mkN "wriggler" "wrigglers" ;
-lin wiggler_N = mkN "wiggler" "wigglers" ;
-lin juggler_N = mkN "juggler" "jugglers" ;
-lin smuggler_N = mkN "smuggler" "smugglers" ;
-lin struggler_N = mkN "struggler" "strugglers" ;
-lin angler_N = mkN "angler" "anglers" ;
-lin strangler_N = mkN "strangler" "stranglers" ; -- notcompound angler_N ;
-lin wrangler_N = mkN "wrangler" "wranglers" ; -- notcompound angler_N ;
-lin disentangler_N = mkN "disentangler" "disentanglers" ; -- compound angler_N ;
-lin shingler_N = mkN "shingler" "shinglers" ;
-lin bungler_N = mkN "bungler" "bunglers" ;
-lin ogler_N = mkN "ogler" "oglers" ;
-lin bugler_N = mkN "bugler" "buglers" ;
-lin 'loud-hailer_N' = mkN "loud-hailer" "loud-hailers" ;
-lin jailer_N = mkN "jailer" "jailers" ;
-lin mailer_N = mkN "mailer" "mailers" ;
-lin blackmailer_N = mkN "blackmailer" "blackmailers" ; -- compound mailer_N ;
-lin airmailer_N = mkN "airmailer" "airmailers" ; -- compound mailer_N ;
-lin nailer_N = mkN "nailer" "nailers" ;
-lin trailer_N = mkN "trailer" "trailers" ;
-lin semitrailer_N = mkN "semitrailer" "semitrailers" ; -- compound trailer_N ;
-lin wassailer_N = mkN "wassailer" "wassailers" ;
-lin retailer_N = mkN "retailer" "retailers" ;
-lin wailer_N = mkN "wailer" "wailers" ;
-lin abseiler_N = mkN "abseiler" "abseilers" ;
-lin filer_N = mkN "filer" "filers" ;
-lin miler_N = mkN "miler" "milers" ;
-lin smiler_N = mkN "smiler" "smilers" ; -- notcompound miler_N ;
-lin oiler_N = mkN "oiler" "oilers" ;
-lin boiler_N = mkN "boiler" "boilers" ; -- notcompound oiler_N ;
-lin 'steam-boiler_N' = mkN "steam-boiler" "steam-boilers" ; -- compound oiler_N ;
-lin potboiler_N = mkN "potboiler" "potboilers" ; -- compound oiler_N ;
-lin spoiler_N = mkN "spoiler" "spoilers" ; -- notcompound oiler_N ;
-lin broiler_N = mkN "broiler" "broilers" ; -- notcompound oiler_N ;
-lin toiler_N = mkN "toiler" "toilers" ; -- notcompound oiler_N ;
-lin compiler_N = mkN "compiler" "compilers" ;
-lin tiler_N = mkN "tiler" "tilers" ;
-lin cackler_N = mkN "cackler" "cacklers" ;
-lin tackler_N = mkN "tackler" "tacklers" ;
-lin heckler_N = mkN "heckler" "hecklers" ;
-lin tickler_N = mkN "tickler" "ticklers" ;
-lin stickler_N = mkN "stickler" "sticklers" ; -- notcompound tickler_N ;
-lin buckler_N = mkN "buckler" "bucklers" ;
-lin swashbuckler_N = mkN "swashbuckler" "swashbucklers" ; -- compound buckler_N ;
-lin sprinkler_N = mkN "sprinkler" "sprinklers" ;
-lin twinkler_N = mkN "twinkler" "twinklers" ;
-lin sparkler_N = mkN "sparkler" "sparklers" ;
-lin footballer_N = mkN "footballer" "footballers" ;
-lin screwballer_N = mkN "screwballer" "screwballers" ;
-lin caller_N = mkN "caller" "callers" ;
-lin faller_N = mkN "faller" "fallers" ;
-lin signaller_N = mkN "signaller" "signallers" ;
-lin teetotaller_N = mkN "teetotaller" "teetotallers" ;
-lin victualler_N = mkN "victualler" "victuallers" ;
-lin stonewaller_N = mkN "stonewaller" "stonewallers" ;
-lin modeller_N = mkN "modeller" "modellers" ;
-lin yodeller_N = mkN "yodeller" "yodellers" ;
-lin sheller_N = mkN "sheller" "shellers" ;
-lin rathskeller_N = mkN "rathskeller" "rathskellers" ;
-lin impeller_N = mkN "impeller" "impellers" ;
-lin propeller_N = mkN "propeller" "propellers" ;
-lin speller_N = mkN "speller" "spellers" ;
-lin seller_N = mkN "seller" "sellers" ;
-lin 'print-seller_N' = mkN "print-seller" "print-sellers" ; -- compound seller_N ;
-lin 'best-seller_N' = mkN "best-seller" "best-sellers" ; -- compound seller_N ;
-lin chiseller_N = mkN "chiseller" "chisellers" ; -- compound seller_N ;
-lin bookseller_N = mkN "bookseller" "booksellers" ; -- compound seller_N ;
-lin slopseller_N = mkN "slopseller" "slopsellers" ; -- compound seller_N ;
-lin underseller_N = mkN "underseller" "undersellers" ; -- compound seller_N ;
-lin teller_N = mkN "teller" "tellers" ;
-lin 'tale-teller_N' = mkN "tale-teller" "tale-tellers" ; -- compound teller_N ;
-lin fortuneteller_N = mkN "fortuneteller" "fortunetellers" ; -- compound teller_N ;
-lin hosteller_N = mkN "hosteller" "hostellers" ; -- compound teller_N ;
-lin storyteller_N = mkN "storyteller" "storytellers" ; -- compound teller_N ;
-lin traveller_N = mkN "traveller" "travellers" ;
-lin 'fellow-traveller_N' = mkN "fellow-traveller" "fellow-travellers" ; -- compound traveller_N ;
-lin leveller_N = mkN "leveller" "levellers" ;
-lin reveller_N = mkN "reveller" "revellers" ;
-lin sniveller_N = mkN "sniveller" "snivellers" ;
-lin driveller_N = mkN "driveller" "drivellers" ;
-lin groveller_N = mkN "groveller" "grovellers" ;
-lin dweller_N = mkN "dweller" "dwellers" ;
-lin 'cave-dweller_N' = mkN "cave-dweller" "cave-dwellers" ; -- compound dweller_N ;
-lin indweller_N = mkN "indweller" "indwellers" ; -- compound dweller_N ;
-lin jeweller_N = mkN "jeweller" "jewellers" ;
-lin filler_N = mkN "filler" "fillers" ;
-lin killer_N = mkN "killer" "killers" ;
-lin 'lady-killer_N' = mkN "lady-killer" "lady-killers" ; -- compound killer_N ;
-lin weedkiller_N = mkN "weedkiller" "weedkillers" ; -- compound killer_N ;
-lin painkiller_N = mkN "painkiller" "painkillers" ; -- compound killer_N ;
-lin miller_N = mkN "miller" "millers" ;
-lin thriller_N = mkN "thriller" "thrillers" ;
-lin tiller_N = mkN "tiller" "tillers" ;
-lin distiller_N = mkN "distiller" "distillers" ; -- compound tiller_N ;
-lin roller_N = mkN "roller" "rollers" ;
-lin caroller_N = mkN "caroller" "carollers" ; -- compound roller_N ;
-lin steamroller_N = mkN "steamroller" "steamrollers" ; -- compound roller_N ;
-lin patroller_N = mkN "patroller" "patrollers" ; -- compound roller_N ;
-lin controller_N = mkN "controller" "controllers" ; -- compound roller_N ;
-lin comptroller_N = mkN "comptroller" "comptrollers" ; -- compound roller_N ;
-lin stroller_N = mkN "stroller" "strollers" ; -- notcompound roller_N ;
-lin toller_N = mkN "toller" "tollers" ;
-lin sculler_N = mkN "sculler" "scullers" ;
-lin fuller_N = mkN "fuller" "fullers" ;
-lin muller_N = mkN "muller" "mullers" ;
-lin puller_N = mkN "puller" "pullers" ;
-lin wirepuller_N = mkN "wirepuller" "wirepullers" ; -- compound puller_N ;
-lin cruller_N = mkN "cruller" "crullers" ;
-lin gaoler_N = mkN "gaoler" "gaolers" ;
-lin choler_N = mkN "choler" "cholers" ;
-lin potholer_N = mkN "potholer" "potholers" ;
-lin cooler_N = mkN "cooler" "coolers" ;
-lin preschooler_N = mkN "preschooler" "preschoolers" ;
-lin pooler_N = mkN "pooler" "poolers" ;
-lin caroler_N = mkN "caroler" "carolers" ;
-lin stapler_N = mkN "stapler" "staplers" ;
-lin trampler_N = mkN "trampler" "tramplers" ;
-lin sampler_N = mkN "sampler" "samplers" ;
-lin tippler_N = mkN "tippler" "tipplers" ;
-lin stippler_N = mkN "stippler" "stipplers" ; -- notcompound tippler_N ;
-lin whirler_N = mkN "whirler" "whirlers" ;
-lin curler_N = mkN "curler" "curlers" ;
-lin antler_N = mkN "antler" "antlers" ;
-lin turtler_N = mkN "turtler" "turtlers" ;
-lin wrestler_N = mkN "wrestler" "wrestlers" ;
-lin whistler_N = mkN "whistler" "whistlers" ;
-lin ostler_N = mkN "ostler" "ostlers" ;
-lin hustler_N = mkN "hustler" "hustlers" ;
-lin rustler_N = mkN "rustler" "rustlers" ;
-lin rattler_N = mkN "rattler" "rattlers" ;
-lin prattler_N = mkN "prattler" "prattlers" ; -- notcompound rattler_N ;
-lin tattler_N = mkN "tattler" "tattlers" ;
-lin settler_N = mkN "settler" "settlers" ;
-lin whittler_N = mkN "whittler" "whittlers" ;
-lin bottler_N = mkN "bottler" "bottlers" ;
-lin butler_N = mkN "butler" "butlers" ;
-lin cutler_N = mkN "cutler" "cutlers" ;
-lin sutler_N = mkN "sutler" "sutlers" ;
-lin hauler_N = mkN "hauler" "haulers" ;
-lin mauler_N = mkN "mauler" "maulers" ;
-lin scheduler_N = mkN "scheduler" "schedulers" ;
-lin ruler_N = mkN "ruler" "rulers" ;
-lin bawler_N = mkN "bawler" "bawlers" ;
-lin brawler_N = mkN "brawler" "brawlers" ;
-lin crawler_N = mkN "crawler" "crawlers" ;
-lin scrawler_N = mkN "scrawler" "scrawlers" ; -- notcompound crawler_N ;
-lin drawler_N = mkN "drawler" "drawlers" ;
-lin sprawler_N = mkN "sprawler" "sprawlers" ;
-lin trawler_N = mkN "trawler" "trawlers" ;
-lin bowler_N = mkN "bowler" "bowlers" ;
-lin fowler_N = mkN "fowler" "fowlers" ;
-lin howler_N = mkN "howler" "howlers" ;
-lin growler_N = mkN "growler" "growlers" ;
-lin prowler_N = mkN "prowler" "prowlers" ;
-lin embezzler_N = mkN "embezzler" "embezzlers" ;
-lin guzzler_N = mkN "guzzler" "guzzlers" ;
-lin muzzler_N = mkN "muzzler" "muzzlers" ;
-lin puzzler_N = mkN "puzzler" "puzzlers" ;
-lin reamer_N = mkN "reamer" "reamers" ;
-lin screamer_N = mkN "screamer" "screamers" ; -- notcompound reamer_N ;
-lin dreamer_N = mkN "dreamer" "dreamers" ; -- notcompound reamer_N ;
-lin daydreamer_N = mkN "daydreamer" "daydreamers" ; -- compound reamer_N ;
-lin streamer_N = mkN "streamer" "streamers" ; -- notcompound reamer_N ;
-lin steamer_N = mkN "steamer" "steamers" ;
-lin 'paddle-steamer_N' = mkN "paddle-steamer" "paddle-steamers" ; -- compound steamer_N ;
-lin 'tramp-steamer_N' = mkN "tramp-steamer" "tramp-steamers" ; -- compound steamer_N ;
-lin defamer_N = mkN "defamer" "defamers" ;
-lin namer_N = mkN "namer" "namers" ;
-lin framer_N = mkN "framer" "framers" ;
-lin gossamer_N = mkN "gossamer" "gossamers" ;
-lin tamer_N = mkN "tamer" "tamers" ;
-lin redeemer_N = mkN "redeemer" "redeemers" ;
-lin schemer_N = mkN "schemer" "schemers" ;
-lin blasphemer_N = mkN "blasphemer" "blasphemers" ;
-lin khmer_N = mkN "khmer" "khmers" ;
-lin disclaimer_N = mkN "disclaimer" "disclaimers" ;
-lin dulcimer_N = mkN "dulcimer" "dulcimers" ;
-lin dimer_N = mkN "dimer" "dimers" ;
-lin primer_N = mkN "primer" "primers" ;
-lin trimer_N = mkN "trimer" "trimers" ;
-lin timer_N = mkN "timer" "timers" ;
-lin 'old-timer_N' = mkN "old-timer" "old-timers" ; -- compound timer_N ;
-lin 'part-timer_N' = mkN "part-timer" "part-timers" ; -- compound timer_N ;
-lin embalmer_N = mkN "embalmer" "embalmers" ;
-lin palmer_N = mkN "palmer" "palmers" ;
-lin hammer_N = mkN "hammer" "hammers" ;
-lin sledgehammer_N = mkN "sledgehammer" "sledgehammers" ; -- compound hammer_N ;
-lin triphammer_N = mkN "triphammer" "triphammers" ; -- compound hammer_N ;
-lin clawhammer_N = mkN "clawhammer" "clawhammers" ; -- compound hammer_N ;
-lin yellowhammer_N = mkN "yellowhammer" "yellowhammers" ; -- compound hammer_N ;
-lin jammer_N = mkN "jammer" "jammers" ;
-lin windjammer_N = mkN "windjammer" "windjammers" ; -- compound jammer_N ;
-lin slammer_N = mkN "slammer" "slammers" ;
-lin spammer_N = mkN "spammer" "spammers" ;
-lin rammer_N = mkN "rammer" "rammers" ;
-lin crammer_N = mkN "crammer" "crammers" ; -- notcompound rammer_N ;
-lin programmer_N = mkN "programmer" "programmers" ; -- compound rammer_N ;
-lin stammer_N = mkN "stammer" "stammers" ;
-lin emmer_N = mkN "emmer" "emmers" ;
-lin stemmer_N = mkN "stemmer" "stemmers" ; -- notcompound emmer_N ;
-lin dimmer_N = mkN "dimmer" "dimmers" ;
-lin shimmer_N = mkN "shimmer" "shimmers" ;
-lin skimmer_N = mkN "skimmer" "skimmers" ;
-lin glimmer_N = mkN "glimmer" "glimmers" ;
-lin trimmer_N = mkN "trimmer" "trimmers" ;
-lin swimmer_N = mkN "swimmer" "swimmers" ;
-lin backswimmer_N = mkN "backswimmer" "backswimmers" ; -- compound swimmer_N ;
-lin bummer_N = mkN "bummer" "bummers" ;
-lin hummer_N = mkN "hummer" "hummers" ;
-lin mummer_N = mkN "mummer" "mummers" ;
-lin rummer_N = mkN "rummer" "rummers" ;
-lin drummer_N = mkN "drummer" "drummers" ; -- notcompound rummer_N ;
-lin summer_N = mkN "summer" "summers" ;
-lin midsummer_N = mkN "midsummer" "midsummers" ; -- compound summer_N ;
-lin comer_N = mkN "comer" "comers" ;
-lin latecomer_N = mkN "latecomer" "latecomers" ; -- compound comer_N ;
-lin newcomer_N = mkN "newcomer" "newcomers" ; -- compound comer_N ;
-lin homer_N = mkN "homer" "homers" ;
-lin monomer_N = mkN "monomer" "monomers" ;
-lin astronomer_N = mkN "astronomer" "astronomers" ;
-lin misnomer_N = mkN "misnomer" "misnomers" ;
-lin bloomer_N = mkN "bloomer" "bloomers" ;
-lin roomer_N = mkN "roomer" "roomers" ;
-lin isomer_N = mkN "isomer" "isomers" ;
-lin elastomer_N = mkN "elastomer" "elastomers" ;
-lin customer_N = mkN "customer" "customers" ;
-lin vomer_N = mkN "vomer" "vomers" ;
-lin farmer_N = mkN "farmer" "farmers" ;
-lin 'stock-farmer_N' = mkN "stock-farmer" "stock-farmers" ; -- compound farmer_N ;
-lin 'baby-farmer_N' = mkN "baby-farmer" "baby-farmers" ; -- compound farmer_N ;
-lin charmer_N = mkN "charmer" "charmers" ;
-lin 'snake-charmer_N' = mkN "snake-charmer" "snake-charmers" ; -- compound charmer_N ;
-lin warmer_N = mkN "warmer" "warmers" ;
-lin termer_N = mkN "termer" "termers" ;
-lin ormer_N = mkN "ormer" "ormers" ;
-lin dormer_N = mkN "dormer" "dormers" ; -- notcompound ormer_N ;
-lin former_N = mkN "former" "formers" ; -- notcompound ormer_N ;
-lin 'sixth-former_N' = mkN "sixth-former" "sixth-formers" ; -- compound ormer_N ;
-lin reformer_N = mkN "reformer" "reformers" ; -- compound ormer_N ;
-lin informer_N = mkN "informer" "informers" ; -- compound ormer_N ;
-lin performer_N = mkN "performer" "performers" ; -- compound ormer_N ;
-lin underperformer_N = mkN "underperformer" "underperformers" ; -- compound ormer_N ;
-lin transformer_N = mkN "transformer" "transformers" ; -- compound ormer_N ;
-lin barnstormer_N = mkN "barnstormer" "barnstormers" ; -- compound ormer_N ;
-lin perfumer_N = mkN "perfumer" "perfumers" ;
-lin consumer_N = mkN "consumer" "consumers" ;
-lin rhymer_N = mkN "rhymer" "rhymers" ;
-lin polymer_N = mkN "polymer" "polymers" ;
-lin copolymer_N = mkN "copolymer" "copolymers" ; -- compound polymer_N ;
-lin leaner_N = mkN "leaner" "leaners" ;
-lin cleaner_N = mkN "cleaner" "cleaners" ; -- notcompound leaner_N ;
-lin 'dry-cleaner_N' = mkN "dry-cleaner" "dry-cleaners" ; -- compound leaner_N ;
-lin gleaner_N = mkN "gleaner" "gleaners" ; -- notcompound leaner_N ;
-lin Afrikaner_N = mkN "Afrikaner" "Afrikaners" ;
-lin loaner_N = mkN "loaner" "loaners" ;
-lin groaner_N = mkN "groaner" "groaners" ;
-lin gardener_N = mkN "gardener" "gardeners" ;
-lin screener_N = mkN "screener" "screeners" ;
-lin stiffener_N = mkN "stiffener" "stiffeners" ;
-lin congener_N = mkN "congener" "congeners" ;
-lin freshener_N = mkN "freshener" "fresheners" ;
-lin strengthener_N = mkN "strengthener" "strengtheners" ;
-lin weakener_N = mkN "weakener" "weakeners" ;
-lin quickener_N = mkN "quickener" "quickeners" ;
-lin dampener_N = mkN "dampener" "dampeners" ;
-lin opener_N = mkN "opener" "openers" ;
-lin 'eye-opener_N' = mkN "eye-opener" "eye-openers" ; -- compound opener_N ;
-lin 'tin-opener_N' = mkN "tin-opener" "tin-openers" ; -- compound opener_N ;
-lin 'pew-opener_N' = mkN "pew-opener" "pew-openers" ; -- compound opener_N ;
-lin sharpener_N = mkN "sharpener" "sharpeners" ;
-lin warrener_N = mkN "warrener" "warreners" ;
-lin softener_N = mkN "softener" "softeners" ;
-lin 'water-softener_N' = mkN "water-softener" "water-softeners" ; -- compound softener_N ;
-lin straightener_N = mkN "straightener" "straighteners" ;
-lin shortener_N = mkN "shortener" "shorteners" ;
-lin fastener_N = mkN "fastener" "fasteners" ;
-lin 'snap-fastener_N' = mkN "snap-fastener" "snap-fasteners" ; -- compound fastener_N ;
-lin 'zip-fastener_N' = mkN "zip-fastener" "zip-fasteners" ; -- compound fastener_N ;
-lin listener_N = mkN "listener" "listeners" ;
-lin scrivener_N = mkN "scrivener" "scriveners" ;
-lin convener_N = mkN "convener" "conveners" ;
-lin campaigner_N = mkN "campaigner" "campaigners" ;
-lin foreigner_N = mkN "foreigner" "foreigners" ;
-lin signer_N = mkN "signer" "signers" ;
-lin designer_N = mkN "designer" "designers" ; -- compound signer_N ;
-lin consigner_N = mkN "consigner" "consigners" ; -- compound signer_N ;
-lin cosigner_N = mkN "cosigner" "cosigners" ; -- compound signer_N ;
-lin ordainer_N = mkN "ordainer" "ordainers" ;
-lin gainer_N = mkN "gainer" "gainers" ;
-lin bargainer_N = mkN "bargainer" "bargainers" ; -- compound gainer_N ;
-lin trainer_N = mkN "trainer" "trainers" ;
-lin strainer_N = mkN "strainer" "strainers" ; -- notcompound trainer_N ;
-lin 'tea-strainer_N' = mkN "tea-strainer" "tea-strainers" ; -- compound trainer_N ;
-lin restrainer_N = mkN "restrainer" "restrainers" ; -- compound trainer_N ;
-lin retainer_N = mkN "retainer" "retainers" ;
-lin container_N = mkN "container" "containers" ;
-lin entertainer_N = mkN "entertainer" "entertainers" ;
-lin stainer_N = mkN "stainer" "stainers" ;
-lin abstainer_N = mkN "abstainer" "abstainers" ; -- compound stainer_N ;
-lin carabiner_N = mkN "carabiner" "carabiners" ;
-lin diner_N = mkN "diner" "diners" ;
-lin liechtensteiner_N = mkN "liechtensteiner" "liechtensteiners" ;
-lin refiner_N = mkN "refiner" "refiners" ;
-lin shiner_N = mkN "shiner" "shiners" ;
-lin whiner_N = mkN "whiner" "whiners" ;
-lin liner_N = mkN "liner" "liners" ;
-lin dubliner_N = mkN "dubliner" "dubliners" ; -- compound liner_N ;
-lin recliner_N = mkN "recliner" "recliners" ; -- compound liner_N ;
-lin headliner_N = mkN "headliner" "headliners" ; -- compound liner_N ;
-lin hardliner_N = mkN "hardliner" "hardliners" ; -- compound liner_N ;
-lin eyeliner_N = mkN "eyeliner" "eyeliners" ; -- compound liner_N ;
-lin milliner_N = mkN "milliner" "milliners" ; -- compound liner_N ;
-lin streamliner_N = mkN "streamliner" "streamliners" ; -- compound liner_N ;
-lin airliner_N = mkN "airliner" "airliners" ; -- compound liner_N ;
-lin jetliner_N = mkN "jetliner" "jetliners" ; -- compound liner_N ;
-lin freightliner_N = mkN "freightliner" "freightliners" ; -- compound liner_N ;
-lin miner_N = mkN "miner" "miners" ;
-lin examiner_N = mkN "examiner" "examiners" ; -- compound miner_N ;
-lin 'cross-examiner_N' = mkN "cross-examiner" "cross-examiners" ; -- compound miner_N ;
-lin determiner_N = mkN "determiner" "determiners" ; -- compound miner_N ;
-lin coiner_N = mkN "coiner" "coiners" ;
-lin joiner_N = mkN "joiner" "joiners" ;
-lin mariner_N = mkN "mariner" "mariners" ;
-lin submariner_N = mkN "submariner" "submariners" ; -- compound mariner_N ;
-lin diviner_N = mkN "diviner" "diviners" ;
-lin twiner_N = mkN "twiner" "twiners" ;
-lin banner_N = mkN "banner" "banners" ;
-lin scanner_N = mkN "scanner" "scanners" ;
-lin planner_N = mkN "planner" "planners" ;
-lin manner_N = mkN "manner" "manners" ;
-lin spanner_N = mkN "spanner" "spanners" ;
-lin tanner_N = mkN "tanner" "tanners" ;
-lin tenner_N = mkN "tenner" "tenners" ;
-lin dinner_N = mkN "dinner" "dinners" ;
-lin beginner_N = mkN "beginner" "beginners" ;
-lin skinner_N = mkN "skinner" "skinners" ;
-lin pinner_N = mkN "pinner" "pinners" ;
-lin spinner_N = mkN "spinner" "spinners" ; -- notcompound pinner_N ;
-lin 'money-spinner_N' = mkN "money-spinner" "money-spinners" ; -- compound pinner_N ;
-lin grinner_N = mkN "grinner" "grinners" ;
-lin sinner_N = mkN "sinner" "sinners" ;
-lin winner_N = mkN "winner" "winners" ;
-lin breadwinner_N = mkN "breadwinner" "breadwinners" ; -- compound winner_N ;
-lin cunner_N = mkN "cunner" "cunners" ;
-lin scunner_N = mkN "scunner" "scunners" ; -- notcompound cunner_N ;
-lin gunner_N = mkN "gunner" "gunners" ;
-lin runner_N = mkN "runner" "runners" ;
-lin 'blockade-runner_N' = mkN "blockade-runner" "blockade-runners" ; -- compound runner_N ;
-lin 'rum-runner_N' = mkN "rum-runner" "rum-runners" ; -- compound runner_N ;
-lin 'arms-runner_N' = mkN "arms-runner" "arms-runners" ; -- compound runner_N ;
-lin roadrunner_N = mkN "roadrunner" "roadrunners" ; -- compound runner_N ;
-lin racerunner_N = mkN "racerunner" "racerunners" ; -- compound runner_N ;
-lin forerunner_N = mkN "forerunner" "forerunners" ; -- compound runner_N ;
-lin rumrunner_N = mkN "rumrunner" "rumrunners" ; -- compound runner_N ;
-lin gunrunner_N = mkN "gunrunner" "gunrunners" ; -- compound runner_N ;
-lin stunner_N = mkN "stunner" "stunners" ;
-lin boner_N = mkN "boner" "boners" ;
-lin falconer_N = mkN "falconer" "falconers" ;
-lin londoner_N = mkN "londoner" "londoners" ;
-lin pardoner_N = mkN "pardoner" "pardoners" ;
-lin bludgeoner_N = mkN "bludgeoner" "bludgeoners" ;
-lin goner_N = mkN "goner" "goners" ;
-lin wagoner_N = mkN "wagoner" "wagoners" ; -- compound goner_N ;
-lin waggoner_N = mkN "waggoner" "waggoners" ; -- compound goner_N ;
-lin marathoner_N = mkN "marathoner" "marathoners" ;
-lin parishioner_N = mkN "parishioner" "parishioners" ;
-lin pensioner_N = mkN "pensioner" "pensioners" ;
-lin reversioner_N = mkN "reversioner" "reversioners" ;
-lin commissioner_N = mkN "commissioner" "commissioners" ;
-lin probationer_N = mkN "probationer" "probationers" ;
-lin vacationer_N = mkN "vacationer" "vacationers" ;
-lin stationer_N = mkN "stationer" "stationers" ;
-lin confectioner_N = mkN "confectioner" "confectioners" ;
-lin exhibitioner_N = mkN "exhibitioner" "exhibitioners" ;
-lin conditioner_N = mkN "conditioner" "conditioners" ;
-lin practitioner_N = mkN "practitioner" "practitioners" ;
-lin petitioner_N = mkN "petitioner" "petitioners" ;
-lin mentioner_N = mkN "mentioner" "mentioners" ;
-lin questioner_N = mkN "questioner" "questioners" ;
-lin executioner_N = mkN "executioner" "executioners" ;
-lin electrocutioner_N = mkN "electrocutioner" "electrocutioners" ;
-lin reckoner_N = mkN "reckoner" "reckoners" ;
-lin loner_N = mkN "loner" "loners" ;
-lin almoner_N = mkN "almoner" "almoners" ;
-lin commoner_N = mkN "commoner" "commoners" ;
-lin schooner_N = mkN "schooner" "schooners" ;
-lin harpooner_N = mkN "harpooner" "harpooners" ;
-lin crooner_N = mkN "crooner" "crooners" ;
-lin coroner_N = mkN "coroner" "coroners" ;
-lin reasoner_N = mkN "reasoner" "reasoners" ;
-lin seasoner_N = mkN "seasoner" "seasoners" ;
-lin poisoner_N = mkN "poisoner" "poisoners" ;
-lin prisoner_N = mkN "prisoner" "prisoners" ;
-lin toner_N = mkN "toner" "toners" ;
-lin stoner_N = mkN "stoner" "stoners" ; -- notcompound toner_N ;
-lin darner_N = mkN "darner" "darners" ;
-lin earner_N = mkN "earner" "earners" ;
-lin 'wage-earner_N' = mkN "wage-earner" "wage-earners" ; -- compound earner_N ;
-lin learner_N = mkN "learner" "learners" ; -- notcompound earner_N ;
-lin garner_N = mkN "garner" "garners" ;
-lin warner_N = mkN "warner" "warners" ;
-lin northerner_N = mkN "northerner" "northerners" ;
-lin southerner_N = mkN "southerner" "southerners" ;
-lin easterner_N = mkN "easterner" "easterners" ;
-lin westerner_N = mkN "westerner" "westerners" ;
-lin corner_N = mkN "corner" "corners" ;
-lin burner_N = mkN "burner" "burners" ;
-lin 'charcoal-burner_N' = mkN "charcoal-burner" "charcoal-burners" ; -- compound burner_N ;
-lin 'oil-burner_N' = mkN "oil-burner" "oil-burners" ; -- compound burner_N ;
-lin 'pilot-burner_N' = mkN "pilot-burner" "pilot-burners" ; -- compound burner_N ;
-lin barnburner_N = mkN "barnburner" "barnburners" ; -- compound burner_N ;
-lin afterburner_N = mkN "afterburner" "afterburners" ; -- compound burner_N ;
-lin sojourner_N = mkN "sojourner" "sojourners" ;
-lin mourner_N = mkN "mourner" "mourners" ;
-lin spurner_N = mkN "spurner" "spurners" ;
-lin turner_N = mkN "turner" "turners" ;
-lin centner_N = mkN "centner" "centners" ;
-lin vintner_N = mkN "vintner" "vintners" ;
-lin partner_N = mkN "partner" "partners" ;
-lin 'sparring-partner_N' = mkN "sparring-partner" "sparring-partners" ; -- compound partner_N ;
-lin copartner_N = mkN "copartner" "copartners" ; -- compound partner_N ;
-lin pruner_N = mkN "pruner" "pruners" ;
-lin tuner_N = mkN "tuner" "tuners" ;
-lin spawner_N = mkN "spawner" "spawners" ;
-lin yawner_N = mkN "yawner" "yawners" ;
-lin owner_N = mkN "owner" "owners" ;
-lin 'part-owner_N' = mkN "part-owner" "part-owners" ; -- compound owner_N ;
-lin landowner_N = mkN "landowner" "landowners" ; -- compound owner_N ;
-lin sundowner_N = mkN "sundowner" "sundowners" ; -- compound owner_N ;
-lin homeowner_N = mkN "homeowner" "homeowners" ; -- compound owner_N ;
-lin shipowner_N = mkN "shipowner" "shipowners" ; -- compound owner_N ;
-lin boer_N = mkN "boer" "boers" ;
-lin doer_N = mkN "doer" "doers" ;
-lin 'evil-doer_N' = mkN "evil-doer" "evil-doers" ; -- compound doer_N ;
-lin 'well-doer_N' = mkN "well-doer" "well-doers" ; -- compound doer_N ;
-lin wrongdoer_N = mkN "wrongdoer" "wrongdoers" ; -- compound doer_N ;
-lin undoer_N = mkN "undoer" "undoers" ; -- compound doer_N ;
-lin operagoer_N = mkN "operagoer" "operagoers" ;
-lin moviegoer_N = mkN "moviegoer" "moviegoers" ;
-lin theatregoer_N = mkN "theatregoer" "theatregoers" ;
-lin churchgoer_N = mkN "churchgoer" "churchgoers" ;
-lin chapelgoer_N = mkN "chapelgoer" "chapelgoers" ;
-lin playgoer_N = mkN "playgoer" "playgoers" ;
-lin partygoer_N = mkN "partygoer" "partygoers" ;
-lin wooer_N = mkN "wooer" "wooers" ;
-lin caper_N = mkN "caper" "capers" ;
-lin reaper_N = mkN "reaper" "reapers" ;
-lin shaper_N = mkN "shaper" "shapers" ;
-lin diaper_N = mkN "diaper" "diapers" ;
-lin paper_N = mkN "paper" "papers" ;
-lin 'rice-paper_N' = mkN "rice-paper" "rice-papers" ; -- compound paper_N ;
-lin 'cartridge-paper_N' = mkN "cartridge-paper" "cartridge-papers" ; -- compound paper_N ;
-lin 'cigarette-paper_N' = mkN "cigarette-paper" "cigarette-papers" ; -- compound paper_N ;
-lin 'tracing-paper_N' = mkN "tracing-paper" "tracing-papers" ; -- compound paper_N ;
-lin 'writing-paper_N' = mkN "writing-paper" "writing-papers" ; -- compound paper_N ;
-lin 'blotting-paper_N' = mkN "blotting-paper" "blotting-papers" ; -- compound paper_N ;
-lin 'oil-paper_N' = mkN "oil-paper" "oil-papers" ; -- compound paper_N ;
-lin 'carbon-paper_N' = mkN "carbon-paper" "carbon-papers" ; -- compound paper_N ;
-lin 'order-paper_N' = mkN "order-paper" "order-papers" ; -- compound paper_N ;
-lin 'litmus-paper_N' = mkN "litmus-paper" "litmus-papers" ; -- compound paper_N ;
-lin 'toilet-paper_N' = mkN "toilet-paper" "toilet-papers" ; -- compound paper_N ;
-lin 'wax-paper_N' = mkN "wax-paper" "wax-papers" ; -- compound paper_N ;
-lin sandpaper_N = mkN "sandpaper" "sandpapers" ; -- compound paper_N ;
-lin notepaper_N = mkN "notepaper" "notepapers" ; -- compound paper_N ;
-lin oilpaper_N = mkN "oilpaper" "oilpapers" ; -- compound paper_N ;
-lin wallpaper_N = mkN "wallpaper" "wallpapers" ; -- compound paper_N ;
-lin newspaper_N = mkN "newspaper" "newspapers" ; -- compound paper_N ;
-lin flypaper_N = mkN "flypaper" "flypapers" ; -- compound paper_N ;
-lin raper_N = mkN "raper" "rapers" ;
-lin scraper_N = mkN "scraper" "scrapers" ; -- notcompound raper_N ;
-lin skyscraper_N = mkN "skyscraper" "skyscrapers" ; -- compound raper_N ;
-lin draper_N = mkN "draper" "drapers" ; -- notcompound raper_N ;
-lin 'linen-draper_N' = mkN "linen-draper" "linen-drapers" ; -- compound raper_N ;
-lin linendraper_N = mkN "linendraper" "linendrapers" ; -- compound raper_N ;
-lin taper_N = mkN "taper" "tapers" ;
-lin beeper_N = mkN "beeper" "beepers" ;
-lin keeper_N = mkN "keeper" "keepers" ;
-lin 'lock-keeper_N' = mkN "lock-keeper" "lock-keepers" ; -- compound keeper_N ;
-lin 'book-keeper_N' = mkN "book-keeper" "book-keepers" ; -- compound keeper_N ;
-lin 'wicket-keeper_N' = mkN "wicket-keeper" "wicket-keepers" ; -- compound keeper_N ;
-lin peacekeeper_N = mkN "peacekeeper" "peacekeepers" ; -- compound keeper_N ;
-lin beekeeper_N = mkN "beekeeper" "beekeepers" ; -- compound keeper_N ;
-lin gamekeeper_N = mkN "gamekeeper" "gamekeepers" ; -- compound keeper_N ;
-lin timekeeper_N = mkN "timekeeper" "timekeepers" ; -- compound keeper_N ;
-lin scorekeeper_N = mkN "scorekeeper" "scorekeepers" ; -- compound keeper_N ;
-lin housekeeper_N = mkN "housekeeper" "housekeepers" ; -- compound keeper_N ;
-lin gatekeeper_N = mkN "gatekeeper" "gatekeepers" ; -- compound keeper_N ;
-lin bookkeeper_N = mkN "bookkeeper" "bookkeepers" ; -- compound keeper_N ;
-lin goalkeeper_N = mkN "goalkeeper" "goalkeepers" ; -- compound keeper_N ;
-lin tollkeeper_N = mkN "tollkeeper" "tollkeepers" ; -- compound keeper_N ;
-lin innkeeper_N = mkN "innkeeper" "innkeepers" ; -- compound keeper_N ;
-lin shopkeeper_N = mkN "shopkeeper" "shopkeepers" ; -- compound keeper_N ;
-lin doorkeeper_N = mkN "doorkeeper" "doorkeepers" ; -- compound keeper_N ;
-lin greenskeeper_N = mkN "greenskeeper" "greenskeepers" ; -- compound keeper_N ;
-lin sleeper_N = mkN "sleeper" "sleepers" ;
-lin peeper_N = mkN "peeper" "peepers" ;
-lin creeper_N = mkN "creeper" "creepers" ;
-lin honeycreeper_N = mkN "honeycreeper" "honeycreepers" ; -- compound creeper_N ;
-lin steeper_N = mkN "steeper" "steepers" ;
-lin weeper_N = mkN "weeper" "weepers" ;
-lin sweeper_N = mkN "sweeper" "sweepers" ; -- notcompound weeper_N ;
-lin 'carpet-sweeper_N' = mkN "carpet-sweeper" "carpet-sweepers" ; -- compound weeper_N ;
-lin minesweeper_N = mkN "minesweeper" "minesweepers" ; -- compound weeper_N ;
-lin chimneysweeper_N = mkN "chimneysweeper" "chimneysweepers" ; -- compound weeper_N ;
-lin leper_N = mkN "leper" "lepers" ;
-lin worshiper_N = mkN "worshiper" "worshipers" ;
-lin caliper_N = mkN "caliper" "calipers" ;
-lin sniper_N = mkN "sniper" "snipers" ;
-lin juniper_N = mkN "juniper" "junipers" ;
-lin piper_N = mkN "piper" "pipers" ;
-lin sandpiper_N = mkN "sandpiper" "sandpipers" ; -- compound piper_N ;
-lin striper_N = mkN "striper" "stripers" ;
-lin viper_N = mkN "viper" "vipers" ;
-lin wiper_N = mkN "wiper" "wipers" ;
-lin 'windscreen-wiper_N' = mkN "windscreen-wiper" "windscreen-wipers" ; -- compound wiper_N ;
-lin scalper_N = mkN "scalper" "scalpers" ;
-lin helper_N = mkN "helper" "helpers" ;
-lin gulper_N = mkN "gulper" "gulpers" ;
-lin camper_N = mkN "camper" "campers" ;
-lin scamper_N = mkN "scamper" "scampers" ; -- notcompound camper_N ;
-lin damper_N = mkN "damper" "dampers" ;
-lin hamper_N = mkN "hamper" "hampers" ;
-lin stamper_N = mkN "stamper" "stampers" ;
-lin temper_N = mkN "temper" "tempers" ;
-lin distemper_N = mkN "distemper" "distempers" ; -- compound temper_N ;
-lin whimper_N = mkN "whimper" "whimpers" ;
-lin shrimper_N = mkN "shrimper" "shrimpers" ;
-lin simper_N = mkN "simper" "simpers" ;
-lin romper_N = mkN "romper" "rompers" ;
-lin bumper_N = mkN "bumper" "bumpers" ;
-lin dumper_N = mkN "dumper" "dumpers" ;
-lin 'tub-thumper_N' = mkN "tub-thumper" "tub-thumpers" ;
-lin jumper_N = mkN "jumper" "jumpers" ;
-lin lumper_N = mkN "lumper" "lumpers" ;
-lin stumper_N = mkN "stumper" "stumpers" ;
-lin hoper_N = mkN "hoper" "hopers" ;
-lin developer_N = mkN "developer" "developers" ;
-lin walloper_N = mkN "walloper" "wallopers" ;
-lin interloper_N = mkN "interloper" "interlopers" ;
-lin cooper_N = mkN "cooper" "coopers" ;
-lin whooper_N = mkN "whooper" "whoopers" ;
-lin snooper_N = mkN "snooper" "snoopers" ;
-lin trooper_N = mkN "trooper" "troopers" ;
-lin 'storm-trooper_N' = mkN "storm-trooper" "storm-troopers" ; -- compound trooper_N ;
-lin paratrooper_N = mkN "paratrooper" "paratroopers" ; -- compound trooper_N ;
-lin stooper_N = mkN "stooper" "stoopers" ;
-lin roper_N = mkN "roper" "ropers" ;
-lin toper_N = mkN "toper" "topers" ;
-lin clapper_N = mkN "clapper" "clappers" ;
-lin flapper_N = mkN "flapper" "flappers" ;
-lin slapper_N = mkN "slapper" "slappers" ;
-lin backslapper_N = mkN "backslapper" "backslappers" ; -- compound slapper_N ;
-lin kidnapper_N = mkN "kidnapper" "kidnappers" ;
-lin snapper_N = mkN "snapper" "snappers" ;
-lin whippersnapper_N = mkN "whippersnapper" "whippersnappers" ; -- compound snapper_N ;
-lin rapper_N = mkN "rapper" "rappers" ;
-lin 'spirit-rapper_N' = mkN "spirit-rapper" "spirit-rappers" ; -- compound rapper_N ;
-lin trapper_N = mkN "trapper" "trappers" ; -- notcompound rapper_N ;
-lin wrapper_N = mkN "wrapper" "wrappers" ; -- notcompound rapper_N ;
-lin 'dust-wrapper_N' = mkN "dust-wrapper" "dust-wrappers" ; -- compound rapper_N ;
-lin sapper_N = mkN "sapper" "sappers" ;
-lin tapper_N = mkN "tapper" "tappers" ;
-lin zapper_N = mkN "zapper" "zappers" ;
-lin schlepper_N = mkN "schlepper" "schleppers" ;
-lin pepper_N = mkN "pepper" "peppers" ;
-lin 'cayenne pepper_N' = mkN "cayenne pepper" "cayenne peppers" ; -- compound pepper_N ;
-lin stepper_N = mkN "stepper" "steppers" ;
-lin dipper_N = mkN "dipper" "dippers" ;
-lin shipper_N = mkN "shipper" "shippers" ;
-lin worshipper_N = mkN "worshipper" "worshippers" ; -- compound shipper_N ;
-lin kipper_N = mkN "kipper" "kippers" ;
-lin skipper_N = mkN "skipper" "skippers" ; -- notcompound kipper_N ;
-lin mudskipper_N = mkN "mudskipper" "mudskippers" ; -- compound kipper_N ;
-lin clipper_N = mkN "clipper" "clippers" ;
-lin flipper_N = mkN "flipper" "flippers" ;
-lin slipper_N = mkN "slipper" "slippers" ;
-lin nipper_N = mkN "nipper" "nippers" ;
-lin ripper_N = mkN "ripper" "rippers" ;
-lin tripper_N = mkN "tripper" "trippers" ; -- notcompound ripper_N ;
-lin stripper_N = mkN "stripper" "strippers" ; -- notcompound ripper_N ;
-lin sipper_N = mkN "sipper" "sippers" ;
-lin tipper_N = mkN "tipper" "tippers" ;
-lin zipper_N = mkN "zipper" "zippers" ;
-lin copper_N = mkN "copper" "coppers" ;
-lin hopper_N = mkN "hopper" "hoppers" ;
-lin chopper_N = mkN "chopper" "choppers" ; -- notcompound hopper_N ;
-lin clodhopper_N = mkN "clodhopper" "clodhoppers" ; -- compound hopper_N ;
-lin treehopper_N = mkN "treehopper" "treehoppers" ; -- compound hopper_N ;
-lin leafhopper_N = mkN "leafhopper" "leafhoppers" ; -- compound hopper_N ;
-lin froghopper_N = mkN "froghopper" "froghoppers" ; -- compound hopper_N ;
-lin shopper_N = mkN "shopper" "shoppers" ; -- notcompound hopper_N ;
-lin grasshopper_N = mkN "grasshopper" "grasshoppers" ; -- compound hopper_N ;
-lin whopper_N = mkN "whopper" "whoppers" ; -- notcompound hopper_N ;
-lin mopper_N = mkN "mopper" "moppers" ;
-lin popper_N = mkN "popper" "poppers" ;
-lin cropper_N = mkN "cropper" "croppers" ;
-lin sharecropper_N = mkN "sharecropper" "sharecroppers" ; -- compound cropper_N ;
-lin dropper_N = mkN "dropper" "droppers" ;
-lin eavesdropper_N = mkN "eavesdropper" "eavesdroppers" ; -- compound dropper_N ;
-lin topper_N = mkN "topper" "toppers" ;
-lin stopper_N = mkN "stopper" "stoppers" ; -- notcompound topper_N ;
-lin doorstopper_N = mkN "doorstopper" "doorstoppers" ; -- compound topper_N ;
-lin upper_N = mkN "upper" "uppers" ;
-lin scupper_N = mkN "scupper" "scuppers" ; -- notcompound upper_N ;
-lin crupper_N = mkN "crupper" "cruppers" ; -- notcompound upper_N ;
-lin supper_N = mkN "supper" "suppers" ; -- notcompound upper_N ;
-lin carper_N = mkN "carper" "carpers" ;
-lin harper_N = mkN "harper" "harpers" ;
-lin sharper_N = mkN "sharper" "sharpers" ; -- notcompound harper_N ;
-lin 'card-sharper_N' = mkN "card-sharper" "card-sharpers" ; -- compound harper_N ;
-lin usurper_N = mkN "usurper" "usurpers" ;
-lin asper_N = mkN "asper" "aspers" ;
-lin jasper_N = mkN "jasper" "jaspers" ; -- notcompound asper_N ;
-lin vesper_N = mkN "vesper" "vespers" ;
-lin whisper_N = mkN "whisper" "whispers" ;
-lin 'stage-whisper_N' = mkN "stage-whisper" "stage-whispers" ; -- compound whisper_N ;
-lin lisper_N = mkN "lisper" "lispers" ;
-lin scauper_N = mkN "scauper" "scaupers" ;
-lin pauper_N = mkN "pauper" "paupers" ;
-lin grouper_N = mkN "grouper" "groupers" ;
-lin trouper_N = mkN "trouper" "troupers" ;
-lin peasouper_N = mkN "peasouper" "peasoupers" ;
-lin super_N = mkN "super" "supers" ;
-lin bearer_N = mkN "bearer" "bearers" ;
-lin 'standard-bearer_N' = mkN "standard-bearer" "standard-bearers" ; -- compound bearer_N ;
-lin 'mace-bearer_N' = mkN "mace-bearer" "mace-bearers" ; -- compound bearer_N ;
-lin 'office-bearer_N' = mkN "office-bearer" "office-bearers" ; -- compound bearer_N ;
-lin 'tale-bearer_N' = mkN "tale-bearer" "tale-bearers" ; -- compound bearer_N ;
-lin 'cup-bearer_N' = mkN "cup-bearer" "cup-bearers" ; -- compound bearer_N ;
-lin 'stretcher-bearer_N' = mkN "stretcher-bearer" "stretcher-bearers" ; -- compound bearer_N ;
-lin macebearer_N = mkN "macebearer" "macebearers" ; -- compound bearer_N ;
-lin torchbearer_N = mkN "torchbearer" "torchbearers" ; -- compound bearer_N ;
-lin pallbearer_N = mkN "pallbearer" "pallbearers" ; -- compound bearer_N ;
-lin trainbearer_N = mkN "trainbearer" "trainbearers" ; -- compound bearer_N ;
-lin cupbearer_N = mkN "cupbearer" "cupbearers" ; -- compound bearer_N ;
-lin hearer_N = mkN "hearer" "hearers" ;
-lin shearer_N = mkN "shearer" "shearers" ; -- notcompound hearer_N ;
-lin wearer_N = mkN "wearer" "wearers" ;
-lin swearer_N = mkN "swearer" "swearers" ; -- notcompound wearer_N ;
-lin seafarer_N = mkN "seafarer" "seafarers" ;
-lin wayfarer_N = mkN "wayfarer" "wayfarers" ;
-lin snarer_N = mkN "snarer" "snarers" ;
-lin roarer_N = mkN "roarer" "roarers" ;
-lin parer_N = mkN "parer" "parers" ;
-lin sparer_N = mkN "sparer" "sparers" ; -- notcompound parer_N ;
-lin starer_N = mkN "starer" "starers" ;
-lin jabberer_N = mkN "jabberer" "jabberers" ;
-lin blubberer_N = mkN "blubberer" "blubberers" ;
-lin slumberer_N = mkN "slumberer" "slumberers" ;
-lin sorcerer_N = mkN "sorcerer" "sorcerers" ;
-lin dodderer_N = mkN "dodderer" "dodderers" ;
-lin embroiderer_N = mkN "embroiderer" "embroiderers" ;
-lin solderer_N = mkN "solderer" "solderers" ;
-lin philanderer_N = mkN "philanderer" "philanderers" ;
-lin slanderer_N = mkN "slanderer" "slanderers" ;
-lin panderer_N = mkN "panderer" "panderers" ;
-lin wanderer_N = mkN "wanderer" "wanderers" ;
-lin surrenderer_N = mkN "surrenderer" "surrenderers" ;
-lin wonderer_N = mkN "wonderer" "wonderers" ;
-lin thunderer_N = mkN "thunderer" "thunderers" ;
-lin blunderer_N = mkN "blunderer" "blunderers" ;
-lin plunderer_N = mkN "plunderer" "plunderers" ;
-lin orderer_N = mkN "orderer" "orderers" ;
-lin borderer_N = mkN "borderer" "borderers" ; -- notcompound orderer_N ;
-lin murderer_N = mkN "murderer" "murderers" ;
-lin powderer_N = mkN "powderer" "powderers" ;
-lin cheerer_N = mkN "cheerer" "cheerers" ;
-lin sneerer_N = mkN "sneerer" "sneerers" ;
-lin offerer_N = mkN "offerer" "offerers" ;
-lin sufferer_N = mkN "sufferer" "sufferers" ;
-lin pilferer_N = mkN "pilferer" "pilferers" ;
-lin transferer_N = mkN "transferer" "transferers" ;
-lin staggerer_N = mkN "staggerer" "staggerers" ;
-lin swaggerer_N = mkN "swaggerer" "swaggerers" ;
-lin lingerer_N = mkN "lingerer" "lingerers" ;
-lin malingerer_N = mkN "malingerer" "malingerers" ; -- compound lingerer_N ;
-lin decipherer_N = mkN "decipherer" "decipherers" ;
-lin gatherer_N = mkN "gatherer" "gatherers" ;
-lin tinkerer_N = mkN "tinkerer" "tinkerers" ;
-lin stammerer_N = mkN "stammerer" "stammerers" ;
-lin wallpaperer_N = mkN "wallpaperer" "wallpaperers" ;
-lin pamperer_N = mkN "pamperer" "pamperers" ;
-lin simperer_N = mkN "simperer" "simperers" ;
-lin whisperer_N = mkN "whisperer" "whisperers" ;
-lin caterer_N = mkN "caterer" "caterers" ;
-lin waterer_N = mkN "waterer" "waterers" ;
-lin slaughterer_N = mkN "slaughterer" "slaughterers" ;
-lin loiterer_N = mkN "loiterer" "loiterers" ;
-lin fruiterer_N = mkN "fruiterer" "fruiterers" ;
-lin adulterer_N = mkN "adulterer" "adulterers" ;
-lin poulterer_N = mkN "poulterer" "poulterers" ;
-lin saunterer_N = mkN "saunterer" "saunterers" ;
-lin barterer_N = mkN "barterer" "barterers" ;
-lin plasterer_N = mkN "plasterer" "plasterers" ;
-lin roisterer_N = mkN "roisterer" "roisterers" ;
-lin upholsterer_N = mkN "upholsterer" "upholsterers" ;
-lin chatterer_N = mkN "chatterer" "chatterers" ;
-lin flatterer_N = mkN "flatterer" "flatterers" ;
-lin letterer_N = mkN "letterer" "letterers" ;
-lin litterer_N = mkN "litterer" "litterers" ;
-lin titterer_N = mkN "titterer" "titterers" ;
-lin twitterer_N = mkN "twitterer" "twitterers" ;
-lin potterer_N = mkN "potterer" "potterers" ;
-lin utterer_N = mkN "utterer" "utterers" ;
-lin mutterer_N = mkN "mutterer" "mutterers" ; -- notcompound utterer_N ;
-lin putterer_N = mkN "putterer" "putterers" ; -- notcompound utterer_N ;
-lin stutterer_N = mkN "stutterer" "stutterers" ; -- notcompound utterer_N ;
-lin waverer_N = mkN "waverer" "waverers" ;
-lin deliverer_N = mkN "deliverer" "deliverers" ;
-lin discoverer_N = mkN "discoverer" "discoverers" ;
-lin maneuverer_N = mkN "maneuverer" "maneuverers" ;
-lin führer_N = mkN "führer" "führers" ;
-lin repairer_N = mkN "repairer" "repairers" ;
-lin impairer_N = mkN "impairer" "impairers" ;
-lin admirer_N = mkN "admirer" "admirers" ;
-lin perspirer_N = mkN "perspirer" "perspirers" ;
-lin acquirer_N = mkN "acquirer" "acquirers" ;
-lin enquirer_N = mkN "enquirer" "enquirers" ;
-lin inquirer_N = mkN "inquirer" "inquirers" ;
-lin wirer_N = mkN "wirer" "wirers" ;
-lin borer_N = mkN "borer" "borers" ;
-lin laborer_N = mkN "laborer" "laborers" ; -- compound borer_N ;
-lin woodborer_N = mkN "woodborer" "woodborers" ; -- compound borer_N ;
-lin corer_N = mkN "corer" "corers" ;
-lin succorer_N = mkN "succorer" "succorers" ; -- compound corer_N ;
-lin scorer_N = mkN "scorer" "scorers" ; -- notcompound corer_N ;
-lin adorer_N = mkN "adorer" "adorers" ;
-lin explorer_N = mkN "explorer" "explorers" ;
-lin armorer_N = mkN "armorer" "armorers" ;
-lin snorer_N = mkN "snorer" "snorers" ;
-lin restorer_N = mkN "restorer" "restorers" ;
-lin flavorer_N = mkN "flavorer" "flavorers" ;
-lin conferrer_N = mkN "conferrer" "conferrers" ;
-lin stirrer_N = mkN "stirrer" "stirrers" ;
-lin abhorrer_N = mkN "abhorrer" "abhorrers" ;
-lin schnorrer_N = mkN "schnorrer" "schnorrers" ;
-lin demurrer_N = mkN "demurrer" "demurrers" ;
-lin procurer_N = mkN "procurer" "procurers" ;
-lin abjurer_N = mkN "abjurer" "abjurers" ;
-lin conjurer_N = mkN "conjurer" "conjurers" ;
-lin perjurer_N = mkN "perjurer" "perjurers" ;
-lin labourer_N = mkN "labourer" "labourers" ;
-lin 'day-labourer_N' = mkN "day-labourer" "day-labourers" ; -- compound labourer_N ;
-lin scourer_N = mkN "scourer" "scourers" ;
-lin armourer_N = mkN "armourer" "armourers" ;
-lin devourer_N = mkN "devourer" "devourers" ;
-lin measurer_N = mkN "measurer" "measurers" ;
-lin treasurer_N = mkN "treasurer" "treasurers" ;
-lin usurer_N = mkN "usurer" "usurers" ;
-lin manufacturer_N = mkN "manufacturer" "manufacturers" ;
-lin lecturer_N = mkN "lecturer" "lecturers" ;
-lin venturer_N = mkN "venturer" "venturers" ;
-lin adventurer_N = mkN "adventurer" "adventurers" ; -- compound venturer_N ;
-lin torturer_N = mkN "torturer" "torturers" ;
-lin posturer_N = mkN "posturer" "posturers" ;
-lin manoeuvrer_N = mkN "manoeuvrer" "manoeuvrers" ;
-lin debaser_N = mkN "debaser" "debasers" ;
-lin pleaser_N = mkN "pleaser" "pleasers" ;
-lin appeaser_N = mkN "appeaser" "appeasers" ;
-lin greaser_N = mkN "greaser" "greasers" ;
-lin teaser_N = mkN "teaser" "teasers" ;
-lin 'brain-teaser_N' = mkN "brain-teaser" "brain-teasers" ; -- compound teaser_N ;
-lin chaser_N = mkN "chaser" "chasers" ;
-lin steeplechaser_N = mkN "steeplechaser" "steeplechasers" ; -- compound chaser_N ;
-lin purchaser_N = mkN "purchaser" "purchasers" ; -- compound chaser_N ;
-lin laser_N = mkN "laser" "lasers" ;
-lin maser_N = mkN "maser" "masers" ;
-lin eraser_N = mkN "eraser" "erasers" ;
-lin kaiser_N = mkN "kaiser" "kaisers" ;
-lin raiser_N = mkN "raiser" "raisers" ;
-lin 'curtain-raiser_N' = mkN "curtain-raiser" "curtain-raisers" ; -- compound raiser_N ;
-lin fundraiser_N = mkN "fundraiser" "fundraisers" ; -- compound raiser_N ;
-lin appraiser_N = mkN "appraiser" "appraisers" ; -- compound raiser_N ;
-lin miser_N = mkN "miser" "misers" ;
-lin promiser_N = mkN "promiser" "promisers" ; -- compound miser_N ;
-lin compromiser_N = mkN "compromiser" "compromisers" ; -- compound miser_N ;
-lin organiser_N = mkN "organiser" "organisers" ;
-lin riser_N = mkN "riser" "risers" ;
-lin surpriser_N = mkN "surpriser" "surprisers" ; -- compound riser_N ;
-lin advertiser_N = mkN "advertiser" "advertisers" ;
-lin bruiser_N = mkN "bruiser" "bruisers" ;
-lin cruiser_N = mkN "cruiser" "cruisers" ;
-lin 'battle-cruiser_N' = mkN "battle-cruiser" "battle-cruisers" ; -- compound cruiser_N ;
-lin adviser_N = mkN "adviser" "advisers" ;
-lin reviser_N = mkN "reviser" "revisers" ;
-lin cleanser_N = mkN "cleanser" "cleansers" ;
-lin merganser_N = mkN "merganser" "mergansers" ;
-lin censer_N = mkN "censer" "censers" ;
-lin licenser_N = mkN "licenser" "licensers" ; -- compound censer_N ;
-lin condenser_N = mkN "condenser" "condensers" ;
-lin dispenser_N = mkN "dispenser" "dispensers" ;
-lin loser_N = mkN "loser" "losers" ;
-lin closer_N = mkN "closer" "closers" ; -- notcompound loser_N ;
-lin poser_N = mkN "poser" "posers" ;
-lin composer_N = mkN "composer" "composers" ; -- compound poser_N ;
-lin proposer_N = mkN "proposer" "proposers" ; -- compound poser_N ;
-lin parser_N = mkN "parser" "parsers" ;
-lin traverser_N = mkN "traverser" "traversers" ;
-lin endorser_N = mkN "endorser" "endorsers" ;
-lin nurser_N = mkN "nurser" "nursers" ;
-lin courser_N = mkN "courser" "coursers" ;
-lin purser_N = mkN "purser" "pursers" ;
-lin passer_N = mkN "passer" "passers" ;
-lin trespasser_N = mkN "trespasser" "trespassers" ; -- compound passer_N ;
-lin harasser_N = mkN "harasser" "harassers" ;
-lin canvasser_N = mkN "canvasser" "canvassers" ;
-lin dresser_N = mkN "dresser" "dressers" ;
-lin hairdresser_N = mkN "hairdresser" "hairdressers" ; -- compound dresser_N ;
-lin guesser_N = mkN "guesser" "guessers" ;
-lin hisser_N = mkN "hisser" "hissers" ;
-lin kisser_N = mkN "kisser" "kissers" ;
-lin pisser_N = mkN "pisser" "pissers" ;
-lin dosser_N = mkN "dosser" "dossers" ;
-lin tosser_N = mkN "tosser" "tossers" ;
-lin user_N = mkN "user" "users" ;
-lin abuser_N = mkN "abuser" "abusers" ; -- compound user_N ;
-lin accuser_N = mkN "accuser" "accusers" ; -- compound user_N ;
-lin diffuser_N = mkN "diffuser" "diffusers" ; -- compound user_N ;
-lin muser_N = mkN "muser" "musers" ; -- notcompound user_N ;
-lin warehouser_N = mkN "warehouser" "warehousers" ; -- compound user_N ;
-lin mouser_N = mkN "mouser" "mousers" ; -- compound user_N ;
-lin trouser_N = mkN "trouser" "trousers" ; -- compound user_N ;
-lin hawser_N = mkN "hawser" "hawsers" ;
-lin dowser_N = mkN "dowser" "dowsers" ;
-lin browser_N = mkN "browser" "browsers" ;
-lin geyser_N = mkN "geyser" "geysers" ;
-lin breathalyser_N = mkN "breathalyser" "breathalysers" ;
-lin debater_N = mkN "debater" "debaters" ;
-lin eater_N = mkN "eater" "eaters" ;
-lin 'fire-eater_N' = mkN "fire-eater" "fire-eaters" ; -- compound eater_N ;
-lin 'man-eater_N' = mkN "man-eater" "man-eaters" ; -- compound eater_N ;
-lin 'lotus-eater_N' = mkN "lotus-eater" "lotus-eaters" ; -- compound eater_N ;
-lin 'ant-eater_N' = mkN "ant-eater" "ant-eaters" ; -- compound eater_N ;
-lin beater_N = mkN "beater" "beaters" ; -- notcompound eater_N ;
-lin 'gold-beater_N' = mkN "gold-beater" "gold-beaters" ; -- compound eater_N ;
-lin 'egg-beater_N' = mkN "egg-beater" "egg-beaters" ; -- compound eater_N ;
-lin 'carpet-beater_N' = mkN "carpet-beater" "carpet-beaters" ; -- compound eater_N ;
-lin goldbeater_N = mkN "goldbeater" "goldbeaters" ; -- compound eater_N ;
-lin eggbeater_N = mkN "eggbeater" "eggbeaters" ; -- compound eater_N ;
-lin beefeater_N = mkN "beefeater" "beefeaters" ; -- compound eater_N ;
-lin heater_N = mkN "heater" "heaters" ; -- notcompound eater_N ;
-lin 'space-heater_N' = mkN "space-heater" "space-heaters" ; -- compound eater_N ;
-lin windcheater_N = mkN "windcheater" "windcheaters" ; -- compound eater_N ;
-lin theater_N = mkN "theater" "theaters" ; -- notcompound eater_N ;
-lin amphitheater_N = mkN "amphitheater" "amphitheaters" ; -- compound eater_N ;
-lin repeater_N = mkN "repeater" "repeaters" ; -- compound eater_N ;
-lin 'two-seater_N' = mkN "two-seater" "two-seaters" ; -- compound eater_N ;
-lin anteater_N = mkN "anteater" "anteaters" ; -- compound eater_N ;
-lin sweater_N = mkN "sweater" "sweaters" ; -- notcompound eater_N ;
-lin tailgater_N = mkN "tailgater" "tailgaters" ;
-lin hater_N = mkN "hater" "haters" ;
-lin skater_N = mkN "skater" "skaters" ;
-lin speedskater_N = mkN "speedskater" "speedskaters" ; -- compound skater_N ;
-lin inflater_N = mkN "inflater" "inflaters" ;
-lin idolater_N = mkN "idolater" "idolaters" ;
-lin plater_N = mkN "plater" "platers" ;
-lin electroplater_N = mkN "electroplater" "electroplaters" ; -- compound plater_N ;
-lin mater_N = mkN "mater" "maters" ;
-lin 'alma mater_N' = mkN "alma mater" "alma maters" ; -- compound mater_N ;
-lin boater_N = mkN "boater" "boaters" ;
-lin bloater_N = mkN "bloater" "bloaters" ;
-lin floater_N = mkN "floater" "floaters" ;
-lin pater_N = mkN "pater" "paters" ;
-lin 'second-rater_N' = mkN "second-rater" "second-raters" ;
-lin 'third-rater_N' = mkN "third-rater" "third-raters" ;
-lin crater_N = mkN "crater" "craters" ;
-lin grater_N = mkN "grater" "graters" ;
-lin stater_N = mkN "stater" "staters" ;
-lin water_N = mkN "water" "waters" ;
-lin 'soda-water_N' = mkN "soda-water" "soda-waters" ; -- compound water_N ;
-lin 'sea-water_N' = mkN "sea-water" "sea-waters" ; -- compound water_N ;
-lin 'bilge-water_N' = mkN "bilge-water" "bilge-waters" ; -- compound water_N ;
-lin 'rose-water_N' = mkN "rose-water" "rose-waters" ; -- compound water_N ;
-lin 'drinking-water_N' = mkN "drinking-water" "drinking-waters" ; -- compound water_N ;
-lin 'well-water_N' = mkN "well-water" "well-waters" ; -- compound water_N ;
-lin 'barley-water_N' = mkN "barley-water" "barley-waters" ; -- compound water_N ;
-lin seawater_N = mkN "seawater" "seawaters" ; -- compound water_N ;
-lin headwater_N = mkN "headwater" "headwaters" ; -- compound water_N ;
-lin tidewater_N = mkN "tidewater" "tidewaters" ; -- compound water_N ;
-lin limewater_N = mkN "limewater" "limewaters" ; -- compound water_N ;
-lin firewater_N = mkN "firewater" "firewaters" ; -- compound water_N ;
-lin dishwater_N = mkN "dishwater" "dishwaters" ; -- compound water_N ;
-lin breakwater_N = mkN "breakwater" "breakwaters" ; -- compound water_N ;
-lin backwater_N = mkN "backwater" "backwaters" ; -- compound water_N ;
-lin blackwater_N = mkN "blackwater" "blackwaters" ; -- compound water_N ;
-lin rainwater_N = mkN "rainwater" "rainwaters" ; -- compound water_N ;
-lin shearwater_N = mkN "shearwater" "shearwaters" ; -- compound water_N ;
-lin saltwater_N = mkN "saltwater" "saltwaters" ; -- compound water_N ;
-lin meltwater_N = mkN "meltwater" "meltwaters" ; -- compound water_N ;
-lin character_N = mkN "character" "characters" ;
-lin subtracter_N = mkN "subtracter" "subtracters" ;
-lin effecter_N = mkN "effecter" "effecters" ;
-lin perfecter_N = mkN "perfecter" "perfecters" ;
-lin neglecter_N = mkN "neglecter" "neglecters" ;
-lin respecter_N = mkN "respecter" "respecters" ;
-lin sphincter_N = mkN "sphincter" "sphincters" ;
-lin greeter_N = mkN "greeter" "greeters" ;
-lin tweeter_N = mkN "tweeter" "tweeters" ;
-lin catheter_N = mkN "catheter" "catheters" ;
-lin dieter_N = mkN "dieter" "dieters" ;
-lin cricketer_N = mkN "cricketer" "cricketers" ;
-lin supermarketer_N = mkN "supermarketer" "supermarketers" ;
-lin meter_N = mkN "meter" "meters" ;
-lin 'gas-meter_N' = mkN "gas-meter" "gas-meters" ; -- compound meter_N ;
-lin decameter_N = mkN "decameter" "decameters" ; -- compound meter_N ;
-lin diameter_N = mkN "diameter" "diameters" ; -- compound meter_N ;
-lin semidiameter_N = mkN "semidiameter" "semidiameters" ; -- compound meter_N ;
-lin myriameter_N = mkN "myriameter" "myriameters" ; -- compound meter_N ;
-lin parameter_N = mkN "parameter" "parameters" ; -- compound meter_N ;
-lin tetrameter_N = mkN "tetrameter" "tetrameters" ; -- compound meter_N ;
-lin octameter_N = mkN "octameter" "octameters" ; -- compound meter_N ;
-lin pentameter_N = mkN "pentameter" "pentameters" ; -- compound meter_N ;
-lin hexameter_N = mkN "hexameter" "hexameters" ; -- compound meter_N ;
-lin telemeter_N = mkN "telemeter" "telemeters" ; -- compound meter_N ;
-lin dosemeter_N = mkN "dosemeter" "dosemeters" ; -- compound meter_N ;
-lin machmeter_N = mkN "machmeter" "machmeters" ; -- compound meter_N ;
-lin decimeter_N = mkN "decimeter" "decimeters" ; -- compound meter_N ;
-lin millimeter_N = mkN "millimeter" "millimeters" ; -- compound meter_N ;
-lin polarimeter_N = mkN "polarimeter" "polarimeters" ; -- compound meter_N ;
-lin perimeter_N = mkN "perimeter" "perimeters" ; -- compound meter_N ;
-lin calorimeter_N = mkN "calorimeter" "calorimeters" ; -- compound meter_N ;
-lin colorimeter_N = mkN "colorimeter" "colorimeters" ; -- compound meter_N ;
-lin densimeter_N = mkN "densimeter" "densimeters" ; -- compound meter_N ;
-lin tensimeter_N = mkN "tensimeter" "tensimeters" ; -- compound meter_N ;
-lin altimeter_N = mkN "altimeter" "altimeters" ; -- compound meter_N ;
-lin centimeter_N = mkN "centimeter" "centimeters" ; -- compound meter_N ;
-lin gravimeter_N = mkN "gravimeter" "gravimeters" ; -- compound meter_N ;
-lin pelvimeter_N = mkN "pelvimeter" "pelvimeters" ; -- compound meter_N ;
-lin taximeter_N = mkN "taximeter" "taximeters" ; -- compound meter_N ;
-lin pleximeter_N = mkN "pleximeter" "pleximeters" ; -- compound meter_N ;
-lin oximeter_N = mkN "oximeter" "oximeters" ; -- compound meter_N ;
-lin ammeter_N = mkN "ammeter" "ammeters" ; -- compound meter_N ;
-lin milliammeter_N = mkN "milliammeter" "milliammeters" ; -- compound meter_N ;
-lin ohmmeter_N = mkN "ohmmeter" "ohmmeters" ; -- compound meter_N ;
-lin picometer_N = mkN "picometer" "picometers" ; -- compound meter_N ;
-lin viscometer_N = mkN "viscometer" "viscometers" ; -- compound meter_N ;
-lin speedometer_N = mkN "speedometer" "speedometers" ; -- compound meter_N ;
-lin pedometer_N = mkN "pedometer" "pedometers" ; -- compound meter_N ;
-lin odometer_N = mkN "odometer" "odometers" ; -- compound meter_N ;
-lin geometer_N = mkN "geometer" "geometers" ; -- compound meter_N ;
-lin rheometer_N = mkN "rheometer" "rheometers" ; -- compound meter_N ;
-lin mileometer_N = mkN "mileometer" "mileometers" ; -- compound meter_N ;
-lin algometer_N = mkN "algometer" "algometers" ; -- compound meter_N ;
-lin tachometer_N = mkN "tachometer" "tachometers" ; -- compound meter_N ;
-lin radiometer_N = mkN "radiometer" "radiometers" ; -- compound meter_N ;
-lin audiometer_N = mkN "audiometer" "audiometers" ; -- compound meter_N ;
-lin eudiometer_N = mkN "eudiometer" "eudiometers" ; -- compound meter_N ;
-lin heliometer_N = mkN "heliometer" "heliometers" ; -- compound meter_N ;
-lin craniometer_N = mkN "craniometer" "craniometers" ; -- compound meter_N ;
-lin goniometer_N = mkN "goniometer" "goniometers" ; -- compound meter_N ;
-lin variometer_N = mkN "variometer" "variometers" ; -- compound meter_N ;
-lin tensiometer_N = mkN "tensiometer" "tensiometers" ; -- compound meter_N ;
-lin potentiometer_N = mkN "potentiometer" "potentiometers" ; -- compound meter_N ;
-lin kilometer_N = mkN "kilometer" "kilometers" ; -- compound meter_N ;
-lin milometer_N = mkN "milometer" "milometers" ; -- compound meter_N ;
-lin bolometer_N = mkN "bolometer" "bolometers" ; -- compound meter_N ;
-lin dynamometer_N = mkN "dynamometer" "dynamometers" ; -- compound meter_N ;
-lin electrodynamometer_N = mkN "electrodynamometer" "electrodynamometers" ; -- compound meter_N ;
-lin anemometer_N = mkN "anemometer" "anemometers" ; -- compound meter_N ;
-lin thermometer_N = mkN "thermometer" "thermometers" ; -- compound meter_N ;
-lin telethermometer_N = mkN "telethermometer" "telethermometers" ; -- compound meter_N ;
-lin atmometer_N = mkN "atmometer" "atmometers" ; -- compound meter_N ;
-lin manometer_N = mkN "manometer" "manometers" ; -- compound meter_N ;
-lin sphygmomanometer_N = mkN "sphygmomanometer" "sphygmomanometers" ; -- compound meter_N ;
-lin nanometer_N = mkN "nanometer" "nanometers" ; -- compound meter_N ;
-lin galvanometer_N = mkN "galvanometer" "galvanometers" ; -- compound meter_N ;
-lin salinometer_N = mkN "salinometer" "salinometers" ; -- compound meter_N ;
-lin clinometer_N = mkN "clinometer" "clinometers" ; -- compound meter_N ;
-lin declinometer_N = mkN "declinometer" "declinometers" ; -- compound meter_N ;
-lin inclinometer_N = mkN "inclinometer" "inclinometers" ; -- compound meter_N ;
-lin actinometer_N = mkN "actinometer" "actinometers" ; -- compound meter_N ;
-lin chronometer_N = mkN "chronometer" "chronometers" ; -- compound meter_N ;
-lin tonometer_N = mkN "tonometer" "tonometers" ; -- compound meter_N ;
-lin barometer_N = mkN "barometer" "barometers" ; -- compound meter_N ;
-lin katharometer_N = mkN "katharometer" "katharometers" ; -- compound meter_N ;
-lin micrometer_N = mkN "micrometer" "micrometers" ; -- compound meter_N ;
-lin radiomicrometer_N = mkN "radiomicrometer" "radiomicrometers" ; -- compound meter_N ;
-lin hydrometer_N = mkN "hydrometer" "hydrometers" ; -- compound meter_N ;
-lin thermohydrometer_N = mkN "thermohydrometer" "thermohydrometers" ; -- compound meter_N ;
-lin interferometer_N = mkN "interferometer" "interferometers" ; -- compound meter_N ;
-lin spherometer_N = mkN "spherometer" "spherometers" ; -- compound meter_N ;
-lin sclerometer_N = mkN "sclerometer" "sclerometers" ; -- compound meter_N ;
-lin accelerometer_N = mkN "accelerometer" "accelerometers" ; -- compound meter_N ;
-lin hygrometer_N = mkN "hygrometer" "hygrometers" ; -- compound meter_N ;
-lin psychrometer_N = mkN "psychrometer" "psychrometers" ; -- compound meter_N ;
-lin spirometer_N = mkN "spirometer" "spirometers" ; -- compound meter_N ;
-lin electrometer_N = mkN "electrometer" "electrometers" ; -- compound meter_N ;
-lin pyrometer_N = mkN "pyrometer" "pyrometers" ; -- compound meter_N ;
-lin gasometer_N = mkN "gasometer" "gasometers" ; -- compound meter_N ;
-lin hypsometer_N = mkN "hypsometer" "hypsometers" ; -- compound meter_N ;
-lin refractometer_N = mkN "refractometer" "refractometers" ; -- compound meter_N ;
-lin hectometer_N = mkN "hectometer" "hectometers" ; -- compound meter_N ;
-lin reflectometer_N = mkN "reflectometer" "reflectometers" ; -- compound meter_N ;
-lin magnetometer_N = mkN "magnetometer" "magnetometers" ; -- compound meter_N ;
-lin densitometer_N = mkN "densitometer" "densitometers" ; -- compound meter_N ;
-lin sensitometer_N = mkN "sensitometer" "sensitometers" ; -- compound meter_N ;
-lin femtometer_N = mkN "femtometer" "femtometers" ; -- compound meter_N ;
-lin photometer_N = mkN "photometer" "photometers" ; -- compound meter_N ;
-lin microphotometer_N = mkN "microphotometer" "microphotometers" ; -- compound meter_N ;
-lin spectrophotometer_N = mkN "spectrophotometer" "spectrophotometers" ; -- compound meter_N ;
-lin cytophotometer_N = mkN "cytophotometer" "cytophotometers" ; -- compound meter_N ;
-lin cryometer_N = mkN "cryometer" "cryometers" ; -- compound meter_N ;
-lin piezometer_N = mkN "piezometer" "piezometers" ; -- compound meter_N ;
-lin voltmeter_N = mkN "voltmeter" "voltmeters" ; -- compound meter_N ;
-lin millivoltmeter_N = mkN "millivoltmeter" "millivoltmeters" ; -- compound meter_N ;
-lin wattmeter_N = mkN "wattmeter" "wattmeters" ; -- compound meter_N ;
-lin volumeter_N = mkN "volumeter" "volumeters" ; -- compound meter_N ;
-lin fluxmeter_N = mkN "fluxmeter" "fluxmeters" ; -- compound meter_N ;
-lin tachymeter_N = mkN "tachymeter" "tachymeters" ; -- compound meter_N ;
-lin bathymeter_N = mkN "bathymeter" "bathymeters" ; -- compound meter_N ;
-lin dasymeter_N = mkN "dasymeter" "dasymeters" ; -- compound meter_N ;
-lin trumpeter_N = mkN "trumpeter" "trumpeters" ;
-lin interpreter_N = mkN "interpreter" "interpreters" ;
-lin ureter_N = mkN "ureter" "ureters" ;
-lin masseter_N = mkN "masseter" "masseters" ;
-lin riveter_N = mkN "riveter" "riveters" ;
-lin rafter_N = mkN "rafter" "rafters" ;
-lin drafter_N = mkN "drafter" "drafters" ; -- notcompound rafter_N ;
-lin 'scene-shifter_N' = mkN "scene-shifter" "scene-shifters" ;
-lin sceneshifter_N = mkN "sceneshifter" "sceneshifters" ;
-lin shoplifter_N = mkN "shoplifter" "shoplifters" ;
-lin weightlifter_N = mkN "weightlifter" "weightlifters" ;
-lin snifter_N = mkN "snifter" "snifters" ;
-lin drifter_N = mkN "drifter" "drifters" ;
-lin sifter_N = mkN "sifter" "sifters" ;
-lin crofter_N = mkN "crofter" "crofters" ;
-lin freighter_N = mkN "freighter" "freighters" ;
-lin fighter_N = mkN "fighter" "fighters" ;
-lin 'fire-fighter_N' = mkN "fire-fighter" "fire-fighters" ; -- compound fighter_N ;
-lin prizefighter_N = mkN "prizefighter" "prizefighters" ; -- compound fighter_N ;
-lin dogfighter_N = mkN "dogfighter" "dogfighters" ; -- compound fighter_N ;
-lin bullfighter_N = mkN "bullfighter" "bullfighters" ; -- compound fighter_N ;
-lin lighter_N = mkN "lighter" "lighters" ;
-lin blighter_N = mkN "blighter" "blighters" ; -- notcompound lighter_N ;
-lin firelighter_N = mkN "firelighter" "firelighters" ; -- compound lighter_N ;
-lin highlighter_N = mkN "highlighter" "highlighters" ; -- compound lighter_N ;
-lin moonlighter_N = mkN "moonlighter" "moonlighters" ; -- compound lighter_N ;
-lin lamplighter_N = mkN "lamplighter" "lamplighters" ; -- compound lighter_N ;
-lin 'first-nighter_N' = mkN "first-nighter" "first-nighters" ;
-lin overnighter_N = mkN "overnighter" "overnighters" ;
-lin daughter_N = mkN "daughter" "daughters" ;
-lin granddaughter_N = mkN "granddaughter" "granddaughters" ; -- compound daughter_N ;
-lin goddaughter_N = mkN "goddaughter" "goddaughters" ; -- compound daughter_N ;
-lin stepdaughter_N = mkN "stepdaughter" "stepdaughters" ; -- compound daughter_N ;
-lin laughter_N = mkN "laughter" "laughters" ;
-lin slaughter_N = mkN "slaughter" "slaughters" ; -- notcompound laughter_N ;
-lin manslaughter_N = mkN "manslaughter" "manslaughters" ; -- compound laughter_N ;
-lin gaiter_N = mkN "gaiter" "gaiters" ;
-lin plaiter_N = mkN "plaiter" "plaiters" ;
-lin waiter_N = mkN "waiter" "waiters" ;
-lin dumbwaiter_N = mkN "dumbwaiter" "dumbwaiters" ; -- compound waiter_N ;
-lin biter_N = mkN "biter" "biters" ;
-lin backbiter_N = mkN "backbiter" "backbiters" ; -- compound biter_N ;
-lin arbiter_N = mkN "arbiter" "arbiters" ; -- compound biter_N ;
-lin reciter_N = mkN "reciter" "reciters" ;
-lin counterfeiter_N = mkN "counterfeiter" "counterfeiters" ;
-lin dekaliter_N = mkN "dekaliter" "dekaliters" ;
-lin deciliter_N = mkN "deciliter" "deciliters" ;
-lin milliliter_N = mkN "milliliter" "milliliters" ;
-lin centiliter_N = mkN "centiliter" "centiliters" ;
-lin kiloliter_N = mkN "kiloliter" "kiloliters" ;
-lin hectoliter_N = mkN "hectoliter" "hectoliters" ;
-lin miter_N = mkN "miter" "miters" ;
-lin dynamiter_N = mkN "dynamiter" "dynamiters" ; -- compound miter_N ;
-lin limiter_N = mkN "limiter" "limiters" ; -- compound miter_N ;
-lin vomiter_N = mkN "vomiter" "vomiters" ; -- compound miter_N ;
-lin igniter_N = mkN "igniter" "igniters" ;
-lin goiter_N = mkN "goiter" "goiters" ;
-lin exploiter_N = mkN "exploiter" "exploiters" ;
-lin writer_N = mkN "writer" "writers" ;
-lin 'ghost-writer_N' = mkN "ghost-writer" "ghost-writers" ; -- compound writer_N ;
-lin typewriter_N = mkN "typewriter" "typewriters" ; -- compound writer_N ;
-lin teletypewriter_N = mkN "teletypewriter" "teletypewriters" ; -- compound writer_N ;
-lin songwriter_N = mkN "songwriter" "songwriters" ; -- compound writer_N ;
-lin speechwriter_N = mkN "speechwriter" "speechwriters" ; -- compound writer_N ;
-lin screenwriter_N = mkN "screenwriter" "screenwriters" ; -- compound writer_N ;
-lin underwriter_N = mkN "underwriter" "underwriters" ; -- compound writer_N ;
-lin scriptwriter_N = mkN "scriptwriter" "scriptwriters" ; -- compound writer_N ;
-lin ghostwriter_N = mkN "ghostwriter" "ghostwriters" ; -- compound writer_N ;
-lin copywriter_N = mkN "copywriter" "copywriters" ; -- compound writer_N ;
-lin titer_N = mkN "titer" "titers" ;
-lin recruiter_N = mkN "recruiter" "recruiters" ;
-lin halter_N = mkN "halter" "halters" ;
-lin salter_N = mkN "salter" "salters" ;
-lin psalter_N = mkN "psalter" "psalters" ; -- notcompound salter_N ;
-lin shelter_N = mkN "shelter" "shelters" ;
-lin 'helter-skelter_N' = mkN "helter-skelter" "helter-skelters" ;
-lin melter_N = mkN "melter" "melters" ;
-lin smelter_N = mkN "smelter" "smelters" ; -- notcompound melter_N ;
-lin pelter_N = mkN "pelter" "pelters" ;
-lin spelter_N = mkN "spelter" "spelters" ; -- notcompound pelter_N ;
-lin filter_N = mkN "filter" "filters" ;
-lin philter_N = mkN "philter" "philters" ;
-lin kilter_N = mkN "kilter" "kilters" ;
-lin tilter_N = mkN "tilter" "tilters" ;
-lin colter_N = mkN "colter" "colters" ;
-lin molter_N = mkN "molter" "molters" ;
-lin defaulter_N = mkN "defaulter" "defaulters" ;
-lin vaulter_N = mkN "vaulter" "vaulters" ;
-lin coulter_N = mkN "coulter" "coulters" ;
-lin banter_N = mkN "banter" "banters" ;
-lin canter_N = mkN "canter" "canters" ;
-lin decanter_N = mkN "decanter" "decanters" ; -- compound canter_N ;
-lin chanter_N = mkN "chanter" "chanters" ;
-lin enchanter_N = mkN "enchanter" "enchanters" ; -- compound chanter_N ;
-lin trochanter_N = mkN "trochanter" "trochanters" ; -- compound chanter_N ;
-lin 'tam-o\'-shanter_N' = mkN "tam-o'-shanter" "tam-o'-shanters" ;
-lin planter_N = mkN "planter" "planters" ;
-lin supplanter_N = mkN "supplanter" "supplanters" ; -- compound planter_N ;
-lin transplanter_N = mkN "transplanter" "transplanters" ; -- compound planter_N ;
-lin ranter_N = mkN "ranter" "ranters" ;
-lin granter_N = mkN "granter" "granters" ; -- notcompound ranter_N ;
-lin levanter_N = mkN "levanter" "levanters" ;
-lin wanter_N = mkN "wanter" "wanters" ;
-lin center_N = mkN "center" "centers" ;
-lin metacenter_N = mkN "metacenter" "metacenters" ; -- compound center_N ;
-lin epicenter_N = mkN "epicenter" "epicenters" ; -- compound center_N ;
-lin barycenter_N = mkN "barycenter" "barycenters" ; -- compound center_N ;
-lin experimenter_N = mkN "experimenter" "experimenters" ;
-lin tormenter_N = mkN "tormenter" "tormenters" ;
-lin carpenter_N = mkN "carpenter" "carpenters" ;
-lin renter_N = mkN "renter" "renters" ;
-lin presenter_N = mkN "presenter" "presenters" ;
-lin assenter_N = mkN "assenter" "assenters" ;
-lin dissenter_N = mkN "dissenter" "dissenters" ;
-lin tenter_N = mkN "tenter" "tenters" ;
-lin venter_N = mkN "venter" "venters" ;
-lin painter_N = mkN "painter" "painters" ;
-lin 'word-painter_N' = mkN "word-painter" "word-painters" ; -- compound painter_N ;
-lin 'scene-painter_N' = mkN "scene-painter" "scene-painters" ; -- compound painter_N ;
-lin 'sign-painter_N' = mkN "sign-painter" "sign-painters" ; -- compound painter_N ;
-lin splinter_N = mkN "splinter" "splinters" ;
-lin jointer_N = mkN "jointer" "jointers" ;
-lin anointer_N = mkN "anointer" "anointers" ;
-lin pointer_N = mkN "pointer" "pointers" ;
-lin printer_N = mkN "printer" "printers" ;
-lin teleprinter_N = mkN "teleprinter" "teleprinters" ; -- compound printer_N ;
-lin sprinter_N = mkN "sprinter" "sprinters" ; -- notcompound printer_N ;
-lin tinter_N = mkN "tinter" "tinters" ;
-lin stinter_N = mkN "stinter" "stinters" ; -- notcompound tinter_N ;
-lin squinter_N = mkN "squinter" "squinters" ;
-lin winter_N = mkN "winter" "winters" ;
-lin midwinter_N = mkN "midwinter" "midwinters" ; -- compound winter_N ;
-lin saunter_N = mkN "saunter" "saunters" ;
-lin vaunter_N = mkN "vaunter" "vaunters" ;
-lin bunter_N = mkN "bunter" "bunters" ;
-lin hunter_N = mkN "hunter" "hunters" ;
-lin 'head-hunter_N' = mkN "head-hunter" "head-hunters" ; -- compound hunter_N ;
-lin 'bug-hunter_N' = mkN "bug-hunter" "bug-hunters" ; -- compound hunter_N ;
-lin 'lion-hunter_N' = mkN "lion-hunter" "lion-hunters" ; -- compound hunter_N ;
-lin headhunter_N = mkN "headhunter" "headhunters" ; -- compound hunter_N ;
-lin shunter_N = mkN "shunter" "shunters" ; -- notcompound hunter_N ;
-lin pothunter_N = mkN "pothunter" "pothunters" ; -- compound hunter_N ;
-lin foxhunter_N = mkN "foxhunter" "foxhunters" ; -- compound hunter_N ;
-lin counter_N = mkN "counter" "counters" ;
-lin 'snack-counter_N' = mkN "snack-counter" "snack-counters" ; -- compound counter_N ;
-lin encounter_N = mkN "encounter" "encounters" ; -- compound counter_N ;
-lin mounter_N = mkN "mounter" "mounters" ;
-lin punter_N = mkN "punter" "punters" ;
-lin grunter_N = mkN "grunter" "grunters" ;
-lin scoter_N = mkN "scoter" "scoters" ;
-lin rioter_N = mkN "rioter" "rioters" ;
-lin promoter_N = mkN "promoter" "promoters" ;
-lin freebooter_N = mkN "freebooter" "freebooters" ;
-lin cooter_N = mkN "cooter" "cooters" ;
-lin scooter_N = mkN "scooter" "scooters" ; -- notcompound cooter_N ;
-lin footer_N = mkN "footer" "footers" ;
-lin 'six-footer_N' = mkN "six-footer" "six-footers" ; -- compound footer_N ;
-lin hooter_N = mkN "hooter" "hooters" ;
-lin shooter_N = mkN "shooter" "shooters" ; -- notcompound hooter_N ;
-lin 'line-shooter_N' = mkN "line-shooter" "line-shooters" ; -- compound hooter_N ;
-lin 'six-shooter_N' = mkN "six-shooter" "six-shooters" ; -- compound hooter_N ;
-lin peashooter_N = mkN "peashooter" "peashooters" ; -- compound hooter_N ;
-lin troubleshooter_N = mkN "troubleshooter" "troubleshooters" ; -- compound hooter_N ;
-lin crapshooter_N = mkN "crapshooter" "crapshooters" ; -- compound hooter_N ;
-lin trapshooter_N = mkN "trapshooter" "trapshooters" ; -- compound hooter_N ;
-lin sharpshooter_N = mkN "sharpshooter" "sharpshooters" ; -- compound hooter_N ;
-lin looter_N = mkN "looter" "looters" ;
-lin garroter_N = mkN "garroter" "garroters" ;
-lin quoter_N = mkN "quoter" "quoters" ;
-lin voter_N = mkN "voter" "voters" ;
-lin adapter_N = mkN "adapter" "adapters" ;
-lin chapter_N = mkN "chapter" "chapters" ;
-lin scepter_N = mkN "scepter" "scepters" ;
-lin tempter_N = mkN "tempter" "tempters" ;
-lin prompter_N = mkN "prompter" "prompters" ;
-lin teleprompter_N = mkN "teleprompter" "teleprompters" ; -- compound prompter_N ;
-lin sumpter_N = mkN "sumpter" "sumpters" ;
-lin helicopter_N = mkN "helicopter" "helicopters" ;
-lin orthopter_N = mkN "orthopter" "orthopters" ;
-lin diopter_N = mkN "diopter" "diopters" ;
-lin thysanopter_N = mkN "thysanopter" "thysanopters" ;
-lin interrupter_N = mkN "interrupter" "interrupters" ;
-lin barter_N = mkN "barter" "barters" ;
-lin carter_N = mkN "carter" "carters" ;
-lin darter_N = mkN "darter" "darters" ;
-lin garter_N = mkN "garter" "garters" ;
-lin charter_N = mkN "charter" "charters" ;
-lin departer_N = mkN "departer" "departers" ;
-lin starter_N = mkN "starter" "starters" ;
-lin 'self-starter_N' = mkN "self-starter" "self-starters" ; -- compound starter_N ;
-lin 'kick-starter_N' = mkN "kick-starter" "kick-starters" ; -- compound starter_N ;
-lin nonstarter_N = mkN "nonstarter" "nonstarters" ; -- compound starter_N ;
-lin quarter_N = mkN "quarter" "quarters" ;
-lin 'three-quarter_N' = mkN "three-quarter" "three-quarters" ; -- compound quarter_N ;
-lin headquarter_N = mkN "headquarter" "headquarters" ; -- compound quarter_N ;
-lin hindquarter_N = mkN "hindquarter" "hindquarters" ; -- compound quarter_N ;
-lin forequarter_N = mkN "forequarter" "forequarters" ; -- compound quarter_N ;
-lin deserter_N = mkN "deserter" "deserters" ;
-lin asserter_N = mkN "asserter" "asserters" ;
-lin inverter_N = mkN "inverter" "inverters" ;
-lin converter_N = mkN "converter" "converters" ;
-lin comforter_N = mkN "comforter" "comforters" ;
-lin snorter_N = mkN "snorter" "snorters" ;
-lin porter_N = mkN "porter" "porters" ;
-lin 'night-porter_N' = mkN "night-porter" "night-porters" ; -- compound porter_N ;
-lin reporter_N = mkN "reporter" "reporters" ; -- compound porter_N ;
-lin importer_N = mkN "importer" "importers" ; -- compound porter_N ;
-lin supporter_N = mkN "supporter" "supporters" ; -- compound porter_N ;
-lin transporter_N = mkN "transporter" "transporters" ; -- compound porter_N ;
-lin exporter_N = mkN "exporter" "exporters" ; -- compound porter_N ;
-lin sorter_N = mkN "sorter" "sorters" ;
-lin ragsorter_N = mkN "ragsorter" "ragsorters" ; -- compound sorter_N ;
-lin kicksorter_N = mkN "kicksorter" "kicksorters" ; -- compound sorter_N ;
-lin mailsorter_N = mkN "mailsorter" "mailsorters" ; -- compound sorter_N ;
-lin frankfurter_N = mkN "frankfurter" "frankfurters" ;
-lin aster_N = mkN "aster" "asters" ;
-lin baster_N = mkN "baster" "basters" ; -- notcompound aster_N ;
-lin alabaster_N = mkN "alabaster" "alabasters" ; -- compound aster_N ;
-lin caster_N = mkN "caster" "casters" ; -- notcompound aster_N ;
-lin broadcaster_N = mkN "broadcaster" "broadcasters" ; -- compound aster_N ;
-lin telecaster_N = mkN "telecaster" "telecasters" ; -- compound aster_N ;
-lin forecaster_N = mkN "forecaster" "forecasters" ; -- compound aster_N ;
-lin newscaster_N = mkN "newscaster" "newscasters" ; -- compound aster_N ;
-lin cadaster_N = mkN "cadaster" "cadasters" ; -- compound aster_N ;
-lin easter_N = mkN "easter" "easters" ; -- notcompound aster_N ;
-lin northeaster_N = mkN "northeaster" "northeasters" ; -- compound aster_N ;
-lin southeaster_N = mkN "southeaster" "southeasters" ; -- compound aster_N ;
-lin oleaster_N = mkN "oleaster" "oleasters" ; -- compound aster_N ;
-lin cotoneaster_N = mkN "cotoneaster" "cotoneasters" ; -- compound aster_N ;
-lin solenogaster_N = mkN "solenogaster" "solenogasters" ; -- compound aster_N ;
-lin piaster_N = mkN "piaster" "piasters" ; -- compound aster_N ;
-lin blaster_N = mkN "blaster" "blasters" ; -- notcompound aster_N ;
-lin sandblaster_N = mkN "sandblaster" "sandblasters" ; -- compound aster_N ;
-lin pilaster_N = mkN "pilaster" "pilasters" ; -- compound aster_N ;
-lin plaster_N = mkN "plaster" "plasters" ; -- notcompound aster_N ;
-lin 'sticking-plaster_N' = mkN "sticking-plaster" "sticking-plasters" ; -- compound aster_N ;
-lin shinplaster_N = mkN "shinplaster" "shinplasters" ; -- compound aster_N ;
-lin master_N = mkN "master" "masters" ; -- notcompound aster_N ;
-lin 'riding-master_N' = mkN "riding-master" "riding-masters" ; -- compound aster_N ;
-lin 'sailing-master_N' = mkN "sailing-master" "sailing-masters" ; -- compound aster_N ;
-lin 'question-master_N' = mkN "question-master" "question-masters" ; -- compound aster_N ;
-lin 'games-master_N' = mkN "games-master" "games-masters" ; -- compound aster_N ;
-lin 'property-master_N' = mkN "property-master" "property-masters" ; -- compound aster_N ;
-lin webmaster_N = mkN "webmaster" "webmasters" ; -- compound aster_N ;
-lin headmaster_N = mkN "headmaster" "headmasters" ; -- compound aster_N ;
-lin bandmaster_N = mkN "bandmaster" "bandmasters" ; -- compound aster_N ;
-lin grandmaster_N = mkN "grandmaster" "grandmasters" ; -- compound aster_N ;
-lin yardmaster_N = mkN "yardmaster" "yardmasters" ; -- compound aster_N ;
-lin whoremaster_N = mkN "whoremaster" "whoremasters" ; -- compound aster_N ;
-lin housemaster_N = mkN "housemaster" "housemasters" ; -- compound aster_N ;
-lin ringmaster_N = mkN "ringmaster" "ringmasters" ; -- compound aster_N ;
-lin lockmaster_N = mkN "lockmaster" "lockmasters" ; -- compound aster_N ;
-lin taskmaster_N = mkN "taskmaster" "taskmasters" ; -- compound aster_N ;
-lin schoolmaster_N = mkN "schoolmaster" "schoolmasters" ; -- compound aster_N ;
-lin stationmaster_N = mkN "stationmaster" "stationmasters" ; -- compound aster_N ;
-lin burgomaster_N = mkN "burgomaster" "burgomasters" ; -- compound aster_N ;
-lin quartermaster_N = mkN "quartermaster" "quartermasters" ; -- compound aster_N ;
-lin choirmaster_N = mkN "choirmaster" "choirmasters" ; -- compound aster_N ;
-lin toastmaster_N = mkN "toastmaster" "toastmasters" ; -- compound aster_N ;
-lin postmaster_N = mkN "postmaster" "postmasters" ; -- compound aster_N ;
-lin scoutmaster_N = mkN "scoutmaster" "scoutmasters" ; -- compound aster_N ;
-lin paymaster_N = mkN "paymaster" "paymasters" ; -- compound aster_N ;
-lin spymaster_N = mkN "spymaster" "spymasters" ; -- compound aster_N ;
-lin quizmaster_N = mkN "quizmaster" "quizmasters" ; -- compound aster_N ;
-lin boaster_N = mkN "boaster" "boasters" ; -- compound aster_N ;
-lin coaster_N = mkN "coaster" "coasters" ; -- compound aster_N ;
-lin hypercoaster_N = mkN "hypercoaster" "hypercoasters" ; -- compound aster_N ;
-lin roaster_N = mkN "roaster" "roasters" ; -- compound aster_N ;
-lin toaster_N = mkN "toaster" "toasters" ; -- compound aster_N ;
-lin paster_N = mkN "paster" "pasters" ; -- notcompound aster_N ;
-lin raster_N = mkN "raster" "rasters" ; -- notcompound aster_N ;
-lin disaster_N = mkN "disaster" "disasters" ; -- compound aster_N ;
-lin taster_N = mkN "taster" "tasters" ; -- notcompound aster_N ;
-lin waster_N = mkN "waster" "wasters" ; -- notcompound aster_N ;
-lin lobster_N = mkN "lobster" "lobsters" ;
-lin mobster_N = mkN "mobster" "mobsters" ;
-lin roadster_N = mkN "roadster" "roadsters" ;
-lin oldster_N = mkN "oldster" "oldsters" ;
-lin ester_N = mkN "ester" "esters" ;
-lin fester_N = mkN "fester" "festers" ; -- notcompound ester_N ;
-lin suggester_N = mkN "suggester" "suggesters" ; -- compound ester_N ;
-lin digester_N = mkN "digester" "digesters" ; -- compound ester_N ;
-lin jester_N = mkN "jester" "jesters" ; -- notcompound ester_N ;
-lin molester_N = mkN "molester" "molesters" ; -- compound ester_N ;
-lin semester_N = mkN "semester" "semesters" ; -- compound ester_N ;
-lin bimester_N = mkN "bimester" "bimesters" ; -- compound ester_N ;
-lin trimester_N = mkN "trimester" "trimesters" ; -- compound ester_N ;
-lin rhymester_N = mkN "rhymester" "rhymesters" ; -- compound ester_N ;
-lin nester_N = mkN "nester" "nesters" ; -- notcompound ester_N ;
-lin rester_N = mkN "rester" "resters" ; -- notcompound ester_N ;
-lin forester_N = mkN "forester" "foresters" ; -- compound ester_N ;
-lin arrester_N = mkN "arrester" "arresters" ; -- compound ester_N ;
-lin wrester_N = mkN "wrester" "wresters" ; -- notcompound ester_N ;
-lin tester_N = mkN "tester" "testers" ; -- notcompound ester_N ;
-lin contester_N = mkN "contester" "contesters" ; -- compound ester_N ;
-lin protester_N = mkN "protester" "protesters" ; -- compound ester_N ;
-lin attester_N = mkN "attester" "attesters" ; -- compound ester_N ;
-lin harvester_N = mkN "harvester" "harvesters" ; -- compound ester_N ;
-lin sou'wester_N = mkN "sou'wester" "sou'westers" ; -- compound ester_N ;
-lin 'sou\'-wester_N' = mkN "sou'-wester" "sou'-westers" ; -- compound ester_N ;
-lin northwester_N = mkN "northwester" "northwesters" ; -- compound ester_N ;
-lin southwester_N = mkN "southwester" "southwesters" ; -- compound ester_N ;
-lin polyester_N = mkN "polyester" "polyesters" ; -- compound ester_N ;
-lin gangster_N = mkN "gangster" "gangsters" ;
-lin songster_N = mkN "songster" "songsters" ;
-lin youngster_N = mkN "youngster" "youngsters" ;
-lin shirtwaister_N = mkN "shirtwaister" "shirtwaisters" ;
-lin bister_N = mkN "bister" "bisters" ;
-lin leister_N = mkN "leister" "leisters" ;
-lin schlockmeister_N = mkN "schlockmeister" "schlockmeisters" ;
-lin register_N = mkN "register" "registers" ;
-lin lister_N = mkN "lister" "listers" ;
-lin blister_N = mkN "blister" "blisters" ; -- notcompound lister_N ;
-lin 'water-blister_N' = mkN "water-blister" "water-blisters" ; -- compound lister_N ;
-lin glister_N = mkN "glister" "glisters" ; -- notcompound lister_N ;
-lin mister_N = mkN "mister" "misters" ;
-lin demister_N = mkN "demister" "demisters" ; -- compound mister_N ;
-lin banister_N = mkN "banister" "banisters" ;
-lin canister_N = mkN "canister" "canisters" ;
-lin minister_N = mkN "minister" "ministers" ;
-lin bannister_N = mkN "bannister" "bannisters" ;
-lin hoister_N = mkN "hoister" "hoisters" ;
-lin cloister_N = mkN "cloister" "cloisters" ;
-lin chorister_N = mkN "chorister" "choristers" ;
-lin barrister_N = mkN "barrister" "barristers" ;
-lin sister_N = mkN "sister" "sisters" ;
-lin 'half-sister_N' = mkN "half-sister" "half-sisters" ; -- compound sister_N ;
-lin 'foster-sister_N' = mkN "foster-sister" "foster-sisters" ; -- compound sister_N ;
-lin resister_N = mkN "resister" "resisters" ; -- compound sister_N ;
-lin stepsister_N = mkN "stepsister" "stepsisters" ; -- compound sister_N ;
-lin twister_N = mkN "twister" "twisters" ;
-lin 'tongue-twister_N' = mkN "tongue-twister" "tongue-twisters" ; -- compound twister_N ;
-lin supertwister_N = mkN "supertwister" "supertwisters" ; -- compound twister_N ;
-lin trickster_N = mkN "trickster" "tricksters" ;
-lin huckster_N = mkN "huckster" "hucksters" ;
-lin prankster_N = mkN "prankster" "pranksters" ;
-lin pollster_N = mkN "pollster" "pollsters" ;
-lin bolster_N = mkN "bolster" "bolsters" ;
-lin holster_N = mkN "holster" "holsters" ;
-lin ulster_N = mkN "ulster" "ulsters" ;
-lin teamster_N = mkN "teamster" "teamsters" ;
-lin hamster_N = mkN "hamster" "hamsters" ;
-lin minster_N = mkN "minster" "minsters" ;
-lin spinster_N = mkN "spinster" "spinsters" ;
-lin monster_N = mkN "monster" "monsters" ;
-lin punster_N = mkN "punster" "punsters" ;
-lin paternoster_N = mkN "paternoster" "paternosters" ;
-lin booster_N = mkN "booster" "boosters" ;
-lin rooster_N = mkN "rooster" "roosters" ;
-lin poster_N = mkN "poster" "posters" ;
-lin 'bill-poster_N' = mkN "bill-poster" "bill-posters" ; -- compound poster_N ;
-lin 'four-poster_N' = mkN "four-poster" "four-posters" ; -- compound poster_N ;
-lin imposter_N = mkN "imposter" "imposters" ; -- compound poster_N ;
-lin roster_N = mkN "roster" "rosters" ;
-lin defroster_N = mkN "defroster" "defrosters" ; -- compound roster_N ;
-lin tapster_N = mkN "tapster" "tapsters" ;
-lin tipster_N = mkN "tipster" "tipsters" ;
-lin maltster_N = mkN "maltster" "maltsters" ;
-lin buster_N = mkN "buster" "busters" ;
-lin filibuster_N = mkN "filibuster" "filibusters" ; -- compound buster_N ;
-lin blockbuster_N = mkN "blockbuster" "blockbusters" ; -- compound buster_N ;
-lin trustbuster_N = mkN "trustbuster" "trustbusters" ; -- compound buster_N ;
-lin duster_N = mkN "duster" "dusters" ;
-lin adjuster_N = mkN "adjuster" "adjusters" ;
-lin luster_N = mkN "luster" "lusters" ;
-lin baluster_N = mkN "baluster" "balusters" ; -- compound luster_N ;
-lin bluster_N = mkN "bluster" "blusters" ; -- notcompound luster_N ;
-lin cluster_N = mkN "cluster" "clusters" ; -- notcompound luster_N ;
-lin fluster_N = mkN "fluster" "flusters" ; -- notcompound luster_N ;
-lin muster_N = mkN "muster" "musters" ;
-lin ouster_N = mkN "ouster" "ousters" ;
-lin thruster_N = mkN "thruster" "thrusters" ;
-lin throwster_N = mkN "throwster" "throwsters" ;
-lin shyster_N = mkN "shyster" "shysters" ;
-lin oyster_N = mkN "oyster" "oysters" ;
-lin 'pearl-oyster_N' = mkN "pearl-oyster" "pearl-oysters" ; -- compound oyster_N ;
-lin batter_N = mkN "batter" "batters" ;
-lin wildcatter_N = mkN "wildcatter" "wildcatters" ;
-lin scatter_N = mkN "scatter" "scatters" ;
-lin hatter_N = mkN "hatter" "hatters" ;
-lin chatter_N = mkN "chatter" "chatters" ; -- notcompound hatter_N ;
-lin latter_N = mkN "latter" "latters" ;
-lin clatter_N = mkN "clatter" "clatters" ; -- notcompound latter_N ;
-lin platter_N = mkN "platter" "platters" ; -- notcompound latter_N ;
-lin matter_N = mkN "matter" "matters" ;
-lin antimatter_N = mkN "antimatter" "antimatters" ; -- compound matter_N ;
-lin patter_N = mkN "patter" "patters" ;
-lin 'pitter-patter_N' = mkN "pitter-patter" "pitter-patters" ; -- compound patter_N ;
-lin spatter_N = mkN "spatter" "spatters" ; -- notcompound patter_N ;
-lin ratter_N = mkN "ratter" "ratters" ;
-lin tatter_N = mkN "tatter" "tatters" ;
-lin squatter_N = mkN "squatter" "squatters" ;
-lin swatter_N = mkN "swatter" "swatters" ;
-lin 'fly-swatter_N' = mkN "fly-swatter" "fly-swatters" ; -- compound swatter_N ;
-lin better_N = mkN "better" "betters" ;
-lin fetter_N = mkN "fetter" "fetters" ;
-lin 'go-getter_N' = mkN "go-getter" "go-getters" ;
-lin begetter_N = mkN "begetter" "begetters" ;
-lin letter_N = mkN "letter" "letters" ;
-lin 'love-letter_N' = mkN "love-letter" "love-letters" ; -- compound letter_N ;
-lin 'chain-letter_N' = mkN "chain-letter" "chain-letters" ; -- compound letter_N ;
-lin newsletter_N = mkN "newsletter" "newsletters" ; -- compound letter_N ;
-lin petter_N = mkN "petter" "petters" ;
-lin setter_N = mkN "setter" "setters" ;
-lin 'trend-setter_N' = mkN "trend-setter" "trend-setters" ; -- compound setter_N ;
-lin 'bone-setter_N' = mkN "bone-setter" "bone-setters" ; -- compound setter_N ;
-lin pacesetter_N = mkN "pacesetter" "pacesetters" ; -- compound setter_N ;
-lin bonesetter_N = mkN "bonesetter" "bonesetters" ; -- compound setter_N ;
-lin typesetter_N = mkN "typesetter" "typesetters" ; -- compound setter_N ;
-lin upsetter_N = mkN "upsetter" "upsetters" ; -- compound setter_N ;
-lin wetter_N = mkN "wetter" "wetters" ;
-lin bedwetter_N = mkN "bedwetter" "bedwetters" ; -- compound wetter_N ;
-lin bitter_N = mkN "bitter" "bitters" ;
-lin fitter_N = mkN "fitter" "fitters" ;
-lin 'gas-fitter_N' = mkN "gas-fitter" "gas-fitters" ; -- compound fitter_N ;
-lin steamfitter_N = mkN "steamfitter" "steamfitters" ; -- compound fitter_N ;
-lin outfitter_N = mkN "outfitter" "outfitters" ; -- compound fitter_N ;
-lin hitter_N = mkN "hitter" "hitters" ;
-lin jitter_N = mkN "jitter" "jitters" ;
-lin litter_N = mkN "litter" "litters" ;
-lin glitter_N = mkN "glitter" "glitters" ; -- notcompound litter_N ;
-lin splitter_N = mkN "splitter" "splitters" ; -- notcompound litter_N ;
-lin hairsplitter_N = mkN "hairsplitter" "hairsplitters" ; -- compound litter_N ;
-lin submitter_N = mkN "submitter" "submitters" ;
-lin emitter_N = mkN "emitter" "emitters" ;
-lin transmitter_N = mkN "transmitter" "transmitters" ;
-lin neurotransmitter_N = mkN "neurotransmitter" "neurotransmitters" ; -- compound transmitter_N ;
-lin knitter_N = mkN "knitter" "knitters" ;
-lin spitter_N = mkN "spitter" "spitters" ;
-lin critter_N = mkN "critter" "critters" ;
-lin fritter_N = mkN "fritter" "fritters" ;
-lin sitter_N = mkN "sitter" "sitters" ;
-lin bedsitter_N = mkN "bedsitter" "bedsitters" ; -- compound sitter_N ;
-lin babysitter_N = mkN "babysitter" "babysitters" ; -- compound sitter_N ;
-lin titter_N = mkN "titter" "titters" ;
-lin quitter_N = mkN "quitter" "quitters" ;
-lin twitter_N = mkN "twitter" "twitters" ;
-lin otter_N = mkN "otter" "otters" ;
-lin cotter_N = mkN "cotter" "cotters" ; -- notcompound otter_N ;
-lin jotter_N = mkN "jotter" "jotters" ; -- notcompound otter_N ;
-lin blotter_N = mkN "blotter" "blotters" ; -- notcompound otter_N ;
-lin plotter_N = mkN "plotter" "plotters" ; -- notcompound otter_N ;
-lin potter_N = mkN "potter" "potters" ; -- notcompound otter_N ;
-lin spotter_N = mkN "spotter" "spotters" ; -- notcompound otter_N ;
-lin rotter_N = mkN "rotter" "rotters" ; -- notcompound otter_N ;
-lin trotter_N = mkN "trotter" "trotters" ; -- notcompound otter_N ;
-lin globetrotter_N = mkN "globetrotter" "globetrotters" ; -- compound otter_N ;
-lin butter_N = mkN "butter" "butters" ;
-lin 'nut-butter_N' = mkN "nut-butter" "nut-butters" ; -- compound butter_N ;
-lin abutter_N = mkN "abutter" "abutters" ; -- notcompound butter_N ;
-lin rebutter_N = mkN "rebutter" "rebutters" ; -- compound butter_N ;
-lin surrebutter_N = mkN "surrebutter" "surrebutters" ; -- compound butter_N ;
-lin cutter_N = mkN "cutter" "cutters" ;
-lin 'glass-cutter_N' = mkN "glass-cutter" "glass-cutters" ; -- compound cutter_N ;
-lin woodcutter_N = mkN "woodcutter" "woodcutters" ; -- compound cutter_N ;
-lin stonecutter_N = mkN "stonecutter" "stonecutters" ; -- compound cutter_N ;
-lin gutter_N = mkN "gutter" "gutters" ;
-lin shutter_N = mkN "shutter" "shutters" ;
-lin clutter_N = mkN "clutter" "clutters" ;
-lin flutter_N = mkN "flutter" "flutters" ;
-lin splutter_N = mkN "splutter" "splutters" ;
-lin mutter_N = mkN "mutter" "mutters" ;
-lin nutter_N = mkN "nutter" "nutters" ;
-lin putter_N = mkN "putter" "putters" ;
-lin sputter_N = mkN "sputter" "sputters" ; -- notcompound putter_N ;
-lin stutter_N = mkN "stutter" "stutters" ;
-lin neuter_N = mkN "neuter" "neuters" ;
-lin polluter_N = mkN "polluter" "polluters" ;
-lin commuter_N = mkN "commuter" "commuters" ;
-lin spouter_N = mkN "spouter" "spouters" ;
-lin router_N = mkN "router" "routers" ;
-lin computer_N = mkN "computer" "computers" ;
-lin minicomputer_N = mkN "minicomputer" "minicomputers" ; -- compound computer_N ;
-lin supercomputer_N = mkN "supercomputer" "supercomputers" ; -- compound computer_N ;
-lin pewter_N = mkN "pewter" "pewters" ;
-lin presbyter_N = mkN "presbyter" "presbyters" ;
-lin rescuer_N = mkN "rescuer" "rescuers" ;
-lin subduer_N = mkN "subduer" "subduers" ;
-lin haranguer_N = mkN "haranguer" "haranguers" ;
-lin valuer_N = mkN "valuer" "valuers" ;
-lin revenuer_N = mkN "revenuer" "revenuers" ;
-lin lacquer_N = mkN "lacquer" "lacquers" ;
-lin exchequer_N = mkN "exchequer" "exchequers" ;
-lin suer_N = mkN "suer" "suers" ;
-lin pursuer_N = mkN "pursuer" "pursuers" ; -- compound suer_N ;
-lin issuer_N = mkN "issuer" "issuers" ; -- compound suer_N ;
-lin cadaver_N = mkN "cadaver" "cadavers" ;
-lin beaver_N = mkN "beaver" "beavers" ;
-lin heaver_N = mkN "heaver" "heavers" ;
-lin cleaver_N = mkN "cleaver" "cleavers" ;
-lin weaver_N = mkN "weaver" "weavers" ;
-lin basketweaver_N = mkN "basketweaver" "basketweavers" ; -- compound weaver_N ;
-lin shaver_N = mkN "shaver" "shavers" ;
-lin laver_N = mkN "laver" "lavers" ;
-lin palaver_N = mkN "palaver" "palavers" ; -- compound laver_N ;
-lin slaver_N = mkN "slaver" "slavers" ; -- notcompound laver_N ;
-lin raver_N = mkN "raver" "ravers" ;
-lin graver_N = mkN "graver" "gravers" ; -- notcompound raver_N ;
-lin engraver_N = mkN "engraver" "engravers" ; -- compound raver_N ;
-lin saver_N = mkN "saver" "savers" ;
-lin 'face-saver_N' = mkN "face-saver" "face-savers" ; -- compound saver_N ;
-lin 'life-saver_N' = mkN "life-saver" "life-savers" ; -- compound saver_N ;
-lin quaver_N = mkN "quaver" "quavers" ;
-lin semiquaver_N = mkN "semiquaver" "semiquavers" ; -- compound quaver_N ;
-lin waver_N = mkN "waver" "wavers" ;
-lin fever_N = mkN "fever" "fevers" ;
-lin achiever_N = mkN "achiever" "achievers" ;
-lin underachiever_N = mkN "underachiever" "underachievers" ; -- compound achiever_N ;
-lin overachiever_N = mkN "overachiever" "overachievers" ; -- compound achiever_N ;
-lin believer_N = mkN "believer" "believers" ;
-lin unbeliever_N = mkN "unbeliever" "unbelievers" ; -- compound believer_N ;
-lin disbeliever_N = mkN "disbeliever" "disbelievers" ; -- compound believer_N ;
-lin reliever_N = mkN "reliever" "relievers" ;
-lin retriever_N = mkN "retriever" "retrievers" ;
-lin lever_N = mkN "lever" "levers" ;
-lin cantilever_N = mkN "cantilever" "cantilevers" ; -- compound lever_N ;
-lin waiver_N = mkN "waiver" "waivers" ;
-lin diver_N = mkN "diver" "divers" ;
-lin 'pearl-diver_N' = mkN "pearl-diver" "pearl-divers" ; -- compound diver_N ;
-lin skydiver_N = mkN "skydiver" "skydivers" ; -- compound diver_N ;
-lin deceiver_N = mkN "deceiver" "deceivers" ;
-lin receiver_N = mkN "receiver" "receivers" ;
-lin perceiver_N = mkN "perceiver" "perceivers" ;
-lin fiver_N = mkN "fiver" "fivers" ;
-lin giver_N = mkN "giver" "givers" ;
-lin caregiver_N = mkN "caregiver" "caregivers" ; -- compound giver_N ;
-lin almsgiver_N = mkN "almsgiver" "almsgivers" ; -- compound giver_N ;
-lin lawgiver_N = mkN "lawgiver" "lawgivers" ; -- compound giver_N ;
-lin shiver_N = mkN "shiver" "shivers" ;
-lin liver_N = mkN "liver" "livers" ;
-lin 'free-liver_N' = mkN "free-liver" "free-livers" ; -- compound liver_N ;
-lin sliver_N = mkN "sliver" "slivers" ; -- notcompound liver_N ;
-lin miniver_N = mkN "miniver" "minivers" ;
-lin river_N = mkN "river" "rivers" ;
-lin driver_N = mkN "driver" "drivers" ; -- notcompound river_N ;
-lin 'pile-driver_N' = mkN "pile-driver" "pile-drivers" ; -- compound river_N ;
-lin 'engine-driver_N' = mkN "engine-driver" "engine-drivers" ; -- compound river_N ;
-lin 'slave-driver_N' = mkN "slave-driver" "slave-drivers" ; -- compound river_N ;
-lin 'owner-driver_N' = mkN "owner-driver" "owner-drivers" ; -- compound river_N ;
-lin taxidriver_N = mkN "taxidriver" "taxidrivers" ; -- compound river_N ;
-lin nondriver_N = mkN "nondriver" "nondrivers" ; -- compound river_N ;
-lin screwdriver_N = mkN "screwdriver" "screwdrivers" ; -- compound river_N ;
-lin contriver_N = mkN "contriver" "contrivers" ; -- compound river_N ;
-lin striver_N = mkN "striver" "strivers" ; -- notcompound river_N ;
-lin quiver_N = mkN "quiver" "quivers" ;
-lin salver_N = mkN "salver" "salvers" ;
-lin elver_N = mkN "elver" "elvers" ;
-lin shelver_N = mkN "shelver" "shelvers" ; -- notcompound elver_N ;
-lin silver_N = mkN "silver" "silvers" ;
-lin quicksilver_N = mkN "quicksilver" "quicksilvers" ; -- compound silver_N ;
-lin absolver_N = mkN "absolver" "absolvers" ;
-lin revolver_N = mkN "revolver" "revolvers" ;
-lin over_N = mkN "over" "overs" ;
-lin 'spread-over_N' = mkN "spread-over" "spread-overs" ; -- compound over_N ;
-lin 'going-over_N' = mkN "going-over" "going-overs" ; -- compound over_N ;
-lin 'look-over_N' = mkN "look-over" "look-overs" ; -- compound over_N ;
-lin 'call-over_N' = mkN "call-over" "call-overs" ; -- compound over_N ;
-lin cover_N = mkN "cover" "covers" ; -- notcompound over_N ;
-lin groundcover_N = mkN "groundcover" "groundcovers" ; -- compound over_N ;
-lin hardcover_N = mkN "hardcover" "hardcovers" ; -- compound over_N ;
-lin slipcover_N = mkN "slipcover" "slipcovers" ; -- compound over_N ;
-lin holdover_N = mkN "holdover" "holdovers" ; -- compound over_N ;
-lin handover_N = mkN "handover" "handovers" ; -- compound over_N ;
-lin changeover_N = mkN "changeover" "changeovers" ; -- compound over_N ;
-lin makeover_N = mkN "makeover" "makeovers" ; -- compound over_N ;
-lin takeover_N = mkN "takeover" "takeovers" ; -- compound over_N ;
-lin hangover_N = mkN "hangover" "hangovers" ; -- compound over_N ;
-lin flashover_N = mkN "flashover" "flashovers" ; -- compound over_N ;
-lin pushover_N = mkN "pushover" "pushovers" ; -- compound over_N ;
-lin walkover_N = mkN "walkover" "walkovers" ; -- compound over_N ;
-lin lover_N = mkN "lover" "lovers" ; -- notcompound over_N ;
-lin clover_N = mkN "clover" "clovers" ; -- notcompound over_N ;
-lin spillover_N = mkN "spillover" "spillovers" ; -- compound over_N ;
-lin rollover_N = mkN "rollover" "rollovers" ; -- compound over_N ;
-lin pullover_N = mkN "pullover" "pullovers" ; -- compound over_N ;
-lin plover_N = mkN "plover" "plovers" ; -- notcompound over_N ;
-lin mover_N = mkN "mover" "movers" ; -- notcompound over_N ;
-lin remover_N = mkN "remover" "removers" ; -- compound over_N ;
-lin turnover_N = mkN "turnover" "turnovers" ; -- compound over_N ;
-lin hoover_N = mkN "hoover" "hoovers" ; -- compound over_N ;
-lin groover_N = mkN "groover" "groovers" ; -- compound over_N ;
-lin sleepover_N = mkN "sleepover" "sleepovers" ; -- compound over_N ;
-lin slipover_N = mkN "slipover" "slipovers" ; -- compound over_N ;
-lin popover_N = mkN "popover" "popovers" ; -- compound over_N ;
-lin stopover_N = mkN "stopover" "stopovers" ; -- compound over_N ;
-lin rover_N = mkN "rover" "rovers" ; -- notcompound over_N ;
-lin 'sea-rover_N' = mkN "sea-rover" "sea-rovers" ; -- compound over_N ;
-lin drover_N = mkN "drover" "drovers" ; -- notcompound over_N ;
-lin landrover_N = mkN "landrover" "landrovers" ; -- compound over_N ;
-lin improver_N = mkN "improver" "improvers" ; -- compound over_N ;
-lin approver_N = mkN "approver" "approvers" ; -- compound over_N ;
-lin passover_N = mkN "passover" "passovers" ; -- compound over_N ;
-lin crossover_N = mkN "crossover" "crossovers" ; -- compound over_N ;
-lin leftover_N = mkN "leftover" "leftovers" ; -- compound over_N ;
-lin stover_N = mkN "stover" "stovers" ; -- notcompound over_N ;
-lin layover_N = mkN "layover" "layovers" ; -- compound over_N ;
-lin flyover_N = mkN "flyover" "flyovers" ; -- compound over_N ;
-lin carver_N = mkN "carver" "carvers" ;
-lin woodcarver_N = mkN "woodcarver" "woodcarvers" ; -- compound carver_N ;
-lin server_N = mkN "server" "servers" ;
-lin 'process-server_N' = mkN "process-server" "process-servers" ; -- compound server_N ;
-lin observer_N = mkN "observer" "observers" ; -- compound server_N ;
-lin timeserver_N = mkN "timeserver" "timeservers" ; -- compound server_N ;
-lin preserver_N = mkN "preserver" "preservers" ; -- compound server_N ;
-lin 'life-preserver_N' = mkN "life-preserver" "life-preservers" ; -- compound server_N ;
-lin maneuver_N = mkN "maneuver" "maneuvers" ;
-lin louver_N = mkN "louver" "louvers" ;
-lin pawer_N = mkN "pawer" "pawers" ;
-lin drawer_N = mkN "drawer" "drawers" ;
-lin withdrawer_N = mkN "withdrawer" "withdrawers" ; -- compound drawer_N ;
-lin ewer_N = mkN "ewer" "ewers" ;
-lin hewer_N = mkN "hewer" "hewers" ; -- notcompound ewer_N ;
-lin chewer_N = mkN "chewer" "chewers" ; -- notcompound ewer_N ;
-lin woodhewer_N = mkN "woodhewer" "woodhewers" ; -- compound ewer_N ;
-lin viewer_N = mkN "viewer" "viewers" ; -- compound ewer_N ;
-lin reviewer_N = mkN "reviewer" "reviewers" ; -- compound ewer_N ;
-lin interviewer_N = mkN "interviewer" "interviewers" ; -- compound ewer_N ;
-lin skewer_N = mkN "skewer" "skewers" ; -- notcompound ewer_N ;
-lin brewer_N = mkN "brewer" "brewers" ; -- notcompound ewer_N ;
-lin sewer_N = mkN "sewer" "sewers" ; -- notcompound ewer_N ;
-lin bower_N = mkN "bower" "bowers" ;
-lin dower_N = mkN "dower" "dowers" ;
-lin widower_N = mkN "widower" "widowers" ; -- compound dower_N ;
-lin shower_N = mkN "shower" "showers" ;
-lin thundershower_N = mkN "thundershower" "thundershowers" ; -- compound shower_N ;
-lin blower_N = mkN "blower" "blowers" ;
-lin 'organ-blower_N' = mkN "organ-blower" "organ-blowers" ; -- compound blower_N ;
-lin 'glass-blower_N' = mkN "glass-blower" "glass-blowers" ; -- compound blower_N ;
-lin glassblower_N = mkN "glassblower" "glassblowers" ; -- compound blower_N ;
-lin flower_N = mkN "flower" "flowers" ;
-lin 'bell-flower_N' = mkN "bell-flower" "bell-flowers" ; -- compound flower_N ;
-lin 'passion-flower_N' = mkN "passion-flower" "passion-flowers" ; -- compound flower_N ;
-lin wildflower_N = mkN "wildflower" "wildflowers" ; -- compound flower_N ;
-lin wandflower_N = mkN "wandflower" "wandflowers" ; -- compound flower_N ;
-lin windflower_N = mkN "windflower" "windflowers" ; -- compound flower_N ;
-lin globeflower_N = mkN "globeflower" "globeflowers" ; -- compound flower_N ;
-lin coneflower_N = mkN "coneflower" "coneflowers" ; -- compound flower_N ;
-lin tongueflower_N = mkN "tongueflower" "tongueflowers" ; -- compound flower_N ;
-lin pasqueflower_N = mkN "pasqueflower" "pasqueflowers" ; -- compound flower_N ;
-lin safflower_N = mkN "safflower" "safflowers" ; -- compound flower_N ;
-lin cauliflower_N = mkN "cauliflower" "cauliflowers" ; -- compound flower_N ;
-lin snailflower_N = mkN "snailflower" "snailflowers" ; -- compound flower_N ;
-lin wallflower_N = mkN "wallflower" "wallflowers" ; -- compound flower_N ;
-lin shellflower_N = mkN "shellflower" "shellflowers" ; -- compound flower_N ;
-lin foamflower_N = mkN "foamflower" "foamflowers" ; -- compound flower_N ;
-lin twinflower_N = mkN "twinflower" "twinflowers" ; -- compound flower_N ;
-lin passionflower_N = mkN "passionflower" "passionflowers" ; -- compound flower_N ;
-lin moonflower_N = mkN "moonflower" "moonflowers" ; -- compound flower_N ;
-lin cornflower_N = mkN "cornflower" "cornflowers" ; -- compound flower_N ;
-lin sunflower_N = mkN "sunflower" "sunflowers" ; -- compound flower_N ;
-lin cupflower_N = mkN "cupflower" "cupflowers" ; -- compound flower_N ;
-lin starflower_N = mkN "starflower" "starflowers" ; -- compound flower_N ;
-lin spiderflower_N = mkN "spiderflower" "spiderflowers" ; -- compound flower_N ;
-lin helmetflower_N = mkN "helmetflower" "helmetflowers" ; -- compound flower_N ;
-lin mistflower_N = mkN "mistflower" "mistflowers" ; -- compound flower_N ;
-lin strawflower_N = mkN "strawflower" "strawflowers" ; -- compound flower_N ;
-lin waxflower_N = mkN "waxflower" "waxflowers" ; -- compound flower_N ;
-lin honeyflower_N = mkN "honeyflower" "honeyflowers" ; -- compound flower_N ;
-lin follower_N = mkN "follower" "followers" ;
-lin 'camp-follower_N' = mkN "camp-follower" "camp-followers" ; -- compound follower_N ;
-lin mower_N = mkN "mower" "mowers" ;
-lin 'lawn-mower_N' = mkN "lawn-mower" "lawn-mowers" ; -- compound mower_N ;
-lin knower_N = mkN "knower" "knowers" ;
-lin power_N = mkN "power" "powers" ;
-lin 'sea-power_N' = mkN "sea-power" "sea-powers" ; -- compound power_N ;
-lin 'candle-power_N' = mkN "candle-power" "candle-powers" ; -- compound power_N ;
-lin 'fire-power_N' = mkN "fire-power" "fire-powers" ; -- compound power_N ;
-lin 'lung-power_N' = mkN "lung-power" "lung-powers" ; -- compound power_N ;
-lin 'water-power_N' = mkN "water-power" "water-powers" ; -- compound power_N ;
-lin candlepower_N = mkN "candlepower" "candlepowers" ; -- compound power_N ;
-lin firepower_N = mkN "firepower" "firepowers" ; -- compound power_N ;
-lin willpower_N = mkN "willpower" "willpowers" ; -- compound power_N ;
-lin manpower_N = mkN "manpower" "manpowers" ; -- compound power_N ;
-lin waterpower_N = mkN "waterpower" "waterpowers" ; -- compound power_N ;
-lin rower_N = mkN "rower" "rowers" ;
-lin grower_N = mkN "grower" "growers" ; -- notcompound rower_N ;
-lin thrower_N = mkN "thrower" "throwers" ; -- notcompound rower_N ;
-lin flamethrower_N = mkN "flamethrower" "flamethrowers" ; -- compound rower_N ;
-lin borrower_N = mkN "borrower" "borrowers" ; -- compound rower_N ;
-lin sower_N = mkN "sower" "sowers" ;
-lin tower_N = mkN "tower" "towers" ;
-lin 'cooling-tower_N' = mkN "cooling-tower" "cooling-towers" ; -- compound tower_N ;
-lin 'clock-tower_N' = mkN "clock-tower" "clock-towers" ; -- compound tower_N ;
-lin 'water-tower_N' = mkN "water-tower" "water-towers" ; -- compound tower_N ;
-lin 'shot-tower_N' = mkN "shot-tower" "shot-towers" ; -- compound tower_N ;
-lin watchtower_N = mkN "watchtower" "watchtowers" ; -- compound tower_N ;
-lin vower_N = mkN "vower" "vowers" ;
-lin avower_N = mkN "avower" "avowers" ; -- notcompound vower_N ;
-lin answer_N = mkN "answer" "answers" ;
-lin relaxer_N = mkN "relaxer" "relaxers" ;
-lin hoaxer_N = mkN "hoaxer" "hoaxers" ;
-lin taxer_N = mkN "taxer" "taxers" ;
-lin indexer_N = mkN "indexer" "indexers" ;
-lin multiplexer_N = mkN "multiplexer" "multiplexers" ;
-lin fixer_N = mkN "fixer" "fixers" ;
-lin mixer_N = mkN "mixer" "mixers" ;
-lin 'cement-mixer_N' = mkN "cement-mixer" "cement-mixers" ; -- compound mixer_N ;
-lin boxer_N = mkN "boxer" "boxers" ;
-lin 'bobby-soxer_N' = mkN "bobby-soxer" "bobby-soxers" ;
-lin bobbysoxer_N = mkN "bobbysoxer" "bobbysoxers" ;
-lin layer_N = mkN "layer" "layers" ;
-lin delayer_N = mkN "delayer" "delayers" ; -- compound layer_N ;
-lin minelayer_N = mkN "minelayer" "minelayers" ; -- compound layer_N ;
-lin platelayer_N = mkN "platelayer" "platelayers" ; -- compound layer_N ;
-lin bricklayer_N = mkN "bricklayer" "bricklayers" ; -- compound layer_N ;
-lin player_N = mkN "player" "players" ; -- notcompound layer_N ;
-lin 'billiard-player_N' = mkN "billiard-player" "billiard-players" ; -- compound layer_N ;
-lin 'record-player_N' = mkN "record-player" "record-players" ; -- compound layer_N ;
-lin ballplayer_N = mkN "ballplayer" "ballplayers" ; -- compound layer_N ;
-lin interlayer_N = mkN "interlayer" "interlayers" ; -- compound layer_N ;
-lin slayer_N = mkN "slayer" "slayers" ; -- notcompound layer_N ;
-lin payer_N = mkN "payer" "payers" ;
-lin ratepayer_N = mkN "ratepayer" "ratepayers" ; -- compound payer_N ;
-lin taxpayer_N = mkN "taxpayer" "taxpayers" ; -- compound payer_N ;
-lin prayer_N = mkN "prayer" "prayers" ;
-lin sprayer_N = mkN "sprayer" "sprayers" ; -- notcompound prayer_N ;
-lin betrayer_N = mkN "betrayer" "betrayers" ;
-lin soothsayer_N = mkN "soothsayer" "soothsayers" ;
-lin assayer_N = mkN "assayer" "assayers" ;
-lin naysayer_N = mkN "naysayer" "naysayers" ;
-lin stayer_N = mkN "stayer" "stayers" ;
-lin dyer_N = mkN "dyer" "dyers" ;
-lin conveyer_N = mkN "conveyer" "conveyers" ;
-lin flyer_N = mkN "flyer" "flyers" ;
-lin highflyer_N = mkN "highflyer" "highflyers" ; -- compound flyer_N ;
-lin foyer_N = mkN "foyer" "foyers" ;
-lin enjoyer_N = mkN "enjoyer" "enjoyers" ;
-lin employer_N = mkN "employer" "employers" ;
-lin destroyer_N = mkN "destroyer" "destroyers" ;
-lin dryer_N = mkN "dryer" "dryers" ;
-lin fryer_N = mkN "fryer" "fryers" ;
-lin buyer_N = mkN "buyer" "buyers" ;
-lin lawyer_N = mkN "lawyer" "lawyers" ;
-lin sawyer_N = mkN "sawyer" "sawyers" ;
-lin stargazer_N = mkN "stargazer" "stargazers" ;
-lin blazer_N = mkN "blazer" "blazers" ;
-lin trailblazer_N = mkN "trailblazer" "trailblazers" ; -- compound blazer_N ;
-lin mazer_N = mkN "mazer" "mazers" ;
-lin geezer_N = mkN "geezer" "geezers" ;
-lin sneezer_N = mkN "sneezer" "sneezers" ;
-lin freezer_N = mkN "freezer" "freezers" ;
-lin squeezer_N = mkN "squeezer" "squeezers" ;
-lin plasticizer_N = mkN "plasticizer" "plasticizers" ;
-lin subsidizer_N = mkN "subsidizer" "subsidizers" ;
-lin liquidizer_N = mkN "liquidizer" "liquidizers" ;
-lin standardizer_N = mkN "standardizer" "standardizers" ;
-lin energizer_N = mkN "energizer" "energizers" ;
-lin philosophizer_N = mkN "philosophizer" "philosophizers" ;
-lin sympathizer_N = mkN "sympathizer" "sympathizers" ;
-lin subvocalizer_N = mkN "subvocalizer" "subvocalizers" ;
-lin socializer_N = mkN "socializer" "socializers" ;
-lin normalizer_N = mkN "normalizer" "normalizers" ;
-lin tantalizer_N = mkN "tantalizer" "tantalizers" ;
-lin equalizer_N = mkN "equalizer" "equalizers" ;
-lin visualizer_N = mkN "visualizer" "visualizers" ;
-lin stabilizer_N = mkN "stabilizer" "stabilizers" ;
-lin gyrostabilizer_N = mkN "gyrostabilizer" "gyrostabilizers" ; -- compound stabilizer_N ;
-lin fertilizer_N = mkN "fertilizer" "fertilizers" ;
-lin utilizer_N = mkN "utilizer" "utilizers" ;
-lin tranquilizer_N = mkN "tranquilizer" "tranquilizers" ;
-lin tranquillizer_N = mkN "tranquillizer" "tranquillizers" ;
-lin idolizer_N = mkN "idolizer" "idolizers" ;
-lin victimizer_N = mkN "victimizer" "victimizers" ;
-lin economizer_N = mkN "economizer" "economizers" ;
-lin atomizer_N = mkN "atomizer" "atomizers" ;
-lin vulcanizer_N = mkN "vulcanizer" "vulcanizers" ;
-lin organizer_N = mkN "organizer" "organizers" ;
-lin womanizer_N = mkN "womanizer" "womanizers" ;
-lin galvanizer_N = mkN "galvanizer" "galvanizers" ;
-lin scrutinizer_N = mkN "scrutinizer" "scrutinizers" ;
-lin colonizer_N = mkN "colonizer" "colonizers" ;
-lin harmonizer_N = mkN "harmonizer" "harmonizers" ;
-lin vulgarizer_N = mkN "vulgarizer" "vulgarizers" ;
-lin popularizer_N = mkN "popularizer" "popularizers" ;
-lin tenderizer_N = mkN "tenderizer" "tenderizers" ;
-lin allegorizer_N = mkN "allegorizer" "allegorizers" ;
-lin authorizer_N = mkN "authorizer" "authorizers" ;
-lin memorizer_N = mkN "memorizer" "memorizers" ;
-lin vaporizer_N = mkN "vaporizer" "vaporizers" ;
-lin temporizer_N = mkN "temporizer" "temporizers" ;
-lin synthesizer_N = mkN "synthesizer" "synthesizers" ;
-lin alphabetizer_N = mkN "alphabetizer" "alphabetizers" ;
-lin appetizer_N = mkN "appetizer" "appetizers" ;
-lin digitizer_N = mkN "digitizer" "digitizers" ;
-lin sensitizer_N = mkN "sensitizer" "sensitizers" ;
-lin panzer_N = mkN "panzer" "panzers" ;
-lin 'angle-dozer_N' = mkN "angle-dozer" "angle-dozers" ;
-lin angledozer_N = mkN "angledozer" "angledozers" ;
-lin bulldozer_N = mkN "bulldozer" "bulldozers" ;
-lin boozer_N = mkN "boozer" "boozers" ;
-lin patzer_N = mkN "patzer" "patzers" ;
-lin kibitzer_N = mkN "kibitzer" "kibitzers" ;
-lin spritzer_N = mkN "spritzer" "spritzers" ;
-lin howitzer_N = mkN "howitzer" "howitzers" ;
-lin waltzer_N = mkN "waltzer" "waltzers" ;
-lin seltzer_N = mkN "seltzer" "seltzers" ;
-lin schnauzer_N = mkN "schnauzer" "schnauzers" ;
-lin breathalyzer_N = mkN "breathalyzer" "breathalyzers" ;
-lin dialyzer_N = mkN "dialyzer" "dialyzers" ;
-lin analyzer_N = mkN "analyzer" "analyzers" ;
-lin buzzer_N = mkN "buzzer" "buzzers" ;
-lin air_N = mkN "air" "airs" ;
-lin midair_N = mkN "midair" "midairs" ; -- compound air_N ;
-lin fair_N = mkN "fair" "fairs" ; -- notcompound air_N ;
-lin affair_N = mkN "affair" "affairs" ; -- compound air_N ;
-lin 'love-affair_N' = mkN "love-affair" "love-affairs" ; -- compound air_N ;
-lin funfair_N = mkN "funfair" "funfairs" ; -- compound air_N ;
-lin hair_N = mkN "hair" "hairs" ; -- notcompound air_N ;
-lin 'camel-hair_N' = mkN "camel-hair" "camel-hairs" ; -- compound air_N ;
-lin chair_N = mkN "chair" "chairs" ; -- notcompound air_N ;
-lin 'lounge-chair_N' = mkN "lounge-chair" "lounge-chairs" ; -- compound air_N ;
-lin 'rocking-chair_N' = mkN "rocking-chair" "rocking-chairs" ; -- compound air_N ;
-lin 'bath-chair_N' = mkN "bath-chair" "bath-chairs" ; -- compound air_N ;
-lin 'sedan-chair_N' = mkN "sedan-chair" "sedan-chairs" ; -- compound air_N ;
-lin 'camp-chair_N' = mkN "camp-chair" "camp-chairs" ; -- compound air_N ;
-lin highchair_N = mkN "highchair" "highchairs" ; -- compound air_N ;
-lin pushchair_N = mkN "pushchair" "pushchairs" ; -- compound air_N ;
-lin wheelchair_N = mkN "wheelchair" "wheelchairs" ; -- compound air_N ;
-lin armchair_N = mkN "armchair" "armchairs" ; -- compound air_N ;
-lin wirehair_N = mkN "wirehair" "wirehairs" ; -- compound air_N ;
-lin horsehair_N = mkN "horsehair" "horsehairs" ; -- compound air_N ;
-lin maidenhair_N = mkN "maidenhair" "maidenhairs" ; -- compound air_N ;
-lin mohair_N = mkN "mohair" "mohairs" ; -- compound air_N ;
-lin lair_N = mkN "lair" "lairs" ; -- notcompound air_N ;
-lin éclair_N = mkN "éclair" "éclairs" ; -- notcompound air_N ;
-lin flair_N = mkN "flair" "flairs" ; -- notcompound air_N ;
-lin pair_N = mkN "pair" "pairs" ; -- notcompound air_N ;
-lin 'au pair_N' = mkN "au pair" "au pairs" ; -- compound air_N ;
-lin repair_N = mkN "repair" "repairs" ; -- compound air_N ;
-lin disrepair_N = mkN "disrepair" "disrepairs" ; -- compound air_N ;
-lin despair_N = mkN "despair" "despairs" ; -- compound air_N ;
-lin corsair_N = mkN "corsair" "corsairs" ; -- compound air_N ;
-lin stair_N = mkN "stair" "stairs" ; -- notcompound air_N ;
-lin dir_N = mkN "dir" "dirs" ;
-lin nadir_N = mkN "nadir" "nadirs" ; -- compound dir_N ;
-lin heir_N = mkN "heir" "heirs" ;
-lin weir_N = mkN "weir" "weirs" ;
-lin fir_N = mkN "fir" "firs" ;
-lin kaffir_N = mkN "kaffir" "kaffirs" ; -- compound fir_N ;
-lin menhir_N = mkN "menhir" "menhirs" ;
-lin fakir_N = mkN "fakir" "fakirs" ;
-lin amir_N = mkN "amir" "amirs" ;
-lin emir_N = mkN "emir" "emirs" ;
-lin souvenir_N = mkN "souvenir" "souvenirs" ;
-lin coir_N = mkN "coir" "coirs" ;
-lin boudoir_N = mkN "boudoir" "boudoirs" ;
-lin choir_N = mkN "choir" "choirs" ;
-lin loir_N = mkN "loir" "loirs" ;
-lin memoir_N = mkN "memoir" "memoirs" ;
-lin peignoir_N = mkN "peignoir" "peignoirs" ;
-lin voussoir_N = mkN "voussoir" "voussoirs" ;
-lin abattoir_N = mkN "abattoir" "abattoirs" ;
-lin devoir_N = mkN "devoir" "devoirs" ;
-lin reservoir_N = mkN "reservoir" "reservoirs" ;
-lin diapir_N = mkN "diapir" "diapirs" ;
-lin tapir_N = mkN "tapir" "tapirs" ;
-lin eyrir_N = mkN "eyrir" "eyrirs" ;
-lin sir_N = mkN "sir" "sirs" ;
-lin stir_N = mkN "stir" "stirs" ;
-lin indinavir_N = mkN "indinavir" "indinavirs" ;
-lin nelfinavir_N = mkN "nelfinavir" "nelfinavirs" ;
-lin saquinavir_N = mkN "saquinavir" "saquinavirs" ;
-lin ritonavir_N = mkN "ritonavir" "ritonavirs" ;
-lin triumvir_N = mkN "triumvir" "triumvirs" ;
-lin acyclovir_N = mkN "acyclovir" "acyclovirs" ;
-lin elixir_N = mkN "elixir" "elixirs" ;
-lin labor_N = mkN "labor" "labors" ;
-lin tabor_N = mkN "tabor" "tabors" ;
-lin neighbor_N = mkN "neighbor" "neighbors" ;
-lin arbor_N = mkN "arbor" "arbors" ;
-lin rancor_N = mkN "rancor" "rancors" ;
-lin mucor_N = mkN "mucor" "mucors" ;
-lin décor_N = mkN "décor" "décors" ;
-lin picador_N = mkN "picador" "picadors" ;
-lin toreador_N = mkN "toreador" "toreadors" ;
-lin chador_N = mkN "chador" "chadors" ;
-lin ambassador_N = mkN "ambassador" "ambassadors" ;
-lin matador_N = mkN "matador" "matadors" ;
-lin conquistador_N = mkN "conquistador" "conquistadors" ;
-lin cuspidor_N = mkN "cuspidor" "cuspidors" ;
-lin corridor_N = mkN "corridor" "corridors" ;
-lin stridor_N = mkN "stridor" "stridors" ;
-lin candor_N = mkN "candor" "candors" ;
-lin vendor_N = mkN "vendor" "vendors" ;
-lin newsvendor_N = mkN "newsvendor" "newsvendors" ; -- compound vendor_N ;
-lin condor_N = mkN "condor" "condors" ;
-lin komondor_N = mkN "komondor" "komondors" ;
-lin malodor_N = mkN "malodor" "malodors" ;
-lin ardor_N = mkN "ardor" "ardors" ;
-lin meteor_N = mkN "meteor" "meteors" ;
-lin 'what-for_N' = mkN "what-for" "what-fors" ;
-lin mortgagor_N = mkN "mortgagor" "mortgagors" ;
-lin vigor_N = mkN "vigor" "vigors" ;
-lin turgor_N = mkN "turgor" "turgors" ;
-lin ichor_N = mkN "ichor" "ichors" ;
-lin anchor_N = mkN "anchor" "anchors" ;
-lin 'sheet-anchor_N' = mkN "sheet-anchor" "sheet-anchors" ; -- compound anchor_N ;
-lin markhor_N = mkN "markhor" "markhors" ;
-lin anaphor_N = mkN "anaphor" "anaphors" ;
-lin metaphor_N = mkN "metaphor" "metaphors" ;
-lin camphor_N = mkN "camphor" "camphors" ;
-lin phosphor_N = mkN "phosphor" "phosphors" ;
-lin author_N = mkN "author" "authors" ;
-lin coauthor_N = mkN "coauthor" "coauthors" ; -- compound author_N ;
-lin senior_N = mkN "senior" "seniors" ;
-lin seignior_N = mkN "seignior" "seigniors" ;
-lin junior_N = mkN "junior" "juniors" ;
-lin inferior_N = mkN "inferior" "inferiors" ;
-lin superior_N = mkN "superior" "superiors" ;
-lin interior_N = mkN "interior" "interiors" ;
-lin posterior_N = mkN "posterior" "posteriors" ;
-lin exterior_N = mkN "exterior" "exteriors" ;
-lin prior_N = mkN "prior" "priors" ;
-lin warrior_N = mkN "warrior" "warriors" ;
-lin excelsior_N = mkN "excelsior" "excelsiors" ;
-lin behavior_N = mkN "behavior" "behaviors" ;
-lin misbehavior_N = mkN "misbehavior" "misbehaviors" ; -- compound behavior_N ;
-lin pavior_N = mkN "pavior" "paviors" ;
-lin savior_N = mkN "savior" "saviors" ;
-lin major_N = mkN "major" "majors" ;
-lin 'drum-major_N' = mkN "drum-major" "drum-majors" ; -- compound major_N ;
-lin 'sergeant-major_N' = mkN "sergeant-major" "sergeant-majors" ; -- compound major_N ;
-lin kwashiorkor_N = mkN "kwashiorkor" "kwashiorkors" ;
-lin squalor_N = mkN "squalor" "squalors" ;
-lin bachelor_N = mkN "bachelor" "bachelors" ;
-lin counselor_N = mkN "counselor" "counselors" ;
-lin bailor_N = mkN "bailor" "bailors" ;
-lin jailor_N = mkN "jailor" "jailors" ;
-lin sailor_N = mkN "sailor" "sailors" ;
-lin tailor_N = mkN "tailor" "tailors" ;
-lin pallor_N = mkN "pallor" "pallors" ;
-lin chancellor_N = mkN "chancellor" "chancellors" ;
-lin counsellor_N = mkN "counsellor" "counsellors" ;
-lin councillor_N = mkN "councillor" "councillors" ;
-lin color_N = mkN "color" "colors" ;
-lin technicolor_N = mkN "technicolor" "technicolors" ; -- compound color_N ;
-lin tricolor_N = mkN "tricolor" "tricolors" ; -- compound color_N ;
-lin watercolor_N = mkN "watercolor" "watercolors" ; -- compound color_N ;
-lin dolor_N = mkN "dolor" "dolors" ;
-lin parlor_N = mkN "parlor" "parlors" ;
-lin settlor_N = mkN "settlor" "settlors" ;
-lin clamor_N = mkN "clamor" "clamors" ;
-lin glamor_N = mkN "glamor" "glamors" ;
-lin tremor_N = mkN "tremor" "tremors" ;
-lin armor_N = mkN "armor" "armors" ;
-lin humor_N = mkN "humor" "humors" ;
-lin rumor_N = mkN "rumor" "rumors" ;
-lin tumor_N = mkN "tumor" "tumors" ;
-lin demeanor_N = mkN "demeanor" "demeanors" ;
-lin misdemeanor_N = mkN "misdemeanor" "misdemeanors" ; -- compound demeanor_N ;
-lin athanor_N = mkN "athanor" "athanors" ;
-lin manor_N = mkN "manor" "manors" ;
-lin alienor_N = mkN "alienor" "alienors" ;
-lin tenor_N = mkN "tenor" "tenors" ;
-lin countertenor_N = mkN "countertenor" "countertenors" ; -- compound tenor_N ;
-lin intervenor_N = mkN "intervenor" "intervenors" ;
-lin signor_N = mkN "signor" "signors" ;
-lin consignor_N = mkN "consignor" "consignors" ; -- compound signor_N ;
-lin monsignor_N = mkN "monsignor" "monsignors" ; -- compound signor_N ;
-lin assignor_N = mkN "assignor" "assignors" ; -- compound signor_N ;
-lin minor_N = mkN "minor" "minors" ;
-lin donor_N = mkN "donor" "donors" ;
-lin 'blood-donor_N' = mkN "blood-donor" "blood-donors" ; -- compound donor_N ;
-lin honor_N = mkN "honor" "honors" ;
-lin dishonor_N = mkN "dishonor" "dishonors" ; -- compound honor_N ;
-lin governor_N = mkN "governor" "governors" ;
-lin guvnor_N = mkN "guvnor" "guvnors" ;
-lin boor_N = mkN "boor" "boors" ;
-lin door_N = mkN "door" "doors" ;
-lin 'barn-door_N' = mkN "barn-door" "barn-doors" ; -- compound door_N ;
-lin 'trap-door_N' = mkN "trap-door" "trap-doors" ; -- compound door_N ;
-lin 'wicket-door_N' = mkN "wicket-door" "wicket-doors" ; -- compound door_N ;
-lin backdoor_N = mkN "backdoor" "backdoors" ; -- compound door_N ;
-lin tandoor_N = mkN "tandoor" "tandoors" ; -- compound door_N ;
-lin barndoor_N = mkN "barndoor" "barndoors" ; -- compound door_N ;
-lin floor_N = mkN "floor" "floors" ;
-lin 'threshing-floor_N' = mkN "threshing-floor" "threshing-floors" ; -- compound floor_N ;
-lin moor_N = mkN "moor" "moors" ;
-lin blackamoor_N = mkN "blackamoor" "blackamoors" ; -- compound moor_N ;
-lin spoor_N = mkN "spoor" "spoors" ;
-lin vapor_N = mkN "vapor" "vapors" ;
-lin torpor_N = mkN "torpor" "torpors" ;
-lin stupor_N = mkN "stupor" "stupors" ;
-lin transferor_N = mkN "transferor" "transferors" ;
-lin emperor_N = mkN "emperor" "emperors" ;
-lin conqueror_N = mkN "conqueror" "conquerors" ;
-lin error_N = mkN "error" "errors" ;
-lin terror_N = mkN "terror" "terrors" ; -- notcompound error_N ;
-lin mirror_N = mkN "mirror" "mirrors" ;
-lin horror_N = mkN "horror" "horrors" ;
-lin furor_N = mkN "furor" "furors" ;
-lin juror_N = mkN "juror" "jurors" ;
-lin conjuror_N = mkN "conjuror" "conjurors" ; -- compound juror_N ;
-lin incisor_N = mkN "incisor" "incisors" ;
-lin visor_N = mkN "visor" "visors" ;
-lin 'sun-visor_N' = mkN "sun-visor" "sun-visors" ; -- compound visor_N ;
-lin devisor_N = mkN "devisor" "devisors" ; -- compound visor_N ;
-lin divisor_N = mkN "divisor" "divisors" ; -- compound visor_N ;
-lin supervisor_N = mkN "supervisor" "supervisors" ; -- compound visor_N ;
-lin censor_N = mkN "censor" "censors" ;
-lin prehensor_N = mkN "prehensor" "prehensors" ;
-lin tensor_N = mkN "tensor" "tensors" ;
-lin sponsor_N = mkN "sponsor" "sponsors" ;
-lin cursor_N = mkN "cursor" "cursors" ;
-lin precursor_N = mkN "precursor" "precursors" ; -- compound cursor_N ;
-lin successor_N = mkN "successor" "successors" ;
-lin predecessor_N = mkN "predecessor" "predecessors" ;
-lin processor_N = mkN "processor" "processors" ;
-lin multiprocessor_N = mkN "multiprocessor" "multiprocessors" ; -- compound processor_N ;
-lin microprocessor_N = mkN "microprocessor" "microprocessors" ; -- compound processor_N ;
-lin confessor_N = mkN "confessor" "confessors" ;
-lin professor_N = mkN "professor" "professors" ;
-lin lessor_N = mkN "lessor" "lessors" ;
-lin aggressor_N = mkN "aggressor" "aggressors" ;
-lin transgressor_N = mkN "transgressor" "transgressors" ;
-lin depressor_N = mkN "depressor" "depressors" ;
-lin repressor_N = mkN "repressor" "repressors" ;
-lin compressor_N = mkN "compressor" "compressors" ;
-lin vasopressor_N = mkN "vasopressor" "vasopressors" ;
-lin oppressor_N = mkN "oppressor" "oppressors" ;
-lin suppressor_N = mkN "suppressor" "suppressors" ;
-lin stressor_N = mkN "stressor" "stressors" ;
-lin assessor_N = mkN "assessor" "assessors" ;
-lin possessor_N = mkN "possessor" "possessors" ;
-lin tor_N = mkN "tor" "tors" ;
-lin abator_N = mkN "abator" "abators" ; -- compound tor_N ;
-lin masturbator_N = mkN "masturbator" "masturbators" ; -- compound tor_N ;
-lin incubator_N = mkN "incubator" "incubators" ; -- compound tor_N ;
-lin defecator_N = mkN "defecator" "defecators" ; -- compound tor_N ;
-lin abdicator_N = mkN "abdicator" "abdicators" ; -- compound tor_N ;
-lin predicator_N = mkN "predicator" "predicators" ; -- compound tor_N ;
-lin indicator_N = mkN "indicator" "indicators" ; -- compound tor_N ;
-lin 'speed-indicator_N' = mkN "speed-indicator" "speed-indicators" ; -- compound tor_N ;
-lin syndicator_N = mkN "syndicator" "syndicators" ; -- compound tor_N ;
-lin adjudicator_N = mkN "adjudicator" "adjudicators" ; -- compound tor_N ;
-lin trafficator_N = mkN "trafficator" "trafficators" ; -- compound tor_N ;
-lin applicator_N = mkN "applicator" "applicators" ; -- compound tor_N ;
-lin duplicator_N = mkN "duplicator" "duplicators" ; -- compound tor_N ;
-lin communicator_N = mkN "communicator" "communicators" ; -- compound tor_N ;
-lin locator_N = mkN "locator" "locators" ; -- compound tor_N ;
-lin allocator_N = mkN "allocator" "allocators" ; -- compound tor_N ;
-lin educator_N = mkN "educator" "educators" ; -- compound tor_N ;
-lin predator_N = mkN "predator" "predators" ; -- compound tor_N ;
-lin invalidator_N = mkN "invalidator" "invalidators" ; -- compound tor_N ;
-lin liquidator_N = mkN "liquidator" "liquidators" ; -- compound tor_N ;
-lin mandator_N = mkN "mandator" "mandators" ; -- compound tor_N ;
-lin laudator_N = mkN "laudator" "laudators" ; -- compound tor_N ;
-lin creator_N = mkN "creator" "creators" ; -- compound tor_N ;
-lin propagator_N = mkN "propagator" "propagators" ; -- compound tor_N ;
-lin abnegator_N = mkN "abnegator" "abnegators" ; -- compound tor_N ;
-lin segregator_N = mkN "segregator" "segregators" ; -- compound tor_N ;
-lin alligator_N = mkN "alligator" "alligators" ; -- compound tor_N ;
-lin fumigator_N = mkN "fumigator" "fumigators" ; -- compound tor_N ;
-lin investigator_N = mkN "investigator" "investigators" ; -- compound tor_N ;
-lin instigator_N = mkN "instigator" "instigators" ; -- compound tor_N ;
-lin navigator_N = mkN "navigator" "navigators" ; -- compound tor_N ;
-lin promulgator_N = mkN "promulgator" "promulgators" ; -- compound tor_N ;
-lin abrogator_N = mkN "abrogator" "abrogators" ; -- compound tor_N ;
-lin arrogator_N = mkN "arrogator" "arrogators" ; -- compound tor_N ;
-lin interrogator_N = mkN "interrogator" "interrogators" ; -- compound tor_N ;
-lin astrogator_N = mkN "astrogator" "astrogators" ; -- compound tor_N ;
-lin expurgator_N = mkN "expurgator" "expurgators" ; -- compound tor_N ;
-lin subjugator_N = mkN "subjugator" "subjugators" ; -- compound tor_N ;
-lin appreciator_N = mkN "appreciator" "appreciators" ; -- compound tor_N ;
-lin annunciator_N = mkN "annunciator" "annunciators" ; -- compound tor_N ;
-lin gladiator_N = mkN "gladiator" "gladiators" ; -- compound tor_N ;
-lin radiator_N = mkN "radiator" "radiators" ; -- compound tor_N ;
-lin mediator_N = mkN "mediator" "mediators" ; -- compound tor_N ;
-lin conciliator_N = mkN "conciliator" "conciliators" ; -- compound tor_N ;
-lin defoliator_N = mkN "defoliator" "defoliators" ; -- compound tor_N ;
-lin appropriator_N = mkN "appropriator" "appropriators" ; -- compound tor_N ;
-lin differentiator_N = mkN "differentiator" "differentiators" ; -- compound tor_N ;
-lin negotiator_N = mkN "negotiator" "negotiators" ; -- compound tor_N ;
-lin aviator_N = mkN "aviator" "aviators" ; -- compound tor_N ;
-lin alleviator_N = mkN "alleviator" "alleviators" ; -- compound tor_N ;
-lin escalator_N = mkN "escalator" "escalators" ; -- compound tor_N ;
-lin deflator_N = mkN "deflator" "deflators" ; -- compound tor_N ;
-lin dilator_N = mkN "dilator" "dilators" ; -- compound tor_N ;
-lin bronchodilator_N = mkN "bronchodilator" "bronchodilators" ; -- compound tor_N ;
-lin vasodilator_N = mkN "vasodilator" "vasodilators" ; -- compound tor_N ;
-lin invigilator_N = mkN "invigilator" "invigilators" ; -- compound tor_N ;
-lin annihilator_N = mkN "annihilator" "annihilators" ; -- compound tor_N ;
-lin ventilator_N = mkN "ventilator" "ventilators" ; -- compound tor_N ;
-lin mutilator_N = mkN "mutilator" "mutilators" ; -- compound tor_N ;
-lin oscillator_N = mkN "oscillator" "oscillators" ; -- compound tor_N ;
-lin defibrillator_N = mkN "defibrillator" "defibrillators" ; -- compound tor_N ;
-lin instillator_N = mkN "instillator" "instillators" ; -- compound tor_N ;
-lin percolator_N = mkN "percolator" "percolators" ; -- compound tor_N ;
-lin violator_N = mkN "violator" "violators" ; -- compound tor_N ;
-lin legislator_N = mkN "legislator" "legislators" ; -- compound tor_N ;
-lin translator_N = mkN "translator" "translators" ; -- compound tor_N ;
-lin tabulator_N = mkN "tabulator" "tabulators" ; -- compound tor_N ;
-lin perambulator_N = mkN "perambulator" "perambulators" ; -- compound tor_N ;
-lin ejaculator_N = mkN "ejaculator" "ejaculators" ; -- compound tor_N ;
-lin speculator_N = mkN "speculator" "speculators" ; -- compound tor_N ;
-lin articulator_N = mkN "articulator" "articulators" ; -- compound tor_N ;
-lin calculator_N = mkN "calculator" "calculators" ; -- compound tor_N ;
-lin inoculator_N = mkN "inoculator" "inoculators" ; -- compound tor_N ;
-lin photocoagulator_N = mkN "photocoagulator" "photocoagulators" ; -- compound tor_N ;
-lin regulator_N = mkN "regulator" "regulators" ; -- compound tor_N ;
-lin simulator_N = mkN "simulator" "simulators" ; -- compound tor_N ;
-lin accumulator_N = mkN "accumulator" "accumulators" ; -- compound tor_N ;
-lin manipulator_N = mkN "manipulator" "manipulators" ; -- compound tor_N ;
-lin insulator_N = mkN "insulator" "insulators" ; -- compound tor_N ;
-lin postulator_N = mkN "postulator" "postulators" ; -- compound tor_N ;
-lin amalgamator_N = mkN "amalgamator" "amalgamators" ; -- compound tor_N ;
-lin collimator_N = mkN "collimator" "collimators" ; -- compound tor_N ;
-lin animator_N = mkN "animator" "animators" ; -- compound tor_N ;
-lin alienator_N = mkN "alienator" "alienators" ; -- compound tor_N ;
-lin senator_N = mkN "senator" "senators" ; -- compound tor_N ;
-lin coordinator_N = mkN "coordinator" "coordinators" ; -- compound tor_N ;
-lin originator_N = mkN "originator" "originators" ; -- compound tor_N ;
-lin pollinator_N = mkN "pollinator" "pollinators" ; -- compound tor_N ;
-lin laminator_N = mkN "laminator" "laminators" ; -- compound tor_N ;
-lin eliminator_N = mkN "eliminator" "eliminators" ; -- compound tor_N ;
-lin abominator_N = mkN "abominator" "abominators" ; -- compound tor_N ;
-lin nominator_N = mkN "nominator" "nominators" ; -- compound tor_N ;
-lin denominator_N = mkN "denominator" "denominators" ; -- compound tor_N ;
-lin exterminator_N = mkN "exterminator" "exterminators" ; -- compound tor_N ;
-lin supinator_N = mkN "supinator" "supinators" ; -- compound tor_N ;
-lin procrastinator_N = mkN "procrastinator" "procrastinators" ; -- compound tor_N ;
-lin pronator_N = mkN "pronator" "pronators" ; -- compound tor_N ;
-lin resonator_N = mkN "resonator" "resonators" ; -- compound tor_N ;
-lin impersonator_N = mkN "impersonator" "impersonators" ; -- compound tor_N ;
-lin detonator_N = mkN "detonator" "detonators" ; -- compound tor_N ;
-lin alternator_N = mkN "alternator" "alternators" ; -- compound tor_N ;
-lin anticipator_N = mkN "anticipator" "anticipators" ; -- compound tor_N ;
-lin emancipator_N = mkN "emancipator" "emancipators" ; -- compound tor_N ;
-lin syncopator_N = mkN "syncopator" "syncopators" ; -- compound tor_N ;
-lin separator_N = mkN "separator" "separators" ; -- compound tor_N ;
-lin vibrator_N = mkN "vibrator" "vibrators" ; -- compound tor_N ;
-lin aerator_N = mkN "aerator" "aerators" ; -- compound tor_N ;
-lin liberator_N = mkN "liberator" "liberators" ; -- compound tor_N ;
-lin moderator_N = mkN "moderator" "moderators" ; -- compound tor_N ;
-lin vociferator_N = mkN "vociferator" "vociferators" ; -- compound tor_N ;
-lin refrigerator_N = mkN "refrigerator" "refrigerators" ; -- compound tor_N ;
-lin accelerator_N = mkN "accelerator" "accelerators" ; -- compound tor_N ;
-lin agglomerator_N = mkN "agglomerator" "agglomerators" ; -- compound tor_N ;
-lin numerator_N = mkN "numerator" "numerators" ; -- compound tor_N ;
-lin generator_N = mkN "generator" "generators" ; -- compound tor_N ;
-lin turbogenerator_N = mkN "turbogenerator" "turbogenerators" ; -- compound tor_N ;
-lin venerator_N = mkN "venerator" "venerators" ; -- compound tor_N ;
-lin incinerator_N = mkN "incinerator" "incinerators" ; -- compound tor_N ;
-lin operator_N = mkN "operator" "operators" ; -- compound tor_N ;
-lin cooperator_N = mkN "cooperator" "cooperators" ; -- compound tor_N ;
-lin obliterator_N = mkN "obliterator" "obliterators" ; -- compound tor_N ;
-lin alliterator_N = mkN "alliterator" "alliterators" ; -- compound tor_N ;
-lin adulterator_N = mkN "adulterator" "adulterators" ; -- compound tor_N ;
-lin integrator_N = mkN "integrator" "integrators" ; -- compound tor_N ;
-lin migrator_N = mkN "migrator" "migrators" ; -- compound tor_N ;
-lin aspirator_N = mkN "aspirator" "aspirators" ; -- compound tor_N ;
-lin respirator_N = mkN "respirator" "respirators" ; -- compound tor_N ;
-lin conspirator_N = mkN "conspirator" "conspirators" ; -- compound tor_N ;
-lin orator_N = mkN "orator" "orators" ; -- compound tor_N ;
-lin collaborator_N = mkN "collaborator" "collaborators" ; -- compound tor_N ;
-lin decorator_N = mkN "decorator" "decorators" ; -- compound tor_N ;
-lin barrator_N = mkN "barrator" "barrators" ; -- compound tor_N ;
-lin narrator_N = mkN "narrator" "narrators" ; -- compound tor_N ;
-lin penetrator_N = mkN "penetrator" "penetrators" ; -- compound tor_N ;
-lin perpetrator_N = mkN "perpetrator" "perpetrators" ; -- compound tor_N ;
-lin arbitrator_N = mkN "arbitrator" "arbitrators" ; -- compound tor_N ;
-lin titrator_N = mkN "titrator" "titrators" ; -- compound tor_N ;
-lin infiltrator_N = mkN "infiltrator" "infiltrators" ; -- compound tor_N ;
-lin orchestrator_N = mkN "orchestrator" "orchestrators" ; -- compound tor_N ;
-lin administrator_N = mkN "administrator" "administrators" ; -- compound tor_N ;
-lin demonstrator_N = mkN "demonstrator" "demonstrators" ; -- compound tor_N ;
-lin counterdemonstrator_N = mkN "counterdemonstrator" "counterdemonstrators" ; -- compound tor_N ;
-lin illustrator_N = mkN "illustrator" "illustrators" ; -- compound tor_N ;
-lin curator_N = mkN "curator" "curators" ; -- compound tor_N ;
-lin procurator_N = mkN "procurator" "procurators" ; -- compound tor_N ;
-lin obturator_N = mkN "obturator" "obturators" ; -- compound tor_N ;
-lin spectator_N = mkN "spectator" "spectators" ; -- compound tor_N ;
-lin dictator_N = mkN "dictator" "dictators" ; -- compound tor_N ;
-lin resuscitator_N = mkN "resuscitator" "resuscitators" ; -- compound tor_N ;
-lin agitator_N = mkN "agitator" "agitators" ; -- compound tor_N ;
-lin prestidigitator_N = mkN "prestidigitator" "prestidigitators" ; -- compound tor_N ;
-lin excogitator_N = mkN "excogitator" "excogitators" ; -- compound tor_N ;
-lin facilitator_N = mkN "facilitator" "facilitators" ; -- compound tor_N ;
-lin imitator_N = mkN "imitator" "imitators" ; -- compound tor_N ;
-lin precipitator_N = mkN "precipitator" "precipitators" ; -- compound tor_N ;
-lin commentator_N = mkN "commentator" "commentators" ; -- compound tor_N ;
-lin annotator_N = mkN "annotator" "annotators" ; -- compound tor_N ;
-lin stator_N = mkN "stator" "stators" ; -- compound tor_N ;
-lin testator_N = mkN "testator" "testators" ; -- compound tor_N ;
-lin commutator_N = mkN "commutator" "commutators" ; -- compound tor_N ;
-lin sternutator_N = mkN "sternutator" "sternutators" ; -- compound tor_N ;
-lin amputator_N = mkN "amputator" "amputators" ; -- compound tor_N ;
-lin disambiguator_N = mkN "disambiguator" "disambiguators" ; -- compound tor_N ;
-lin evaluator_N = mkN "evaluator" "evaluators" ; -- compound tor_N ;
-lin attenuator_N = mkN "attenuator" "attenuators" ; -- compound tor_N ;
-lin equator_N = mkN "equator" "equators" ; -- compound tor_N ;
-lin actuator_N = mkN "actuator" "actuators" ; -- compound tor_N ;
-lin excavator_N = mkN "excavator" "excavators" ; -- compound tor_N ;
-lin aggravator_N = mkN "aggravator" "aggravators" ; -- compound tor_N ;
-lin levator_N = mkN "levator" "levators" ; -- compound tor_N ;
-lin elevator_N = mkN "elevator" "elevators" ; -- compound tor_N ;
-lin activator_N = mkN "activator" "activators" ; -- compound tor_N ;
-lin cultivator_N = mkN "cultivator" "cultivators" ; -- compound tor_N ;
-lin renovator_N = mkN "renovator" "renovators" ; -- compound tor_N ;
-lin innovator_N = mkN "innovator" "innovators" ; -- compound tor_N ;
-lin conservator_N = mkN "conservator" "conservators" ; -- compound tor_N ;
-lin totalizator_N = mkN "totalizator" "totalizators" ; -- compound tor_N ;
-lin debtor_N = mkN "debtor" "debtors" ; -- compound tor_N ;
-lin actor_N = mkN "actor" "actors" ; -- compound tor_N ;
-lin 'play-actor_N' = mkN "play-actor" "play-actors" ; -- compound tor_N ;
-lin reactor_N = mkN "reactor" "reactors" ; -- compound tor_N ;
-lin factor_N = mkN "factor" "factors" ; -- compound tor_N ;
-lin 'safety-factor_N' = mkN "safety-factor" "safety-factors" ; -- compound tor_N ;
-lin malefactor_N = mkN "malefactor" "malefactors" ; -- compound tor_N ;
-lin benefactor_N = mkN "benefactor" "benefactors" ; -- compound tor_N ;
-lin cofactor_N = mkN "cofactor" "cofactors" ; -- compound tor_N ;
-lin reenactor_N = mkN "reenactor" "reenactors" ; -- compound tor_N ;
-lin chiropractor_N = mkN "chiropractor" "chiropractors" ; -- compound tor_N ;
-lin tractor_N = mkN "tractor" "tractors" ; -- compound tor_N ;
-lin detractor_N = mkN "detractor" "detractors" ; -- compound tor_N ;
-lin retractor_N = mkN "retractor" "retractors" ; -- compound tor_N ;
-lin contractor_N = mkN "contractor" "contractors" ; -- compound tor_N ;
-lin subcontractor_N = mkN "subcontractor" "subcontractors" ; -- compound tor_N ;
-lin protractor_N = mkN "protractor" "protractors" ; -- compound tor_N ;
-lin abstractor_N = mkN "abstractor" "abstractors" ; -- compound tor_N ;
-lin attractor_N = mkN "attractor" "attractors" ; -- compound tor_N ;
-lin extractor_N = mkN "extractor" "extractors" ; -- compound tor_N ;
-lin transactor_N = mkN "transactor" "transactors" ; -- compound tor_N ;
-lin defector_N = mkN "defector" "defectors" ; -- compound tor_N ;
-lin effector_N = mkN "effector" "effectors" ; -- compound tor_N ;
-lin objector_N = mkN "objector" "objectors" ; -- compound tor_N ;
-lin ejector_N = mkN "ejector" "ejectors" ; -- compound tor_N ;
-lin injector_N = mkN "injector" "injectors" ; -- compound tor_N ;
-lin autoinjector_N = mkN "autoinjector" "autoinjectors" ; -- compound tor_N ;
-lin projector_N = mkN "projector" "projectors" ; -- compound tor_N ;
-lin 'cine-projector_N' = mkN "cine-projector" "cine-projectors" ; -- compound tor_N ;
-lin lector_N = mkN "lector" "lectors" ; -- compound tor_N ;
-lin elector_N = mkN "elector" "electors" ; -- compound tor_N ;
-lin selector_N = mkN "selector" "selectors" ; -- compound tor_N ;
-lin deflector_N = mkN "deflector" "deflectors" ; -- compound tor_N ;
-lin reflector_N = mkN "reflector" "reflectors" ; -- compound tor_N ;
-lin collector_N = mkN "collector" "collectors" ; -- compound tor_N ;
-lin 'refuse-collector_N' = mkN "refuse-collector" "refuse-collectors" ; -- compound tor_N ;
-lin 'stamp-collector_N' = mkN "stamp-collector" "stamp-collectors" ; -- compound tor_N ;
-lin 'ticket-collector_N' = mkN "ticket-collector" "ticket-collectors" ; -- compound tor_N ;
-lin 'rent-collector_N' = mkN "rent-collector" "rent-collectors" ; -- compound tor_N ;
-lin 'tax-collector_N' = mkN "tax-collector" "tax-collectors" ; -- compound tor_N ;
-lin inspector_N = mkN "inspector" "inspectors" ; -- compound tor_N ;
-lin prospector_N = mkN "prospector" "prospectors" ; -- compound tor_N ;
-lin rector_N = mkN "rector" "rectors" ; -- compound tor_N ;
-lin director_N = mkN "director" "directors" ; -- compound tor_N ;
-lin sector_N = mkN "sector" "sectors" ; -- compound tor_N ;
-lin detector_N = mkN "detector" "detectors" ; -- compound tor_N ;
-lin 'lie-detector_N' = mkN "lie-detector" "lie-detectors" ; -- compound tor_N ;
-lin 'mine-detector_N' = mkN "mine-detector" "mine-detectors" ; -- compound tor_N ;
-lin protector_N = mkN "protector" "protectors" ; -- compound tor_N ;
-lin vector_N = mkN "vector" "vectors" ; -- compound tor_N ;
-lin convector_N = mkN "convector" "convectors" ; -- compound tor_N ;
-lin predictor_N = mkN "predictor" "predictors" ; -- compound tor_N ;
-lin constrictor_N = mkN "constrictor" "constrictors" ; -- compound tor_N ;
-lin 'boa-constrictor_N' = mkN "boa-constrictor" "boa-constrictors" ; -- compound tor_N ;
-lin vasoconstrictor_N = mkN "vasoconstrictor" "vasoconstrictors" ; -- compound tor_N ;
-lin victor_N = mkN "victor" "victors" ; -- compound tor_N ;
-lin doctor_N = mkN "doctor" "doctors" ; -- compound tor_N ;
-lin 'witch-doctor_N' = mkN "witch-doctor" "witch-doctors" ; -- compound tor_N ;
-lin proctor_N = mkN "proctor" "proctors" ; -- compound tor_N ;
-lin abductor_N = mkN "abductor" "abductors" ; -- compound tor_N ;
-lin adductor_N = mkN "adductor" "adductors" ; -- compound tor_N ;
-lin inductor_N = mkN "inductor" "inductors" ; -- compound tor_N ;
-lin conductor_N = mkN "conductor" "conductors" ; -- compound tor_N ;
-lin 'lightning-conductor_N' = mkN "lightning-conductor" "lightning-conductors" ; -- compound tor_N ;
-lin semiconductor_N = mkN "semiconductor" "semiconductors" ; -- compound tor_N ;
-lin nonconductor_N = mkN "nonconductor" "nonconductors" ; -- compound tor_N ;
-lin instructor_N = mkN "instructor" "instructors" ; -- compound tor_N ;
-lin constructor_N = mkN "constructor" "constructors" ; -- compound tor_N ;
-lin praetor_N = mkN "praetor" "praetors" ; -- compound tor_N ;
-lin proprietor_N = mkN "proprietor" "proprietors" ; -- compound tor_N ;
-lin pretor_N = mkN "pretor" "pretors" ; -- compound tor_N ;
-lin carburetor_N = mkN "carburetor" "carburetors" ; -- compound tor_N ;
-lin traitor_N = mkN "traitor" "traitors" ; -- compound tor_N ;
-lin inhibitor_N = mkN "inhibitor" "inhibitors" ; -- compound tor_N ;
-lin exhibitor_N = mkN "exhibitor" "exhibitors" ; -- compound tor_N ;
-lin capacitor_N = mkN "capacitor" "capacitors" ; -- compound tor_N ;
-lin solicitor_N = mkN "solicitor" "solicitors" ; -- compound tor_N ;
-lin editor_N = mkN "editor" "editors" ; -- compound tor_N ;
-lin 'sports-editor_N' = mkN "sports-editor" "sports-editors" ; -- compound tor_N ;
-lin subeditor_N = mkN "subeditor" "subeditors" ; -- compound tor_N ;
-lin creditor_N = mkN "creditor" "creditors" ; -- compound tor_N ;
-lin auditor_N = mkN "auditor" "auditors" ; -- compound tor_N ;
-lin janitor_N = mkN "janitor" "janitors" ; -- compound tor_N ;
-lin genitor_N = mkN "genitor" "genitors" ; -- compound tor_N ;
-lin progenitor_N = mkN "progenitor" "progenitors" ; -- compound tor_N ;
-lin monitor_N = mkN "monitor" "monitors" ; -- compound tor_N ;
-lin inheritor_N = mkN "inheritor" "inheritors" ; -- compound tor_N ;
-lin inquisitor_N = mkN "inquisitor" "inquisitors" ; -- compound tor_N ;
-lin visitor_N = mkN "visitor" "visitors" ; -- compound tor_N ;
-lin depositor_N = mkN "depositor" "depositors" ; -- compound tor_N ;
-lin ovipositor_N = mkN "ovipositor" "ovipositors" ; -- compound tor_N ;
-lin compositor_N = mkN "compositor" "compositors" ; -- compound tor_N ;
-lin expositor_N = mkN "expositor" "expositors" ; -- compound tor_N ;
-lin competitor_N = mkN "competitor" "competitors" ; -- compound tor_N ;
-lin suitor_N = mkN "suitor" "suitors" ; -- compound tor_N ;
-lin servitor_N = mkN "servitor" "servitors" ; -- compound tor_N ;
-lin realtor_N = mkN "realtor" "realtors" ; -- compound tor_N ;
-lin cantor_N = mkN "cantor" "cantors" ; -- compound tor_N ;
-lin guarantor_N = mkN "guarantor" "guarantors" ; -- compound tor_N ;
-lin grantor_N = mkN "grantor" "grantors" ; -- compound tor_N ;
-lin warrantor_N = mkN "warrantor" "warrantors" ; -- compound tor_N ;
-lin accentor_N = mkN "accentor" "accentors" ; -- compound tor_N ;
-lin precentor_N = mkN "precentor" "precentors" ; -- compound tor_N ;
-lin mentor_N = mkN "mentor" "mentors" ; -- compound tor_N ;
-lin tormentor_N = mkN "tormentor" "tormentors" ; -- compound tor_N ;
-lin stentor_N = mkN "stentor" "stentors" ; -- compound tor_N ;
-lin inventor_N = mkN "inventor" "inventors" ; -- compound tor_N ;
-lin motor_N = mkN "motor" "motors" ; -- compound tor_N ;
-lin oculomotor_N = mkN "oculomotor" "oculomotors" ; -- compound tor_N ;
-lin rotor_N = mkN "rotor" "rotors" ; -- compound tor_N ;
-lin captor_N = mkN "captor" "captors" ; -- compound tor_N ;
-lin adaptor_N = mkN "adaptor" "adaptors" ; -- compound tor_N ;
-lin utahraptor_N = mkN "utahraptor" "utahraptors" ; -- compound tor_N ;
-lin velociraptor_N = mkN "velociraptor" "velociraptors" ; -- compound tor_N ;
-lin maniraptor_N = mkN "maniraptor" "maniraptors" ; -- compound tor_N ;
-lin eoraptor_N = mkN "eoraptor" "eoraptors" ; -- compound tor_N ;
-lin acceptor_N = mkN "acceptor" "acceptors" ; -- compound tor_N ;
-lin receptor_N = mkN "receptor" "receptors" ; -- compound tor_N ;
-lin chemoreceptor_N = mkN "chemoreceptor" "chemoreceptors" ; -- compound tor_N ;
-lin thermoreceptor_N = mkN "thermoreceptor" "thermoreceptors" ; -- compound tor_N ;
-lin osmoreceptor_N = mkN "osmoreceptor" "osmoreceptors" ; -- compound tor_N ;
-lin baroreceptor_N = mkN "baroreceptor" "baroreceptors" ; -- compound tor_N ;
-lin preceptor_N = mkN "preceptor" "preceptors" ; -- compound tor_N ;
-lin proprioceptor_N = mkN "proprioceptor" "proprioceptors" ; -- compound tor_N ;
-lin interoceptor_N = mkN "interoceptor" "interoceptors" ; -- compound tor_N ;
-lin exteroceptor_N = mkN "exteroceptor" "exteroceptors" ; -- compound tor_N ;
-lin interceptor_N = mkN "interceptor" "interceptors" ; -- compound tor_N ;
-lin descriptor_N = mkN "descriptor" "descriptors" ; -- compound tor_N ;
-lin sculptor_N = mkN "sculptor" "sculptors" ; -- compound tor_N ;
-lin preemptor_N = mkN "preemptor" "preemptors" ; -- compound tor_N ;
-lin castor_N = mkN "castor" "castors" ; -- compound tor_N ;
-lin pastor_N = mkN "pastor" "pastors" ; -- compound tor_N ;
-lin quaestor_N = mkN "quaestor" "quaestors" ; -- compound tor_N ;
-lin ancestor_N = mkN "ancestor" "ancestors" ; -- compound tor_N ;
-lin investor_N = mkN "investor" "investors" ; -- compound tor_N ;
-lin thermistor_N = mkN "thermistor" "thermistors" ; -- compound tor_N ;
-lin resistor_N = mkN "resistor" "resistors" ; -- compound tor_N ;
-lin transistor_N = mkN "transistor" "transistors" ; -- compound tor_N ;
-lin impostor_N = mkN "impostor" "impostors" ; -- compound tor_N ;
-lin bettor_N = mkN "bettor" "bettors" ; -- compound tor_N ;
-lin abettor_N = mkN "abettor" "abettors" ; -- compound tor_N ;
-lin carburettor_N = mkN "carburettor" "carburettors" ; -- compound tor_N ;
-lin contributor_N = mkN "contributor" "contributors" ; -- compound tor_N ;
-lin distributor_N = mkN "distributor" "distributors" ; -- compound tor_N ;
-lin prosecutor_N = mkN "prosecutor" "prosecutors" ; -- compound tor_N ;
-lin persecutor_N = mkN "persecutor" "persecutors" ; -- compound tor_N ;
-lin executor_N = mkN "executor" "executors" ; -- compound tor_N ;
-lin interlocutor_N = mkN "interlocutor" "interlocutors" ; -- compound tor_N ;
-lin coadjutor_N = mkN "coadjutor" "coadjutors" ; -- compound tor_N ;
-lin tutor_N = mkN "tutor" "tutors" ; -- compound tor_N ;
-lin languor_N = mkN "languor" "languors" ;
-lin liquor_N = mkN "liquor" "liquors" ;
-lin favor_N = mkN "favor" "favors" ;
-lin disfavor_N = mkN "disfavor" "disfavors" ; -- compound favor_N ;
-lin flavor_N = mkN "flavor" "flavors" ;
-lin survivor_N = mkN "survivor" "survivors" ;
-lin plexor_N = mkN "plexor" "plexors" ;
-lin uxor_N = mkN "uxor" "uxors" ;
-lin mayor_N = mkN "mayor" "mayors" ;
-lin conveyor_N = mkN "conveyor" "conveyors" ;
-lin purveyor_N = mkN "purveyor" "purveyors" ;
-lin surveyor_N = mkN "surveyor" "surveyors" ;
-lin razor_N = mkN "razor" "razors" ;
-lin 'safety-razor_N' = mkN "safety-razor" "safety-razors" ; -- compound razor_N ;
-lin pr_N = mkN "pr" "prs" ;
-lin parr_N = mkN "parr" "parrs" ;
-lin birr_N = mkN "birr" "birrs" ;
-lin torr_N = mkN "torr" "torrs" ;
-lin burr_N = mkN "burr" "burrs" ;
-lin purr_N = mkN "purr" "purrs" ;
-lin ussr_N = mkN "ussr" "ussrs" ;
-lin gaur_N = mkN "gaur" "gaurs" ;
-lin herrerasaur_N = mkN "herrerasaur" "herrerasaurs" ;
-lin styracosaur_N = mkN "styracosaur" "styracosaurs" ;
-lin psittacosaur_N = mkN "psittacosaur" "psittacosaurs" ;
-lin pelycosaur_N = mkN "pelycosaur" "pelycosaurs" ;
-lin ictodosaur_N = mkN "ictodosaur" "ictodosaurs" ;
-lin dromaeosaur_N = mkN "dromaeosaur" "dromaeosaurs" ;
-lin stegosaur_N = mkN "stegosaur" "stegosaurs" ;
-lin archosaur_N = mkN "archosaur" "archosaurs" ;
-lin nothosaur_N = mkN "nothosaur" "nothosaurs" ;
-lin corythosaur_N = mkN "corythosaur" "corythosaurs" ;
-lin plesiosaur_N = mkN "plesiosaur" "plesiosaurs" ;
-lin staurikosaur_N = mkN "staurikosaur" "staurikosaurs" ;
-lin megalosaur_N = mkN "megalosaur" "megalosaurs" ;
-lin pachycephalosaur_N = mkN "pachycephalosaur" "pachycephalosaurs" ;
-lin allosaur_N = mkN "allosaur" "allosaurs" ;
-lin ankylosaur_N = mkN "ankylosaur" "ankylosaurs" ;
-lin pisanosaur_N = mkN "pisanosaur" "pisanosaurs" ;
-lin titanosaur_N = mkN "titanosaur" "titanosaurs" ;
-lin dinosaur_N = mkN "dinosaur" "dinosaurs" ;
-lin argentinosaur_N = mkN "argentinosaur" "argentinosaurs" ;
-lin tyrannosaur_N = mkN "tyrannosaur" "tyrannosaurs" ;
-lin carnosaur_N = mkN "carnosaur" "carnosaurs" ;
-lin barosaur_N = mkN "barosaur" "barosaurs" ;
-lin hadrosaur_N = mkN "hadrosaur" "hadrosaurs" ;
-lin pterosaur_N = mkN "pterosaur" "pterosaurs" ;
-lin apatosaur_N = mkN "apatosaur" "apatosaurs" ;
-lin ceratosaur_N = mkN "ceratosaur" "ceratosaurs" ;
-lin ichthyosaur_N = mkN "ichthyosaur" "ichthyosaurs" ;
-lin centaur_N = mkN "centaur" "centaurs" ;
-lin minotaur_N = mkN "minotaur" "minotaurs" ;
-lin bur_N = mkN "bur" "burs" ;
-lin sandbur_N = mkN "sandbur" "sandburs" ; -- compound bur_N ;
-lin cocklebur_N = mkN "cocklebur" "cockleburs" ; -- compound bur_N ;
-lin butterbur_N = mkN "butterbur" "butterburs" ; -- compound bur_N ;
-lin cur_N = mkN "cur" "curs" ;
-lin grandeur_N = mkN "grandeur" "grandeurs" ;
-lin coiffeur_N = mkN "coiffeur" "coiffeurs" ;
-lin chauffeur_N = mkN "chauffeur" "chauffeurs" ;
-lin arbitrageur_N = mkN "arbitrageur" "arbitrageurs" ;
-lin bonheur_N = mkN "bonheur" "bonheurs" ;
-lin entrepreneur_N = mkN "entrepreneur" "entrepreneurs" ;
-lin carillonneur_N = mkN "carillonneur" "carillonneurs" ;
-lin danseur_N = mkN "danseur" "danseurs" ;
-lin poseur_N = mkN "poseur" "poseurs" ;
-lin masseur_N = mkN "masseur" "masseurs" ;
-lin connoisseur_N = mkN "connoisseur" "connoisseurs" ;
-lin 'agent provocateur_N' = mkN "agent provocateur" "agents provocateurs" ;
-lin amateur_N = mkN "amateur" "amateurs" ;
-lin restaurateur_N = mkN "restaurateur" "restaurateurs" ;
-lin restauranteur_N = mkN "restauranteur" "restauranteurs" ;
-lin raconteur_N = mkN "raconteur" "raconteurs" ;
-lin saboteur_N = mkN "saboteur" "saboteurs" ;
-lin rapporteur_N = mkN "rapporteur" "rapporteurs" ;
-lin frotteur_N = mkN "frotteur" "frotteurs" ;
-lin auteur_N = mkN "auteur" "auteurs" ;
-lin hauteur_N = mkN "hauteur" "hauteurs" ; -- notcompound auteur_N ;
-lin longueur_N = mkN "longueur" "longueurs" ;
-lin liqueur_N = mkN "liqueur" "liqueurs" ;
-lin voyeur_N = mkN "voyeur" "voyeurs" ;
-lin fur_N = mkN "fur" "furs" ;
-lin sulfur_N = mkN "sulfur" "sulfurs" ; -- compound fur_N ;
-lin regur_N = mkN "regur" "regurs" ;
-lin bulgur_N = mkN "bulgur" "bulgurs" ;
-lin langur_N = mkN "langur" "langurs" ;
-lin augur_N = mkN "augur" "augurs" ;
-lin sulphur_N = mkN "sulphur" "sulphurs" ;
-lin blur_N = mkN "blur" "blurs" ;
-lin slur_N = mkN "slur" "slurs" ;
-lin demur_N = mkN "demur" "demurs" ;
-lin femur_N = mkN "femur" "femurs" ;
-lin lemur_N = mkN "lemur" "lemurs" ;
-lin murmur_N = mkN "murmur" "murmurs" ;
-lin labour_N = mkN "labour" "labours" ;
-lin neighbour_N = mkN "neighbour" "neighbours" ;
-lin tambour_N = mkN "tambour" "tambours" ;
-lin arbour_N = mkN "arbour" "arbours" ;
-lin harbour_N = mkN "harbour" "harbours" ; -- notcompound arbour_N ;
-lin succour_N = mkN "succour" "succours" ;
-lin rancour_N = mkN "rancour" "rancours" ;
-lin scour_N = mkN "scour" "scours" ;
-lin troubadour_N = mkN "troubadour" "troubadours" ;
-lin pompadour_N = mkN "pompadour" "pompadours" ;
-lin candour_N = mkN "candour" "candours" ;
-lin splendour_N = mkN "splendour" "splendours" ;
-lin odour_N = mkN "odour" "odours" ;
-lin ardour_N = mkN "ardour" "ardours" ;
-lin rigour_N = mkN "rigour" "rigours" ;
-lin vigour_N = mkN "vigour" "vigours" ;
-lin clangour_N = mkN "clangour" "clangours" ;
-lin hour_N = mkN "hour" "hours" ;
-lin 'half-hour_N' = mkN "half-hour" "half-hours" ; -- compound hour_N ;
-lin 'man-hour_N' = mkN "man-hour" "man-hours" ; -- compound hour_N ;
-lin behaviour_N = mkN "behaviour" "behaviours" ;
-lin misbehaviour_N = mkN "misbehaviour" "misbehaviours" ; -- compound behaviour_N ;
-lin saviour_N = mkN "saviour" "saviours" ;
-lin valour_N = mkN "valour" "valours" ;
-lin velour_N = mkN "velour" "velours" ;
-lin flour_N = mkN "flour" "flours" ;
-lin 'pea-flour_N' = mkN "pea-flour" "pea-flours" ; -- compound flour_N ;
-lin cornflour_N = mkN "cornflour" "cornflours" ; -- compound flour_N ;
-lin colour_N = mkN "colour" "colours" ;
-lin 'snuff-colour_N' = mkN "snuff-colour" "snuff-colours" ; -- compound colour_N ;
-lin tricolour_N = mkN "tricolour" "tricolours" ; -- compound colour_N ;
-lin watercolour_N = mkN "watercolour" "watercolours" ; -- compound colour_N ;
-lin dolour_N = mkN "dolour" "dolours" ;
-lin parlour_N = mkN "parlour" "parlours" ;
-lin 'sun-parlour_N' = mkN "sun-parlour" "sun-parlours" ; -- compound parlour_N ;
-lin 'beauty-parlour_N' = mkN "beauty-parlour" "beauty-parlours" ; -- compound parlour_N ;
-lin amour_N = mkN "amour" "amours" ;
-lin clamour_N = mkN "clamour" "clamours" ; -- notcompound amour_N ;
-lin glamour_N = mkN "glamour" "glamours" ; -- notcompound amour_N ;
-lin paramour_N = mkN "paramour" "paramours" ; -- compound amour_N ;
-lin armour_N = mkN "armour" "armours" ;
-lin 'ring-armour_N' = mkN "ring-armour" "ring-armours" ; -- compound armour_N ;
-lin 'chain-armour_N' = mkN "chain-armour" "chain-armours" ; -- compound armour_N ;
-lin humour_N = mkN "humour" "humours" ;
-lin rumour_N = mkN "rumour" "rumours" ;
-lin tumour_N = mkN "tumour" "tumours" ;
-lin demeanour_N = mkN "demeanour" "demeanours" ;
-lin misdemeanour_N = mkN "misdemeanour" "misdemeanours" ; -- compound demeanour_N ;
-lin honour_N = mkN "honour" "honours" ;
-lin dishonour_N = mkN "dishonour" "dishonours" ; -- compound honour_N ;
-lin vapour_N = mkN "vapour" "vapours" ;
-lin downpour_N = mkN "downpour" "downpours" ;
-lin sour_N = mkN "sour" "sours" ;
-lin tour_N = mkN "tour" "tours" ;
-lin detour_N = mkN "detour" "detours" ; -- compound tour_N ;
-lin contour_N = mkN "contour" "contours" ; -- compound tour_N ;
-lin endeavour_N = mkN "endeavour" "endeavours" ;
-lin favour_N = mkN "favour" "favours" ;
-lin disfavour_N = mkN "disfavour" "disfavours" ; -- compound favour_N ;
-lin flavour_N = mkN "flavour" "flavours" ;
-lin savour_N = mkN "savour" "savours" ;
-lin fervour_N = mkN "fervour" "fervours" ;
-lin rangpur_N = mkN "rangpur" "rangpurs" ;
-lin jodhpur_N = mkN "jodhpur" "jodhpurs" ;
-lin spur_N = mkN "spur" "spurs" ;
-lin cockspur_N = mkN "cockspur" "cockspurs" ; -- compound spur_N ;
-lin larkspur_N = mkN "larkspur" "larkspurs" ; -- compound spur_N ;
-lin hotspur_N = mkN "hotspur" "hotspurs" ; -- compound spur_N ;
-lin imprimatur_N = mkN "imprimatur" "imprimaturs" ;
-lin 'non sequitur_N' = mkN "non sequitur" "non sequiturs" ;
-lin yr_N = mkN "yr" "yrs" ;
-lin zephyr_N = mkN "zephyr" "zephyrs" ; -- compound yr_N ;
-lin satyr_N = mkN "satyr" "satyrs" ; -- compound yr_N ;
-lin martyr_N = mkN "martyr" "martyrs" ; -- compound yr_N ;
-lin paterfamilias_N = mkN "paterfamilias" "IRREG" ;
-lin 'sober-sides_N' = mkN "sober-sides" "IRREG" ;
-lin jakes_N = mkN "jakes" "IRREG" ;
-lin shambles_N = mkN "shambles" "IRREG" ;
-lin lazybones_N = mkN "lazybones" "IRREG" ;
-lin 'square-toes_N' = mkN "square-toes" "IRREG" ;
-lin jackanapes_N = mkN "jackanapes" "IRREG" ;
-lin 'chargé d\'affaires_N' = mkN "chargé d'affaires" "IRREG" ;
-lin 'spindle-shanks_N' = mkN "spindle-shanks" "IRREG" ;
-lin 'cat-o\'-nine-tails_N' = mkN "cat-o'-nine-tails" "IRREG" ;
-lin 'homo sapiens_N' = mkN "homo sapiens" "IRREG" ;
-lin dickens_N = mkN "dickens" "IRREG" ;
-lin 'delirium tremens_N' = mkN "delirium tremens" "IRREG" ;
-lin 'locum tenens_N' = mkN "locum tenens" "IRREG" ;
-lin pharos_N = mkN "pharos" "IRREG" ;
-lin 'esprit de corps_N' = mkN "esprit de corps" "IRREG" ;
-lin revers_N = mkN "revers" "IRREG" ;
-lin puss_N = mkN "puss" "IRREG" ;
-lin ethos_2_N = mkN "ethos" "ethea" ;
-lin corpus_N = mkN "corpus" "corpora" ;
-lin ethos_1_N = mkN "ethos" "ethe" ;
-lin cosmos_1_N = mkN "cosmos" "cosmoi" ;
-lin streptococcus_N = mkN "streptococcus" "streptococci" ;
-lin 'locus classicus_N' = mkN "locus classicus" "locus classici" ;
-lin locus_N = mkN "locus" "loci" ;
-lin nucleus_N = mkN "nucleus" "nuclei" ;
-lin sarcophagus_N = mkN "sarcophagus" "sarcophagi" ;
-lin bronchus_N = mkN "bronchus" "bronchi" ;
-lin radius_N = mkN "radius" "radii" ;
-lin bacillus_N = mkN "bacillus" "bacilli" ;
-lin stimulus_N = mkN "stimulus" "stimuli" ;
-lin cumulus_N = mkN "cumulus" "cumuli" ;
-lin tumulus_N = mkN "tumulus" "tumuli" ;
-lin genus_N = mkN "genus" "geni" ;
-lin alumnus_N = mkN "alumnus" "alumni" ;
-lin onus_N = mkN "onus" "oni" ;
-lin subconscious_N = mkN "subconscious" "subconscioi" ;
-lin rumpus_N = mkN "rumpus" "rumpi" ;
-lin opus_N = mkN "opus" "opi" ;
-lin 'magnum opus_N' = mkN "magnum opus" "magnum opi" ; -- compound opus_N ;
-lin lazarus_N = mkN "lazarus" "lazari" ;
-lin consensus_N = mkN "consensus" "consensi" ;
-lin tarsus_N = mkN "tarsus" "tarsi" ;
-lin missus_N = mkN "missus" "missi" ;
-lin colossus_N = mkN "colossus" "colossi" ;
-lin impetus_N = mkN "impetus" "impeti" ;
-lin 'ignis fatuus_N' = mkN "ignis fatuus" "ignis fatui" ;
-lin 'solar plexus_N' = mkN "solar plexus" "solar plexi" ;
-lin fracas_1_N = mkN "fracas" "fracas" ;
-lin 'faux pas_N' = mkN "faux pas" "faux pas" ;
-lin 'mardi gras_N' = mkN "mardi gras" "mardi gras" ;
-lin baas_N = mkN "baas" "baases" ;
-lin meshugaas_N = mkN "meshugaas" "meshugaases" ;
-lin fracas_2_N = mkN "fracas" "fracases" ;
-lin judas_N = mkN "judas" "judases" ;
-lin pancreas_N = mkN "pancreas" "pancreases" ;
-lin treas_N = mkN "treas" "treases" ;
-lin gas_N = mkN "gas" "gases" ;
-lin 'laughing-gas_N' = mkN "laughing-gas" "laughing-gases" ; -- compound gas_N ;
-lin 'coal-gas_N' = mkN "coal-gas" "coal-gases" ; -- compound gas_N ;
-lin 'poison-gas_N' = mkN "poison-gas" "poison-gases" ; -- compound gas_N ;
-lin 'town-gas_N' = mkN "town-gas" "town-gases" ; -- compound gas_N ;
-lin 'tear-gas_N' = mkN "tear-gas" "tear-gases" ; -- compound gas_N ;
-lin 'sewer-gas_N' = mkN "sewer-gas" "sewer-gases" ; -- compound gas_N ;
-lin phytelephas_N = mkN "phytelephas" "phytelephases" ;
-lin bias_N = mkN "bias" "biases" ;
-lin epispadias_N = mkN "epispadias" "epispadiases" ;
-lin hypospadias_N = mkN "hypospadias" "hypospadiases" ;
-lin alias_N = mkN "alias" "aliases" ;
-lin balas_N = mkN "balas" "balases" ;
-lin erysipelas_N = mkN "erysipelas" "erysipelases" ;
-lin atlas_N = mkN "atlas" "atlases" ;
-lin cutlas_N = mkN "cutlas" "cutlases" ;
-lin camas_N = mkN "camas" "camases" ;
-lin michaelmas_N = mkN "michaelmas" "michaelmases" ;
-lin dolmas_N = mkN "dolmas" "dolmases" ;
-lin lammas_N = mkN "lammas" "lammases" ;
-lin Christmas_N = mkN "Christmas" "Christmases" ;
-lin xmas_N = mkN "xmas" "xmases" ;
-lin psoas_N = mkN "psoas" "psoases" ;
-lin pas_N = mkN "pas" "pases" ;
-lin pampas_N = mkN "pampas" "pampases" ; -- compound pas_N ;
-lin madras_N = mkN "madras" "madrases" ;
-lin ceras_N = mkN "ceras" "cerases" ;
-lin dinoceras_N = mkN "dinoceras" "dinocerases" ; -- compound ceras_N ;
-lin sassafras_N = mkN "sassafras" "sassafrases" ;
-lin 'pate de foie gras_N' = mkN "pate de foie gras" "pate de foie grases" ;
-lin arras_N = mkN "arras" "arrases" ;
-lin patas_N = mkN "patas" "patases" ;
-lin litas_N = mkN "litas" "litases" ;
-lin centas_N = mkN "centas" "centases" ;
-lin canvas_N = mkN "canvas" "canvases" ;
-lin eyas_N = mkN "eyas" "eyases" ;
-lin dibs_N = mkN "dibs" "dibses" ;
-lin spareribs_N = mkN "spareribs" "spareribses" ;
-lin iambics_N = mkN "iambics" "iambics" ;
-lin orthopaedics_N = mkN "orthopaedics" "orthopaedics" ;
-lin orthopedics_N = mkN "orthopedics" "orthopedics" ;
-lin strategics_N = mkN "strategics" "strategics" ;
-lin graphics_N = mkN "graphics" "graphics" ;
-lin hieroglyphics_N = mkN "hieroglyphics" "hieroglyphics" ;
-lin bucolics_N = mkN "bucolics" "bucolics" ;
-lin hydraulics_N = mkN "hydraulics" "hydraulics" ;
-lin thermodynamics_N = mkN "thermodynamics" "thermodynamics" ;
-lin aerodynamics_N = mkN "aerodynamics" "aerodynamics" ;
-lin ceramics_N = mkN "ceramics" "ceramics" ;
-lin phonemics_N = mkN "phonemics" "phonemics" ;
-lin eurhythmics_N = mkN "eurhythmics" "eurhythmics" ;
-lin eurythmics_N = mkN "eurythmics" "eurythmics" ;
-lin economics_N = mkN "economics" "economics" ;
-lin ergonomics_N = mkN "ergonomics" "ergonomics" ;
-lin mechanics_N = mkN "mechanics" "mechanics" ;
-lin eugenics_N = mkN "eugenics" "eugenics" ;
-lin calisthenics_N = mkN "calisthenics" "calisthenics" ;
-lin callisthenics_N = mkN "callisthenics" "callisthenics" ;
-lin phonics_N = mkN "phonics" "phonics" ;
-lin histrionics_N = mkN "histrionics" "histrionics" ;
-lin mnemonics_N = mkN "mnemonics" "mnemonics" ;
-lin hydroponics_N = mkN "hydroponics" "hydroponics" ;
-lin electronics_N = mkN "electronics" "electronics" ;
-lin microelectronics_N = mkN "microelectronics" "microelectronics" ; -- compound electronics_N ;
-lin heroics_N = mkN "heroics" "heroics" ;
-lin atmospherics_N = mkN "atmospherics" "atmospherics" ;
-lin hysterics_N = mkN "hysterics" "hysterics" ;
-lin paediatrics_N = mkN "paediatrics" "paediatrics" ;
-lin pediatrics_N = mkN "pediatrics" "pediatrics" ;
-lin geriatrics_N = mkN "geriatrics" "geriatrics" ;
-lin obstetrics_N = mkN "obstetrics" "obstetrics" ;
-lin classics_N = mkN "classics" "classics" ;
-lin physics_N = mkN "physics" "physics" ;
-lin metaphysics_N = mkN "metaphysics" "metaphysics" ; -- compound physics_N ;
-lin geophysics_N = mkN "geophysics" "geophysics" ; -- compound physics_N ;
-lin astrophysics_N = mkN "astrophysics" "astrophysics" ; -- compound physics_N ;
-lin acrobatics_N = mkN "acrobatics" "acrobatics" ;
-lin aerobatics_N = mkN "aerobatics" "aerobatics" ;
-lin dramatics_N = mkN "dramatics" "dramatics" ;
-lin mathematics_N = mkN "mathematics" "mathematics" ;
-lin numismatics_N = mkN "numismatics" "numismatics" ;
-lin statics_N = mkN "statics" "statics" ;
-lin apologetics_N = mkN "apologetics" "apologetics" ;
-lin esthetics_N = mkN "esthetics" "esthetics" ;
-lin aesthetics_N = mkN "aesthetics" "aesthetics" ; -- notcompound esthetics_N ;
-lin athletics_N = mkN "athletics" "athletics" ;
-lin homiletics_N = mkN "homiletics" "homiletics" ;
-lin genetics_N = mkN "genetics" "genetics" ;
-lin kinetics_N = mkN "kinetics" "kinetics" ;
-lin phonetics_N = mkN "phonetics" "phonetics" ;
-lin cybernetics_N = mkN "cybernetics" "cybernetics" ;
-lin dietetics_N = mkN "dietetics" "dietetics" ;
-lin politics_N = mkN "politics" "politics" ;
-lin geopolitics_N = mkN "geopolitics" "geopolitics" ; -- compound politics_N ;
-lin semantics_N = mkN "semantics" "semantics" ;
-lin orthodontics_N = mkN "orthodontics" "orthodontics" ;
-lin optics_N = mkN "optics" "optics" ;
-lin plastics_N = mkN "plastics" "plastics" ;
-lin gymnastics_N = mkN "gymnastics" "gymnastics" ;
-lin logistics_N = mkN "logistics" "logistics" ;
-lin ballistics_N = mkN "ballistics" "ballistics" ;
-lin heuristics_N = mkN "heuristics" "heuristics" ;
-lin statistics_N = mkN "statistics" "statistics" ;
-lin linguistics_N = mkN "linguistics" "linguistics" ;
-lin acoustics_N = mkN "acoustics" "acoustics" ;
-lin aeronautics_N = mkN "aeronautics" "aeronautics" ;
-lin astronautics_N = mkN "astronautics" "astronautics" ;
-lin therapeutics_N = mkN "therapeutics" "therapeutics" ;
-lin civics_N = mkN "civics" "civics" ;
-lin aerobics_N = mkN "aerobics" "aerobicses" ;
-lin liturgics_N = mkN "liturgics" "liturgicses" ;
-lin dermatoglyphics_N = mkN "dermatoglyphics" "dermatoglyphicses" ;
-lin ethics_N = mkN "ethics" "ethicses" ;
-lin bioethics_N = mkN "bioethics" "bioethicses" ; -- compound ethics_N ;
-lin neuroethics_N = mkN "neuroethics" "neuroethicses" ; -- compound ethics_N ;
-lin dynamics_N = mkN "dynamics" "dynamicses" ;
-lin psychodynamics_N = mkN "psychodynamics" "psychodynamicses" ; -- compound dynamics_N ;
-lin hemodynamics_N = mkN "hemodynamics" "hemodynamicses" ; -- compound dynamics_N ;
-lin hydrodynamics_N = mkN "hydrodynamics" "hydrodynamicses" ; -- compound dynamics_N ;
-lin magnetohydrodynamics_N = mkN "magnetohydrodynamics" "magnetohydrodynamicses" ; -- compound dynamics_N ;
-lin astrodynamics_N = mkN "astrodynamics" "astrodynamicses" ; -- compound dynamics_N ;
-lin polemics_N = mkN "polemics" "polemicses" ;
-lin morphophonemics_N = mkN "morphophonemics" "morphophonemicses" ;
-lin proxemics_N = mkN "proxemics" "proxemicses" ;
-lin proteomics_N = mkN "proteomics" "proteomicses" ;
-lin genomics_N = mkN "genomics" "genomicses" ;
-lin macroeconomics_N = mkN "macroeconomics" "macroeconomicses" ;
-lin microeconomics_N = mkN "microeconomics" "microeconomicses" ;
-lin aeromechanics_N = mkN "aeromechanics" "aeromechanicses" ;
-lin photomechanics_N = mkN "photomechanics" "photomechanicses" ;
-lin cryogenics_N = mkN "cryogenics" "cryogenicses" ;
-lin dysgenics_N = mkN "dysgenics" "dysgenicses" ;
-lin euthenics_N = mkN "euthenics" "euthenicses" ;
-lin pyrotechnics_N = mkN "pyrotechnics" "pyrotechnicses" ;
-lin bionics_N = mkN "bionics" "bionicses" ;
-lin thermionics_N = mkN "thermionics" "thermionicses" ;
-lin avionics_N = mkN "avionics" "avionicses" ;
-lin harmonics_N = mkN "harmonics" "harmonicses" ;
-lin animatronics_N = mkN "animatronics" "animatronicses" ;
-lin tectonics_N = mkN "tectonics" "tectonicses" ;
-lin architectonics_N = mkN "architectonics" "architectonicses" ; -- compound tectonics_N ;
-lin cryonics_N = mkN "cryonics" "cryonicses" ;
-lin subtropics_N = mkN "subtropics" "subtropicses" ;
-lin alphanumerics_N = mkN "alphanumerics" "alphanumericses" ;
-lin biometrics_N = mkN "biometrics" "biometricses" ;
-lin econometrics_N = mkN "econometrics" "econometricses" ;
-lin isometrics_N = mkN "isometrics" "isometricses" ;
-lin catoptrics_N = mkN "catoptrics" "catoptricses" ;
-lin basics_N = mkN "basics" "basicses" ;
-lin forensics_N = mkN "forensics" "forensicses" ;
-lin psychophysics_N = mkN "psychophysics" "psychophysicses" ;
-lin biophysics_N = mkN "biophysics" "biophysicses" ;
-lin metamathematics_N = mkN "metamathematics" "metamathematicses" ;
-lin kinematics_N = mkN "kinematics" "kinematicses" ;
-lin systematics_N = mkN "systematics" "systematicses" ;
-lin biosystematics_N = mkN "biosystematics" "biosystematicses" ; -- compound systematics_N ;
-lin pragmatics_N = mkN "pragmatics" "pragmaticses" ;
-lin pneumatics_N = mkN "pneumatics" "pneumaticses" ;
-lin quadratics_N = mkN "quadratics" "quadraticses" ;
-lin thermostatics_N = mkN "thermostatics" "thermostaticses" ;
-lin hydrostatics_N = mkN "hydrostatics" "hydrostaticses" ;
-lin electrostatics_N = mkN "electrostatics" "electrostaticses" ;
-lin tactics_N = mkN "tactics" "tacticses" ;
-lin dialectics_N = mkN "dialectics" "dialecticses" ;
-lin prosthetics_N = mkN "prosthetics" "prostheticses" ;
-lin pharmacogenetics_N = mkN "pharmacogenetics" "pharmacogeneticses" ;
-lin cytogenetics_N = mkN "cytogenetics" "cytogeneticses" ;
-lin pharmacokinetics_N = mkN "pharmacokinetics" "pharmacokineticses" ;
-lin poetics_N = mkN "poetics" "poeticses" ;
-lin endodontics_N = mkN "endodontics" "endodonticses" ;
-lin prosthodontics_N = mkN "prosthodontics" "prosthodonticses" ;
-lin periodontics_N = mkN "periodontics" "periodonticses" ;
-lin exodontics_N = mkN "exodontics" "exodonticses" ;
-lin robotics_N = mkN "robotics" "roboticses" ;
-lin telerobotics_N = mkN "telerobotics" "teleroboticses" ; -- compound robotics_N ;
-lin macrobiotics_N = mkN "macrobiotics" "macrobioticses" ;
-lin bibliotics_N = mkN "bibliotics" "biblioticses" ;
-lin semiotics_N = mkN "semiotics" "semioticses" ;
-lin orthoptics_N = mkN "orthoptics" "orthopticses" ;
-lin glyptics_N = mkN "glyptics" "glypticses" ;
-lin onomastics_N = mkN "onomastics" "onomasticses" ;
-lin cladistics_N = mkN "cladistics" "cladisticses" ;
-lin patristics_N = mkN "patristics" "patristicses" ;
-lin lexicostatistics_N = mkN "lexicostatistics" "lexicostatisticses" ;
-lin psycholinguistics_N = mkN "psycholinguistics" "psycholinguisticses" ;
-lin sociolinguistics_N = mkN "sociolinguistics" "sociolinguisticses" ;
-lin neurolinguistics_N = mkN "neurolinguistics" "neurolinguisticses" ;
-lin hermeneutics_N = mkN "hermeneutics" "hermeneuticses" ;
-lin odds_N = mkN "odds" "odds" ;
-lin billiards_N = mkN "billiards" "billiards" ;
-lin beads_N = mkN "beads" "beadses" ;
-lin skinheads_N = mkN "skinheads" "skinheadses" ;
-lin loggerheads_N = mkN "loggerheads" "loggerheadses" ;
-lin roads_N = mkN "roads" "roadses" ;
-lin crossroads_N = mkN "crossroads" "crossroadses" ; -- compound roads_N ;
-lin weeds_N = mkN "weeds" "weedses" ;
-lin aids_N = mkN "aids" "aidses" ;
-lin goldfields_N = mkN "goldfields" "goldfieldses" ;
-lin hands_N = mkN "hands" "handses" ;
-lin scablands_N = mkN "scablands" "scablandses" ;
-lin badlands_N = mkN "badlands" "badlandses" ;
-lin funds_N = mkN "funds" "fundses" ;
-lin grounds_N = mkN "grounds" "groundses" ;
-lin mods_N = mkN "mods" "modses" ;
-lin drygoods_N = mkN "drygoods" "drygoodses" ;
-lin backwoods_N = mkN "backwoods" "backwoodses" ;
-lin fantods_N = mkN "fantods" "fantodses" ;
-lin collards_N = mkN "collards" "collardses" ;
-lin boards_N = mkN "boards" "boardses" ;
-lin cords_N = mkN "cords" "cordses" ;
-lin words_N = mkN "words" "wordses" ;
-lin suds_N = mkN "suds" "sudses" ;
-lin soapsuds_N = mkN "soapsuds" "soapsudses" ; -- compound suds_N ;
-lin tabes_N = mkN "tabes" "tabeses" ;
-lin pubes_N = mkN "pubes" "pubeses" ;
-lin auspices_N = mkN "auspices" "auspiceses" ;
-lin circumstances_N = mkN "circumstances" "circumstanceses" ;
-lin fasces_N = mkN "fasces" "fasceses" ;
-lin fauces_N = mkN "fauces" "fauceses" ;
-lin actinomyces_N = mkN "actinomyces" "actinomyceses" ;
-lin streptomyces_N = mkN "streptomyces" "streptomyceses" ;
-lin des_N = mkN "des" "deses" ;
-lin rhagades_N = mkN "rhagades" "rhagadeses" ; -- compound des_N ;
-lin charades_N = mkN "charades" "charadeses" ; -- compound des_N ;
-lin antitrades_N = mkN "antitrades" "antitradeses" ; -- compound des_N ;
-lin ides_N = mkN "ides" "ideses" ; -- notcompound des_N ;
-lin aerides_N = mkN "aerides" "aerideses" ; -- compound des_N ;
-lin sobersides_N = mkN "sobersides" "sobersideses" ; -- compound des_N ;
-lin silversides_N = mkN "silversides" "silversideses" ; -- compound des_N ;
-lin antipodes_N = mkN "antipodes" "antipodeses" ; -- compound des_N ;
-lin lees_N = mkN "lees" "leeses" ;
-lin ambages_N = mkN "ambages" "ambageses" ;
-lin damages_N = mkN "damages" "damageses" ;
-lin wages_N = mkN "wages" "wageses" ;
-lin bilges_N = mkN "bilges" "bilgeses" ;
-lin leptomeninges_N = mkN "leptomeninges" "leptomeningeses" ;
-lin breeches_N = mkN "breeches" "breecheses" ;
-lin starches_N = mkN "starches" "starcheses" ;
-lin britches_N = mkN "britches" "britcheses" ;
-lin ommastrephes_N = mkN "ommastrephes" "ommastrepheses" ;
-lin bedclothes_N = mkN "bedclothes" "bedclotheses" ;
-lin species_N = mkN "species" "species" ;
-lin superficies_N = mkN "superficies" "superficies" ;
-lin series_N = mkN "series" "series" ;
-lin scabies_N = mkN "scabies" "scabieses" ;
-lin rabies_N = mkN "rabies" "rabieses" ;
-lin subspecies_N = mkN "subspecies" "subspecieses" ;
-lin undies_N = mkN "undies" "undieses" ;
-lin flies_N = mkN "flies" "flieses" ;
-lin allies_N = mkN "allies" "allieses" ;
-lin willies_N = mkN "willies" "willieses" ;
-lin follies_N = mkN "follies" "follieses" ;
-lin jimmies_N = mkN "jimmies" "jimmieses" ;
-lin deVries_N = mkN "deVries" "deVrieses" ;
-lin caries_N = mkN "caries" "carieses" ;
-lin sundries_N = mkN "sundries" "sundrieses" ;
-lin liabilities_N = mkN "liabilities" "liabilitieses" ;
-lin hostilities_N = mkN "hostilities" "hostilitieses" ;
-lin civies_N = mkN "civies" "civieses" ;
-lin sweepstakes_N = mkN "sweepstakes" "sweepstakeses" ;
-lin anopheles_N = mkN "anopheles" "anopheles" ;
-lin shingles_N = mkN "shingles" "shingles" ;
-lin piles_N = mkN "piles" "piles" ;
-lin measles_N = mkN "measles" "measles" ;
-lin skittles_N = mkN "skittles" "skittles" ;
-lin durables_N = mkN "durables" "durableses" ;
-lin ratables_N = mkN "ratables" "ratableses" ;
-lin trembles_N = mkN "trembles" "trembleses" ;
-lin marbles_N = mkN "marbles" "marbleses" ;
-lin doubles_N = mkN "doubles" "doubleses" ;
-lin spectacles_N = mkN "spectacles" "spectacleses" ;
-lin hurdles_N = mkN "hurdles" "hurdleses" ;
-lin goggles_N = mkN "goggles" "goggleses" ;
-lin singles_N = mkN "singles" "singleses" ;
-lin peoples_N = mkN "peoples" "peopleses" ;
-lin times_N = mkN "times" "timeses" ;
-lin achimenes_N = mkN "achimenes" "achimeneses" ;
-lin bones_N = mkN "bones" "boneses" ;
-lin crossbones_N = mkN "crossbones" "crossboneses" ; -- compound bones_N ;
-lin nones_N = mkN "nones" "noneses" ;
-lin aloes_N = mkN "aloes" "aloeses" ;
-lin dominoes_N = mkN "dominoes" "dominoeses" ;
-lin throes_N = mkN "throes" "throeses" ;
-lin stapes_N = mkN "stapes" "stapeses" ;
-lin herpes_N = mkN "herpes" "herpeses" ;
-lin res_N = mkN "res" "reses" ;
-lin teres_N = mkN "teres" "tereses" ; -- compound res_N ;
-lin mores_N = mkN "mores" "moreses" ; -- compound res_N ;
-lin pres_N = mkN "pres" "preses" ; -- notcompound res_N ;
-lin premises_N = mkN "premises" "premiseses" ;
-lin sunglasses_N = mkN "sunglasses" "sunglasseses" ;
-lin molasses_N = mkN "molasses" "molasseses" ;
-lin rates_N = mkN "rates" "rateses" ;
-lin diabetes_N = mkN "diabetes" "diabeteses" ;
-lin ascites_N = mkN "ascites" "asciteses" ;
-lin crudites_N = mkN "crudites" "cruditeses" ;
-lin tympanites_N = mkN "tympanites" "tympaniteses" ;
-lin sprites_N = mkN "sprites" "spriteses" ;
-lin pyrites_N = mkN "pyrites" "pyriteses" ;
-lin minutes_N = mkN "minutes" "minuteses" ;
-lin litotes_N = mkN "litotes" "litotes" ;
-lin fatigues_N = mkN "fatigues" "fatigueses" ;
-lin blues_N = mkN "blues" "blueses" ;
-lin eaves_N = mkN "eaves" "eaveses" ;
-lin heaves_N = mkN "heaves" "heaveses" ; -- notcompound eaves_N ;
-lin greaves_N = mkN "greaves" "greaveses" ; -- notcompound eaves_N ;
-lin shirtsleeves_N = mkN "shirtsleeves" "shirtsleeveses" ;
-lin chives_N = mkN "chives" "chiveses" ;
-lin archives_N = mkN "archives" "archiveses" ; -- compound chives_N ;
-lin elves_N = mkN "elves" "elveses" ;
-lin nerves_N = mkN "nerves" "nerveses" ;
-lin fives_N = mkN "fives" "fives" ;
-lin eyes_N = mkN "eyes" "eyeses" ;
-lin assizes_N = mkN "assizes" "assizeses" ;
-lin latitudes_N = mkN "latitudes" "latitudess" ;
-lin intangibles_N = mkN "intangibles" "intangibless" ;
-lin cgs_N = mkN "cgs" "cgses" ;
-lin legs_N = mkN "legs" "legses" ;
-lin spindlelegs_N = mkN "spindlelegs" "spindlelegses" ; -- compound legs_N ;
-lin yellowlegs_N = mkN "yellowlegs" "yellowlegses" ; -- compound legs_N ;
-lin dregs_N = mkN "dregs" "dregses" ;
-lin findings_N = mkN "findings" "findingses" ;
-lin diggings_N = mkN "diggings" "diggingses" ;
-lin things_N = mkN "things" "thingses" ;
-lin nothings_N = mkN "nothings" "nothingses" ; -- compound things_N ;
-lin pickings_N = mkN "pickings" "pickingses" ;
-lin dealings_N = mkN "dealings" "dealingses" ;
-lin feelings_N = mkN "feelings" "feelingses" ;
-lin cracklings_N = mkN "cracklings" "cracklingses" ;
-lin chitterlings_N = mkN "chitterlings" "chitterlingses" ;
-lin cummings_N = mkN "cummings" "cummingses" ;
-lin winnings_N = mkN "winnings" "winningses" ;
-lin drippings_N = mkN "drippings" "drippingses" ;
-lin droppings_N = mkN "droppings" "droppingses" ;
-lin rings_N = mkN "rings" "ringses" ;
-lin heartstrings_N = mkN "heartstrings" "heartstringses" ; -- compound rings_N ;
-lin losings_N = mkN "losings" "losingses" ;
-lin hustings_N = mkN "hustings" "hustingses" ;
-lin savings_N = mkN "savings" "savingses" ;
-lin wings_N = mkN "wings" "wingses" ;
-lin fixings_N = mkN "fixings" "fixingses" ;
-lin tongs_N = mkN "tongs" "tongses" ;
-lin togs_N = mkN "togs" "togses" ;
-lin 'daddy-longlegs_N' = mkN "daddy-longlegs" "daddy-longlegs" ;
-lin innings_N = mkN "innings" "innings" ;
-lin blahs_N = mkN "blahs" "blahses" ;
-lin aurochs_N = mkN "aurochs" "aurochses" ;
-lin nhs_N = mkN "nhs" "nhses" ;
-lin maths_N = mkN "maths" "maths" ;
-lin 'cor anglais_N' = mkN "cor anglais" "cor anglaes" ;
-lin dais_N = mkN "dais" "daises" ;
-lin beaujolais_N = mkN "beaujolais" "beaujolaises" ;
-lin cannabis_N = mkN "cannabis" "cannabises" ;
-lin ibis_N = mkN "ibis" "ibises" ;
-lin pubis_N = mkN "pubis" "pubises" ;
-lin proboscis_N = mkN "proboscis" "proboscises" ;
-lin aegis_N = mkN "aegis" "aegises" ;
-lin haggis_N = mkN "haggis" "haggises" ;
-lin aphis_N = mkN "aphis" "aphes" ;
-lin rachis_N = mkN "rachis" "rachises" ;
-lin orchis_N = mkN "orchis" "orchises" ;
-lin architeuthis_N = mkN "architeuthis" "architeuthises" ;
-lin khakis_N = mkN "khakis" "khakises" ;
-lin 'fleur-de-lis_N' = mkN "fleur-de-lis" "fleur-de-les" ;
-lin corydalis_N = mkN "corydalis" "corydalises" ;
-lin tibialis_N = mkN "tibialis" "tibialises" ;
-lin chrysalis_N = mkN "chrysalis" "chrysalises" ;
-lin digitalis_N = mkN "digitalis" "digitalises" ;
-lin oxalis_N = mkN "oxalis" "oxalises" ;
-lin eblis_N = mkN "eblis" "eblises" ;
-lin stelis_N = mkN "stelis" "stelises" ;
-lin syphilis_N = mkN "syphilis" "syphilises" ;
-lin neurosyphilis_N = mkN "neurosyphilis" "neurosyphilises" ; -- compound syphilis_N ;
-lin challis_N = mkN "challis" "challises" ;
-lin pleurothallis_N = mkN "pleurothallis" "pleurothallises" ;
-lin trellis_N = mkN "trellis" "trellises" ;
-lin torticollis_N = mkN "torticollis" "torticollises" ;
-lin cullis_N = mkN "cullis" "cullises" ;
-lin portcullis_N = mkN "portcullis" "portcullises" ; -- compound cullis_N ;
-lin amaryllis_N = mkN "amaryllis" "amaryllises" ;
-lin megalopolis_N = mkN "megalopolis" "megalopolises" ;
-lin acropolis_N = mkN "acropolis" "acropolises" ;
-lin necropolis_N = mkN "necropolis" "necropolises" ;
-lin metropolis_N = mkN "metropolis" "metropolises" ;
-lin phlomis_N = mkN "phlomis" "phlomises" ;
-lin dermis_N = mkN "dermis" "dermises" ;
-lin epidermis_N = mkN "epidermis" "epidermises" ; -- compound dermis_N ;
-lin hypodermis_N = mkN "hypodermis" "hypodermises" ; -- compound dermis_N ;
-lin vermis_N = mkN "vermis" "vermises" ;
-lin kumis_N = mkN "kumis" "kumises" ;
-lin epididymis_N = mkN "epididymis" "epididymises" ;
-lin finis_N = mkN "finis" "fines" ;
-lin penis_N = mkN "penis" "penises" ;
-lin micropenis_N = mkN "micropenis" "micropenises" ; -- compound penis_N ;
-lin lychnis_N = mkN "lychnis" "lychnises" ;
-lin tennis_N = mkN "tennis" "tennises" ;
-lin adonis_N = mkN "adonis" "adonises" ;
-lin archaeornis_N = mkN "archaeornis" "archaeornises" ;
-lin notornis_N = mkN "notornis" "notornises" ;
-lin 'petit bourgeois_N' = mkN "petit bourgeois" "petit bourgeoes" ;
-lin patois_N = mkN "patois" "patoes" ;
-lin chamois_N = mkN "chamois" "chamoises" ;
-lin malinois_N = mkN "malinois" "malinoises" ;
-lin avoirdupois_N = mkN "avoirdupois" "avoirdupoises" ;
-lin allantois_N = mkN "allantois" "allantoises" ;
-lin chorioallantois_N = mkN "chorioallantois" "chorioallantoises" ; -- compound allantois_N ;
-lin sinopis_N = mkN "sinopis" "sinopises" ;
-lin drypis_N = mkN "drypis" "drypises" ;
-lin polaris_N = mkN "polaris" "polares" ;
-lin naris_N = mkN "naris" "narises" ;
-lin liparis_N = mkN "liparis" "liparises" ;
-lin debris_N = mkN "debris" "debrises" ;
-lin hubris_N = mkN "hubris" "hubrises" ;
-lin débris_N = mkN "débris" "débrises" ;
-lin epacris_N = mkN "epacris" "epacrises" ;
-lin ephemeris_N = mkN "ephemeris" "ephemerises" ;
-lin pecopteris_N = mkN "pecopteris" "pecopterises" ;
-lin angiopteris_N = mkN "angiopteris" "angiopterises" ;
-lin lecanopteris_N = mkN "lecanopteris" "lecanopterises" ;
-lin thyrsopteris_N = mkN "thyrsopteris" "thyrsopterises" ;
-lin verdigris_N = mkN "verdigris" "verdigrises" ;
-lin ambergris_N = mkN "ambergris" "ambergrises" ;
-lin iris_N = mkN "iris" "irises" ;
-lin siris_N = mkN "siris" "sirises" ; -- notcompound iris_N ;
-lin kris_N = mkN "kris" "krises" ;
-lin tsoris_N = mkN "tsoris" "tsorises" ;
-lin clitoris_N = mkN "clitoris" "clitorises" ;
-lin derris_N = mkN "derris" "derrises" ;
-lin tsuris_N = mkN "tsuris" "tsurises" ;
-lin basis_N = mkN "basis" "bases" ;
-lin emphasis_N = mkN "emphasis" "emphases" ;
-lin oasis_N = mkN "oasis" "oases" ;
-lin periphrasis_N = mkN "periphrasis" "periphrases" ;
-lin overemphasis_N = mkN "overemphasis" "overemphasises" ;
-lin apophasis_N = mkN "apophasis" "apophasises" ;
-lin amebiasis_N = mkN "amebiasis" "amebiasises" ;
-lin enterobiasis_N = mkN "enterobiasis" "enterobiasises" ;
-lin onchocerciasis_N = mkN "onchocerciasis" "onchocerciasises" ;
-lin candidiasis_N = mkN "candidiasis" "candidiasises" ;
-lin giardiasis_N = mkN "giardiasis" "giardiasises" ;
-lin opisthorchiasis_N = mkN "opisthorchiasis" "opisthorchiasises" ;
-lin lithiasis_N = mkN "lithiasis" "lithiasises" ;
-lin cholelithiasis_N = mkN "cholelithiasis" "cholelithiasises" ; -- compound lithiasis_N ;
-lin enterolithiasis_N = mkN "enterolithiasis" "enterolithiasises" ; -- compound lithiasis_N ;
-lin nephrolithiasis_N = mkN "nephrolithiasis" "nephrolithiasises" ; -- compound lithiasis_N ;
-lin helminthiasis_N = mkN "helminthiasis" "helminthiasises" ;
-lin fascioliasis_N = mkN "fascioliasis" "fascioliasises" ;
-lin trombiculiasis_N = mkN "trombiculiasis" "trombiculiasises" ;
-lin schistosomiasis_N = mkN "schistosomiasis" "schistosomiasises" ;
-lin leishmaniasis_N = mkN "leishmaniasis" "leishmaniasises" ;
-lin trichomoniasis_N = mkN "trichomoniasis" "trichomoniasises" ;
-lin acariasis_N = mkN "acariasis" "acariasises" ;
-lin ascariasis_N = mkN "ascariasis" "ascariasises" ;
-lin filariasis_N = mkN "filariasis" "filariasises" ;
-lin mydriasis_N = mkN "mydriasis" "mydriasises" ;
-lin psoriasis_N = mkN "psoriasis" "psoriasises" ;
-lin trichuriasis_N = mkN "trichuriasis" "trichuriasises" ;
-lin satyriasis_N = mkN "satyriasis" "satyriasises" ;
-lin pityriasis_N = mkN "pityriasis" "pityriasises" ;
-lin fasciolopsiasis_N = mkN "fasciolopsiasis" "fasciolopsiasises" ;
-lin elephantiasis_N = mkN "elephantiasis" "elephantiasises" ;
-lin costiasis_N = mkN "costiasis" "costiasises" ;
-lin myiasis_N = mkN "myiasis" "myiasises" ;
-lin osteoclasis_N = mkN "osteoclasis" "osteoclasises" ;
-lin antiphrasis_N = mkN "antiphrasis" "antiphrasises" ;
-lin arteriectasis_N = mkN "arteriectasis" "arteriectasises" ;
-lin atelectasis_N = mkN "atelectasis" "atelectasises" ;
-lin entasis_N = mkN "entasis" "entasises" ;
-lin stasis_N = mkN "stasis" "stasises" ;
-lin diastasis_N = mkN "diastasis" "diastasises" ; -- compound stasis_N ;
-lin metastasis_N = mkN "metastasis" "metastasises" ; -- compound stasis_N ;
-lin homeostasis_N = mkN "homeostasis" "homeostasises" ; -- compound stasis_N ;
-lin bacteriostasis_N = mkN "bacteriostasis" "bacteriostasises" ; -- compound stasis_N ;
-lin hemostasis_N = mkN "hemostasis" "hemostasises" ; -- compound stasis_N ;
-lin hypostasis_N = mkN "hypostasis" "hypostasises" ; -- compound stasis_N ;
-lin thesis_N = mkN "thesis" "theses" ;
-lin antithesis_N = mkN "antithesis" "antitheses" ; -- compound thesis_N ;
-lin parenthesis_N = mkN "parenthesis" "parentheses" ; -- compound thesis_N ;
-lin synthesis_N = mkN "synthesis" "syntheses" ; -- compound thesis_N ;
-lin hypothesis_N = mkN "hypothesis" "hypotheses" ; -- compound thesis_N ;
-lin nemesis_N = mkN "nemesis" "nemeses" ;
-lin genesis_N = mkN "genesis" "geneses" ;
-lin diaeresis_N = mkN "diaeresis" "diaereses" ;
-lin dieresis_N = mkN "dieresis" "diereses" ;
-lin diapedesis_N = mkN "diapedesis" "diapedesises" ;
-lin arthrodesis_N = mkN "arthrodesis" "arthrodesises" ;
-lin eisegesis_N = mkN "eisegesis" "eisegesises" ;
-lin exegesis_N = mkN "exegesis" "exegesises" ;
-lin catechesis_N = mkN "catechesis" "catechesises" ;
-lin aphesis_N = mkN "aphesis" "aphesises" ;
-lin diathesis_N = mkN "diathesis" "diathesises" ;
-lin metathesis_N = mkN "metathesis" "metathesises" ;
-lin epenthesis_N = mkN "epenthesis" "epenthesises" ;
-lin nucleosynthesis_N = mkN "nucleosynthesis" "nucleosynthesises" ;
-lin biosynthesis_N = mkN "biosynthesis" "biosynthesises" ;
-lin chemosynthesis_N = mkN "chemosynthesis" "chemosynthesises" ;
-lin photosynthesis_N = mkN "photosynthesis" "photosynthesises" ;
-lin kinesthesis_N = mkN "kinesthesis" "kinesthesises" ;
-lin spondylolisthesis_N = mkN "spondylolisthesis" "spondylolisthesises" ;
-lin prosthesis_N = mkN "prosthesis" "prosthesises" ;
-lin lymphopoiesis_N = mkN "lymphopoiesis" "lymphopoiesises" ;
-lin erythropoiesis_N = mkN "erythropoiesis" "erythropoiesises" ;
-lin hematopoiesis_N = mkN "hematopoiesis" "hematopoiesises" ;
-lin hyperemesis_N = mkN "hyperemesis" "hyperemesises" ;
-lin hematemesis_N = mkN "hematemesis" "hematemesises" ;
-lin mimesis_N = mkN "mimesis" "mimesises" ;
-lin agenesis_N = mkN "agenesis" "agenesises" ;
-lin metagenesis_N = mkN "metagenesis" "metagenesises" ; -- compound agenesis_N ;
-lin mutagenesis_N = mkN "mutagenesis" "mutagenesises" ; -- compound agenesis_N ;
-lin epigenesis_N = mkN "epigenesis" "epigenesises" ;
-lin palingenesis_N = mkN "palingenesis" "palingenesises" ;
-lin cacogenesis_N = mkN "cacogenesis" "cacogenesises" ;
-lin glycogenesis_N = mkN "glycogenesis" "glycogenesises" ;
-lin psychogenesis_N = mkN "psychogenesis" "psychogenesises" ;
-lin morphogenesis_N = mkN "morphogenesis" "morphogenesises" ;
-lin pathogenesis_N = mkN "pathogenesis" "pathogenesises" ;
-lin biogenesis_N = mkN "biogenesis" "biogenesises" ;
-lin abiogenesis_N = mkN "abiogenesis" "abiogenesises" ; -- notcompound biogenesis_N ;
-lin angiogenesis_N = mkN "angiogenesis" "angiogenesises" ;
-lin amelogenesis_N = mkN "amelogenesis" "amelogenesises" ;
-lin cenogenesis_N = mkN "cenogenesis" "cenogenesises" ;
-lin parthenogenesis_N = mkN "parthenogenesis" "parthenogenesises" ;
-lin monogenesis_N = mkN "monogenesis" "monogenesises" ;
-lin hypnogenesis_N = mkN "hypnogenesis" "hypnogenesises" ;
-lin gynogenesis_N = mkN "gynogenesis" "gynogenesises" ;
-lin oogenesis_N = mkN "oogenesis" "oogenesises" ;
-lin anthropogenesis_N = mkN "anthropogenesis" "anthropogenesises" ;
-lin androgenesis_N = mkN "androgenesis" "androgenesises" ;
-lin atherogenesis_N = mkN "atherogenesis" "atherogenesises" ;
-lin neurogenesis_N = mkN "neurogenesis" "neurogenesises" ;
-lin spermatogenesis_N = mkN "spermatogenesis" "spermatogenesises" ;
-lin teratogenesis_N = mkN "teratogenesis" "teratogenesises" ;
-lin gametogenesis_N = mkN "gametogenesis" "gametogenesises" ;
-lin blastogenesis_N = mkN "blastogenesis" "blastogenesises" ;
-lin cytogenesis_N = mkN "cytogenesis" "cytogenesises" ;
-lin dysgenesis_N = mkN "dysgenesis" "dysgenesises" ;
-lin kinesis_N = mkN "kinesis" "kinesises" ;
-lin akinesis_N = mkN "akinesis" "akinesises" ; -- notcompound kinesis_N ;
-lin diakinesis_N = mkN "diakinesis" "diakinesises" ; -- compound kinesis_N ;
-lin telekinesis_N = mkN "telekinesis" "telekinesises" ; -- compound kinesis_N ;
-lin cytokinesis_N = mkN "cytokinesis" "cytokinesises" ; -- compound kinesis_N ;
-lin karyokinesis_N = mkN "karyokinesis" "karyokinesises" ; -- compound kinesis_N ;
-lin ecphonesis_N = mkN "ecphonesis" "ecphonesises" ;
-lin aposiopesis_N = mkN "aposiopesis" "aposiopesises" ;
-lin paresis_N = mkN "paresis" "paresises" ;
-lin paraparesis_N = mkN "paraparesis" "paraparesises" ; -- compound paresis_N ;
-lin aphaeresis_N = mkN "aphaeresis" "aphaeresises" ;
-lin apheresis_N = mkN "apheresis" "apheresises" ;
-lin plasmapheresis_N = mkN "plasmapheresis" "plasmapheresises" ; -- compound apheresis_N ;
-lin plateletpheresis_N = mkN "plateletpheresis" "plateletpheresises" ;
-lin leresis_N = mkN "leresis" "leresises" ;
-lin syneresis_N = mkN "syneresis" "syneresises" ;
-lin hysteresis_N = mkN "hysteresis" "hysteresises" ;
-lin catachresis_N = mkN "catachresis" "catachresises" ;
-lin electrophoresis_N = mkN "electrophoresis" "electrophoresises" ;
-lin immunoelectrophoresis_N = mkN "immunoelectrophoresis" "immunoelectrophoresises" ; -- compound electrophoresis_N ;
-lin iontophoresis_N = mkN "iontophoresis" "iontophoresises" ;
-lin encopresis_N = mkN "encopresis" "encopresises" ;
-lin lithuresis_N = mkN "lithuresis" "lithuresises" ;
-lin diuresis_N = mkN "diuresis" "diuresises" ;
-lin kaliuresis_N = mkN "kaliuresis" "kaliuresises" ;
-lin natriuresis_N = mkN "natriuresis" "natriuresises" ;
-lin anuresis_N = mkN "anuresis" "anuresises" ;
-lin enuresis_N = mkN "enuresis" "enuresises" ;
-lin antipyresis_N = mkN "antipyresis" "antipyresises" ;
-lin centesis_N = mkN "centesis" "centesises" ;
-lin thoracocentesis_N = mkN "thoracocentesis" "thoracocentesises" ; -- compound centesis_N ;
-lin celiocentesis_N = mkN "celiocentesis" "celiocentesises" ; -- compound centesis_N ;
-lin amniocentesis_N = mkN "amniocentesis" "amniocentesises" ; -- compound centesis_N ;
-lin abdominocentesis_N = mkN "abdominocentesis" "abdominocentesises" ; -- compound centesis_N ;
-lin arthrocentesis_N = mkN "arthrocentesis" "arthrocentesises" ; -- compound centesis_N ;
-lin auxesis_N = mkN "auxesis" "auxesises" ;
-lin synizesis_N = mkN "synizesis" "synizesises" ;
-lin phthisis_N = mkN "phthisis" "phthisises" ;
-lin anaclisis_N = mkN "anaclisis" "anaclisises" ;
-lin crisis_N = mkN "crisis" "crises" ;
-lin anastalsis_N = mkN "anastalsis" "anastalsises" ;
-lin peristalsis_N = mkN "peristalsis" "peristalsises" ;
-lin amanuensis_N = mkN "amanuensis" "amanuenses" ;
-lin thrombosis_N = mkN "thrombosis" "thrombosises" ;
-lin phlebothrombosis_N = mkN "phlebothrombosis" "phlebothrombosises" ; -- compound thrombosis_N ;
-lin anthracosis_N = mkN "anthracosis" "anthracosises" ;
-lin psittacosis_N = mkN "psittacosis" "psittacosises" ;
-lin echinococcosis_N = mkN "echinococcosis" "echinococcosises" ;
-lin cryptococcosis_N = mkN "cryptococcosis" "cryptococcosises" ;
-lin silicosis_N = mkN "silicosis" "silicosises" ;
-lin varicosis_N = mkN "varicosis" "varicosises" ;
-lin narcosis_N = mkN "narcosis" "narcosises" ;
-lin phycomycosis_N = mkN "phycomycosis" "phycomycosises" ;
-lin coccidioidomycosis_N = mkN "coccidioidomycosis" "coccidioidomycosises" ;
-lin actinomycosis_N = mkN "actinomycosis" "actinomycosises" ;
-lin dermatomycosis_N = mkN "dermatomycosis" "dermatomycosises" ;
-lin keratomycosis_N = mkN "keratomycosis" "keratomycosises" ;
-lin blastomycosis_N = mkN "blastomycosis" "blastomycosises" ;
-lin chromoblastomycosis_N = mkN "chromoblastomycosis" "chromoblastomycosises" ; -- compound blastomycosis_N ;
-lin acidosis_N = mkN "acidosis" "acidosises" ;
-lin ketoacidosis_N = mkN "ketoacidosis" "ketoacidosises" ; -- compound acidosis_N ;
-lin sarcoidosis_N = mkN "sarcoidosis" "sarcoidosises" ;
-lin amyloidosis_N = mkN "amyloidosis" "amyloidosises" ;
-lin lipidosis_N = mkN "lipidosis" "lipidosises" ;
-lin mucopolysaccharidosis_N = mkN "mucopolysaccharidosis" "mucopolysaccharidosises" ;
-lin lordosis_N = mkN "lordosis" "lordosises" ;
-lin sporotrichosis_N = mkN "sporotrichosis" "sporotrichosises" ;
-lin onychosis_N = mkN "onychosis" "onychosises" ;
-lin metempsychosis_N = mkN "metempsychosis" "metempsychosises" ;
-lin anamorphosis_N = mkN "anamorphosis" "anamorphosises" ;
-lin hemimetamorphosis_N = mkN "hemimetamorphosis" "hemimetamorphosises" ;
-lin kyphosis_N = mkN "kyphosis" "kyphosises" ;
-lin cirrhosis_N = mkN "cirrhosis" "cirrhosises" ;
-lin acanthosis_N = mkN "acanthosis" "acanthosises" ;
-lin xanthosis_N = mkN "xanthosis" "xanthosises" ;
-lin epanorthosis_N = mkN "epanorthosis" "epanorthosises" ;
-lin anabiosis_N = mkN "anabiosis" "anabiosises" ;
-lin catabiosis_N = mkN "catabiosis" "catabiosises" ;
-lin antibiosis_N = mkN "antibiosis" "antibiosises" ;
-lin symbiosis_N = mkN "symbiosis" "symbiosises" ;
-lin trophobiosis_N = mkN "trophobiosis" "trophobiosises" ;
-lin necrobiosis_N = mkN "necrobiosis" "necrobiosises" ;
-lin aerobiosis_N = mkN "aerobiosis" "aerobiosises" ;
-lin cryptobiosis_N = mkN "cryptobiosis" "cryptobiosises" ;
-lin coccidiosis_N = mkN "coccidiosis" "coccidiosises" ;
-lin rhinosporidiosis_N = mkN "rhinosporidiosis" "rhinosporidiosises" ;
-lin ateleiosis_N = mkN "ateleiosis" "ateleiosises" ;
-lin meiosis_N = mkN "meiosis" "meiosises" ;
-lin verticilliosis_N = mkN "verticilliosis" "verticilliosises" ;
-lin scoliosis_N = mkN "scoliosis" "scoliosises" ;
-lin poliosis_N = mkN "poliosis" "poliosises" ;
-lin pneumoconiosis_N = mkN "pneumoconiosis" "pneumoconiosises" ;
-lin listeriosis_N = mkN "listeriosis" "listeriosises" ;
-lin endometriosis_N = mkN "endometriosis" "endometriosises" ;
-lin alkalosis_N = mkN "alkalosis" "alkalosises" ;
-lin cyclosis_N = mkN "cyclosis" "cyclosises" ;
-lin cheilosis_N = mkN "cheilosis" "cheilosises" ;
-lin psilosis_N = mkN "psilosis" "psilosises" ;
-lin brucellosis_N = mkN "brucellosis" "brucellosises" ;
-lin shigellosis_N = mkN "shigellosis" "shigellosises" ;
-lin salmonellosis_N = mkN "salmonellosis" "salmonellosises" ;
-lin aspergillosis_N = mkN "aspergillosis" "aspergillosises" ;
-lin anadiplosis_N = mkN "anadiplosis" "anadiplosises" ;
-lin pediculosis_N = mkN "pediculosis" "pediculosises" ;
-lin diverticulosis_N = mkN "diverticulosis" "diverticulosises" ;
-lin furunculosis_N = mkN "furunculosis" "furunculosises" ;
-lin tuberculosis_N = mkN "tuberculosis" "tuberculosises" ;
-lin ankylosis_N = mkN "ankylosis" "ankylosises" ;
-lin anastylosis_N = mkN "anastylosis" "anastylosises" ;
-lin chemosis_N = mkN "chemosis" "chemosises" ;
-lin phimosis_N = mkN "phimosis" "phimosises" ;
-lin gummosis_N = mkN "gummosis" "gummosises" ;
-lin anastomosis_N = mkN "anastomosis" "anastomosises" ;
-lin anaplasmosis_N = mkN "anaplasmosis" "anaplasmosises" ;
-lin toxoplasmosis_N = mkN "toxoplasmosis" "toxoplasmosises" ;
-lin osmosis_N = mkN "osmosis" "osmosises" ;
-lin ecchymosis_N = mkN "ecchymosis" "ecchymosises" ;
-lin zymosis_N = mkN "zymosis" "zymosises" ;
-lin melanosis_N = mkN "melanosis" "melanosises" ;
-lin cyanosis_N = mkN "cyanosis" "cyanosises" ;
-lin acrocyanosis_N = mkN "acrocyanosis" "acrocyanosises" ; -- compound cyanosis_N ;
-lin pycnosis_N = mkN "pycnosis" "pycnosises" ;
-lin enosis_N = mkN "enosis" "enosises" ;
-lin stenosis_N = mkN "stenosis" "stenosises" ; -- notcompound enosis_N ;
-lin laryngostenosis_N = mkN "laryngostenosis" "laryngostenosises" ; -- compound enosis_N ;
-lin rhinostenosis_N = mkN "rhinostenosis" "rhinostenosises" ; -- compound enosis_N ;
-lin ureterostenosis_N = mkN "ureterostenosis" "ureterostenosises" ; -- compound enosis_N ;
-lin enterostenosis_N = mkN "enterostenosis" "enterostenosises" ; -- compound enosis_N ;
-lin gnosis_N = mkN "gnosis" "gnosises" ;
-lin telegnosis_N = mkN "telegnosis" "telegnosises" ; -- compound gnosis_N ;
-lin astereognosis_N = mkN "astereognosis" "astereognosises" ; -- compound gnosis_N ;
-lin nephrocalcinosis_N = mkN "nephrocalcinosis" "nephrocalcinosises" ;
-lin hallucinosis_N = mkN "hallucinosis" "hallucinosises" ;
-lin trichinosis_N = mkN "trichinosis" "trichinosises" ;
-lin avitaminosis_N = mkN "avitaminosis" "avitaminosises" ;
-lin hypervitaminosis_N = mkN "hypervitaminosis" "hypervitaminosises" ;
-lin zoonosis_N = mkN "zoonosis" "zoonosises" ;
-lin ochronosis_N = mkN "ochronosis" "ochronosises" ;
-lin keratonosis_N = mkN "keratonosis" "keratonosises" ;
-lin fibrosis_N = mkN "fibrosis" "fibrosises" ;
-lin myelofibrosis_N = mkN "myelofibrosis" "myelofibrosises" ; -- compound fibrosis_N ;
-lin necrosis_N = mkN "necrosis" "necrosises" ;
-lin myonecrosis_N = mkN "myonecrosis" "myonecrosises" ; -- compound necrosis_N ;
-lin anhidrosis_N = mkN "anhidrosis" "anhidrosises" ;
-lin hyperhidrosis_N = mkN "hyperhidrosis" "hyperhidrosises" ;
-lin siderosis_N = mkN "siderosis" "siderosises" ;
-lin hemosiderosis_N = mkN "hemosiderosis" "hemosiderosises" ; -- compound siderosis_N ;
-lin sclerosis_N = mkN "sclerosis" "sclerosises" ;
-lin osteosclerosis_N = mkN "osteosclerosis" "osteosclerosises" ; -- compound sclerosis_N ;
-lin arteriosclerosis_N = mkN "arteriosclerosis" "arteriosclerosises" ; -- compound sclerosis_N ;
-lin arteriolosclerosis_N = mkN "arteriolosclerosis" "arteriolosclerosises" ; -- compound sclerosis_N ;
-lin atherosclerosis_N = mkN "atherosclerosis" "atherosclerosises" ; -- compound sclerosis_N ;
-lin nephrosclerosis_N = mkN "nephrosclerosis" "nephrosclerosises" ; -- compound sclerosis_N ;
-lin otosclerosis_N = mkN "otosclerosis" "otosclerosises" ; -- compound sclerosis_N ;
-lin heterosis_N = mkN "heterosis" "heterosises" ;
-lin colpoxerosis_N = mkN "colpoxerosis" "colpoxerosises" ;
-lin hydronephrosis_N = mkN "hydronephrosis" "hydronephrosises" ;
-lin hydrarthrosis_N = mkN "hydrarthrosis" "hydrarthrosises" ;
-lin chlorosis_N = mkN "chlorosis" "chlorosises" ;
-lin osteoporosis_N = mkN "osteoporosis" "osteoporosises" ;
-lin fluorosis_N = mkN "fluorosis" "fluorosises" ;
-lin osteopetrosis_N = mkN "osteopetrosis" "osteopetrosises" ;
-lin amaurosis_N = mkN "amaurosis" "amaurosises" ;
-lin kraurosis_N = mkN "kraurosis" "kraurosises" ;
-lin aponeurosis_N = mkN "aponeurosis" "aponeurosises" ;
-lin bagassosis_N = mkN "bagassosis" "bagassosises" ;
-lin xanthomatosis_N = mkN "xanthomatosis" "xanthomatosises" ;
-lin lipomatosis_N = mkN "lipomatosis" "lipomatosises" ;
-lin neurofibromatosis_N = mkN "neurofibromatosis" "neurofibromatosises" ;
-lin hemochromatosis_N = mkN "hemochromatosis" "hemochromatosises" ;
-lin myxomatosis_N = mkN "myxomatosis" "myxomatosises" ;
-lin dermatosis_N = mkN "dermatosis" "dermatosises" ;
-lin keratosis_N = mkN "keratosis" "keratosises" ;
-lin galactosis_N = mkN "galactosis" "galactosises" ;
-lin athetosis_N = mkN "athetosis" "athetosises" ;
-lin halitosis_N = mkN "halitosis" "halitosises" ;
-lin mitosis_N = mkN "mitosis" "mitosises" ;
-lin amitosis_N = mkN "amitosis" "amitosises" ; -- notcompound mitosis_N ;
-lin ptosis_N = mkN "ptosis" "ptosises" ;
-lin apoptosis_N = mkN "apoptosis" "apoptosises" ; -- compound ptosis_N ;
-lin enteroptosis_N = mkN "enteroptosis" "enteroptosises" ; -- compound ptosis_N ;
-lin nephroptosis_N = mkN "nephroptosis" "nephroptosises" ; -- compound ptosis_N ;
-lin metroptosis_N = mkN "metroptosis" "metroptosises" ; -- compound ptosis_N ;
-lin glossoptosis_N = mkN "glossoptosis" "glossoptosises" ; -- compound ptosis_N ;
-lin erythroblastosis_N = mkN "erythroblastosis" "erythroblastosises" ;
-lin elastosis_N = mkN "elastosis" "elastosises" ;
-lin asbestosis_N = mkN "asbestosis" "asbestosises" ;
-lin pycnodysostosis_N = mkN "pycnodysostosis" "pycnodysostosises" ;
-lin exostosis_N = mkN "exostosis" "exostosises" ;
-lin thrombocytosis_N = mkN "thrombocytosis" "thrombocytosises" ;
-lin phagocytosis_N = mkN "phagocytosis" "phagocytosises" ;
-lin lymphocytosis_N = mkN "lymphocytosis" "lymphocytosises" ;
-lin acanthocytosis_N = mkN "acanthocytosis" "acanthocytosises" ;
-lin histiocytosis_N = mkN "histiocytosis" "histiocytosises" ;
-lin leukocytosis_N = mkN "leukocytosis" "leukocytosises" ;
-lin agranulocytosis_N = mkN "agranulocytosis" "agranulocytosises" ;
-lin pneumocytosis_N = mkN "pneumocytosis" "pneumocytosises" ;
-lin pinocytosis_N = mkN "pinocytosis" "pinocytosises" ;
-lin monocytosis_N = mkN "monocytosis" "monocytosises" ;
-lin macrocytosis_N = mkN "macrocytosis" "macrocytosises" ;
-lin microcytosis_N = mkN "microcytosis" "microcytosises" ;
-lin ichthyosis_N = mkN "ichthyosis" "ichthyosises" ;
-lin apotheosis_N = mkN "apotheosis" "apotheoses" ;
-lin psychosis_N = mkN "psychosis" "psychoses" ;
-lin metamorphosis_N = mkN "metamorphosis" "metamorphoses" ;
-lin diagnosis_N = mkN "diagnosis" "diagnoses" ;
-lin prognosis_N = mkN "prognosis" "prognoses" ;
-lin hypnosis_N = mkN "hypnosis" "hypnoses" ;
-lin neurosis_N = mkN "neurosis" "neuroses" ;
-lin periapsis_N = mkN "periapsis" "periapsises" ;
-lin synapsis_N = mkN "synapsis" "synapsises" ;
-lin apoapsis_N = mkN "apoapsis" "apoapsises" ;
-lin omphaloskepsis_N = mkN "omphaloskepsis" "omphaloskepsises" ;
-lin epanalepsis_N = mkN "epanalepsis" "epanalepsises" ;
-lin paralepsis_N = mkN "paralepsis" "paralepsises" ;
-lin metalepsis_N = mkN "metalepsis" "metalepsises" ;
-lin syllepsis_N = mkN "syllepsis" "syllepsises" ;
-lin prolepsis_N = mkN "prolepsis" "prolepsises" ;
-lin sepsis_N = mkN "sepsis" "sepsises" ;
-lin asepsis_N = mkN "asepsis" "asepsises" ; -- notcompound sepsis_N ;
-lin antisepsis_N = mkN "antisepsis" "antisepsises" ; -- compound sepsis_N ;
-lin coreopsis_N = mkN "coreopsis" "coreopsises" ;
-lin heliopsis_N = mkN "heliopsis" "heliopsises" ;
-lin calliopsis_N = mkN "calliopsis" "calliopsises" ;
-lin thanatopsis_N = mkN "thanatopsis" "thanatopsises" ;
-lin ellipsis_N = mkN "ellipsis" "ellipses" ;
-lin synopsis_N = mkN "synopsis" "synopses" ;
-lin catharsis_N = mkN "catharsis" "catharses" ;
-lin salpiglossis_N = mkN "salpiglossis" "salpiglossises" ;
-lin missis_N = mkN "missis" "misses" ;
-lin hyperacusis_N = mkN "hyperacusis" "hyperacusises" ;
-lin diaphysis_N = mkN "diaphysis" "diaphysises" ;
-lin paraphysis_N = mkN "paraphysis" "paraphysises" ;
-lin metaphysis_N = mkN "metaphysis" "metaphysises" ;
-lin epiphysis_N = mkN "epiphysis" "epiphysises" ;
-lin symphysis_N = mkN "symphysis" "symphysises" ;
-lin coelophysis_N = mkN "coelophysis" "coelophysises" ;
-lin apophysis_N = mkN "apophysis" "apophysises" ;
-lin lysis_N = mkN "lysis" "lysises" ;
-lin dialysis_N = mkN "dialysis" "dialysises" ; -- compound lysis_N ;
-lin hemodialysis_N = mkN "hemodialysis" "hemodialysises" ; -- compound lysis_N ;
-lin psychoanalysis_N = mkN "psychoanalysis" "psychoanalysises" ; -- compound lysis_N ;
-lin hypnoanalysis_N = mkN "hypnoanalysis" "hypnoanalysises" ; -- compound lysis_N ;
-lin cryptanalysis_N = mkN "cryptanalysis" "cryptanalysises" ; -- compound lysis_N ;
-lin urinalysis_N = mkN "urinalysis" "urinalysises" ; -- compound lysis_N ;
-lin paralysis_N = mkN "paralysis" "paralysises" ; -- compound lysis_N ;
-lin catalysis_N = mkN "catalysis" "catalysises" ; -- compound lysis_N ;
-lin autocatalysis_N = mkN "autocatalysis" "autocatalysises" ; -- compound lysis_N ;
-lin thrombolysis_N = mkN "thrombolysis" "thrombolysises" ; -- compound lysis_N ;
-lin glycolysis_N = mkN "glycolysis" "glycolysises" ; -- compound lysis_N ;
-lin proteolysis_N = mkN "proteolysis" "proteolysises" ; -- compound lysis_N ;
-lin osteolysis_N = mkN "osteolysis" "osteolysises" ; -- compound lysis_N ;
-lin onycholysis_N = mkN "onycholysis" "onycholysises" ; -- compound lysis_N ;
-lin acantholysis_N = mkN "acantholysis" "acantholysises" ; -- compound lysis_N ;
-lin radiolysis_N = mkN "radiolysis" "radiolysises" ; -- compound lysis_N ;
-lin bacteriolysis_N = mkN "bacteriolysis" "bacteriolysises" ; -- compound lysis_N ;
-lin amylolysis_N = mkN "amylolysis" "amylolysises" ; -- compound lysis_N ;
-lin hemolysis_N = mkN "hemolysis" "hemolysises" ; -- compound lysis_N ;
-lin spasmolysis_N = mkN "spasmolysis" "spasmolysises" ; -- compound lysis_N ;
-lin fibrinolysis_N = mkN "fibrinolysis" "fibrinolysises" ; -- compound lysis_N ;
-lin necrolysis_N = mkN "necrolysis" "necrolysises" ; -- compound lysis_N ;
-lin hydrolysis_N = mkN "hydrolysis" "hydrolysises" ; -- compound lysis_N ;
-lin electrolysis_N = mkN "electrolysis" "electrolysises" ; -- compound lysis_N ;
-lin pyrolysis_N = mkN "pyrolysis" "pyrolysises" ; -- compound lysis_N ;
-lin autolysis_N = mkN "autolysis" "autolysises" ; -- compound lysis_N ;
-lin cytolysis_N = mkN "cytolysis" "cytolysises" ; -- compound lysis_N ;
-lin karyolysis_N = mkN "karyolysis" "karyolysises" ; -- compound lysis_N ;
-lin hemoptysis_N = mkN "hemoptysis" "hemoptysises" ;
-lin analysis_N = mkN "analysis" "analyses" ;
-lin clematis_N = mkN "clematis" "clematises" ;
-lin chaenactis_N = mkN "chaenactis" "chaenactises" ;
-lin phlebitis_N = mkN "phlebitis" "phlebitises" ;
-lin thrombophlebitis_N = mkN "thrombophlebitis" "thrombophlebitises" ; -- compound phlebitis_N ;
-lin appendicitis_N = mkN "appendicitis" "appendicitises" ;
-lin cervicitis_N = mkN "cervicitis" "cervicitises" ;
-lin endocervicitis_N = mkN "endocervicitis" "endocervicitises" ; -- compound cervicitis_N ;
-lin thyroiditis_N = mkN "thyroiditis" "thyroiditises" ;
-lin mastoiditis_N = mkN "mastoiditis" "mastoiditises" ;
-lin carditis_N = mkN "carditis" "carditises" ;
-lin pericarditis_N = mkN "pericarditis" "pericarditises" ; -- compound carditis_N ;
-lin pancarditis_N = mkN "pancarditis" "pancarditises" ; -- compound carditis_N ;
-lin endocarditis_N = mkN "endocarditis" "endocarditises" ; -- compound carditis_N ;
-lin corditis_N = mkN "corditis" "corditises" ;
-lin chorditis_N = mkN "chorditis" "chorditises" ;
-lin tracheitis_N = mkN "tracheitis" "tracheitises" ;
-lin rhinotracheitis_N = mkN "rhinotracheitis" "rhinotracheitises" ; -- compound tracheitis_N ;
-lin ileitis_N = mkN "ileitis" "ileitises" ;
-lin jejunoileitis_N = mkN "jejunoileitis" "jejunoileitises" ; -- compound ileitis_N ;
-lin osteitis_N = mkN "osteitis" "osteitises" ;
-lin uveitis_N = mkN "uveitis" "uveitises" ;
-lin esophagitis_N = mkN "esophagitis" "esophagitises" ;
-lin lymphangitis_N = mkN "lymphangitis" "lymphangitises" ;
-lin phalangitis_N = mkN "phalangitis" "phalangitises" ;
-lin cholangitis_N = mkN "cholangitis" "cholangitises" ;
-lin meningitis_N = mkN "meningitis" "meningitises" ;
-lin choriomeningitis_N = mkN "choriomeningitis" "choriomeningitises" ; -- compound meningitis_N ;
-lin leptomeningitis_N = mkN "leptomeningitis" "leptomeningitises" ; -- compound meningitis_N ;
-lin salpingitis_N = mkN "salpingitis" "salpingitises" ;
-lin pharyngitis_N = mkN "pharyngitis" "pharyngitises" ;
-lin laryngopharyngitis_N = mkN "laryngopharyngitis" "laryngopharyngitises" ; -- compound pharyngitis_N ;
-lin laryngitis_N = mkN "laryngitis" "laryngitises" ;
-lin rachitis_N = mkN "rachitis" "rachitises" ;
-lin bronchitis_N = mkN "bronchitis" "bronchitises" ;
-lin tracheobronchitis_N = mkN "tracheobronchitis" "tracheobronchitises" ; -- compound bronchitis_N ;
-lin laryngotracheobronchitis_N = mkN "laryngotracheobronchitis" "laryngotracheobronchitises" ; -- compound bronchitis_N ;
-lin orchitis_N = mkN "orchitis" "orchitises" ;
-lin mephitis_N = mkN "mephitis" "mephitises" ;
-lin labyrinthitis_N = mkN "labyrinthitis" "labyrinthitises" ;
-lin posthitis_N = mkN "posthitis" "posthitises" ;
-lin balanoposthitis_N = mkN "balanoposthitis" "balanoposthitises" ; -- compound posthitis_N ;
-lin angiitis_N = mkN "angiitis" "angiitises" ;
-lin encephalitis_N = mkN "encephalitis" "encephalitises" ;
-lin panencephalitis_N = mkN "panencephalitis" "panencephalitises" ; -- compound encephalitis_N ;
-lin meningoencephalitis_N = mkN "meningoencephalitis" "meningoencephalitises" ; -- compound encephalitis_N ;
-lin leukoencephalitis_N = mkN "leukoencephalitis" "leukoencephalitises" ; -- compound encephalitis_N ;
-lin iridocyclitis_N = mkN "iridocyclitis" "iridocyclitises" ;
-lin myelitis_N = mkN "myelitis" "myelitises" ;
-lin osteomyelitis_N = mkN "osteomyelitis" "osteomyelitises" ; -- compound myelitis_N ;
-lin poliomyelitis_N = mkN "poliomyelitis" "poliomyelitises" ; -- compound myelitis_N ;
-lin encephalomyelitis_N = mkN "encephalomyelitis" "encephalomyelitises" ; -- compound myelitis_N ;
-lin pyelitis_N = mkN "pyelitis" "pyelitises" ;
-lin cheilitis_N = mkN "cheilitis" "cheilitises" ;
-lin tonsillitis_N = mkN "tonsillitis" "tonsillitises" ;
-lin colitis_N = mkN "colitis" "colitises" ;
-lin alveolitis_N = mkN "alveolitis" "alveolitises" ;
-lin bronchiolitis_N = mkN "bronchiolitis" "bronchiolitises" ;
-lin ulitis_N = mkN "ulitis" "ulitises" ;
-lin radiculitis_N = mkN "radiculitis" "radiculitises" ; -- compound ulitis_N ;
-lin folliculitis_N = mkN "folliculitis" "folliculitises" ; -- compound ulitis_N ;
-lin funiculitis_N = mkN "funiculitis" "funiculitises" ; -- compound ulitis_N ;
-lin vesiculitis_N = mkN "vesiculitis" "vesiculitises" ; -- compound ulitis_N ;
-lin vasovesiculitis_N = mkN "vasovesiculitis" "vasovesiculitises" ; -- compound ulitis_N ;
-lin diverticulitis_N = mkN "diverticulitis" "diverticulitises" ; -- compound ulitis_N ;
-lin vasculitis_N = mkN "vasculitis" "vasculitises" ; -- compound ulitis_N ;
-lin cellulitis_N = mkN "cellulitis" "cellulitises" ; -- compound ulitis_N ;
-lin valvulitis_N = mkN "valvulitis" "valvulitises" ; -- compound ulitis_N ;
-lin uvulitis_N = mkN "uvulitis" "uvulitises" ; -- compound ulitis_N ;
-lin epicondylitis_N = mkN "epicondylitis" "epicondylitises" ;
-lin spondylitis_N = mkN "spondylitis" "spondylitises" ;
-lin epididymitis_N = mkN "epididymitis" "epididymitises" ;
-lin balanitis_N = mkN "balanitis" "balanitises" ;
-lin tympanitis_N = mkN "tympanitis" "tympanitises" ;
-lin adenitis_N = mkN "adenitis" "adenitises" ;
-lin lymphadenitis_N = mkN "lymphadenitis" "lymphadenitises" ; -- compound adenitis_N ;
-lin sialadenitis_N = mkN "sialadenitis" "sialadenitises" ; -- compound adenitis_N ;
-lin splenitis_N = mkN "splenitis" "splenitises" ;
-lin tendinitis_N = mkN "tendinitis" "tendinitises" ;
-lin vaginitis_N = mkN "vaginitis" "vaginitises" ;
-lin vulvovaginitis_N = mkN "vulvovaginitis" "vulvovaginitises" ; -- compound vaginitis_N ;
-lin rhinitis_N = mkN "rhinitis" "rhinitises" ;
-lin laminitis_N = mkN "laminitis" "laminitises" ;
-lin retinitis_N = mkN "retinitis" "retinitises" ;
-lin chorioretinitis_N = mkN "chorioretinitis" "chorioretinitises" ; -- compound retinitis_N ;
-lin photoretinitis_N = mkN "photoretinitis" "photoretinitises" ; -- compound retinitis_N ;
-lin pneumonitis_N = mkN "pneumonitis" "pneumonitises" ;
-lin peritonitis_N = mkN "peritonitis" "peritonitises" ;
-lin jejunitis_N = mkN "jejunitis" "jejunitises" ;
-lin colpitis_N = mkN "colpitis" "colpitises" ;
-lin blepharitis_N = mkN "blepharitis" "blepharitises" ;
-lin ovaritis_N = mkN "ovaritis" "ovaritises" ;
-lin costochondritis_N = mkN "costochondritis" "costochondritises" ;
-lin scleritis_N = mkN "scleritis" "scleritises" ;
-lin episcleritis_N = mkN "episcleritis" "episcleritises" ; -- compound scleritis_N ;
-lin keratoscleritis_N = mkN "keratoscleritis" "keratoscleritises" ; -- compound scleritis_N ;
-lin ureteritis_N = mkN "ureteritis" "ureteritises" ;
-lin enteritis_N = mkN "enteritis" "enteritises" ;
-lin gastroenteritis_N = mkN "gastroenteritis" "gastroenteritises" ; -- compound enteritis_N ;
-lin arteritis_N = mkN "arteritis" "arteritises" ;
-lin endarteritis_N = mkN "endarteritis" "endarteritises" ; -- compound arteritis_N ;
-lin periarteritis_N = mkN "periarteritis" "periarteritises" ; -- compound arteritis_N ;
-lin polyarteritis_N = mkN "polyarteritis" "polyarteritises" ; -- compound arteritis_N ;
-lin nephritis_N = mkN "nephritis" "nephritises" ;
-lin pyelonephritis_N = mkN "pyelonephritis" "pyelonephritises" ; -- compound nephritis_N ;
-lin glomerulonephritis_N = mkN "glomerulonephritis" "glomerulonephritises" ; -- compound nephritis_N ;
-lin urethritis_N = mkN "urethritis" "urethritises" ;
-lin arthritis_N = mkN "arthritis" "arthritises" ;
-lin spondylarthritis_N = mkN "spondylarthritis" "spondylarthritises" ; -- compound arthritis_N ;
-lin osteoarthritis_N = mkN "osteoarthritis" "osteoarthritises" ; -- compound arthritis_N ;
-lin iritis_N = mkN "iritis" "iritises" ;
-lin keratoiritis_N = mkN "keratoiritis" "keratoiritises" ; -- compound iritis_N ;
-lin oophoritis_N = mkN "oophoritis" "oophoritises" ;
-lin metritis_N = mkN "metritis" "metritises" ;
-lin parametritis_N = mkN "parametritis" "parametritises" ; -- compound metritis_N ;
-lin myometritis_N = mkN "myometritis" "myometritises" ; -- compound metritis_N ;
-lin gastritis_N = mkN "gastritis" "gastritises" ;
-lin neuritis_N = mkN "neuritis" "neuritises" ;
-lin polyneuritis_N = mkN "polyneuritis" "polyneuritises" ; -- compound neuritis_N ;
-lin fibrositis_N = mkN "fibrositis" "fibrositises" ;
-lin myositis_N = mkN "myositis" "myositises" ;
-lin fibromyositis_N = mkN "fibromyositis" "fibromyositises" ; -- compound myositis_N ;
-lin dermatomyositis_N = mkN "dermatomyositis" "dermatomyositises" ; -- compound myositis_N ;
-lin polymyositis_N = mkN "polymyositis" "polymyositises" ; -- compound myositis_N ;
-lin tarsitis_N = mkN "tarsitis" "tarsitises" ;
-lin bursitis_N = mkN "bursitis" "bursitises" ;
-lin glossitis_N = mkN "glossitis" "glossitises" ;
-lin sinusitis_N = mkN "sinusitis" "sinusitises" ;
-lin pansinusitis_N = mkN "pansinusitis" "pansinusitises" ; -- compound sinusitis_N ;
-lin pancreatitis_N = mkN "pancreatitis" "pancreatitises" ;
-lin stomatitis_N = mkN "stomatitis" "stomatitises" ;
-lin dermatitis_N = mkN "dermatitis" "dermatitises" ;
-lin neurodermatitis_N = mkN "neurodermatitis" "neurodermatitises" ; -- compound dermatitis_N ;
-lin hepatitis_N = mkN "hepatitis" "hepatitises" ;
-lin keratitis_N = mkN "keratitis" "keratitises" ;
-lin iridokeratitis_N = mkN "iridokeratitis" "iridokeratitises" ; -- compound keratitis_N ;
-lin prostatitis_N = mkN "prostatitis" "prostatitises" ;
-lin proctitis_N = mkN "proctitis" "proctitises" ;
-lin otitis_N = mkN "otitis" "otitises" ;
-lin parotitis_N = mkN "parotitis" "parotitises" ; -- compound otitis_N ;
-lin aortitis_N = mkN "aortitis" "aortitises" ;
-lin mastitis_N = mkN "mastitis" "mastitises" ;
-lin cystitis_N = mkN "cystitis" "cystitises" ;
-lin cholecystitis_N = mkN "cholecystitis" "cholecystitises" ; -- compound cystitis_N ;
-lin colpocystitis_N = mkN "colpocystitis" "colpocystitises" ; -- compound cystitis_N ;
-lin dacryocystitis_N = mkN "dacryocystitis" "dacryocystitises" ; -- compound cystitis_N ;
-lin epiglottitis_N = mkN "epiglottitis" "epiglottitises" ;
-lin gingivitis_N = mkN "gingivitis" "gingivitises" ;
-lin conjunctivitis_N = mkN "conjunctivitis" "conjunctivitises" ;
-lin keratoconjunctivitis_N = mkN "keratoconjunctivitis" "keratoconjunctivitises" ; -- compound conjunctivitis_N ;
-lin vulvitis_N = mkN "vulvitis" "vulvitises" ;
-lin synovitis_N = mkN "synovitis" "synovitises" ;
-lin tenosynovitis_N = mkN "tenosynovitis" "tenosynovitises" ; -- compound synovitis_N ;
-lin mantis_N = mkN "mantis" "mantises" ;
-lin stephanotis_N = mkN "stephanotis" "stephanotises" ;
-lin 'rigor mortis_N' = mkN "rigor mortis" "rigor mortises" ;
-lin pastis_N = mkN "pastis" "pastises" ;
-lin ovotestis_N = mkN "ovotestis" "ovotestises" ;
-lin abattis_N = mkN "abattis" "abattises" ;
-lin glottis_N = mkN "glottis" "glottises" ;
-lin epiglottis_N = mkN "epiglottis" "epiglottises" ; -- compound glottis_N ;
-lin nephthytis_N = mkN "nephthytis" "nephthytises" ;
-lin testis_N = mkN "testis" "testes" ;
-lin marquis_N = mkN "marquis" "marquises" ;
-lin maquis_N = mkN "maquis" "maques" ;
-lin mavis_N = mkN "mavis" "mavises" ;
-lin protoavis_N = mkN "protoavis" "protoavises" ;
-lin pavis_N = mkN "pavis" "pavises" ;
-lin clevis_N = mkN "clevis" "clevises" ;
-lin pelvis_N = mkN "pelvis" "pelvises" ;
-lin parvis_N = mkN "parvis" "parvises" ;
-lin morphallaxis_N = mkN "morphallaxis" "morphallaxises" ;
-lin anaphylaxis_N = mkN "anaphylaxis" "anaphylaxises" ;
-lin prophylaxis_N = mkN "prophylaxis" "prophylaxises" ;
-lin taxis_N = mkN "taxis" "taxises" ;
-lin chemotaxis_N = mkN "chemotaxis" "chemotaxises" ; -- compound taxis_N ;
-lin cathexis_N = mkN "cathexis" "cathexises" ;
-lin acathexis_N = mkN "acathexis" "acathexises" ; -- notcompound cathexis_N ;
-lin lexis_N = mkN "lexis" "lexises" ;
-lin catalexis_N = mkN "catalexis" "catalexises" ; -- compound lexis_N ;
-lin epiplexis_N = mkN "epiplexis" "epiplexises" ; -- compound lexis_N ;
-lin deixis_N = mkN "deixis" "deixises" ;
-lin amphimixis_N = mkN "amphimixis" "amphimixises" ;
-lin apomixis_N = mkN "apomixis" "apomixises" ;
-lin hypozeuxis_N = mkN "hypozeuxis" "hypozeuxises" ;
-lin pyxis_N = mkN "pyxis" "pyxises" ;
-lin axis_N = mkN "axis" "axes" ;
-lin précis_N = mkN "précis" "précis" ;
-lin bourgeois_N = mkN "bourgeois" "bourgeois" ;
-lin seychellois_N = mkN "seychellois" "seychellois" ;
-lin chassis_N = mkN "chassis" "chassis" ;
-lin jacks_N = mkN "jacks" "jackses" ;
-lin slacks_N = mkN "slacks" "slackses" ;
-lin stacks_N = mkN "stacks" "stackses" ;
-lin goldilocks_N = mkN "goldilocks" "goldilockses" ;
-lin stocks_N = mkN "stocks" "stockses" ;
-lin buttocks_N = mkN "buttocks" "buttockses" ;
-lin shucks_N = mkN "shucks" "shuckses" ;
-lin silks_N = mkN "silks" "silkses" ;
-lin folks_N = mkN "folks" "folkses" ;
-lin jinks_N = mkN "jinks" "jinkses" ;
-lin blinks_N = mkN "blinks" "blinkses" ;
-lin punks_N = mkN "punks" "punkses" ;
-lin hooks_N = mkN "hooks" "hookses" ;
-lin works_N = mkN "works" "workses" ;
-lin links_N = mkN "links" "links" ;
-lin 'golf-links_N' = mkN "golf-links" "golf-links" ; -- compound links_N ;
-lin tiddlywinks_N = mkN "tiddlywinks" "tiddlywinks" ;
-lin 'sewage-works_N' = mkN "sewage-works" "sewage-works" ;
-lin 'dye-works_N' = mkN "dye-works" "dye-works" ;
-lin steelworks_N = mkN "steelworks" "steelworks" ;
-lin ironworks_N = mkN "ironworks" "ironworks" ;
-lin waterworks_N = mkN "waterworks" "waterworks" ;
-lin gasworks_N = mkN "gasworks" "gasworks" ;
-lin glassworks_N = mkN "glassworks" "glassworks" ;
-lin saltworks_N = mkN "saltworks" "saltworks" ;
-lin 'marking-inks_N' = mkN "marking-inks" "marking-inkss" ;
-lin bifocals_N = mkN "bifocals" "bifocalses" ;
-lin ringhals_N = mkN "ringhals" "ringhalses" ;
-lin annals_N = mkN "annals" "annalses" ;
-lin fundamentals_N = mkN "fundamentals" "fundamentalses" ;
-lin regimentals_N = mkN "regimentals" "regimentalses" ;
-lin coevals_N = mkN "coevals" "coevalses" ;
-lin hornfels_N = mkN "hornfels" "hornfelses" ;
-lin channels_N = mkN "channels" "channelses" ;
-lin barrels_N = mkN "barrels" "barrelses" ;
-lin bowels_N = mkN "bowels" "bowelses" ;
-lin fils_N = mkN "fils" "filses" ;
-lin falls_N = mkN "falls" "fallses" ;
-lin coralbells_N = mkN "coralbells" "coralbellses" ;
-lin polls_N = mkN "polls" "pollses" ;
-lin bowls_N = mkN "bowls" "bowls" ;
-lin ms_N = mkN "ms" "mses" ;
-lin anagrams_N = mkN "anagrams" "anagramses" ; -- compound ms_N ;
-lin santims_N = mkN "santims" "santimses" ; -- compound ms_N ;
-lin alms_N = mkN "alms" "almses" ; -- compound ms_N ;
-lin customs_N = mkN "customs" "customses" ; -- compound ms_N ;
-lin doldrums_N = mkN "doldrums" "doldrumses" ; -- compound ms_N ;
-lin 'gentleman-at-arms_N' = mkN "gentleman-at-arms" "gentlemen-*at-arms" ;
-lin 'man-at-arms_N' = mkN "man-at-arms" "men*-at-arms" ;
-lin 'master-at-arms_N' = mkN "master-at-arms" "masters-at-arms" ;
-lin 'serjeant-at-arms_N' = mkN "serjeant-at-arms" "serjeants-at-arms" ;
-lin Afrikaans_N = mkN "Afrikaans" "Afrikaanses" ;
-lin means_N = mkN "means" "meanses" ;
-lin glans_N = mkN "glans" "glanses" ;
-lin explanans_N = mkN "explanans" "explananses" ;
-lin smithereens_N = mkN "smithereens" "smithereenses" ;
-lin greens_N = mkN "greens" "greenses" ;
-lin teens_N = mkN "teens" "teenses" ;
-lin lens_N = mkN "lens" "lenses" ;
-lin avens_N = mkN "avens" "avenses" ;
-lin remains_N = mkN "remains" "remainses" ;
-lin cremains_N = mkN "cremains" "cremainses" ; -- notcompound remains_N ;
-lin afterpains_N = mkN "afterpains" "afterpainses" ;
-lin muggins_N = mkN "muggins" "mugginses" ;
-lin buckskins_N = mkN "buckskins" "buckskinses" ;
-lin collins_N = mkN "collins" "collinses" ;
-lin loins_N = mkN "loins" "loinses" ;
-lin candlepins_N = mkN "candlepins" "candlepinses" ;
-lin duckpins_N = mkN "duckpins" "duckpinses" ;
-lin tenpins_N = mkN "tenpins" "tenpinses" ;
-lin matins_N = mkN "matins" "matinses" ;
-lin twins_N = mkN "twins" "twinses" ;
-lin banns_N = mkN "banns" "bannses" ;
-lin occasions_N = mkN "occasions" "occasionses" ;
-lin communications_N = mkN "communications" "communicationses" ;
-lin operations_N = mkN "operations" "operationses" ;
-lin corrections_N = mkN "corrections" "correctionses" ;
-lin conditions_N = mkN "conditions" "conditionses" ;
-lin nylons_N = mkN "nylons" "nylonses" ;
-lin mons_N = mkN "mons" "monses" ;
-lin commons_N = mkN "commons" "commonses" ; -- compound mons_N ;
-lin summons_N = mkN "summons" "summonses" ; -- compound mons_N ;
-lin pons_N = mkN "pons" "ponses" ;
-lin irons_N = mkN "irons" "ironses" ;
-lin environs_N = mkN "environs" "environses" ; -- compound irons_N ;
-lin tons_N = mkN "tons" "tonses" ;
-lin wrns_N = mkN "wrns" "wrnses" ;
-lin ninepins_N = mkN "ninepins" "ninepins" ;
-lin os_N = mkN "os" "oses" ;
-lin chaos_N = mkN "chaos" "chaoses" ; -- compound os_N ;
-lin rooibos_N = mkN "rooibos" "rooiboses" ; -- compound os_N ;
-lin intrados_N = mkN "intrados" "intradoses" ; -- compound os_N ;
-lin extrados_N = mkN "extrados" "extradoses" ; -- compound os_N ;
-lin tournedos_N = mkN "tournedos" "tournedoses" ; -- compound os_N ;
-lin reredos_N = mkN "reredos" "reredoses" ; -- compound os_N ;
-lin eidos_N = mkN "eidos" "eidoses" ; -- compound os_N ;
-lin epanodos_N = mkN "epanodos" "epanodoses" ; -- compound os_N ;
-lin kudos_N = mkN "kudos" "kudoses" ; -- compound os_N ;
-lin chlorpyrifos_N = mkN "chlorpyrifos" "chlorpyrifoses" ; -- compound os_N ;
-lin bigos_N = mkN "bigos" "bigoses" ; -- compound os_N ;
-lin bathos_N = mkN "bathos" "bathoses" ; -- compound os_N ;
-lin pathos_N = mkN "pathos" "pathoses" ; -- compound os_N ;
-lin benthos_N = mkN "benthos" "benthoses" ; -- compound os_N ;
-lin pothos_N = mkN "pothos" "pothoses" ; -- compound os_N ;
-lin hydramnios_N = mkN "hydramnios" "hydramnioses" ; -- compound os_N ;
-lin kos_N = mkN "kos" "koses" ; -- notcompound os_N ;
-lin exomphalos_N = mkN "exomphalos" "exomphaloses" ; -- compound os_N ;
-lin peplos_N = mkN "peplos" "peploses" ; -- compound os_N ;
-lin lagophthalmos_N = mkN "lagophthalmos" "lagophthalmoses" ; -- compound os_N ;
-lin nanophthalmos_N = mkN "nanophthalmos" "nanophthalmoses" ; -- compound os_N ;
-lin exophthalmos_N = mkN "exophthalmos" "exophthalmoses" ; -- compound os_N ;
-lin thermos_N = mkN "thermos" "thermoses" ; -- compound os_N ;
-lin cosmos_2_N = mkN "cosmos" "cosmoses" ; -- compound os_N ;
-lin opisthotonos_N = mkN "opisthotonos" "opisthotonoses" ; -- compound os_N ;
-lin epos_N = mkN "epos" "eposes" ; -- compound os_N ;
-lin tripos_N = mkN "tripos" "triposes" ; -- compound os_N ;
-lin hematocolpos_N = mkN "hematocolpos" "hematocolposes" ; -- compound os_N ;
-lin topos_N = mkN "topos" "toposes" ; -- compound os_N ;
-lin encephalartos_N = mkN "encephalartos" "encephalartoses" ; -- compound os_N ;
-lin asbestos_N = mkN "asbestos" "asbestoses" ; -- compound os_N ;
-lin cos_N = mkN "cos" "cos" ;
-lin rhinoceros_N = mkN "rhinoceros" "rhinoceros" ;
-lin sos_N = mkN "sos" "soss" ;
-lin taps_N = mkN "taps" "tapses" ;
-lin quadriceps_N = mkN "quadriceps" "quadricepses" ;
-lin triceps_N = mkN "triceps" "tricepses" ;
-lin forceps_N = mkN "forceps" "forcepses" ;
-lin creeps_N = mkN "creeps" "creepses" ;
-lin reps_N = mkN "reps" "repses" ;
-lin steps_N = mkN "steps" "stepses" ;
-lin chips_N = mkN "chips" "chipses" ;
-lin snips_N = mkN "snips" "snipses" ;
-lin thrips_N = mkN "thrips" "thripses" ;
-lin tidytips_N = mkN "tidytips" "tidytipses" ;
-lin yips_N = mkN "yips" "yipses" ;
-lin dumps_N = mkN "dumps" "dumpses" ;
-lin lithops_N = mkN "lithops" "lithopses" ;
-lin anomalops_N = mkN "anomalops" "anomalopses" ;
-lin cyclops_N = mkN "cyclops" "cyclopses" ;
-lin slops_N = mkN "slops" "slopses" ;
-lin rollmops_N = mkN "rollmops" "rollmopses" ;
-lin paratroops_N = mkN "paratroops" "paratroopses" ;
-lin sundrops_N = mkN "sundrops" "sundropses" ;
-lin props_N = mkN "props" "propses" ;
-lin triceratops_N = mkN "triceratops" "triceratopses" ;
-lin protoceratops_N = mkN "protoceratops" "protoceratopses" ;
-lin schnapps_N = mkN "schnapps" "schnappses" ;
-lin turps_N = mkN "turps" "turpses" ;
-lin creamcups_N = mkN "creamcups" "creamcupses" ;
-lin craps_N = mkN "craps" "craps" ;
-lin biceps_N = mkN "biceps" "biceps" ;
-lin contretemps_N = mkN "contretemps" "contretemps" ;
-lin mumps_N = mkN "mumps" "mumps" ;
-lin corps_N = mkN "corps" "corps" ;
-lin boxcars_N = mkN "boxcars" "boxcarses" ;
-lin churidars_N = mkN "churidars" "churidarses" ;
-lin shears_N = mkN "shears" "shearses" ;
-lin arrears_N = mkN "arrears" "arrearses" ;
-lin binoculars_N = mkN "binoculars" "binocularses" ;
-lin limbers_N = mkN "limbers" "limberses" ;
-lin lancers_N = mkN "lancers" "lancerses" ;
-lin waders_N = mkN "waders" "waderses" ;
-lin glanders_N = mkN "glanders" "glanderses" ;
-lin flinders_N = mkN "flinders" "flinderses" ;
-lin rounders_N = mkN "rounders" "rounderses" ;
-lin snuffers_N = mkN "snuffers" "snufferses" ;
-lin staggers_N = mkN "staggers" "staggerses" ;
-lin bleachers_N = mkN "bleachers" "bleacherses" ;
-lin withers_N = mkN "withers" "witherses" ;
-lin pliers_N = mkN "pliers" "plierses" ;
-lin rockers_N = mkN "rockers" "rockerses" ;
-lin cobblers_N = mkN "cobblers" "cobblerses" ;
-lin bloomers_N = mkN "bloomers" "bloomerses" ;
-lin cleaners_N = mkN "cleaners" "cleanerses" ;
-lin manners_N = mkN "manners" "mannerses" ;
-lin vespers_N = mkN "vespers" "vesperses" ;
-lin summercaters_N = mkN "summercaters" "summercaterses" ;
-lin hindquarters_N = mkN "hindquarters" "hindquarterses" ;
-lin letters_N = mkN "letters" "letterses" ;
-lin bitters_N = mkN "bitters" "bitterses" ;
-lin jitters_N = mkN "jitters" "jitterses" ;
-lin cleavers_N = mkN "cleavers" "cleaverses" ;
-lin leftovers_N = mkN "leftovers" "leftoverses" ;
-lin drawers_N = mkN "drawers" "drawerses" ;
-lin frs_N = mkN "frs" "frses" ;
-lin airs_N = mkN "airs" "airses" ;
-lin affairs_N = mkN "affairs" "affairses" ; -- compound airs_N ;
-lin crosshairs_N = mkN "crosshairs" "crosshairses" ; -- compound airs_N ;
-lin backstairs_N = mkN "backstairs" "backstairses" ; -- compound airs_N ;
-lin upstairs_N = mkN "upstairs" "upstairses" ; -- compound airs_N ;
-lin outdoors_N = mkN "outdoors" "outdoorses" ;
-lin scissors_N = mkN "scissors" "scissorses" ;
-lin secateurs_N = mkN "secateurs" "secateurses" ;
-lin scours_N = mkN "scours" "scourses" ;
-lin hours_N = mkN "hours" "hourses" ;
-lin jodhpurs_N = mkN "jodhpurs" "jodhpurses" ;
-lin butterfingers_N = mkN "butterfingers" "butterfingers" ;
-lin checkers_N = mkN "checkers" "checkers" ;
-lin ss_N = mkN "ss" "sses" ;
-lin ass_N = mkN "ass" "asses" ; -- notcompound ss_N ;
-lin bass_N = mkN "bass" "basses" ; -- compound ss_N ;
-lin 'double-bass_N' = mkN "double-bass" "double-basses" ; -- compound ss_N ;
-lin contrabass_N = mkN "contrabass" "contrabasses" ; -- compound ss_N ;
-lin carcass_N = mkN "carcass" "carcasses" ; -- compound ss_N ;
-lin jackass_N = mkN "jackass" "jackasses" ; -- compound ss_N ;
-lin lass_N = mkN "lass" "lasses" ; -- compound ss_N ;
-lin class_N = mkN "class" "classes" ; -- compound ss_N ;
-lin 'second-class_N' = mkN "second-class" "second-classes" ; -- compound ss_N ;
-lin subclass_N = mkN "subclass" "subclasses" ; -- compound ss_N ;
-lin superclass_N = mkN "superclass" "superclasses" ; -- compound ss_N ;
-lin windlass_N = mkN "windlass" "windlasses" ; -- compound ss_N ;
-lin glass_N = mkN "glass" "glasses" ; -- compound ss_N ;
-lin 'cheval glass_N' = mkN "cheval glass" "cheval glasses" ; -- compound ss_N ;
-lin 'plate-glass_N' = mkN "plate-glass" "plate-glasses" ; -- compound ss_N ;
-lin 'looking-glass_N' = mkN "looking-glass" "looking-glasses" ; -- compound ss_N ;
-lin 'watch-glass_N' = mkN "watch-glass" "watch-glasses" ; -- compound ss_N ;
-lin 'weather-glass_N' = mkN "weather-glass" "weather-glasses" ; -- compound ss_N ;
-lin 'pier-glass_N' = mkN "pier-glass" "pier-glasses" ; -- compound ss_N ;
-lin 'water-glass_N' = mkN "water-glass" "water-glasses" ; -- compound ss_N ;
-lin sandglass_N = mkN "sandglass" "sandglasses" ; -- compound ss_N ;
-lin wineglass_N = mkN "wineglass" "wineglasses" ; -- compound ss_N ;
-lin fibreglass_N = mkN "fibreglass" "fibreglasses" ; -- compound ss_N ;
-lin eyeglass_N = mkN "eyeglass" "eyeglasses" ; -- compound ss_N ;
-lin isinglass_N = mkN "isinglass" "isinglasses" ; -- compound ss_N ;
-lin sunglass_N = mkN "sunglass" "sunglasses" ; -- compound ss_N ;
-lin fiberglass_N = mkN "fiberglass" "fiberglasses" ; -- compound ss_N ;
-lin weatherglass_N = mkN "weatherglass" "weatherglasses" ; -- compound ss_N ;
-lin hourglass_N = mkN "hourglass" "hourglasses" ; -- compound ss_N ;
-lin spyglass_N = mkN "spyglass" "spyglasses" ; -- compound ss_N ;
-lin cutlass_N = mkN "cutlass" "cutlasses" ; -- compound ss_N ;
-lin mass_N = mkN "mass" "masses" ; -- compound ss_N ;
-lin admass_N = mkN "admass" "admasses" ; -- compound ss_N ;
-lin landmass_N = mkN "landmass" "landmasses" ; -- compound ss_N ;
-lin groundmass_N = mkN "groundmass" "groundmasses" ; -- compound ss_N ;
-lin biomass_N = mkN "biomass" "biomasses" ; -- compound ss_N ;
-lin pass_N = mkN "pass" "passes" ; -- compound ss_N ;
-lin compass_N = mkN "compass" "compasses" ; -- compound ss_N ;
-lin gyrocompass_N = mkN "gyrocompass" "gyrocompasses" ; -- compound ss_N ;
-lin underpass_N = mkN "underpass" "underpasses" ; -- compound ss_N ;
-lin overpass_N = mkN "overpass" "overpasses" ; -- compound ss_N ;
-lin trespass_N = mkN "trespass" "trespasses" ; -- compound ss_N ;
-lin bypass_N = mkN "bypass" "bypasses" ; -- compound ss_N ;
-lin brass_N = mkN "brass" "brasses" ; -- compound ss_N ;
-lin grass_N = mkN "grass" "grasses" ; -- compound ss_N ;
-lin 'couch-grass_N' = mkN "couch-grass" "couch-grasses" ; -- compound ss_N ;
-lin 'pampas-grass_N' = mkN "pampas-grass" "pampas-grasses" ; -- compound ss_N ;
-lin seagrass_N = mkN "seagrass" "seagrasses" ; -- compound ss_N ;
-lin crabgrass_N = mkN "crabgrass" "crabgrasses" ; -- compound ss_N ;
-lin midgrass_N = mkN "midgrass" "midgrasses" ; -- compound ss_N ;
-lin yardgrass_N = mkN "yardgrass" "yardgrasses" ; -- compound ss_N ;
-lin cordgrass_N = mkN "cordgrass" "cordgrasses" ; -- compound ss_N ;
-lin ricegrass_N = mkN "ricegrass" "ricegrasses" ; -- compound ss_N ;
-lin bristlegrass_N = mkN "bristlegrass" "bristlegrasses" ; -- compound ss_N ;
-lin bluegrass_N = mkN "bluegrass" "bluegrasses" ; -- compound ss_N ;
-lin hardinggrass_N = mkN "hardinggrass" "hardinggrasses" ; -- compound ss_N ;
-lin bunchgrass_N = mkN "bunchgrass" "bunchgrasses" ; -- compound ss_N ;
-lin witchgrass_N = mkN "witchgrass" "witchgrasses" ; -- compound ss_N ;
-lin eelgrass_N = mkN "eelgrass" "eelgrasses" ; -- compound ss_N ;
-lin tallgrass_N = mkN "tallgrass" "tallgrasses" ; -- compound ss_N ;
-lin lemongrass_N = mkN "lemongrass" "lemongrasses" ; -- compound ss_N ;
-lin supergrass_N = mkN "supergrass" "supergrasses" ; -- compound ss_N ;
-lin burgrass_N = mkN "burgrass" "burgrasses" ; -- compound ss_N ;
-lin dallisgrass_N = mkN "dallisgrass" "dallisgrasses" ; -- compound ss_N ;
-lin wheatgrass_N = mkN "wheatgrass" "wheatgrasses" ; -- compound ss_N ;
-lin knotgrass_N = mkN "knotgrass" "knotgrasses" ; -- compound ss_N ;
-lin shortgrass_N = mkN "shortgrass" "shortgrasses" ; -- compound ss_N ;
-lin nutgrass_N = mkN "nutgrass" "nutgrasses" ; -- compound ss_N ;
-lin meadowgrass_N = mkN "meadowgrass" "meadowgrasses" ; -- compound ss_N ;
-lin cuirass_N = mkN "cuirass" "cuirasses" ; -- compound ss_N ;
-lin morass_N = mkN "morass" "morasses" ; -- compound ss_N ;
-lin sass_N = mkN "sass" "sasses" ; -- compound ss_N ;
-lin kvass_N = mkN "kvass" "kvasses" ; -- compound ss_N ;
-lin canvass_N = mkN "canvass" "canvasses" ; -- compound ss_N ;
-lin dss_N = mkN "dss" "dsses" ; -- notcompound ss_N ;
-lin abbess_N = mkN "abbess" "abbesses" ; -- compound ss_N ;
-lin access_N = mkN "access" "accesses" ; -- compound ss_N ;
-lin success_N = mkN "success" "successes" ; -- compound ss_N ;
-lin recess_N = mkN "recess" "recesses" ; -- compound ss_N ;
-lin princess_N = mkN "princess" "princesses" ; -- compound ss_N ;
-lin process_N = mkN "process" "processes" ; -- compound ss_N ;
-lin abscess_N = mkN "abscess" "abscesses" ; -- compound ss_N ;
-lin excess_N = mkN "excess" "excesses" ; -- compound ss_N ;
-lin goddess_N = mkN "goddess" "goddesses" ; -- compound ss_N ;
-lin leopardess_N = mkN "leopardess" "leopardesses" ; -- compound ss_N ;
-lin stewardess_N = mkN "stewardess" "stewardesses" ; -- compound ss_N ;
-lin shepherdess_N = mkN "shepherdess" "shepherdesses" ; -- compound ss_N ;
-lin largess_N = mkN "largess" "largesses" ; -- compound ss_N ;
-lin burgess_N = mkN "burgess" "burgesses" ; -- compound ss_N ;
-lin chess_N = mkN "chess" "chesses" ; -- compound ss_N ;
-lin duchess_N = mkN "duchess" "duchesses" ; -- compound ss_N ;
-lin archduchess_N = mkN "archduchess" "archduchesses" ; -- compound ss_N ;
-lin tubeless_N = mkN "tubeless" "tubelesses" ; -- compound ss_N ;
-lin homeless_N = mkN "homeless" "homelesses" ; -- compound ss_N ;
-lin wireless_N = mkN "wireless" "wirelesses" ; -- compound ss_N ;
-lin strapless_N = mkN "strapless" "straplesses" ; -- compound ss_N ;
-lin mess_N = mkN "mess" "messes" ; -- compound ss_N ;
-lin ness_N = mkN "ness" "nesses" ; -- compound ss_N ;
-lin drabness_N = mkN "drabness" "drabnesses" ; -- compound ss_N ;
-lin glibness_N = mkN "glibness" "glibnesses" ; -- compound ss_N ;
-lin dumbness_N = mkN "dumbness" "dumbnesses" ; -- compound ss_N ;
-lin numbness_N = mkN "numbness" "numbnesses" ; -- compound ss_N ;
-lin badness_N = mkN "badness" "badnesses" ; -- compound ss_N ;
-lin deadness_N = mkN "deadness" "deadnesses" ; -- compound ss_N ;
-lin gladness_N = mkN "gladness" "gladnesses" ; -- compound ss_N ;
-lin madness_N = mkN "madness" "madnesses" ; -- compound ss_N ;
-lin broadness_N = mkN "broadness" "broadnesses" ; -- compound ss_N ;
-lin sadness_N = mkN "sadness" "sadnesses" ; -- compound ss_N ;
-lin oddness_N = mkN "oddness" "oddnesses" ; -- compound ss_N ;
-lin shamefacedness_N = mkN "shamefacedness" "shamefacednesses" ; -- compound ss_N ;
-lin 'pig-headedness_N' = mkN "pig-headedness" "pig-headednesses" ; -- compound ss_N ;
-lin 'light-headedness_N' = mkN "light-headedness" "light-headednesses" ; -- compound ss_N ;
-lin lightheadedness_N = mkN "lightheadedness" "lightheadednesses" ; -- compound ss_N ;
-lin lopsidedness_N = mkN "lopsidedness" "lopsidednesses" ; -- compound ss_N ;
-lin handedness_N = mkN "handedness" "handednesses" ; -- compound ss_N ;
-lin 'broad-mindedness_N' = mkN "broad-mindedness" "broad-mindednesses" ; -- compound ss_N ;
-lin 'noble-mindedness_N' = mkN "noble-mindedness" "noble-mindednesses" ; -- compound ss_N ;
-lin 'high-mindedness_N' = mkN "high-mindedness" "high-mindednesses" ; -- compound ss_N ;
-lin 'light-mindedness_N' = mkN "light-mindedness" "light-mindednesses" ; -- compound ss_N ;
-lin 'absent-mindedness_N' = mkN "absent-mindedness" "absent-mindednesses" ; -- compound ss_N ;
-lin 'narrow-mindedness_N' = mkN "narrow-mindedness" "narrow-mindednesses" ; -- compound ss_N ;
-lin feeblemindedness_N = mkN "feeblemindedness" "feeblemindednesses" ; -- compound ss_N ;
-lin absentmindedness_N = mkN "absentmindedness" "absentmindednesses" ; -- compound ss_N ;
-lin 'long-windedness_N' = mkN "long-windedness" "long-windednesses" ; -- compound ss_N ;
-lin roundedness_N = mkN "roundedness" "roundednesses" ; -- compound ss_N ;
-lin agedness_N = mkN "agedness" "agednesses" ; -- compound ss_N ;
-lin jaggedness_N = mkN "jaggedness" "jaggednesses" ; -- compound ss_N ;
-lin raggedness_N = mkN "raggedness" "raggednesses" ; -- compound ss_N ;
-lin doggedness_N = mkN "doggedness" "doggednesses" ; -- compound ss_N ;
-lin ruggedness_N = mkN "ruggedness" "ruggednesses" ; -- compound ss_N ;
-lin wretchedness_N = mkN "wretchedness" "wretchednesses" ; -- compound ss_N ;
-lin variedness_N = mkN "variedness" "variednesses" ; -- compound ss_N ;
-lin unvariedness_N = mkN "unvariedness" "unvariednesses" ; -- compound ss_N ;
-lin nakedness_N = mkN "nakedness" "nakednesses" ; -- compound ss_N ;
-lin wickedness_N = mkN "wickedness" "wickednesses" ; -- compound ss_N ;
-lin crookedness_N = mkN "crookedness" "crookednesses" ; -- compound ss_N ;
-lin redness_N = mkN "redness" "rednesses" ; -- compound ss_N ;
-lin preparedness_N = mkN "preparedness" "preparednesses" ; -- compound ss_N ;
-lin sacredness_N = mkN "sacredness" "sacrednesses" ; -- compound ss_N ;
-lin tiredness_N = mkN "tiredness" "tirednesses" ; -- compound ss_N ;
-lin assuredness_N = mkN "assuredness" "assurednesses" ; -- compound ss_N ;
-lin blessedness_N = mkN "blessedness" "blessednesses" ; -- compound ss_N ;
-lin cussedness_N = mkN "cussedness" "cussednesses" ; -- compound ss_N ;
-lin complicatedness_N = mkN "complicatedness" "complicatednesses" ; -- compound ss_N ;
-lin relatedness_N = mkN "relatedness" "relatednesses" ; -- compound ss_N ;
-lin unrelatedness_N = mkN "unrelatedness" "unrelatednesses" ; -- compound ss_N ;
-lin indebtedness_N = mkN "indebtedness" "indebtednesses" ; -- compound ss_N ;
-lin abstractedness_N = mkN "abstractedness" "abstractednesses" ; -- compound ss_N ;
-lin affectedness_N = mkN "affectedness" "affectednesses" ; -- compound ss_N ;
-lin unaffectedness_N = mkN "unaffectedness" "unaffectednesses" ; -- compound ss_N ;
-lin unconnectedness_N = mkN "unconnectedness" "unconnectednesses" ; -- compound ss_N ;
-lin interconnectedness_N = mkN "interconnectedness" "interconnectednesses" ; -- compound ss_N ;
-lin expectedness_N = mkN "expectedness" "expectednesses" ; -- compound ss_N ;
-lin unexpectedness_N = mkN "unexpectedness" "unexpectednesses" ; -- compound ss_N ;
-lin contentedness_N = mkN "contentedness" "contentednesses" ; -- compound ss_N ;
-lin disjointedness_N = mkN "disjointedness" "disjointednesses" ; -- compound ss_N ;
-lin pointedness_N = mkN "pointedness" "pointednesses" ; -- compound ss_N ;
-lin unpointedness_N = mkN "unpointedness" "unpointednesses" ; -- compound ss_N ;
-lin footedness_N = mkN "footedness" "footednesses" ; -- compound ss_N ;
-lin 'light-heartedness_N' = mkN "light-heartedness" "light-heartednesses" ; -- compound ss_N ;
-lin kindheartedness_N = mkN "kindheartedness" "kindheartednesses" ; -- compound ss_N ;
-lin wholeheartedness_N = mkN "wholeheartedness" "wholeheartednesses" ; -- compound ss_N ;
-lin bigheartedness_N = mkN "bigheartedness" "bigheartednesses" ; -- compound ss_N ;
-lin warmheartedness_N = mkN "warmheartedness" "warmheartednesses" ; -- compound ss_N ;
-lin downheartedness_N = mkN "downheartedness" "downheartednesses" ; -- compound ss_N ;
-lin softheartedness_N = mkN "softheartedness" "softheartednesses" ; -- compound ss_N ;
-lin faintheartedness_N = mkN "faintheartedness" "faintheartednesses" ; -- compound ss_N ;
-lin stoutheartedness_N = mkN "stoutheartedness" "stoutheartednesses" ; -- compound ss_N ;
-lin heavyheartedness_N = mkN "heavyheartedness" "heavyheartednesses" ; -- compound ss_N ;
-lin interestedness_N = mkN "interestedness" "interestednesses" ; -- compound ss_N ;
-lin disinterestedness_N = mkN "disinterestedness" "disinterestednesses" ; -- compound ss_N ;
-lin committedness_N = mkN "committedness" "committednesses" ; -- compound ss_N ;
-lin fixedness_N = mkN "fixedness" "fixednesses" ; -- compound ss_N ;
-lin eyedness_N = mkN "eyedness" "eyednesses" ; -- compound ss_N ;
-lin staidness_N = mkN "staidness" "staidnesses" ; -- compound ss_N ;
-lin morbidness_N = mkN "morbidness" "morbidnesses" ; -- compound ss_N ;
-lin turbidness_N = mkN "turbidness" "turbidnesses" ; -- compound ss_N ;
-lin rancidness_N = mkN "rancidness" "rancidnesses" ; -- compound ss_N ;
-lin pellucidness_N = mkN "pellucidness" "pellucidnesses" ; -- compound ss_N ;
-lin sordidness_N = mkN "sordidness" "sordidnesses" ; -- compound ss_N ;
-lin pallidness_N = mkN "pallidness" "pallidnesses" ; -- compound ss_N ;
-lin solidness_N = mkN "solidness" "solidnesses" ; -- compound ss_N ;
-lin stolidness_N = mkN "stolidness" "stolidnesses" ; -- compound ss_N ;
-lin timidness_N = mkN "timidness" "timidnesses" ; -- compound ss_N ;
-lin vapidness_N = mkN "vapidness" "vapidnesses" ; -- compound ss_N ;
-lin tepidness_N = mkN "tepidness" "tepidnesses" ; -- compound ss_N ;
-lin insipidness_N = mkN "insipidness" "insipidnesses" ; -- compound ss_N ;
-lin torpidness_N = mkN "torpidness" "torpidnesses" ; -- compound ss_N ;
-lin horridness_N = mkN "horridness" "horridnesses" ; -- compound ss_N ;
-lin luridness_N = mkN "luridness" "luridnesses" ; -- compound ss_N ;
-lin lividness_N = mkN "lividness" "lividnesses" ; -- compound ss_N ;
-lin vividness_N = mkN "vividness" "vividnesses" ; -- compound ss_N ;
-lin baldness_N = mkN "baldness" "baldnesses" ; -- compound ss_N ;
-lin mildness_N = mkN "mildness" "mildnesses" ; -- compound ss_N ;
-lin wildness_N = mkN "wildness" "wildnesses" ; -- compound ss_N ;
-lin oldness_N = mkN "oldness" "oldnesses" ; -- compound ss_N ;
-lin boldness_N = mkN "boldness" "boldnesses" ; -- compound ss_N ;
-lin coldness_N = mkN "coldness" "coldnesses" ; -- compound ss_N ;
-lin blandness_N = mkN "blandness" "blandnesses" ; -- compound ss_N ;
-lin kindness_N = mkN "kindness" "kindnesses" ; -- compound ss_N ;
-lin 'loving-kindness_N' = mkN "loving-kindness" "loving-kindnesses" ; -- compound ss_N ;
-lin unkindness_N = mkN "unkindness" "unkindnesses" ; -- compound ss_N ;
-lin blindness_N = mkN "blindness" "blindnesses" ; -- compound ss_N ;
-lin snowblindness_N = mkN "snowblindness" "snowblindnesses" ; -- compound ss_N ;
-lin fondness_N = mkN "fondness" "fondnesses" ; -- compound ss_N ;
-lin profoundness_N = mkN "profoundness" "profoundnesses" ; -- compound ss_N ;
-lin roundness_N = mkN "roundness" "roundnesses" ; -- compound ss_N ;
-lin soundness_N = mkN "soundness" "soundnesses" ; -- compound ss_N ;
-lin unsoundness_N = mkN "unsoundness" "unsoundnesses" ; -- compound ss_N ;
-lin goodness_N = mkN "goodness" "goodnesses" ; -- compound ss_N ;
-lin hardness_N = mkN "hardness" "hardnesses" ; -- compound ss_N ;
-lin awkwardness_N = mkN "awkwardness" "awkwardnesses" ; -- compound ss_N ;
-lin inwardness_N = mkN "inwardness" "inwardnesses" ; -- compound ss_N ;
-lin forwardness_N = mkN "forwardness" "forwardnesses" ; -- compound ss_N ;
-lin outwardness_N = mkN "outwardness" "outwardnesses" ; -- compound ss_N ;
-lin weirdness_N = mkN "weirdness" "weirdnesses" ; -- compound ss_N ;
-lin loudness_N = mkN "loudness" "loudnesses" ; -- compound ss_N ;
-lin lewdness_N = mkN "lewdness" "lewdnesses" ; -- compound ss_N ;
-lin shrewdness_N = mkN "shrewdness" "shrewdnesses" ; -- compound ss_N ;
-lin niceness_N = mkN "niceness" "nicenesses" ; -- compound ss_N ;
-lin fierceness_N = mkN "fierceness" "fiercenesses" ; -- compound ss_N ;
-lin spruceness_N = mkN "spruceness" "sprucenesses" ; -- compound ss_N ;
-lin wideness_N = mkN "wideness" "widenesses" ; -- compound ss_N ;
-lin rudeness_N = mkN "rudeness" "rudenesses" ; -- compound ss_N ;
-lin crudeness_N = mkN "crudeness" "crudenesses" ; -- compound ss_N ;
-lin carefreeness_N = mkN "carefreeness" "carefreenesses" ; -- compound ss_N ;
-lin safeness_N = mkN "safeness" "safenesses" ; -- compound ss_N ;
-lin averageness_N = mkN "averageness" "averagenesses" ; -- compound ss_N ;
-lin savageness_N = mkN "savageness" "savagenesses" ; -- compound ss_N ;
-lin strangeness_N = mkN "strangeness" "strangenesses" ; -- compound ss_N ;
-lin largeness_N = mkN "largeness" "largenesses" ; -- compound ss_N ;
-lin likeness_N = mkN "likeness" "likenesses" ; -- compound ss_N ;
-lin unlikeness_N = mkN "unlikeness" "unlikenesses" ; -- compound ss_N ;
-lin ladylikeness_N = mkN "ladylikeness" "ladylikenesses" ; -- compound ss_N ;
-lin maleness_N = mkN "maleness" "malenesses" ; -- compound ss_N ;
-lin femaleness_N = mkN "femaleness" "femalenesses" ; -- compound ss_N ;
-lin paleness_N = mkN "paleness" "palenesses" ; -- compound ss_N ;
-lin staleness_N = mkN "staleness" "stalenesses" ; -- compound ss_N ;
-lin impracticableness_N = mkN "impracticableness" "impracticablenesses" ; -- compound ss_N ;
-lin peaceableness_N = mkN "peaceableness" "peaceablenesses" ; -- compound ss_N ;
-lin irreplaceableness_N = mkN "irreplaceableness" "irreplaceablenesses" ; -- compound ss_N ;
-lin unnoticeableness_N = mkN "unnoticeableness" "unnoticeablenesses" ; -- compound ss_N ;
-lin agreeableness_N = mkN "agreeableness" "agreeablenesses" ; -- compound ss_N ;
-lin disagreeableness_N = mkN "disagreeableness" "disagreeablenesses" ; -- compound ss_N ;
-lin changeableness_N = mkN "changeableness" "changeablenesses" ; -- compound ss_N ;
-lin variableness_N = mkN "variableness" "variablenesses" ; -- compound ss_N ;
-lin breakableness_N = mkN "breakableness" "breakablenesses" ; -- compound ss_N ;
-lin unbreakableness_N = mkN "unbreakableness" "unbreakablenesses" ; -- compound ss_N ;
-lin unattainableness_N = mkN "unattainableness" "unattainablenesses" ; -- compound ss_N ;
-lin reasonableness_N = mkN "reasonableness" "reasonablenesses" ; -- compound ss_N ;
-lin seasonableness_N = mkN "seasonableness" "seasonablenesses" ; -- compound ss_N ;
-lin unseasonableness_N = mkN "unseasonableness" "unseasonablenesses" ; -- compound ss_N ;
-lin personableness_N = mkN "personableness" "personablenesses" ; -- compound ss_N ;
-lin innumerableness_N = mkN "innumerableness" "innumerablenesses" ; -- compound ss_N ;
-lin honorableness_N = mkN "honorableness" "honorablenesses" ; -- compound ss_N ;
-lin dishonorableness_N = mkN "dishonorableness" "dishonorablenesses" ; -- compound ss_N ;
-lin favorableness_N = mkN "favorableness" "favorablenesses" ; -- compound ss_N ;
-lin unfavorableness_N = mkN "unfavorableness" "unfavorablenesses" ; -- compound ss_N ;
-lin honourableness_N = mkN "honourableness" "honourablenesses" ; -- compound ss_N ;
-lin profitableness_N = mkN "profitableness" "profitablenesses" ; -- compound ss_N ;
-lin unprofitableness_N = mkN "unprofitableness" "unprofitablenesses" ; -- compound ss_N ;
-lin hospitableness_N = mkN "hospitableness" "hospitablenesses" ; -- compound ss_N ;
-lin inhospitableness_N = mkN "inhospitableness" "inhospitablenesses" ; -- compound ss_N ;
-lin charitableness_N = mkN "charitableness" "charitablenesses" ; -- compound ss_N ;
-lin suitableness_N = mkN "suitableness" "suitablenesses" ; -- compound ss_N ;
-lin comfortableness_N = mkN "comfortableness" "comfortablenesses" ; -- compound ss_N ;
-lin invaluableness_N = mkN "invaluableness" "invaluablenesses" ; -- compound ss_N ;
-lin conceivableness_N = mkN "conceivableness" "conceivablenesses" ; -- compound ss_N ;
-lin enjoyableness_N = mkN "enjoyableness" "enjoyablenesses" ; -- compound ss_N ;
-lin feebleness_N = mkN "feebleness" "feeblenesses" ; -- compound ss_N ;
-lin sensibleness_N = mkN "sensibleness" "sensiblenesses" ; -- compound ss_N ;
-lin nimbleness_N = mkN "nimbleness" "nimblenesses" ; -- compound ss_N ;
-lin humbleness_N = mkN "humbleness" "humblenesses" ; -- compound ss_N ;
-lin ignobleness_N = mkN "ignobleness" "ignoblenesses" ; -- compound ss_N ;
-lin idleness_N = mkN "idleness" "idlenesses" ; -- compound ss_N ;
-lin singleness_N = mkN "singleness" "singlenesses" ; -- compound ss_N ;
-lin worthwhileness_N = mkN "worthwhileness" "worthwhilenesses" ; -- compound ss_N ;
-lin vileness_N = mkN "vileness" "vilenesses" ; -- compound ss_N ;
-lin fickleness_N = mkN "fickleness" "ficklenesses" ; -- compound ss_N ;
-lin wholeness_N = mkN "wholeness" "wholenesses" ; -- compound ss_N ;
-lin ampleness_N = mkN "ampleness" "amplenesses" ; -- compound ss_N ;
-lin suppleness_N = mkN "suppleness" "supplenesses" ; -- compound ss_N ;
-lin gentleness_N = mkN "gentleness" "gentlenesses" ; -- compound ss_N ;
-lin littleness_N = mkN "littleness" "littlenesses" ; -- compound ss_N ;
-lin brittleness_N = mkN "brittleness" "brittlenesses" ; -- compound ss_N ;
-lin lameness_N = mkN "lameness" "lamenesses" ; -- compound ss_N ;
-lin sameness_N = mkN "sameness" "samenesses" ; -- compound ss_N ;
-lin selfsameness_N = mkN "selfsameness" "selfsamenesses" ; -- compound ss_N ;
-lin tameness_N = mkN "tameness" "tamenesses" ; -- compound ss_N ;
-lin extremeness_N = mkN "extremeness" "extremenesses" ; -- compound ss_N ;
-lin handsomeness_N = mkN "handsomeness" "handsomenesses" ; -- compound ss_N ;
-lin troublesomeness_N = mkN "troublesomeness" "troublesomenesses" ; -- compound ss_N ;
-lin wholesomeness_N = mkN "wholesomeness" "wholesomenesses" ; -- compound ss_N ;
-lin unwholesomeness_N = mkN "unwholesomeness" "unwholesomenesses" ; -- compound ss_N ;
-lin mettlesomeness_N = mkN "mettlesomeness" "mettlesomenesses" ; -- compound ss_N ;
-lin gruesomeness_N = mkN "gruesomeness" "gruesomenesses" ; -- compound ss_N ;
-lin loathsomeness_N = mkN "loathsomeness" "loathsomenesses" ; -- compound ss_N ;
-lin quarrelsomeness_N = mkN "quarrelsomeness" "quarrelsomenesses" ; -- compound ss_N ;
-lin fulsomeness_N = mkN "fulsomeness" "fulsomenesses" ; -- compound ss_N ;
-lin burdensomeness_N = mkN "burdensomeness" "burdensomenesses" ; -- compound ss_N ;
-lin winsomeness_N = mkN "winsomeness" "winsomenesses" ; -- compound ss_N ;
-lin flavorsomeness_N = mkN "flavorsomeness" "flavorsomenesses" ; -- compound ss_N ;
-lin lissomeness_N = mkN "lissomeness" "lissomenesses" ; -- compound ss_N ;
-lin lightsomeness_N = mkN "lightsomeness" "lightsomenesses" ; -- compound ss_N ;
-lin profaneness_N = mkN "profaneness" "profanenesses" ; -- compound ss_N ;
-lin germaneness_N = mkN "germaneness" "germanenesses" ; -- compound ss_N ;
-lin humaneness_N = mkN "humaneness" "humanenesses" ; -- compound ss_N ;
-lin inhumaneness_N = mkN "inhumaneness" "inhumanenesses" ; -- compound ss_N ;
-lin fineness_N = mkN "fineness" "finenesses" ; -- compound ss_N ;
-lin genuineness_N = mkN "genuineness" "genuinenesses" ; -- compound ss_N ;
-lin oneness_N = mkN "oneness" "onenesses" ; -- compound ss_N ;
-lin aloneness_N = mkN "aloneness" "alonenesses" ; -- compound ss_N ;
-lin proneness_N = mkN "proneness" "pronenesses" ; -- compound ss_N ;
-lin jejuneness_N = mkN "jejuneness" "jejunenesses" ; -- compound ss_N ;
-lin opportuneness_N = mkN "opportuneness" "opportunenesses" ; -- compound ss_N ;
-lin inopportuneness_N = mkN "inopportuneness" "inopportunenesses" ; -- compound ss_N ;
-lin ripeness_N = mkN "ripeness" "ripenesses" ; -- compound ss_N ;
-lin bareness_N = mkN "bareness" "barenesses" ; -- compound ss_N ;
-lin spareness_N = mkN "spareness" "sparenesses" ; -- compound ss_N ;
-lin rareness_N = mkN "rareness" "rarenesses" ; -- compound ss_N ;
-lin squareness_N = mkN "squareness" "squarenesses" ; -- compound ss_N ;
-lin awareness_N = mkN "awareness" "awarenesses" ; -- compound ss_N ;
-lin sombreness_N = mkN "sombreness" "sombrenesses" ; -- compound ss_N ;
-lin hereness_N = mkN "hereness" "herenesses" ; -- compound ss_N ;
-lin thereness_N = mkN "thereness" "therenesses" ; -- compound ss_N ;
-lin sereness_N = mkN "sereness" "serenesses" ; -- compound ss_N ;
-lin austereness_N = mkN "austereness" "austerenesses" ; -- compound ss_N ;
-lin meagreness_N = mkN "meagreness" "meagrenesses" ; -- compound ss_N ;
-lin soreness_N = mkN "soreness" "sorenesses" ; -- compound ss_N ;
-lin secureness_N = mkN "secureness" "securenesses" ; -- compound ss_N ;
-lin insecureness_N = mkN "insecureness" "insecurenesses" ; -- compound ss_N ;
-lin obscureness_N = mkN "obscureness" "obscurenesses" ; -- compound ss_N ;
-lin demureness_N = mkN "demureness" "demurenesses" ; -- compound ss_N ;
-lin pureness_N = mkN "pureness" "purenesses" ; -- compound ss_N ;
-lin sureness_N = mkN "sureness" "surenesses" ; -- compound ss_N ;
-lin prematureness_N = mkN "prematureness" "prematurenesses" ; -- compound ss_N ;
-lin baseness_N = mkN "baseness" "basenesses" ; -- compound ss_N ;
-lin preciseness_N = mkN "preciseness" "precisenesses" ; -- compound ss_N ;
-lin impreciseness_N = mkN "impreciseness" "imprecisenesses" ; -- compound ss_N ;
-lin conciseness_N = mkN "conciseness" "concisenesses" ; -- compound ss_N ;
-lin falseness_N = mkN "falseness" "falsenesses" ; -- compound ss_N ;
-lin denseness_N = mkN "denseness" "densenesses" ; -- compound ss_N ;
-lin tenseness_N = mkN "tenseness" "tensenesses" ; -- compound ss_N ;
-lin verboseness_N = mkN "verboseness" "verbosenesses" ; -- compound ss_N ;
-lin jocoseness_N = mkN "jocoseness" "jocosenesses" ; -- compound ss_N ;
-lin closeness_N = mkN "closeness" "closenesses" ; -- compound ss_N ;
-lin looseness_N = mkN "looseness" "loosenesses" ; -- compound ss_N ;
-lin moroseness_N = mkN "moroseness" "morosenesses" ; -- compound ss_N ;
-lin coarseness_N = mkN "coarseness" "coarsenesses" ; -- compound ss_N ;
-lin hoarseness_N = mkN "hoarseness" "hoarsenesses" ; -- compound ss_N ;
-lin sparseness_N = mkN "sparseness" "sparsenesses" ; -- compound ss_N ;
-lin terseness_N = mkN "terseness" "tersenesses" ; -- compound ss_N ;
-lin diverseness_N = mkN "diverseness" "diversenesses" ; -- compound ss_N ;
-lin perverseness_N = mkN "perverseness" "perversenesses" ; -- compound ss_N ;
-lin diffuseness_N = mkN "diffuseness" "diffusenesses" ; -- compound ss_N ;
-lin profuseness_N = mkN "profuseness" "profusenesses" ; -- compound ss_N ;
-lin abstruseness_N = mkN "abstruseness" "abstrusenesses" ; -- compound ss_N ;
-lin obtuseness_N = mkN "obtuseness" "obtusenesses" ; -- compound ss_N ;
-lin sedateness_N = mkN "sedateness" "sedatenesses" ; -- compound ss_N ;
-lin appropriateness_N = mkN "appropriateness" "appropriatenesses" ; -- compound ss_N ;
-lin inappropriateness_N = mkN "inappropriateness" "inappropriatenesses" ; -- compound ss_N ;
-lin lateness_N = mkN "lateness" "latenesses" ; -- compound ss_N ;
-lin oblateness_N = mkN "oblateness" "oblatenesses" ; -- compound ss_N ;
-lin animateness_N = mkN "animateness" "animatenesses" ; -- compound ss_N ;
-lin inanimateness_N = mkN "inanimateness" "inanimatenesses" ; -- compound ss_N ;
-lin subordinateness_N = mkN "subordinateness" "subordinatenesses" ; -- compound ss_N ;
-lin determinateness_N = mkN "determinateness" "determinatenesses" ; -- compound ss_N ;
-lin innateness_N = mkN "innateness" "innatenesses" ; -- compound ss_N ;
-lin dispassionateness_N = mkN "dispassionateness" "dispassionatenesses" ; -- compound ss_N ;
-lin affectionateness_N = mkN "affectionateness" "affectionatenesses" ; -- compound ss_N ;
-lin ornateness_N = mkN "ornateness" "ornatenesses" ; -- compound ss_N ;
-lin separateness_N = mkN "separateness" "separatenesses" ; -- compound ss_N ;
-lin disparateness_N = mkN "disparateness" "disparatenesses" ; -- compound ss_N ;
-lin considerateness_N = mkN "considerateness" "consideratenesses" ; -- compound ss_N ;
-lin temperateness_N = mkN "temperateness" "temperatenesses" ; -- compound ss_N ;
-lin elaborateness_N = mkN "elaborateness" "elaboratenesses" ; -- compound ss_N ;
-lin commensurateness_N = mkN "commensurateness" "commensuratenesses" ; -- compound ss_N ;
-lin effeteness_N = mkN "effeteness" "effetenesses" ; -- compound ss_N ;
-lin obsoleteness_N = mkN "obsoleteness" "obsoletenesses" ; -- compound ss_N ;
-lin completeness_N = mkN "completeness" "completenesses" ; -- compound ss_N ;
-lin incompleteness_N = mkN "incompleteness" "incompletenesses" ; -- compound ss_N ;
-lin concreteness_N = mkN "concreteness" "concretenesses" ; -- compound ss_N ;
-lin discreteness_N = mkN "discreteness" "discretenesses" ; -- compound ss_N ;
-lin reconditeness_N = mkN "reconditeness" "reconditenesses" ; -- compound ss_N ;
-lin eruditeness_N = mkN "eruditeness" "eruditenesses" ; -- compound ss_N ;
-lin whiteness_N = mkN "whiteness" "whitenesses" ; -- compound ss_N ;
-lin politeness_N = mkN "politeness" "politenesses" ; -- compound ss_N ;
-lin impoliteness_N = mkN "impoliteness" "impolitenesses" ; -- compound ss_N ;
-lin finiteness_N = mkN "finiteness" "finitenesses" ; -- compound ss_N ;
-lin indefiniteness_N = mkN "indefiniteness" "indefinitenesses" ; -- compound ss_N ;
-lin infiniteness_N = mkN "infiniteness" "infinitenesses" ; -- compound ss_N ;
-lin triteness_N = mkN "triteness" "tritenesses" ; -- compound ss_N ;
-lin requisiteness_N = mkN "requisiteness" "requisitenesses" ; -- compound ss_N ;
-lin exquisiteness_N = mkN "exquisiteness" "exquisitenesses" ; -- compound ss_N ;
-lin compositeness_N = mkN "compositeness" "compositenesses" ; -- compound ss_N ;
-lin remoteness_N = mkN "remoteness" "remotenesses" ; -- compound ss_N ;
-lin chasteness_N = mkN "chasteness" "chastenesses" ; -- compound ss_N ;
-lin cuteness_N = mkN "cuteness" "cutenesses" ; -- compound ss_N ;
-lin acuteness_N = mkN "acuteness" "acutenesses" ; -- compound ss_N ;
-lin absoluteness_N = mkN "absoluteness" "absolutenesses" ; -- compound ss_N ;
-lin resoluteness_N = mkN "resoluteness" "resolutenesses" ; -- compound ss_N ;
-lin irresoluteness_N = mkN "irresoluteness" "irresolutenesses" ; -- compound ss_N ;
-lin dissoluteness_N = mkN "dissoluteness" "dissolutenesses" ; -- compound ss_N ;
-lin muteness_N = mkN "muteness" "mutenesses" ; -- compound ss_N ;
-lin minuteness_N = mkN "minuteness" "minutenesses" ; -- compound ss_N ;
-lin hirsuteness_N = mkN "hirsuteness" "hirsutenesses" ; -- compound ss_N ;
-lin astuteness_N = mkN "astuteness" "astutenesses" ; -- compound ss_N ;
-lin vagueness_N = mkN "vagueness" "vaguenesses" ; -- compound ss_N ;
-lin opaqueness_N = mkN "opaqueness" "opaquenesses" ; -- compound ss_N ;
-lin obliqueness_N = mkN "obliqueness" "obliquenesses" ; -- compound ss_N ;
-lin uniqueness_N = mkN "uniqueness" "uniquenesses" ; -- compound ss_N ;
-lin picturesqueness_N = mkN "picturesqueness" "picturesquenesses" ; -- compound ss_N ;
-lin grotesqueness_N = mkN "grotesqueness" "grotesquenesses" ; -- compound ss_N ;
-lin brusqueness_N = mkN "brusqueness" "brusquenesses" ; -- compound ss_N ;
-lin trueness_N = mkN "trueness" "truenesses" ; -- compound ss_N ;
-lin graveness_N = mkN "graveness" "gravenesses" ; -- compound ss_N ;
-lin forgiveness_N = mkN "forgiveness" "forgivenesses" ; -- compound ss_N ;
-lin abrasiveness_N = mkN "abrasiveness" "abrasivenesses" ; -- compound ss_N ;
-lin persuasiveness_N = mkN "persuasiveness" "persuasivenesses" ; -- compound ss_N ;
-lin unpersuasiveness_N = mkN "unpersuasiveness" "unpersuasivenesses" ; -- compound ss_N ;
-lin evasiveness_N = mkN "evasiveness" "evasivenesses" ; -- compound ss_N ;
-lin pervasiveness_N = mkN "pervasiveness" "pervasivenesses" ; -- compound ss_N ;
-lin adhesiveness_N = mkN "adhesiveness" "adhesivenesses" ; -- compound ss_N ;
-lin cohesiveness_N = mkN "cohesiveness" "cohesivenesses" ; -- compound ss_N ;
-lin decisiveness_N = mkN "decisiveness" "decisivenesses" ; -- compound ss_N ;
-lin indecisiveness_N = mkN "indecisiveness" "indecisivenesses" ; -- compound ss_N ;
-lin incisiveness_N = mkN "incisiveness" "incisivenesses" ; -- compound ss_N ;
-lin impulsiveness_N = mkN "impulsiveness" "impulsivenesses" ; -- compound ss_N ;
-lin compulsiveness_N = mkN "compulsiveness" "compulsivenesses" ; -- compound ss_N ;
-lin expansiveness_N = mkN "expansiveness" "expansivenesses" ; -- compound ss_N ;
-lin defensiveness_N = mkN "defensiveness" "defensivenesses" ; -- compound ss_N ;
-lin offensiveness_N = mkN "offensiveness" "offensivenesses" ; -- compound ss_N ;
-lin comprehensiveness_N = mkN "comprehensiveness" "comprehensivenesses" ; -- compound ss_N ;
-lin pensiveness_N = mkN "pensiveness" "pensivenesses" ; -- compound ss_N ;
-lin expensiveness_N = mkN "expensiveness" "expensivenesses" ; -- compound ss_N ;
-lin inexpensiveness_N = mkN "inexpensiveness" "inexpensivenesses" ; -- compound ss_N ;
-lin responsiveness_N = mkN "responsiveness" "responsivenesses" ; -- compound ss_N ;
-lin unresponsiveness_N = mkN "unresponsiveness" "unresponsivenesses" ; -- compound ss_N ;
-lin discursiveness_N = mkN "discursiveness" "discursivenesses" ; -- compound ss_N ;
-lin massiveness_N = mkN "massiveness" "massivenesses" ; -- compound ss_N ;
-lin passiveness_N = mkN "passiveness" "passivenesses" ; -- compound ss_N ;
-lin impassiveness_N = mkN "impassiveness" "impassivenesses" ; -- compound ss_N ;
-lin aggressiveness_N = mkN "aggressiveness" "aggressivenesses" ; -- compound ss_N ;
-lin progressiveness_N = mkN "progressiveness" "progressivenesses" ; -- compound ss_N ;
-lin impressiveness_N = mkN "impressiveness" "impressivenesses" ; -- compound ss_N ;
-lin expressiveness_N = mkN "expressiveness" "expressivenesses" ; -- compound ss_N ;
-lin obsessiveness_N = mkN "obsessiveness" "obsessivenesses" ; -- compound ss_N ;
-lin possessiveness_N = mkN "possessiveness" "possessivenesses" ; -- compound ss_N ;
-lin submissiveness_N = mkN "submissiveness" "submissivenesses" ; -- compound ss_N ;
-lin permissiveness_N = mkN "permissiveness" "permissivenesses" ; -- compound ss_N ;
-lin unpermissiveness_N = mkN "unpermissiveness" "unpermissivenesses" ; -- compound ss_N ;
-lin effusiveness_N = mkN "effusiveness" "effusivenesses" ; -- compound ss_N ;
-lin reclusiveness_N = mkN "reclusiveness" "reclusivenesses" ; -- compound ss_N ;
-lin inconclusiveness_N = mkN "inconclusiveness" "inconclusivenesses" ; -- compound ss_N ;
-lin elusiveness_N = mkN "elusiveness" "elusivenesses" ; -- compound ss_N ;
-lin allusiveness_N = mkN "allusiveness" "allusivenesses" ; -- compound ss_N ;
-lin obtrusiveness_N = mkN "obtrusiveness" "obtrusivenesses" ; -- compound ss_N ;
-lin unobtrusiveness_N = mkN "unobtrusiveness" "unobtrusivenesses" ; -- compound ss_N ;
-lin intrusiveness_N = mkN "intrusiveness" "intrusivenesses" ; -- compound ss_N ;
-lin combativeness_N = mkN "combativeness" "combativenesses" ; -- compound ss_N ;
-lin communicativeness_N = mkN "communicativeness" "communicativenesses" ; -- compound ss_N ;
-lin uncommunicativeness_N = mkN "uncommunicativeness" "uncommunicativenesses" ; -- compound ss_N ;
-lin creativeness_N = mkN "creativeness" "creativenesses" ; -- compound ss_N ;
-lin uncreativeness_N = mkN "uncreativeness" "uncreativenesses" ; -- compound ss_N ;
-lin speculativeness_N = mkN "speculativeness" "speculativenesses" ; -- compound ss_N ;
-lin affirmativeness_N = mkN "affirmativeness" "affirmativenesses" ; -- compound ss_N ;
-lin nativeness_N = mkN "nativeness" "nativenesses" ; -- compound ss_N ;
-lin imperativeness_N = mkN "imperativeness" "imperativenesses" ; -- compound ss_N ;
-lin decorativeness_N = mkN "decorativeness" "decorativenesses" ; -- compound ss_N ;
-lin demonstrativeness_N = mkN "demonstrativeness" "demonstrativenesses" ; -- compound ss_N ;
-lin innovativeness_N = mkN "innovativeness" "innovativenesses" ; -- compound ss_N ;
-lin activeness_N = mkN "activeness" "activenesses" ; -- compound ss_N ;
-lin inactiveness_N = mkN "inactiveness" "inactivenesses" ; -- compound ss_N ;
-lin attractiveness_N = mkN "attractiveness" "attractivenesses" ; -- compound ss_N ;
-lin unattractiveness_N = mkN "unattractiveness" "unattractivenesses" ; -- compound ss_N ;
-lin defectiveness_N = mkN "defectiveness" "defectivenesses" ; -- compound ss_N ;
-lin effectiveness_N = mkN "effectiveness" "effectivenesses" ; -- compound ss_N ;
-lin ineffectiveness_N = mkN "ineffectiveness" "ineffectivenesses" ; -- compound ss_N ;
-lin reflectiveness_N = mkN "reflectiveness" "reflectivenesses" ; -- compound ss_N ;
-lin introspectiveness_N = mkN "introspectiveness" "introspectivenesses" ; -- compound ss_N ;
-lin protectiveness_N = mkN "protectiveness" "protectivenesses" ; -- compound ss_N ;
-lin vindictiveness_N = mkN "vindictiveness" "vindictivenesses" ; -- compound ss_N ;
-lin restrictiveness_N = mkN "restrictiveness" "restrictivenesses" ; -- compound ss_N ;
-lin distinctiveness_N = mkN "distinctiveness" "distinctivenesses" ; -- compound ss_N ;
-lin productiveness_N = mkN "productiveness" "productivenesses" ; -- compound ss_N ;
-lin unproductiveness_N = mkN "unproductiveness" "unproductivenesses" ; -- compound ss_N ;
-lin destructiveness_N = mkN "destructiveness" "destructivenesses" ; -- compound ss_N ;
-lin constructiveness_N = mkN "constructiveness" "constructivenesses" ; -- compound ss_N ;
-lin secretiveness_N = mkN "secretiveness" "secretivenesses" ; -- compound ss_N ;
-lin primitiveness_N = mkN "primitiveness" "primitivenesses" ; -- compound ss_N ;
-lin acquisitiveness_N = mkN "acquisitiveness" "acquisitivenesses" ; -- compound ss_N ;
-lin inquisitiveness_N = mkN "inquisitiveness" "inquisitivenesses" ; -- compound ss_N ;
-lin oversensitiveness_N = mkN "oversensitiveness" "oversensitivenesses" ; -- compound ss_N ;
-lin positiveness_N = mkN "positiveness" "positivenesses" ; -- compound ss_N ;
-lin repetitiveness_N = mkN "repetitiveness" "repetitivenesses" ; -- compound ss_N ;
-lin competitiveness_N = mkN "competitiveness" "competitivenesses" ; -- compound ss_N ;
-lin retentiveness_N = mkN "retentiveness" "retentivenesses" ; -- compound ss_N ;
-lin attentiveness_N = mkN "attentiveness" "attentivenesses" ; -- compound ss_N ;
-lin inattentiveness_N = mkN "inattentiveness" "inattentivenesses" ; -- compound ss_N ;
-lin inventiveness_N = mkN "inventiveness" "inventivenesses" ; -- compound ss_N ;
-lin plaintiveness_N = mkN "plaintiveness" "plaintivenesses" ; -- compound ss_N ;
-lin deceptiveness_N = mkN "deceptiveness" "deceptivenesses" ; -- compound ss_N ;
-lin receptiveness_N = mkN "receptiveness" "receptivenesses" ; -- compound ss_N ;
-lin perceptiveness_N = mkN "perceptiveness" "perceptivenesses" ; -- compound ss_N ;
-lin unperceptiveness_N = mkN "unperceptiveness" "unperceptivenesses" ; -- compound ss_N ;
-lin assertiveness_N = mkN "assertiveness" "assertivenesses" ; -- compound ss_N ;
-lin unassertiveness_N = mkN "unassertiveness" "unassertivenesses" ; -- compound ss_N ;
-lin sportiveness_N = mkN "sportiveness" "sportivenesses" ; -- compound ss_N ;
-lin furtiveness_N = mkN "furtiveness" "furtivenesses" ; -- compound ss_N ;
-lin restiveness_N = mkN "restiveness" "restivenesses" ; -- compound ss_N ;
-lin diminutiveness_N = mkN "diminutiveness" "diminutivenesses" ; -- compound ss_N ;
-lin deafness_N = mkN "deafness" "deafnesses" ; -- compound ss_N ;
-lin briefness_N = mkN "briefness" "briefnesses" ; -- compound ss_N ;
-lin stiffness_N = mkN "stiffness" "stiffnesses" ; -- compound ss_N ;
-lin bluffness_N = mkN "bluffness" "bluffnesses" ; -- compound ss_N ;
-lin gruffness_N = mkN "gruffness" "gruffnesses" ; -- compound ss_N ;
-lin aloofness_N = mkN "aloofness" "aloofnesses" ; -- compound ss_N ;
-lin convincingness_N = mkN "convincingness" "convincingnesses" ; -- compound ss_N ;
-lin nothingness_N = mkN "nothingness" "nothingnesses" ; -- compound ss_N ;
-lin unfeelingness_N = mkN "unfeelingness" "unfeelingnesses" ; -- compound ss_N ;
-lin willingness_N = mkN "willingness" "willingnesses" ; -- compound ss_N ;
-lin unwillingness_N = mkN "unwillingness" "unwillingnesses" ; -- compound ss_N ;
-lin becomingness_N = mkN "becomingness" "becomingnesses" ; -- compound ss_N ;
-lin unbecomingness_N = mkN "unbecomingness" "unbecomingnesses" ; -- compound ss_N ;
-lin easygoingness_N = mkN "easygoingness" "easygoingnesses" ; -- compound ss_N ;
-lin boringness_N = mkN "boringness" "boringnesses" ; -- compound ss_N ;
-lin pleasingness_N = mkN "pleasingness" "pleasingnesses" ; -- compound ss_N ;
-lin unpleasingness_N = mkN "unpleasingness" "unpleasingnesses" ; -- compound ss_N ;
-lin lastingness_N = mkN "lastingness" "lastingnesses" ; -- compound ss_N ;
-lin everlastingness_N = mkN "everlastingness" "everlastingnesses" ; -- compound ss_N ;
-lin uninterestingness_N = mkN "uninterestingness" "uninterestingnesses" ; -- compound ss_N ;
-lin disgustingness_N = mkN "disgustingness" "disgustingnesses" ; -- compound ss_N ;
-lin forgivingness_N = mkN "forgivingness" "forgivingnesses" ; -- compound ss_N ;
-lin lovingness_N = mkN "lovingness" "lovingnesses" ; -- compound ss_N ;
-lin deservingness_N = mkN "deservingness" "deservingnesses" ; -- compound ss_N ;
-lin knowingness_N = mkN "knowingness" "knowingnesses" ; -- compound ss_N ;
-lin unknowingness_N = mkN "unknowingness" "unknowingnesses" ; -- compound ss_N ;
-lin appetizingness_N = mkN "appetizingness" "appetizingnesses" ; -- compound ss_N ;
-lin unappetizingness_N = mkN "unappetizingness" "unappetizingnesses" ; -- compound ss_N ;
-lin longness_N = mkN "longness" "longnesses" ; -- compound ss_N ;
-lin wrongness_N = mkN "wrongness" "wrongnesses" ; -- compound ss_N ;
-lin youngness_N = mkN "youngness" "youngnesses" ; -- compound ss_N ;
-lin smugness_N = mkN "smugness" "smugnesses" ; -- compound ss_N ;
-lin snugness_N = mkN "snugness" "snugnesses" ; -- compound ss_N ;
-lin richness_N = mkN "richness" "richnesses" ; -- compound ss_N ;
-lin staunchness_N = mkN "staunchness" "staunchnesses" ; -- compound ss_N ;
-lin muchness_N = mkN "muchness" "muchnesses" ; -- compound ss_N ;
-lin highness_N = mkN "highness" "highnesses" ; -- compound ss_N ;
-lin roughness_N = mkN "roughness" "roughnesses" ; -- compound ss_N ;
-lin thoroughness_N = mkN "thoroughness" "thoroughnesses" ; -- compound ss_N ;
-lin toughness_N = mkN "toughness" "toughnesses" ; -- compound ss_N ;
-lin rashness_N = mkN "rashness" "rashnesses" ; -- compound ss_N ;
-lin brashness_N = mkN "brashness" "brashnesses" ; -- compound ss_N ;
-lin freshness_N = mkN "freshness" "freshnesses" ; -- compound ss_N ;
-lin snobbishness_N = mkN "snobbishness" "snobbishnesses" ; -- compound ss_N ;
-lin childishness_N = mkN "childishness" "childishnesses" ; -- compound ss_N ;
-lin outlandishness_N = mkN "outlandishness" "outlandishnesses" ; -- compound ss_N ;
-lin standoffishness_N = mkN "standoffishness" "standoffishnesses" ; -- compound ss_N ;
-lin selfishness_N = mkN "selfishness" "selfishnesses" ; -- compound ss_N ;
-lin unselfishness_N = mkN "unselfishness" "unselfishnesses" ; -- compound ss_N ;
-lin dwarfishness_N = mkN "dwarfishness" "dwarfishnesses" ; -- compound ss_N ;
-lin waggishness_N = mkN "waggishness" "waggishnesses" ; -- compound ss_N ;
-lin piggishness_N = mkN "piggishness" "piggishnesses" ; -- compound ss_N ;
-lin priggishness_N = mkN "priggishness" "priggishnesses" ; -- compound ss_N ;
-lin sluggishness_N = mkN "sluggishness" "sluggishnesses" ; -- compound ss_N ;
-lin freakishness_N = mkN "freakishness" "freakishnesses" ; -- compound ss_N ;
-lin rakishness_N = mkN "rakishness" "rakishnesses" ; -- compound ss_N ;
-lin brackishness_N = mkN "brackishness" "brackishnesses" ; -- compound ss_N ;
-lin prankishness_N = mkN "prankishness" "prankishnesses" ; -- compound ss_N ;
-lin bookishness_N = mkN "bookishness" "bookishnesses" ; -- compound ss_N ;
-lin hawkishness_N = mkN "hawkishness" "hawkishnesses" ; -- compound ss_N ;
-lin mawkishness_N = mkN "mawkishness" "mawkishnesses" ; -- compound ss_N ;
-lin foolishness_N = mkN "foolishness" "foolishnesses" ; -- compound ss_N ;
-lin girlishness_N = mkN "girlishness" "girlishnesses" ; -- compound ss_N ;
-lin mulishness_N = mkN "mulishness" "mulishnesses" ; -- compound ss_N ;
-lin stylishness_N = mkN "stylishness" "stylishnesses" ; -- compound ss_N ;
-lin squeamishness_N = mkN "squeamishness" "squeamishnesses" ; -- compound ss_N ;
-lin greenishness_N = mkN "greenishness" "greenishnesses" ; -- compound ss_N ;
-lin clannishness_N = mkN "clannishness" "clannishnesses" ; -- compound ss_N ;
-lin sheepishness_N = mkN "sheepishness" "sheepishnesses" ; -- compound ss_N ;
-lin impishness_N = mkN "impishness" "impishnesses" ; -- compound ss_N ;
-lin snappishness_N = mkN "snappishness" "snappishnesses" ; -- compound ss_N ;
-lin foppishness_N = mkN "foppishness" "foppishnesses" ; -- compound ss_N ;
-lin uppishness_N = mkN "uppishness" "uppishnesses" ; -- compound ss_N ;
-lin garishness_N = mkN "garishness" "garishnesses" ; -- compound ss_N ;
-lin boorishness_N = mkN "boorishness" "boorishnesses" ; -- compound ss_N ;
-lin amateurishness_N = mkN "amateurishness" "amateurishnesses" ; -- compound ss_N ;
-lin pettishness_N = mkN "pettishness" "pettishnesses" ; -- compound ss_N ;
-lin skittishness_N = mkN "skittishness" "skittishnesses" ; -- compound ss_N ;
-lin sottishness_N = mkN "sottishness" "sottishnesses" ; -- compound ss_N ;
-lin roguishness_N = mkN "roguishness" "roguishnesses" ; -- compound ss_N ;
-lin lavishness_N = mkN "lavishness" "lavishnesses" ; -- compound ss_N ;
-lin peevishness_N = mkN "peevishness" "peevishnesses" ; -- compound ss_N ;
-lin thievishness_N = mkN "thievishness" "thievishnesses" ; -- compound ss_N ;
-lin dovishness_N = mkN "dovishness" "dovishnesses" ; -- compound ss_N ;
-lin shrewishness_N = mkN "shrewishness" "shrewishnesses" ; -- compound ss_N ;
-lin boyishness_N = mkN "boyishness" "boyishnesses" ; -- compound ss_N ;
-lin harshness_N = mkN "harshness" "harshnesses" ; -- compound ss_N ;
-lin smoothness_N = mkN "smoothness" "smoothnesses" ; -- compound ss_N ;
-lin uncouthness_N = mkN "uncouthness" "uncouthnesses" ; -- compound ss_N ;
-lin shabbiness_N = mkN "shabbiness" "shabbinesses" ; -- compound ss_N ;
-lin flabbiness_N = mkN "flabbiness" "flabbinesses" ; -- compound ss_N ;
-lin crabbiness_N = mkN "crabbiness" "crabbinesses" ; -- compound ss_N ;
-lin chubbiness_N = mkN "chubbiness" "chubbinesses" ; -- compound ss_N ;
-lin grubbiness_N = mkN "grubbiness" "grubbinesses" ; -- compound ss_N ;
-lin raciness_N = mkN "raciness" "racinesses" ; -- compound ss_N ;
-lin spiciness_N = mkN "spiciness" "spicinesses" ; -- compound ss_N ;
-lin juiciness_N = mkN "juiciness" "juicinesses" ; -- compound ss_N ;
-lin sauciness_N = mkN "sauciness" "saucinesses" ; -- compound ss_N ;
-lin readiness_N = mkN "readiness" "readinesses" ; -- compound ss_N ;
-lin steadiness_N = mkN "steadiness" "steadinesses" ; -- compound ss_N ;
-lin unsteadiness_N = mkN "unsteadiness" "unsteadinesses" ; -- compound ss_N ;
-lin shadiness_N = mkN "shadiness" "shadinesses" ; -- compound ss_N ;
-lin giddiness_N = mkN "giddiness" "giddinesses" ; -- compound ss_N ;
-lin shoddiness_N = mkN "shoddiness" "shoddinesses" ; -- compound ss_N ;
-lin ruddiness_N = mkN "ruddiness" "ruddinesses" ; -- compound ss_N ;
-lin neediness_N = mkN "neediness" "needinesses" ; -- compound ss_N ;
-lin greediness_N = mkN "greediness" "greedinesses" ; -- compound ss_N ;
-lin seediness_N = mkN "seediness" "seedinesses" ; -- compound ss_N ;
-lin tweediness_N = mkN "tweediness" "tweedinesses" ; -- compound ss_N ;
-lin tidiness_N = mkN "tidiness" "tidinesses" ; -- compound ss_N ;
-lin untidiness_N = mkN "untidiness" "untidinesses" ; -- compound ss_N ;
-lin unwieldiness_N = mkN "unwieldiness" "unwieldinesses" ; -- compound ss_N ;
-lin handiness_N = mkN "handiness" "handinesses" ; -- compound ss_N ;
-lin sandiness_N = mkN "sandiness" "sandinesses" ; -- compound ss_N ;
-lin windiness_N = mkN "windiness" "windinesses" ; -- compound ss_N ;
-lin bloodiness_N = mkN "bloodiness" "bloodinesses" ; -- compound ss_N ;
-lin moodiness_N = mkN "moodiness" "moodinesses" ; -- compound ss_N ;
-lin woodiness_N = mkN "woodiness" "woodinesses" ; -- compound ss_N ;
-lin hardiness_N = mkN "hardiness" "hardinesses" ; -- compound ss_N ;
-lin foolhardiness_N = mkN "foolhardiness" "foolhardinesses" ; -- compound ss_N ;
-lin tardiness_N = mkN "tardiness" "tardinesses" ; -- compound ss_N ;
-lin wordiness_N = mkN "wordiness" "wordinesses" ; -- compound ss_N ;
-lin sturdiness_N = mkN "sturdiness" "sturdinesses" ; -- compound ss_N ;
-lin cloudiness_N = mkN "cloudiness" "cloudinesses" ; -- compound ss_N ;
-lin dowdiness_N = mkN "dowdiness" "dowdinesses" ; -- compound ss_N ;
-lin rowdiness_N = mkN "rowdiness" "rowdinesses" ; -- compound ss_N ;
-lin huffiness_N = mkN "huffiness" "huffinesses" ; -- compound ss_N ;
-lin puffiness_N = mkN "puffiness" "puffinesses" ; -- compound ss_N ;
-lin stuffiness_N = mkN "stuffiness" "stuffinesses" ; -- compound ss_N ;
-lin staginess_N = mkN "staginess" "staginesses" ; -- compound ss_N ;
-lin edginess_N = mkN "edginess" "edginesses" ; -- compound ss_N ;
-lin stodginess_N = mkN "stodginess" "stodginesses" ; -- compound ss_N ;
-lin shagginess_N = mkN "shagginess" "shagginesses" ; -- compound ss_N ;
-lin grogginess_N = mkN "grogginess" "grogginesses" ; -- compound ss_N ;
-lin sogginess_N = mkN "sogginess" "sogginesses" ; -- compound ss_N ;
-lin bugginess_N = mkN "bugginess" "bugginesses" ; -- compound ss_N ;
-lin mugginess_N = mkN "mugginess" "mugginesses" ; -- compound ss_N ;
-lin slanginess_N = mkN "slanginess" "slanginesses" ; -- compound ss_N ;
-lin dinginess_N = mkN "dinginess" "dinginesses" ; -- compound ss_N ;
-lin stinginess_N = mkN "stinginess" "stinginesses" ; -- compound ss_N ;
-lin sponginess_N = mkN "sponginess" "sponginesses" ; -- compound ss_N ;
-lin loginess_N = mkN "loginess" "loginesses" ; -- compound ss_N ;
-lin paunchiness_N = mkN "paunchiness" "paunchinesses" ; -- compound ss_N ;
-lin patchiness_N = mkN "patchiness" "patchinesses" ; -- compound ss_N ;
-lin sketchiness_N = mkN "sketchiness" "sketchinesses" ; -- compound ss_N ;
-lin tetchiness_N = mkN "tetchiness" "tetchinesses" ; -- compound ss_N ;
-lin touchiness_N = mkN "touchiness" "touchinesses" ; -- compound ss_N ;
-lin flashiness_N = mkN "flashiness" "flashinesses" ; -- compound ss_N ;
-lin fleshiness_N = mkN "fleshiness" "fleshinesses" ; -- compound ss_N ;
-lin mushiness_N = mkN "mushiness" "mushinesses" ; -- compound ss_N ;
-lin lengthiness_N = mkN "lengthiness" "lengthinesses" ; -- compound ss_N ;
-lin filthiness_N = mkN "filthiness" "filthinesses" ; -- compound ss_N ;
-lin frothiness_N = mkN "frothiness" "frothinesses" ; -- compound ss_N ;
-lin worthiness_N = mkN "worthiness" "worthinesses" ; -- compound ss_N ;
-lin 'credit-worthiness_N' = mkN "credit-worthiness" "credit-worthinesses" ; -- compound ss_N ;
-lin seaworthiness_N = mkN "seaworthiness" "seaworthinesses" ; -- compound ss_N ;
-lin roadworthiness_N = mkN "roadworthiness" "roadworthinesses" ; -- compound ss_N ;
-lin blameworthiness_N = mkN "blameworthiness" "blameworthinesses" ; -- compound ss_N ;
-lin praiseworthiness_N = mkN "praiseworthiness" "praiseworthinesses" ; -- compound ss_N ;
-lin unworthiness_N = mkN "unworthiness" "unworthinesses" ; -- compound ss_N ;
-lin airworthiness_N = mkN "airworthiness" "airworthinesses" ; -- compound ss_N ;
-lin praisworthiness_N = mkN "praisworthiness" "praisworthinesses" ; -- compound ss_N ;
-lin newsworthiness_N = mkN "newsworthiness" "newsworthinesses" ; -- compound ss_N ;
-lin creditworthiness_N = mkN "creditworthiness" "creditworthinesses" ; -- compound ss_N ;
-lin trustworthiness_N = mkN "trustworthiness" "trustworthinesses" ; -- compound ss_N ;
-lin untrustworthiness_N = mkN "untrustworthiness" "untrustworthinesses" ; -- compound ss_N ;
-lin leakiness_N = mkN "leakiness" "leakinesses" ; -- compound ss_N ;
-lin shakiness_N = mkN "shakiness" "shakinesses" ; -- compound ss_N ;
-lin flakiness_N = mkN "flakiness" "flakinesses" ; -- compound ss_N ;
-lin trickiness_N = mkN "trickiness" "trickinesses" ; -- compound ss_N ;
-lin stickiness_N = mkN "stickiness" "stickinesses" ; -- compound ss_N ;
-lin rockiness_N = mkN "rockiness" "rockinesses" ; -- compound ss_N ;
-lin balkiness_N = mkN "balkiness" "balkinesses" ; -- compound ss_N ;
-lin silkiness_N = mkN "silkiness" "silkinesses" ; -- compound ss_N ;
-lin bulkiness_N = mkN "bulkiness" "bulkinesses" ; -- compound ss_N ;
-lin sulkiness_N = mkN "sulkiness" "sulkinesses" ; -- compound ss_N ;
-lin lankiness_N = mkN "lankiness" "lankinesses" ; -- compound ss_N ;
-lin crankiness_N = mkN "crankiness" "crankinesses" ; -- compound ss_N ;
-lin jerkiness_N = mkN "jerkiness" "jerkinesses" ; -- compound ss_N ;
-lin perkiness_N = mkN "perkiness" "perkinesses" ; -- compound ss_N ;
-lin riskiness_N = mkN "riskiness" "riskinesses" ; -- compound ss_N ;
-lin friskiness_N = mkN "friskiness" "friskinesses" ; -- compound ss_N ;
-lin huskiness_N = mkN "huskiness" "huskinesses" ; -- compound ss_N ;
-lin muskiness_N = mkN "muskiness" "muskinesses" ; -- compound ss_N ;
-lin gawkiness_N = mkN "gawkiness" "gawkinesses" ; -- compound ss_N ;
-lin scaliness_N = mkN "scaliness" "scalinesses" ; -- compound ss_N ;
-lin bubbliness_N = mkN "bubbliness" "bubblinesses" ; -- compound ss_N ;
-lin crumbliness_N = mkN "crumbliness" "crumblinesses" ; -- compound ss_N ;
-lin deadliness_N = mkN "deadliness" "deadlinesses" ; -- compound ss_N ;
-lin worldliness_N = mkN "worldliness" "worldlinesses" ; -- compound ss_N ;
-lin friendliness_N = mkN "friendliness" "friendlinesses" ; -- compound ss_N ;
-lin unfriendliness_N = mkN "unfriendliness" "unfriendlinesses" ; -- compound ss_N ;
-lin kindliness_N = mkN "kindliness" "kindlinesses" ; -- compound ss_N ;
-lin godliness_N = mkN "godliness" "godlinesses" ; -- compound ss_N ;
-lin ungodliness_N = mkN "ungodliness" "ungodlinesses" ; -- compound ss_N ;
-lin niggardliness_N = mkN "niggardliness" "niggardlinesses" ; -- compound ss_N ;
-lin dastardliness_N = mkN "dastardliness" "dastardlinesses" ; -- compound ss_N ;
-lin lordliness_N = mkN "lordliness" "lordlinesses" ; -- compound ss_N ;
-lin timeliness_N = mkN "timeliness" "timelinesses" ; -- compound ss_N ;
-lin comeliness_N = mkN "comeliness" "comelinesses" ; -- compound ss_N ;
-lin homeliness_N = mkN "homeliness" "homelinesses" ; -- compound ss_N ;
-lin loneliness_N = mkN "loneliness" "lonelinesses" ; -- compound ss_N ;
-lin leisureliness_N = mkN "leisureliness" "leisurelinesses" ; -- compound ss_N ;
-lin stateliness_N = mkN "stateliness" "statelinesses" ; -- compound ss_N ;
-lin liveliness_N = mkN "liveliness" "livelinesses" ; -- compound ss_N ;
-lin loveliness_N = mkN "loveliness" "lovelinesses" ; -- compound ss_N ;
-lin wiggliness_N = mkN "wiggliness" "wigglinesses" ; -- compound ss_N ;
-lin ugliness_N = mkN "ugliness" "uglinesses" ; -- compound ss_N ;
-lin oiliness_N = mkN "oiliness" "oilinesses" ; -- compound ss_N ;
-lin prickliness_N = mkN "prickliness" "pricklinesses" ; -- compound ss_N ;
-lin hilliness_N = mkN "hilliness" "hillinesses" ; -- compound ss_N ;
-lin chilliness_N = mkN "chilliness" "chillinesses" ; -- compound ss_N ;
-lin silliness_N = mkN "silliness" "sillinesses" ; -- compound ss_N ;
-lin seemliness_N = mkN "seemliness" "seemlinesses" ; -- compound ss_N ;
-lin unseemliness_N = mkN "unseemliness" "unseemlinesses" ; -- compound ss_N ;
-lin cleanliness_N = mkN "cleanliness" "cleanlinesses" ; -- compound ss_N ;
-lin uncleanliness_N = mkN "uncleanliness" "uncleanlinesses" ; -- compound ss_N ;
-lin manliness_N = mkN "manliness" "manlinesses" ; -- compound ss_N ;
-lin womanliness_N = mkN "womanliness" "womanlinesses" ; -- compound ss_N ;
-lin maidenliness_N = mkN "maidenliness" "maidenlinesses" ; -- compound ss_N ;
-lin slovenliness_N = mkN "slovenliness" "slovenlinesses" ; -- compound ss_N ;
-lin slatternliness_N = mkN "slatternliness" "slatternlinesses" ; -- compound ss_N ;
-lin holiness_N = mkN "holiness" "holinesses" ; -- compound ss_N ;
-lin unholiness_N = mkN "unholiness" "unholinesses" ; -- compound ss_N ;
-lin earliness_N = mkN "earliness" "earlinesses" ; -- compound ss_N ;
-lin orderliness_N = mkN "orderliness" "orderlinesses" ; -- compound ss_N ;
-lin disorderliness_N = mkN "disorderliness" "disorderlinesses" ; -- compound ss_N ;
-lin weatherliness_N = mkN "weatherliness" "weatherlinesses" ; -- compound ss_N ;
-lin fatherliness_N = mkN "fatherliness" "fatherlinesses" ; -- compound ss_N ;
-lin motherliness_N = mkN "motherliness" "motherlinesses" ; -- compound ss_N ;
-lin miserliness_N = mkN "miserliness" "miserlinesses" ; -- compound ss_N ;
-lin neighborliness_N = mkN "neighborliness" "neighborlinesses" ; -- compound ss_N ;
-lin unneighborliness_N = mkN "unneighborliness" "unneighborlinesses" ; -- compound ss_N ;
-lin curliness_N = mkN "curliness" "curlinesses" ; -- compound ss_N ;
-lin neighbourliness_N = mkN "neighbourliness" "neighbourlinesses" ; -- compound ss_N ;
-lin 'good-neighbourliness_N' = mkN "good-neighbourliness" "good-neighbourlinesses" ; -- compound ss_N ;
-lin surliness_N = mkN "surliness" "surlinesses" ; -- compound ss_N ;
-lin sprightliness_N = mkN "sprightliness" "sprightlinesses" ; -- compound ss_N ;
-lin unsightliness_N = mkN "unsightliness" "unsightlinesses" ; -- compound ss_N ;
-lin saintliness_N = mkN "saintliness" "saintlinesses" ; -- compound ss_N ;
-lin courtliness_N = mkN "courtliness" "courtlinesses" ; -- compound ss_N ;
-lin beastliness_N = mkN "beastliness" "beastlinesses" ; -- compound ss_N ;
-lin ghastliness_N = mkN "ghastliness" "ghastlinesses" ; -- compound ss_N ;
-lin costliness_N = mkN "costliness" "costlinesses" ; -- compound ss_N ;
-lin ghostliness_N = mkN "ghostliness" "ghostlinesses" ; -- compound ss_N ;
-lin unruliness_N = mkN "unruliness" "unrulinesses" ; -- compound ss_N ;
-lin lowliness_N = mkN "lowliness" "lowlinesses" ; -- compound ss_N ;
-lin creaminess_N = mkN "creaminess" "creaminesses" ; -- compound ss_N ;
-lin gaminess_N = mkN "gaminess" "gaminesses" ; -- compound ss_N ;
-lin foaminess_N = mkN "foaminess" "foaminesses" ; -- compound ss_N ;
-lin sliminess_N = mkN "sliminess" "sliminesses" ; -- compound ss_N ;
-lin griminess_N = mkN "griminess" "griminesses" ; -- compound ss_N ;
-lin balminess_N = mkN "balminess" "balminesses" ; -- compound ss_N ;
-lin chumminess_N = mkN "chumminess" "chumminesses" ; -- compound ss_N ;
-lin gloominess_N = mkN "gloominess" "gloominesses" ; -- compound ss_N ;
-lin storminess_N = mkN "storminess" "storminesses" ; -- compound ss_N ;
-lin shininess_N = mkN "shininess" "shininesses" ; -- compound ss_N ;
-lin brininess_N = mkN "brininess" "brininesses" ; -- compound ss_N ;
-lin skinniness_N = mkN "skinniness" "skinninesses" ; -- compound ss_N ;
-lin funniness_N = mkN "funniness" "funninesses" ; -- compound ss_N ;
-lin sunniness_N = mkN "sunniness" "sunninesses" ; -- compound ss_N ;
-lin horniness_N = mkN "horniness" "horninesses" ; -- compound ss_N ;
-lin puniness_N = mkN "puniness" "puninesses" ; -- compound ss_N ;
-lin scrawniness_N = mkN "scrawniness" "scrawninesses" ; -- compound ss_N ;
-lin tawniness_N = mkN "tawniness" "tawninesses" ; -- compound ss_N ;
-lin downiness_N = mkN "downiness" "downinesses" ; -- compound ss_N ;
-lin soapiness_N = mkN "soapiness" "soapinesses" ; -- compound ss_N ;
-lin sleepiness_N = mkN "sleepiness" "sleepinesses" ; -- compound ss_N ;
-lin creepiness_N = mkN "creepiness" "creepinesses" ; -- compound ss_N ;
-lin weepiness_N = mkN "weepiness" "weepinesses" ; -- compound ss_N ;
-lin bumpiness_N = mkN "bumpiness" "bumpinesses" ; -- compound ss_N ;
-lin dumpiness_N = mkN "dumpiness" "dumpinesses" ; -- compound ss_N ;
-lin jumpiness_N = mkN "jumpiness" "jumpinesses" ; -- compound ss_N ;
-lin grumpiness_N = mkN "grumpiness" "grumpinesses" ; -- compound ss_N ;
-lin happiness_N = mkN "happiness" "happinesses" ; -- compound ss_N ;
-lin unhappiness_N = mkN "unhappiness" "unhappinesses" ; -- compound ss_N ;
-lin scrappiness_N = mkN "scrappiness" "scrappinesses" ; -- compound ss_N ;
-lin drippiness_N = mkN "drippiness" "drippinesses" ; -- compound ss_N ;
-lin choppiness_N = mkN "choppiness" "choppinesses" ; -- compound ss_N ;
-lin sloppiness_N = mkN "sloppiness" "sloppinesses" ; -- compound ss_N ;
-lin chirpiness_N = mkN "chirpiness" "chirpinesses" ; -- compound ss_N ;
-lin dreariness_N = mkN "dreariness" "drearinesses" ; -- compound ss_N ;
-lin weariness_N = mkN "weariness" "wearinesses" ; -- compound ss_N ;
-lin vinegariness_N = mkN "vinegariness" "vinegarinesses" ; -- compound ss_N ;
-lin sugariness_N = mkN "sugariness" "sugarinesses" ; -- compound ss_N ;
-lin ordinariness_N = mkN "ordinariness" "ordinarinesses" ; -- compound ss_N ;
-lin extraordinariness_N = mkN "extraordinariness" "extraordinarinesses" ; -- compound ss_N ;
-lin stationariness_N = mkN "stationariness" "stationarinesses" ; -- compound ss_N ;
-lin hoariness_N = mkN "hoariness" "hoarinesses" ; -- compound ss_N ;
-lin temporariness_N = mkN "temporariness" "temporarinesses" ; -- compound ss_N ;
-lin contrariness_N = mkN "contrariness" "contrarinesses" ; -- compound ss_N ;
-lin sanitariness_N = mkN "sanitariness" "sanitarinesses" ; -- compound ss_N ;
-lin unsanitariness_N = mkN "unsanitariness" "unsanitarinesses" ; -- compound ss_N ;
-lin wariness_N = mkN "wariness" "warinesses" ; -- compound ss_N ;
-lin unwariness_N = mkN "unwariness" "unwarinesses" ; -- compound ss_N ;
-lin tawdriness_N = mkN "tawdriness" "tawdrinesses" ; -- compound ss_N ;
-lin eeriness_N = mkN "eeriness" "eerinesses" ; -- compound ss_N ;
-lin fieriness_N = mkN "fieriness" "fierinesses" ; -- compound ss_N ;
-lin slipperiness_N = mkN "slipperiness" "slipperinesses" ; -- compound ss_N ;
-lin wateriness_N = mkN "wateriness" "waterinesses" ; -- compound ss_N ;
-lin jitteriness_N = mkN "jitteriness" "jitterinesses" ; -- compound ss_N ;
-lin airiness_N = mkN "airiness" "airinesses" ; -- compound ss_N ;
-lin hairiness_N = mkN "hairiness" "hairinesses" ; -- compound ss_N ;
-lin wiriness_N = mkN "wiriness" "wirinesses" ; -- compound ss_N ;
-lin dilatoriness_N = mkN "dilatoriness" "dilatorinesses" ; -- compound ss_N ;
-lin satisfactoriness_N = mkN "satisfactoriness" "satisfactorinesses" ; -- compound ss_N ;
-lin unsatisfactoriness_N = mkN "unsatisfactoriness" "unsatisfactorinesses" ; -- compound ss_N ;
-lin refractoriness_N = mkN "refractoriness" "refractorinesses" ; -- compound ss_N ;
-lin contradictoriness_N = mkN "contradictoriness" "contradictorinesses" ; -- compound ss_N ;
-lin paltriness_N = mkN "paltriness" "paltrinesses" ; -- compound ss_N ;
-lin sultriness_N = mkN "sultriness" "sultrinesses" ; -- compound ss_N ;
-lin easiness_N = mkN "easiness" "easinesses" ; -- compound ss_N ;
-lin uneasiness_N = mkN "uneasiness" "uneasinesses" ; -- compound ss_N ;
-lin greasiness_N = mkN "greasiness" "greasinesses" ; -- compound ss_N ;
-lin queasiness_N = mkN "queasiness" "queasinesses" ; -- compound ss_N ;
-lin noisiness_N = mkN "noisiness" "noisinesses" ; -- compound ss_N ;
-lin flimsiness_N = mkN "flimsiness" "flimsinesses" ; -- compound ss_N ;
-lin clumsiness_N = mkN "clumsiness" "clumsinesses" ; -- compound ss_N ;
-lin cosiness_N = mkN "cosiness" "cosinesses" ; -- compound ss_N ;
-lin nosiness_N = mkN "nosiness" "nosinesses" ; -- compound ss_N ;
-lin prosiness_N = mkN "prosiness" "prosinesses" ; -- compound ss_N ;
-lin messiness_N = mkN "messiness" "messinesses" ; -- compound ss_N ;
-lin glossiness_N = mkN "glossiness" "glossinesses" ; -- compound ss_N ;
-lin fussiness_N = mkN "fussiness" "fussinesses" ; -- compound ss_N ;
-lin gutsiness_N = mkN "gutsiness" "gutsinesses" ; -- compound ss_N ;
-lin business_N = mkN "business" "businesses" ; -- compound ss_N ;
-lin 'show-business_N' = mkN "show-business" "show-businesses" ; -- compound ss_N ;
-lin agribusiness_N = mkN "agribusiness" "agribusinesses" ; -- compound ss_N ;
-lin drowsiness_N = mkN "drowsiness" "drowsinesses" ; -- compound ss_N ;
-lin craftiness_N = mkN "craftiness" "craftinesses" ; -- compound ss_N ;
-lin shiftiness_N = mkN "shiftiness" "shiftinesses" ; -- compound ss_N ;
-lin loftiness_N = mkN "loftiness" "loftinesses" ; -- compound ss_N ;
-lin weightiness_N = mkN "weightiness" "weightinesses" ; -- compound ss_N ;
-lin flightiness_N = mkN "flightiness" "flightinesses" ; -- compound ss_N ;
-lin haughtiness_N = mkN "haughtiness" "haughtinesses" ; -- compound ss_N ;
-lin naughtiness_N = mkN "naughtiness" "naughtinesses" ; -- compound ss_N ;
-lin saltiness_N = mkN "saltiness" "saltinesses" ; -- compound ss_N ;
-lin guiltiness_N = mkN "guiltiness" "guiltinesses" ; -- compound ss_N ;
-lin scantiness_N = mkN "scantiness" "scantinesses" ; -- compound ss_N ;
-lin daintiness_N = mkN "daintiness" "daintinesses" ; -- compound ss_N ;
-lin jauntiness_N = mkN "jauntiness" "jauntinesses" ; -- compound ss_N ;
-lin snootiness_N = mkN "snootiness" "snootinesses" ; -- compound ss_N ;
-lin emptiness_N = mkN "emptiness" "emptinesses" ; -- compound ss_N ;
-lin heartiness_N = mkN "heartiness" "heartinesses" ; -- compound ss_N ;
-lin dirtiness_N = mkN "dirtiness" "dirtinesses" ; -- compound ss_N ;
-lin hastiness_N = mkN "hastiness" "hastinesses" ; -- compound ss_N ;
-lin nastiness_N = mkN "nastiness" "nastinesses" ; -- compound ss_N ;
-lin testiness_N = mkN "testiness" "testinesses" ; -- compound ss_N ;
-lin mistiness_N = mkN "mistiness" "mistinesses" ; -- compound ss_N ;
-lin frostiness_N = mkN "frostiness" "frostinesses" ; -- compound ss_N ;
-lin bloodthirstiness_N = mkN "bloodthirstiness" "bloodthirstinesses" ; -- compound ss_N ;
-lin dustiness_N = mkN "dustiness" "dustinesses" ; -- compound ss_N ;
-lin mustiness_N = mkN "mustiness" "mustinesses" ; -- compound ss_N ;
-lin rustiness_N = mkN "rustiness" "rustinesses" ; -- compound ss_N ;
-lin cattiness_N = mkN "cattiness" "cattinesses" ; -- compound ss_N ;
-lin pettiness_N = mkN "pettiness" "pettinesses" ; -- compound ss_N ;
-lin prettiness_N = mkN "prettiness" "prettinesses" ; -- compound ss_N ;
-lin smuttiness_N = mkN "smuttiness" "smuttinesses" ; -- compound ss_N ;
-lin heaviness_N = mkN "heaviness" "heavinesses" ; -- compound ss_N ;
-lin waviness_N = mkN "waviness" "wavinesses" ; -- compound ss_N ;
-lin showiness_N = mkN "showiness" "showinesses" ; -- compound ss_N ;
-lin waxiness_N = mkN "waxiness" "waxinesses" ; -- compound ss_N ;
-lin sleaziness_N = mkN "sleaziness" "sleazinesses" ; -- compound ss_N ;
-lin haziness_N = mkN "haziness" "hazinesses" ; -- compound ss_N ;
-lin laziness_N = mkN "laziness" "lazinesses" ; -- compound ss_N ;
-lin craziness_N = mkN "craziness" "crazinesses" ; -- compound ss_N ;
-lin wheeziness_N = mkN "wheeziness" "wheezinesses" ; -- compound ss_N ;
-lin breeziness_N = mkN "breeziness" "breezinesses" ; -- compound ss_N ;
-lin coziness_N = mkN "coziness" "cozinesses" ; -- compound ss_N ;
-lin dizziness_N = mkN "dizziness" "dizzinesses" ; -- compound ss_N ;
-lin bleakness_N = mkN "bleakness" "bleaknesses" ; -- compound ss_N ;
-lin weakness_N = mkN "weakness" "weaknesses" ; -- compound ss_N ;
-lin blackness_N = mkN "blackness" "blacknesses" ; -- compound ss_N ;
-lin slackness_N = mkN "slackness" "slacknesses" ; -- compound ss_N ;
-lin thickness_N = mkN "thickness" "thicknesses" ; -- compound ss_N ;
-lin slickness_N = mkN "slickness" "slicknesses" ; -- compound ss_N ;
-lin sickness_N = mkN "sickness" "sicknesses" ; -- compound ss_N ;
-lin 'sleeping-sickness_N' = mkN "sleeping-sickness" "sleeping-sicknesses" ; -- compound ss_N ;
-lin 'air-sickness_N' = mkN "air-sickness" "air-sicknesses" ; -- compound ss_N ;
-lin seasickness_N = mkN "seasickness" "seasicknesses" ; -- compound ss_N ;
-lin homesickness_N = mkN "homesickness" "homesicknesses" ; -- compound ss_N ;
-lin lovesickness_N = mkN "lovesickness" "lovesicknesses" ; -- compound ss_N ;
-lin carsickness_N = mkN "carsickness" "carsicknesses" ; -- compound ss_N ;
-lin airsickness_N = mkN "airsickness" "airsicknesses" ; -- compound ss_N ;
-lin quickness_N = mkN "quickness" "quicknesses" ; -- compound ss_N ;
-lin sleekness_N = mkN "sleekness" "sleeknesses" ; -- compound ss_N ;
-lin meekness_N = mkN "meekness" "meeknesses" ; -- compound ss_N ;
-lin dankness_N = mkN "dankness" "danknesses" ; -- compound ss_N ;
-lin blankness_N = mkN "blankness" "blanknesses" ; -- compound ss_N ;
-lin rankness_N = mkN "rankness" "ranknesses" ; -- compound ss_N ;
-lin frankness_N = mkN "frankness" "franknesses" ; -- compound ss_N ;
-lin pinkness_N = mkN "pinkness" "pinknesses" ; -- compound ss_N ;
-lin darkness_N = mkN "darkness" "darknesses" ; -- compound ss_N ;
-lin semidarkness_N = mkN "semidarkness" "semidarknesses" ; -- compound ss_N ;
-lin starkness_N = mkN "starkness" "starknesses" ; -- compound ss_N ;
-lin illogicalness_N = mkN "illogicalness" "illogicalnesses" ; -- compound ss_N ;
-lin historicalness_N = mkN "historicalness" "historicalnesses" ; -- compound ss_N ;
-lin congenialness_N = mkN "congenialness" "congenialnesses" ; -- compound ss_N ;
-lin partialness_N = mkN "partialness" "partialnesses" ; -- compound ss_N ;
-lin literalness_N = mkN "literalness" "literalnesses" ; -- compound ss_N ;
-lin naturalness_N = mkN "naturalness" "naturalnesses" ; -- compound ss_N ;
-lin unnaturalness_N = mkN "unnaturalness" "unnaturalnesses" ; -- compound ss_N ;
-lin vitalness_N = mkN "vitalness" "vitalnesses" ; -- compound ss_N ;
-lin gradualness_N = mkN "gradualness" "gradualnesses" ; -- compound ss_N ;
-lin casualness_N = mkN "casualness" "casualnesses" ; -- compound ss_N ;
-lin usualness_N = mkN "usualness" "usualnesses" ; -- compound ss_N ;
-lin unusualness_N = mkN "unusualness" "unusualnesses" ; -- compound ss_N ;
-lin effectualness_N = mkN "effectualness" "effectualnesses" ; -- compound ss_N ;
-lin smallness_N = mkN "smallness" "smallnesses" ; -- compound ss_N ;
-lin tallness_N = mkN "tallness" "tallnesses" ; -- compound ss_N ;
-lin illness_N = mkN "illness" "illnesses" ; -- compound ss_N ;
-lin shrillness_N = mkN "shrillness" "shrillnesses" ; -- compound ss_N ;
-lin stillness_N = mkN "stillness" "stillnesses" ; -- compound ss_N ;
-lin dullness_N = mkN "dullness" "dullnesses" ; -- compound ss_N ;
-lin fullness_N = mkN "fullness" "fullnesses" ; -- compound ss_N ;
-lin coolness_N = mkN "coolness" "coolnesses" ; -- compound ss_N ;
-lin dreadfulness_N = mkN "dreadfulness" "dreadfulnesses" ; -- compound ss_N ;
-lin mindfulness_N = mkN "mindfulness" "mindfulnesses" ; -- compound ss_N ;
-lin unmindfulness_N = mkN "unmindfulness" "unmindfulnesses" ; -- compound ss_N ;
-lin peacefulness_N = mkN "peacefulness" "peacefulnesses" ; -- compound ss_N ;
-lin gracefulness_N = mkN "gracefulness" "gracefulnesses" ; -- compound ss_N ;
-lin forcefulness_N = mkN "forcefulness" "forcefulnesses" ; -- compound ss_N ;
-lin resourcefulness_N = mkN "resourcefulness" "resourcefulnesses" ; -- compound ss_N ;
-lin wakefulness_N = mkN "wakefulness" "wakefulnesses" ; -- compound ss_N ;
-lin dolefulness_N = mkN "dolefulness" "dolefulnesses" ; -- compound ss_N ;
-lin shamefulness_N = mkN "shamefulness" "shamefulnesses" ; -- compound ss_N ;
-lin tunefulness_N = mkN "tunefulness" "tunefulnesses" ; -- compound ss_N ;
-lin hopefulness_N = mkN "hopefulness" "hopefulnesses" ; -- compound ss_N ;
-lin carefulness_N = mkN "carefulness" "carefulnesses" ; -- compound ss_N ;
-lin purposefulness_N = mkN "purposefulness" "purposefulnesses" ; -- compound ss_N ;
-lin usefulness_N = mkN "usefulness" "usefulnesses" ; -- compound ss_N ;
-lin hatefulness_N = mkN "hatefulness" "hatefulnesses" ; -- compound ss_N ;
-lin gratefulness_N = mkN "gratefulness" "gratefulnesses" ; -- compound ss_N ;
-lin ungratefulness_N = mkN "ungratefulness" "ungratefulnesses" ; -- compound ss_N ;
-lin spitefulness_N = mkN "spitefulness" "spitefulnesses" ; -- compound ss_N ;
-lin tastefulness_N = mkN "tastefulness" "tastefulnesses" ; -- compound ss_N ;
-lin distastefulness_N = mkN "distastefulness" "distastefulnesses" ; -- compound ss_N ;
-lin meaningfulness_N = mkN "meaningfulness" "meaningfulnesses" ; -- compound ss_N ;
-lin watchfulness_N = mkN "watchfulness" "watchfulnesses" ; -- compound ss_N ;
-lin wishfulness_N = mkN "wishfulness" "wishfulnesses" ; -- compound ss_N ;
-lin faithfulness_N = mkN "faithfulness" "faithfulnesses" ; -- compound ss_N ;
-lin unfaithfulness_N = mkN "unfaithfulness" "unfaithfulnesses" ; -- compound ss_N ;
-lin healthfulness_N = mkN "healthfulness" "healthfulnesses" ; -- compound ss_N ;
-lin unhealthfulness_N = mkN "unhealthfulness" "unhealthfulnesses" ; -- compound ss_N ;
-lin youthfulness_N = mkN "youthfulness" "youthfulnesses" ; -- compound ss_N ;
-lin truthfulness_N = mkN "truthfulness" "truthfulnesses" ; -- compound ss_N ;
-lin untruthfulness_N = mkN "untruthfulness" "untruthfulnesses" ; -- compound ss_N ;
-lin mercifulness_N = mkN "mercifulness" "mercifulnesses" ; -- compound ss_N ;
-lin dutifulness_N = mkN "dutifulness" "dutifulnesses" ; -- compound ss_N ;
-lin undutifulness_N = mkN "undutifulness" "undutifulnesses" ; -- compound ss_N ;
-lin thankfulness_N = mkN "thankfulness" "thankfulnesses" ; -- compound ss_N ;
-lin wilfulness_N = mkN "wilfulness" "wilfulnesses" ; -- compound ss_N ;
-lin skillfulness_N = mkN "skillfulness" "skillfulnesses" ; -- compound ss_N ;
-lin unskillfulness_N = mkN "unskillfulness" "unskillfulnesses" ; -- compound ss_N ;
-lin harmfulness_N = mkN "harmfulness" "harmfulnesses" ; -- compound ss_N ;
-lin manfulness_N = mkN "manfulness" "manfulnesses" ; -- compound ss_N ;
-lin painfulness_N = mkN "painfulness" "painfulnesses" ; -- compound ss_N ;
-lin sinfulness_N = mkN "sinfulness" "sinfulnesses" ; -- compound ss_N ;
-lin mournfulness_N = mkN "mournfulness" "mournfulnesses" ; -- compound ss_N ;
-lin helpfulness_N = mkN "helpfulness" "helpfulnesses" ; -- compound ss_N ;
-lin unhelpfulness_N = mkN "unhelpfulness" "unhelpfulnesses" ; -- compound ss_N ;
-lin fearfulness_N = mkN "fearfulness" "fearfulnesses" ; -- compound ss_N ;
-lin cheerfulness_N = mkN "cheerfulness" "cheerfulnesses" ; -- compound ss_N ;
-lin uncheerfulness_N = mkN "uncheerfulness" "uncheerfulnesses" ; -- compound ss_N ;
-lin neglectfulness_N = mkN "neglectfulness" "neglectfulnesses" ; -- compound ss_N ;
-lin forgetfulness_N = mkN "forgetfulness" "forgetfulnesses" ; -- compound ss_N ;
-lin rightfulness_N = mkN "rightfulness" "rightfulnesses" ; -- compound ss_N ;
-lin frightfulness_N = mkN "frightfulness" "frightfulnesses" ; -- compound ss_N ;
-lin insightfulness_N = mkN "insightfulness" "insightfulnesses" ; -- compound ss_N ;
-lin thoughtfulness_N = mkN "thoughtfulness" "thoughtfulnesses" ; -- compound ss_N ;
-lin unthoughtfulness_N = mkN "unthoughtfulness" "unthoughtfulnesses" ; -- compound ss_N ;
-lin deceitfulness_N = mkN "deceitfulness" "deceitfulnesses" ; -- compound ss_N ;
-lin fitfulness_N = mkN "fitfulness" "fitfulnesses" ; -- compound ss_N ;
-lin fruitfulness_N = mkN "fruitfulness" "fruitfulnesses" ; -- compound ss_N ;
-lin artfulness_N = mkN "artfulness" "artfulnesses" ; -- compound ss_N ;
-lin effortfulness_N = mkN "effortfulness" "effortfulnesses" ; -- compound ss_N ;
-lin boastfulness_N = mkN "boastfulness" "boastfulnesses" ; -- compound ss_N ;
-lin restfulness_N = mkN "restfulness" "restfulnesses" ; -- compound ss_N ;
-lin wistfulness_N = mkN "wistfulness" "wistfulnesses" ; -- compound ss_N ;
-lin distrustfulness_N = mkN "distrustfulness" "distrustfulnesses" ; -- compound ss_N ;
-lin awfulness_N = mkN "awfulness" "awfulnesses" ; -- compound ss_N ;
-lin lawfulness_N = mkN "lawfulness" "lawfulnesses" ; -- compound ss_N ;
-lin unlawfulness_N = mkN "unlawfulness" "unlawfulnesses" ; -- compound ss_N ;
-lin playfulness_N = mkN "playfulness" "playfulnesses" ; -- compound ss_N ;
-lin joyfulness_N = mkN "joyfulness" "joyfulnesses" ; -- compound ss_N ;
-lin foulness_N = mkN "foulness" "foulnesses" ; -- compound ss_N ;
-lin dimness_N = mkN "dimness" "dimnesses" ; -- compound ss_N ;
-lin slimness_N = mkN "slimness" "slimnesses" ; -- compound ss_N ;
-lin grimness_N = mkN "grimness" "grimnesses" ; -- compound ss_N ;
-lin primness_N = mkN "primness" "primnesses" ; -- compound ss_N ;
-lin calmness_N = mkN "calmness" "calmnesses" ; -- compound ss_N ;
-lin randomness_N = mkN "randomness" "randomnesses" ; -- compound ss_N ;
-lin lissomness_N = mkN "lissomness" "lissomnesses" ; -- compound ss_N ;
-lin buxomness_N = mkN "buxomness" "buxomnesses" ; -- compound ss_N ;
-lin lukewarmness_N = mkN "lukewarmness" "lukewarmnesses" ; -- compound ss_N ;
-lin firmness_N = mkN "firmness" "firmnesses" ; -- compound ss_N ;
-lin glumness_N = mkN "glumness" "glumnesses" ; -- compound ss_N ;
-lin leanness_N = mkN "leanness" "leannesses" ; -- compound ss_N ;
-lin cleanness_N = mkN "cleanness" "cleannesses" ; -- compound ss_N ;
-lin meanness_N = mkN "meanness" "meannesses" ; -- compound ss_N ;
-lin humanness_N = mkN "humanness" "humannesses" ; -- compound ss_N ;
-lin wanness_N = mkN "wanness" "wannesses" ; -- compound ss_N ;
-lin hiddenness_N = mkN "hiddenness" "hiddennesses" ; -- compound ss_N ;
-lin suddenness_N = mkN "suddenness" "suddennesses" ; -- compound ss_N ;
-lin woodenness_N = mkN "woodenness" "woodennesses" ; -- compound ss_N ;
-lin keenness_N = mkN "keenness" "keennesses" ; -- compound ss_N ;
-lin greenness_N = mkN "greenness" "greennesses" ; -- compound ss_N ;
-lin drunkenness_N = mkN "drunkenness" "drunkennesses" ; -- compound ss_N ;
-lin outspokenness_N = mkN "outspokenness" "outspokennesses" ; -- compound ss_N ;
-lin sullenness_N = mkN "sullenness" "sullennesses" ; -- compound ss_N ;
-lin openness_N = mkN "openness" "opennesses" ; -- compound ss_N ;
-lin barrenness_N = mkN "barrenness" "barrennesses" ; -- compound ss_N ;
-lin rottenness_N = mkN "rottenness" "rottennesses" ; -- compound ss_N ;
-lin cravenness_N = mkN "cravenness" "cravennesses" ; -- compound ss_N ;
-lin evenness_N = mkN "evenness" "evennesses" ; -- compound ss_N ;
-lin unevenness_N = mkN "unevenness" "unevennesses" ; -- compound ss_N ;
-lin givenness_N = mkN "givenness" "givennesses" ; -- compound ss_N ;
-lin foreignness_N = mkN "foreignness" "foreignnesses" ; -- compound ss_N ;
-lin plainness_N = mkN "plainness" "plainnesses" ; -- compound ss_N ;
-lin thinness_N = mkN "thinness" "thinnesses" ; -- compound ss_N ;
-lin guinness_N = mkN "guinness" "guinnesses" ; -- compound ss_N ;
-lin solemnness_N = mkN "solemnness" "solemnnesses" ; -- compound ss_N ;
-lin commonness_N = mkN "commonness" "commonnesses" ; -- compound ss_N ;
-lin uncommonness_N = mkN "uncommonness" "uncommonnesses" ; -- compound ss_N ;
-lin wantonness_N = mkN "wantonness" "wantonnesses" ; -- compound ss_N ;
-lin northernness_N = mkN "northernness" "northernnesses" ; -- compound ss_N ;
-lin southernness_N = mkN "southernness" "southernnesses" ; -- compound ss_N ;
-lin sternness_N = mkN "sternness" "sternnesses" ; -- compound ss_N ;
-lin stubbornness_N = mkN "stubbornness" "stubbornnesses" ; -- compound ss_N ;
-lin forlornness_N = mkN "forlornness" "forlornnesses" ; -- compound ss_N ;
-lin deaconess_N = mkN "deaconess" "deaconesses" ; -- compound ss_N ;
-lin pythoness_N = mkN "pythoness" "pythonesses" ; -- compound ss_N ;
-lin marchioness_N = mkN "marchioness" "marchionesses" ; -- compound ss_N ;
-lin lioness_N = mkN "lioness" "lionesses" ; -- compound ss_N ;
-lin baroness_N = mkN "baroness" "baronesses" ; -- compound ss_N ;
-lin patroness_N = mkN "patroness" "patronesses" ; -- compound ss_N ;
-lin cheapness_N = mkN "cheapness" "cheapnesses" ; -- compound ss_N ;
-lin deepness_N = mkN "deepness" "deepnesses" ; -- compound ss_N ;
-lin steepness_N = mkN "steepness" "steepnesses" ; -- compound ss_N ;
-lin dampness_N = mkN "dampness" "dampnesses" ; -- compound ss_N ;
-lin limpness_N = mkN "limpness" "limpnesses" ; -- compound ss_N ;
-lin plumpness_N = mkN "plumpness" "plumpnesses" ; -- compound ss_N ;
-lin sharpness_N = mkN "sharpness" "sharpnesses" ; -- compound ss_N ;
-lin crispness_N = mkN "crispness" "crispnesses" ; -- compound ss_N ;
-lin dearness_N = mkN "dearness" "dearnesses" ; -- compound ss_N ;
-lin clearness_N = mkN "clearness" "clearnesses" ; -- compound ss_N ;
-lin unclearness_N = mkN "unclearness" "unclearnesses" ; -- compound ss_N ;
-lin nearness_N = mkN "nearness" "nearnesses" ; -- compound ss_N ;
-lin farness_N = mkN "farness" "farnesses" ; -- compound ss_N ;
-lin harness_N = mkN "harness" "harnesses" ; -- compound ss_N ;
-lin soberness_N = mkN "soberness" "sobernesses" ; -- compound ss_N ;
-lin wilderness_N = mkN "wilderness" "wildernesses" ; -- compound ss_N ;
-lin slenderness_N = mkN "slenderness" "slendernesses" ; -- compound ss_N ;
-lin tenderness_N = mkN "tenderness" "tendernesses" ; -- compound ss_N ;
-lin queerness_N = mkN "queerness" "queernesses" ; -- compound ss_N ;
-lin eagerness_N = mkN "eagerness" "eagernesses" ; -- compound ss_N ;
-lin meagerness_N = mkN "meagerness" "meagernesses" ; -- compound ss_N ;
-lin togetherness_N = mkN "togetherness" "togethernesses" ; -- compound ss_N ;
-lin otherness_N = mkN "otherness" "othernesses" ; -- compound ss_N ;
-lin bitterness_N = mkN "bitterness" "bitternesses" ; -- compound ss_N ;
-lin cleverness_N = mkN "cleverness" "clevernesses" ; -- compound ss_N ;
-lin governess_N = mkN "governess" "governesses" ; -- compound ss_N ;
-lin fairness_N = mkN "fairness" "fairnesses" ; -- compound ss_N ;
-lin unfairness_N = mkN "unfairness" "unfairnesses" ; -- compound ss_N ;
-lin poorness_N = mkN "poorness" "poornesses" ; -- compound ss_N ;
-lin sourness_N = mkN "sourness" "sournesses" ; -- compound ss_N ;
-lin crassness_N = mkN "crassness" "crassnesses" ; -- compound ss_N ;
-lin heedlessness_N = mkN "heedlessness" "heedlessnesses" ; -- compound ss_N ;
-lin childlessness_N = mkN "childlessness" "childlessnesses" ; -- compound ss_N ;
-lin endlessness_N = mkN "endlessness" "endlessnesses" ; -- compound ss_N ;
-lin friendlessness_N = mkN "friendlessness" "friendlessnesses" ; -- compound ss_N ;
-lin mindlessness_N = mkN "mindlessness" "mindlessnesses" ; -- compound ss_N ;
-lin groundlessness_N = mkN "groundlessness" "groundlessnesses" ; -- compound ss_N ;
-lin godlessness_N = mkN "godlessness" "godlessnesses" ; -- compound ss_N ;
-lin cloudlessness_N = mkN "cloudlessness" "cloudlessnesses" ; -- compound ss_N ;
-lin gracelessness_N = mkN "gracelessness" "gracelessnesses" ; -- compound ss_N ;
-lin voicelessness_N = mkN "voicelessness" "voicelessnesses" ; -- compound ss_N ;
-lin defencelessness_N = mkN "defencelessness" "defencelessnesses" ; -- compound ss_N ;
-lin agelessness_N = mkN "agelessness" "agelessnesses" ; -- compound ss_N ;
-lin changelessness_N = mkN "changelessness" "changelessnesses" ; -- compound ss_N ;
-lin shamelessness_N = mkN "shamelessness" "shamelessnesses" ; -- compound ss_N ;
-lin blamelessness_N = mkN "blamelessness" "blamelessnesses" ; -- compound ss_N ;
-lin homelessness_N = mkN "homelessness" "homelessnesses" ; -- compound ss_N ;
-lin spinelessness_N = mkN "spinelessness" "spinelessnesses" ; -- compound ss_N ;
-lin shapelessness_N = mkN "shapelessness" "shapelessnesses" ; -- compound ss_N ;
-lin hopelessness_N = mkN "hopelessness" "hopelessnesses" ; -- compound ss_N ;
-lin carelessness_N = mkN "carelessness" "carelessnesses" ; -- compound ss_N ;
-lin noiselessness_N = mkN "noiselessness" "noiselessnesses" ; -- compound ss_N ;
-lin defenselessness_N = mkN "defenselessness" "defenselessnesses" ; -- compound ss_N ;
-lin senselessness_N = mkN "senselessness" "senselessnesses" ; -- compound ss_N ;
-lin purposelessness_N = mkN "purposelessness" "purposelessnesses" ; -- compound ss_N ;
-lin uselessness_N = mkN "uselessness" "uselessnesses" ; -- compound ss_N ;
-lin tastelessness_N = mkN "tastelessness" "tastelessnesses" ; -- compound ss_N ;
-lin valuelessness_N = mkN "valuelessness" "valuelessnesses" ; -- compound ss_N ;
-lin eyelessness_N = mkN "eyelessness" "eyelessnesses" ; -- compound ss_N ;
-lin selflessness_N = mkN "selflessness" "selflessnesses" ; -- compound ss_N ;
-lin meaninglessness_N = mkN "meaninglessness" "meaninglessnesses" ; -- compound ss_N ;
-lin speechlessness_N = mkN "speechlessness" "speechlessnesses" ; -- compound ss_N ;
-lin faithlessness_N = mkN "faithlessness" "faithlessnesses" ; -- compound ss_N ;
-lin worthlessness_N = mkN "worthlessness" "worthlessnesses" ; -- compound ss_N ;
-lin ruthlessness_N = mkN "ruthlessness" "ruthlessnesses" ; -- compound ss_N ;
-lin mercilessness_N = mkN "mercilessness" "mercilessnesses" ; -- compound ss_N ;
-lin pitilessness_N = mkN "pitilessness" "pitilessnesses" ; -- compound ss_N ;
-lin fecklessness_N = mkN "fecklessness" "fecklessnesses" ; -- compound ss_N ;
-lin recklessness_N = mkN "recklessness" "recklessnesses" ; -- compound ss_N ;
-lin risklessness_N = mkN "risklessness" "risklessnesses" ; -- compound ss_N ;
-lin bottomlessness_N = mkN "bottomlessness" "bottomlessnesses" ; -- compound ss_N ;
-lin sinlessness_N = mkN "sinlessness" "sinlessnesses" ; -- compound ss_N ;
-lin motionlessness_N = mkN "motionlessness" "motionlessnesses" ; -- compound ss_N ;
-lin emotionlessness_N = mkN "emotionlessness" "emotionlessnesses" ; -- compound ss_N ;
-lin sleeplessness_N = mkN "sleeplessness" "sleeplessnesses" ; -- compound ss_N ;
-lin helplessness_N = mkN "helplessness" "helplessnesses" ; -- compound ss_N ;
-lin fearlessness_N = mkN "fearlessness" "fearlessnesses" ; -- compound ss_N ;
-lin cheerlessness_N = mkN "cheerlessness" "cheerlessnesses" ; -- compound ss_N ;
-lin powerlessness_N = mkN "powerlessness" "powerlessnesses" ; -- compound ss_N ;
-lin hairlessness_N = mkN "hairlessness" "hairlessnesses" ; -- compound ss_N ;
-lin colorlessness_N = mkN "colorlessness" "colorlessnesses" ; -- compound ss_N ;
-lin flavorlessness_N = mkN "flavorlessness" "flavorlessnesses" ; -- compound ss_N ;
-lin colourlessness_N = mkN "colourlessness" "colourlessnesses" ; -- compound ss_N ;
-lin tactlessness_N = mkN "tactlessness" "tactlessnesses" ; -- compound ss_N ;
-lin shiftlessness_N = mkN "shiftlessness" "shiftlessnesses" ; -- compound ss_N ;
-lin thriftlessness_N = mkN "thriftlessness" "thriftlessnesses" ; -- compound ss_N ;
-lin weightlessness_N = mkN "weightlessness" "weightlessnesses" ; -- compound ss_N ;
-lin thoughtlessness_N = mkN "thoughtlessness" "thoughtlessnesses" ; -- compound ss_N ;
-lin fruitlessness_N = mkN "fruitlessness" "fruitlessnesses" ; -- compound ss_N ;
-lin faultlessness_N = mkN "faultlessness" "faultlessnesses" ; -- compound ss_N ;
-lin talentlessness_N = mkN "talentlessness" "talentlessnesses" ; -- compound ss_N ;
-lin relentlessness_N = mkN "relentlessness" "relentlessnesses" ; -- compound ss_N ;
-lin dauntlessness_N = mkN "dauntlessness" "dauntlessnesses" ; -- compound ss_N ;
-lin spotlessness_N = mkN "spotlessness" "spotlessnesses" ; -- compound ss_N ;
-lin artlessness_N = mkN "artlessness" "artlessnesses" ; -- compound ss_N ;
-lin heartlessness_N = mkN "heartlessness" "heartlessnesses" ; -- compound ss_N ;
-lin effortlessness_N = mkN "effortlessness" "effortlessnesses" ; -- compound ss_N ;
-lin restlessness_N = mkN "restlessness" "restlessnesses" ; -- compound ss_N ;
-lin listlessness_N = mkN "listlessness" "listlessnesses" ; -- compound ss_N ;
-lin gutlessness_N = mkN "gutlessness" "gutlessnesses" ; -- compound ss_N ;
-lin lawlessness_N = mkN "lawlessness" "lawlessnesses" ; -- compound ss_N ;
-lin joylessness_N = mkN "joylessness" "joylessnesses" ; -- compound ss_N ;
-lin remissness_N = mkN "remissness" "remissnesses" ; -- compound ss_N ;
-lin crossness_N = mkN "crossness" "crossnesses" ; -- compound ss_N ;
-lin grossness_N = mkN "grossness" "grossnesses" ; -- compound ss_N ;
-lin hazardousness_N = mkN "hazardousness" "hazardousnesses" ; -- compound ss_N ;
-lin curvaceousness_N = mkN "curvaceousness" "curvaceousnesses" ; -- compound ss_N ;
-lin hideousness_N = mkN "hideousness" "hideousnesses" ; -- compound ss_N ;
-lin outrageousness_N = mkN "outrageousness" "outrageousnesses" ; -- compound ss_N ;
-lin extraneousness_N = mkN "extraneousness" "extraneousnesses" ; -- compound ss_N ;
-lin simultaneousness_N = mkN "simultaneousness" "simultaneousnesses" ; -- compound ss_N ;
-lin spontaneousness_N = mkN "spontaneousness" "spontaneousnesses" ; -- compound ss_N ;
-lin erroneousness_N = mkN "erroneousness" "erroneousnesses" ; -- compound ss_N ;
-lin gaseousness_N = mkN "gaseousness" "gaseousnesses" ; -- compound ss_N ;
-lin righteousness_N = mkN "righteousness" "righteousnesses" ; -- compound ss_N ;
-lin unrighteousness_N = mkN "unrighteousness" "unrighteousnesses" ; -- compound ss_N ;
-lin dubiousness_N = mkN "dubiousness" "dubiousnesses" ; -- compound ss_N ;
-lin salaciousness_N = mkN "salaciousness" "salaciousnesses" ; -- compound ss_N ;
-lin fallaciousness_N = mkN "fallaciousness" "fallaciousnesses" ; -- compound ss_N ;
-lin tenaciousness_N = mkN "tenaciousness" "tenaciousnesses" ; -- compound ss_N ;
-lin capaciousness_N = mkN "capaciousness" "capaciousnesses" ; -- compound ss_N ;
-lin spaciousness_N = mkN "spaciousness" "spaciousnesses" ; -- compound ss_N ;
-lin graciousness_N = mkN "graciousness" "graciousnesses" ; -- compound ss_N ;
-lin ungraciousness_N = mkN "ungraciousness" "ungraciousnesses" ; -- compound ss_N ;
-lin loquaciousness_N = mkN "loquaciousness" "loquaciousnesses" ; -- compound ss_N ;
-lin speciousness_N = mkN "speciousness" "speciousnesses" ; -- compound ss_N ;
-lin preciousness_N = mkN "preciousness" "preciousnesses" ; -- compound ss_N ;
-lin judiciousness_N = mkN "judiciousness" "judiciousnesses" ; -- compound ss_N ;
-lin injudiciousness_N = mkN "injudiciousness" "injudiciousnesses" ; -- compound ss_N ;
-lin officiousness_N = mkN "officiousness" "officiousnesses" ; -- compound ss_N ;
-lin perniciousness_N = mkN "perniciousness" "perniciousnesses" ; -- compound ss_N ;
-lin auspiciousness_N = mkN "auspiciousness" "auspiciousnesses" ; -- compound ss_N ;
-lin inauspiciousness_N = mkN "inauspiciousness" "inauspiciousnesses" ; -- compound ss_N ;
-lin capriciousness_N = mkN "capriciousness" "capriciousnesses" ; -- compound ss_N ;
-lin meretriciousness_N = mkN "meretriciousness" "meretriciousnesses" ; -- compound ss_N ;
-lin viciousness_N = mkN "viciousness" "viciousnesses" ; -- compound ss_N ;
-lin precociousness_N = mkN "precociousness" "precociousnesses" ; -- compound ss_N ;
-lin ferociousness_N = mkN "ferociousness" "ferociousnesses" ; -- compound ss_N ;
-lin consciousness_N = mkN "consciousness" "consciousnesses" ; -- compound ss_N ;
-lin 'self-consciousness_N' = mkN "self-consciousness" "self-consciousnesses" ; -- compound ss_N ;
-lin subconsciousness_N = mkN "subconsciousness" "subconsciousnesses" ; -- compound ss_N ;
-lin unselfconsciousness_N = mkN "unselfconsciousness" "unselfconsciousnesses" ; -- compound ss_N ;
-lin unconsciousness_N = mkN "unconsciousness" "unconsciousnesses" ; -- compound ss_N ;
-lin lusciousness_N = mkN "lusciousness" "lusciousnesses" ; -- compound ss_N ;
-lin tediousness_N = mkN "tediousness" "tediousnesses" ; -- compound ss_N ;
-lin perfidiousness_N = mkN "perfidiousness" "perfidiousnesses" ; -- compound ss_N ;
-lin insidiousness_N = mkN "insidiousness" "insidiousnesses" ; -- compound ss_N ;
-lin fastidiousness_N = mkN "fastidiousness" "fastidiousnesses" ; -- compound ss_N ;
-lin melodiousness_N = mkN "melodiousness" "melodiousnesses" ; -- compound ss_N ;
-lin studiousness_N = mkN "studiousness" "studiousnesses" ; -- compound ss_N ;
-lin sacrilegiousness_N = mkN "sacrilegiousness" "sacrilegiousnesses" ; -- compound ss_N ;
-lin religiousness_N = mkN "religiousness" "religiousnesses" ; -- compound ss_N ;
-lin irreligiousness_N = mkN "irreligiousness" "irreligiousnesses" ; -- compound ss_N ;
-lin litigiousness_N = mkN "litigiousness" "litigiousnesses" ; -- compound ss_N ;
-lin biliousness_N = mkN "biliousness" "biliousnesses" ; -- compound ss_N ;
-lin superciliousness_N = mkN "superciliousness" "superciliousnesses" ; -- compound ss_N ;
-lin punctiliousness_N = mkN "punctiliousness" "punctiliousnesses" ; -- compound ss_N ;
-lin rebelliousness_N = mkN "rebelliousness" "rebelliousnesses" ; -- compound ss_N ;
-lin abstemiousness_N = mkN "abstemiousness" "abstemiousnesses" ; -- compound ss_N ;
-lin ceremoniousness_N = mkN "ceremoniousness" "ceremoniousnesses" ; -- compound ss_N ;
-lin unceremoniousness_N = mkN "unceremoniousness" "unceremoniousnesses" ; -- compound ss_N ;
-lin sanctimoniousness_N = mkN "sanctimoniousness" "sanctimoniousnesses" ; -- compound ss_N ;
-lin impecuniousness_N = mkN "impecuniousness" "impecuniousnesses" ; -- compound ss_N ;
-lin precariousness_N = mkN "precariousness" "precariousnesses" ; -- compound ss_N ;
-lin nefariousness_N = mkN "nefariousness" "nefariousnesses" ; -- compound ss_N ;
-lin gregariousness_N = mkN "gregariousness" "gregariousnesses" ; -- compound ss_N ;
-lin lugubriousness_N = mkN "lugubriousness" "lugubriousnesses" ; -- compound ss_N ;
-lin imperiousness_N = mkN "imperiousness" "imperiousnesses" ; -- compound ss_N ;
-lin seriousness_N = mkN "seriousness" "seriousnesses" ; -- compound ss_N ;
-lin laboriousness_N = mkN "laboriousness" "laboriousnesses" ; -- compound ss_N ;
-lin uxoriousness_N = mkN "uxoriousness" "uxoriousnesses" ; -- compound ss_N ;
-lin curiousness_N = mkN "curiousness" "curiousnesses" ; -- compound ss_N ;
-lin penuriousness_N = mkN "penuriousness" "penuriousnesses" ; -- compound ss_N ;
-lin spuriousness_N = mkN "spuriousness" "spuriousnesses" ; -- compound ss_N ;
-lin fractiousness_N = mkN "fractiousness" "fractiousnesses" ; -- compound ss_N ;
-lin facetiousness_N = mkN "facetiousness" "facetiousnesses" ; -- compound ss_N ;
-lin nutritiousness_N = mkN "nutritiousness" "nutritiousnesses" ; -- compound ss_N ;
-lin licentiousness_N = mkN "licentiousness" "licentiousnesses" ; -- compound ss_N ;
-lin tendentiousness_N = mkN "tendentiousness" "tendentiousnesses" ; -- compound ss_N ;
-lin conscientiousness_N = mkN "conscientiousness" "conscientiousnesses" ; -- compound ss_N ;
-lin unconscientiousness_N = mkN "unconscientiousness" "unconscientiousnesses" ; -- compound ss_N ;
-lin pretentiousness_N = mkN "pretentiousness" "pretentiousnesses" ; -- compound ss_N ;
-lin unpretentiousness_N = mkN "unpretentiousness" "unpretentiousnesses" ; -- compound ss_N ;
-lin bumptiousness_N = mkN "bumptiousness" "bumptiousnesses" ; -- compound ss_N ;
-lin obsequiousness_N = mkN "obsequiousness" "obsequiousnesses" ; -- compound ss_N ;
-lin obviousness_N = mkN "obviousness" "obviousnesses" ; -- compound ss_N ;
-lin deviousness_N = mkN "deviousness" "deviousnesses" ; -- compound ss_N ;
-lin lasciviousness_N = mkN "lasciviousness" "lasciviousnesses" ; -- compound ss_N ;
-lin obliviousness_N = mkN "obliviousness" "obliviousnesses" ; -- compound ss_N ;
-lin anxiousness_N = mkN "anxiousness" "anxiousnesses" ; -- compound ss_N ;
-lin noxiousness_N = mkN "noxiousness" "noxiousnesses" ; -- compound ss_N ;
-lin obnoxiousness_N = mkN "obnoxiousness" "obnoxiousnesses" ; -- compound ss_N ;
-lin scandalousness_N = mkN "scandalousness" "scandalousnesses" ; -- compound ss_N ;
-lin callousness_N = mkN "callousness" "callousnesses" ; -- compound ss_N ;
-lin meticulousness_N = mkN "meticulousness" "meticulousnesses" ; -- compound ss_N ;
-lin credulousness_N = mkN "credulousness" "credulousnesses" ; -- compound ss_N ;
-lin scrupulousness_N = mkN "scrupulousness" "scrupulousnesses" ; -- compound ss_N ;
-lin unscrupulousness_N = mkN "unscrupulousness" "unscrupulousnesses" ; -- compound ss_N ;
-lin querulousness_N = mkN "querulousness" "querulousnesses" ; -- compound ss_N ;
-lin enormousness_N = mkN "enormousness" "enormousnesses" ; -- compound ss_N ;
-lin indigenousness_N = mkN "indigenousness" "indigenousnesses" ; -- compound ss_N ;
-lin multitudinousness_N = mkN "multitudinousness" "multitudinousnesses" ; -- compound ss_N ;
-lin heinousness_N = mkN "heinousness" "heinousnesses" ; -- compound ss_N ;
-lin abdominousness_N = mkN "abdominousness" "abdominousnesses" ; -- compound ss_N ;
-lin gelatinousness_N = mkN "gelatinousness" "gelatinousnesses" ; -- compound ss_N ;
-lin ponderousness_N = mkN "ponderousness" "ponderousnesses" ; -- compound ss_N ;
-lin murderousness_N = mkN "murderousness" "murderousnesses" ; -- compound ss_N ;
-lin dangerousness_N = mkN "dangerousness" "dangerousnesses" ; -- compound ss_N ;
-lin lecherousness_N = mkN "lecherousness" "lecherousnesses" ; -- compound ss_N ;
-lin numerousness_N = mkN "numerousness" "numerousnesses" ; -- compound ss_N ;
-lin obstreperousness_N = mkN "obstreperousness" "obstreperousnesses" ; -- compound ss_N ;
-lin boisterousness_N = mkN "boisterousness" "boisterousnesses" ; -- compound ss_N ;
-lin malodorousness_N = mkN "malodorousness" "malodorousnesses" ; -- compound ss_N ;
-lin amorousness_N = mkN "amorousness" "amorousnesses" ; -- compound ss_N ;
-lin porousness_N = mkN "porousness" "porousnesses" ; -- compound ss_N ;
-lin adventurousness_N = mkN "adventurousness" "adventurousnesses" ; -- compound ss_N ;
-lin covetousness_N = mkN "covetousness" "covetousnesses" ; -- compound ss_N ;
-lin fortuitousness_N = mkN "fortuitousness" "fortuitousnesses" ; -- compound ss_N ;
-lin momentousness_N = mkN "momentousness" "momentousnesses" ; -- compound ss_N ;
-lin vacuousness_N = mkN "vacuousness" "vacuousnesses" ; -- compound ss_N ;
-lin conspicuousness_N = mkN "conspicuousness" "conspicuousnesses" ; -- compound ss_N ;
-lin inconspicuousness_N = mkN "inconspicuousness" "inconspicuousnesses" ; -- compound ss_N ;
-lin perspicuousness_N = mkN "perspicuousness" "perspicuousnesses" ; -- compound ss_N ;
-lin arduousness_N = mkN "arduousness" "arduousnesses" ; -- compound ss_N ;
-lin ingenuousness_N = mkN "ingenuousness" "ingenuousnesses" ; -- compound ss_N ;
-lin disingenuousness_N = mkN "disingenuousness" "disingenuousnesses" ; -- compound ss_N ;
-lin strenuousness_N = mkN "strenuousness" "strenuousnesses" ; -- compound ss_N ;
-lin continuousness_N = mkN "continuousness" "continuousnesses" ; -- compound ss_N ;
-lin sensuousness_N = mkN "sensuousness" "sensuousnesses" ; -- compound ss_N ;
-lin fatuousness_N = mkN "fatuousness" "fatuousnesses" ; -- compound ss_N ;
-lin impetuousness_N = mkN "impetuousness" "impetuousnesses" ; -- compound ss_N ;
-lin contemptuousness_N = mkN "contemptuousness" "contemptuousnesses" ; -- compound ss_N ;
-lin sumptuousness_N = mkN "sumptuousness" "sumptuousnesses" ; -- compound ss_N ;
-lin voluptuousness_N = mkN "voluptuousness" "voluptuousnesses" ; -- compound ss_N ;
-lin tempestuousness_N = mkN "tempestuousness" "tempestuousnesses" ; -- compound ss_N ;
-lin mischievousness_N = mkN "mischievousness" "mischievousnesses" ; -- compound ss_N ;
-lin nervousness_N = mkN "nervousness" "nervousnesses" ; -- compound ss_N ;
-lin joyousness_N = mkN "joyousness" "joyousnesses" ; -- compound ss_N ;
-lin neatness_N = mkN "neatness" "neatnesses" ; -- compound ss_N ;
-lin greatness_N = mkN "greatness" "greatnesses" ; -- compound ss_N ;
-lin fatness_N = mkN "fatness" "fatnesses" ; -- compound ss_N ;
-lin flatness_N = mkN "flatness" "flatnesses" ; -- compound ss_N ;
-lin squatness_N = mkN "squatness" "squatnesses" ; -- compound ss_N ;
-lin compactness_N = mkN "compactness" "compactnesses" ; -- compound ss_N ;
-lin abstractness_N = mkN "abstractness" "abstractnesses" ; -- compound ss_N ;
-lin intactness_N = mkN "intactness" "intactnesses" ; -- compound ss_N ;
-lin exactness_N = mkN "exactness" "exactnesses" ; -- compound ss_N ;
-lin inexactness_N = mkN "inexactness" "inexactnesses" ; -- compound ss_N ;
-lin erectness_N = mkN "erectness" "erectnesses" ; -- compound ss_N ;
-lin directness_N = mkN "directness" "directnesses" ; -- compound ss_N ;
-lin indirectness_N = mkN "indirectness" "indirectnesses" ; -- compound ss_N ;
-lin correctness_N = mkN "correctness" "correctnesses" ; -- compound ss_N ;
-lin incorrectness_N = mkN "incorrectness" "incorrectnesses" ; -- compound ss_N ;
-lin strictness_N = mkN "strictness" "strictnesses" ; -- compound ss_N ;
-lin succinctness_N = mkN "succinctness" "succinctnesses" ; -- compound ss_N ;
-lin distinctness_N = mkN "distinctness" "distinctnesses" ; -- compound ss_N ;
-lin indistinctness_N = mkN "indistinctness" "indistinctnesses" ; -- compound ss_N ;
-lin fleetness_N = mkN "fleetness" "fleetnesses" ; -- compound ss_N ;
-lin sweetness_N = mkN "sweetness" "sweetnesses" ; -- compound ss_N ;
-lin quietness_N = mkN "quietness" "quietnesses" ; -- compound ss_N ;
-lin wetness_N = mkN "wetness" "wetnesses" ; -- compound ss_N ;
-lin deftness_N = mkN "deftness" "deftnesses" ; -- compound ss_N ;
-lin swiftness_N = mkN "swiftness" "swiftnesses" ; -- compound ss_N ;
-lin softness_N = mkN "softness" "softnesses" ; -- compound ss_N ;
-lin straightness_N = mkN "straightness" "straightnesses" ; -- compound ss_N ;
-lin lightness_N = mkN "lightness" "lightnesses" ; -- compound ss_N ;
-lin slightness_N = mkN "slightness" "slightnesses" ; -- compound ss_N ;
-lin rightness_N = mkN "rightness" "rightnesses" ; -- compound ss_N ;
-lin brightness_N = mkN "brightness" "brightnesses" ; -- compound ss_N ;
-lin downrightness_N = mkN "downrightness" "downrightnesses" ; -- compound ss_N ;
-lin uprightness_N = mkN "uprightness" "uprightnesses" ; -- compound ss_N ;
-lin tightness_N = mkN "tightness" "tightnesses" ; -- compound ss_N ;
-lin licitness_N = mkN "licitness" "licitnesses" ; -- compound ss_N ;
-lin illicitness_N = mkN "illicitness" "illicitnesses" ; -- compound ss_N ;
-lin implicitness_N = mkN "implicitness" "implicitnesses" ; -- compound ss_N ;
-lin explicitness_N = mkN "explicitness" "explicitnesses" ; -- compound ss_N ;
-lin inexplicitness_N = mkN "inexplicitness" "inexplicitnesses" ; -- compound ss_N ;
-lin fitness_N = mkN "fitness" "fitnesses" ; -- compound ss_N ;
-lin unfitness_N = mkN "unfitness" "unfitnesses" ; -- compound ss_N ;
-lin adroitness_N = mkN "adroitness" "adroitnesses" ; -- compound ss_N ;
-lin maladroitness_N = mkN "maladroitness" "maladroitnesses" ; -- compound ss_N ;
-lin witness_N = mkN "witness" "witnesses" ; -- compound ss_N ;
-lin eyewitness_N = mkN "eyewitness" "eyewitnesses" ; -- compound ss_N ;
-lin ignorantness_N = mkN "ignorantness" "ignorantnesses" ; -- compound ss_N ;
-lin pleasantness_N = mkN "pleasantness" "pleasantnesses" ; -- compound ss_N ;
-lin unpleasantness_N = mkN "unpleasantness" "unpleasantnesses" ; -- compound ss_N ;
-lin ancientness_N = mkN "ancientness" "ancientnesses" ; -- compound ss_N ;
-lin apparentness_N = mkN "apparentness" "apparentnesses" ; -- compound ss_N ;
-lin currentness_N = mkN "currentness" "currentnesses" ; -- compound ss_N ;
-lin concurrentness_N = mkN "concurrentness" "concurrentnesses" ; -- compound ss_N ;
-lin presentness_N = mkN "presentness" "presentnesses" ; -- compound ss_N ;
-lin intentness_N = mkN "intentness" "intentnesses" ; -- compound ss_N ;
-lin faintness_N = mkN "faintness" "faintnesses" ; -- compound ss_N ;
-lin quaintness_N = mkN "quaintness" "quaintnesses" ; -- compound ss_N ;
-lin gauntness_N = mkN "gauntness" "gauntnesses" ; -- compound ss_N ;
-lin bluntness_N = mkN "bluntness" "bluntnesses" ; -- compound ss_N ;
-lin hotness_N = mkN "hotness" "hotnesses" ; -- compound ss_N ;
-lin aptness_N = mkN "aptness" "aptnesses" ; -- compound ss_N ;
-lin inaptness_N = mkN "inaptness" "inaptnesses" ; -- compound ss_N ;
-lin adeptness_N = mkN "adeptness" "adeptnesses" ; -- compound ss_N ;
-lin promptness_N = mkN "promptness" "promptnesses" ; -- compound ss_N ;
-lin abruptness_N = mkN "abruptness" "abruptnesses" ; -- compound ss_N ;
-lin corruptness_N = mkN "corruptness" "corruptnesses" ; -- compound ss_N ;
-lin incorruptness_N = mkN "incorruptness" "incorruptnesses" ; -- compound ss_N ;
-lin smartness_N = mkN "smartness" "smartnesses" ; -- compound ss_N ;
-lin tartness_N = mkN "tartness" "tartnesses" ; -- compound ss_N ;
-lin alertness_N = mkN "alertness" "alertnesses" ; -- compound ss_N ;
-lin inertness_N = mkN "inertness" "inertnesses" ; -- compound ss_N ;
-lin pertness_N = mkN "pertness" "pertnesses" ; -- compound ss_N ;
-lin expertness_N = mkN "expertness" "expertnesses" ; -- compound ss_N ;
-lin shortness_N = mkN "shortness" "shortnesses" ; -- compound ss_N ;
-lin curtness_N = mkN "curtness" "curtnesses" ; -- compound ss_N ;
-lin fastness_N = mkN "fastness" "fastnesses" ; -- compound ss_N ;
-lin steadfastness_N = mkN "steadfastness" "steadfastnesses" ; -- compound ss_N ;
-lin pastness_N = mkN "pastness" "pastnesses" ; -- compound ss_N ;
-lin vastness_N = mkN "vastness" "vastnesses" ; -- compound ss_N ;
-lin earnestness_N = mkN "earnestness" "earnestnesses" ; -- compound ss_N ;
-lin robustness_N = mkN "robustness" "robustnesses" ; -- compound ss_N ;
-lin justness_N = mkN "justness" "justnesses" ; -- compound ss_N ;
-lin tautness_N = mkN "tautness" "tautnesses" ; -- compound ss_N ;
-lin stoutness_N = mkN "stoutness" "stoutnesses" ; -- compound ss_N ;
-lin devoutness_N = mkN "devoutness" "devoutnesses" ; -- compound ss_N ;
-lin rawness_N = mkN "rawness" "rawnesses" ; -- compound ss_N ;
-lin fewness_N = mkN "fewness" "fewnesses" ; -- compound ss_N ;
-lin newness_N = mkN "newness" "newnesses" ; -- compound ss_N ;
-lin lowness_N = mkN "lowness" "lownesses" ; -- compound ss_N ;
-lin callowness_N = mkN "callowness" "callownesses" ; -- compound ss_N ;
-lin shallowness_N = mkN "shallowness" "shallownesses" ; -- compound ss_N ;
-lin sallowness_N = mkN "sallowness" "sallownesses" ; -- compound ss_N ;
-lin mellowness_N = mkN "mellowness" "mellownesses" ; -- compound ss_N ;
-lin yellowness_N = mkN "yellowness" "yellownesses" ; -- compound ss_N ;
-lin hollowness_N = mkN "hollowness" "hollownesses" ; -- compound ss_N ;
-lin slowness_N = mkN "slowness" "slownesses" ; -- compound ss_N ;
-lin narrowness_N = mkN "narrowness" "narrownesses" ; -- compound ss_N ;
-lin laxness_N = mkN "laxness" "laxnesses" ; -- compound ss_N ;
-lin gayness_N = mkN "gayness" "gaynesses" ; -- compound ss_N ;
-lin awayness_N = mkN "awayness" "awaynesses" ; -- compound ss_N ;
-lin shyness_N = mkN "shyness" "shynesses" ; -- compound ss_N ;
-lin slyness_N = mkN "slyness" "slynesses" ; -- compound ss_N ;
-lin bonyness_N = mkN "bonyness" "bonynesses" ; -- compound ss_N ;
-lin coyness_N = mkN "coyness" "coynesses" ; -- compound ss_N ;
-lin dryness_N = mkN "dryness" "drynesses" ; -- compound ss_N ;
-lin busyness_N = mkN "busyness" "busynesses" ; -- compound ss_N ;
-lin uppityness_N = mkN "uppityness" "uppitynesses" ; -- compound ss_N ;
-lin loess_N = mkN "loess" "loesses" ; -- compound ss_N ;
-lin caress_N = mkN "caress" "caresses" ; -- compound ss_N ;
-lin cress_N = mkN "cress" "cresses" ; -- compound ss_N ;
-lin stonecress_N = mkN "stonecress" "stonecresses" ; -- compound ss_N ;
-lin watercress_N = mkN "watercress" "watercresses" ; -- compound ss_N ;
-lin bittercress_N = mkN "bittercress" "bittercresses" ; -- compound ss_N ;
-lin pennycress_N = mkN "pennycress" "pennycresses" ; -- compound ss_N ;
-lin dress_N = mkN "dress" "dresses" ; -- compound ss_N ;
-lin 'diving-dress_N' = mkN "diving-dress" "diving-dresses" ; -- compound ss_N ;
-lin 'ball-dress_N' = mkN "ball-dress" "ball-dresses" ; -- compound ss_N ;
-lin ambassadress_N = mkN "ambassadress" "ambassadresses" ; -- compound ss_N ;
-lin address_N = mkN "address" "addresses" ; -- compound ss_N ;
-lin headdress_N = mkN "headdress" "headdresses" ; -- compound ss_N ;
-lin battledress_N = mkN "battledress" "battledresses" ; -- compound ss_N ;
-lin redress_N = mkN "redress" "redresses" ; -- compound ss_N ;
-lin balldress_N = mkN "balldress" "balldresses" ; -- compound ss_N ;
-lin undress_N = mkN "undress" "undresses" ; -- compound ss_N ;
-lin laundress_N = mkN "laundress" "laundresses" ; -- compound ss_N ;
-lin foundress_N = mkN "foundress" "foundresses" ; -- compound ss_N ;
-lin sundress_N = mkN "sundress" "sundresses" ; -- compound ss_N ;
-lin wardress_N = mkN "wardress" "wardresses" ; -- compound ss_N ;
-lin coatdress_N = mkN "coatdress" "coatdresses" ; -- compound ss_N ;
-lin nightdress_N = mkN "nightdress" "nightdresses" ; -- compound ss_N ;
-lin shirtdress_N = mkN "shirtdress" "shirtdresses" ; -- compound ss_N ;
-lin sorceress_N = mkN "sorceress" "sorceresses" ; -- compound ss_N ;
-lin embroideress_N = mkN "embroideress" "embroideresses" ; -- compound ss_N ;
-lin murderess_N = mkN "murderess" "murderesses" ; -- compound ss_N ;
-lin peeress_N = mkN "peeress" "peeresses" ; -- compound ss_N ;
-lin manageress_N = mkN "manageress" "manageresses" ; -- compound ss_N ;
-lin adulteress_N = mkN "adulteress" "adulteresses" ; -- compound ss_N ;
-lin egress_N = mkN "egress" "egresses" ; -- compound ss_N ;
-lin negress_N = mkN "negress" "negresses" ; -- compound ss_N ;
-lin regress_N = mkN "regress" "regresses" ; -- compound ss_N ;
-lin tigress_N = mkN "tigress" "tigresses" ; -- compound ss_N ;
-lin ingress_N = mkN "ingress" "ingresses" ; -- compound ss_N ;
-lin congress_N = mkN "congress" "congresses" ; -- compound ss_N ;
-lin ogress_N = mkN "ogress" "ogresses" ; -- compound ss_N ;
-lin progress_N = mkN "progress" "progresses" ; -- compound ss_N ;
-lin heiress_N = mkN "heiress" "heiresses" ; -- compound ss_N ;
-lin authoress_N = mkN "authoress" "authoresses" ; -- compound ss_N ;
-lin prioress_N = mkN "prioress" "prioresses" ; -- compound ss_N ;
-lin mayoress_N = mkN "mayoress" "mayoresses" ; -- compound ss_N ;
-lin press_N = mkN "press" "presses" ; -- compound ss_N ;
-lin 'printing-press_N' = mkN "printing-press" "printing-presses" ; -- compound ss_N ;
-lin winepress_N = mkN "winepress" "winepresses" ; -- compound ss_N ;
-lin empress_N = mkN "empress" "empresses" ; -- compound ss_N ;
-lin impress_N = mkN "impress" "impresses" ; -- compound ss_N ;
-lin compress_N = mkN "compress" "compresses" ; -- compound ss_N ;
-lin ciderpress_N = mkN "ciderpress" "ciderpresses" ; -- compound ss_N ;
-lin letterpress_N = mkN "letterpress" "letterpresses" ; -- compound ss_N ;
-lin express_N = mkN "express" "expresses" ; -- compound ss_N ;
-lin cypress_N = mkN "cypress" "cypresses" ; -- compound ss_N ;
-lin tress_N = mkN "tress" "tresses" ; -- compound ss_N ;
-lin negotiatress_N = mkN "negotiatress" "negotiatresses" ; -- compound ss_N ;
-lin idolatress_N = mkN "idolatress" "idolatresses" ; -- compound ss_N ;
-lin actress_N = mkN "actress" "actresses" ; -- compound ss_N ;
-lin benefactress_N = mkN "benefactress" "benefactresses" ; -- compound ss_N ;
-lin seductress_N = mkN "seductress" "seductresses" ; -- compound ss_N ;
-lin conductress_N = mkN "conductress" "conductresses" ; -- compound ss_N ;
-lin instructress_N = mkN "instructress" "instructresses" ; -- compound ss_N ;
-lin proprietress_N = mkN "proprietress" "proprietresses" ; -- compound ss_N ;
-lin traitress_N = mkN "traitress" "traitresses" ; -- compound ss_N ;
-lin waitress_N = mkN "waitress" "waitresses" ; -- compound ss_N ;
-lin enchantress_N = mkN "enchantress" "enchantresses" ; -- compound ss_N ;
-lin huntress_N = mkN "huntress" "huntresses" ; -- compound ss_N ;
-lin sculptress_N = mkN "sculptress" "sculptresses" ; -- compound ss_N ;
-lin temptress_N = mkN "temptress" "temptresses" ; -- compound ss_N ;
-lin fortress_N = mkN "fortress" "fortresses" ; -- compound ss_N ;
-lin stress_N = mkN "stress" "stresses" ; -- compound ss_N ;
-lin ancestress_N = mkN "ancestress" "ancestresses" ; -- compound ss_N ;
-lin songstress_N = mkN "songstress" "songstresses" ; -- compound ss_N ;
-lin distress_N = mkN "distress" "distresses" ; -- compound ss_N ;
-lin mistress_N = mkN "mistress" "mistresses" ; -- compound ss_N ;
-lin 'games-mistress_N' = mkN "games-mistress" "games-mistresses" ; -- compound ss_N ;
-lin headmistress_N = mkN "headmistress" "headmistresses" ; -- compound ss_N ;
-lin taskmistress_N = mkN "taskmistress" "taskmistresses" ; -- compound ss_N ;
-lin schoolmistress_N = mkN "schoolmistress" "schoolmistresses" ; -- compound ss_N ;
-lin postmistress_N = mkN "postmistress" "postmistresses" ; -- compound ss_N ;
-lin seamstress_N = mkN "seamstress" "seamstresses" ; -- compound ss_N ;
-lin sempstress_N = mkN "sempstress" "sempstresses" ; -- compound ss_N ;
-lin mattress_N = mkN "mattress" "mattresses" ; -- compound ss_N ;
-lin 'spring-mattress_N' = mkN "spring-mattress" "spring-mattresses" ; -- compound ss_N ;
-lin buttress_N = mkN "buttress" "buttresses" ; -- compound ss_N ;
-lin procuress_N = mkN "procuress" "procuresses" ; -- compound ss_N ;
-lin duress_N = mkN "duress" "duresses" ; -- compound ss_N ;
-lin adventuress_N = mkN "adventuress" "adventuresses" ; -- compound ss_N ;
-lin prophetess_N = mkN "prophetess" "prophetesses" ; -- compound ss_N ;
-lin poetess_N = mkN "poetess" "poetesses" ; -- compound ss_N ;
-lin giantess_N = mkN "giantess" "giantesses" ; -- compound ss_N ;
-lin countess_N = mkN "countess" "countesses" ; -- compound ss_N ;
-lin viscountess_N = mkN "viscountess" "viscountesses" ; -- compound ss_N ;
-lin priestess_N = mkN "priestess" "priestesses" ; -- compound ss_N ;
-lin hostess_N = mkN "hostess" "hostesses" ; -- compound ss_N ;
-lin guess_N = mkN "guess" "guesses" ; -- compound ss_N ;
-lin marquess_N = mkN "marquess" "marquesses" ; -- compound ss_N ;
-lin jewess_N = mkN "jewess" "jewesses" ; -- compound ss_N ;
-lin prowess_N = mkN "prowess" "prowesses" ; -- compound ss_N ;
-lin gneiss_N = mkN "gneiss" "gneisses" ; -- compound ss_N ;
-lin edelweiss_N = mkN "edelweiss" "edelweisses" ; -- compound ss_N ;
-lin hiss_N = mkN "hiss" "hisses" ; -- compound ss_N ;
-lin kiss_N = mkN "kiss" "kisses" ; -- compound ss_N ;
-lin bliss_N = mkN "bliss" "blisses" ; -- compound ss_N ;
-lin miss_N = mkN "miss" "misses" ; -- compound ss_N ;
-lin premiss_N = mkN "premiss" "premisses" ; -- compound ss_N ;
-lin koumiss_N = mkN "koumiss" "koumisses" ; -- compound ss_N ;
-lin piss_N = mkN "piss" "pisses" ; -- compound ss_N ;
-lin boss_N = mkN "boss" "bosses" ; -- compound ss_N ;
-lin underboss_N = mkN "underboss" "underbosses" ; -- compound ss_N ;
-lin joss_N = mkN "joss" "josses" ; -- compound ss_N ;
-lin loss_N = mkN "loss" "losses" ; -- compound ss_N ;
-lin floss_N = mkN "floss" "flosses" ; -- compound ss_N ;
-lin 'candy-floss_N' = mkN "candy-floss" "candy-flosses" ; -- compound ss_N ;
-lin gloss_N = mkN "gloss" "glosses" ; -- compound ss_N ;
-lin semigloss_N = mkN "semigloss" "semiglosses" ; -- compound ss_N ;
-lin bugloss_N = mkN "bugloss" "buglosses" ; -- compound ss_N ;
-lin moss_N = mkN "moss" "mosses" ; -- compound ss_N ;
-lin spikemoss_N = mkN "spikemoss" "spikemosses" ; -- compound ss_N ;
-lin cross_N = mkN "cross" "crosses" ; -- compound ss_N ;
-lin 'double-cross_N' = mkN "double-cross" "double-crosses" ; -- compound ss_N ;
-lin 'market-cross_N' = mkN "market-cross" "market-crosses" ; -- compound ss_N ;
-lin crisscross_N = mkN "crisscross" "crisscrosses" ; -- compound ss_N ;
-lin testcross_N = mkN "testcross" "testcrosses" ; -- compound ss_N ;
-lin dross_N = mkN "dross" "drosses" ; -- compound ss_N ;
-lin albatross_N = mkN "albatross" "albatrosses" ; -- compound ss_N ;
-lin toss_N = mkN "toss" "tosses" ; -- compound ss_N ;
-lin uss_N = mkN "uss" "usses" ; -- notcompound ss_N ;
-lin gauss_N = mkN "gauss" "gausses" ; -- compound ss_N ;
-lin microgauss_N = mkN "microgauss" "microgausses" ; -- compound ss_N ;
-lin blunderbuss_N = mkN "blunderbuss" "blunderbusses" ; -- compound ss_N ;
-lin cuss_N = mkN "cuss" "cusses" ; -- compound ss_N ;
-lin fuss_N = mkN "fuss" "fusses" ; -- compound ss_N ;
-lin muss_N = mkN "muss" "musses" ; -- compound ss_N ;
-lin sourpuss_N = mkN "sourpuss" "sourpusses" ; -- compound ss_N ;
-lin truss_N = mkN "truss" "trusses" ; -- compound ss_N ;
-lin abyss_N = mkN "abyss" "abysses" ; -- compound ss_N ;
-lin villainess_N = mkN "villainess" "villainesss" ;
-lin millionairess_N = mkN "millionairess" "millionairesss" ;
-lin swiss_N = mkN "swiss" "swiss" ;
-lin gross_N = mkN "gross" "gross" ;
-lin cleats_N = mkN "cleats" "cleatses" ;
-lin lats_N = mkN "lats" "latses" ;
-lin flats_N = mkN "flats" "flatses" ; -- notcompound lats_N ;
-lin groats_N = mkN "groats" "groatses" ;
-lin effects_N = mkN "effects" "effectses" ;
-lin analects_N = mkN "analects" "analectses" ;
-lin respects_N = mkN "respects" "respectses" ;
-lin starets_N = mkN "starets" "staretses" ;
-lin assets_N = mkN "assets" "assetses" ;
-lin houselights_N = mkN "houselights" "houselightses" ;
-lin footlights_N = mkN "footlights" "footlightses" ;
-lin sights_N = mkN "sights" "sightses" ;
-lin tights_N = mkN "tights" "tightses" ;
-lin credits_N = mkN "credits" "creditses" ;
-lin quoits_N = mkN "quoits" "quoitses" ;
-lin wits_N = mkN "wits" "witses" ;
-lin blewits_N = mkN "blewits" "blewitses" ; -- compound wits_N ;
-lin descendants_N = mkN "descendants" "descendantses" ;
-lin underpants_N = mkN "underpants" "underpantses" ;
-lin ancients_N = mkN "ancients" "ancientses" ;
-lin muniments_N = mkN "muniments" "munimentses" ;
-lin contents_N = mkN "contents" "contentses" ;
-lin roots_N = mkN "roots" "rootses" ;
-lin darts_N = mkN "darts" "dartses" ;
-lin hearts_N = mkN "hearts" "heartses" ;
-lin parts_N = mkN "parts" "partses" ;
-lin deserts_N = mkN "deserts" "desertses" ;
-lin outskirts_N = mkN "outskirts" "outskirtses" ;
-lin comforts_N = mkN "comforts" "comfortses" ;
-lin costs_N = mkN "costs" "costses" ;
-lin peanuts_N = mkN "peanuts" "peanutses" ;
-lin whereabouts_N = mkN "whereabouts" "whereaboutses" ;
-lin rickets_N = mkN "rickets" "rickets" ;
-lin draughts_N = mkN "draughts" "draughts" ;
-lin grits_N = mkN "grits" "grits" ;
-lin 'santa claus_N' = mkN "santa claus" "santa clauses" ;
-lin bus_N = mkN "bus" "buses" ;
-lin syllabus_N = mkN "syllabus" "syllabuses" ; -- compound bus_N ;
-lin rebus_N = mkN "rebus" "rebuses" ; -- compound bus_N ;
-lin arquebus_N = mkN "arquebus" "arquebuses" ; -- compound bus_N ;
-lin minibus_N = mkN "minibus" "minibuses" ; -- compound bus_N ;
-lin omnibus_N = mkN "omnibus" "omnibuses" ; -- compound bus_N ;
-lin iambus_N = mkN "iambus" "iambuses" ; -- compound bus_N ;
-lin limbus_N = mkN "limbus" "limbuses" ; -- compound bus_N ;
-lin nimbus_N = mkN "nimbus" "nimbuses" ; -- compound bus_N ;
-lin cumulonimbus_N = mkN "cumulonimbus" "cumulonimbuses" ; -- compound bus_N ;
-lin rhombus_N = mkN "rhombus" "rhombuses" ; -- compound bus_N ;
-lin thrombus_N = mkN "thrombus" "thrombuses" ; -- compound bus_N ;
-lin colobus_N = mkN "colobus" "colobuses" ; -- compound bus_N ;
-lin airbus_N = mkN "airbus" "airbuses" ; -- compound bus_N ;
-lin succubus_N = mkN "succubus" "succubuses" ; -- compound bus_N ;
-lin incubus_N = mkN "incubus" "incubuses" ; -- compound bus_N ;
-lin trolleybus_N = mkN "trolleybus" "trolleybuses" ; -- compound bus_N ;
-lin abacus_N = mkN "abacus" "abacuses" ;
-lin coccus_N = mkN "coccus" "coccuses" ;
-lin diplococcus_N = mkN "diplococcus" "diplococcuses" ; -- compound coccus_N ;
-lin staphylococcus_N = mkN "staphylococcus" "staphylococcuses" ; -- compound coccus_N ;
-lin pneumococcus_N = mkN "pneumococcus" "pneumococcuses" ; -- compound coccus_N ;
-lin echinococcus_N = mkN "echinococcus" "echinococcuses" ; -- compound coccus_N ;
-lin gonococcus_N = mkN "gonococcus" "gonococcuses" ; -- compound coccus_N ;
-lin rudapithecus_N = mkN "rudapithecus" "rudapithecuses" ;
-lin sulcus_N = mkN "sulcus" "sulcuses" ;
-lin incus_N = mkN "incus" "incuses" ;
-lin iridoncus_N = mkN "iridoncus" "iridoncuses" ;
-lin uncus_N = mkN "uncus" "uncuses" ;
-lin diplodocus_N = mkN "diplodocus" "diplodocuses" ;
-lin focus_N = mkN "focus" "focuses" ;
-lin autofocus_N = mkN "autofocus" "autofocuses" ; -- compound focus_N ;
-lin 'hocus-pocus_N' = mkN "hocus-pocus" "hocus-pocuses" ;
-lin crocus_N = mkN "crocus" "crocuses" ;
-lin arcus_N = mkN "arcus" "arcuses" ;
-lin circus_N = mkN "circus" "circuses" ;
-lin ascus_N = mkN "ascus" "ascuses" ;
-lin hibiscus_N = mkN "hibiscus" "hibiscuses" ;
-lin discus_N = mkN "discus" "discuses" ;
-lin meniscus_N = mkN "meniscus" "meniscuses" ;
-lin lemniscus_N = mkN "lemniscus" "lemniscuses" ;
-lin cuscus_N = mkN "cuscus" "cuscuses" ;
-lin caucus_N = mkN "caucus" "caucuses" ;
-lin fucus_N = mkN "fucus" "fucuses" ;
-lin mucus_N = mkN "mucus" "mucuses" ;
-lin solidus_N = mkN "solidus" "soliduses" ;
-lin nidus_N = mkN "nidus" "niduses" ;
-lin fundus_N = mkN "fundus" "funduses" ;
-lin ceratodus_N = mkN "ceratodus" "ceratoduses" ;
-lin exodus_N = mkN "exodus" "exoduses" ;
-lin calceus_N = mkN "calceus" "calceuses" ;
-lin caduceus_N = mkN "caduceus" "caduceuses" ;
-lin pronucleus_N = mkN "pronucleus" "pronucleuses" ;
-lin basileus_N = mkN "basileus" "basileuses" ;
-lin malleus_N = mkN "malleus" "malleuses" ;
-lin coleus_N = mkN "coleus" "coleuses" ;
-lin soleus_N = mkN "soleus" "soleuses" ;
-lin aculeus_N = mkN "aculeus" "aculeuses" ;
-lin peroneus_N = mkN "peroneus" "peroneuses" ;
-lin clypeus_N = mkN "clypeus" "clypeuses" ;
-lin gluteus_N = mkN "gluteus" "gluteuses" ;
-lin esophagus_N = mkN "esophagus" "esophaguses" ;
-lin oesophagus_N = mkN "oesophagus" "oesophaguses" ; -- notcompound esophagus_N ;
-lin magus_N = mkN "magus" "maguses" ;
-lin asparagus_N = mkN "asparagus" "asparaguses" ;
-lin choragus_N = mkN "choragus" "choraguses" ;
-lin tragus_N = mkN "tragus" "traguses" ;
-lin vagus_N = mkN "vagus" "vaguses" ;
-lin negus_N = mkN "negus" "neguses" ;
-lin pemphigus_N = mkN "pemphigus" "pemphiguses" ;
-lin valgus_N = mkN "valgus" "valguses" ;
-lin cunnilingus_N = mkN "cunnilingus" "cunnilinguses" ;
-lin fungus_N = mkN "fungus" "funguses" ;
-lin argus_N = mkN "argus" "arguses" ;
-lin rhonchus_N = mkN "rhonchus" "rhonchuses" ;
-lin deinonychus_N = mkN "deinonychus" "deinonychuses" ;
-lin philadelphus_N = mkN "philadelphus" "philadelphuses" ;
-lin tophus_N = mkN "tophus" "tophuses" ;
-lin scyphus_N = mkN "scyphus" "scyphuses" ;
-lin typhus_N = mkN "typhus" "typhuses" ;
-lin compsognathus_N = mkN "compsognathus" "compsognathuses" ;
-lin canthus_N = mkN "canthus" "canthuses" ;
-lin acanthus_N = mkN "acanthus" "acanthuses" ; -- notcompound canthus_N ;
-lin epicanthus_N = mkN "epicanthus" "epicanthuses" ; -- compound canthus_N ;
-lin strophanthus_N = mkN "strophanthus" "strophanthuses" ;
-lin ailanthus_N = mkN "ailanthus" "ailanthuses" ;
-lin aeschynanthus_N = mkN "aeschynanthus" "aeschynanthuses" ;
-lin agapanthus_N = mkN "agapanthus" "agapanthuses" ;
-lin plectranthus_N = mkN "plectranthus" "plectranthuses" ;
-lin polyanthus_N = mkN "polyanthus" "polyanthuses" ;
-lin bryanthus_N = mkN "bryanthus" "bryanthuses" ;
-lin phaius_N = mkN "phaius" "phaiuses" ;
-lin stenopterygius_N = mkN "stenopterygius" "stenopterygiuses" ;
-lin gastrocnemius_N = mkN "gastrocnemius" "gastrocnemiuses" ;
-lin genius_N = mkN "genius" "geniuses" ;
-lin splenius_N = mkN "splenius" "spleniuses" ;
-lin abecedarius_N = mkN "abecedarius" "abecedariuses" ;
-lin sartorius_N = mkN "sartorius" "sartoriuses" ;
-lin trapezius_N = mkN "trapezius" "trapeziuses" ;
-lin ankus_N = mkN "ankus" "ankuses" ;
-lin hydrocephalus_N = mkN "hydrocephalus" "hydrocephaluses" ;
-lin leptocephalus_N = mkN "leptocephalus" "leptocephaluses" ;
-lin acromphalus_N = mkN "acromphalus" "acromphaluses" ;
-lin talus_N = mkN "talus" "taluses" ;
-lin angelus_N = mkN "angelus" "angeluses" ;
-lin hilus_N = mkN "hilus" "hiluses" ;
-lin acidophilus_N = mkN "acidophilus" "acidophiluses" ; -- compound hilus_N ;
-lin pilus_N = mkN "pilus" "piluses" ;
-lin nautilus_N = mkN "nautilus" "nautiluses" ;
-lin callus_N = mkN "callus" "calluses" ;
-lin phallus_N = mkN "phallus" "phalluses" ;
-lin amorphophallus_N = mkN "amorphophallus" "amorphophalluses" ; -- compound phallus_N ;
-lin thallus_N = mkN "thallus" "thalluses" ;
-lin nucellus_N = mkN "nucellus" "nucelluses" ;
-lin entellus_N = mkN "entellus" "entelluses" ;
-lin coccobacillus_N = mkN "coccobacillus" "coccobacilluses" ;
-lin thiobacillus_N = mkN "thiobacillus" "thiobacilluses" ;
-lin lactobacillus_N = mkN "lactobacillus" "lactobacilluses" ;
-lin streptobacillus_N = mkN "streptobacillus" "streptobacilluses" ;
-lin villus_N = mkN "villus" "villuses" ;
-lin bolus_N = mkN "bolus" "boluses" ;
-lin embolus_N = mkN "embolus" "emboluses" ; -- compound bolus_N ;
-lin obolus_N = mkN "obolus" "oboluses" ; -- notcompound bolus_N ;
-lin nucleolus_N = mkN "nucleolus" "nucleoluses" ;
-lin alveolus_N = mkN "alveolus" "alveoluses" ;
-lin gladiolus_N = mkN "gladiolus" "gladioluses" ;
-lin modiolus_N = mkN "modiolus" "modioluses" ;
-lin plus_N = mkN "plus" "pluses" ;
-lin overplus_N = mkN "overplus" "overpluses" ; -- compound plus_N ;
-lin surplus_N = mkN "surplus" "surpluses" ; -- compound plus_N ;
-lin galbulus_N = mkN "galbulus" "galbuluses" ;
-lin canaliculus_N = mkN "canaliculus" "canaliculuses" ;
-lin funiculus_N = mkN "funiculus" "funiculuses" ;
-lin calculus_N = mkN "calculus" "calculuses" ;
-lin homunculus_N = mkN "homunculus" "homunculuses" ;
-lin calyculus_N = mkN "calyculus" "calyculuses" ;
-lin modulus_N = mkN "modulus" "moduluses" ;
-lin famulus_N = mkN "famulus" "famuluses" ;
-lin cirrocumulus_N = mkN "cirrocumulus" "cirrocumuluses" ;
-lin altocumulus_N = mkN "altocumulus" "altocumuluses" ;
-lin annulus_N = mkN "annulus" "annuluses" ;
-lin glomerulus_N = mkN "glomerulus" "glomeruluses" ;
-lin rivulus_N = mkN "rivulus" "rivuluses" ;
-lin volvulus_N = mkN "volvulus" "volvuluses" ;
-lin convolvulus_N = mkN "convolvulus" "convolvuluses" ; -- compound volvulus_N ;
-lin acervulus_N = mkN "acervulus" "acervuluses" ;
-lin stylus_N = mkN "stylus" "styluses" ;
-lin mandamus_N = mkN "mandamus" "mandamuses" ;
-lin calamus_N = mkN "calamus" "calamuses" ;
-lin thalamus_N = mkN "thalamus" "thalamuses" ;
-lin subthalamus_N = mkN "subthalamus" "subthalamuses" ; -- compound thalamus_N ;
-lin hypothalamus_N = mkN "hypothalamus" "hypothalamuses" ; -- compound thalamus_N ;
-lin ramus_N = mkN "ramus" "ramuses" ;
-lin ignoramus_N = mkN "ignoramus" "ignoramuses" ; -- compound ramus_N ;
-lin hippopotamus_N = mkN "hippopotamus" "hippopotamuses" ;
-lin bmus_N = mkN "bmus" "bmuses" ;
-lin nystagmus_N = mkN "nystagmus" "nystagmuses" ;
-lin isthmus_N = mkN "isthmus" "isthmuses" ;
-lin struthiomimus_N = mkN "struthiomimus" "struthiomimuses" ;
-lin animus_N = mkN "animus" "animuses" ;
-lin minimus_N = mkN "minimus" "minimuses" ;
-lin primus_N = mkN "primus" "primuses" ;
-lin mumpsimus_N = mkN "mumpsimus" "mumpsimuses" ;
-lin sumpsimus_N = mkN "sumpsimus" "sumpsimuses" ;
-lin hummus_N = mkN "hummus" "hummuses" ;
-lin chiasmus_N = mkN "chiasmus" "chiasmuses" ;
-lin marasmus_N = mkN "marasmus" "marasmuses" ;
-lin tenesmus_N = mkN "tenesmus" "tenesmuses" ;
-lin strabismus_N = mkN "strabismus" "strabismuses" ;
-lin laryngismus_N = mkN "laryngismus" "laryngismuses" ;
-lin vaginismus_N = mkN "vaginismus" "vaginismuses" ;
-lin trismus_N = mkN "trismus" "trismuses" ;
-lin litmus_N = mkN "litmus" "litmuses" ;
-lin humus_N = mkN "humus" "humuses" ;
-lin anus_N = mkN "anus" "anuses" ;
-lin pandanus_N = mkN "pandanus" "pandanuses" ; -- compound anus_N ;
-lin tetanus_N = mkN "tetanus" "tetanuses" ; -- compound anus_N ;
-lin subgenus_N = mkN "subgenus" "subgenuses" ;
-lin scalenus_N = mkN "scalenus" "scalenuses" ;
-lin silenus_N = mkN "silenus" "silenuses" ;
-lin acinus_N = mkN "acinus" "acinuses" ;
-lin echinus_N = mkN "echinus" "echinuses" ;
-lin botulinus_N = mkN "botulinus" "botulinuses" ;
-lin minus_N = mkN "minus" "minuses" ;
-lin dominus_N = mkN "dominus" "dominuses" ; -- compound minus_N ;
-lin terminus_N = mkN "terminus" "terminuses" ; -- compound minus_N ;
-lin sinus_N = mkN "sinus" "sinuses" ;
-lin bonus_N = mkN "bonus" "bonuses" ;
-lin keratoconus_N = mkN "keratoconus" "keratoconuses" ;
-lin clonus_N = mkN "clonus" "clonuses" ;
-lin myoclonus_N = mkN "myoclonus" "myoclonuses" ; -- compound clonus_N ;
-lin couscous_N = mkN "couscous" "couscouses" ;
-lin scabious_N = mkN "scabious" "scabiouses" ;
-lin unconscious_N = mkN "unconscious" "unconsciouses" ;
-lin nous_N = mkN "nous" "nouses" ;
-lin burnous_N = mkN "burnous" "burnouses" ; -- compound nous_N ;
-lin pus_N = mkN "pus" "puses" ;
-lin campus_N = mkN "campus" "campuses" ; -- compound pus_N ;
-lin hippocampus_N = mkN "hippocampus" "hippocampuses" ; -- compound pus_N ;
-lin grampus_N = mkN "grampus" "grampuses" ; -- compound pus_N ;
-lin octopus_N = mkN "octopus" "octopuses" ; -- compound pus_N ;
-lin rhizopus_N = mkN "rhizopus" "rhizopuses" ; -- compound pus_N ;
-lin pappus_N = mkN "pappus" "pappuses" ; -- compound pus_N ;
-lin eohippus_N = mkN "eohippus" "eohippuses" ; -- compound pus_N ;
-lin mesohippus_N = mkN "mesohippus" "mesohippuses" ; -- compound pus_N ;
-lin protohippus_N = mkN "protohippus" "protohippuses" ; -- compound pus_N ;
-lin metacarpus_N = mkN "metacarpus" "metacarpuses" ; -- compound pus_N ;
-lin streptocarpus_N = mkN "streptocarpus" "streptocarpuses" ; -- compound pus_N ;
-lin 'habeas corpus_N' = mkN "habeas corpus" "habeas corpuses" ; -- compound pus_N ;
-lin lupus_N = mkN "lupus" "lupuses" ; -- compound pus_N ;
-lin polypus_N = mkN "polypus" "polypuses" ; -- compound pus_N ;
-lin platypus_N = mkN "platypus" "platypuses" ; -- compound pus_N ;
-lin acarus_N = mkN "acarus" "acaruses" ;
-lin varus_N = mkN "varus" "varuses" ;
-lin crus_N = mkN "crus" "cruses" ;
-lin humerus_N = mkN "humerus" "humeruses" ;
-lin kernicterus_N = mkN "kernicterus" "kernicteruses" ;
-lin uterus_N = mkN "uterus" "uteruses" ;
-lin deinocheirus_N = mkN "deinocheirus" "deinocheiruses" ;
-lin virus_N = mkN "virus" "viruses" ;
-lin alphavirus_N = mkN "alphavirus" "alphaviruses" ; -- compound virus_N ;
-lin hepadnavirus_N = mkN "hepadnavirus" "hepadnaviruses" ; -- compound virus_N ;
-lin arenavirus_N = mkN "arenavirus" "arenaviruses" ; -- compound virus_N ;
-lin picornavirus_N = mkN "picornavirus" "picornaviruses" ; -- compound virus_N ;
-lin lyssavirus_N = mkN "lyssavirus" "lyssaviruses" ; -- compound virus_N ;
-lin rotavirus_N = mkN "rotavirus" "rotaviruses" ; -- compound virus_N ;
-lin papovavirus_N = mkN "papovavirus" "papovaviruses" ; -- compound virus_N ;
-lin bunyavirus_N = mkN "bunyavirus" "bunyaviruses" ; -- compound virus_N ;
-lin coxsackievirus_N = mkN "coxsackievirus" "coxsackieviruses" ; -- compound virus_N ;
-lin flavivirus_N = mkN "flavivirus" "flaviviruses" ; -- compound virus_N ;
-lin arbovirus_N = mkN "arbovirus" "arboviruses" ; -- compound virus_N ;
-lin rhabdovirus_N = mkN "rhabdovirus" "rhabdoviruses" ; -- compound virus_N ;
-lin reovirus_N = mkN "reovirus" "reoviruses" ; -- compound virus_N ;
-lin echovirus_N = mkN "echovirus" "echoviruses" ; -- compound virus_N ;
-lin poliovirus_N = mkN "poliovirus" "polioviruses" ; -- compound virus_N ;
-lin cytomegalovirus_N = mkN "cytomegalovirus" "cytomegaloviruses" ; -- compound virus_N ;
-lin filovirus_N = mkN "filovirus" "filoviruses" ; -- compound virus_N ;
-lin vesiculovirus_N = mkN "vesiculovirus" "vesiculoviruses" ; -- compound virus_N ;
-lin adenovirus_N = mkN "adenovirus" "adenoviruses" ; -- compound virus_N ;
-lin rhinovirus_N = mkN "rhinovirus" "rhinoviruses" ; -- compound virus_N ;
-lin enterovirus_N = mkN "enterovirus" "enteroviruses" ; -- compound virus_N ;
-lin provirus_N = mkN "provirus" "proviruses" ; -- compound virus_N ;
-lin retrovirus_N = mkN "retrovirus" "retroviruses" ; -- compound virus_N ;
-lin parvovirus_N = mkN "parvovirus" "parvoviruses" ; -- compound virus_N ;
-lin myxovirus_N = mkN "myxovirus" "myxoviruses" ; -- compound virus_N ;
-lin paramyxovirus_N = mkN "paramyxovirus" "paramyxoviruses" ; -- compound virus_N ;
-lin orthomyxovirus_N = mkN "orthomyxovirus" "orthomyxoviruses" ; -- compound virus_N ;
-lin poxvirus_N = mkN "poxvirus" "poxviruses" ; -- compound virus_N ;
-lin walrus_N = mkN "walrus" "walruses" ;
-lin chorus_N = mkN "chorus" "choruses" ;
-lin corchorus_N = mkN "corchorus" "corchoruses" ; -- compound chorus_N ;
-lin electrophorus_N = mkN "electrophorus" "electrophoruses" ;
-lin phosphorus_N = mkN "phosphorus" "phosphoruses" ;
-lin pylorus_N = mkN "pylorus" "pyloruses" ;
-lin sorus_N = mkN "sorus" "soruses" ;
-lin torus_N = mkN "torus" "toruses" ;
-lin cirrus_N = mkN "cirrus" "cirruses" ;
-lin citrus_N = mkN "citrus" "citruses" ;
-lin estrus_N = mkN "estrus" "estruses" ;
-lin diestrus_N = mkN "diestrus" "diestruses" ; -- compound estrus_N ;
-lin anestrus_N = mkN "anestrus" "anestruses" ; -- compound estrus_N ;
-lin thesaurus_N = mkN "thesaurus" "thesauruses" ;
-lin edaphosaurus_N = mkN "edaphosaurus" "edaphosauruses" ;
-lin edmontosaurus_N = mkN "edmontosaurus" "edmontosauruses" ;
-lin ichthyosaurus_N = mkN "ichthyosaurus" "ichthyosauruses" ;
-lin kurus_N = mkN "kurus" "kuruses" ;
-lin gyrus_N = mkN "gyrus" "gyruses" ;
-lin papyrus_N = mkN "papyrus" "papyruses" ;
-lin rhesus_N = mkN "rhesus" "rhesuses" ;
-lin census_N = mkN "census" "censuses" ;
-lin keratonosus_N = mkN "keratonosus" "keratonosuses" ;
-lin metatarsus_N = mkN "metatarsus" "metatarsuses" ;
-lin narcissus_N = mkN "narcissus" "narcissuses" ;
-lin byssus_N = mkN "byssus" "byssuses" ;
-lin meatus_N = mkN "meatus" "meatuses" ;
-lin hiatus_N = mkN "hiatus" "hiatuses" ;
-lin afflatus_N = mkN "afflatus" "afflatuses" ;
-lin apparatus_N = mkN "apparatus" "apparatuses" ;
-lin serratus_N = mkN "serratus" "serratuses" ;
-lin stratus_N = mkN "stratus" "stratuses" ;
-lin cirrostratus_N = mkN "cirrostratus" "cirrostratuses" ; -- compound stratus_N ;
-lin altostratus_N = mkN "altostratus" "altostratuses" ; -- compound stratus_N ;
-lin status_N = mkN "status" "statuses" ;
-lin cactus_N = mkN "cactus" "cactuses" ;
-lin echinocactus_N = mkN "echinocactus" "echinocactuses" ; -- compound cactus_N ;
-lin conspectus_N = mkN "conspectus" "conspectuses" ;
-lin prospectus_N = mkN "prospectus" "prospectuses" ;
-lin rectus_N = mkN "rectus" "rectuses" ;
-lin rictus_N = mkN "rictus" "rictuses" ;
-lin fetus_N = mkN "fetus" "fetuses" ;
-lin quietus_N = mkN "quietus" "quietuses" ;
-lin foetus_N = mkN "foetus" "foetuses" ;
-lin eptatretus_N = mkN "eptatretus" "eptatretuses" ;
-lin habitus_N = mkN "habitus" "habituses" ;
-lin cubitus_N = mkN "cubitus" "cubituses" ;
-lin decubitus_N = mkN "decubitus" "decubituses" ; -- compound cubitus_N ;
-lin halitus_N = mkN "halitus" "halituses" ;
-lin tinnitus_N = mkN "tinnitus" "tinnituses" ;
-lin coitus_N = mkN "coitus" "coituses" ;
-lin introitus_N = mkN "introitus" "introituses" ;
-lin emeritus_N = mkN "emeritus" "emerituses" ;
-lin detritus_N = mkN "detritus" "detrituses" ;
-lin pruritus_N = mkN "pruritus" "prurituses" ;
-lin propositus_N = mkN "propositus" "proposituses" ;
-lin lotus_N = mkN "lotus" "lotuses" ;
-lin melilotus_N = mkN "melilotus" "melilotuses" ; -- compound lotus_N ;
-lin macrotus_N = mkN "macrotus" "macrotuses" ;
-lin eucalyptus_N = mkN "eucalyptus" "eucalyptuses" ;
-lin abortus_N = mkN "abortus" "abortuses" ;
-lin arbutus_N = mkN "arbutus" "arbutuses" ;
-lin favus_N = mkN "favus" "favuses" ;
-lin nexus_N = mkN "nexus" "nexuses" ;
-lin ruckus_N = mkN "ruckus" "ruckuss" ;
-lin religious_N = mkN "religious" "religious" ;
-lin rendezvous_N = mkN "rendezvous" "rendezvous" ;
-lin plexus_N = mkN "plexus" "plexus" ;
-lin jackstraws_N = mkN "jackstraws" "jackstrawses" ;
-lin yaws_N = mkN "yaws" "yawses" ;
-lin clews_N = mkN "clews" "clewses" ;
-lin news_N = mkN "news" "newses" ;
-lin trews_N = mkN "trews" "trewses" ;
-lin gallows_N = mkN "gallows" "gallowses" ;
-lin bellows_N = mkN "bellows" "bellowses" ;
-lin mews_N = mkN "mews" "mews" ;
-lin days_N = mkN "days" "dayses" ;
-lin schooldays_N = mkN "schooldays" "schooldayses" ; -- compound days_N ;
-lin ways_N = mkN "ways" "wayses" ;
-lin longways_N = mkN "longways" "longwayses" ; -- compound ways_N ;
-lin hendiadys_N = mkN "hendiadys" "hendiadyses" ;
-lin 'fleur-de-lys_N' = mkN "fleur-de-lys" "fleur-de-les" ;
-lin chlamys_N = mkN "chlamys" "chlamyses" ;
-lin phenacomys_N = mkN "phenacomys" "phenacomyses" ;
-lin lepidobotrys_N = mkN "lepidobotrys" "lepidobotryses" ;
-lin breakaways_N = mkN "breakaways" "breakawayss" ;
-lin 'coup d\'etat_N' = mkN "coup d'etat" "IRREG" ;
-lin imperfect_N = mkN "imperfect" "IRREG" ;
-lin 'corps de ballet_N' = mkN "corps de ballet" "IRREG" ;
-lin 'wagon-lit_N' = mkN "wagon-lit" "IRREG" ;
-lin occult_N = mkN "occult" "IRREG" ;
-lin gunpoint_N = mkN "gunpoint" "IRREG" ;
-lin 'bon mot_N' = mkN "bon mot" "IRREG" ;
-lin overcast_N = mkN "overcast" "IRREG" ;
-lin least_N = mkN "least" "IRREG" ;
-lin midst_N = mkN "midst" "IRREG" ;
-lin 'chucker-out_N' = mkN "chucker-out" "IRREG" ;
-lin output_N = mkN "output" "IRREG" ;
-lin at_N = mkN "at" "ats" ;
-lin bat_N = mkN "bat" "bats" ; -- notcompound at_N ;
-lin sabbat_N = mkN "sabbat" "sabbats" ; -- compound at_N ;
-lin dingbat_N = mkN "dingbat" "dingbats" ; -- compound at_N ;
-lin brickbat_N = mkN "brickbat" "brickbats" ; -- compound at_N ;
-lin combat_N = mkN "combat" "combats" ; -- compound at_N ;
-lin wombat_N = mkN "wombat" "wombats" ; -- compound at_N ;
-lin numbat_N = mkN "numbat" "numbats" ; -- compound at_N ;
-lin acrobat_N = mkN "acrobat" "acrobats" ; -- compound at_N ;
-lin cat_N = mkN "cat" "cats" ; -- notcompound at_N ;
-lin 'civet-cat_N' = mkN "civet-cat" "civet-cats" ; -- compound at_N ;
-lin 'tabby-cat_N' = mkN "tabby-cat" "tabby-cats" ; -- compound at_N ;
-lin bobcat_N = mkN "bobcat" "bobcats" ; -- compound at_N ;
-lin wildcat_N = mkN "wildcat" "wildcats" ; -- compound at_N ;
-lin polecat_N = mkN "polecat" "polecats" ; -- compound at_N ;
-lin magnificat_N = mkN "magnificat" "magnificats" ; -- compound at_N ;
-lin hellcat_N = mkN "hellcat" "hellcats" ; -- compound at_N ;
-lin tomcat_N = mkN "tomcat" "tomcats" ; -- compound at_N ;
-lin scat_N = mkN "scat" "scats" ; -- notcompound at_N ;
-lin requiescat_N = mkN "requiescat" "requiescats" ; -- compound at_N ;
-lin muscat_N = mkN "muscat" "muscats" ; -- compound at_N ;
-lin ducat_N = mkN "ducat" "ducats" ; -- compound at_N ;
-lin copycat_N = mkN "copycat" "copycats" ; -- compound at_N ;
-lin pussycat_N = mkN "pussycat" "pussycats" ; -- compound at_N ;
-lin concordat_N = mkN "concordat" "concordats" ; -- compound at_N ;
-lin samizdat_N = mkN "samizdat" "samizdats" ; -- compound at_N ;
-lin beat_N = mkN "beat" "beats" ; -- compound at_N ;
-lin 'up-beat_N' = mkN "up-beat" "up-beats" ; -- compound at_N ;
-lin backbeat_N = mkN "backbeat" "backbeats" ; -- compound at_N ;
-lin drumbeat_N = mkN "drumbeat" "drumbeats" ; -- compound at_N ;
-lin downbeat_N = mkN "downbeat" "downbeats" ; -- compound at_N ;
-lin upbeat_N = mkN "upbeat" "upbeats" ; -- compound at_N ;
-lin heartbeat_N = mkN "heartbeat" "heartbeats" ; -- compound at_N ;
-lin feat_N = mkN "feat" "feats" ; -- compound at_N ;
-lin defeat_N = mkN "defeat" "defeats" ; -- compound at_N ;
-lin heat_N = mkN "heat" "heats" ; -- compound at_N ;
-lin 'blood-heat_N' = mkN "blood-heat" "blood-heats" ; -- compound at_N ;
-lin 'steam-heat_N' = mkN "steam-heat" "steam-heats" ; -- compound at_N ;
-lin cheat_N = mkN "cheat" "cheats" ; -- compound at_N ;
-lin escheat_N = mkN "escheat" "escheats" ; -- compound at_N ;
-lin wheat_N = mkN "wheat" "wheats" ; -- compound at_N ;
-lin 'whole-wheat_N' = mkN "whole-wheat" "whole-wheats" ; -- compound at_N ;
-lin buckwheat_N = mkN "buckwheat" "buckwheats" ; -- compound at_N ;
-lin bleat_N = mkN "bleat" "bleats" ; -- compound at_N ;
-lin cleat_N = mkN "cleat" "cleats" ; -- compound at_N ;
-lin pleat_N = mkN "pleat" "pleats" ; -- compound at_N ;
-lin meat_N = mkN "meat" "meats" ; -- compound at_N ;
-lin 'sausage-meat_N' = mkN "sausage-meat" "sausage-meats" ; -- compound at_N ;
-lin mincemeat_N = mkN "mincemeat" "mincemeats" ; -- compound at_N ;
-lin forcemeat_N = mkN "forcemeat" "forcemeats" ; -- compound at_N ;
-lin horsemeat_N = mkN "horsemeat" "horsemeats" ; -- compound at_N ;
-lin sweetmeat_N = mkN "sweetmeat" "sweetmeats" ; -- compound at_N ;
-lin peat_N = mkN "peat" "peats" ; -- compound at_N ;
-lin repeat_N = mkN "repeat" "repeats" ; -- compound at_N ;
-lin great_N = mkN "great" "greats" ; -- compound at_N ;
-lin threat_N = mkN "threat" "threats" ; -- compound at_N ;
-lin treat_N = mkN "treat" "treats" ; -- compound at_N ;
-lin retreat_N = mkN "retreat" "retreats" ; -- compound at_N ;
-lin seat_N = mkN "seat" "seats" ; -- compound at_N ;
-lin 'love-seat_N' = mkN "love-seat" "love-seats" ; -- compound at_N ;
-lin 'ejector-seat_N' = mkN "ejector-seat" "ejector-seats" ; -- compound at_N ;
-lin 'dicky-seat_N' = mkN "dicky-seat" "dicky-seats" ; -- compound at_N ;
-lin 'country-seat_N' = mkN "country-seat" "country-seats" ; -- compound at_N ;
-lin backseat_N = mkN "backseat" "backseats" ; -- compound at_N ;
-lin countryseat_N = mkN "countryseat" "countryseats" ; -- compound at_N ;
-lin teat_N = mkN "teat" "teats" ; -- compound at_N ;
-lin caveat_N = mkN "caveat" "caveats" ; -- compound at_N ;
-lin sweat_N = mkN "sweat" "sweats" ; -- compound at_N ;
-lin fat_N = mkN "fat" "fats" ; -- notcompound at_N ;
-lin butterfat_N = mkN "butterfat" "butterfats" ; -- compound at_N ;
-lin gat_N = mkN "gat" "gats" ; -- notcompound at_N ;
-lin nougat_N = mkN "nougat" "nougats" ; -- compound at_N ;
-lin hat_N = mkN "hat" "hats" ; -- notcompound at_N ;
-lin 'opera-hat_N' = mkN "opera-hat" "opera-hats" ; -- compound at_N ;
-lin 'slouch-hat_N' = mkN "slouch-hat" "slouch-hats" ; -- compound at_N ;
-lin chat_N = mkN "chat" "chats" ; -- notcompound at_N ;
-lin 'chit-chat_N' = mkN "chit-chat" "chit-chats" ; -- compound at_N ;
-lin stonechat_N = mkN "stonechat" "stonechats" ; -- compound at_N ;
-lin backchat_N = mkN "backchat" "backchats" ; -- compound at_N ;
-lin whinchat_N = mkN "whinchat" "whinchats" ; -- compound at_N ;
-lin chitchat_N = mkN "chitchat" "chitchats" ; -- compound at_N ;
-lin ghat_N = mkN "ghat" "ghats" ; -- notcompound at_N ;
-lin sunhat_N = mkN "sunhat" "sunhats" ; -- compound at_N ;
-lin fiat_N = mkN "fiat" "fiats" ; -- compound at_N ;
-lin lariat_N = mkN "lariat" "lariats" ; -- compound at_N ;
-lin commissariat_N = mkN "commissariat" "commissariats" ; -- compound at_N ;
-lin proletariat_N = mkN "proletariat" "proletariats" ; -- compound at_N ;
-lin lumpenproletariat_N = mkN "lumpenproletariat" "lumpenproletariats" ; -- compound at_N ;
-lin secretariat_N = mkN "secretariat" "secretariats" ; -- compound at_N ;
-lin kat_N = mkN "kat" "kats" ; -- notcompound at_N ;
-lin zakat_N = mkN "zakat" "zakats" ; -- compound at_N ;
-lin meerkat_N = mkN "meerkat" "meerkats" ; -- compound at_N ;
-lin lat_N = mkN "lat" "lats" ; -- notcompound at_N ;
-lin salat_N = mkN "salat" "salats" ; -- compound at_N ;
-lin éclat_N = mkN "éclat" "éclats" ; -- notcompound at_N ;
-lin flat_N = mkN "flat" "flats" ; -- notcompound at_N ;
-lin plat_N = mkN "plat" "plats" ; -- notcompound at_N ;
-lin splat_N = mkN "splat" "splats" ; -- notcompound at_N ;
-lin slat_N = mkN "slat" "slats" ; -- notcompound at_N ;
-lin mat_N = mkN "mat" "mats" ; -- notcompound at_N ;
-lin 'prayer-mat_N' = mkN "prayer-mat" "prayer-mats" ; -- compound at_N ;
-lin tablemat_N = mkN "tablemat" "tablemats" ; -- compound at_N ;
-lin anastigmat_N = mkN "anastigmat" "anastigmats" ; -- compound at_N ;
-lin diplomat_N = mkN "diplomat" "diplomats" ; -- compound at_N ;
-lin dichromat_N = mkN "dichromat" "dichromats" ; -- compound at_N ;
-lin monochromat_N = mkN "monochromat" "monochromats" ; -- compound at_N ;
-lin automat_N = mkN "automat" "automats" ; -- compound at_N ;
-lin format_N = mkN "format" "formats" ; -- compound at_N ;
-lin doormat_N = mkN "doormat" "doormats" ; -- compound at_N ;
-lin manat_N = mkN "manat" "manats" ; -- compound at_N ;
-lin gnat_N = mkN "gnat" "gnats" ; -- notcompound at_N ;
-lin oat_N = mkN "oat" "oats" ; -- notcompound at_N ;
-lin boat_N = mkN "boat" "boats" ; -- compound at_N ;
-lin 'sea-boat_N' = mkN "sea-boat" "sea-boats" ; -- compound at_N ;
-lin 'guard-boat_N' = mkN "guard-boat" "guard-boats" ; -- compound at_N ;
-lin 'sauce-boat_N' = mkN "sauce-boat" "sauce-boats" ; -- compound at_N ;
-lin 'pleasure-boat_N' = mkN "pleasure-boat" "pleasure-boats" ; -- compound at_N ;
-lin 'sailing-boat_N' = mkN "sailing-boat" "sailing-boats" ; -- compound at_N ;
-lin 'rowing-boat_N' = mkN "rowing-boat" "rowing-boats" ; -- compound at_N ;
-lin 'torpedo-boat_N' = mkN "torpedo-boat" "torpedo-boats" ; -- compound at_N ;
-lin 'packet-boat_N' = mkN "packet-boat" "packet-boats" ; -- compound at_N ;
-lin 'pilot-boat_N' = mkN "pilot-boat" "pilot-boats" ; -- compound at_N ;
-lin 'u-boat_N' = mkN "u-boat" "u-boats" ; -- compound at_N ;
-lin 'gravy-boat_N' = mkN "gravy-boat" "gravy-boats" ; -- compound at_N ;
-lin speedboat_N = mkN "speedboat" "speedboats" ; -- compound at_N ;
-lin iceboat_N = mkN "iceboat" "iceboats" ; -- compound at_N ;
-lin lifeboat_N = mkN "lifeboat" "lifeboats" ; -- compound at_N ;
-lin whaleboat_N = mkN "whaleboat" "whaleboats" ; -- compound at_N ;
-lin bareboat_N = mkN "bareboat" "bareboats" ; -- compound at_N ;
-lin fireboat_N = mkN "fireboat" "fireboats" ; -- compound at_N ;
-lin houseboat_N = mkN "houseboat" "houseboats" ; -- compound at_N ;
-lin surfboat_N = mkN "surfboat" "surfboats" ; -- compound at_N ;
-lin pigboat_N = mkN "pigboat" "pigboats" ; -- compound at_N ;
-lin longboat_N = mkN "longboat" "longboats" ; -- compound at_N ;
-lin tugboat_N = mkN "tugboat" "tugboats" ; -- compound at_N ;
-lin keelboat_N = mkN "keelboat" "keelboats" ; -- compound at_N ;
-lin mailboat_N = mkN "mailboat" "mailboats" ; -- compound at_N ;
-lin sailboat_N = mkN "sailboat" "sailboats" ; -- compound at_N ;
-lin steamboat_N = mkN "steamboat" "steamboats" ; -- compound at_N ;
-lin bumboat_N = mkN "bumboat" "bumboats" ; -- compound at_N ;
-lin gunboat_N = mkN "gunboat" "gunboats" ; -- compound at_N ;
-lin powerboat_N = mkN "powerboat" "powerboats" ; -- compound at_N ;
-lin motorboat_N = mkN "motorboat" "motorboats" ; -- compound at_N ;
-lin catboat_N = mkN "catboat" "catboats" ; -- compound at_N ;
-lin showboat_N = mkN "showboat" "showboats" ; -- compound at_N ;
-lin rowboat_N = mkN "rowboat" "rowboats" ; -- compound at_N ;
-lin jollyboat_N = mkN "jollyboat" "jollyboats" ; -- compound at_N ;
-lin ferryboat_N = mkN "ferryboat" "ferryboats" ; -- compound at_N ;
-lin coat_N = mkN "coat" "coats" ; -- compound at_N ;
-lin 'frock-coat_N' = mkN "frock-coat" "frock-coats" ; -- compound at_N ;
-lin 'tail-coat_N' = mkN "tail-coat" "tail-coats" ; -- compound at_N ;
-lin 'sports-coat_N' = mkN "sports-coat" "sports-coats" ; -- compound at_N ;
-lin 'dust-coat_N' = mkN "dust-coat" "dust-coats" ; -- compound at_N ;
-lin redcoat_N = mkN "redcoat" "redcoats" ; -- compound at_N ;
-lin housecoat_N = mkN "housecoat" "housecoats" ; -- compound at_N ;
-lin bluecoat_N = mkN "bluecoat" "bluecoats" ; -- compound at_N ;
-lin petticoat_N = mkN "petticoat" "petticoats" ; -- compound at_N ;
-lin raincoat_N = mkN "raincoat" "raincoats" ; -- compound at_N ;
-lin turncoat_N = mkN "turncoat" "turncoats" ; -- compound at_N ;
-lin topcoat_N = mkN "topcoat" "topcoats" ; -- compound at_N ;
-lin undercoat_N = mkN "undercoat" "undercoats" ; -- compound at_N ;
-lin overcoat_N = mkN "overcoat" "overcoats" ; -- compound at_N ;
-lin surcoat_N = mkN "surcoat" "surcoats" ; -- compound at_N ;
-lin greatcoat_N = mkN "greatcoat" "greatcoats" ; -- compound at_N ;
-lin waistcoat_N = mkN "waistcoat" "waistcoats" ; -- compound at_N ;
-lin goat_N = mkN "goat" "goats" ; -- compound at_N ;
-lin 'he-goat_N' = mkN "he-goat" "he-goats" ; -- compound at_N ;
-lin 'she-goat_N' = mkN "she-goat" "she-goats" ; -- compound at_N ;
-lin 'billy-goat_N' = mkN "billy-goat" "billy-goats" ; -- compound at_N ;
-lin 'nanny-goat_N' = mkN "nanny-goat" "nanny-goats" ; -- compound at_N ;
-lin scapegoat_N = mkN "scapegoat" "scapegoats" ; -- compound at_N ;
-lin bloat_N = mkN "bloat" "bloats" ; -- compound at_N ;
-lin float_N = mkN "float" "floats" ; -- compound at_N ;
-lin gloat_N = mkN "gloat" "gloats" ; -- compound at_N ;
-lin moat_N = mkN "moat" "moats" ; -- compound at_N ;
-lin 'serbo-croat_N' = mkN "serbo-croat" "serbo-croats" ; -- compound at_N ;
-lin groat_N = mkN "groat" "groats" ; -- compound at_N ;
-lin throat_N = mkN "throat" "throats" ; -- compound at_N ;
-lin 'cut-throat_N' = mkN "cut-throat" "cut-throats" ; -- compound at_N ;
-lin bluethroat_N = mkN "bluethroat" "bluethroats" ; -- compound at_N ;
-lin cutthroat_N = mkN "cutthroat" "cutthroats" ; -- compound at_N ;
-lin yellowthroat_N = mkN "yellowthroat" "yellowthroats" ; -- compound at_N ;
-lin stoat_N = mkN "stoat" "stoats" ; -- compound at_N ;
-lin pat_N = mkN "pat" "pats" ; -- notcompound at_N ;
-lin spat_N = mkN "spat" "spats" ; -- notcompound at_N ;
-lin rat_N = mkN "rat" "rats" ; -- notcompound at_N ;
-lin 'water-rat_N' = mkN "water-rat" "water-rats" ; -- compound at_N ;
-lin 'sewer-rat_N' = mkN "sewer-rat" "sewer-rats" ; -- compound at_N ;
-lin carat_N = mkN "carat" "carats" ; -- compound at_N ;
-lin baccarat_N = mkN "baccarat" "baccarats" ; -- compound at_N ;
-lin karat_N = mkN "karat" "karats" ; -- compound at_N ;
-lin brat_N = mkN "brat" "brats" ; -- notcompound at_N ;
-lin firebrat_N = mkN "firebrat" "firebrats" ; -- compound at_N ;
-lin democrat_N = mkN "democrat" "democrats" ; -- compound at_N ;
-lin technocrat_N = mkN "technocrat" "technocrats" ; -- compound at_N ;
-lin aristocrat_N = mkN "aristocrat" "aristocrats" ; -- compound at_N ;
-lin autocrat_N = mkN "autocrat" "autocrats" ; -- compound at_N ;
-lin plutocrat_N = mkN "plutocrat" "plutocrats" ; -- compound at_N ;
-lin bureaucrat_N = mkN "bureaucrat" "bureaucrats" ; -- compound at_N ;
-lin packrat_N = mkN "packrat" "packrats" ; -- compound at_N ;
-lin muskrat_N = mkN "muskrat" "muskrats" ; -- compound at_N ;
-lin sprat_N = mkN "sprat" "sprats" ; -- notcompound at_N ;
-lin ziggurat_N = mkN "ziggurat" "ziggurats" ; -- compound at_N ;
-lin tat_N = mkN "tat" "tats" ; -- notcompound at_N ;
-lin 'rat-tat_N' = mkN "rat-tat" "rat-tats" ; -- compound at_N ;
-lin 'rat-a-tat-tat_N' = mkN "rat-a-tat-tat" "rat-a-tat-tats" ; -- compound at_N ;
-lin habitat_N = mkN "habitat" "habitats" ; -- compound at_N ;
-lin rheostat_N = mkN "rheostat" "rheostats" ; -- compound at_N ;
-lin bacteriostat_N = mkN "bacteriostat" "bacteriostats" ; -- compound at_N ;
-lin coelostat_N = mkN "coelostat" "coelostats" ; -- compound at_N ;
-lin hemostat_N = mkN "hemostat" "hemostats" ; -- compound at_N ;
-lin thermostat_N = mkN "thermostat" "thermostats" ; -- compound at_N ;
-lin pyrostat_N = mkN "pyrostat" "pyrostats" ; -- compound at_N ;
-lin photostat_N = mkN "photostat" "photostats" ; -- compound at_N ;
-lin cryostat_N = mkN "cryostat" "cryostats" ; -- compound at_N ;
-lin paraquat_N = mkN "paraquat" "paraquats" ; -- compound at_N ;
-lin kumquat_N = mkN "kumquat" "kumquats" ; -- compound at_N ;
-lin loquat_N = mkN "loquat" "loquats" ; -- compound at_N ;
-lin squat_N = mkN "squat" "squats" ; -- compound at_N ;
-lin vat_N = mkN "vat" "vats" ; -- notcompound at_N ;
-lin avadavat_N = mkN "avadavat" "avadavats" ; -- compound at_N ;
-lin cravat_N = mkN "cravat" "cravats" ; -- compound at_N ;
-lin swat_N = mkN "swat" "swats" ; -- notcompound at_N ;
-lin 'fly-swat_N' = mkN "fly-swat" "fly-swats" ; -- compound at_N ;
-lin bayat_N = mkN "bayat" "bayats" ; -- compound at_N ;
-lin panchayat_N = mkN "panchayat" "panchayats" ; -- compound at_N ;
-lin kyat_N = mkN "kyat" "kyats" ; -- compound at_N ;
-lin debt_N = mkN "debt" "debts" ;
-lin doubt_N = mkN "doubt" "doubts" ;
-lin redoubt_N = mkN "redoubt" "redoubts" ; -- compound doubt_N ;
-lin act_N = mkN "act" "acts" ;
-lin redact_N = mkN "redact" "redacts" ; -- compound act_N ;
-lin autodidact_N = mkN "autodidact" "autodidacts" ; -- compound act_N ;
-lin fact_N = mkN "fact" "facts" ; -- notcompound act_N ;
-lin artefact_N = mkN "artefact" "artefacts" ; -- compound act_N ;
-lin artifact_N = mkN "artifact" "artifacts" ; -- compound act_N ;
-lin pact_N = mkN "pact" "pacts" ; -- notcompound act_N ;
-lin impact_N = mkN "impact" "impacts" ; -- compound act_N ;
-lin compact_N = mkN "compact" "compacts" ; -- compound act_N ;
-lin subcompact_N = mkN "subcompact" "subcompacts" ; -- compound act_N ;
-lin cataract_N = mkN "cataract" "cataracts" ; -- compound act_N ;
-lin bract_N = mkN "bract" "bracts" ; -- notcompound act_N ;
-lin tesseract_N = mkN "tesseract" "tesseracts" ; -- compound act_N ;
-lin tract_N = mkN "tract" "tracts" ; -- notcompound act_N ;
-lin contract_N = mkN "contract" "contracts" ; -- compound act_N ;
-lin subcontract_N = mkN "subcontract" "subcontracts" ; -- compound act_N ;
-lin abstract_N = mkN "abstract" "abstracts" ; -- compound act_N ;
-lin extract_N = mkN "extract" "extracts" ; -- compound act_N ;
-lin tact_N = mkN "tact" "tacts" ; -- notcompound act_N ;
-lin contact_N = mkN "contact" "contacts" ; -- compound act_N ;
-lin defect_N = mkN "defect" "defects" ;
-lin prefect_N = mkN "prefect" "prefects" ;
-lin affect_N = mkN "affect" "affects" ;
-lin effect_N = mkN "effect" "effects" ;
-lin aftereffect_N = mkN "aftereffect" "aftereffects" ; -- compound effect_N ;
-lin pluperfect_N = mkN "pluperfect" "pluperfects" ;
-lin object_N = mkN "object" "objects" ;
-lin subject_N = mkN "subject" "subjects" ;
-lin reject_N = mkN "reject" "rejects" ;
-lin project_N = mkN "project" "projects" ;
-lin introject_N = mkN "introject" "introjects" ;
-lin dialect_N = mkN "dialect" "dialects" ;
-lin neglect_N = mkN "neglect" "neglects" ;
-lin intellect_N = mkN "intellect" "intellects" ;
-lin collect_N = mkN "collect" "collects" ;
-lin idiolect_N = mkN "idiolect" "idiolects" ;
-lin aspect_N = mkN "aspect" "aspects" ;
-lin respect_N = mkN "respect" "respects" ;
-lin 'self-respect_N' = mkN "self-respect" "self-respects" ; -- compound respect_N ;
-lin disrespect_N = mkN "disrespect" "disrespects" ; -- compound respect_N ;
-lin prospect_N = mkN "prospect" "prospects" ;
-lin retrospect_N = mkN "retrospect" "retrospects" ;
-lin suspect_N = mkN "suspect" "suspects" ;
-lin sect_N = mkN "sect" "sects" ;
-lin insect_N = mkN "insect" "insects" ; -- compound sect_N ;
-lin architect_N = mkN "architect" "architects" ;
-lin addict_N = mkN "addict" "addicts" ;
-lin edict_N = mkN "edict" "edicts" ;
-lin interdict_N = mkN "interdict" "interdicts" ;
-lin verdict_N = mkN "verdict" "verdicts" ;
-lin relict_N = mkN "relict" "relicts" ;
-lin derelict_N = mkN "derelict" "derelicts" ; -- compound relict_N ;
-lin conflict_N = mkN "conflict" "conflicts" ;
-lin apomict_N = mkN "apomict" "apomicts" ;
-lin district_N = mkN "district" "districts" ;
-lin convict_N = mkN "convict" "convicts" ;
-lin precinct_N = mkN "precinct" "precincts" ;
-lin instinct_N = mkN "instinct" "instincts" ;
-lin adjunct_N = mkN "adjunct" "adjuncts" ;
-lin ectoproct_N = mkN "ectoproct" "ectoprocts" ;
-lin entoproct_N = mkN "entoproct" "entoprocts" ;
-lin infarct_N = mkN "infarct" "infarcts" ;
-lin duct_N = mkN "duct" "ducts" ;
-lin 'bile-duct_N' = mkN "bile-duct" "bile-ducts" ; -- compound duct_N ;
-lin viaduct_N = mkN "viaduct" "viaducts" ; -- compound duct_N ;
-lin adduct_N = mkN "adduct" "adducts" ; -- compound duct_N ;
-lin aqueduct_N = mkN "aqueduct" "aqueducts" ; -- compound duct_N ;
-lin oviduct_N = mkN "oviduct" "oviducts" ; -- compound duct_N ;
-lin conduct_N = mkN "conduct" "conducts" ; -- compound duct_N ;
-lin 'safe-conduct_N' = mkN "safe-conduct" "safe-conducts" ; -- compound duct_N ;
-lin misconduct_N = mkN "misconduct" "misconducts" ; -- compound duct_N ;
-lin product_N = mkN "product" "products" ; -- compound duct_N ;
-lin byproduct_N = mkN "byproduct" "byproducts" ; -- compound duct_N ;
-lin usufruct_N = mkN "usufruct" "usufructs" ;
-lin ddt_N = mkN "ddt" "ddts" ;
-lin bet_N = mkN "bet" "bets" ;
-lin 'place-bet_N' = mkN "place-bet" "place-bets" ; -- compound bet_N ;
-lin alphabet_N = mkN "alphabet" "alphabets" ; -- compound bet_N ;
-lin 'finger-alphabet_N' = mkN "finger-alphabet" "finger-alphabets" ; -- compound bet_N ;
-lin analphabet_N = mkN "analphabet" "analphabets" ; -- compound bet_N ;
-lin rabbet_N = mkN "rabbet" "rabbets" ; -- compound bet_N ;
-lin gibbet_N = mkN "gibbet" "gibbets" ; -- compound bet_N ;
-lin flibbertigibbet_N = mkN "flibbertigibbet" "flibbertigibbets" ; -- compound bet_N ;
-lin gobbet_N = mkN "gobbet" "gobbets" ; -- compound bet_N ;
-lin quodlibet_N = mkN "quodlibet" "quodlibets" ; -- compound bet_N ;
-lin barbet_N = mkN "barbet" "barbets" ; -- compound bet_N ;
-lin sherbet_N = mkN "sherbet" "sherbets" ; -- compound bet_N ;
-lin sorbet_N = mkN "sorbet" "sorbets" ; -- compound bet_N ;
-lin facet_N = mkN "facet" "facets" ;
-lin lancet_N = mkN "lancet" "lancets" ;
-lin avocet_N = mkN "avocet" "avocets" ;
-lin faucet_N = mkN "faucet" "faucets" ;
-lin cadet_N = mkN "cadet" "cadets" ;
-lin bidet_N = mkN "bidet" "bidets" ;
-lin beet_N = mkN "beet" "beets" ;
-lin sheet_N = mkN "sheet" "sheets" ;
-lin 'balance-sheet_N' = mkN "balance-sheet" "balance-sheets" ; -- compound sheet_N ;
-lin 'charge-sheet_N' = mkN "charge-sheet" "charge-sheets" ; -- compound sheet_N ;
-lin 'time-sheet_N' = mkN "time-sheet" "time-sheets" ; -- compound sheet_N ;
-lin 'winding-sheet_N' = mkN "winding-sheet" "winding-sheets" ; -- compound sheet_N ;
-lin 'dust-sheet_N' = mkN "dust-sheet" "dust-sheets" ; -- compound sheet_N ;
-lin spreadsheet_N = mkN "spreadsheet" "spreadsheets" ; -- compound sheet_N ;
-lin broadsheet_N = mkN "broadsheet" "broadsheets" ; -- compound sheet_N ;
-lin groundsheet_N = mkN "groundsheet" "groundsheets" ; -- compound sheet_N ;
-lin worksheet_N = mkN "worksheet" "worksheets" ; -- compound sheet_N ;
-lin newssheet_N = mkN "newssheet" "newssheets" ; -- compound sheet_N ;
-lin paysheet_N = mkN "paysheet" "paysheets" ; -- compound sheet_N ;
-lin parakeet_N = mkN "parakeet" "parakeets" ;
-lin lorikeet_N = mkN "lorikeet" "lorikeets" ;
-lin skeet_N = mkN "skeet" "skeets" ;
-lin fleet_N = mkN "fleet" "fleets" ;
-lin gleet_N = mkN "gleet" "gleets" ;
-lin sleet_N = mkN "sleet" "sleets" ;
-lin meet_N = mkN "meet" "meets" ;
-lin helpmeet_N = mkN "helpmeet" "helpmeets" ; -- compound meet_N ;
-lin street_N = mkN "street" "streets" ;
-lin sweet_N = mkN "sweet" "sweets" ;
-lin bittersweet_N = mkN "bittersweet" "bittersweets" ; -- compound sweet_N ;
-lin tweet_N = mkN "tweet" "tweets" ;
-lin buffet_N = mkN "buffet" "buffets" ;
-lin get_N = mkN "get" "gets" ;
-lin gadget_N = mkN "gadget" "gadgets" ; -- compound get_N ;
-lin fidget_N = mkN "fidget" "fidgets" ; -- compound get_N ;
-lin midget_N = mkN "midget" "midgets" ; -- compound get_N ;
-lin budget_N = mkN "budget" "budgets" ; -- compound get_N ;
-lin nugget_N = mkN "nugget" "nuggets" ; -- compound get_N ;
-lin drugget_N = mkN "drugget" "druggets" ; -- compound get_N ;
-lin parget_N = mkN "parget" "pargets" ; -- compound get_N ;
-lin target_N = mkN "target" "targets" ; -- compound get_N ;
-lin gorget_N = mkN "gorget" "gorgets" ; -- compound get_N ;
-lin cachet_N = mkN "cachet" "cachets" ;
-lin sachet_N = mkN "sachet" "sachets" ;
-lin planchet_N = mkN "planchet" "planchets" ;
-lin ricochet_N = mkN "ricochet" "ricochets" ;
-lin crochet_N = mkN "crochet" "crochets" ;
-lin hatchet_N = mkN "hatchet" "hatchets" ;
-lin latchet_N = mkN "latchet" "latchets" ;
-lin matchet_N = mkN "matchet" "matchets" ;
-lin ratchet_N = mkN "ratchet" "ratchets" ;
-lin crotchet_N = mkN "crotchet" "crotchets" ;
-lin nymphet_N = mkN "nymphet" "nymphets" ;
-lin prophet_N = mkN "prophet" "prophets" ;
-lin freshet_N = mkN "freshet" "freshets" ;
-lin epithet_N = mkN "epithet" "epithets" ;
-lin diet_N = mkN "diet" "diets" ;
-lin quiet_N = mkN "quiet" "quiets" ;
-lin disquiet_N = mkN "disquiet" "disquiets" ; -- compound quiet_N ;
-lin Soviet_N = mkN "Soviet" "Soviets" ;
-lin jet_N = mkN "jet" "jets" ;
-lin ramjet_N = mkN "ramjet" "ramjets" ; -- compound jet_N ;
-lin fanjet_N = mkN "fanjet" "fanjets" ; -- compound jet_N ;
-lin twinjet_N = mkN "twinjet" "twinjets" ; -- compound jet_N ;
-lin jumbojet_N = mkN "jumbojet" "jumbojets" ; -- compound jet_N ;
-lin turbojet_N = mkN "turbojet" "turbojets" ; -- compound jet_N ;
-lin propjet_N = mkN "propjet" "propjets" ; -- compound jet_N ;
-lin jacket_N = mkN "jacket" "jackets" ;
-lin 'pea-jacket_N' = mkN "pea-jacket" "pea-jackets" ; -- compound jacket_N ;
-lin 'life-jacket_N' = mkN "life-jacket" "life-jackets" ; -- compound jacket_N ;
-lin 'blue-jacket_N' = mkN "blue-jacket" "blue-jackets" ; -- compound jacket_N ;
-lin 'leather-jacket_N' = mkN "leather-jacket" "leather-jackets" ; -- compound jacket_N ;
-lin 'dinner-jacket_N' = mkN "dinner-jacket" "dinner-jackets" ; -- compound jacket_N ;
-lin 'water-jacket_N' = mkN "water-jacket" "water-jackets" ; -- compound jacket_N ;
-lin 'mess-jacket_N' = mkN "mess-jacket" "mess-jackets" ; -- compound jacket_N ;
-lin 'sports-jacket_N' = mkN "sports-jacket" "sports-jackets" ; -- compound jacket_N ;
-lin 'dust-jacket_N' = mkN "dust-jacket" "dust-jackets" ; -- compound jacket_N ;
-lin 'donkey-jacket_N' = mkN "donkey-jacket" "donkey-jackets" ; -- compound jacket_N ;
-lin 'monkey-jacket_N' = mkN "monkey-jacket" "monkey-jackets" ; -- compound jacket_N ;
-lin bluejacket_N = mkN "bluejacket" "bluejackets" ; -- compound jacket_N ;
-lin leatherjacket_N = mkN "leatherjacket" "leatherjackets" ; -- compound jacket_N ;
-lin straitjacket_N = mkN "straitjacket" "straitjackets" ; -- compound jacket_N ;
-lin placket_N = mkN "placket" "plackets" ;
-lin packet_N = mkN "packet" "packets" ;
-lin 'pay-packet_N' = mkN "pay-packet" "pay-packets" ; -- compound packet_N ;
-lin racket_N = mkN "racket" "rackets" ;
-lin bracket_N = mkN "bracket" "brackets" ; -- notcompound racket_N ;
-lin 'age-bracket_N' = mkN "age-bracket" "age-brackets" ; -- compound racket_N ;
-lin 'gas-bracket_N' = mkN "gas-bracket" "gas-brackets" ; -- compound racket_N ;
-lin becket_N = mkN "becket" "beckets" ;
-lin thicket_N = mkN "thicket" "thickets" ;
-lin picket_N = mkN "picket" "pickets" ;
-lin cricket_N = mkN "cricket" "crickets" ;
-lin pricket_N = mkN "pricket" "prickets" ;
-lin ticket_N = mkN "ticket" "tickets" ;
-lin 'season-ticket_N' = mkN "season-ticket" "season-tickets" ; -- compound ticket_N ;
-lin 'pawn-ticket_N' = mkN "pawn-ticket" "pawn-tickets" ; -- compound ticket_N ;
-lin wicket_N = mkN "wicket" "wickets" ;
-lin docket_N = mkN "docket" "dockets" ;
-lin locket_N = mkN "locket" "lockets" ;
-lin pocket_N = mkN "pocket" "pockets" ;
-lin 'patch-pocket_N' = mkN "patch-pocket" "patch-pockets" ; -- compound pocket_N ;
-lin 'hip-pocket_N' = mkN "hip-pocket" "hip-pockets" ; -- compound pocket_N ;
-lin pickpocket_N = mkN "pickpocket" "pickpockets" ; -- compound pocket_N ;
-lin rocket_N = mkN "rocket" "rockets" ;
-lin 'space-rocket_N' = mkN "space-rocket" "space-rockets" ; -- compound rocket_N ;
-lin brocket_N = mkN "brocket" "brockets" ; -- notcompound rocket_N ;
-lin crocket_N = mkN "crocket" "crockets" ; -- notcompound rocket_N ;
-lin retrorocket_N = mkN "retrorocket" "retrorockets" ; -- compound rocket_N ;
-lin sprocket_N = mkN "sprocket" "sprockets" ; -- notcompound rocket_N ;
-lin skyrocket_N = mkN "skyrocket" "skyrockets" ; -- compound rocket_N ;
-lin socket_N = mkN "socket" "sockets" ;
-lin bucket_N = mkN "bucket" "buckets" ;
-lin blanket_N = mkN "blanket" "blankets" ;
-lin trinket_N = mkN "trinket" "trinkets" ;
-lin junket_N = mkN "junket" "junkets" ;
-lin market_N = mkN "market" "markets" ;
-lin supermarket_N = mkN "supermarket" "supermarkets" ; -- compound market_N ;
-lin hypermarket_N = mkN "hypermarket" "hypermarkets" ; -- compound market_N ;
-lin newmarket_N = mkN "newmarket" "newmarkets" ; -- compound market_N ;
-lin basket_N = mkN "basket" "baskets" ;
-lin 'waste-paper-basket_N' = mkN "waste-paper-basket" "waste-paper-baskets" ; -- compound basket_N ;
-lin 'litter-basket_N' = mkN "litter-basket" "litter-baskets" ; -- compound basket_N ;
-lin 'clothes-basket_N' = mkN "clothes-basket" "clothes-baskets" ; -- compound basket_N ;
-lin breadbasket_N = mkN "breadbasket" "breadbaskets" ; -- compound basket_N ;
-lin wastebasket_N = mkN "wastebasket" "wastebaskets" ; -- compound basket_N ;
-lin workbasket_N = mkN "workbasket" "workbaskets" ; -- compound basket_N ;
-lin casket_N = mkN "casket" "caskets" ;
-lin gasket_N = mkN "gasket" "gaskets" ;
-lin brisket_N = mkN "brisket" "briskets" ;
-lin musket_N = mkN "musket" "muskets" ;
-lin let_N = mkN "let" "lets" ;
-lin chalet_N = mkN "chalet" "chalets" ; -- compound let_N ;
-lin valet_N = mkN "valet" "valets" ; -- compound let_N ;
-lin tablet_N = mkN "tablet" "tablets" ; -- compound let_N ;
-lin giblet_N = mkN "giblet" "giblets" ; -- compound let_N ;
-lin driblet_N = mkN "driblet" "driblets" ; -- compound let_N ;
-lin bomblet_N = mkN "bomblet" "bomblets" ; -- compound let_N ;
-lin goblet_N = mkN "goblet" "goblets" ; -- compound let_N ;
-lin doublet_N = mkN "doublet" "doublets" ; -- compound let_N ;
-lin shrublet_N = mkN "shrublet" "shrublets" ; -- compound let_N ;
-lin circlet_N = mkN "circlet" "circlets" ; -- compound let_N ;
-lin bracelet_N = mkN "bracelet" "bracelets" ; -- compound let_N ;
-lin lancelet_N = mkN "lancelet" "lancelets" ; -- compound let_N ;
-lin rondelet_N = mkN "rondelet" "rondelets" ; -- compound let_N ;
-lin treelet_N = mkN "treelet" "treelets" ; -- compound let_N ;
-lin omelet_N = mkN "omelet" "omelets" ; -- compound let_N ;
-lin drupelet_N = mkN "drupelet" "drupelets" ; -- compound let_N ;
-lin corselet_N = mkN "corselet" "corselets" ; -- compound let_N ;
-lin platelet_N = mkN "platelet" "platelets" ; -- compound let_N ;
-lin mantelet_N = mkN "mantelet" "mantelets" ; -- compound let_N ;
-lin eyelet_N = mkN "eyelet" "eyelets" ; -- compound let_N ;
-lin leaflet_N = mkN "leaflet" "leaflets" ; -- compound let_N ;
-lin aglet_N = mkN "aglet" "aglets" ; -- compound let_N ;
-lin eaglet_N = mkN "eaglet" "eaglets" ; -- compound let_N ;
-lin piglet_N = mkN "piglet" "piglets" ; -- compound let_N ;
-lin kinglet_N = mkN "kinglet" "kinglets" ; -- compound let_N ;
-lin ringlet_N = mkN "ringlet" "ringlets" ; -- compound let_N ;
-lin singlet_N = mkN "singlet" "singlets" ; -- compound let_N ;
-lin branchlet_N = mkN "branchlet" "branchlets" ; -- compound let_N ;
-lin pamphlet_N = mkN "pamphlet" "pamphlets" ; -- compound let_N ;
-lin filet_N = mkN "filet" "filets" ; -- compound let_N ;
-lin toilet_N = mkN "toilet" "toilets" ; -- compound let_N ;
-lin necklet_N = mkN "necklet" "necklets" ; -- compound let_N ;
-lin anklet_N = mkN "anklet" "anklets" ; -- compound let_N ;
-lin booklet_N = mkN "booklet" "booklets" ; -- compound let_N ;
-lin brooklet_N = mkN "brooklet" "brooklets" ; -- compound let_N ;
-lin auklet_N = mkN "auklet" "auklets" ; -- compound let_N ;
-lin ballet_N = mkN "ballet" "ballets" ; -- compound let_N ;
-lin mallet_N = mkN "mallet" "mallets" ; -- compound let_N ;
-lin pallet_N = mkN "pallet" "pallets" ; -- compound let_N ;
-lin sallet_N = mkN "sallet" "sallets" ; -- compound let_N ;
-lin wallet_N = mkN "wallet" "wallets" ; -- compound let_N ;
-lin pellet_N = mkN "pellet" "pellets" ; -- compound let_N ;
-lin billet_N = mkN "billet" "billets" ; -- compound let_N ;
-lin fillet_N = mkN "fillet" "fillets" ; -- compound let_N ;
-lin skillet_N = mkN "skillet" "skillets" ; -- compound let_N ;
-lin millet_N = mkN "millet" "millets" ; -- compound let_N ;
-lin willet_N = mkN "willet" "willets" ; -- compound let_N ;
-lin collet_N = mkN "collet" "collets" ; -- compound let_N ;
-lin bullet_N = mkN "bullet" "bullets" ; -- compound let_N ;
-lin gullet_N = mkN "gullet" "gullets" ; -- compound let_N ;
-lin mullet_N = mkN "mullet" "mullets" ; -- compound let_N ;
-lin pullet_N = mkN "pullet" "pullets" ; -- compound let_N ;
-lin camlet_N = mkN "camlet" "camlets" ; -- compound let_N ;
-lin streamlet_N = mkN "streamlet" "streamlets" ; -- compound let_N ;
-lin hamlet_N = mkN "hamlet" "hamlets" ; -- compound let_N ;
-lin gimlet_N = mkN "gimlet" "gimlets" ; -- compound let_N ;
-lin armlet_N = mkN "armlet" "armlets" ; -- compound let_N ;
-lin inlet_N = mkN "inlet" "inlets" ; -- compound let_N ;
-lin flageolet_N = mkN "flageolet" "flageolets" ; -- compound let_N ;
-lin violet_N = mkN "violet" "violets" ; -- compound let_N ;
-lin ultraviolet_N = mkN "ultraviolet" "ultraviolets" ; -- compound let_N ;
-lin chaplet_N = mkN "chaplet" "chaplets" ; -- compound let_N ;
-lin triplet_N = mkN "triplet" "triplets" ; -- compound let_N ;
-lin templet_N = mkN "templet" "templets" ; -- compound let_N ;
-lin droplet_N = mkN "droplet" "droplets" ; -- compound let_N ;
-lin applet_N = mkN "applet" "applets" ; -- compound let_N ;
-lin couplet_N = mkN "couplet" "couplets" ; -- compound let_N ;
-lin quadruplet_N = mkN "quadruplet" "quadruplets" ; -- compound let_N ;
-lin quintuplet_N = mkN "quintuplet" "quintuplets" ; -- compound let_N ;
-lin scarlet_N = mkN "scarlet" "scarlets" ; -- compound let_N ;
-lin starlet_N = mkN "starlet" "starlets" ; -- compound let_N ;
-lin varlet_N = mkN "varlet" "varlets" ; -- compound let_N ;
-lin coverlet_N = mkN "coverlet" "coverlets" ; -- compound let_N ;
-lin haslet_N = mkN "haslet" "haslets" ; -- compound let_N ;
-lin islet_N = mkN "islet" "islets" ; -- compound let_N ;
-lin corslet_N = mkN "corslet" "corslets" ; -- compound let_N ;
-lin flatlet_N = mkN "flatlet" "flatlets" ; -- compound let_N ;
-lin swiftlet_N = mkN "swiftlet" "swiftlets" ; -- compound let_N ;
-lin fruitlet_N = mkN "fruitlet" "fruitlets" ; -- compound let_N ;
-lin gantlet_N = mkN "gantlet" "gantlets" ; -- compound let_N ;
-lin plantlet_N = mkN "plantlet" "plantlets" ; -- compound let_N ;
-lin frontlet_N = mkN "frontlet" "frontlets" ; -- compound let_N ;
-lin gauntlet_N = mkN "gauntlet" "gauntlets" ; -- compound let_N ;
-lin rootlet_N = mkN "rootlet" "rootlets" ; -- compound let_N ;
-lin tartlet_N = mkN "tartlet" "tartlets" ; -- compound let_N ;
-lin wristlet_N = mkN "wristlet" "wristlets" ; -- compound let_N ;
-lin cutlet_N = mkN "cutlet" "cutlets" ; -- compound let_N ;
-lin nutlet_N = mkN "nutlet" "nutlets" ; -- compound let_N ;
-lin outlet_N = mkN "outlet" "outlets" ; -- compound let_N ;
-lin epaulet_N = mkN "epaulet" "epaulets" ; -- compound let_N ;
-lin piculet_N = mkN "piculet" "piculets" ; -- compound let_N ;
-lin amulet_N = mkN "amulet" "amulets" ; -- compound let_N ;
-lin annulet_N = mkN "annulet" "annulets" ; -- compound let_N ;
-lin rivulet_N = mkN "rivulet" "rivulets" ; -- compound let_N ;
-lin owlet_N = mkN "owlet" "owlets" ; -- compound let_N ;
-lin playlet_N = mkN "playlet" "playlets" ; -- compound let_N ;
-lin stylet_N = mkN "stylet" "stylets" ; -- compound let_N ;
-lin helmet_N = mkN "helmet" "helmets" ;
-lin 'space-helmet_N' = mkN "space-helmet" "space-helmets" ; -- compound helmet_N ;
-lin 'crash-helmet_N' = mkN "crash-helmet" "crash-helmets" ; -- compound helmet_N ;
-lin 'sun-helmet_N' = mkN "sun-helmet" "sun-helmets" ; -- compound helmet_N ;
-lin 'gas-helmet_N' = mkN "gas-helmet" "gas-helmets" ; -- compound helmet_N ;
-lin pelmet_N = mkN "pelmet" "pelmets" ;
-lin plummet_N = mkN "plummet" "plummets" ;
-lin comet_N = mkN "comet" "comets" ;
-lin armet_N = mkN "armet" "armets" ;
-lin gourmet_N = mkN "gourmet" "gourmets" ;
-lin kismet_N = mkN "kismet" "kismets" ;
-lin calumet_N = mkN "calumet" "calumets" ;
-lin net_N = mkN "net" "nets" ;
-lin 'landing-net_N' = mkN "landing-net" "landing-nets" ; -- compound net_N ;
-lin 'trawl-net_N' = mkN "trawl-net" "trawl-nets" ; -- compound net_N ;
-lin 'mosquito-net_N' = mkN "mosquito-net" "mosquito-nets" ; -- compound net_N ;
-lin 'drift-net_N' = mkN "drift-net" "drift-nets" ; -- compound net_N ;
-lin toucanet_N = mkN "toucanet" "toucanets" ; -- compound net_N ;
-lin planet_N = mkN "planet" "planets" ; -- compound net_N ;
-lin intranet_N = mkN "intranet" "intranets" ; -- compound net_N ;
-lin wordnet_N = mkN "wordnet" "wordnets" ; -- compound net_N ;
-lin sarcenet_N = mkN "sarcenet" "sarcenets" ; -- compound net_N ;
-lin genet_N = mkN "genet" "genets" ; -- compound net_N ;
-lin tenet_N = mkN "tenet" "tenets" ; -- compound net_N ;
-lin magnet_N = mkN "magnet" "magnets" ; -- compound net_N ;
-lin diamagnet_N = mkN "diamagnet" "diamagnets" ; -- compound net_N ;
-lin paramagnet_N = mkN "paramagnet" "paramagnets" ; -- compound net_N ;
-lin electromagnet_N = mkN "electromagnet" "electromagnets" ; -- compound net_N ;
-lin dragnet_N = mkN "dragnet" "dragnets" ; -- compound net_N ;
-lin signet_N = mkN "signet" "signets" ; -- compound net_N ;
-lin cygnet_N = mkN "cygnet" "cygnets" ; -- compound net_N ;
-lin fishnet_N = mkN "fishnet" "fishnets" ; -- compound net_N ;
-lin cabinet_N = mkN "cabinet" "cabinets" ; -- compound net_N ;
-lin stockinet_N = mkN "stockinet" "stockinets" ; -- compound net_N ;
-lin estaminet_N = mkN "estaminet" "estaminets" ; -- compound net_N ;
-lin spinet_N = mkN "spinet" "spinets" ; -- compound net_N ;
-lin clarinet_N = mkN "clarinet" "clarinets" ; -- compound net_N ;
-lin basinet_N = mkN "basinet" "basinets" ; -- compound net_N ;
-lin bassinet_N = mkN "bassinet" "bassinets" ; -- compound net_N ;
-lin satinet_N = mkN "satinet" "satinets" ; -- compound net_N ;
-lin martinet_N = mkN "martinet" "martinets" ; -- compound net_N ;
-lin gannet_N = mkN "gannet" "gannets" ; -- compound net_N ;
-lin bennet_N = mkN "bennet" "bennets" ; -- compound net_N ;
-lin jennet_N = mkN "jennet" "jennets" ; -- compound net_N ;
-lin rennet_N = mkN "rennet" "rennets" ; -- compound net_N ;
-lin linnet_N = mkN "linnet" "linnets" ; -- compound net_N ;
-lin bonnet_N = mkN "bonnet" "bonnets" ; -- compound net_N ;
-lin 'poke-bonnet_N' = mkN "poke-bonnet" "poke-bonnets" ; -- compound net_N ;
-lin bluebonnet_N = mkN "bluebonnet" "bluebonnets" ; -- compound net_N ;
-lin sunbonnet_N = mkN "sunbonnet" "sunbonnets" ; -- compound net_N ;
-lin sonnet_N = mkN "sonnet" "sonnets" ; -- compound net_N ;
-lin punnet_N = mkN "punnet" "punnets" ; -- compound net_N ;
-lin jaconet_N = mkN "jaconet" "jaconets" ; -- compound net_N ;
-lin dragonet_N = mkN "dragonet" "dragonets" ; -- compound net_N ;
-lin lionet_N = mkN "lionet" "lionets" ; -- compound net_N ;
-lin baronet_N = mkN "baronet" "baronets" ; -- compound net_N ;
-lin coronet_N = mkN "coronet" "coronets" ; -- compound net_N ;
-lin bayonet_N = mkN "bayonet" "bayonets" ; -- compound net_N ;
-lin garnet_N = mkN "garnet" "garnets" ; -- compound net_N ;
-lin ethernet_N = mkN "ethernet" "ethernets" ; -- compound net_N ;
-lin internet_N = mkN "internet" "internets" ; -- compound net_N ;
-lin hairnet_N = mkN "hairnet" "hairnets" ; -- compound net_N ;
-lin cornet_N = mkN "cornet" "cornets" ; -- compound net_N ;
-lin hornet_N = mkN "hornet" "hornets" ; -- compound net_N ;
-lin brunet_N = mkN "brunet" "brunets" ; -- compound net_N ;
-lin poet_N = mkN "poet" "poets" ;
-lin pet_N = mkN "pet" "pets" ;
-lin parapet_N = mkN "parapet" "parapets" ; -- compound pet_N ;
-lin pipet_N = mkN "pipet" "pipets" ; -- compound pet_N ;
-lin limpet_N = mkN "limpet" "limpets" ; -- compound pet_N ;
-lin crumpet_N = mkN "crumpet" "crumpets" ; -- compound pet_N ;
-lin trumpet_N = mkN "trumpet" "trumpets" ; -- compound pet_N ;
-lin 'speaking-trumpet_N' = mkN "speaking-trumpet" "speaking-trumpets" ; -- compound pet_N ;
-lin 'ear-trumpet_N' = mkN "ear-trumpet" "ear-trumpets" ; -- compound pet_N ;
-lin strumpet_N = mkN "strumpet" "strumpets" ; -- compound pet_N ;
-lin lappet_N = mkN "lappet" "lappets" ; -- compound pet_N ;
-lin tappet_N = mkN "tappet" "tappets" ; -- compound pet_N ;
-lin whippet_N = mkN "whippet" "whippets" ; -- compound pet_N ;
-lin snippet_N = mkN "snippet" "snippets" ; -- compound pet_N ;
-lin tippet_N = mkN "tippet" "tippets" ; -- compound pet_N ;
-lin moppet_N = mkN "moppet" "moppets" ; -- compound pet_N ;
-lin poppet_N = mkN "poppet" "poppets" ; -- compound pet_N ;
-lin puppet_N = mkN "puppet" "puppets" ; -- compound pet_N ;
-lin carpet_N = mkN "carpet" "carpets" ; -- compound pet_N ;
-lin 'stair-carpet_N' = mkN "stair-carpet" "stair-carpets" ; -- compound pet_N ;
-lin cabaret_N = mkN "cabaret" "cabarets" ;
-lin caret_N = mkN "caret" "carets" ;
-lin claret_N = mkN "claret" "clarets" ;
-lin imaret_N = mkN "imaret" "imarets" ;
-lin minaret_N = mkN "minaret" "minarets" ;
-lin lazaret_N = mkN "lazaret" "lazarets" ;
-lin secret_N = mkN "secret" "secrets" ;
-lin beret_N = mkN "beret" "berets" ;
-lin solleret_N = mkN "solleret" "sollerets" ;
-lin swimmeret_N = mkN "swimmeret" "swimmerets" ;
-lin leveret_N = mkN "leveret" "leverets" ;
-lin fret_N = mkN "fret" "frets" ;
-lin pomfret_N = mkN "pomfret" "pomfrets" ; -- compound fret_N ;
-lin egret_N = mkN "egret" "egrets" ;
-lin regret_N = mkN "regret" "regrets" ; -- notcompound egret_N ;
-lin aigret_N = mkN "aigret" "aigrets" ;
-lin taboret_N = mkN "taboret" "taborets" ;
-lin floret_N = mkN "floret" "florets" ;
-lin garret_N = mkN "garret" "garrets" ;
-lin ferret_N = mkN "ferret" "ferrets" ;
-lin skirret_N = mkN "skirret" "skirrets" ;
-lin turret_N = mkN "turret" "turrets" ;
-lin set_N = mkN "set" "sets" ;
-lin 'tea-set_N' = mkN "tea-set" "tea-sets" ; -- compound set_N ;
-lin 'receiving-set_N' = mkN "receiving-set" "receiving-sets" ; -- compound set_N ;
-lin 'radio-set_N' = mkN "radio-set" "radio-sets" ; -- compound set_N ;
-lin 'dinner-set_N' = mkN "dinner-set" "dinner-sets" ; -- compound set_N ;
-lin subset_N = mkN "subset" "subsets" ; -- compound set_N ;
-lin headset_N = mkN "headset" "headsets" ; -- compound set_N ;
-lin handset_N = mkN "handset" "handsets" ; -- compound set_N ;
-lin boneset_N = mkN "boneset" "bonesets" ; -- compound set_N ;
-lin reset_N = mkN "reset" "resets" ; -- compound set_N ;
-lin offset_N = mkN "offset" "offsets" ; -- compound set_N ;
-lin quickset_N = mkN "quickset" "quicksets" ; -- compound set_N ;
-lin inset_N = mkN "inset" "insets" ; -- compound set_N ;
-lin onset_N = mkN "onset" "onsets" ; -- compound set_N ;
-lin quonset_N = mkN "quonset" "quonsets" ; -- compound set_N ;
-lin sunset_N = mkN "sunset" "sunsets" ; -- compound set_N ;
-lin synset_N = mkN "synset" "synsets" ; -- compound set_N ;
-lin closet_N = mkN "closet" "closets" ; -- compound set_N ;
-lin 'china-closet_N' = mkN "china-closet" "china-closets" ; -- compound set_N ;
-lin 'earth-closet_N' = mkN "earth-closet" "earth-closets" ; -- compound set_N ;
-lin 'water-closet_N' = mkN "water-closet" "water-closets" ; -- compound set_N ;
-lin marmoset_N = mkN "marmoset" "marmosets" ; -- compound set_N ;
-lin upset_N = mkN "upset" "upsets" ; -- compound set_N ;
-lin gearset_N = mkN "gearset" "gearsets" ; -- compound set_N ;
-lin corset_N = mkN "corset" "corsets" ; -- compound set_N ;
-lin asset_N = mkN "asset" "assets" ; -- compound set_N ;
-lin basset_N = mkN "basset" "bassets" ; -- compound set_N ;
-lin tasset_N = mkN "tasset" "tassets" ; -- compound set_N ;
-lin knesset_N = mkN "knesset" "knessets" ; -- compound set_N ;
-lin posset_N = mkN "posset" "possets" ; -- compound set_N ;
-lin gusset_N = mkN "gusset" "gussets" ; -- compound set_N ;
-lin russet_N = mkN "russet" "russets" ; -- compound set_N ;
-lin outset_N = mkN "outset" "outsets" ; -- compound set_N ;
-lin octet_N = mkN "octet" "octets" ;
-lin quintet_N = mkN "quintet" "quintets" ;
-lin motet_N = mkN "motet" "motets" ;
-lin septet_N = mkN "septet" "septets" ;
-lin quartet_N = mkN "quartet" "quartets" ;
-lin sestet_N = mkN "sestet" "sestets" ;
-lin sextet_N = mkN "sextet" "sextets" ;
-lin duet_N = mkN "duet" "duets" ;
-lin baguet_N = mkN "baguet" "baguets" ;
-lin minuet_N = mkN "minuet" "minuets" ;
-lin racquet_N = mkN "racquet" "racquets" ;
-lin tourniquet_N = mkN "tourniquet" "tourniquets" ;
-lin piquet_N = mkN "piquet" "piquets" ;
-lin briquet_N = mkN "briquet" "briquets" ;
-lin sobriquet_N = mkN "sobriquet" "sobriquets" ; -- compound briquet_N ;
-lin soubriquet_N = mkN "soubriquet" "soubriquets" ; -- compound briquet_N ;
-lin banquet_N = mkN "banquet" "banquets" ;
-lin paroquet_N = mkN "paroquet" "paroquets" ;
-lin croquet_N = mkN "croquet" "croquets" ;
-lin parquet_N = mkN "parquet" "parquets" ;
-lin casquet_N = mkN "casquet" "casquets" ;
-lin bouquet_N = mkN "bouquet" "bouquets" ;
-lin cruet_N = mkN "cruet" "cruets" ;
-lin suet_N = mkN "suet" "suets" ;
-lin vet_N = mkN "vet" "vets" ;
-lin brevet_N = mkN "brevet" "brevets" ; -- compound vet_N ;
-lin civet_N = mkN "civet" "civets" ; -- compound vet_N ;
-lin rivet_N = mkN "rivet" "rivets" ; -- compound vet_N ;
-lin grivet_N = mkN "grivet" "grivets" ; -- compound vet_N ;
-lin privet_N = mkN "privet" "privets" ; -- compound vet_N ;
-lin trivet_N = mkN "trivet" "trivets" ; -- compound vet_N ;
-lin swivet_N = mkN "swivet" "swivets" ; -- compound vet_N ;
-lin velvet_N = mkN "velvet" "velvets" ; -- compound vet_N ;
-lin vervet_N = mkN "vervet" "vervets" ; -- compound vet_N ;
-lin curvet_N = mkN "curvet" "curvets" ; -- compound vet_N ;
-lin duvet_N = mkN "duvet" "duvets" ; -- compound vet_N ;
-lin wet_N = mkN "wet" "wets" ;
-lin haft_N = mkN "haft" "hafts" ;
-lin shaft_N = mkN "shaft" "shafts" ; -- notcompound haft_N ;
-lin 'air-shaft_N' = mkN "air-shaft" "air-shafts" ; -- compound haft_N ;
-lin mineshaft_N = mkN "mineshaft" "mineshafts" ; -- compound haft_N ;
-lin driveshaft_N = mkN "driveshaft" "driveshafts" ; -- compound haft_N ;
-lin crankshaft_N = mkN "crankshaft" "crankshafts" ; -- compound haft_N ;
-lin camshaft_N = mkN "camshaft" "camshafts" ; -- compound haft_N ;
-lin aftershaft_N = mkN "aftershaft" "aftershafts" ; -- compound haft_N ;
-lin raft_N = mkN "raft" "rafts" ;
-lin 'life-raft_N' = mkN "life-raft" "life-rafts" ; -- compound raft_N ;
-lin craft_N = mkN "craft" "crafts" ; -- notcompound raft_N ;
-lin 'pleasure-craft_N' = mkN "pleasure-craft" "pleasure-crafts" ; -- compound raft_N ;
-lin woodcraft_N = mkN "woodcraft" "woodcrafts" ; -- compound raft_N ;
-lin tradecraft_N = mkN "tradecraft" "tradecrafts" ; -- compound raft_N ;
-lin stagecraft_N = mkN "stagecraft" "stagecrafts" ; -- compound raft_N ;
-lin needlecraft_N = mkN "needlecraft" "needlecrafts" ; -- compound raft_N ;
-lin housecraft_N = mkN "housecraft" "housecrafts" ; -- compound raft_N ;
-lin statecraft_N = mkN "statecraft" "statecrafts" ; -- compound raft_N ;
-lin witchcraft_N = mkN "witchcraft" "witchcrafts" ; -- compound raft_N ;
-lin handicraft_N = mkN "handicraft" "handicrafts" ; -- compound raft_N ;
-lin watercraft_N = mkN "watercraft" "watercrafts" ; -- compound raft_N ;
-lin antiaircraft_N = mkN "antiaircraft" "antiaircrafts" ; -- compound raft_N ;
-lin priestcraft_N = mkN "priestcraft" "priestcrafts" ; -- compound raft_N ;
-lin draft_N = mkN "draft" "drafts" ; -- notcompound raft_N ;
-lin 'bank-draft_N' = mkN "bank-draft" "bank-drafts" ; -- compound raft_N ;
-lin redraft_N = mkN "redraft" "redrafts" ; -- compound raft_N ;
-lin downdraft_N = mkN "downdraft" "downdrafts" ; -- compound raft_N ;
-lin updraft_N = mkN "updraft" "updrafts" ; -- compound raft_N ;
-lin overdraft_N = mkN "overdraft" "overdrafts" ; -- compound raft_N ;
-lin graft_N = mkN "graft" "grafts" ; -- notcompound raft_N ;
-lin 'skin-graft_N' = mkN "skin-graft" "skin-grafts" ; -- compound raft_N ;
-lin homograft_N = mkN "homograft" "homografts" ; -- compound raft_N ;
-lin heterograft_N = mkN "heterograft" "heterografts" ; -- compound raft_N ;
-lin autograft_N = mkN "autograft" "autografts" ; -- compound raft_N ;
-lin kraft_N = mkN "kraft" "krafts" ; -- notcompound raft_N ;
-lin waft_N = mkN "waft" "wafts" ;
-lin eft_N = mkN "eft" "efts" ;
-lin heft_N = mkN "heft" "hefts" ; -- notcompound eft_N ;
-lin theft_N = mkN "theft" "thefts" ; -- notcompound eft_N ;
-lin left_N = mkN "left" "lefts" ; -- notcompound eft_N ;
-lin cleft_N = mkN "cleft" "clefts" ; -- notcompound eft_N ;
-lin weft_N = mkN "weft" "wefts" ; -- notcompound eft_N ;
-lin gift_N = mkN "gift" "gifts" ;
-lin shift_N = mkN "shift" "shifts" ;
-lin makeshift_N = mkN "makeshift" "makeshifts" ; -- compound shift_N ;
-lin downshift_N = mkN "downshift" "downshifts" ; -- compound shift_N ;
-lin gearshift_N = mkN "gearshift" "gearshifts" ; -- compound shift_N ;
-lin lift_N = mkN "lift" "lifts" ;
-lin 'face-lift_N' = mkN "face-lift" "face-lifts" ; -- compound lift_N ;
-lin 'ski-lift_N' = mkN "ski-lift" "ski-lifts" ; -- compound lift_N ;
-lin 'chair-lift_N' = mkN "chair-lift" "chair-lifts" ; -- compound lift_N ;
-lin forklift_N = mkN "forklift" "forklifts" ; -- compound lift_N ;
-lin uplift_N = mkN "uplift" "uplifts" ; -- compound lift_N ;
-lin airlift_N = mkN "airlift" "airlifts" ; -- compound lift_N ;
-lin chairlift_N = mkN "chairlift" "chairlifts" ; -- compound lift_N ;
-lin weightlift_N = mkN "weightlift" "weightlifts" ; -- compound lift_N ;
-lin rift_N = mkN "rift" "rifts" ;
-lin drift_N = mkN "drift" "drifts" ; -- notcompound rift_N ;
-lin spindrift_N = mkN "spindrift" "spindrifts" ; -- compound rift_N ;
-lin snowdrift_N = mkN "snowdrift" "snowdrifts" ; -- compound rift_N ;
-lin festschrift_N = mkN "festschrift" "festschrifts" ; -- compound rift_N ;
-lin shrift_N = mkN "shrift" "shrifts" ; -- notcompound rift_N ;
-lin thrift_N = mkN "thrift" "thrifts" ; -- notcompound rift_N ;
-lin spendthrift_N = mkN "spendthrift" "spendthrifts" ; -- compound rift_N ;
-lin swift_N = mkN "swift" "swifts" ;
-lin delft_N = mkN "delft" "delfts" ;
-lin loft_N = mkN "loft" "lofts" ;
-lin 'organ-loft_N' = mkN "organ-loft" "organ-lofts" ; -- compound loft_N ;
-lin cockloft_N = mkN "cockloft" "cocklofts" ; -- compound loft_N ;
-lin hayloft_N = mkN "hayloft" "haylofts" ; -- compound loft_N ;
-lin croft_N = mkN "croft" "crofts" ;
-lin tuft_N = mkN "tuft" "tufts" ;
-lin candytuft_N = mkN "candytuft" "candytufts" ; -- compound tuft_N ;
-lin baht_N = mkN "baht" "bahts" ;
-lin fastnacht_N = mkN "fastnacht" "fastnachts" ;
-lin yacht_N = mkN "yacht" "yachts" ;
-lin straight_N = mkN "straight" "straights" ;
-lin bight_N = mkN "bight" "bights" ;
-lin height_N = mkN "height" "heights" ;
-lin sleight_N = mkN "sleight" "sleights" ;
-lin freight_N = mkN "freight" "freights" ;
-lin weight_N = mkN "weight" "weights" ;
-lin hundredweight_N = mkN "hundredweight" "hundredweights" ; -- compound weight_N ;
-lin makeweight_N = mkN "makeweight" "makeweights" ; -- compound weight_N ;
-lin middleweight_N = mkN "middleweight" "middleweights" ; -- compound weight_N ;
-lin bantamweight_N = mkN "bantamweight" "bantamweights" ; -- compound weight_N ;
-lin featherweight_N = mkN "featherweight" "featherweights" ; -- compound weight_N ;
-lin paperweight_N = mkN "paperweight" "paperweights" ; -- compound weight_N ;
-lin welterweight_N = mkN "welterweight" "welterweights" ; -- compound weight_N ;
-lin counterweight_N = mkN "counterweight" "counterweights" ; -- compound weight_N ;
-lin overweight_N = mkN "overweight" "overweights" ; -- compound weight_N ;
-lin lightweight_N = mkN "lightweight" "lightweights" ; -- compound weight_N ;
-lin flyweight_N = mkN "flyweight" "flyweights" ; -- compound weight_N ;
-lin pennyweight_N = mkN "pennyweight" "pennyweights" ; -- compound weight_N ;
-lin heavyweight_N = mkN "heavyweight" "heavyweights" ; -- compound weight_N ;
-lin 'light-heavyweight_N' = mkN "light-heavyweight" "light-heavyweights" ; -- compound weight_N ;
-lin fight_N = mkN "fight" "fights" ;
-lin 'prize-fight_N' = mkN "prize-fight" "prize-fights" ; -- compound fight_N ;
-lin 'pillow-fight_N' = mkN "pillow-fight" "pillow-fights" ; -- compound fight_N ;
-lin prizefight_N = mkN "prizefight" "prizefights" ; -- compound fight_N ;
-lin dogfight_N = mkN "dogfight" "dogfights" ; -- compound fight_N ;
-lin cockfight_N = mkN "cockfight" "cockfights" ; -- compound fight_N ;
-lin bullfight_N = mkN "bullfight" "bullfights" ; -- compound fight_N ;
-lin bunfight_N = mkN "bunfight" "bunfights" ; -- compound fight_N ;
-lin gunfight_N = mkN "gunfight" "gunfights" ; -- compound fight_N ;
-lin fistfight_N = mkN "fistfight" "fistfights" ; -- compound fight_N ;
-lin light_N = mkN "light" "lights" ;
-lin 'arc-light_N' = mkN "arc-light" "arc-lights" ; -- compound light_N ;
-lin 'riding-light_N' = mkN "riding-light" "riding-lights" ; -- compound light_N ;
-lin 'tail-light_N' = mkN "tail-light" "tail-lights" ; -- compound light_N ;
-lin 'beacon-light_N' = mkN "beacon-light" "beacon-lights" ; -- compound light_N ;
-lin 'night-light_N' = mkN "night-light" "night-lights" ; -- compound light_N ;
-lin 'pilot-light_N' = mkN "pilot-light" "pilot-lights" ; -- compound light_N ;
-lin blight_N = mkN "blight" "blights" ; -- notcompound light_N ;
-lin deadlight_N = mkN "deadlight" "deadlights" ; -- compound light_N ;
-lin headlight_N = mkN "headlight" "headlights" ; -- compound light_N ;
-lin delight_N = mkN "delight" "delights" ; -- compound light_N ;
-lin sidelight_N = mkN "sidelight" "sidelights" ; -- compound light_N ;
-lin candlelight_N = mkN "candlelight" "candlelights" ; -- compound light_N ;
-lin limelight_N = mkN "limelight" "limelights" ; -- compound light_N ;
-lin firelight_N = mkN "firelight" "firelights" ; -- compound light_N ;
-lin flight_N = mkN "flight" "flights" ; -- notcompound light_N ;
-lin spaceflight_N = mkN "spaceflight" "spaceflights" ; -- compound light_N ;
-lin overflight_N = mkN "overflight" "overflights" ; -- compound light_N ;
-lin searchlight_N = mkN "searchlight" "searchlights" ; -- compound light_N ;
-lin torchlight_N = mkN "torchlight" "torchlights" ; -- compound light_N ;
-lin highlight_N = mkN "highlight" "highlights" ; -- compound light_N ;
-lin flashlight_N = mkN "flashlight" "flashlights" ; -- compound light_N ;
-lin rushlight_N = mkN "rushlight" "rushlights" ; -- compound light_N ;
-lin twilight_N = mkN "twilight" "twilights" ; -- compound light_N ;
-lin jacklight_N = mkN "jacklight" "jacklights" ; -- compound light_N ;
-lin taillight_N = mkN "taillight" "taillights" ; -- compound light_N ;
-lin fanlight_N = mkN "fanlight" "fanlights" ; -- compound light_N ;
-lin penlight_N = mkN "penlight" "penlights" ; -- compound light_N ;
-lin moonlight_N = mkN "moonlight" "moonlights" ; -- compound light_N ;
-lin sunlight_N = mkN "sunlight" "sunlights" ; -- compound light_N ;
-lin plight_N = mkN "plight" "plights" ; -- notcompound light_N ;
-lin lamplight_N = mkN "lamplight" "lamplights" ; -- compound light_N ;
-lin stoplight_N = mkN "stoplight" "stoplights" ; -- compound light_N ;
-lin starlight_N = mkN "starlight" "starlights" ; -- compound light_N ;
-lin quarterlight_N = mkN "quarterlight" "quarterlights" ; -- compound light_N ;
-lin slight_N = mkN "slight" "slights" ; -- notcompound light_N ;
-lin gaslight_N = mkN "gaslight" "gaslights" ; -- compound light_N ;
-lin streetlight_N = mkN "streetlight" "streetlights" ; -- compound light_N ;
-lin spotlight_N = mkN "spotlight" "spotlights" ; -- compound light_N ;
-lin daylight_N = mkN "daylight" "daylights" ; -- compound light_N ;
-lin skylight_N = mkN "skylight" "skylights" ; -- compound light_N ;
-lin might_N = mkN "might" "mights" ;
-lin night_N = mkN "night" "nights" ;
-lin 'twelfth-night_N' = mkN "twelfth-night" "twelfth-nights" ; -- compound night_N ;
-lin 'guest-night_N' = mkN "guest-night" "guest-nights" ; -- compound night_N ;
-lin midnight_N = mkN "midnight" "midnights" ; -- compound night_N ;
-lin knight_N = mkN "knight" "knights" ; -- notcompound night_N ;
-lin 'carpet-knight_N' = mkN "carpet-knight" "carpet-knights" ; -- compound night_N ;
-lin weeknight_N = mkN "weeknight" "weeknights" ; -- compound night_N ;
-lin tonight_N = mkN "tonight" "tonights" ; -- compound night_N ;
-lin fortnight_N = mkN "fortnight" "fortnights" ; -- compound night_N ;
-lin right_N = mkN "right" "rights" ;
-lin fright_N = mkN "fright" "frights" ; -- notcompound right_N ;
-lin birthright_N = mkN "birthright" "birthrights" ; -- compound right_N ;
-lin upright_N = mkN "upright" "uprights" ; -- compound right_N ;
-lin wright_N = mkN "wright" "wrights" ; -- notcompound right_N ;
-lin wheelwright_N = mkN "wheelwright" "wheelwrights" ; -- compound right_N ;
-lin millwright_N = mkN "millwright" "millwrights" ; -- compound right_N ;
-lin wagonwright_N = mkN "wagonwright" "wagonwrights" ; -- compound right_N ;
-lin shipwright_N = mkN "shipwright" "shipwrights" ; -- compound right_N ;
-lin cartwright_N = mkN "cartwright" "cartwrights" ; -- compound right_N ;
-lin plowwright_N = mkN "plowwright" "plowwrights" ; -- compound right_N ;
-lin playwright_N = mkN "playwright" "playwrights" ; -- compound right_N ;
-lin copyright_N = mkN "copyright" "copyrights" ; -- compound right_N ;
-lin sight_N = mkN "sight" "sights" ;
-lin 'bomb-sight_N' = mkN "bomb-sight" "bomb-sights" ; -- compound sight_N ;
-lin bombsight_N = mkN "bombsight" "bombsights" ; -- compound sight_N ;
-lin hindsight_N = mkN "hindsight" "hindsights" ; -- compound sight_N ;
-lin foresight_N = mkN "foresight" "foresights" ; -- compound sight_N ;
-lin eyesight_N = mkN "eyesight" "eyesights" ; -- compound sight_N ;
-lin insight_N = mkN "insight" "insights" ; -- compound sight_N ;
-lin gunsight_N = mkN "gunsight" "gunsights" ; -- compound sight_N ;
-lin oversight_N = mkN "oversight" "oversights" ; -- compound sight_N ;
-lin sticktight_N = mkN "sticktight" "sticktights" ;
-lin wight_N = mkN "wight" "wights" ;
-lin aught_N = mkN "aught" "aughts" ;
-lin onslaught_N = mkN "onslaught" "onslaughts" ; -- compound aught_N ;
-lin naught_N = mkN "naught" "naughts" ; -- notcompound aught_N ;
-lin 'good-for-naught_N' = mkN "good-for-naught" "good-for-naughts" ; -- compound aught_N ;
-lin draught_N = mkN "draught" "draughts" ; -- notcompound aught_N ;
-lin 'sleeping-draught_N' = mkN "sleeping-draught" "sleeping-draughts" ; -- compound aught_N ;
-lin thought_N = mkN "thought" "thoughts" ;
-lin 'free-thought_N' = mkN "free-thought" "free-thoughts" ; -- compound thought_N ;
-lin forethought_N = mkN "forethought" "forethoughts" ; -- compound thought_N ;
-lin afterthought_N = mkN "afterthought" "afterthoughts" ; -- compound thought_N ;
-lin nought_N = mkN "nought" "noughts" ;
-lin dreadnought_N = mkN "dreadnought" "dreadnoughts" ; -- compound nought_N ;
-lin drought_N = mkN "drought" "droughts" ;
-lin bait_N = mkN "bait" "baits" ;
-lin 'ground-bait_N' = mkN "ground-bait" "ground-baits" ; -- compound bait_N ;
-lin whitebait_N = mkN "whitebait" "whitebaits" ; -- compound bait_N ;
-lin crowbait_N = mkN "crowbait" "crowbaits" ; -- compound bait_N ;
-lin parfait_N = mkN "parfait" "parfaits" ;
-lin gait_N = mkN "gait" "gaits" ;
-lin 'cafe-au-lait_N' = mkN "cafe-au-lait" "cafe-au-laits" ;
-lin plait_N = mkN "plait" "plaits" ;
-lin krait_N = mkN "krait" "kraits" ;
-lin trait_N = mkN "trait" "traits" ;
-lin portrait_N = mkN "portrait" "portraits" ; -- compound trait_N ;
-lin strait_N = mkN "strait" "straits" ; -- notcompound trait_N ;
-lin wait_N = mkN "wait" "waits" ;
-lin bit_N = mkN "bit" "bits" ;
-lin 'snaffle-bit_N' = mkN "snaffle-bit" "snaffle-bits" ; -- compound bit_N ;
-lin 'centre-bit_N' = mkN "centre-bit" "centre-bits" ; -- compound bit_N ;
-lin megabit_N = mkN "megabit" "megabits" ; -- compound bit_N ;
-lin gigabit_N = mkN "gigabit" "gigabits" ; -- compound bit_N ;
-lin habit_N = mkN "habit" "habits" ; -- compound bit_N ;
-lin 'riding-habit_N' = mkN "riding-habit" "riding-habits" ; -- compound bit_N ;
-lin terabit_N = mkN "terabit" "terabits" ; -- compound bit_N ;
-lin petabit_N = mkN "petabit" "petabits" ; -- compound bit_N ;
-lin zettabit_N = mkN "zettabit" "zettabits" ; -- compound bit_N ;
-lin yottabit_N = mkN "yottabit" "yottabits" ; -- compound bit_N ;
-lin exabit_N = mkN "exabit" "exabits" ; -- compound bit_N ;
-lin rabbit_N = mkN "rabbit" "rabbits" ; -- compound bit_N ;
-lin jackrabbit_N = mkN "jackrabbit" "jackrabbits" ; -- compound bit_N ;
-lin hobbit_N = mkN "hobbit" "hobbits" ; -- compound bit_N ;
-lin tidbit_N = mkN "tidbit" "tidbits" ; -- compound bit_N ;
-lin debit_N = mkN "debit" "debits" ; -- compound bit_N ;
-lin rarebit_N = mkN "rarebit" "rarebits" ; -- compound bit_N ;
-lin frogbit_N = mkN "frogbit" "frogbits" ; -- compound bit_N ;
-lin mebibit_N = mkN "mebibit" "mebibits" ; -- compound bit_N ;
-lin pebibit_N = mkN "pebibit" "pebibits" ; -- compound bit_N ;
-lin tebibit_N = mkN "tebibit" "tebibits" ; -- compound bit_N ;
-lin zebibit_N = mkN "zebibit" "zebibits" ; -- compound bit_N ;
-lin gibibit_N = mkN "gibibit" "gibibits" ; -- compound bit_N ;
-lin kibibit_N = mkN "kibibit" "kibibits" ; -- compound bit_N ;
-lin yobibit_N = mkN "yobibit" "yobibits" ; -- compound bit_N ;
-lin exbibit_N = mkN "exbibit" "exbibits" ; -- compound bit_N ;
-lin exhibit_N = mkN "exhibit" "exhibits" ; -- compound bit_N ;
-lin hawkbit_N = mkN "hawkbit" "hawkbits" ; -- compound bit_N ;
-lin ambit_N = mkN "ambit" "ambits" ; -- compound bit_N ;
-lin gambit_N = mkN "gambit" "gambits" ; -- compound bit_N ;
-lin henbit_N = mkN "henbit" "henbits" ; -- compound bit_N ;
-lin kilobit_N = mkN "kilobit" "kilobits" ; -- compound bit_N ;
-lin orbit_N = mkN "orbit" "orbits" ; -- compound bit_N ;
-lin cucurbit_N = mkN "cucurbit" "cucurbits" ; -- compound bit_N ;
-lin titbit_N = mkN "titbit" "titbits" ; -- compound bit_N ;
-lin cubit_N = mkN "cubit" "cubits" ; -- compound bit_N ;
-lin deficit_N = mkN "deficit" "deficits" ;
-lin adit_N = mkN "adit" "adits" ;
-lin credit_N = mkN "credit" "credits" ;
-lin discredit_N = mkN "discredit" "discredits" ; -- compound credit_N ;
-lin bandit_N = mkN "bandit" "bandits" ;
-lin pundit_N = mkN "pundit" "pundits" ;
-lin audit_N = mkN "audit" "audits" ;
-lin plaudit_N = mkN "plaudit" "plaudits" ; -- notcompound audit_N ;
-lin deceit_N = mkN "deceit" "deceits" ;
-lin conceit_N = mkN "conceit" "conceits" ;
-lin counterfeit_N = mkN "counterfeit" "counterfeits" ;
-lin forfeit_N = mkN "forfeit" "forfeits" ;
-lin surfeit_N = mkN "surfeit" "surfeits" ;
-lin spinnbarkeit_N = mkN "spinnbarkeit" "spinnbarkeits" ;
-lin fit_N = mkN "fit" "fits" ;
-lin benefit_N = mkN "benefit" "benefits" ; -- compound fit_N ;
-lin 'sick-benefit_N' = mkN "sick-benefit" "sick-benefits" ; -- compound fit_N ;
-lin refit_N = mkN "refit" "refits" ; -- compound fit_N ;
-lin soffit_N = mkN "soffit" "soffits" ; -- compound fit_N ;
-lin comfit_N = mkN "comfit" "comfits" ; -- compound fit_N ;
-lin confit_N = mkN "confit" "confits" ; -- compound fit_N ;
-lin profit_N = mkN "profit" "profits" ; -- compound fit_N ;
-lin retrofit_N = mkN "retrofit" "retrofits" ; -- compound fit_N ;
-lin misfit_N = mkN "misfit" "misfits" ; -- compound fit_N ;
-lin outfit_N = mkN "outfit" "outfits" ; -- compound fit_N ;
-lin ringgit_N = mkN "ringgit" "ringgits" ;
-lin digit_N = mkN "digit" "digits" ;
-lin hit_N = mkN "hit" "hits" ;
-lin chit_N = mkN "chit" "chits" ; -- notcompound hit_N ;
-lin shit_N = mkN "shit" "shits" ; -- notcompound hit_N ;
-lin bullshit_N = mkN "bullshit" "bullshits" ; -- compound hit_N ;
-lin chickenshit_N = mkN "chickenshit" "chickenshits" ; -- compound hit_N ;
-lin whit_N = mkN "whit" "whits" ; -- notcompound hit_N ;
-lin kit_N = mkN "kit" "kits" ;
-lin identikit_N = mkN "identikit" "identikits" ; -- compound kit_N ;
-lin skit_N = mkN "skit" "skits" ; -- notcompound kit_N ;
-lin flit_N = mkN "flit" "flits" ;
-lin split_N = mkN "split" "splits" ;
-lin slit_N = mkN "slit" "slits" ;
-lin remit_N = mkN "remit" "remits" ;
-lin limit_N = mkN "limit" "limits" ;
-lin 'speed-limit_N' = mkN "speed-limit" "speed-limits" ; -- compound limit_N ;
-lin 'time-limit_N' = mkN "time-limit" "time-limits" ; -- compound limit_N ;
-lin summit_N = mkN "summit" "summits" ;
-lin vomit_N = mkN "vomit" "vomits" ;
-lin hermit_N = mkN "hermit" "hermits" ;
-lin permit_N = mkN "permit" "permits" ;
-lin nit_N = mkN "nit" "nits" ;
-lin knit_N = mkN "knit" "knits" ; -- notcompound nit_N ;
-lin sennit_N = mkN "sennit" "sennits" ; -- compound nit_N ;
-lin snit_N = mkN "snit" "snits" ; -- notcompound nit_N ;
-lin unit_N = mkN "unit" "units" ; -- notcompound nit_N ;
-lin whodunit_N = mkN "whodunit" "whodunits" ; -- compound nit_N ;
-lin dacoit_N = mkN "dacoit" "dacoits" ;
-lin exploit_N = mkN "exploit" "exploits" ;
-lin introit_N = mkN "introit" "introits" ;
-lin quoit_N = mkN "quoit" "quoits" ;
-lin pit_N = mkN "pit" "pits" ;
-lin 'stone-pit_N' = mkN "stone-pit" "stone-pits" ; -- compound pit_N ;
-lin 'saw-pit_N' = mkN "saw-pit" "saw-pits" ; -- compound pit_N ;
-lin fleapit_N = mkN "fleapit" "fleapits" ; -- compound pit_N ;
-lin sandpit_N = mkN "sandpit" "sandpits" ; -- compound pit_N ;
-lin pipit_N = mkN "pipit" "pipits" ; -- compound pit_N ;
-lin cockpit_N = mkN "cockpit" "cockpits" ; -- compound pit_N ;
-lin chalkpit_N = mkN "chalkpit" "chalkpits" ; -- compound pit_N ;
-lin coalpit_N = mkN "coalpit" "coalpits" ; -- compound pit_N ;
-lin pulpit_N = mkN "pulpit" "pulpits" ; -- compound pit_N ;
-lin armpit_N = mkN "armpit" "armpits" ; -- compound pit_N ;
-lin spit_N = mkN "spit" "spits" ; -- notcompound pit_N ;
-lin turnspit_N = mkN "turnspit" "turnspits" ; -- compound pit_N ;
-lin cesspit_N = mkN "cesspit" "cesspits" ; -- compound pit_N ;
-lin sawpit_N = mkN "sawpit" "sawpits" ; -- compound pit_N ;
-lin brit_N = mkN "brit" "brits" ;
-lin hematocrit_N = mkN "hematocrit" "hematocrits" ;
-lin merit_N = mkN "merit" "merits" ;
-lin demerit_N = mkN "demerit" "demerits" ; -- compound merit_N ;
-lin preterit_N = mkN "preterit" "preterits" ;
-lin grit_N = mkN "grit" "grits" ;
-lin spirit_N = mkN "spirit" "spirits" ;
-lin 'party-spirit_N' = mkN "party-spirit" "party-spirits" ; -- compound spirit_N ;
-lin sanskrit_N = mkN "sanskrit" "sanskrits" ;
-lin culprit_N = mkN "culprit" "culprits" ;
-lin sprit_N = mkN "sprit" "sprits" ;
-lin esprit_N = mkN "esprit" "esprits" ; -- notcompound sprit_N ;
-lin bowsprit_N = mkN "bowsprit" "bowsprits" ; -- compound sprit_N ;
-lin writ_N = mkN "writ" "writs" ;
-lin bedsit_N = mkN "bedsit" "bedsits" ;
-lin visit_N = mkN "visit" "visits" ;
-lin transit_N = mkN "transit" "transits" ;
-lin deposit_N = mkN "deposit" "deposits" ;
-lin 'safe-deposit_N' = mkN "safe-deposit" "safe-deposits" ; -- compound deposit_N ;
-lin tit_N = mkN "tit" "tits" ;
-lin bushtit_N = mkN "bushtit" "bushtits" ; -- compound tit_N ;
-lin tomtit_N = mkN "tomtit" "tomtits" ; -- compound tit_N ;
-lin circuit_N = mkN "circuit" "circuits" ;
-lin 'short-circuit_N' = mkN "short-circuit" "short-circuits" ; -- compound circuit_N ;
-lin biscuit_N = mkN "biscuit" "biscuits" ;
-lin 'soda-biscuit_N' = mkN "soda-biscuit" "soda-biscuits" ; -- compound biscuit_N ;
-lin 'dog-biscuit_N' = mkN "dog-biscuit" "dog-biscuits" ; -- compound biscuit_N ;
-lin 'water-biscuit_N' = mkN "water-biscuit" "water-biscuits" ; -- compound biscuit_N ;
-lin conduit_N = mkN "conduit" "conduits" ;
-lin recruit_N = mkN "recruit" "recruits" ;
-lin fruit_N = mkN "fruit" "fruits" ;
-lin 'stone-fruit_N' = mkN "stone-fruit" "stone-fruits" ; -- compound fruit_N ;
-lin jackfruit_N = mkN "jackfruit" "jackfruits" ; -- compound fruit_N ;
-lin suit_N = mkN "suit" "suits" ;
-lin 'zoot suit_N' = mkN "zoot suit" "zoot suits" ; -- compound suit_N ;
-lin 'lounge-suit_N' = mkN "lounge-suit" "lounge-suits" ; -- compound suit_N ;
-lin 'bathing-suit_N' = mkN "bathing-suit" "bathing-suits" ; -- compound suit_N ;
-lin 'diving-suit_N' = mkN "diving-suit" "diving-suits" ; -- compound suit_N ;
-lin spacesuit_N = mkN "spacesuit" "spacesuits" ; -- compound suit_N ;
-lin jesuit_N = mkN "jesuit" "jesuits" ; -- compound suit_N ;
-lin swimsuit_N = mkN "swimsuit" "swimsuits" ; -- compound suit_N ;
-lin sunsuit_N = mkN "sunsuit" "sunsuits" ; -- compound suit_N ;
-lin boilersuit_N = mkN "boilersuit" "boilersuits" ; -- compound suit_N ;
-lin countersuit_N = mkN "countersuit" "countersuits" ; -- compound suit_N ;
-lin pursuit_N = mkN "pursuit" "pursuits" ; -- compound suit_N ;
-lin lawsuit_N = mkN "lawsuit" "lawsuits" ; -- compound suit_N ;
-lin snowsuit_N = mkN "snowsuit" "snowsuits" ; -- compound suit_N ;
-lin playsuit_N = mkN "playsuit" "playsuits" ; -- compound suit_N ;
-lin davit_N = mkN "davit" "davits" ;
-lin affidavit_N = mkN "affidavit" "affidavits" ; -- compound davit_N ;
-lin aquavit_N = mkN "aquavit" "aquavits" ;
-lin wit_N = mkN "wit" "wits" ;
-lin godwit_N = mkN "godwit" "godwits" ; -- compound wit_N ;
-lin peewit_N = mkN "peewit" "peewits" ; -- compound wit_N ;
-lin pewit_N = mkN "pewit" "pewits" ; -- compound wit_N ;
-lin halfwit_N = mkN "halfwit" "halfwits" ; -- compound wit_N ;
-lin dimwit_N = mkN "dimwit" "dimwits" ; -- compound wit_N ;
-lin twit_N = mkN "twit" "twits" ; -- notcompound wit_N ;
-lin nitwit_N = mkN "nitwit" "nitwits" ; -- compound wit_N ;
-lin exit_N = mkN "exit" "exits" ;
-lin 'ipse dixit_N' = mkN "ipse dixit" "ipse dixits" ;
-lin cobalt_N = mkN "cobalt" "cobalts" ;
-lin halt_N = mkN "halt" "halts" ;
-lin asphalt_N = mkN "asphalt" "asphalts" ; -- compound halt_N ;
-lin malt_N = mkN "malt" "malts" ;
-lin salt_N = mkN "salt" "salts" ;
-lin 'pepper-and-salt_N' = mkN "pepper-and-salt" "pepper-and-salts" ; -- compound salt_N ;
-lin 'rock-salt_N' = mkN "rock-salt" "rock-salts" ; -- compound salt_N ;
-lin basalt_N = mkN "basalt" "basalts" ; -- compound salt_N ;
-lin gestalt_N = mkN "gestalt" "gestalts" ;
-lin belt_N = mkN "belt" "belts" ;
-lin 'cartridge-belt_N' = mkN "cartridge-belt" "cartridge-belts" ; -- compound belt_N ;
-lin 'driving-belt_N' = mkN "driving-belt" "driving-belts" ; -- compound belt_N ;
-lin 'fan-belt_N' = mkN "fan-belt" "fan-belts" ; -- compound belt_N ;
-lin 'conveyer-belt_N' = mkN "conveyer-belt" "conveyer-belts" ; -- compound belt_N ;
-lin 'seat-belt_N' = mkN "seat-belt" "seat-belts" ; -- compound belt_N ;
-lin 'safety-belt_N' = mkN "safety-belt" "safety-belts" ; -- compound belt_N ;
-lin lifebelt_N = mkN "lifebelt" "lifebelts" ; -- compound belt_N ;
-lin greenbelt_N = mkN "greenbelt" "greenbelts" ; -- compound belt_N ;
-lin celt_N = mkN "celt" "celts" ;
-lin felt_N = mkN "felt" "felts" ;
-lin underfelt_N = mkN "underfelt" "underfelts" ; -- compound felt_N ;
-lin kelt_N = mkN "kelt" "kelts" ;
-lin smelt_N = mkN "smelt" "smelts" ;
-lin jacksmelt_N = mkN "jacksmelt" "jacksmelts" ; -- compound smelt_N ;
-lin pelt_N = mkN "pelt" "pelts" ;
-lin spelt_N = mkN "spelt" "spelts" ; -- notcompound pelt_N ;
-lin welt_N = mkN "welt" "welts" ;
-lin gilt_N = mkN "gilt" "gilts" ;
-lin hilt_N = mkN "hilt" "hilts" ;
-lin jilt_N = mkN "jilt" "jilts" ;
-lin kilt_N = mkN "kilt" "kilts" ;
-lin lilt_N = mkN "lilt" "lilts" ;
-lin milt_N = mkN "milt" "milts" ;
-lin silt_N = mkN "silt" "silts" ;
-lin tilt_N = mkN "tilt" "tilts" ;
-lin stilt_N = mkN "stilt" "stilts" ; -- notcompound tilt_N ;
-lin guilt_N = mkN "guilt" "guilts" ;
-lin bloodguilt_N = mkN "bloodguilt" "bloodguilts" ; -- compound guilt_N ;
-lin quilt_N = mkN "quilt" "quilts" ;
-lin wilt_N = mkN "wilt" "wilts" ;
-lin bolt_N = mkN "bolt" "bolts" ;
-lin 'safety-bolt_N' = mkN "safety-bolt" "safety-bolts" ; -- compound bolt_N ;
-lin kingbolt_N = mkN "kingbolt" "kingbolts" ; -- compound bolt_N ;
-lin thunderbolt_N = mkN "thunderbolt" "thunderbolts" ; -- compound bolt_N ;
-lin colt_N = mkN "colt" "colts" ;
-lin dolt_N = mkN "dolt" "dolts" ;
-lin porkholt_N = mkN "porkholt" "porkholts" ;
-lin jolt_N = mkN "jolt" "jolts" ;
-lin molt_N = mkN "molt" "molts" ;
-lin volt_N = mkN "volt" "volts" ;
-lin abvolt_N = mkN "abvolt" "abvolts" ; -- compound volt_N ;
-lin revolt_N = mkN "revolt" "revolts" ; -- compound volt_N ;
-lin millivolt_N = mkN "millivolt" "millivolts" ; -- compound volt_N ;
-lin picovolt_N = mkN "picovolt" "picovolts" ; -- compound volt_N ;
-lin kilovolt_N = mkN "kilovolt" "kilovolts" ; -- compound volt_N ;
-lin nanovolt_N = mkN "nanovolt" "nanovolts" ; -- compound volt_N ;
-lin microvolt_N = mkN "microvolt" "microvolts" ; -- compound volt_N ;
-lin femtovolt_N = mkN "femtovolt" "femtovolts" ; -- compound volt_N ;
-lin fault_N = mkN "fault" "faults" ;
-lin default_N = mkN "default" "defaults" ; -- compound fault_N ;
-lin footfault_N = mkN "footfault" "footfaults" ; -- compound fault_N ;
-lin somersault_N = mkN "somersault" "somersaults" ;
-lin assault_N = mkN "assault" "assaults" ;
-lin vault_N = mkN "vault" "vaults" ;
-lin 'pole-vault_N' = mkN "pole-vault" "pole-vaults" ; -- compound vault_N ;
-lin cult_N = mkN "cult" "cults" ;
-lin adult_N = mkN "adult" "adults" ;
-lin tumult_N = mkN "tumult" "tumults" ;
-lin penult_N = mkN "penult" "penults" ;
-lin antepenult_N = mkN "antepenult" "antepenults" ; -- compound penult_N ;
-lin moult_N = mkN "moult" "moults" ;
-lin catapult_N = mkN "catapult" "catapults" ;
-lin result_N = mkN "result" "results" ;
-lin insult_N = mkN "insult" "insults" ;
-lin nt_N = mkN "nt" "nts" ;
-lin ant_N = mkN "ant" "ants" ; -- notcompound nt_N ;
-lin cant_N = mkN "cant" "cants" ; -- compound nt_N ;
-lin desiccant_N = mkN "desiccant" "desiccants" ; -- compound nt_N ;
-lin secant_N = mkN "secant" "secants" ; -- compound nt_N ;
-lin cosecant_N = mkN "cosecant" "cosecants" ; -- compound nt_N ;
-lin mendicant_N = mkN "mendicant" "mendicants" ; -- compound nt_N ;
-lin applicant_N = mkN "applicant" "applicants" ; -- compound nt_N ;
-lin supplicant_N = mkN "supplicant" "supplicants" ; -- compound nt_N ;
-lin communicant_N = mkN "communicant" "communicants" ; -- compound nt_N ;
-lin lubricant_N = mkN "lubricant" "lubricants" ; -- compound nt_N ;
-lin vesicant_N = mkN "vesicant" "vesicants" ; -- compound nt_N ;
-lin intoxicant_N = mkN "intoxicant" "intoxicants" ; -- compound nt_N ;
-lin descant_N = mkN "descant" "descants" ; -- compound nt_N ;
-lin pedant_N = mkN "pedant" "pedants" ; -- compound nt_N ;
-lin confidant_N = mkN "confidant" "confidants" ; -- compound nt_N ;
-lin oxidant_N = mkN "oxidant" "oxidants" ; -- compound nt_N ;
-lin antioxidant_N = mkN "antioxidant" "antioxidants" ; -- compound nt_N ;
-lin commandant_N = mkN "commandant" "commandants" ; -- compound nt_N ;
-lin ascendant_N = mkN "ascendant" "ascendants" ; -- compound nt_N ;
-lin descendant_N = mkN "descendant" "descendants" ; -- compound nt_N ;
-lin defendant_N = mkN "defendant" "defendants" ; -- compound nt_N ;
-lin codefendant_N = mkN "codefendant" "codefendants" ; -- compound nt_N ;
-lin pendant_N = mkN "pendant" "pendants" ; -- compound nt_N ;
-lin dependant_N = mkN "dependant" "dependants" ; -- compound nt_N ;
-lin attendant_N = mkN "attendant" "attendants" ; -- compound nt_N ;
-lin fondant_N = mkN "fondant" "fondants" ; -- compound nt_N ;
-lin retardant_N = mkN "retardant" "retardants" ; -- compound nt_N ;
-lin mordant_N = mkN "mordant" "mordants" ; -- compound nt_N ;
-lin pageant_N = mkN "pageant" "pageants" ; -- compound nt_N ;
-lin sergeant_N = mkN "sergeant" "sergeants" ; -- compound nt_N ;
-lin serjeant_N = mkN "serjeant" "serjeants" ; -- compound nt_N ;
-lin recreant_N = mkN "recreant" "recreants" ; -- compound nt_N ;
-lin miscreant_N = mkN "miscreant" "miscreants" ; -- compound nt_N ;
-lin bouffant_N = mkN "bouffant" "bouffants" ; -- compound nt_N ;
-lin infant_N = mkN "infant" "infants" ; -- compound nt_N ;
-lin termagant_N = mkN "termagant" "termagants" ; -- compound nt_N ;
-lin congregant_N = mkN "congregant" "congregants" ; -- compound nt_N ;
-lin fumigant_N = mkN "fumigant" "fumigants" ; -- compound nt_N ;
-lin litigant_N = mkN "litigant" "litigants" ; -- compound nt_N ;
-lin chant_N = mkN "chant" "chants" ; -- compound nt_N ;
-lin bacchant_N = mkN "bacchant" "bacchants" ; -- compound nt_N ;
-lin penchant_N = mkN "penchant" "penchants" ; -- compound nt_N ;
-lin merchant_N = mkN "merchant" "merchants" ; -- compound nt_N ;
-lin elephant_N = mkN "elephant" "elephants" ; -- compound nt_N ;
-lin 'rogue-elephant_N' = mkN "rogue-elephant" "rogue-elephants" ; -- compound nt_N ;
-lin sycophant_N = mkN "sycophant" "sycophants" ; -- compound nt_N ;
-lin officiant_N = mkN "officiant" "officiants" ; -- compound nt_N ;
-lin mediant_N = mkN "mediant" "mediants" ; -- compound nt_N ;
-lin submediant_N = mkN "submediant" "submediants" ; -- compound nt_N ;
-lin affiant_N = mkN "affiant" "affiants" ; -- compound nt_N ;
-lin giant_N = mkN "giant" "giants" ; -- compound nt_N ;
-lin supergiant_N = mkN "supergiant" "supergiants" ; -- compound nt_N ;
-lin defoliant_N = mkN "defoliant" "defoliants" ; -- compound nt_N ;
-lin suppliant_N = mkN "suppliant" "suppliants" ; -- compound nt_N ;
-lin variant_N = mkN "variant" "variants" ; -- compound nt_N ;
-lin invariant_N = mkN "invariant" "invariants" ; -- compound nt_N ;
-lin euphoriant_N = mkN "euphoriant" "euphoriants" ; -- compound nt_N ;
-lin deviant_N = mkN "deviant" "deviants" ; -- compound nt_N ;
-lin sealant_N = mkN "sealant" "sealants" ; -- compound nt_N ;
-lin inhalant_N = mkN "inhalant" "inhalants" ; -- compound nt_N ;
-lin assailant_N = mkN "assailant" "assailants" ; -- compound nt_N ;
-lin sibilant_N = mkN "sibilant" "sibilants" ; -- compound nt_N ;
-lin gallant_N = mkN "gallant" "gallants" ; -- compound nt_N ;
-lin topgallant_N = mkN "topgallant" "topgallants" ; -- compound nt_N ;
-lin flagellant_N = mkN "flagellant" "flagellants" ; -- compound nt_N ;
-lin propellant_N = mkN "propellant" "propellants" ; -- compound nt_N ;
-lin appellant_N = mkN "appellant" "appellants" ; -- compound nt_N ;
-lin coolant_N = mkN "coolant" "coolants" ; -- compound nt_N ;
-lin plant_N = mkN "plant" "plants" ; -- compound nt_N ;
-lin 'rock-plant_N' = mkN "rock-plant" "rock-plants" ; -- compound nt_N ;
-lin 'cotton-plant_N' = mkN "cotton-plant" "cotton-plants" ; -- compound nt_N ;
-lin leadplant_N = mkN "leadplant" "leadplants" ; -- compound nt_N ;
-lin pieplant_N = mkN "pieplant" "pieplants" ; -- compound nt_N ;
-lin houseplant_N = mkN "houseplant" "houseplants" ; -- compound nt_N ;
-lin eggplant_N = mkN "eggplant" "eggplants" ; -- compound nt_N ;
-lin implant_N = mkN "implant" "implants" ; -- compound nt_N ;
-lin transplant_N = mkN "transplant" "transplants" ; -- compound nt_N ;
-lin xenotransplant_N = mkN "xenotransplant" "xenotransplants" ; -- compound nt_N ;
-lin slant_N = mkN "slant" "slants" ; -- compound nt_N ;
-lin inoculant_N = mkN "inoculant" "inoculants" ; -- compound nt_N ;
-lin coagulant_N = mkN "coagulant" "coagulants" ; -- compound nt_N ;
-lin anticoagulant_N = mkN "anticoagulant" "anticoagulants" ; -- compound nt_N ;
-lin stimulant_N = mkN "stimulant" "stimulants" ; -- compound nt_N ;
-lin postulant_N = mkN "postulant" "postulants" ; -- compound nt_N ;
-lin adamant_N = mkN "adamant" "adamants" ; -- compound nt_N ;
-lin polysemant_N = mkN "polysemant" "polysemants" ; -- compound nt_N ;
-lin claimant_N = mkN "claimant" "claimants" ; -- compound nt_N ;
-lin informant_N = mkN "informant" "informants" ; -- compound nt_N ;
-lin tenant_N = mkN "tenant" "tenants" ; -- compound nt_N ;
-lin cotenant_N = mkN "cotenant" "cotenants" ; -- compound nt_N ;
-lin lieutenant_N = mkN "lieutenant" "lieutenants" ; -- compound nt_N ;
-lin sublieutenant_N = mkN "sublieutenant" "sublieutenants" ; -- compound nt_N ;
-lin revenant_N = mkN "revenant" "revenants" ; -- compound nt_N ;
-lin covenant_N = mkN "covenant" "covenants" ; -- compound nt_N ;
-lin complainant_N = mkN "complainant" "complainants" ; -- compound nt_N ;
-lin recombinant_N = mkN "recombinant" "recombinants" ; -- compound nt_N ;
-lin contaminant_N = mkN "contaminant" "contaminants" ; -- compound nt_N ;
-lin dominant_N = mkN "dominant" "dominants" ; -- compound nt_N ;
-lin subdominant_N = mkN "subdominant" "subdominants" ; -- compound nt_N ;
-lin determinant_N = mkN "determinant" "determinants" ; -- compound nt_N ;
-lin illuminant_N = mkN "illuminant" "illuminants" ; -- compound nt_N ;
-lin ruminant_N = mkN "ruminant" "ruminants" ; -- compound nt_N ;
-lin remnant_N = mkN "remnant" "remnants" ; -- compound nt_N ;
-lin pennant_N = mkN "pennant" "pennants" ; -- compound nt_N ;
-lin sonant_N = mkN "sonant" "sonants" ; -- compound nt_N ;
-lin consonant_N = mkN "consonant" "consonants" ; -- compound nt_N ;
-lin pant_N = mkN "pant" "pants" ; -- compound nt_N ;
-lin participant_N = mkN "participant" "participants" ; -- compound nt_N ;
-lin nonparticipant_N = mkN "nonparticipant" "nonparticipants" ; -- compound nt_N ;
-lin occupant_N = mkN "occupant" "occupants" ; -- compound nt_N ;
-lin rant_N = mkN "rant" "rants" ; -- compound nt_N ;
-lin brant_N = mkN "brant" "brants" ; -- compound nt_N ;
-lin celebrant_N = mkN "celebrant" "celebrants" ; -- compound nt_N ;
-lin quadrant_N = mkN "quadrant" "quadrants" ; -- compound nt_N ;
-lin hydrant_N = mkN "hydrant" "hydrants" ; -- compound nt_N ;
-lin refrigerant_N = mkN "refrigerant" "refrigerants" ; -- compound nt_N ;
-lin itinerant_N = mkN "itinerant" "itinerants" ; -- compound nt_N ;
-lin adulterant_N = mkN "adulterant" "adulterants" ; -- compound nt_N ;
-lin grant_N = mkN "grant" "grants" ; -- compound nt_N ;
-lin vagrant_N = mkN "vagrant" "vagrants" ; -- compound nt_N ;
-lin migrant_N = mkN "migrant" "migrants" ; -- compound nt_N ;
-lin emigrant_N = mkN "emigrant" "emigrants" ; -- compound nt_N ;
-lin immigrant_N = mkN "immigrant" "immigrants" ; -- compound nt_N ;
-lin aspirant_N = mkN "aspirant" "aspirants" ; -- compound nt_N ;
-lin antiperspirant_N = mkN "antiperspirant" "antiperspirants" ; -- compound nt_N ;
-lin deodorant_N = mkN "deodorant" "deodorants" ; -- compound nt_N ;
-lin cormorant_N = mkN "cormorant" "cormorants" ; -- compound nt_N ;
-lin expectorant_N = mkN "expectorant" "expectorants" ; -- compound nt_N ;
-lin warrant_N = mkN "warrant" "warrants" ; -- compound nt_N ;
-lin 'dividend-warrant_N' = mkN "dividend-warrant" "dividend-warrants" ; -- compound nt_N ;
-lin 'search-warrant_N' = mkN "search-warrant" "search-warrants" ; -- compound nt_N ;
-lin 'death-warrant_N' = mkN "death-warrant" "death-warrants" ; -- compound nt_N ;
-lin aberrant_N = mkN "aberrant" "aberrants" ; -- compound nt_N ;
-lin currant_N = mkN "currant" "currants" ; -- compound nt_N ;
-lin blackcurrant_N = mkN "blackcurrant" "blackcurrants" ; -- compound nt_N ;
-lin entrant_N = mkN "entrant" "entrants" ; -- compound nt_N ;
-lin registrant_N = mkN "registrant" "registrants" ; -- compound nt_N ;
-lin ministrant_N = mkN "ministrant" "ministrants" ; -- compound nt_N ;
-lin restaurant_N = mkN "restaurant" "restaurants" ; -- compound nt_N ;
-lin denaturant_N = mkN "denaturant" "denaturants" ; -- compound nt_N ;
-lin tyrant_N = mkN "tyrant" "tyrants" ; -- compound nt_N ;
-lin malfeasant_N = mkN "malfeasant" "malfeasants" ; -- compound nt_N ;
-lin pheasant_N = mkN "pheasant" "pheasants" ; -- compound nt_N ;
-lin peasant_N = mkN "peasant" "peasants" ; -- compound nt_N ;
-lin anticonvulsant_N = mkN "anticonvulsant" "anticonvulsants" ; -- compound nt_N ;
-lin antidepressant_N = mkN "antidepressant" "antidepressants" ; -- compound nt_N ;
-lin suppressant_N = mkN "suppressant" "suppressants" ; -- compound nt_N ;
-lin immunosuppressant_N = mkN "immunosuppressant" "immunosuppressants" ; -- compound nt_N ;
-lin discussant_N = mkN "discussant" "discussants" ; -- compound nt_N ;
-lin recusant_N = mkN "recusant" "recusants" ; -- compound nt_N ;
-lin combatant_N = mkN "combatant" "combatants" ; -- compound nt_N ;
-lin noncombatant_N = mkN "noncombatant" "noncombatants" ; -- compound nt_N ;
-lin retreatant_N = mkN "retreatant" "retreatants" ; -- compound nt_N ;
-lin supernatant_N = mkN "supernatant" "supernatants" ; -- compound nt_N ;
-lin reactant_N = mkN "reactant" "reactants" ; -- compound nt_N ;
-lin disinfectant_N = mkN "disinfectant" "disinfectants" ; -- compound nt_N ;
-lin humectant_N = mkN "humectant" "humectants" ; -- compound nt_N ;
-lin octant_N = mkN "octant" "octants" ; -- compound nt_N ;
-lin inhabitant_N = mkN "inhabitant" "inhabitants" ; -- compound nt_N ;
-lin militant_N = mkN "militant" "militants" ; -- compound nt_N ;
-lin concomitant_N = mkN "concomitant" "concomitants" ; -- compound nt_N ;
-lin precipitant_N = mkN "precipitant" "precipitants" ; -- compound nt_N ;
-lin irritant_N = mkN "irritant" "irritants" ; -- compound nt_N ;
-lin counterirritant_N = mkN "counterirritant" "counterirritants" ; -- compound nt_N ;
-lin visitant_N = mkN "visitant" "visitants" ; -- compound nt_N ;
-lin annuitant_N = mkN "annuitant" "annuitants" ; -- compound nt_N ;
-lin resultant_N = mkN "resultant" "resultants" ; -- compound nt_N ;
-lin consultant_N = mkN "consultant" "consultants" ; -- compound nt_N ;
-lin accountant_N = mkN "accountant" "accountants" ; -- compound nt_N ;
-lin decongestant_N = mkN "decongestant" "decongestants" ; -- compound nt_N ;
-lin contestant_N = mkN "contestant" "contestants" ; -- compound nt_N ;
-lin protestant_N = mkN "protestant" "protestants" ; -- compound nt_N ;
-lin assistant_N = mkN "assistant" "assistants" ; -- compound nt_N ;
-lin 'shop-assistant_N' = mkN "shop-assistant" "shop-assistants" ; -- compound nt_N ;
-lin instant_N = mkN "instant" "instants" ; -- compound nt_N ;
-lin constant_N = mkN "constant" "constants" ; -- compound nt_N ;
-lin executant_N = mkN "executant" "executants" ; -- compound nt_N ;
-lin adjutant_N = mkN "adjutant" "adjutants" ; -- compound nt_N ;
-lin dilutant_N = mkN "dilutant" "dilutants" ; -- compound nt_N ;
-lin pollutant_N = mkN "pollutant" "pollutants" ; -- compound nt_N ;
-lin mutant_N = mkN "mutant" "mutants" ; -- compound nt_N ;
-lin disputant_N = mkN "disputant" "disputants" ; -- compound nt_N ;
-lin sextant_N = mkN "sextant" "sextants" ; -- compound nt_N ;
-lin oxtant_N = mkN "oxtant" "oxtants" ; -- compound nt_N ;
-lin aliquant_N = mkN "aliquant" "aliquants" ; -- compound nt_N ;
-lin truant_N = mkN "truant" "truants" ; -- compound nt_N ;
-lin savant_N = mkN "savant" "savants" ; -- compound nt_N ;
-lin 'tableau vivant_N' = mkN "tableau vivant" "tableaux vivants" ; -- compound nt_N ;
-lin servant_N = mkN "servant" "servants" ; -- compound nt_N ;
-lin 'body-servant_N' = mkN "body-servant" "body-servants" ; -- compound nt_N ;
-lin maidservant_N = mkN "maidservant" "maidservants" ; -- compound nt_N ;
-lin manservant_N = mkN "manservant" "manservants" ; -- compound nt_N ;
-lin adjuvant_N = mkN "adjuvant" "adjuvants" ; -- compound nt_N ;
-lin want_N = mkN "want" "wants" ; -- compound nt_N ;
-lin relaxant_N = mkN "relaxant" "relaxants" ; -- compound nt_N ;
-lin clairvoyant_N = mkN "clairvoyant" "clairvoyants" ; -- compound nt_N ;
-lin bezant_N = mkN "bezant" "bezants" ; -- compound nt_N ;
-lin bent_N = mkN "bent" "bents" ; -- compound nt_N ;
-lin incumbent_N = mkN "incumbent" "incumbents" ; -- compound nt_N ;
-lin sorbent_N = mkN "sorbent" "sorbents" ; -- compound nt_N ;
-lin absorbent_N = mkN "absorbent" "absorbents" ; -- compound nt_N ;
-lin adsorbent_N = mkN "adsorbent" "adsorbents" ; -- compound nt_N ;
-lin cent_N = mkN "cent" "cents" ; -- compound nt_N ;
-lin accent_N = mkN "accent" "accents" ; -- compound nt_N ;
-lin demulcent_N = mkN "demulcent" "demulcents" ; -- compound nt_N ;
-lin docent_N = mkN "docent" "docents" ; -- compound nt_N ;
-lin innocent_N = mkN "innocent" "innocents" ; -- compound nt_N ;
-lin scent_N = mkN "scent" "scents" ; -- compound nt_N ;
-lin ascent_N = mkN "ascent" "ascents" ; -- compound nt_N ;
-lin descent_N = mkN "descent" "descents" ; -- compound nt_N ;
-lin convalescent_N = mkN "convalescent" "convalescents" ; -- compound nt_N ;
-lin adolescent_N = mkN "adolescent" "adolescents" ; -- compound nt_N ;
-lin crescent_N = mkN "crescent" "crescents" ; -- compound nt_N ;
-lin fluorescent_N = mkN "fluorescent" "fluorescents" ; -- compound nt_N ;
-lin abducent_N = mkN "abducent" "abducents" ; -- compound nt_N ;
-lin dent_N = mkN "dent" "dents" ; -- compound nt_N ;
-lin decadent_N = mkN "decadent" "decadents" ; -- compound nt_N ;
-lin precedent_N = mkN "precedent" "precedents" ; -- compound nt_N ;
-lin antecedent_N = mkN "antecedent" "antecedents" ; -- compound nt_N ;
-lin accident_N = mkN "accident" "accidents" ; -- compound nt_N ;
-lin incident_N = mkN "incident" "incidents" ; -- compound nt_N ;
-lin trident_N = mkN "trident" "tridents" ; -- compound nt_N ;
-lin resident_N = mkN "resident" "residents" ; -- compound nt_N ;
-lin nonresident_N = mkN "nonresident" "nonresidents" ; -- compound nt_N ;
-lin president_N = mkN "president" "presidents" ; -- compound nt_N ;
-lin dissident_N = mkN "dissident" "dissidents" ; -- compound nt_N ;
-lin ascendent_N = mkN "ascendent" "ascendents" ; -- compound nt_N ;
-lin dependent_N = mkN "dependent" "dependents" ; -- compound nt_N ;
-lin independent_N = mkN "independent" "independents" ; -- compound nt_N ;
-lin superintendent_N = mkN "superintendent" "superintendents" ; -- compound nt_N ;
-lin indent_N = mkN "indent" "indents" ; -- compound nt_N ;
-lin respondent_N = mkN "respondent" "respondents" ; -- compound nt_N ;
-lin 'co-respondent_N' = mkN "co-respondent" "co-respondents" ; -- compound nt_N ;
-lin corespondent_N = mkN "corespondent" "corespondents" ; -- compound nt_N ;
-lin correspondent_N = mkN "correspondent" "correspondents" ; -- compound nt_N ;
-lin rodent_N = mkN "rodent" "rodents" ; -- compound nt_N ;
-lin student_N = mkN "student" "students" ; -- compound nt_N ;
-lin gent_N = mkN "gent" "gents" ; -- compound nt_N ;
-lin agent_N = mkN "agent" "agents" ; -- compound nt_N ;
-lin 'land-agent_N' = mkN "land-agent" "land-agents" ; -- compound nt_N ;
-lin 'shipping-agent_N' = mkN "shipping-agent" "shipping-agents" ; -- compound nt_N ;
-lin 'press-agent_N' = mkN "press-agent" "press-agents" ; -- compound nt_N ;
-lin reagent_N = mkN "reagent" "reagents" ; -- compound nt_N ;
-lin newsagent_N = mkN "newsagent" "newsagents" ; -- compound nt_N ;
-lin regent_N = mkN "regent" "regents" ; -- compound nt_N ;
-lin tangent_N = mkN "tangent" "tangents" ; -- compound nt_N ;
-lin cotangent_N = mkN "cotangent" "cotangents" ; -- compound nt_N ;
-lin astringent_N = mkN "astringent" "astringents" ; -- compound nt_N ;
-lin contingent_N = mkN "contingent" "contingents" ; -- compound nt_N ;
-lin argent_N = mkN "argent" "argents" ; -- compound nt_N ;
-lin detergent_N = mkN "detergent" "detergents" ; -- compound nt_N ;
-lin insurgent_N = mkN "insurgent" "insurgents" ; -- compound nt_N ;
-lin rubefacient_N = mkN "rubefacient" "rubefacients" ; -- compound nt_N ;
-lin abortifacient_N = mkN "abortifacient" "abortifacients" ; -- compound nt_N ;
-lin coefficient_N = mkN "coefficient" "coefficients" ; -- compound nt_N ;
-lin ancient_N = mkN "ancient" "ancients" ; -- compound nt_N ;
-lin gradient_N = mkN "gradient" "gradients" ; -- compound nt_N ;
-lin expedient_N = mkN "expedient" "expedients" ; -- compound nt_N ;
-lin ingredient_N = mkN "ingredient" "ingredients" ; -- compound nt_N ;
-lin salient_N = mkN "salient" "salients" ; -- compound nt_N ;
-lin client_N = mkN "client" "clients" ; -- compound nt_N ;
-lin recipient_N = mkN "recipient" "recipients" ; -- compound nt_N ;
-lin aperient_N = mkN "aperient" "aperients" ; -- compound nt_N ;
-lin orient_N = mkN "orient" "orients" ; -- compound nt_N ;
-lin nutrient_N = mkN "nutrient" "nutrients" ; -- compound nt_N ;
-lin micronutrient_N = mkN "micronutrient" "micronutrients" ; -- compound nt_N ;
-lin transient_N = mkN "transient" "transients" ; -- compound nt_N ;
-lin patient_N = mkN "patient" "patients" ; -- compound nt_N ;
-lin 'in-patient_N' = mkN "in-patient" "in-patients" ; -- compound nt_N ;
-lin inpatient_N = mkN "inpatient" "inpatients" ; -- compound nt_N ;
-lin outpatient_N = mkN "outpatient" "outpatients" ; -- compound nt_N ;
-lin quotient_N = mkN "quotient" "quotients" ; -- compound nt_N ;
-lin lent_N = mkN "lent" "lents" ; -- compound nt_N ;
-lin talent_N = mkN "talent" "talents" ; -- compound nt_N ;
-lin equivalent_N = mkN "equivalent" "equivalents" ; -- compound nt_N ;
-lin milliequivalent_N = mkN "milliequivalent" "milliequivalents" ; -- compound nt_N ;
-lin repellent_N = mkN "repellent" "repellents" ; -- compound nt_N ;
-lin propellent_N = mkN "propellent" "propellents" ; -- compound nt_N ;
-lin succulent_N = mkN "succulent" "succulents" ; -- compound nt_N ;
-lin antiflatulent_N = mkN "antiflatulent" "antiflatulents" ; -- compound nt_N ;
-lin medicament_N = mkN "medicament" "medicaments" ; -- compound nt_N ;
-lin predicament_N = mkN "predicament" "predicaments" ; -- compound nt_N ;
-lin lineament_N = mkN "lineament" "lineaments" ; -- compound nt_N ;
-lin ligament_N = mkN "ligament" "ligaments" ; -- compound nt_N ;
-lin parliament_N = mkN "parliament" "parliaments" ; -- compound nt_N ;
-lin lament_N = mkN "lament" "laments" ; -- compound nt_N ;
-lin filament_N = mkN "filament" "filaments" ; -- compound nt_N ;
-lin armament_N = mkN "armament" "armaments" ; -- compound nt_N ;
-lin rearmament_N = mkN "rearmament" "rearmaments" ; -- compound nt_N ;
-lin disarmament_N = mkN "disarmament" "disarmaments" ; -- compound nt_N ;
-lin firmament_N = mkN "firmament" "firmaments" ; -- compound nt_N ;
-lin ornament_N = mkN "ornament" "ornaments" ; -- compound nt_N ;
-lin tournament_N = mkN "tournament" "tournaments" ; -- compound nt_N ;
-lin sacrament_N = mkN "sacrament" "sacraments" ; -- compound nt_N ;
-lin temperament_N = mkN "temperament" "temperaments" ; -- compound nt_N ;
-lin arbitrament_N = mkN "arbitrament" "arbitraments" ; -- compound nt_N ;
-lin hereditament_N = mkN "hereditament" "hereditaments" ; -- compound nt_N ;
-lin testament_N = mkN "testament" "testaments" ; -- compound nt_N ;
-lin enjambment_N = mkN "enjambment" "enjambments" ; -- compound nt_N ;
-lin oddment_N = mkN "oddment" "oddments" ; -- compound nt_N ;
-lin weldment_N = mkN "weldment" "weldments" ; -- compound nt_N ;
-lin disbandment_N = mkN "disbandment" "disbandments" ; -- compound nt_N ;
-lin commandment_N = mkN "commandment" "commandments" ; -- compound nt_N ;
-lin amendment_N = mkN "amendment" "amendments" ; -- compound nt_N ;
-lin secondment_N = mkN "secondment" "secondments" ; -- compound nt_N ;
-lin abscondment_N = mkN "abscondment" "abscondments" ; -- compound nt_N ;
-lin impoundment_N = mkN "impoundment" "impoundments" ; -- compound nt_N ;
-lin bombardment_N = mkN "bombardment" "bombardments" ; -- compound nt_N ;
-lin counterbombardment_N = mkN "counterbombardment" "counterbombardments" ; -- compound nt_N ;
-lin cement_N = mkN "cement" "cements" ; -- compound nt_N ;
-lin defacement_N = mkN "defacement" "defacements" ; -- compound nt_N ;
-lin effacement_N = mkN "effacement" "effacements" ; -- compound nt_N ;
-lin placement_N = mkN "placement" "placements" ; -- compound nt_N ;
-lin replacement_N = mkN "replacement" "replacements" ; -- compound nt_N ;
-lin emplacement_N = mkN "emplacement" "emplacements" ; -- compound nt_N ;
-lin displacement_N = mkN "displacement" "displacements" ; -- compound nt_N ;
-lin enticement_N = mkN "enticement" "enticements" ; -- compound nt_N ;
-lin enhancement_N = mkN "enhancement" "enhancements" ; -- compound nt_N ;
-lin entrancement_N = mkN "entrancement" "entrancements" ; -- compound nt_N ;
-lin advancement_N = mkN "advancement" "advancements" ; -- compound nt_N ;
-lin commencement_N = mkN "commencement" "commencements" ; -- compound nt_N ;
-lin announcement_N = mkN "announcement" "announcements" ; -- compound nt_N ;
-lin pronouncement_N = mkN "pronouncement" "pronouncements" ; -- compound nt_N ;
-lin enforcement_N = mkN "enforcement" "enforcements" ; -- compound nt_N ;
-lin reinforcement_N = mkN "reinforcement" "reinforcements" ; -- compound nt_N ;
-lin inducement_N = mkN "inducement" "inducements" ; -- compound nt_N ;
-lin debridement_N = mkN "debridement" "debridements" ; -- compound nt_N ;
-lin agreement_N = mkN "agreement" "agreements" ; -- compound nt_N ;
-lin disagreement_N = mkN "disagreement" "disagreements" ; -- compound nt_N ;
-lin engagement_N = mkN "engagement" "engagements" ; -- compound nt_N ;
-lin disengagement_N = mkN "disengagement" "disengagements" ; -- compound nt_N ;
-lin management_N = mkN "management" "managements" ; -- compound nt_N ;
-lin mismanagement_N = mkN "mismanagement" "mismanagements" ; -- compound nt_N ;
-lin disparagement_N = mkN "disparagement" "disparagements" ; -- compound nt_N ;
-lin encouragement_N = mkN "encouragement" "encouragements" ; -- compound nt_N ;
-lin discouragement_N = mkN "discouragement" "discouragements" ; -- compound nt_N ;
-lin acknowledgement_N = mkN "acknowledgement" "acknowledgements" ; -- compound nt_N ;
-lin abridgement_N = mkN "abridgement" "abridgements" ; -- compound nt_N ;
-lin lodgement_N = mkN "lodgement" "lodgements" ; -- compound nt_N ;
-lin dislodgement_N = mkN "dislodgement" "dislodgements" ; -- compound nt_N ;
-lin judgement_N = mkN "judgement" "judgements" ; -- compound nt_N ;
-lin prejudgement_N = mkN "prejudgement" "prejudgements" ; -- compound nt_N ;
-lin derangement_N = mkN "derangement" "derangements" ; -- compound nt_N ;
-lin arrangement_N = mkN "arrangement" "arrangements" ; -- compound nt_N ;
-lin rearrangement_N = mkN "rearrangement" "rearrangements" ; -- compound nt_N ;
-lin prearrangement_N = mkN "prearrangement" "prearrangements" ; -- compound nt_N ;
-lin disarrangement_N = mkN "disarrangement" "disarrangements" ; -- compound nt_N ;
-lin estrangement_N = mkN "estrangement" "estrangements" ; -- compound nt_N ;
-lin impingement_N = mkN "impingement" "impingements" ; -- compound nt_N ;
-lin infringement_N = mkN "infringement" "infringements" ; -- compound nt_N ;
-lin enlargement_N = mkN "enlargement" "enlargements" ; -- compound nt_N ;
-lin engorgement_N = mkN "engorgement" "engorgements" ; -- compound nt_N ;
-lin rapprochement_N = mkN "rapprochement" "rapprochements" ; -- compound nt_N ;
-lin accouchement_N = mkN "accouchement" "accouchements" ; -- compound nt_N ;
-lin impalement_N = mkN "impalement" "impalements" ; -- compound nt_N ;
-lin disablement_N = mkN "disablement" "disablements" ; -- compound nt_N ;
-lin ennoblement_N = mkN "ennoblement" "ennoblements" ; -- compound nt_N ;
-lin encirclement_N = mkN "encirclement" "encirclements" ; -- compound nt_N ;
-lin element_N = mkN "element" "elements" ; -- compound nt_N ;
-lin entanglement_N = mkN "entanglement" "entanglements" ; -- compound nt_N ;
-lin disentanglement_N = mkN "disentanglement" "disentanglements" ; -- compound nt_N ;
-lin defilement_N = mkN "defilement" "defilements" ; -- compound nt_N ;
-lin beguilement_N = mkN "beguilement" "beguilements" ; -- compound nt_N ;
-lin implement_N = mkN "implement" "implements" ; -- compound nt_N ;
-lin complement_N = mkN "complement" "complements" ; -- compound nt_N ;
-lin supplement_N = mkN "supplement" "supplements" ; -- compound nt_N ;
-lin entitlement_N = mkN "entitlement" "entitlements" ; -- compound nt_N ;
-lin dismantlement_N = mkN "dismantlement" "dismantlements" ; -- compound nt_N ;
-lin disgruntlement_N = mkN "disgruntlement" "disgruntlements" ; -- compound nt_N ;
-lin battlement_N = mkN "battlement" "battlements" ; -- compound nt_N ;
-lin settlement_N = mkN "settlement" "settlements" ; -- compound nt_N ;
-lin resettlement_N = mkN "resettlement" "resettlements" ; -- compound nt_N ;
-lin embezzlement_N = mkN "embezzlement" "embezzlements" ; -- compound nt_N ;
-lin puzzlement_N = mkN "puzzlement" "puzzlements" ; -- compound nt_N ;
-lin tenement_N = mkN "tenement" "tenements" ; -- compound nt_N ;
-lin refinement_N = mkN "refinement" "refinements" ; -- compound nt_N ;
-lin confinement_N = mkN "confinement" "confinements" ; -- compound nt_N ;
-lin postponement_N = mkN "postponement" "postponements" ; -- compound nt_N ;
-lin dethronement_N = mkN "dethronement" "dethronements" ; -- compound nt_N ;
-lin enthronement_N = mkN "enthronement" "enthronements" ; -- compound nt_N ;
-lin atonement_N = mkN "atonement" "atonements" ; -- compound nt_N ;
-lin escapement_N = mkN "escapement" "escapements" ; -- compound nt_N ;
-lin elopement_N = mkN "elopement" "elopements" ; -- compound nt_N ;
-lin increment_N = mkN "increment" "increments" ; -- compound nt_N ;
-lin excrement_N = mkN "excrement" "excrements" ; -- compound nt_N ;
-lin retirement_N = mkN "retirement" "retirements" ; -- compound nt_N ;
-lin acquirement_N = mkN "acquirement" "acquirements" ; -- compound nt_N ;
-lin requirement_N = mkN "requirement" "requirements" ; -- compound nt_N ;
-lin procurement_N = mkN "procurement" "procurements" ; -- compound nt_N ;
-lin disfigurement_N = mkN "disfigurement" "disfigurements" ; -- compound nt_N ;
-lin allurement_N = mkN "allurement" "allurements" ; -- compound nt_N ;
-lin measurement_N = mkN "measurement" "measurements" ; -- compound nt_N ;
-lin basement_N = mkN "basement" "basements" ; -- compound nt_N ;
-lin abasement_N = mkN "abasement" "abasements" ; -- compound nt_N ;
-lin 'self-abasement_N' = mkN "self-abasement" "self-abasements" ; -- compound nt_N ;
-lin debasement_N = mkN "debasement" "debasements" ; -- compound nt_N ;
-lin casement_N = mkN "casement" "casements" ; -- compound nt_N ;
-lin encasement_N = mkN "encasement" "encasements" ; -- compound nt_N ;
-lin easement_N = mkN "easement" "easements" ; -- compound nt_N ;
-lin appeasement_N = mkN "appeasement" "appeasements" ; -- compound nt_N ;
-lin enfranchisement_N = mkN "enfranchisement" "enfranchisements" ; -- compound nt_N ;
-lin disenfranchisement_N = mkN "disenfranchisement" "disenfranchisements" ; -- compound nt_N ;
-lin disfranchisement_N = mkN "disfranchisement" "disfranchisements" ; -- compound nt_N ;
-lin advertisement_N = mkN "advertisement" "advertisements" ; -- compound nt_N ;
-lin chastisement_N = mkN "chastisement" "chastisements" ; -- compound nt_N ;
-lin endorsement_N = mkN "endorsement" "endorsements" ; -- compound nt_N ;
-lin reimbursement_N = mkN "reimbursement" "reimbursements" ; -- compound nt_N ;
-lin disbursement_N = mkN "disbursement" "disbursements" ; -- compound nt_N ;
-lin amusement_N = mkN "amusement" "amusements" ; -- compound nt_N ;
-lin abatement_N = mkN "abatement" "abatements" ; -- compound nt_N ;
-lin statement_N = mkN "statement" "statements" ; -- compound nt_N ;
-lin restatement_N = mkN "restatement" "restatements" ; -- compound nt_N ;
-lin reinstatement_N = mkN "reinstatement" "reinstatements" ; -- compound nt_N ;
-lin understatement_N = mkN "understatement" "understatements" ; -- compound nt_N ;
-lin overstatement_N = mkN "overstatement" "overstatements" ; -- compound nt_N ;
-lin misstatement_N = mkN "misstatement" "misstatements" ; -- compound nt_N ;
-lin incitement_N = mkN "incitement" "incitements" ; -- compound nt_N ;
-lin excitement_N = mkN "excitement" "excitements" ; -- compound nt_N ;
-lin tapotement_N = mkN "tapotement" "tapotements" ; -- compound nt_N ;
-lin ballottement_N = mkN "ballottement" "ballottements" ; -- compound nt_N ;
-lin dénouement_N = mkN "dénouement" "dénouements" ; -- compound nt_N ;
-lin bereavement_N = mkN "bereavement" "bereavements" ; -- compound nt_N ;
-lin enslavement_N = mkN "enslavement" "enslavements" ; -- compound nt_N ;
-lin pavement_N = mkN "pavement" "pavements" ; -- compound nt_N ;
-lin achievement_N = mkN "achievement" "achievements" ; -- compound nt_N ;
-lin underachievement_N = mkN "underachievement" "underachievements" ; -- compound nt_N ;
-lin overachievement_N = mkN "overachievement" "overachievements" ; -- compound nt_N ;
-lin involvement_N = mkN "involvement" "involvements" ; -- compound nt_N ;
-lin movement_N = mkN "movement" "movements" ; -- compound nt_N ;
-lin improvement_N = mkN "improvement" "improvements" ; -- compound nt_N ;
-lin amazement_N = mkN "amazement" "amazements" ; -- compound nt_N ;
-lin aggrandizement_N = mkN "aggrandizement" "aggrandizements" ; -- compound nt_N ;
-lin enfeoffment_N = mkN "enfeoffment" "enfeoffments" ; -- compound nt_N ;
-lin fragment_N = mkN "fragment" "fragments" ; -- compound nt_N ;
-lin acknowledgment_N = mkN "acknowledgment" "acknowledgments" ; -- compound nt_N ;
-lin abridgment_N = mkN "abridgment" "abridgments" ; -- compound nt_N ;
-lin lodgment_N = mkN "lodgment" "lodgments" ; -- compound nt_N ;
-lin dislodgment_N = mkN "dislodgment" "dislodgments" ; -- compound nt_N ;
-lin judgment_N = mkN "judgment" "judgments" ; -- compound nt_N ;
-lin prejudgment_N = mkN "prejudgment" "prejudgments" ; -- compound nt_N ;
-lin segment_N = mkN "segment" "segments" ; -- compound nt_N ;
-lin figment_N = mkN "figment" "figments" ; -- compound nt_N ;
-lin pigment_N = mkN "pigment" "pigments" ; -- compound nt_N ;
-lin photopigment_N = mkN "photopigment" "photopigments" ; -- compound nt_N ;
-lin impeachment_N = mkN "impeachment" "impeachments" ; -- compound nt_N ;
-lin encroachment_N = mkN "encroachment" "encroachments" ; -- compound nt_N ;
-lin detachment_N = mkN "detachment" "detachments" ; -- compound nt_N ;
-lin attachment_N = mkN "attachment" "attachments" ; -- compound nt_N ;
-lin enrichment_N = mkN "enrichment" "enrichments" ; -- compound nt_N ;
-lin retrenchment_N = mkN "retrenchment" "retrenchments" ; -- compound nt_N ;
-lin entrenchment_N = mkN "entrenchment" "entrenchments" ; -- compound nt_N ;
-lin parchment_N = mkN "parchment" "parchments" ; -- compound nt_N ;
-lin catchment_N = mkN "catchment" "catchments" ; -- compound nt_N ;
-lin abashment_N = mkN "abashment" "abashments" ; -- compound nt_N ;
-lin refreshment_N = mkN "refreshment" "refreshments" ; -- compound nt_N ;
-lin blandishment_N = mkN "blandishment" "blandishments" ; -- compound nt_N ;
-lin establishment_N = mkN "establishment" "establishments" ; -- compound nt_N ;
-lin disestablishment_N = mkN "disestablishment" "disestablishments" ; -- compound nt_N ;
-lin embellishment_N = mkN "embellishment" "embellishments" ; -- compound nt_N ;
-lin accomplishment_N = mkN "accomplishment" "accomplishments" ; -- compound nt_N ;
-lin nonaccomplishment_N = mkN "nonaccomplishment" "nonaccomplishments" ; -- compound nt_N ;
-lin banishment_N = mkN "banishment" "banishments" ; -- compound nt_N ;
-lin replenishment_N = mkN "replenishment" "replenishments" ; -- compound nt_N ;
-lin astonishment_N = mkN "astonishment" "astonishments" ; -- compound nt_N ;
-lin garnishment_N = mkN "garnishment" "garnishments" ; -- compound nt_N ;
-lin punishment_N = mkN "punishment" "punishments" ; -- compound nt_N ;
-lin impoverishment_N = mkN "impoverishment" "impoverishments" ; -- compound nt_N ;
-lin nourishment_N = mkN "nourishment" "nourishments" ; -- compound nt_N ;
-lin undernourishment_N = mkN "undernourishment" "undernourishments" ; -- compound nt_N ;
-lin relinquishment_N = mkN "relinquishment" "relinquishments" ; -- compound nt_N ;
-lin ravishment_N = mkN "ravishment" "ravishments" ; -- compound nt_N ;
-lin raiment_N = mkN "raiment" "raiments" ; -- compound nt_N ;
-lin pediment_N = mkN "pediment" "pediments" ; -- compound nt_N ;
-lin impediment_N = mkN "impediment" "impediments" ; -- compound nt_N ;
-lin sediment_N = mkN "sediment" "sediments" ; -- compound nt_N ;
-lin condiment_N = mkN "condiment" "condiments" ; -- compound nt_N ;
-lin embodiment_N = mkN "embodiment" "embodiments" ; -- compound nt_N ;
-lin rudiment_N = mkN "rudiment" "rudiments" ; -- compound nt_N ;
-lin regiment_N = mkN "regiment" "regiments" ; -- compound nt_N ;
-lin compliment_N = mkN "compliment" "compliments" ; -- compound nt_N ;
-lin accompaniment_N = mkN "accompaniment" "accompaniments" ; -- compound nt_N ;
-lin liniment_N = mkN "liniment" "liniments" ; -- compound nt_N ;
-lin orpiment_N = mkN "orpiment" "orpiments" ; -- compound nt_N ;
-lin experiment_N = mkN "experiment" "experiments" ; -- compound nt_N ;
-lin merriment_N = mkN "merriment" "merriments" ; -- compound nt_N ;
-lin detriment_N = mkN "detriment" "detriments" ; -- compound nt_N ;
-lin nutriment_N = mkN "nutriment" "nutriments" ; -- compound nt_N ;
-lin sentiment_N = mkN "sentiment" "sentiments" ; -- compound nt_N ;
-lin presentiment_N = mkN "presentiment" "presentiments" ; -- compound nt_N ;
-lin embankment_N = mkN "embankment" "embankments" ; -- compound nt_N ;
-lin concealment_N = mkN "concealment" "concealments" ; -- compound nt_N ;
-lin congealment_N = mkN "congealment" "congealments" ; -- compound nt_N ;
-lin instalment_N = mkN "instalment" "instalments" ; -- compound nt_N ;
-lin disembowelment_N = mkN "disembowelment" "disembowelments" ; -- compound nt_N ;
-lin ailment_N = mkN "ailment" "ailments" ; -- compound nt_N ;
-lin bailment_N = mkN "bailment" "bailments" ; -- compound nt_N ;
-lin derailment_N = mkN "derailment" "derailments" ; -- compound nt_N ;
-lin curtailment_N = mkN "curtailment" "curtailments" ; -- compound nt_N ;
-lin fulfilment_N = mkN "fulfilment" "fulfilments" ; -- compound nt_N ;
-lin devilment_N = mkN "devilment" "devilments" ; -- compound nt_N ;
-lin bedevilment_N = mkN "bedevilment" "bedevilments" ; -- compound nt_N ;
-lin installment_N = mkN "installment" "installments" ; -- compound nt_N ;
-lin fulfillment_N = mkN "fulfillment" "fulfillments" ; -- compound nt_N ;
-lin enrolment_N = mkN "enrolment" "enrolments" ; -- compound nt_N ;
-lin annulment_N = mkN "annulment" "annulments" ; -- compound nt_N ;
-lin befoulment_N = mkN "befoulment" "befoulments" ; -- compound nt_N ;
-lin embalmment_N = mkN "embalmment" "embalmments" ; -- compound nt_N ;
-lin comment_N = mkN "comment" "comments" ; -- compound nt_N ;
-lin enlightenment_N = mkN "enlightenment" "enlightenments" ; -- compound nt_N ;
-lin unenlightenment_N = mkN "unenlightenment" "unenlightenments" ; -- compound nt_N ;
-lin disheartenment_N = mkN "disheartenment" "disheartenments" ; -- compound nt_N ;
-lin arraignment_N = mkN "arraignment" "arraignments" ; -- compound nt_N ;
-lin alignment_N = mkN "alignment" "alignments" ; -- compound nt_N ;
-lin dealignment_N = mkN "dealignment" "dealignments" ; -- compound nt_N ;
-lin nonalignment_N = mkN "nonalignment" "nonalignments" ; -- compound nt_N ;
-lin misalignment_N = mkN "misalignment" "misalignments" ; -- compound nt_N ;
-lin consignment_N = mkN "consignment" "consignments" ; -- compound nt_N ;
-lin assignment_N = mkN "assignment" "assignments" ; -- compound nt_N ;
-lin reassignment_N = mkN "reassignment" "reassignments" ; -- compound nt_N ;
-lin obtainment_N = mkN "obtainment" "obtainments" ; -- compound nt_N ;
-lin militainment_N = mkN "militainment" "militainments" ; -- compound nt_N ;
-lin containment_N = mkN "containment" "containments" ; -- compound nt_N ;
-lin entertainment_N = mkN "entertainment" "entertainments" ; -- compound nt_N ;
-lin attainment_N = mkN "attainment" "attainments" ; -- compound nt_N ;
-lin edutainment_N = mkN "edutainment" "edutainments" ; -- compound nt_N ;
-lin abandonment_N = mkN "abandonment" "abandonments" ; -- compound nt_N ;
-lin disillusionment_N = mkN "disillusionment" "disillusionments" ; -- compound nt_N ;
-lin apportionment_N = mkN "apportionment" "apportionments" ; -- compound nt_N ;
-lin environment_N = mkN "environment" "environments" ; -- compound nt_N ;
-lin imprisonment_N = mkN "imprisonment" "imprisonments" ; -- compound nt_N ;
-lin cantonment_N = mkN "cantonment" "cantonments" ; -- compound nt_N ;
-lin discernment_N = mkN "discernment" "discernments" ; -- compound nt_N ;
-lin internment_N = mkN "internment" "internments" ; -- compound nt_N ;
-lin government_N = mkN "government" "governments" ; -- compound nt_N ;
-lin misgovernment_N = mkN "misgovernment" "misgovernments" ; -- compound nt_N ;
-lin adornment_N = mkN "adornment" "adornments" ; -- compound nt_N ;
-lin adjournment_N = mkN "adjournment" "adjournments" ; -- compound nt_N ;
-lin disownment_N = mkN "disownment" "disownments" ; -- compound nt_N ;
-lin loment_N = mkN "loment" "loments" ; -- compound nt_N ;
-lin moment_N = mkN "moment" "moments" ; -- compound nt_N ;
-lin entrapment_N = mkN "entrapment" "entrapments" ; -- compound nt_N ;
-lin shipment_N = mkN "shipment" "shipments" ; -- compound nt_N ;
-lin reshipment_N = mkN "reshipment" "reshipments" ; -- compound nt_N ;
-lin transshipment_N = mkN "transshipment" "transshipments" ; -- compound nt_N ;
-lin equipment_N = mkN "equipment" "equipments" ; -- compound nt_N ;
-lin decampment_N = mkN "decampment" "decampments" ; -- compound nt_N ;
-lin encampment_N = mkN "encampment" "encampments" ; -- compound nt_N ;
-lin development_N = mkN "development" "developments" ; -- compound nt_N ;
-lin redevelopment_N = mkN "redevelopment" "redevelopments" ; -- compound nt_N ;
-lin nondevelopment_N = mkN "nondevelopment" "nondevelopments" ; -- compound nt_N ;
-lin underdevelopment_N = mkN "underdevelopment" "underdevelopments" ; -- compound nt_N ;
-lin envelopment_N = mkN "envelopment" "envelopments" ; -- compound nt_N ;
-lin escarpment_N = mkN "escarpment" "escarpments" ; -- compound nt_N ;
-lin debarment_N = mkN "debarment" "debarments" ; -- compound nt_N ;
-lin disbarment_N = mkN "disbarment" "disbarments" ; -- compound nt_N ;
-lin endearment_N = mkN "endearment" "endearments" ; -- compound nt_N ;
-lin garment_N = mkN "garment" "garments" ; -- compound nt_N ;
-lin undergarment_N = mkN "undergarment" "undergarments" ; -- compound nt_N ;
-lin overgarment_N = mkN "overgarment" "overgarments" ; -- compound nt_N ;
-lin dismemberment_N = mkN "dismemberment" "dismemberments" ; -- compound nt_N ;
-lin bewilderment_N = mkN "bewilderment" "bewilderments" ; -- compound nt_N ;
-lin wonderment_N = mkN "wonderment" "wonderments" ; -- compound nt_N ;
-lin ferment_N = mkN "ferment" "ferments" ; -- compound nt_N ;
-lin deferment_N = mkN "deferment" "deferments" ; -- compound nt_N ;
-lin preferment_N = mkN "preferment" "preferments" ; -- compound nt_N ;
-lin conferment_N = mkN "conferment" "conferments" ; -- compound nt_N ;
-lin determent_N = mkN "determent" "determents" ; -- compound nt_N ;
-lin interment_N = mkN "interment" "interments" ; -- compound nt_N ;
-lin disinterment_N = mkN "disinterment" "disinterments" ; -- compound nt_N ;
-lin betterment_N = mkN "betterment" "betterments" ; -- compound nt_N ;
-lin embitterment_N = mkN "embitterment" "embitterments" ; -- compound nt_N ;
-lin impairment_N = mkN "impairment" "impairments" ; -- compound nt_N ;
-lin torment_N = mkN "torment" "torments" ; -- compound nt_N ;
-lin encompassment_N = mkN "encompassment" "encompassments" ; -- compound nt_N ;
-lin harassment_N = mkN "harassment" "harassments" ; -- compound nt_N ;
-lin embarrassment_N = mkN "embarrassment" "embarrassments" ; -- compound nt_N ;
-lin disembarrassment_N = mkN "disembarrassment" "disembarrassments" ; -- compound nt_N ;
-lin assessment_N = mkN "assessment" "assessments" ; -- compound nt_N ;
-lin reassessment_N = mkN "reassessment" "reassessments" ; -- compound nt_N ;
-lin treatment_N = mkN "treatment" "treatments" ; -- compound nt_N ;
-lin 'ill-treatment_N' = mkN "ill-treatment" "ill-treatments" ; -- compound nt_N ;
-lin maltreatment_N = mkN "maltreatment" "maltreatments" ; -- compound nt_N ;
-lin mistreatment_N = mkN "mistreatment" "mistreatments" ; -- compound nt_N ;
-lin enactment_N = mkN "enactment" "enactments" ; -- compound nt_N ;
-lin reenactment_N = mkN "reenactment" "reenactments" ; -- compound nt_N ;
-lin indictment_N = mkN "indictment" "indictments" ; -- compound nt_N ;
-lin abetment_N = mkN "abetment" "abetments" ; -- compound nt_N ;
-lin revetment_N = mkN "revetment" "revetments" ; -- compound nt_N ;
-lin fitment_N = mkN "fitment" "fitments" ; -- compound nt_N ;
-lin commitment_N = mkN "commitment" "commitments" ; -- compound nt_N ;
-lin recruitment_N = mkN "recruitment" "recruitments" ; -- compound nt_N ;
-lin enchantment_N = mkN "enchantment" "enchantments" ; -- compound nt_N ;
-lin disenchantment_N = mkN "disenchantment" "disenchantments" ; -- compound nt_N ;
-lin resentment_N = mkN "resentment" "resentments" ; -- compound nt_N ;
-lin presentment_N = mkN "presentment" "presentments" ; -- compound nt_N ;
-lin contentment_N = mkN "contentment" "contentments" ; -- compound nt_N ;
-lin discontentment_N = mkN "discontentment" "discontentments" ; -- compound nt_N ;
-lin ointment_N = mkN "ointment" "ointments" ; -- compound nt_N ;
-lin anointment_N = mkN "anointment" "anointments" ; -- compound nt_N ;
-lin appointment_N = mkN "appointment" "appointments" ; -- compound nt_N ;
-lin disappointment_N = mkN "disappointment" "disappointments" ; -- compound nt_N ;
-lin allotment_N = mkN "allotment" "allotments" ; -- compound nt_N ;
-lin reallotment_N = mkN "reallotment" "reallotments" ; -- compound nt_N ;
-lin apartment_N = mkN "apartment" "apartments" ; -- compound nt_N ;
-lin department_N = mkN "department" "departments" ; -- compound nt_N ;
-lin compartment_N = mkN "compartment" "compartments" ; -- compound nt_N ;
-lin 'glove-compartment_N' = mkN "glove-compartment" "glove-compartments" ; -- compound nt_N ;
-lin 'smoking-compartment_N' = mkN "smoking-compartment" "smoking-compartments" ; -- compound nt_N ;
-lin deportment_N = mkN "deportment" "deportments" ; -- compound nt_N ;
-lin comportment_N = mkN "comportment" "comportments" ; -- compound nt_N ;
-lin assortment_N = mkN "assortment" "assortments" ; -- compound nt_N ;
-lin vestment_N = mkN "vestment" "vestments" ; -- compound nt_N ;
-lin investment_N = mkN "investment" "investments" ; -- compound nt_N ;
-lin disinvestment_N = mkN "disinvestment" "disinvestments" ; -- compound nt_N ;
-lin enlistment_N = mkN "enlistment" "enlistments" ; -- compound nt_N ;
-lin reenlistment_N = mkN "reenlistment" "reenlistments" ; -- compound nt_N ;
-lin adjustment_N = mkN "adjustment" "adjustments" ; -- compound nt_N ;
-lin readjustment_N = mkN "readjustment" "readjustments" ; -- compound nt_N ;
-lin maladjustment_N = mkN "maladjustment" "maladjustments" ; -- compound nt_N ;
-lin abutment_N = mkN "abutment" "abutments" ; -- compound nt_N ;
-lin hutment_N = mkN "hutment" "hutments" ; -- compound nt_N ;
-lin document_N = mkN "document" "documents" ; -- compound nt_N ;
-lin tegument_N = mkN "tegument" "teguments" ; -- compound nt_N ;
-lin integument_N = mkN "integument" "integuments" ; -- compound nt_N ;
-lin argument_N = mkN "argument" "arguments" ; -- compound nt_N ;
-lin counterargument_N = mkN "counterargument" "counterarguments" ; -- compound nt_N ;
-lin emolument_N = mkN "emolument" "emoluments" ; -- compound nt_N ;
-lin monument_N = mkN "monument" "monuments" ; -- compound nt_N ;
-lin instrument_N = mkN "instrument" "instruments" ; -- compound nt_N ;
-lin endowment_N = mkN "endowment" "endowments" ; -- compound nt_N ;
-lin payment_N = mkN "payment" "payments" ; -- compound nt_N ;
-lin repayment_N = mkN "repayment" "repayments" ; -- compound nt_N ;
-lin prepayment_N = mkN "prepayment" "prepayments" ; -- compound nt_N ;
-lin nonpayment_N = mkN "nonpayment" "nonpayments" ; -- compound nt_N ;
-lin underpayment_N = mkN "underpayment" "underpayments" ; -- compound nt_N ;
-lin overpayment_N = mkN "overpayment" "overpayments" ; -- compound nt_N ;
-lin defrayment_N = mkN "defrayment" "defrayments" ; -- compound nt_N ;
-lin enjoyment_N = mkN "enjoyment" "enjoyments" ; -- compound nt_N ;
-lin deployment_N = mkN "deployment" "deployments" ; -- compound nt_N ;
-lin redeployment_N = mkN "redeployment" "redeployments" ; -- compound nt_N ;
-lin employment_N = mkN "employment" "employments" ; -- compound nt_N ;
-lin unemployment_N = mkN "unemployment" "unemployments" ; -- compound nt_N ;
-lin continent_N = mkN "continent" "continents" ; -- compound nt_N ;
-lin subcontinent_N = mkN "subcontinent" "subcontinents" ; -- compound nt_N ;
-lin deponent_N = mkN "deponent" "deponents" ; -- compound nt_N ;
-lin component_N = mkN "component" "components" ; -- compound nt_N ;
-lin proponent_N = mkN "proponent" "proponents" ; -- compound nt_N ;
-lin opponent_N = mkN "opponent" "opponents" ; -- compound nt_N ;
-lin exponent_N = mkN "exponent" "exponents" ; -- compound nt_N ;
-lin arpent_N = mkN "arpent" "arpents" ; -- compound nt_N ;
-lin serpent_N = mkN "serpent" "serpents" ; -- compound nt_N ;
-lin rent_N = mkN "rent" "rents" ; -- compound nt_N ;
-lin 'ground-rent_N' = mkN "ground-rent" "ground-rents" ; -- compound nt_N ;
-lin 'rack-rent_N' = mkN "rack-rent" "rack-rents" ; -- compound nt_N ;
-lin parent_N = mkN "parent" "parents" ; -- compound nt_N ;
-lin 'foster-parent_N' = mkN "foster-parent" "foster-parents" ; -- compound nt_N ;
-lin grandparent_N = mkN "grandparent" "grandparents" ; -- compound nt_N ;
-lin godparent_N = mkN "godparent" "godparents" ; -- compound nt_N ;
-lin stepparent_N = mkN "stepparent" "stepparents" ; -- compound nt_N ;
-lin referent_N = mkN "referent" "referents" ; -- compound nt_N ;
-lin vicegerent_N = mkN "vicegerent" "vicegerents" ; -- compound nt_N ;
-lin belligerent_N = mkN "belligerent" "belligerents" ; -- compound nt_N ;
-lin adherent_N = mkN "adherent" "adherents" ; -- compound nt_N ;
-lin deterrent_N = mkN "deterrent" "deterrents" ; -- compound nt_N ;
-lin torrent_N = mkN "torrent" "torrents" ; -- compound nt_N ;
-lin current_N = mkN "current" "currents" ; -- compound nt_N ;
-lin undercurrent_N = mkN "undercurrent" "undercurrents" ; -- compound nt_N ;
-lin countercurrent_N = mkN "countercurrent" "countercurrents" ; -- compound nt_N ;
-lin crosscurrent_N = mkN "crosscurrent" "crosscurrents" ; -- compound nt_N ;
-lin sent_N = mkN "sent" "sents" ; -- compound nt_N ;
-lin present_N = mkN "present" "presents" ; -- compound nt_N ;
-lin wisent_N = mkN "wisent" "wisents" ; -- compound nt_N ;
-lin consent_N = mkN "consent" "consents" ; -- compound nt_N ;
-lin assent_N = mkN "assent" "assents" ; -- compound nt_N ;
-lin dissent_N = mkN "dissent" "dissents" ; -- compound nt_N ;
-lin tent_N = mkN "tent" "tents" ; -- compound nt_N ;
-lin 'bell-tent_N' = mkN "bell-tent" "bell-tents" ; -- compound nt_N ;
-lin patent_N = mkN "patent" "patents" ; -- compound nt_N ;
-lin incompetent_N = mkN "incompetent" "incompetents" ; -- compound nt_N ;
-lin penitent_N = mkN "penitent" "penitents" ; -- compound nt_N ;
-lin intent_N = mkN "intent" "intents" ; -- compound nt_N ;
-lin content_N = mkN "content" "contents" ; -- compound nt_N ;
-lin malcontent_N = mkN "malcontent" "malcontents" ; -- compound nt_N ;
-lin discontent_N = mkN "discontent" "discontents" ; -- compound nt_N ;
-lin portent_N = mkN "portent" "portents" ; -- compound nt_N ;
-lin stent_N = mkN "stent" "stents" ; -- compound nt_N ;
-lin extent_N = mkN "extent" "extents" ; -- compound nt_N ;
-lin unguent_N = mkN "unguent" "unguents" ; -- compound nt_N ;
-lin affluent_N = mkN "affluent" "affluents" ; -- compound nt_N ;
-lin effluent_N = mkN "effluent" "effluents" ; -- compound nt_N ;
-lin delinquent_N = mkN "delinquent" "delinquents" ; -- compound nt_N ;
-lin obstruent_N = mkN "obstruent" "obstruents" ; -- compound nt_N ;
-lin constituent_N = mkN "constituent" "constituents" ; -- compound nt_N ;
-lin vent_N = mkN "vent" "vents" ; -- compound nt_N ;
-lin advent_N = mkN "advent" "advents" ; -- compound nt_N ;
-lin event_N = mkN "event" "events" ; -- compound nt_N ;
-lin nonevent_N = mkN "nonevent" "nonevents" ; -- compound nt_N ;
-lin solvent_N = mkN "solvent" "solvents" ; -- compound nt_N ;
-lin insolvent_N = mkN "insolvent" "insolvents" ; -- compound nt_N ;
-lin convent_N = mkN "convent" "convents" ; -- compound nt_N ;
-lin faint_N = mkN "faint" "faints" ; -- compound nt_N ;
-lin plaint_N = mkN "plaint" "plaints" ; -- compound nt_N ;
-lin complaint_N = mkN "complaint" "complaints" ; -- compound nt_N ;
-lin paint_N = mkN "paint" "paints" ; -- compound nt_N ;
-lin greasepaint_N = mkN "greasepaint" "greasepaints" ; -- compound nt_N ;
-lin warpaint_N = mkN "warpaint" "warpaints" ; -- compound nt_N ;
-lin restraint_N = mkN "restraint" "restraints" ; -- compound nt_N ;
-lin unrestraint_N = mkN "unrestraint" "unrestraints" ; -- compound nt_N ;
-lin distraint_N = mkN "distraint" "distraints" ; -- compound nt_N ;
-lin constraint_N = mkN "constraint" "constraints" ; -- compound nt_N ;
-lin saint_N = mkN "saint" "saints" ; -- compound nt_N ;
-lin taint_N = mkN "taint" "taints" ; -- compound nt_N ;
-lin dint_N = mkN "dint" "dints" ; -- compound nt_N ;
-lin feint_N = mkN "feint" "feints" ; -- compound nt_N ;
-lin septuagint_N = mkN "septuagint" "septuagints" ; -- compound nt_N ;
-lin hint_N = mkN "hint" "hints" ; -- compound nt_N ;
-lin lint_N = mkN "lint" "lints" ; -- compound nt_N ;
-lin flint_N = mkN "flint" "flints" ; -- compound nt_N ;
-lin skinflint_N = mkN "skinflint" "skinflints" ; -- compound nt_N ;
-lin gunflint_N = mkN "gunflint" "gunflints" ; -- compound nt_N ;
-lin glint_N = mkN "glint" "glints" ; -- compound nt_N ;
-lin splint_N = mkN "splint" "splints" ; -- compound nt_N ;
-lin mint_N = mkN "mint" "mints" ; -- compound nt_N ;
-lin calamint_N = mkN "calamint" "calamints" ; -- compound nt_N ;
-lin horsemint_N = mkN "horsemint" "horsemints" ; -- compound nt_N ;
-lin spearmint_N = mkN "spearmint" "spearmints" ; -- compound nt_N ;
-lin varmint_N = mkN "varmint" "varmints" ; -- compound nt_N ;
-lin peppermint_N = mkN "peppermint" "peppermints" ; -- compound nt_N ;
-lin catmint_N = mkN "catmint" "catmints" ; -- compound nt_N ;
-lin joint_N = mkN "joint" "joints" ; -- compound nt_N ;
-lin 'mitre-joint_N' = mkN "mitre-joint" "mitre-joints" ; -- compound nt_N ;
-lin 'clip-joint_N' = mkN "clip-joint" "clip-joints" ; -- compound nt_N ;
-lin point_N = mkN "point" "points" ; -- compound nt_N ;
-lin 'vantage-point_N' = mkN "vantage-point" "vantage-points" ; -- compound nt_N ;
-lin 'talking-point_N' = mkN "talking-point" "talking-points" ; -- compound nt_N ;
-lin 'boiling-point_N' = mkN "boiling-point" "boiling-points" ; -- compound nt_N ;
-lin 'turning-point_N' = mkN "turning-point" "turning-points" ; -- compound nt_N ;
-lin 'melting-point_N' = mkN "melting-point" "melting-points" ; -- compound nt_N ;
-lin 'starting-point_N' = mkN "starting-point" "starting-points" ; -- compound nt_N ;
-lin 'freezing-point_N' = mkN "freezing-point" "freezing-points" ; -- compound nt_N ;
-lin 'match-point_N' = mkN "match-point" "match-points" ; -- compound nt_N ;
-lin 'power-point_N' = mkN "power-point" "power-points" ; -- compound nt_N ;
-lin standpoint_N = mkN "standpoint" "standpoints" ; -- compound nt_N ;
-lin chokepoint_N = mkN "chokepoint" "chokepoints" ; -- compound nt_N ;
-lin needlepoint_N = mkN "needlepoint" "needlepoints" ; -- compound nt_N ;
-lin bluepoint_N = mkN "bluepoint" "bluepoints" ; -- compound nt_N ;
-lin flashpoint_N = mkN "flashpoint" "flashpoints" ; -- compound nt_N ;
-lin checkpoint_N = mkN "checkpoint" "checkpoints" ; -- compound nt_N ;
-lin ballpoint_N = mkN "ballpoint" "ballpoints" ; -- compound nt_N ;
-lin pinpoint_N = mkN "pinpoint" "pinpoints" ; -- compound nt_N ;
-lin embonpoint_N = mkN "embonpoint" "embonpoints" ; -- compound nt_N ;
-lin counterpoint_N = mkN "counterpoint" "counterpoints" ; -- compound nt_N ;
-lin silverpoint_N = mkN "silverpoint" "silverpoints" ; -- compound nt_N ;
-lin viewpoint_N = mkN "viewpoint" "viewpoints" ; -- compound nt_N ;
-lin pint_N = mkN "pint" "pints" ; -- compound nt_N ;
-lin cuckoopint_N = mkN "cuckoopint" "cuckoopints" ; -- compound nt_N ;
-lin forint_N = mkN "forint" "forints" ; -- compound nt_N ;
-lin print_N = mkN "print" "prints" ; -- compound nt_N ;
-lin thumbprint_N = mkN "thumbprint" "thumbprints" ; -- compound nt_N ;
-lin voiceprint_N = mkN "voiceprint" "voiceprints" ; -- compound nt_N ;
-lin reprint_N = mkN "reprint" "reprints" ; -- compound nt_N ;
-lin blueprint_N = mkN "blueprint" "blueprints" ; -- compound nt_N ;
-lin offprint_N = mkN "offprint" "offprints" ; -- compound nt_N ;
-lin hoofprint_N = mkN "hoofprint" "hoofprints" ; -- compound nt_N ;
-lin imprint_N = mkN "imprint" "imprints" ; -- compound nt_N ;
-lin fingerprint_N = mkN "fingerprint" "fingerprints" ; -- compound nt_N ;
-lin overprint_N = mkN "overprint" "overprints" ; -- compound nt_N ;
-lin sprint_N = mkN "sprint" "sprints" ; -- compound nt_N ;
-lin misprint_N = mkN "misprint" "misprints" ; -- compound nt_N ;
-lin newsprint_N = mkN "newsprint" "newsprints" ; -- compound nt_N ;
-lin footprint_N = mkN "footprint" "footprints" ; -- compound nt_N ;
-lin tint_N = mkN "tint" "tints" ; -- compound nt_N ;
-lin aquatint_N = mkN "aquatint" "aquatints" ; -- compound nt_N ;
-lin mezzotint_N = mkN "mezzotint" "mezzotints" ; -- compound nt_N ;
-lin stint_N = mkN "stint" "stints" ; -- compound nt_N ;
-lin squint_N = mkN "squint" "squints" ; -- compound nt_N ;
-lin thecodont_N = mkN "thecodont" "thecodonts" ; -- compound nt_N ;
-lin labyrinthodont_N = mkN "labyrinthodont" "labyrinthodonts" ; -- compound nt_N ;
-lin cyprinodont_N = mkN "cyprinodont" "cyprinodonts" ; -- compound nt_N ;
-lin conodont_N = mkN "conodont" "conodonts" ; -- compound nt_N ;
-lin cynodont_N = mkN "cynodont" "cynodonts" ; -- compound nt_N ;
-lin dicynodont_N = mkN "dicynodont" "dicynodonts" ; -- compound nt_N ;
-lin acrodont_N = mkN "acrodont" "acrodonts" ; -- compound nt_N ;
-lin pleurodont_N = mkN "pleurodont" "pleurodonts" ; -- compound nt_N ;
-lin font_N = mkN "font" "fonts" ; -- compound nt_N ;
-lin biont_N = mkN "biont" "bionts" ; -- compound nt_N ;
-lin piedmont_N = mkN "piedmont" "piedmonts" ; -- compound nt_N ;
-lin front_N = mkN "front" "fronts" ; -- compound nt_N ;
-lin 'shop-front_N' = mkN "shop-front" "shop-fronts" ; -- compound nt_N ;
-lin 'shirt-front_N' = mkN "shirt-front" "shirt-fronts" ; -- compound nt_N ;
-lin seafront_N = mkN "seafront" "seafronts" ; -- compound nt_N ;
-lin lakefront_N = mkN "lakefront" "lakefronts" ; -- compound nt_N ;
-lin battlefront_N = mkN "battlefront" "battlefronts" ; -- compound nt_N ;
-lin forefront_N = mkN "forefront" "forefronts" ; -- compound nt_N ;
-lin affront_N = mkN "affront" "affronts" ; -- compound nt_N ;
-lin beachfront_N = mkN "beachfront" "beachfronts" ; -- compound nt_N ;
-lin oceanfront_N = mkN "oceanfront" "oceanfronts" ; -- compound nt_N ;
-lin shopfront_N = mkN "shopfront" "shopfronts" ; -- compound nt_N ;
-lin waterfront_N = mkN "waterfront" "waterfronts" ; -- compound nt_N ;
-lin shirtfront_N = mkN "shirtfront" "shirtfronts" ; -- compound nt_N ;
-lin wont_N = mkN "wont" "wonts" ; -- compound nt_N ;
-lin tnt_N = mkN "tnt" "tnts" ; -- notcompound nt_N ;
-lin aunt_N = mkN "aunt" "aunts" ; -- compound nt_N ;
-lin grandaunt_N = mkN "grandaunt" "grandaunts" ; -- compound nt_N ;
-lin haunt_N = mkN "haunt" "haunts" ; -- compound nt_N ;
-lin jaunt_N = mkN "jaunt" "jaunts" ; -- compound nt_N ;
-lin flaunt_N = mkN "flaunt" "flaunts" ; -- compound nt_N ;
-lin taunt_N = mkN "taunt" "taunts" ; -- compound nt_N ;
-lin vaunt_N = mkN "vaunt" "vaunts" ; -- compound nt_N ;
-lin bunt_N = mkN "bunt" "bunts" ; -- compound nt_N ;
-lin cunt_N = mkN "cunt" "cunts" ; -- compound nt_N ;
-lin hunt_N = mkN "hunt" "hunts" ; -- compound nt_N ;
-lin 'witch-hunt_N' = mkN "witch-hunt" "witch-hunts" ; -- compound nt_N ;
-lin manhunt_N = mkN "manhunt" "manhunts" ; -- compound nt_N ;
-lin shunt_N = mkN "shunt" "shunts" ; -- compound nt_N ;
-lin foxhunt_N = mkN "foxhunt" "foxhunts" ; -- compound nt_N ;
-lin count_N = mkN "count" "counts" ; -- compound nt_N ;
-lin 're-count_N' = mkN "re-count" "re-counts" ; -- compound nt_N ;
-lin account_N = mkN "account" "accounts" ; -- compound nt_N ;
-lin 'charge-account_N' = mkN "charge-account" "charge-accounts" ; -- compound nt_N ;
-lin recount_N = mkN "recount" "recounts" ; -- compound nt_N ;
-lin discount_N = mkN "discount" "discounts" ; -- compound nt_N ;
-lin miscount_N = mkN "miscount" "miscounts" ; -- compound nt_N ;
-lin viscount_N = mkN "viscount" "viscounts" ; -- compound nt_N ;
-lin fount_N = mkN "fount" "founts" ; -- compound nt_N ;
-lin mount_N = mkN "mount" "mounts" ; -- compound nt_N ;
-lin amount_N = mkN "amount" "amounts" ; -- compound nt_N ;
-lin seamount_N = mkN "seamount" "seamounts" ; -- compound nt_N ;
-lin remount_N = mkN "remount" "remounts" ; -- compound nt_N ;
-lin dismount_N = mkN "dismount" "dismounts" ; -- compound nt_N ;
-lin punt_N = mkN "punt" "punts" ; -- compound nt_N ;
-lin runt_N = mkN "runt" "runts" ; -- compound nt_N ;
-lin brunt_N = mkN "brunt" "brunts" ; -- compound nt_N ;
-lin grunt_N = mkN "grunt" "grunts" ; -- compound nt_N ;
-lin stunt_N = mkN "stunt" "stunts" ; -- compound nt_N ;
-lin ot_N = mkN "ot" "ots" ;
-lin bot_N = mkN "bot" "bots" ; -- notcompound ot_N ;
-lin jabot_N = mkN "jabot" "jabots" ; -- compound ot_N ;
-lin sabot_N = mkN "sabot" "sabots" ; -- compound ot_N ;
-lin abbot_N = mkN "abbot" "abbots" ; -- compound ot_N ;
-lin robot_N = mkN "robot" "robots" ; -- compound ot_N ;
-lin burbot_N = mkN "burbot" "burbots" ; -- compound ot_N ;
-lin cot_N = mkN "cot" "cots" ; -- notcompound ot_N ;
-lin dicot_N = mkN "dicot" "dicots" ; -- compound ot_N ;
-lin picot_N = mkN "picot" "picots" ; -- compound ot_N ;
-lin haricot_N = mkN "haricot" "haricots" ; -- compound ot_N ;
-lin apricot_N = mkN "apricot" "apricots" ; -- compound ot_N ;
-lin tricot_N = mkN "tricot" "tricots" ; -- compound ot_N ;
-lin massicot_N = mkN "massicot" "massicots" ; -- compound ot_N ;
-lin plumcot_N = mkN "plumcot" "plumcots" ; -- compound ot_N ;
-lin monocot_N = mkN "monocot" "monocots" ; -- compound ot_N ;
-lin scot_N = mkN "scot" "scots" ; -- notcompound ot_N ;
-lin ascot_N = mkN "ascot" "ascots" ; -- compound ot_N ;
-lin mascot_N = mkN "mascot" "mascots" ; -- compound ot_N ;
-lin wainscot_N = mkN "wainscot" "wainscots" ; -- compound ot_N ;
-lin carrycot_N = mkN "carrycot" "carrycots" ; -- compound ot_N ;
-lin dot_N = mkN "dot" "dots" ; -- notcompound ot_N ;
-lin peridot_N = mkN "peridot" "peridots" ; -- compound ot_N ;
-lin microdot_N = mkN "microdot" "microdots" ; -- compound ot_N ;
-lin fagot_N = mkN "fagot" "fagots" ; -- compound ot_N ;
-lin faggot_N = mkN "faggot" "faggots" ; -- compound ot_N ;
-lin maggot_N = mkN "maggot" "maggots" ; -- compound ot_N ;
-lin bigot_N = mkN "bigot" "bigots" ; -- compound ot_N ;
-lin spigot_N = mkN "spigot" "spigots" ; -- compound ot_N ;
-lin ingot_N = mkN "ingot" "ingots" ; -- compound ot_N ;
-lin argot_N = mkN "argot" "argots" ; -- compound ot_N ;
-lin escargot_N = mkN "escargot" "escargots" ; -- compound ot_N ;
-lin ergot_N = mkN "ergot" "ergots" ; -- compound ot_N ;
-lin phot_N = mkN "phot" "phots" ; -- notcompound ot_N ;
-lin shot_N = mkN "shot" "shots" ; -- notcompound ot_N ;
-lin 'round-shot_N' = mkN "round-shot" "round-shots" ; -- compound ot_N ;
-lin 'rifle-shot_N' = mkN "rifle-shot" "rifle-shots" ; -- compound ot_N ;
-lin 'pot-shot_N' = mkN "pot-shot" "pot-shots" ; -- compound ot_N ;
-lin headshot_N = mkN "headshot" "headshots" ; -- compound ot_N ;
-lin grapeshot_N = mkN "grapeshot" "grapeshots" ; -- compound ot_N ;
-lin eyeshot_N = mkN "eyeshot" "eyeshots" ; -- compound ot_N ;
-lin slingshot_N = mkN "slingshot" "slingshots" ; -- compound ot_N ;
-lin longshot_N = mkN "longshot" "longshots" ; -- compound ot_N ;
-lin buckshot_N = mkN "buckshot" "buckshots" ; -- compound ot_N ;
-lin bullshot_N = mkN "bullshot" "bullshots" ; -- compound ot_N ;
-lin gunshot_N = mkN "gunshot" "gunshots" ; -- compound ot_N ;
-lin slapshot_N = mkN "slapshot" "slapshots" ; -- compound ot_N ;
-lin snapshot_N = mkN "snapshot" "snapshots" ; -- compound ot_N ;
-lin upshot_N = mkN "upshot" "upshots" ; -- compound ot_N ;
-lin earshot_N = mkN "earshot" "earshots" ; -- compound ot_N ;
-lin countershot_N = mkN "countershot" "countershots" ; -- compound ot_N ;
-lin potshot_N = mkN "potshot" "potshots" ; -- compound ot_N ;
-lin idiot_N = mkN "idiot" "idiots" ; -- compound ot_N ;
-lin riot_N = mkN "riot" "riots" ; -- compound ot_N ;
-lin chariot_N = mkN "chariot" "chariots" ; -- compound ot_N ;
-lin griot_N = mkN "griot" "griots" ; -- compound ot_N ;
-lin cypriot_N = mkN "cypriot" "cypriots" ; -- compound ot_N ;
-lin patriot_N = mkN "patriot" "patriots" ; -- compound ot_N ;
-lin compatriot_N = mkN "compatriot" "compatriots" ; -- compound ot_N ;
-lin jot_N = mkN "jot" "jots" ; -- notcompound ot_N ;
-lin lot_N = mkN "lot" "lots" ; -- notcompound ot_N ;
-lin zealot_N = mkN "zealot" "zealots" ; -- compound ot_N ;
-lin blot_N = mkN "blot" "blots" ; -- notcompound ot_N ;
-lin inkblot_N = mkN "inkblot" "inkblots" ; -- compound ot_N ;
-lin clot_N = mkN "clot" "clots" ; -- notcompound ot_N ;
-lin feedlot_N = mkN "feedlot" "feedlots" ; -- compound ot_N ;
-lin sandlot_N = mkN "sandlot" "sandlots" ; -- compound ot_N ;
-lin ocelot_N = mkN "ocelot" "ocelots" ; -- compound ot_N ;
-lin helot_N = mkN "helot" "helots" ; -- compound ot_N ;
-lin polyglot_N = mkN "polyglot" "polyglots" ; -- compound ot_N ;
-lin pilot_N = mkN "pilot" "pilots" ; -- compound ot_N ;
-lin copilot_N = mkN "copilot" "copilots" ; -- compound ot_N ;
-lin autopilot_N = mkN "autopilot" "autopilots" ; -- compound ot_N ;
-lin ballot_N = mkN "ballot" "ballots" ; -- compound ot_N ;
-lin shallot_N = mkN "shallot" "shallots" ; -- compound ot_N ;
-lin maillot_N = mkN "maillot" "maillots" ; -- compound ot_N ;
-lin plot_N = mkN "plot" "plots" ; -- notcompound ot_N ;
-lin counterplot_N = mkN "counterplot" "counterplots" ; -- compound ot_N ;
-lin harlot_N = mkN "harlot" "harlots" ; -- compound ot_N ;
-lin slot_N = mkN "slot" "slots" ; -- notcompound ot_N ;
-lin bergamot_N = mkN "bergamot" "bergamots" ; -- compound ot_N ;
-lin guillemot_N = mkN "guillemot" "guillemots" ; -- compound ot_N ;
-lin marmot_N = mkN "marmot" "marmots" ; -- compound ot_N ;
-lin motmot_N = mkN "motmot" "motmots" ; -- compound ot_N ;
-lin 'forget-me-not_N' = mkN "forget-me-not" "forget-me-nots" ; -- compound ot_N ;
-lin huguenot_N = mkN "huguenot" "huguenots" ; -- compound ot_N ;
-lin knot_N = mkN "knot" "knots" ; -- notcompound ot_N ;
-lin 'love-knot_N' = mkN "love-knot" "love-knots" ; -- compound ot_N ;
-lin 'reef-knot_N' = mkN "reef-knot" "reef-knots" ; -- compound ot_N ;
-lin slipknot_N = mkN "slipknot" "slipknots" ; -- compound ot_N ;
-lin topknot_N = mkN "topknot" "topknots" ; -- compound ot_N ;
-lin snot_N = mkN "snot" "snots" ; -- notcompound ot_N ;
-lin whatnot_N = mkN "whatnot" "whatnots" ; -- compound ot_N ;
-lin boot_N = mkN "boot" "boots" ; -- compound ot_N ;
-lin 'top-boot_N' = mkN "top-boot" "top-boots" ; -- compound ot_N ;
-lin jackboot_N = mkN "jackboot" "jackboots" ; -- compound ot_N ;
-lin gumboot_N = mkN "gumboot" "gumboots" ; -- compound ot_N ;
-lin coot_N = mkN "coot" "coots" ; -- compound ot_N ;
-lin bandicoot_N = mkN "bandicoot" "bandicoots" ; -- compound ot_N ;
-lin webfoot_N = mkN "webfoot" "webfoots" ; -- compound ot_N ;
-lin hindfoot_N = mkN "hindfoot" "hindfoots" ; -- compound ot_N ;
-lin spadefoot_N = mkN "spadefoot" "spadefoots" ; -- compound ot_N ;
-lin goosefoot_N = mkN "goosefoot" "goosefoots" ; -- compound ot_N ;
-lin tenderfoot_N = mkN "tenderfoot" "tenderfoots" ; -- compound ot_N ;
-lin goatsfoot_N = mkN "goatsfoot" "goatsfoots" ; -- compound ot_N ;
-lin coltsfoot_N = mkN "coltsfoot" "coltsfoots" ; -- compound ot_N ;
-lin flatfoot_N = mkN "flatfoot" "flatfoots" ; -- compound ot_N ;
-lin hotfoot_N = mkN "hotfoot" "hotfoots" ; -- compound ot_N ;
-lin clawfoot_N = mkN "clawfoot" "clawfoots" ; -- compound ot_N ;
-lin hoot_N = mkN "hoot" "hoots" ; -- compound ot_N ;
-lin cahoot_N = mkN "cahoot" "cahoots" ; -- compound ot_N ;
-lin shoot_N = mkN "shoot" "shoots" ; -- compound ot_N ;
-lin offshoot_N = mkN "offshoot" "offshoots" ; -- compound ot_N ;
-lin crapshoot_N = mkN "crapshoot" "crapshoots" ; -- compound ot_N ;
-lin overshoot_N = mkN "overshoot" "overshoots" ; -- compound ot_N ;
-lin loot_N = mkN "loot" "loots" ; -- compound ot_N ;
-lin galoot_N = mkN "galoot" "galoots" ; -- compound ot_N ;
-lin moot_N = mkN "moot" "moots" ; -- compound ot_N ;
-lin root_N = mkN "root" "roots" ; -- compound ot_N ;
-lin colicroot_N = mkN "colicroot" "colicroots" ; -- compound ot_N ;
-lin breadroot_N = mkN "breadroot" "breadroots" ; -- compound ot_N ;
-lin bloodroot_N = mkN "bloodroot" "bloodroots" ; -- compound ot_N ;
-lin cheroot_N = mkN "cheroot" "cheroots" ; -- compound ot_N ;
-lin crinkleroot_N = mkN "crinkleroot" "crinkleroots" ; -- compound ot_N ;
-lin pinkroot_N = mkN "pinkroot" "pinkroots" ; -- compound ot_N ;
-lin balsamroot_N = mkN "balsamroot" "balsamroots" ; -- compound ot_N ;
-lin alumroot_N = mkN "alumroot" "alumroots" ; -- compound ot_N ;
-lin taproot_N = mkN "taproot" "taproots" ; -- compound ot_N ;
-lin briarroot_N = mkN "briarroot" "briarroots" ; -- compound ot_N ;
-lin bitterroot_N = mkN "bitterroot" "bitterroots" ; -- compound ot_N ;
-lin feverroot_N = mkN "feverroot" "feverroots" ; -- compound ot_N ;
-lin orrisroot_N = mkN "orrisroot" "orrisroots" ; -- compound ot_N ;
-lin costusroot_N = mkN "costusroot" "costusroots" ; -- compound ot_N ;
-lin beetroot_N = mkN "beetroot" "beetroots" ; -- compound ot_N ;
-lin arrowroot_N = mkN "arrowroot" "arrowroots" ; -- compound ot_N ;
-lin puttyroot_N = mkN "puttyroot" "puttyroots" ; -- compound ot_N ;
-lin soot_N = mkN "soot" "soots" ; -- compound ot_N ;
-lin toot_N = mkN "toot" "toots" ; -- compound ot_N ;
-lin pot_N = mkN "pot" "pots" ; -- notcompound ot_N ;
-lin 'melting-pot_N' = mkN "melting-pot" "melting-pots" ; -- compound ot_N ;
-lin 'ink-pot_N' = mkN "ink-pot" "ink-pots" ; -- compound ot_N ;
-lin 'pepper-pot_N' = mkN "pepper-pot" "pepper-pots" ; -- compound ot_N ;
-lin 'lobster-pot_N' = mkN "lobster-pot" "lobster-pots" ; -- compound ot_N ;
-lin teapot_N = mkN "teapot" "teapots" ; -- compound ot_N ;
-lin saucepot_N = mkN "saucepot" "saucepots" ; -- compound ot_N ;
-lin depot_N = mkN "depot" "depots" ; -- compound ot_N ;
-lin coffeepot_N = mkN "coffeepot" "coffeepots" ; -- compound ot_N ;
-lin entrepot_N = mkN "entrepot" "entrepots" ; -- compound ot_N ;
-lin talipot_N = mkN "talipot" "talipots" ; -- compound ot_N ;
-lin jackpot_N = mkN "jackpot" "jackpots" ; -- compound ot_N ;
-lin crackpot_N = mkN "crackpot" "crackpots" ; -- compound ot_N ;
-lin stockpot_N = mkN "stockpot" "stockpots" ; -- compound ot_N ;
-lin jampot_N = mkN "jampot" "jampots" ; -- compound ot_N ;
-lin chamberpot_N = mkN "chamberpot" "chamberpots" ; -- compound ot_N ;
-lin flowerpot_N = mkN "flowerpot" "flowerpots" ; -- compound ot_N ;
-lin spot_N = mkN "spot" "spots" ; -- notcompound ot_N ;
-lin 'plague-spot_N' = mkN "plague-spot" "plague-spots" ; -- compound ot_N ;
-lin 'beauty-spot_N' = mkN "beauty-spot" "beauty-spots" ; -- compound ot_N ;
-lin despot_N = mkN "despot" "despots" ; -- compound ot_N ;
-lin eyespot_N = mkN "eyespot" "eyespots" ; -- compound ot_N ;
-lin sunspot_N = mkN "sunspot" "sunspots" ; -- compound ot_N ;
-lin silverspot_N = mkN "silverspot" "silverspots" ; -- compound ot_N ;
-lin fusspot_N = mkN "fusspot" "fusspots" ; -- compound ot_N ;
-lin heatspot_N = mkN "heatspot" "heatspots" ; -- compound ot_N ;
-lin chimneypot_N = mkN "chimneypot" "chimneypots" ; -- compound ot_N ;
-lin honeypot_N = mkN "honeypot" "honeypots" ; -- compound ot_N ;
-lin rot_N = mkN "rot" "rots" ; -- notcompound ot_N ;
-lin 'foot-rot_N' = mkN "foot-rot" "foot-rots" ; -- compound ot_N ;
-lin 'tommy-rot_N' = mkN "tommy-rot" "tommy-rots" ; -- compound ot_N ;
-lin lerot_N = mkN "lerot" "lerots" ; -- compound ot_N ;
-lin grot_N = mkN "grot" "grots" ; -- notcompound ot_N ;
-lin carrot_N = mkN "carrot" "carrots" ; -- compound ot_N ;
-lin parrot_N = mkN "parrot" "parrots" ; -- compound ot_N ;
-lin pierrot_N = mkN "pierrot" "pierrots" ; -- compound ot_N ;
-lin trot_N = mkN "trot" "trots" ; -- notcompound ot_N ;
-lin 'jog-trot_N' = mkN "jog-trot" "jog-trots" ; -- compound ot_N ;
-lin dogtrot_N = mkN "dogtrot" "dogtrots" ; -- compound ot_N ;
-lin heartrot_N = mkN "heartrot" "heartrots" ; -- compound ot_N ;
-lin foxtrot_N = mkN "foxtrot" "foxtrots" ; -- compound ot_N ;
-lin sot_N = mkN "sot" "sots" ; -- notcompound ot_N ;
-lin tot_N = mkN "tot" "tots" ; -- notcompound ot_N ;
-lin aliquot_N = mkN "aliquot" "aliquots" ; -- compound ot_N ;
-lin divot_N = mkN "divot" "divots" ; -- compound ot_N ;
-lin pivot_N = mkN "pivot" "pivots" ; -- compound ot_N ;
-lin swot_N = mkN "swot" "swots" ; -- notcompound ot_N ;
-lin guyot_N = mkN "guyot" "guyots" ; -- compound ot_N ;
-lin pt_N = mkN "pt" "pts" ;
-lin precept_N = mkN "precept" "precepts" ; -- compound pt_N ;
-lin concept_N = mkN "concept" "concepts" ; -- compound pt_N ;
-lin etanercept_N = mkN "etanercept" "etanercepts" ; -- compound pt_N ;
-lin percept_N = mkN "percept" "percepts" ; -- compound pt_N ;
-lin intercept_N = mkN "intercept" "intercepts" ; -- compound pt_N ;
-lin adept_N = mkN "adept" "adepts" ; -- compound pt_N ;
-lin nympholept_N = mkN "nympholept" "nympholepts" ; -- compound pt_N ;
-lin transept_N = mkN "transept" "transepts" ; -- compound pt_N ;
-lin receipt_N = mkN "receipt" "receipts" ; -- compound pt_N ;
-lin script_N = mkN "script" "scripts" ; -- compound pt_N ;
-lin subscript_N = mkN "subscript" "subscripts" ; -- compound pt_N ;
-lin nondescript_N = mkN "nondescript" "nondescripts" ; -- compound pt_N ;
-lin typescript_N = mkN "typescript" "typescripts" ; -- compound pt_N ;
-lin rescript_N = mkN "rescript" "rescripts" ; -- compound pt_N ;
-lin prescript_N = mkN "prescript" "prescripts" ; -- compound pt_N ;
-lin transcript_N = mkN "transcript" "transcripts" ; -- compound pt_N ;
-lin conscript_N = mkN "conscript" "conscripts" ; -- compound pt_N ;
-lin superscript_N = mkN "superscript" "superscripts" ; -- compound pt_N ;
-lin postscript_N = mkN "postscript" "postscripts" ; -- compound pt_N ;
-lin manuscript_N = mkN "manuscript" "manuscripts" ; -- compound pt_N ;
-lin contempt_N = mkN "contempt" "contempts" ; -- compound pt_N ;
-lin attempt_N = mkN "attempt" "attempts" ; -- compound pt_N ;
-lin prompt_N = mkN "prompt" "prompts" ; -- compound pt_N ;
-lin copt_N = mkN "copt" "copts" ; -- compound pt_N ;
-lin excerpt_N = mkN "excerpt" "excerpts" ; -- compound pt_N ;
-lin bankrupt_N = mkN "bankrupt" "bankrupts" ; -- compound pt_N ;
-lin interrupt_N = mkN "interrupt" "interrupts" ; -- compound pt_N ;
-lin crypt_N = mkN "crypt" "crypts" ; -- compound pt_N ;
-lin art_N = mkN "art" "arts" ;
-lin 'op art_N' = mkN "op art" "op arts" ; -- compound art_N ;
-lin cart_N = mkN "cart" "carts" ; -- notcompound art_N ;
-lin 'watering-cart_N' = mkN "watering-cart" "watering-carts" ; -- compound art_N ;
-lin 'dog-cart_N' = mkN "dog-cart" "dog-carts" ; -- compound art_N ;
-lin 'go-cart_N' = mkN "go-cart" "go-carts" ; -- compound art_N ;
-lin 'water-cart_N' = mkN "water-cart" "water-carts" ; -- compound art_N ;
-lin handcart_N = mkN "handcart" "handcarts" ; -- compound art_N ;
-lin applecart_N = mkN "applecart" "applecarts" ; -- compound art_N ;
-lin golfcart_N = mkN "golfcart" "golfcarts" ; -- compound art_N ;
-lin dogcart_N = mkN "dogcart" "dogcarts" ; -- compound art_N ;
-lin pushcart_N = mkN "pushcart" "pushcarts" ; -- compound art_N ;
-lin dumpcart_N = mkN "dumpcart" "dumpcarts" ; -- compound art_N ;
-lin dustcart_N = mkN "dustcart" "dustcarts" ; -- compound art_N ;
-lin oxcart_N = mkN "oxcart" "oxcarts" ; -- compound art_N ;
-lin dart_N = mkN "dart" "darts" ; -- notcompound art_N ;
-lin heart_N = mkN "heart" "hearts" ; -- compound art_N ;
-lin blackheart_N = mkN "blackheart" "blackhearts" ; -- compound art_N ;
-lin sweetheart_N = mkN "sweetheart" "sweethearts" ; -- compound art_N ;
-lin fart_N = mkN "fart" "farts" ; -- notcompound art_N ;
-lin braggart_N = mkN "braggart" "braggarts" ; -- compound art_N ;
-lin hart_N = mkN "hart" "harts" ; -- notcompound art_N ;
-lin chart_N = mkN "chart" "charts" ; -- notcompound art_N ;
-lin 'weather-chart_N' = mkN "weather-chart" "weather-charts" ; -- compound art_N ;
-lin 'go-kart_N' = mkN "go-kart" "go-karts" ; -- compound art_N ;
-lin mart_N = mkN "mart" "marts" ; -- notcompound art_N ;
-lin smart_N = mkN "smart" "smarts" ; -- notcompound art_N ;
-lin part_N = mkN "part" "parts" ; -- notcompound art_N ;
-lin 'name-part_N' = mkN "name-part" "name-parts" ; -- compound art_N ;
-lin subpart_N = mkN "subpart" "subparts" ; -- compound art_N ;
-lin mouthpart_N = mkN "mouthpart" "mouthparts" ; -- compound art_N ;
-lin rampart_N = mkN "rampart" "ramparts" ; -- compound art_N ;
-lin underpart_N = mkN "underpart" "underparts" ; -- compound art_N ;
-lin counterpart_N = mkN "counterpart" "counterparts" ; -- compound art_N ;
-lin cyberart_N = mkN "cyberart" "cyberarts" ; -- compound art_N ;
-lin tart_N = mkN "tart" "tarts" ; -- notcompound art_N ;
-lin start_N = mkN "start" "starts" ; -- notcompound art_N ;
-lin 'kick-start_N' = mkN "kick-start" "kick-starts" ; -- compound art_N ;
-lin redstart_N = mkN "redstart" "redstarts" ; -- compound art_N ;
-lin jumpstart_N = mkN "jumpstart" "jumpstarts" ; -- compound art_N ;
-lin upstart_N = mkN "upstart" "upstarts" ; -- compound art_N ;
-lin quart_N = mkN "quart" "quarts" ; -- compound art_N ;
-lin wart_N = mkN "wart" "warts" ; -- notcompound art_N ;
-lin thwart_N = mkN "thwart" "thwarts" ; -- notcompound art_N ;
-lin stalwart_N = mkN "stalwart" "stalwarts" ; -- compound art_N ;
-lin filbert_N = mkN "filbert" "filberts" ;
-lin gilbert_N = mkN "gilbert" "gilberts" ;
-lin lambert_N = mkN "lambert" "lamberts" ;
-lin camembert_N = mkN "camembert" "camemberts" ;
-lin sherbert_N = mkN "sherbert" "sherberts" ;
-lin cert_N = mkN "cert" "certs" ;
-lin concert_N = mkN "concert" "concerts" ; -- compound cert_N ;
-lin chert_N = mkN "chert" "cherts" ;
-lin alert_N = mkN "alert" "alerts" ;
-lin expert_N = mkN "expert" "experts" ;
-lin desert_N = mkN "desert" "deserts" ;
-lin semidesert_N = mkN "semidesert" "semideserts" ; -- compound desert_N ;
-lin insert_N = mkN "insert" "inserts" ;
-lin dessert_N = mkN "dessert" "desserts" ;
-lin advert_N = mkN "advert" "adverts" ;
-lin culvert_N = mkN "culvert" "culverts" ;
-lin convert_N = mkN "convert" "converts" ;
-lin covert_N = mkN "covert" "coverts" ;
-lin introvert_N = mkN "introvert" "introverts" ;
-lin extrovert_N = mkN "extrovert" "extroverts" ;
-lin pervert_N = mkN "pervert" "perverts" ;
-lin dirt_N = mkN "dirt" "dirts" ;
-lin paydirt_N = mkN "paydirt" "paydirts" ; -- compound dirt_N ;
-lin shirt_N = mkN "shirt" "shirts" ;
-lin 'tee-shirt_N' = mkN "tee-shirt" "tee-shirts" ; -- compound shirt_N ;
-lin 'hair-shirt_N' = mkN "hair-shirt" "hair-shirts" ; -- compound shirt_N ;
-lin 't-shirt_N' = mkN "t-shirt" "t-shirts" ; -- compound shirt_N ;
-lin blackshirt_N = mkN "blackshirt" "blackshirts" ; -- compound shirt_N ;
-lin sweatshirt_N = mkN "sweatshirt" "sweatshirts" ; -- compound shirt_N ;
-lin nightshirt_N = mkN "nightshirt" "nightshirts" ; -- compound shirt_N ;
-lin skirt_N = mkN "skirt" "skirts" ;
-lin 'hobble-skirt_N' = mkN "hobble-skirt" "hobble-skirts" ; -- compound skirt_N ;
-lin 'ballet-skirt_N' = mkN "ballet-skirt" "ballet-skirts" ; -- compound skirt_N ;
-lin miniskirt_N = mkN "miniskirt" "miniskirts" ; -- compound skirt_N ;
-lin hoopskirt_N = mkN "hoopskirt" "hoopskirts" ; -- compound skirt_N ;
-lin underskirt_N = mkN "underskirt" "underskirts" ; -- compound skirt_N ;
-lin overskirt_N = mkN "overskirt" "overskirts" ; -- compound skirt_N ;
-lin outskirt_N = mkN "outskirt" "outskirts" ; -- compound skirt_N ;
-lin flirt_N = mkN "flirt" "flirts" ;
-lin spirt_N = mkN "spirt" "spirts" ;
-lin quirt_N = mkN "quirt" "quirts" ;
-lin squirt_N = mkN "squirt" "squirts" ; -- notcompound quirt_N ;
-lin abort_N = mkN "abort" "aborts" ;
-lin escort_N = mkN "escort" "escorts" ;
-lin fort_N = mkN "fort" "forts" ;
-lin roquefort_N = mkN "roquefort" "roqueforts" ; -- compound fort_N ;
-lin effort_N = mkN "effort" "efforts" ; -- compound fort_N ;
-lin comfort_N = mkN "comfort" "comforts" ; -- compound fort_N ;
-lin discomfort_N = mkN "discomfort" "discomforts" ; -- compound fort_N ;
-lin cohort_N = mkN "cohort" "cohorts" ;
-lin short_N = mkN "short" "shorts" ;
-lin snort_N = mkN "snort" "snorts" ;
-lin port_N = mkN "port" "ports" ;
-lin seaport_N = mkN "seaport" "seaports" ; -- compound port_N ;
-lin report_N = mkN "report" "reports" ; -- compound port_N ;
-lin heliport_N = mkN "heliport" "heliports" ; -- compound port_N ;
-lin import_N = mkN "import" "imports" ; -- compound port_N ;
-lin davenport_N = mkN "davenport" "davenports" ; -- compound port_N ;
-lin rapport_N = mkN "rapport" "rapports" ; -- compound port_N ;
-lin support_N = mkN "support" "supports" ; -- compound port_N ;
-lin carport_N = mkN "carport" "carports" ; -- compound port_N ;
-lin airport_N = mkN "airport" "airports" ; -- compound port_N ;
-lin purport_N = mkN "purport" "purports" ; -- compound port_N ;
-lin sport_N = mkN "sport" "sports" ; -- notcompound port_N ;
-lin spoilsport_N = mkN "spoilsport" "spoilsports" ; -- compound port_N ;
-lin transport_N = mkN "transport" "transports" ; -- compound port_N ;
-lin passport_N = mkN "passport" "passports" ; -- compound port_N ;
-lin outport_N = mkN "outport" "outports" ; -- compound port_N ;
-lin export_N = mkN "export" "exports" ; -- compound port_N ;
-lin sort_N = mkN "sort" "sorts" ;
-lin resort_N = mkN "resort" "resorts" ; -- compound sort_N ;
-lin consort_N = mkN "consort" "consorts" ; -- compound sort_N ;
-lin tort_N = mkN "tort" "torts" ;
-lin retort_N = mkN "retort" "retorts" ; -- compound tort_N ;
-lin wort_N = mkN "wort" "worts" ;
-lin fleawort_N = mkN "fleawort" "fleaworts" ; -- compound wort_N ;
-lin umbrellawort_N = mkN "umbrellawort" "umbrellaworts" ; -- compound wort_N ;
-lin leadwort_N = mkN "leadwort" "leadworts" ; -- compound wort_N ;
-lin sandwort_N = mkN "sandwort" "sandworts" ; -- compound wort_N ;
-lin bloodwort_N = mkN "bloodwort" "bloodworts" ; -- compound wort_N ;
-lin fumewort_N = mkN "fumewort" "fumeworts" ; -- compound wort_N ;
-lin stonewort_N = mkN "stonewort" "stoneworts" ; -- compound wort_N ;
-lin pipewort_N = mkN "pipewort" "pipeworts" ; -- compound wort_N ;
-lin rupturewort_N = mkN "rupturewort" "ruptureworts" ; -- compound wort_N ;
-lin ragwort_N = mkN "ragwort" "ragworts" ; -- compound wort_N ;
-lin figwort_N = mkN "figwort" "figworts" ; -- compound wort_N ;
-lin mugwort_N = mkN "mugwort" "mugworts" ; -- compound wort_N ;
-lin stitchwort_N = mkN "stitchwort" "stitchworts" ; -- compound wort_N ;
-lin birthwort_N = mkN "birthwort" "birthworts" ; -- compound wort_N ;
-lin milkwort_N = mkN "milkwort" "milkworts" ; -- compound wort_N ;
-lin felwort_N = mkN "felwort" "felworts" ; -- compound wort_N ;
-lin bellwort_N = mkN "bellwort" "bellworts" ; -- compound wort_N ;
-lin pillwort_N = mkN "pillwort" "pillworts" ; -- compound wort_N ;
-lin quillwort_N = mkN "quillwort" "quillworts" ; -- compound wort_N ;
-lin pearlwort_N = mkN "pearlwort" "pearlworts" ; -- compound wort_N ;
-lin awlwort_N = mkN "awlwort" "awlworts" ; -- compound wort_N ;
-lin spleenwort_N = mkN "spleenwort" "spleenworts" ; -- compound wort_N ;
-lin barrenwort_N = mkN "barrenwort" "barrenworts" ; -- compound wort_N ;
-lin moonwort_N = mkN "moonwort" "moonworts" ; -- compound wort_N ;
-lin hornwort_N = mkN "hornwort" "hornworts" ; -- compound wort_N ;
-lin soapwort_N = mkN "soapwort" "soapworts" ; -- compound wort_N ;
-lin bladderwort_N = mkN "bladderwort" "bladderworts" ; -- compound wort_N ;
-lin madderwort_N = mkN "madderwort" "madderworts" ; -- compound wort_N ;
-lin spiderwort_N = mkN "spiderwort" "spiderworts" ; -- compound wort_N ;
-lin motherwort_N = mkN "motherwort" "motherworts" ; -- compound wort_N ;
-lin miterwort_N = mkN "miterwort" "miterworts" ; -- compound wort_N ;
-lin butterwort_N = mkN "butterwort" "butterworts" ; -- compound wort_N ;
-lin liverwort_N = mkN "liverwort" "liverworts" ; -- compound wort_N ;
-lin glasswort_N = mkN "glasswort" "glassworts" ; -- compound wort_N ;
-lin throatwort_N = mkN "throatwort" "throatworts" ; -- compound wort_N ;
-lin saltwort_N = mkN "saltwort" "saltworts" ; -- compound wort_N ;
-lin sawwort_N = mkN "sawwort" "sawworts" ; -- compound wort_N ;
-lin whitlowwort_N = mkN "whitlowwort" "whitlowworts" ; -- compound wort_N ;
-lin moneywort_N = mkN "moneywort" "moneyworts" ; -- compound wort_N ;
-lin gipsywort_N = mkN "gipsywort" "gipsyworts" ; -- compound wort_N ;
-lin yogurt_N = mkN "yogurt" "yogurts" ;
-lin hurt_N = mkN "hurt" "hurts" ;
-lin yoghurt_N = mkN "yoghurt" "yoghurts" ; -- compound hurt_N ;
-lin court_N = mkN "court" "courts" ;
-lin 'tennis-court_N' = mkN "tennis-court" "tennis-courts" ; -- compound court_N ;
-lin forecourt_N = mkN "forecourt" "forecourts" ; -- compound court_N ;
-lin yoghourt_N = mkN "yoghourt" "yoghourts" ;
-lin spurt_N = mkN "spurt" "spurts" ;
-lin yurt_N = mkN "yurt" "yurts" ;
-lin East_N = mkN "East" "Easts" ;
-lin bast_N = mkN "bast" "basts" ;
-lin bombast_N = mkN "bombast" "bombasts" ; -- compound bast_N ;
-lin cast_N = mkN "cast" "casts" ;
-lin broadcast_N = mkN "broadcast" "broadcasts" ; -- compound cast_N ;
-lin rebroadcast_N = mkN "rebroadcast" "rebroadcasts" ; -- compound cast_N ;
-lin telecast_N = mkN "telecast" "telecasts" ; -- compound cast_N ;
-lin forecast_N = mkN "forecast" "forecasts" ; -- compound cast_N ;
-lin roughcast_N = mkN "roughcast" "roughcasts" ; -- compound cast_N ;
-lin simulcast_N = mkN "simulcast" "simulcasts" ; -- compound cast_N ;
-lin wormcast_N = mkN "wormcast" "wormcasts" ; -- compound cast_N ;
-lin downcast_N = mkN "downcast" "downcasts" ; -- compound cast_N ;
-lin upcast_N = mkN "upcast" "upcasts" ; -- compound cast_N ;
-lin colorcast_N = mkN "colorcast" "colorcasts" ; -- compound cast_N ;
-lin sportscast_N = mkN "sportscast" "sportscasts" ; -- compound cast_N ;
-lin newscast_N = mkN "newscast" "newscasts" ; -- compound cast_N ;
-lin outcast_N = mkN "outcast" "outcasts" ; -- compound cast_N ;
-lin 'nor\'-east_N' = mkN "nor'-east" "nor'-easts" ;
-lin 'nor\'-nor\'-east_N' = mkN "nor'-nor'-east" "nor'-nor'-easts" ; -- compound 'nor\'-east_N' ;
-lin 'sou\'-east_N' = mkN "sou'-east" "sou'-easts" ;
-lin 'sou\'-sou\'-east_N' = mkN "sou'-sou'-east" "sou'-sou'-easts" ; -- compound 'sou\'-east_N' ;
-lin beast_N = mkN "beast" "beasts" ;
-lin feast_N = mkN "feast" "feasts" ;
-lin 'love-feast_N' = mkN "love-feast" "love-feasts" ; -- compound feast_N ;
-lin beanfeast_N = mkN "beanfeast" "beanfeasts" ; -- compound feast_N ;
-lin northeast_N = mkN "northeast" "northeasts" ;
-lin 'north-northeast_N' = mkN "north-northeast" "north-northeasts" ; -- compound northeast_N ;
-lin southeast_N = mkN "southeast" "southeasts" ;
-lin 'south-southeast_N' = mkN "south-southeast" "south-southeasts" ; -- compound southeast_N ;
-lin breast_N = mkN "breast" "breasts" ;
-lin redbreast_N = mkN "redbreast" "redbreasts" ; -- compound breast_N ;
-lin chimneybreast_N = mkN "chimneybreast" "chimneybreasts" ; -- compound breast_N ;
-lin yeast_N = mkN "yeast" "yeasts" ;
-lin fast_N = mkN "fast" "fasts" ;
-lin headfast_N = mkN "headfast" "headfasts" ; -- compound fast_N ;
-lin breakfast_N = mkN "breakfast" "breakfasts" ; -- compound fast_N ;
-lin scholiast_N = mkN "scholiast" "scholiasts" ;
-lin symposiast_N = mkN "symposiast" "symposiasts" ;
-lin enthusiast_N = mkN "enthusiast" "enthusiasts" ;
-lin last_N = mkN "last" "lasts" ;
-lin blast_N = mkN "blast" "blasts" ; -- notcompound last_N ;
-lin plasmablast_N = mkN "plasmablast" "plasmablasts" ; -- compound last_N ;
-lin sandblast_N = mkN "sandblast" "sandblasts" ; -- compound last_N ;
-lin backblast_N = mkN "backblast" "backblasts" ; -- compound last_N ;
-lin osteoblast_N = mkN "osteoblast" "osteoblasts" ; -- compound last_N ;
-lin lymphoblast_N = mkN "lymphoblast" "lymphoblasts" ; -- compound last_N ;
-lin trophoblast_N = mkN "trophoblast" "trophoblasts" ; -- compound last_N ;
-lin spongioblast_N = mkN "spongioblast" "spongioblasts" ; -- compound last_N ;
-lin megaloblast_N = mkN "megaloblast" "megaloblasts" ; -- compound last_N ;
-lin ameloblast_N = mkN "ameloblast" "ameloblasts" ; -- compound last_N ;
-lin myeloblast_N = mkN "myeloblast" "myeloblasts" ; -- compound last_N ;
-lin melanoblast_N = mkN "melanoblast" "melanoblasts" ; -- compound last_N ;
-lin monoblast_N = mkN "monoblast" "monoblasts" ; -- compound last_N ;
-lin fibroblast_N = mkN "fibroblast" "fibroblasts" ; -- compound last_N ;
-lin sideroblast_N = mkN "sideroblast" "sideroblasts" ; -- compound last_N ;
-lin erythroblast_N = mkN "erythroblast" "erythroblasts" ; -- compound last_N ;
-lin neuroblast_N = mkN "neuroblast" "neuroblasts" ; -- compound last_N ;
-lin counterblast_N = mkN "counterblast" "counterblasts" ; -- compound last_N ;
-lin clast_N = mkN "clast" "clasts" ; -- notcompound last_N ;
-lin osteoclast_N = mkN "osteoclast" "osteoclasts" ; -- compound last_N ;
-lin iconoclast_N = mkN "iconoclast" "iconoclasts" ; -- compound last_N ;
-lin ballast_N = mkN "ballast" "ballasts" ; -- compound last_N ;
-lin chromoplast_N = mkN "chromoplast" "chromoplasts" ; -- compound last_N ;
-lin chloroplast_N = mkN "chloroplast" "chloroplasts" ; -- compound last_N ;
-lin elastoplast_N = mkN "elastoplast" "elastoplasts" ; -- compound last_N ;
-lin cytoplast_N = mkN "cytoplast" "cytoplasts" ; -- compound last_N ;
-lin mast_N = mkN "mast" "masts" ;
-lin 'mooring-mast_N' = mkN "mooring-mast" "mooring-masts" ; -- compound mast_N ;
-lin 'mizzen-mast_N' = mkN "mizzen-mast" "mizzen-masts" ; -- compound mast_N ;
-lin 'jury-mast_N' = mkN "jury-mast" "jury-masts" ; -- compound mast_N ;
-lin foremast_N = mkN "foremast" "foremasts" ; -- compound mast_N ;
-lin mizzenmast_N = mkN "mizzenmast" "mizzenmasts" ; -- compound mast_N ;
-lin mainmast_N = mkN "mainmast" "mainmasts" ; -- compound mast_N ;
-lin topmast_N = mkN "topmast" "topmasts" ; -- compound mast_N ;
-lin jiggermast_N = mkN "jiggermast" "jiggermasts" ; -- compound mast_N ;
-lin durmast_N = mkN "durmast" "durmasts" ; -- compound mast_N ;
-lin gymnast_N = mkN "gymnast" "gymnasts" ;
-lin dynast_N = mkN "dynast" "dynasts" ;
-lin oast_N = mkN "oast" "oasts" ;
-lin boast_N = mkN "boast" "boasts" ; -- notcompound oast_N ;
-lin coast_N = mkN "coast" "coasts" ; -- notcompound oast_N ;
-lin roast_N = mkN "roast" "roasts" ; -- notcompound oast_N ;
-lin toast_N = mkN "toast" "toasts" ; -- notcompound oast_N ;
-lin past_N = mkN "past" "pasts" ;
-lin repast_N = mkN "repast" "repasts" ; -- compound past_N ;
-lin flypast_N = mkN "flypast" "flypasts" ; -- compound past_N ;
-lin pederast_N = mkN "pederast" "pederasts" ;
-lin contrast_N = mkN "contrast" "contrasts" ;
-lin fantast_N = mkN "fantast" "fantasts" ;
-lin West_N = mkN "West" "Wests" ;
-lin anapaest_N = mkN "anapaest" "anapaests" ;
-lin best_N = mkN "best" "bests" ;
-lin 'second-best_N' = mkN "second-best" "second-bests" ; -- compound best_N ;
-lin incest_N = mkN "incest" "incests" ;
-lin wildebeest_N = mkN "wildebeest" "wildebeests" ;
-lin hartebeest_N = mkN "hartebeest" "hartebeests" ;
-lin manifest_N = mkN "manifest" "manifests" ;
-lin digest_N = mkN "digest" "digests" ;
-lin alkahest_N = mkN "alkahest" "alkahests" ;
-lin chest_N = mkN "chest" "chests" ;
-lin 'tea-chest_N' = mkN "tea-chest" "tea-chests" ; -- compound chest_N ;
-lin 'medicine-chest_N' = mkN "medicine-chest" "medicine-chests" ; -- compound chest_N ;
-lin behest_N = mkN "behest" "behests" ;
-lin priest_N = mkN "priest" "priests" ;
-lin archpriest_N = mkN "archpriest" "archpriests" ; -- compound priest_N ;
-lin jest_N = mkN "jest" "jests" ;
-lin nest_N = mkN "nest" "nests" ;
-lin 'crow\'s-nest_N' = mkN "crow's-nest" "crow's-nests" ; -- compound nest_N ;
-lin earnest_N = mkN "earnest" "earnests" ; -- compound nest_N ;
-lin pest_N = mkN "pest" "pests" ;
-lin anapest_N = mkN "anapest" "anapests" ; -- compound pest_N ;
-lin fowlpest_N = mkN "fowlpest" "fowlpests" ; -- compound pest_N ;
-lin tempest_N = mkN "tempest" "tempests" ; -- compound pest_N ;
-lin rinderpest_N = mkN "rinderpest" "rinderpests" ; -- compound pest_N ;
-lin rest_N = mkN "rest" "rests" ;
-lin dearest_N = mkN "dearest" "dearests" ; -- compound rest_N ;
-lin crest_N = mkN "crest" "crests" ; -- notcompound rest_N ;
-lin goldcrest_N = mkN "goldcrest" "goldcrests" ; -- compound rest_N ;
-lin headrest_N = mkN "headrest" "headrests" ; -- compound rest_N ;
-lin bedrest_N = mkN "bedrest" "bedrests" ; -- compound rest_N ;
-lin handrest_N = mkN "handrest" "handrests" ; -- compound rest_N ;
-lin interest_N = mkN "interest" "interests" ; -- compound rest_N ;
-lin 'self-interest_N' = mkN "self-interest" "self-interests" ; -- compound rest_N ;
-lin disinterest_N = mkN "disinterest" "disinterests" ; -- compound rest_N ;
-lin armrest_N = mkN "armrest" "armrests" ; -- compound rest_N ;
-lin unrest_N = mkN "unrest" "unrests" ; -- compound rest_N ;
-lin forest_N = mkN "forest" "forests" ; -- compound rest_N ;
-lin arrest_N = mkN "arrest" "arrests" ; -- compound rest_N ;
-lin palimpsest_N = mkN "palimpsest" "palimpsests" ;
-lin test_N = mkN "test" "tests" ;
-lin latest_N = mkN "latest" "latests" ; -- compound test_N ;
-lin contest_N = mkN "contest" "contests" ; -- compound test_N ;
-lin protest_N = mkN "protest" "protests" ; -- compound test_N ;
-lin guest_N = mkN "guest" "guests" ;
-lin quest_N = mkN "quest" "quests" ;
-lin bequest_N = mkN "bequest" "bequests" ; -- compound quest_N ;
-lin request_N = mkN "request" "requests" ; -- compound quest_N ;
-lin inquest_N = mkN "inquest" "inquests" ; -- compound quest_N ;
-lin conquest_N = mkN "conquest" "conquests" ; -- compound quest_N ;
-lin vest_N = mkN "vest" "vests" ;
-lin harvest_N = mkN "harvest" "harvests" ; -- compound vest_N ;
-lin 'nor\'-west_N' = mkN "nor'-west" "nor'-wests" ;
-lin 'nor\'-nor\'-west_N' = mkN "nor'-nor'-west" "nor'-nor'-wests" ; -- compound 'nor\'-west_N' ;
-lin 'sou\'-west_N' = mkN "sou'-west" "sou'-wests" ;
-lin 'sou\'-sou\'-west_N' = mkN "sou'-sou'-west" "sou'-sou'-wests" ; -- compound 'sou\'-west_N' ;
-lin northwest_N = mkN "northwest" "northwests" ;
-lin 'north-northwest_N' = mkN "north-northwest" "north-northwests" ; -- compound northwest_N ;
-lin southwest_N = mkN "southwest" "southwests" ;
-lin 'south-southwest_N' = mkN "south-southwest" "south-southwests" ; -- compound southwest_N ;
-lin zest_N = mkN "zest" "zests" ;
-lin angst_N = mkN "angst" "angsts" ;
-lin archaist_N = mkN "archaist" "archaists" ;
-lin algebraist_N = mkN "algebraist" "algebraists" ;
-lin waist_N = mkN "waist" "waists" ;
-lin shirtwaist_N = mkN "shirtwaist" "shirtwaists" ; -- compound waist_N ;
-lin arabist_N = mkN "arabist" "arabists" ;
-lin vibist_N = mkN "vibist" "vibists" ;
-lin gambist_N = mkN "gambist" "gambists" ;
-lin cubist_N = mkN "cubist" "cubists" ;
-lin supremacist_N = mkN "supremacist" "supremacists" ;
-lin pharmacist_N = mkN "pharmacist" "pharmacists" ;
-lin racist_N = mkN "racist" "racists" ;
-lin ethicist_N = mkN "ethicist" "ethicists" ;
-lin publicist_N = mkN "publicist" "publicists" ;
-lin polemicist_N = mkN "polemicist" "polemicists" ;
-lin empiricist_N = mkN "empiricist" "empiricists" ;
-lin lyricist_N = mkN "lyricist" "lyricists" ;
-lin classicist_N = mkN "classicist" "classicists" ;
-lin neoclassicist_N = mkN "neoclassicist" "neoclassicists" ; -- compound classicist_N ;
-lin physicist_N = mkN "physicist" "physicists" ;
-lin geophysicist_N = mkN "geophysicist" "geophysicists" ; -- compound physicist_N ;
-lin psychophysicist_N = mkN "psychophysicist" "psychophysicists" ; -- compound physicist_N ;
-lin biophysicist_N = mkN "biophysicist" "biophysicists" ; -- compound physicist_N ;
-lin astrophysicist_N = mkN "astrophysicist" "astrophysicists" ; -- compound physicist_N ;
-lin geneticist_N = mkN "geneticist" "geneticists" ;
-lin cytogeneticist_N = mkN "cytogeneticist" "cytogeneticists" ; -- compound geneticist_N ;
-lin semanticist_N = mkN "semanticist" "semanticists" ;
-lin romanticist_N = mkN "romanticist" "romanticists" ;
-lin exorcist_N = mkN "exorcist" "exorcists" ;
-lin fascist_N = mkN "fascist" "fascists" ;
-lin sadist_N = mkN "sadist" "sadists" ;
-lin faddist_N = mkN "faddist" "faddists" ;
-lin orthopedist_N = mkN "orthopedist" "orthopedists" ;
-lin encyclopedist_N = mkN "encyclopedist" "encyclopedists" ;
-lin propagandist_N = mkN "propagandist" "propagandists" ;
-lin odist_N = mkN "odist" "odists" ;
-lin methodist_N = mkN "methodist" "methodists" ; -- compound odist_N ;
-lin chiropodist_N = mkN "chiropodist" "chiropodists" ; -- compound odist_N ;
-lin parodist_N = mkN "parodist" "parodists" ; -- compound odist_N ;
-lin keyboardist_N = mkN "keyboardist" "keyboardists" ;
-lin harpsichordist_N = mkN "harpsichordist" "harpsichordists" ;
-lin nudist_N = mkN "nudist" "nudists" ;
-lin deist_N = mkN "deist" "deists" ;
-lin feist_N = mkN "feist" "feists" ;
-lin poltergeist_N = mkN "poltergeist" "poltergeists" ;
-lin heist_N = mkN "heist" "heists" ;
-lin theist_N = mkN "theist" "theists" ; -- notcompound heist_N ;
-lin atheist_N = mkN "atheist" "atheists" ; -- compound heist_N ;
-lin tritheist_N = mkN "tritheist" "tritheists" ; -- compound heist_N ;
-lin pantheist_N = mkN "pantheist" "pantheists" ; -- compound heist_N ;
-lin monotheist_N = mkN "monotheist" "monotheists" ; -- compound heist_N ;
-lin polytheist_N = mkN "polytheist" "polytheists" ; -- compound heist_N ;
-lin canoeist_N = mkN "canoeist" "canoeists" ;
-lin fist_N = mkN "fist" "fists" ;
-lin pacifist_N = mkN "pacifist" "pacifists" ; -- compound fist_N ;
-lin gist_N = mkN "gist" "gists" ;
-lin mycophagist_N = mkN "mycophagist" "mycophagists" ; -- compound gist_N ;
-lin suffragist_N = mkN "suffragist" "suffragists" ; -- compound gist_N ;
-lin elegist_N = mkN "elegist" "elegists" ; -- compound gist_N ;
-lin strategist_N = mkN "strategist" "strategists" ; -- compound gist_N ;
-lin druggist_N = mkN "druggist" "druggists" ; -- compound gist_N ;
-lin falangist_N = mkN "falangist" "falangists" ; -- compound gist_N ;
-lin genealogist_N = mkN "genealogist" "genealogists" ; -- compound gist_N ;
-lin mammalogist_N = mkN "mammalogist" "mammalogists" ; -- compound gist_N ;
-lin analogist_N = mkN "analogist" "analogists" ; -- compound gist_N ;
-lin mineralogist_N = mkN "mineralogist" "mineralogists" ; -- compound gist_N ;
-lin syllogist_N = mkN "syllogist" "syllogists" ; -- compound gist_N ;
-lin tribologist_N = mkN "tribologist" "tribologists" ; -- compound gist_N ;
-lin malacologist_N = mkN "malacologist" "malacologists" ; -- compound gist_N ;
-lin pharmacologist_N = mkN "pharmacologist" "pharmacologists" ; -- compound gist_N ;
-lin ecologist_N = mkN "ecologist" "ecologists" ; -- compound gist_N ;
-lin gynaecologist_N = mkN "gynaecologist" "gynaecologists" ; -- compound gist_N ;
-lin gynecologist_N = mkN "gynecologist" "gynecologists" ; -- compound gist_N ;
-lin musicologist_N = mkN "musicologist" "musicologists" ; -- compound gist_N ;
-lin toxicologist_N = mkN "toxicologist" "toxicologists" ; -- compound gist_N ;
-lin oncologist_N = mkN "oncologist" "oncologists" ; -- compound gist_N ;
-lin mycologist_N = mkN "mycologist" "mycologists" ; -- compound gist_N ;
-lin pteridologist_N = mkN "pteridologist" "pteridologists" ; -- compound gist_N ;
-lin archaeologist_N = mkN "archaeologist" "archaeologists" ; -- compound gist_N ;
-lin spelaeologist_N = mkN "spelaeologist" "spelaeologists" ; -- compound gist_N ;
-lin ideologist_N = mkN "ideologist" "ideologists" ; -- compound gist_N ;
-lin geologist_N = mkN "geologist" "geologists" ; -- compound gist_N ;
-lin archeologist_N = mkN "archeologist" "archeologists" ; -- compound gist_N ;
-lin speleologist_N = mkN "speleologist" "speleologists" ; -- compound gist_N ;
-lin teleologist_N = mkN "teleologist" "teleologists" ; -- compound gist_N ;
-lin neologist_N = mkN "neologist" "neologists" ; -- compound gist_N ;
-lin venereologist_N = mkN "venereologist" "venereologists" ; -- compound gist_N ;
-lin osteologist_N = mkN "osteologist" "osteologists" ; -- compound gist_N ;
-lin conchologist_N = mkN "conchologist" "conchologists" ; -- compound gist_N ;
-lin psychologist_N = mkN "psychologist" "psychologists" ; -- compound gist_N ;
-lin parapsychologist_N = mkN "parapsychologist" "parapsychologists" ; -- compound gist_N ;
-lin graphologist_N = mkN "graphologist" "graphologists" ; -- compound gist_N ;
-lin psephologist_N = mkN "psephologist" "psephologists" ; -- compound gist_N ;
-lin pathologist_N = mkN "pathologist" "pathologists" ; -- compound gist_N ;
-lin ethologist_N = mkN "ethologist" "ethologists" ; -- compound gist_N ;
-lin ornithologist_N = mkN "ornithologist" "ornithologists" ; -- compound gist_N ;
-lin anthologist_N = mkN "anthologist" "anthologists" ; -- compound gist_N ;
-lin mythologist_N = mkN "mythologist" "mythologists" ; -- compound gist_N ;
-lin biologist_N = mkN "biologist" "biologists" ; -- compound gist_N ;
-lin sociobiologist_N = mkN "sociobiologist" "sociobiologists" ; -- compound gist_N ;
-lin radiobiologist_N = mkN "radiobiologist" "radiobiologists" ; -- compound gist_N ;
-lin microbiologist_N = mkN "microbiologist" "microbiologists" ; -- compound gist_N ;
-lin neurobiologist_N = mkN "neurobiologist" "neurobiologists" ; -- compound gist_N ;
-lin sociologist_N = mkN "sociologist" "sociologists" ; -- compound gist_N ;
-lin radiologist_N = mkN "radiologist" "radiologists" ; -- compound gist_N ;
-lin cardiologist_N = mkN "cardiologist" "cardiologists" ; -- compound gist_N ;
-lin angiologist_N = mkN "angiologist" "angiologists" ; -- compound gist_N ;
-lin epidemiologist_N = mkN "epidemiologist" "epidemiologists" ; -- compound gist_N ;
-lin bacteriologist_N = mkN "bacteriologist" "bacteriologists" ; -- compound gist_N ;
-lin anesthesiologist_N = mkN "anesthesiologist" "anesthesiologists" ; -- compound gist_N ;
-lin physiologist_N = mkN "physiologist" "physiologists" ; -- compound gist_N ;
-lin etiologist_N = mkN "etiologist" "etiologists" ; -- compound gist_N ;
-lin philologist_N = mkN "philologist" "philologists" ; -- compound gist_N ;
-lin epistemologist_N = mkN "epistemologist" "epistemologists" ; -- compound gist_N ;
-lin ophthalmologist_N = mkN "ophthalmologist" "ophthalmologists" ; -- compound gist_N ;
-lin pomologist_N = mkN "pomologist" "pomologists" ; -- compound gist_N ;
-lin entomologist_N = mkN "entomologist" "entomologists" ; -- compound gist_N ;
-lin seismologist_N = mkN "seismologist" "seismologists" ; -- compound gist_N ;
-lin cosmologist_N = mkN "cosmologist" "cosmologists" ; -- compound gist_N ;
-lin etymologist_N = mkN "etymologist" "etymologists" ; -- compound gist_N ;
-lin enzymologist_N = mkN "enzymologist" "enzymologists" ; -- compound gist_N ;
-lin enologist_N = mkN "enologist" "enologists" ; -- compound gist_N ;
-lin penologist_N = mkN "penologist" "penologists" ; -- compound gist_N ;
-lin phrenologist_N = mkN "phrenologist" "phrenologists" ; -- compound gist_N ;
-lin technologist_N = mkN "technologist" "technologists" ; -- compound gist_N ;
-lin ethnologist_N = mkN "ethnologist" "ethnologists" ; -- compound gist_N ;
-lin criminologist_N = mkN "criminologist" "criminologists" ; -- compound gist_N ;
-lin endocrinologist_N = mkN "endocrinologist" "endocrinologists" ; -- compound gist_N ;
-lin sinologist_N = mkN "sinologist" "sinologists" ; -- compound gist_N ;
-lin limnologist_N = mkN "limnologist" "limnologists" ; -- compound gist_N ;
-lin phonologist_N = mkN "phonologist" "phonologists" ; -- compound gist_N ;
-lin monologist_N = mkN "monologist" "monologists" ; -- compound gist_N ;
-lin immunologist_N = mkN "immunologist" "immunologists" ; -- compound gist_N ;
-lin zoologist_N = mkN "zoologist" "zoologists" ; -- compound gist_N ;
-lin protozoologist_N = mkN "protozoologist" "protozoologists" ; -- compound gist_N ;
-lin apologist_N = mkN "apologist" "apologists" ; -- compound gist_N ;
-lin escapologist_N = mkN "escapologist" "escapologists" ; -- compound gist_N ;
-lin anthropologist_N = mkN "anthropologist" "anthropologists" ; -- compound gist_N ;
-lin hydrologist_N = mkN "hydrologist" "hydrologists" ; -- compound gist_N ;
-lin numerologist_N = mkN "numerologist" "numerologists" ; -- compound gist_N ;
-lin serologist_N = mkN "serologist" "serologists" ; -- compound gist_N ;
-lin gastroenterologist_N = mkN "gastroenterologist" "gastroenterologists" ; -- compound gist_N ;
-lin virologist_N = mkN "virologist" "virologists" ; -- compound gist_N ;
-lin orologist_N = mkN "orologist" "orologists" ; -- compound gist_N ;
-lin meteorologist_N = mkN "meteorologist" "meteorologists" ; -- compound gist_N ;
-lin electrologist_N = mkN "electrologist" "electrologists" ; -- compound gist_N ;
-lin urologist_N = mkN "urologist" "urologists" ; -- compound gist_N ;
-lin neurologist_N = mkN "neurologist" "neurologists" ; -- compound gist_N ;
-lin eschatologist_N = mkN "eschatologist" "eschatologists" ; -- compound gist_N ;
-lin hematologist_N = mkN "hematologist" "hematologists" ; -- compound gist_N ;
-lin climatologist_N = mkN "climatologist" "climatologists" ; -- compound gist_N ;
-lin dermatologist_N = mkN "dermatologist" "dermatologists" ; -- compound gist_N ;
-lin rheumatologist_N = mkN "rheumatologist" "rheumatologists" ; -- compound gist_N ;
-lin perinatologist_N = mkN "perinatologist" "perinatologists" ; -- compound gist_N ;
-lin proctologist_N = mkN "proctologist" "proctologists" ; -- compound gist_N ;
-lin cosmetologist_N = mkN "cosmetologist" "cosmetologists" ; -- compound gist_N ;
-lin herpetologist_N = mkN "herpetologist" "herpetologists" ; -- compound gist_N ;
-lin palaeontologist_N = mkN "palaeontologist" "palaeontologists" ; -- compound gist_N ;
-lin paleontologist_N = mkN "paleontologist" "paleontologists" ; -- compound gist_N ;
-lin gerontologist_N = mkN "gerontologist" "gerontologists" ; -- compound gist_N ;
-lin histologist_N = mkN "histologist" "histologists" ; -- compound gist_N ;
-lin cytologist_N = mkN "cytologist" "cytologists" ; -- compound gist_N ;
-lin ichthyologist_N = mkN "ichthyologist" "ichthyologists" ; -- compound gist_N ;
-lin embryologist_N = mkN "embryologist" "embryologists" ; -- compound gist_N ;
-lin eulogist_N = mkN "eulogist" "eulogists" ; -- compound gist_N ;
-lin allergist_N = mkN "allergist" "allergists" ; -- compound gist_N ;
-lin synergist_N = mkN "synergist" "synergists" ; -- compound gist_N ;
-lin metallurgist_N = mkN "metallurgist" "metallurgists" ; -- compound gist_N ;
-lin liturgist_N = mkN "liturgist" "liturgists" ; -- compound gist_N ;
-lin catechist_N = mkN "catechist" "catechists" ;
-lin masochist_N = mkN "masochist" "masochists" ;
-lin 'sado-masochist_N' = mkN "sado-masochist" "sado-masochists" ; -- compound masochist_N ;
-lin sadomasochist_N = mkN "sadomasochist" "sadomasochists" ; -- compound masochist_N ;
-lin anarchist_N = mkN "anarchist" "anarchists" ;
-lin monarchist_N = mkN "monarchist" "monarchists" ;
-lin schist_N = mkN "schist" "schists" ;
-lin buddhist_N = mkN "buddhist" "buddhists" ;
-lin telegraphist_N = mkN "telegraphist" "telegraphists" ;
-lin sophist_N = mkN "sophist" "sophists" ;
-lin theosophist_N = mkN "theosophist" "theosophists" ; -- compound sophist_N ;
-lin gymnosophist_N = mkN "gymnosophist" "gymnosophists" ; -- compound sophist_N ;
-lin deipnosophist_N = mkN "deipnosophist" "deipnosophists" ; -- compound sophist_N ;
-lin fetishist_N = mkN "fetishist" "fetishists" ;
-lin telepathist_N = mkN "telepathist" "telepathists" ;
-lin whist_N = mkN "whist" "whists" ;
-lin stockist_N = mkN "stockist" "stockists" ;
-lin list_N = mkN "list" "lists" ;
-lin 'free-list_N' = mkN "free-list" "free-lists" ; -- compound list_N ;
-lin 'mailing-list_N' = mkN "mailing-list" "mailing-lists" ; -- compound list_N ;
-lin 'waiting-list_N' = mkN "waiting-list" "waiting-lists" ; -- compound list_N ;
-lin 'sick-list_N' = mkN "sick-list" "sick-lists" ; -- compound list_N ;
-lin 'stock-list_N' = mkN "stock-list" "stock-lists" ; -- compound list_N ;
-lin 'class-list_N' = mkN "class-list" "class-lists" ; -- compound list_N ;
-lin cabalist_N = mkN "cabalist" "cabalists" ; -- compound list_N ;
-lin cymbalist_N = mkN "cymbalist" "cymbalists" ; -- compound list_N ;
-lin herbalist_N = mkN "herbalist" "herbalists" ; -- compound list_N ;
-lin syndicalist_N = mkN "syndicalist" "syndicalists" ; -- compound list_N ;
-lin clericalist_N = mkN "clericalist" "clericalists" ; -- compound list_N ;
-lin vocalist_N = mkN "vocalist" "vocalists" ; -- compound list_N ;
-lin medalist_N = mkN "medalist" "medalists" ; -- compound list_N ;
-lin sodalist_N = mkN "sodalist" "sodalists" ; -- compound list_N ;
-lin idealist_N = mkN "idealist" "idealists" ; -- compound list_N ;
-lin realist_N = mkN "realist" "realists" ; -- compound list_N ;
-lin surrealist_N = mkN "surrealist" "surrealists" ; -- compound list_N ;
-lin madrigalist_N = mkN "madrigalist" "madrigalists" ; -- compound list_N ;
-lin racialist_N = mkN "racialist" "racialists" ; -- compound list_N ;
-lin specialist_N = mkN "specialist" "specialists" ; -- compound list_N ;
-lin socialist_N = mkN "socialist" "socialists" ; -- compound list_N ;
-lin colonialist_N = mkN "colonialist" "colonialists" ; -- compound list_N ;
-lin aerialist_N = mkN "aerialist" "aerialists" ; -- compound list_N ;
-lin imperialist_N = mkN "imperialist" "imperialists" ; -- compound list_N ;
-lin materialist_N = mkN "materialist" "materialists" ; -- compound list_N ;
-lin industrialist_N = mkN "industrialist" "industrialists" ; -- compound list_N ;
-lin controversialist_N = mkN "controversialist" "controversialists" ; -- compound list_N ;
-lin existentialist_N = mkN "existentialist" "existentialists" ; -- compound list_N ;
-lin minimalist_N = mkN "minimalist" "minimalists" ; -- compound list_N ;
-lin anomalist_N = mkN "anomalist" "anomalists" ; -- compound list_N ;
-lin finalist_N = mkN "finalist" "finalists" ; -- compound list_N ;
-lin semifinalist_N = mkN "semifinalist" "semifinalists" ; -- compound list_N ;
-lin nominalist_N = mkN "nominalist" "nominalists" ; -- compound list_N ;
-lin annalist_N = mkN "annalist" "annalists" ; -- compound list_N ;
-lin educationalist_N = mkN "educationalist" "educationalists" ; -- compound list_N ;
-lin nationalist_N = mkN "nationalist" "nationalists" ; -- compound list_N ;
-lin internationalist_N = mkN "internationalist" "internationalists" ; -- compound list_N ;
-lin rationalist_N = mkN "rationalist" "rationalists" ; -- compound list_N ;
-lin sensationalist_N = mkN "sensationalist" "sensationalists" ; -- compound list_N ;
-lin conversationalist_N = mkN "conversationalist" "conversationalists" ; -- compound list_N ;
-lin functionalist_N = mkN "functionalist" "functionalists" ; -- compound list_N ;
-lin traditionalist_N = mkN "traditionalist" "traditionalists" ; -- compound list_N ;
-lin constitutionalist_N = mkN "constitutionalist" "constitutionalists" ; -- compound list_N ;
-lin journalist_N = mkN "journalist" "journalists" ; -- compound list_N ;
-lin photojournalist_N = mkN "photojournalist" "photojournalists" ; -- compound list_N ;
-lin federalist_N = mkN "federalist" "federalists" ; -- compound list_N ;
-lin unilateralist_N = mkN "unilateralist" "unilateralists" ; -- compound list_N ;
-lin moralist_N = mkN "moralist" "moralists" ; -- compound list_N ;
-lin amoralist_N = mkN "amoralist" "amoralists" ; -- compound list_N ;
-lin neutralist_N = mkN "neutralist" "neutralists" ; -- compound list_N ;
-lin pluralist_N = mkN "pluralist" "pluralists" ; -- compound list_N ;
-lin muralist_N = mkN "muralist" "muralists" ; -- compound list_N ;
-lin ruralist_N = mkN "ruralist" "ruralists" ; -- compound list_N ;
-lin naturalist_N = mkN "naturalist" "naturalists" ; -- compound list_N ;
-lin fatalist_N = mkN "fatalist" "fatalists" ; -- compound list_N ;
-lin recitalist_N = mkN "recitalist" "recitalists" ; -- compound list_N ;
-lin capitalist_N = mkN "capitalist" "capitalists" ; -- compound list_N ;
-lin vitalist_N = mkN "vitalist" "vitalists" ; -- compound list_N ;
-lin transcendentalist_N = mkN "transcendentalist" "transcendentalists" ; -- compound list_N ;
-lin orientalist_N = mkN "orientalist" "orientalists" ; -- compound list_N ;
-lin fundamentalist_N = mkN "fundamentalist" "fundamentalists" ; -- compound list_N ;
-lin sentimentalist_N = mkN "sentimentalist" "sentimentalists" ; -- compound list_N ;
-lin environmentalist_N = mkN "environmentalist" "environmentalists" ; -- compound list_N ;
-lin instrumentalist_N = mkN "instrumentalist" "instrumentalists" ; -- compound list_N ;
-lin dualist_N = mkN "dualist" "dualists" ; -- compound list_N ;
-lin individualist_N = mkN "individualist" "individualists" ; -- compound list_N ;
-lin sensualist_N = mkN "sensualist" "sensualists" ; -- compound list_N ;
-lin ritualist_N = mkN "ritualist" "ritualists" ; -- compound list_N ;
-lin spiritualist_N = mkN "spiritualist" "spiritualists" ; -- compound list_N ;
-lin revivalist_N = mkN "revivalist" "revivalists" ; -- compound list_N ;
-lin survivalist_N = mkN "survivalist" "survivalists" ; -- compound list_N ;
-lin loyalist_N = mkN "loyalist" "loyalists" ; -- compound list_N ;
-lin royalist_N = mkN "royalist" "royalists" ; -- compound list_N ;
-lin cyclist_N = mkN "cyclist" "cyclists" ; -- compound list_N ;
-lin unicyclist_N = mkN "unicyclist" "unicyclists" ; -- compound list_N ;
-lin motorcyclist_N = mkN "motorcyclist" "motorcyclists" ; -- compound list_N ;
-lin pricelist_N = mkN "pricelist" "pricelists" ; -- compound list_N ;
-lin evangelist_N = mkN "evangelist" "evangelists" ; -- compound list_N ;
-lin televangelist_N = mkN "televangelist" "televangelists" ; -- compound list_N ;
-lin panelist_N = mkN "panelist" "panelists" ; -- compound list_N ;
-lin philatelist_N = mkN "philatelist" "philatelists" ; -- compound list_N ;
-lin duelist_N = mkN "duelist" "duelists" ; -- compound list_N ;
-lin novelist_N = mkN "novelist" "novelists" ; -- compound list_N ;
-lin pugilist_N = mkN "pugilist" "pugilists" ; -- compound list_N ;
-lin nihilist_N = mkN "nihilist" "nihilists" ; -- compound list_N ;
-lin blacklist_N = mkN "blacklist" "blacklists" ; -- compound list_N ;
-lin checklist_N = mkN "checklist" "checklists" ; -- compound list_N ;
-lin medallist_N = mkN "medallist" "medallists" ; -- compound list_N ;
-lin bimetallist_N = mkN "bimetallist" "bimetallists" ; -- compound list_N ;
-lin cellist_N = mkN "cellist" "cellists" ; -- compound list_N ;
-lin duellist_N = mkN "duellist" "duellists" ; -- compound list_N ;
-lin pointillist_N = mkN "pointillist" "pointillists" ; -- compound list_N ;
-lin symbolist_N = mkN "symbolist" "symbolists" ; -- compound list_N ;
-lin violist_N = mkN "violist" "violists" ; -- compound list_N ;
-lin monopolist_N = mkN "monopolist" "monopolists" ; -- compound list_N ;
-lin shortlist_N = mkN "shortlist" "shortlists" ; -- compound list_N ;
-lin fabulist_N = mkN "fabulist" "fabulists" ; -- compound list_N ;
-lin somnambulist_N = mkN "somnambulist" "somnambulists" ; -- compound list_N ;
-lin funambulist_N = mkN "funambulist" "funambulists" ; -- compound list_N ;
-lin noctambulist_N = mkN "noctambulist" "noctambulists" ; -- compound list_N ;
-lin oculist_N = mkN "oculist" "oculists" ; -- compound list_N ;
-lin populist_N = mkN "populist" "populists" ; -- compound list_N ;
-lin playlist_N = mkN "playlist" "playlists" ; -- compound list_N ;
-lin stylist_N = mkN "stylist" "stylists" ; -- compound list_N ;
-lin hairstylist_N = mkN "hairstylist" "hairstylists" ; -- compound list_N ;
-lin mist_N = mkN "mist" "mists" ;
-lin bigamist_N = mkN "bigamist" "bigamists" ; -- compound mist_N ;
-lin monogamist_N = mkN "monogamist" "monogamists" ; -- compound mist_N ;
-lin misogamist_N = mkN "misogamist" "misogamists" ; -- compound mist_N ;
-lin polygamist_N = mkN "polygamist" "polygamists" ; -- compound mist_N ;
-lin chemist_N = mkN "chemist" "chemists" ; -- compound mist_N ;
-lin alchemist_N = mkN "alchemist" "alchemists" ; -- compound mist_N ;
-lin biochemist_N = mkN "biochemist" "biochemists" ; -- compound mist_N ;
-lin phytochemist_N = mkN "phytochemist" "phytochemists" ; -- compound mist_N ;
-lin extremist_N = mkN "extremist" "extremists" ; -- compound mist_N ;
-lin totemist_N = mkN "totemist" "totemists" ; -- compound mist_N ;
-lin animist_N = mkN "animist" "animists" ; -- compound mist_N ;
-lin pessimist_N = mkN "pessimist" "pessimists" ; -- compound mist_N ;
-lin optimist_N = mkN "optimist" "optimists" ; -- compound mist_N ;
-lin palmist_N = mkN "palmist" "palmists" ; -- compound mist_N ;
-lin psalmist_N = mkN "psalmist" "psalmists" ; -- compound mist_N ;
-lin economist_N = mkN "economist" "economists" ; -- compound mist_N ;
-lin macroeconomist_N = mkN "macroeconomist" "macroeconomists" ; -- compound mist_N ;
-lin microeconomist_N = mkN "microeconomist" "microeconomists" ; -- compound mist_N ;
-lin agronomist_N = mkN "agronomist" "agronomists" ; -- compound mist_N ;
-lin taxonomist_N = mkN "taxonomist" "taxonomists" ; -- compound mist_N ;
-lin anatomist_N = mkN "anatomist" "anatomists" ; -- compound mist_N ;
-lin phlebotomist_N = mkN "phlebotomist" "phlebotomists" ; -- compound mist_N ;
-lin alarmist_N = mkN "alarmist" "alarmists" ; -- compound mist_N ;
-lin taxidermist_N = mkN "taxidermist" "taxidermists" ; -- compound mist_N ;
-lin conformist_N = mkN "conformist" "conformists" ; -- compound mist_N ;
-lin nonconformist_N = mkN "nonconformist" "nonconformists" ; -- compound mist_N ;
-lin synonymist_N = mkN "synonymist" "synonymists" ; -- compound mist_N ;
-lin tobogganist_N = mkN "tobogganist" "tobogganists" ;
-lin organist_N = mkN "organist" "organists" ;
-lin mechanist_N = mkN "mechanist" "mechanists" ;
-lin pianist_N = mkN "pianist" "pianists" ;
-lin arianist_N = mkN "arianist" "arianists" ;
-lin humanist_N = mkN "humanist" "humanists" ;
-lin timpanist_N = mkN "timpanist" "timpanists" ;
-lin accompanist_N = mkN "accompanist" "accompanists" ;
-lin tympanist_N = mkN "tympanist" "tympanists" ;
-lin botanist_N = mkN "botanist" "botanists" ;
-lin lutanist_N = mkN "lutanist" "lutanists" ;
-lin larcenist_N = mkN "larcenist" "larcenists" ;
-lin abiogenist_N = mkN "abiogenist" "abiogenists" ;
-lin hygienist_N = mkN "hygienist" "hygienists" ;
-lin alienist_N = mkN "alienist" "alienists" ;
-lin lutenist_N = mkN "lutenist" "lutenists" ;
-lin machinist_N = mkN "machinist" "machinists" ;
-lin violinist_N = mkN "violinist" "violinists" ;
-lin feminist_N = mkN "feminist" "feminists" ;
-lin antifeminist_N = mkN "antifeminist" "antifeminists" ; -- compound feminist_N ;
-lin alpinist_N = mkN "alpinist" "alpinists" ;
-lin latinist_N = mkN "latinist" "latinists" ;
-lin calvinist_N = mkN "calvinist" "calvinists" ;
-lin chauvinist_N = mkN "chauvinist" "chauvinists" ;
-lin columnist_N = mkN "columnist" "columnists" ;
-lin trombonist_N = mkN "trombonist" "trombonists" ;
-lin tobacconist_N = mkN "tobacconist" "tobacconists" ;
-lin hedonist_N = mkN "hedonist" "hedonists" ;
-lin agonist_N = mkN "agonist" "agonists" ;
-lin antagonist_N = mkN "antagonist" "antagonists" ; -- compound agonist_N ;
-lin protagonist_N = mkN "protagonist" "protagonists" ; -- compound agonist_N ;
-lin telephonist_N = mkN "telephonist" "telephonists" ;
-lin symphonist_N = mkN "symphonist" "symphonists" ;
-lin xylophonist_N = mkN "xylophonist" "xylophonists" ;
-lin saxophonist_N = mkN "saxophonist" "saxophonists" ;
-lin accordionist_N = mkN "accordionist" "accordionists" ;
-lin religionist_N = mkN "religionist" "religionists" ;
-lin coreligionist_N = mkN "coreligionist" "coreligionists" ; -- compound religionist_N ;
-lin irreligionist_N = mkN "irreligionist" "irreligionists" ; -- compound religionist_N ;
-lin unionist_N = mkN "unionist" "unionists" ;
-lin 'trade-unionist_N' = mkN "trade-unionist" "trade-unionists" ; -- compound unionist_N ;
-lin revisionist_N = mkN "revisionist" "revisionists" ;
-lin diversionist_N = mkN "diversionist" "diversionists" ;
-lin excursionist_N = mkN "excursionist" "excursionists" ;
-lin secessionist_N = mkN "secessionist" "secessionists" ;
-lin impressionist_N = mkN "impressionist" "impressionists" ;
-lin expressionist_N = mkN "expressionist" "expressionists" ;
-lin percussionist_N = mkN "percussionist" "percussionists" ;
-lin illusionist_N = mkN "illusionist" "illusionists" ;
-lin vacationist_N = mkN "vacationist" "vacationists" ;
-lin educationist_N = mkN "educationist" "educationists" ;
-lin deviationist_N = mkN "deviationist" "deviationists" ;
-lin isolationist_N = mkN "isolationist" "isolationists" ;
-lin moderationist_N = mkN "moderationist" "moderationists" ;
-lin collaborationist_N = mkN "collaborationist" "collaborationists" ;
-lin preservationist_N = mkN "preservationist" "preservationists" ;
-lin abstractionist_N = mkN "abstractionist" "abstractionists" ;
-lin perfectionist_N = mkN "perfectionist" "perfectionists" ;
-lin projectionist_N = mkN "projectionist" "projectionists" ;
-lin vivisectionist_N = mkN "vivisectionist" "vivisectionists" ;
-lin protectionist_N = mkN "protectionist" "protectionists" ;
-lin obstructionist_N = mkN "obstructionist" "obstructionists" ;
-lin prohibitionist_N = mkN "prohibitionist" "prohibitionists" ;
-lin exhibitionist_N = mkN "exhibitionist" "exhibitionists" ;
-lin abolitionist_N = mkN "abolitionist" "abolitionists" ;
-lin partitionist_N = mkN "partitionist" "partitionists" ;
-lin receptionist_N = mkN "receptionist" "receptionists" ;
-lin abortionist_N = mkN "abortionist" "abortionists" ;
-lin contortionist_N = mkN "contortionist" "contortionists" ;
-lin distortionist_N = mkN "distortionist" "distortionists" ;
-lin elocutionist_N = mkN "elocutionist" "elocutionists" ;
-lin evolutionist_N = mkN "evolutionist" "evolutionists" ;
-lin revolutionist_N = mkN "revolutionist" "revolutionists" ; -- notcompound evolutionist_N ;
-lin counterrevolutionist_N = mkN "counterrevolutionist" "counterrevolutionists" ; -- compound evolutionist_N ;
-lin zionist_N = mkN "zionist" "zionists" ;
-lin colonist_N = mkN "colonist" "colonists" ;
-lin mnemonist_N = mkN "mnemonist" "mnemonists" ;
-lin canonist_N = mkN "canonist" "canonists" ;
-lin balloonist_N = mkN "balloonist" "balloonists" ;
-lin bassoonist_N = mkN "bassoonist" "bassoonists" ;
-lin cartoonist_N = mkN "cartoonist" "cartoonists" ;
-lin arsonist_N = mkN "arsonist" "arsonists" ;
-lin modernist_N = mkN "modernist" "modernists" ;
-lin internist_N = mkN "internist" "internists" ;
-lin hornist_N = mkN "hornist" "hornists" ;
-lin communist_N = mkN "communist" "communists" ;
-lin opportunist_N = mkN "opportunist" "opportunists" ;
-lin misogynist_N = mkN "misogynist" "misogynists" ;
-lin polygynist_N = mkN "polygynist" "polygynists" ;
-lin maoist_N = mkN "maoist" "maoists" ;
-lin oboist_N = mkN "oboist" "oboists" ;
-lin egoist_N = mkN "egoist" "egoists" ;
-lin jingoist_N = mkN "jingoist" "jingoists" ;
-lin hoist_N = mkN "hoist" "hoists" ;
-lin joist_N = mkN "joist" "joists" ;
-lin soloist_N = mkN "soloist" "soloists" ;
-lin landscapist_N = mkN "landscapist" "landscapists" ;
-lin escapist_N = mkN "escapist" "escapists" ;
-lin papist_N = mkN "papist" "papists" ;
-lin rapist_N = mkN "rapist" "rapists" ;
-lin therapist_N = mkN "therapist" "therapists" ; -- compound rapist_N ;
-lin psychotherapist_N = mkN "psychotherapist" "psychotherapists" ; -- compound rapist_N ;
-lin radiotherapist_N = mkN "radiotherapist" "radiotherapists" ; -- compound rapist_N ;
-lin physiotherapist_N = mkN "physiotherapist" "physiotherapists" ; -- compound rapist_N ;
-lin electrotherapist_N = mkN "electrotherapist" "electrotherapists" ; -- compound rapist_N ;
-lin orthoepist_N = mkN "orthoepist" "orthoepists" ;
-lin microscopist_N = mkN "microscopist" "microscopists" ;
-lin philanthropist_N = mkN "philanthropist" "philanthropists" ;
-lin trappist_N = mkN "trappist" "trappists" ;
-lin harpist_N = mkN "harpist" "harpists" ;
-lin typist_N = mkN "typist" "typists" ;
-lin eucharist_N = mkN "eucharist" "eucharists" ;
-lin diarist_N = mkN "diarist" "diarists" ;
-lin plagiarist_N = mkN "plagiarist" "plagiarists" ;
-lin apiarist_N = mkN "apiarist" "apiarists" ;
-lin secularist_N = mkN "secularist" "secularists" ;
-lin scenarist_N = mkN "scenarist" "scenarists" ;
-lin seminarist_N = mkN "seminarist" "seminarists" ;
-lin glossarist_N = mkN "glossarist" "glossarists" ;
-lin monetarist_N = mkN "monetarist" "monetarists" ;
-lin militarist_N = mkN "militarist" "militarists" ;
-lin guitarist_N = mkN "guitarist" "guitarists" ;
-lin polyandrist_N = mkN "polyandrist" "polyandrists" ;
-lin careerist_N = mkN "careerist" "careerists" ;
-lin mesmerist_N = mkN "mesmerist" "mesmerists" ;
-lin preterist_N = mkN "preterist" "preterists" ;
-lin lepidopterist_N = mkN "lepidopterist" "lepidopterists" ;
-lin grist_N = mkN "grist" "grists" ;
-lin satirist_N = mkN "satirist" "satirists" ;
-lin aorist_N = mkN "aorist" "aorists" ;
-lin theorist_N = mkN "theorist" "theorists" ;
-lin aphorist_N = mkN "aphorist" "aphorists" ;
-lin behaviorist_N = mkN "behaviorist" "behaviorists" ;
-lin florist_N = mkN "florist" "florists" ;
-lin colorist_N = mkN "colorist" "colorists" ;
-lin watercolorist_N = mkN "watercolorist" "watercolorists" ; -- compound colorist_N ;
-lin amorist_N = mkN "amorist" "amorists" ;
-lin humorist_N = mkN "humorist" "humorists" ;
-lin terrorist_N = mkN "terrorist" "terrorists" ;
-lin counterterrorist_N = mkN "counterterrorist" "counterterrorists" ; -- compound terrorist_N ;
-lin motorist_N = mkN "motorist" "motorists" ;
-lin psychiatrist_N = mkN "psychiatrist" "psychiatrists" ;
-lin photometrist_N = mkN "photometrist" "photometrists" ;
-lin optometrist_N = mkN "optometrist" "optometrists" ;
-lin centrist_N = mkN "centrist" "centrists" ;
-lin manicurist_N = mkN "manicurist" "manicurists" ;
-lin jurist_N = mkN "jurist" "jurists" ;
-lin behaviourist_N = mkN "behaviourist" "behaviourists" ;
-lin watercolourist_N = mkN "watercolourist" "watercolourists" ;
-lin humourist_N = mkN "humourist" "humourists" ;
-lin tourist_N = mkN "tourist" "tourists" ;
-lin purist_N = mkN "purist" "purists" ;
-lin caricaturist_N = mkN "caricaturist" "caricaturists" ;
-lin miniaturist_N = mkN "miniaturist" "miniaturists" ;
-lin naturist_N = mkN "naturist" "naturists" ;
-lin sericulturist_N = mkN "sericulturist" "sericulturists" ;
-lin agriculturist_N = mkN "agriculturist" "agriculturists" ;
-lin viticulturist_N = mkN "viticulturist" "viticulturists" ;
-lin horticulturist_N = mkN "horticulturist" "horticulturists" ;
-lin futurist_N = mkN "futurist" "futurists" ;
-lin wrist_N = mkN "wrist" "wrists" ;
-lin fantasist_N = mkN "fantasist" "fantasists" ;
-lin synthesist_N = mkN "synthesist" "synthesists" ;
-lin assist_N = mkN "assist" "assists" ;
-lin bassist_N = mkN "bassist" "bassists" ; -- notcompound assist_N ;
-lin narcissist_N = mkN "narcissist" "narcissists" ;
-lin defeatist_N = mkN "defeatist" "defeatists" ;
-lin dramatist_N = mkN "dramatist" "dramatists" ;
-lin suprematist_N = mkN "suprematist" "suprematists" ;
-lin pragmatist_N = mkN "pragmatist" "pragmatists" ;
-lin dogmatist_N = mkN "dogmatist" "dogmatists" ;
-lin diplomatist_N = mkN "diplomatist" "diplomatists" ;
-lin numismatist_N = mkN "numismatist" "numismatists" ;
-lin separatist_N = mkN "separatist" "separatists" ;
-lin corporatist_N = mkN "corporatist" "corporatists" ;
-lin protoctist_N = mkN "protoctist" "protoctists" ;
-lin anaesthetist_N = mkN "anaesthetist" "anaesthetists" ;
-lin anesthetist_N = mkN "anesthetist" "anesthetists" ;
-lin prosthetist_N = mkN "prosthetist" "prosthetists" ;
-lin quietist_N = mkN "quietist" "quietists" ;
-lin clarinetist_N = mkN "clarinetist" "clarinetists" ;
-lin leftist_N = mkN "leftist" "leftists" ;
-lin rightist_N = mkN "rightist" "rightists" ;
-lin portraitist_N = mkN "portraitist" "portraitists" ;
-lin elitist_N = mkN "elitist" "elitists" ;
-lin cultist_N = mkN "cultist" "cultists" ;
-lin occultist_N = mkN "occultist" "occultists" ; -- compound cultist_N ;
-lin obscurantist_N = mkN "obscurantist" "obscurantists" ;
-lin dentist_N = mkN "dentist" "dentists" ;
-lin irredentist_N = mkN "irredentist" "irredentists" ; -- compound dentist_N ;
-lin scientist_N = mkN "scientist" "scientists" ;
-lin neuroscientist_N = mkN "neuroscientist" "neuroscientists" ; -- compound scientist_N ;
-lin presentist_N = mkN "presentist" "presentists" ;
-lin adventist_N = mkN "adventist" "adventists" ;
-lin pedodontist_N = mkN "pedodontist" "pedodontists" ;
-lin endodontist_N = mkN "endodontist" "endodontists" ;
-lin orthodontist_N = mkN "orthodontist" "orthodontists" ;
-lin prosthodontist_N = mkN "prosthodontist" "prosthodontists" ;
-lin periodontist_N = mkN "periodontist" "periodontists" ;
-lin exodontist_N = mkN "exodontist" "exodontists" ;
-lin contrapuntist_N = mkN "contrapuntist" "contrapuntists" ;
-lin anecdotist_N = mkN "anecdotist" "anecdotists" ;
-lin egotist_N = mkN "egotist" "egotists" ;
-lin bibliotist_N = mkN "bibliotist" "bibliotists" ;
-lin hypnotist_N = mkN "hypnotist" "hypnotists" ;
-lin nepotist_N = mkN "nepotist" "nepotists" ;
-lin protist_N = mkN "protist" "protists" ;
-lin baptist_N = mkN "baptist" "baptists" ;
-lin orthoptist_N = mkN "orthoptist" "orthoptists" ;
-lin artist_N = mkN "artist" "artists" ;
-lin chartist_N = mkN "chartist" "chartists" ; -- notcompound artist_N ;
-lin clarinettist_N = mkN "clarinettist" "clarinettists" ;
-lin librettist_N = mkN "librettist" "librettists" ;
-lin flautist_N = mkN "flautist" "flautists" ;
-lin parachutist_N = mkN "parachutist" "parachutists" ;
-lin lutist_N = mkN "lutist" "lutists" ;
-lin flutist_N = mkN "flutist" "flutists" ; -- notcompound lutist_N ;
-lin absolutist_N = mkN "absolutist" "absolutists" ; -- compound lutist_N ;
-lin linguist_N = mkN "linguist" "linguists" ;
-lin psycholinguist_N = mkN "psycholinguist" "psycholinguists" ; -- compound linguist_N ;
-lin sociolinguist_N = mkN "sociolinguist" "sociolinguists" ; -- compound linguist_N ;
-lin neurolinguist_N = mkN "neurolinguist" "neurolinguists" ; -- compound linguist_N ;
-lin somniloquist_N = mkN "somniloquist" "somniloquists" ;
-lin ventriloquist_N = mkN "ventriloquist" "ventriloquists" ;
-lin altruist_N = mkN "altruist" "altruists" ;
-lin casuist_N = mkN "casuist" "casuists" ;
-lin atavist_N = mkN "atavist" "atavists" ;
-lin recidivist_N = mkN "recidivist" "recidivists" ;
-lin archivist_N = mkN "archivist" "archivists" ;
-lin negativist_N = mkN "negativist" "negativists" ;
-lin nativist_N = mkN "nativist" "nativists" ;
-lin activist_N = mkN "activist" "activists" ;
-lin subjectivist_N = mkN "subjectivist" "subjectivists" ;
-lin collectivist_N = mkN "collectivist" "collectivists" ;
-lin constructivist_N = mkN "constructivist" "constructivists" ;
-lin positivist_N = mkN "positivist" "positivists" ;
-lin reservist_N = mkN "reservist" "reservists" ;
-lin twist_N = mkN "twist" "twists" ;
-lin sexist_N = mkN "sexist" "sexists" ;
-lin marxist_N = mkN "marxist" "marxists" ;
-lin essayist_N = mkN "essayist" "essayists" ;
-lin hobbyist_N = mkN "hobbyist" "hobbyists" ;
-lin lobbyist_N = mkN "lobbyist" "lobbyists" ;
-lin copyist_N = mkN "copyist" "copyists" ;
-lin cost_N = mkN "cost" "costs" ;
-lin pentecost_N = mkN "pentecost" "pentecosts" ; -- compound cost_N ;
-lin host_N = mkN "host" "hosts" ;
-lin ghost_N = mkN "ghost" "ghosts" ; -- notcompound host_N ;
-lin uttermost_N = mkN "uttermost" "uttermosts" ;
-lin utmost_N = mkN "utmost" "utmosts" ;
-lin anagnost_N = mkN "anagnost" "anagnosts" ;
-lin glasnost_N = mkN "glasnost" "glasnosts" ;
-lin boost_N = mkN "boost" "boosts" ;
-lin roost_N = mkN "roost" "roosts" ;
-lin henroost_N = mkN "henroost" "henroosts" ; -- compound roost_N ;
-lin post_N = mkN "post" "posts" ;
-lin 'winning-post_N' = mkN "winning-post" "winning-posts" ; -- compound post_N ;
-lin 'whipping-post_N' = mkN "whipping-post" "whipping-posts" ; -- compound post_N ;
-lin 'starting-post_N' = mkN "starting-post" "starting-posts" ; -- compound post_N ;
-lin 'telegraph-post_N' = mkN "telegraph-post" "telegraph-posts" ; -- compound post_N ;
-lin 'finger-post_N' = mkN "finger-post" "finger-posts" ; -- compound post_N ;
-lin bedpost_N = mkN "bedpost" "bedposts" ; -- compound post_N ;
-lin guidepost_N = mkN "guidepost" "guideposts" ; -- compound post_N ;
-lin gatepost_N = mkN "gatepost" "gateposts" ; -- compound post_N ;
-lin goalpost_N = mkN "goalpost" "goalposts" ; -- compound post_N ;
-lin compost_N = mkN "compost" "composts" ; -- compound post_N ;
-lin signpost_N = mkN "signpost" "signposts" ; -- compound post_N ;
-lin sternpost_N = mkN "sternpost" "sternposts" ; -- compound post_N ;
-lin lamppost_N = mkN "lamppost" "lampposts" ; -- compound post_N ;
-lin rudderpost_N = mkN "rudderpost" "rudderposts" ; -- compound post_N ;
-lin fingerpost_N = mkN "fingerpost" "fingerposts" ; -- compound post_N ;
-lin doorpost_N = mkN "doorpost" "doorposts" ; -- compound post_N ;
-lin outpost_N = mkN "outpost" "outposts" ; -- compound post_N ;
-lin frost_N = mkN "frost" "frosts" ;
-lin permafrost_N = mkN "permafrost" "permafrosts" ; -- compound frost_N ;
-lin hoarfrost_N = mkN "hoarfrost" "hoarfrosts" ; -- compound frost_N ;
-lin provost_N = mkN "provost" "provosts" ;
-lin verst_N = mkN "verst" "versts" ;
-lin 'double-first_N' = mkN "double-first" "double-firsts" ;
-lin thirst_N = mkN "thirst" "thirsts" ;
-lin horst_N = mkN "horst" "horsts" ;
-lin worst_N = mkN "worst" "worsts" ;
-lin burst_N = mkN "burst" "bursts" ;
-lin cloudburst_N = mkN "cloudburst" "cloudbursts" ; -- compound burst_N ;
-lin sunburst_N = mkN "sunburst" "sunbursts" ; -- compound burst_N ;
-lin airburst_N = mkN "airburst" "airbursts" ; -- compound burst_N ;
-lin outburst_N = mkN "outburst" "outbursts" ; -- compound burst_N ;
-lin knackwurst_N = mkN "knackwurst" "knackwursts" ;
-lin liverwurst_N = mkN "liverwurst" "liverwursts" ;
-lin bratwurst_N = mkN "bratwurst" "bratwursts" ;
-lin asst_N = mkN "asst" "assts" ;
-lin holocaust_N = mkN "holocaust" "holocausts" ;
-lin exhaust_N = mkN "exhaust" "exhausts" ;
-lin bust_N = mkN "bust" "busts" ;
-lin locust_N = mkN "locust" "locusts" ;
-lin dust_N = mkN "dust" "dusts" ;
-lin 'gold-dust_N' = mkN "gold-dust" "gold-dusts" ; -- compound dust_N ;
-lin stardust_N = mkN "stardust" "stardusts" ; -- compound dust_N ;
-lin sawdust_N = mkN "sawdust" "sawdusts" ; -- compound dust_N ;
-lin gust_N = mkN "gust" "gusts" ;
-lin disgust_N = mkN "disgust" "disgusts" ; -- compound gust_N ;
-lin August_N = mkN "August" "Augusts" ; -- compound gust_N ;
-lin lust_N = mkN "lust" "lusts" ;
-lin bloodlust_N = mkN "bloodlust" "bloodlusts" ; -- compound lust_N ;
-lin wanderlust_N = mkN "wanderlust" "wanderlusts" ; -- compound lust_N ;
-lin must_N = mkN "must" "musts" ;
-lin joust_N = mkN "joust" "jousts" ;
-lin rust_N = mkN "rust" "rusts" ;
-lin crust_N = mkN "crust" "crusts" ; -- notcompound rust_N ;
-lin 'pie-crust_N' = mkN "pie-crust" "pie-crusts" ; -- compound rust_N ;
-lin thrust_N = mkN "thrust" "thrusts" ; -- notcompound rust_N ;
-lin 'rapier-thrust_N' = mkN "rapier-thrust" "rapier-thrusts" ; -- compound rust_N ;
-lin outthrust_N = mkN "outthrust" "outthrusts" ; -- compound rust_N ;
-lin trust_N = mkN "trust" "trusts" ; -- notcompound rust_N ;
-lin distrust_N = mkN "distrust" "distrusts" ; -- compound rust_N ;
-lin mistrust_N = mkN "mistrust" "mistrusts" ; -- compound rust_N ;
-lin cyst_N = mkN "cyst" "cysts" ;
-lin blastocyst_N = mkN "blastocyst" "blastocysts" ; -- compound cyst_N ;
-lin amethyst_N = mkN "amethyst" "amethysts" ;
-lin analyst_N = mkN "analyst" "analysts" ;
-lin psychoanalyst_N = mkN "psychoanalyst" "psychoanalysts" ; -- compound analyst_N ;
-lin cryptanalyst_N = mkN "cryptanalyst" "cryptanalysts" ; -- compound analyst_N ;
-lin catalyst_N = mkN "catalyst" "catalysts" ;
-lin anticatalyst_N = mkN "anticatalyst" "anticatalysts" ; -- compound catalyst_N ;
-lin biocatalyst_N = mkN "biocatalyst" "biocatalysts" ; -- compound catalyst_N ;
-lin tryst_N = mkN "tryst" "trysts" ;
-lin gatt_N = mkN "gatt" "gatts" ;
-lin watt_N = mkN "watt" "watts" ;
-lin megawatt_N = mkN "megawatt" "megawatts" ; -- compound watt_N ;
-lin abwatt_N = mkN "abwatt" "abwatts" ; -- compound watt_N ;
-lin milliwatt_N = mkN "milliwatt" "milliwatts" ; -- compound watt_N ;
-lin kilowatt_N = mkN "kilowatt" "kilowatts" ; -- compound watt_N ;
-lin bartlett_N = mkN "bartlett" "bartletts" ;
-lin sett_N = mkN "sett" "setts" ;
-lin dlitt_N = mkN "dlitt" "dlitts" ;
-lin mitt_N = mkN "mitt" "mitts" ;
-lin boycott_N = mkN "boycott" "boycotts" ;
-lin butt_N = mkN "butt" "butts" ;
-lin 'water-butt_N' = mkN "water-butt" "water-butts" ; -- compound butt_N ;
-lin mutt_N = mkN "mutt" "mutts" ;
-lin putt_N = mkN "putt" "putts" ;
-lin ablaut_N = mkN "ablaut" "ablauts" ;
-lin umlaut_N = mkN "umlaut" "umlauts" ;
-lin aquanaut_N = mkN "aquanaut" "aquanauts" ;
-lin argonaut_N = mkN "argonaut" "argonauts" ;
-lin cosmonaut_N = mkN "cosmonaut" "cosmonauts" ;
-lin aeronaut_N = mkN "aeronaut" "aeronauts" ;
-lin astronaut_N = mkN "astronaut" "astronauts" ;
-lin cybernaut_N = mkN "cybernaut" "cybernauts" ;
-lin juggernaut_N = mkN "juggernaut" "juggernauts" ;
-lin sauerkraut_N = mkN "sauerkraut" "sauerkrauts" ;
-lin debut_N = mkN "debut" "debuts" ;
-lin sackbut_N = mkN "sackbut" "sackbuts" ;
-lin début_N = mkN "début" "débuts" ;
-lin cut_N = mkN "cut" "cuts" ;
-lin 'sword-cut_N' = mkN "sword-cut" "sword-cuts" ; -- compound cut_N ;
-lin 'crew-cut_N' = mkN "crew-cut" "crew-cuts" ; -- compound cut_N ;
-lin woodcut_N = mkN "woodcut" "woodcuts" ; -- compound cut_N ;
-lin linecut_N = mkN "linecut" "linecuts" ; -- compound cut_N ;
-lin linocut_N = mkN "linocut" "linocuts" ; -- compound cut_N ;
-lin undercut_N = mkN "undercut" "undercuts" ; -- compound cut_N ;
-lin uppercut_N = mkN "uppercut" "uppercuts" ; -- compound cut_N ;
-lin haircut_N = mkN "haircut" "haircuts" ; -- compound cut_N ;
-lin scut_N = mkN "scut" "scuts" ; -- notcompound cut_N ;
-lin crosscut_N = mkN "crosscut" "crosscuts" ; -- compound cut_N ;
-lin shortcut_N = mkN "shortcut" "shortcuts" ; -- compound cut_N ;
-lin gut_N = mkN "gut" "guts" ;
-lin hindgut_N = mkN "hindgut" "hindguts" ; -- compound gut_N ;
-lin pinchgut_N = mkN "pinchgut" "pinchguts" ; -- compound gut_N ;
-lin catgut_N = mkN "catgut" "catguts" ; -- compound gut_N ;
-lin rotgut_N = mkN "rotgut" "rotguts" ; -- compound gut_N ;
-lin hut_N = mkN "hut" "huts" ;
-lin glut_N = mkN "glut" "gluts" ;
-lin slut_N = mkN "slut" "sluts" ;
-lin gamut_N = mkN "gamut" "gamuts" ;
-lin smut_N = mkN "smut" "smuts" ;
-lin cornsmut_N = mkN "cornsmut" "cornsmuts" ; -- compound smut_N ;
-lin nut_N = mkN "nut" "nuts" ;
-lin 'kola-nut_N' = mkN "kola-nut" "kola-nuts" ; -- compound nut_N ;
-lin 'cob-nut_N' = mkN "cob-nut" "cob-nuts" ; -- compound nut_N ;
-lin 'wing-nut_N' = mkN "wing-nut" "wing-nuts" ; -- compound nut_N ;
-lin 'betel-nut_N' = mkN "betel-nut" "betel-nuts" ; -- compound nut_N ;
-lin 'monkey-nut_N' = mkN "monkey-nut" "monkey-nuts" ; -- compound nut_N ;
-lin peanut_N = mkN "peanut" "peanuts" ; -- compound nut_N ;
-lin thumbnut_N = mkN "thumbnut" "thumbnuts" ; -- compound nut_N ;
-lin cobnut_N = mkN "cobnut" "cobnuts" ; -- compound nut_N ;
-lin groundnut_N = mkN "groundnut" "groundnuts" ; -- compound nut_N ;
-lin candlenut_N = mkN "candlenut" "candlenuts" ; -- compound nut_N ;
-lin pignut_N = mkN "pignut" "pignuts" ; -- compound nut_N ;
-lin beechnut_N = mkN "beechnut" "beechnuts" ; -- compound nut_N ;
-lin doughnut_N = mkN "doughnut" "doughnuts" ; -- compound nut_N ;
-lin earthnut_N = mkN "earthnut" "earthnuts" ; -- compound nut_N ;
-lin locknut_N = mkN "locknut" "locknuts" ; -- compound nut_N ;
-lin walnut_N = mkN "walnut" "walnuts" ; -- compound nut_N ;
-lin hazelnut_N = mkN "hazelnut" "hazelnuts" ; -- compound nut_N ;
-lin coconut_N = mkN "coconut" "coconuts" ; -- compound nut_N ;
-lin mockernut_N = mkN "mockernut" "mockernuts" ; -- compound nut_N ;
-lin bitternut_N = mkN "bitternut" "bitternuts" ; -- compound nut_N ;
-lin butternut_N = mkN "butternut" "butternuts" ; -- compound nut_N ;
-lin chestnut_N = mkN "chestnut" "chestnuts" ; -- compound nut_N ;
-lin 'horse-chestnut_N' = mkN "horse-chestnut" "horse-chestnuts" ; -- compound nut_N ;
-lin out_N = mkN "out" "outs" ;
-lin 'comb-out_N' = mkN "comb-out" "comb-outs" ; -- compound out_N ;
-lin 'down-and-out_N' = mkN "down-and-out" "down-and-outs" ; -- compound out_N ;
-lin 'hand-out_N' = mkN "hand-out" "hand-outs" ; -- compound out_N ;
-lin 'hide-out_N' = mkN "hide-out" "hide-outs" ; -- compound out_N ;
-lin 'share-out_N' = mkN "share-out" "share-outs" ; -- compound out_N ;
-lin 'working-out_N' = mkN "working-out" "working-outs" ; -- compound out_N ;
-lin 'freak-out_N' = mkN "freak-out" "freak-outs" ; -- compound out_N ;
-lin 'work-out_N' = mkN "work-out" "work-outs" ; -- compound out_N ;
-lin 'pull-out_N' = mkN "pull-out" "pull-outs" ; -- compound out_N ;
-lin 'turn-out_N' = mkN "turn-out" "turn-outs" ; -- compound out_N ;
-lin 'cop-out_N' = mkN "cop-out" "cop-outs" ; -- compound out_N ;
-lin 'cut-out_N' = mkN "cut-out" "cut-outs" ; -- compound out_N ;
-lin 'lay-out_N' = mkN "lay-out" "lay-outs" ; -- compound out_N ;
-lin 'try-out_N' = mkN "try-out" "try-outs" ; -- compound out_N ;
-lin bout_N = mkN "bout" "bouts" ; -- notcompound out_N ;
-lin 'drinking-bout_N' = mkN "drinking-bout" "drinking-bouts" ; -- compound out_N ;
-lin gadabout_N = mkN "gadabout" "gadabouts" ; -- compound out_N ;
-lin roundabout_N = mkN "roundabout" "roundabouts" ; -- compound out_N ;
-lin raceabout_N = mkN "raceabout" "raceabouts" ; -- compound out_N ;
-lin knockabout_N = mkN "knockabout" "knockabouts" ; -- compound out_N ;
-lin walkabout_N = mkN "walkabout" "walkabouts" ; -- compound out_N ;
-lin layabout_N = mkN "layabout" "layabouts" ; -- compound out_N ;
-lin scout_N = mkN "scout" "scouts" ; -- notcompound out_N ;
-lin readout_N = mkN "readout" "readouts" ; -- compound out_N ;
-lin foldout_N = mkN "foldout" "foldouts" ; -- compound out_N ;
-lin holdout_N = mkN "holdout" "holdouts" ; -- compound out_N ;
-lin handout_N = mkN "handout" "handouts" ; -- compound out_N ;
-lin fadeout_N = mkN "fadeout" "fadeouts" ; -- compound out_N ;
-lin hideout_N = mkN "hideout" "hideouts" ; -- compound out_N ;
-lin shakeout_N = mkN "shakeout" "shakeouts" ; -- compound out_N ;
-lin takeout_N = mkN "takeout" "takeouts" ; -- compound out_N ;
-lin stakeout_N = mkN "stakeout" "stakeouts" ; -- compound out_N ;
-lin strikeout_N = mkN "strikeout" "strikeouts" ; -- compound out_N ;
-lin wipeout_N = mkN "wipeout" "wipeouts" ; -- compound out_N ;
-lin closeout_N = mkN "closeout" "closeouts" ; -- compound out_N ;
-lin whiteout_N = mkN "whiteout" "whiteouts" ; -- compound out_N ;
-lin gout_N = mkN "gout" "gouts" ; -- notcompound out_N ;
-lin ragout_N = mkN "ragout" "ragouts" ; -- compound out_N ;
-lin rigout_N = mkN "rigout" "rigouts" ; -- compound out_N ;
-lin dugout_N = mkN "dugout" "dugouts" ; -- compound out_N ;
-lin mahout_N = mkN "mahout" "mahouts" ; -- compound out_N ;
-lin shout_N = mkN "shout" "shouts" ; -- notcompound out_N ;
-lin washout_N = mkN "washout" "washouts" ; -- compound out_N ;
-lin blackout_N = mkN "blackout" "blackouts" ; -- compound out_N ;
-lin checkout_N = mkN "checkout" "checkouts" ; -- compound out_N ;
-lin lockout_N = mkN "lockout" "lockouts" ; -- compound out_N ;
-lin knockout_N = mkN "knockout" "knockouts" ; -- compound out_N ;
-lin walkout_N = mkN "walkout" "walkouts" ; -- compound out_N ;
-lin cookout_N = mkN "cookout" "cookouts" ; -- compound out_N ;
-lin lookout_N = mkN "lookout" "lookouts" ; -- compound out_N ;
-lin lout_N = mkN "lout" "louts" ; -- notcompound out_N ;
-lin 'litter-lout_N' = mkN "litter-lout" "litter-louts" ; -- compound out_N ;
-lin clout_N = mkN "clout" "clouts" ; -- notcompound out_N ;
-lin fallout_N = mkN "fallout" "fallouts" ; -- compound out_N ;
-lin sellout_N = mkN "sellout" "sellouts" ; -- compound out_N ;
-lin knout_N = mkN "knout" "knouts" ; -- notcompound out_N ;
-lin turnout_N = mkN "turnout" "turnouts" ; -- compound out_N ;
-lin snout_N = mkN "snout" "snouts" ; -- notcompound out_N ;
-lin pout_N = mkN "pout" "pouts" ; -- notcompound out_N ;
-lin eelpout_N = mkN "eelpout" "eelpouts" ; -- compound out_N ;
-lin copout_N = mkN "copout" "copouts" ; -- compound out_N ;
-lin dropout_N = mkN "dropout" "dropouts" ; -- compound out_N ;
-lin spout_N = mkN "spout" "spouts" ; -- notcompound out_N ;
-lin waterspout_N = mkN "waterspout" "waterspouts" ; -- compound out_N ;
-lin rout_N = mkN "rout" "routs" ; -- notcompound out_N ;
-lin grout_N = mkN "grout" "grouts" ; -- notcompound out_N ;
-lin sprout_N = mkN "sprout" "sprouts" ; -- notcompound out_N ;
-lin tout_N = mkN "tout" "touts" ; -- notcompound out_N ;
-lin printout_N = mkN "printout" "printouts" ; -- compound out_N ;
-lin passepartout_N = mkN "passepartout" "passepartouts" ; -- compound out_N ;
-lin surtout_N = mkN "surtout" "surtouts" ; -- compound out_N ;
-lin stout_N = mkN "stout" "stouts" ; -- notcompound out_N ;
-lin cutout_N = mkN "cutout" "cutouts" ; -- compound out_N ;
-lin shutout_N = mkN "shutout" "shutouts" ; -- compound out_N ;
-lin putout_N = mkN "putout" "putouts" ; -- compound out_N ;
-lin blowout_N = mkN "blowout" "blowouts" ; -- compound out_N ;
-lin layout_N = mkN "layout" "layouts" ; -- compound out_N ;
-lin buyout_N = mkN "buyout" "buyouts" ; -- compound out_N ;
-lin put_N = mkN "put" "puts" ;
-lin 'shot-put_N' = mkN "shot-put" "shot-puts" ; -- compound put_N ;
-lin caput_N = mkN "caput" "caputs" ; -- compound put_N ;
-lin throughput_N = mkN "throughput" "throughputs" ; -- compound put_N ;
-lin occiput_N = mkN "occiput" "occiputs" ; -- compound put_N ;
-lin sinciput_N = mkN "sinciput" "sinciputs" ; -- compound put_N ;
-lin input_N = mkN "input" "inputs" ; -- compound put_N ;
-lin rut_N = mkN "rut" "ruts" ;
-lin strut_N = mkN "strut" "struts" ; -- notcompound rut_N ;
-lin butut_N = mkN "butut" "bututs" ;
-lin govt_N = mkN "govt" "govts" ;
-lin wt_N = mkN "wt" "wts" ;
-lin newt_N = mkN "newt" "newts" ; -- compound wt_N ;
-lin sext_N = mkN "sext" "sexts" ;
-lin text_N = mkN "text" "texts" ;
-lin pretext_N = mkN "pretext" "pretexts" ; -- compound text_N ;
-lin context_N = mkN "context" "contexts" ; -- compound text_N ;
-lin hypertext_N = mkN "hypertext" "hypertexts" ; -- compound text_N ;
-lin 'sugar-beet_N' = mkN "sugar-beet" "sugar-beet" ;
-lin 'landing-craft_N' = mkN "landing-craft" "landing-craft" ;
-lin 'mosquito-craft_N' = mkN "mosquito-craft" "mosquito-craft" ;
-lin spacecraft_N = mkN "spacecraft" "spacecraft" ;
-lin hovercraft_N = mkN "hovercraft" "hovercraft" ;
-lin aircraft_N = mkN "aircraft" "aircraft" ;
-lin breadfruit_N = mkN "breadfruit" "breadfruit" ;
-lin grapefruit_N = mkN "grapefruit" "grapefruit" ;
-lin 'knight-errant_N' = mkN "knight-errant" "knights-errant" ;
-lin percent_N = mkN "percent" "percent" ;
-lin foot_N = mkN "foot" "feet" ;
-lin clubfoot_N = mkN "clubfoot" "clubfeet" ; -- compound foot_N ;
-lin forefoot_N = mkN "forefoot" "forefeet" ; -- compound foot_N ;
-lin splayfoot_N = mkN "splayfoot" "splayfeet" ; -- compound foot_N ;
-lin turbot_N = mkN "turbot" "turbot" ;
-lin qt_N = mkN "qt" "qt" ;
-lin halibut_N = mkN "halibut" "halibut" ;
-lin trout_N = mkN "trout" "trout" ;
-lin cwt_N = mkN "cwt" "cwt" ;
-lin next_N = mkN "next" "next" ;
-lin landau_N = mkN "landau" "landaus" ;
-lin flambeau_N = mkN "flambeau" "flambeaus" ;
-lin morceau_N = mkN "morceau" "morceaus" ;
-lin fricandeau_N = mkN "fricandeau" "fricandeaus" ;
-lin rondeau_N = mkN "rondeau" "rondeaus" ;
-lin rouleau_N = mkN "rouleau" "rouleaus" ;
-lin 'weather-bureau_N' = mkN "weather-bureau" "weather-bureaus" ;
-lin reseau_N = mkN "reseau" "reseaus" ;
-lin trousseau_N = mkN "trousseau" "trousseaus" ;
-lin plateau_N = mkN "plateau" "plateaus" ;
-lin portmanteau_N = mkN "portmanteau" "portmanteaus" ;
-lin gâteau_N = mkN "gâteau" "gâteaus" ;
-lin pilau_N = mkN "pilau" "pilaus" ;
-lin oau_N = mkN "oau" "oaus" ;
-lin tamarau_N = mkN "tamarau" "tamaraus" ;
-lin frau_N = mkN "frau" "fraus" ;
-lin tau_N = mkN "tau" "taus" ;
-lin luau_N = mkN "luau" "luaus" ;
-lin babu_N = mkN "babu" "babus" ;
-lin zebu_N = mkN "zebu" "zebus" ;
-lin ombu_N = mkN "ombu" "ombus" ;
-lin barbu_N = mkN "barbu" "barbus" ;
-lin sabicu_N = mkN "sabicu" "sabicus" ;
-lin apercu_N = mkN "apercu" "apercus" ;
-lin timucu_N = mkN "timucu" "timucus" ;
-lin hindu_N = mkN "hindu" "hindus" ;
-lin urdu_N = mkN "urdu" "urdus" ;
-lin kudu_N = mkN "kudu" "kudus" ;
-lin 'prie-dieu_N' = mkN "prie-dieu" "prie-dieus" ;
-lin adieu_N = mkN "adieu" "adieus" ;
-lin lieu_N = mkN "lieu" "lieus" ;
-lin milieu_N = mkN "milieu" "milieus" ; -- compound lieu_N ;
-lin leu_N = mkN "leu" "leus" ;
-lin bleu_N = mkN "bleu" "bleus" ; -- notcompound leu_N ;
-lin 'kung fu_N' = mkN "kung fu" "kung fus" ;
-lin snafu_N = mkN "snafu" "snafus" ;
-lin fugu_N = mkN "fugu" "fugus" ;
-lin catechu_N = mkN "catechu" "catechus" ;
-lin fichu_N = mkN "fichu" "fichus" ;
-lin sadhu_N = mkN "sadhu" "sadhus" ;
-lin teju_N = mkN "teju" "tejus" ;
-lin juju_N = mkN "juju" "jujus" ;
-lin haiku_N = mkN "haiku" "haikus" ;
-lin sodoku_N = mkN "sodoku" "sodokus" ;
-lin sudoku_N = mkN "sudoku" "sudokus" ;
-lin puku_N = mkN "puku" "pukus" ;
-lin flu_N = mkN "flu" "flus" ;
-lin poilu_N = mkN "poilu" "poilus" ;
-lin shallu_N = mkN "shallu" "shallus" ;
-lin ormolu_N = mkN "ormolu" "ormolus" ;
-lin tolu_N = mkN "tolu" "tolus" ;
-lin mu_N = mkN "mu" "mus" ;
-lin emu_N = mkN "emu" "emus" ; -- notcompound mu_N ;
-lin rimu_N = mkN "rimu" "rimus" ; -- compound mu_N ;
-lin nu_N = mkN "nu" "nus" ;
-lin menu_N = mkN "menu" "menus" ; -- compound nu_N ;
-lin parvenu_N = mkN "parvenu" "parvenus" ; -- compound nu_N ;
-lin gnu_N = mkN "gnu" "gnus" ; -- notcompound nu_N ;
-lin cornu_N = mkN "cornu" "cornus" ; -- compound nu_N ;
-lin miaou_N = mkN "miaou" "miaous" ;
-lin marabou_N = mkN "marabou" "marabous" ;
-lin congou_N = mkN "congou" "congous" ;
-lin cachou_N = mkN "cachou" "cachous" ;
-lin kinkajou_N = mkN "kinkajou" "kinkajous" ;
-lin bijou_N = mkN "bijou" "bijous" ;
-lin anjou_N = mkN "anjou" "anjous" ;
-lin tinamou_N = mkN "tinamou" "tinamous" ;
-lin sou_N = mkN "sou" "sous" ;
-lin bayou_N = mkN "bayou" "bayous" ;
-lin napu_N = mkN "napu" "napus" ;
-lin tipu_N = mkN "tipu" "tipus" ;
-lin quipu_N = mkN "quipu" "quipus" ;
-lin coypu_N = mkN "coypu" "coypus" ;
-lin grugru_N = mkN "grugru" "grugrus" ;
-lin jabiru_N = mkN "jabiru" "jabirus" ;
-lin guru_N = mkN "guru" "gurus" ;
-lin kuru_N = mkN "kuru" "kurus" ;
-lin tiramisu_N = mkN "tiramisu" "tiramisus" ;
-lin babassu_N = mkN "babassu" "babassus" ;
-lin 'ju-jitsu_N' = mkN "ju-jitsu" "ju-jitsus" ;
-lin ninjutsu_N = mkN "ninjutsu" "ninjutsus" ;
-lin jujutsu_N = mkN "jujutsu" "jujutsus" ;
-lin impromptu_N = mkN "impromptu" "impromptus" ;
-lin virtu_N = mkN "virtu" "virtus" ;
-lin tutu_N = mkN "tutu" "tutus" ;
-lin kudzu_N = mkN "kudzu" "kudzus" ;
-lin kanzu_N = mkN "kanzu" "kanzus" ;
-lin caribou_N = mkN "caribou" "caribou" ;
-lin bantu_N = mkN "bantu" "bantu" ;
-lin beau_N = mkN "beau" "beaux" ;
-lin bandeau_N = mkN "bandeau" "bandeaux" ;
-lin tableau_N = mkN "tableau" "tableaux" ;
-lin bureau_N = mkN "bureau" "bureaux" ;
-lin château_N = mkN "château" "châteaux" ;
-lin moshav_N = mkN "moshav" "moshavs" ;
-lin lav_N = mkN "lav" "lavs" ;
-lin slav_N = mkN "slav" "slavs" ; -- notcompound lav_N ;
-lin yugoslav_N = mkN "yugoslav" "yugoslavs" ; -- compound lav_N ;
-lin lev_N = mkN "lev" "levs" ;
-lin rev_N = mkN "rev" "revs" ;
-lin shiv_N = mkN "shiv" "shivs" ;
-lin spiv_N = mkN "spiv" "spivs" ;
-lin leitmotiv_N = mkN "leitmotiv" "leitmotivs" ;
-lin derv_N = mkN "derv" "dervs" ;
-lin itv_N = mkN "itv" "itvs" ;
-lin raw_N = mkN "raw" "IRREG" ;
-lin glow_N = mkN "glow" "IRREG" ;
-lin 'jim crow_N' = mkN "jim crow" "IRREG" ;
-lin caw_N = mkN "caw" "caws" ;
-lin macaw_N = mkN "macaw" "macaws" ; -- compound caw_N ;
-lin daw_N = mkN "daw" "daws" ;
-lin jackdaw_N = mkN "jackdaw" "jackdaws" ; -- compound daw_N ;
-lin guffaw_N = mkN "guffaw" "guffaws" ;
-lin haw_N = mkN "haw" "haws" ;
-lin 'haw-haw_N' = mkN "haw-haw" "haw-haws" ; -- compound haw_N ;
-lin chaw_N = mkN "chaw" "chaws" ; -- notcompound haw_N ;
-lin heehaw_N = mkN "heehaw" "heehaws" ; -- compound haw_N ;
-lin rickshaw_N = mkN "rickshaw" "rickshaws" ; -- compound haw_N ;
-lin scrimshaw_N = mkN "scrimshaw" "scrimshaws" ; -- compound haw_N ;
-lin cushaw_N = mkN "cushaw" "cushaws" ; -- compound haw_N ;
-lin thaw_N = mkN "thaw" "thaws" ; -- notcompound haw_N ;
-lin mayhaw_N = mkN "mayhaw" "mayhaws" ; -- compound haw_N ;
-lin jaw_N = mkN "jaw" "jaws" ;
-lin lockjaw_N = mkN "lockjaw" "lockjaws" ; -- compound jaw_N ;
-lin law_N = mkN "law" "laws" ;
-lin 'case-law_N' = mkN "case-law" "case-laws" ; -- compound law_N ;
-lin 'bye-law_N' = mkN "bye-law" "bye-laws" ; -- compound law_N ;
-lin claw_N = mkN "claw" "claws" ; -- notcompound law_N ;
-lin flaw_N = mkN "flaw" "flaws" ; -- notcompound law_N ;
-lin scofflaw_N = mkN "scofflaw" "scofflaws" ; -- compound law_N ;
-lin slaw_N = mkN "slaw" "slaws" ; -- notcompound law_N ;
-lin coleslaw_N = mkN "coleslaw" "coleslaws" ; -- compound law_N ;
-lin outlaw_N = mkN "outlaw" "outlaws" ; -- compound law_N ;
-lin bylaw_N = mkN "bylaw" "bylaws" ; -- compound law_N ;
-lin maw_N = mkN "maw" "maws" ;
-lin mackinaw_N = mkN "mackinaw" "mackinaws" ;
-lin paw_N = mkN "paw" "paws" ;
-lin papaw_N = mkN "papaw" "papaws" ; -- compound paw_N ;
-lin forepaw_N = mkN "forepaw" "forepaws" ; -- compound paw_N ;
-lin southpaw_N = mkN "southpaw" "southpaws" ; -- compound paw_N ;
-lin pawpaw_N = mkN "pawpaw" "pawpaws" ; -- compound paw_N ;
-lin craw_N = mkN "craw" "craws" ;
-lin draw_N = mkN "draw" "draws" ;
-lin straw_N = mkN "straw" "straws" ;
-lin bedstraw_N = mkN "bedstraw" "bedstraws" ; -- compound straw_N ;
-lin jackstraw_N = mkN "jackstraw" "jackstraws" ; -- compound straw_N ;
-lin saw_N = mkN "saw" "saws" ;
-lin 'band-saw_N' = mkN "band-saw" "band-saws" ; -- compound saw_N ;
-lin 'pruning-saw_N' = mkN "pruning-saw" "pruning-saws" ; -- compound saw_N ;
-lin bandsaw_N = mkN "bandsaw" "bandsaws" ; -- compound saw_N ;
-lin handsaw_N = mkN "handsaw" "handsaws" ; -- compound saw_N ;
-lin seesaw_N = mkN "seesaw" "seesaws" ; -- compound saw_N ;
-lin jigsaw_N = mkN "jigsaw" "jigsaws" ; -- compound saw_N ;
-lin gangsaw_N = mkN "gangsaw" "gangsaws" ; -- compound saw_N ;
-lin backsaw_N = mkN "backsaw" "backsaws" ; -- compound saw_N ;
-lin hacksaw_N = mkN "hacksaw" "hacksaws" ; -- compound saw_N ;
-lin bucksaw_N = mkN "bucksaw" "bucksaws" ; -- compound saw_N ;
-lin ripsaw_N = mkN "ripsaw" "ripsaws" ; -- compound saw_N ;
-lin fretsaw_N = mkN "fretsaw" "fretsaws" ; -- compound saw_N ;
-lin pitsaw_N = mkN "pitsaw" "pitsaws" ; -- compound saw_N ;
-lin taw_N = mkN "taw" "taws" ;
-lin squaw_N = mkN "squaw" "squaws" ;
-lin waw_N = mkN "waw" "waws" ;
-lin yaw_N = mkN "yaw" "yaws" ;
-lin Jew_N = mkN "Jew" "Jews" ;
-lin dew_N = mkN "dew" "dews" ;
-lin mildew_N = mkN "mildew" "mildews" ; -- compound dew_N ;
-lin sundew_N = mkN "sundew" "sundews" ; -- compound dew_N ;
-lin honeydew_N = mkN "honeydew" "honeydews" ; -- compound dew_N ;
-lin few_N = mkN "few" "fews" ;
-lin feverfew_N = mkN "feverfew" "feverfews" ; -- compound few_N ;
-lin curfew_N = mkN "curfew" "curfews" ; -- compound few_N ;
-lin chew_N = mkN "chew" "chews" ;
-lin clerihew_N = mkN "clerihew" "clerihews" ;
-lin nephew_N = mkN "nephew" "nephews" ;
-lin grandnephew_N = mkN "grandnephew" "grandnephews" ; -- compound nephew_N ;
-lin cashew_N = mkN "cashew" "cashews" ;
-lin view_N = mkN "view" "views" ;
-lin 'side-view_N' = mkN "side-view" "side-views" ; -- compound view_N ;
-lin review_N = mkN "review" "reviews" ; -- compound view_N ;
-lin preview_N = mkN "preview" "previews" ; -- compound view_N ;
-lin interview_N = mkN "interview" "interviews" ; -- compound view_N ;
-lin overview_N = mkN "overview" "overviews" ; -- compound view_N ;
-lin purview_N = mkN "purview" "purviews" ; -- compound view_N ;
-lin clew_N = mkN "clew" "clews" ;
-lin curlew_N = mkN "curlew" "curlews" ;
-lin mew_N = mkN "mew" "mews" ;
-lin smew_N = mkN "smew" "smews" ; -- notcompound mew_N ;
-lin sinew_N = mkN "sinew" "sinews" ;
-lin pew_N = mkN "pew" "pews" ;
-lin brew_N = mkN "brew" "brews" ;
-lin hebrew_N = mkN "hebrew" "hebrews" ; -- compound brew_N ;
-lin crew_N = mkN "crew" "crews" ;
-lin aircrew_N = mkN "aircrew" "aircrews" ; -- compound crew_N ;
-lin screw_N = mkN "screw" "screws" ; -- notcompound crew_N ;
-lin 'wing-screw_N' = mkN "wing-screw" "wing-screws" ; -- compound crew_N ;
-lin thumbscrew_N = mkN "thumbscrew" "thumbscrews" ; -- compound crew_N ;
-lin woodscrew_N = mkN "woodscrew" "woodscrews" ; -- compound crew_N ;
-lin jackscrew_N = mkN "jackscrew" "jackscrews" ; -- compound crew_N ;
-lin corkscrew_N = mkN "corkscrew" "corkscrews" ; -- compound crew_N ;
-lin airscrew_N = mkN "airscrew" "airscrews" ; -- compound crew_N ;
-lin setscrew_N = mkN "setscrew" "setscrews" ; -- compound crew_N ;
-lin shrew_N = mkN "shrew" "shrews" ;
-lin stew_N = mkN "stew" "stews" ;
-lin yew_N = mkN "yew" "yews" ;
-lin miaow_N = mkN "miaow" "miaows" ;
-lin bow_N = mkN "bow" "bows" ;
-lin handbow_N = mkN "handbow" "handbows" ; -- compound bow_N ;
-lin longbow_N = mkN "longbow" "longbows" ; -- compound bow_N ;
-lin elbow_N = mkN "elbow" "elbows" ; -- compound bow_N ;
-lin 'tennis-elbow_N' = mkN "tennis-elbow" "tennis-elbows" ; -- compound bow_N ;
-lin rainbow_N = mkN "rainbow" "rainbows" ; -- compound bow_N ;
-lin crossbow_N = mkN "crossbow" "crossbows" ; -- compound bow_N ;
-lin oxbow_N = mkN "oxbow" "oxbows" ; -- compound bow_N ;
-lin cow_N = mkN "cow" "cows" ;
-lin 'sea-cow_N' = mkN "sea-cow" "sea-cows" ; -- compound cow_N ;
-lin 'moo-cow_N' = mkN "moo-cow" "moo-cows" ; -- compound cow_N ;
-lin scow_N = mkN "scow" "scows" ; -- notcompound cow_N ;
-lin meadow_N = mkN "meadow" "meadows" ;
-lin shadow_N = mkN "shadow" "shadows" ;
-lin 'eye-shadow_N' = mkN "eye-shadow" "eye-shadows" ; -- compound shadow_N ;
-lin eyeshadow_N = mkN "eyeshadow" "eyeshadows" ; -- compound shadow_N ;
-lin widow_N = mkN "widow" "widows" ;
-lin 'war-widow_N' = mkN "war-widow" "war-widows" ; -- compound widow_N ;
-lin window_N = mkN "window" "windows" ;
-lin 'transom-window_N' = mkN "transom-window" "transom-windows" ; -- compound window_N ;
-lin 'dormer-window_N' = mkN "dormer-window" "dormer-windows" ; -- compound window_N ;
-lin 'show-window_N' = mkN "show-window" "show-windows" ; -- compound window_N ;
-lin shopwindow_N = mkN "shopwindow" "shopwindows" ; -- compound window_N ;
-lin meow_N = mkN "meow" "meows" ;
-lin hoosegow_N = mkN "hoosegow" "hoosegows" ;
-lin 'know-how_N' = mkN "know-how" "know-hows" ;
-lin chow_N = mkN "chow" "chows" ;
-lin chowchow_N = mkN "chowchow" "chowchows" ; -- compound chow_N ;
-lin dhow_N = mkN "dhow" "dhows" ;
-lin show_N = mkN "show" "shows" ;
-lin 'ice-show_N' = mkN "ice-show" "ice-shows" ; -- compound show_N ;
-lin 'strip-show_N' = mkN "strip-show" "strip-shows" ; -- compound show_N ;
-lin sideshow_N = mkN "sideshow" "sideshows" ; -- compound show_N ;
-lin horseshow_N = mkN "horseshow" "horseshows" ; -- compound show_N ;
-lin peepshow_N = mkN "peepshow" "peepshows" ; -- compound show_N ;
-lin low_N = mkN "low" "lows" ;
-lin bungalow_N = mkN "bungalow" "bungalows" ; -- compound low_N ;
-lin blow_N = mkN "blow" "blows" ; -- notcompound low_N ;
-lin deathblow_N = mkN "deathblow" "deathblows" ; -- compound low_N ;
-lin counterblow_N = mkN "counterblow" "counterblows" ; -- compound low_N ;
-lin furbelow_N = mkN "furbelow" "furbelows" ; -- compound low_N ;
-lin flow_N = mkN "flow" "flows" ; -- notcompound low_N ;
-lin backflow_N = mkN "backflow" "backflows" ; -- compound low_N ;
-lin inflow_N = mkN "inflow" "inflows" ; -- compound low_N ;
-lin overflow_N = mkN "overflow" "overflows" ; -- compound low_N ;
-lin airflow_N = mkN "airflow" "airflows" ; -- compound low_N ;
-lin outflow_N = mkN "outflow" "outflows" ; -- compound low_N ;
-lin afterglow_N = mkN "afterglow" "afterglows" ; -- compound low_N ;
-lin counterglow_N = mkN "counterglow" "counterglows" ; -- compound low_N ;
-lin fallow_N = mkN "fallow" "fallows" ; -- compound low_N ;
-lin hallow_N = mkN "hallow" "hallows" ; -- compound low_N ;
-lin shallow_N = mkN "shallow" "shallows" ; -- compound low_N ;
-lin mallow_N = mkN "mallow" "mallows" ; -- compound low_N ;
-lin marshmallow_N = mkN "marshmallow" "marshmallows" ; -- compound low_N ;
-lin waxmallow_N = mkN "waxmallow" "waxmallows" ; -- compound low_N ;
-lin sallow_N = mkN "sallow" "sallows" ; -- compound low_N ;
-lin tallow_N = mkN "tallow" "tallows" ; -- compound low_N ;
-lin wallow_N = mkN "wallow" "wallows" ; -- compound low_N ;
-lin swallow_N = mkN "swallow" "swallows" ; -- compound low_N ;
-lin bellow_N = mkN "bellow" "bellows" ; -- compound low_N ;
-lin fellow_N = mkN "fellow" "fellows" ; -- compound low_N ;
-lin 'class-fellow_N' = mkN "class-fellow" "class-fellows" ; -- compound low_N ;
-lin bedfellow_N = mkN "bedfellow" "bedfellows" ; -- compound low_N ;
-lin schoolfellow_N = mkN "schoolfellow" "schoolfellows" ; -- compound low_N ;
-lin playfellow_N = mkN "playfellow" "playfellows" ; -- compound low_N ;
-lin yellow_N = mkN "yellow" "yellows" ; -- compound low_N ;
-lin billow_N = mkN "billow" "billows" ; -- compound low_N ;
-lin pillow_N = mkN "pillow" "pillows" ; -- compound low_N ;
-lin willow_N = mkN "willow" "willows" ; -- compound low_N ;
-lin hollow_N = mkN "hollow" "hollows" ; -- compound low_N ;
-lin plow_N = mkN "plow" "plows" ; -- notcompound low_N ;
-lin snowplow_N = mkN "snowplow" "snowplows" ; -- compound low_N ;
-lin 'go-slow_N' = mkN "go-slow" "go-slows" ; -- compound low_N ;
-lin whitlow_N = mkN "whitlow" "whitlows" ; -- compound low_N ;
-lin mow_N = mkN "mow" "mows" ;
-lin haymow_N = mkN "haymow" "haymows" ; -- compound mow_N ;
-lin now_N = mkN "now" "nows" ;
-lin know_N = mkN "know" "knows" ; -- notcompound now_N ;
-lin 'don\'t-know_N' = mkN "don't-know" "don't-knows" ; -- compound now_N ;
-lin minnow_N = mkN "minnow" "minnows" ; -- compound now_N ;
-lin topminnow_N = mkN "topminnow" "topminnows" ; -- compound now_N ;
-lin winnow_N = mkN "winnow" "winnows" ; -- compound now_N ;
-lin snow_N = mkN "snow" "snows" ; -- notcompound now_N ;
-lin pow_N = mkN "pow" "pows" ;
-lin row_N = mkN "row" "rows" ;
-lin brow_N = mkN "brow" "brows" ; -- notcompound row_N ;
-lin middlebrow_N = mkN "middlebrow" "middlebrows" ; -- compound row_N ;
-lin eyebrow_N = mkN "eyebrow" "eyebrows" ; -- compound row_N ;
-lin highbrow_N = mkN "highbrow" "highbrows" ; -- compound row_N ;
-lin lowbrow_N = mkN "lowbrow" "lowbrows" ; -- compound row_N ;
-lin crow_N = mkN "crow" "crows" ; -- notcompound row_N ;
-lin 'cock-crow_N' = mkN "cock-crow" "cock-crows" ; -- compound row_N ;
-lin 'carrion-crow_N' = mkN "carrion-crow" "carrion-crows" ; -- compound row_N ;
-lin scarecrow_N = mkN "scarecrow" "scarecrows" ; -- compound row_N ;
-lin escrow_N = mkN "escrow" "escrows" ; -- compound row_N ;
-lin hedgerow_N = mkN "hedgerow" "hedgerows" ; -- compound row_N ;
-lin serow_N = mkN "serow" "serows" ; -- compound row_N ;
-lin throw_N = mkN "throw" "throws" ; -- notcompound row_N ;
-lin overthrow_N = mkN "overthrow" "overthrows" ; -- compound row_N ;
-lin prow_N = mkN "prow" "prows" ; -- notcompound row_N ;
-lin arrow_N = mkN "arrow" "arrows" ; -- compound row_N ;
-lin barrow_N = mkN "barrow" "barrows" ; -- compound row_N ;
-lin 'hand-barrow_N' = mkN "hand-barrow" "hand-barrows" ; -- compound row_N ;
-lin handbarrow_N = mkN "handbarrow" "handbarrows" ; -- compound row_N ;
-lin wheelbarrow_N = mkN "wheelbarrow" "wheelbarrows" ; -- compound row_N ;
-lin farrow_N = mkN "farrow" "farrows" ; -- compound row_N ;
-lin harrow_N = mkN "harrow" "harrows" ; -- compound row_N ;
-lin restharrow_N = mkN "restharrow" "restharrows" ; -- compound row_N ;
-lin marrow_N = mkN "marrow" "marrows" ; -- compound row_N ;
-lin narrow_N = mkN "narrow" "narrows" ; -- compound row_N ;
-lin sparrow_N = mkN "sparrow" "sparrows" ; -- compound row_N ;
-lin 'hedge-sparrow_N' = mkN "hedge-sparrow" "hedge-sparrows" ; -- compound row_N ;
-lin yarrow_N = mkN "yarrow" "yarrows" ; -- compound row_N ;
-lin morrow_N = mkN "morrow" "morrows" ; -- compound row_N ;
-lin tomorrow_N = mkN "tomorrow" "tomorrows" ; -- compound row_N ;
-lin sorrow_N = mkN "sorrow" "sorrows" ; -- compound row_N ;
-lin burrow_N = mkN "burrow" "burrows" ; -- compound row_N ;
-lin 'rabbit-burrow_N' = mkN "rabbit-burrow" "rabbit-burrows" ; -- compound row_N ;
-lin furrow_N = mkN "furrow" "furrows" ; -- compound row_N ;
-lin sow_N = mkN "sow" "sows" ;
-lin curassow_N = mkN "curassow" "curassows" ; -- compound sow_N ;
-lin tow_N = mkN "tow" "tows" ;
-lin kotow_N = mkN "kotow" "kotows" ; -- compound tow_N ;
-lin undertow_N = mkN "undertow" "undertows" ; -- compound tow_N ;
-lin kowtow_N = mkN "kowtow" "kowtows" ; -- compound tow_N ;
-lin vow_N = mkN "vow" "vows" ;
-lin wow_N = mkN "wow" "wows" ;
-lin 'bow-wow_N' = mkN "bow-wow" "bow-wows" ; -- compound wow_N ;
-lin powwow_N = mkN "powwow" "powwows" ; -- compound wow_N ;
-lin 'son-in-law_N' = mkN "son-in-law" "sons-in-law" ;
-lin 'father-in-law_N' = mkN "father-in-law" "fathers-in-law" ;
-lin 'mother-in-law_N' = mkN "mother-in-law" "mothers-in-law" ;
-lin 'brother-in-law_N' = mkN "brother-in-law" "brothers-in-law" ;
-lin 'daughter-in-law_N' = mkN "daughter-in-law" "daughters-in-law" ;
-lin 'sister-in-law_N' = mkN "sister-in-law" "sisters-in-law" ;
-lin kw_N = mkN "kw" "kw" ;
-lin ox_N = mkN "ox" "IRREG" ;
-lin pox_N = mkN "pox" "IRREG" ; -- notcompound ox_N ;
-lin vox_N = mkN "vox" "IRREG" ; -- notcompound ox_N ;
-lin ax_N = mkN "ax" "axes" ;
-lin broadax_N = mkN "broadax" "broadaxes" ; -- compound ax_N ;
-lin addax_N = mkN "addax" "addaxes" ; -- compound ax_N ;
-lin poleax_N = mkN "poleax" "poleaxes" ; -- compound ax_N ;
-lin breakax_N = mkN "breakax" "breakaxes" ; -- compound ax_N ;
-lin galax_N = mkN "galax" "galaxes" ; -- compound ax_N ;
-lin flax_N = mkN "flax" "flaxes" ; -- notcompound ax_N ;
-lin toadflax_N = mkN "toadflax" "toadflaxes" ; -- compound ax_N ;
-lin smilax_N = mkN "smilax" "smilaxes" ; -- compound ax_N ;
-lin parallax_N = mkN "parallax" "parallaxes" ; -- compound ax_N ;
-lin max_N = mkN "max" "maxes" ; -- notcompound ax_N ;
-lin climax_N = mkN "climax" "climaxes" ; -- compound ax_N ;
-lin anticlimax_N = mkN "anticlimax" "anticlimaxes" ; -- compound ax_N ;
-lin opopanax_N = mkN "opopanax" "opopanaxes" ; -- compound ax_N ;
-lin hoax_N = mkN "hoax" "hoaxes" ; -- compound ax_N ;
-lin pax_N = mkN "pax" "paxes" ; -- notcompound ax_N ;
-lin anthrax_N = mkN "anthrax" "anthraxes" ; -- compound ax_N ;
-lin borax_N = mkN "borax" "boraxes" ; -- compound ax_N ;
-lin thorax_N = mkN "thorax" "thoraxes" ; -- compound ax_N ;
-lin hemothorax_N = mkN "hemothorax" "hemothoraxes" ; -- compound ax_N ;
-lin pneumothorax_N = mkN "pneumothorax" "pneumothoraxes" ; -- compound ax_N ;
-lin hydrothorax_N = mkN "hydrothorax" "hydrothoraxes" ; -- compound ax_N ;
-lin prothorax_N = mkN "prothorax" "prothoraxes" ; -- compound ax_N ;
-lin storax_N = mkN "storax" "storaxes" ; -- compound ax_N ;
-lin hyrax_N = mkN "hyrax" "hyraxes" ; -- compound ax_N ;
-lin styrax_N = mkN "styrax" "styraxes" ; -- compound ax_N ;
-lin sax_N = mkN "sax" "saxes" ; -- notcompound ax_N ;
-lin tax_N = mkN "tax" "taxes" ; -- notcompound ax_N ;
-lin 'income-tax_N' = mkN "income-tax" "income-taxes" ; -- compound ax_N ;
-lin 'poll-tax_N' = mkN "poll-tax" "poll-taxes" ; -- compound ax_N ;
-lin syntax_N = mkN "syntax" "syntaxes" ; -- compound ax_N ;
-lin supertax_N = mkN "supertax" "supertaxes" ; -- compound ax_N ;
-lin surtax_N = mkN "surtax" "surtaxes" ; -- compound ax_N ;
-lin wax_N = mkN "wax" "waxes" ; -- notcompound ax_N ;
-lin 'sealing-wax_N' = mkN "sealing-wax" "sealing-waxes" ; -- compound ax_N ;
-lin earwax_N = mkN "earwax" "earwaxes" ; -- compound ax_N ;
-lin beeswax_N = mkN "beeswax" "beeswaxes" ; -- compound ax_N ;
-lin ibex_N = mkN "ibex" "ibexes" ;
-lin codex_N = mkN "codex" "codices" ;
-lin spandex_N = mkN "spandex" "spandexes" ;
-lin index_N = mkN "index" "indexes" ;
-lin 'cross-index_N' = mkN "cross-index" "cross-indexes" ; -- compound index_N ;
-lin caudex_N = mkN "caudex" "caudexes" ;
-lin pontifex_N = mkN "pontifex" "pontifexes" ;
-lin hex_N = mkN "hex" "hexes" ;
-lin narthex_N = mkN "narthex" "narthexes" ; -- compound hex_N ;
-lin telex_N = mkN "telex" "telexes" ;
-lin flex_N = mkN "flex" "flexes" ;
-lin reflex_N = mkN "reflex" "reflexes" ; -- compound flex_N ;
-lin circumflex_N = mkN "circumflex" "circumflexes" ; -- compound flex_N ;
-lin ilex_N = mkN "ilex" "ilexes" ;
-lin silex_N = mkN "silex" "silexes" ; -- notcompound ilex_N ;
-lin multiplex_N = mkN "multiplex" "multiplexes" ;
-lin googolplex_N = mkN "googolplex" "googolplexes" ;
-lin complex_N = mkN "complex" "complexes" ;
-lin kleenex_N = mkN "kleenex" "kleenexes" ;
-lin annex_N = mkN "annex" "annexes" ;
-lin apex_N = mkN "apex" "apexes" ;
-lin antapex_N = mkN "antapex" "antapexes" ; -- compound apex_N ;
-lin perspex_N = mkN "perspex" "perspexes" ;
-lin centrex_N = mkN "centrex" "centrexes" ;
-lin sex_N = mkN "sex" "sexes" ;
-lin cybersex_N = mkN "cybersex" "cybersexes" ; -- compound sex_N ;
-lin vertex_N = mkN "vertex" "vertices" ;
-lin cortex_N = mkN "cortex" "cortices" ;
-lin latex_N = mkN "latex" "latexes" ;
-lin aertex_N = mkN "aertex" "aertexes" ;
-lin vortex_N = mkN "vortex" "vortexes" ;
-lin silvex_N = mkN "silvex" "silvexes" ;
-lin spadix_N = mkN "spadix" "spadixes" ;
-lin appendix_N = mkN "appendix" "appendixes" ;
-lin fix_N = mkN "fix" "fixes" ;
-lin prefix_N = mkN "prefix" "prefixes" ; -- compound fix_N ;
-lin antefix_N = mkN "antefix" "antefixes" ; -- compound fix_N ;
-lin affix_N = mkN "affix" "affixes" ; -- compound fix_N ;
-lin suffix_N = mkN "suffix" "suffixes" ; -- compound fix_N ;
-lin crucifix_N = mkN "crucifix" "crucifixes" ; -- compound fix_N ;
-lin infix_N = mkN "infix" "infixes" ; -- compound fix_N ;
-lin helix_N = mkN "helix" "helixes" ;
-lin kylix_N = mkN "kylix" "kylixes" ;
-lin mix_N = mkN "mix" "mixes" ;
-lin nix_N = mkN "nix" "nixes" ;
-lin phoenix_N = mkN "phoenix" "phoenixes" ; -- compound nix_N ;
-lin vernix_N = mkN "vernix" "vernixes" ; -- compound nix_N ;
-lin fornix_N = mkN "fornix" "fornixes" ; -- compound nix_N ;
-lin 'grand prix_N' = mkN "grand prix" "grand prices" ;
-lin cicatrix_N = mkN "cicatrix" "cicatrices" ;
-lin varix_N = mkN "varix" "varixes" ;
-lin mediatrix_N = mkN "mediatrix" "mediatrixes" ;
-lin aviatrix_N = mkN "aviatrix" "aviatrixes" ;
-lin matrix_N = mkN "matrix" "matrixes" ;
-lin dominatrix_N = mkN "dominatrix" "dominatrixes" ;
-lin testatrix_N = mkN "testatrix" "testatrixes" ;
-lin executrix_N = mkN "executrix" "executrixes" ;
-lin cervix_N = mkN "cervix" "cervixes" ;
-lin phalanx_N = mkN "phalanx" "phalanxes" ;
-lin manx_N = mkN "manx" "manxes" ;
-lin sphinx_N = mkN "sphinx" "sphinxes" ;
-lin jinx_N = mkN "jinx" "jinxes" ;
-lin minx_N = mkN "minx" "minxes" ;
-lin meninx_N = mkN "meninx" "meninxes" ;
-lin salpinx_N = mkN "salpinx" "salpinxes" ;
-lin syrinx_N = mkN "syrinx" "syrinxes" ;
-lin lynx_N = mkN "lynx" "lynxes" ;
-lin pharynx_N = mkN "pharynx" "pharynxes" ;
-lin laryngopharynx_N = mkN "laryngopharynx" "laryngopharynxes" ; -- compound pharynx_N ;
-lin oropharynx_N = mkN "oropharynx" "oropharynxes" ; -- compound pharynx_N ;
-lin nasopharynx_N = mkN "nasopharynx" "nasopharynxes" ; -- compound pharynx_N ;
-lin larynx_N = mkN "larynx" "larynxes" ;
-lin box_N = mkN "box" "boxes" ;
-lin 'music-box_N' = mkN "music-box" "music-boxes" ; -- compound box_N ;
-lin 'deed-box_N' = mkN "deed-box" "deed-boxes" ; -- compound box_N ;
-lin 'dice-box_N' = mkN "dice-box" "dice-boxes" ; -- compound box_N ;
-lin 'jack-in-the-box_N' = mkN "jack-in-the-box" "jack-in-the-boxes" ; -- compound box_N ;
-lin 'paddle-box_N' = mkN "paddle-box" "paddle-boxes" ; -- compound box_N ;
-lin 'goggle-box_N' = mkN "goggle-box" "goggle-boxes" ; -- compound box_N ;
-lin 'shooting-box_N' = mkN "shooting-box" "shooting-boxes" ; -- compound box_N ;
-lin 'dispatch-box_N' = mkN "dispatch-box" "dispatch-boxes" ; -- compound box_N ;
-lin 'musical-box_N' = mkN "musical-box" "musical-boxes" ; -- compound box_N ;
-lin 'signal-box_N' = mkN "signal-box" "signal-boxes" ; -- compound box_N ;
-lin 'call-box_N' = mkN "call-box" "call-boxes" ; -- compound box_N ;
-lin 'pillar-box_N' = mkN "pillar-box" "pillar-boxes" ; -- compound box_N ;
-lin 'letter-box_N' = mkN "letter-box" "letter-boxes" ; -- compound box_N ;
-lin 'poor-box_N' = mkN "poor-box" "poor-boxes" ; -- compound box_N ;
-lin 'christmas-box_N' = mkN "christmas-box" "christmas-boxes" ; -- compound box_N ;
-lin 'alms-box_N' = mkN "alms-box" "alms-boxes" ; -- compound box_N ;
-lin 'witness-box_N' = mkN "witness-box" "witness-boxes" ; -- compound box_N ;
-lin 'press-box_N' = mkN "press-box" "press-boxes" ; -- compound box_N ;
-lin 'ballot-box_N' = mkN "ballot-box" "ballot-boxes" ; -- compound box_N ;
-lin 'prompt-box_N' = mkN "prompt-box" "prompt-boxes" ; -- compound box_N ;
-lin 'window-box_N' = mkN "window-box" "window-boxes" ; -- compound box_N ;
-lin 'play-box_N' = mkN "play-box" "play-boxes" ; -- compound box_N ;
-lin 'sentry-box_N' = mkN "sentry-box" "sentry-boxes" ; -- compound box_N ;
-lin 'jury-box_N' = mkN "jury-box" "jury-boxes" ; -- compound box_N ;
-lin bandbox_N = mkN "bandbox" "bandboxes" ; -- compound box_N ;
-lin sandbox_N = mkN "sandbox" "sandboxes" ; -- compound box_N ;
-lin soundbox_N = mkN "soundbox" "soundboxes" ; -- compound box_N ;
-lin icebox_N = mkN "icebox" "iceboxes" ; -- compound box_N ;
-lin jukebox_N = mkN "jukebox" "jukeboxes" ; -- compound box_N ;
-lin shoebox_N = mkN "shoebox" "shoeboxes" ; -- compound box_N ;
-lin firebox_N = mkN "firebox" "fireboxes" ; -- compound box_N ;
-lin horsebox_N = mkN "horsebox" "horseboxes" ; -- compound box_N ;
-lin snuffbox_N = mkN "snuffbox" "snuffboxes" ; -- compound box_N ;
-lin strongbox_N = mkN "strongbox" "strongboxes" ; -- compound box_N ;
-lin matchbox_N = mkN "matchbox" "matchboxes" ; -- compound box_N ;
-lin cashbox_N = mkN "cashbox" "cashboxes" ; -- compound box_N ;
-lin workbox_N = mkN "workbox" "workboxes" ; -- compound box_N ;
-lin mailbox_N = mkN "mailbox" "mailboxes" ; -- compound box_N ;
-lin pillbox_N = mkN "pillbox" "pillboxes" ; -- compound box_N ;
-lin toolbox_N = mkN "toolbox" "toolboxes" ; -- compound box_N ;
-lin homeobox_N = mkN "homeobox" "homeoboxes" ; -- compound box_N ;
-lin soapbox_N = mkN "soapbox" "soapboxes" ; -- compound box_N ;
-lin gearbox_N = mkN "gearbox" "gearboxes" ; -- compound box_N ;
-lin tinderbox_N = mkN "tinderbox" "tinderboxes" ; -- compound box_N ;
-lin chatterbox_N = mkN "chatterbox" "chatterboxes" ; -- compound box_N ;
-lin sweatbox_N = mkN "sweatbox" "sweatboxes" ; -- compound box_N ;
-lin hatbox_N = mkN "hatbox" "hatboxes" ; -- compound box_N ;
-lin saltbox_N = mkN "saltbox" "saltboxes" ; -- compound box_N ;
-lin paintbox_N = mkN "paintbox" "paintboxes" ; -- compound box_N ;
-lin hotbox_N = mkN "hotbox" "hotboxes" ; -- compound box_N ;
-lin postbox_N = mkN "postbox" "postboxes" ; -- compound box_N ;
-lin playbox_N = mkN "playbox" "playboxes" ; -- compound box_N ;
-lin moneybox_N = mkN "moneybox" "moneyboxes" ; -- compound box_N ;
-lin skybox_N = mkN "skybox" "skyboxes" ; -- compound box_N ;
-lin cox_N = mkN "cox" "coxes" ;
-lin paradox_N = mkN "paradox" "paradoxes" ;
-lin fox_N = mkN "fox" "foxes" ;
-lin 'flying-fox_N' = mkN "flying-fox" "flying-foxes" ; -- compound fox_N ;
-lin lox_N = mkN "lox" "loxes" ;
-lin phlox_N = mkN "phlox" "phloxes" ; -- notcompound lox_N ;
-lin equinox_N = mkN "equinox" "equinoxes" ;
-lin rickettsialpox_N = mkN "rickettsialpox" "rickettsialpoxes" ;
-lin camelpox_N = mkN "camelpox" "camelpoxes" ;
-lin smallpox_N = mkN "smallpox" "smallpoxes" ;
-lin chickenpox_N = mkN "chickenpox" "chickenpoxes" ;
-lin cowpox_N = mkN "cowpox" "cowpoxes" ;
-lin xerox_N = mkN "xerox" "xeroxes" ;
-lin detox_N = mkN "detox" "detoxes" ;
-lin bordeaux_N = mkN "bordeaux" "bordeauxes" ;
-lin lux_N = mkN "lux" "luxes" ;
-lin flux_N = mkN "flux" "fluxes" ; -- notcompound lux_N ;
-lin reflux_N = mkN "reflux" "refluxes" ; -- compound lux_N ;
-lin efflux_N = mkN "efflux" "effluxes" ; -- compound lux_N ;
-lin influx_N = mkN "influx" "influxes" ; -- compound lux_N ;
-lin roux_N = mkN "roux" "rouxes" ;
-lin crux_N = mkN "crux" "cruxes" ;
-lin coccyx_N = mkN "coccyx" "coccyxes" ;
-lin calyx_N = mkN "calyx" "calyxes" ;
-lin epicalyx_N = mkN "epicalyx" "epicalyxes" ; -- compound calyx_N ;
-lin onyx_N = mkN "onyx" "onyxes" ;
-lin sardonyx_N = mkN "sardonyx" "sardonyxes" ; -- compound onyx_N ;
-lin pyx_N = mkN "pyx" "pyxes" ;
-lin archaeopteryx_N = mkN "archaeopteryx" "archaeopteryxes" ;
-lin anomalopteryx_N = mkN "anomalopteryx" "anomalopteryxes" ;
-lin oryx_N = mkN "oryx" "oryxes" ;
-lin 'billet-doux_N' = mkN "billet-doux" "billets-doux" ;
-lin sioux_N = mkN "sioux" "sioux" ;
-lin heyday_N = mkN "heyday" "IRREG" ;
-lin say_N = mkN "say" "IRREG" ;
-lin 'quai d\'orsay_N' = mkN "quai d'orsay" "IRREG" ; -- notcompound say_N ;
-lin 'go-by_N' = mkN "go-by" "IRREG" ;
-lin 'passer-by_N' = mkN "passer-by" "IRREG" ;
-lin mickey_N = mkN "mickey" "IRREG" ;
-lin 'sir roger de coverley_N' = mkN "sir roger de coverley" "IRREG" ;
-lin prey_N = mkN "prey" "IRREG" ;
-lin hooky_N = mkN "hooky" "IRREG" ;
-lin nelly_N = mkN "nelly" "IRREG" ;
-lin tammany_N = mkN "tammany" "IRREG" ;
-lin ca'canny_N = mkN "ca'canny" "IRREG" ;
-lin skullduggery_N = mkN "skullduggery" "IRREG" ;
-lin soldiery_N = mkN "soldiery" "IRREG" ;
-lin penny_1_N = mkN "penny" "pence" ;
-lin May_N = mkN "May" "Mays" ;
-lin bay_N = mkN "bay" "bays" ;
-lin rosebay_N = mkN "rosebay" "rosebays" ; -- compound bay_N ;
-lin sickbay_N = mkN "sickbay" "sickbays" ; -- compound bay_N ;
-lin decay_N = mkN "decay" "decays" ;
-lin day_N = mkN "day" "days" ;
-lin 'boxing day_N' = mkN "boxing day" "boxing days" ; -- compound day_N ;
-lin 'name-day_N' = mkN "name-day" "name-days" ; -- compound day_N ;
-lin 'fete-day_N' = mkN "fete-day" "fete-days" ; -- compound day_N ;
-lin 'off-day_N' = mkN "off-day" "off-days" ; -- compound day_N ;
-lin 'flag-day_N' = mkN "flag-day" "flag-days" ; -- compound day_N ;
-lin 'rag-day_N' = mkN "rag-day" "rag-days" ; -- compound day_N ;
-lin 'washing-day_N' = mkN "washing-day" "washing-days" ; -- compound day_N ;
-lin 'polling-day_N' = mkN "polling-day" "polling-days" ; -- compound day_N ;
-lin 'speech-day_N' = mkN "speech-day" "speech-days" ; -- compound day_N ;
-lin 'quarter-day_N' = mkN "quarter-day" "quarter-days" ; -- compound day_N ;
-lin 'saint\'s-day_N' = mkN "saint's-day" "saint's-days" ; -- compound day_N ;
-lin 'market-day_N' = mkN "market-day" "market-days" ; -- compound day_N ;
-lin 'feast-day_N' = mkN "feast-day" "feast-days" ; -- compound day_N ;
-lin 'rest-day_N' = mkN "rest-day" "rest-days" ; -- compound day_N ;
-lin midday_N = mkN "midday" "middays" ; -- compound day_N ;
-lin washday_N = mkN "washday" "washdays" ; -- compound day_N ;
-lin birthday_N = mkN "birthday" "birthdays" ; -- compound day_N ;
-lin holiday_N = mkN "holiday" "holidays" ; -- compound day_N ;
-lin 'half-holiday_N' = mkN "half-holiday" "half-holidays" ; -- compound day_N ;
-lin Friday_N = mkN "Friday" "Fridays" ; -- compound day_N ;
-lin weekday_N = mkN "weekday" "weekdays" ; -- compound day_N ;
-lin workday_N = mkN "workday" "workdays" ; -- compound day_N ;
-lin caranday_N = mkN "caranday" "carandays" ; -- compound day_N ;
-lin Monday_N = mkN "Monday" "Mondays" ; -- compound day_N ;
-lin Sunday_N = mkN "Sunday" "Sundays" ; -- compound day_N ;
-lin today_N = mkN "today" "todays" ; -- compound day_N ;
-lin yesterday_N = mkN "yesterday" "yesterdays" ; -- compound day_N ;
-lin Saturday_N = mkN "Saturday" "Saturdays" ; -- compound day_N ;
-lin Wednesday_N = mkN "Wednesday" "Wednesdays" ; -- compound day_N ;
-lin Tuesday_N = mkN "Tuesday" "Tuesdays" ; -- compound day_N ;
-lin 'shrove tuesday_N' = mkN "shrove tuesday" "shrove tuesdays" ; -- compound day_N ;
-lin Thursday_N = mkN "Thursday" "Thursdays" ; -- compound day_N ;
-lin 'maundy thursday_N' = mkN "maundy thursday" "maundy thursdays" ; -- compound day_N ;
-lin mayday_N = mkN "mayday" "maydays" ; -- compound day_N ;
-lin payday_N = mkN "payday" "paydays" ; -- compound day_N ;
-lin gay_N = mkN "gay" "gays" ;
-lin nosegay_N = mkN "nosegay" "nosegays" ; -- compound gay_N ;
-lin margay_N = mkN "margay" "margays" ; -- compound gay_N ;
-lin hay_N = mkN "hay" "hays" ;
-lin sashay_N = mkN "sashay" "sashays" ; -- compound hay_N ;
-lin jay_N = mkN "jay" "jays" ;
-lin popinjay_N = mkN "popinjay" "popinjays" ; -- compound jay_N ;
-lin tokay_N = mkN "tokay" "tokays" ;
-lin lay_N = mkN "lay" "lays" ;
-lin malay_N = mkN "malay" "malays" ; -- compound lay_N ;
-lin clay_N = mkN "clay" "clays" ; -- notcompound lay_N ;
-lin pipeclay_N = mkN "pipeclay" "pipeclays" ; -- compound lay_N ;
-lin fireclay_N = mkN "fireclay" "fireclays" ; -- compound lay_N ;
-lin belay_N = mkN "belay" "belays" ; -- compound lay_N ;
-lin delay_N = mkN "delay" "delays" ; -- compound lay_N ;
-lin roundelay_N = mkN "roundelay" "roundelays" ; -- compound lay_N ;
-lin relay_N = mkN "relay" "relays" ; -- compound lay_N ;
-lin inlay_N = mkN "inlay" "inlays" ; -- compound lay_N ;
-lin play_N = mkN "play" "plays" ; -- notcompound lay_N ;
-lin 'child\'s-play_N' = mkN "child's-play" "child's-plays" ; -- compound lay_N ;
-lin swordplay_N = mkN "swordplay" "swordplays" ; -- compound lay_N ;
-lin replay_N = mkN "replay" "replays" ; -- compound lay_N ;
-lin foreplay_N = mkN "foreplay" "foreplays" ; -- compound lay_N ;
-lin horseplay_N = mkN "horseplay" "horseplays" ; -- compound lay_N ;
-lin screenplay_N = mkN "screenplay" "screenplays" ; -- compound lay_N ;
-lin gunplay_N = mkN "gunplay" "gunplays" ; -- compound lay_N ;
-lin interplay_N = mkN "interplay" "interplays" ; -- compound lay_N ;
-lin splay_N = mkN "splay" "splays" ; -- notcompound lay_N ;
-lin display_N = mkN "display" "displays" ; -- compound lay_N ;
-lin byplay_N = mkN "byplay" "byplays" ; -- compound lay_N ;
-lin parlay_N = mkN "parlay" "parlays" ; -- compound lay_N ;
-lin underlay_N = mkN "underlay" "underlays" ; -- compound lay_N ;
-lin overlay_N = mkN "overlay" "overlays" ; -- compound lay_N ;
-lin outlay_N = mkN "outlay" "outlays" ; -- compound lay_N ;
-lin dismay_N = mkN "dismay" "dismays" ;
-lin nay_N = mkN "nay" "nays" ;
-lin hogmanay_N = mkN "hogmanay" "hogmanays" ; -- compound nay_N ;
-lin pay_N = mkN "pay" "pays" ;
-lin 'strike-pay_N' = mkN "strike-pay" "strike-pays" ; -- compound pay_N ;
-lin 'half-pay_N' = mkN "half-pay" "half-pays" ; -- compound pay_N ;
-lin 'sick-pay_N' = mkN "sick-pay" "sick-pays" ; -- compound pay_N ;
-lin ray_N = mkN "ray" "rays" ;
-lin 'x-ray_N' = mkN "x-ray" "x-rays" ; -- compound ray_N ;
-lin bray_N = mkN "bray" "brays" ; -- notcompound ray_N ;
-lin chambray_N = mkN "chambray" "chambrays" ; -- compound ray_N ;
-lin dray_N = mkN "dray" "drays" ; -- notcompound ray_N ;
-lin fray_N = mkN "fray" "frays" ; -- notcompound ray_N ;
-lin affray_N = mkN "affray" "affrays" ; -- compound ray_N ;
-lin gray_N = mkN "gray" "grays" ; -- notcompound ray_N ;
-lin stingray_N = mkN "stingray" "stingrays" ; -- compound ray_N ;
-lin sunray_N = mkN "sunray" "sunrays" ; -- compound ray_N ;
-lin foray_N = mkN "foray" "forays" ; -- compound ray_N ;
-lin moray_N = mkN "moray" "morays" ; -- compound ray_N ;
-lin spray_N = mkN "spray" "sprays" ; -- notcompound ray_N ;
-lin array_N = mkN "array" "arrays" ; -- compound ray_N ;
-lin disarray_N = mkN "disarray" "disarrays" ; -- compound ray_N ;
-lin tray_N = mkN "tray" "trays" ; -- notcompound ray_N ;
-lin 'tea-tray_N' = mkN "tea-tray" "tea-trays" ; -- compound ray_N ;
-lin 'ice-tray_N' = mkN "ice-tray" "ice-trays" ; -- compound ray_N ;
-lin 'in-tray_N' = mkN "in-tray" "in-trays" ; -- compound ray_N ;
-lin 'out-tray_N' = mkN "out-tray" "out-trays" ; -- compound ray_N ;
-lin icetray_N = mkN "icetray" "icetrays" ; -- compound ray_N ;
-lin ashtray_N = mkN "ashtray" "ashtrays" ; -- compound ray_N ;
-lin stray_N = mkN "stray" "strays" ; -- notcompound ray_N ;
-lin hearsay_N = mkN "hearsay" "hearsays" ;
-lin assay_N = mkN "assay" "assays" ;
-lin bioassay_N = mkN "bioassay" "bioassays" ; -- compound assay_N ;
-lin immunoassay_N = mkN "immunoassay" "immunoassays" ; -- compound assay_N ;
-lin radioimmunoassay_N = mkN "radioimmunoassay" "radioimmunoassays" ; -- compound assay_N ;
-lin essay_N = mkN "essay" "essays" ;
-lin stay_N = mkN "stay" "stays" ;
-lin forestay_N = mkN "forestay" "forestays" ; -- compound stay_N ;
-lin backstay_N = mkN "backstay" "backstays" ; -- compound stay_N ;
-lin mainstay_N = mkN "mainstay" "mainstays" ; -- compound stay_N ;
-lin tatouay_N = mkN "tatouay" "tatouays" ;
-lin quay_N = mkN "quay" "quays" ;
-lin way_N = mkN "way" "ways" ;
-lin hideaway_N = mkN "hideaway" "hideaways" ; -- compound way_N ;
-lin takeaway_N = mkN "takeaway" "takeaways" ; -- compound way_N ;
-lin areaway_N = mkN "areaway" "areaways" ; -- compound way_N ;
-lin seaway_N = mkN "seaway" "seaways" ; -- compound way_N ;
-lin giveaway_N = mkN "giveaway" "giveaways" ; -- compound way_N ;
-lin breakaway_N = mkN "breakaway" "breakaways" ; -- compound way_N ;
-lin walkaway_N = mkN "walkaway" "walkaways" ; -- compound way_N ;
-lin runaway_N = mkN "runaway" "runaways" ; -- compound way_N ;
-lin caraway_N = mkN "caraway" "caraways" ; -- compound way_N ;
-lin tearaway_N = mkN "tearaway" "tearaways" ; -- compound way_N ;
-lin getaway_N = mkN "getaway" "getaways" ; -- compound way_N ;
-lin straightaway_N = mkN "straightaway" "straightaways" ; -- compound way_N ;
-lin castaway_N = mkN "castaway" "castaways" ; -- compound way_N ;
-lin cutaway_N = mkN "cutaway" "cutaways" ; -- compound way_N ;
-lin throwaway_N = mkN "throwaway" "throwaways" ; -- compound way_N ;
-lin stowaway_N = mkN "stowaway" "stowaways" ; -- compound way_N ;
-lin subway_N = mkN "subway" "subways" ; -- compound way_N ;
-lin headway_N = mkN "headway" "headways" ; -- compound way_N ;
-lin roadway_N = mkN "roadway" "roadways" ; -- compound way_N ;
-lin speedway_N = mkN "speedway" "speedways" ; -- compound way_N ;
-lin midway_N = mkN "midway" "midways" ; -- compound way_N ;
-lin raceway_N = mkN "raceway" "raceways" ; -- compound way_N ;
-lin tideway_N = mkN "tideway" "tideways" ; -- compound way_N ;
-lin leeway_N = mkN "leeway" "leeways" ; -- compound way_N ;
-lin freeway_N = mkN "freeway" "freeways" ; -- compound way_N ;
-lin carriageway_N = mkN "carriageway" "carriageways" ; -- compound way_N ;
-lin steerageway_N = mkN "steerageway" "steerageways" ; -- compound way_N ;
-lin passageway_N = mkN "passageway" "passageways" ; -- compound way_N ;
-lin ropeway_N = mkN "ropeway" "ropeways" ; -- compound way_N ;
-lin causeway_N = mkN "causeway" "causeways" ; -- compound way_N ;
-lin gateway_N = mkN "gateway" "gateways" ; -- compound way_N ;
-lin driveway_N = mkN "driveway" "driveways" ; -- compound way_N ;
-lin gangway_N = mkN "gangway" "gangways" ; -- compound way_N ;
-lin archway_N = mkN "archway" "archways" ; -- compound way_N ;
-lin hatchway_N = mkN "hatchway" "hatchways" ; -- compound way_N ;
-lin highway_N = mkN "highway" "highways" ; -- compound way_N ;
-lin superhighway_N = mkN "superhighway" "superhighways" ; -- compound way_N ;
-lin throughway_N = mkN "throughway" "throughways" ; -- compound way_N ;
-lin pathway_N = mkN "pathway" "pathways" ; -- compound way_N ;
-lin taxiway_N = mkN "taxiway" "taxiways" ; -- compound way_N ;
-lin railway_N = mkN "railway" "railways" ; -- compound way_N ;
-lin 'cable-railway_N' = mkN "cable-railway" "cable-railways" ; -- compound way_N ;
-lin 'rack-railway_N' = mkN "rack-railway" "rack-railways" ; -- compound way_N ;
-lin hallway_N = mkN "hallway" "hallways" ; -- compound way_N ;
-lin spillway_N = mkN "spillway" "spillways" ; -- compound way_N ;
-lin tramway_N = mkN "tramway" "tramways" ; -- compound way_N ;
-lin companionway_N = mkN "companionway" "companionways" ; -- compound way_N ;
-lin runway_N = mkN "runway" "runways" ; -- compound way_N ;
-lin mulloway_N = mkN "mulloway" "mulloways" ; -- compound way_N ;
-lin shipway_N = mkN "shipway" "shipways" ; -- compound way_N ;
-lin slipway_N = mkN "slipway" "slipways" ; -- compound way_N ;
-lin clearway_N = mkN "clearway" "clearways" ; -- compound way_N ;
-lin waterway_N = mkN "waterway" "waterways" ; -- compound way_N ;
-lin airway_N = mkN "airway" "airways" ; -- compound way_N ;
-lin fairway_N = mkN "fairway" "fairways" ; -- compound way_N ;
-lin stairway_N = mkN "stairway" "stairways" ; -- compound way_N ;
-lin doorway_N = mkN "doorway" "doorways" ; -- compound way_N ;
-lin motorway_N = mkN "motorway" "motorways" ; -- compound way_N ;
-lin sway_N = mkN "sway" "sways" ; -- notcompound way_N ;
-lin expressway_N = mkN "expressway" "expressways" ; -- compound way_N ;
-lin beltway_N = mkN "beltway" "beltways" ; -- compound way_N ;
-lin byway_N = mkN "byway" "byways" ; -- compound way_N ;
-lin alleyway_N = mkN "alleyway" "alleyways" ; -- compound way_N ;
-lin baby_N = mkN "baby" "babies" ;
-lin 'war-baby_N' = mkN "war-baby" "war-babies" ; -- compound baby_N ;
-lin crybaby_N = mkN "crybaby" "crybabies" ; -- compound baby_N ;
-lin wallaby_N = mkN "wallaby" "wallabies" ;
-lin lullaby_N = mkN "lullaby" "lullabies" ;
-lin sassaby_N = mkN "sassaby" "sassabies" ;
-lin cabby_N = mkN "cabby" "cabbies" ;
-lin tabby_N = mkN "tabby" "tabbies" ;
-lin bobby_N = mkN "bobby" "bobbies" ;
-lin hobby_N = mkN "hobby" "hobbies" ;
-lin lobby_N = mkN "lobby" "lobbies" ;
-lin cubby_N = mkN "cubby" "cubbies" ;
-lin hubby_N = mkN "hubby" "hubbies" ;
-lin grubby_N = mkN "grubby" "grubbies" ;
-lin rugby_N = mkN "rugby" "rugbies" ;
-lin trilby_N = mkN "trilby" "trilbies" ;
-lin 'namby-pamby_N' = mkN "namby-pamby" "namby-pambies" ;
-lin goby_N = mkN "goby" "gobies" ;
-lin booby_N = mkN "booby" "boobies" ;
-lin toby_N = mkN "toby" "tobies" ;
-lin derby_N = mkN "derby" "derbies" ;
-lin passerby_N = mkN "passerby" "passerbies" ;
-lin busby_N = mkN "busby" "busbies" ;
-lin ruby_N = mkN "ruby" "rubies" ;
-lin standby_N = mkN "standby" "standbys" ;
-lin layby_N = mkN "layby" "laybys" ;
-lin abbacy_N = mkN "abbacy" "abbacies" ;
-lin celibacy_N = mkN "celibacy" "celibacies" ;
-lin efficacy_N = mkN "efficacy" "efficacies" ;
-lin inefficacy_N = mkN "inefficacy" "inefficacies" ; -- compound efficacy_N ;
-lin delicacy_N = mkN "delicacy" "delicacies" ;
-lin indelicacy_N = mkN "indelicacy" "indelicacies" ; -- compound delicacy_N ;
-lin intricacy_N = mkN "intricacy" "intricacies" ;
-lin advocacy_N = mkN "advocacy" "advocacies" ;
-lin candidacy_N = mkN "candidacy" "candidacies" ;
-lin legacy_N = mkN "legacy" "legacies" ;
-lin delegacy_N = mkN "delegacy" "delegacies" ; -- compound legacy_N ;
-lin profligacy_N = mkN "profligacy" "profligacies" ;
-lin mediacy_N = mkN "mediacy" "mediacies" ;
-lin immediacy_N = mkN "immediacy" "immediacies" ; -- compound mediacy_N ;
-lin prelacy_N = mkN "prelacy" "prelacies" ;
-lin fallacy_N = mkN "fallacy" "fallacies" ;
-lin supremacy_N = mkN "supremacy" "supremacies" ;
-lin primacy_N = mkN "primacy" "primacies" ;
-lin legitimacy_N = mkN "legitimacy" "legitimacies" ;
-lin illegitimacy_N = mkN "illegitimacy" "illegitimacies" ; -- compound legitimacy_N ;
-lin ultimacy_N = mkN "ultimacy" "ultimacies" ;
-lin intimacy_N = mkN "intimacy" "intimacies" ;
-lin diplomacy_N = mkN "diplomacy" "diplomacies" ;
-lin dichromacy_N = mkN "dichromacy" "dichromacies" ;
-lin monochromacy_N = mkN "monochromacy" "monochromacies" ;
-lin pharmacy_N = mkN "pharmacy" "pharmacies" ;
-lin contumacy_N = mkN "contumacy" "contumacies" ;
-lin effeminacy_N = mkN "effeminacy" "effeminacies" ;
-lin indeterminacy_N = mkN "indeterminacy" "indeterminacies" ;
-lin obstinacy_N = mkN "obstinacy" "obstinacies" ;
-lin lunacy_N = mkN "lunacy" "lunacies" ;
-lin papacy_N = mkN "papacy" "papacies" ;
-lin episcopacy_N = mkN "episcopacy" "episcopacies" ;
-lin mobocracy_N = mkN "mobocracy" "mobocracies" ;
-lin gynecocracy_N = mkN "gynecocracy" "gynecocracies" ;
-lin theocracy_N = mkN "theocracy" "theocracies" ;
-lin adhocracy_N = mkN "adhocracy" "adhocracies" ;
-lin democracy_N = mkN "democracy" "democracies" ;
-lin technocracy_N = mkN "technocracy" "technocracies" ;
-lin hierocracy_N = mkN "hierocracy" "hierocracies" ;
-lin meritocracy_N = mkN "meritocracy" "meritocracies" ;
-lin gerontocracy_N = mkN "gerontocracy" "gerontocracies" ;
-lin aristocracy_N = mkN "aristocracy" "aristocracies" ;
-lin autocracy_N = mkN "autocracy" "autocracies" ;
-lin plutocracy_N = mkN "plutocracy" "plutocracies" ;
-lin bureaucracy_N = mkN "bureaucracy" "bureaucracies" ;
-lin confederacy_N = mkN "confederacy" "confederacies" ;
-lin numeracy_N = mkN "numeracy" "numeracies" ;
-lin degeneracy_N = mkN "degeneracy" "degeneracies" ;
-lin literacy_N = mkN "literacy" "literacies" ;
-lin illiteracy_N = mkN "illiteracy" "illiteracies" ; -- compound literacy_N ;
-lin piracy_N = mkN "piracy" "piracies" ;
-lin biopiracy_N = mkN "biopiracy" "biopiracies" ; -- compound piracy_N ;
-lin conspiracy_N = mkN "conspiracy" "conspiracies" ; -- compound piracy_N ;
-lin magistracy_N = mkN "magistracy" "magistracies" ;
-lin curacy_N = mkN "curacy" "curacies" ;
-lin accuracy_N = mkN "accuracy" "accuracies" ; -- compound curacy_N ;
-lin inaccuracy_N = mkN "inaccuracy" "inaccuracies" ; -- compound curacy_N ;
-lin obduracy_N = mkN "obduracy" "obduracies" ;
-lin intestacy_N = mkN "intestacy" "intestacies" ;
-lin adequacy_N = mkN "adequacy" "adequacies" ;
-lin inadequacy_N = mkN "inadequacy" "inadequacies" ; -- compound adequacy_N ;
-lin privacy_N = mkN "privacy" "privacies" ;
-lin baccy_N = mkN "baccy" "baccies" ;
-lin prophecy_N = mkN "prophecy" "prophecies" ;
-lin secrecy_N = mkN "secrecy" "secrecies" ;
-lin theodicy_N = mkN "theodicy" "theodicies" ;
-lin policy_N = mkN "policy" "policies" ;
-lin normalcy_N = mkN "normalcy" "normalcies" ;
-lin vacancy_N = mkN "vacancy" "vacancies" ;
-lin ascendancy_N = mkN "ascendancy" "ascendancies" ;
-lin redundancy_N = mkN "redundancy" "redundancies" ;
-lin verdancy_N = mkN "verdancy" "verdancies" ;
-lin fancy_N = mkN "fancy" "fancies" ;
-lin infancy_N = mkN "infancy" "infancies" ; -- compound fancy_N ;
-lin trenchancy_N = mkN "trenchancy" "trenchancies" ;
-lin sycophancy_N = mkN "sycophancy" "sycophancies" ;
-lin brilliancy_N = mkN "brilliancy" "brilliancies" ;
-lin pliancy_N = mkN "pliancy" "pliancies" ;
-lin arithmancy_N = mkN "arithmancy" "arithmancies" ;
-lin geomancy_N = mkN "geomancy" "geomancies" ;
-lin lithomancy_N = mkN "lithomancy" "lithomancies" ;
-lin onomancy_N = mkN "onomancy" "onomancies" ;
-lin necromancy_N = mkN "necromancy" "necromancies" ;
-lin hydromancy_N = mkN "hydromancy" "hydromancies" ;
-lin oneiromancy_N = mkN "oneiromancy" "oneiromancies" ;
-lin pyromancy_N = mkN "pyromancy" "pyromancies" ;
-lin dormancy_N = mkN "dormancy" "dormancies" ;
-lin tenancy_N = mkN "tenancy" "tenancies" ;
-lin lieutenancy_N = mkN "lieutenancy" "lieutenancies" ; -- compound tenancy_N ;
-lin stagnancy_N = mkN "stagnancy" "stagnancies" ;
-lin pregnancy_N = mkN "pregnancy" "pregnancies" ;
-lin malignancy_N = mkN "malignancy" "malignancies" ;
-lin poignancy_N = mkN "poignancy" "poignancies" ;
-lin discrepancy_N = mkN "discrepancy" "discrepancies" ;
-lin flippancy_N = mkN "flippancy" "flippancies" ;
-lin occupancy_N = mkN "occupancy" "occupancies" ;
-lin preoccupancy_N = mkN "preoccupancy" "preoccupancies" ; -- compound occupancy_N ;
-lin vagrancy_N = mkN "vagrancy" "vagrancies" ;
-lin errancy_N = mkN "errancy" "errancies" ;
-lin inerrancy_N = mkN "inerrancy" "inerrancies" ; -- compound errancy_N ;
-lin recalcitrancy_N = mkN "recalcitrancy" "recalcitrancies" ;
-lin recusancy_N = mkN "recusancy" "recusancies" ;
-lin blatancy_N = mkN "blatancy" "blatancies" ;
-lin expectancy_N = mkN "expectancy" "expectancies" ;
-lin inhabitancy_N = mkN "inhabitancy" "inhabitancies" ;
-lin oscitancy_N = mkN "oscitancy" "oscitancies" ;
-lin militancy_N = mkN "militancy" "militancies" ;
-lin hesitancy_N = mkN "hesitancy" "hesitancies" ;
-lin consultancy_N = mkN "consultancy" "consultancies" ;
-lin accountancy_N = mkN "accountancy" "accountancies" ;
-lin constancy_N = mkN "constancy" "constancies" ;
-lin inconstancy_N = mkN "inconstancy" "inconstancies" ; -- compound constancy_N ;
-lin piquancy_N = mkN "piquancy" "piquancies" ;
-lin truancy_N = mkN "truancy" "truancies" ;
-lin relevancy_N = mkN "relevancy" "relevancies" ;
-lin irrelevancy_N = mkN "irrelevancy" "irrelevancies" ; -- compound relevancy_N ;
-lin conservancy_N = mkN "conservancy" "conservancies" ;
-lin buoyancy_N = mkN "buoyancy" "buoyancies" ;
-lin lambency_N = mkN "lambency" "lambencies" ;
-lin incumbency_N = mkN "incumbency" "incumbencies" ;
-lin absorbency_N = mkN "absorbency" "absorbencies" ;
-lin nonabsorbency_N = mkN "nonabsorbency" "nonabsorbencies" ; -- compound absorbency_N ;
-lin adjacency_N = mkN "adjacency" "adjacencies" ;
-lin complacency_N = mkN "complacency" "complacencies" ;
-lin 'self-complacency_N' = mkN "self-complacency" "self-complacencies" ; -- compound complacency_N ;
-lin decency_N = mkN "decency" "decencies" ;
-lin indecency_N = mkN "indecency" "indecencies" ; -- compound decency_N ;
-lin recency_N = mkN "recency" "recencies" ;
-lin innocency_N = mkN "innocency" "innocencies" ;
-lin translucency_N = mkN "translucency" "translucencies" ;
-lin residency_N = mkN "residency" "residencies" ;
-lin presidency_N = mkN "presidency" "presidencies" ; -- notcompound residency_N ;
-lin ascendency_N = mkN "ascendency" "ascendencies" ;
-lin transcendency_N = mkN "transcendency" "transcendencies" ;
-lin resplendency_N = mkN "resplendency" "resplendencies" ;
-lin dependency_N = mkN "dependency" "dependencies" ;
-lin tendency_N = mkN "tendency" "tendencies" ;
-lin despondency_N = mkN "despondency" "despondencies" ;
-lin agency_N = mkN "agency" "agencies" ;
-lin 'press-agency_N' = mkN "press-agency" "press-agencies" ; -- compound agency_N ;
-lin regency_N = mkN "regency" "regencies" ;
-lin intransigency_N = mkN "intransigency" "intransigencies" ;
-lin exigency_N = mkN "exigency" "exigencies" ;
-lin plangency_N = mkN "plangency" "plangencies" ;
-lin tangency_N = mkN "tangency" "tangencies" ;
-lin stringency_N = mkN "stringency" "stringencies" ;
-lin astringency_N = mkN "astringency" "astringencies" ; -- notcompound stringency_N ;
-lin contingency_N = mkN "contingency" "contingencies" ;
-lin pungency_N = mkN "pungency" "pungencies" ;
-lin cogency_N = mkN "cogency" "cogencies" ;
-lin emergency_N = mkN "emergency" "emergencies" ;
-lin detergency_N = mkN "detergency" "detergencies" ;
-lin divergency_N = mkN "divergency" "divergencies" ;
-lin urgency_N = mkN "urgency" "urgencies" ;
-lin insurgency_N = mkN "insurgency" "insurgencies" ; -- compound urgency_N ;
-lin deficiency_N = mkN "deficiency" "deficiencies" ;
-lin immunodeficiency_N = mkN "immunodeficiency" "immunodeficiencies" ; -- compound deficiency_N ;
-lin efficiency_N = mkN "efficiency" "efficiencies" ;
-lin inefficiency_N = mkN "inefficiency" "inefficiencies" ; -- compound efficiency_N ;
-lin sufficiency_N = mkN "sufficiency" "sufficiencies" ;
-lin 'self-sufficiency_N' = mkN "self-sufficiency" "self-sufficiencies" ; -- compound sufficiency_N ;
-lin insufficiency_N = mkN "insufficiency" "insufficiencies" ; -- compound sufficiency_N ;
-lin proficiency_N = mkN "proficiency" "proficiencies" ;
-lin expediency_N = mkN "expediency" "expediencies" ;
-lin inexpediency_N = mkN "inexpediency" "inexpediencies" ; -- compound expediency_N ;
-lin resiliency_N = mkN "resiliency" "resiliencies" ;
-lin leniency_N = mkN "leniency" "leniencies" ;
-lin incipiency_N = mkN "incipiency" "incipiencies" ;
-lin pruriency_N = mkN "pruriency" "pruriencies" ;
-lin parturiency_N = mkN "parturiency" "parturiencies" ;
-lin transiency_N = mkN "transiency" "transiencies" ;
-lin valency_N = mkN "valency" "valencies" ;
-lin excellency_N = mkN "excellency" "excellencies" ;
-lin truculency_N = mkN "truculency" "truculencies" ;
-lin clemency_N = mkN "clemency" "clemencies" ;
-lin inclemency_N = mkN "inclemency" "inclemencies" ; -- compound clemency_N ;
-lin permanency_N = mkN "permanency" "permanencies" ;
-lin transparency_N = mkN "transparency" "transparencies" ;
-lin belligerency_N = mkN "belligerency" "belligerencies" ;
-lin coherency_N = mkN "coherency" "coherencies" ;
-lin currency_N = mkN "currency" "currencies" ;
-lin latency_N = mkN "latency" "latencies" ;
-lin patency_N = mkN "patency" "patencies" ;
-lin incompetency_N = mkN "incompetency" "incompetencies" ;
-lin potency_N = mkN "potency" "potencies" ;
-lin totipotency_N = mkN "totipotency" "totipotencies" ; -- compound potency_N ;
-lin consistency_N = mkN "consistency" "consistencies" ;
-lin inconsistency_N = mkN "inconsistency" "inconsistencies" ; -- compound consistency_N ;
-lin fluency_N = mkN "fluency" "fluencies" ;
-lin disfluency_N = mkN "disfluency" "disfluencies" ; -- compound fluency_N ;
-lin frequency_N = mkN "frequency" "frequencies" ;
-lin 'high-frequency_N' = mkN "high-frequency" "high-frequencies" ; -- compound frequency_N ;
-lin infrequency_N = mkN "infrequency" "infrequencies" ; -- compound frequency_N ;
-lin delinquency_N = mkN "delinquency" "delinquencies" ;
-lin constituency_N = mkN "constituency" "constituencies" ;
-lin solvency_N = mkN "solvency" "solvencies" ;
-lin insolvency_N = mkN "insolvency" "insolvencies" ; -- compound solvency_N ;
-lin fervency_N = mkN "fervency" "fervencies" ;
-lin chaplaincy_N = mkN "chaplaincy" "chaplaincies" ;
-lin chieftaincy_N = mkN "chieftaincy" "chieftaincies" ;
-lin idiocy_N = mkN "idiocy" "idiocies" ;
-lin mercy_N = mkN "mercy" "mercies" ;
-lin baronetcy_N = mkN "baronetcy" "baronetcies" ;
-lin viscountcy_N = mkN "viscountcy" "viscountcies" ;
-lin paramountcy_N = mkN "paramountcy" "paramountcies" ;
-lin bankruptcy_N = mkN "bankruptcy" "bankruptcies" ;
-lin ready_N = mkN "ready" "readies" ;
-lin makeready_N = mkN "makeready" "makereadies" ; -- compound ready_N ;
-lin steady_N = mkN "steady" "steadies" ;
-lin lady_N = mkN "lady" "ladies" ;
-lin malady_N = mkN "malady" "maladies" ; -- compound lady_N ;
-lin landlady_N = mkN "landlady" "landladies" ; -- compound lady_N ;
-lin milady_N = mkN "milady" "miladies" ; -- compound lady_N ;
-lin charlady_N = mkN "charlady" "charladies" ; -- compound lady_N ;
-lin toady_N = mkN "toady" "toadies" ;
-lin caddy_N = mkN "caddy" "caddies" ;
-lin 'tea-caddy_N' = mkN "tea-caddy" "tea-caddies" ; -- compound caddy_N ;
-lin daddy_N = mkN "daddy" "daddies" ;
-lin 'sugar-daddy_N' = mkN "sugar-daddy" "sugar-daddies" ; -- compound daddy_N ;
-lin paddy_N = mkN "paddy" "paddies" ;
-lin eddy_N = mkN "eddy" "eddies" ;
-lin teddy_N = mkN "teddy" "teddies" ; -- notcompound eddy_N ;
-lin kiddy_N = mkN "kiddy" "kiddies" ;
-lin middy_N = mkN "middy" "middies" ;
-lin shoddy_N = mkN "shoddy" "shoddies" ;
-lin toddy_N = mkN "toddy" "toddies" ;
-lin buddy_N = mkN "buddy" "buddies" ;
-lin cuddy_N = mkN "cuddy" "cuddies" ;
-lin 'fuddy-duddy_N' = mkN "fuddy-duddy" "fuddy-duddies" ;
-lin needy_N = mkN "needy" "needies" ;
-lin tragedy_N = mkN "tragedy" "tragedies" ;
-lin remedy_N = mkN "remedy" "remedies" ;
-lin comedy_N = mkN "comedy" "comedies" ;
-lin tragicomedy_N = mkN "tragicomedy" "tragicomedies" ; -- compound comedy_N ;
-lin seriocomedy_N = mkN "seriocomedy" "seriocomedies" ; -- compound comedy_N ;
-lin perfidy_N = mkN "perfidy" "perfidies" ;
-lin cryptorchidy_N = mkN "cryptorchidy" "cryptorchidies" ;
-lin haploidy_N = mkN "haploidy" "haploidies" ;
-lin diploidy_N = mkN "diploidy" "diploidies" ;
-lin amphidiploidy_N = mkN "amphidiploidy" "amphidiploidies" ; -- compound diploidy_N ;
-lin heteroploidy_N = mkN "heteroploidy" "heteroploidies" ;
-lin aneuploidy_N = mkN "aneuploidy" "aneuploidies" ;
-lin polyploidy_N = mkN "polyploidy" "polyploidies" ;
-lin subsidy_N = mkN "subsidy" "subsidies" ;
-lin tidy_N = mkN "tidy" "tidies" ;
-lin candy_N = mkN "candy" "candies" ;
-lin 'sugar-candy_N' = mkN "sugar-candy" "sugar-candies" ; -- compound candy_N ;
-lin dandy_N = mkN "dandy" "dandies" ;
-lin jimdandy_N = mkN "jimdandy" "jimdandies" ; -- compound dandy_N ;
-lin organdy_N = mkN "organdy" "organdies" ;
-lin shandy_N = mkN "shandy" "shandies" ;
-lin brandy_N = mkN "brandy" "brandies" ;
-lin shindy_N = mkN "shindy" "shindies" ;
-lin lindy_N = mkN "lindy" "lindies" ;
-lin burgundy_N = mkN "burgundy" "burgundies" ;
-lin body_N = mkN "body" "bodies" ;
-lin antibody_N = mkN "antibody" "antibodies" ; -- compound body_N ;
-lin isoantibody_N = mkN "isoantibody" "isoantibodies" ; -- compound body_N ;
-lin autoantibody_N = mkN "autoantibody" "autoantibodies" ; -- compound body_N ;
-lin dogsbody_N = mkN "dogsbody" "dogsbodies" ; -- compound body_N ;
-lin busybody_N = mkN "busybody" "busybodies" ; -- compound body_N ;
-lin melody_N = mkN "melody" "melodies" ;
-lin psalmody_N = mkN "psalmody" "psalmodies" ;
-lin threnody_N = mkN "threnody" "threnodies" ;
-lin goody_N = mkN "goody" "goodies" ;
-lin 'goody-goody_N' = mkN "goody-goody" "goody-goodies" ; -- compound goody_N ;
-lin chiropody_N = mkN "chiropody" "chiropodies" ;
-lin polypody_N = mkN "polypody" "polypodies" ;
-lin parody_N = mkN "parody" "parodies" ;
-lin prosody_N = mkN "prosody" "prosodies" ;
-lin rhapsody_N = mkN "rhapsody" "rhapsodies" ;
-lin tody_N = mkN "tody" "todies" ;
-lin custody_N = mkN "custody" "custodies" ; -- compound tody_N ;
-lin jeopardy_N = mkN "jeopardy" "jeopardies" ;
-lin bastardy_N = mkN "bastardy" "bastardies" ;
-lin 'hurdy-gurdy_N' = mkN "hurdy-gurdy" "hurdy-gurdies" ;
-lin gaudy_N = mkN "gaudy" "gaudies" ;
-lin study_N = mkN "study" "studies" ;
-lin 'work-study_N' = mkN "work-study" "work-studies" ; -- compound study_N ;
-lin understudy_N = mkN "understudy" "understudies" ; -- compound study_N ;
-lin bawdy_N = mkN "bawdy" "bawdies" ;
-lin dowdy_N = mkN "dowdy" "dowdies" ;
-lin rowdy_N = mkN "rowdy" "rowdies" ;
-lin bey_N = mkN "bey" "beys" ;
-lin mangabey_N = mkN "mangabey" "mangabeys" ; -- compound bey_N ;
-lin abbey_N = mkN "abbey" "abbeys" ; -- compound bey_N ;
-lin wincey_N = mkN "wincey" "winceys" ;
-lin bogey_N = mkN "bogey" "bogeys" ;
-lin fogey_N = mkN "fogey" "fogeys" ;
-lin whey_N = mkN "whey" "wheys" ;
-lin key_N = mkN "key" "keys" ;
-lin 'watch-key_N' = mkN "watch-key" "watch-keys" ; -- compound key_N ;
-lin 'ash-key_N' = mkN "ash-key" "ash-keys" ; -- compound key_N ;
-lin 'master-key_N' = mkN "master-key" "master-keys" ; -- compound key_N ;
-lin lackey_N = mkN "lackey" "lackeys" ; -- compound key_N ;
-lin dickey_N = mkN "dickey" "dickeys" ; -- compound key_N ;
-lin hickey_N = mkN "hickey" "hickeys" ; -- compound key_N ;
-lin rickey_N = mkN "rickey" "rickeys" ; -- compound key_N ;
-lin hockey_N = mkN "hockey" "hockeys" ; -- compound key_N ;
-lin jockey_N = mkN "jockey" "jockeys" ; -- compound key_N ;
-lin latchkey_N = mkN "latchkey" "latchkeys" ; -- compound key_N ;
-lin donkey_N = mkN "donkey" "donkeys" ; -- compound key_N ;
-lin monkey_N = mkN "monkey" "monkeys" ; -- compound key_N ;
-lin turnkey_N = mkN "turnkey" "turnkeys" ; -- compound key_N ;
-lin flunkey_N = mkN "flunkey" "flunkeys" ; -- compound key_N ;
-lin chokey_N = mkN "chokey" "chokeys" ; -- compound key_N ;
-lin darkey_N = mkN "darkey" "darkeys" ; -- compound key_N ;
-lin Turkey_N = mkN "Turkey" "Turkeys" ; -- compound key_N ;
-lin whiskey_N = mkN "whiskey" "whiskeys" ; -- compound key_N ;
-lin passkey_N = mkN "passkey" "passkeys" ; -- compound key_N ;
-lin ley_N = mkN "ley" "leys" ;
-lin medley_N = mkN "medley" "medleys" ; -- compound ley_N ;
-lin ridley_N = mkN "ridley" "ridleys" ; -- compound ley_N ;
-lin langley_N = mkN "langley" "langleys" ; -- compound ley_N ;
-lin bailey_N = mkN "bailey" "baileys" ; -- compound ley_N ;
-lin smiley_N = mkN "smiley" "smileys" ; -- compound ley_N ;
-lin alley_N = mkN "alley" "alleys" ; -- compound ley_N ;
-lin 'tin pan alley_N' = mkN "tin pan alley" "tin pan alleys" ; -- compound ley_N ;
-lin galley_N = mkN "galley" "galleys" ; -- compound ley_N ;
-lin tomalley_N = mkN "tomalley" "tomalleys" ; -- compound ley_N ;
-lin valley_N = mkN "valley" "valleys" ; -- compound ley_N ;
-lin 'rift-valley_N' = mkN "rift-valley" "rift-valleys" ; -- compound ley_N ;
-lin trolley_N = mkN "trolley" "trolleys" ; -- compound ley_N ;
-lin 'tea-trolley_N' = mkN "tea-trolley" "tea-trolleys" ; -- compound ley_N ;
-lin volley_N = mkN "volley" "volleys" ; -- compound ley_N ;
-lin 'half-volley_N' = mkN "half-volley" "half-volleys" ; -- compound ley_N ;
-lin pulley_N = mkN "pulley" "pulleys" ; -- compound ley_N ;
-lin barley_N = mkN "barley" "barleys" ; -- compound ley_N ;
-lin 'pearl-barley_N' = mkN "pearl-barley" "pearl-barleys" ; -- compound ley_N ;
-lin parley_N = mkN "parley" "parleys" ; -- compound ley_N ;
-lin paisley_N = mkN "paisley" "paisleys" ; -- compound ley_N ;
-lin parsley_N = mkN "parsley" "parsleys" ; -- compound ley_N ;
-lin motley_N = mkN "motley" "motleys" ; -- compound ley_N ;
-lin doyley_N = mkN "doyley" "doyleys" ; -- compound ley_N ;
-lin mamey_N = mkN "mamey" "mameys" ;
-lin limey_N = mkN "limey" "limeys" ;
-lin garganey_N = mkN "garganey" "garganeys" ;
-lin kidney_N = mkN "kidney" "kidneys" ;
-lin hackney_N = mkN "hackney" "hackneys" ;
-lin cockney_N = mkN "cockney" "cockneys" ;
-lin chimney_N = mkN "chimney" "chimneys" ;
-lin spinney_N = mkN "spinney" "spinneys" ;
-lin coney_N = mkN "coney" "coneys" ;
-lin honey_N = mkN "honey" "honeys" ;
-lin phoney_N = mkN "phoney" "phoneys" ; -- notcompound honey_N ;
-lin baloney_N = mkN "baloney" "baloneys" ;
-lin boloney_N = mkN "boloney" "boloneys" ;
-lin money_N = mkN "money" "moneys" ;
-lin 'blood-money_N' = mkN "blood-money" "blood-moneys" ; -- compound money_N ;
-lin 'entrance-money_N' = mkN "entrance-money" "entrance-moneys" ; -- compound money_N ;
-lin 'prize-money_N' = mkN "prize-money" "prize-moneys" ; -- compound money_N ;
-lin 'hush-money_N' = mkN "hush-money" "hush-moneys" ; -- compound money_N ;
-lin 'pin-money_N' = mkN "pin-money" "pin-moneys" ; -- compound money_N ;
-lin 'pocket-money_N' = mkN "pocket-money" "pocket-moneys" ; -- compound money_N ;
-lin 'earnest-money_N' = mkN "earnest-money" "earnest-moneys" ; -- compound money_N ;
-lin blarney_N = mkN "blarney" "blarneys" ;
-lin attorney_N = mkN "attorney" "attorneys" ;
-lin gurney_N = mkN "gurney" "gurneys" ;
-lin journey_N = mkN "journey" "journeys" ;
-lin tourney_N = mkN "tourney" "tourneys" ;
-lin jitney_N = mkN "jitney" "jitneys" ;
-lin chutney_N = mkN "chutney" "chutneys" ;
-lin hooey_N = mkN "hooey" "hooeys" ;
-lin drey_N = mkN "drey" "dreys" ;
-lin palfrey_N = mkN "palfrey" "palfreys" ;
-lin comfrey_N = mkN "comfrey" "comfreys" ;
-lin grey_N = mkN "grey" "greys" ;
-lin 'dapple-grey_N' = mkN "dapple-grey" "dapple-greys" ; -- compound grey_N ;
-lin 'iron-grey_N' = mkN "iron-grey" "iron-greys" ; -- compound grey_N ;
-lin orphrey_N = mkN "orphrey" "orphreys" ;
-lin storey_N = mkN "storey" "storeys" ;
-lin lamprey_N = mkN "lamprey" "lampreys" ;
-lin osprey_N = mkN "osprey" "ospreys" ;
-lin surrey_N = mkN "surrey" "surreys" ;
-lin trey_N = mkN "trey" "treys" ;
-lin 'linsey-woolsey_N' = mkN "linsey-woolsey" "linsey-woolseys" ;
-lin whimsey_N = mkN "whimsey" "whimseys" ;
-lin malmsey_N = mkN "malmsey" "malmseys" ;
-lin jersey_N = mkN "jersey" "jerseys" ;
-lin odyssey_N = mkN "odyssey" "odysseys" ;
-lin curtsey_N = mkN "curtsey" "curtseys" ;
-lin whitey_N = mkN "whitey" "whiteys" ;
-lin chantey_N = mkN "chantey" "chanteys" ;
-lin maguey_N = mkN "maguey" "magueys" ;
-lin 'chop suey_N' = mkN "chop suey" "chop sueys" ;
-lin peavey_N = mkN "peavey" "peaveys" ;
-lin slavey_N = mkN "slavey" "slaveys" ;
-lin covey_N = mkN "covey" "coveys" ;
-lin survey_N = mkN "survey" "surveys" ;
-lin resurvey_N = mkN "resurvey" "resurveys" ; -- compound survey_N ;
-lin taffy_N = mkN "taffy" "taffies" ;
-lin jiffy_N = mkN "jiffy" "jiffies" ;
-lin salsify_N = mkN "salsify" "salsifies" ;
-lin mycophagy_N = mkN "mycophagy" "mycophagies" ;
-lin geophagy_N = mkN "geophagy" "geophagies" ;
-lin anthropophagy_N = mkN "anthropophagy" "anthropophagies" ;
-lin coprophagy_N = mkN "coprophagy" "coprophagies" ;
-lin scatophagy_N = mkN "scatophagy" "scatophagies" ;
-lin elegy_N = mkN "elegy" "elegies" ;
-lin strategy_N = mkN "strategy" "strategies" ;
-lin geostrategy_N = mkN "geostrategy" "geostrategies" ; -- compound strategy_N ;
-lin piggy_N = mkN "piggy" "piggies" ;
-lin doggy_N = mkN "doggy" "doggies" ;
-lin buggy_N = mkN "buggy" "buggies" ;
-lin prodigy_N = mkN "prodigy" "prodigies" ;
-lin effigy_N = mkN "effigy" "effigies" ;
-lin bogy_N = mkN "bogy" "bogies" ;
-lin pedagogy_N = mkN "pedagogy" "pedagogies" ;
-lin demagogy_N = mkN "demagogy" "demagogies" ;
-lin genealogy_N = mkN "genealogy" "genealogies" ;
-lin mammalogy_N = mkN "mammalogy" "mammalogies" ;
-lin paleomammalogy_N = mkN "paleomammalogy" "paleomammalogies" ; -- compound mammalogy_N ;
-lin analogy_N = mkN "analogy" "analogies" ;
-lin mineralogy_N = mkN "mineralogy" "mineralogies" ;
-lin tetralogy_N = mkN "tetralogy" "tetralogies" ;
-lin trilogy_N = mkN "trilogy" "trilogies" ;
-lin ology_N = mkN "ology" "ologies" ;
-lin amphibology_N = mkN "amphibology" "amphibologies" ; -- compound ology_N ;
-lin tribology_N = mkN "tribology" "tribologies" ; -- compound ology_N ;
-lin symbology_N = mkN "symbology" "symbologies" ; -- compound ology_N ;
-lin garbology_N = mkN "garbology" "garbologies" ; -- compound ology_N ;
-lin malacology_N = mkN "malacology" "malacologies" ; -- compound ology_N ;
-lin pharmacology_N = mkN "pharmacology" "pharmacologies" ; -- compound ology_N ;
-lin psychopharmacology_N = mkN "psychopharmacology" "psychopharmacologies" ; -- compound ology_N ;
-lin ecology_N = mkN "ecology" "ecologies" ; -- compound ology_N ;
-lin gynaecology_N = mkN "gynaecology" "gynaecologies" ; -- compound ology_N ;
-lin gynecology_N = mkN "gynecology" "gynecologies" ; -- compound ology_N ;
-lin paleoecology_N = mkN "paleoecology" "paleoecologies" ; -- compound ology_N ;
-lin musicology_N = mkN "musicology" "musicologies" ; -- compound ology_N ;
-lin lexicology_N = mkN "lexicology" "lexicologies" ; -- compound ology_N ;
-lin toxicology_N = mkN "toxicology" "toxicologies" ; -- compound ology_N ;
-lin oncology_N = mkN "oncology" "oncologies" ; -- compound ology_N ;
-lin phycology_N = mkN "phycology" "phycologies" ; -- compound ology_N ;
-lin mycology_N = mkN "mycology" "mycologies" ; -- compound ology_N ;
-lin pteridology_N = mkN "pteridology" "pteridologies" ; -- compound ology_N ;
-lin methodology_N = mkN "methodology" "methodologies" ; -- compound ology_N ;
-lin archaeology_N = mkN "archaeology" "archaeologies" ; -- compound ology_N ;
-lin spelaeology_N = mkN "spelaeology" "spelaeologies" ; -- compound ology_N ;
-lin ideology_N = mkN "ideology" "ideologies" ; -- compound ology_N ;
-lin geology_N = mkN "geology" "geologies" ; -- compound ology_N ;
-lin paleogeology_N = mkN "paleogeology" "paleogeologies" ; -- compound ology_N ;
-lin archeology_N = mkN "archeology" "archeologies" ; -- compound ology_N ;
-lin protoarcheology_N = mkN "protoarcheology" "protoarcheologies" ; -- compound ology_N ;
-lin rheology_N = mkN "rheology" "rheologies" ; -- compound ology_N ;
-lin theology_N = mkN "theology" "theologies" ; -- compound ology_N ;
-lin paleology_N = mkN "paleology" "paleologies" ; -- compound ology_N ;
-lin speleology_N = mkN "speleology" "speleologies" ; -- compound ology_N ;
-lin teleology_N = mkN "teleology" "teleologies" ; -- compound ology_N ;
-lin venereology_N = mkN "venereology" "venereologies" ; -- compound ology_N ;
-lin phraseology_N = mkN "phraseology" "phraseologies" ; -- compound ology_N ;
-lin osteology_N = mkN "osteology" "osteologies" ; -- compound ology_N ;
-lin rhinolaryngology_N = mkN "rhinolaryngology" "rhinolaryngologies" ; -- compound ology_N ;
-lin allergology_N = mkN "allergology" "allergologies" ; -- compound ology_N ;
-lin conchology_N = mkN "conchology" "conchologies" ; -- compound ology_N ;
-lin psychology_N = mkN "psychology" "psychologies" ; -- compound ology_N ;
-lin graphology_N = mkN "graphology" "graphologies" ; -- compound ology_N ;
-lin nephology_N = mkN "nephology" "nephologies" ; -- compound ology_N ;
-lin psephology_N = mkN "psephology" "psephologies" ; -- compound ology_N ;
-lin morphology_N = mkN "morphology" "morphologies" ; -- compound ology_N ;
-lin pathology_N = mkN "pathology" "pathologies" ; -- compound ology_N ;
-lin paleopathology_N = mkN "paleopathology" "paleopathologies" ; -- compound ology_N ;
-lin immunopathology_N = mkN "immunopathology" "immunopathologies" ; -- compound ology_N ;
-lin ethology_N = mkN "ethology" "ethologies" ; -- compound ology_N ;
-lin ornithology_N = mkN "ornithology" "ornithologies" ; -- compound ology_N ;
-lin paleornithology_N = mkN "paleornithology" "paleornithologies" ; -- compound ology_N ;
-lin anthology_N = mkN "anthology" "anthologies" ; -- compound ology_N ;
-lin mythology_N = mkN "mythology" "mythologies" ; -- compound ology_N ;
-lin biology_N = mkN "biology" "biologies" ; -- compound ology_N ;
-lin paleobiology_N = mkN "paleobiology" "paleobiologies" ; -- compound ology_N ;
-lin sociobiology_N = mkN "sociobiology" "sociobiologies" ; -- compound ology_N ;
-lin radiobiology_N = mkN "radiobiology" "radiobiologies" ; -- compound ology_N ;
-lin microbiology_N = mkN "microbiology" "microbiologies" ; -- compound ology_N ;
-lin agrobiology_N = mkN "agrobiology" "agrobiologies" ; -- compound ology_N ;
-lin neurobiology_N = mkN "neurobiology" "neurobiologies" ; -- compound ology_N ;
-lin exobiology_N = mkN "exobiology" "exobiologies" ; -- compound ology_N ;
-lin cryobiology_N = mkN "cryobiology" "cryobiologies" ; -- compound ology_N ;
-lin sociology_N = mkN "sociology" "sociologies" ; -- compound ology_N ;
-lin radiology_N = mkN "radiology" "radiologies" ; -- compound ology_N ;
-lin cardiology_N = mkN "cardiology" "cardiologies" ; -- compound ology_N ;
-lin audiology_N = mkN "audiology" "audiologies" ; -- compound ology_N ;
-lin hagiology_N = mkN "hagiology" "hagiologies" ; -- compound ology_N ;
-lin angiology_N = mkN "angiology" "angiologies" ; -- compound ology_N ;
-lin epidemiology_N = mkN "epidemiology" "epidemiologies" ; -- compound ology_N ;
-lin craniology_N = mkN "craniology" "craniologies" ; -- compound ology_N ;
-lin bacteriology_N = mkN "bacteriology" "bacteriologies" ; -- compound ology_N ;
-lin soteriology_N = mkN "soteriology" "soteriologies" ; -- compound ology_N ;
-lin anesthesiology_N = mkN "anesthesiology" "anesthesiologies" ; -- compound ology_N ;
-lin ecclesiology_N = mkN "ecclesiology" "ecclesiologies" ; -- compound ology_N ;
-lin kinesiology_N = mkN "kinesiology" "kinesiologies" ; -- compound ology_N ;
-lin physiology_N = mkN "physiology" "physiologies" ; -- compound ology_N ;
-lin neurophysiology_N = mkN "neurophysiology" "neurophysiologies" ; -- compound ology_N ;
-lin etiology_N = mkN "etiology" "etiologies" ; -- compound ology_N ;
-lin aetiology_N = mkN "aetiology" "aetiologies" ; -- compound ology_N ;
-lin paletiology_N = mkN "paletiology" "paletiologies" ; -- compound ology_N ;
-lin axiology_N = mkN "axiology" "axiologies" ; -- compound ology_N ;
-lin angelology_N = mkN "angelology" "angelologies" ; -- compound ology_N ;
-lin philology_N = mkN "philology" "philologies" ; -- compound ology_N ;
-lin epistemology_N = mkN "epistemology" "epistemologies" ; -- compound ology_N ;
-lin ophthalmology_N = mkN "ophthalmology" "ophthalmologies" ; -- compound ology_N ;
-lin homology_N = mkN "homology" "homologies" ; -- compound ology_N ;
-lin pomology_N = mkN "pomology" "pomologies" ; -- compound ology_N ;
-lin entomology_N = mkN "entomology" "entomologies" ; -- compound ology_N ;
-lin seismology_N = mkN "seismology" "seismologies" ; -- compound ology_N ;
-lin cosmology_N = mkN "cosmology" "cosmologies" ; -- compound ology_N ;
-lin etymology_N = mkN "etymology" "etymologies" ; -- compound ology_N ;
-lin zymology_N = mkN "zymology" "zymologies" ; -- compound ology_N ;
-lin enzymology_N = mkN "enzymology" "enzymologies" ; -- compound ology_N ;
-lin volcanology_N = mkN "volcanology" "volcanologies" ; -- compound ology_N ;
-lin enology_N = mkN "enology" "enologies" ; -- compound ology_N ;
-lin selenology_N = mkN "selenology" "selenologies" ; -- compound ology_N ;
-lin phenomenology_N = mkN "phenomenology" "phenomenologies" ; -- compound ology_N ;
-lin penology_N = mkN "penology" "penologies" ; -- compound ology_N ;
-lin phrenology_N = mkN "phrenology" "phrenologies" ; -- compound ology_N ;
-lin technology_N = mkN "technology" "technologies" ; -- compound ology_N ;
-lin biotechnology_N = mkN "biotechnology" "biotechnologies" ; -- compound ology_N ;
-lin nanotechnology_N = mkN "nanotechnology" "nanotechnologies" ; -- compound ology_N ;
-lin ethnology_N = mkN "ethnology" "ethnologies" ; -- compound ology_N ;
-lin criminology_N = mkN "criminology" "criminologies" ; -- compound ology_N ;
-lin terminology_N = mkN "terminology" "terminologies" ; -- compound ology_N ;
-lin endocrinology_N = mkN "endocrinology" "endocrinologies" ; -- compound ology_N ;
-lin sinology_N = mkN "sinology" "sinologies" ; -- compound ology_N ;
-lin limnology_N = mkN "limnology" "limnologies" ; -- compound ology_N ;
-lin iconology_N = mkN "iconology" "iconologies" ; -- compound ology_N ;
-lin phonology_N = mkN "phonology" "phonologies" ; -- compound ology_N ;
-lin chronology_N = mkN "chronology" "chronologies" ; -- compound ology_N ;
-lin glottochronology_N = mkN "glottochronology" "glottochronologies" ; -- compound ology_N ;
-lin immunology_N = mkN "immunology" "immunologies" ; -- compound ology_N ;
-lin oology_N = mkN "oology" "oologies" ; -- notcompound ology_N ;
-lin zoology_N = mkN "zoology" "zoologies" ; -- compound ology_N ;
-lin paleozoology_N = mkN "paleozoology" "paleozoologies" ; -- compound ology_N ;
-lin protozoology_N = mkN "protozoology" "protozoologies" ; -- compound ology_N ;
-lin apology_N = mkN "apology" "apologies" ; -- compound ology_N ;
-lin escapology_N = mkN "escapology" "escapologies" ; -- compound ology_N ;
-lin anthropology_N = mkN "anthropology" "anthropologies" ; -- compound ology_N ;
-lin paleoanthropology_N = mkN "paleoanthropology" "paleoanthropologies" ; -- compound ology_N ;
-lin topology_N = mkN "topology" "topologies" ; -- compound ology_N ;
-lin typology_N = mkN "typology" "typologies" ; -- compound ology_N ;
-lin necrology_N = mkN "necrology" "necrologies" ; -- compound ology_N ;
-lin paleodendrology_N = mkN "paleodendrology" "paleodendrologies" ; -- compound ology_N ;
-lin hydrology_N = mkN "hydrology" "hydrologies" ; -- compound ology_N ;
-lin aerology_N = mkN "aerology" "aerologies" ; -- compound ology_N ;
-lin numerology_N = mkN "numerology" "numerologies" ; -- compound ology_N ;
-lin serology_N = mkN "serology" "serologies" ; -- compound ology_N ;
-lin heterology_N = mkN "heterology" "heterologies" ; -- compound ology_N ;
-lin gastroenterology_N = mkN "gastroenterology" "gastroenterologies" ; -- compound ology_N ;
-lin lepidopterology_N = mkN "lepidopterology" "lepidopterologies" ; -- compound ology_N ;
-lin agrology_N = mkN "agrology" "agrologies" ; -- compound ology_N ;
-lin nephrology_N = mkN "nephrology" "nephrologies" ; -- compound ology_N ;
-lin virology_N = mkN "virology" "virologies" ; -- compound ology_N ;
-lin orology_N = mkN "orology" "orologies" ; -- compound ology_N ;
-lin meteorology_N = mkN "meteorology" "meteorologies" ; -- compound ology_N ;
-lin horology_N = mkN "horology" "horologies" ; -- compound ology_N ;
-lin metrology_N = mkN "metrology" "metrologies" ; -- compound ology_N ;
-lin petrology_N = mkN "petrology" "petrologies" ; -- compound ology_N ;
-lin astrology_N = mkN "astrology" "astrologies" ; -- compound ology_N ;
-lin urology_N = mkN "urology" "urologies" ; -- compound ology_N ;
-lin neurology_N = mkN "neurology" "neurologies" ; -- compound ology_N ;
-lin futurology_N = mkN "futurology" "futurologies" ; -- compound ology_N ;
-lin misology_N = mkN "misology" "misologies" ; -- compound ology_N ;
-lin parisology_N = mkN "parisology" "parisologies" ; -- compound ology_N ;
-lin nosology_N = mkN "nosology" "nosologies" ; -- compound ology_N ;
-lin posology_N = mkN "posology" "posologies" ; -- compound ology_N ;
-lin scatology_N = mkN "scatology" "scatologies" ; -- compound ology_N ;
-lin eschatology_N = mkN "eschatology" "eschatologies" ; -- compound ology_N ;
-lin hematology_N = mkN "hematology" "hematologies" ; -- compound ology_N ;
-lin climatology_N = mkN "climatology" "climatologies" ; -- compound ology_N ;
-lin paleoclimatology_N = mkN "paleoclimatology" "paleoclimatologies" ; -- compound ology_N ;
-lin bioclimatology_N = mkN "bioclimatology" "bioclimatologies" ; -- compound ology_N ;
-lin primatology_N = mkN "primatology" "primatologies" ; -- compound ology_N ;
-lin stemmatology_N = mkN "stemmatology" "stemmatologies" ; -- compound ology_N ;
-lin dermatology_N = mkN "dermatology" "dermatologies" ; -- compound ology_N ;
-lin traumatology_N = mkN "traumatology" "traumatologies" ; -- compound ology_N ;
-lin rheumatology_N = mkN "rheumatology" "rheumatologies" ; -- compound ology_N ;
-lin thanatology_N = mkN "thanatology" "thanatologies" ; -- compound ology_N ;
-lin perinatology_N = mkN "perinatology" "perinatologies" ; -- compound ology_N ;
-lin neonatology_N = mkN "neonatology" "neonatologies" ; -- compound ology_N ;
-lin teratology_N = mkN "teratology" "teratologies" ; -- compound ology_N ;
-lin dialectology_N = mkN "dialectology" "dialectologies" ; -- compound ology_N ;
-lin proctology_N = mkN "proctology" "proctologies" ; -- compound ology_N ;
-lin fetology_N = mkN "fetology" "fetologies" ; -- compound ology_N ;
-lin cosmetology_N = mkN "cosmetology" "cosmetologies" ; -- compound ology_N ;
-lin herpetology_N = mkN "herpetology" "herpetologies" ; -- compound ology_N ;
-lin ontology_N = mkN "ontology" "ontologies" ; -- compound ology_N ;
-lin palaeontology_N = mkN "palaeontology" "palaeontologies" ; -- compound ology_N ;
-lin paleontology_N = mkN "paleontology" "paleontologies" ; -- compound ology_N ;
-lin micropaleontology_N = mkN "micropaleontology" "micropaleontologies" ; -- compound ology_N ;
-lin gerontology_N = mkN "gerontology" "gerontologies" ; -- compound ology_N ;
-lin otology_N = mkN "otology" "otologies" ; -- compound ology_N ;
-lin protology_N = mkN "protology" "protologies" ; -- compound ology_N ;
-lin histology_N = mkN "histology" "histologies" ; -- compound ology_N ;
-lin tautology_N = mkN "tautology" "tautologies" ; -- compound ology_N ;
-lin cytology_N = mkN "cytology" "cytologies" ; -- compound ology_N ;
-lin reflexology_N = mkN "reflexology" "reflexologies" ; -- compound ology_N ;
-lin mixology_N = mkN "mixology" "mixologies" ; -- compound ology_N ;
-lin doxology_N = mkN "doxology" "doxologies" ; -- compound ology_N ;
-lin ichthyology_N = mkN "ichthyology" "ichthyologies" ; -- compound ology_N ;
-lin myology_N = mkN "myology" "myologies" ; -- compound ology_N ;
-lin embryology_N = mkN "embryology" "embryologies" ; -- compound ology_N ;
-lin eulogy_N = mkN "eulogy" "eulogies" ;
-lin stogy_N = mkN "stogy" "stogies" ;
-lin lethargy_N = mkN "lethargy" "lethargies" ;
-lin clergy_N = mkN "clergy" "clergies" ;
-lin allergy_N = mkN "allergy" "allergies" ;
-lin anergy_N = mkN "anergy" "anergies" ;
-lin energy_N = mkN "energy" "energies" ;
-lin synergy_N = mkN "synergy" "synergies" ;
-lin asynergy_N = mkN "asynergy" "asynergies" ; -- notcompound synergy_N ;
-lin orgy_N = mkN "orgy" "orgies" ;
-lin porgy_N = mkN "porgy" "porgies" ; -- notcompound orgy_N ;
-lin theurgy_N = mkN "theurgy" "theurgies" ;
-lin metallurgy_N = mkN "metallurgy" "metallurgies" ;
-lin dramaturgy_N = mkN "dramaturgy" "dramaturgies" ;
-lin liturgy_N = mkN "liturgy" "liturgies" ;
-lin syzygy_N = mkN "syzygy" "syzygies" ;
-lin logomachy_N = mkN "logomachy" "logomachies" ;
-lin naumachy_N = mkN "naumachy" "naumachies" ;
-lin entelechy_N = mkN "entelechy" "entelechies" ;
-lin squirearchy_N = mkN "squirearchy" "squirearchies" ;
-lin oligarchy_N = mkN "oligarchy" "oligarchies" ;
-lin diarchy_N = mkN "diarchy" "diarchies" ;
-lin matriarchy_N = mkN "matriarchy" "matriarchies" ;
-lin patriarchy_N = mkN "patriarchy" "patriarchies" ;
-lin anarchy_N = mkN "anarchy" "anarchies" ;
-lin monarchy_N = mkN "monarchy" "monarchies" ;
-lin eparchy_N = mkN "eparchy" "eparchies" ;
-lin hierarchy_N = mkN "hierarchy" "hierarchies" ;
-lin autarchy_N = mkN "autarchy" "autarchies" ;
-lin dyarchy_N = mkN "dyarchy" "dyarchies" ;
-lin duchy_N = mkN "duchy" "duchies" ;
-lin archduchy_N = mkN "archduchy" "archduchies" ; -- compound duchy_N ;
-lin dinghy_N = mkN "dinghy" "dinghies" ;
-lin telegraphy_N = mkN "telegraphy" "telegraphies" ;
-lin calligraphy_N = mkN "calligraphy" "calligraphies" ;
-lin epigraphy_N = mkN "epigraphy" "epigraphies" ;
-lin serigraphy_N = mkN "serigraphy" "serigraphies" ;
-lin stratigraphy_N = mkN "stratigraphy" "stratigraphies" ;
-lin lexicography_N = mkN "lexicography" "lexicographies" ;
-lin discography_N = mkN "discography" "discographies" ;
-lin ideography_N = mkN "ideography" "ideographies" ;
-lin geography_N = mkN "geography" "geographies" ;
-lin paleogeography_N = mkN "paleogeography" "paleogeographies" ; -- compound geography_N ;
-lin biogeography_N = mkN "biogeography" "biogeographies" ; -- compound geography_N ;
-lin paleography_N = mkN "paleography" "paleographies" ;
-lin choreography_N = mkN "choreography" "choreographies" ;
-lin lithography_N = mkN "lithography" "lithographies" ;
-lin chromolithography_N = mkN "chromolithography" "chromolithographies" ; -- compound lithography_N ;
-lin photolithography_N = mkN "photolithography" "photolithographies" ; -- compound lithography_N ;
-lin orthography_N = mkN "orthography" "orthographies" ;
-lin biography_N = mkN "biography" "biographies" ;
-lin autobiography_N = mkN "autobiography" "autobiographies" ; -- compound biography_N ;
-lin radiography_N = mkN "radiography" "radiographies" ;
-lin xeroradiography_N = mkN "xeroradiography" "xeroradiographies" ; -- compound radiography_N ;
-lin autoradiography_N = mkN "autoradiography" "autoradiographies" ; -- compound radiography_N ;
-lin cardiography_N = mkN "cardiography" "cardiographies" ;
-lin echocardiography_N = mkN "echocardiography" "echocardiographies" ; -- compound cardiography_N ;
-lin hagiography_N = mkN "hagiography" "hagiographies" ;
-lin angiography_N = mkN "angiography" "angiographies" ;
-lin lymphangiography_N = mkN "lymphangiography" "lymphangiographies" ; -- compound angiography_N ;
-lin cholangiography_N = mkN "cholangiography" "cholangiographies" ; -- compound angiography_N ;
-lin bibliography_N = mkN "bibliography" "bibliographies" ;
-lin arteriography_N = mkN "arteriography" "arteriographies" ;
-lin historiography_N = mkN "historiography" "historiographies" ;
-lin encephalography_N = mkN "encephalography" "encephalographies" ;
-lin echoencephalography_N = mkN "echoencephalography" "echoencephalographies" ; -- compound encephalography_N ;
-lin myelography_N = mkN "myelography" "myelographies" ;
-lin pyelography_N = mkN "pyelography" "pyelographies" ;
-lin crystallography_N = mkN "crystallography" "crystallographies" ;
-lin holography_N = mkN "holography" "holographies" ;
-lin demography_N = mkN "demography" "demographies" ;
-lin anemography_N = mkN "anemography" "anemographies" ;
-lin mammography_N = mkN "mammography" "mammographies" ;
-lin thermography_N = mkN "thermography" "thermographies" ;
-lin mammothermography_N = mkN "mammothermography" "mammothermographies" ; -- compound thermography_N ;
-lin seismography_N = mkN "seismography" "seismographies" ;
-lin cosmography_N = mkN "cosmography" "cosmographies" ;
-lin oceanography_N = mkN "oceanography" "oceanographies" ;
-lin roentgenography_N = mkN "roentgenography" "roentgenographies" ;
-lin stenography_N = mkN "stenography" "stenographies" ;
-lin venography_N = mkN "venography" "venographies" ;
-lin ethnography_N = mkN "ethnography" "ethnographies" ;
-lin paleoethnography_N = mkN "paleoethnography" "paleoethnographies" ; -- compound ethnography_N ;
-lin iconography_N = mkN "iconography" "iconographies" ;
-lin sonography_N = mkN "sonography" "sonographies" ;
-lin pornography_N = mkN "pornography" "pornographies" ;
-lin topography_N = mkN "topography" "topographies" ;
-lin typography_N = mkN "typography" "typographies" ;
-lin polarography_N = mkN "polarography" "polarographies" ;
-lin hydrography_N = mkN "hydrography" "hydrographies" ;
-lin xerography_N = mkN "xerography" "xerographies" ;
-lin arthrography_N = mkN "arthrography" "arthrographies" ;
-lin pyrography_N = mkN "pyrography" "pyrographies" ;
-lin hypsography_N = mkN "hypsography" "hypsographies" ;
-lin cinematography_N = mkN "cinematography" "cinematographies" ;
-lin chromatography_N = mkN "chromatography" "chromatographies" ;
-lin photography_N = mkN "photography" "photographies" ;
-lin telephotography_N = mkN "telephotography" "telephotographies" ; -- compound photography_N ;
-lin radiophotography_N = mkN "radiophotography" "radiophotographies" ; -- compound photography_N ;
-lin glyptography_N = mkN "glyptography" "glyptographies" ;
-lin cryptography_N = mkN "cryptography" "cryptographies" ;
-lin cartography_N = mkN "cartography" "cartographies" ;
-lin adoxography_N = mkN "adoxography" "adoxographies" ;
-lin electromyography_N = mkN "electromyography" "electromyographies" ;
-lin trophy_N = mkN "trophy" "trophies" ;
-lin atrophy_N = mkN "atrophy" "atrophies" ; -- notcompound trophy_N ;
-lin abiotrophy_N = mkN "abiotrophy" "abiotrophies" ; -- compound trophy_N ;
-lin hypertrophy_N = mkN "hypertrophy" "hypertrophies" ; -- compound trophy_N ;
-lin dystrophy_N = mkN "dystrophy" "dystrophies" ; -- compound trophy_N ;
-lin osteodystrophy_N = mkN "osteodystrophy" "osteodystrophies" ; -- compound trophy_N ;
-lin theosophy_N = mkN "theosophy" "theosophies" ;
-lin philosophy_N = mkN "philosophy" "philosophies" ;
-lin gymnosophy_N = mkN "gymnosophy" "gymnosophies" ;
-lin anthroposophy_N = mkN "anthroposophy" "anthroposophies" ;
-lin endomorphy_N = mkN "endomorphy" "endomorphies" ;
-lin murphy_N = mkN "murphy" "murphies" ;
-lin anaglyphy_N = mkN "anaglyphy" "anaglyphies" ;
-lin shy_N = mkN "shy" "shies" ;
-lin chrestomathy_N = mkN "chrestomathy" "chrestomathies" ;
-lin apathy_N = mkN "apathy" "apathies" ;
-lin naprapathy_N = mkN "naprapathy" "naprapathies" ; -- compound apathy_N ;
-lin telepathy_N = mkN "telepathy" "telepathies" ;
-lin antipathy_N = mkN "antipathy" "antipathies" ;
-lin empathy_N = mkN "empathy" "empathies" ;
-lin sympathy_N = mkN "sympathy" "sympathies" ;
-lin homeopathy_N = mkN "homeopathy" "homeopathies" ;
-lin homoeopathy_N = mkN "homoeopathy" "homoeopathies" ;
-lin osteopathy_N = mkN "osteopathy" "osteopathies" ;
-lin angiopathy_N = mkN "angiopathy" "angiopathies" ;
-lin allopathy_N = mkN "allopathy" "allopathies" ;
-lin gammopathy_N = mkN "gammopathy" "gammopathies" ;
-lin adenopathy_N = mkN "adenopathy" "adenopathies" ;
-lin lymphadenopathy_N = mkN "lymphadenopathy" "lymphadenopathies" ; -- compound adenopathy_N ;
-lin hemoglobinopathy_N = mkN "hemoglobinopathy" "hemoglobinopathies" ;
-lin rhinopathy_N = mkN "rhinopathy" "rhinopathies" ;
-lin retinopathy_N = mkN "retinopathy" "retinopathies" ;
-lin hydropathy_N = mkN "hydropathy" "hydropathies" ;
-lin enteropathy_N = mkN "enteropathy" "enteropathies" ;
-lin arthropathy_N = mkN "arthropathy" "arthropathies" ;
-lin uropathy_N = mkN "uropathy" "uropathies" ;
-lin neuropathy_N = mkN "neuropathy" "neuropathies" ; -- compound uropathy_N ;
-lin mononeuropathy_N = mkN "mononeuropathy" "mononeuropathies" ; -- compound uropathy_N ;
-lin naturopathy_N = mkN "naturopathy" "naturopathies" ; -- compound uropathy_N ;
-lin mastopathy_N = mkN "mastopathy" "mastopathies" ;
-lin myopathy_N = mkN "myopathy" "myopathies" ;
-lin cardiomyopathy_N = mkN "cardiomyopathy" "cardiomyopathies" ; -- compound myopathy_N ;
-lin smithy_N = mkN "smithy" "smithies" ;
-lin withy_N = mkN "withy" "withies" ;
-lin timothy_N = mkN "timothy" "timothies" ;
-lin worthy_N = mkN "worthy" "worthies" ;
-lin why_N = mkN "why" "whys" ;
-lin diy_N = mkN "diy" "diies" ;
-lin dicky_N = mkN "dicky" "dickies" ;
-lin jabberwocky_N = mkN "jabberwocky" "jabberwockies" ;
-lin ducky_N = mkN "ducky" "duckies" ;
-lin droshky_N = mkN "droshky" "droshkies" ;
-lin sulky_N = mkN "sulky" "sulkies" ;
-lin hanky_N = mkN "hanky" "hankies" ;
-lin 'hanky-panky_N' = mkN "hanky-panky" "hanky-pankies" ;
-lin dinky_N = mkN "dinky" "dinkies" ;
-lin junky_N = mkN "junky" "junkies" ;
-lin flunky_N = mkN "flunky" "flunkies" ;
-lin choky_N = mkN "choky" "chokies" ;
-lin cooky_N = mkN "cooky" "cookies" ;
-lin darky_N = mkN "darky" "darkies" ;
-lin autarky_N = mkN "autarky" "autarkies" ;
-lin jerky_N = mkN "jerky" "jerkies" ;
-lin sky_N = mkN "sky" "skies" ;
-lin whisky_N = mkN "whisky" "whiskies" ; -- compound sky_N ;
-lin buttinsky_N = mkN "buttinsky" "buttinskies" ; -- compound sky_N ;
-lin husky_N = mkN "husky" "huskies" ; -- compound sky_N ;
-lin cardiomegaly_N = mkN "cardiomegaly" "cardiomegalies" ;
-lin dactylomegaly_N = mkN "dactylomegaly" "dactylomegalies" ;
-lin adenomegaly_N = mkN "adenomegaly" "adenomegalies" ;
-lin splenomegaly_N = mkN "splenomegaly" "splenomegalies" ;
-lin acromegaly_N = mkN "acromegaly" "acromegalies" ;
-lin hepatomegaly_N = mkN "hepatomegaly" "hepatomegalies" ;
-lin anencephaly_N = mkN "anencephaly" "anencephalies" ;
-lin macrencephaly_N = mkN "macrencephaly" "macrencephalies" ;
-lin dolichocephaly_N = mkN "dolichocephaly" "dolichocephalies" ;
-lin scaphocephaly_N = mkN "scaphocephaly" "scaphocephalies" ;
-lin plagiocephaly_N = mkN "plagiocephaly" "plagiocephalies" ;
-lin clinocephaly_N = mkN "clinocephaly" "clinocephalies" ;
-lin macrocephaly_N = mkN "macrocephaly" "macrocephalies" ;
-lin microcephaly_N = mkN "microcephaly" "microcephalies" ;
-lin brachycephaly_N = mkN "brachycephaly" "brachycephalies" ;
-lin oxycephaly_N = mkN "oxycephaly" "oxycephalies" ;
-lin bialy_N = mkN "bialy" "bialies" ;
-lin anomaly_N = mkN "anomaly" "anomalies" ;
-lin bubbly_N = mkN "bubbly" "bubblies" ;
-lin assembly_N = mkN "assembly" "assemblies" ;
-lin reassembly_N = mkN "reassembly" "reassemblies" ; -- compound assembly_N ;
-lin friendly_N = mkN "friendly" "friendlies" ;
-lin contumely_N = mkN "contumely" "contumelies" ;
-lin philately_N = mkN "philately" "philatelies" ;
-lin aerophilately_N = mkN "aerophilately" "aerophilatelies" ; -- compound philately_N ;
-lin fly_N = mkN "fly" "flies" ;
-lin 'crane-fly_N' = mkN "crane-fly" "crane-flies" ; -- compound fly_N ;
-lin 'tsetse-fly_N' = mkN "tsetse-fly" "tsetse-flies" ; -- compound fly_N ;
-lin 'ichneumon-fly_N' = mkN "ichneumon-fly" "ichneumon-flies" ; -- compound fly_N ;
-lin 'fruit-fly_N' = mkN "fruit-fly" "fruit-flies" ; -- compound fly_N ;
-lin gadfly_N = mkN "gadfly" "gadflies" ; -- compound fly_N ;
-lin sandfly_N = mkN "sandfly" "sandflies" ; -- compound fly_N ;
-lin spongefly_N = mkN "spongefly" "spongeflies" ; -- compound fly_N ;
-lin snakefly_N = mkN "snakefly" "snakeflies" ; -- compound fly_N ;
-lin stonefly_N = mkN "stonefly" "stoneflies" ; -- compound fly_N ;
-lin firefly_N = mkN "firefly" "fireflies" ; -- compound fly_N ;
-lin horsefly_N = mkN "horsefly" "horseflies" ; -- compound fly_N ;
-lin housefly_N = mkN "housefly" "houseflies" ; -- compound fly_N ;
-lin whitefly_N = mkN "whitefly" "whiteflies" ; -- compound fly_N ;
-lin blackfly_N = mkN "blackfly" "blackflies" ; -- compound fly_N ;
-lin damselfly_N = mkN "damselfly" "damselflies" ; -- compound fly_N ;
-lin gallfly_N = mkN "gallfly" "gallflies" ; -- compound fly_N ;
-lin greenfly_N = mkN "greenfly" "greenflies" ; -- compound fly_N ;
-lin dragonfly_N = mkN "dragonfly" "dragonflies" ; -- compound fly_N ;
-lin shoofly_N = mkN "shoofly" "shooflies" ; -- compound fly_N ;
-lin alderfly_N = mkN "alderfly" "alderflies" ; -- compound fly_N ;
-lin butterfly_N = mkN "butterfly" "butterflies" ; -- compound fly_N ;
-lin botfly_N = mkN "botfly" "botflies" ; -- compound fly_N ;
-lin sawfly_N = mkN "sawfly" "sawflies" ; -- compound fly_N ;
-lin blowfly_N = mkN "blowfly" "blowflies" ; -- compound fly_N ;
-lin mayfly_N = mkN "mayfly" "mayflies" ; -- compound fly_N ;
-lin googly_N = mkN "googly" "googlies" ;
-lin monthly_N = mkN "monthly" "monthlies" ;
-lin bimonthly_N = mkN "bimonthly" "bimonthlies" ; -- compound monthly_N ;
-lin semimonthly_N = mkN "semimonthly" "semimonthlies" ; -- compound monthly_N ;
-lin daily_N = mkN "daily" "dailies" ;
-lin lily_N = mkN "lily" "lilies" ;
-lin 'tiger-lily_N' = mkN "tiger-lily" "tiger-lilies" ; -- compound lily_N ;
-lin 'water-lily_N' = mkN "water-lily" "water-lilies" ; -- compound lily_N ;
-lin family_N = mkN "family" "families" ;
-lin subfamily_N = mkN "subfamily" "subfamilies" ; -- compound family_N ;
-lin superfamily_N = mkN "superfamily" "superfamilies" ; -- compound family_N ;
-lin homily_N = mkN "homily" "homilies" ;
-lin doily_N = mkN "doily" "doilies" ;
-lin weekly_N = mkN "weekly" "weeklies" ;
-lin biweekly_N = mkN "biweekly" "biweeklies" ; -- compound weekly_N ;
-lin semiweekly_N = mkN "semiweekly" "semiweeklies" ; -- compound weekly_N ;
-lin ally_N = mkN "ally" "allies" ;
-lin shillyshally_N = mkN "shillyshally" "shillyshallies" ; -- compound ally_N ;
-lin lally_N = mkN "lally" "lallies" ; -- notcompound ally_N ;
-lin rally_N = mkN "rally" "rallies" ; -- notcompound ally_N ;
-lin sally_N = mkN "sally" "sallies" ; -- notcompound ally_N ;
-lin tally_N = mkN "tally" "tallies" ; -- notcompound ally_N ;
-lin wally_N = mkN "wally" "wallies" ; -- notcompound ally_N ;
-lin belly_N = mkN "belly" "bellies" ;
-lin underbelly_N = mkN "underbelly" "underbellies" ; -- compound belly_N ;
-lin potbelly_N = mkN "potbelly" "potbellies" ; -- compound belly_N ;
-lin sowbelly_N = mkN "sowbelly" "sowbellies" ; -- compound belly_N ;
-lin jelly_N = mkN "jelly" "jellies" ;
-lin telly_N = mkN "telly" "tellies" ;
-lin billy_N = mkN "billy" "billies" ;
-lin 'hill-billy_N' = mkN "hill-billy" "hill-billies" ; -- compound billy_N ;
-lin rockabilly_N = mkN "rockabilly" "rockabillies" ; -- compound billy_N ;
-lin hillbilly_N = mkN "hillbilly" "hillbillies" ; -- compound billy_N ;
-lin filly_N = mkN "filly" "fillies" ;
-lin chilly_N = mkN "chilly" "chillies" ;
-lin skilly_N = mkN "skilly" "skillies" ;
-lin silly_N = mkN "silly" "sillies" ;
-lin dolly_N = mkN "dolly" "dollies" ;
-lin folly_N = mkN "folly" "follies" ;
-lin holly_N = mkN "holly" "hollies" ;
-lin jolly_N = mkN "jolly" "jollies" ;
-lin lolly_N = mkN "lolly" "lollies" ;
-lin 'ice-lolly_N' = mkN "ice-lolly" "ice-lollies" ; -- compound lolly_N ;
-lin blolly_N = mkN "blolly" "blollies" ; -- notcompound lolly_N ;
-lin loblolly_N = mkN "loblolly" "loblollies" ; -- compound lolly_N ;
-lin brolly_N = mkN "brolly" "brollies" ;
-lin bully_N = mkN "bully" "bullies" ;
-lin gully_N = mkN "gully" "gullies" ;
-lin holy_N = mkN "holy" "holies" ;
-lin melancholy_N = mkN "melancholy" "melancholies" ; -- compound holy_N ;
-lin wooly_N = mkN "wooly" "woolies" ;
-lin 'roly-poly_N' = mkN "roly-poly" "roly-polies" ;
-lin oligopoly_N = mkN "oligopoly" "oligopolies" ;
-lin monopoly_N = mkN "monopoly" "monopolies" ;
-lin reply_N = mkN "reply" "replies" ;
-lin panoply_N = mkN "panoply" "panoplies" ;
-lin supply_N = mkN "supply" "supplies" ;
-lin 'water-supply_N' = mkN "water-supply" "water-supplies" ; -- compound supply_N ;
-lin rly_N = mkN "rly" "rlies" ;
-lin orderly_N = mkN "orderly" "orderlies" ; -- compound rly_N ;
-lin quarterly_N = mkN "quarterly" "quarterlies" ; -- compound rly_N ;
-lin 'hurly-burly_N' = mkN "hurly-burly" "hurly-burlies" ; -- compound rly_N ;
-lin doyly_N = mkN "doyly" "doylies" ;
-lin syndactyly_N = mkN "syndactyly" "syndactylies" ;
-lin oligodactyly_N = mkN "oligodactyly" "oligodactylies" ;
-lin clinodactyly_N = mkN "clinodactyly" "clinodactylies" ;
-lin ectrodactyly_N = mkN "ectrodactyly" "ectrodactylies" ;
-lin brachydactyly_N = mkN "brachydactyly" "brachydactylies" ;
-lin polydactyly_N = mkN "polydactyly" "polydactylies" ;
-lin grizzly_N = mkN "grizzly" "grizzlies" ;
-lin poly_N = mkN "poly" "polys" ;
-lin infamy_N = mkN "infamy" "infamies" ;
-lin bigamy_N = mkN "bigamy" "bigamies" ;
-lin endogamy_N = mkN "endogamy" "endogamies" ;
-lin allogamy_N = mkN "allogamy" "allogamies" ;
-lin monogamy_N = mkN "monogamy" "monogamies" ;
-lin apogamy_N = mkN "apogamy" "apogamies" ;
-lin isogamy_N = mkN "isogamy" "isogamies" ;
-lin misogamy_N = mkN "misogamy" "misogamies" ; -- notcompound isogamy_N ;
-lin anisogamy_N = mkN "anisogamy" "anisogamies" ; -- compound isogamy_N ;
-lin cleistogamy_N = mkN "cleistogamy" "cleistogamies" ;
-lin autogamy_N = mkN "autogamy" "autogamies" ;
-lin exogamy_N = mkN "exogamy" "exogamies" ;
-lin polygamy_N = mkN "polygamy" "polygamies" ;
-lin academy_N = mkN "academy" "academies" ;
-lin alchemy_N = mkN "alchemy" "alchemies" ;
-lin blasphemy_N = mkN "blasphemy" "blasphemies" ;
-lin enemy_N = mkN "enemy" "enemies" ;
-lin monosemy_N = mkN "monosemy" "monosemies" ;
-lin polysemy_N = mkN "polysemy" "polysemies" ;
-lin pigmy_N = mkN "pigmy" "pigmies" ;
-lin pygmy_N = mkN "pygmy" "pygmies" ;
-lin eurythmy_N = mkN "eurythmy" "eurythmies" ;
-lin shammy_N = mkN "shammy" "shammies" ;
-lin whammy_N = mkN "whammy" "whammies" ;
-lin mammy_N = mkN "mammy" "mammies" ;
-lin tammy_N = mkN "tammy" "tammies" ;
-lin jemmy_N = mkN "jemmy" "jemmies" ;
-lin shimmy_N = mkN "shimmy" "shimmies" ;
-lin jimmy_N = mkN "jimmy" "jimmies" ;
-lin pommy_N = mkN "pommy" "pommies" ;
-lin dummy_N = mkN "dummy" "dummies" ;
-lin thingummy_N = mkN "thingummy" "thingummies" ;
-lin mummy_N = mkN "mummy" "mummies" ;
-lin rummy_N = mkN "rummy" "rummies" ;
-lin tummy_N = mkN "tummy" "tummies" ;
-lin sodomy_N = mkN "sodomy" "sodomies" ;
-lin physiognomy_N = mkN "physiognomy" "physiognomies" ;
-lin antinomy_N = mkN "antinomy" "antinomies" ;
-lin economy_N = mkN "economy" "economies" ;
-lin agronomy_N = mkN "agronomy" "agronomies" ;
-lin astronomy_N = mkN "astronomy" "astronomies" ;
-lin gastronomy_N = mkN "gastronomy" "gastronomies" ; -- notcompound astronomy_N ;
-lin autonomy_N = mkN "autonomy" "autonomies" ;
-lin taxonomy_N = mkN "taxonomy" "taxonomies" ;
-lin gastromy_N = mkN "gastromy" "gastromies" ;
-lin trisomy_N = mkN "trisomy" "trisomies" ;
-lin monosomy_N = mkN "monosomy" "monosomies" ;
-lin polysomy_N = mkN "polysomy" "polysomies" ;
-lin anatomy_N = mkN "anatomy" "anatomies" ;
-lin neuroanatomy_N = mkN "neuroanatomy" "neuroanatomies" ; -- compound anatomy_N ;
-lin phlebectomy_N = mkN "phlebectomy" "phlebectomies" ;
-lin thrombectomy_N = mkN "thrombectomy" "thrombectomies" ;
-lin lobectomy_N = mkN "lobectomy" "lobectomies" ;
-lin meniscectomy_N = mkN "meniscectomy" "meniscectomies" ;
-lin stapedectomy_N = mkN "stapedectomy" "stapedectomies" ;
-lin orchidectomy_N = mkN "orchidectomy" "orchidectomies" ;
-lin hemorrhoidectomy_N = mkN "hemorrhoidectomy" "hemorrhoidectomies" ;
-lin sigmoidectomy_N = mkN "sigmoidectomy" "sigmoidectomies" ;
-lin adenoidectomy_N = mkN "adenoidectomy" "adenoidectomies" ;
-lin thyroidectomy_N = mkN "thyroidectomy" "thyroidectomies" ;
-lin mastoidectomy_N = mkN "mastoidectomy" "mastoidectomies" ;
-lin iridectomy_N = mkN "iridectomy" "iridectomies" ;
-lin clitoridectomy_N = mkN "clitoridectomy" "clitoridectomies" ;
-lin appendectomy_N = mkN "appendectomy" "appendectomies" ;
-lin salpingectomy_N = mkN "salpingectomy" "salpingectomies" ;
-lin oophorosalpingectomy_N = mkN "oophorosalpingectomy" "oophorosalpingectomies" ; -- compound salpingectomy_N ;
-lin myringectomy_N = mkN "myringectomy" "myringectomies" ;
-lin laryngectomy_N = mkN "laryngectomy" "laryngectomies" ;
-lin sympathectomy_N = mkN "sympathectomy" "sympathectomies" ;
-lin adrenalectomy_N = mkN "adrenalectomy" "adrenalectomies" ;
-lin tonsillectomy_N = mkN "tonsillectomy" "tonsillectomies" ;
-lin embolectomy_N = mkN "embolectomy" "embolectomies" ;
-lin ophthalmectomy_N = mkN "ophthalmectomy" "ophthalmectomies" ;
-lin splenectomy_N = mkN "splenectomy" "splenectomies" ;
-lin laminectomy_N = mkN "laminectomy" "laminectomies" ;
-lin pneumonectomy_N = mkN "pneumonectomy" "pneumonectomies" ;
-lin lipectomy_N = mkN "lipectomy" "lipectomies" ;
-lin lumpectomy_N = mkN "lumpectomy" "lumpectomies" ;
-lin polypectomy_N = mkN "polypectomy" "polypectomies" ;
-lin endarterectomy_N = mkN "endarterectomy" "endarterectomies" ;
-lin hysterectomy_N = mkN "hysterectomy" "hysterectomies" ;
-lin nephrectomy_N = mkN "nephrectomy" "nephrectomies" ;
-lin oophorectomy_N = mkN "oophorectomy" "oophorectomies" ;
-lin vitrectomy_N = mkN "vitrectomy" "vitrectomies" ;
-lin gastrectomy_N = mkN "gastrectomy" "gastrectomies" ;
-lin neurectomy_N = mkN "neurectomy" "neurectomies" ;
-lin vasectomy_N = mkN "vasectomy" "vasectomies" ;
-lin hypophysectomy_N = mkN "hypophysectomy" "hypophysectomies" ;
-lin pancreatectomy_N = mkN "pancreatectomy" "pancreatectomies" ;
-lin prostatectomy_N = mkN "prostatectomy" "prostatectomies" ;
-lin septectomy_N = mkN "septectomy" "septectomies" ;
-lin mastectomy_N = mkN "mastectomy" "mastectomies" ;
-lin cholecystectomy_N = mkN "cholecystectomy" "cholecystectomies" ;
-lin vulvectomy_N = mkN "vulvectomy" "vulvectomies" ;
-lin strabotomy_N = mkN "strabotomy" "strabotomies" ;
-lin lobotomy_N = mkN "lobotomy" "lobotomies" ;
-lin thoracotomy_N = mkN "thoracotomy" "thoracotomies" ;
-lin iridotomy_N = mkN "iridotomy" "iridotomies" ;
-lin perineotomy_N = mkN "perineotomy" "perineotomies" ;
-lin osteotomy_N = mkN "osteotomy" "osteotomies" ;
-lin myringotomy_N = mkN "myringotomy" "myringotomies" ;
-lin dichotomy_N = mkN "dichotomy" "dichotomies" ;
-lin trichotomy_N = mkN "trichotomy" "trichotomies" ;
-lin orchotomy_N = mkN "orchotomy" "orchotomies" ;
-lin lithotomy_N = mkN "lithotomy" "lithotomies" ;
-lin cholelithotomy_N = mkN "cholelithotomy" "cholelithotomies" ; -- compound lithotomy_N ;
-lin craniotomy_N = mkN "craniotomy" "craniotomies" ;
-lin episiotomy_N = mkN "episiotomy" "episiotomies" ;
-lin amygdalotomy_N = mkN "amygdalotomy" "amygdalotomies" ;
-lin rhinotomy_N = mkN "rhinotomy" "rhinotomies" ;
-lin laparotomy_N = mkN "laparotomy" "laparotomies" ;
-lin sclerotomy_N = mkN "sclerotomy" "sclerotomies" ;
-lin hysterotomy_N = mkN "hysterotomy" "hysterotomies" ;
-lin nephrotomy_N = mkN "nephrotomy" "nephrotomies" ;
-lin vasotomy_N = mkN "vasotomy" "vasotomies" ;
-lin callosotomy_N = mkN "callosotomy" "callosotomies" ;
-lin keratotomy_N = mkN "keratotomy" "keratotomies" ;
-lin autotomy_N = mkN "autotomy" "autotomies" ;
-lin valvotomy_N = mkN "valvotomy" "valvotomies" ;
-lin myotomy_N = mkN "myotomy" "myotomies" ;
-lin rhizotomy_N = mkN "rhizotomy" "rhizotomies" ;
-lin ostomy_N = mkN "ostomy" "ostomies" ;
-lin tracheostomy_N = mkN "tracheostomy" "tracheostomies" ; -- compound ostomy_N ;
-lin ileostomy_N = mkN "ileostomy" "ileostomies" ; -- compound ostomy_N ;
-lin colostomy_N = mkN "colostomy" "colostomies" ; -- compound ostomy_N ;
-lin jejunostomy_N = mkN "jejunostomy" "jejunostomies" ; -- compound ostomy_N ;
-lin enterostomy_N = mkN "enterostomy" "enterostomies" ; -- compound ostomy_N ;
-lin gastroenterostomy_N = mkN "gastroenterostomy" "gastroenterostomies" ; -- compound ostomy_N ;
-lin gastrostomy_N = mkN "gastrostomy" "gastrostomies" ; -- compound ostomy_N ;
-lin vasovasostomy_N = mkN "vasovasostomy" "vasovasostomies" ; -- compound ostomy_N ;
-lin army_N = mkN "army" "armies" ;
-lin taxidermy_N = mkN "taxidermy" "taxidermies" ;
-lin diathermy_N = mkN "diathermy" "diathermies" ;
-lin holonymy_N = mkN "holonymy" "holonymies" ;
-lin homonymy_N = mkN "homonymy" "homonymies" ;
-lin synonymy_N = mkN "synonymy" "synonymies" ;
-lin eponymy_N = mkN "eponymy" "eponymies" ;
-lin troponymy_N = mkN "troponymy" "troponymies" ;
-lin toponymy_N = mkN "toponymy" "toponymies" ;
-lin hyponymy_N = mkN "hyponymy" "hyponymies" ;
-lin meronymy_N = mkN "meronymy" "meronymies" ;
-lin metonymy_N = mkN "metonymy" "metonymies" ;
-lin antonymy_N = mkN "antonymy" "antonymies" ;
-lin hypernymy_N = mkN "hypernymy" "hypernymies" ;
-lin meany_N = mkN "meany" "meanies" ;
-lin mahogany_N = mkN "mahogany" "mahoganies" ;
-lin epiphany_N = mkN "epiphany" "epiphanies" ;
-lin theophany_N = mkN "theophany" "theophanies" ;
-lin miscellany_N = mkN "miscellany" "miscellanies" ;
-lin romany_N = mkN "romany" "romanies" ;
-lin company_N = mkN "company" "companies" ;
-lin tetany_N = mkN "tetany" "tetanies" ;
-lin litany_N = mkN "litany" "litanies" ;
-lin botany_N = mkN "botany" "botanies" ;
-lin paleobotany_N = mkN "paleobotany" "paleobotanies" ; -- compound botany_N ;
-lin zany_N = mkN "zany" "zanies" ;
-lin larceny_N = mkN "larceny" "larcenies" ;
-lin endogeny_N = mkN "endogeny" "endogenies" ;
-lin homogeny_N = mkN "homogeny" "homogenies" ;
-lin orogeny_N = mkN "orogeny" "orogenies" ;
-lin lysogeny_N = mkN "lysogeny" "lysogenies" ;
-lin neoteny_N = mkN "neoteny" "neotenies" ;
-lin villainy_N = mkN "villainy" "villainies" ;
-lin hominy_N = mkN "hominy" "hominies" ;
-lin ignominy_N = mkN "ignominy" "ignominies" ;
-lin destiny_N = mkN "destiny" "destinies" ;
-lin mutiny_N = mkN "mutiny" "mutinies" ;
-lin scrutiny_N = mkN "scrutiny" "scrutinies" ;
-lin calumny_N = mkN "calumny" "calumnies" ;
-lin fanny_N = mkN "fanny" "fannies" ;
-lin shanny_N = mkN "shanny" "shannies" ;
-lin nanny_N = mkN "nanny" "nannies" ;
-lin cranny_N = mkN "cranny" "crannies" ;
-lin granny_N = mkN "granny" "grannies" ;
-lin tyranny_N = mkN "tyranny" "tyrannies" ;
-lin jenny_N = mkN "jenny" "jennies" ;
-lin blenny_N = mkN "blenny" "blennies" ;
-lin snakeblenny_N = mkN "snakeblenny" "snakeblennies" ; -- compound blenny_N ;
-lin pikeblenny_N = mkN "pikeblenny" "pikeblennies" ; -- compound blenny_N ;
-lin eelblenny_N = mkN "eelblenny" "eelblennies" ; -- compound blenny_N ;
-lin penny_2_N = mkN "penny" "pennies" ;
-lin ha'penny_N = mkN "ha'penny" "ha'pennies" ; -- compound penny_2_N ;
-lin 'shove-ha\'penny_N' = mkN "shove-ha'penny" "shove-ha'pennies" ; -- compound penny_2_N ;
-lin halfpenny_N = mkN "halfpenny" "halfpennies" ; -- compound penny_2_N ;
-lin hinny_N = mkN "hinny" "hinnies" ;
-lin shinny_N = mkN "shinny" "shinnies" ; -- notcompound hinny_N ;
-lin whinny_N = mkN "whinny" "whinnies" ; -- notcompound hinny_N ;
-lin skinny_N = mkN "skinny" "skinnies" ;
-lin ninny_N = mkN "ninny" "ninnies" ;
-lin piccaninny_N = mkN "piccaninny" "piccaninnies" ; -- compound ninny_N ;
-lin pickaninny_N = mkN "pickaninny" "pickaninnies" ; -- compound ninny_N ;
-lin pinny_N = mkN "pinny" "pinnies" ;
-lin sonny_N = mkN "sonny" "sonnies" ;
-lin bunny_N = mkN "bunny" "bunnies" ;
-lin gunny_N = mkN "gunny" "gunnies" ;
-lin ebony_N = mkN "ebony" "ebonies" ;
-lin cony_N = mkN "cony" "conies" ;
-lin balcony_N = mkN "balcony" "balconies" ; -- compound cony_N ;
-lin chalcedony_N = mkN "chalcedony" "chalcedonies" ;
-lin paeony_N = mkN "paeony" "paeonies" ;
-lin peony_N = mkN "peony" "peonies" ;
-lin agony_N = mkN "agony" "agonies" ;
-lin theogony_N = mkN "theogony" "theogonies" ;
-lin cosmogony_N = mkN "cosmogony" "cosmogonies" ;
-lin schizogony_N = mkN "schizogony" "schizogonies" ;
-lin phony_N = mkN "phony" "phonies" ;
-lin quadraphony_N = mkN "quadraphony" "quadraphonies" ; -- compound phony_N ;
-lin telephony_N = mkN "telephony" "telephonies" ; -- compound phony_N ;
-lin antiphony_N = mkN "antiphony" "antiphonies" ; -- compound phony_N ;
-lin symphony_N = mkN "symphony" "symphonies" ; -- compound phony_N ;
-lin cacophony_N = mkN "cacophony" "cacophonies" ; -- compound phony_N ;
-lin colophony_N = mkN "colophony" "colophonies" ; -- compound phony_N ;
-lin homophony_N = mkN "homophony" "homophonies" ; -- compound phony_N ;
-lin monophony_N = mkN "monophony" "monophonies" ; -- compound phony_N ;
-lin acrophony_N = mkN "acrophony" "acrophonies" ; -- compound phony_N ;
-lin quadrophony_N = mkN "quadrophony" "quadrophonies" ; -- compound phony_N ;
-lin euphony_N = mkN "euphony" "euphonies" ; -- compound phony_N ;
-lin polyphony_N = mkN "polyphony" "polyphonies" ; -- compound phony_N ;
-lin felony_N = mkN "felony" "felonies" ;
-lin colony_N = mkN "colony" "colonies" ;
-lin polony_N = mkN "polony" "polonies" ;
-lin hegemony_N = mkN "hegemony" "hegemonies" ;
-lin ceremony_N = mkN "ceremony" "ceremonies" ;
-lin alimony_N = mkN "alimony" "alimonies" ;
-lin palimony_N = mkN "palimony" "palimonies" ; -- notcompound alimony_N ;
-lin acrimony_N = mkN "acrimony" "acrimonies" ;
-lin matrimony_N = mkN "matrimony" "matrimonies" ;
-lin patrimony_N = mkN "patrimony" "patrimonies" ;
-lin simony_N = mkN "simony" "simonies" ;
-lin parsimony_N = mkN "parsimony" "parsimonies" ; -- compound simony_N ;
-lin antimony_N = mkN "antimony" "antimonies" ;
-lin testimony_N = mkN "testimony" "testimonies" ;
-lin scammony_N = mkN "scammony" "scammonies" ;
-lin harmony_N = mkN "harmony" "harmonies" ;
-lin disharmony_N = mkN "disharmony" "disharmonies" ; -- compound harmony_N ;
-lin loony_N = mkN "loony" "loonies" ;
-lin pony_N = mkN "pony" "ponies" ;
-lin barony_N = mkN "barony" "baronies" ;
-lin crony_N = mkN "crony" "cronies" ;
-lin synchrony_N = mkN "synchrony" "synchronies" ;
-lin irony_N = mkN "irony" "ironies" ;
-lin monopsony_N = mkN "monopsony" "monopsonies" ;
-lin neotony_N = mkN "neotony" "neotonies" ;
-lin monotony_N = mkN "monotony" "monotonies" ;
-lin gluttony_N = mkN "gluttony" "gluttonies" ;
-lin bryony_N = mkN "bryony" "bryonies" ;
-lin amphictyony_N = mkN "amphictyony" "amphictyonies" ;
-lin mulligatawny_N = mkN "mulligatawny" "mulligatawnies" ;
-lin philogyny_N = mkN "philogyny" "philogynies" ;
-lin monogyny_N = mkN "monogyny" "monogynies" ;
-lin androgyny_N = mkN "androgyny" "androgynies" ;
-lin misogyny_N = mkN "misogyny" "misogynies" ;
-lin polygyny_N = mkN "polygyny" "polygynies" ;
-lin boy_N = mkN "boy" "boys" ;
-lin 'teddy boy_N' = mkN "teddy boy" "teddy boys" ; -- compound boy_N ;
-lin 'office-boy_N' = mkN "office-boy" "office-boys" ; -- compound boy_N ;
-lin 'whipping-boy_N' = mkN "whipping-boy" "whipping-boys" ; -- compound boy_N ;
-lin 'shop-boy_N' = mkN "shop-boy" "shop-boys" ; -- compound boy_N ;
-lin 'barrow-boy_N' = mkN "barrow-boy" "barrow-boys" ; -- compound boy_N ;
-lin sandboy_N = mkN "sandboy" "sandboys" ; -- compound boy_N ;
-lin pageboy_N = mkN "pageboy" "pageboys" ; -- compound boy_N ;
-lin stableboy_N = mkN "stableboy" "stableboys" ; -- compound boy_N ;
-lin homeboy_N = mkN "homeboy" "homeboys" ; -- compound boy_N ;
-lin highboy_N = mkN "highboy" "highboys" ; -- compound boy_N ;
-lin doughboy_N = mkN "doughboy" "doughboys" ; -- compound boy_N ;
-lin ploughboy_N = mkN "ploughboy" "ploughboys" ; -- compound boy_N ;
-lin linkboy_N = mkN "linkboy" "linkboys" ; -- compound boy_N ;
-lin tallboy_N = mkN "tallboy" "tallboys" ; -- compound boy_N ;
-lin bellboy_N = mkN "bellboy" "bellboys" ; -- compound boy_N ;
-lin schoolboy_N = mkN "schoolboy" "schoolboys" ; -- compound boy_N ;
-lin tomboy_N = mkN "tomboy" "tomboys" ; -- compound boy_N ;
-lin carboy_N = mkN "carboy" "carboys" ; -- compound boy_N ;
-lin paperboy_N = mkN "paperboy" "paperboys" ; -- compound boy_N ;
-lin choirboy_N = mkN "choirboy" "choirboys" ; -- compound boy_N ;
-lin busboy_N = mkN "busboy" "busboys" ; -- compound boy_N ;
-lin newsboy_N = mkN "newsboy" "newsboys" ; -- compound boy_N ;
-lin potboy_N = mkN "potboy" "potboys" ; -- compound boy_N ;
-lin hautboy_N = mkN "hautboy" "hautboys" ; -- compound boy_N ;
-lin cowboy_N = mkN "cowboy" "cowboys" ; -- compound boy_N ;
-lin lowboy_N = mkN "lowboy" "lowboys" ; -- compound boy_N ;
-lin plowboy_N = mkN "plowboy" "plowboys" ; -- compound boy_N ;
-lin dayboy_N = mkN "dayboy" "dayboys" ; -- compound boy_N ;
-lin playboy_N = mkN "playboy" "playboys" ; -- compound boy_N ;
-lin bullyboy_N = mkN "bullyboy" "bullyboys" ; -- compound boy_N ;
-lin decoy_N = mkN "decoy" "decoys" ;
-lin hobbledehoy_N = mkN "hobbledehoy" "hobbledehoys" ;
-lin joy_N = mkN "joy" "joys" ;
-lin killjoy_N = mkN "killjoy" "killjoys" ; -- compound joy_N ;
-lin saveloy_N = mkN "saveloy" "saveloys" ;
-lin alloy_N = mkN "alloy" "alloys" ;
-lin ploy_N = mkN "ploy" "ploys" ;
-lin employ_N = mkN "employ" "employs" ; -- compound ploy_N ;
-lin tannoy_N = mkN "tannoy" "tannoys" ;
-lin viceroy_N = mkN "viceroy" "viceroys" ;
-lin troy_N = mkN "troy" "troys" ;
-lin corduroy_N = mkN "corduroy" "corduroys" ;
-lin soy_N = mkN "soy" "soys" ;
-lin toy_N = mkN "toy" "toys" ;
-lin buoy_N = mkN "buoy" "buoys" ;
-lin 'life-buoy_N' = mkN "life-buoy" "life-buoys" ; -- compound buoy_N ;
-lin 'bell-buoy_N' = mkN "bell-buoy" "bell-buoys" ; -- compound buoy_N ;
-lin 'breeches-buoy_N' = mkN "breeches-buoy" "breeches-buoys" ; -- compound buoy_N ;
-lin lifebuoy_N = mkN "lifebuoy" "lifebuoys" ; -- compound buoy_N ;
-lin savoy_N = mkN "savoy" "savoys" ;
-lin envoy_N = mkN "envoy" "envoys" ;
-lin convoy_N = mkN "convoy" "convoys" ;
-lin therapy_N = mkN "therapy" "therapies" ;
-lin aromatherapy_N = mkN "aromatherapy" "aromatherapies" ; -- compound therapy_N ;
-lin psychotherapy_N = mkN "psychotherapy" "psychotherapies" ; -- compound therapy_N ;
-lin radiotherapy_N = mkN "radiotherapy" "radiotherapies" ; -- compound therapy_N ;
-lin heliotherapy_N = mkN "heliotherapy" "heliotherapies" ; -- compound therapy_N ;
-lin physiotherapy_N = mkN "physiotherapy" "physiotherapies" ; -- compound therapy_N ;
-lin chemotherapy_N = mkN "chemotherapy" "chemotherapies" ; -- compound therapy_N ;
-lin thermotherapy_N = mkN "thermotherapy" "thermotherapies" ; -- compound therapy_N ;
-lin hypnotherapy_N = mkN "hypnotherapy" "hypnotherapies" ; -- compound therapy_N ;
-lin immunotherapy_N = mkN "immunotherapy" "immunotherapies" ; -- compound therapy_N ;
-lin electrotherapy_N = mkN "electrotherapy" "electrotherapies" ; -- compound therapy_N ;
-lin chrysotherapy_N = mkN "chrysotherapy" "chrysotherapies" ; -- compound therapy_N ;
-lin phototherapy_N = mkN "phototherapy" "phototherapies" ; -- compound therapy_N ;
-lin phytotherapy_N = mkN "phytotherapy" "phytotherapies" ; -- compound therapy_N ;
-lin orthoepy_N = mkN "orthoepy" "orthoepies" ;
-lin kelpy_N = mkN "kelpy" "kelpies" ;
-lin scrumpy_N = mkN "scrumpy" "scrumpies" ;
-lin copy_N = mkN "copy" "copies" ;
-lin 'prompt-copy_N' = mkN "prompt-copy" "prompt-copies" ; -- compound copy_N ;
-lin photocopy_N = mkN "photocopy" "photocopies" ; -- compound copy_N ;
-lin telescopy_N = mkN "telescopy" "telescopies" ; -- compound copy_N ;
-lin sigmoidoscopy_N = mkN "sigmoidoscopy" "sigmoidoscopies" ; -- compound copy_N ;
-lin culdoscopy_N = mkN "culdoscopy" "culdoscopies" ; -- compound copy_N ;
-lin endoscopy_N = mkN "endoscopy" "endoscopies" ; -- compound copy_N ;
-lin radioscopy_N = mkN "radioscopy" "radioscopies" ; -- compound copy_N ;
-lin celioscopy_N = mkN "celioscopy" "celioscopies" ; -- compound copy_N ;
-lin gonioscopy_N = mkN "gonioscopy" "gonioscopies" ; -- compound copy_N ;
-lin ophthalmoscopy_N = mkN "ophthalmoscopy" "ophthalmoscopies" ; -- compound copy_N ;
-lin rhinoscopy_N = mkN "rhinoscopy" "rhinoscopies" ; -- compound copy_N ;
-lin colonoscopy_N = mkN "colonoscopy" "colonoscopies" ; -- compound copy_N ;
-lin laparoscopy_N = mkN "laparoscopy" "laparoscopies" ; -- compound copy_N ;
-lin microscopy_N = mkN "microscopy" "microscopies" ; -- compound copy_N ;
-lin hysteroscopy_N = mkN "hysteroscopy" "hysteroscopies" ; -- compound copy_N ;
-lin arthroscopy_N = mkN "arthroscopy" "arthroscopies" ; -- compound copy_N ;
-lin horoscopy_N = mkN "horoscopy" "horoscopies" ; -- compound copy_N ;
-lin fluoroscopy_N = mkN "fluoroscopy" "fluoroscopies" ; -- compound copy_N ;
-lin spectroscopy_N = mkN "spectroscopy" "spectroscopies" ; -- compound copy_N ;
-lin gastroscopy_N = mkN "gastroscopy" "gastroscopies" ; -- compound copy_N ;
-lin keratoscopy_N = mkN "keratoscopy" "keratoscopies" ; -- compound copy_N ;
-lin proctoscopy_N = mkN "proctoscopy" "proctoscopies" ; -- compound copy_N ;
-lin fetoscopy_N = mkN "fetoscopy" "fetoscopies" ; -- compound copy_N ;
-lin jalopy_N = mkN "jalopy" "jalopies" ;
-lin canopy_N = mkN "canopy" "canopies" ;
-lin lycanthropy_N = mkN "lycanthropy" "lycanthropies" ;
-lin philanthropy_N = mkN "philanthropy" "philanthropies" ;
-lin zoanthropy_N = mkN "zoanthropy" "zoanthropies" ;
-lin misanthropy_N = mkN "misanthropy" "misanthropies" ;
-lin allotropy_N = mkN "allotropy" "allotropies" ;
-lin isotropy_N = mkN "isotropy" "isotropies" ;
-lin anisotropy_N = mkN "anisotropy" "anisotropies" ; -- compound isotropy_N ;
-lin extropy_N = mkN "extropy" "extropies" ;
-lin nappy_N = mkN "nappy" "nappies" ;
-lin hippy_N = mkN "hippy" "hippies" ;
-lin poppy_N = mkN "poppy" "poppies" ;
-lin guppy_N = mkN "guppy" "guppies" ;
-lin puppy_N = mkN "puppy" "puppies" ;
-lin parthenocarpy_N = mkN "parthenocarpy" "parthenocarpies" ;
-lin harpy_N = mkN "harpy" "harpies" ;
-lin spy_N = mkN "spy" "spies" ;
-lin counterspy_N = mkN "counterspy" "counterspies" ; -- compound spy_N ;
-lin syllabary_N = mkN "syllabary" "syllabaries" ;
-lin peccary_N = mkN "peccary" "peccaries" ;
-lin apothecary_N = mkN "apothecary" "apothecaries" ;
-lin dromedary_N = mkN "dromedary" "dromedaries" ;
-lin lapidary_N = mkN "lapidary" "lapidaries" ;
-lin quandary_N = mkN "quandary" "quandaries" ;
-lin prebendary_N = mkN "prebendary" "prebendaries" ;
-lin secondary_N = mkN "secondary" "secondaries" ;
-lin boundary_N = mkN "boundary" "boundaries" ;
-lin deary_N = mkN "deary" "dearies" ;
-lin vagary_N = mkN "vagary" "vagaries" ;
-lin beggary_N = mkN "beggary" "beggaries" ;
-lin judiciary_N = mkN "judiciary" "judiciaries" ;
-lin beneficiary_N = mkN "beneficiary" "beneficiaries" ;
-lin justiciary_N = mkN "justiciary" "justiciaries" ;
-lin fiduciary_N = mkN "fiduciary" "fiduciaries" ;
-lin diary_N = mkN "diary" "diaries" ;
-lin intermediary_N = mkN "intermediary" "intermediaries" ; -- compound diary_N ;
-lin subsidiary_N = mkN "subsidiary" "subsidiaries" ; -- compound diary_N ;
-lin incendiary_N = mkN "incendiary" "incendiaries" ; -- compound diary_N ;
-lin stipendiary_N = mkN "stipendiary" "stipendiaries" ; -- compound diary_N ;
-lin auxiliary_N = mkN "auxiliary" "auxiliaries" ;
-lin apiary_N = mkN "apiary" "apiaries" ;
-lin topiary_N = mkN "topiary" "topiaries" ;
-lin friary_N = mkN "friary" "friaries" ;
-lin penitentiary_N = mkN "penitentiary" "penitentiaries" ;
-lin plenipotentiary_N = mkN "plenipotentiary" "plenipotentiaries" ;
-lin bestiary_N = mkN "bestiary" "bestiaries" ;
-lin aviary_N = mkN "aviary" "aviaries" ;
-lin breviary_N = mkN "breviary" "breviaries" ;
-lin salary_N = mkN "salary" "salaries" ;
-lin clary_N = mkN "clary" "claries" ;
-lin burglary_N = mkN "burglary" "burglaries" ;
-lin capillary_N = mkN "capillary" "capillaries" ;
-lin fritillary_N = mkN "fritillary" "fritillaries" ;
-lin corollary_N = mkN "corollary" "corollaries" ;
-lin vocabulary_N = mkN "vocabulary" "vocabularies" ;
-lin constabulary_N = mkN "constabulary" "constabularies" ;
-lin formulary_N = mkN "formulary" "formularies" ;
-lin rosemary_N = mkN "rosemary" "rosemaries" ;
-lin primary_N = mkN "primary" "primaries" ;
-lin summary_N = mkN "summary" "summaries" ;
-lin infirmary_N = mkN "infirmary" "infirmaries" ;
-lin costmary_N = mkN "costmary" "costmaries" ;
-lin decumary_N = mkN "decumary" "decumaries" ;
-lin canary_N = mkN "canary" "canaries" ;
-lin granary_N = mkN "granary" "granaries" ;
-lin mercenary_N = mkN "mercenary" "mercenaries" ;
-lin millenary_N = mkN "millenary" "millenaries" ;
-lin catenary_N = mkN "catenary" "catenaries" ;
-lin centenary_N = mkN "centenary" "centenaries" ;
-lin bicentenary_N = mkN "bicentenary" "bicentenaries" ; -- compound centenary_N ;
-lin quincentenary_N = mkN "quincentenary" "quincentenaries" ; -- compound centenary_N ;
-lin tercentenary_N = mkN "tercentenary" "tercentenaries" ; -- compound centenary_N ;
-lin quatercentenary_N = mkN "quatercentenary" "quatercentenaries" ; -- compound centenary_N ;
-lin binary_N = mkN "binary" "binaries" ;
-lin ordinary_N = mkN "ordinary" "ordinaries" ;
-lin consuetudinary_N = mkN "consuetudinary" "consuetudinaries" ;
-lin seminary_N = mkN "seminary" "seminaries" ;
-lin preliminary_N = mkN "preliminary" "preliminaries" ;
-lin luminary_N = mkN "luminary" "luminaries" ;
-lin antiphonary_N = mkN "antiphonary" "antiphonaries" ;
-lin legionary_N = mkN "legionary" "legionaries" ;
-lin visionary_N = mkN "visionary" "visionaries" ;
-lin missionary_N = mkN "missionary" "missionaries" ;
-lin reactionary_N = mkN "reactionary" "reactionaries" ;
-lin dictionary_N = mkN "dictionary" "dictionaries" ;
-lin functionary_N = mkN "functionary" "functionaries" ;
-lin 'counter-revolutionary_N' = mkN "counter-revolutionary" "counter-revolutionaries" ;
-lin coronary_N = mkN "coronary" "coronaries" ;
-lin library_N = mkN "library" "libraries" ;
-lin 'lending-library_N' = mkN "lending-library" "lending-libraries" ; -- compound library_N ;
-lin supernumerary_N = mkN "supernumerary" "supernumeraries" ;
-lin itinerary_N = mkN "itinerary" "itineraries" ;
-lin contemporary_N = mkN "contemporary" "contemporaries" ;
-lin contrary_N = mkN "contrary" "contraries" ;
-lin caravansary_N = mkN "caravansary" "caravansaries" ;
-lin dispensary_N = mkN "dispensary" "dispensaries" ;
-lin rosary_N = mkN "rosary" "rosaries" ;
-lin adversary_N = mkN "adversary" "adversaries" ;
-lin anniversary_N = mkN "anniversary" "anniversaries" ;
-lin bursary_N = mkN "bursary" "bursaries" ;
-lin accessary_N = mkN "accessary" "accessaries" ;
-lin necessary_N = mkN "necessary" "necessaries" ;
-lin pessary_N = mkN "pessary" "pessaries" ;
-lin emissary_N = mkN "emissary" "emissaries" ;
-lin commissary_N = mkN "commissary" "commissaries" ;
-lin janissary_N = mkN "janissary" "janissaries" ;
-lin glossary_N = mkN "glossary" "glossaries" ;
-lin mandatary_N = mkN "mandatary" "mandataries" ;
-lin nectary_N = mkN "nectary" "nectaries" ;
-lin dietary_N = mkN "dietary" "dietaries" ;
-lin secretary_N = mkN "secretary" "secretaries" ;
-lin undersecretary_N = mkN "undersecretary" "undersecretaries" ; -- compound secretary_N ;
-lin military_N = mkN "military" "militaries" ;
-lin paramilitary_N = mkN "paramilitary" "paramilitaries" ; -- compound military_N ;
-lin dignitary_N = mkN "dignitary" "dignitaries" ;
-lin pituitary_N = mkN "pituitary" "pituitaries" ;
-lin commentary_N = mkN "commentary" "commentaries" ;
-lin documentary_N = mkN "documentary" "documentaries" ;
-lin voluntary_N = mkN "voluntary" "voluntaries" ;
-lin notary_N = mkN "notary" "notaries" ;
-lin rotary_N = mkN "rotary" "rotaries" ;
-lin votary_N = mkN "votary" "votaries" ;
-lin tributary_N = mkN "tributary" "tributaries" ;
-lin distributary_N = mkN "distributary" "distributaries" ; -- compound tributary_N ;
-lin January_N = mkN "January" "Januaries" ;
-lin reliquary_N = mkN "reliquary" "reliquaries" ;
-lin antiquary_N = mkN "antiquary" "antiquaries" ;
-lin February_N = mkN "February" "Februaries" ;
-lin ossuary_N = mkN "ossuary" "ossuaries" ;
-lin statuary_N = mkN "statuary" "statuaries" ;
-lin actuary_N = mkN "actuary" "actuaries" ;
-lin sanctuary_N = mkN "sanctuary" "sanctuaries" ;
-lin usufructuary_N = mkN "usufructuary" "usufructuaries" ;
-lin obituary_N = mkN "obituary" "obituaries" ;
-lin voluptuary_N = mkN "voluptuary" "voluptuaries" ;
-lin mortuary_N = mkN "mortuary" "mortuaries" ;
-lin estuary_N = mkN "estuary" "estuaries" ;
-lin calvary_N = mkN "calvary" "calvaries" ;
-lin ovary_N = mkN "ovary" "ovaries" ;
-lin cassowary_N = mkN "cassowary" "cassowaries" ;
-lin cry_N = mkN "cry" "cries" ;
-lin 'war-cry_N' = mkN "war-cry" "war-cries" ; -- compound cry_N ;
-lin mimicry_N = mkN "mimicry" "mimicries" ; -- compound cry_N ;
-lin outcry_N = mkN "outcry" "outcries" ; -- compound cry_N ;
-lin dry_N = mkN "dry" "dries" ;
-lin ribaldry_N = mkN "ribaldry" "ribaldries" ; -- compound dry_N ;
-lin heraldry_N = mkN "heraldry" "heraldries" ; -- compound dry_N ;
-lin cuckoldry_N = mkN "cuckoldry" "cuckoldries" ; -- compound dry_N ;
-lin husbandry_N = mkN "husbandry" "husbandries" ; -- compound dry_N ;
-lin monandry_N = mkN "monandry" "monandries" ; -- compound dry_N ;
-lin polyandry_N = mkN "polyandry" "polyandries" ; -- compound dry_N ;
-lin laundry_N = mkN "laundry" "laundries" ; -- compound dry_N ;
-lin foundry_N = mkN "foundry" "foundries" ; -- compound dry_N ;
-lin 'bell-foundry_N' = mkN "bell-foundry" "bell-foundries" ; -- compound dry_N ;
-lin 'iron-foundry_N' = mkN "iron-foundry" "iron-foundries" ; -- compound dry_N ;
-lin wizardry_N = mkN "wizardry" "wizardries" ; -- compound dry_N ;
-lin bawdry_N = mkN "bawdry" "bawdries" ; -- compound dry_N ;
-lin aery_N = mkN "aery" "aeries" ;
-lin faery_N = mkN "faery" "faeries" ; -- notcompound aery_N ;
-lin jobbery_N = mkN "jobbery" "jobberies" ;
-lin snobbery_N = mkN "snobbery" "snobberies" ;
-lin robbery_N = mkN "robbery" "robberies" ;
-lin shrubbery_N = mkN "shrubbery" "shrubberies" ;
-lin bribery_N = mkN "bribery" "briberies" ;
-lin tracery_N = mkN "tracery" "traceries" ;
-lin chancery_N = mkN "chancery" "chanceries" ;
-lin grocery_N = mkN "grocery" "groceries" ;
-lin greengrocery_N = mkN "greengrocery" "greengroceries" ; -- compound grocery_N ;
-lin sorcery_N = mkN "sorcery" "sorceries" ;
-lin embroidery_N = mkN "embroidery" "embroideries" ;
-lin bindery_N = mkN "bindery" "binderies" ;
-lin bookbindery_N = mkN "bookbindery" "bookbinderies" ; -- compound bindery_N ;
-lin gaudery_N = mkN "gaudery" "gauderies" ;
-lin prudery_N = mkN "prudery" "pruderies" ;
-lin veery_N = mkN "veery" "veeries" ;
-lin puffery_N = mkN "puffery" "pufferies" ;
-lin midwifery_N = mkN "midwifery" "midwiferies" ;
-lin housewifery_N = mkN "housewifery" "housewiferies" ;
-lin imagery_N = mkN "imagery" "imageries" ;
-lin savagery_N = mkN "savagery" "savageries" ;
-lin drudgery_N = mkN "drudgery" "drudgeries" ;
-lin jaggery_N = mkN "jaggery" "jaggeries" ;
-lin waggery_N = mkN "waggery" "waggeries" ;
-lin piggery_N = mkN "piggery" "piggeries" ;
-lin buggery_N = mkN "buggery" "buggeries" ;
-lin thuggery_N = mkN "thuggery" "thuggeries" ;
-lin snuggery_N = mkN "snuggery" "snuggeries" ;
-lin orangery_N = mkN "orangery" "orangeries" ;
-lin ironmongery_N = mkN "ironmongery" "ironmongeries" ;
-lin forgery_N = mkN "forgery" "forgeries" ;
-lin surgery_N = mkN "surgery" "surgeries" ;
-lin psychosurgery_N = mkN "psychosurgery" "psychosurgeries" ; -- compound surgery_N ;
-lin chemosurgery_N = mkN "chemosurgery" "chemosurgeries" ; -- compound surgery_N ;
-lin microsurgery_N = mkN "microsurgery" "microsurgeries" ; -- compound surgery_N ;
-lin electrosurgery_N = mkN "electrosurgery" "electrosurgeries" ; -- compound surgery_N ;
-lin neurosurgery_N = mkN "neurosurgery" "neurosurgeries" ; -- compound surgery_N ;
-lin cryosurgery_N = mkN "cryosurgery" "cryosurgeries" ; -- compound surgery_N ;
-lin treachery_N = mkN "treachery" "treacheries" ;
-lin lechery_N = mkN "lechery" "lecheries" ;
-lin archery_N = mkN "archery" "archeries" ;
-lin hatchery_N = mkN "hatchery" "hatcheries" ;
-lin bitchery_N = mkN "bitchery" "bitcheries" ;
-lin witchery_N = mkN "witchery" "witcheries" ;
-lin bewitchery_N = mkN "bewitchery" "bewitcheries" ; -- compound witchery_N ;
-lin butchery_N = mkN "butchery" "butcheries" ;
-lin debauchery_N = mkN "debauchery" "debaucheries" ;
-lin periphery_N = mkN "periphery" "peripheries" ;
-lin haberdashery_N = mkN "haberdashery" "haberdasheries" ;
-lin fishery_N = mkN "fishery" "fisheries" ;
-lin 'pearl-fishery_N' = mkN "pearl-fishery" "pearl-fisheries" ; -- compound fishery_N ;
-lin tushery_N = mkN "tushery" "tusheries" ;
-lin colliery_N = mkN "colliery" "collieries" ;
-lin hosiery_N = mkN "hosiery" "hosieries" ;
-lin bakery_N = mkN "bakery" "bakeries" ;
-lin fakery_N = mkN "fakery" "fakeries" ;
-lin quackery_N = mkN "quackery" "quackeries" ;
-lin trickery_N = mkN "trickery" "trickeries" ;
-lin mockery_N = mkN "mockery" "mockeries" ;
-lin rockery_N = mkN "rockery" "rockeries" ;
-lin crockery_N = mkN "crockery" "crockeries" ; -- notcompound rockery_N ;
-lin cookery_N = mkN "cookery" "cookeries" ;
-lin rookery_N = mkN "rookery" "rookeries" ;
-lin 'jiggery-pokery_N' = mkN "jiggery-pokery" "jiggery-pokeries" ;
-lin saddlery_N = mkN "saddlery" "saddleries" ;
-lin chandlery_N = mkN "chandlery" "chandleries" ;
-lin celery_N = mkN "celery" "celeries" ;
-lin jugglery_N = mkN "jugglery" "juggleries" ;
-lin gallery_N = mkN "gallery" "galleries" ;
-lin 'picture-gallery_N' = mkN "picture-gallery" "picture-galleries" ; -- compound gallery_N ;
-lin 'whispering-gallery_N' = mkN "whispering-gallery" "whispering-galleries" ; -- compound gallery_N ;
-lin 'shooting-gallery_N' = mkN "shooting-gallery" "shooting-galleries" ; -- compound gallery_N ;
-lin 'press-gallery_N' = mkN "press-gallery" "press-galleries" ; -- compound gallery_N ;
-lin chancellery_N = mkN "chancellery" "chancelleries" ;
-lin jewellery_N = mkN "jewellery" "jewelleries" ;
-lin raillery_N = mkN "raillery" "railleries" ;
-lin artillery_N = mkN "artillery" "artilleries" ;
-lin distillery_N = mkN "distillery" "distilleries" ;
-lin drollery_N = mkN "drollery" "drolleries" ;
-lin scullery_N = mkN "scullery" "sculleries" ;
-lin cajolery_N = mkN "cajolery" "cajoleries" ;
-lin foolery_N = mkN "foolery" "fooleries" ;
-lin tomfoolery_N = mkN "tomfoolery" "tomfooleries" ; -- compound foolery_N ;
-lin cutlery_N = mkN "cutlery" "cutleries" ;
-lin creamery_N = mkN "creamery" "creameries" ;
-lin emery_N = mkN "emery" "emeries" ;
-lin flummery_N = mkN "flummery" "flummeries" ;
-lin mummery_N = mkN "mummery" "mummeries" ;
-lin perfumery_N = mkN "perfumery" "perfumeries" ;
-lin chicanery_N = mkN "chicanery" "chicaneries" ;
-lin deanery_N = mkN "deanery" "deaneries" ;
-lin scenery_N = mkN "scenery" "sceneries" ;
-lin greenery_N = mkN "greenery" "greeneries" ;
-lin finery_N = mkN "finery" "fineries" ;
-lin refinery_N = mkN "refinery" "refineries" ; -- compound finery_N ;
-lin 'sugar-refinery_N' = mkN "sugar-refinery" "sugar-refineries" ; -- compound finery_N ;
-lin enginery_N = mkN "enginery" "engineries" ;
-lin machinery_N = mkN "machinery" "machineries" ;
-lin millinery_N = mkN "millinery" "millineries" ;
-lin joinery_N = mkN "joinery" "joineries" ;
-lin vinery_N = mkN "vinery" "vineries" ;
-lin winery_N = mkN "winery" "wineries" ;
-lin cannery_N = mkN "cannery" "canneries" ;
-lin tannery_N = mkN "tannery" "tanneries" ;
-lin gunnery_N = mkN "gunnery" "gunneries" ;
-lin nunnery_N = mkN "nunnery" "nunneries" ;
-lin stationery_N = mkN "stationery" "stationeries" ;
-lin confectionery_N = mkN "confectionery" "confectioneries" ;
-lin buffoonery_N = mkN "buffoonery" "buffooneries" ;
-lin poltroonery_N = mkN "poltroonery" "poltrooneries" ;
-lin turnery_N = mkN "turnery" "turneries" ;
-lin apery_N = mkN "apery" "aperies" ;
-lin napery_N = mkN "napery" "naperies" ; -- notcompound apery_N ;
-lin drapery_N = mkN "drapery" "draperies" ; -- notcompound apery_N ;
-lin popery_N = mkN "popery" "poperies" ;
-lin frippery_N = mkN "frippery" "fripperies" ;
-lin orrery_N = mkN "orrery" "orreries" ;
-lin lamasery_N = mkN "lamasery" "lamaseries" ;
-lin misery_N = mkN "misery" "miseries" ;
-lin nursery_N = mkN "nursery" "nurseries" ;
-lin phylactery_N = mkN "phylactery" "phylacteries" ;
-lin cemetery_N = mkN "cemetery" "cemeteries" ;
-lin psaltery_N = mkN "psaltery" "psalteries" ;
-lin adultery_N = mkN "adultery" "adulteries" ;
-lin mesentery_N = mkN "mesentery" "mesenteries" ;
-lin dysentery_N = mkN "dysentery" "dysenteries" ;
-lin effrontery_N = mkN "effrontery" "effronteries" ;
-lin artery_N = mkN "artery" "arteries" ;
-lin mastery_N = mkN "mastery" "masteries" ;
-lin monastery_N = mkN "monastery" "monasteries" ;
-lin phrontistery_N = mkN "phrontistery" "phrontisteries" ;
-lin upholstery_N = mkN "upholstery" "upholsteries" ;
-lin mystery_N = mkN "mystery" "mysteries" ;
-lin battery_N = mkN "battery" "batteries" ;
-lin flattery_N = mkN "flattery" "flatteries" ;
-lin lottery_N = mkN "lottery" "lotteries" ;
-lin pottery_N = mkN "pottery" "potteries" ;
-lin buttery_N = mkN "buttery" "butteries" ;
-lin cautery_N = mkN "cautery" "cauteries" ;
-lin thermocautery_N = mkN "thermocautery" "thermocauteries" ; -- compound cautery_N ;
-lin electrocautery_N = mkN "electrocautery" "electrocauteries" ; -- compound cautery_N ;
-lin cryocautery_N = mkN "cryocautery" "cryocauteries" ; -- compound cautery_N ;
-lin presbytery_N = mkN "presbytery" "presbyteries" ;
-lin demagoguery_N = mkN "demagoguery" "demagogueries" ;
-lin roguery_N = mkN "roguery" "rogueries" ;
-lin query_N = mkN "query" "queries" ;
-lin slavery_N = mkN "slavery" "slaveries" ;
-lin knavery_N = mkN "knavery" "knaveries" ;
-lin bravery_N = mkN "bravery" "braveries" ;
-lin thievery_N = mkN "thievery" "thieveries" ;
-lin livery_N = mkN "livery" "liveries" ;
-lin delivery_N = mkN "delivery" "deliveries" ; -- compound livery_N ;
-lin recovery_N = mkN "recovery" "recoveries" ;
-lin discovery_N = mkN "discovery" "discoveries" ;
-lin rediscovery_N = mkN "rediscovery" "rediscoveries" ; -- compound discovery_N ;
-lin brewery_N = mkN "brewery" "breweries" ;
-lin microbrewery_N = mkN "microbrewery" "microbreweries" ; -- compound brewery_N ;
-lin belfry_N = mkN "belfry" "belfries" ;
-lin dairy_N = mkN "dairy" "dairies" ;
-lin fairy_N = mkN "fairy" "fairies" ;
-lin expiry_N = mkN "expiry" "expiries" ;
-lin enquiry_N = mkN "enquiry" "enquiries" ;
-lin inquiry_N = mkN "inquiry" "inquiries" ;
-lin gimmickry_N = mkN "gimmickry" "gimmickries" ;
-lin cavalry_N = mkN "cavalry" "cavalries" ;
-lin chivalry_N = mkN "chivalry" "chivalries" ;
-lin rivalry_N = mkN "rivalry" "rivalries" ;
-lin hostelry_N = mkN "hostelry" "hostelries" ;
-lin revelry_N = mkN "revelry" "revelries" ;
-lin jewelry_N = mkN "jewelry" "jewelries" ;
-lin devilry_N = mkN "devilry" "devilries" ;
-lin daredevilry_N = mkN "daredevilry" "daredevilries" ; -- compound devilry_N ;
-lin yeomanry_N = mkN "yeomanry" "yeomanries" ;
-lin henry_N = mkN "henry" "henries" ;
-lin abhenry_N = mkN "abhenry" "abhenries" ; -- compound henry_N ;
-lin millihenry_N = mkN "millihenry" "millihenries" ; -- compound henry_N ;
-lin citizenry_N = mkN "citizenry" "citizenries" ;
-lin archdeaconry_N = mkN "archdeaconry" "archdeaconries" ;
-lin falconry_N = mkN "falconry" "falconries" ;
-lin weaponry_N = mkN "weaponry" "weaponries" ;
-lin heronry_N = mkN "heronry" "heronries" ;
-lin masonry_N = mkN "masonry" "masonries" ;
-lin freemasonry_N = mkN "freemasonry" "freemasonries" ; -- compound masonry_N ;
-lin blazonry_N = mkN "blazonry" "blazonries" ;
-lin chicory_N = mkN "chicory" "chicories" ;
-lin dory_N = mkN "dory" "dories" ;
-lin theory_N = mkN "theory" "theories" ;
-lin allegory_N = mkN "allegory" "allegories" ;
-lin beaugregory_N = mkN "beaugregory" "beaugregories" ;
-lin category_N = mkN "category" "categories" ;
-lin amphigory_N = mkN "amphigory" "amphigories" ;
-lin seigniory_N = mkN "seigniory" "seigniories" ;
-lin priory_N = mkN "priory" "priories" ;
-lin hickory_N = mkN "hickory" "hickories" ;
-lin lory_N = mkN "lory" "lories" ;
-lin glory_N = mkN "glory" "glories" ; -- notcompound lory_N ;
-lin 'morning-glory_N' = mkN "morning-glory" "morning-glories" ; -- compound lory_N ;
-lin vainglory_N = mkN "vainglory" "vainglories" ; -- compound lory_N ;
-lin pillory_N = mkN "pillory" "pillories" ; -- compound lory_N ;
-lin memory_N = mkN "memory" "memories" ;
-lin armory_N = mkN "armory" "armories" ;
-lin homospory_N = mkN "homospory" "homospories" ;
-lin heterospory_N = mkN "heterospory" "heterospories" ;
-lin advisory_N = mkN "advisory" "advisories" ;
-lin suspensory_N = mkN "suspensory" "suspensories" ;
-lin accessory_N = mkN "accessory" "accessories" ;
-lin tory_N = mkN "tory" "tories" ;
-lin mandatory_N = mkN "mandatory" "mandatories" ; -- compound tory_N ;
-lin feudatory_N = mkN "feudatory" "feudatories" ; -- compound tory_N ;
-lin purgatory_N = mkN "purgatory" "purgatories" ; -- compound tory_N ;
-lin depilatory_N = mkN "depilatory" "depilatories" ; -- compound tory_N ;
-lin ambulatory_N = mkN "ambulatory" "ambulatories" ; -- compound tory_N ;
-lin crematory_N = mkN "crematory" "crematories" ; -- compound tory_N ;
-lin reformatory_N = mkN "reformatory" "reformatories" ; -- compound tory_N ;
-lin signatory_N = mkN "signatory" "signatories" ; -- compound tory_N ;
-lin cosignatory_N = mkN "cosignatory" "cosignatories" ; -- compound tory_N ;
-lin oratory_N = mkN "oratory" "oratories" ; -- compound tory_N ;
-lin laboratory_N = mkN "laboratory" "laboratories" ; -- compound tory_N ;
-lin lavatory_N = mkN "lavatory" "lavatories" ; -- compound tory_N ;
-lin observatory_N = mkN "observatory" "observatories" ; -- compound tory_N ;
-lin conservatory_N = mkN "conservatory" "conservatories" ; -- compound tory_N ;
-lin factory_N = mkN "factory" "factories" ; -- compound tory_N ;
-lin refectory_N = mkN "refectory" "refectories" ; -- compound tory_N ;
-lin trajectory_N = mkN "trajectory" "trajectories" ; -- compound tory_N ;
-lin rectory_N = mkN "rectory" "rectories" ; -- compound tory_N ;
-lin directory_N = mkN "directory" "directories" ; -- compound tory_N ;
-lin subdirectory_N = mkN "subdirectory" "subdirectories" ; -- compound tory_N ;
-lin contradictory_N = mkN "contradictory" "contradictories" ; -- compound tory_N ;
-lin victory_N = mkN "victory" "victories" ; -- compound tory_N ;
-lin pellitory_N = mkN "pellitory" "pellitories" ; -- compound tory_N ;
-lin vomitory_N = mkN "vomitory" "vomitories" ; -- compound tory_N ;
-lin dormitory_N = mkN "dormitory" "dormitories" ; -- compound tory_N ;
-lin fumitory_N = mkN "fumitory" "fumitories" ; -- compound tory_N ;
-lin territory_N = mkN "territory" "territories" ; -- compound tory_N ;
-lin depository_N = mkN "depository" "depositories" ; -- compound tory_N ;
-lin repository_N = mkN "repository" "repositories" ; -- compound tory_N ;
-lin suppository_N = mkN "suppository" "suppositories" ; -- compound tory_N ;
-lin inventory_N = mkN "inventory" "inventories" ; -- compound tory_N ;
-lin promontory_N = mkN "promontory" "promontories" ; -- compound tory_N ;
-lin offertory_N = mkN "offertory" "offertories" ; -- compound tory_N ;
-lin repertory_N = mkN "repertory" "repertories" ; -- compound tory_N ;
-lin story_N = mkN "story" "stories" ; -- notcompound tory_N ;
-lin 'love-story_N' = mkN "love-story" "love-stories" ; -- compound tory_N ;
-lin clerestory_N = mkN "clerestory" "clerestories" ; -- compound tory_N ;
-lin history_N = mkN "history" "histories" ; -- compound tory_N ;
-lin 'case-history_N' = mkN "case-history" "case-histories" ; -- compound tory_N ;
-lin prehistory_N = mkN "prehistory" "prehistories" ; -- compound tory_N ;
-lin protohistory_N = mkN "protohistory" "protohistories" ; -- compound tory_N ;
-lin consistory_N = mkN "consistory" "consistories" ; -- compound tory_N ;
-lin savory_N = mkN "savory" "savories" ;
-lin ivory_N = mkN "ivory" "ivories" ;
-lin bishopry_N = mkN "bishopry" "bishopries" ;
-lin carry_N = mkN "carry" "carries" ;
-lin glengarry_N = mkN "glengarry" "glengarries" ;
-lin gharry_N = mkN "gharry" "gharries" ;
-lin parry_N = mkN "parry" "parries" ;
-lin quarry_N = mkN "quarry" "quarries" ;
-lin berry_N = mkN "berry" "berries" ;
-lin 'spindle-berry_N' = mkN "spindle-berry" "spindle-berries" ; -- compound berry_N ;
-lin 'rowan-berry_N' = mkN "rowan-berry" "rowan-berries" ; -- compound berry_N ;
-lin teaberry_N = mkN "teaberry" "teaberries" ; -- compound berry_N ;
-lin chinaberry_N = mkN "chinaberry" "chinaberries" ; -- compound berry_N ;
-lin redberry_N = mkN "redberry" "redberries" ; -- compound berry_N ;
-lin bloodberry_N = mkN "bloodberry" "bloodberries" ; -- compound berry_N ;
-lin cloudberry_N = mkN "cloudberry" "cloudberries" ; -- compound berry_N ;
-lin blaeberry_N = mkN "blaeberry" "blaeberries" ; -- compound berry_N ;
-lin coffeeberry_N = mkN "coffeeberry" "coffeeberries" ; -- compound berry_N ;
-lin partridgeberry_N = mkN "partridgeberry" "partridgeberries" ; -- compound berry_N ;
-lin maleberry_N = mkN "maleberry" "maleberries" ; -- compound berry_N ;
-lin dangleberry_N = mkN "dangleberry" "dangleberries" ; -- compound berry_N ;
-lin huckleberry_N = mkN "huckleberry" "huckleberries" ; -- compound berry_N ;
-lin farkleberry_N = mkN "farkleberry" "farkleberries" ; -- compound berry_N ;
-lin baneberry_N = mkN "baneberry" "baneberries" ; -- compound berry_N ;
-lin wineberry_N = mkN "wineberry" "wineberries" ; -- compound berry_N ;
-lin gooseberry_N = mkN "gooseberry" "gooseberries" ; -- compound berry_N ;
-lin grouseberry_N = mkN "grouseberry" "grouseberries" ; -- compound berry_N ;
-lin blueberry_N = mkN "blueberry" "blueberries" ; -- compound berry_N ;
-lin hagberry_N = mkN "hagberry" "hagberries" ; -- compound berry_N ;
-lin bunchberry_N = mkN "bunchberry" "bunchberries" ; -- compound berry_N ;
-lin hackberry_N = mkN "hackberry" "hackberries" ; -- compound berry_N ;
-lin blackberry_N = mkN "blackberry" "blackberries" ; -- compound berry_N ;
-lin inkberry_N = mkN "inkberry" "inkberries" ; -- compound berry_N ;
-lin coralberry_N = mkN "coralberry" "coralberries" ; -- compound berry_N ;
-lin bilberry_N = mkN "bilberry" "bilberries" ; -- compound berry_N ;
-lin marlberry_N = mkN "marlberry" "marlberries" ; -- compound berry_N ;
-lin mulberry_N = mkN "mulberry" "mulberries" ; -- compound berry_N ;
-lin longanberry_N = mkN "longanberry" "longanberries" ; -- compound berry_N ;
-lin loganberry_N = mkN "loganberry" "loganberries" ; -- compound berry_N ;
-lin cranberry_N = mkN "cranberry" "cranberries" ; -- compound berry_N ;
-lin rowanberry_N = mkN "rowanberry" "rowanberries" ; -- compound berry_N ;
-lin boysenberry_N = mkN "boysenberry" "boysenberries" ; -- compound berry_N ;
-lin twinberry_N = mkN "twinberry" "twinberries" ; -- compound berry_N ;
-lin lingonberry_N = mkN "lingonberry" "lingonberries" ; -- compound berry_N ;
-lin salmonberry_N = mkN "salmonberry" "salmonberries" ; -- compound berry_N ;
-lin soapberry_N = mkN "soapberry" "soapberries" ; -- compound berry_N ;
-lin raspberry_N = mkN "raspberry" "raspberries" ; -- compound berry_N ;
-lin barberry_N = mkN "barberry" "barberries" ; -- compound berry_N ;
-lin bearberry_N = mkN "bearberry" "bearberries" ; -- compound berry_N ;
-lin sugarberry_N = mkN "sugarberry" "sugarberries" ; -- compound berry_N ;
-lin elderberry_N = mkN "elderberry" "elderberries" ; -- compound berry_N ;
-lin deerberry_N = mkN "deerberry" "deerberries" ; -- compound berry_N ;
-lin silverberry_N = mkN "silverberry" "silverberries" ; -- compound berry_N ;
-lin burberry_N = mkN "burberry" "burberries" ; -- compound berry_N ;
-lin strawberry_N = mkN "strawberry" "strawberries" ; -- compound berry_N ;
-lin dewberry_N = mkN "dewberry" "dewberries" ; -- compound berry_N ;
-lin cowberry_N = mkN "cowberry" "cowberries" ; -- compound berry_N ;
-lin snowberry_N = mkN "snowberry" "snowberries" ; -- compound berry_N ;
-lin crowberry_N = mkN "crowberry" "crowberries" ; -- compound berry_N ;
-lin bayberry_N = mkN "bayberry" "bayberries" ; -- compound berry_N ;
-lin ferry_N = mkN "ferry" "ferries" ;
-lin 'car-ferry_N' = mkN "car-ferry" "car-ferries" ; -- compound ferry_N ;
-lin cherry_N = mkN "cherry" "cherries" ;
-lin chokecherry_N = mkN "chokecherry" "chokecherries" ; -- compound cherry_N ;
-lin sherry_N = mkN "sherry" "sherries" ;
-lin wherry_N = mkN "wherry" "wherries" ;
-lin jerry_N = mkN "jerry" "jerries" ;
-lin perry_N = mkN "perry" "perries" ;
-lin terry_N = mkN "terry" "terries" ;
-lin equerry_N = mkN "equerry" "equerries" ;
-lin lorry_N = mkN "lorry" "lorries" ;
-lin worry_N = mkN "worry" "worries" ;
-lin curry_N = mkN "curry" "curries" ;
-lin scurry_N = mkN "scurry" "scurries" ; -- notcompound curry_N ;
-lin hurry_N = mkN "hurry" "hurries" ;
-lin flurry_N = mkN "flurry" "flurries" ;
-lin slurry_N = mkN "slurry" "slurries" ;
-lin try_N = mkN "try" "tries" ;
-lin podiatry_N = mkN "podiatry" "podiatries" ; -- compound try_N ;
-lin psychiatry_N = mkN "psychiatry" "psychiatries" ; -- compound try_N ;
-lin neuropsychiatry_N = mkN "neuropsychiatry" "neuropsychiatries" ; -- compound try_N ;
-lin diabolatry_N = mkN "diabolatry" "diabolatries" ; -- compound try_N ;
-lin symbolatry_N = mkN "symbolatry" "symbolatries" ; -- compound try_N ;
-lin verbolatry_N = mkN "verbolatry" "verbolatries" ; -- compound try_N ;
-lin idolatry_N = mkN "idolatry" "idolatries" ; -- compound try_N ;
-lin bardolatry_N = mkN "bardolatry" "bardolatries" ; -- compound try_N ;
-lin lordolatry_N = mkN "lordolatry" "lordolatries" ; -- compound try_N ;
-lin gyneolatry_N = mkN "gyneolatry" "gyneolatries" ; -- compound try_N ;
-lin idiolatry_N = mkN "idiolatry" "idiolatries" ; -- compound try_N ;
-lin hagiolatry_N = mkN "hagiolatry" "hagiolatries" ; -- compound try_N ;
-lin ophiolatry_N = mkN "ophiolatry" "ophiolatries" ; -- compound try_N ;
-lin bibliolatry_N = mkN "bibliolatry" "bibliolatries" ; -- compound try_N ;
-lin heliolatry_N = mkN "heliolatry" "heliolatries" ; -- compound try_N ;
-lin cosmolatry_N = mkN "cosmolatry" "cosmolatries" ; -- compound try_N ;
-lin iconolatry_N = mkN "iconolatry" "iconolatries" ; -- compound try_N ;
-lin monolatry_N = mkN "monolatry" "monolatries" ; -- compound try_N ;
-lin zoolatry_N = mkN "zoolatry" "zoolatries" ; -- compound try_N ;
-lin anthropolatry_N = mkN "anthropolatry" "anthropolatries" ; -- compound try_N ;
-lin topolatry_N = mkN "topolatry" "topolatries" ; -- compound try_N ;
-lin arborolatry_N = mkN "arborolatry" "arborolatries" ; -- compound try_N ;
-lin astrolatry_N = mkN "astrolatry" "astrolatries" ; -- compound try_N ;
-lin pyrolatry_N = mkN "pyrolatry" "pyrolatries" ; -- compound try_N ;
-lin thaumatolatry_N = mkN "thaumatolatry" "thaumatolatries" ; -- compound try_N ;
-lin ichthyolatry_N = mkN "ichthyolatry" "ichthyolatries" ; -- compound try_N ;
-lin sympatry_N = mkN "sympatry" "sympatries" ; -- compound try_N ;
-lin allopatry_N = mkN "allopatry" "allopatries" ; -- compound try_N ;
-lin barratry_N = mkN "barratry" "barratries" ; -- compound try_N ;
-lin gadgetry_N = mkN "gadgetry" "gadgetries" ; -- compound try_N ;
-lin rocketry_N = mkN "rocketry" "rocketries" ; -- compound try_N ;
-lin trinketry_N = mkN "trinketry" "trinketries" ; -- compound try_N ;
-lin basketry_N = mkN "basketry" "basketries" ; -- compound try_N ;
-lin musketry_N = mkN "musketry" "musketries" ; -- compound try_N ;
-lin toiletry_N = mkN "toiletry" "toiletries" ; -- compound try_N ;
-lin telemetry_N = mkN "telemetry" "telemetries" ; -- compound try_N ;
-lin acidimetry_N = mkN "acidimetry" "acidimetries" ; -- compound try_N ;
-lin alkalimetry_N = mkN "alkalimetry" "alkalimetries" ; -- compound try_N ;
-lin calorimetry_N = mkN "calorimetry" "calorimetries" ; -- compound try_N ;
-lin colorimetry_N = mkN "colorimetry" "colorimetries" ; -- compound try_N ;
-lin dosimetry_N = mkN "dosimetry" "dosimetries" ; -- compound try_N ;
-lin thermogravimetry_N = mkN "thermogravimetry" "thermogravimetries" ; -- compound try_N ;
-lin pelvimetry_N = mkN "pelvimetry" "pelvimetries" ; -- compound try_N ;
-lin symmetry_N = mkN "symmetry" "symmetries" ; -- compound try_N ;
-lin asymmetry_N = mkN "asymmetry" "asymmetries" ; -- compound try_N ;
-lin supersymmetry_N = mkN "supersymmetry" "supersymmetries" ; -- compound try_N ;
-lin viscometry_N = mkN "viscometry" "viscometries" ; -- compound try_N ;
-lin geometry_N = mkN "geometry" "geometries" ; -- compound try_N ;
-lin algometry_N = mkN "algometry" "algometries" ; -- compound try_N ;
-lin psychometry_N = mkN "psychometry" "psychometries" ; -- compound try_N ;
-lin sociometry_N = mkN "sociometry" "sociometries" ; -- compound try_N ;
-lin audiometry_N = mkN "audiometry" "audiometries" ; -- compound try_N ;
-lin stoichiometry_N = mkN "stoichiometry" "stoichiometries" ; -- compound try_N ;
-lin craniometry_N = mkN "craniometry" "craniometries" ; -- compound try_N ;
-lin cephalometry_N = mkN "cephalometry" "cephalometries" ; -- compound try_N ;
-lin allometry_N = mkN "allometry" "allometries" ; -- compound try_N ;
-lin anemometry_N = mkN "anemometry" "anemometries" ; -- compound try_N ;
-lin thermometry_N = mkN "thermometry" "thermometries" ; -- compound try_N ;
-lin actinometry_N = mkN "actinometry" "actinometries" ; -- compound try_N ;
-lin trigonometry_N = mkN "trigonometry" "trigonometries" ; -- compound try_N ;
-lin tonometry_N = mkN "tonometry" "tonometries" ; -- compound try_N ;
-lin anthropometry_N = mkN "anthropometry" "anthropometries" ; -- compound try_N ;
-lin micrometry_N = mkN "micrometry" "micrometries" ; -- compound try_N ;
-lin hydrometry_N = mkN "hydrometry" "hydrometries" ; -- compound try_N ;
-lin spirometry_N = mkN "spirometry" "spirometries" ; -- compound try_N ;
-lin astrometry_N = mkN "astrometry" "astrometries" ; -- compound try_N ;
-lin isometry_N = mkN "isometry" "isometries" ; -- compound try_N ;
-lin hypsometry_N = mkN "hypsometry" "hypsometries" ; -- compound try_N ;
-lin fetometry_N = mkN "fetometry" "fetometries" ; -- compound try_N ;
-lin densitometry_N = mkN "densitometry" "densitometries" ; -- compound try_N ;
-lin photometry_N = mkN "photometry" "photometries" ; -- compound try_N ;
-lin cytophotometry_N = mkN "cytophotometry" "cytophotometries" ; -- compound try_N ;
-lin optometry_N = mkN "optometry" "optometries" ; -- compound try_N ;
-lin bathymetry_N = mkN "bathymetry" "bathymetries" ; -- compound try_N ;
-lin poetry_N = mkN "poetry" "poetries" ; -- compound try_N ;
-lin puppetry_N = mkN "puppetry" "puppetries" ; -- compound try_N ;
-lin coquetry_N = mkN "coquetry" "coquetries" ; -- compound try_N ;
-lin marquetry_N = mkN "marquetry" "marquetries" ; -- compound try_N ;
-lin parquetry_N = mkN "parquetry" "parquetries" ; -- compound try_N ;
-lin banditry_N = mkN "banditry" "banditries" ; -- compound try_N ;
-lin circuitry_N = mkN "circuitry" "circuitries" ; -- compound try_N ;
-lin deviltry_N = mkN "deviltry" "deviltries" ; -- compound try_N ;
-lin poultry_N = mkN "poultry" "poultries" ; -- compound try_N ;
-lin pedantry_N = mkN "pedantry" "pedantries" ; -- compound try_N ;
-lin pageantry_N = mkN "pageantry" "pageantries" ; -- compound try_N ;
-lin infantry_N = mkN "infantry" "infantries" ; -- compound try_N ;
-lin gantry_N = mkN "gantry" "gantries" ; -- compound try_N ;
-lin chantry_N = mkN "chantry" "chantries" ; -- compound try_N ;
-lin gallantry_N = mkN "gallantry" "gallantries" ; -- compound try_N ;
-lin tenantry_N = mkN "tenantry" "tenantries" ; -- compound try_N ;
-lin pantry_N = mkN "pantry" "pantries" ; -- compound try_N ;
-lin pleasantry_N = mkN "pleasantry" "pleasantries" ; -- compound try_N ;
-lin peasantry_N = mkN "peasantry" "peasantries" ; -- compound try_N ;
-lin entry_N = mkN "entry" "entries" ; -- compound try_N ;
-lin 'double-entry_N' = mkN "double-entry" "double-entries" ; -- compound try_N ;
-lin 're-entry_N' = mkN "re-entry" "re-entries" ; -- compound try_N ;
-lin reentry_N = mkN "reentry" "reentries" ; -- compound try_N ;
-lin carpentry_N = mkN "carpentry" "carpentries" ; -- compound try_N ;
-lin sentry_N = mkN "sentry" "sentries" ; -- compound try_N ;
-lin country_N = mkN "country" "countries" ; -- compound try_N ;
-lin bigotry_N = mkN "bigotry" "bigotries" ; -- compound try_N ;
-lin zealotry_N = mkN "zealotry" "zealotries" ; -- compound try_N ;
-lin pastry_N = mkN "pastry" "pastries" ; -- compound try_N ;
-lin ancestry_N = mkN "ancestry" "ancestries" ; -- compound try_N ;
-lin tapestry_N = mkN "tapestry" "tapestries" ; -- compound try_N ;
-lin forestry_N = mkN "forestry" "forestries" ; -- compound try_N ;
-lin vestry_N = mkN "vestry" "vestries" ; -- compound try_N ;
-lin registry_N = mkN "registry" "registries" ; -- compound try_N ;
-lin sophistry_N = mkN "sophistry" "sophistries" ; -- compound try_N ;
-lin chemistry_N = mkN "chemistry" "chemistries" ; -- compound try_N ;
-lin geochemistry_N = mkN "geochemistry" "geochemistries" ; -- compound try_N ;
-lin biochemistry_N = mkN "biochemistry" "biochemistries" ; -- compound try_N ;
-lin radiochemistry_N = mkN "radiochemistry" "radiochemistries" ; -- compound try_N ;
-lin thermochemistry_N = mkN "thermochemistry" "thermochemistries" ; -- compound try_N ;
-lin immunochemistry_N = mkN "immunochemistry" "immunochemistries" ; -- compound try_N ;
-lin electrochemistry_N = mkN "electrochemistry" "electrochemistries" ; -- compound try_N ;
-lin femtochemistry_N = mkN "femtochemistry" "femtochemistries" ; -- compound try_N ;
-lin photochemistry_N = mkN "photochemistry" "photochemistries" ; -- compound try_N ;
-lin immunohistochemistry_N = mkN "immunohistochemistry" "immunohistochemistries" ; -- compound try_N ;
-lin phytochemistry_N = mkN "phytochemistry" "phytochemistries" ; -- compound try_N ;
-lin palmistry_N = mkN "palmistry" "palmistries" ; -- compound try_N ;
-lin ministry_N = mkN "ministry" "ministries" ; -- compound try_N ;
-lin dentistry_N = mkN "dentistry" "dentistries" ; -- compound try_N ;
-lin artistry_N = mkN "artistry" "artistries" ; -- compound try_N ;
-lin casuistry_N = mkN "casuistry" "casuistries" ; -- compound try_N ;
-lin industry_N = mkN "industry" "industries" ; -- compound try_N ;
-lin saury_N = mkN "saury" "sauries" ;
-lin centaury_N = mkN "centaury" "centauries" ;
-lin mercury_N = mkN "mercury" "mercuries" ;
-lin seigneury_N = mkN "seigneury" "seigneuries" ;
-lin fury_N = mkN "fury" "furies" ;
-lin augury_N = mkN "augury" "auguries" ;
-lin jury_N = mkN "jury" "juries" ;
-lin injury_N = mkN "injury" "injuries" ; -- compound jury_N ;
-lin perjury_N = mkN "perjury" "perjuries" ; -- compound jury_N ;
-lin penury_N = mkN "penury" "penuries" ;
-lin armoury_N = mkN "armoury" "armouries" ;
-lin savoury_N = mkN "savoury" "savouries" ;
-lin treasury_N = mkN "treasury" "treasuries" ;
-lin subtreasury_N = mkN "subtreasury" "subtreasuries" ; -- compound treasury_N ;
-lin usury_N = mkN "usury" "usuries" ;
-lin century_N = mkN "century" "centuries" ;
-lin luxury_N = mkN "luxury" "luxuries" ;
-lin outlawry_N = mkN "outlawry" "outlawries" ;
-lin dowry_N = mkN "dowry" "dowries" ;
-lin eyry_N = mkN "eyry" "eyries" ;
-lin porphyry_N = mkN "porphyry" "porphyries" ;
-lin revolutionary_N = mkN "revolutionary" "revolutionarys" ;
-lin speakeasy_N = mkN "speakeasy" "speakeasies" ;
-lin idiosyncrasy_N = mkN "idiosyncrasy" "idiosyncrasies" ;
-lin fantasy_N = mkN "fantasy" "fantasies" ;
-lin phantasy_N = mkN "phantasy" "phantasies" ;
-lin ecstasy_N = mkN "ecstasy" "ecstasies" ;
-lin apostasy_N = mkN "apostasy" "apostasies" ;
-lin isostasy_N = mkN "isostasy" "isostasies" ;
-lin geodesy_N = mkN "geodesy" "geodesies" ;
-lin poesy_N = mkN "poesy" "poesies" ;
-lin heresy_N = mkN "heresy" "heresies" ;
-lin courtesy_N = mkN "courtesy" "courtesies" ;
-lin discourtesy_N = mkN "discourtesy" "discourtesies" ; -- compound courtesy_N ;
-lin daisy_N = mkN "daisy" "daisies" ;
-lin hypocrisy_N = mkN "hypocrisy" "hypocrisies" ;
-lin pleurisy_N = mkN "pleurisy" "pleurisies" ;
-lin palsy_N = mkN "palsy" "palsies" ;
-lin minstrelsy_N = mkN "minstrelsy" "minstrelsies" ;
-lin whimsy_N = mkN "whimsy" "whimsies" ;
-lin flimsy_N = mkN "flimsy" "flimsies" ;
-lin pansy_N = mkN "pansy" "pansies" ;
-lin tansy_N = mkN "tansy" "tansies" ;
-lin quinsy_N = mkN "quinsy" "quinsies" ;
-lin cosy_N = mkN "cosy" "cosies" ;
-lin 'tea-cosy_N' = mkN "tea-cosy" "tea-cosies" ; -- compound cosy_N ;
-lin argosy_N = mkN "argosy" "argosies" ;
-lin posy_N = mkN "posy" "posies" ;
-lin leprosy_N = mkN "leprosy" "leprosies" ;
-lin catalepsy_N = mkN "catalepsy" "catalepsies" ;
-lin hysterocatalepsy_N = mkN "hysterocatalepsy" "hysterocatalepsies" ; -- compound catalepsy_N ;
-lin epilepsy_N = mkN "epilepsy" "epilepsies" ;
-lin narcolepsy_N = mkN "narcolepsy" "narcolepsies" ;
-lin nympholepsy_N = mkN "nympholepsy" "nympholepsies" ;
-lin gipsy_N = mkN "gipsy" "gipsies" ;
-lin biopsy_N = mkN "biopsy" "biopsies" ;
-lin dropsy_N = mkN "dropsy" "dropsies" ;
-lin autopsy_N = mkN "autopsy" "autopsies" ;
-lin gypsy_N = mkN "gypsy" "gypsies" ;
-lin controversy_N = mkN "controversy" "controversies" ;
-lin embassy_N = mkN "embassy" "embassies" ;
-lin cissy_N = mkN "cissy" "cissies" ;
-lin missy_N = mkN "missy" "missies" ;
-lin sissy_N = mkN "sissy" "sissies" ;
-lin glossy_N = mkN "glossy" "glossies" ;
-lin hussy_N = mkN "hussy" "hussies" ;
-lin pussy_N = mkN "pussy" "pussies" ;
-lin curtsy_N = mkN "curtsy" "curtsies" ;
-lin jealousy_N = mkN "jealousy" "jealousies" ;
-lin treaty_N = mkN "treaty" "treaties" ;
-lin entreaty_N = mkN "entreaty" "entreaties" ; -- compound treaty_N ;
-lin platy_N = mkN "platy" "platies" ;
-lin nicety_N = mkN "nicety" "niceties" ;
-lin safety_N = mkN "safety" "safeties" ;
-lin biosafety_N = mkN "biosafety" "biosafeties" ; -- compound safety_N ;
-lin gaiety_N = mkN "gaiety" "gaieties" ;
-lin ubiety_N = mkN "ubiety" "ubieties" ;
-lin dubiety_N = mkN "dubiety" "dubieties" ; -- notcompound ubiety_N ;
-lin society_N = mkN "society" "societies" ;
-lin 'building-society_N' = mkN "building-society" "building-societies" ; -- compound society_N ;
-lin moiety_N = mkN "moiety" "moieties" ;
-lin piety_N = mkN "piety" "pieties" ;
-lin impiety_N = mkN "impiety" "impieties" ; -- compound piety_N ;
-lin contrariety_N = mkN "contrariety" "contrarieties" ;
-lin variety_N = mkN "variety" "varieties" ;
-lin inebriety_N = mkN "inebriety" "inebrieties" ;
-lin sobriety_N = mkN "sobriety" "sobrieties" ;
-lin notoriety_N = mkN "notoriety" "notorieties" ;
-lin propriety_N = mkN "propriety" "proprieties" ;
-lin impropriety_N = mkN "impropriety" "improprieties" ; -- compound propriety_N ;
-lin satiety_N = mkN "satiety" "satieties" ;
-lin anxiety_N = mkN "anxiety" "anxieties" ;
-lin overanxiety_N = mkN "overanxiety" "overanxieties" ; -- compound anxiety_N ;
-lin subtlety_N = mkN "subtlety" "subtleties" ;
-lin entirety_N = mkN "entirety" "entireties" ;
-lin surety_N = mkN "surety" "sureties" ;
-lin naivety_N = mkN "naivety" "naiveties" ;
-lin softy_N = mkN "softy" "softies" ;
-lin blighty_N = mkN "blighty" "blighties" ;
-lin almighty_N = mkN "almighty" "almighties" ;
-lin laity_N = mkN "laity" "laities" ;
-lin probity_N = mkN "probity" "probities" ;
-lin acerbity_N = mkN "acerbity" "acerbities" ;
-lin city_N = mkN "city" "cities" ;
-lin perspicacity_N = mkN "perspicacity" "perspicacities" ; -- compound city_N ;
-lin edacity_N = mkN "edacity" "edacities" ; -- compound city_N ;
-lin mendacity_N = mkN "mendacity" "mendacities" ; -- compound city_N ;
-lin mordacity_N = mkN "mordacity" "mordacities" ; -- compound city_N ;
-lin audacity_N = mkN "audacity" "audacities" ; -- compound city_N ;
-lin sagacity_N = mkN "sagacity" "sagacities" ; -- compound city_N ;
-lin fugacity_N = mkN "fugacity" "fugacities" ; -- compound city_N ;
-lin salacity_N = mkN "salacity" "salacities" ; -- compound city_N ;
-lin tenacity_N = mkN "tenacity" "tenacities" ; -- compound city_N ;
-lin pugnacity_N = mkN "pugnacity" "pugnacities" ; -- compound city_N ;
-lin pertinacity_N = mkN "pertinacity" "pertinacities" ; -- compound city_N ;
-lin capacity_N = mkN "capacity" "capacities" ; -- compound city_N ;
-lin incapacity_N = mkN "incapacity" "incapacities" ; -- compound city_N ;
-lin rapacity_N = mkN "rapacity" "rapacities" ; -- compound city_N ;
-lin opacity_N = mkN "opacity" "opacities" ; -- compound city_N ;
-lin radiopacity_N = mkN "radiopacity" "radiopacities" ; -- compound city_N ;
-lin veracity_N = mkN "veracity" "veracities" ; -- compound city_N ;
-lin voracity_N = mkN "voracity" "voracities" ; -- compound city_N ;
-lin loquacity_N = mkN "loquacity" "loquacities" ; -- compound city_N ;
-lin vivacity_N = mkN "vivacity" "vivacities" ; -- compound city_N ;
-lin syllabicity_N = mkN "syllabicity" "syllabicities" ; -- compound city_N ;
-lin hydrophobicity_N = mkN "hydrophobicity" "hydrophobicities" ; -- compound city_N ;
-lin cubicity_N = mkN "cubicity" "cubicities" ; -- compound city_N ;
-lin ergodicity_N = mkN "ergodicity" "ergodicities" ; -- compound city_N ;
-lin specificity_N = mkN "specificity" "specificities" ; -- compound city_N ;
-lin publicity_N = mkN "publicity" "publicities" ; -- compound city_N ;
-lin cyclicity_N = mkN "cyclicity" "cyclicities" ; -- compound city_N ;
-lin felicity_N = mkN "felicity" "felicities" ; -- compound city_N ;
-lin infelicity_N = mkN "infelicity" "infelicities" ; -- compound city_N ;
-lin catholicity_N = mkN "catholicity" "catholicities" ; -- compound city_N ;
-lin triplicity_N = mkN "triplicity" "triplicities" ; -- compound city_N ;
-lin multiplicity_N = mkN "multiplicity" "multiplicities" ; -- compound city_N ;
-lin simplicity_N = mkN "simplicity" "simplicities" ; -- compound city_N ;
-lin complicity_N = mkN "complicity" "complicities" ; -- compound city_N ;
-lin duplicity_N = mkN "duplicity" "duplicities" ; -- compound city_N ;
-lin rhythmicity_N = mkN "rhythmicity" "rhythmicities" ; -- compound city_N ;
-lin immunogenicity_N = mkN "immunogenicity" "immunogenicities" ; -- compound city_N ;
-lin ethnicity_N = mkN "ethnicity" "ethnicities" ; -- compound city_N ;
-lin 'multi-ethnicity_N' = mkN "multi-ethnicity" "multi-ethnicities" ; -- compound city_N ;
-lin tonicity_N = mkN "tonicity" "tonicities" ; -- compound city_N ;
-lin atonicity_N = mkN "atonicity" "atonicities" ; -- compound city_N ;
-lin hypotonicity_N = mkN "hypotonicity" "hypotonicities" ; -- compound city_N ;
-lin hypertonicity_N = mkN "hypertonicity" "hypertonicities" ; -- compound city_N ;
-lin sphericity_N = mkN "sphericity" "sphericities" ; -- compound city_N ;
-lin electricity_N = mkN "electricity" "electricities" ; -- compound city_N ;
-lin bioelectricity_N = mkN "bioelectricity" "bioelectricities" ; -- compound city_N ;
-lin thermoelectricity_N = mkN "thermoelectricity" "thermoelectricities" ; -- compound city_N ;
-lin hydroelectricity_N = mkN "hydroelectricity" "hydroelectricities" ; -- compound city_N ;
-lin pyroelectricity_N = mkN "pyroelectricity" "pyroelectricities" ; -- compound city_N ;
-lin photoelectricity_N = mkN "photoelectricity" "photoelectricities" ; -- compound city_N ;
-lin piezoelectricity_N = mkN "piezoelectricity" "piezoelectricities" ; -- compound city_N ;
-lin eccentricity_N = mkN "eccentricity" "eccentricities" ; -- compound city_N ;
-lin concentricity_N = mkN "concentricity" "concentricities" ; -- compound city_N ;
-lin authenticity_N = mkN "authenticity" "authenticities" ; -- compound city_N ;
-lin elasticity_N = mkN "elasticity" "elasticities" ; -- compound city_N ;
-lin inelasticity_N = mkN "inelasticity" "inelasticities" ; -- compound city_N ;
-lin plasticity_N = mkN "plasticity" "plasticities" ; -- compound city_N ;
-lin spasticity_N = mkN "spasticity" "spasticities" ; -- compound city_N ;
-lin domesticity_N = mkN "domesticity" "domesticities" ; -- compound city_N ;
-lin rusticity_N = mkN "rusticity" "rusticities" ; -- compound city_N ;
-lin analyticity_N = mkN "analyticity" "analyticities" ; -- compound city_N ;
-lin toxicity_N = mkN "toxicity" "toxicities" ; -- compound city_N ;
-lin cytotoxicity_N = mkN "cytotoxicity" "cytotoxicities" ; -- compound city_N ;
-lin precocity_N = mkN "precocity" "precocities" ; -- compound city_N ;
-lin velocity_N = mkN "velocity" "velocities" ; -- compound city_N ;
-lin 'muzzle-velocity_N' = mkN "muzzle-velocity" "muzzle-velocities" ; -- compound city_N ;
-lin hypervelocity_N = mkN "hypervelocity" "hypervelocities" ; -- compound city_N ;
-lin ferocity_N = mkN "ferocity" "ferocities" ; -- compound city_N ;
-lin reciprocity_N = mkN "reciprocity" "reciprocities" ; -- compound city_N ;
-lin atrocity_N = mkN "atrocity" "atrocities" ; -- compound city_N ;
-lin scarcity_N = mkN "scarcity" "scarcities" ; -- compound city_N ;
-lin paucity_N = mkN "paucity" "paucities" ; -- compound city_N ;
-lin quiddity_N = mkN "quiddity" "quiddities" ;
-lin oddity_N = mkN "oddity" "oddities" ;
-lin heredity_N = mkN "heredity" "heredities" ;
-lin morbidity_N = mkN "morbidity" "morbidities" ;
-lin turbidity_N = mkN "turbidity" "turbidities" ;
-lin acidity_N = mkN "acidity" "acidities" ;
-lin placidity_N = mkN "placidity" "placidities" ; -- notcompound acidity_N ;
-lin hyperacidity_N = mkN "hyperacidity" "hyperacidities" ; -- compound acidity_N ;
-lin flaccidity_N = mkN "flaccidity" "flaccidities" ;
-lin rancidity_N = mkN "rancidity" "rancidities" ;
-lin lucidity_N = mkN "lucidity" "lucidities" ;
-lin rigidity_N = mkN "rigidity" "rigidities" ;
-lin frigidity_N = mkN "frigidity" "frigidities" ; -- notcompound rigidity_N ;
-lin algidity_N = mkN "algidity" "algidities" ;
-lin turgidity_N = mkN "turgidity" "turgidities" ;
-lin validity_N = mkN "validity" "validities" ;
-lin invalidity_N = mkN "invalidity" "invalidities" ; -- compound validity_N ;
-lin solidity_N = mkN "solidity" "solidities" ;
-lin stolidity_N = mkN "stolidity" "stolidities" ;
-lin timidity_N = mkN "timidity" "timidities" ;
-lin humidity_N = mkN "humidity" "humidities" ;
-lin tumidity_N = mkN "tumidity" "tumidities" ;
-lin rapidity_N = mkN "rapidity" "rapidities" ;
-lin sapidity_N = mkN "sapidity" "sapidities" ;
-lin vapidity_N = mkN "vapidity" "vapidities" ;
-lin intrepidity_N = mkN "intrepidity" "intrepidities" ;
-lin tepidity_N = mkN "tepidity" "tepidities" ;
-lin insipidity_N = mkN "insipidity" "insipidities" ;
-lin limpidity_N = mkN "limpidity" "limpidities" ;
-lin torpidity_N = mkN "torpidity" "torpidities" ;
-lin cupidity_N = mkN "cupidity" "cupidities" ;
-lin stupidity_N = mkN "stupidity" "stupidities" ;
-lin aridity_N = mkN "aridity" "aridities" ;
-lin acridity_N = mkN "acridity" "acridities" ;
-lin torridity_N = mkN "torridity" "torridities" ;
-lin putridity_N = mkN "putridity" "putridities" ;
-lin fluidity_N = mkN "fluidity" "fluidities" ;
-lin semifluidity_N = mkN "semifluidity" "semifluidities" ; -- compound fluidity_N ;
-lin liquidity_N = mkN "liquidity" "liquidities" ;
-lin avidity_N = mkN "avidity" "avidities" ;
-lin gravidity_N = mkN "gravidity" "gravidities" ; -- notcompound avidity_N ;
-lin lividity_N = mkN "lividity" "lividities" ;
-lin fecundity_N = mkN "fecundity" "fecundities" ;
-lin jocundity_N = mkN "jocundity" "jocundities" ;
-lin profundity_N = mkN "profundity" "profundities" ;
-lin rotundity_N = mkN "rotundity" "rotundities" ;
-lin commodity_N = mkN "commodity" "commodities" ;
-lin absurdity_N = mkN "absurdity" "absurdities" ;
-lin nudity_N = mkN "nudity" "nudities" ;
-lin crudity_N = mkN "crudity" "crudities" ;
-lin deity_N = mkN "deity" "deities" ;
-lin velleity_N = mkN "velleity" "velleities" ;
-lin contemporaneity_N = mkN "contemporaneity" "contemporaneities" ;
-lin simultaneity_N = mkN "simultaneity" "simultaneities" ;
-lin spontaneity_N = mkN "spontaneity" "spontaneities" ;
-lin homogeneity_N = mkN "homogeneity" "homogeneities" ;
-lin inhomogeneity_N = mkN "inhomogeneity" "inhomogeneities" ; -- compound homogeneity_N ;
-lin heterogeneity_N = mkN "heterogeneity" "heterogeneities" ;
-lin logicality_N = mkN "logicality" "logicalities" ;
-lin illogicality_N = mkN "illogicality" "illogicalities" ; -- compound logicality_N ;
-lin comicality_N = mkN "comicality" "comicalities" ;
-lin technicality_N = mkN "technicality" "technicalities" ;
-lin topicality_N = mkN "topicality" "topicalities" ;
-lin typicality_N = mkN "typicality" "typicalities" ;
-lin atypicality_N = mkN "atypicality" "atypicalities" ; -- notcompound typicality_N ;
-lin cylindricality_N = mkN "cylindricality" "cylindricalities" ;
-lin lyricality_N = mkN "lyricality" "lyricalities" ;
-lin whimsicality_N = mkN "whimsicality" "whimsicalities" ;
-lin musicality_N = mkN "musicality" "musicalities" ;
-lin practicality_N = mkN "practicality" "practicalities" ;
-lin impracticality_N = mkN "impracticality" "impracticalities" ; -- compound practicality_N ;
-lin criticality_N = mkN "criticality" "criticalities" ;
-lin verticality_N = mkN "verticality" "verticalities" ;
-lin locality_N = mkN "locality" "localities" ;
-lin reciprocality_N = mkN "reciprocality" "reciprocalities" ;
-lin rascality_N = mkN "rascality" "rascalities" ;
-lin sesquipedality_N = mkN "sesquipedality" "sesquipedalities" ;
-lin modality_N = mkN "modality" "modalities" ;
-lin ideality_N = mkN "ideality" "idealities" ;
-lin reality_N = mkN "reality" "realities" ;
-lin unreality_N = mkN "unreality" "unrealities" ; -- compound reality_N ;
-lin egality_N = mkN "egality" "egalities" ;
-lin legality_N = mkN "legality" "legalities" ; -- notcompound egality_N ;
-lin illegality_N = mkN "illegality" "illegalities" ; -- compound egality_N ;
-lin prodigality_N = mkN "prodigality" "prodigalities" ;
-lin frugality_N = mkN "frugality" "frugalities" ;
-lin speciality_N = mkN "speciality" "specialities" ;
-lin artificiality_N = mkN "artificiality" "artificialities" ;
-lin superficiality_N = mkN "superficiality" "superficialities" ;
-lin sociality_N = mkN "sociality" "socialities" ;
-lin cordiality_N = mkN "cordiality" "cordialities" ;
-lin geniality_N = mkN "geniality" "genialities" ;
-lin congeniality_N = mkN "congeniality" "congenialities" ; -- compound geniality_N ;
-lin uncongeniality_N = mkN "uncongeniality" "uncongenialities" ; -- compound geniality_N ;
-lin materiality_N = mkN "materiality" "materialities" ;
-lin immateriality_N = mkN "immateriality" "immaterialities" ; -- compound materiality_N ;
-lin territoriality_N = mkN "territoriality" "territorialities" ;
-lin substantiality_N = mkN "substantiality" "substantialities" ;
-lin insubstantiality_N = mkN "insubstantiality" "insubstantialities" ; -- compound substantiality_N ;
-lin confidentiality_N = mkN "confidentiality" "confidentialities" ;
-lin essentiality_N = mkN "essentiality" "essentialities" ;
-lin inessentiality_N = mkN "inessentiality" "inessentialities" ; -- compound essentiality_N ;
-lin potentiality_N = mkN "potentiality" "potentialities" ;
-lin partiality_N = mkN "partiality" "partialities" ;
-lin impartiality_N = mkN "impartiality" "impartialities" ; -- compound partiality_N ;
-lin bestiality_N = mkN "bestiality" "bestialities" ;
-lin triviality_N = mkN "triviality" "trivialities" ;
-lin conviviality_N = mkN "conviviality" "convivialities" ;
-lin joviality_N = mkN "joviality" "jovialities" ;
-lin molality_N = mkN "molality" "molalities" ;
-lin animality_N = mkN "animality" "animalities" ;
-lin primality_N = mkN "primality" "primalities" ;
-lin formality_N = mkN "formality" "formalities" ;
-lin informality_N = mkN "informality" "informalities" ; -- compound formality_N ;
-lin normality_N = mkN "normality" "normalities" ;
-lin abnormality_N = mkN "abnormality" "abnormalities" ; -- compound normality_N ;
-lin subnormality_N = mkN "subnormality" "subnormalities" ; -- compound normality_N ;
-lin banality_N = mkN "banality" "banalities" ;
-lin venality_N = mkN "venality" "venalities" ;
-lin cardinality_N = mkN "cardinality" "cardinalities" ;
-lin finality_N = mkN "finality" "finalities" ;
-lin originality_N = mkN "originality" "originalities" ;
-lin unoriginality_N = mkN "unoriginality" "unoriginalities" ; -- compound originality_N ;
-lin marginality_N = mkN "marginality" "marginalities" ;
-lin orthogonality_N = mkN "orthogonality" "orthogonalities" ;
-lin dimensionality_N = mkN "dimensionality" "dimensionalities" ;
-lin nationality_N = mkN "nationality" "nationalities" ;
-lin internationality_N = mkN "internationality" "internationalities" ; -- compound nationality_N ;
-lin rationality_N = mkN "rationality" "rationalities" ;
-lin irrationality_N = mkN "irrationality" "irrationalities" ; -- compound rationality_N ;
-lin directionality_N = mkN "directionality" "directionalities" ;
-lin functionality_N = mkN "functionality" "functionalities" ;
-lin conditionality_N = mkN "conditionality" "conditionalities" ;
-lin intentionality_N = mkN "intentionality" "intentionalities" ;
-lin conventionality_N = mkN "conventionality" "conventionalities" ;
-lin unconventionality_N = mkN "unconventionality" "unconventionalities" ; -- compound conventionality_N ;
-lin emotionality_N = mkN "emotionality" "emotionalities" ;
-lin unemotionality_N = mkN "unemotionality" "unemotionalities" ; -- compound emotionality_N ;
-lin proportionality_N = mkN "proportionality" "proportionalities" ;
-lin commonality_N = mkN "commonality" "commonalities" ;
-lin personality_N = mkN "personality" "personalities" ;
-lin tonality_N = mkN "tonality" "tonalities" ;
-lin atonality_N = mkN "atonality" "atonalities" ; -- notcompound tonality_N ;
-lin polytonality_N = mkN "polytonality" "polytonalities" ; -- compound tonality_N ;
-lin municipality_N = mkN "municipality" "municipalities" ;
-lin principality_N = mkN "principality" "principalities" ;
-lin liberality_N = mkN "liberality" "liberalities" ;
-lin illiberality_N = mkN "illiberality" "illiberalities" ; -- compound liberality_N ;
-lin ephemerality_N = mkN "ephemerality" "ephemeralities" ;
-lin generality_N = mkN "generality" "generalities" ;
-lin laterality_N = mkN "laterality" "lateralities" ;
-lin bilaterality_N = mkN "bilaterality" "bilateralities" ; -- compound laterality_N ;
-lin morality_N = mkN "morality" "moralities" ;
-lin amorality_N = mkN "amorality" "amoralities" ; -- notcompound morality_N ;
-lin immorality_N = mkN "immorality" "immoralities" ; -- compound morality_N ;
-lin temporality_N = mkN "temporality" "temporalities" ;
-lin centrality_N = mkN "centrality" "centralities" ;
-lin neutrality_N = mkN "neutrality" "neutralities" ;
-lin plurality_N = mkN "plurality" "pluralities" ;
-lin rurality_N = mkN "rurality" "ruralities" ;
-lin nasality_N = mkN "nasality" "nasalities" ;
-lin universality_N = mkN "universality" "universalities" ;
-lin causality_N = mkN "causality" "causalities" ;
-lin fatality_N = mkN "fatality" "fatalities" ;
-lin hospitality_N = mkN "hospitality" "hospitalities" ;
-lin inhospitality_N = mkN "inhospitality" "inhospitalities" ; -- compound hospitality_N ;
-lin vitality_N = mkN "vitality" "vitalities" ;
-lin mentality_N = mkN "mentality" "mentalities" ;
-lin sentimentality_N = mkN "sentimentality" "sentimentalities" ; -- compound mentality_N ;
-lin instrumentality_N = mkN "instrumentality" "instrumentalities" ; -- compound mentality_N ;
-lin horizontality_N = mkN "horizontality" "horizontalities" ;
-lin totality_N = mkN "totality" "totalities" ;
-lin mortality_N = mkN "mortality" "mortalities" ;
-lin immortality_N = mkN "immortality" "immortalities" ; -- compound mortality_N ;
-lin brutality_N = mkN "brutality" "brutalities" ;
-lin duality_N = mkN "duality" "dualities" ;
-lin graduality_N = mkN "graduality" "gradualities" ; -- compound duality_N ;
-lin individuality_N = mkN "individuality" "individualities" ; -- compound duality_N ;
-lin quality_N = mkN "quality" "qualities" ;
-lin equality_N = mkN "equality" "equalities" ; -- notcompound quality_N ;
-lin inequality_N = mkN "inequality" "inequalities" ; -- compound quality_N ;
-lin sensuality_N = mkN "sensuality" "sensualities" ;
-lin actuality_N = mkN "actuality" "actualities" ;
-lin factuality_N = mkN "factuality" "factualities" ; -- notcompound actuality_N ;
-lin counterfactuality_N = mkN "counterfactuality" "counterfactualities" ; -- compound actuality_N ;
-lin effectuality_N = mkN "effectuality" "effectualities" ;
-lin ineffectuality_N = mkN "ineffectuality" "ineffectualities" ; -- compound effectuality_N ;
-lin punctuality_N = mkN "punctuality" "punctualities" ;
-lin spirituality_N = mkN "spirituality" "spiritualities" ;
-lin eventuality_N = mkN "eventuality" "eventualities" ;
-lin mutuality_N = mkN "mutuality" "mutualities" ;
-lin sexuality_N = mkN "sexuality" "sexualities" ;
-lin asexuality_N = mkN "asexuality" "asexualities" ; -- notcompound sexuality_N ;
-lin bisexuality_N = mkN "bisexuality" "bisexualities" ; -- compound sexuality_N ;
-lin psychosexuality_N = mkN "psychosexuality" "psychosexualities" ; -- compound sexuality_N ;
-lin homosexuality_N = mkN "homosexuality" "homosexualities" ; -- compound sexuality_N ;
-lin heterosexuality_N = mkN "heterosexuality" "heterosexualities" ; -- compound sexuality_N ;
-lin fidelity_N = mkN "fidelity" "fidelities" ;
-lin 'high-fidelity_N' = mkN "high-fidelity" "high-fidelities" ; -- compound fidelity_N ;
-lin infidelity_N = mkN "infidelity" "infidelities" ; -- compound fidelity_N ;
-lin ability_N = mkN "ability" "abilities" ;
-lin probability_N = mkN "probability" "probabilities" ; -- compound ability_N ;
-lin improbability_N = mkN "improbability" "improbabilities" ; -- compound ability_N ;
-lin imperturbability_N = mkN "imperturbability" "imperturbabilities" ; -- compound ability_N ;
-lin impeccability_N = mkN "impeccability" "impeccabilities" ; -- compound ability_N ;
-lin applicability_N = mkN "applicability" "applicabilities" ; -- compound ability_N ;
-lin inapplicability_N = mkN "inapplicability" "inapplicabilities" ; -- compound ability_N ;
-lin amicability_N = mkN "amicability" "amicabilities" ; -- compound ability_N ;
-lin practicability_N = mkN "practicability" "practicabilities" ; -- compound ability_N ;
-lin impracticability_N = mkN "impracticability" "impracticabilities" ; -- compound ability_N ;
-lin readability_N = mkN "readability" "readabilities" ; -- compound ability_N ;
-lin formidability_N = mkN "formidability" "formidabilities" ; -- compound ability_N ;
-lin bendability_N = mkN "bendability" "bendabilities" ; -- compound ability_N ;
-lin dependability_N = mkN "dependability" "dependabilities" ; -- compound ability_N ;
-lin undependability_N = mkN "undependability" "undependabilities" ; -- compound ability_N ;
-lin replaceability_N = mkN "replaceability" "replaceabilities" ; -- compound ability_N ;
-lin serviceability_N = mkN "serviceability" "serviceabilities" ; -- compound ability_N ;
-lin marriageability_N = mkN "marriageability" "marriageabilities" ; -- compound ability_N ;
-lin manageability_N = mkN "manageability" "manageabilities" ; -- compound ability_N ;
-lin knowledgeability_N = mkN "knowledgeability" "knowledgeabilities" ; -- compound ability_N ;
-lin exchangeability_N = mkN "exchangeability" "exchangeabilities" ; -- compound ability_N ;
-lin unexchangeability_N = mkN "unexchangeability" "unexchangeabilities" ; -- compound ability_N ;
-lin malleability_N = mkN "malleability" "malleabilities" ; -- compound ability_N ;
-lin unmalleability_N = mkN "unmalleability" "unmalleabilities" ; -- compound ability_N ;
-lin permeability_N = mkN "permeability" "permeabilities" ; -- compound ability_N ;
-lin impermeability_N = mkN "impermeability" "impermeabilities" ; -- compound ability_N ;
-lin rateability_N = mkN "rateability" "rateabilities" ; -- compound ability_N ;
-lin affability_N = mkN "affability" "affabilities" ; -- compound ability_N ;
-lin fatigability_N = mkN "fatigability" "fatigabilities" ; -- compound ability_N ;
-lin indefatigability_N = mkN "indefatigability" "indefatigabilities" ; -- compound ability_N ;
-lin navigability_N = mkN "navigability" "navigabilities" ; -- compound ability_N ;
-lin impeachability_N = mkN "impeachability" "impeachabilities" ; -- compound ability_N ;
-lin approachability_N = mkN "approachability" "approachabilities" ; -- compound ability_N ;
-lin unapproachability_N = mkN "unapproachability" "unapproachabilities" ; -- compound ability_N ;
-lin perishability_N = mkN "perishability" "perishabilities" ; -- compound ability_N ;
-lin imperishability_N = mkN "imperishability" "imperishabilities" ; -- compound ability_N ;
-lin sociability_N = mkN "sociability" "sociabilities" ; -- compound ability_N ;
-lin unsociability_N = mkN "unsociability" "unsociabilities" ; -- compound ability_N ;
-lin associability_N = mkN "associability" "associabilities" ; -- compound ability_N ;
-lin quantifiability_N = mkN "quantifiability" "quantifiabilities" ; -- compound ability_N ;
-lin liability_N = mkN "liability" "liabilities" ; -- compound ability_N ;
-lin reliability_N = mkN "reliability" "reliabilities" ; -- compound ability_N ;
-lin pliability_N = mkN "pliability" "pliabilities" ; -- compound ability_N ;
-lin amiability_N = mkN "amiability" "amiabilities" ; -- compound ability_N ;
-lin variability_N = mkN "variability" "variabilities" ; -- compound ability_N ;
-lin invariability_N = mkN "invariability" "invariabilities" ; -- compound ability_N ;
-lin friability_N = mkN "friability" "friabilities" ; -- compound ability_N ;
-lin viability_N = mkN "viability" "viabilities" ; -- compound ability_N ;
-lin scalability_N = mkN "scalability" "scalabilities" ; -- compound ability_N ;
-lin salability_N = mkN "salability" "salabilities" ; -- compound ability_N ;
-lin assailability_N = mkN "assailability" "assailabilities" ; -- compound ability_N ;
-lin availability_N = mkN "availability" "availabilities" ; -- compound ability_N ;
-lin manipulability_N = mkN "manipulability" "manipulabilities" ; -- compound ability_N ;
-lin flammability_N = mkN "flammability" "flammabilities" ; -- compound ability_N ;
-lin amenability_N = mkN "amenability" "amenabilities" ; -- compound ability_N ;
-lin tenability_N = mkN "tenability" "tenabilities" ; -- compound ability_N ;
-lin impregnability_N = mkN "impregnability" "impregnabilities" ; -- compound ability_N ;
-lin inability_N = mkN "inability" "inabilities" ; -- compound ability_N ;
-lin stainability_N = mkN "stainability" "stainabilities" ; -- compound ability_N ;
-lin sustainability_N = mkN "sustainability" "sustainabilities" ; -- compound ability_N ;
-lin spinnability_N = mkN "spinnability" "spinnabilities" ; -- compound ability_N ;
-lin companionability_N = mkN "companionability" "companionabilities" ; -- compound ability_N ;
-lin discernability_N = mkN "discernability" "discernabilities" ; -- compound ability_N ;
-lin capability_N = mkN "capability" "capabilities" ; -- compound ability_N ;
-lin incapability_N = mkN "incapability" "incapabilities" ; -- compound ability_N ;
-lin culpability_N = mkN "culpability" "culpabilities" ; -- compound ability_N ;
-lin arability_N = mkN "arability" "arabilities" ; -- compound ability_N ;
-lin separability_N = mkN "separability" "separabilities" ; -- compound ability_N ;
-lin comparability_N = mkN "comparability" "comparabilities" ; -- compound ability_N ;
-lin transferability_N = mkN "transferability" "transferabilities" ; -- compound ability_N ;
-lin venerability_N = mkN "venerability" "venerabilities" ; -- compound ability_N ;
-lin vulnerability_N = mkN "vulnerability" "vulnerabilities" ; -- compound ability_N ;
-lin invulnerability_N = mkN "invulnerability" "invulnerabilities" ; -- compound ability_N ;
-lin interoperability_N = mkN "interoperability" "interoperabilities" ; -- compound ability_N ;
-lin alterability_N = mkN "alterability" "alterabilities" ; -- compound ability_N ;
-lin unalterability_N = mkN "unalterability" "unalterabilities" ; -- compound ability_N ;
-lin maneuverability_N = mkN "maneuverability" "maneuverabilities" ; -- compound ability_N ;
-lin admirability_N = mkN "admirability" "admirabilities" ; -- compound ability_N ;
-lin desirability_N = mkN "desirability" "desirabilities" ; -- compound ability_N ;
-lin undesirability_N = mkN "undesirability" "undesirabilities" ; -- compound ability_N ;
-lin adorability_N = mkN "adorability" "adorabilities" ; -- compound ability_N ;
-lin memorability_N = mkN "memorability" "memorabilities" ; -- compound ability_N ;
-lin penetrability_N = mkN "penetrability" "penetrabilities" ; -- compound ability_N ;
-lin impenetrability_N = mkN "impenetrability" "impenetrabilities" ; -- compound ability_N ;
-lin demonstrability_N = mkN "demonstrability" "demonstrabilities" ; -- compound ability_N ;
-lin curability_N = mkN "curability" "curabilities" ; -- compound ability_N ;
-lin incurability_N = mkN "incurability" "incurabilities" ; -- compound ability_N ;
-lin durability_N = mkN "durability" "durabilities" ; -- compound ability_N ;
-lin perdurability_N = mkN "perdurability" "perdurabilities" ; -- compound ability_N ;
-lin insurability_N = mkN "insurability" "insurabilities" ; -- compound ability_N ;
-lin uninsurability_N = mkN "uninsurability" "uninsurabilities" ; -- compound ability_N ;
-lin manoeuvrability_N = mkN "manoeuvrability" "manoeuvrabilities" ; -- compound ability_N ;
-lin disability_N = mkN "disability" "disabilities" ; -- compound ability_N ;
-lin advisability_N = mkN "advisability" "advisabilities" ; -- compound ability_N ;
-lin inadvisability_N = mkN "inadvisability" "inadvisabilities" ; -- compound ability_N ;
-lin dispensability_N = mkN "dispensability" "dispensabilities" ; -- compound ability_N ;
-lin indispensability_N = mkN "indispensability" "indispensabilities" ; -- compound ability_N ;
-lin palatability_N = mkN "palatability" "palatabilities" ; -- compound ability_N ;
-lin unpalatability_N = mkN "unpalatability" "unpalatabilities" ; -- compound ability_N ;
-lin ratability_N = mkN "ratability" "ratabilities" ; -- compound ability_N ;
-lin equatability_N = mkN "equatability" "equatabilities" ; -- compound ability_N ;
-lin tractability_N = mkN "tractability" "tractabilities" ; -- compound ability_N ;
-lin intractability_N = mkN "intractability" "intractabilities" ; -- compound ability_N ;
-lin delectability_N = mkN "delectability" "delectabilities" ; -- compound ability_N ;
-lin respectability_N = mkN "respectability" "respectabilities" ; -- compound ability_N ;
-lin unrespectability_N = mkN "unrespectability" "unrespectabilities" ; -- compound ability_N ;
-lin predictability_N = mkN "predictability" "predictabilities" ; -- compound ability_N ;
-lin unpredictability_N = mkN "unpredictability" "unpredictabilities" ; -- compound ability_N ;
-lin ineluctability_N = mkN "ineluctability" "ineluctabilities" ; -- compound ability_N ;
-lin habitability_N = mkN "habitability" "habitabilities" ; -- compound ability_N ;
-lin excitability_N = mkN "excitability" "excitabilities" ; -- compound ability_N ;
-lin indomitability_N = mkN "indomitability" "indomitabilities" ; -- compound ability_N ;
-lin irritability_N = mkN "irritability" "irritabilities" ; -- compound ability_N ;
-lin suitability_N = mkN "suitability" "suitabilities" ; -- compound ability_N ;
-lin unsuitability_N = mkN "unsuitability" "unsuitabilities" ; -- compound ability_N ;
-lin inevitability_N = mkN "inevitability" "inevitabilities" ; -- compound ability_N ;
-lin merchantability_N = mkN "merchantability" "merchantabilities" ; -- compound ability_N ;
-lin accountability_N = mkN "accountability" "accountabilities" ; -- compound ability_N ;
-lin notability_N = mkN "notability" "notabilities" ; -- compound ability_N ;
-lin quotability_N = mkN "quotability" "quotabilities" ; -- compound ability_N ;
-lin adaptability_N = mkN "adaptability" "adaptabilities" ; -- compound ability_N ;
-lin unadaptability_N = mkN "unadaptability" "unadaptabilities" ; -- compound ability_N ;
-lin acceptability_N = mkN "acceptability" "acceptabilities" ; -- compound ability_N ;
-lin unacceptability_N = mkN "unacceptability" "unacceptabilities" ; -- compound ability_N ;
-lin portability_N = mkN "portability" "portabilities" ; -- compound ability_N ;
-lin stability_N = mkN "stability" "stabilities" ; -- notcompound ability_N ;
-lin metastability_N = mkN "metastability" "metastabilities" ; -- compound ability_N ;
-lin instability_N = mkN "instability" "instabilities" ; -- compound ability_N ;
-lin executability_N = mkN "executability" "executabilities" ; -- compound ability_N ;
-lin mutability_N = mkN "mutability" "mutabilities" ; -- compound ability_N ;
-lin immutability_N = mkN "immutability" "immutabilities" ; -- compound ability_N ;
-lin commutability_N = mkN "commutability" "commutabilities" ; -- compound ability_N ;
-lin incommutability_N = mkN "incommutability" "incommutabilities" ; -- compound ability_N ;
-lin permutability_N = mkN "permutability" "permutabilities" ; -- compound ability_N ;
-lin indisputability_N = mkN "indisputability" "indisputabilities" ; -- compound ability_N ;
-lin inscrutability_N = mkN "inscrutability" "inscrutabilities" ; -- compound ability_N ;
-lin achievability_N = mkN "achievability" "achievabilities" ; -- compound ability_N ;
-lin inconceivability_N = mkN "inconceivability" "inconceivabilities" ; -- compound ability_N ;
-lin solvability_N = mkN "solvability" "solvabilities" ; -- compound ability_N ;
-lin unsolvability_N = mkN "unsolvability" "unsolvabilities" ; -- compound ability_N ;
-lin movability_N = mkN "movability" "movabilities" ; -- compound ability_N ;
-lin immovability_N = mkN "immovability" "immovabilities" ; -- compound ability_N ;
-lin taxability_N = mkN "taxability" "taxabilities" ; -- compound ability_N ;
-lin debility_N = mkN "debility" "debilities" ;
-lin invincibility_N = mkN "invincibility" "invincibilities" ;
-lin irascibility_N = mkN "irascibility" "irascibilities" ;
-lin reproducibility_N = mkN "reproducibility" "reproducibilities" ;
-lin irreproducibility_N = mkN "irreproducibility" "irreproducibilities" ; -- compound reproducibility_N ;
-lin edibility_N = mkN "edibility" "edibilities" ;
-lin credibility_N = mkN "credibility" "credibilities" ; -- notcompound edibility_N ;
-lin incredibility_N = mkN "incredibility" "incredibilities" ; -- compound edibility_N ;
-lin audibility_N = mkN "audibility" "audibilities" ;
-lin inaudibility_N = mkN "inaudibility" "inaudibilities" ; -- compound audibility_N ;
-lin legibility_N = mkN "legibility" "legibilities" ;
-lin illegibility_N = mkN "illegibility" "illegibilities" ; -- compound legibility_N ;
-lin eligibility_N = mkN "eligibility" "eligibilities" ;
-lin ineligibility_N = mkN "ineligibility" "ineligibilities" ; -- compound eligibility_N ;
-lin intelligibility_N = mkN "intelligibility" "intelligibilities" ;
-lin unintelligibility_N = mkN "unintelligibility" "unintelligibilities" ; -- compound intelligibility_N ;
-lin tangibility_N = mkN "tangibility" "tangibilities" ;
-lin intangibility_N = mkN "intangibility" "intangibilities" ; -- compound tangibility_N ;
-lin fallibility_N = mkN "fallibility" "fallibilities" ;
-lin infallibility_N = mkN "infallibility" "infallibilities" ; -- compound fallibility_N ;
-lin gullibility_N = mkN "gullibility" "gullibilities" ;
-lin feasibility_N = mkN "feasibility" "feasibilities" ;
-lin infeasibility_N = mkN "infeasibility" "infeasibilities" ; -- compound feasibility_N ;
-lin risibility_N = mkN "risibility" "risibilities" ;
-lin visibility_N = mkN "visibility" "visibilities" ;
-lin divisibility_N = mkN "divisibility" "divisibilities" ; -- compound visibility_N ;
-lin invisibility_N = mkN "invisibility" "invisibilities" ; -- compound visibility_N ;
-lin defensibility_N = mkN "defensibility" "defensibilities" ;
-lin reprehensibility_N = mkN "reprehensibility" "reprehensibilities" ;
-lin comprehensibility_N = mkN "comprehensibility" "comprehensibilities" ;
-lin incomprehensibility_N = mkN "incomprehensibility" "incomprehensibilities" ; -- compound comprehensibility_N ;
-lin sensibility_N = mkN "sensibility" "sensibilities" ;
-lin insensibility_N = mkN "insensibility" "insensibilities" ; -- compound sensibility_N ;
-lin responsibility_N = mkN "responsibility" "responsibilities" ;
-lin irresponsibility_N = mkN "irresponsibility" "irresponsibilities" ; -- compound responsibility_N ;
-lin reversibility_N = mkN "reversibility" "reversibilities" ;
-lin irreversibility_N = mkN "irreversibility" "irreversibilities" ; -- compound reversibility_N ;
-lin accessibility_N = mkN "accessibility" "accessibilities" ;
-lin inaccessibility_N = mkN "inaccessibility" "inaccessibilities" ; -- compound accessibility_N ;
-lin irrepressibility_N = mkN "irrepressibility" "irrepressibilities" ;
-lin compressibility_N = mkN "compressibility" "compressibilities" ;
-lin incompressibility_N = mkN "incompressibility" "incompressibilities" ; -- compound compressibility_N ;
-lin admissibility_N = mkN "admissibility" "admissibilities" ;
-lin inadmissibility_N = mkN "inadmissibility" "inadmissibilities" ; -- compound admissibility_N ;
-lin permissibility_N = mkN "permissibility" "permissibilities" ;
-lin impermissibility_N = mkN "impermissibility" "impermissibilities" ; -- compound permissibility_N ;
-lin possibility_N = mkN "possibility" "possibilities" ;
-lin impossibility_N = mkN "impossibility" "impossibilities" ; -- compound possibility_N ;
-lin plausibility_N = mkN "plausibility" "plausibilities" ;
-lin implausibility_N = mkN "implausibility" "implausibilities" ; -- compound plausibility_N ;
-lin compatibility_N = mkN "compatibility" "compatibilities" ;
-lin incompatibility_N = mkN "incompatibility" "incompatibilities" ; -- compound compatibility_N ;
-lin histoincompatibility_N = mkN "histoincompatibility" "histoincompatibilities" ; -- compound compatibility_N ;
-lin histocompatibility_N = mkN "histocompatibility" "histocompatibilities" ; -- compound compatibility_N ;
-lin perfectibility_N = mkN "perfectibility" "perfectibilities" ;
-lin imperfectibility_N = mkN "imperfectibility" "imperfectibilities" ; -- compound perfectibility_N ;
-lin destructibility_N = mkN "destructibility" "destructibilities" ;
-lin indestructibility_N = mkN "indestructibility" "indestructibilities" ; -- compound destructibility_N ;
-lin perceptibility_N = mkN "perceptibility" "perceptibilities" ;
-lin imperceptibility_N = mkN "imperceptibility" "imperceptibilities" ; -- compound perceptibility_N ;
-lin susceptibility_N = mkN "susceptibility" "susceptibilities" ;
-lin unsusceptibility_N = mkN "unsusceptibility" "unsusceptibilities" ; -- compound susceptibility_N ;
-lin corruptibility_N = mkN "corruptibility" "corruptibilities" ;
-lin incorruptibility_N = mkN "incorruptibility" "incorruptibilities" ; -- compound corruptibility_N ;
-lin convertibility_N = mkN "convertibility" "convertibilities" ;
-lin inconvertibility_N = mkN "inconvertibility" "inconvertibilities" ; -- compound convertibility_N ;
-lin incontrovertibility_N = mkN "incontrovertibility" "incontrovertibilities" ;
-lin suggestibility_N = mkN "suggestibility" "suggestibilities" ;
-lin digestibility_N = mkN "digestibility" "digestibilities" ;
-lin indigestibility_N = mkN "indigestibility" "indigestibilities" ; -- compound digestibility_N ;
-lin irresistibility_N = mkN "irresistibility" "irresistibilities" ;
-lin combustibility_N = mkN "combustibility" "combustibilities" ;
-lin flexibility_N = mkN "flexibility" "flexibilities" ;
-lin inflexibility_N = mkN "inflexibility" "inflexibilities" ; -- compound flexibility_N ;
-lin mobility_N = mkN "mobility" "mobilities" ;
-lin immobility_N = mkN "immobility" "immobilities" ; -- compound mobility_N ;
-lin nobility_N = mkN "nobility" "nobilities" ;
-lin solubility_N = mkN "solubility" "solubilities" ;
-lin insolubility_N = mkN "insolubility" "insolubilities" ; -- compound solubility_N ;
-lin dissolubility_N = mkN "dissolubility" "dissolubilities" ; -- compound solubility_N ;
-lin volubility_N = mkN "volubility" "volubilities" ;
-lin facility_N = mkN "facility" "facilities" ;
-lin imbecility_N = mkN "imbecility" "imbecilities" ;
-lin docility_N = mkN "docility" "docilities" ;
-lin agility_N = mkN "agility" "agilities" ;
-lin fragility_N = mkN "fragility" "fragilities" ; -- notcompound agility_N ;
-lin humility_N = mkN "humility" "humilities" ;
-lin senility_N = mkN "senility" "senilities" ;
-lin sterility_N = mkN "sterility" "sterilities" ;
-lin puerility_N = mkN "puerility" "puerilities" ;
-lin virility_N = mkN "virility" "virilities" ;
-lin scurrility_N = mkN "scurrility" "scurrilities" ;
-lin volatility_N = mkN "volatility" "volatilities" ;
-lin versatility_N = mkN "versatility" "versatilities" ;
-lin contractility_N = mkN "contractility" "contractilities" ;
-lin ductility_N = mkN "ductility" "ductilities" ;
-lin gentility_N = mkN "gentility" "gentilities" ;
-lin motility_N = mkN "motility" "motilities" ;
-lin immotility_N = mkN "immotility" "immotilities" ; -- compound motility_N ;
-lin hypermotility_N = mkN "hypermotility" "hypermotilities" ; -- compound motility_N ;
-lin fertility_N = mkN "fertility" "fertilities" ;
-lin infertility_N = mkN "infertility" "infertilities" ; -- compound fertility_N ;
-lin hostility_N = mkN "hostility" "hostilities" ;
-lin utility_N = mkN "utility" "utilities" ;
-lin futility_N = mkN "futility" "futilities" ; -- notcompound utility_N ;
-lin inutility_N = mkN "inutility" "inutilities" ; -- compound utility_N ;
-lin tranquility_N = mkN "tranquility" "tranquilities" ;
-lin civility_N = mkN "civility" "civilities" ;
-lin incivility_N = mkN "incivility" "incivilities" ; -- compound civility_N ;
-lin servility_N = mkN "servility" "servilities" ;
-lin tranquillity_N = mkN "tranquillity" "tranquillities" ;
-lin jollity_N = mkN "jollity" "jollities" ;
-lin nullity_N = mkN "nullity" "nullities" ;
-lin polity_N = mkN "polity" "polities" ;
-lin frivolity_N = mkN "frivolity" "frivolities" ;
-lin credulity_N = mkN "credulity" "credulities" ;
-lin incredulity_N = mkN "incredulity" "incredulities" ; -- compound credulity_N ;
-lin overcredulity_N = mkN "overcredulity" "overcredulities" ; -- compound credulity_N ;
-lin sedulity_N = mkN "sedulity" "sedulities" ;
-lin garrulity_N = mkN "garrulity" "garrulities" ;
-lin amity_N = mkN "amity" "amities" ;
-lin calamity_N = mkN "calamity" "calamities" ; -- compound amity_N ;
-lin extremity_N = mkN "extremity" "extremities" ;
-lin dimity_N = mkN "dimity" "dimities" ;
-lin sublimity_N = mkN "sublimity" "sublimities" ;
-lin pusillanimity_N = mkN "pusillanimity" "pusillanimities" ;
-lin magnanimity_N = mkN "magnanimity" "magnanimities" ;
-lin unanimity_N = mkN "unanimity" "unanimities" ;
-lin equanimity_N = mkN "equanimity" "equanimities" ;
-lin proximity_N = mkN "proximity" "proximities" ;
-lin enmity_N = mkN "enmity" "enmities" ;
-lin comity_N = mkN "comity" "comities" ;
-lin infirmity_N = mkN "infirmity" "infirmities" ;
-lin deformity_N = mkN "deformity" "deformities" ;
-lin uniformity_N = mkN "uniformity" "uniformities" ;
-lin nonuniformity_N = mkN "nonuniformity" "nonuniformities" ; -- compound uniformity_N ;
-lin conformity_N = mkN "conformity" "conformities" ;
-lin nonconformity_N = mkN "nonconformity" "nonconformities" ; -- compound conformity_N ;
-lin enormity_N = mkN "enormity" "enormities" ;
-lin anonymity_N = mkN "anonymity" "anonymities" ;
-lin urbanity_N = mkN "urbanity" "urbanities" ;
-lin profanity_N = mkN "profanity" "profanities" ;
-lin Christianity_N = mkN "Christianity" "Christianities" ;
-lin humanity_N = mkN "humanity" "humanities" ;
-lin inhumanity_N = mkN "inhumanity" "inhumanities" ; -- compound humanity_N ;
-lin inanity_N = mkN "inanity" "inanities" ;
-lin sanity_N = mkN "sanity" "sanities" ;
-lin insanity_N = mkN "insanity" "insanities" ; -- compound sanity_N ;
-lin vanity_N = mkN "vanity" "vanities" ;
-lin obscenity_N = mkN "obscenity" "obscenities" ;
-lin lenity_N = mkN "lenity" "lenities" ;
-lin amenity_N = mkN "amenity" "amenities" ;
-lin serenity_N = mkN "serenity" "serenities" ;
-lin dignity_N = mkN "dignity" "dignities" ;
-lin indignity_N = mkN "indignity" "indignities" ; -- compound dignity_N ;
-lin malignity_N = mkN "malignity" "malignities" ;
-lin benignity_N = mkN "benignity" "benignities" ;
-lin vicinity_N = mkN "vicinity" "vicinities" ;
-lin affinity_N = mkN "affinity" "affinities" ;
-lin infinity_N = mkN "infinity" "infinities" ;
-lin virginity_N = mkN "virginity" "virginities" ;
-lin alkalinity_N = mkN "alkalinity" "alkalinities" ;
-lin salinity_N = mkN "salinity" "salinities" ;
-lin masculinity_N = mkN "masculinity" "masculinities" ;
-lin femininity_N = mkN "femininity" "femininities" ;
-lin asininity_N = mkN "asininity" "asininities" ;
-lin saccharinity_N = mkN "saccharinity" "saccharinities" ;
-lin chlorinity_N = mkN "chlorinity" "chlorinities" ;
-lin trinity_N = mkN "trinity" "trinities" ;
-lin sanguinity_N = mkN "sanguinity" "sanguinities" ;
-lin consanguinity_N = mkN "consanguinity" "consanguinities" ; -- compound sanguinity_N ;
-lin divinity_N = mkN "divinity" "divinities" ;
-lin indemnity_N = mkN "indemnity" "indemnities" ;
-lin solemnity_N = mkN "solemnity" "solemnities" ;
-lin moronity_N = mkN "moronity" "moronities" ;
-lin modernity_N = mkN "modernity" "modernities" ;
-lin maternity_N = mkN "maternity" "maternities" ;
-lin paternity_N = mkN "paternity" "paternities" ;
-lin fraternity_N = mkN "fraternity" "fraternities" ;
-lin eternity_N = mkN "eternity" "eternities" ;
-lin taciturnity_N = mkN "taciturnity" "taciturnities" ;
-lin unity_N = mkN "unity" "unities" ;
-lin jejunity_N = mkN "jejunity" "jejunities" ; -- compound unity_N ;
-lin immunity_N = mkN "immunity" "immunities" ; -- compound unity_N ;
-lin autoimmunity_N = mkN "autoimmunity" "autoimmunities" ; -- compound unity_N ;
-lin community_N = mkN "community" "communities" ; -- compound unity_N ;
-lin impunity_N = mkN "impunity" "impunities" ; -- compound unity_N ;
-lin disunity_N = mkN "disunity" "disunities" ; -- compound unity_N ;
-lin importunity_N = mkN "importunity" "importunities" ; -- compound unity_N ;
-lin opportunity_N = mkN "opportunity" "opportunities" ; -- compound unity_N ;
-lin dacoity_N = mkN "dacoity" "dacoities" ;
-lin pity_N = mkN "pity" "pities" ;
-lin 'self-pity_N' = mkN "self-pity" "self-pities" ; -- compound pity_N ;
-lin serendipity_N = mkN "serendipity" "serendipities" ; -- compound pity_N ;
-lin arity_N = mkN "arity" "arities" ;
-lin barbarity_N = mkN "barbarity" "barbarities" ; -- compound arity_N ;
-lin solidarity_N = mkN "solidarity" "solidarities" ; -- compound arity_N ;
-lin multicollinearity_N = mkN "multicollinearity" "multicollinearities" ; -- compound arity_N ;
-lin vulgarity_N = mkN "vulgarity" "vulgarities" ; -- compound arity_N ;
-lin charity_N = mkN "charity" "charities" ; -- notcompound arity_N ;
-lin familiarity_N = mkN "familiarity" "familiarities" ; -- compound arity_N ;
-lin unfamiliarity_N = mkN "unfamiliarity" "unfamiliarities" ; -- compound arity_N ;
-lin peculiarity_N = mkN "peculiarity" "peculiarities" ; -- compound arity_N ;
-lin clarity_N = mkN "clarity" "clarities" ; -- notcompound arity_N ;
-lin hilarity_N = mkN "hilarity" "hilarities" ; -- compound arity_N ;
-lin similarity_N = mkN "similarity" "similarities" ; -- compound arity_N ;
-lin dissimilarity_N = mkN "dissimilarity" "dissimilarities" ; -- compound arity_N ;
-lin capillarity_N = mkN "capillarity" "capillarities" ; -- compound arity_N ;
-lin molarity_N = mkN "molarity" "molarities" ; -- compound arity_N ;
-lin polarity_N = mkN "polarity" "polarities" ; -- compound arity_N ;
-lin lobularity_N = mkN "lobularity" "lobularities" ; -- compound arity_N ;
-lin perpendicularity_N = mkN "perpendicularity" "perpendicularities" ; -- compound arity_N ;
-lin particularity_N = mkN "particularity" "particularities" ; -- compound arity_N ;
-lin jocularity_N = mkN "jocularity" "jocularities" ; -- compound arity_N ;
-lin circularity_N = mkN "circularity" "circularities" ; -- compound arity_N ;
-lin vascularity_N = mkN "vascularity" "vascularities" ; -- compound arity_N ;
-lin muscularity_N = mkN "muscularity" "muscularities" ; -- compound arity_N ;
-lin regularity_N = mkN "regularity" "regularities" ; -- compound arity_N ;
-lin irregularity_N = mkN "irregularity" "irregularities" ; -- compound arity_N ;
-lin angularity_N = mkN "angularity" "angularities" ; -- compound arity_N ;
-lin triangularity_N = mkN "triangularity" "triangularities" ; -- compound arity_N ;
-lin rectangularity_N = mkN "rectangularity" "rectangularities" ; -- compound arity_N ;
-lin singularity_N = mkN "singularity" "singularities" ; -- compound arity_N ;
-lin cellularity_N = mkN "cellularity" "cellularities" ; -- compound arity_N ;
-lin hypocellularity_N = mkN "hypocellularity" "hypocellularities" ; -- compound arity_N ;
-lin hypercellularity_N = mkN "hypercellularity" "hypercellularities" ; -- compound arity_N ;
-lin granularity_N = mkN "granularity" "granularities" ; -- compound arity_N ;
-lin popularity_N = mkN "popularity" "popularities" ; -- compound arity_N ;
-lin unpopularity_N = mkN "unpopularity" "unpopularities" ; -- compound arity_N ;
-lin insularity_N = mkN "insularity" "insularities" ; -- compound arity_N ;
-lin parity_N = mkN "parity" "parities" ; -- notcompound arity_N ;
-lin fissiparity_N = mkN "fissiparity" "fissiparities" ; -- compound arity_N ;
-lin disparity_N = mkN "disparity" "disparities" ; -- compound arity_N ;
-lin rarity_N = mkN "rarity" "rarities" ; -- notcompound arity_N ;
-lin complementarity_N = mkN "complementarity" "complementarities" ; -- compound arity_N ;
-lin celebrity_N = mkN "celebrity" "celebrities" ;
-lin salubrity_N = mkN "salubrity" "salubrities" ;
-lin insalubrity_N = mkN "insalubrity" "insalubrities" ; -- compound salubrity_N ;
-lin alacrity_N = mkN "alacrity" "alacrities" ;
-lin mediocrity_N = mkN "mediocrity" "mediocrities" ;
-lin sincerity_N = mkN "sincerity" "sincerities" ;
-lin insincerity_N = mkN "insincerity" "insincerities" ; -- compound sincerity_N ;
-lin celerity_N = mkN "celerity" "celerities" ;
-lin temerity_N = mkN "temerity" "temerities" ;
-lin asperity_N = mkN "asperity" "asperities" ;
-lin prosperity_N = mkN "prosperity" "prosperities" ;
-lin posterity_N = mkN "posterity" "posterities" ;
-lin austerity_N = mkN "austerity" "austerities" ;
-lin dexterity_N = mkN "dexterity" "dexterities" ;
-lin ambidexterity_N = mkN "ambidexterity" "ambidexterities" ; -- compound dexterity_N ;
-lin verity_N = mkN "verity" "verities" ;
-lin severity_N = mkN "severity" "severities" ; -- compound verity_N ;
-lin integrity_N = mkN "integrity" "integrities" ;
-lin authority_N = mkN "authority" "authorities" ;
-lin seniority_N = mkN "seniority" "seniorities" ;
-lin inferiority_N = mkN "inferiority" "inferiorities" ;
-lin superiority_N = mkN "superiority" "superiorities" ;
-lin ulteriority_N = mkN "ulteriority" "ulteriorities" ;
-lin anteriority_N = mkN "anteriority" "anteriorities" ;
-lin posteriority_N = mkN "posteriority" "posteriorities" ;
-lin priority_N = mkN "priority" "priorities" ;
-lin majority_N = mkN "majority" "majorities" ;
-lin minority_N = mkN "minority" "minorities" ;
-lin sonority_N = mkN "sonority" "sonorities" ;
-lin sorority_N = mkN "sorority" "sororities" ;
-lin security_N = mkN "security" "securities" ;
-lin insecurity_N = mkN "insecurity" "insecurities" ; -- compound security_N ;
-lin obscurity_N = mkN "obscurity" "obscurities" ;
-lin purity_N = mkN "purity" "purities" ;
-lin impurity_N = mkN "impurity" "impurities" ; -- compound purity_N ;
-lin maturity_N = mkN "maturity" "maturities" ;
-lin immaturity_N = mkN "immaturity" "immaturities" ; -- compound maturity_N ;
-lin futurity_N = mkN "futurity" "futurities" ;
-lin obesity_N = mkN "obesity" "obesities" ;
-lin falsity_N = mkN "falsity" "falsities" ;
-lin density_N = mkN "density" "densities" ;
-lin immensity_N = mkN "immensity" "immensities" ;
-lin propensity_N = mkN "propensity" "propensities" ;
-lin tensity_N = mkN "tensity" "tensities" ;
-lin intensity_N = mkN "intensity" "intensities" ; -- compound tensity_N ;
-lin verbosity_N = mkN "verbosity" "verbosities" ;
-lin bellicosity_N = mkN "bellicosity" "bellicosities" ;
-lin varicosity_N = mkN "varicosity" "varicosities" ;
-lin jocosity_N = mkN "jocosity" "jocosities" ;
-lin viscosity_N = mkN "viscosity" "viscosities" ;
-lin homozygosity_N = mkN "homozygosity" "homozygosities" ;
-lin heterozygosity_N = mkN "heterozygosity" "heterozygosities" ;
-lin preciosity_N = mkN "preciosity" "preciosities" ;
-lin grandiosity_N = mkN "grandiosity" "grandiosities" ;
-lin religiosity_N = mkN "religiosity" "religiosities" ;
-lin curiosity_N = mkN "curiosity" "curiosities" ;
-lin callosity_N = mkN "callosity" "callosities" ;
-lin animosity_N = mkN "animosity" "animosities" ;
-lin luminosity_N = mkN "luminosity" "luminosities" ;
-lin adiposity_N = mkN "adiposity" "adiposities" ;
-lin pomposity_N = mkN "pomposity" "pomposities" ;
-lin fibrosity_N = mkN "fibrosity" "fibrosities" ;
-lin tuberosity_N = mkN "tuberosity" "tuberosities" ;
-lin generosity_N = mkN "generosity" "generosities" ;
-lin porosity_N = mkN "porosity" "porosities" ;
-lin monstrosity_N = mkN "monstrosity" "monstrosities" ;
-lin sinuosity_N = mkN "sinuosity" "sinuosities" ;
-lin impetuosity_N = mkN "impetuosity" "impetuosities" ;
-lin virtuosity_N = mkN "virtuosity" "virtuosities" ;
-lin tortuosity_N = mkN "tortuosity" "tortuosities" ;
-lin sparsity_N = mkN "sparsity" "sparsities" ;
-lin varsity_N = mkN "varsity" "varsities" ;
-lin adversity_N = mkN "adversity" "adversities" ;
-lin diversity_N = mkN "diversity" "diversities" ;
-lin biodiversity_N = mkN "biodiversity" "biodiversities" ; -- compound diversity_N ;
-lin university_N = mkN "university" "universities" ;
-lin multiversity_N = mkN "multiversity" "multiversities" ;
-lin perversity_N = mkN "perversity" "perversities" ;
-lin necessity_N = mkN "necessity" "necessities" ;
-lin sanctity_N = mkN "sanctity" "sanctities" ;
-lin quantity_N = mkN "quantity" "quantities" ;
-lin entity_N = mkN "entity" "entities" ;
-lin identity_N = mkN "identity" "identities" ; -- compound entity_N ;
-lin nonentity_N = mkN "nonentity" "nonentities" ; -- compound entity_N ;
-lin chastity_N = mkN "chastity" "chastities" ;
-lin acuity_N = mkN "acuity" "acuities" ;
-lin vacuity_N = mkN "vacuity" "vacuities" ; -- notcompound acuity_N ;
-lin perspicuity_N = mkN "perspicuity" "perspicuities" ;
-lin promiscuity_N = mkN "promiscuity" "promiscuities" ;
-lin assiduity_N = mkN "assiduity" "assiduities" ;
-lin ambiguity_N = mkN "ambiguity" "ambiguities" ;
-lin unambiguity_N = mkN "unambiguity" "unambiguities" ; -- compound ambiguity_N ;
-lin contiguity_N = mkN "contiguity" "contiguities" ;
-lin superfluity_N = mkN "superfluity" "superfluities" ;
-lin ingenuity_N = mkN "ingenuity" "ingenuities" ;
-lin tenuity_N = mkN "tenuity" "tenuities" ;
-lin continuity_N = mkN "continuity" "continuities" ;
-lin discontinuity_N = mkN "discontinuity" "discontinuities" ; -- compound continuity_N ;
-lin annuity_N = mkN "annuity" "annuities" ;
-lin equity_N = mkN "equity" "equities" ;
-lin inequity_N = mkN "inequity" "inequities" ; -- compound equity_N ;
-lin ubiquity_N = mkN "ubiquity" "ubiquities" ;
-lin obliquity_N = mkN "obliquity" "obliquities" ;
-lin iniquity_N = mkN "iniquity" "iniquities" ;
-lin antiquity_N = mkN "antiquity" "antiquities" ;
-lin propinquity_N = mkN "propinquity" "propinquities" ;
-lin congruity_N = mkN "congruity" "congruities" ;
-lin incongruity_N = mkN "incongruity" "incongruities" ; -- compound congruity_N ;
-lin fatuity_N = mkN "fatuity" "fatuities" ;
-lin gratuity_N = mkN "gratuity" "gratuities" ;
-lin perpetuity_N = mkN "perpetuity" "perpetuities" ;
-lin cavity_N = mkN "cavity" "cavities" ;
-lin concavity_N = mkN "concavity" "concavities" ; -- compound cavity_N ;
-lin gravity_N = mkN "gravity" "gravities" ;
-lin depravity_N = mkN "depravity" "depravities" ;
-lin suavity_N = mkN "suavity" "suavities" ;
-lin longevity_N = mkN "longevity" "longevities" ;
-lin levity_N = mkN "levity" "levities" ;
-lin brevity_N = mkN "brevity" "brevities" ;
-lin acclivity_N = mkN "acclivity" "acclivities" ;
-lin declivity_N = mkN "declivity" "declivities" ;
-lin proclivity_N = mkN "proclivity" "proclivities" ;
-lin passivity_N = mkN "passivity" "passivities" ;
-lin impassivity_N = mkN "impassivity" "impassivities" ; -- compound passivity_N ;
-lin creativity_N = mkN "creativity" "creativities" ;
-lin negativity_N = mkN "negativity" "negativities" ;
-lin electronegativity_N = mkN "electronegativity" "electronegativities" ; -- compound negativity_N ;
-lin relativity_N = mkN "relativity" "relativities" ;
-lin nativity_N = mkN "nativity" "nativities" ;
-lin activity_N = mkN "activity" "activities" ;
-lin reactivity_N = mkN "reactivity" "reactivities" ; -- compound activity_N ;
-lin inactivity_N = mkN "inactivity" "inactivities" ; -- compound activity_N ;
-lin radioactivity_N = mkN "radioactivity" "radioactivities" ; -- compound activity_N ;
-lin hyperactivity_N = mkN "hyperactivity" "hyperactivities" ; -- compound activity_N ;
-lin overactivity_N = mkN "overactivity" "overactivities" ; -- compound activity_N ;
-lin refractivity_N = mkN "refractivity" "refractivities" ; -- compound activity_N ;
-lin objectivity_N = mkN "objectivity" "objectivities" ;
-lin subjectivity_N = mkN "subjectivity" "subjectivities" ;
-lin selectivity_N = mkN "selectivity" "selectivities" ;
-lin connectivity_N = mkN "connectivity" "connectivities" ;
-lin directivity_N = mkN "directivity" "directivities" ;
-lin conductivity_N = mkN "conductivity" "conductivities" ;
-lin photoconductivity_N = mkN "photoconductivity" "photoconductivities" ; -- compound conductivity_N ;
-lin superconductivity_N = mkN "superconductivity" "superconductivities" ; -- compound conductivity_N ;
-lin productivity_N = mkN "productivity" "productivities" ;
-lin reluctivity_N = mkN "reluctivity" "reluctivities" ;
-lin transitivity_N = mkN "transitivity" "transitivities" ;
-lin intransitivity_N = mkN "intransitivity" "intransitivities" ; -- compound transitivity_N ;
-lin sensitivity_N = mkN "sensitivity" "sensitivities" ;
-lin insensitivity_N = mkN "insensitivity" "insensitivities" ; -- compound sensitivity_N ;
-lin photosensitivity_N = mkN "photosensitivity" "photosensitivities" ; -- compound sensitivity_N ;
-lin hypersensitivity_N = mkN "hypersensitivity" "hypersensitivities" ; -- compound sensitivity_N ;
-lin positivity_N = mkN "positivity" "positivities" ;
-lin captivity_N = mkN "captivity" "captivities" ;
-lin receptivity_N = mkN "receptivity" "receptivities" ;
-lin absorptivity_N = mkN "absorptivity" "absorptivities" ;
-lin festivity_N = mkN "festivity" "festivities" ;
-lin resistivity_N = mkN "resistivity" "resistivities" ;
-lin reflexivity_N = mkN "reflexivity" "reflexivities" ;
-lin laxity_N = mkN "laxity" "laxities" ;
-lin complexity_N = mkN "complexity" "complexities" ;
-lin perplexity_N = mkN "perplexity" "perplexities" ;
-lin convexity_N = mkN "convexity" "convexities" ;
-lin prolixity_N = mkN "prolixity" "prolixities" ;
-lin fealty_N = mkN "fealty" "fealties" ;
-lin realty_N = mkN "realty" "realties" ;
-lin specialty_N = mkN "specialty" "specialties" ;
-lin penalty_N = mkN "penalty" "penalties" ;
-lin commonalty_N = mkN "commonalty" "commonalties" ;
-lin personalty_N = mkN "personalty" "personalties" ;
-lin severalty_N = mkN "severalty" "severalties" ;
-lin admiralty_N = mkN "admiralty" "admiralties" ;
-lin temporalty_N = mkN "temporalty" "temporalties" ;
-lin mayoralty_N = mkN "mayoralty" "mayoralties" ;
-lin casualty_N = mkN "casualty" "casualties" ;
-lin spiritualty_N = mkN "spiritualty" "spiritualties" ;
-lin loyalty_N = mkN "loyalty" "loyalties" ;
-lin disloyalty_N = mkN "disloyalty" "disloyalties" ; -- compound loyalty_N ;
-lin royalty_N = mkN "royalty" "royalties" ;
-lin viceroyalty_N = mkN "viceroyalty" "viceroyalties" ; -- compound royalty_N ;
-lin cruelty_N = mkN "cruelty" "cruelties" ;
-lin novelty_N = mkN "novelty" "novelties" ;
-lin frailty_N = mkN "frailty" "frailties" ;
-lin faculty_N = mkN "faculty" "faculties" ;
-lin difficulty_N = mkN "difficulty" "difficulties" ;
-lin shanty_N = mkN "shanty" "shanties" ;
-lin guaranty_N = mkN "guaranty" "guaranties" ;
-lin warranty_N = mkN "warranty" "warranties" ;
-lin plenty_N = mkN "plenty" "plenties" ;
-lin frumenty_N = mkN "frumenty" "frumenties" ;
-lin sovereignty_N = mkN "sovereignty" "sovereignties" ;
-lin dainty_N = mkN "dainty" "dainties" ;
-lin suzerainty_N = mkN "suzerainty" "suzerainties" ;
-lin certainty_N = mkN "certainty" "certainties" ;
-lin uncertainty_N = mkN "uncertainty" "uncertainties" ; -- compound certainty_N ;
-lin aunty_N = mkN "aunty" "aunties" ;
-lin bounty_N = mkN "bounty" "bounties" ;
-lin county_N = mkN "county" "counties" ;
-lin viscounty_N = mkN "viscounty" "viscounties" ; -- compound county_N ;
-lin booty_N = mkN "booty" "booties" ;
-lin empty_N = mkN "empty" "empties" ;
-lin party_N = mkN "party" "parties" ;
-lin 'tea-party_N' = mkN "tea-party" "tea-parties" ; -- compound party_N ;
-lin 'house-party_N' = mkN "house-party" "house-parties" ; -- compound party_N ;
-lin 'fatigue-party_N' = mkN "fatigue-party" "fatigue-parties" ; -- compound party_N ;
-lin 'stag-party_N' = mkN "stag-party" "stag-parties" ; -- compound party_N ;
-lin 'landing-party_N' = mkN "landing-party" "landing-parties" ; -- compound party_N ;
-lin 'firing-party_N' = mkN "firing-party" "firing-parties" ; -- compound party_N ;
-lin 'search-party_N' = mkN "search-party" "search-parties" ; -- compound party_N ;
-lin 'hen-party_N' = mkN "hen-party" "hen-parties" ; -- compound party_N ;
-lin 'stretcher-party_N' = mkN "stretcher-party" "stretcher-parties" ; -- compound party_N ;
-lin 'dinner-party_N' = mkN "dinner-party" "dinner-parties" ; -- compound party_N ;
-lin 'charter-party_N' = mkN "charter-party" "charter-parties" ; -- compound party_N ;
-lin liberty_N = mkN "liberty" "liberties" ;
-lin puberty_N = mkN "puberty" "puberties" ;
-lin prepuberty_N = mkN "prepuberty" "prepuberties" ; -- compound puberty_N ;
-lin champerty_N = mkN "champerty" "champerties" ;
-lin property_N = mkN "property" "properties" ;
-lin poverty_N = mkN "poverty" "poverties" ;
-lin forty_N = mkN "forty" "forties" ;
-lin sty_N = mkN "sty" "sties" ;
-lin myringoplasty_N = mkN "myringoplasty" "myringoplasties" ; -- compound sty_N ;
-lin palatopharyngoplasty_N = mkN "palatopharyngoplasty" "palatopharyngoplasties" ; -- compound sty_N ;
-lin angioplasty_N = mkN "angioplasty" "angioplasties" ; -- compound sty_N ;
-lin phalloplasty_N = mkN "phalloplasty" "phalloplasties" ; -- compound sty_N ;
-lin tympanoplasty_N = mkN "tympanoplasty" "tympanoplasties" ; -- compound sty_N ;
-lin uranoplasty_N = mkN "uranoplasty" "uranoplasties" ; -- compound sty_N ;
-lin abdominoplasty_N = mkN "abdominoplasty" "abdominoplasties" ; -- compound sty_N ;
-lin arthroplasty_N = mkN "arthroplasty" "arthroplasties" ; -- compound sty_N ;
-lin neuroplasty_N = mkN "neuroplasty" "neuroplasties" ; -- compound sty_N ;
-lin keratoplasty_N = mkN "keratoplasty" "keratoplasties" ; -- compound sty_N ;
-lin proctoplasty_N = mkN "proctoplasty" "proctoplasties" ; -- compound sty_N ;
-lin otoplasty_N = mkN "otoplasty" "otoplasties" ; -- compound sty_N ;
-lin autoplasty_N = mkN "autoplasty" "autoplasties" ; -- compound sty_N ;
-lin dynasty_N = mkN "dynasty" "dynasties" ; -- compound sty_N ;
-lin pasty_N = mkN "pasty" "pasties" ; -- compound sty_N ;
-lin paederasty_N = mkN "paederasty" "paederasties" ; -- compound sty_N ;
-lin pederasty_N = mkN "pederasty" "pederasties" ; -- compound sty_N ;
-lin modesty_N = mkN "modesty" "modesties" ; -- compound sty_N ;
-lin immodesty_N = mkN "immodesty" "immodesties" ; -- compound sty_N ;
-lin majesty_N = mkN "majesty" "majesties" ; -- compound sty_N ;
-lin 'lese majesty_N' = mkN "lese majesty" "lese majesties" ; -- compound sty_N ;
-lin amnesty_N = mkN "amnesty" "amnesties" ; -- compound sty_N ;
-lin honesty_N = mkN "honesty" "honesties" ; -- compound sty_N ;
-lin dishonesty_N = mkN "dishonesty" "dishonesties" ; -- compound sty_N ;
-lin travesty_N = mkN "travesty" "travesties" ; -- compound sty_N ;
-lin pigsty_N = mkN "pigsty" "pigsties" ; -- compound sty_N ;
-lin sacristy_N = mkN "sacristy" "sacristies" ; -- compound sty_N ;
-lin trusty_N = mkN "trusty" "trusties" ; -- compound sty_N ;
-lin catty_N = mkN "catty" "catties" ;
-lin patty_N = mkN "patty" "patties" ;
-lin jetty_N = mkN "jetty" "jetties" ;
-lin pretty_N = mkN "pretty" "pretties" ;
-lin ditty_N = mkN "ditty" "ditties" ;
-lin kitty_N = mkN "kitty" "kitties" ;
-lin 'nitty-gritty_N' = mkN "nitty-gritty" "nitty-gritties" ;
-lin potty_N = mkN "potty" "potties" ;
-lin butty_N = mkN "butty" "butties" ;
-lin putty_N = mkN "putty" "putties" ;
-lin beauty_N = mkN "beauty" "beauties" ;
-lin duty_N = mkN "duty" "duties" ;
-lin 'stamp-duty_N' = mkN "stamp-duty" "stamp-duties" ; -- compound duty_N ;
-lin 'point-duty_N' = mkN "point-duty" "point-duties" ; -- compound duty_N ;
-lin deputy_N = mkN "deputy" "deputies" ;
-lin zloty_N = mkN "zloty" "zlotys" ;
-lin soliloquy_N = mkN "soliloquy" "soliloquies" ;
-lin colloquy_N = mkN "colloquy" "colloquies" ;
-lin buy_N = mkN "buy" "buys" ;
-lin guy_N = mkN "guy" "guys" ;
-lin obloquy_N = mkN "obloquy" "obloquys" ;
-lin cavy_N = mkN "cavy" "cavies" ;
-lin heavy_N = mkN "heavy" "heavies" ;
-lin navy_N = mkN "navy" "navies" ;
-lin gravy_N = mkN "gravy" "gravies" ;
-lin bevy_N = mkN "bevy" "bevies" ;
-lin levy_N = mkN "levy" "levies" ;
-lin ivy_N = mkN "ivy" "ivies" ;
-lin 'poison-ivy_N' = mkN "poison-ivy" "poison-ivies" ; -- compound ivy_N ;
-lin privy_N = mkN "privy" "privies" ; -- notcompound ivy_N ;
-lin envy_N = mkN "envy" "envies" ;
-lin muscovy_N = mkN "muscovy" "muscovies" ;
-lin anchovy_N = mkN "anchovy" "anchovies" ;
-lin scurvy_N = mkN "scurvy" "scurvies" ;
-lin navvy_N = mkN "navvy" "navvies" ;
-lin savvy_N = mkN "savvy" "savvies" ;
-lin divvy_N = mkN "divvy" "divvies" ;
-lin skivvy_N = mkN "skivvy" "skivvies" ;
-lin galaxy_N = mkN "galaxy" "galaxies" ;
-lin epitaxy_N = mkN "epitaxy" "epitaxies" ;
-lin apoplexy_N = mkN "apoplexy" "apoplexies" ;
-lin orchiopexy_N = mkN "orchiopexy" "orchiopexies" ;
-lin mastopexy_N = mkN "mastopexy" "mastopexies" ;
-lin pixy_N = mkN "pixy" "pixies" ;
-lin orthodoxy_N = mkN "orthodoxy" "orthodoxies" ;
-lin unorthodoxy_N = mkN "unorthodoxy" "unorthodoxies" ; -- compound orthodoxy_N ;
-lin heterodoxy_N = mkN "heterodoxy" "heterodoxies" ;
-lin epoxy_N = mkN "epoxy" "epoxies" ;
-lin proxy_N = mkN "proxy" "proxies" ;
-lin crazy_N = mkN "crazy" "crazies" ;
-lin frenzy_N = mkN "frenzy" "frenzies" ;
-lin floozy_N = mkN "floozy" "floozies" ;
-lin tizzy_N = mkN "tizzy" "tizzies" ;
-lin ply_N = mkN "ply" "ply" ;
-lin tunny_N = mkN "tunny" "tunny" ;
-lin fry_N = mkN "fry" "fry" ;
-lin gentry_N = mkN "gentry" "gentry" ;
-lin swiz_N = mkN "swiz" "IRREG" ;
-lin kibbutz_N = mkN "kibbutz" "IRREG" ;
-lin topaz_N = mkN "topaz" "topazes" ;
-lin adz_N = mkN "adz" "adzes" ;
-lin kameez_N = mkN "kameez" "kameezes" ;
-lin fez_N = mkN "fez" "fezes" ;
-lin biz_N = mkN "biz" "bizes" ;
-lin showbiz_N = mkN "showbiz" "showbizes" ; -- compound biz_N ;
-lin whiz_N = mkN "whiz" "whizes" ;
-lin quiz_N = mkN "quiz" "quizzes" ;
-lin schmalz_N = mkN "schmalz" "schmalzes" ;
-lin guanabenz_N = mkN "guanabenz" "guanabenzes" ;
-lin kolkhoz_N = mkN "kolkhoz" "kolkhozes" ;
-lin mittelschmerz_N = mkN "mittelschmerz" "mittelschmerzes" ;
-lin kuvasz_N = mkN "kuvasz" "kuvaszes" ;
-lin grosz_N = mkN "grosz" "groszes" ;
-lin ersatz_N = mkN "ersatz" "ersatzes" ;
-lin shegetz_N = mkN "shegetz" "shegetzes" ;
-lin blitz_N = mkN "blitz" "blitzes" ;
-lin spitz_N = mkN "spitz" "spitzes" ;
-lin ritz_N = mkN "ritz" "ritzes" ;
-lin spritz_N = mkN "spritz" "spritzes" ; -- notcompound ritz_N ;
-lin slivovitz_N = mkN "slivovitz" "slivovitzes" ;
-lin schmaltz_N = mkN "schmaltz" "schmaltzes" ;
-lin waltz_N = mkN "waltz" "waltzes" ;
-lin chintz_N = mkN "chintz" "chintzes" ;
-lin blintz_N = mkN "blintz" "blintzes" ;
-lin quartz_N = mkN "quartz" "quartzes" ;
-lin megahertz_N = mkN "megahertz" "megahertzes" ;
-lin gigahertz_N = mkN "gigahertz" "gigahertzes" ;
-lin terahertz_N = mkN "terahertz" "terahertzes" ;
-lin kilohertz_N = mkN "kilohertz" "kilohertzes" ;
-lin klutz_N = mkN "klutz" "klutzes" ;
-lin putz_N = mkN "putz" "putzes" ;
-lin jazz_N = mkN "jazz" "jazzes" ;
-lin fizz_N = mkN "fizz" "fizzes" ;
-lin frizz_N = mkN "frizz" "frizzes" ;
-lin zizz_N = mkN "zizz" "zizzes" ;
-lin buzz_N = mkN "buzz" "buzzes" ;
-lin fuzz_N = mkN "fuzz" "fuzzes" ;
-lin 'pince-nez_N' = mkN "pince-nez" "pince-nez" ;
-lin oz_N = mkN "oz" "oz" ;
-lin doz_N = mkN "doz" "doz" ; -- notcompound oz_N ;
-lin hertz_N = mkN "hertz" "hertz" ;
-lin pietà_N = mkN "pietà" "pietàs" ;
-lin abbé_N = mkN "abbé" "abbés" ;
-lin fiancé_N = mkN "fiancé" "fiancés" ;
-lin 'auto-da-fé_1_N' = mkN "auto-da-fé" "auto-de-fés" ;
-lin café_N = mkN "café" "cafés" ;
-lin réchauffé_N = mkN "réchauffé" "réchauffés" ;
-lin négligé_N = mkN "négligé" "négligés" ;
-lin congé_N = mkN "congé" "congés" ;
-lin protégé_N = mkN "protégé" "protégés" ;
-lin attaché_N = mkN "attaché" "attachés" ;
-lin cliché_N = mkN "cliché" "clichés" ;
-lin 'papier-mâché_N' = mkN "papier-mâché" "papier-mâchés" ;
-lin saké_N = mkN "saké" "sakés" ;
-lin soufflé_N = mkN "soufflé" "soufflés" ;
-lin déshabillé_N = mkN "déshabillé" "déshabillés" ;
-lin lamé_N = mkN "lamé" "lamés" ;
-lin consommé_N = mkN "consommé" "consommés" ;
-lin résumé_N = mkN "résumé" "résumés" ;
-lin cloisonné_N = mkN "cloisonné" "cloisonnés" ;
-lin canapé_N = mkN "canapé" "canapés" ;
-lin coupé_N = mkN "coupé" "coupés" ;
-lin émigré_N = mkN "émigré" "émigrés" ;
-lin curé_N = mkN "curé" "curés" ;
-lin exposé_N = mkN "exposé" "exposés" ;
-lin maté_N = mkN "maté" "matés" ;
-lin naiveté_N = mkN "naiveté" "naivetés" ;
-lin pâté_N = mkN "pâté" "pâtés" ;
-lin roué_N = mkN "roué" "roués" ;
-lin appliqué_N = mkN "appliqué" "appliqués" ;
-lin communiqué_N = mkN "communiqué" "communiqués" ;
-lin habitué_N = mkN "habitué" "habitués" ;
-lin 'auto-da-fé_2_N' = mkN "auto-da-fé" "autos-de-fé" ;
-lin 'vs._Prep' = mkPrep "vs." ;
+lin '\'til_Prep' = mkPrep "'til" ;
+lin '\'tween_Adv' = mkAdv "'tween" ;
+lin '\'tween_decks_Adv' = mkAdv "'tween-decks" ;
lin 'a/k/a_Prep' = mkPrep "a/k/a" ;
-lin circa_Prep = mkPrep "circa" ;
-lin via_Prep = mkPrep "via" ;
-lin contra_Prep = mkPrep "contra" ;
-lin qua_Prep = mkPrep "qua" ;
-lin mid_Prep = mkPrep "mid" ;
-lin amid_Prep = mkPrep "amid" ; -- notcompound mid_Prep ;
-lin behind_Prep = mkPrep "behind" ;
-lin beyond_Prep = mkPrep "beyond" ;
-lin round_Prep = mkPrep "round" ;
-lin around_Prep = mkPrep "around" ; -- notcompound round_Prep ;
-lin aboard_Prep = mkPrep "aboard" ;
-lin fromward_Prep = mkPrep "fromward" ;
-lin froward_Prep = mkPrep "froward" ;
-lin toward_Prep = mkPrep "toward" ;
-lin apud_Prep = mkPrep "apud" ;
-lin pace_Prep = mkPrep "pace" ;
-lin vice_Prep = mkPrep "vice" ;
-lin since_Prep = mkPrep "since" ;
-lin once_Prep = mkPrep "once" ;
-lin astride_Prep = mkPrep "astride" ;
-lin beside_Prep = mkPrep "beside" ;
-lin alongside_Prep = mkPrep "alongside" ;
-lin inside_Prep = mkPrep "inside" ;
-lin outside_Prep = mkPrep "outside" ;
-lin like_Prep = mkPrep "like" ;
-lin unlike_Prep = mkPrep "unlike" ; -- compound like_Prep ;
-lin re_Prep = mkPrep "re" ;
-lin 'in re_Prep' = mkPrep "in re" ; -- compound re_Prep ;
-lin ere_Prep = mkPrep "ere" ; -- notcompound re_Prep ;
-lin afore_Prep = mkPrep "afore" ; -- compound re_Prep ;
-lin before_Prep = mkPrep "before" ; -- compound re_Prep ;
-lin despite_Prep = mkPrep "despite" ;
-lin opposite_Prep = mkPrep "opposite" ;
-lin above_Prep = mkPrep "above" ;
-lin off_Prep = mkPrep "off" ;
-lin of_Prep = mkPrep "of" ;
-lin 'ahead of_Prep' = mkPrep "ahead of" ; -- compound of_Prep ;
-lin 'instead of_Prep' = mkPrep "instead of" ; -- compound of_Prep ;
-lin 'in place of_Prep' = mkPrep "in place of" ; -- compound of_Prep ;
-lin 'inside of_Prep' = mkPrep "inside of" ; -- compound of_Prep ;
-lin 'outside of_Prep' = mkPrep "outside of" ; -- compound of_Prep ;
-lin 'for the sake of_Prep' = mkPrep "for the sake of" ; -- compound of_Prep ;
-lin 'in case of_Prep' = mkPrep "in case of" ; -- compound of_Prep ;
-lin 'because of_Prep' = mkPrep "because of" ; -- compound of_Prep ;
-lin 'in spite of_Prep' = mkPrep "in spite of" ; -- compound of_Prep ;
-lin 'by virtue of_Prep' = mkPrep "by virtue of" ; -- compound of_Prep ;
-lin 'on behalf of_Prep' = mkPrep "on behalf of" ; -- compound of_Prep ;
-lin 'on top of_Prep' = mkPrep "on top of" ; -- compound of_Prep ;
-lin 'as of_Prep' = mkPrep "as of" ; -- compound of_Prep ;
-lin 'by means of_Prep' = mkPrep "by means of" ; -- compound of_Prep ;
-lin 'regardless of_Prep' = mkPrep "regardless of" ; -- compound of_Prep ;
-lin 'that of_Prep' = mkPrep "that of" ; -- compound of_Prep ;
-lin 'left of_Prep' = mkPrep "left of" ; -- compound of_Prep ;
-lin 'right of_Prep' = mkPrep "right of" ; -- compound of_Prep ;
-lin 'in point of_Prep' = mkPrep "in point of" ; -- compound of_Prep ;
-lin 'in front of_Prep' = mkPrep "in front of" ; -- compound of_Prep ;
-lin 'on account of_Prep' = mkPrep "on account of" ; -- compound of_Prep ;
-lin 'at the behest of_Prep' = mkPrep "at the behest of" ; -- compound of_Prep ;
-lin 'out of_Prep' = mkPrep "out of" ; -- compound of_Prep ;
-lin 'in lieu of_Prep' = mkPrep "in lieu of" ; -- compound of_Prep ;
-lin notwithstanding_Prep = mkPrep "notwithstanding" ;
-lin pending_Prep = mkPrep "pending" ;
-lin during_Prep = mkPrep "during" ;
-lin along_Prep = mkPrep "along" ;
-lin among_Prep = mkPrep "among" ;
-lin though_Prep = mkPrep "though" ;
-lin through_Prep = mkPrep "through" ;
-lin beneath_Prep = mkPrep "beneath" ;
-lin underneath_Prep = mkPrep "underneath" ;
-lin with_Prep = mkPrep "with" ;
-lin 'in accordance with_Prep' = mkPrep "in accordance with" ; -- compound with_Prep ;
-lin outwith_Prep = mkPrep "outwith" ; -- compound with_Prep ;
-lin worth_Prep = mkPrep "worth" ;
-lin anti_Prep = mkPrep "anti" ;
-lin W_'til_Prep = mkPrep "'til" ;
-lin until_Prep = mkPrep "until" ;
-lin till_Prep = mkPrep "till" ;
-lin from_Prep = mkPrep "from" ;
-lin 'aside from_Prep' = mkPrep "aside from" ; -- compound from_Prep ;
-lin 'far from_Prep' = mkPrep "far from" ; -- compound from_Prep ;
-lin 'apart from_Prep' = mkPrep "apart from" ; -- compound from_Prep ;
-lin 'out from_Prep' = mkPrep "out from" ; -- compound from_Prep ;
-lin cum_Prep = mkPrep "cum" ;
-lin than_Prep = mkPrep "than" ;
-lin 'rather than_Prep' = mkPrep "rather than" ; -- compound than_Prep ;
-lin between_Prep = mkPrep "between" ;
-lin then_Prep = mkPrep "then" ;
-lin betwixen_Prep = mkPrep "betwixen" ;
-lin in_Prep = mkPrep "in" ;
-lin agin_Prep = mkPrep "agin" ; -- compound in_Prep ;
-lin within_Prep = mkPrep "within" ; -- compound in_Prep ;
-lin on_Prep = mkPrep "on" ;
-lin upon_Prep = mkPrep "upon" ; -- compound on_Prep ;
-lin down_Prep = mkPrep "down" ;
-lin ago_Prep = mkPrep "ago" ;
-lin modulo_Prep = mkPrep "modulo" ;
-lin pro_Prep = mkPrep "pro" ;
-lin to_Prep = mkPrep "to" ;
-lin 'as opposed to_Prep' = mkPrep "as opposed to" ; -- compound to_Prep ;
-lin 'with regard to_Prep' = mkPrep "with regard to" ; -- compound to_Prep ;
-lin 'close to_Prep' = mkPrep "close to" ; -- compound to_Prep ;
-lin 'due to_Prep' = mkPrep "due to" ; -- compound to_Prep ;
-lin 'according to_Prep' = mkPrep "according to" ; -- compound to_Prep ;
-lin 'owing to_Prep' = mkPrep "owing to" ; -- compound to_Prep ;
-lin 'back to_Prep' = mkPrep "back to" ; -- compound to_Prep ;
-lin 'in addition to_Prep' = mkPrep "in addition to" ; -- compound to_Prep ;
-lin 'up to_Prep' = mkPrep "up to" ; -- compound to_Prep ;
-lin 'near to_Prep' = mkPrep "near to" ; -- compound to_Prep ;
-lin 'in order to_Prep' = mkPrep "in order to" ; -- compound to_Prep ;
-lin 'prior to_Prep' = mkPrep "prior to" ; -- compound to_Prep ;
-lin 'thanks to_Prep' = mkPrep "thanks to" ; -- compound to_Prep ;
-lin 'subject to_Prep' = mkPrep "subject to" ; -- compound to_Prep ;
-lin 'with respect to_Prep' = mkPrep "with respect to" ; -- compound to_Prep ;
-lin 'pursuant to_Prep' = mkPrep "pursuant to" ; -- compound to_Prep ;
-lin 'next to_Prep' = mkPrep "next to" ; -- compound to_Prep ;
-lin 'with a view to_Prep' = mkPrep "with a view to" ; -- compound to_Prep ;
-lin into_Prep = mkPrep "into" ; -- compound to_Prep ;
-lin onto_Prep = mkPrep "onto" ; -- compound to_Prep ;
-lin unto_Prep = mkPrep "unto" ; -- compound to_Prep ;
-lin atop_Prep = mkPrep "atop" ;
-lin up_Prep = mkPrep "up" ;
-lin bar_Prep = mkPrep "bar" ;
-lin near_Prep = mkPrep "near" ;
-lin under_Prep = mkPrep "under" ;
-lin whether_Prep = mkPrep "whether" ;
-lin neither_Prep = mkPrep "neither" ;
-lin behither_Prep = mkPrep "behither" ;
-lin per_Prep = mkPrep "per" ;
-lin 'as per_Prep' = mkPrep "as per" ; -- compound per_Prep ;
-lin nearer_Prep = mkPrep "nearer" ;
-lin after_Prep = mkPrep "after" ;
-lin over_Prep = mkPrep "over" ;
-lin for_Prep = mkPrep "for" ;
-lin 'as for_Prep' = mkPrep "as for" ; -- compound for_Prep ;
-lin 'except for_Prep' = mkPrep "except for" ; -- compound for_Prep ;
-lin as_Prep = mkPrep "as" ;
-lin 'where as_Prep' = mkPrep "where as" ; -- compound as_Prep ;
-lin 'such as_Prep' = mkPrep "such as" ; -- compound as_Prep ;
-lin whereas_Prep = mkPrep "whereas" ; -- compound as_Prep ;
-lin 'as regards_Prep' = mkPrep "as regards" ;
-lin frowards_Prep = mkPrep "frowards" ;
-lin towards_Prep = mkPrep "towards" ;
-lin besides_Prep = mkPrep "besides" ;
-lin times_Prep = mkPrep "times" ;
-lin 'vis-a-vis_Prep' = mkPrep "vis-a-vis" ;
-lin 'vis-à-vis_Prep' = mkPrep "vis-à-vis" ;
-lin sans_Prep = mkPrep "sans" ;
-lin apropos_Prep = mkPrep "apropos" ;
-lin across_Prep = mkPrep "across" ;
-lin minus_Prep = mkPrep "minus" ;
-lin versus_Prep = mkPrep "versus" ;
-lin at_Prep = mkPrep "at" ;
+lin 'cf._Adv' = mkAdv "cf." ;
+lin 'd.o.a._A' = mkAMost "d.o.a." "d.o.a.ly" ;
+lin 'i.e._Adv' = mkAdv "i.e." ;
+lin 'ibid._Adv' = mkAdv "ibid." ;
+lin 'vs._Prep' = mkPrep "vs." ;
+lin Afghan_A = mkAMost "Afghan" "Afghanly" ;
+lin Afghan_N = mkN "Afghan" "Afghans" ;
+lin Afghani_N = mkN "Afghani" "Afghanis" ;
+lin African_A = mkAMost "African" "Africanly" ;
+lin African_N = mkN "African" "Africans" ;
+lin Afrikaans_N = mkN "Afrikaans" "Afrikaanses" ;
+lin Afrikaner_A = mkAMost "Afrikaner" "Afrikanerly" ;
+lin Afrikaner_N = mkN "Afrikaner" "Afrikaners" ;
+lin Afro_American_N = mkN "Afro-American" "Afro-Americans" ;
+lin Afro_Asian_A = mkAMost "Afro-Asian" "Afro-Asianly" ;
+lin Albanian_A = mkAMost "Albanian" "Albanianly" ;
+lin Albanian_N = mkN "Albanian" "Albanians" ;
+lin American_A = mkAMost "American" "Americanly" ;
+lin American_N = mkN "American" "Americans" ;
+lin April_N = mkN "April" "Aprils" ;
+lin Arab_N = mkN "Arab" "Arabs" ;
+lin Arabian_A = mkAMost "Arabian" "Arabianly" ;
+lin Arabian_N = mkN "Arabian" "Arabians" ;
+lin Arabic_A = mkAMost "Arabic" "Arabicly" ;
+lin Arabic_N = mkN "Arabic" "Arabics" ;
+lin Armenian_N = mkN "Armenian" "Armenians" ;
+lin Asian_A = mkAMost "Asian" "Asianly" ;
+lin Asian_N = mkN "Asian" "Asians" ;
+lin August_N = mkN "August" "Augusts" ;
+lin Brazilian_A = mkAMost "Brazilian" "Brazilianly" ;
+lin Brazilian_N = mkN "Brazilian" "Brazilians" ;
+lin British_A = mkAMost "British" "Britishly" ;
+lin Britisher_N = mkN "Britisher" "Britishers" ;
+lin Bulgarian_A = mkAMost "Bulgarian" "Bulgarianly" ;
+lin Bulgarian_N = mkN "Bulgarian" "Bulgarians" ;
+lin Canadian_A = mkAMost "Canadian" "Canadianly" ;
+lin Canadian_N = mkN "Canadian" "Canadians" ;
+lin Carmelite_A = mkAMost "Carmelite" "Carmelitely" ;
+lin Carmelite_N = mkN "Carmelite" "Carmelites" ;
+lin Catholic_A = mkAMost "Catholic" "Catholicly" ;
+lin Catholic_N = mkN "Catholic" "Catholics" ;
+lin Champagne_N = mkN "Champagne" "Champagnes" ;
+lin Chinese_A = mkAMost "Chinese" "Chinesely" ;
+lin Chinese_N = mkN "Chinese" "Chinese" ;
+lin Christianity_N = mkN "Christianity" "Christianities" ;
+lin Christmas_N = mkN "Christmas" "Christmases" ;
+lin Czech_A = mkAMost "Czech" "Czechly" ;
+lin Czech_N = mkN "Czech" "Czechs" ;
+lin Czechoslovak_N = mkN "Czechoslovak" "Czechoslovaks" ;
+lin Czechoslovakian_A = mkAMost "Czechoslovakian" "Czechoslovakianly" ;
+lin Czechoslovakian_N = mkN "Czechoslovakian" "Czechoslovakians" ;
+lin DJ_N = mkN "DJ" "DJs" ;
+lin DNA_N = mkN "DNA" "DNAs" ;
+lin Danish_A = mkAMost "Danish" "Danishly" ;
+lin Danish_N = mkN "Danish" "Danishes" ;
+lin December_N = mkN "December" "Decembers" ;
+lin Dutch_A = mkAMost "Dutch" "Dutchly" ;
+lin Dutch_N = mkN "Dutch" "Dutch" ;
+lin East_A = mkA "East" "Easter" "Eastest" "Eastly" ;
+lin East_Adv = mkAdv "East" ;
+lin East_N = mkN "East" "Easts" ;
+lin Eastern_A = mkAMost "Eastern" "Easternly" ;
+lin English_A = mkAMost "English" "Englishly" ;
+lin English_N = mkN "English" "Englishes" ;
+lin European_A = mkAMost "European" "Europeanly" ;
+lin European_N = mkN "European" "Europeans" ;
+lin February_N = mkN "February" "Februaries" ;
+lin Finnish_A = mkAMost "Finnish" "Finnishly" ;
+lin Finnish_N = mkN "Finnish" "Finnishes" ;
+lin French_A = mkAMost "French" "Frenchly" ;
+lin Friday_N = mkN "Friday" "Fridays" ;
+lin GCSE_N = mkN "GCSE" "GCSEs" ;
+lin GNP_N = mkN "GNP" "GNPs" ;
+lin German_A = mkAMost "German" "Germanly" ;
+lin German_N = mkN "German" "Germans" ;
+lin Greek_A = mkAMost "Greek" "Greekly" ;
+lin Greek_N = mkN "Greek" "Greeks" ;
+lin Hungarian_A = mkAMost "Hungarian" "Hungarianly" ;
+lin Hungarian_N = mkN "Hungarian" "Hungarians" ;
+lin IOU_N = mkN "IOU" "IOUs" ;
+lin Indian_A = mkAMost "Indian" "Indianly" ;
+lin Indian_N = mkN "Indian" "Indians" ;
+lin Iranian_A = mkAMost "Iranian" "Iranianly" ;
+lin Iranian_N = mkN "Iranian" "Iranians" ;
+lin Irish_A = mkAMost "Irish" "Irishly" ;
+lin Irish_N = mkN "Irish" "Irishes" ;
+lin Islam_N = mkN "Islam" "Islams" ;
+lin Islamic_A = mkAMost "Islamic" "Islamicly" ;
+lin Italian_A = mkAMost "Italian" "Italianly" ;
+lin Italian_N = mkN "Italian" "Italians" ;
+lin January_N = mkN "January" "Januaries" ;
+lin Japanese_A = mkAMost "Japanese" "Japanesely" ;
+lin Japanese_N = mkN "Japanese" "Japanese" ;
+lin Jew_N = mkN "Jew" "Jews" ;
+lin Jordanian_A = mkAMost "Jordanian" "Jordanianly" ;
+lin Jordanian_N = mkN "Jordanian" "Jordanians" ;
+lin June_N = mkN "June" "Junes" ;
+lin Kurd_N = mkN "Kurd" "Kurds" ;
+lin Lebanese_A = mkAMost "Lebanese" "Lebanesely" ;
+lin Lebanese_N = mkN "Lebanese" "Lebanese" ;
+lin Macedonian_A = mkAMost "Macedonian" "Macedonianly" ;
+lin Macedonian_N = mkN "Macedonian" "Macedonians" ;
+lin Magyar_A = mkAMost "Magyar" "Magyarly" ;
+lin Magyar_N = mkN "Magyar" "Magyars" ;
+lin March_N = mkN "March" "Marches" ;
+lin May_N = mkN "May" "Mays" ;
+lin Monday_N = mkN "Monday" "Mondays" ;
+lin Mormon_A = mkAMost "Mormon" "Mormonly" ;
+lin Mormon_N = mkN "Mormon" "Mormons" ;
+lin Mormonism_N = mkN "Mormonism" "Mormonisms" ;
+lin Muslim_N = mkN "Muslim" "Muslims" ;
+lin Namibian_A = mkAMost "Namibian" "Namibianly" ;
+lin Namibian_N = mkN "Namibian" "Namibians" ;
+lin North_A = mkA "North" "Norther" "Northest" "Northly" ;
+lin North_Adv = mkAdv "North" ;
+lin North_N = mkN "North" "Norths" ;
+lin Northern_A = mkAMost "Northern" "Northernly" ;
+lin November_N = mkN "November" "Novembers" ;
+lin OAP_N = mkN "OAP" "OAP's" ;
+lin October_N = mkN "October" "Octobers" ;
+lin Pakistani_A = mkAMost "Pakistani" "Pakistanily" ;
+lin Pakistani_N = mkN "Pakistani" "Pakistanis" ;
+lin Persian_A = mkAMost "Persian" "Persianly" ;
+lin Persian_N = mkN "Persian" "Persians" ;
+lin Philippine_A = mkAMost "Philippine" "Philippinely" ;
+lin Philippine_N = mkN "Philippine" "Philippines" ;
+lin Pole_N = mkN "Pole" "Poles" ;
+lin Polish_A = mkAMost "Polish" "Polishly" ;
+lin Polish_N = mkN "Polish" "Polishes" ;
+lin Portuguese_A = mkAMost "Portuguese" "Portuguesely" ;
+lin Portuguese_N = mkN "Portuguese" "Portuguese" ;
+lin Prussian_A = mkAMost "Prussian" "Prussianly" ;
+lin Prussian_N = mkN "Prussian" "Prussians" ;
+lin Romanian_A = mkAMost "Romanian" "Romanianly" ;
+lin Romanian_N = mkN "Romanian" "Romanians" ;
+lin Russian_A = mkAMost "Russian" "Russianly" ;
+lin Russian_N = mkN "Russian" "Russians" ;
+lin Saturday_N = mkN "Saturday" "Saturdays" ;
+lin Scandinavian_A = mkAMost "Scandinavian" "Scandinavianly" ;
+lin Scandinavian_N = mkN "Scandinavian" "Scandinavians" ;
+lin September_N = mkN "September" "Septembers" ;
+lin Singaporean_A = mkAMost "Singaporean" "Singaporeanly" ;
+lin Singaporean_N = mkN "Singaporean" "Singaporeans" ;
+lin Somali_A = mkAMost "Somali" "Somalily" ;
+lin Somali_N = mkN "Somali" "Somalis" ;
+lin Somalian_A = mkAMost "Somalian" "Somalianly" ;
+lin Somalian_N = mkN "Somalian" "Somalians" ;
+lin South_A = mkA "South" "Souther" "Southest" "Southly" ;
+lin South_Adv = mkAdv "South" ;
+lin South_N = mkN "South" "Souths" ;
+lin Southern_A = mkAMost "Southern" "Southernly" ;
+lin Soviet_A = mkAMost "Soviet" "Sovietly" ;
+lin Soviet_N = mkN "Soviet" "Soviets" ;
+lin Spanish_A = mkAMost "Spanish" "Spanishly" ;
+lin Spanish_N = mkN "Spanish" "Spanishes" ;
+lin Sunday_N = mkN "Sunday" "Sundays" ;
+lin Swede_A = mkAMost "Swede" "Swedely" ;
+lin Swede_N = mkN "Swede" "Swedes" ;
+lin Swedish_A = mkAMost "Swedish" "Swedishly" ;
+lin Swedish_N = mkN "Swedish" "Swedes" ;
+lin Swiss_A = mkAMost "Swiss" "Swissly" ;
+lin Syrian_A = mkAMost "Syrian" "Syrianly" ;
+lin Syrian_N = mkN "Syrian" "Syrians" ;
+lin TV_N = mkN "TV" "TVs" ;
+lin Taiwanese_A = mkAMost "Taiwanese" "Taiwanesely" ;
+lin Taiwanese_N = mkN "Taiwanese" "Taiwanese" ;
+lin Thai_A = mkAMost "Thai" "Thaily" ;
+lin Thursday_N = mkN "Thursday" "Thursdays" ;
+lin Tibetan_A = mkAMost "Tibetan" "Tibetanly" ;
+lin Tibetan_N = mkN "Tibetan" "Tibetans" ;
+lin Tuesday_N = mkN "Tuesday" "Tuesdays" ;
+lin Turk_N = mkN "Turk" "Turks" ;
+lin Turkey_N = mkN "Turkey" "Turkeys" ;
+lin Turkish_A = mkAMost "Turkish" "Turkishly" ;
+lin Turkish_N = mkN "Turkish" "Turkishes" ;
+lin UFO_N = mkN "UFO" "UFO's" ;
+lin Vietnamese_A = mkAMost "Vietnamese" "Vietnamesely" ;
+lin Vietnamese_N = mkN "Vietnamese" "Vietnamese" ;
+lin WC_N = mkN "WC" "WCs" ;
+lin Wednesday_N = mkN "Wednesday" "Wednesdays" ;
+lin West_A = mkA "West" "Wester" "Westest" "Westly" ;
+lin West_Adv = mkAdv "West" ;
+lin West_N = mkN "West" "Wests" ;
+lin Western_A = mkAMost "Western" "Westernly" ;
+lin Zimbabwean_A = mkAMost "Zimbabwean" "Zimbabweanly" ;
+lin Zimbabwean_N = mkN "Zimbabwean" "Zimbabweans" ;
+lin a_bomb_N = mkN "a-bomb" "a-bombs" ;
+lin a_fortiori_Adv = mkAdv "a fortiori" ;
+lin a_level_N = mkN "a-level" "a-levels" ;
+lin a_posteriori_A = mkAMost "a posteriori" "a posteriorily" ;
+lin a_posteriori_Adv = mkAdv "a posteriori" ;
+lin a_priori_A = mkAMost "a priori" "a priorily" ;
+lin a_priori_Adv = mkAdv "a priori" ;
+lin aa_N = mkN "aa" "aas" ;
+lin aalii_N = mkN "aalii" "aaliis" ;
+lin aardvark_N = mkN "aardvark" "aardvarks" ;
+lin aardwolf_N = mkN "aardwolf" "aardwolfs" ;
+lin ab_initio_Adv = mkAdv "ab initio" ;
+lin aba_N = mkN "aba" "abas" ;
+lin abaca_N = mkN "abaca" "abacas" ;
+lin aback_Adv = mkAdv "aback" ;
+lin abactinal_A = mkAMost "abactinal" "abactinally" ;
+lin abacus_N = mkN "abacus" "abacuses" ;
+lin abaft_Adv = mkAdv "abaft" ;
lin abaft_Prep = mkPrep "abaft" ;
-lin anent_Prep = mkPrep "anent" ;
-lin fornent_Prep = mkPrep "fornent" ;
-lin absent_Prep = mkPrep "absent" ;
-lin except_Prep = mkPrep "except" ;
-lin athwart_Prep = mkPrep "athwart" ;
-lin overthwart_Prep = mkPrep "overthwart" ;
-lin past_Prep = mkPrep "past" ;
-lin midst_Prep = mkPrep "midst" ;
-lin amidst_Prep = mkPrep "amidst" ; -- notcompound midst_Prep ;
-lin lest_Prep = mkPrep "lest" ;
-lin nearest_Prep = mkPrep "nearest" ;
-lin amongst_Prep = mkPrep "amongst" ;
-lin anenst_Prep = mkPrep "anenst" ;
-lin forenenst_Prep = mkPrep "forenenst" ;
-lin fornenst_Prep = mkPrep "fornenst" ;
-lin against_Prep = mkPrep "against" ;
-lin post_Prep = mkPrep "post" ;
-lin but_Prep = mkPrep "but" ;
-lin out_Prep = mkPrep "out" ;
-lin about_Prep = mkPrep "about" ; -- compound out_Prep ;
-lin throughout_Prep = mkPrep "throughout" ; -- compound out_Prep ;
-lin without_Prep = mkPrep "without" ; -- compound out_Prep ;
-lin next_Prep = mkPrep "next" ;
-lin twixt_Prep = mkPrep "twixt" ;
-lin betwixt_Prep = mkPrep "betwixt" ; -- compound twixt_Prep ;
-lin below_Prep = mkPrep "below" ;
-lin by_Prep = mkPrep "by" ;
-lin forby_Prep = mkPrep "forby" ; -- compound by_Prep ;
-lin chez_Prep = mkPrep "chez" ;
-lin baa_V = mkV "baa" "baaed" "baaed" ;
-lin subpoena_V = mkV "subpoena" "subpoenaed" "subpoenaed" ;
-lin visa_V = mkV "visa" "visaed" "visaed" ;
-lin dab_V = mkV "dab" "dabbed" "dabbed" ;
-lin confab_V = mkV "confab" "confabbed" "confabbed" ;
-lin jab_V = mkV "jab" "jabbed" "jabbed" ;
-lin blab_V = mkV "blab" "blabbed" "blabbed" ;
-lin nab_V = mkV "nab" "nabbed" "nabbed" ;
-lin crab_V = mkV "crab" "crabbed" "crabbed" ;
-lin grab_V = mkV "grab" "grabbed" "grabbed" ;
-lin stab_V = mkV "stab" "stabbed" "stabbed" ;
-lin swab_V = mkV "swab" "swabbed" "swabbed" ;
-lin ebb_V = mkV "ebb" "ebbed" "ebbed" ;
-lin bib_V = mkV "bib" "bibbed" "bibbed" ;
-lin fib_V = mkV "fib" "fibbed" "fibbed" ;
-lin jib_V = mkV "jib" "jibbed" "jibbed" ;
-lin 'ad-lib_V' = mkV "ad-lib" "ad-libbed" "ad-libbed" ;
-lin rib_V = mkV "rib" "ribbed" "ribbed" ;
-lin crib_V = mkV "crib" "cribbed" "cribbed" ; -- notcompound rib_V ;
-lin lamb_V = mkV "lamb" "lambed" "lambed" ;
-lin climb_V = mkV "climb" "climbed" "climbed" ;
-lin bomb_V = mkV "bomb" "bombed" "bombed" ;
-lin 'dive-bomb_V' = mkV "dive-bomb" "dive-bombed" "dive-bombed" ; -- compound bomb_V ;
-lin comb_V = mkV "comb" "combed" "combed" ;
-lin honeycomb_V = mkV "honeycomb" "honeycombed" "honeycombed" ; -- compound comb_V ;
-lin entomb_V = mkV "entomb" "entombed" "entombed" ;
-lin succumb_V = mkV "succumb" "succumbed" "succumbed" ;
-lin dumb_V = mkV "dumb" "dumbed" "dumbed" ;
-lin thumb_V = mkV "thumb" "thumbed" "thumbed" ;
-lin plumb_V = mkV "plumb" "plumbed" "plumbed" ;
-lin numb_V = mkV "numb" "numbed" "numbed" ;
-lin crumb_V = mkV "crumb" "crumbed" "crumbed" ;
-lin bob_V = mkV "bob" "bobbed" "bobbed" ;
-lin dob_V = mkV "dob" "dobbed" "dobbed" ;
-lin fob_V = mkV "fob" "fobbed" "fobbed" ;
-lin job_V = mkV "job" "jobbed" "jobbed" ;
-lin lob_V = mkV "lob" "lobbed" "lobbed" ;
-lin slob_V = mkV "slob" "slobbed" "slobbed" ; -- notcompound lob_V ;
-lin mob_V = mkV "mob" "mobbed" "mobbed" ;
-lin demob_V = mkV "demob" "demobbed" "demobbed" ; -- compound mob_V ;
-lin hobnob_V = mkV "hobnob" "hobnobbed" "hobnobbed" ;
-lin boob_V = mkV "boob" "boobed" "boobed" ;
-lin rob_V = mkV "rob" "robbed" "robbed" ;
-lin throb_V = mkV "throb" "throbbed" "throbbed" ; -- notcompound rob_V ;
-lin sob_V = mkV "sob" "sobbed" "sobbed" ;
-lin swob_V = mkV "swob" "swobbed" "swobbed" ;
-lin garb_V = mkV "garb" "garbed" "garbed" ;
-lin absorb_V = mkV "absorb" "absorbed" "absorbed" ;
-lin curb_V = mkV "curb" "curbed" "curbed" ;
-lin perturb_V = mkV "perturb" "perturbed" "perturbed" ;
-lin disturb_V = mkV "disturb" "disturbed" "disturbed" ;
-lin daub_V = mkV "daub" "daubed" "daubed" ;
-lin dub_V = mkV "dub" "dubbed" "dubbed" ;
-lin club_V = mkV "club" "clubbed" "clubbed" ;
-lin snub_V = mkV "snub" "snubbed" "snubbed" ;
-lin rub_V = mkV "rub" "rubbed" "rubbed" ;
-lin scrub_V = mkV "scrub" "scrubbed" "scrubbed" ; -- notcompound rub_V ;
-lin drub_V = mkV "drub" "drubbed" "drubbed" ; -- notcompound rub_V ;
-lin grub_V = mkV "grub" "grubbed" "grubbed" ; -- notcompound rub_V ;
-lin sub_V = mkV "sub" "subbed" "subbed" ;
-lin stub_V = mkV "stub" "stubbed" "stubbed" ;
-lin shellac_V = mkV "shellac" "IRREG" "IRREG" ;
-lin tarmac_V = mkV "tarmac" "IRREG" "IRREG" ;
-lin traffic_V = mkV "traffic" "IRREG" "IRREG" ;
-lin mimic_V = mkV "mimic" "IRREG" "IRREG" ;
-lin bivouac_V = mkV "bivouac" "bivouacked" "bivouacked" ;
-lin magic_V = mkV "magic" "magiced" "magiced" ;
-lin frolic_V = mkV "frolic" "frolicked" "frolicked" ;
-lin panic_V = mkV "panic" "panicked" "panicked" ;
-lin picnic_V = mkV "picnic" "picnicked" "picnicked" ;
-lin rend_V = mkV "rend" "IRREG" "IRREG" ;
-lin read_V = mkV "read" "read" "read" ;
-lin 'lip-read_V' = mkV "lip-read" "lip-read" "lip-read" ; -- compound read_V ;
-lin reread_V = mkV "reread" "reread" "reread" ; -- compound read_V ;
-lin proofread_V = mkV "proofread" "proofread" "proofread" ; -- compound read_V ;
-lin spread_1_V = mkV "spread" "spread" "spread" ; -- notcompound read_V ;
-lin misread_V = mkV "misread" "misread" "misread" ; -- compound read_V ;
-lin clad_V = mkV "clad" "clad" "clad" ;
-lin head_V = mkV "head" "headed" "headed" ;
-lin behead_V = mkV "behead" "beheaded" "beheaded" ; -- compound head_V ;
-lin spearhead_V = mkV "spearhead" "spearheaded" "spearheaded" ; -- compound head_V ;
-lin lead_1_V = mkV "lead" "leaded" "leaded" ;
-lin 'black-lead_V' = mkV "black-lead" "black-leaded" "black-leaded" ; -- compound lead_1_V ;
-lin plead_1_V = mkV "plead" "pleaded" "pleaded" ; -- notcompound lead_1_V ;
-lin knead_V = mkV "knead" "kneaded" "kneaded" ;
-lin dread_V = mkV "dread" "dreaded" "dreaded" ;
-lin thread_V = mkV "thread" "threaded" "threaded" ;
-lin spread_2_V = mkV "spread" "spreaded" "spreaded" ;
-lin retread_V = mkV "retread" "retreaded" "retreaded" ;
-lin lead_2_V = mkV "lead" "led" "led" ;
-lin plead_2_V = mkV "plead" "pled" "pled" ; -- notcompound lead_2_V ;
-lin mislead_V = mkV "mislead" "misled" "misled" ; -- compound lead_2_V ;
-lin gad_V = mkV "gad" "gadded" "gadded" ;
-lin goad_V = mkV "goad" "goaded" "goaded" ;
-lin load_V = mkV "load" "loaded" "loaded" ;
-lin unload_V = mkV "unload" "unloaded" "unloaded" ; -- compound load_V ;
-lin overload_V = mkV "overload" "overloaded" "overloaded" ; -- compound load_V ;
-lin railroad_V = mkV "railroad" "railroaded" "railroaded" ;
-lin pad_V = mkV "pad" "padded" "padded" ;
-lin wad_V = mkV "wad" "wadded" "wadded" ;
-lin add_V = mkV "add" "added" "added" ;
-lin bed_V = mkV "bed" "bedded" "bedded" ;
-lin embed_V = mkV "embed" "embedded" "embedded" ; -- compound bed_V ;
-lin imbed_V = mkV "imbed" "imbedded" "imbedded" ; -- compound bed_V ;
-lin featherbed_V = mkV "featherbed" "featherbedded" "featherbedded" ; -- compound bed_V ;
-lin succeed_V = mkV "succeed" "succeeded" "succeeded" ;
-lin proceed_V = mkV "proceed" "proceeded" "proceeded" ;
-lin exceed_V = mkV "exceed" "exceeded" "exceeded" ;
-lin overfeed_V = mkV "overfeed" "overfeeded" "overfeeded" ;
-lin heed_V = mkV "heed" "heeded" "heeded" ;
-lin bleed_2_V = mkV "bleed" "bleeded" "bleeded" ;
-lin need_V = mkV "need" "needed" "needed" ;
-lin speed_V = mkV "speed" "speeded" "speeded" ;
-lin seed_V = mkV "seed" "seeded" "seeded" ;
-lin reseed_V = mkV "reseed" "reseeded" "reseeded" ; -- compound seed_V ;
-lin weed_V = mkV "weed" "weeded" "weeded" ;
-lin feed_V = mkV "feed" "fed" "fed" ;
-lin 'force-feed_V' = mkV "force-feed" "force-fed" "force-fed" ; -- compound feed_V ;
-lin spoonfeed_V = mkV "spoonfeed" "spoonfed" "spoonfed" ; -- compound feed_V ;
-lin breastfeed_V = mkV "breastfeed" "breastfed" "breastfed" ; -- compound feed_V ;
-lin bleed_1_V = mkV "bleed" "bled" "bled" ;
-lin breed_V = mkV "breed" "bred" "bred" ;
-lin interbreed_V = mkV "interbreed" "interbred" "interbred" ; -- compound breed_V ;
-lin crossbreed_V = mkV "crossbreed" "crossbred" "crossbred" ; -- compound breed_V ;
-lin fed_V = mkV "fed" "fedded" "fedded" ;
-lin shed_V = mkV "shed" "shed" "shed" ;
-lin carried_V = mkV "carried" "carriedded" "carriedded" ;
-lin shred_V = mkV "shred" "shredded" "shredded" ;
-lin wed_V = mkV "wed" "wedded" "wedded" ;
-lin aid_V = mkV "aid" "aided" "aided" ;
-lin raid_V = mkV "raid" "raided" "raided" ; -- notcompound aid_V ;
-lin braid_V = mkV "braid" "braided" "braided" ; -- notcompound aid_V ;
-lin upbraid_V = mkV "upbraid" "upbraided" "upbraided" ; -- compound aid_V ;
-lin bid_5_V = mkV "bid" "bidded" "bidded" ;
-lin kid_V = mkV "kid" "kidded" "kidded" ;
-lin skid_V = mkV "skid" "skidded" "skidded" ; -- notcompound kid_V ;
-lin invalid_V = mkV "invalid" "invalided" "invalided" ;
-lin void_V = mkV "void" "voided" "voided" ;
-lin avoid_V = mkV "avoid" "avoided" "avoided" ; -- notcompound void_V ;
-lin rid_2_V = mkV "rid" "ridded" "ridded" ;
-lin bid_3_V = mkV "bid" "bid" "bid" ;
-lin underbid_3_V = mkV "underbid" "underbid" "underbid" ; -- compound bid_3_V ;
-lin overbid_3_V = mkV "overbid" "overbid" "overbid" ; -- compound bid_3_V ;
-lin outbid_3_V = mkV "outbid" "outbid" "outbid" ; -- compound bid_3_V ;
-lin rid_1_V = mkV "rid" "rid" "rid" ;
-lin scald_V = mkV "scald" "scalded" "scalded" ;
-lin herald_V = mkV "herald" "heralded" "heralded" ;
-lin geld_V = mkV "geld" "gelded" "gelded" ;
-lin field_V = mkV "field" "fielded" "fielded" ;
-lin shield_V = mkV "shield" "shielded" "shielded" ;
-lin wield_V = mkV "wield" "wielded" "wielded" ;
-lin yield_V = mkV "yield" "yielded" "yielded" ;
-lin meld_V = mkV "meld" "melded" "melded" ;
-lin weld_V = mkV "weld" "welded" "welded" ;
-lin gild_V = mkV "gild" "gilded" "gilded" ;
-lin scold_V = mkV "scold" "scolded" "scolded" ;
-lin fold_V = mkV "fold" "folded" "folded" ;
-lin blindfold_V = mkV "blindfold" "blindfolded" "blindfolded" ; -- compound fold_V ;
-lin manifold_V = mkV "manifold" "manifolded" "manifolded" ; -- compound fold_V ;
-lin enfold_V = mkV "enfold" "enfolded" "enfolded" ; -- compound fold_V ;
-lin unfold_V = mkV "unfold" "unfolded" "unfolded" ; -- compound fold_V ;
-lin cuckold_V = mkV "cuckold" "cuckolded" "cuckolded" ;
-lin mold_V = mkV "mold" "molded" "molded" ;
-lin resold_V = mkV "resold" "resolded" "resolded" ;
-lin mould_V = mkV "mould" "moulded" "moulded" ;
-lin remould_V = mkV "remould" "remoulded" "remoulded" ; -- compound mould_V ;
-lin hold_V = mkV "hold" "held" "held" ;
-lin behold_V = mkV "behold" "beheld" "beheld" ; -- compound hold_V ;
-lin withhold_V = mkV "withhold" "withheld" "withheld" ; -- compound hold_V ;
-lin uphold_V = mkV "uphold" "upheld" "upheld" ; -- compound hold_V ;
-lin band_V = mkV "band" "banded" "banded" ;
-lin disband_V = mkV "disband" "disbanded" "disbanded" ; -- compound band_V ;
-lin husband_V = mkV "husband" "husbanded" "husbanded" ; -- compound band_V ;
-lin hand_V = mkV "hand" "handed" "handed" ;
-lin unhand_V = mkV "unhand" "unhanded" "unhanded" ; -- compound hand_V ;
-lin land_V = mkV "land" "landed" "landed" ;
-lin 'force-land_V' = mkV "force-land" "force-landed" "force-landed" ; -- compound land_V ;
-lin 'crash-land_V' = mkV "crash-land" "crash-landed" "crash-landed" ; -- compound land_V ;
-lin garland_V = mkV "garland" "garlanded" "garlanded" ; -- compound land_V ;
-lin softland_V = mkV "softland" "softlanded" "softlanded" ; -- compound land_V ;
-lin bellyland_V = mkV "bellyland" "bellylanded" "bellylanded" ; -- compound land_V ;
-lin demand_V = mkV "demand" "demanded" "demanded" ;
-lin remand_V = mkV "remand" "remanded" "remanded" ;
-lin reprimand_V = mkV "reprimand" "reprimanded" "reprimanded" ;
-lin command_V = mkV "command" "commanded" "commanded" ;
-lin countermand_V = mkV "countermand" "countermanded" "countermanded" ;
-lin expand_V = mkV "expand" "expanded" "expanded" ;
-lin brand_V = mkV "brand" "branded" "branded" ;
-lin strand_V = mkV "strand" "stranded" "stranded" ;
-lin sand_V = mkV "sand" "sanded" "sanded" ;
-lin end_V = mkV "end" "ended" "ended" ;
-lin bend_1_V = mkV "bend" "bended" "bended" ; -- notcompound end_V ;
-lin unbend_V = mkV "unbend" "unbended" "unbended" ; -- compound end_V ;
-lin ascend_V = mkV "ascend" "ascended" "ascended" ; -- compound end_V ;
-lin descend_V = mkV "descend" "descended" "descended" ; -- compound end_V ;
-lin condescend_V = mkV "condescend" "condescended" "condescended" ; -- compound end_V ;
-lin transcend_V = mkV "transcend" "transcended" "transcended" ; -- compound end_V ;
-lin fend_V = mkV "fend" "fended" "fended" ; -- notcompound end_V ;
-lin defend_V = mkV "defend" "defended" "defended" ; -- compound end_V ;
-lin offend_V = mkV "offend" "offended" "offended" ; -- compound end_V ;
-lin reprehend_V = mkV "reprehend" "reprehended" "reprehended" ; -- compound end_V ;
-lin comprehend_V = mkV "comprehend" "comprehended" "comprehended" ; -- compound end_V ;
-lin apprehend_V = mkV "apprehend" "apprehended" "apprehended" ; -- compound end_V ;
-lin misapprehend_V = mkV "misapprehend" "misapprehended" "misapprehended" ; -- compound end_V ;
-lin befriend_V = mkV "befriend" "befriended" "befriended" ; -- compound end_V ;
-lin weekend_V = mkV "weekend" "weekended" "weekended" ; -- compound end_V ;
-lin lend_1_V = mkV "lend" "lended" "lended" ; -- notcompound end_V ;
-lin blend_V = mkV "blend" "blended" "blended" ; -- notcompound end_V ;
-lin mend_V = mkV "mend" "mended" "mended" ; -- notcompound end_V ;
-lin amend_V = mkV "amend" "amended" "amended" ; -- compound end_V ;
-lin emend_V = mkV "emend" "emended" "emended" ; -- compound end_V ;
-lin commend_V = mkV "commend" "commended" "commended" ; -- compound end_V ;
-lin recommend_V = mkV "recommend" "recommended" "recommended" ; -- compound end_V ;
-lin pend_V = mkV "pend" "pended" "pended" ; -- notcompound end_V ;
-lin depend_V = mkV "depend" "depended" "depended" ; -- compound end_V ;
-lin impend_V = mkV "impend" "impended" "impended" ; -- compound end_V ;
-lin append_V = mkV "append" "appended" "appended" ; -- compound end_V ;
-lin suspend_V = mkV "suspend" "suspended" "suspended" ; -- compound end_V ;
-lin expend_V = mkV "expend" "expended" "expended" ; -- compound end_V ;
-lin trend_V = mkV "trend" "trended" "trended" ; -- notcompound end_V ;
-lin tend_V = mkV "tend" "tended" "tended" ; -- notcompound end_V ;
-lin subtend_V = mkV "subtend" "subtended" "subtended" ; -- compound end_V ;
-lin pretend_V = mkV "pretend" "pretended" "pretended" ; -- compound end_V ;
-lin intend_V = mkV "intend" "intended" "intended" ; -- compound end_V ;
-lin superintend_V = mkV "superintend" "superintended" "superintended" ; -- compound end_V ;
-lin contend_V = mkV "contend" "contended" "contended" ; -- compound end_V ;
-lin portend_V = mkV "portend" "portended" "portended" ; -- compound end_V ;
-lin distend_V = mkV "distend" "distended" "distended" ; -- compound end_V ;
-lin attend_V = mkV "attend" "attended" "attended" ; -- compound end_V ;
-lin extend_V = mkV "extend" "extended" "extended" ; -- compound end_V ;
-lin vend_V = mkV "vend" "vended" "vended" ; -- notcompound end_V ;
-lin wend_V = mkV "wend" "wended" "wended" ; -- notcompound end_V ;
-lin rescind_V = mkV "rescind" "rescinded" "rescinded" ;
-lin blind_V = mkV "blind" "blinded" "blinded" ;
-lin mind_V = mkV "mind" "minded" "minded" ;
-lin remind_V = mkV "remind" "reminded" "reminded" ; -- compound mind_V ;
-lin mastermind_V = mkV "mastermind" "masterminded" "masterminded" ; -- compound mind_V ;
-lin wind_1_V = mkV "wind" "winded" "winded" ;
-lin bond_V = mkV "bond" "bonded" "bonded" ;
-lin second_V = mkV "second" "seconded" "seconded" ;
-lin abscond_V = mkV "abscond" "absconded" "absconded" ;
-lin repond_V = mkV "repond" "reponded" "reponded" ;
-lin respond_V = mkV "respond" "responded" "responded" ;
-lin correspond_V = mkV "correspond" "corresponded" "corresponded" ; -- compound respond_V ;
-lin fund_V = mkV "fund" "funded" "funded" ;
-lin refund_V = mkV "refund" "refunded" "refunded" ; -- compound fund_V ;
-lin underfund_V = mkV "underfund" "underfunded" "underfunded" ; -- compound fund_V ;
-lin bound_V = mkV "bound" "bounded" "bounded" ;
-lin abound_V = mkV "abound" "abounded" "abounded" ; -- notcompound bound_V ;
-lin rebound_V = mkV "rebound" "rebounded" "rebounded" ; -- compound bound_V ;
-lin redound_V = mkV "redound" "redounded" "redounded" ;
-lin found_V = mkV "found" "founded" "founded" ;
-lin 'co-found_V' = mkV "co-found" "co-founded" "co-founded" ; -- compound found_V ;
-lin dumbfound_V = mkV "dumbfound" "dumbfounded" "dumbfounded" ; -- compound found_V ;
-lin confound_V = mkV "confound" "confounded" "confounded" ; -- compound found_V ;
-lin hound_V = mkV "hound" "hounded" "hounded" ;
-lin pound_V = mkV "pound" "pounded" "pounded" ;
-lin impound_V = mkV "impound" "impounded" "impounded" ; -- compound pound_V ;
-lin compound_V = mkV "compound" "compounded" "compounded" ; -- compound pound_V ;
-lin propound_V = mkV "propound" "propounded" "propounded" ; -- compound pound_V ;
-lin expound_V = mkV "expound" "expounded" "expounded" ; -- compound pound_V ;
-lin round_V = mkV "round" "rounded" "rounded" ;
-lin ground_V = mkV "ground" "grounded" "grounded" ; -- notcompound round_V ;
-lin surround_V = mkV "surround" "surrounded" "surrounded" ; -- compound round_V ;
-lin sound_V = mkV "sound" "sounded" "sounded" ;
-lin resound_V = mkV "resound" "resounded" "resounded" ; -- compound sound_V ;
-lin astound_V = mkV "astound" "astounded" "astounded" ;
-lin wound_V = mkV "wound" "wounded" "wounded" ;
-lin bind_V = mkV "bind" "bound" "bound" ;
-lin rebind_V = mkV "rebind" "rebound" "rebound" ; -- compound bind_V ;
-lin unbind_V = mkV "unbind" "unbound" "unbound" ; -- compound bind_V ;
-lin find_V = mkV "find" "found" "found" ;
-lin grind_V = mkV "grind" "ground" "ground" ;
-lin wind_2_V = mkV "wind" "wound" "wound" ;
-lin unwind_V = mkV "unwind" "unwound" "unwound" ; -- compound wind_2_V ;
-lin stand_V = mkV "stand" "stood" "stood" ;
-lin withstand_V = mkV "withstand" "withstood" "withstood" ; -- compound stand_V ;
-lin understand_V = mkV "understand" "understood" "understood" ; -- compound stand_V ;
-lin misunderstand_V = mkV "misunderstand" "misunderstood" "misunderstood" ; -- compound stand_V ;
-lin cod_V = mkV "cod" "codded" "codded" ;
-lin plod_V = mkV "plod" "plodded" "plodded" ;
-lin nod_V = mkV "nod" "nodded" "nodded" ;
-lin hood_V = mkV "hood" "hooded" "hooded" ;
-lin blood_1_V = mkV "blood" "blooded" "blooded" ;
-lin flood_V = mkV "flood" "flooded" "flooded" ;
-lin brood_V = mkV "brood" "brooded" "brooded" ;
-lin blood_2_V = mkV "blood" "bloodied" "bloodied" ;
-lin pod_V = mkV "pod" "podded" "podded" ;
-lin 'out-herod_V' = mkV "out-herod" "out-heroded" "out-heroded" ;
-lin prod_V = mkV "prod" "prodded" "prodded" ;
-lin sod_V = mkV "sod" "sodded" "sodded" ;
-lin bombard_V = mkV "bombard" "bombarded" "bombarded" ;
-lin card_V = mkV "card" "carded" "carded" ;
-lin placard_V = mkV "placard" "placarded" "placarded" ; -- compound card_V ;
-lin discard_V = mkV "discard" "discarded" "discarded" ; -- compound card_V ;
-lin beard_V = mkV "beard" "bearded" "bearded" ;
-lin regard_V = mkV "regard" "regarded" "regarded" ;
-lin disregard_V = mkV "disregard" "disregarded" "disregarded" ; -- compound regard_V ;
-lin poniard_V = mkV "poniard" "poniarded" "poniarded" ;
-lin lard_V = mkV "lard" "larded" "larded" ;
-lin pollard_V = mkV "pollard" "pollarded" "pollarded" ; -- compound lard_V ;
-lin interlard_V = mkV "interlard" "interlarded" "interlarded" ; -- compound lard_V ;
-lin board_V = mkV "board" "boarded" "boarded" ;
-lin starboard_V = mkV "starboard" "starboarded" "starboarded" ; -- compound board_V ;
-lin hoard_V = mkV "hoard" "hoarded" "hoarded" ;
-lin retard_V = mkV "retard" "retarded" "retarded" ;
-lin guard_V = mkV "guard" "guarded" "guarded" ;
-lin safeguard_V = mkV "safeguard" "safeguarded" "safeguarded" ; -- compound guard_V ;
-lin blackguard_V = mkV "blackguard" "blackguarded" "blackguarded" ; -- compound guard_V ;
-lin ward_V = mkV "ward" "warded" "warded" ;
-lin award_V = mkV "award" "awarded" "awarded" ; -- notcompound ward_V ;
-lin reward_V = mkV "reward" "rewarded" "rewarded" ; -- compound ward_V ;
-lin forward_V = mkV "forward" "forwarded" "forwarded" ; -- compound ward_V ;
-lin hazard_V = mkV "hazard" "hazarded" "hazarded" ;
-lin herd_V = mkV "herd" "herded" "herded" ;
-lin shepherd_V = mkV "shepherd" "shepherded" "shepherded" ; -- compound herd_V ;
-lin nerd_V = mkV "nerd" "nerded" "nerded" ;
-lin weird_V = mkV "weird" "weirded" "weirded" ;
-lin gird_V = mkV "gird" "girded" "girded" ;
-lin cord_V = mkV "cord" "corded" "corded" ;
-lin accord_V = mkV "accord" "accorded" "accorded" ; -- compound cord_V ;
-lin record_V = mkV "record" "recorded" "recorded" ; -- compound cord_V ;
-lin prerecord_V = mkV "prerecord" "prerecorded" "prerecorded" ; -- compound cord_V ;
-lin ford_V = mkV "ford" "forded" "forded" ;
-lin afford_V = mkV "afford" "afforded" "afforded" ; -- compound ford_V ;
-lin lord_V = mkV "lord" "lorded" "lorded" ;
-lin word_V = mkV "word" "worded" "worded" ;
-lin reword_V = mkV "reword" "reworded" "reworded" ; -- compound word_V ;
-lin laud_V = mkV "laud" "lauded" "lauded" ;
-lin applaud_V = mkV "applaud" "applauded" "applauded" ; -- compound laud_V ;
-lin maraud_V = mkV "maraud" "marauded" "marauded" ;
-lin defraud_V = mkV "defraud" "defrauded" "defrauded" ;
-lin bud_V = mkV "bud" "budded" "budded" ;
-lin disbud_V = mkV "disbud" "disbudded" "disbudded" ; -- compound bud_V ;
-lin scud_V = mkV "scud" "scudded" "scudded" ;
-lin thud_V = mkV "thud" "thudded" "thudded" ;
-lin mud_V = mkV "mud" "mudded" "mudded" ;
-lin cloud_V = mkV "cloud" "clouded" "clouded" ;
-lin overcloud_V = mkV "overcloud" "overclouded" "overclouded" ; -- compound cloud_V ;
-lin shroud_V = mkV "shroud" "shrouded" "shrouded" ;
-lin enshroud_V = mkV "enshroud" "enshrouded" "enshrouded" ; -- compound shroud_V ;
-lin stud_V = mkV "stud" "studded" "studded" ;
-lin crowd_V = mkV "crowd" "crowded" "crowded" ;
-lin overcrowd_V = mkV "overcrowd" "overcrowded" "overcrowded" ; -- compound crowd_V ;
-lin tread_V = mkV "tread" "trod" "trodden" ;
-lin bid_4_V = mkV "bid" "bid" "bidden" ;
-lin underbid_4_V = mkV "underbid" "underbid" "underbidden" ; -- compound bid_4_V ;
-lin overbid_4_V = mkV "overbid" "overbid" "overbidden" ; -- compound bid_4_V ;
-lin outbid_4_V = mkV "outbid" "outbid" "outbidden" ; -- compound bid_4_V ;
-lin bid_1_V = mkV "bid" "bade" "bid" ;
-lin underbid_1_V = mkV "underbid" "underbade" "underbid" ; -- compound bid_1_V ;
-lin overbid_1_V = mkV "overbid" "overbade" "overbid" ; -- compound bid_1_V ;
-lin outbid_1_V = mkV "outbid" "outbade" "outbid" ; -- compound bid_1_V ;
-lin bid_2_V = mkV "bid" "bade" "bidden" ;
-lin underbid_2_V = mkV "underbid" "underbade" "underbidden" ; -- compound bid_2_V ;
-lin overbid_2_V = mkV "overbid" "overbade" "overbidden" ; -- compound bid_2_V ;
-lin forbid_V = mkV "forbid" "forbade" "forbidden" ; -- compound bid_2_V ;
-lin outbid_2_V = mkV "outbid" "outbade" "outbidden" ; -- compound bid_2_V ;
-lin build_V = mkV "build" "built" "built" ;
-lin rebuild_V = mkV "rebuild" "rebuilt" "rebuilt" ; -- compound build_V ;
-lin bend_2_V = mkV "bend" "bent" "bent" ;
-lin lend_2_V = mkV "lend" "lent" "lent" ;
-lin spend_V = mkV "spend" "spent" "spent" ;
-lin underspend_V = mkV "underspend" "underspent" "underspent" ; -- compound spend_V ;
-lin overspend_V = mkV "overspend" "overspent" "overspent" ; -- compound spend_V ;
-lin misspend_V = mkV "misspend" "misspent" "misspent" ; -- compound spend_V ;
-lin send_V = mkV "send" "sent" "sent" ;
-lin lade_V = mkV "lade" "IRREG" "IRREG" ;
-lin fee_V = mkV "fee" "IRREG" "IRREG" ;
-lin squeegee_V = mkV "squeegee" "IRREG" "IRREG" ;
-lin referee_V = mkV "referee" "IRREG" "IRREG" ;
-lin tree_V = mkV "tree" "IRREG" "IRREG" ;
-lin tee_1_V = mkV "tee" "IRREG" "IRREG" ;
-lin singe_V = mkV "singe" "IRREG" "IRREG" ;
-lin hie_V = mkV "hie" "IRREG" "IRREG" ;
-lin stymie_V = mkV "stymie" "IRREG" "IRREG" ;
-lin untie_V = mkV "untie" "IRREG" "IRREG" ;
-lin vie_V = mkV "vie" "IRREG" "IRREG" ;
-lin outvie_V = mkV "outvie" "IRREG" "IRREG" ; -- notcompound vie_V ;
-lin hoe_V = mkV "hoe" "IRREG" "IRREG" ;
-lin toe_V = mkV "toe" "IRREG" "IRREG" ;
-lin tiptoe_V = mkV "tiptoe" "IRREG" "IRREG" ; -- notcompound toe_V ;
-lin beware_V = mkV "beware" "IRREG" "IRREG" ;
-lin glue_1_V = mkV "glue" "IRREG" "IRREG" ;
-lin grave_V = mkV "grave" "IRREG" "IRREG" ;
-lin imbibe_V = mkV "imbibe" "imbibed" "imbibed" ;
-lin gibe_V = mkV "gibe" "gibed" "gibed" ;
-lin jibe_V = mkV "jibe" "jibed" "jibed" ;
-lin bribe_V = mkV "bribe" "bribed" "bribed" ;
-lin decribe_V = mkV "decribe" "decribed" "decribed" ;
-lin ascribe_V = mkV "ascribe" "ascribed" "ascribed" ;
-lin subscribe_V = mkV "subscribe" "subscribed" "subscribed" ;
-lin oversubscribe_V = mkV "oversubscribe" "oversubscribed" "oversubscribed" ; -- compound subscribe_V ;
-lin describe_V = mkV "describe" "described" "described" ;
-lin prescribe_V = mkV "prescribe" "prescribed" "prescribed" ;
-lin circumscribe_V = mkV "circumscribe" "circumscribed" "circumscribed" ;
-lin transcribe_V = mkV "transcribe" "transcribed" "transcribed" ;
-lin inscribe_V = mkV "inscribe" "inscribed" "inscribed" ;
-lin proscribe_V = mkV "proscribe" "proscribed" "proscribed" ;
-lin robe_V = mkV "robe" "robed" "robed" ;
-lin probe_V = mkV "probe" "probed" "probed" ; -- notcompound robe_V ;
-lin disrobe_V = mkV "disrobe" "disrobed" "disrobed" ; -- compound robe_V ;
-lin cube_V = mkV "cube" "cubed" "cubed" ;
-lin gybe_V = mkV "gybe" "gybed" "gybed" ;
-lin face_V = mkV "face" "faced" "faced" ;
-lin 'about-face_V' = mkV "about-face" "about-faced" "about-faced" ; -- compound face_V ;
-lin deface_V = mkV "deface" "defaced" "defaced" ; -- compound face_V ;
-lin reface_V = mkV "reface" "refaced" "refaced" ; -- compound face_V ;
-lin preface_V = mkV "preface" "prefaced" "prefaced" ; -- compound face_V ;
-lin efface_V = mkV "efface" "effaced" "effaced" ; -- compound face_V ;
-lin surface_V = mkV "surface" "surfaced" "surfaced" ; -- compound face_V ;
-lin resurface_V = mkV "resurface" "resurfaced" "resurfaced" ; -- compound face_V ;
-lin outface_V = mkV "outface" "outfaced" "outfaced" ; -- compound face_V ;
-lin lace_V = mkV "lace" "laced" "laced" ;
-lin solace_V = mkV "solace" "solaced" "solaced" ; -- compound lace_V ;
-lin place_V = mkV "place" "placed" "placed" ; -- notcompound lace_V ;
-lin replace_V = mkV "replace" "replaced" "replaced" ; -- compound lace_V ;
-lin displace_V = mkV "displace" "displaced" "displaced" ; -- compound lace_V ;
-lin misplace_V = mkV "misplace" "misplaced" "misplaced" ; -- compound lace_V ;
-lin interlace_V = mkV "interlace" "interlaced" "interlaced" ; -- compound lace_V ;
-lin grimace_V = mkV "grimace" "grimaced" "grimaced" ;
-lin menace_V = mkV "menace" "menaced" "menaced" ;
-lin pace_V = mkV "pace" "paced" "paced" ;
-lin space_V = mkV "space" "spaced" "spaced" ; -- notcompound pace_V ;
-lin backspace_V = mkV "backspace" "backspaced" "backspaced" ; -- compound pace_V ;
-lin outpace_V = mkV "outpace" "outpaced" "outpaced" ; -- compound pace_V ;
-lin race_V = mkV "race" "raced" "raced" ;
-lin brace_V = mkV "brace" "braced" "braced" ; -- notcompound race_V ;
-lin embrace_V = mkV "embrace" "embraced" "embraced" ; -- compound race_V ;
-lin grace_V = mkV "grace" "graced" "graced" ; -- notcompound race_V ;
-lin disgrace_V = mkV "disgrace" "disgraced" "disgraced" ; -- compound race_V ;
-lin terrace_V = mkV "terrace" "terraced" "terraced" ; -- compound race_V ;
-lin trace_V = mkV "trace" "traced" "traced" ; -- notcompound race_V ;
-lin retrace_V = mkV "retrace" "retraced" "retraced" ; -- compound race_V ;
-lin fleece_V = mkV "fleece" "fleeced" "fleeced" ;
-lin piece_V = mkV "piece" "pieced" "pieced" ;
-lin ice_V = mkV "ice" "iced" "iced" ;
-lin 'de-ice_V' = mkV "de-ice" "de-iced" "de-iced" ; -- compound ice_V ;
-lin dice_V = mkV "dice" "diced" "diced" ; -- notcompound ice_V ;
-lin jaundice_V = mkV "jaundice" "jaundiced" "jaundiced" ; -- compound ice_V ;
-lin prejudice_V = mkV "prejudice" "prejudiced" "prejudiced" ; -- compound ice_V ;
-lin suffice_V = mkV "suffice" "sufficed" "sufficed" ; -- compound ice_V ;
-lin sacrifice_V = mkV "sacrifice" "sacrificed" "sacrificed" ; -- compound ice_V ;
-lin police_V = mkV "police" "policed" "policed" ; -- compound ice_V ;
-lin splice_V = mkV "splice" "spliced" "spliced" ; -- notcompound ice_V ;
-lin slice_V = mkV "slice" "sliced" "sliced" ; -- notcompound ice_V ;
-lin rejoice_V = mkV "rejoice" "rejoiced" "rejoiced" ; -- compound ice_V ;
-lin voice_V = mkV "voice" "voiced" "voiced" ; -- compound ice_V ;
-lin invoice_V = mkV "invoice" "invoiced" "invoiced" ; -- compound ice_V ;
-lin spice_V = mkV "spice" "spiced" "spiced" ; -- notcompound ice_V ;
-lin price_V = mkV "price" "priced" "priced" ; -- notcompound ice_V ;
-lin overprice_V = mkV "overprice" "overpriced" "overpriced" ; -- compound ice_V ;
-lin trice_V = mkV "trice" "triced" "triced" ; -- notcompound ice_V ;
-lin practice_V = mkV "practice" "practiced" "practiced" ; -- compound ice_V ;
-lin poultice_V = mkV "poultice" "poulticed" "poulticed" ; -- compound ice_V ;
-lin entice_V = mkV "entice" "enticed" "enticed" ; -- compound ice_V ;
-lin apprentice_V = mkV "apprentice" "apprenticed" "apprenticed" ; -- compound ice_V ;
-lin notice_V = mkV "notice" "noticed" "noticed" ; -- compound ice_V ;
-lin mortice_V = mkV "mortice" "morticed" "morticed" ; -- compound ice_V ;
-lin juice_V = mkV "juice" "juiced" "juiced" ; -- compound ice_V ;
-lin sluice_V = mkV "sluice" "sluiced" "sluiced" ; -- compound ice_V ;
-lin service_V = mkV "service" "serviced" "serviced" ; -- compound ice_V ;
-lin dance_V = mkV "dance" "danced" "danced" ;
-lin chance_V = mkV "chance" "chanced" "chanced" ;
-lin enhance_V = mkV "enhance" "enhanced" "enhanced" ;
-lin affiance_V = mkV "affiance" "affianced" "affianced" ;
-lin lance_V = mkV "lance" "lanced" "lanced" ;
-lin balance_V = mkV "balance" "balanced" "balanced" ; -- compound lance_V ;
-lin unbalance_V = mkV "unbalance" "unbalanced" "unbalanced" ; -- compound lance_V ;
-lin counterbalance_V = mkV "counterbalance" "counterbalanced" "counterbalanced" ; -- compound lance_V ;
-lin overbalance_V = mkV "overbalance" "overbalanced" "overbalanced" ; -- compound lance_V ;
-lin outbalance_V = mkV "outbalance" "outbalanced" "outbalanced" ; -- compound lance_V ;
-lin freelance_V = mkV "freelance" "freelanced" "freelanced" ; -- compound lance_V ;
-lin glance_V = mkV "glance" "glanced" "glanced" ; -- notcompound lance_V ;
-lin romance_V = mkV "romance" "romanced" "romanced" ;
-lin countenance_V = mkV "countenance" "countenanced" "countenanced" ;
-lin discountenance_V = mkV "discountenance" "discountenanced" "discountenanced" ; -- compound countenance_V ;
-lin finance_V = mkV "finance" "financed" "financed" ;
-lin refinance_V = mkV "refinance" "refinanced" "refinanced" ; -- compound finance_V ;
-lin prance_V = mkV "prance" "pranced" "pranced" ;
-lin entrance_V = mkV "entrance" "entranced" "entranced" ;
-lin distance_V = mkV "distance" "distanced" "distanced" ;
-lin outdistance_V = mkV "outdistance" "outdistanced" "outdistanced" ; -- compound distance_V ;
-lin instance_V = mkV "instance" "instanced" "instanced" ;
-lin advance_V = mkV "advance" "advanced" "advanced" ;
-lin licence_V = mkV "licence" "licenced" "licenced" ;
-lin evidence_V = mkV "evidence" "evidenced" "evidenced" ;
-lin fence_V = mkV "fence" "fenced" "fenced" ;
-lin inconvenience_V = mkV "inconvenience" "inconvenienced" "inconvenienced" ;
-lin experience_V = mkV "experience" "experienced" "experienced" ;
-lin silence_V = mkV "silence" "silenced" "silenced" ;
-lin commence_V = mkV "commence" "commenced" "commenced" ;
-lin reverence_V = mkV "reverence" "reverenced" "reverenced" ;
-lin sentence_V = mkV "sentence" "sentenced" "sentenced" ;
-lin influence_V = mkV "influence" "influenced" "influenced" ;
-lin mince_V = mkV "mince" "minced" "minced" ;
-lin evince_V = mkV "evince" "evinced" "evinced" ;
-lin convince_V = mkV "convince" "convinced" "convinced" ;
-lin wince_V = mkV "wince" "winced" "winced" ;
-lin ensconce_V = mkV "ensconce" "ensconced" "ensconced" ;
-lin bounce_V = mkV "bounce" "bounced" "bounced" ;
-lin flounce_V = mkV "flounce" "flounced" "flounced" ;
-lin denounce_V = mkV "denounce" "denounced" "denounced" ;
-lin renounce_V = mkV "renounce" "renounced" "renounced" ;
-lin announce_V = mkV "announce" "announced" "announced" ;
-lin pronounce_V = mkV "pronounce" "pronounced" "pronounced" ;
-lin mispronounce_V = mkV "mispronounce" "mispronounced" "mispronounced" ; -- compound pronounce_V ;
-lin pounce_V = mkV "pounce" "pounced" "pounced" ;
-lin trounce_V = mkV "trounce" "trounced" "trounced" ;
-lin pierce_V = mkV "pierce" "pierced" "pierced" ;
-lin coerce_V = mkV "coerce" "coerced" "coerced" ;
-lin force_V = mkV "force" "forced" "forced" ;
-lin enforce_V = mkV "enforce" "enforced" "enforced" ; -- compound force_V ;
-lin reinforce_V = mkV "reinforce" "reinforced" "reinforced" ; -- compound force_V ;
-lin divorce_V = mkV "divorce" "divorced" "divorced" ;
-lin acquiesce_V = mkV "acquiesce" "acquiesced" "acquiesced" ;
-lin coalesce_V = mkV "coalesce" "coalesced" "coalesced" ;
-lin convalesce_V = mkV "convalesce" "convalesced" "convalesced" ;
-lin effervesce_V = mkV "effervesce" "effervesced" "effervesced" ;
-lin reminisce_V = mkV "reminisce" "reminisced" "reminisced" ;
-lin sauce_V = mkV "sauce" "sauced" "sauced" ;
-lin traduce_V = mkV "traduce" "traduced" "traduced" ;
-lin adduce_V = mkV "adduce" "adduced" "adduced" ;
-lin educe_V = mkV "educe" "educed" "educed" ;
-lin deduce_V = mkV "deduce" "deduced" "deduced" ; -- notcompound educe_V ;
-lin reduce_V = mkV "reduce" "reduced" "reduced" ; -- notcompound educe_V ;
-lin seduce_V = mkV "seduce" "seduced" "seduced" ; -- notcompound educe_V ;
-lin induce_V = mkV "induce" "induced" "induced" ;
-lin conduce_V = mkV "conduce" "conduced" "conduced" ;
-lin produce_V = mkV "produce" "produced" "produced" ;
-lin 'mass-produce_V' = mkV "mass-produce" "mass-produced" "mass-produced" ; -- compound produce_V ;
-lin reproduce_V = mkV "reproduce" "reproduced" "reproduced" ; -- compound produce_V ;
-lin overproduce_V = mkV "overproduce" "overproduced" "overproduced" ; -- compound produce_V ;
-lin introduce_V = mkV "introduce" "introduced" "introduced" ;
-lin reintroduce_V = mkV "reintroduce" "reintroduced" "reintroduced" ; -- compound introduce_V ;
-lin spruce_V = mkV "spruce" "spruced" "spruced" ;
-lin barricade_V = mkV "barricade" "barricaded" "barricaded" ;
-lin brocade_V = mkV "brocade" "brocaded" "brocaded" ;
-lin cascade_V = mkV "cascade" "cascaded" "cascaded" ;
-lin ambuscade_V = mkV "ambuscade" "ambuscaded" "ambuscaded" ;
-lin fade_V = mkV "fade" "faded" "faded" ;
-lin renegade_V = mkV "renegade" "renegaded" "renegaded" ;
-lin shade_V = mkV "shade" "shaded" "shaded" ;
-lin blockade_V = mkV "blockade" "blockaded" "blockaded" ;
-lin stockade_V = mkV "stockade" "stockaded" "stockaded" ;
-lin pomade_V = mkV "pomade" "pomaded" "pomaded" ;
-lin promenade_V = mkV "promenade" "promenaded" "promenaded" ;
-lin serenade_V = mkV "serenade" "serenaded" "serenaded" ;
-lin marinade_V = mkV "marinade" "marinaded" "marinaded" ;
-lin spade_V = mkV "spade" "spaded" "spaded" ;
-lin parade_V = mkV "parade" "paraded" "paraded" ;
-lin abrade_V = mkV "abrade" "abraded" "abraded" ;
-lin masquerade_V = mkV "masquerade" "masqueraded" "masqueraded" ;
-lin grade_V = mkV "grade" "graded" "graded" ;
-lin degrade_V = mkV "degrade" "degraded" "degraded" ; -- compound grade_V ;
-lin downgrade_V = mkV "downgrade" "downgraded" "downgraded" ; -- compound grade_V ;
-lin retrograde_V = mkV "retrograde" "retrograded" "retrograded" ; -- compound grade_V ;
-lin upgrade_V = mkV "upgrade" "upgraded" "upgraded" ; -- compound grade_V ;
-lin trade_V = mkV "trade" "traded" "traded" ;
-lin 'out-trade_V' = mkV "out-trade" "out-traded" "out-traded" ; -- compound trade_V ;
-lin palisade_V = mkV "palisade" "palisaded" "palisaded" ;
-lin glissade_V = mkV "glissade" "glissaded" "glissaded" ;
-lin crusade_V = mkV "crusade" "crusaded" "crusaded" ;
-lin persuade_V = mkV "persuade" "persuaded" "persuaded" ;
-lin dissuade_V = mkV "dissuade" "dissuaded" "dissuaded" ;
-lin evade_V = mkV "evade" "evaded" "evaded" ;
-lin invade_V = mkV "invade" "invaded" "invaded" ;
-lin pervade_V = mkV "pervade" "pervaded" "pervaded" ;
-lin wade_V = mkV "wade" "waded" "waded" ;
-lin cede_V = mkV "cede" "ceded" "ceded" ;
-lin accede_V = mkV "accede" "acceded" "acceded" ; -- compound cede_V ;
-lin recede_V = mkV "recede" "receded" "receded" ; -- compound cede_V ;
-lin precede_V = mkV "precede" "preceded" "preceded" ; -- compound cede_V ;
-lin secede_V = mkV "secede" "seceded" "seceded" ; -- compound cede_V ;
-lin concede_V = mkV "concede" "conceded" "conceded" ; -- compound cede_V ;
-lin supercede_V = mkV "supercede" "superceded" "superceded" ; -- compound cede_V ;
-lin intercede_V = mkV "intercede" "interceded" "interceded" ; -- compound cede_V ;
-lin stampede_V = mkV "stampede" "stampeded" "stampeded" ;
-lin impede_V = mkV "impede" "impeded" "impeded" ;
-lin supersede_V = mkV "supersede" "superseded" "superseded" ;
-lin bide_V = mkV "bide" "bided" "bided" ;
-lin abide_V = mkV "abide" "abided" "abided" ; -- notcompound bide_V ;
-lin decide_V = mkV "decide" "decided" "decided" ;
-lin coincide_V = mkV "coincide" "coincided" "coincided" ;
-lin confide_V = mkV "confide" "confided" "confided" ;
-lin chide_V = mkV "chide" "chided" "chided" ;
-lin elide_V = mkV "elide" "elided" "elided" ;
-lin glide_V = mkV "glide" "glided" "glided" ;
-lin collide_V = mkV "collide" "collided" "collided" ;
-lin deride_V = mkV "deride" "derided" "derided" ;
-lin pride_V = mkV "pride" "prided" "prided" ;
-lin side_V = mkV "side" "sided" "sided" ;
-lin subside_V = mkV "subside" "subsided" "subsided" ; -- compound side_V ;
-lin reside_V = mkV "reside" "resided" "resided" ; -- compound side_V ;
-lin preside_V = mkV "preside" "presided" "presided" ; -- compound side_V ;
-lin tide_V = mkV "tide" "tided" "tided" ;
-lin betide_V = mkV "betide" "betided" "betided" ; -- compound tide_V ;
-lin guide_V = mkV "guide" "guided" "guided" ;
-lin misguide_V = mkV "misguide" "misguided" "misguided" ; -- compound guide_V ;
-lin divide_V = mkV "divide" "divided" "divided" ;
-lin subdivide_V = mkV "subdivide" "subdivided" "subdivided" ; -- compound divide_V ;
-lin provide_V = mkV "provide" "provided" "provided" ;
-lin bode_V = mkV "bode" "boded" "boded" ;
-lin forebode_V = mkV "forebode" "foreboded" "foreboded" ; -- compound bode_V ;
-lin code_V = mkV "code" "coded" "coded" ;
-lin 'color-code_V' = mkV "color-code" "color-coded" "color-coded" ; -- compound code_V ;
-lin 'colour-code_V' = mkV "colour-code" "colour-coded" "colour-coded" ; -- compound code_V ;
-lin decode_V = mkV "decode" "decoded" "decoded" ; -- compound code_V ;
-lin encode_V = mkV "encode" "encoded" "encoded" ; -- compound code_V ;
-lin explode_V = mkV "explode" "exploded" "exploded" ;
-lin incommode_V = mkV "incommode" "incommoded" "incommoded" ;
-lin discommode_V = mkV "discommode" "discommoded" "discommoded" ;
-lin erode_V = mkV "erode" "eroded" "eroded" ;
-lin corrode_V = mkV "corrode" "corroded" "corroded" ;
-lin feude_V = mkV "feude" "feuded" "feuded" ;
-lin preclude_V = mkV "preclude" "precluded" "precluded" ;
-lin seclude_V = mkV "seclude" "secluded" "secluded" ;
-lin include_V = mkV "include" "included" "included" ;
-lin conclude_V = mkV "conclude" "concluded" "concluded" ;
-lin exclude_V = mkV "exclude" "excluded" "excluded" ;
-lin elude_V = mkV "elude" "eluded" "eluded" ;
-lin delude_V = mkV "delude" "deluded" "deluded" ; -- notcompound elude_V ;
-lin prelude_V = mkV "prelude" "preluded" "preluded" ; -- notcompound elude_V ;
-lin allude_V = mkV "allude" "alluded" "alluded" ;
-lin denude_V = mkV "denude" "denuded" "denuded" ;
-lin obtrude_V = mkV "obtrude" "obtruded" "obtruded" ;
-lin intrude_V = mkV "intrude" "intruded" "intruded" ;
-lin protrude_V = mkV "protrude" "protruded" "protruded" ;
-lin extrude_V = mkV "extrude" "extruded" "extruded" ;
-lin coextrude_V = mkV "coextrude" "coextruded" "coextruded" ; -- compound extrude_V ;
-lin exude_V = mkV "exude" "exuded" "exuded" ;
-lin slide_V = mkV "slide" "slid" "slid" ;
-lin backslide_V = mkV "backslide" "backslid" "backslid" ; -- compound slide_V ;
-lin flee_V = mkV "flee" "fled" "fled" ;
-lin pee_V = mkV "pee" "peed" "peed" ;
-lin decree_V = mkV "decree" "decreed" "decreed" ;
-lin free_V = mkV "free" "freed" "freed" ;
-lin agree_V = mkV "agree" "agreed" "agreed" ;
-lin disagree_V = mkV "disagree" "disagreed" "disagreed" ; -- compound agree_V ;
-lin tee_2_V = mkV "tee" "teed" "teed" ;
-lin guarantee_V = mkV "guarantee" "guaranteed" "guaranteed" ; -- compound tee_2_V ;
-lin wee_V = mkV "wee" "weed" "weed" ;
-lin chafe_V = mkV "chafe" "chafed" "chafed" ;
-lin strafe_V = mkV "strafe" "strafed" "strafed" ;
-lin vouchsafe_V = mkV "vouchsafe" "vouchsafed" "vouchsafed" ;
-lin knife_V = mkV "knife" "knifed" "knifed" ;
-lin 'jack-knife_V' = mkV "jack-knife" "jack-knifed" "jack-knifed" ; -- compound knife_V ;
-lin age_V = mkV "age" "aged" "aged" ;
-lin cage_V = mkV "cage" "caged" "caged" ; -- notcompound age_V ;
-lin bandage_V = mkV "bandage" "bandaged" "bandaged" ; -- compound age_V ;
-lin gage_V = mkV "gage" "gaged" "gaged" ; -- notcompound age_V ;
-lin engage_V = mkV "engage" "engaged" "engaged" ; -- compound age_V ;
-lin disengage_V = mkV "disengage" "disengaged" "disengaged" ; -- compound age_V ;
-lin mortgage_V = mkV "mortgage" "mortgaged" "mortgaged" ; -- compound age_V ;
-lin hemorrhage_V = mkV "hemorrhage" "hemorrhaged" "hemorrhaged" ; -- compound age_V ;
-lin package_V = mkV "package" "packaged" "packaged" ; -- compound age_V ;
-lin repackage_V = mkV "repackage" "repackaged" "repackaged" ; -- compound age_V ;
-lin camouflage_V = mkV "camouflage" "camouflaged" "camouflaged" ; -- compound age_V ;
-lin pillage_V = mkV "pillage" "pillaged" "pillaged" ; -- compound age_V ;
-lin damage_V = mkV "damage" "damaged" "damaged" ; -- compound age_V ;
-lin image_V = mkV "image" "imaged" "imaged" ; -- compound age_V ;
-lin scrimmage_V = mkV "scrimmage" "scrimmaged" "scrimmaged" ; -- compound age_V ;
-lin rummage_V = mkV "rummage" "rummaged" "rummaged" ; -- compound age_V ;
-lin manage_V = mkV "manage" "managed" "managed" ; -- compound age_V ;
-lin 'co-manage_V' = mkV "co-manage" "co-managed" "co-managed" ; -- compound age_V ;
-lin mismanage_V = mkV "mismanage" "mismanaged" "mismanaged" ; -- compound age_V ;
-lin page_V = mkV "page" "paged" "paged" ; -- notcompound age_V ;
-lin rampage_V = mkV "rampage" "rampaged" "rampaged" ; -- compound age_V ;
-lin rage_V = mkV "rage" "raged" "raged" ; -- notcompound age_V ;
-lin garage_V = mkV "garage" "garaged" "garaged" ; -- compound age_V ;
-lin disparage_V = mkV "disparage" "disparaged" "disparaged" ; -- compound age_V ;
-lin average_V = mkV "average" "averaged" "averaged" ; -- compound age_V ;
-lin enrage_V = mkV "enrage" "enraged" "enraged" ; -- compound age_V ;
-lin forage_V = mkV "forage" "foraged" "foraged" ; -- compound age_V ;
-lin outrage_V = mkV "outrage" "outraged" "outraged" ; -- compound age_V ;
-lin encourage_V = mkV "encourage" "encouraged" "encouraged" ; -- compound age_V ;
-lin discourage_V = mkV "discourage" "discouraged" "discouraged" ; -- compound age_V ;
-lin presage_V = mkV "presage" "presaged" "presaged" ; -- compound age_V ;
-lin envisage_V = mkV "envisage" "envisaged" "envisaged" ; -- compound age_V ;
-lin massage_V = mkV "massage" "massaged" "massaged" ; -- compound age_V ;
-lin advantage_V = mkV "advantage" "advantaged" "advantaged" ; -- compound age_V ;
-lin sabotage_V = mkV "sabotage" "sabotaged" "sabotaged" ; -- compound age_V ;
-lin stage_V = mkV "stage" "staged" "staged" ; -- notcompound age_V ;
-lin upstage_V = mkV "upstage" "upstaged" "upstaged" ; -- compound age_V ;
-lin assuage_V = mkV "assuage" "assuaged" "assuaged" ; -- compound age_V ;
-lin ravage_V = mkV "ravage" "ravaged" "ravaged" ; -- compound age_V ;
-lin savage_V = mkV "savage" "savaged" "savaged" ; -- compound age_V ;
-lin salvage_V = mkV "salvage" "salvaged" "salvaged" ; -- compound age_V ;
-lin wage_V = mkV "wage" "waged" "waged" ; -- notcompound age_V ;
-lin voyage_V = mkV "voyage" "voyaged" "voyaged" ; -- compound age_V ;
-lin cadge_V = mkV "cadge" "cadged" "cadged" ;
-lin edge_V = mkV "edge" "edged" "edged" ;
-lin hedge_V = mkV "hedge" "hedged" "hedged" ; -- notcompound edge_V ;
-lin pledge_V = mkV "pledge" "pledged" "pledged" ; -- notcompound edge_V ;
-lin sledge_V = mkV "sledge" "sledged" "sledged" ; -- notcompound edge_V ;
-lin acknowledge_V = mkV "acknowledge" "acknowledged" "acknowledged" ; -- compound edge_V ;
-lin dredge_V = mkV "dredge" "dredged" "dredged" ; -- notcompound edge_V ;
-lin wedge_V = mkV "wedge" "wedged" "wedged" ; -- notcompound edge_V ;
-lin ridge_V = mkV "ridge" "ridged" "ridged" ;
-lin bridge_V = mkV "bridge" "bridged" "bridged" ; -- notcompound ridge_V ;
-lin abridge_V = mkV "abridge" "abridged" "abridged" ; -- compound ridge_V ;
-lin dodge_V = mkV "dodge" "dodged" "dodged" ;
-lin lodge_V = mkV "lodge" "lodged" "lodged" ;
-lin dislodge_V = mkV "dislodge" "dislodged" "dislodged" ; -- compound lodge_V ;
-lin budge_V = mkV "budge" "budged" "budged" ;
-lin fudge_V = mkV "fudge" "fudged" "fudged" ;
-lin judge_V = mkV "judge" "judged" "judged" ;
-lin adjudge_V = mkV "adjudge" "adjudged" "adjudged" ; -- compound judge_V ;
-lin prejudge_V = mkV "prejudge" "prejudged" "prejudged" ; -- compound judge_V ;
-lin misjudge_V = mkV "misjudge" "misjudged" "misjudged" ; -- compound judge_V ;
-lin smudge_V = mkV "smudge" "smudged" "smudged" ;
-lin nudge_V = mkV "nudge" "nudged" "nudged" ;
-lin drudge_V = mkV "drudge" "drudged" "drudged" ;
-lin grudge_V = mkV "grudge" "grudged" "grudged" ;
-lin begrudge_V = mkV "begrudge" "begrudged" "begrudged" ; -- compound grudge_V ;
-lin trudge_V = mkV "trudge" "trudged" "trudged" ;
-lin besiege_V = mkV "besiege" "besieged" "besieged" ;
-lin allege_V = mkV "allege" "alleged" "alleged" ;
-lin renege_V = mkV "renege" "reneged" "reneged" ;
-lin 'jury-rigge_V' = mkV "jury-rigge" "jury-rigged" "jury-rigged" ;
-lin oblige_V = mkV "oblige" "obliged" "obliged" ;
-lin disoblige_V = mkV "disoblige" "disobliged" "disobliged" ; -- compound oblige_V ;
-lin bulge_V = mkV "bulge" "bulged" "bulged" ;
-lin indulge_V = mkV "indulge" "indulged" "indulged" ;
-lin overindulge_V = mkV "overindulge" "overindulged" "overindulged" ; -- compound indulge_V ;
-lin divulge_V = mkV "divulge" "divulged" "divulged" ;
-lin change_V = mkV "change" "changed" "changed" ;
-lin 'short-change_V' = mkV "short-change" "short-changed" "short-changed" ; -- compound change_V ;
-lin interchange_V = mkV "interchange" "interchanged" "interchanged" ; -- compound change_V ;
-lin exchange_V = mkV "exchange" "exchanged" "exchanged" ; -- compound change_V ;
-lin range_V = mkV "range" "ranged" "ranged" ;
-lin derange_V = mkV "derange" "deranged" "deranged" ; -- compound range_V ;
-lin arrange_V = mkV "arrange" "arranged" "arranged" ; -- compound range_V ;
-lin rearrange_V = mkV "rearrange" "rearranged" "rearranged" ; -- compound range_V ;
-lin prearrange_V = mkV "prearrange" "prearranged" "prearranged" ; -- compound range_V ;
-lin disarrange_V = mkV "disarrange" "disarranged" "disarranged" ; -- compound range_V ;
-lin estrange_V = mkV "estrange" "estranged" "estranged" ; -- compound range_V ;
-lin outrange_V = mkV "outrange" "outranged" "outranged" ; -- compound range_V ;
-lin challenge_V = mkV "challenge" "challenged" "challenged" ;
-lin avenge_V = mkV "avenge" "avenged" "avenged" ;
-lin scavenge_V = mkV "scavenge" "scavenged" "scavenged" ; -- notcompound avenge_V ;
-lin revenge_V = mkV "revenge" "revenged" "revenged" ;
-lin hinge_V = mkV "hinge" "hinged" "hinged" ;
-lin unhinge_V = mkV "unhinge" "unhinged" "unhinged" ; -- compound hinge_V ;
-lin impinge_V = mkV "impinge" "impinged" "impinged" ;
-lin cringe_V = mkV "cringe" "cringed" "cringed" ;
-lin fringe_V = mkV "fringe" "fringed" "fringed" ;
-lin infringe_V = mkV "infringe" "infringed" "infringed" ; -- compound fringe_V ;
-lin syringe_V = mkV "syringe" "syringed" "syringed" ;
-lin tinge_V = mkV "tinge" "tinged" "tinged" ;
-lin swinge_V = mkV "swinge" "swinged" "swinged" ;
-lin sponge_V = mkV "sponge" "sponged" "sponged" ;
-lin lunge_V = mkV "lunge" "lunged" "lunged" ;
-lin plunge_V = mkV "plunge" "plunged" "plunged" ; -- notcompound lunge_V ;
-lin lounge_V = mkV "lounge" "lounged" "lounged" ;
-lin scrounge_V = mkV "scrounge" "scrounged" "scrounged" ;
-lin expunge_V = mkV "expunge" "expunged" "expunged" ;
-lin stooge_V = mkV "stooge" "stooged" "stooged" ;
-lin barge_V = mkV "barge" "barged" "barged" ;
-lin charge_V = mkV "charge" "charged" "charged" ;
-lin undercharge_V = mkV "undercharge" "undercharged" "undercharged" ; -- compound charge_V ;
-lin overcharge_V = mkV "overcharge" "overcharged" "overcharged" ; -- compound charge_V ;
-lin surcharge_V = mkV "surcharge" "surcharged" "surcharged" ; -- compound charge_V ;
-lin discharge_V = mkV "discharge" "discharged" "discharged" ; -- compound charge_V ;
-lin large_V = mkV "large" "larged" "larged" ;
-lin enlarge_V = mkV "enlarge" "enlarged" "enlarged" ; -- compound large_V ;
-lin merge_V = mkV "merge" "merged" "merged" ;
-lin submerge_V = mkV "submerge" "submerged" "submerged" ; -- compound merge_V ;
-lin emerge_V = mkV "emerge" "emerged" "emerged" ; -- notcompound merge_V ;
-lin 're-emerge_V' = mkV "re-emerge" "re-emerged" "re-emerged" ; -- compound merge_V ;
-lin verge_V = mkV "verge" "verged" "verged" ;
-lin diverge_V = mkV "diverge" "diverged" "diverged" ; -- compound verge_V ;
-lin converge_V = mkV "converge" "converged" "converged" ; -- compound verge_V ;
-lin forge_V = mkV "forge" "forged" "forged" ;
-lin gorge_V = mkV "gorge" "gorged" "gorged" ;
-lin disgorge_V = mkV "disgorge" "disgorged" "disgorged" ; -- compound gorge_V ;
-lin urge_V = mkV "urge" "urged" "urged" ;
-lin splurge_V = mkV "splurge" "splurged" "splurged" ; -- notcompound urge_V ;
-lin scourge_V = mkV "scourge" "scourged" "scourged" ; -- compound urge_V ;
-lin purge_V = mkV "purge" "purged" "purged" ; -- notcompound urge_V ;
-lin surge_V = mkV "surge" "surged" "surged" ; -- notcompound urge_V ;
-lin gauge_V = mkV "gauge" "gauged" "gauged" ;
-lin deluge_V = mkV "deluge" "deluged" "deluged" ;
-lin gouge_V = mkV "gouge" "gouged" "gouged" ;
-lin rouge_V = mkV "rouge" "rouged" "rouged" ;
-lin ache_V = mkV "ache" "ached" "ached" ;
-lin cache_V = mkV "cache" "cached" "cached" ; -- notcompound ache_V ;
-lin bellyache_V = mkV "bellyache" "bellyached" "bellyached" ; -- compound ache_V ;
-lin bathe_V = mkV "bathe" "bathed" "bathed" ;
-lin sunbathe_V = mkV "sunbathe" "sunbathed" "sunbathed" ; -- compound bathe_V ;
-lin sheathe_V = mkV "sheathe" "sheathed" "sheathed" ;
-lin unsheathe_V = mkV "unsheathe" "unsheathed" "unsheathed" ; -- compound sheathe_V ;
-lin breathe_V = mkV "breathe" "breathed" "breathed" ;
-lin wreathe_V = mkV "wreathe" "wreathed" "wreathed" ;
-lin loathe_V = mkV "loathe" "loathed" "loathed" ;
-lin swathe_V = mkV "swathe" "swathed" "swathed" ;
-lin seethe_V = mkV "seethe" "seethed" "seethed" ;
-lin teethe_V = mkV "teethe" "teethed" "teethed" ;
-lin writhe_V = mkV "writhe" "writhed" "writhed" ;
-lin clothe_V = mkV "clothe" "clothed" "clothed" ;
-lin overclothe_V = mkV "overclothe" "overclothed" "overclothed" ; -- compound clothe_V ;
-lin soothe_V = mkV "soothe" "soothed" "soothed" ;
-lin scythe_V = mkV "scythe" "scythed" "scythed" ;
-lin die_V = mkV "die" "died" "died" ;
-lin lie_2_V = mkV "lie" "lied" "lied" ;
-lin tie_V = mkV "tie" "tied" "tied" ;
-lin bake_V = mkV "bake" "baked" "baked" ;
-lin cake_V = mkV "cake" "caked" "caked" ;
-lin fake_V = mkV "fake" "faked" "faked" ;
-lin flake_V = mkV "flake" "flaked" "flaked" ;
-lin slake_V = mkV "slake" "slaked" "slaked" ;
-lin snake_V = mkV "snake" "snaked" "snaked" ;
-lin rake_V = mkV "rake" "raked" "raked" ;
-lin brake_V = mkV "brake" "braked" "braked" ; -- notcompound rake_V ;
-lin take_1_V = mkV "take" "taked" "taked" ;
-lin stake_V = mkV "stake" "staked" "staked" ; -- notcompound take_1_V ;
-lin quake_V = mkV "quake" "quaked" "quaked" ;
-lin wake_V = mkV "wake" "waked" "waked" ;
-lin eke_V = mkV "eke" "eked" "eked" ;
-lin bike_V = mkV "bike" "biked" "biked" ;
-lin dike_V = mkV "dike" "diked" "diked" ;
-lin hike_V = mkV "hike" "hiked" "hiked" ;
-lin hitchhike_V = mkV "hitchhike" "hitchhiked" "hitchhiked" ; -- compound hike_V ;
-lin like_V = mkV "like" "liked" "liked" ;
-lin dislike_V = mkV "dislike" "disliked" "disliked" ; -- compound like_V ;
-lin spike_V = mkV "spike" "spiked" "spiked" ;
-lin strike_1_V = mkV "strike" "striked" "striked" ;
-lin coke_V = mkV "coke" "coked" "coked" ;
-lin decoke_V = mkV "decoke" "decoked" "decoked" ; -- compound coke_V ;
-lin choke_V = mkV "choke" "choked" "choked" ;
-lin joke_V = mkV "joke" "joked" "joked" ;
-lin smoke_V = mkV "smoke" "smoked" "smoked" ;
-lin poke_V = mkV "poke" "poked" "poked" ;
-lin stroke_V = mkV "stroke" "stroked" "stroked" ;
-lin stoke_V = mkV "stoke" "stoked" "stoked" ;
-lin evoke_V = mkV "evoke" "evoked" "evoked" ;
-lin revoke_V = mkV "revoke" "revoked" "revoked" ; -- notcompound evoke_V ;
-lin invoke_V = mkV "invoke" "invoked" "invoked" ;
-lin convoke_V = mkV "convoke" "convoked" "convoked" ;
-lin provoke_V = mkV "provoke" "provoked" "provoked" ;
-lin yoke_V = mkV "yoke" "yoked" "yoked" ;
-lin marke_V = mkV "marke" "marked" "marked" ;
-lin burke_V = mkV "burke" "burked" "burked" ;
-lin rebuke_V = mkV "rebuke" "rebuked" "rebuked" ;
-lin puke_V = mkV "puke" "puked" "puked" ;
-lin dyke_V = mkV "dyke" "dyked" "dyked" ;
-lin bale_V = mkV "bale" "baled" "baled" ;
-lin scale_V = mkV "scale" "scaled" "scaled" ;
-lin descale_V = mkV "descale" "descaled" "descaled" ; -- compound scale_V ;
-lin conceale_V = mkV "conceale" "concealed" "concealed" ;
-lin regale_V = mkV "regale" "regaled" "regaled" ;
-lin inhale_V = mkV "inhale" "inhaled" "inhaled" ;
-lin whale_V = mkV "whale" "whaled" "whaled" ;
-lin exhale_V = mkV "exhale" "exhaled" "exhaled" ;
-lin signale_V = mkV "signale" "signaled" "signaled" ;
-lin pale_V = mkV "pale" "paled" "paled" ;
-lin empale_V = mkV "empale" "empaled" "empaled" ; -- compound pale_V ;
-lin impale_V = mkV "impale" "impaled" "impaled" ; -- compound pale_V ;
-lin wholesale_V = mkV "wholesale" "wholesaled" "wholesaled" ;
-lin stale_V = mkV "stale" "staled" "staled" ;
-lin cable_V = mkV "cable" "cabled" "cabled" ;
-lin enable_V = mkV "enable" "enabled" "enabled" ;
-lin disable_V = mkV "disable" "disabled" "disabled" ;
-lin table_V = mkV "table" "tabled" "tabled" ;
-lin stable_V = mkV "stable" "stabled" "stabled" ; -- notcompound table_V ;
-lin babble_V = mkV "babble" "babbled" "babbled" ;
-lin dabble_V = mkV "dabble" "dabbled" "dabbled" ;
-lin gabble_V = mkV "gabble" "gabbled" "gabbled" ;
-lin scrabble_V = mkV "scrabble" "scrabbled" "scrabbled" ;
-lin squabble_V = mkV "squabble" "squabbled" "squabbled" ;
-lin dibble_V = mkV "dibble" "dibbled" "dibbled" ;
-lin nibble_V = mkV "nibble" "nibbled" "nibbled" ;
-lin scribble_V = mkV "scribble" "scribbled" "scribbled" ;
-lin dribble_V = mkV "dribble" "dribbled" "dribbled" ;
-lin quibble_V = mkV "quibble" "quibbled" "quibbled" ;
-lin cobble_V = mkV "cobble" "cobbled" "cobbled" ;
-lin gobble_V = mkV "gobble" "gobbled" "gobbled" ;
-lin hobble_V = mkV "hobble" "hobbled" "hobbled" ;
-lin nobble_V = mkV "nobble" "nobbled" "nobbled" ;
-lin wobble_V = mkV "wobble" "wobbled" "wobbled" ;
-lin bubble_V = mkV "bubble" "bubbled" "bubbled" ;
-lin enfeeble_V = mkV "enfeeble" "enfeebled" "enfeebled" ;
-lin treble_V = mkV "treble" "trebled" "trebled" ;
-lin amble_V = mkV "amble" "ambled" "ambled" ;
-lin gamble_V = mkV "gamble" "gambled" "gambled" ; -- notcompound amble_V ;
-lin shamble_V = mkV "shamble" "shambled" "shambled" ; -- notcompound amble_V ;
-lin ramble_V = mkV "ramble" "rambled" "rambled" ; -- notcompound amble_V ;
-lin scramble_V = mkV "scramble" "scrambled" "scrambled" ; -- notcompound amble_V ;
-lin unscramble_V = mkV "unscramble" "unscrambled" "unscrambled" ; -- compound amble_V ;
-lin tremble_V = mkV "tremble" "trembled" "trembled" ;
-lin resemble_V = mkV "resemble" "resembled" "resembled" ;
-lin assemble_V = mkV "assemble" "assembled" "assembled" ;
-lin reassemble_V = mkV "reassemble" "reassembled" "reassembled" ; -- compound assemble_V ;
-lin dissemble_V = mkV "dissemble" "dissembled" "dissembled" ;
-lin fumble_V = mkV "fumble" "fumbled" "fumbled" ;
-lin humble_V = mkV "humble" "humbled" "humbled" ;
-lin jumble_V = mkV "jumble" "jumbled" "jumbled" ;
-lin mumble_V = mkV "mumble" "mumbled" "mumbled" ;
-lin rumble_V = mkV "rumble" "rumbled" "rumbled" ;
-lin crumble_V = mkV "crumble" "crumbled" "crumbled" ; -- notcompound rumble_V ;
-lin grumble_V = mkV "grumble" "grumbled" "grumbled" ; -- notcompound rumble_V ;
-lin tumble_V = mkV "tumble" "tumbled" "tumbled" ;
-lin stumble_V = mkV "stumble" "stumbled" "stumbled" ; -- notcompound tumble_V ;
-lin ennoble_V = mkV "ennoble" "ennobled" "ennobled" ;
-lin garble_V = mkV "garble" "garbled" "garbled" ;
-lin warble_V = mkV "warble" "warbled" "warbled" ;
-lin burble_V = mkV "burble" "burbled" "burbled" ;
-lin double_V = mkV "double" "doubled" "doubled" ;
-lin redouble_V = mkV "redouble" "redoubled" "redoubled" ; -- compound double_V ;
-lin trouble_V = mkV "trouble" "troubled" "troubled" ;
-lin manacle_V = mkV "manacle" "manacled" "manacled" ;
-lin pinnacle_V = mkV "pinnacle" "pinnacled" "pinnacled" ;
-lin chronicle_V = mkV "chronicle" "chronicled" "chronicled" ;
-lin article_V = mkV "article" "articled" "articled" ;
-lin circle_V = mkV "circle" "circled" "circled" ;
-lin encircle_V = mkV "encircle" "encircled" "encircled" ; -- compound circle_V ;
-lin muscle_V = mkV "muscle" "muscled" "muscled" ;
-lin cycle_V = mkV "cycle" "cycled" "cycled" ;
-lin recycle_V = mkV "recycle" "recycled" "recycled" ; -- compound cycle_V ;
-lin bicycle_V = mkV "bicycle" "bicycled" "bicycled" ; -- compound cycle_V ;
-lin treadle_V = mkV "treadle" "treadled" "treadled" ;
-lin ladle_V = mkV "ladle" "ladled" "ladled" ;
-lin cradle_V = mkV "cradle" "cradled" "cradled" ;
-lin addle_V = mkV "addle" "addled" "addled" ;
-lin skedaddle_V = mkV "skedaddle" "skedaddled" "skedaddled" ; -- compound addle_V ;
-lin paddle_V = mkV "paddle" "paddled" "paddled" ; -- notcompound addle_V ;
-lin straddle_V = mkV "straddle" "straddled" "straddled" ; -- notcompound addle_V ;
-lin saddle_V = mkV "saddle" "saddled" "saddled" ; -- notcompound addle_V ;
-lin unsaddle_V = mkV "unsaddle" "unsaddled" "unsaddled" ; -- compound addle_V ;
-lin waddle_V = mkV "waddle" "waddled" "waddled" ; -- notcompound addle_V ;
-lin swaddle_V = mkV "swaddle" "swaddled" "swaddled" ; -- notcompound addle_V ;
-lin twaddle_V = mkV "twaddle" "twaddled" "twaddled" ; -- notcompound addle_V ;
-lin meddle_V = mkV "meddle" "meddled" "meddled" ;
-lin peddle_V = mkV "peddle" "peddled" "peddled" ;
-lin diddle_V = mkV "diddle" "diddled" "diddled" ;
-lin fiddle_V = mkV "fiddle" "fiddled" "fiddled" ;
-lin piddle_V = mkV "piddle" "piddled" "piddled" ;
-lin riddle_V = mkV "riddle" "riddled" "riddled" ;
-lin twiddle_V = mkV "twiddle" "twiddled" "twiddled" ;
-lin coddle_V = mkV "coddle" "coddled" "coddled" ;
-lin mollycoddle_V = mkV "mollycoddle" "mollycoddled" "mollycoddled" ; -- compound coddle_V ;
-lin toddle_V = mkV "toddle" "toddled" "toddled" ;
-lin cuddle_V = mkV "cuddle" "cuddled" "cuddled" ;
-lin fuddle_V = mkV "fuddle" "fuddled" "fuddled" ;
-lin huddle_V = mkV "huddle" "huddled" "huddled" ;
-lin muddle_V = mkV "muddle" "muddled" "muddled" ;
-lin puddle_V = mkV "puddle" "puddled" "puddled" ;
-lin ruddle_V = mkV "ruddle" "ruddled" "ruddled" ;
-lin wheedle_V = mkV "wheedle" "wheedled" "wheedled" ;
-lin needle_V = mkV "needle" "needled" "needled" ;
-lin idle_V = mkV "idle" "idled" "idled" ;
-lin bridle_V = mkV "bridle" "bridled" "bridled" ; -- notcompound idle_V ;
-lin sidle_V = mkV "sidle" "sidled" "sidled" ; -- notcompound idle_V ;
-lin dandle_V = mkV "dandle" "dandled" "dandled" ;
-lin handle_V = mkV "handle" "handled" "handled" ;
-lin manhandle_V = mkV "manhandle" "manhandled" "manhandled" ; -- compound handle_V ;
-lin panhandle_V = mkV "panhandle" "panhandled" "panhandled" ; -- compound handle_V ;
-lin mishandle_V = mkV "mishandle" "mishandled" "mishandled" ; -- compound handle_V ;
-lin kindle_V = mkV "kindle" "kindled" "kindled" ;
-lin rekindle_V = mkV "rekindle" "rekindled" "rekindled" ; -- compound kindle_V ;
-lin enkindle_V = mkV "enkindle" "enkindled" "enkindled" ; -- compound kindle_V ;
-lin dwindle_V = mkV "dwindle" "dwindled" "dwindled" ;
-lin swindle_V = mkV "swindle" "swindled" "swindled" ;
-lin fondle_V = mkV "fondle" "fondled" "fondled" ;
-lin bundle_V = mkV "bundle" "bundled" "bundled" ;
-lin trundle_V = mkV "trundle" "trundled" "trundled" ;
-lin doodle_V = mkV "doodle" "doodled" "doodled" ;
-lin girdle_V = mkV "girdle" "girdled" "girdled" ;
-lin curdle_V = mkV "curdle" "curdled" "curdled" ;
-lin hurdle_V = mkV "hurdle" "hurdled" "hurdled" ;
-lin dawdle_V = mkV "dawdle" "dawdled" "dawdled" ;
-lin baffle_V = mkV "baffle" "baffled" "baffled" ;
-lin snaffle_V = mkV "snaffle" "snaffled" "snaffled" ;
-lin raffle_V = mkV "raffle" "raffled" "raffled" ;
-lin waffle_V = mkV "waffle" "waffled" "waffled" ;
-lin sniffle_V = mkV "sniffle" "sniffled" "sniffled" ;
-lin piffle_V = mkV "piffle" "piffled" "piffled" ;
-lin riffle_V = mkV "riffle" "riffled" "riffled" ;
-lin scuffle_V = mkV "scuffle" "scuffled" "scuffled" ;
-lin shuffle_V = mkV "shuffle" "shuffled" "shuffled" ;
-lin reshuffle_V = mkV "reshuffle" "reshuffled" "reshuffled" ; -- compound shuffle_V ;
-lin muffle_V = mkV "muffle" "muffled" "muffled" ;
-lin snuffle_V = mkV "snuffle" "snuffled" "snuffled" ;
-lin ruffle_V = mkV "ruffle" "ruffled" "ruffled" ;
-lin rifle_V = mkV "rifle" "rifled" "rifled" ;
-lin trifle_V = mkV "trifle" "trifled" "trifled" ; -- notcompound rifle_V ;
-lin stifle_V = mkV "stifle" "stifled" "stifled" ;
-lin spreadeagle_V = mkV "spreadeagle" "spreadeagled" "spreadeagled" ;
-lin finagle_V = mkV "finagle" "finagled" "finagled" ;
-lin haggle_V = mkV "haggle" "haggled" "haggled" ;
-lin straggle_V = mkV "straggle" "straggled" "straggled" ;
-lin waggle_V = mkV "waggle" "waggled" "waggled" ;
-lin giggle_V = mkV "giggle" "giggled" "giggled" ;
-lin jiggle_V = mkV "jiggle" "jiggled" "jiggled" ;
-lin niggle_V = mkV "niggle" "niggled" "niggled" ;
-lin wriggle_V = mkV "wriggle" "wriggled" "wriggled" ;
-lin wiggle_V = mkV "wiggle" "wiggled" "wiggled" ;
-lin boggle_V = mkV "boggle" "boggled" "boggled" ;
-lin goggle_V = mkV "goggle" "goggled" "goggled" ;
-lin joggle_V = mkV "joggle" "joggled" "joggled" ;
-lin juggle_V = mkV "juggle" "juggled" "juggled" ;
-lin smuggle_V = mkV "smuggle" "smuggled" "smuggled" ;
-lin snuggle_V = mkV "snuggle" "snuggled" "snuggled" ;
-lin struggle_V = mkV "struggle" "struggled" "struggled" ;
-lin inveigle_V = mkV "inveigle" "inveigled" "inveigled" ;
-lin angle_V = mkV "angle" "angled" "angled" ;
-lin dangle_V = mkV "dangle" "dangled" "dangled" ; -- notcompound angle_V ;
-lin jangle_V = mkV "jangle" "jangled" "jangled" ; -- notcompound angle_V ;
-lin mangle_V = mkV "mangle" "mangled" "mangled" ; -- notcompound angle_V ;
-lin spangle_V = mkV "spangle" "spangled" "spangled" ; -- notcompound angle_V ;
-lin strangle_V = mkV "strangle" "strangled" "strangled" ; -- notcompound angle_V ;
-lin wrangle_V = mkV "wrangle" "wrangled" "wrangled" ; -- notcompound angle_V ;
-lin tangle_V = mkV "tangle" "tangled" "tangled" ; -- notcompound angle_V ;
-lin entangle_V = mkV "entangle" "entangled" "entangled" ; -- compound angle_V ;
-lin disentangle_V = mkV "disentangle" "disentangled" "disentangled" ; -- compound angle_V ;
-lin wangle_V = mkV "wangle" "wangled" "wangled" ; -- notcompound angle_V ;
-lin shingle_V = mkV "shingle" "shingled" "shingled" ;
-lin jingle_V = mkV "jingle" "jingled" "jingled" ;
-lin mingle_V = mkV "mingle" "mingled" "mingled" ;
-lin commingle_V = mkV "commingle" "commingled" "commingled" ; -- compound mingle_V ;
-lin intermingle_V = mkV "intermingle" "intermingled" "intermingled" ; -- compound mingle_V ;
-lin single_V = mkV "single" "singled" "singled" ;
-lin tingle_V = mkV "tingle" "tingled" "tingled" ;
-lin bungle_V = mkV "bungle" "bungled" "bungled" ;
-lin ogle_V = mkV "ogle" "ogled" "ogled" ;
-lin gargle_V = mkV "gargle" "gargled" "gargled" ;
-lin burgle_V = mkV "burgle" "burgled" "burgled" ;
-lin gurgle_V = mkV "gurgle" "gurgled" "gurgled" ;
-lin reconcile_V = mkV "reconcile" "reconciled" "reconciled" ;
-lin file_V = mkV "file" "filed" "filed" ;
-lin defile_V = mkV "defile" "defiled" "defiled" ; -- compound file_V ;
-lin refile_V = mkV "refile" "refiled" "refiled" ; -- compound file_V ;
-lin profile_V = mkV "profile" "profiled" "profiled" ; -- compound file_V ;
-lin while_V = mkV "while" "whiled" "whiled" ;
-lin smile_V = mkV "smile" "smiled" "smiled" ;
-lin pile_V = mkV "pile" "piled" "piled" ;
-lin stockpile_V = mkV "stockpile" "stockpiled" "stockpiled" ; -- compound pile_V ;
-lin compile_V = mkV "compile" "compiled" "compiled" ; -- compound pile_V ;
-lin rile_V = mkV "rile" "riled" "riled" ;
-lin imperile_V = mkV "imperile" "imperiled" "imperiled" ; -- compound rile_V ;
-lin tile_V = mkV "tile" "tiled" "tiled" ;
-lin beguile_V = mkV "beguile" "beguiled" "beguiled" ;
-lin revile_V = mkV "revile" "reviled" "reviled" ;
-lin exile_V = mkV "exile" "exiled" "exiled" ;
-lin cackle_V = mkV "cackle" "cackled" "cackled" ;
-lin shackle_V = mkV "shackle" "shackled" "shackled" ;
-lin crackle_V = mkV "crackle" "crackled" "crackled" ;
-lin tackle_V = mkV "tackle" "tackled" "tackled" ;
-lin heckle_V = mkV "heckle" "heckled" "heckled" ;
-lin freckle_V = mkV "freckle" "freckled" "freckled" ;
-lin pickle_V = mkV "pickle" "pickled" "pickled" ;
-lin prickle_V = mkV "prickle" "prickled" "prickled" ;
-lin trickle_V = mkV "trickle" "trickled" "trickled" ;
-lin tickle_V = mkV "tickle" "tickled" "tickled" ;
-lin buckle_V = mkV "buckle" "buckled" "buckled" ;
-lin unbuckle_V = mkV "unbuckle" "unbuckled" "unbuckled" ; -- compound buckle_V ;
-lin chuckle_V = mkV "chuckle" "chuckled" "chuckled" ;
-lin knuckle_V = mkV "knuckle" "knuckled" "knuckled" ;
-lin truckle_V = mkV "truckle" "truckled" "truckled" ;
-lin suckle_V = mkV "suckle" "suckled" "suckled" ;
-lin rankle_V = mkV "rankle" "rankled" "rankled" ;
-lin crinkle_V = mkV "crinkle" "crinkled" "crinkled" ;
-lin sprinkle_V = mkV "sprinkle" "sprinkled" "sprinkled" ;
-lin wrinkle_V = mkV "wrinkle" "wrinkled" "wrinkled" ;
-lin tinkle_V = mkV "tinkle" "tinkled" "tinkled" ;
-lin winkle_V = mkV "winkle" "winkled" "winkled" ;
-lin twinkle_V = mkV "twinkle" "twinkled" "twinkled" ; -- notcompound winkle_V ;
-lin sparkle_V = mkV "sparkle" "sparkled" "sparkled" ;
-lin dole_V = mkV "dole" "doled" "doled" ;
-lin condole_V = mkV "condole" "condoled" "condoled" ; -- compound dole_V ;
-lin hole_V = mkV "hole" "holed" "holed" ;
-lin pigeonhole_V = mkV "pigeonhole" "pigeonholed" "pigeonholed" ; -- compound hole_V ;
-lin buttonhole_V = mkV "buttonhole" "buttonholed" "buttonholed" ; -- compound hole_V ;
-lin cajole_V = mkV "cajole" "cajoled" "cajoled" ;
-lin parole_V = mkV "parole" "paroled" "paroled" ;
-lin sole_V = mkV "sole" "soled" "soled" ;
-lin resole_V = mkV "resole" "resoled" "resoled" ; -- compound sole_V ;
-lin console_V = mkV "console" "consoled" "consoled" ; -- compound sole_V ;
-lin staple_V = mkV "staple" "stapled" "stapled" ;
-lin triple_V = mkV "triple" "tripled" "tripled" ;
-lin trample_V = mkV "trample" "trampled" "trampled" ;
-lin sample_V = mkV "sample" "sampled" "sampled" ;
-lin dimple_V = mkV "dimple" "dimpled" "dimpled" ;
-lin rumple_V = mkV "rumple" "rumpled" "rumpled" ;
-lin crumple_V = mkV "crumple" "crumpled" "crumpled" ; -- notcompound rumple_V ;
-lin people_V = mkV "people" "peopled" "peopled" ;
-lin dapple_V = mkV "dapple" "dappled" "dappled" ;
-lin grapple_V = mkV "grapple" "grappled" "grappled" ;
-lin ripple_V = mkV "ripple" "rippled" "rippled" ;
-lin cripple_V = mkV "cripple" "crippled" "crippled" ; -- notcompound ripple_V ;
-lin tipple_V = mkV "tipple" "tippled" "tippled" ;
-lin stipple_V = mkV "stipple" "stippled" "stippled" ; -- notcompound tipple_V ;
-lin topple_V = mkV "topple" "toppled" "toppled" ;
-lin couple_V = mkV "couple" "coupled" "coupled" ;
-lin uncouple_V = mkV "uncouple" "uncoupled" "uncoupled" ; -- compound couple_V ;
-lin scruple_V = mkV "scruple" "scrupled" "scrupled" ;
-lin quadruple_V = mkV "quadruple" "quadrupled" "quadrupled" ;
-lin hassle_V = mkV "hassle" "hassled" "hassled" ;
-lin tussle_V = mkV "tussle" "tussled" "tussled" ;
-lin tousle_V = mkV "tousle" "tousled" "tousled" ;
-lin beetle_V = mkV "beetle" "beetled" "beetled" ;
-lin entitle_V = mkV "entitle" "entitled" "entitled" ;
-lin mantle_V = mkV "mantle" "mantled" "mantled" ;
-lin dismantle_V = mkV "dismantle" "dismantled" "dismantled" ; -- compound mantle_V ;
-lin footle_V = mkV "footle" "footled" "footled" ;
-lin pootle_V = mkV "pootle" "pootled" "pootled" ;
-lin rootle_V = mkV "rootle" "rootled" "rootled" ;
-lin tootle_V = mkV "tootle" "tootled" "tootled" ;
-lin startle_V = mkV "startle" "startled" "startled" ;
-lin chortle_V = mkV "chortle" "chortled" "chortled" ;
-lin hurtle_V = mkV "hurtle" "hurtled" "hurtled" ;
-lin castle_V = mkV "castle" "castled" "castled" ;
-lin nestle_V = mkV "nestle" "nestled" "nestled" ;
-lin pestle_V = mkV "pestle" "pestled" "pestled" ;
-lin wrestle_V = mkV "wrestle" "wrestled" "wrestled" ;
-lin whistle_V = mkV "whistle" "whistled" "whistled" ;
-lin bristle_V = mkV "bristle" "bristled" "bristled" ;
-lin jostle_V = mkV "jostle" "jostled" "jostled" ;
-lin bustle_V = mkV "bustle" "bustled" "bustled" ;
-lin hustle_V = mkV "hustle" "hustled" "hustled" ;
-lin rustle_V = mkV "rustle" "rustled" "rustled" ;
-lin battle_V = mkV "battle" "battled" "battled" ;
-lin rattle_V = mkV "rattle" "rattled" "rattled" ;
-lin prattle_V = mkV "prattle" "prattled" "prattled" ; -- notcompound rattle_V ;
-lin tattle_V = mkV "tattle" "tattled" "tattled" ;
-lin 'tittle-tattle_V' = mkV "tittle-tattle" "tittle-tattled" "tittle-tattled" ; -- compound tattle_V ;
-lin nettle_V = mkV "nettle" "nettled" "nettled" ;
-lin settle_V = mkV "settle" "settled" "settled" ;
-lin resettle_V = mkV "resettle" "resettled" "resettled" ; -- compound settle_V ;
-lin unsettle_V = mkV "unsettle" "unsettled" "unsettled" ; -- compound settle_V ;
-lin whittle_V = mkV "whittle" "whittled" "whittled" ;
-lin skittle_V = mkV "skittle" "skittled" "skittled" ;
-lin belittle_V = mkV "belittle" "belittled" "belittled" ;
-lin bottle_V = mkV "bottle" "bottled" "bottled" ;
-lin mottle_V = mkV "mottle" "mottled" "mottled" ;
-lin throttle_V = mkV "throttle" "throttled" "throttled" ;
-lin scuttle_V = mkV "scuttle" "scuttled" "scuttled" ;
-lin shuttle_V = mkV "shuttle" "shuttled" "shuttled" ;
-lin ridicule_V = mkV "ridicule" "ridiculed" "ridiculed" ;
-lin schedule_V = mkV "schedule" "scheduled" "scheduled" ;
-lin reschedule_V = mkV "reschedule" "rescheduled" "rescheduled" ; -- compound schedule_V ;
-lin mule_V = mkV "mule" "muled" "muled" ;
-lin pule_V = mkV "pule" "puled" "puled" ;
-lin rule_V = mkV "rule" "ruled" "ruled" ;
-lin overrule_V = mkV "overrule" "overruled" "overruled" ; -- compound rule_V ;
-lin style_V = mkV "style" "styled" "styled" ;
-lin cyclostyle_V = mkV "cyclostyle" "cyclostyled" "cyclostyled" ; -- compound style_V ;
-lin bamboozle_V = mkV "bamboozle" "bamboozled" "bamboozled" ;
-lin dazzle_V = mkV "dazzle" "dazzled" "dazzled" ;
-lin embezzle_V = mkV "embezzle" "embezzled" "embezzled" ;
-lin fizzle_V = mkV "fizzle" "fizzled" "fizzled" ;
-lin mizzle_V = mkV "mizzle" "mizzled" "mizzled" ;
-lin drizzle_V = mkV "drizzle" "drizzled" "drizzled" ;
-lin frizzle_V = mkV "frizzle" "frizzled" "frizzled" ;
-lin grizzle_V = mkV "grizzle" "grizzled" "grizzled" ;
-lin sizzle_V = mkV "sizzle" "sizzled" "sizzled" ;
-lin guzzle_V = mkV "guzzle" "guzzled" "guzzled" ;
-lin muzzle_V = mkV "muzzle" "muzzled" "muzzled" ;
-lin nuzzle_V = mkV "nuzzle" "nuzzled" "nuzzled" ;
-lin puzzle_V = mkV "puzzle" "puzzled" "puzzled" ;
-lin fame_V = mkV "fame" "famed" "famed" ;
-lin defame_V = mkV "defame" "defamed" "defamed" ; -- compound fame_V ;
-lin game_V = mkV "game" "gamed" "gamed" ;
-lin shame_V = mkV "shame" "shamed" "shamed" ;
-lin lame_V = mkV "lame" "lamed" "lamed" ;
-lin blame_V = mkV "blame" "blamed" "blamed" ; -- notcompound lame_V ;
-lin flame_V = mkV "flame" "flamed" "flamed" ; -- notcompound lame_V ;
-lin inflame_V = mkV "inflame" "inflamed" "inflamed" ; -- compound lame_V ;
-lin name_V = mkV "name" "named" "named" ;
-lin rename_V = mkV "rename" "renamed" "renamed" ; -- compound name_V ;
-lin nickname_V = mkV "nickname" "nicknamed" "nicknamed" ; -- compound name_V ;
-lin misname_V = mkV "misname" "misnamed" "misnamed" ; -- compound name_V ;
-lin frame_V = mkV "frame" "framed" "framed" ;
-lin tame_V = mkV "tame" "tamed" "tamed" ;
-lin scheme_V = mkV "scheme" "schemed" "schemed" ;
-lin blaspheme_V = mkV "blaspheme" "blasphemed" "blasphemed" ;
-lin chime_V = mkV "chime" "chimed" "chimed" ;
-lin lime_V = mkV "lime" "limed" "limed" ;
-lin mime_V = mkV "mime" "mimed" "mimed" ;
-lin rime_V = mkV "rime" "rimed" "rimed" ;
-lin crime_V = mkV "crime" "crimed" "crimed" ; -- notcompound rime_V ;
-lin grime_V = mkV "grime" "grimed" "grimed" ; -- notcompound rime_V ;
-lin prime_V = mkV "prime" "primed" "primed" ; -- notcompound rime_V ;
-lin time_V = mkV "time" "timed" "timed" ;
-lin mistime_V = mkV "mistime" "mistimed" "mistimed" ; -- compound time_V ;
-lin calme_V = mkV "calme" "calmed" "calmed" ;
-lin programme_V = mkV "programme" "programmed" "programmed" ;
-lin come_2_V = mkV "come" "comed" "comed" ;
-lin welcome_V = mkV "welcome" "welcomed" "welcomed" ; -- compound come_2_V ;
-lin overcome_2_V = mkV "overcome" "overcomed" "overcomed" ; -- compound come_2_V ;
-lin home_V = mkV "home" "homed" "homed" ;
-lin fume_V = mkV "fume" "fumed" "fumed" ;
-lin perfume_V = mkV "perfume" "perfumed" "perfumed" ; -- compound fume_V ;
-lin exhume_V = mkV "exhume" "exhumed" "exhumed" ;
-lin illume_V = mkV "illume" "illumed" "illumed" ;
-lin plume_V = mkV "plume" "plumed" "plumed" ;
-lin subsume_V = mkV "subsume" "subsumed" "subsumed" ;
-lin resume_V = mkV "resume" "resumed" "resumed" ;
-lin presume_V = mkV "presume" "presumed" "presumed" ; -- notcompound resume_V ;
-lin consume_V = mkV "consume" "consumed" "consumed" ;
-lin assume_V = mkV "assume" "assumed" "assumed" ;
-lin reassume_V = mkV "reassume" "reassumed" "reassumed" ; -- compound assume_V ;
-lin rhyme_V = mkV "rhyme" "rhymed" "rhymed" ;
-lin cane_V = mkV "cane" "caned" "caned" ;
-lin profane_V = mkV "profane" "profaned" "profaned" ;
-lin plane_V = mkV "plane" "planed" "planed" ;
-lin aquaplane_V = mkV "aquaplane" "aquaplaned" "aquaplaned" ; -- compound plane_V ;
-lin deplane_V = mkV "deplane" "deplaned" "deplaned" ; -- compound plane_V ;
-lin emplane_V = mkV "emplane" "emplaned" "emplaned" ; -- compound plane_V ;
-lin enplane_V = mkV "enplane" "enplaned" "enplaned" ; -- compound plane_V ;
-lin crane_V = mkV "crane" "craned" "craned" ;
-lin wane_V = mkV "wane" "waned" "waned" ;
-lin damascene_V = mkV "damascene" "damascened" "damascened" ;
-lin gangrene_V = mkV "gangrene" "gangrened" "gangrened" ;
-lin contravene_V = mkV "contravene" "contravened" "contravened" ;
-lin convene_V = mkV "convene" "convened" "convened" ;
-lin supervene_V = mkV "supervene" "supervened" "supervened" ;
-lin intervene_V = mkV "intervene" "intervened" "intervened" ;
-lin combine_V = mkV "combine" "combined" "combined" ;
-lin calcine_V = mkV "calcine" "calcined" "calcined" ;
-lin dine_V = mkV "dine" "dined" "dined" ;
-lin seine_V = mkV "seine" "seined" "seined" ;
-lin fine_V = mkV "fine" "fined" "fined" ;
-lin define_V = mkV "define" "defined" "defined" ; -- compound fine_V ;
-lin redefine_V = mkV "redefine" "redefined" "redefined" ; -- compound fine_V ;
-lin refine_V = mkV "refine" "refined" "refined" ; -- compound fine_V ;
-lin confine_V = mkV "confine" "confined" "confined" ; -- compound fine_V ;
-lin imagine_V = mkV "imagine" "imagined" "imagined" ;
-lin machine_V = mkV "machine" "machined" "machined" ;
-lin trephine_V = mkV "trephine" "trephined" "trephined" ;
-lin whine_V = mkV "whine" "whined" "whined" ;
-lin line_V = mkV "line" "lined" "lined" ;
-lin decline_V = mkV "decline" "declined" "declined" ; -- compound line_V ;
-lin recline_V = mkV "recline" "reclined" "reclined" ; -- compound line_V ;
-lin incline_V = mkV "incline" "inclined" "inclined" ; -- compound line_V ;
-lin disincline_V = mkV "disincline" "disinclined" "disinclined" ; -- compound line_V ;
-lin redline_V = mkV "redline" "redlined" "redlined" ; -- compound line_V ;
-lin sideline_V = mkV "sideline" "sidelined" "sidelined" ; -- compound line_V ;
-lin reline_V = mkV "reline" "relined" "relined" ; -- compound line_V ;
-lin streamline_V = mkV "streamline" "streamlined" "streamlined" ; -- compound line_V ;
-lin discipline_V = mkV "discipline" "disciplined" "disciplined" ; -- compound line_V ;
-lin underline_V = mkV "underline" "underlined" "underlined" ; -- compound line_V ;
-lin outline_V = mkV "outline" "outlined" "outlined" ; -- compound line_V ;
-lin mine_V = mkV "mine" "mined" "mined" ;
-lin examine_V = mkV "examine" "examined" "examined" ; -- compound mine_V ;
-lin 're-examine_V' = mkV "re-examine" "re-examined" "re-examined" ; -- compound mine_V ;
-lin 'cross-examine_V' = mkV "cross-examine" "cross-examined" "cross-examined" ; -- compound mine_V ;
-lin reexamine_V = mkV "reexamine" "reexamined" "reexamined" ; -- compound mine_V ;
-lin undermine_V = mkV "undermine" "undermined" "undermined" ; -- compound mine_V ;
-lin determine_V = mkV "determine" "determined" "determined" ; -- compound mine_V ;
-lin predetermine_V = mkV "predetermine" "predetermined" "predetermined" ; -- compound mine_V ;
-lin countermine_V = mkV "countermine" "countermined" "countermined" ; -- compound mine_V ;
-lin illumine_V = mkV "illumine" "illumined" "illumined" ; -- compound mine_V ;
-lin pine_V = mkV "pine" "pined" "pined" ;
-lin repine_V = mkV "repine" "repined" "repined" ; -- compound pine_V ;
-lin opine_V = mkV "opine" "opined" "opined" ; -- notcompound pine_V ;
-lin shrine_V = mkV "shrine" "shrined" "shrined" ;
-lin enshrine_V = mkV "enshrine" "enshrined" "enshrined" ; -- compound shrine_V ;
-lin quarantine_V = mkV "quarantine" "quarantined" "quarantined" ;
-lin guillotine_V = mkV "guillotine" "guillotined" "guillotined" ;
-lin destine_V = mkV "destine" "destined" "destined" ;
-lin predestine_V = mkV "predestine" "predestined" "predestined" ; -- compound destine_V ;
-lin divine_V = mkV "divine" "divined" "divined" ;
-lin wine_V = mkV "wine" "wined" "wined" ;
-lin twine_V = mkV "twine" "twined" "twined" ; -- notcompound wine_V ;
-lin entwine_V = mkV "entwine" "entwined" "entwined" ; -- compound wine_V ;
-lin intertwine_V = mkV "intertwine" "intertwined" "intertwined" ; -- compound wine_V ;
-lin 'over-magazine_V' = mkV "over-magazine" "over-magazined" "over-magazined" ;
-lin bone_V = mkV "bone" "boned" "boned" ;
-lin cone_V = mkV "cone" "coned" "coned" ;
-lin condone_V = mkV "condone" "condoned" "condoned" ;
-lin hone_V = mkV "hone" "honed" "honed" ;
-lin phone_V = mkV "phone" "phoned" "phoned" ; -- notcompound hone_V ;
-lin telephone_V = mkV "telephone" "telephoned" "telephoned" ; -- compound hone_V ;
-lin siphone_V = mkV "siphone" "siphoned" "siphoned" ; -- compound hone_V ;
-lin clone_V = mkV "clone" "cloned" "cloned" ;
-lin postpone_V = mkV "postpone" "postponed" "postponed" ;
-lin drone_V = mkV "drone" "droned" "droned" ;
-lin dethrone_V = mkV "dethrone" "dethroned" "dethroned" ;
-lin enthrone_V = mkV "enthrone" "enthroned" "enthroned" ;
-lin tone_V = mkV "tone" "toned" "toned" ;
-lin atone_V = mkV "atone" "atoned" "atoned" ; -- notcompound tone_V ;
-lin intone_V = mkV "intone" "intoned" "intoned" ; -- compound tone_V ;
-lin stone_V = mkV "stone" "stoned" "stoned" ; -- notcompound tone_V ;
-lin holystone_V = mkV "holystone" "holystoned" "holystoned" ; -- compound tone_V ;
-lin zone_V = mkV "zone" "zoned" "zoned" ;
-lin commune_V = mkV "commune" "communed" "communed" ;
-lin prune_V = mkV "prune" "pruned" "pruned" ;
-lin tune_V = mkV "tune" "tuned" "tuned" ;
-lin importune_V = mkV "importune" "importuned" "importuned" ; -- compound tune_V ;
-lin attune_V = mkV "attune" "attuned" "attuned" ; -- compound tune_V ;
-lin shoe_2_V = mkV "shoe" "shoed" "shoed" ;
-lin canoe_V = mkV "canoe" "canoed" "canoed" ;
-lin shoe_1_V = mkV "shoe" "shoed" "shod" ;
-lin ape_V = mkV "ape" "aped" "aped" ;
-lin landscape_V = mkV "landscape" "landscaped" "landscaped" ; -- compound ape_V ;
-lin escape_V = mkV "escape" "escaped" "escaped" ; -- compound ape_V ;
-lin gape_V = mkV "gape" "gaped" "gaped" ; -- notcompound ape_V ;
-lin shape_V = mkV "shape" "shaped" "shaped" ; -- notcompound ape_V ;
-lin reshape_V = mkV "reshape" "reshaped" "reshaped" ; -- compound ape_V ;
-lin rape_V = mkV "rape" "raped" "raped" ; -- notcompound ape_V ;
-lin scrape_V = mkV "scrape" "scraped" "scraped" ; -- notcompound ape_V ;
-lin drape_V = mkV "drape" "draped" "draped" ; -- notcompound ape_V ;
-lin tape_V = mkV "tape" "taped" "taped" ; -- notcompound ape_V ;
-lin videotape_V = mkV "videotape" "videotaped" "videotaped" ; -- compound ape_V ;
-lin snipe_V = mkV "snipe" "sniped" "sniped" ;
-lin pipe_V = mkV "pipe" "piped" "piped" ;
-lin wipe_V = mkV "wipe" "wiped" "wiped" ;
-lin swipe_V = mkV "swipe" "swiped" "swiped" ; -- notcompound wipe_V ;
-lin cope_V = mkV "cope" "coped" "coped" ;
-lin telescope_V = mkV "telescope" "telescoped" "telescoped" ; -- compound cope_V ;
-lin dope_V = mkV "dope" "doped" "doped" ;
-lin hope_V = mkV "hope" "hoped" "hoped" ;
-lin lope_V = mkV "lope" "loped" "loped" ;
-lin elope_V = mkV "elope" "eloped" "eloped" ; -- notcompound lope_V ;
-lin slope_V = mkV "slope" "sloped" "sloped" ; -- notcompound lope_V ;
-lin mope_V = mkV "mope" "moped" "moped" ;
-lin rope_V = mkV "rope" "roped" "roped" ;
-lin grope_V = mkV "grope" "groped" "groped" ; -- notcompound rope_V ;
-lin tope_V = mkV "tope" "toped" "toped" ;
-lin dupe_V = mkV "dupe" "duped" "duped" ;
-lin hype_V = mkV "hype" "hyped" "hyped" ;
-lin type_V = mkV "type" "typed" "typed" ;
-lin 'touch-type_V' = mkV "touch-type" "touch-typed" "touch-typed" ; -- compound type_V ;
-lin stereotype_V = mkV "stereotype" "stereotyped" "stereotyped" ; -- compound type_V ;
-lin bare_V = mkV "bare" "bared" "bared" ;
-lin care_V = mkV "care" "cared" "cared" ;
-lin scare_V = mkV "scare" "scared" "scared" ; -- notcompound care_V ;
-lin dare_V = mkV "dare" "dared" "dared" ;
-lin fare_V = mkV "fare" "fared" "fared" ;
-lin hare_V = mkV "hare" "hared" "hared" ;
-lin share_V = mkV "share" "shared" "shared" ; -- notcompound hare_V ;
-lin blare_V = mkV "blare" "blared" "blared" ;
-lin declare_V = mkV "declare" "declared" "declared" ;
-lin flare_V = mkV "flare" "flared" "flared" ;
-lin glare_V = mkV "glare" "glared" "glared" ;
-lin snare_V = mkV "snare" "snared" "snared" ;
-lin ensnare_V = mkV "ensnare" "ensnared" "ensnared" ; -- compound snare_V ;
-lin pare_V = mkV "pare" "pared" "pared" ;
-lin prepare_V = mkV "prepare" "prepared" "prepared" ; -- compound pare_V ;
-lin compare_V = mkV "compare" "compared" "compared" ; -- compound pare_V ;
-lin spare_V = mkV "spare" "spared" "spared" ; -- notcompound pare_V ;
-lin stare_V = mkV "stare" "stared" "stared" ;
-lin square_V = mkV "square" "squared" "squared" ;
-lin ware_V = mkV "ware" "wared" "wared" ;
-lin sabre_V = mkV "sabre" "sabred" "sabred" ;
-lin massacre_V = mkV "massacre" "massacred" "massacred" ;
-lin interfere_V = mkV "interfere" "interfered" "interfered" ;
-lin adhere_V = mkV "adhere" "adhered" "adhered" ;
-lin cohere_V = mkV "cohere" "cohered" "cohered" ;
-lin premiere_V = mkV "premiere" "premiered" "premiered" ;
-lin revere_V = mkV "revere" "revered" "revered" ;
-lin persevere_V = mkV "persevere" "persevered" "persevered" ;
-lin fire_V = mkV "fire" "fired" "fired" ;
-lin backfire_V = mkV "backfire" "backfired" "backfired" ; -- compound fire_V ;
-lin misfire_V = mkV "misfire" "misfired" "misfired" ; -- compound fire_V ;
-lin hire_V = mkV "hire" "hired" "hired" ;
-lin mire_V = mkV "mire" "mired" "mired" ;
-lin admire_V = mkV "admire" "admired" "admired" ; -- compound mire_V ;
-lin umpire_V = mkV "umpire" "umpired" "umpired" ;
-lin aspire_V = mkV "aspire" "aspired" "aspired" ;
-lin respire_V = mkV "respire" "respired" "respired" ;
-lin transpire_V = mkV "transpire" "transpired" "transpired" ;
-lin inspire_V = mkV "inspire" "inspired" "inspired" ;
-lin conspire_V = mkV "conspire" "conspired" "conspired" ;
-lin perspire_V = mkV "perspire" "perspired" "perspired" ;
-lin expire_V = mkV "expire" "expired" "expired" ;
-lin sire_V = mkV "sire" "sired" "sired" ;
-lin desire_V = mkV "desire" "desired" "desired" ; -- compound sire_V ;
-lin tire_V = mkV "tire" "tired" "tired" ;
-lin retire_V = mkV "retire" "retired" "retired" ; -- compound tire_V ;
-lin attire_V = mkV "attire" "attired" "attired" ; -- compound tire_V ;
-lin acquire_V = mkV "acquire" "acquired" "acquired" ;
-lin require_V = mkV "require" "required" "required" ;
-lin enquire_V = mkV "enquire" "enquired" "enquired" ;
-lin inquire_V = mkV "inquire" "inquired" "inquired" ;
-lin squire_V = mkV "squire" "squired" "squired" ;
-lin wire_V = mkV "wire" "wired" "wired" ;
-lin rewire_V = mkV "rewire" "rewired" "rewired" ; -- compound wire_V ;
-lin bore_V = mkV "bore" "bored" "bored" ;
-lin core_V = mkV "core" "cored" "cored" ;
-lin encore_V = mkV "encore" "encored" "encored" ; -- compound core_V ;
-lin score_V = mkV "score" "scored" "scored" ; -- notcompound core_V ;
-lin underscore_V = mkV "underscore" "underscored" "underscored" ; -- compound core_V ;
-lin adore_V = mkV "adore" "adored" "adored" ;
-lin gore_V = mkV "gore" "gored" "gored" ;
-lin semaphore_V = mkV "semaphore" "semaphored" "semaphored" ;
-lin shore_V = mkV "shore" "shored" "shored" ;
-lin authore_V = mkV "authore" "authored" "authored" ;
-lin deplore_V = mkV "deplore" "deplored" "deplored" ;
-lin implore_V = mkV "implore" "implored" "implored" ;
-lin explore_V = mkV "explore" "explored" "explored" ;
-lin ignore_V = mkV "ignore" "ignored" "ignored" ;
-lin snore_V = mkV "snore" "snored" "snored" ;
-lin pore_V = mkV "pore" "pored" "pored" ;
-lin tore_V = mkV "tore" "tored" "tored" ;
-lin store_V = mkV "store" "stored" "stored" ; -- notcompound tore_V ;
-lin restore_V = mkV "restore" "restored" "restored" ; -- compound tore_V ;
-lin savore_V = mkV "savore" "savored" "savored" ;
-lin swore_V = mkV "swore" "swored" "swored" ;
-lin reconnoitre_V = mkV "reconnoitre" "reconnoitred" "reconnoitred" ;
-lin centre_V = mkV "centre" "centred" "centred" ;
-lin cure_V = mkV "cure" "cured" "cured" ;
-lin secure_V = mkV "secure" "secured" "secured" ; -- compound cure_V ;
-lin manicure_V = mkV "manicure" "manicured" "manicured" ; -- compound cure_V ;
-lin procure_V = mkV "procure" "procured" "procured" ; -- compound cure_V ;
-lin obscure_V = mkV "obscure" "obscured" "obscured" ; -- compound cure_V ;
-lin endure_V = mkV "endure" "endured" "endured" ;
-lin figure_V = mkV "figure" "figured" "figured" ;
-lin prefigure_V = mkV "prefigure" "prefigured" "prefigured" ; -- compound figure_V ;
-lin configure_V = mkV "configure" "configured" "configured" ; -- compound figure_V ;
-lin disfigure_V = mkV "disfigure" "disfigured" "disfigured" ; -- compound figure_V ;
-lin transfigure_V = mkV "transfigure" "transfigured" "transfigured" ; -- compound figure_V ;
-lin abjure_V = mkV "abjure" "abjured" "abjured" ;
-lin adjure_V = mkV "adjure" "adjured" "adjured" ;
-lin injure_V = mkV "injure" "injured" "injured" ;
-lin conjure_V = mkV "conjure" "conjured" "conjured" ;
-lin perjure_V = mkV "perjure" "perjured" "perjured" ;
-lin lure_V = mkV "lure" "lured" "lured" ;
-lin allure_V = mkV "allure" "allured" "allured" ; -- compound lure_V ;
-lin immure_V = mkV "immure" "immured" "immured" ;
-lin manure_V = mkV "manure" "manured" "manured" ;
-lin inure_V = mkV "inure" "inured" "inured" ;
-lin measure_V = mkV "measure" "measured" "measured" ;
-lin treasure_V = mkV "treasure" "treasured" "treasured" ;
-lin ensure_V = mkV "ensure" "ensured" "ensured" ;
-lin censure_V = mkV "censure" "censured" "censured" ; -- notcompound ensure_V ;
-lin insure_V = mkV "insure" "insured" "insured" ;
-lin 'self-insure_V' = mkV "self-insure" "self-insured" "self-insured" ; -- compound insure_V ;
-lin reinsure_V = mkV "reinsure" "reinsured" "reinsured" ; -- compound insure_V ;
-lin tonsure_V = mkV "tonsure" "tonsured" "tonsured" ;
-lin assure_V = mkV "assure" "assured" "assured" ;
-lin reassure_V = mkV "reassure" "reassured" "reassured" ; -- compound assure_V ;
-lin pressure_V = mkV "pressure" "pressured" "pressured" ;
-lin caricature_V = mkV "caricature" "caricatured" "caricatured" ;
-lin feature_V = mkV "feature" "featured" "featured" ;
-lin mature_V = mkV "mature" "matured" "matured" ;
-lin manufacture_V = mkV "manufacture" "manufactured" "manufactured" ;
-lin fracture_V = mkV "fracture" "fractured" "fractured" ;
-lin conjecture_V = mkV "conjecture" "conjectured" "conjectured" ;
-lin lecture_V = mkV "lecture" "lectured" "lectured" ;
-lin picture_V = mkV "picture" "pictured" "pictured" ;
-lin tincture_V = mkV "tincture" "tinctured" "tinctured" ;
-lin puncture_V = mkV "puncture" "punctured" "punctured" ;
-lin structure_V = mkV "structure" "structured" "structured" ;
-lin restructure_V = mkV "restructure" "restructured" "restructured" ; -- compound structure_V ;
-lin indenture_V = mkV "indenture" "indentured" "indentured" ;
-lin venture_V = mkV "venture" "ventured" "ventured" ;
-lin adventure_V = mkV "adventure" "adventured" "adventured" ; -- compound venture_V ;
-lin capture_V = mkV "capture" "captured" "captured" ;
-lin recapture_V = mkV "recapture" "recaptured" "recaptured" ; -- compound capture_V ;
-lin enrapture_V = mkV "enrapture" "enraptured" "enraptured" ;
-lin sculpture_V = mkV "sculpture" "sculptured" "sculptured" ;
-lin rupture_V = mkV "rupture" "ruptured" "ruptured" ;
-lin torture_V = mkV "torture" "tortured" "tortured" ;
-lin nurture_V = mkV "nurture" "nurtured" "nurtured" ;
-lin pasture_V = mkV "pasture" "pastured" "pastured" ;
-lin gesture_V = mkV "gesture" "gestured" "gestured" ;
-lin vesture_V = mkV "vesture" "vestured" "vestured" ;
-lin posture_V = mkV "posture" "postured" "postured" ;
-lin manoeuvre_V = mkV "manoeuvre" "manoeuvred" "manoeuvred" ;
-lin outmanoeuvre_V = mkV "outmanoeuvre" "outmanoeuvred" "outmanoeuvred" ; -- compound manoeuvre_V ;
-lin compère_V = mkV "compère" "compèred" "compèred" ;
-lin base_V = mkV "base" "based" "based" ;
-lin abase_V = mkV "abase" "abased" "abased" ; -- notcompound base_V ;
-lin debase_V = mkV "debase" "debased" "debased" ; -- compound base_V ;
-lin case_V = mkV "case" "cased" "cased" ;
-lin encase_V = mkV "encase" "encased" "encased" ; -- compound case_V ;
-lin ease_V = mkV "ease" "eased" "eased" ;
-lin cease_V = mkV "cease" "ceased" "ceased" ; -- notcompound ease_V ;
-lin decease_V = mkV "decease" "deceased" "deceased" ; -- compound ease_V ;
-lin predecease_V = mkV "predecease" "predeceased" "predeceased" ; -- compound ease_V ;
-lin lease_V = mkV "lease" "leased" "leased" ; -- notcompound ease_V ;
-lin sublease_V = mkV "sublease" "subleased" "subleased" ; -- compound ease_V ;
-lin release_V = mkV "release" "released" "released" ; -- compound ease_V ;
-lin please_V = mkV "please" "pleased" "pleased" ; -- notcompound ease_V ;
-lin displease_V = mkV "displease" "displeased" "displeased" ; -- compound ease_V ;
-lin appease_V = mkV "appease" "appeased" "appeased" ; -- compound ease_V ;
-lin crease_V = mkV "crease" "creased" "creased" ; -- notcompound ease_V ;
-lin decrease_V = mkV "decrease" "decreased" "decreased" ; -- compound ease_V ;
-lin increase_V = mkV "increase" "increased" "increased" ; -- compound ease_V ;
-lin grease_V = mkV "grease" "greased" "greased" ; -- notcompound ease_V ;
-lin tease_V = mkV "tease" "teased" "teased" ; -- notcompound ease_V ;
-lin chase_V = mkV "chase" "chased" "chased" ;
-lin purchase_V = mkV "purchase" "purchased" "purchased" ; -- compound chase_V ;
-lin repurchase_V = mkV "repurchase" "repurchased" "repurchased" ; -- compound chase_V ;
-lin phase_V = mkV "phase" "phased" "phased" ;
-lin rase_V = mkV "rase" "rased" "rased" ;
-lin erase_V = mkV "erase" "erased" "erased" ; -- notcompound rase_V ;
-lin phrase_V = mkV "phrase" "phrased" "phrased" ; -- notcompound rase_V ;
-lin paraphrase_V = mkV "paraphrase" "paraphrased" "paraphrased" ; -- compound rase_V ;
-lin liaise_V = mkV "liaise" "liaised" "liaised" ;
-lin raise_V = mkV "raise" "raised" "raised" ;
-lin braise_V = mkV "braise" "braised" "braised" ; -- notcompound raise_V ;
-lin praise_V = mkV "praise" "praised" "praised" ; -- notcompound raise_V ;
-lin appraise_V = mkV "appraise" "appraised" "appraised" ; -- compound raise_V ;
-lin reappraise_V = mkV "reappraise" "reappraised" "reappraised" ; -- compound raise_V ;
-lin overpraise_V = mkV "overpraise" "overpraised" "overpraised" ; -- compound raise_V ;
-lin circumcise_V = mkV "circumcise" "circumcised" "circumcised" ;
-lin incise_V = mkV "incise" "incised" "incised" ;
-lin exercise_V = mkV "exercise" "exercised" "exercised" ;
-lin exorcise_V = mkV "exorcise" "exorcised" "exorcised" ;
-lin excise_V = mkV "excise" "excised" "excised" ;
-lin affranchise_V = mkV "affranchise" "affranchised" "affranchised" ;
-lin enfranchise_V = mkV "enfranchise" "enfranchised" "enfranchised" ;
-lin disenfranchise_V = mkV "disenfranchise" "disenfranchised" "disenfranchised" ; -- compound enfranchise_V ;
-lin disfranchise_V = mkV "disfranchise" "disfranchised" "disfranchised" ;
-lin premise_V = mkV "premise" "premised" "premised" ;
-lin promise_V = mkV "promise" "promised" "promised" ;
-lin compromise_V = mkV "compromise" "compromised" "compromised" ; -- compound promise_V ;
-lin surmise_V = mkV "surmise" "surmised" "surmised" ;
-lin organise_V = mkV "organise" "organised" "organised" ;
-lin noise_V = mkV "noise" "noised" "noised" ;
-lin poise_V = mkV "poise" "poised" "poised" ;
-lin counterpoise_V = mkV "counterpoise" "counterpoised" "counterpoised" ; -- compound poise_V ;
-lin despise_V = mkV "despise" "despised" "despised" ;
-lin prise_V = mkV "prise" "prised" "prised" ;
-lin comprise_V = mkV "comprise" "comprised" "comprised" ; -- compound prise_V ;
-lin apprise_V = mkV "apprise" "apprised" "apprised" ; -- compound prise_V ;
-lin surprise_V = mkV "surprise" "surprised" "surprised" ; -- compound prise_V ;
-lin practise_V = mkV "practise" "practised" "practised" ;
-lin advertise_V = mkV "advertise" "advertised" "advertised" ;
-lin mortise_V = mkV "mortise" "mortised" "mortised" ;
-lin chastise_V = mkV "chastise" "chastised" "chastised" ;
-lin disguise_V = mkV "disguise" "disguised" "disguised" ;
-lin bruise_V = mkV "bruise" "bruised" "bruised" ;
-lin cruise_V = mkV "cruise" "cruised" "cruised" ;
-lin advise_V = mkV "advise" "advised" "advised" ;
-lin misadvise_V = mkV "misadvise" "misadvised" "misadvised" ; -- compound advise_V ;
-lin devise_V = mkV "devise" "devised" "devised" ;
-lin televise_V = mkV "televise" "televised" "televised" ;
-lin revise_V = mkV "revise" "revised" "revised" ;
-lin improvise_V = mkV "improvise" "improvised" "improvised" ;
-lin supervise_V = mkV "supervise" "supervised" "supervised" ;
-lin wise_V = mkV "wise" "wised" "wised" ;
-lin pulse_V = mkV "pulse" "pulsed" "pulsed" ;
-lin repulse_V = mkV "repulse" "repulsed" "repulsed" ; -- compound pulse_V ;
-lin convulse_V = mkV "convulse" "convulsed" "convulsed" ;
-lin cleanse_V = mkV "cleanse" "cleansed" "cleansed" ;
-lin license_V = mkV "license" "licensed" "licensed" ;
-lin incense_V = mkV "incense" "incensed" "incensed" ;
-lin condense_V = mkV "condense" "condensed" "condensed" ;
-lin recompense_V = mkV "recompense" "recompensed" "recompensed" ;
-lin dispense_V = mkV "dispense" "dispensed" "dispensed" ;
-lin sense_V = mkV "sense" "sensed" "sensed" ;
-lin tense_V = mkV "tense" "tensed" "tensed" ;
-lin rinse_V = mkV "rinse" "rinsed" "rinsed" ;
-lin dose_V = mkV "dose" "dosed" "dosed" ;
-lin overdose_V = mkV "overdose" "overdosed" "overdosed" ; -- compound dose_V ;
-lin hose_V = mkV "hose" "hosed" "hosed" ;
-lin metamorphose_V = mkV "metamorphose" "metamorphosed" "metamorphosed" ; -- compound hose_V ;
-lin lose_1_V = mkV "lose" "losed" "losed" ;
-lin close_V = mkV "close" "closed" "closed" ; -- notcompound lose_1_V ;
-lin foreclose_V = mkV "foreclose" "foreclosed" "foreclosed" ; -- compound lose_1_V ;
-lin enclose_V = mkV "enclose" "enclosed" "enclosed" ; -- compound lose_1_V ;
-lin inclose_V = mkV "inclose" "inclosed" "inclosed" ; -- compound lose_1_V ;
-lin disclose_V = mkV "disclose" "disclosed" "disclosed" ; -- compound lose_1_V ;
-lin nose_V = mkV "nose" "nosed" "nosed" ;
-lin diagnose_V = mkV "diagnose" "diagnosed" "diagnosed" ; -- compound nose_V ;
-lin loose_V = mkV "loose" "loosed" "loosed" ;
-lin unloose_V = mkV "unloose" "unloosed" "unloosed" ; -- compound loose_V ;
-lin vamoose_V = mkV "vamoose" "vamoosed" "vamoosed" ;
-lin noose_V = mkV "noose" "noosed" "noosed" ;
-lin pose_V = mkV "pose" "posed" "posed" ;
-lin juxtapose_V = mkV "juxtapose" "juxtaposed" "juxtaposed" ; -- compound pose_V ;
-lin depose_V = mkV "depose" "deposed" "deposed" ; -- compound pose_V ;
-lin repose_V = mkV "repose" "reposed" "reposed" ; -- compound pose_V ;
-lin impose_V = mkV "impose" "imposed" "imposed" ; -- compound pose_V ;
-lin reimpose_V = mkV "reimpose" "reimposed" "reimposed" ; -- compound pose_V ;
-lin superimpose_V = mkV "superimpose" "superimposed" "superimposed" ; -- compound pose_V ;
-lin compose_V = mkV "compose" "composed" "composed" ; -- compound pose_V ;
-lin decompose_V = mkV "decompose" "decomposed" "decomposed" ; -- compound pose_V ;
-lin discompose_V = mkV "discompose" "discomposed" "discomposed" ; -- compound pose_V ;
-lin propose_V = mkV "propose" "proposed" "proposed" ; -- compound pose_V ;
-lin oppose_V = mkV "oppose" "opposed" "opposed" ; -- compound pose_V ;
-lin suppose_V = mkV "suppose" "supposed" "supposed" ; -- compound pose_V ;
-lin presuppose_V = mkV "presuppose" "presupposed" "presupposed" ; -- compound pose_V ;
-lin interpose_V = mkV "interpose" "interposed" "interposed" ; -- compound pose_V ;
-lin purpose_V = mkV "purpose" "purposed" "purposed" ; -- compound pose_V ;
-lin dispose_V = mkV "dispose" "disposed" "disposed" ; -- compound pose_V ;
-lin predispose_V = mkV "predispose" "predisposed" "predisposed" ; -- compound pose_V ;
-lin transpose_V = mkV "transpose" "transposed" "transposed" ; -- compound pose_V ;
-lin expose_V = mkV "expose" "exposed" "exposed" ; -- compound pose_V ;
-lin underexpose_V = mkV "underexpose" "underexposed" "underexposed" ; -- compound pose_V ;
-lin overexpose_V = mkV "overexpose" "overexposed" "overexposed" ; -- compound pose_V ;
-lin rose_V = mkV "rose" "rosed" "rosed" ;
-lin arose_V = mkV "arose" "arosed" "arosed" ; -- notcompound rose_V ;
-lin lapse_V = mkV "lapse" "lapsed" "lapsed" ;
-lin elapse_V = mkV "elapse" "elapsed" "elapsed" ; -- notcompound lapse_V ;
-lin relapse_V = mkV "relapse" "relapsed" "relapsed" ; -- compound lapse_V ;
-lin collapse_V = mkV "collapse" "collapsed" "collapsed" ; -- compound lapse_V ;
-lin prolapse_V = mkV "prolapse" "prolapsed" "prolapsed" ; -- compound lapse_V ;
-lin traipse_V = mkV "traipse" "traipsed" "traipsed" ;
-lin eclipse_V = mkV "eclipse" "eclipsed" "eclipsed" ;
-lin glimpse_V = mkV "glimpse" "glimpsed" "glimpsed" ;
-lin rehearse_V = mkV "rehearse" "rehearsed" "rehearsed" ;
-lin parse_V = mkV "parse" "parsed" "parsed" ;
-lin immerse_V = mkV "immerse" "immersed" "immersed" ;
-lin asperse_V = mkV "asperse" "aspersed" "aspersed" ;
-lin disperse_V = mkV "disperse" "dispersed" "dispersed" ;
-lin intersperse_V = mkV "intersperse" "interspersed" "interspersed" ;
-lin traverse_V = mkV "traverse" "traversed" "traversed" ;
-lin reverse_V = mkV "reverse" "reversed" "reversed" ;
-lin converse_V = mkV "converse" "conversed" "conversed" ;
-lin endorse_V = mkV "endorse" "endorsed" "endorsed" ;
-lin indorse_V = mkV "indorse" "indorsed" "indorsed" ;
-lin horse_V = mkV "horse" "horsed" "horsed" ;
-lin unhorse_V = mkV "unhorse" "unhorsed" "unhorsed" ; -- compound horse_V ;
-lin reimburse_V = mkV "reimburse" "reimbursed" "reimbursed" ;
-lin disburse_V = mkV "disburse" "disbursed" "disbursed" ;
-lin curse_V = mkV "curse" "cursed" "cursed" ;
-lin nurse_V = mkV "nurse" "nursed" "nursed" ;
-lin course_V = mkV "course" "coursed" "coursed" ;
-lin discourse_V = mkV "discourse" "discoursed" "discoursed" ; -- compound course_V ;
-lin purse_V = mkV "purse" "pursed" "pursed" ;
-lin finesse_V = mkV "finesse" "finessed" "finessed" ;
-lin use_V = mkV "use" "used" "used" ;
-lin 'ill-use_V' = mkV "ill-use" "ill-used" "ill-used" ; -- compound use_V ;
-lin cause_V = mkV "cause" "caused" "caused" ; -- compound use_V ;
-lin pause_V = mkV "pause" "paused" "paused" ; -- compound use_V ;
-lin abuse_V = mkV "abuse" "abused" "abused" ; -- compound use_V ;
-lin disabuse_V = mkV "disabuse" "disabused" "disabused" ; -- compound use_V ;
-lin accuse_V = mkV "accuse" "accused" "accused" ; -- compound use_V ;
-lin excuse_V = mkV "excuse" "excused" "excused" ; -- compound use_V ;
-lin fuse_V = mkV "fuse" "fused" "fused" ; -- notcompound use_V ;
-lin defuse_V = mkV "defuse" "defused" "defused" ; -- compound use_V ;
-lin refuse_V = mkV "refuse" "refused" "refused" ; -- compound use_V ;
-lin diffuse_V = mkV "diffuse" "diffused" "diffused" ; -- compound use_V ;
-lin suffuse_V = mkV "suffuse" "suffused" "suffused" ; -- compound use_V ;
-lin infuse_V = mkV "infuse" "infused" "infused" ; -- compound use_V ;
-lin confuse_V = mkV "confuse" "confused" "confused" ; -- compound use_V ;
-lin transfuse_V = mkV "transfuse" "transfused" "transfused" ; -- compound use_V ;
-lin enthuse_V = mkV "enthuse" "enthused" "enthused" ; -- compound use_V ;
-lin muse_V = mkV "muse" "mused" "mused" ; -- notcompound use_V ;
-lin amuse_V = mkV "amuse" "amused" "amused" ; -- compound use_V ;
-lin douse_V = mkV "douse" "doused" "doused" ; -- compound use_V ;
-lin house_V = mkV "house" "housed" "housed" ; -- compound use_V ;
-lin 'rough-house_V' = mkV "rough-house" "rough-housed" "rough-housed" ; -- compound use_V ;
-lin rehouse_V = mkV "rehouse" "rehoused" "rehoused" ; -- compound use_V ;
-lin delouse_V = mkV "delouse" "deloused" "deloused" ; -- compound use_V ;
-lin mouse_V = mkV "mouse" "moused" "moused" ; -- compound use_V ;
-lin espouse_V = mkV "espouse" "espoused" "espoused" ; -- compound use_V ;
-lin rouse_V = mkV "rouse" "roused" "roused" ; -- compound use_V ;
-lin arouse_V = mkV "arouse" "aroused" "aroused" ; -- compound use_V ;
-lin carouse_V = mkV "carouse" "caroused" "caroused" ; -- compound use_V ;
-lin grouse_V = mkV "grouse" "groused" "groused" ; -- compound use_V ;
-lin souse_V = mkV "souse" "soused" "soused" ; -- compound use_V ;
-lin rendezvouse_V = mkV "rendezvouse" "rendezvoused" "rendezvoused" ; -- compound use_V ;
-lin peruse_V = mkV "peruse" "perused" "perused" ; -- compound use_V ;
-lin misuse_V = mkV "misuse" "misused" "misused" ; -- compound use_V ;
-lin contuse_V = mkV "contuse" "contused" "contused" ; -- compound use_V ;
-lin dowse_V = mkV "dowse" "dowsed" "dowsed" ;
-lin browse_V = mkV "browse" "browsed" "browsed" ;
-lin drowse_V = mkV "drowse" "drowsed" "drowsed" ;
-lin analyse_V = mkV "analyse" "analysed" "analysed" ;
-lin psychoanalyse_V = mkV "psychoanalyse" "psychoanalysed" "psychoanalysed" ; -- compound analyse_V ;
-lin paralyse_V = mkV "paralyse" "paralysed" "paralysed" ;
-lin bate_V = mkV "bate" "bated" "bated" ;
-lin abate_V = mkV "abate" "abated" "abated" ; -- notcompound bate_V ;
-lin debate_V = mkV "debate" "debated" "debated" ; -- compound bate_V ;
-lin probate_V = mkV "probate" "probated" "probated" ; -- compound bate_V ;
-lin reprobate_V = mkV "reprobate" "reprobated" "reprobated" ; -- compound bate_V ;
-lin exacerbate_V = mkV "exacerbate" "exacerbated" "exacerbated" ; -- compound bate_V ;
-lin masturbate_V = mkV "masturbate" "masturbated" "masturbated" ; -- compound bate_V ;
-lin incubate_V = mkV "incubate" "incubated" "incubated" ; -- compound bate_V ;
-lin placate_V = mkV "placate" "placated" "placated" ;
-lin vacate_V = mkV "vacate" "vacated" "vacated" ;
-lin desiccate_V = mkV "desiccate" "desiccated" "desiccated" ;
-lin defecate_V = mkV "defecate" "defecated" "defecated" ;
-lin hypothecate_V = mkV "hypothecate" "hypothecated" "hypothecated" ;
-lin deprecate_V = mkV "deprecate" "deprecated" "deprecated" ;
-lin imprecate_V = mkV "imprecate" "imprecated" "imprecated" ;
-lin syllabicate_V = mkV "syllabicate" "syllabicated" "syllabicated" ;
-lin eradicate_V = mkV "eradicate" "eradicated" "eradicated" ;
-lin abdicate_V = mkV "abdicate" "abdicated" "abdicated" ;
-lin dedicate_V = mkV "dedicate" "dedicated" "dedicated" ;
-lin medicate_V = mkV "medicate" "medicated" "medicated" ;
-lin predicate_V = mkV "predicate" "predicated" "predicated" ;
-lin indicate_V = mkV "indicate" "indicated" "indicated" ;
-lin vindicate_V = mkV "vindicate" "vindicated" "vindicated" ; -- notcompound indicate_V ;
-lin syndicate_V = mkV "syndicate" "syndicated" "syndicated" ;
-lin adjudicate_V = mkV "adjudicate" "adjudicated" "adjudicated" ;
-lin pontificate_V = mkV "pontificate" "pontificated" "pontificated" ;
-lin certificate_V = mkV "certificate" "certificated" "certificated" ;
-lin replicate_V = mkV "replicate" "replicated" "replicated" ;
-lin triplicate_V = mkV "triplicate" "triplicated" "triplicated" ;
-lin implicate_V = mkV "implicate" "implicated" "implicated" ;
-lin complicate_V = mkV "complicate" "complicated" "complicated" ;
-lin supplicate_V = mkV "supplicate" "supplicated" "supplicated" ;
-lin duplicate_V = mkV "duplicate" "duplicated" "duplicated" ;
-lin reduplicate_V = mkV "reduplicate" "reduplicated" "reduplicated" ; -- compound duplicate_V ;
-lin quadruplicate_V = mkV "quadruplicate" "quadruplicated" "quadruplicated" ;
-lin explicate_V = mkV "explicate" "explicated" "explicated" ;
-lin fornicate_V = mkV "fornicate" "fornicated" "fornicated" ;
-lin communicate_V = mkV "communicate" "communicated" "communicated" ;
-lin intercommunicate_V = mkV "intercommunicate" "intercommunicated" "intercommunicated" ; -- compound communicate_V ;
-lin excommunicate_V = mkV "excommunicate" "excommunicated" "excommunicated" ; -- compound communicate_V ;
-lin prevaricate_V = mkV "prevaricate" "prevaricated" "prevaricated" ;
-lin fabricate_V = mkV "fabricate" "fabricated" "fabricated" ;
-lin prefabricate_V = mkV "prefabricate" "prefabricated" "prefabricated" ; -- compound fabricate_V ;
-lin lubricate_V = mkV "lubricate" "lubricated" "lubricated" ;
-lin extricate_V = mkV "extricate" "extricated" "extricated" ;
-lin authenticate_V = mkV "authenticate" "authenticated" "authenticated" ;
-lin masticate_V = mkV "masticate" "masticated" "masticated" ;
-lin domesticate_V = mkV "domesticate" "domesticated" "domesticated" ;
-lin prognosticate_V = mkV "prognosticate" "prognosticated" "prognosticated" ;
-lin rusticate_V = mkV "rusticate" "rusticated" "rusticated" ;
-lin intoxicate_V = mkV "intoxicate" "intoxicated" "intoxicated" ;
-lin inculcate_V = mkV "inculcate" "inculcated" "inculcated" ;
-lin truncate_V = mkV "truncate" "truncated" "truncated" ;
-lin suffocate_V = mkV "suffocate" "suffocated" "suffocated" ;
-lin locate_V = mkV "locate" "located" "located" ;
-lin relocate_V = mkV "relocate" "relocated" "relocated" ; -- compound locate_V ;
-lin allocate_V = mkV "allocate" "allocated" "allocated" ; -- compound locate_V ;
-lin collocate_V = mkV "collocate" "collocated" "collocated" ; -- compound locate_V ;
-lin dislocate_V = mkV "dislocate" "dislocated" "dislocated" ; -- compound locate_V ;
-lin reciprocate_V = mkV "reciprocate" "reciprocated" "reciprocated" ;
-lin advocate_V = mkV "advocate" "advocated" "advocated" ;
-lin demarcate_V = mkV "demarcate" "demarcated" "demarcated" ;
-lin bifurcate_V = mkV "bifurcate" "bifurcated" "bifurcated" ;
-lin confiscate_V = mkV "confiscate" "confiscated" "confiscated" ;
-lin obfuscate_V = mkV "obfuscate" "obfuscated" "obfuscated" ;
-lin coruscate_V = mkV "coruscate" "coruscated" "coruscated" ;
-lin educate_V = mkV "educate" "educated" "educated" ;
-lin date_V = mkV "date" "dated" "dated" ;
-lin predate_V = mkV "predate" "predated" "predated" ; -- compound date_V ;
-lin sedate_V = mkV "sedate" "sedated" "sedated" ; -- compound date_V ;
-lin antedate_V = mkV "antedate" "antedated" "antedated" ; -- compound date_V ;
-lin elucidate_V = mkV "elucidate" "elucidated" "elucidated" ; -- compound date_V ;
-lin validate_V = mkV "validate" "validated" "validated" ; -- compound date_V ;
-lin invalidate_V = mkV "invalidate" "invalidated" "invalidated" ; -- compound date_V ;
-lin consolidate_V = mkV "consolidate" "consolidated" "consolidated" ; -- compound date_V ;
-lin intimidate_V = mkV "intimidate" "intimidated" "intimidated" ; -- compound date_V ;
-lin fluoridate_V = mkV "fluoridate" "fluoridated" "fluoridated" ; -- compound date_V ;
-lin liquidate_V = mkV "liquidate" "liquidated" "liquidated" ; -- compound date_V ;
-lin backdate_V = mkV "backdate" "backdated" "backdated" ; -- compound date_V ;
-lin mandate_V = mkV "mandate" "mandated" "mandated" ; -- compound date_V ;
-lin inundate_V = mkV "inundate" "inundated" "inundated" ; -- compound date_V ;
-lin accommodate_V = mkV "accommodate" "accommodated" "accommodated" ; -- compound date_V ;
-lin update_V = mkV "update" "updated" "updated" ; -- compound date_V ;
-lin misdate_V = mkV "misdate" "misdated" "misdated" ; -- compound date_V ;
-lin postdate_V = mkV "postdate" "postdated" "postdated" ; -- compound date_V ;
-lin permeate_V = mkV "permeate" "permeated" "permeated" ;
-lin delineate_V = mkV "delineate" "delineated" "delineated" ;
-lin create_V = mkV "create" "created" "created" ;
-lin 're-create_V' = mkV "re-create" "re-created" "re-created" ; -- compound create_V ;
-lin recreate_V = mkV "recreate" "recreated" "recreated" ; -- compound create_V ;
-lin procreate_V = mkV "procreate" "procreated" "procreated" ; -- compound create_V ;
-lin nauseate_V = mkV "nauseate" "nauseated" "nauseated" ;
-lin fate_V = mkV "fate" "fated" "fated" ;
-lin gate_V = mkV "gate" "gated" "gated" ;
-lin propagate_V = mkV "propagate" "propagated" "propagated" ; -- compound gate_V ;
-lin divagate_V = mkV "divagate" "divagated" "divagated" ; -- compound gate_V ;
-lin delegate_V = mkV "delegate" "delegated" "delegated" ; -- compound gate_V ;
-lin relegate_V = mkV "relegate" "relegated" "relegated" ; -- compound gate_V ;
-lin negate_V = mkV "negate" "negated" "negated" ; -- compound gate_V ;
-lin segregate_V = mkV "segregate" "segregated" "segregated" ; -- compound gate_V ;
-lin desegregate_V = mkV "desegregate" "desegregated" "desegregated" ; -- compound gate_V ;
-lin aggregate_V = mkV "aggregate" "aggregated" "aggregated" ; -- compound gate_V ;
-lin congregate_V = mkV "congregate" "congregated" "congregated" ; -- compound gate_V ;
-lin obligate_V = mkV "obligate" "obligated" "obligated" ; -- compound gate_V ;
-lin fumigate_V = mkV "fumigate" "fumigated" "fumigated" ; -- compound gate_V ;
-lin irrigate_V = mkV "irrigate" "irrigated" "irrigated" ; -- compound gate_V ;
-lin litigate_V = mkV "litigate" "litigated" "litigated" ; -- compound gate_V ;
-lin mitigate_V = mkV "mitigate" "mitigated" "mitigated" ; -- compound gate_V ;
-lin castigate_V = mkV "castigate" "castigated" "castigated" ; -- compound gate_V ;
-lin investigate_V = mkV "investigate" "investigated" "investigated" ; -- compound gate_V ;
-lin instigate_V = mkV "instigate" "instigated" "instigated" ; -- compound gate_V ;
-lin navigate_V = mkV "navigate" "navigated" "navigated" ; -- compound gate_V ;
-lin circumnavigate_V = mkV "circumnavigate" "circumnavigated" "circumnavigated" ; -- compound gate_V ;
-lin promulgate_V = mkV "promulgate" "promulgated" "promulgated" ; -- compound gate_V ;
-lin elongate_V = mkV "elongate" "elongated" "elongated" ; -- compound gate_V ;
-lin abrogate_V = mkV "abrogate" "abrogated" "abrogated" ; -- compound gate_V ;
-lin derogate_V = mkV "derogate" "derogated" "derogated" ; -- compound gate_V ;
-lin arrogate_V = mkV "arrogate" "arrogated" "arrogated" ; -- compound gate_V ;
-lin interrogate_V = mkV "interrogate" "interrogated" "interrogated" ; -- compound gate_V ;
-lin objurgate_V = mkV "objurgate" "objurgated" "objurgated" ; -- compound gate_V ;
-lin expurgate_V = mkV "expurgate" "expurgated" "expurgated" ; -- compound gate_V ;
-lin subjugate_V = mkV "subjugate" "subjugated" "subjugated" ; -- compound gate_V ;
-lin conjugate_V = mkV "conjugate" "conjugated" "conjugated" ; -- compound gate_V ;
-lin corrugate_V = mkV "corrugate" "corrugated" "corrugated" ; -- compound gate_V ;
-lin hate_V = mkV "hate" "hated" "hated" ;
-lin emaciate_V = mkV "emaciate" "emaciated" "emaciated" ;
-lin syndciate_V = mkV "syndciate" "syndciated" "syndciated" ;
-lin depreciate_V = mkV "depreciate" "depreciated" "depreciated" ;
-lin appreciate_V = mkV "appreciate" "appreciated" "appreciated" ;
-lin officiate_V = mkV "officiate" "officiated" "officiated" ;
-lin enunciate_V = mkV "enunciate" "enunciated" "enunciated" ;
-lin annunciate_V = mkV "annunciate" "annunciated" "annunciated" ;
-lin associate_V = mkV "associate" "associated" "associated" ;
-lin disassociate_V = mkV "disassociate" "disassociated" "disassociated" ; -- compound associate_V ;
-lin dissociate_V = mkV "dissociate" "dissociated" "dissociated" ;
-lin radiate_V = mkV "radiate" "radiated" "radiated" ;
-lin irradiate_V = mkV "irradiate" "irradiated" "irradiated" ; -- compound radiate_V ;
-lin mediate_V = mkV "mediate" "mediated" "mediated" ;
-lin repudiate_V = mkV "repudiate" "repudiated" "repudiated" ;
-lin retaliate_V = mkV "retaliate" "retaliated" "retaliated" ;
-lin conciliate_V = mkV "conciliate" "conciliated" "conciliated" ;
-lin affiliate_V = mkV "affiliate" "affiliated" "affiliated" ;
-lin humiliate_V = mkV "humiliate" "humiliated" "humiliated" ;
-lin palliate_V = mkV "palliate" "palliated" "palliated" ;
-lin defoliate_V = mkV "defoliate" "defoliated" "defoliated" ;
-lin calumniate_V = mkV "calumniate" "calumniated" "calumniated" ;
-lin expiate_V = mkV "expiate" "expiated" "expiated" ;
-lin inebriate_V = mkV "inebriate" "inebriated" "inebriated" ;
-lin excoriate_V = mkV "excoriate" "excoriated" "excoriated" ;
-lin appropriate_V = mkV "appropriate" "appropriated" "appropriated" ;
-lin misappropriate_V = mkV "misappropriate" "misappropriated" "misappropriated" ; -- compound appropriate_V ;
-lin expropriate_V = mkV "expropriate" "expropriated" "expropriated" ;
-lin repatriate_V = mkV "repatriate" "repatriated" "repatriated" ;
-lin expatriate_V = mkV "expatriate" "expatriated" "expatriated" ;
-lin infuriate_V = mkV "infuriate" "infuriated" "infuriated" ;
-lin luxuriate_V = mkV "luxuriate" "luxuriated" "luxuriated" ;
-lin expatiate_V = mkV "expatiate" "expatiated" "expatiated" ;
-lin ingratiate_V = mkV "ingratiate" "ingratiated" "ingratiated" ;
-lin satiate_V = mkV "satiate" "satiated" "satiated" ;
-lin initiate_V = mkV "initiate" "initiated" "initiated" ;
-lin propitiate_V = mkV "propitiate" "propitiated" "propitiated" ;
-lin vitiate_V = mkV "vitiate" "vitiated" "vitiated" ;
-lin substantiate_V = mkV "substantiate" "substantiated" "substantiated" ;
-lin differentiate_V = mkV "differentiate" "differentiated" "differentiated" ;
-lin negotiate_V = mkV "negotiate" "negotiated" "negotiated" ;
-lin renegotiate_V = mkV "renegotiate" "renegotiated" "renegotiated" ; -- compound negotiate_V ;
-lin obviate_V = mkV "obviate" "obviated" "obviated" ;
-lin deviate_V = mkV "deviate" "deviated" "deviated" ;
-lin alleviate_V = mkV "alleviate" "alleviated" "alleviated" ;
-lin abbreviate_V = mkV "abbreviate" "abbreviated" "abbreviated" ;
-lin asphyxiate_V = mkV "asphyxiate" "asphyxiated" "asphyxiated" ;
-lin skate_V = mkV "skate" "skated" "skated" ;
-lin 'ice-skate_V' = mkV "ice-skate" "ice-skated" "ice-skated" ; -- compound skate_V ;
-lin escalate_V = mkV "escalate" "escalated" "escalated" ;
-lin 'de-escalate_V' = mkV "de-escalate" "de-escalated" "de-escalated" ; -- compound escalate_V ;
-lin elate_V = mkV "elate" "elated" "elated" ;
-lin relate_V = mkV "relate" "related" "related" ; -- notcompound elate_V ;
-lin interrelate_V = mkV "interrelate" "interrelated" "interrelated" ; -- compound elate_V ;
-lin correlate_V = mkV "correlate" "correlated" "correlated" ; -- compound elate_V ;
-lin deflate_V = mkV "deflate" "deflated" "deflated" ;
-lin reflate_V = mkV "reflate" "reflated" "reflated" ;
-lin inflate_V = mkV "inflate" "inflated" "inflated" ;
-lin dilate_V = mkV "dilate" "dilated" "dilated" ;
-lin invigilate_V = mkV "invigilate" "invigilated" "invigilated" ;
-lin annihilate_V = mkV "annihilate" "annihilated" "annihilated" ;
-lin assimilate_V = mkV "assimilate" "assimilated" "assimilated" ;
-lin ventilate_V = mkV "ventilate" "ventilated" "ventilated" ;
-lin mutilate_V = mkV "mutilate" "mutilated" "mutilated" ;
-lin flagellate_V = mkV "flagellate" "flagellated" "flagellated" ;
-lin interpellate_V = mkV "interpellate" "interpellated" "interpellated" ;
-lin vacillate_V = mkV "vacillate" "vacillated" "vacillated" ;
-lin oscillate_V = mkV "oscillate" "oscillated" "oscillated" ;
-lin titillate_V = mkV "titillate" "titillated" "titillated" ;
-lin scintillate_V = mkV "scintillate" "scintillated" "scintillated" ;
-lin collate_V = mkV "collate" "collated" "collated" ;
-lin percolate_V = mkV "percolate" "percolated" "percolated" ;
-lin violate_V = mkV "violate" "violated" "violated" ;
-lin immolate_V = mkV "immolate" "immolated" "immolated" ;
-lin interpolate_V = mkV "interpolate" "interpolated" "interpolated" ;
-lin desolate_V = mkV "desolate" "desolated" "desolated" ;
-lin isolate_V = mkV "isolate" "isolated" "isolated" ;
-lin plate_V = mkV "plate" "plated" "plated" ;
-lin contemplate_V = mkV "contemplate" "contemplated" "contemplated" ; -- compound plate_V ;
-lin electroplate_V = mkV "electroplate" "electroplated" "electroplated" ; -- compound plate_V ;
-lin slate_V = mkV "slate" "slated" "slated" ;
-lin legislate_V = mkV "legislate" "legislated" "legislated" ; -- compound slate_V ;
-lin translate_V = mkV "translate" "translated" "translated" ; -- compound slate_V ;
-lin mistranslate_V = mkV "mistranslate" "mistranslated" "mistranslated" ; -- compound slate_V ;
-lin confabulate_V = mkV "confabulate" "confabulated" "confabulated" ;
-lin tabulate_V = mkV "tabulate" "tabulated" "tabulated" ;
-lin perambulate_V = mkV "perambulate" "perambulated" "perambulated" ;
-lin ejaculate_V = mkV "ejaculate" "ejaculated" "ejaculated" ;
-lin peculate_V = mkV "peculate" "peculated" "peculated" ;
-lin speculate_V = mkV "speculate" "speculated" "speculated" ; -- notcompound peculate_V ;
-lin matriculate_V = mkV "matriculate" "matriculated" "matriculated" ;
-lin reticulate_V = mkV "reticulate" "reticulated" "reticulated" ;
-lin articulate_V = mkV "articulate" "articulated" "articulated" ;
-lin gesticulate_V = mkV "gesticulate" "gesticulated" "gesticulated" ;
-lin calculate_V = mkV "calculate" "calculated" "calculated" ;
-lin recalculate_V = mkV "recalculate" "recalculated" "recalculated" ; -- compound calculate_V ;
-lin miscalculate_V = mkV "miscalculate" "miscalculated" "miscalculated" ; -- compound calculate_V ;
-lin inoculate_V = mkV "inoculate" "inoculated" "inoculated" ;
-lin circulate_V = mkV "circulate" "circulated" "circulated" ;
-lin emasculate_V = mkV "emasculate" "emasculated" "emasculated" ;
-lin stridulate_V = mkV "stridulate" "stridulated" "stridulated" ;
-lin undulate_V = mkV "undulate" "undulated" "undulated" ;
-lin modulate_V = mkV "modulate" "modulated" "modulated" ;
-lin coagulate_V = mkV "coagulate" "coagulated" "coagulated" ;
-lin regulate_V = mkV "regulate" "regulated" "regulated" ;
-lin deregulate_V = mkV "deregulate" "deregulated" "deregulated" ; -- compound regulate_V ;
-lin pullulate_V = mkV "pullulate" "pullulated" "pullulated" ;
-lin ululate_V = mkV "ululate" "ululated" "ululated" ;
-lin emulate_V = mkV "emulate" "emulated" "emulated" ;
-lin simulate_V = mkV "simulate" "simulated" "simulated" ;
-lin dissimulate_V = mkV "dissimulate" "dissimulated" "dissimulated" ; -- compound simulate_V ;
-lin stimulate_V = mkV "stimulate" "stimulated" "stimulated" ;
-lin formulate_V = mkV "formulate" "formulated" "formulated" ;
-lin reformulate_V = mkV "reformulate" "reformulated" "reformulated" ; -- compound formulate_V ;
-lin accumulate_V = mkV "accumulate" "accumulated" "accumulated" ;
-lin granulate_V = mkV "granulate" "granulated" "granulated" ;
-lin manipulate_V = mkV "manipulate" "manipulated" "manipulated" ;
-lin stipulate_V = mkV "stipulate" "stipulated" "stipulated" ;
-lin copulate_V = mkV "copulate" "copulated" "copulated" ;
-lin populate_V = mkV "populate" "populated" "populated" ;
-lin depopulate_V = mkV "depopulate" "depopulated" "depopulated" ; -- compound populate_V ;
-lin insulate_V = mkV "insulate" "insulated" "insulated" ;
-lin congratulate_V = mkV "congratulate" "congratulated" "congratulated" ;
-lin capitulate_V = mkV "capitulate" "capitulated" "capitulated" ;
-lin recapitulate_V = mkV "recapitulate" "recapitulated" "recapitulated" ; -- compound capitulate_V ;
-lin postulate_V = mkV "postulate" "postulated" "postulated" ;
-lin expostulate_V = mkV "expostulate" "expostulated" "expostulated" ; -- compound postulate_V ;
-lin mate_V = mkV "mate" "mated" "mated" ;
-lin amalgamate_V = mkV "amalgamate" "amalgamated" "amalgamated" ; -- compound mate_V ;
-lin stalemate_V = mkV "stalemate" "stalemated" "stalemated" ; -- compound mate_V ;
-lin cremate_V = mkV "cremate" "cremated" "cremated" ; -- compound mate_V ;
-lin decimate_V = mkV "decimate" "decimated" "decimated" ; -- compound mate_V ;
-lin sublimate_V = mkV "sublimate" "sublimated" "sublimated" ; -- compound mate_V ;
-lin acclimate_V = mkV "acclimate" "acclimated" "acclimated" ; -- compound mate_V ;
-lin animate_V = mkV "animate" "animated" "animated" ; -- compound mate_V ;
-lin reanimate_V = mkV "reanimate" "reanimated" "reanimated" ; -- compound mate_V ;
-lin intimate_V = mkV "intimate" "intimated" "intimated" ; -- compound mate_V ;
-lin estimate_V = mkV "estimate" "estimated" "estimated" ; -- compound mate_V ;
-lin underestimate_V = mkV "underestimate" "underestimated" "underestimated" ; -- compound mate_V ;
-lin overestimate_V = mkV "overestimate" "overestimated" "overestimated" ; -- compound mate_V ;
-lin approximate_V = mkV "approximate" "approximated" "approximated" ; -- compound mate_V ;
-lin checkmate_V = mkV "checkmate" "checkmated" "checkmated" ; -- compound mate_V ;
-lin consummate_V = mkV "consummate" "consummated" "consummated" ; -- compound mate_V ;
-lin automate_V = mkV "automate" "automated" "automated" ; -- compound mate_V ;
-lin emanate_V = mkV "emanate" "emanated" "emanated" ;
-lin oxygenate_V = mkV "oxygenate" "oxygenated" "oxygenated" ;
-lin hyphenate_V = mkV "hyphenate" "hyphenated" "hyphenated" ;
-lin alienate_V = mkV "alienate" "alienated" "alienated" ;
-lin rejuvenate_V = mkV "rejuvenate" "rejuvenated" "rejuvenated" ;
-lin stagnate_V = mkV "stagnate" "stagnated" "stagnated" ;
-lin impregnate_V = mkV "impregnate" "impregnated" "impregnated" ;
-lin designate_V = mkV "designate" "designated" "designated" ;
-lin vaccinate_V = mkV "vaccinate" "vaccinated" "vaccinated" ;
-lin fascinate_V = mkV "fascinate" "fascinated" "fascinated" ;
-lin subordinate_V = mkV "subordinate" "subordinated" "subordinated" ;
-lin coordinate_V = mkV "coordinate" "coordinated" "coordinated" ;
-lin originate_V = mkV "originate" "originated" "originated" ;
-lin desalinate_V = mkV "desalinate" "desalinated" "desalinated" ;
-lin pollinate_V = mkV "pollinate" "pollinated" "pollinated" ;
-lin laminate_V = mkV "laminate" "laminated" "laminated" ;
-lin contaminate_V = mkV "contaminate" "contaminated" "contaminated" ;
-lin decontaminate_V = mkV "decontaminate" "decontaminated" "decontaminated" ; -- compound contaminate_V ;
-lin inseminate_V = mkV "inseminate" "inseminated" "inseminated" ;
-lin disseminate_V = mkV "disseminate" "disseminated" "disseminated" ;
-lin eliminate_V = mkV "eliminate" "eliminated" "eliminated" ;
-lin recriminate_V = mkV "recriminate" "recriminated" "recriminated" ;
-lin incriminate_V = mkV "incriminate" "incriminated" "incriminated" ;
-lin discriminate_V = mkV "discriminate" "discriminated" "discriminated" ;
-lin culminate_V = mkV "culminate" "culminated" "culminated" ;
-lin fulminate_V = mkV "fulminate" "fulminated" "fulminated" ;
-lin abominate_V = mkV "abominate" "abominated" "abominated" ;
-lin dominate_V = mkV "dominate" "dominated" "dominated" ;
-lin predominate_V = mkV "predominate" "predominated" "predominated" ; -- compound dominate_V ;
-lin nominate_V = mkV "nominate" "nominated" "nominated" ;
-lin denominate_V = mkV "denominate" "denominated" "denominated" ; -- compound nominate_V ;
-lin germinate_V = mkV "germinate" "germinated" "germinated" ;
-lin terminate_V = mkV "terminate" "terminated" "terminated" ;
-lin exterminate_V = mkV "exterminate" "exterminated" "exterminated" ; -- compound terminate_V ;
-lin illuminate_V = mkV "illuminate" "illuminated" "illuminated" ;
-lin ruminate_V = mkV "ruminate" "ruminated" "ruminated" ;
-lin marinate_V = mkV "marinate" "marinated" "marinated" ;
-lin chlorinate_V = mkV "chlorinate" "chlorinated" "chlorinated" ;
-lin indoctrinate_V = mkV "indoctrinate" "indoctrinated" "indoctrinated" ;
-lin urinate_V = mkV "urinate" "urinated" "urinated" ;
-lin assassinate_V = mkV "assassinate" "assassinated" "assassinated" ;
-lin procrastinate_V = mkV "procrastinate" "procrastinated" "procrastinated" ;
-lin predestinate_V = mkV "predestinate" "predestinated" "predestinated" ;
-lin agglutinate_V = mkV "agglutinate" "agglutinated" "agglutinated" ;
-lin donate_V = mkV "donate" "donated" "donated" ;
-lin resonate_V = mkV "resonate" "resonated" "resonated" ;
-lin personate_V = mkV "personate" "personated" "personated" ;
-lin impersonate_V = mkV "impersonate" "impersonated" "impersonated" ; -- compound personate_V ;
-lin detonate_V = mkV "detonate" "detonated" "detonated" ;
-lin incarnate_V = mkV "incarnate" "incarnated" "incarnated" ;
-lin reincarnate_V = mkV "reincarnate" "reincarnated" "reincarnated" ; -- compound incarnate_V ;
-lin hibernate_V = mkV "hibernate" "hibernated" "hibernated" ;
-lin alternate_V = mkV "alternate" "alternated" "alternated" ;
-lin anticipate_V = mkV "anticipate" "anticipated" "anticipated" ;
-lin participate_V = mkV "participate" "participated" "participated" ;
-lin emancipate_V = mkV "emancipate" "emancipated" "emancipated" ;
-lin dissipate_V = mkV "dissipate" "dissipated" "dissipated" ;
-lin constipate_V = mkV "constipate" "constipated" "constipated" ;
-lin inculpate_V = mkV "inculpate" "inculpated" "inculpated" ;
-lin exculpate_V = mkV "exculpate" "exculpated" "exculpated" ;
-lin syncopate_V = mkV "syncopate" "syncopated" "syncopated" ;
-lin extirpate_V = mkV "extirpate" "extirpated" "extirpated" ;
-lin rate_V = mkV "rate" "rated" "rated" ;
-lin exhilarate_V = mkV "exhilarate" "exhilarated" "exhilarated" ; -- compound rate_V ;
-lin separate_V = mkV "separate" "separated" "separated" ; -- compound rate_V ;
-lin celebrate_V = mkV "celebrate" "celebrated" "celebrated" ; -- compound rate_V ;
-lin calibrate_V = mkV "calibrate" "calibrated" "calibrated" ; -- compound rate_V ;
-lin vibrate_V = mkV "vibrate" "vibrated" "vibrated" ; -- compound rate_V ;
-lin adumbrate_V = mkV "adumbrate" "adumbrated" "adumbrated" ; -- compound rate_V ;
-lin crate_V = mkV "crate" "crated" "crated" ; -- notcompound rate_V ;
-lin desecrate_V = mkV "desecrate" "desecrated" "desecrated" ; -- compound rate_V ;
-lin consecrate_V = mkV "consecrate" "consecrated" "consecrated" ; -- compound rate_V ;
-lin reconsecrate_V = mkV "reconsecrate" "reconsecrated" "reconsecrated" ; -- compound rate_V ;
-lin execrate_V = mkV "execrate" "execrated" "execrated" ; -- compound rate_V ;
-lin hydrate_V = mkV "hydrate" "hydrated" "hydrated" ; -- compound rate_V ;
-lin dehydrate_V = mkV "dehydrate" "dehydrated" "dehydrated" ; -- compound rate_V ;
-lin aerate_V = mkV "aerate" "aerated" "aerated" ; -- compound rate_V ;
-lin berate_V = mkV "berate" "berated" "berated" ; -- compound rate_V ;
-lin liberate_V = mkV "liberate" "liberated" "liberated" ; -- compound rate_V ;
-lin deliberate_V = mkV "deliberate" "deliberated" "deliberated" ; -- compound rate_V ;
-lin reverberate_V = mkV "reverberate" "reverberated" "reverberated" ; -- compound rate_V ;
-lin lacerate_V = mkV "lacerate" "lacerated" "lacerated" ; -- compound rate_V ;
-lin macerate_V = mkV "macerate" "macerated" "macerated" ; -- compound rate_V ;
-lin ulcerate_V = mkV "ulcerate" "ulcerated" "ulcerated" ; -- compound rate_V ;
-lin incarcerate_V = mkV "incarcerate" "incarcerated" "incarcerated" ; -- compound rate_V ;
-lin eviscerate_V = mkV "eviscerate" "eviscerated" "eviscerated" ; -- compound rate_V ;
-lin derate_V = mkV "derate" "derated" "derated" ; -- compound rate_V ;
-lin federate_V = mkV "federate" "federated" "federated" ; -- compound rate_V ;
-lin confederate_V = mkV "confederate" "confederated" "confederated" ; -- compound rate_V ;
-lin preponderate_V = mkV "preponderate" "preponderated" "preponderated" ; -- compound rate_V ;
-lin moderate_V = mkV "moderate" "moderated" "moderated" ; -- compound rate_V ;
-lin vociferate_V = mkV "vociferate" "vociferated" "vociferated" ; -- compound rate_V ;
-lin proliferate_V = mkV "proliferate" "proliferated" "proliferated" ; -- compound rate_V ;
-lin exaggerate_V = mkV "exaggerate" "exaggerated" "exaggerated" ; -- compound rate_V ;
-lin refrigerate_V = mkV "refrigerate" "refrigerated" "refrigerated" ; -- compound rate_V ;
-lin accelerate_V = mkV "accelerate" "accelerated" "accelerated" ; -- compound rate_V ;
-lin decelerate_V = mkV "decelerate" "decelerated" "decelerated" ; -- compound rate_V ;
-lin tolerate_V = mkV "tolerate" "tolerated" "tolerated" ; -- compound rate_V ;
-lin agglomerate_V = mkV "agglomerate" "agglomerated" "agglomerated" ; -- compound rate_V ;
-lin conglomerate_V = mkV "conglomerate" "conglomerated" "conglomerated" ; -- compound rate_V ;
-lin enumerate_V = mkV "enumerate" "enumerated" "enumerated" ; -- compound rate_V ;
-lin ennumerate_V = mkV "ennumerate" "ennumerated" "ennumerated" ; -- compound rate_V ;
-lin generate_V = mkV "generate" "generated" "generated" ; -- compound rate_V ;
-lin degenerate_V = mkV "degenerate" "degenerated" "degenerated" ; -- compound rate_V ;
-lin regenerate_V = mkV "regenerate" "regenerated" "regenerated" ; -- compound rate_V ;
-lin venerate_V = mkV "venerate" "venerated" "venerated" ; -- compound rate_V ;
-lin incinerate_V = mkV "incinerate" "incinerated" "incinerated" ; -- compound rate_V ;
-lin exonerate_V = mkV "exonerate" "exonerated" "exonerated" ; -- compound rate_V ;
-lin remunerate_V = mkV "remunerate" "remunerated" "remunerated" ; -- compound rate_V ;
-lin operate_V = mkV "operate" "operated" "operated" ; -- compound rate_V ;
-lin cooperate_V = mkV "cooperate" "cooperated" "cooperated" ; -- compound rate_V ;
-lin exasperate_V = mkV "exasperate" "exasperated" "exasperated" ; -- compound rate_V ;
-lin recuperate_V = mkV "recuperate" "recuperated" "recuperated" ; -- compound rate_V ;
-lin vituperate_V = mkV "vituperate" "vituperated" "vituperated" ; -- compound rate_V ;
-lin commiserate_V = mkV "commiserate" "commiserated" "commiserated" ; -- compound rate_V ;
-lin iterate_V = mkV "iterate" "iterated" "iterated" ; -- compound rate_V ;
-lin reiterate_V = mkV "reiterate" "reiterated" "reiterated" ; -- compound rate_V ;
-lin obliterate_V = mkV "obliterate" "obliterated" "obliterated" ; -- compound rate_V ;
-lin transliterate_V = mkV "transliterate" "transliterated" "transliterated" ; -- compound rate_V ;
-lin adulterate_V = mkV "adulterate" "adulterated" "adulterated" ; -- compound rate_V ;
-lin asseverate_V = mkV "asseverate" "asseverated" "asseverated" ; -- compound rate_V ;
-lin grate_V = mkV "grate" "grated" "grated" ; -- notcompound rate_V ;
-lin integrate_V = mkV "integrate" "integrated" "integrated" ; -- compound rate_V ;
-lin reintegrate_V = mkV "reintegrate" "reintegrated" "reintegrated" ; -- compound rate_V ;
-lin disintegrate_V = mkV "disintegrate" "disintegrated" "disintegrated" ; -- compound rate_V ;
-lin migrate_V = mkV "migrate" "migrated" "migrated" ; -- compound rate_V ;
-lin emigrate_V = mkV "emigrate" "emigrated" "emigrated" ; -- compound rate_V ;
-lin immigrate_V = mkV "immigrate" "immigrated" "immigrated" ; -- compound rate_V ;
-lin denigrate_V = mkV "denigrate" "denigrated" "denigrated" ; -- compound rate_V ;
-lin pirate_V = mkV "pirate" "pirated" "pirated" ; -- compound rate_V ;
-lin aspirate_V = mkV "aspirate" "aspirated" "aspirated" ; -- compound rate_V ;
-lin orate_V = mkV "orate" "orated" "orated" ; -- notcompound rate_V ;
-lin elaborate_V = mkV "elaborate" "elaborated" "elaborated" ; -- compound rate_V ;
-lin collaborate_V = mkV "collaborate" "collaborated" "collaborated" ; -- compound rate_V ;
-lin corroborate_V = mkV "corroborate" "corroborated" "corroborated" ; -- compound rate_V ;
-lin decorate_V = mkV "decorate" "decorated" "decorated" ; -- compound rate_V ;
-lin redecorate_V = mkV "redecorate" "redecorated" "redecorated" ; -- compound rate_V ;
-lin perforate_V = mkV "perforate" "perforated" "perforated" ; -- compound rate_V ;
-lin invigorate_V = mkV "invigorate" "invigorated" "invigorated" ; -- compound rate_V ;
-lin reinvigorate_V = mkV "reinvigorate" "reinvigorated" "reinvigorated" ; -- compound rate_V ;
-lin meliorate_V = mkV "meliorate" "meliorated" "meliorated" ; -- compound rate_V ;
-lin ameliorate_V = mkV "ameliorate" "ameliorated" "ameliorated" ; -- compound rate_V ;
-lin deteriorate_V = mkV "deteriorate" "deteriorated" "deteriorated" ; -- compound rate_V ;
-lin commemorate_V = mkV "commemorate" "commemorated" "commemorated" ; -- compound rate_V ;
-lin evaporate_V = mkV "evaporate" "evaporated" "evaporated" ; -- compound rate_V ;
-lin incorporate_V = mkV "incorporate" "incorporated" "incorporated" ; -- compound rate_V ;
-lin expectorate_V = mkV "expectorate" "expectorated" "expectorated" ; -- compound rate_V ;
-lin prate_V = mkV "prate" "prated" "prated" ; -- notcompound rate_V ;
-lin narrate_V = mkV "narrate" "narrated" "narrated" ; -- compound rate_V ;
-lin underrate_V = mkV "underrate" "underrated" "underrated" ; -- compound rate_V ;
-lin overrate_V = mkV "overrate" "overrated" "overrated" ; -- compound rate_V ;
-lin penetrate_V = mkV "penetrate" "penetrated" "penetrated" ; -- compound rate_V ;
-lin perpetrate_V = mkV "perpetrate" "perpetrated" "perpetrated" ; -- compound rate_V ;
-lin arbitrate_V = mkV "arbitrate" "arbitrated" "arbitrated" ; -- compound rate_V ;
-lin filtrate_V = mkV "filtrate" "filtrated" "filtrated" ; -- compound rate_V ;
-lin infiltrate_V = mkV "infiltrate" "infiltrated" "infiltrated" ; -- compound rate_V ;
-lin concentrate_V = mkV "concentrate" "concentrated" "concentrated" ; -- compound rate_V ;
-lin castrate_V = mkV "castrate" "castrated" "castrated" ; -- compound rate_V ;
-lin orchestrate_V = mkV "orchestrate" "orchestrated" "orchestrated" ; -- compound rate_V ;
-lin sequestrate_V = mkV "sequestrate" "sequestrated" "sequestrated" ; -- compound rate_V ;
-lin demonstrate_V = mkV "demonstrate" "demonstrated" "demonstrated" ; -- compound rate_V ;
-lin remonstrate_V = mkV "remonstrate" "remonstrated" "remonstrated" ; -- compound rate_V ;
-lin prostrate_V = mkV "prostrate" "prostrated" "prostrated" ; -- compound rate_V ;
-lin illustrate_V = mkV "illustrate" "illustrated" "illustrated" ; -- compound rate_V ;
-lin frustrate_V = mkV "frustrate" "frustrated" "frustrated" ; -- compound rate_V ;
-lin inaugurate_V = mkV "inaugurate" "inaugurated" "inaugurated" ; -- compound rate_V ;
-lin suppurate_V = mkV "suppurate" "suppurated" "suppurated" ; -- compound rate_V ;
-lin maturate_V = mkV "maturate" "maturated" "maturated" ; -- compound rate_V ;
-lin saturate_V = mkV "saturate" "saturated" "saturated" ; -- compound rate_V ;
-lin gyrate_V = mkV "gyrate" "gyrated" "gyrated" ; -- compound rate_V ;
-lin sate_V = mkV "sate" "sated" "sated" ;
-lin pulsate_V = mkV "pulsate" "pulsated" "pulsated" ; -- compound sate_V ;
-lin compensate_V = mkV "compensate" "compensated" "compensated" ; -- compound sate_V ;
-lin tergiversate_V = mkV "tergiversate" "tergiversated" "tergiversated" ; -- compound sate_V ;
-lin dictate_V = mkV "dictate" "dictated" "dictated" ;
-lin vegetate_V = mkV "vegetate" "vegetated" "vegetated" ;
-lin incapacitate_V = mkV "incapacitate" "incapacitated" "incapacitated" ;
-lin felicitate_V = mkV "felicitate" "felicitated" "felicitated" ;
-lin resuscitate_V = mkV "resuscitate" "resuscitated" "resuscitated" ;
-lin meditate_V = mkV "meditate" "meditated" "meditated" ;
-lin premeditate_V = mkV "premeditate" "premeditated" "premeditated" ; -- compound meditate_V ;
-lin agitate_V = mkV "agitate" "agitated" "agitated" ;
-lin cogitate_V = mkV "cogitate" "cogitated" "cogitated" ;
-lin excogitate_V = mkV "excogitate" "excogitated" "excogitated" ; -- compound cogitate_V ;
-lin regurgitate_V = mkV "regurgitate" "regurgitated" "regurgitated" ;
-lin rehabilitate_V = mkV "rehabilitate" "rehabilitated" "rehabilitated" ;
-lin debilitate_V = mkV "debilitate" "debilitated" "debilitated" ;
-lin facilitate_V = mkV "facilitate" "facilitated" "facilitated" ;
-lin militate_V = mkV "militate" "militated" "militated" ;
-lin imitate_V = mkV "imitate" "imitated" "imitated" ;
-lin delimitate_V = mkV "delimitate" "delimitated" "delimitated" ; -- compound imitate_V ;
-lin decapitate_V = mkV "decapitate" "decapitated" "decapitated" ;
-lin crepitate_V = mkV "crepitate" "crepitated" "crepitated" ;
-lin precipitate_V = mkV "precipitate" "precipitated" "precipitated" ;
-lin palpitate_V = mkV "palpitate" "palpitated" "palpitated" ;
-lin irritate_V = mkV "irritate" "irritated" "irritated" ;
-lin hesitate_V = mkV "hesitate" "hesitated" "hesitated" ;
-lin necessitate_V = mkV "necessitate" "necessitated" "necessitated" ;
-lin gravitate_V = mkV "gravitate" "gravitated" "gravitated" ;
-lin levitate_V = mkV "levitate" "levitated" "levitated" ;
-lin orientate_V = mkV "orientate" "orientated" "orientated" ;
-lin reorientate_V = mkV "reorientate" "reorientated" "reorientated" ; -- compound orientate_V ;
-lin disorientate_V = mkV "disorientate" "disorientated" "disorientated" ; -- compound orientate_V ;
-lin commentate_V = mkV "commentate" "commentated" "commentated" ;
-lin annotate_V = mkV "annotate" "annotated" "annotated" ;
-lin rotate_V = mkV "rotate" "rotated" "rotated" ;
-lin state_V = mkV "state" "stated" "stated" ;
-lin devastate_V = mkV "devastate" "devastated" "devastated" ; -- compound state_V ;
-lin restate_V = mkV "restate" "restated" "restated" ; -- compound state_V ;
-lin reinstate_V = mkV "reinstate" "reinstated" "reinstated" ; -- compound state_V ;
-lin understate_V = mkV "understate" "understated" "understated" ; -- compound state_V ;
-lin overstate_V = mkV "overstate" "overstated" "overstated" ; -- compound state_V ;
-lin misstate_V = mkV "misstate" "misstated" "misstated" ; -- compound state_V ;
-lin amputate_V = mkV "amputate" "amputated" "amputated" ;
-lin evacuate_V = mkV "evacuate" "evacuated" "evacuated" ;
-lin graduate_V = mkV "graduate" "graduated" "graduated" ;
-lin evaluate_V = mkV "evaluate" "evaluated" "evaluated" ;
-lin 're-evaluate_V' = mkV "re-evaluate" "re-evaluated" "re-evaluated" ; -- compound evaluate_V ;
-lin devaluate_V = mkV "devaluate" "devaluated" "devaluated" ; -- notcompound evaluate_V ;
-lin attenuate_V = mkV "attenuate" "attenuated" "attenuated" ;
-lin extenuate_V = mkV "extenuate" "extenuated" "extenuated" ;
-lin insinuate_V = mkV "insinuate" "insinuated" "insinuated" ;
-lin superannuate_V = mkV "superannuate" "superannuated" "superannuated" ;
-lin equate_V = mkV "equate" "equated" "equated" ;
-lin menstruate_V = mkV "menstruate" "menstruated" "menstruated" ;
-lin infatuate_V = mkV "infatuate" "infatuated" "infatuated" ;
-lin actuate_V = mkV "actuate" "actuated" "actuated" ;
-lin punctuate_V = mkV "punctuate" "punctuated" "punctuated" ;
-lin fluctuate_V = mkV "fluctuate" "fluctuated" "fluctuated" ;
-lin perpetuate_V = mkV "perpetuate" "perpetuated" "perpetuated" ;
-lin habituate_V = mkV "habituate" "habituated" "habituated" ;
-lin situate_V = mkV "situate" "situated" "situated" ;
-lin accentuate_V = mkV "accentuate" "accentuated" "accentuated" ;
-lin excavate_V = mkV "excavate" "excavated" "excavated" ;
-lin aggravate_V = mkV "aggravate" "aggravated" "aggravated" ;
-lin elevate_V = mkV "elevate" "elevated" "elevated" ;
-lin salivate_V = mkV "salivate" "salivated" "salivated" ;
-lin activate_V = mkV "activate" "activated" "activated" ;
-lin deactivate_V = mkV "deactivate" "deactivated" "deactivated" ; -- compound activate_V ;
-lin reactivate_V = mkV "reactivate" "reactivated" "reactivated" ; -- compound activate_V ;
-lin inactivate_V = mkV "inactivate" "inactivated" "inactivated" ; -- compound activate_V ;
-lin titivate_V = mkV "titivate" "titivated" "titivated" ;
-lin cultivate_V = mkV "cultivate" "cultivated" "cultivated" ;
-lin motivate_V = mkV "motivate" "motivated" "motivated" ;
-lin captivate_V = mkV "captivate" "captivated" "captivated" ;
-lin tittivate_V = mkV "tittivate" "tittivated" "tittivated" ;
-lin renovate_V = mkV "renovate" "renovated" "renovated" ;
-lin innovate_V = mkV "innovate" "innovated" "innovated" ;
-lin enervate_V = mkV "enervate" "enervated" "enervated" ;
-lin fixate_V = mkV "fixate" "fixated" "fixated" ;
-lin delete_V = mkV "delete" "deleted" "deleted" ;
-lin deplete_V = mkV "deplete" "depleted" "depleted" ;
-lin complete_V = mkV "complete" "completed" "completed" ;
-lin mete_V = mkV "mete" "meted" "meted" ;
-lin compete_V = mkV "compete" "competed" "competed" ;
-lin secrete_V = mkV "secrete" "secreted" "secreted" ;
-lin concrete_V = mkV "concrete" "concreted" "concreted" ;
-lin excrete_V = mkV "excrete" "excreted" "excreted" ;
-lin cite_V = mkV "cite" "cited" "cited" ;
-lin recite_V = mkV "recite" "recited" "recited" ; -- compound cite_V ;
-lin incite_V = mkV "incite" "incited" "incited" ; -- compound cite_V ;
-lin excite_V = mkV "excite" "excited" "excited" ; -- compound cite_V ;
-lin extradite_V = mkV "extradite" "extradited" "extradited" ;
-lin expedite_V = mkV "expedite" "expedited" "expedited" ;
-lin indite_V = mkV "indite" "indited" "indited" ;
-lin white_V = mkV "white" "whited" "whited" ;
-lin dynamite_V = mkV "dynamite" "dynamited" "dynamited" ;
-lin ignite_V = mkV "ignite" "ignited" "ignited" ;
-lin reignite_V = mkV "reignite" "reignited" "reignited" ; -- compound ignite_V ;
-lin unite_V = mkV "unite" "united" "united" ;
-lin reunite_V = mkV "reunite" "reunited" "reunited" ; -- compound unite_V ;
-lin disunite_V = mkV "disunite" "disunited" "disunited" ; -- compound unite_V ;
-lin spite_V = mkV "spite" "spited" "spited" ;
-lin respite_V = mkV "respite" "respited" "respited" ; -- compound spite_V ;
-lin underwrite_1_V = mkV "underwrite" "underwrited" "underwrited" ;
-lin 'sub-underwrite_V' = mkV "sub-underwrite" "sub-underwrited" "sub-underwrited" ; -- compound underwrite_1_V ;
-lin site_V = mkV "site" "sited" "sited" ;
-lin requite_V = mkV "requite" "requited" "requited" ;
-lin invite_V = mkV "invite" "invited" "invited" ;
-lin dote_V = mkV "dote" "doted" "doted" ;
-lin demote_V = mkV "demote" "demoted" "demoted" ;
-lin promote_V = mkV "promote" "promoted" "promoted" ;
-lin note_V = mkV "note" "noted" "noted" ;
-lin denote_V = mkV "denote" "denoted" "denoted" ; -- compound note_V ;
-lin connote_V = mkV "connote" "connoted" "connoted" ; -- compound note_V ;
-lin tote_V = mkV "tote" "toted" "toted" ;
-lin quote_V = mkV "quote" "quoted" "quoted" ;
-lin underquote_V = mkV "underquote" "underquoted" "underquoted" ; -- compound quote_V ;
-lin misquote_V = mkV "misquote" "misquoted" "misquoted" ; -- compound quote_V ;
-lin vote_V = mkV "vote" "voted" "voted" ;
-lin devote_V = mkV "devote" "devoted" "devoted" ; -- compound vote_V ;
-lin outvote_V = mkV "outvote" "outvoted" "outvoted" ; -- compound vote_V ;
-lin baste_V = mkV "baste" "basted" "basted" ;
-lin lambaste_V = mkV "lambaste" "lambasted" "lambasted" ; -- compound baste_V ;
-lin paste_V = mkV "paste" "pasted" "pasted" ;
-lin taste_V = mkV "taste" "tasted" "tasted" ;
-lin waste_V = mkV "waste" "wasted" "wasted" ;
-lin riposte_V = mkV "riposte" "riposted" "riposted" ;
-lin silhouette_V = mkV "silhouette" "silhouetted" "silhouetted" ;
-lin pirouette_V = mkV "pirouette" "pirouetted" "pirouetted" ;
-lin gazette_V = mkV "gazette" "gazetted" "gazetted" ;
-lin garotte_V = mkV "garotte" "garotted" "garotted" ;
-lin garrotte_V = mkV "garrotte" "garrotted" "garrotted" ;
-lin contribute_V = mkV "contribute" "contributed" "contributed" ;
-lin distribute_V = mkV "distribute" "distributed" "distributed" ;
-lin redistribute_V = mkV "redistribute" "redistributed" "redistributed" ; -- compound distribute_V ;
-lin attribute_V = mkV "attribute" "attributed" "attributed" ;
-lin reattribute_V = mkV "reattribute" "reattributed" "reattributed" ; -- compound attribute_V ;
-lin prosecute_V = mkV "prosecute" "prosecuted" "prosecuted" ;
-lin persecute_V = mkV "persecute" "persecuted" "persecuted" ;
-lin execute_V = mkV "execute" "executed" "executed" ;
-lin electrocute_V = mkV "electrocute" "electrocuted" "electrocuted" ;
-lin refute_V = mkV "refute" "refuted" "refuted" ;
-lin confute_V = mkV "confute" "confuted" "confuted" ;
-lin parachute_V = mkV "parachute" "parachuted" "parachuted" ;
-lin salute_V = mkV "salute" "saluted" "saluted" ;
-lin flute_V = mkV "flute" "fluted" "fluted" ;
-lin dilute_V = mkV "dilute" "diluted" "diluted" ;
-lin pollute_V = mkV "pollute" "polluted" "polluted" ;
-lin mute_V = mkV "mute" "muted" "muted" ;
-lin commute_V = mkV "commute" "commuted" "commuted" ; -- compound mute_V ;
-lin permute_V = mkV "permute" "permuted" "permuted" ; -- compound mute_V ;
-lin transmute_V = mkV "transmute" "transmuted" "transmuted" ; -- compound mute_V ;
-lin minute_V = mkV "minute" "minuted" "minuted" ;
-lin route_V = mkV "route" "routed" "routed" ;
-lin reroute_V = mkV "reroute" "rerouted" "rerouted" ; -- compound route_V ;
-lin depute_V = mkV "depute" "deputed" "deputed" ;
-lin repute_V = mkV "repute" "reputed" "reputed" ;
-lin impute_V = mkV "impute" "imputed" "imputed" ;
-lin compute_V = mkV "compute" "computed" "computed" ;
-lin dispute_V = mkV "dispute" "disputed" "disputed" ;
-lin substitute_V = mkV "substitute" "substituted" "substituted" ;
-lin institute_V = mkV "institute" "instituted" "instituted" ;
-lin reinstitute_V = mkV "reinstitute" "reinstituted" "reinstituted" ; -- compound institute_V ;
-lin constitute_V = mkV "constitute" "constituted" "constituted" ;
-lin prostitute_V = mkV "prostitute" "prostituted" "prostituted" ;
-lin fête_V = mkV "fête" "fêted" "fêted" ;
-lin imbue_V = mkV "imbue" "imbued" "imbued" ;
-lin barbecue_V = mkV "barbecue" "barbecued" "barbecued" ;
-lin rescue_V = mkV "rescue" "rescued" "rescued" ;
-lin subdue_V = mkV "subdue" "subdued" "subdued" ;
-lin endue_V = mkV "endue" "endued" "endued" ;
-lin indue_V = mkV "indue" "indued" "indued" ;
-lin queue_V = mkV "queue" "queued" "queued" ;
-lin league_V = mkV "league" "leagued" "leagued" ;
-lin plague_V = mkV "plague" "plagued" "plagued" ;
-lin renegue_V = mkV "renegue" "renegued" "renegued" ;
-lin intrigue_V = mkV "intrigue" "intrigued" "intrigued" ;
-lin fatigue_V = mkV "fatigue" "fatigued" "fatigued" ;
-lin harangue_V = mkV "harangue" "harangued" "harangued" ;
-lin catalogue_V = mkV "catalogue" "catalogued" "catalogued" ;
-lin prorogue_V = mkV "prorogue" "prorogued" "prorogued" ;
-lin argue_V = mkV "argue" "argued" "argued" ;
-lin value_V = mkV "value" "valued" "valued" ;
-lin devalue_V = mkV "devalue" "devalued" "devalued" ; -- compound value_V ;
-lin revalue_V = mkV "revalue" "revalued" "revalued" ; -- compound value_V ;
-lin undervalue_V = mkV "undervalue" "undervalued" "undervalued" ; -- compound value_V ;
-lin overvalue_V = mkV "overvalue" "overvalued" "overvalued" ; -- compound value_V ;
-lin blue_V = mkV "blue" "blued" "blued" ;
-lin glue_2_V = mkV "glue" "glued" "glued" ;
-lin continue_V = mkV "continue" "continued" "continued" ;
-lin discontinue_V = mkV "discontinue" "discontinued" "discontinued" ; -- compound continue_V ;
-lin spue_V = mkV "spue" "spued" "spued" ;
-lin pique_V = mkV "pique" "piqued" "piqued" ;
-lin burlesque_V = mkV "burlesque" "burlesqued" "burlesqued" ;
-lin rue_V = mkV "rue" "rued" "rued" ;
-lin accrue_V = mkV "accrue" "accrued" "accrued" ; -- compound rue_V ;
-lin true_V = mkV "true" "trued" "trued" ; -- notcompound rue_V ;
-lin construe_V = mkV "construe" "construed" "construed" ; -- compound rue_V ;
-lin misconstrue_V = mkV "misconstrue" "misconstrued" "misconstrued" ; -- compound rue_V ;
-lin sue_V = mkV "sue" "sued" "sued" ;
-lin ensue_V = mkV "ensue" "ensued" "ensued" ; -- compound sue_V ;
-lin pursue_V = mkV "pursue" "pursued" "pursued" ; -- compound sue_V ;
-lin issue_V = mkV "issue" "issued" "issued" ; -- compound sue_V ;
-lin reissue_V = mkV "reissue" "reissued" "reissued" ; -- compound sue_V ;
-lin have_V = mkV "have" "had" "had" ;
-lin cave_V = mkV "cave" "caved" "caved" ;
-lin heave_V = mkV "heave" "heaved" "heaved" ;
-lin leave_1_V = mkV "leave" "leaved" "leaved" ;
-lin cleave_V = mkV "cleave" "cleaved" "cleaved" ; -- notcompound leave_1_V ;
-lin interleave_V = mkV "interleave" "interleaved" "interleaved" ; -- compound leave_1_V ;
-lin bereave_V = mkV "bereave" "bereaved" "bereaved" ;
-lin weave_1_V = mkV "weave" "weaved" "weaved" ;
-lin interweave_1_V = mkV "interweave" "interweaved" "interweaved" ; -- compound weave_1_V ;
-lin behave_V = mkV "behave" "behaved" "behaved" ;
-lin misbehave_V = mkV "misbehave" "misbehaved" "misbehaved" ; -- compound behave_V ;
-lin shave_1_V = mkV "shave" "shaved" "shaved" ;
-lin lave_V = mkV "lave" "laved" "laved" ;
-lin slave_V = mkV "slave" "slaved" "slaved" ; -- notcompound lave_V ;
-lin enslave_V = mkV "enslave" "enslaved" "enslaved" ; -- compound lave_V ;
-lin pave_V = mkV "pave" "paved" "paved" ;
-lin rave_V = mkV "rave" "raved" "raved" ;
-lin brave_V = mkV "brave" "braved" "braved" ; -- notcompound rave_V ;
-lin outbrave_V = mkV "outbrave" "outbraved" "outbraved" ; -- compound rave_V ;
-lin crave_V = mkV "crave" "craved" "craved" ; -- notcompound rave_V ;
-lin engrave_V = mkV "engrave" "engraved" "engraved" ; -- compound rave_V ;
-lin deprave_V = mkV "deprave" "depraved" "depraved" ; -- compound rave_V ;
-lin save_V = mkV "save" "saved" "saved" ;
-lin stave_V = mkV "stave" "staved" "staved" ;
-lin wave_V = mkV "wave" "waved" "waved" ;
-lin peeve_V = mkV "peeve" "peeved" "peeved" ;
-lin achieve_V = mkV "achieve" "achieved" "achieved" ;
-lin thieve_V = mkV "thieve" "thieved" "thieved" ;
-lin believe_V = mkV "believe" "believed" "believed" ;
-lin disbelieve_V = mkV "disbelieve" "disbelieved" "disbelieved" ; -- compound believe_V ;
-lin relieve_V = mkV "relieve" "relieved" "relieved" ;
-lin grieve_V = mkV "grieve" "grieved" "grieved" ;
-lin aggrieve_V = mkV "aggrieve" "aggrieved" "aggrieved" ; -- compound grieve_V ;
-lin reprieve_V = mkV "reprieve" "reprieved" "reprieved" ;
-lin retrieve_V = mkV "retrieve" "retrieved" "retrieved" ;
-lin sieve_V = mkV "sieve" "sieved" "sieved" ;
-lin waive_V = mkV "waive" "waived" "waived" ;
-lin dive_1_V = mkV "dive" "dived" "dived" ;
-lin 'crash-dive_V' = mkV "crash-dive" "crash-dived" "crash-dived" ; -- compound dive_1_V ;
-lin 'power-dive_V' = mkV "power-dive" "power-dived" "power-dived" ; -- compound dive_1_V ;
-lin nosedive_V = mkV "nosedive" "nosedived" "nosedived" ; -- compound dive_1_V ;
-lin deceive_V = mkV "deceive" "deceived" "deceived" ;
-lin undeceive_V = mkV "undeceive" "undeceived" "undeceived" ; -- compound deceive_V ;
-lin receive_V = mkV "receive" "received" "received" ;
-lin conceive_V = mkV "conceive" "conceived" "conceived" ;
-lin preconceive_V = mkV "preconceive" "preconceived" "preconceived" ; -- compound conceive_V ;
-lin misconceive_V = mkV "misconceive" "misconceived" "misconceived" ; -- compound conceive_V ;
-lin perceive_V = mkV "perceive" "perceived" "perceived" ;
-lin give_2_V = mkV "give" "gived" "gived" ;
-lin hive_V = mkV "hive" "hived" "hived" ;
-lin jive_V = mkV "jive" "jived" "jived" ;
-lin skive_V = mkV "skive" "skived" "skived" ;
-lin live_V = mkV "live" "lived" "lived" ;
-lin relive_V = mkV "relive" "relived" "relived" ; -- compound live_V ;
-lin outlive_V = mkV "outlive" "outlived" "outlived" ; -- compound live_V ;
-lin connive_V = mkV "connive" "connived" "connived" ;
-lin rive_V = mkV "rive" "rived" "rived" ;
-lin drive_1_V = mkV "drive" "drived" "drived" ; -- notcompound rive_V ;
-lin derive_V = mkV "derive" "derived" "derived" ; -- compound rive_V ;
-lin shrive_V = mkV "shrive" "shrived" "shrived" ; -- notcompound rive_V ;
-lin thrive_V = mkV "thrive" "thrived" "thrived" ; -- notcompound rive_V ;
-lin deprive_V = mkV "deprive" "deprived" "deprived" ; -- compound rive_V ;
-lin arrive_V = mkV "arrive" "arrived" "arrived" ; -- compound rive_V ;
-lin contrive_V = mkV "contrive" "contrived" "contrived" ; -- compound rive_V ;
-lin negative_V = mkV "negative" "negatived" "negatived" ;
-lin revive_V = mkV "revive" "revived" "revived" ;
-lin survive_V = mkV "survive" "survived" "survived" ;
-lin wive_V = mkV "wive" "wived" "wived" ;
-lin calve_V = mkV "calve" "calved" "calved" ;
-lin halve_V = mkV "halve" "halved" "halved" ;
-lin salve_V = mkV "salve" "salved" "salved" ;
-lin delve_V = mkV "delve" "delved" "delved" ;
-lin shelve_V = mkV "shelve" "shelved" "shelved" ;
-lin solve_V = mkV "solve" "solved" "solved" ;
-lin absolve_V = mkV "absolve" "absolved" "absolved" ; -- compound solve_V ;
-lin resolve_V = mkV "resolve" "resolved" "resolved" ; -- compound solve_V ;
-lin dissolve_V = mkV "dissolve" "dissolved" "dissolved" ; -- compound solve_V ;
-lin evolve_V = mkV "evolve" "evolved" "evolved" ;
-lin devolve_V = mkV "devolve" "devolved" "devolved" ; -- notcompound evolve_V ;
-lin revolve_V = mkV "revolve" "revolved" "revolved" ; -- notcompound evolve_V ;
-lin involve_V = mkV "involve" "involved" "involved" ;
-lin behove_V = mkV "behove" "behoved" "behoved" ;
-lin shove_V = mkV "shove" "shoved" "shoved" ;
-lin love_V = mkV "love" "loved" "loved" ;
-lin move_V = mkV "move" "moved" "moved" ;
-lin remove_V = mkV "remove" "removed" "removed" ; -- compound move_V ;
-lin groove_V = mkV "groove" "grooved" "grooved" ;
-lin rove_V = mkV "rove" "roved" "roved" ;
-lin reprove_V = mkV "reprove" "reproved" "reproved" ; -- compound rove_V ;
-lin improve_V = mkV "improve" "improved" "improved" ; -- compound rove_V ;
-lin approve_V = mkV "approve" "approved" "approved" ; -- compound rove_V ;
-lin 'pre-approve_V' = mkV "pre-approve" "pre-approved" "pre-approved" ; -- compound rove_V ;
-lin disapprove_V = mkV "disapprove" "disapproved" "disapproved" ; -- compound rove_V ;
-lin disprove_V = mkV "disprove" "disproved" "disproved" ; -- compound rove_V ;
-lin carve_V = mkV "carve" "carved" "carved" ;
-lin starve_V = mkV "starve" "starved" "starved" ;
-lin nerve_V = mkV "nerve" "nerved" "nerved" ;
-lin unnerve_V = mkV "unnerve" "unnerved" "unnerved" ; -- compound nerve_V ;
-lin serve_V = mkV "serve" "served" "served" ;
-lin observe_V = mkV "observe" "observed" "observed" ; -- compound serve_V ;
-lin subserve_V = mkV "subserve" "subserved" "subserved" ; -- compound serve_V ;
-lin deserve_V = mkV "deserve" "deserved" "deserved" ; -- compound serve_V ;
-lin reserve_V = mkV "reserve" "reserved" "reserved" ; -- compound serve_V ;
-lin preserve_V = mkV "preserve" "preserved" "preserved" ; -- compound serve_V ;
-lin conserve_V = mkV "conserve" "conserved" "conserved" ; -- compound serve_V ;
-lin swerve_V = mkV "swerve" "swerved" "swerved" ;
-lin curve_V = mkV "curve" "curved" "curved" ;
-lin recurve_V = mkV "recurve" "recurved" "recurved" ; -- compound curve_V ;
-lin awe_V = mkV "awe" "awed" "awed" ;
-lin overawe_V = mkV "overawe" "overawed" "overawed" ; -- compound awe_V ;
-lin owe_V = mkV "owe" "owed" "owed" ;
-lin axe_V = mkV "axe" "axed" "axed" ;
-lin poleaxe_V = mkV "poleaxe" "poleaxed" "poleaxed" ; -- compound axe_V ;
-lin dye_V = mkV "dye" "dyed" "dyed" ;
-lin eye_V = mkV "eye" "eyed" "eyed" ;
-lin daze_V = mkV "daze" "dazed" "dazed" ;
-lin unfaze_V = mkV "unfaze" "unfazed" "unfazed" ;
-lin gaze_V = mkV "gaze" "gazed" "gazed" ;
-lin haze_V = mkV "haze" "hazed" "hazed" ;
-lin laze_V = mkV "laze" "lazed" "lazed" ;
-lin blaze_V = mkV "blaze" "blazed" "blazed" ; -- notcompound laze_V ;
-lin glaze_V = mkV "glaze" "glazed" "glazed" ; -- notcompound laze_V ;
-lin amaze_V = mkV "amaze" "amazed" "amazed" ;
-lin raze_V = mkV "raze" "razed" "razed" ;
-lin braze_V = mkV "braze" "brazed" "brazed" ; -- notcompound raze_V ;
-lin graze_V = mkV "graze" "grazed" "grazed" ; -- notcompound raze_V ;
-lin wheeze_V = mkV "wheeze" "wheezed" "wheezed" ;
-lin sneeze_V = mkV "sneeze" "sneezed" "sneezed" ;
-lin breeze_V = mkV "breeze" "breezed" "breezed" ;
-lin freeze_1_V = mkV "freeze" "freezed" "freezed" ;
-lin squeeze_V = mkV "squeeze" "squeezed" "squeezed" ;
-lin syllabize_V = mkV "syllabize" "syllabized" "syllabized" ;
-lin ostracize_V = mkV "ostracize" "ostracized" "ostracized" ;
-lin laicize_V = mkV "laicize" "laicized" "laicized" ;
-lin italicize_V = mkV "italicize" "italicized" "italicized" ;
-lin publicize_V = mkV "publicize" "publicized" "publicized" ;
-lin anglicize_V = mkV "anglicize" "anglicized" "anglicized" ;
-lin historicize_V = mkV "historicize" "historicized" "historicized" ;
-lin metricize_V = mkV "metricize" "metricized" "metricized" ;
-lin politicize_V = mkV "politicize" "politicized" "politicized" ;
-lin criticize_V = mkV "criticize" "criticized" "criticized" ;
-lin romanticize_V = mkV "romanticize" "romanticized" "romanticized" ;
-lin exorcize_V = mkV "exorcize" "exorcized" "exorcized" ;
-lin hybridize_V = mkV "hybridize" "hybridized" "hybridized" ;
-lin fluoridize_V = mkV "fluoridize" "fluoridized" "fluoridized" ;
-lin subsidize_V = mkV "subsidize" "subsidized" "subsidized" ;
-lin liquidize_V = mkV "liquidize" "liquidized" "liquidized" ;
-lin oxidize_V = mkV "oxidize" "oxidized" "oxidized" ;
-lin propagandize_V = mkV "propagandize" "propagandized" "propagandized" ;
-lin gormandize_V = mkV "gormandize" "gormandized" "gormandized" ;
-lin aggrandize_V = mkV "aggrandize" "aggrandized" "aggrandized" ;
-lin rhapsodize_V = mkV "rhapsodize" "rhapsodized" "rhapsodized" ;
-lin standardize_V = mkV "standardize" "standardized" "standardized" ;
-lin jeopardize_V = mkV "jeopardize" "jeopardized" "jeopardized" ;
-lin bastardize_V = mkV "bastardize" "bastardized" "bastardized" ;
-lin seize_V = mkV "seize" "seized" "seized" ;
-lin apologize_V = mkV "apologize" "apologized" "apologized" ;
-lin eulogize_V = mkV "eulogize" "eulogized" "eulogized" ;
-lin catechize_V = mkV "catechize" "catechized" "catechized" ;
-lin apostrophize_V = mkV "apostrophize" "apostrophized" "apostrophized" ;
-lin philosophize_V = mkV "philosophize" "philosophized" "philosophized" ;
-lin empathize_V = mkV "empathize" "empathized" "empathized" ;
-lin sympathize_V = mkV "sympathize" "sympathized" "sympathized" ;
-lin cannibalize_V = mkV "cannibalize" "cannibalized" "cannibalized" ;
-lin detribalize_V = mkV "detribalize" "detribalized" "detribalized" ;
-lin verbalize_V = mkV "verbalize" "verbalized" "verbalized" ;
-lin localize_V = mkV "localize" "localized" "localized" ;
-lin vocalize_V = mkV "vocalize" "vocalized" "vocalized" ;
-lin scandalize_V = mkV "scandalize" "scandalized" "scandalized" ;
-lin idealize_V = mkV "idealize" "idealized" "idealized" ;
-lin realize_V = mkV "realize" "realized" "realized" ;
-lin legalize_V = mkV "legalize" "legalized" "legalized" ;
-lin specialize_V = mkV "specialize" "specialized" "specialized" ;
-lin socialize_V = mkV "socialize" "socialized" "socialized" ;
-lin commercialize_V = mkV "commercialize" "commercialized" "commercialized" ;
-lin serialize_V = mkV "serialize" "serialized" "serialized" ;
-lin materialize_V = mkV "materialize" "materialized" "materialized" ;
-lin memorialize_V = mkV "memorialize" "memorialized" "memorialized" ;
-lin industrialize_V = mkV "industrialize" "industrialized" "industrialized" ;
-lin trivialize_V = mkV "trivialize" "trivialized" "trivialized" ;
-lin decimalize_V = mkV "decimalize" "decimalized" "decimalized" ;
-lin formalize_V = mkV "formalize" "formalized" "formalized" ;
-lin normalize_V = mkV "normalize" "normalized" "normalized" ;
-lin canalize_V = mkV "canalize" "canalized" "canalized" ;
-lin penalize_V = mkV "penalize" "penalized" "penalized" ;
-lin signalize_V = mkV "signalize" "signalized" "signalized" ;
-lin finalize_V = mkV "finalize" "finalized" "finalized" ;
-lin marginalize_V = mkV "marginalize" "marginalized" "marginalized" ;
-lin criminalize_V = mkV "criminalize" "criminalized" "criminalized" ;
-lin nationalize_V = mkV "nationalize" "nationalized" "nationalized" ;
-lin denationalize_V = mkV "denationalize" "denationalized" "denationalized" ; -- compound nationalize_V ;
-lin internationalize_V = mkV "internationalize" "internationalized" "internationalized" ; -- compound nationalize_V ;
-lin rationalize_V = mkV "rationalize" "rationalized" "rationalized" ;
-lin institutionalize_V = mkV "institutionalize" "institutionalized" "institutionalized" ;
-lin constitutionalize_V = mkV "constitutionalize" "constitutionalized" "constitutionalized" ;
-lin personalize_V = mkV "personalize" "personalized" "personalized" ;
-lin internalize_V = mkV "internalize" "internalized" "internalized" ;
-lin externalize_V = mkV "externalize" "externalized" "externalized" ;
-lin liberalize_V = mkV "liberalize" "liberalized" "liberalized" ;
-lin generalize_V = mkV "generalize" "generalized" "generalized" ;
-lin moralize_V = mkV "moralize" "moralized" "moralized" ;
-lin demoralize_V = mkV "demoralize" "demoralized" "demoralized" ; -- compound moralize_V ;
-lin centralize_V = mkV "centralize" "centralized" "centralized" ;
-lin decentralize_V = mkV "decentralize" "decentralized" "decentralized" ; -- compound centralize_V ;
-lin recentralize_V = mkV "recentralize" "recentralized" "recentralized" ; -- compound centralize_V ;
-lin neutralize_V = mkV "neutralize" "neutralized" "neutralized" ;
-lin naturalize_V = mkV "naturalize" "naturalized" "naturalized" ;
-lin nasalize_V = mkV "nasalize" "nasalized" "nasalized" ;
-lin capitalize_V = mkV "capitalize" "capitalized" "capitalized" ;
-lin overcapitalize_V = mkV "overcapitalize" "overcapitalized" "overcapitalized" ; -- compound capitalize_V ;
-lin hospitalize_V = mkV "hospitalize" "hospitalized" "hospitalized" ;
-lin vitalize_V = mkV "vitalize" "vitalized" "vitalized" ;
-lin devitalize_V = mkV "devitalize" "devitalized" "devitalized" ; -- compound vitalize_V ;
-lin revitalize_V = mkV "revitalize" "revitalized" "revitalized" ; -- compound vitalize_V ;
-lin tantalize_V = mkV "tantalize" "tantalized" "tantalized" ;
-lin sentimentalize_V = mkV "sentimentalize" "sentimentalized" "sentimentalized" ;
-lin compartmentalize_V = mkV "compartmentalize" "compartmentalized" "compartmentalized" ;
-lin immortalize_V = mkV "immortalize" "immortalized" "immortalized" ;
-lin brutalize_V = mkV "brutalize" "brutalized" "brutalized" ;
-lin individualize_V = mkV "individualize" "individualized" "individualized" ;
-lin equalize_V = mkV "equalize" "equalized" "equalized" ;
-lin visualize_V = mkV "visualize" "visualized" "visualized" ;
-lin spiritualize_V = mkV "spiritualize" "spiritualized" "spiritualized" ;
-lin stabilize_V = mkV "stabilize" "stabilized" "stabilized" ;
-lin mobilize_V = mkV "mobilize" "mobilized" "mobilized" ;
-lin demobilize_V = mkV "demobilize" "demobilized" "demobilized" ; -- compound mobilize_V ;
-lin immobilize_V = mkV "immobilize" "immobilized" "immobilized" ; -- compound mobilize_V ;
-lin sterilize_V = mkV "sterilize" "sterilized" "sterilized" ;
-lin fossilize_V = mkV "fossilize" "fossilized" "fossilized" ;
-lin fertilize_V = mkV "fertilize" "fertilized" "fertilized" ;
-lin 'cross-fertilize_V' = mkV "cross-fertilize" "cross-fertilized" "cross-fertilized" ; -- compound fertilize_V ;
-lin utilize_V = mkV "utilize" "utilized" "utilized" ;
-lin tranquilize_V = mkV "tranquilize" "tranquilized" "tranquilized" ;
-lin civilize_V = mkV "civilize" "civilized" "civilized" ;
-lin crystallize_V = mkV "crystallize" "crystallized" "crystallized" ;
-lin tranquillize_V = mkV "tranquillize" "tranquillized" "tranquillized" ;
-lin metabolize_V = mkV "metabolize" "metabolized" "metabolized" ;
-lin symbolize_V = mkV "symbolize" "symbolized" "symbolized" ;
-lin idolize_V = mkV "idolize" "idolized" "idolized" ;
-lin monopolize_V = mkV "monopolize" "monopolized" "monopolized" ;
-lin stylize_V = mkV "stylize" "stylized" "stylized" ;
-lin macadamize_V = mkV "macadamize" "macadamized" "macadamized" ;
-lin itemize_V = mkV "itemize" "itemized" "itemized" ;
-lin minimize_V = mkV "minimize" "minimized" "minimized" ;
-lin victimize_V = mkV "victimize" "victimized" "victimized" ;
-lin legitimize_V = mkV "legitimize" "legitimized" "legitimized" ;
-lin maximize_V = mkV "maximize" "maximized" "maximized" ;
-lin economize_V = mkV "economize" "economized" "economized" ;
-lin atomize_V = mkV "atomize" "atomized" "atomized" ;
-lin epitomize_V = mkV "epitomize" "epitomized" "epitomized" ;
-lin customize_V = mkV "customize" "customized" "customized" ;
-lin urbanize_V = mkV "urbanize" "urbanized" "urbanized" ;
-lin americanize_V = mkV "americanize" "americanized" "americanized" ;
-lin vulcanize_V = mkV "vulcanize" "vulcanized" "vulcanized" ;
-lin organize_V = mkV "organize" "organized" "organized" ;
-lin reorganize_V = mkV "reorganize" "reorganized" "reorganized" ; -- compound organize_V ;
-lin disorganize_V = mkV "disorganize" "disorganized" "disorganized" ; -- compound organize_V ;
-lin mechanize_V = mkV "mechanize" "mechanized" "mechanized" ;
-lin womanize_V = mkV "womanize" "womanized" "womanized" ;
-lin humanize_V = mkV "humanize" "humanized" "humanized" ;
-lin dehumanize_V = mkV "dehumanize" "dehumanized" "dehumanized" ; -- compound humanize_V ;
-lin botanize_V = mkV "botanize" "botanized" "botanized" ;
-lin galvanize_V = mkV "galvanize" "galvanized" "galvanized" ;
-lin homogenize_V = mkV "homogenize" "homogenized" "homogenized" ;
-lin oxygenize_V = mkV "oxygenize" "oxygenized" "oxygenized" ;
-lin recognize_V = mkV "recognize" "recognized" "recognized" ;
-lin attitudinize_V = mkV "attitudinize" "attitudinized" "attitudinized" ;
-lin desalinize_V = mkV "desalinize" "desalinized" "desalinized" ;
-lin latinize_V = mkV "latinize" "latinized" "latinized" ;
-lin scrutinize_V = mkV "scrutinize" "scrutinized" "scrutinized" ;
-lin solemnize_V = mkV "solemnize" "solemnized" "solemnized" ;
-lin tyrannize_V = mkV "tyrannize" "tyrannized" "tyrannized" ;
-lin carbonize_V = mkV "carbonize" "carbonized" "carbonized" ;
-lin decarbonize_V = mkV "decarbonize" "decarbonized" "decarbonized" ; -- compound carbonize_V ;
-lin agonize_V = mkV "agonize" "agonized" "agonized" ;
-lin antagonize_V = mkV "antagonize" "antagonized" "antagonized" ; -- compound agonize_V ;
-lin ionize_V = mkV "ionize" "ionized" "ionized" ;
-lin lionize_V = mkV "lionize" "lionized" "lionized" ; -- notcompound ionize_V ;
-lin revolutionize_V = mkV "revolutionize" "revolutionized" "revolutionized" ; -- compound ionize_V ;
-lin colonize_V = mkV "colonize" "colonized" "colonized" ;
-lin decolonize_V = mkV "decolonize" "decolonized" "decolonized" ; -- compound colonize_V ;
-lin demonize_V = mkV "demonize" "demonized" "demonized" ;
-lin harmonize_V = mkV "harmonize" "harmonized" "harmonized" ;
-lin sermonize_V = mkV "sermonize" "sermonized" "sermonized" ;
-lin canonize_V = mkV "canonize" "canonized" "canonized" ;
-lin synchronize_V = mkV "synchronize" "synchronized" "synchronized" ;
-lin patronize_V = mkV "patronize" "patronized" "patronized" ;
-lin modernize_V = mkV "modernize" "modernized" "modernized" ;
-lin fraternize_V = mkV "fraternize" "fraternized" "fraternized" ;
-lin westernize_V = mkV "westernize" "westernized" "westernized" ;
-lin immunize_V = mkV "immunize" "immunized" "immunized" ;
-lin barbarize_V = mkV "barbarize" "barbarized" "barbarized" ;
-lin vulgarize_V = mkV "vulgarize" "vulgarized" "vulgarized" ;
-lin plagiarize_V = mkV "plagiarize" "plagiarized" "plagiarized" ;
-lin familiarize_V = mkV "familiarize" "familiarized" "familiarized" ;
-lin polarize_V = mkV "polarize" "polarized" "polarized" ;
-lin secularize_V = mkV "secularize" "secularized" "secularized" ;
-lin particularize_V = mkV "particularize" "particularized" "particularized" ;
-lin circularize_V = mkV "circularize" "circularized" "circularized" ;
-lin regularize_V = mkV "regularize" "regularized" "regularized" ;
-lin singularize_V = mkV "singularize" "singularized" "singularized" ;
-lin popularize_V = mkV "popularize" "popularized" "popularized" ;
-lin summarize_V = mkV "summarize" "summarized" "summarized" ;
-lin demilitarize_V = mkV "demilitarize" "demilitarized" "demilitarized" ;
-lin remilitarize_V = mkV "remilitarize" "remilitarized" "remilitarized" ;
-lin rubberize_V = mkV "rubberize" "rubberized" "rubberized" ;
-lin mercerize_V = mkV "mercerize" "mercerized" "mercerized" ;
-lin slenderize_V = mkV "slenderize" "slenderized" "slenderized" ;
-lin bowdlerize_V = mkV "bowdlerize" "bowdlerized" "bowdlerized" ;
-lin mesmerize_V = mkV "mesmerize" "mesmerized" "mesmerized" ;
-lin pauperize_V = mkV "pauperize" "pauperized" "pauperized" ;
-lin characterize_V = mkV "characterize" "characterized" "characterized" ;
-lin cauterize_V = mkV "cauterize" "cauterized" "cauterized" ;
-lin computerize_V = mkV "computerize" "computerized" "computerized" ;
-lin pulverize_V = mkV "pulverize" "pulverized" "pulverized" ;
-lin satirize_V = mkV "satirize" "satirized" "satirized" ;
-lin deodorize_V = mkV "deodorize" "deodorized" "deodorized" ;
-lin theorize_V = mkV "theorize" "theorized" "theorized" ;
-lin categorize_V = mkV "categorize" "categorized" "categorized" ;
-lin authorize_V = mkV "authorize" "authorized" "authorized" ;
-lin exteriorize_V = mkV "exteriorize" "exteriorized" "exteriorized" ;
-lin glamorize_V = mkV "glamorize" "glamorized" "glamorized" ;
-lin memorize_V = mkV "memorize" "memorized" "memorized" ;
-lin vaporize_V = mkV "vaporize" "vaporized" "vaporized" ;
-lin temporize_V = mkV "temporize" "temporized" "temporized" ;
-lin terrorize_V = mkV "terrorize" "terrorized" "terrorized" ;
-lin factorize_V = mkV "factorize" "factorized" "factorized" ;
-lin motorize_V = mkV "motorize" "motorized" "motorized" ;
-lin prize_V = mkV "prize" "prized" "prized" ;
-lin pasteurize_V = mkV "pasteurize" "pasteurized" "pasteurized" ;
-lin miniaturize_V = mkV "miniaturize" "miniaturized" "miniaturized" ;
-lin size_V = mkV "size" "sized" "sized" ;
-lin emphasize_V = mkV "emphasize" "emphasized" "emphasized" ; -- compound size_V ;
-lin 'de-emphasize_V' = mkV "de-emphasize" "de-emphasized" "de-emphasized" ; -- compound size_V ;
-lin 're-emphasize_V' = mkV "re-emphasize" "re-emphasized" "re-emphasized" ; -- compound size_V ;
-lin overemphasize_V = mkV "overemphasize" "overemphasized" "overemphasized" ; -- compound size_V ;
-lin fantasize_V = mkV "fantasize" "fantasized" "fantasized" ; -- compound size_V ;
-lin synthesize_V = mkV "synthesize" "synthesized" "synthesized" ; -- compound size_V ;
-lin hypothesize_V = mkV "hypothesize" "hypothesized" "hypothesized" ; -- compound size_V ;
-lin downsize_V = mkV "downsize" "downsized" "downsized" ; -- compound size_V ;
-lin capsize_V = mkV "capsize" "capsized" "capsized" ; -- compound size_V ;
-lin dramatize_V = mkV "dramatize" "dramatized" "dramatized" ;
-lin anathematize_V = mkV "anathematize" "anathematized" "anathematized" ;
-lin systematize_V = mkV "systematize" "systematized" "systematized" ;
-lin stigmatize_V = mkV "stigmatize" "stigmatized" "stigmatized" ;
-lin dogmatize_V = mkV "dogmatize" "dogmatized" "dogmatized" ;
-lin acclimatize_V = mkV "acclimatize" "acclimatized" "acclimatized" ;
-lin legitimatize_V = mkV "legitimatize" "legitimatized" "legitimatized" ;
-lin democratize_V = mkV "democratize" "democratized" "democratized" ;
-lin privatize_V = mkV "privatize" "privatized" "privatized" ;
-lin anaesthetize_V = mkV "anaesthetize" "anaesthetized" "anaesthetized" ;
-lin anesthetize_V = mkV "anesthetize" "anesthetized" "anesthetized" ;
-lin sovietize_V = mkV "sovietize" "sovietized" "sovietized" ;
-lin magnetize_V = mkV "magnetize" "magnetized" "magnetized" ;
-lin demagnetize_V = mkV "demagnetize" "demagnetized" "demagnetized" ; -- compound magnetize_V ;
-lin monetize_V = mkV "monetize" "monetized" "monetized" ;
-lin demonetize_V = mkV "demonetize" "demonetized" "demonetized" ; -- compound monetize_V ;
-lin sanitize_V = mkV "sanitize" "sanitized" "sanitized" ;
-lin sensitize_V = mkV "sensitize" "sensitized" "sensitized" ;
-lin desensitize_V = mkV "desensitize" "desensitized" "desensitized" ; -- compound sensitize_V ;
-lin photosensitize_V = mkV "photosensitize" "photosensitized" "photosensitized" ; -- compound sensitize_V ;
-lin hypnotize_V = mkV "hypnotize" "hypnotized" "hypnotized" ;
-lin baptize_V = mkV "baptize" "baptized" "baptized" ;
-lin amortize_V = mkV "amortize" "amortized" "amortized" ;
-lin deputize_V = mkV "deputize" "deputized" "deputized" ;
-lin proselytize_V = mkV "proselytize" "proselytized" "proselytized" ;
-lin soliloquize_V = mkV "soliloquize" "soliloquized" "soliloquized" ;
-lin collectivize_V = mkV "collectivize" "collectivized" "collectivized" ;
-lin bronze_V = mkV "bronze" "bronzed" "bronzed" ;
-lin doze_V = mkV "doze" "dozed" "dozed" ;
-lin bulldoze_V = mkV "bulldoze" "bulldozed" "bulldozed" ; -- compound doze_V ;
-lin ooze_V = mkV "ooze" "oozed" "oozed" ;
-lin booze_V = mkV "booze" "boozed" "boozed" ; -- notcompound ooze_V ;
-lin snooze_V = mkV "snooze" "snoozed" "snoozed" ; -- notcompound ooze_V ;
-lin analyze_V = mkV "analyze" "analyzed" "analyzed" ;
-lin psychoanalyze_V = mkV "psychoanalyze" "psychoanalyzed" "psychoanalyzed" ; -- compound analyze_V ;
-lin paralyze_V = mkV "paralyze" "paralyzed" "paralyzed" ;
-lin hide_V = mkV "hide" "hid" "hidden" ;
-lin stride_V = mkV "stride" "strod" "stridden" ;
-lin bestride_V = mkV "bestride" "bestrod" "bestridden" ; -- compound stride_V ;
-lin weave_2_V = mkV "weave" "weaved" "woven" ;
-lin interweave_2_V = mkV "interweave" "interweaved" "interwoven" ; -- compound weave_2_V ;
-lin shave_2_V = mkV "shave" "shaved" "shaven" ;
-lin prove_V = mkV "prove" "proved" "proven" ;
-lin weave_3_V = mkV "weave" "wove" "weaved" ;
-lin interweave_3_V = mkV "interweave" "interwove" "interweaved" ; -- compound weave_3_V ;
-lin dive_2_V = mkV "dive" "dove" "dived" ;
-lin make_V = mkV "make" "made" "made" ;
-lin remake_V = mkV "remake" "remade" "remade" ; -- compound make_V ;
-lin come_1_V = mkV "come" "came" "come" ;
-lin become_V = mkV "become" "became" "become" ; -- compound come_1_V ;
-lin overcome_1_V = mkV "overcome" "overcame" "overcome" ; -- compound come_1_V ;
-lin shine_V = mkV "shine" "shone" "shone" ;
-lin outshine_V = mkV "outshine" "outshone" "outshone" ; -- compound shine_V ;
-lin extrapolate_V = mkV "extrapolate" "extrapolate" "extrapolate" ;
-lin extemporize_V = mkV "extemporize" "extemporize" "extemporize" ;
-lin ride_V = mkV "ride" "rode" "ridden" ;
-lin override_V = mkV "override" "overrode" "overridden" ; -- compound ride_V ;
-lin outride_V = mkV "outride" "outrode" "outridden" ; -- compound ride_V ;
-lin awake_V = mkV "awake" "awoke" "awoken" ;
-lin rise_V = mkV "rise" "rose" "risen" ;
-lin arise_V = mkV "arise" "arose" "arisen" ; -- notcompound rise_V ;
-lin choose_V = mkV "choose" "chose" "chosen" ;
-lin smite_V = mkV "smite" "smote" "smitten" ;
-lin write_V = mkV "write" "wrote" "written" ;
-lin rewrite_V = mkV "rewrite" "rewrote" "rewritten" ; -- compound write_V ;
-lin underwrite_2_V = mkV "underwrite" "underwrote" "underwritten" ; -- compound write_V ;
-lin weave_4_V = mkV "weave" "wove" "woven" ;
-lin interweave_4_V = mkV "interweave" "interwove" "interwoven" ; -- compound weave_4_V ;
-lin give_1_V = mkV "give" "gave" "given" ;
-lin forgive_V = mkV "forgive" "forgave" "forgiven" ; -- compound give_1_V ;
-lin misgive_V = mkV "misgive" "misgave" "misgiven" ; -- compound give_1_V ;
-lin drive_2_V = mkV "drive" "drove" "driven" ;
-lin 'test-drive_V' = mkV "test-drive" "test-drove" "test-driven" ; -- compound drive_2_V ;
-lin strive_V = mkV "strive" "strove" "striven" ;
-lin freeze_2_V = mkV "freeze" "froze" "frozen" ;
-lin 'quick-freeze_V' = mkV "quick-freeze" "quick-froze" "quick-frozen" ; -- compound freeze_2_V ;
-lin 'deep-freeze_V' = mkV "deep-freeze" "deep-froze" "deep-frozen" ; -- compound freeze_2_V ;
-lin strike_2_V = mkV "strike" "struck" "struck" ;
-lin shake_V = mkV "shake" "shook" "shaken" ;
-lin forsake_V = mkV "forsake" "forsook" "forsaken" ;
-lin take_2_V = mkV "take" "took" "taken" ;
-lin betake_V = mkV "betake" "betook" "betaken" ; -- compound take_2_V ;
-lin retake_V = mkV "retake" "retook" "retaken" ; -- compound take_2_V ;
-lin partake_V = mkV "partake" "partook" "partaken" ; -- compound take_2_V ;
-lin undertake_V = mkV "undertake" "undertook" "undertaken" ; -- compound take_2_V ;
-lin overtake_V = mkV "overtake" "overtook" "overtaken" ; -- compound take_2_V ;
-lin mistake_V = mkV "mistake" "mistook" "mistaken" ; -- compound take_2_V ;
-lin bite_V = mkV "bite" "bit" "bitten" ;
-lin backbite_V = mkV "backbite" "backbit" "backbitten" ; -- compound bite_V ;
-lin lose_2_V = mkV "lose" "lost" "lost" ;
-lin leave_2_V = mkV "leave" "left" "left" ;
-lin see_V = mkV "see" "saw" "seen" ;
-lin foresee_V = mkV "foresee" "foresaw" "foreseen" ; -- compound see_V ;
-lin oversee_V = mkV "oversee" "oversaw" "overseen" ; -- compound see_V ;
-lin fricassee_V = mkV "fricassee" "fricassaw" "fricasseen" ; -- compound see_V ;
-lin lie_1_V = mkV "lie" "lay" "lain" ;
-lin belie_V = mkV "belie" "belay" "belain" ; -- compound lie_1_V ;
-lin underlie_V = mkV "underlie" "underlay" "underlain" ; -- compound lie_1_V ;
-lin overlie_V = mkV "overlie" "overlay" "overlain" ; -- compound lie_1_V ;
-lin leaf_V = mkV "leaf" "leafed" "leafed" ;
-lin loaf_V = mkV "loaf" "loafed" "loafed" ;
-lin beef_V = mkV "beef" "beefed" "beefed" ;
-lin reef_V = mkV "reef" "reefed" "reefed" ;
-lin brief_V = mkV "brief" "briefed" "briefed" ;
-lin debrief_V = mkV "debrief" "debriefed" "debriefed" ; -- compound brief_V ;
-lin faff_V = mkV "faff" "faffed" "faffed" ;
-lin chaff_V = mkV "chaff" "chaffed" "chaffed" ;
-lin naff_V = mkV "naff" "naffed" "naffed" ;
-lin spaff_V = mkV "spaff" "spaffed" "spaffed" ;
-lin staff_V = mkV "staff" "staffed" "staffed" ;
-lin quaff_V = mkV "quaff" "quaffed" "quaffed" ;
-lin eff_V = mkV "eff" "effed" "effed" ;
-lin biff_V = mkV "biff" "biffed" "biffed" ;
-lin miff_V = mkV "miff" "miffed" "miffed" ;
-lin sniff_V = mkV "sniff" "sniffed" "sniffed" ;
-lin scoff_V = mkV "scoff" "scoffed" "scoffed" ;
-lin doff_V = mkV "doff" "doffed" "doffed" ;
-lin buff_V = mkV "buff" "buffed" "buffed" ;
-lin rebuff_V = mkV "rebuff" "rebuffed" "rebuffed" ; -- compound buff_V ;
-lin cuff_V = mkV "cuff" "cuffed" "cuffed" ;
-lin handcuff_V = mkV "handcuff" "handcuffed" "handcuffed" ; -- compound cuff_V ;
-lin scuff_V = mkV "scuff" "scuffed" "scuffed" ; -- notcompound cuff_V ;
-lin duff_V = mkV "duff" "duffed" "duffed" ;
-lin huff_V = mkV "huff" "huffed" "huffed" ;
-lin luff_V = mkV "luff" "luffed" "luffed" ;
-lin bluff_V = mkV "bluff" "bluffed" "bluffed" ; -- notcompound luff_V ;
-lin fluff_V = mkV "fluff" "fluffed" "fluffed" ; -- notcompound luff_V ;
-lin muff_V = mkV "muff" "muffed" "muffed" ;
-lin snuff_V = mkV "snuff" "snuffed" "snuffed" ;
-lin puff_V = mkV "puff" "puffed" "puffed" ;
-lin ruff_V = mkV "ruff" "ruffed" "ruffed" ;
-lin stuff_V = mkV "stuff" "stuffed" "stuffed" ;
-lin golf_V = mkV "golf" "golfed" "golfed" ;
-lin wolf_V = mkV "wolf" "wolfed" "wolfed" ;
-lin engulf_V = mkV "engulf" "engulfed" "engulfed" ;
-lin goof_V = mkV "goof" "goofed" "goofed" ;
-lin spoof_V = mkV "spoof" "spoofed" "spoofed" ;
-lin roof_V = mkV "roof" "roofed" "roofed" ;
-lin proof_V = mkV "proof" "proofed" "proofed" ; -- notcompound roof_V ;
-lin soundproof_V = mkV "soundproof" "soundproofed" "soundproofed" ; -- compound roof_V ;
-lin reproof_V = mkV "reproof" "reproofed" "reproofed" ; -- compound roof_V ;
-lin mothproof_V = mkV "mothproof" "mothproofed" "mothproofed" ; -- compound roof_V ;
-lin waterproof_V = mkV "waterproof" "waterproofed" "waterproofed" ; -- compound roof_V ;
-lin scarf_V = mkV "scarf" "scarfed" "scarfed" ;
-lin dwarf_V = mkV "dwarf" "dwarfed" "dwarfed" ;
-lin turf_V = mkV "turf" "turfed" "turfed" ;
-lin bag_V = mkV "bag" "bagged" "bagged" ;
-lin debag_V = mkV "debag" "debagged" "debagged" ; -- compound bag_V ;
-lin fag_V = mkV "fag" "fagged" "fagged" ;
-lin gag_V = mkV "gag" "gagged" "gagged" ;
-lin shag_V = mkV "shag" "shagged" "shagged" ;
-lin jag_V = mkV "jag" "jagged" "jagged" ;
-lin lag_V = mkV "lag" "lagged" "lagged" ;
-lin clag_V = mkV "clag" "clagged" "clagged" ; -- notcompound lag_V ;
-lin flag_V = mkV "flag" "flagged" "flagged" ; -- notcompound lag_V ;
-lin slag_V = mkV "slag" "slagged" "slagged" ; -- notcompound lag_V ;
-lin nag_V = mkV "nag" "nagged" "nagged" ;
-lin snag_V = mkV "snag" "snagged" "snagged" ; -- notcompound nag_V ;
-lin rag_V = mkV "rag" "ragged" "ragged" ;
-lin brag_V = mkV "brag" "bragged" "bragged" ; -- notcompound rag_V ;
-lin scrag_V = mkV "scrag" "scragged" "scragged" ; -- notcompound rag_V ;
-lin drag_V = mkV "drag" "dragged" "dragged" ; -- notcompound rag_V ;
-lin sag_V = mkV "sag" "sagged" "sagged" ;
-lin tag_V = mkV "tag" "tagged" "tagged" ;
-lin wag_V = mkV "wag" "wagged" "wagged" ;
-lin zigzag_V = mkV "zigzag" "zigzagged" "zigzagged" ;
-lin beg_V = mkV "beg" "begged" "begged" ;
-lin blackleg_V = mkV "blackleg" "blacklegged" "blacklegged" ;
-lin bootleg_V = mkV "bootleg" "bootlegged" "bootlegged" ;
-lin peg_V = mkV "peg" "pegged" "pegged" ;
-lin veg_V = mkV "veg" "vegged" "vegged" ;
-lin egg_V = mkV "egg" "egged" "egged" ;
-lin rigg_V = mkV "rigg" "rigged" "rigged" ;
-lin big_V = mkV "big" "bigged" "bigged" ;
-lin jig_V = mkV "jig" "jigged" "jigged" ;
-lin rejig_V = mkV "rejig" "rejigged" "rejigged" ; -- compound jig_V ;
-lin pig_V = mkV "pig" "pigged" "pigged" ;
-lin rig_V = mkV "rig" "rigged" "rigged" ;
-lin wig_V = mkV "wig" "wigged" "wigged" ;
-lin swig_V = mkV "swig" "swigged" "swigged" ; -- notcompound wig_V ;
-lin twig_V = mkV "twig" "twigged" "twigged" ; -- notcompound wig_V ;
-lin bang_V = mkV "bang" "banged" "banged" ;
-lin gang_V = mkV "gang" "ganged" "ganged" ;
-lin hang_1_V = mkV "hang" "hanged" "hanged" ;
-lin whang_V = mkV "whang" "whanged" "whanged" ; -- notcompound hang_1_V ;
-lin clang_V = mkV "clang" "clanged" "clanged" ;
-lin slang_V = mkV "slang" "slanged" "slanged" ;
-lin rang_V = mkV "rang" "ranged" "ranged" ;
-lin twang_V = mkV "twang" "twanged" "twanged" ;
-lin 'rubber-necking_V' = mkV "rubber-necking" "rubber-neckinged" "rubber-neckinged" ;
-lin backpedaling_V = mkV "backpedaling" "backpedalinged" "backpedalinged" ;
-lin ping_V = mkV "ping" "pinged" "pinged" ;
-lin ring_2_V = mkV "ring" "ringed" "ringed" ;
-lin ting_V = mkV "ting" "tinged" "tinged" ;
-lin countersuing_V = mkV "countersuing" "countersuinged" "countersuinged" ;
-lin wing_V = mkV "wing" "winged" "winged" ;
-lin swing_1_V = mkV "swing" "swinged" "swinged" ; -- notcompound wing_V ;
-lin gong_V = mkV "gong" "gonged" "gonged" ;
-lin long_V = mkV "long" "longed" "longed" ;
-lin belong_V = mkV "belong" "belonged" "belonged" ; -- compound long_V ;
-lin prolong_V = mkV "prolong" "prolonged" "prolonged" ; -- compound long_V ;
-lin throng_V = mkV "throng" "thronged" "thronged" ;
-lin wrong_V = mkV "wrong" "wronged" "wronged" ;
-lin bung_V = mkV "bung" "bunged" "bunged" ;
-lin hung_V = mkV "hung" "hunged" "hunged" ;
-lin bog_V = mkV "bog" "bogged" "bogged" ;
-lin dog_V = mkV "dog" "dogged" "dogged" ;
-lin fog_V = mkV "fog" "fogged" "fogged" ;
-lin hog_V = mkV "hog" "hogged" "hogged" ;
-lin jog_V = mkV "jog" "jogged" "jogged" ;
-lin log_V = mkV "log" "logged" "logged" ;
-lin catalog_V = mkV "catalog" "catalogged" "catalogged" ; -- compound log_V ;
-lin clog_V = mkV "clog" "clogged" "clogged" ; -- notcompound log_V ;
-lin flog_V = mkV "flog" "flogged" "flogged" ; -- notcompound log_V ;
-lin slog_V = mkV "slog" "slogged" "slogged" ; -- notcompound log_V ;
-lin footslog_V = mkV "footslog" "footslogged" "footslogged" ; -- compound log_V ;
-lin snog_V = mkV "snog" "snogged" "snogged" ;
-lin leapfrog_V = mkV "leapfrog" "leapfrogged" "leapfrogged" ;
-lin tog_V = mkV "tog" "togged" "togged" ;
-lin bug_V = mkV "bug" "bugged" "bugged" ;
-lin debug_V = mkV "debug" "debugged" "debugged" ; -- compound bug_V ;
-lin humbug_V = mkV "humbug" "humbugged" "humbugged" ; -- compound bug_V ;
-lin dug_V = mkV "dug" "dugged" "dugged" ;
-lin hug_V = mkV "hug" "hugged" "hugged" ;
-lin chug_V = mkV "chug" "chugged" "chugged" ; -- notcompound hug_V ;
-lin jug_V = mkV "jug" "jugged" "jugged" ;
-lin lug_V = mkV "lug" "lugged" "lugged" ;
-lin plug_V = mkV "plug" "plugged" "plugged" ; -- notcompound lug_V ;
-lin unplug_V = mkV "unplug" "unplugged" "unplugged" ; -- compound lug_V ;
-lin slug_V = mkV "slug" "slugged" "slugged" ; -- notcompound lug_V ;
-lin mug_V = mkV "mug" "mugged" "mugged" ;
-lin drug_V = mkV "drug" "drugged" "drugged" ;
-lin shrug_V = mkV "shrug" "shrugged" "shrugged" ;
-lin tug_V = mkV "tug" "tugged" "tugged" ;
-lin dig_V = mkV "dig" "dug" "dug" ;
-lin hang_2_V = mkV "hang" "hung" "hung" ;
-lin overhang_V = mkV "overhang" "overhung" "overhung" ; -- compound hang_2_V ;
-lin ring_1_V = mkV "ring" "rang" "rung" ;
-lin spring_1_V = mkV "spring" "sprang" "sprung" ; -- notcompound ring_1_V ;
-lin sing_V = mkV "sing" "sang" "sung" ;
-lin cling_V = mkV "cling" "clung" "clung" ;
-lin fling_V = mkV "fling" "flung" "flung" ;
-lin sling_V = mkV "sling" "slung" "slung" ;
-lin spring_2_V = mkV "spring" "sprung" "sprung" ;
-lin string_V = mkV "string" "strung" "strung" ;
-lin hamstring_V = mkV "hamstring" "hamstrung" "hamstrung" ; -- compound string_V ;
-lin wring_V = mkV "wring" "wrung" "wrung" ;
-lin sting_V = mkV "sting" "stung" "stung" ;
-lin swing_2_V = mkV "swing" "swung" "swung" ;
-lin bring_V = mkV "bring" "brought" "brought" ;
-lin hurrah_V = mkV "hurrah" "hurrahed" "hurrahed" ;
-lin beach_V = mkV "beach" "beached" "beached" ;
-lin leach_V = mkV "leach" "leached" "leached" ;
-lin bleach_V = mkV "bleach" "bleached" "bleached" ; -- notcompound leach_V ;
-lin pleach_V = mkV "pleach" "pleached" "pleached" ; -- notcompound leach_V ;
-lin peach_V = mkV "peach" "peached" "peached" ;
-lin impeach_V = mkV "impeach" "impeached" "impeached" ; -- compound peach_V ;
-lin reach_V = mkV "reach" "reached" "reached" ;
-lin breach_V = mkV "breach" "breached" "breached" ; -- notcompound reach_V ;
-lin preach_V = mkV "preach" "preached" "preached" ; -- notcompound reach_V ;
-lin overreach_V = mkV "overreach" "overreached" "overreached" ; -- compound reach_V ;
-lin stomach_V = mkV "stomach" "stomached" "stomached" ;
-lin coach_V = mkV "coach" "coached" "coached" ;
-lin poach_V = mkV "poach" "poached" "poached" ;
-lin broach_V = mkV "broach" "broached" "broached" ;
-lin encroach_V = mkV "encroach" "encroached" "encroached" ;
-lin reproach_V = mkV "reproach" "reproached" "reproached" ;
-lin approach_V = mkV "approach" "approached" "approached" ;
-lin detach_V = mkV "detach" "detached" "detached" ;
-lin attach_V = mkV "attach" "attached" "attached" ;
-lin screech_V = mkV "screech" "screeched" "screeched" ;
-lin beseech_V = mkV "beseech" "beseeched" "beseeched" ;
-lin enrich_V = mkV "enrich" "enriched" "enriched" ;
-lin sandwich_V = mkV "sandwich" "sandwiched" "sandwiched" ;
-lin belch_V = mkV "belch" "belched" "belched" ;
-lin squelch_V = mkV "squelch" "squelched" "squelched" ;
-lin filch_V = mkV "filch" "filched" "filched" ;
-lin mulch_V = mkV "mulch" "mulched" "mulched" ;
-lin blanch_V = mkV "blanch" "blanched" "blanched" ;
-lin branch_V = mkV "branch" "branched" "branched" ;
-lin stanch_V = mkV "stanch" "stanched" "stanched" ;
-lin blench_V = mkV "blench" "blenched" "blenched" ;
-lin clench_V = mkV "clench" "clenched" "clenched" ;
-lin drench_V = mkV "drench" "drenched" "drenched" ;
-lin trench_V = mkV "trench" "trenched" "trenched" ;
-lin retrench_V = mkV "retrench" "retrenched" "retrenched" ; -- compound trench_V ;
-lin entrench_V = mkV "entrench" "entrenched" "entrenched" ; -- compound trench_V ;
-lin intrench_V = mkV "intrench" "intrenched" "intrenched" ; -- compound trench_V ;
-lin wrench_V = mkV "wrench" "wrenched" "wrenched" ;
-lin quench_V = mkV "quench" "quenched" "quenched" ;
-lin wench_V = mkV "wench" "wenched" "wenched" ;
-lin inch_V = mkV "inch" "inched" "inched" ;
-lin cinch_V = mkV "cinch" "cinched" "cinched" ; -- notcompound inch_V ;
-lin clinch_V = mkV "clinch" "clinched" "clinched" ; -- notcompound inch_V ;
-lin flinch_V = mkV "flinch" "flinched" "flinched" ; -- notcompound inch_V ;
-lin pinch_V = mkV "pinch" "pinched" "pinched" ; -- notcompound inch_V ;
-lin winch_V = mkV "winch" "winched" "winched" ; -- notcompound inch_V ;
-lin launch_V = mkV "launch" "launched" "launched" ;
-lin staunch_V = mkV "staunch" "staunched" "staunched" ;
-lin bunch_V = mkV "bunch" "bunched" "bunched" ;
-lin hunch_V = mkV "hunch" "hunched" "hunched" ;
-lin lunch_V = mkV "lunch" "lunched" "lunched" ;
-lin munch_V = mkV "munch" "munched" "munched" ;
-lin punch_V = mkV "punch" "punched" "punched" ;
-lin crunch_V = mkV "crunch" "crunched" "crunched" ;
-lin scrunch_V = mkV "scrunch" "scrunched" "scrunched" ; -- notcompound crunch_V ;
-lin lynch_V = mkV "lynch" "lynched" "lynched" ;
-lin mooch_V = mkV "mooch" "mooched" "mooched" ;
-lin arch_V = mkV "arch" "arched" "arched" ;
-lin search_V = mkV "search" "searched" "searched" ; -- compound arch_V ;
-lin research_V = mkV "research" "researched" "researched" ; -- compound arch_V ;
-lin march_V = mkV "march" "marched" "marched" ; -- notcompound arch_V ;
-lin frogmarch_V = mkV "frogmarch" "frogmarched" "frogmarched" ; -- compound arch_V ;
-lin outmarch_V = mkV "outmarch" "outmarched" "outmarched" ; -- compound arch_V ;
-lin parch_V = mkV "parch" "parched" "parched" ; -- notcompound arch_V ;
-lin overarch_V = mkV "overarch" "overarched" "overarched" ; -- compound arch_V ;
-lin starch_V = mkV "starch" "starched" "starched" ; -- notcompound arch_V ;
-lin perch_V = mkV "perch" "perched" "perched" ;
-lin birch_V = mkV "birch" "birched" "birched" ;
-lin smirch_V = mkV "smirch" "smirched" "smirched" ;
-lin besmirch_V = mkV "besmirch" "besmirched" "besmirched" ; -- compound smirch_V ;
-lin scorch_V = mkV "scorch" "scorched" "scorched" ;
-lin torch_V = mkV "torch" "torched" "torched" ;
-lin lurch_V = mkV "lurch" "lurched" "lurched" ;
-lin hatch_V = mkV "hatch" "hatched" "hatched" ;
-lin thatch_V = mkV "thatch" "thatched" "thatched" ; -- notcompound hatch_V ;
-lin latch_V = mkV "latch" "latched" "latched" ;
-lin match_V = mkV "match" "matched" "matched" ;
-lin outmatch_V = mkV "outmatch" "outmatched" "outmatched" ; -- compound match_V ;
-lin snatch_V = mkV "snatch" "snatched" "snatched" ;
-lin patch_V = mkV "patch" "patched" "patched" ;
-lin despatch_V = mkV "despatch" "despatched" "despatched" ; -- compound patch_V ;
-lin dispatch_V = mkV "dispatch" "dispatched" "dispatched" ; -- compound patch_V ;
-lin scratch_V = mkV "scratch" "scratched" "scratched" ;
-lin watch_V = mkV "watch" "watched" "watched" ;
-lin etch_V = mkV "etch" "etched" "etched" ;
-lin fetch_V = mkV "fetch" "fetched" "fetched" ; -- notcompound etch_V ;
-lin sketch_V = mkV "sketch" "sketched" "sketched" ; -- notcompound etch_V ;
-lin retch_V = mkV "retch" "retched" "retched" ; -- notcompound etch_V ;
-lin stretch_V = mkV "stretch" "stretched" "stretched" ; -- notcompound etch_V ;
-lin itch_V = mkV "itch" "itched" "itched" ;
-lin bitch_V = mkV "bitch" "bitched" "bitched" ; -- notcompound itch_V ;
-lin ditch_V = mkV "ditch" "ditched" "ditched" ; -- notcompound itch_V ;
-lin hitch_V = mkV "hitch" "hitched" "hitched" ; -- notcompound itch_V ;
-lin unhitch_V = mkV "unhitch" "unhitched" "unhitched" ; -- compound itch_V ;
-lin snitch_V = mkV "snitch" "snitched" "snitched" ; -- notcompound itch_V ;
-lin pitch_V = mkV "pitch" "pitched" "pitched" ; -- notcompound itch_V ;
-lin stitch_V = mkV "stitch" "stitched" "stitched" ; -- notcompound itch_V ;
-lin hemstitch_V = mkV "hemstitch" "hemstitched" "hemstitched" ; -- compound itch_V ;
-lin bewitch_V = mkV "bewitch" "bewitched" "bewitched" ; -- compound itch_V ;
-lin switch_V = mkV "switch" "switched" "switched" ; -- notcompound itch_V ;
-lin twitch_V = mkV "twitch" "twitched" "twitched" ; -- notcompound itch_V ;
-lin botch_V = mkV "botch" "botched" "botched" ;
-lin scotch_V = mkV "scotch" "scotched" "scotched" ;
-lin hopscotch_V = mkV "hopscotch" "hopscotched" "hopscotched" ; -- compound scotch_V ;
-lin notch_V = mkV "notch" "notched" "notched" ;
-lin clutch_V = mkV "clutch" "clutched" "clutched" ;
-lin declutch_V = mkV "declutch" "declutched" "declutched" ; -- compound clutch_V ;
-lin debauch_V = mkV "debauch" "debauched" "debauched" ;
-lin debouch_V = mkV "debouch" "debouched" "debouched" ;
-lin couch_V = mkV "couch" "couched" "couched" ;
-lin slouch_V = mkV "slouch" "slouched" "slouched" ;
-lin pouch_V = mkV "pouch" "pouched" "pouched" ;
-lin crouch_V = mkV "crouch" "crouched" "crouched" ;
-lin grouch_V = mkV "grouch" "grouched" "grouched" ;
-lin touch_V = mkV "touch" "touched" "touched" ;
-lin retouch_V = mkV "retouch" "retouched" "retouched" ; -- compound touch_V ;
-lin vouch_V = mkV "vouch" "vouched" "vouched" ;
-lin avouch_V = mkV "avouch" "avouched" "avouched" ; -- notcompound vouch_V ;
-lin psych_V = mkV "psych" "psyched" "psyched" ;
-lin sleigh_V = mkV "sleigh" "sleighed" "sleighed" ;
-lin neigh_V = mkV "neigh" "neighed" "neighed" ;
-lin inveigh_V = mkV "inveigh" "inveighed" "inveighed" ;
-lin weigh_V = mkV "weigh" "weighed" "weighed" ;
-lin outweigh_V = mkV "outweigh" "outweighed" "outweighed" ; -- compound weigh_V ;
-lin sigh_V = mkV "sigh" "sighed" "sighed" ;
-lin laugh_V = mkV "laugh" "laughed" "laughed" ;
-lin bellylaugh_V = mkV "bellylaugh" "bellylaughed" "bellylaughed" ; -- compound laugh_V ;
-lin cough_V = mkV "cough" "coughed" "coughed" ;
-lin hiccough_V = mkV "hiccough" "hiccoughed" "hiccoughed" ; -- compound cough_V ;
-lin plough_V = mkV "plough" "ploughed" "ploughed" ;
-lin slough_V = mkV "slough" "sloughed" "sloughed" ;
-lin rough_V = mkV "rough" "roughed" "roughed" ;
-lin trough_V = mkV "trough" "troughed" "troughed" ; -- notcompound rough_V ;
-lin sough_V = mkV "sough" "soughed" "soughed" ;
-lin 'pooh-pooh_V' = mkV "pooh-pooh" "pooh-poohed" "pooh-poohed" ;
-lin paragraph_V = mkV "paragraph" "paragraphed" "paragraphed" ;
-lin telegraph_V = mkV "telegraph" "telegraphed" "telegraphed" ;
-lin mimeograph_V = mkV "mimeograph" "mimeographed" "mimeographed" ;
-lin lithograph_V = mkV "lithograph" "lithographed" "lithographed" ;
-lin heliograph_V = mkV "heliograph" "heliographed" "heliographed" ;
-lin photograph_V = mkV "photograph" "photographed" "photographed" ;
-lin autograph_V = mkV "autograph" "autographed" "autographed" ;
-lin triumph_V = mkV "triumph" "triumphed" "triumphed" ;
-lin galumph_V = mkV "galumph" "galumphed" "galumphed" ;
-lin bash_V = mkV "bash" "bashed" "bashed" ;
-lin abash_V = mkV "abash" "abashed" "abashed" ; -- notcompound bash_V ;
-lin cash_V = mkV "cash" "cashed" "cashed" ;
-lin dash_V = mkV "dash" "dashed" "dashed" ;
-lin unleash_V = mkV "unleash" "unleashed" "unleashed" ;
-lin gash_V = mkV "gash" "gashed" "gashed" ;
-lin hash_V = mkV "hash" "hashed" "hashed" ;
-lin rehash_V = mkV "rehash" "rehashed" "rehashed" ; -- compound hash_V ;
-lin lash_V = mkV "lash" "lashed" "lashed" ;
-lin clash_V = mkV "clash" "clashed" "clashed" ; -- notcompound lash_V ;
-lin flash_V = mkV "flash" "flashed" "flashed" ; -- notcompound lash_V ;
-lin plash_V = mkV "plash" "plashed" "plashed" ; -- notcompound lash_V ;
-lin splash_V = mkV "splash" "splashed" "splashed" ; -- notcompound lash_V ;
-lin slash_V = mkV "slash" "slashed" "slashed" ; -- notcompound lash_V ;
-lin mash_V = mkV "mash" "mashed" "mashed" ;
-lin smash_V = mkV "smash" "smashed" "smashed" ; -- notcompound mash_V ;
-lin gnash_V = mkV "gnash" "gnashed" "gnashed" ;
-lin crash_V = mkV "crash" "crashed" "crashed" ;
-lin gatecrash_V = mkV "gatecrash" "gatecrashed" "gatecrashed" ; -- compound crash_V ;
-lin thrash_V = mkV "thrash" "thrashed" "thrashed" ;
-lin trash_V = mkV "trash" "trashed" "trashed" ;
-lin stash_V = mkV "stash" "stashed" "stashed" ;
-lin quash_V = mkV "quash" "quashed" "quashed" ;
-lin squash_V = mkV "squash" "squashed" "squashed" ; -- notcompound quash_V ;
-lin wash_V = mkV "wash" "washed" "washed" ;
-lin whitewash_V = mkV "whitewash" "whitewashed" "whitewashed" ; -- compound wash_V ;
-lin brainwash_V = mkV "brainwash" "brainwashed" "brainwashed" ; -- compound wash_V ;
-lin flesh_V = mkV "flesh" "fleshed" "fleshed" ;
-lin mesh_V = mkV "mesh" "meshed" "meshed" ;
-lin enmesh_V = mkV "enmesh" "enmeshed" "enmeshed" ; -- compound mesh_V ;
-lin refresh_V = mkV "refresh" "refreshed" "refreshed" ;
-lin thresh_V = mkV "thresh" "threshed" "threshed" ;
-lin rubbish_V = mkV "rubbish" "rubbished" "rubbished" ;
-lin furbish_V = mkV "furbish" "furbished" "furbished" ;
-lin refurbish_V = mkV "refurbish" "refurbished" "refurbished" ; -- compound furbish_V ;
-lin dish_V = mkV "dish" "dished" "dished" ;
-lin brandish_V = mkV "brandish" "brandished" "brandished" ; -- compound dish_V ;
-lin fish_V = mkV "fish" "fished" "fished" ;
-lin 'fly-fish_V' = mkV "fly-fish" "fly-fished" "fly-fished" ; -- compound fish_V ;
-lin establish_V = mkV "establish" "established" "established" ;
-lin 're-establish_V' = mkV "re-establish" "re-established" "re-established" ; -- compound establish_V ;
-lin disestablish_V = mkV "disestablish" "disestablished" "disestablished" ; -- compound establish_V ;
-lin publish_V = mkV "publish" "published" "published" ;
-lin relish_V = mkV "relish" "relished" "relished" ;
-lin embellish_V = mkV "embellish" "embellished" "embellished" ;
-lin abolish_V = mkV "abolish" "abolished" "abolished" ;
-lin demolish_V = mkV "demolish" "demolished" "demolished" ;
-lin polish_V = mkV "polish" "polished" "polished" ;
-lin accomplish_V = mkV "accomplish" "accomplished" "accomplished" ;
-lin famish_V = mkV "famish" "famished" "famished" ;
-lin blemish_V = mkV "blemish" "blemished" "blemished" ;
-lin skirmish_V = mkV "skirmish" "skirmished" "skirmished" ;
-lin banish_V = mkV "banish" "banished" "banished" ;
-lin vanish_V = mkV "vanish" "vanished" "vanished" ;
-lin replenish_V = mkV "replenish" "replenished" "replenished" ;
-lin finish_V = mkV "finish" "finished" "finished" ;
-lin diminish_V = mkV "diminish" "diminished" "diminished" ;
-lin admonish_V = mkV "admonish" "admonished" "admonished" ;
-lin astonish_V = mkV "astonish" "astonished" "astonished" ;
-lin garnish_V = mkV "garnish" "garnished" "garnished" ;
-lin tarnish_V = mkV "tarnish" "tarnished" "tarnished" ;
-lin varnish_V = mkV "varnish" "varnished" "varnished" ;
-lin burnish_V = mkV "burnish" "burnished" "burnished" ;
-lin furnish_V = mkV "furnish" "furnished" "furnished" ;
-lin refurnish_V = mkV "refurnish" "refurnished" "refurnished" ; -- compound furnish_V ;
-lin punish_V = mkV "punish" "punished" "punished" ;
-lin cherish_V = mkV "cherish" "cherished" "cherished" ;
-lin perish_V = mkV "perish" "perished" "perished" ;
-lin impoverish_V = mkV "impoverish" "impoverished" "impoverished" ;
-lin flourish_V = mkV "flourish" "flourished" "flourished" ;
-lin nourish_V = mkV "nourish" "nourished" "nourished" ;
-lin languish_V = mkV "languish" "languished" "languished" ;
-lin distinguish_V = mkV "distinguish" "distinguished" "distinguished" ;
-lin contradistinguish_V = mkV "contradistinguish" "contradistinguished" "contradistinguished" ; -- compound distinguish_V ;
-lin extinguish_V = mkV "extinguish" "extinguished" "extinguished" ;
-lin vanquish_V = mkV "vanquish" "vanquished" "vanquished" ;
-lin relinquish_V = mkV "relinquish" "relinquished" "relinquished" ;
-lin lavish_V = mkV "lavish" "lavished" "lavished" ;
-lin ravish_V = mkV "ravish" "ravished" "ravished" ;
-lin wish_V = mkV "wish" "wished" "wished" ;
-lin swish_V = mkV "swish" "swished" "swished" ; -- notcompound wish_V ;
-lin welsh_V = mkV "welsh" "welshed" "welshed" ;
-lin cosh_V = mkV "cosh" "coshed" "coshed" ;
-lin splosh_V = mkV "splosh" "sploshed" "sploshed" ;
-lin slosh_V = mkV "slosh" "sloshed" "sloshed" ;
-lin nosh_V = mkV "nosh" "noshed" "noshed" ;
-lin posh_V = mkV "posh" "poshed" "poshed" ;
-lin ambush_V = mkV "ambush" "ambushed" "ambushed" ;
-lin gush_V = mkV "gush" "gushed" "gushed" ;
-lin hush_V = mkV "hush" "hushed" "hushed" ;
-lin shush_V = mkV "shush" "shushed" "shushed" ; -- notcompound hush_V ;
-lin blush_V = mkV "blush" "blushed" "blushed" ;
-lin flush_V = mkV "flush" "flushed" "flushed" ;
-lin push_V = mkV "push" "pushed" "pushed" ;
-lin rush_V = mkV "rush" "rushed" "rushed" ;
-lin brush_V = mkV "brush" "brushed" "brushed" ; -- notcompound rush_V ;
-lin crush_V = mkV "crush" "crushed" "crushed" ; -- notcompound rush_V ;
-lin bath_V = mkV "bath" "bathed" "bathed" ;
-lin bequeath_V = mkV "bequeath" "bequeathed" "bequeathed" ;
-lin giveth_V = mkV "giveth" "givethed" "givethed" ;
-lin smooth_V = mkV "smooth" "smoothed" "smoothed" ;
-lin froth_V = mkV "froth" "frothed" "frothed" ;
-lin betroth_V = mkV "betroth" "betrothed" "betrothed" ;
-lin earth_V = mkV "earth" "earthed" "earthed" ;
-lin unearth_V = mkV "unearth" "unearthed" "unearthed" ; -- compound earth_V ;
-lin berth_V = mkV "berth" "berthed" "berthed" ;
-lin mouth_V = mkV "mouth" "mouthed" "mouthed" ;
-lin teach_V = mkV "teach" "taught" "taught" ;
-lin catch_V = mkV "catch" "caught" "caught" ;
-lin ski_V = mkV "ski" "IRREG" "IRREG" ;
-lin shanghai_V = mkV "shanghai" "shanghaied" "shanghaied" ;
-lin taxi_V = mkV "taxi" "taxied" "taxied" ;
-lin slink_V = mkV "slink" "IRREG" "IRREG" ;
-lin leak_V = mkV "leak" "leaked" "leaked" ;
-lin sneak_V = mkV "sneak" "sneaked" "sneaked" ;
-lin peak_V = mkV "peak" "peaked" "peaked" ;
-lin break_1_V = mkV "break" "breaked" "breaked" ;
-lin creak_V = mkV "creak" "creaked" "creaked" ;
-lin freak_V = mkV "freak" "freaked" "freaked" ;
-lin streak_V = mkV "streak" "streaked" "streaked" ;
-lin wreak_V = mkV "wreak" "wreaked" "wreaked" ;
-lin squeak_V = mkV "squeak" "squeaked" "squeaked" ;
-lin tweak_V = mkV "tweak" "tweaked" "tweaked" ;
-lin cloak_V = mkV "cloak" "cloaked" "cloaked" ;
-lin croak_V = mkV "croak" "croaked" "croaked" ;
-lin soak_V = mkV "soak" "soaked" "soaked" ;
-lin yak_V = mkV "yak" "yaked" "yaked" ;
-lin back_V = mkV "back" "backed" "backed" ;
-lin piggyback_V = mkV "piggyback" "piggybacked" "piggybacked" ; -- compound back_V ;
-lin hack_V = mkV "hack" "hacked" "hacked" ;
-lin shack_V = mkV "shack" "shacked" "shacked" ; -- notcompound hack_V ;
-lin whack_V = mkV "whack" "whacked" "whacked" ; -- notcompound hack_V ;
-lin jack_V = mkV "jack" "jacked" "jacked" ;
-lin highjack_V = mkV "highjack" "highjacked" "highjacked" ; -- compound jack_V ;
-lin hijack_V = mkV "hijack" "hijacked" "hijacked" ; -- compound jack_V ;
-lin lack_V = mkV "lack" "lacked" "lacked" ;
-lin black_V = mkV "black" "blacked" "blacked" ; -- notcompound lack_V ;
-lin clack_V = mkV "clack" "clacked" "clacked" ; -- notcompound lack_V ;
-lin slack_V = mkV "slack" "slacked" "slacked" ; -- notcompound lack_V ;
-lin smack_V = mkV "smack" "smacked" "smacked" ;
-lin pack_V = mkV "pack" "packed" "packed" ;
-lin jampack_V = mkV "jampack" "jampacked" "jampacked" ; -- compound pack_V ;
-lin unpack_V = mkV "unpack" "unpacked" "unpacked" ; -- compound pack_V ;
-lin rack_V = mkV "rack" "racked" "racked" ;
-lin crack_V = mkV "crack" "cracked" "cracked" ; -- notcompound rack_V ;
-lin wisecrack_V = mkV "wisecrack" "wisecracked" "wisecracked" ; -- compound rack_V ;
-lin barrack_V = mkV "barrack" "barracked" "barracked" ; -- compound rack_V ;
-lin track_V = mkV "track" "tracked" "tracked" ; -- notcompound rack_V ;
-lin sidetrack_V = mkV "sidetrack" "sidetracked" "sidetracked" ; -- compound rack_V ;
-lin wrack_V = mkV "wrack" "wracked" "wracked" ; -- notcompound rack_V ;
-lin sack_V = mkV "sack" "sacked" "sacked" ;
-lin ransack_V = mkV "ransack" "ransacked" "ransacked" ; -- compound sack_V ;
-lin tack_V = mkV "tack" "tacked" "tacked" ;
-lin stack_V = mkV "stack" "stacked" "stacked" ; -- notcompound tack_V ;
-lin attack_V = mkV "attack" "attacked" "attacked" ; -- compound tack_V ;
-lin counterattack_V = mkV "counterattack" "counterattacked" "counterattacked" ; -- compound tack_V ;
-lin quack_V = mkV "quack" "quacked" "quacked" ;
-lin thwack_V = mkV "thwack" "thwacked" "thwacked" ;
-lin yack_V = mkV "yack" "yacked" "yacked" ;
-lin deck_V = mkV "deck" "decked" "decked" ;
-lin check_V = mkV "check" "checked" "checked" ;
-lin 'double-check_V' = mkV "double-check" "double-checked" "double-checked" ; -- compound check_V ;
-lin crosscheck_V = mkV "crosscheck" "crosschecked" "crosschecked" ; -- compound check_V ;
-lin fleck_V = mkV "fleck" "flecked" "flecked" ;
-lin neck_V = mkV "neck" "necked" "necked" ;
-lin rubberneck_V = mkV "rubberneck" "rubbernecked" "rubbernecked" ; -- compound neck_V ;
-lin peck_V = mkV "peck" "pecked" "pecked" ;
-lin wreck_V = mkV "wreck" "wrecked" "wrecked" ;
-lin shipwreck_V = mkV "shipwreck" "shipwrecked" "shipwrecked" ; -- compound wreck_V ;
-lin maffick_V = mkV "maffick" "mafficked" "mafficked" ;
-lin kick_V = mkV "kick" "kicked" "kicked" ;
-lin lick_V = mkV "lick" "licked" "licked" ;
-lin click_V = mkV "click" "clicked" "clicked" ; -- notcompound lick_V ;
-lin flick_V = mkV "flick" "flicked" "flicked" ; -- notcompound lick_V ;
-lin nick_V = mkV "nick" "nicked" "nicked" ;
-lin snick_V = mkV "snick" "snicked" "snicked" ; -- notcompound nick_V ;
-lin pick_V = mkV "pick" "picked" "picked" ;
-lin unpick_V = mkV "unpick" "unpicked" "unpicked" ; -- compound pick_V ;
-lin rick_V = mkV "rick" "ricked" "ricked" ;
-lin brick_V = mkV "brick" "bricked" "bricked" ; -- notcompound rick_V ;
-lin crick_V = mkV "crick" "cricked" "cricked" ; -- notcompound rick_V ;
-lin prick_V = mkV "prick" "pricked" "pricked" ; -- notcompound rick_V ;
-lin trick_V = mkV "trick" "tricked" "tricked" ; -- notcompound rick_V ;
-lin wrick_V = mkV "wrick" "wricked" "wricked" ; -- notcompound rick_V ;
-lin sick_V = mkV "sick" "sicked" "sicked" ;
-lin tick_V = mkV "tick" "ticked" "ticked" ;
-lin politick_V = mkV "politick" "politicked" "politicked" ; -- compound tick_V ;
-lin stick_1_V = mkV "stick" "sticked" "sticked" ; -- notcompound tick_V ;
-lin cock_V = mkV "cock" "cocked" "cocked" ;
-lin spatchcock_V = mkV "spatchcock" "spatchcocked" "spatchcocked" ; -- compound cock_V ;
-lin dock_V = mkV "dock" "docked" "docked" ;
-lin undock_V = mkV "undock" "undocked" "undocked" ; -- compound dock_V ;
-lin hock_V = mkV "hock" "hocked" "hocked" ;
-lin chock_V = mkV "chock" "chocked" "chocked" ; -- notcompound hock_V ;
-lin shock_V = mkV "shock" "shocked" "shocked" ; -- notcompound hock_V ;
-lin lock_V = mkV "lock" "locked" "locked" ;
-lin block_V = mkV "block" "blocked" "blocked" ; -- notcompound lock_V ;
-lin unblock_V = mkV "unblock" "unblocked" "unblocked" ; -- compound lock_V ;
-lin clock_V = mkV "clock" "clocked" "clocked" ; -- notcompound lock_V ;
-lin deadlock_V = mkV "deadlock" "deadlocked" "deadlocked" ; -- compound lock_V ;
-lin padlock_V = mkV "padlock" "padlocked" "padlocked" ; -- compound lock_V ;
-lin flock_V = mkV "flock" "flocked" "flocked" ; -- notcompound lock_V ;
-lin unlock_V = mkV "unlock" "unlocked" "unlocked" ; -- compound lock_V ;
-lin interlock_V = mkV "interlock" "interlocked" "interlocked" ; -- compound lock_V ;
-lin mock_V = mkV "mock" "mocked" "mocked" ;
-lin knock_V = mkV "knock" "knocked" "knocked" ;
-lin rock_V = mkV "rock" "rocked" "rocked" ;
-lin crock_V = mkV "crock" "crocked" "crocked" ; -- notcompound rock_V ;
-lin defrock_V = mkV "defrock" "defrocked" "defrocked" ; -- compound rock_V ;
-lin unfrock_V = mkV "unfrock" "unfrocked" "unfrocked" ; -- compound rock_V ;
-lin sock_V = mkV "sock" "socked" "socked" ;
-lin stock_V = mkV "stock" "stocked" "stocked" ;
-lin restock_V = mkV "restock" "restocked" "restocked" ; -- compound stock_V ;
-lin understock_V = mkV "understock" "understocked" "understocked" ; -- compound stock_V ;
-lin overstock_V = mkV "overstock" "overstocked" "overstocked" ; -- compound stock_V ;
-lin buck_V = mkV "buck" "bucked" "bucked" ;
-lin duck_V = mkV "duck" "ducked" "ducked" ;
-lin fuck_V = mkV "fuck" "fucked" "fucked" ;
-lin chuck_V = mkV "chuck" "chucked" "chucked" ;
-lin shuck_V = mkV "shuck" "shucked" "shucked" ;
-lin luck_V = mkV "luck" "lucked" "lucked" ;
-lin cluck_V = mkV "cluck" "clucked" "clucked" ; -- notcompound luck_V ;
-lin pluck_V = mkV "pluck" "plucked" "plucked" ; -- notcompound luck_V ;
-lin muck_V = mkV "muck" "mucked" "mucked" ;
-lin ruck_V = mkV "ruck" "rucked" "rucked" ;
-lin suck_V = mkV "suck" "sucked" "sucked" ;
-lin tuck_V = mkV "tuck" "tucked" "tucked" ;
-lin stuck_V = mkV "stuck" "stucked" "stucked" ; -- notcompound tuck_V ;
-lin geek_V = mkV "geek" "geeked" "geeked" ;
-lin cheek_V = mkV "cheek" "cheeked" "cheeked" ;
-lin sleek_V = mkV "sleek" "sleeked" "sleeked" ;
-lin peek_V = mkV "peek" "peeked" "peeked" ;
-lin reek_V = mkV "reek" "reeked" "reeked" ;
-lin seek_1_V = mkV "seek" "seeked" "seeked" ;
-lin shriek_V = mkV "shriek" "shrieked" "shrieked" ;
-lin trek_1_V = mkV "trek" "treked" "treked" ;
-lin trek_2_V = mkV "trek" "trekked" "trekked" ;
-lin balk_V = mkV "balk" "balked" "balked" ;
-lin calk_V = mkV "calk" "calked" "calked" ;
-lin chalk_V = mkV "chalk" "chalked" "chalked" ;
-lin talk_V = mkV "talk" "talked" "talked" ;
-lin stalk_V = mkV "stalk" "stalked" "stalked" ; -- notcompound talk_V ;
-lin walk_V = mkV "walk" "walked" "walked" ;
-lin jaywalk_V = mkV "jaywalk" "jaywalked" "jaywalked" ; -- compound walk_V ;
-lin bilk_V = mkV "bilk" "bilked" "bilked" ;
-lin milk_V = mkV "milk" "milked" "milked" ;
-lin baulk_V = mkV "baulk" "baulked" "baulked" ;
-lin caulk_V = mkV "caulk" "caulked" "caulked" ;
-lin bulk_V = mkV "bulk" "bulked" "bulked" ;
-lin skulk_V = mkV "skulk" "skulked" "skulked" ;
-lin sulk_V = mkV "sulk" "sulked" "sulked" ;
-lin bank_V = mkV "bank" "banked" "banked" ;
-lin scrimshank_V = mkV "scrimshank" "scrimshanked" "scrimshanked" ;
-lin thank_V = mkV "thank" "thanked" "thanked" ;
-lin blank_V = mkV "blank" "blanked" "blanked" ;
-lin clank_V = mkV "clank" "clanked" "clanked" ;
-lin flank_V = mkV "flank" "flanked" "flanked" ;
-lin outflank_V = mkV "outflank" "outflanked" "outflanked" ; -- compound flank_V ;
-lin plank_V = mkV "plank" "planked" "planked" ;
-lin spank_V = mkV "spank" "spanked" "spanked" ;
-lin rank_V = mkV "rank" "ranked" "ranked" ;
-lin crank_V = mkV "crank" "cranked" "cranked" ; -- notcompound rank_V ;
-lin frank_V = mkV "frank" "franked" "franked" ; -- notcompound rank_V ;
-lin outrank_V = mkV "outrank" "outranked" "outranked" ; -- compound rank_V ;
-lin tank_V = mkV "tank" "tanked" "tanked" ;
-lin wank_V = mkV "wank" "wanked" "wanked" ;
-lin swank_V = mkV "swank" "swanked" "swanked" ; -- notcompound wank_V ;
-lin yank_V = mkV "yank" "yanked" "yanked" ;
-lin ink_V = mkV "ink" "inked" "inked" ;
-lin fink_V = mkV "fink" "finked" "finked" ; -- notcompound ink_V ;
-lin chink_V = mkV "chink" "chinked" "chinked" ; -- notcompound ink_V ;
-lin kink_V = mkV "kink" "kinked" "kinked" ; -- notcompound ink_V ;
-lin link_V = mkV "link" "linked" "linked" ; -- notcompound ink_V ;
-lin blink_V = mkV "blink" "blinked" "blinked" ; -- notcompound ink_V ;
-lin clink_V = mkV "clink" "clinked" "clinked" ; -- notcompound ink_V ;
-lin interlink_V = mkV "interlink" "interlinked" "interlinked" ; -- compound ink_V ;
-lin pink_V = mkV "pink" "pinked" "pinked" ; -- notcompound ink_V ;
-lin prink_V = mkV "prink" "prinked" "prinked" ; -- notcompound ink_V ;
-lin wink_V = mkV "wink" "winked" "winked" ; -- notcompound ink_V ;
-lin hoodwink_V = mkV "hoodwink" "hoodwinked" "hoodwinked" ; -- compound ink_V ;
-lin conk_V = mkV "conk" "conked" "conked" ;
-lin honk_V = mkV "honk" "honked" "honked" ;
-lin plonk_V = mkV "plonk" "plonked" "plonked" ;
-lin zonk_V = mkV "zonk" "zonked" "zonked" ;
-lin bunk_V = mkV "bunk" "bunked" "bunked" ;
-lin debunk_V = mkV "debunk" "debunked" "debunked" ; -- compound bunk_V ;
-lin dunk_V = mkV "dunk" "dunked" "dunked" ;
-lin 'slam-dunk_V' = mkV "slam-dunk" "slam-dunked" "slam-dunked" ; -- compound dunk_V ;
-lin funk_V = mkV "funk" "funked" "funked" ;
-lin junk_V = mkV "junk" "junked" "junked" ;
-lin clunk_V = mkV "clunk" "clunked" "clunked" ;
-lin flunk_V = mkV "flunk" "flunked" "flunked" ;
-lin book_V = mkV "book" "booked" "booked" ;
-lin cook_V = mkV "cook" "cooked" "cooked" ;
-lin overcook_V = mkV "overcook" "overcooked" "overcooked" ; -- compound cook_V ;
-lin hook_V = mkV "hook" "hooked" "hooked" ;
-lin unhook_V = mkV "unhook" "unhooked" "unhooked" ; -- compound hook_V ;
-lin look_V = mkV "look" "looked" "looked" ;
-lin overlook_V = mkV "overlook" "overlooked" "overlooked" ; -- compound look_V ;
-lin spook_V = mkV "spook" "spooked" "spooked" ;
-lin rook_V = mkV "rook" "rooked" "rooked" ;
-lin brook_V = mkV "brook" "brooked" "brooked" ; -- notcompound rook_V ;
-lin crook_V = mkV "crook" "crooked" "crooked" ; -- notcompound rook_V ;
-lin bark_V = mkV "bark" "barked" "barked" ;
-lin debark_V = mkV "debark" "debarked" "debarked" ; -- compound bark_V ;
-lin embark_V = mkV "embark" "embarked" "embarked" ; -- compound bark_V ;
-lin disembark_V = mkV "disembark" "disembarked" "disembarked" ; -- compound bark_V ;
-lin hark_V = mkV "hark" "harked" "harked" ;
-lin lark_V = mkV "lark" "larked" "larked" ;
-lin skylark_V = mkV "skylark" "skylarked" "skylarked" ; -- compound lark_V ;
-lin mark_V = mkV "mark" "marked" "marked" ;
-lin remark_V = mkV "remark" "remarked" "remarked" ; -- compound mark_V ;
-lin earmark_V = mkV "earmark" "earmarked" "earmarked" ; -- compound mark_V ;
-lin postmark_V = mkV "postmark" "postmarked" "postmarked" ; -- compound mark_V ;
-lin nark_V = mkV "nark" "narked" "narked" ;
-lin park_V = mkV "park" "parked" "parked" ;
-lin 'double-park_V' = mkV "double-park" "double-parked" "double-parked" ; -- compound park_V ;
-lin 'angle-park_V' = mkV "angle-park" "angle-parked" "angle-parked" ; -- compound park_V ;
-lin spark_V = mkV "spark" "sparked" "sparked" ; -- notcompound park_V ;
-lin jerk_V = mkV "jerk" "jerked" "jerked" ;
-lin clerk_V = mkV "clerk" "clerked" "clerked" ;
-lin perk_V = mkV "perk" "perked" "perked" ;
-lin irk_V = mkV "irk" "irked" "irked" ;
-lin shirk_V = mkV "shirk" "shirked" "shirked" ; -- notcompound irk_V ;
-lin smirk_V = mkV "smirk" "smirked" "smirked" ; -- notcompound irk_V ;
-lin cork_V = mkV "cork" "corked" "corked" ;
-lin uncork_V = mkV "uncork" "uncorked" "uncorked" ; -- compound cork_V ;
-lin fork_V = mkV "fork" "forked" "forked" ;
-lin pitchfork_V = mkV "pitchfork" "pitchforked" "pitchforked" ; -- compound fork_V ;
-lin work_V = mkV "work" "worked" "worked" ;
-lin rework_V = mkV "rework" "reworked" "reworked" ; -- compound work_V ;
-lin overwork_V = mkV "overwork" "overworked" "overworked" ; -- compound work_V ;
-lin lurk_V = mkV "lurk" "lurked" "lurked" ;
-lin ask_V = mkV "ask" "asked" "asked" ;
-lin bask_V = mkV "bask" "basked" "basked" ; -- notcompound ask_V ;
-lin mask_V = mkV "mask" "masked" "masked" ; -- notcompound ask_V ;
-lin unmask_V = mkV "unmask" "unmasked" "unmasked" ; -- compound ask_V ;
-lin task_V = mkV "task" "tasked" "tasked" ; -- notcompound ask_V ;
-lin whisk_V = mkV "whisk" "whisked" "whisked" ;
-lin risk_V = mkV "risk" "risked" "risked" ;
-lin frisk_V = mkV "frisk" "frisked" "frisked" ; -- notcompound risk_V ;
-lin husk_V = mkV "husk" "husked" "husked" ;
-lin hawk_V = mkV "hawk" "hawked" "hawked" ;
-lin tomahawk_V = mkV "tomahawk" "tomahawked" "tomahawked" ; -- compound hawk_V ;
-lin squawk_V = mkV "squawk" "squawked" "squawked" ;
-lin speak_V = mkV "speak" "spoke" "spoken" ;
-lin bespeak_V = mkV "bespeak" "bespoke" "bespoken" ; -- compound speak_V ;
-lin break_2_V = mkV "break" "broke" "broken" ;
-lin stick_2_V = mkV "stick" "stuck" "stuck" ;
-lin drink_V = mkV "drink" "drank" "drunk" ;
-lin shrink_V = mkV "shrink" "shrank" "shrunk" ;
-lin sink_V = mkV "sink" "sank" "sunk" ;
-lin countersink_V = mkV "countersink" "countersank" "countersunk" ; -- compound sink_V ;
-lin stink_V = mkV "stink" "stank" "stunk" ;
-lin seek_2_V = mkV "seek" "sought" "sought" ;
-lin think_V = mkV "think" "thought" "thought" ;
-lin bethink_V = mkV "bethink" "bethought" "bethought" ; -- compound think_V ;
-lin rethink_V = mkV "rethink" "rethought" "rethought" ; -- compound think_V ;
-lin pedal_V = mkV "pedal" "pedalled" "pedalled" ;
-lin 'soft-pedal_V' = mkV "soft-pedal" "soft-pedalled" "soft-pedalled" ; -- compound pedal_V ;
-lin backpedal_V = mkV "backpedal" "backpedalled" "backpedalled" ; -- compound pedal_V ;
-lin conceal_V = mkV "conceal" "concealed" "concealed" ;
-lin congeal_V = mkV "congeal" "congealed" "congealed" ;
-lin heal_V = mkV "heal" "healed" "healed" ;
-lin anneal_V = mkV "anneal" "annealed" "annealed" ;
-lin peal_V = mkV "peal" "pealed" "pealed" ;
-lin repeal_V = mkV "repeal" "repealed" "repealed" ; -- compound peal_V ;
-lin appeal_V = mkV "appeal" "appealed" "appealed" ; -- compound peal_V ;
-lin seal_V = mkV "seal" "sealed" "sealed" ;
-lin squeal_V = mkV "squeal" "squealed" "squealed" ;
-lin reveal_V = mkV "reveal" "revealed" "revealed" ;
-lin marshal_V = mkV "marshal" "marshalled" "marshalled" ;
-lin dial_1_V = mkV "dial" "dialed" "dialed" ;
-lin dial_2_V = mkV "dial" "dialled" "dialled" ;
-lin 'court-martial_V' = mkV "court-martial" "court-martialed" "court-martialed" ;
-lin initial_V = mkV "initial" "initialled" "initialled" ;
-lin signal_V = mkV "signal" "signalled" "signalled" ;
-lin coal_V = mkV "coal" "coaled" "coaled" ;
-lin foal_V = mkV "foal" "foaled" "foaled" ;
-lin shoal_V = mkV "shoal" "shoaled" "shoaled" ;
-lin pal_1_V = mkV "pal" "paled" "paled" ;
-lin pal_2_V = mkV "pal" "palled" "palled" ;
-lin appal_V = mkV "appal" "appalled" "appalled" ; -- compound pal_2_V ;
-lin enthral_V = mkV "enthral" "enthralled" "enthralled" ;
-lin spiral_V = mkV "spiral" "spiralled" "spiralled" ;
-lin corral_V = mkV "corral" "corralled" "corralled" ;
-lin metal_V = mkV "metal" "metalled" "metalled" ;
-lin total_1_V = mkV "total" "totaled" "totaled" ;
-lin total_2_V = mkV "total" "totalled" "totalled" ;
-lin equal_1_V = mkV "equal" "equaled" "equaled" ;
-lin equal_2_V = mkV "equal" "equalled" "equalled" ;
-lin victual_V = mkV "victual" "victualled" "victualled" ;
-lin rival_V = mkV "rival" "rivalled" "rivalled" ;
-lin outrival_V = mkV "outrival" "outrivalled" "outrivalled" ; -- compound rival_V ;
-lin label_1_V = mkV "label" "labeled" "labeled" ;
-lin label_2_V = mkV "label" "labelled" "labelled" ;
-lin rebel_V = mkV "rebel" "rebelled" "rebelled" ;
-lin libel_V = mkV "libel" "libelled" "libelled" ;
-lin cancel_1_V = mkV "cancel" "canceled" "canceled" ;
-lin cancel_2_V = mkV "cancel" "cancelled" "cancelled" ;
-lin parcel_1_V = mkV "parcel" "parceled" "parceled" ;
-lin parcel_2_V = mkV "parcel" "parcelled" "parcelled" ;
-lin excel_V = mkV "excel" "excelled" "excelled" ;
-lin model_1_V = mkV "model" "modeled" "modeled" ;
-lin remodel_1_V = mkV "remodel" "remodeled" "remodeled" ; -- compound model_1_V ;
-lin model_2_V = mkV "model" "modelled" "modelled" ;
-lin remodel_2_V = mkV "remodel" "remodelled" "remodelled" ; -- compound model_2_V ;
-lin yodel_V = mkV "yodel" "yodelled" "yodelled" ;
-lin feel_1_V = mkV "feel" "feeled" "feeled" ;
-lin heel_V = mkV "heel" "heeled" "heeled" ;
-lin wheel_V = mkV "wheel" "wheeled" "wheeled" ; -- notcompound heel_V ;
-lin freewheel_V = mkV "freewheel" "freewheeled" "freewheeled" ; -- compound heel_V ;
-lin keel_V = mkV "keel" "keeled" "keeled" ;
-lin kneel_V = mkV "kneel" "kneeled" "kneeled" ;
-lin peel_V = mkV "peel" "peeled" "peeled" ;
-lin reel_V = mkV "reel" "reeled" "reeled" ;
-lin steel_V = mkV "steel" "steeled" "steeled" ;
-lin gel_V = mkV "gel" "gelled" "gelled" ;
-lin cudgel_V = mkV "cudgel" "cudgeled" "cudgeled" ;
-lin spiel_V = mkV "spiel" "spieled" "spieled" ;
-lin nickel_V = mkV "nickel" "nickelled" "nickelled" ;
-lin parallel_V = mkV "parallel" "parallelled" "parallelled" ;
-lin enamel_V = mkV "enamel" "enamelled" "enamelled" ;
-lin trammel_V = mkV "trammel" "trammelled" "trammelled" ;
-lin pommel_V = mkV "pommel" "pommelled" "pommelled" ;
-lin pummel_V = mkV "pummel" "pummelled" "pummelled" ;
-lin panel_V = mkV "panel" "panelled" "panelled" ;
-lin empanel_V = mkV "empanel" "empanelled" "empanelled" ; -- compound panel_V ;
-lin impanel_V = mkV "impanel" "impanelled" "impanelled" ; -- compound panel_V ;
-lin channel_V = mkV "channel" "channelled" "channelled" ;
-lin kennel_V = mkV "kennel" "kennelled" "kennelled" ;
-lin funnel_V = mkV "funnel" "funnelled" "funnelled" ;
-lin tunnel_V = mkV "tunnel" "tunnelled" "tunnelled" ;
-lin repel_V = mkV "repel" "repelled" "repelled" ;
-lin impel_V = mkV "impel" "impelled" "impelled" ;
-lin compel_V = mkV "compel" "compelled" "compelled" ;
-lin propel_V = mkV "propel" "propelled" "propelled" ;
-lin dispel_V = mkV "dispel" "dispelled" "dispelled" ;
-lin expel_V = mkV "expel" "expelled" "expelled" ;
-lin apparel_V = mkV "apparel" "apparelled" "apparelled" ;
-lin quarrel_1_V = mkV "quarrel" "quarreled" "quarreled" ;
-lin barrel_V = mkV "barrel" "barrelled" "barrelled" ;
-lin quarrel_2_V = mkV "quarrel" "quarrelled" "quarrelled" ;
-lin chisel_V = mkV "chisel" "chiselled" "chiselled" ;
-lin tinsel_V = mkV "tinsel" "tinselled" "tinselled" ;
-lin counsel_V = mkV "counsel" "counselled" "counselled" ;
-lin duel_V = mkV "duel" "duelled" "duelled" ;
-lin fuel_1_V = mkV "fuel" "fueled" "fueled" ;
-lin fuel_2_V = mkV "fuel" "fuelled" "fuelled" ;
-lin refuel_V = mkV "refuel" "refuelled" "refuelled" ; -- compound fuel_2_V ;
-lin travel_V = mkV "travel" "traveled" "traveled" ;
-lin ravel_V = mkV "ravel" "ravelled" "ravelled" ;
-lin gravel_V = mkV "gravel" "gravelled" "gravelled" ; -- notcompound ravel_V ;
-lin unravel_V = mkV "unravel" "unravelled" "unravelled" ; -- compound ravel_V ;
-lin level_1_V = mkV "level" "leveled" "leveled" ;
-lin revel_V = mkV "revel" "reveled" "reveled" ;
-lin bevel_V = mkV "bevel" "bevelled" "bevelled" ;
-lin level_2_V = mkV "level" "levelled" "levelled" ;
-lin snivel_V = mkV "snivel" "snivelled" "snivelled" ;
-lin drivel_V = mkV "drivel" "drivelled" "drivelled" ;
-lin shrivel_V = mkV "shrivel" "shrivelled" "shrivelled" ;
-lin swivel_V = mkV "swivel" "swivelled" "swivelled" ;
-lin shovel_V = mkV "shovel" "shovelled" "shovelled" ;
-lin grovel_V = mkV "grovel" "grovelled" "grovelled" ;
-lin marvel_V = mkV "marvel" "marvelled" "marvelled" ;
-lin jewel_V = mkV "jewel" "jewelled" "jewelled" ;
-lin disembowel_V = mkV "disembowel" "disembowelled" "disembowelled" ;
-lin towel_V = mkV "towel" "towelled" "towelled" ;
-lin ail_V = mkV "ail" "ailed" "ailed" ;
-lin bail_V = mkV "bail" "bailed" "bailed" ; -- notcompound ail_V ;
-lin fail_V = mkV "fail" "failed" "failed" ; -- notcompound ail_V ;
-lin hail_V = mkV "hail" "hailed" "hailed" ; -- notcompound ail_V ;
-lin jail_V = mkV "jail" "jailed" "jailed" ; -- notcompound ail_V ;
-lin flail_V = mkV "flail" "flailed" "flailed" ; -- notcompound ail_V ;
-lin mail_V = mkV "mail" "mailed" "mailed" ; -- notcompound ail_V ;
-lin blackmail_V = mkV "blackmail" "blackmailed" "blackmailed" ; -- compound ail_V ;
-lin nail_V = mkV "nail" "nailed" "nailed" ; -- notcompound ail_V ;
-lin rail_V = mkV "rail" "railed" "railed" ; -- notcompound ail_V ;
-lin derail_V = mkV "derail" "derailed" "derailed" ; -- compound ail_V ;
-lin trail_V = mkV "trail" "trailed" "trailed" ; -- notcompound ail_V ;
-lin sail_V = mkV "sail" "sailed" "sailed" ; -- notcompound ail_V ;
-lin assail_V = mkV "assail" "assailed" "assailed" ; -- compound ail_V ;
-lin outsail_V = mkV "outsail" "outsailed" "outsailed" ; -- compound ail_V ;
-lin tail_V = mkV "tail" "tailed" "tailed" ; -- notcompound ail_V ;
-lin 'end-tail_V' = mkV "end-tail" "end-tailed" "end-tailed" ; -- compound ail_V ;
-lin detail_V = mkV "detail" "detailed" "detailed" ; -- compound ail_V ;
-lin retail_V = mkV "retail" "retailed" "retailed" ; -- compound ail_V ;
-lin dovetail_V = mkV "dovetail" "dovetailed" "dovetailed" ; -- compound ail_V ;
-lin entail_V = mkV "entail" "entailed" "entailed" ; -- compound ail_V ;
-lin curtail_V = mkV "curtail" "curtailed" "curtailed" ; -- compound ail_V ;
-lin quail_V = mkV "quail" "quailed" "quailed" ; -- compound ail_V ;
-lin avail_V = mkV "avail" "availed" "availed" ; -- compound ail_V ;
-lin prevail_V = mkV "prevail" "prevailed" "prevailed" ; -- compound ail_V ;
-lin countervail_V = mkV "countervail" "countervailed" "countervailed" ; -- compound ail_V ;
-lin wail_V = mkV "wail" "wailed" "wailed" ; -- notcompound ail_V ;
-lin bewail_V = mkV "bewail" "bewailed" "bewailed" ; -- compound ail_V ;
-lin pencil_1_V = mkV "pencil" "penciled" "penciled" ;
-lin pencil_2_V = mkV "pencil" "pencilled" "pencilled" ;
-lin 'blue-pencil_V' = mkV "blue-pencil" "blue-pencilled" "blue-pencilled" ; -- compound pencil_2_V ;
-lin stencil_V = mkV "stencil" "stencilled" "stencilled" ;
-lin veil_V = mkV "veil" "veiled" "veiled" ;
-lin unveil_V = mkV "unveil" "unveiled" "unveiled" ; -- compound veil_V ;
-lin fulfil_V = mkV "fulfil" "fulfilled" "fulfilled" ;
-lin oil_V = mkV "oil" "oiled" "oiled" ;
-lin boil_V = mkV "boil" "boiled" "boiled" ; -- notcompound oil_V ;
-lin parboil_V = mkV "parboil" "parboiled" "parboiled" ; -- compound oil_V ;
-lin coil_V = mkV "coil" "coiled" "coiled" ; -- notcompound oil_V ;
-lin recoil_V = mkV "recoil" "recoiled" "recoiled" ; -- compound oil_V ;
-lin foil_V = mkV "foil" "foiled" "foiled" ; -- notcompound oil_V ;
-lin moil_V = mkV "moil" "moiled" "moiled" ; -- notcompound oil_V ;
-lin spoil_V = mkV "spoil" "spoiled" "spoiled" ; -- notcompound oil_V ;
-lin despoil_V = mkV "despoil" "despoiled" "despoiled" ; -- compound oil_V ;
-lin roil_V = mkV "roil" "roiled" "roiled" ; -- notcompound oil_V ;
-lin broil_V = mkV "broil" "broiled" "broiled" ; -- notcompound oil_V ;
-lin embroil_V = mkV "embroil" "embroiled" "embroiled" ; -- compound oil_V ;
-lin soil_V = mkV "soil" "soiled" "soiled" ; -- notcompound oil_V ;
-lin toil_V = mkV "toil" "toiled" "toiled" ; -- notcompound oil_V ;
-lin peril_V = mkV "peril" "perilled" "perilled" ;
-lin imperil_V = mkV "imperil" "imperilled" "imperilled" ; -- compound peril_V ;
-lin distil_V = mkV "distil" "distilled" "distilled" ;
-lin instil_V = mkV "instil" "instilled" "instilled" ;
-lin cavil_V = mkV "cavil" "cavilled" "cavilled" ;
-lin devil_V = mkV "devil" "devilled" "devilled" ;
-lin bedevil_V = mkV "bedevil" "bedevilled" "bedevilled" ; -- compound devil_V ;
-lin ball_V = mkV "ball" "balled" "balled" ;
-lin eyeball_V = mkV "eyeball" "eyeballed" "eyeballed" ; -- compound ball_V ;
-lin blackball_V = mkV "blackball" "blackballed" "blackballed" ; -- compound ball_V ;
-lin snowball_V = mkV "snowball" "snowballed" "snowballed" ; -- compound ball_V ;
-lin call_V = mkV "call" "called" "called" ;
-lin recall_V = mkV "recall" "recalled" "recalled" ; -- compound call_V ;
-lin overcall_V = mkV "overcall" "overcalled" "overcalled" ; -- compound call_V ;
-lin miscall_V = mkV "miscall" "miscalled" "miscalled" ; -- compound call_V ;
-lin catcall_V = mkV "catcall" "catcalled" "catcalled" ; -- compound call_V ;
-lin gall_V = mkV "gall" "galled" "galled" ;
-lin pall_V = mkV "pall" "palled" "palled" ;
-lin enthrall_V = mkV "enthrall" "enthralled" "enthralled" ;
-lin stall_V = mkV "stall" "stalled" "stalled" ;
-lin forestall_V = mkV "forestall" "forestalled" "forestalled" ; -- compound stall_V ;
-lin install_V = mkV "install" "installed" "installed" ; -- compound stall_V ;
-lin reinstall_V = mkV "reinstall" "reinstalled" "reinstalled" ; -- compound stall_V ;
-lin squall_V = mkV "squall" "squalled" "squalled" ;
-lin wall_V = mkV "wall" "walled" "walled" ;
-lin stonewall_V = mkV "stonewall" "stonewalled" "stonewalled" ; -- compound wall_V ;
-lin bell_V = mkV "bell" "belled" "belled" ;
-lin fell_V = mkV "fell" "felled" "felled" ;
-lin shell_V = mkV "shell" "shelled" "shelled" ;
-lin jell_V = mkV "jell" "jelled" "jelled" ;
-lin smell_V = mkV "smell" "smelled" "smelled" ;
-lin spell_V = mkV "spell" "spelled" "spelled" ;
-lin misspell_V = mkV "misspell" "misspelled" "misspelled" ; -- compound spell_V ;
-lin sell_1_V = mkV "sell" "selled" "selled" ;
-lin oversell_V = mkV "oversell" "overselled" "overselled" ; -- compound sell_1_V ;
-lin outsell_V = mkV "outsell" "outselled" "outselled" ; -- compound sell_1_V ;
-lin quell_V = mkV "quell" "quelled" "quelled" ;
-lin well_V = mkV "well" "welled" "welled" ;
-lin dwell_1_V = mkV "dwell" "dwelled" "dwelled" ; -- notcompound well_V ;
-lin swell_V = mkV "swell" "swelled" "swelled" ; -- notcompound well_V ;
-lin yell_V = mkV "yell" "yelled" "yelled" ;
-lin bill_V = mkV "bill" "billed" "billed" ;
-lin fill_V = mkV "fill" "filled" "filled" ;
-lin refill_V = mkV "refill" "refilled" "refilled" ; -- compound fill_V ;
-lin fulfill_V = mkV "fulfill" "fulfilled" "fulfilled" ; -- compound fill_V ;
-lin chill_V = mkV "chill" "chilled" "chilled" ;
-lin kill_V = mkV "kill" "killed" "killed" ;
-lin mill_V = mkV "mill" "milled" "milled" ;
-lin spill_1_V = mkV "spill" "spilled" "spilled" ;
-lin drill_V = mkV "drill" "drilled" "drilled" ;
-lin grill_V = mkV "grill" "grilled" "grilled" ;
-lin shrill_V = mkV "shrill" "shrilled" "shrilled" ;
-lin thrill_V = mkV "thrill" "thrilled" "thrilled" ;
-lin trill_V = mkV "trill" "trilled" "trilled" ;
-lin till_V = mkV "till" "tilled" "tilled" ;
-lin still_V = mkV "still" "stilled" "stilled" ; -- notcompound till_V ;
-lin will_V = mkV "will" "willed" "willed" ;
-lin swill_V = mkV "swill" "swilled" "swilled" ; -- notcompound will_V ;
-lin doll_V = mkV "doll" "dolled" "dolled" ;
-lin loll_V = mkV "loll" "lolled" "lolled" ;
-lin poll_V = mkV "poll" "polled" "polled" ;
-lin roll_V = mkV "roll" "rolled" "rolled" ;
-lin enroll_V = mkV "enroll" "enrolled" "enrolled" ; -- compound roll_V ;
-lin unroll_V = mkV "unroll" "unrolled" "unrolled" ; -- compound roll_V ;
-lin troll_V = mkV "troll" "trolled" "trolled" ; -- notcompound roll_V ;
-lin stroll_V = mkV "stroll" "strolled" "strolled" ; -- notcompound roll_V ;
-lin toll_V = mkV "toll" "tolled" "tolled" ;
-lin cull_V = mkV "cull" "culled" "culled" ;
-lin scull_V = mkV "scull" "sculled" "sculled" ; -- notcompound cull_V ;
-lin dull_V = mkV "dull" "dulled" "dulled" ;
-lin gull_V = mkV "gull" "gulled" "gulled" ;
-lin hull_V = mkV "hull" "hulled" "hulled" ;
-lin lull_V = mkV "lull" "lulled" "lulled" ;
-lin mull_V = mkV "mull" "mulled" "mulled" ;
-lin pull_V = mkV "pull" "pulled" "pulled" ;
-lin sell_2_V = mkV "sell" "sold" "sold" ;
-lin resell_V = mkV "resell" "resold" "resold" ; -- compound sell_2_V ;
-lin undersell_V = mkV "undersell" "undersold" "undersold" ; -- compound sell_2_V ;
-lin tell_V = mkV "tell" "told" "told" ;
-lin retell_V = mkV "retell" "retold" "retold" ; -- compound tell_V ;
-lin foretell_V = mkV "foretell" "foretold" "foretold" ; -- compound tell_V ;
-lin gaol_V = mkV "gaol" "gaoled" "gaoled" ;
-lin gambol_V = mkV "gambol" "gambolled" "gambolled" ;
-lin cool_V = mkV "cool" "cooled" "cooled" ;
-lin fool_V = mkV "fool" "fooled" "fooled" ;
-lin school_V = mkV "school" "schooled" "schooled" ;
-lin pool_V = mkV "pool" "pooled" "pooled" ;
-lin drool_V = mkV "drool" "drooled" "drooled" ;
-lin tool_V = mkV "tool" "tooled" "tooled" ;
-lin retool_V = mkV "retool" "retooled" "retooled" ; -- compound tool_V ;
-lin carol_V = mkV "carol" "carolled" "carolled" ;
-lin enrol_V = mkV "enrol" "enroled" "enroled" ;
-lin patrol_V = mkV "patrol" "patrolled" "patrolled" ;
-lin control_2_V = mkV "control" "controlled" "controlled" ;
-lin decontrol_V = mkV "decontrol" "decontrolled" "decontrolled" ; -- compound control_2_V ;
-lin control_1_V = mkV "control" "controled" "controled" ;
-lin extol_V = mkV "extol" "extolled" "extolled" ;
-lin frivol_V = mkV "frivol" "frivolled" "frivolled" ;
-lin pearl_V = mkV "pearl" "pearled" "pearled" ;
-lin snarl_V = mkV "snarl" "snarled" "snarled" ;
-lin whirl_V = mkV "whirl" "whirled" "whirled" ;
-lin swirl_V = mkV "swirl" "swirled" "swirled" ;
-lin twirl_V = mkV "twirl" "twirled" "twirled" ;
-lin curl_V = mkV "curl" "curled" "curled" ;
-lin uncurl_V = mkV "uncurl" "uncurled" "uncurled" ; -- compound curl_V ;
-lin furl_V = mkV "furl" "furled" "furled" ;
-lin unfurl_V = mkV "unfurl" "unfurled" "unfurled" ; -- compound furl_V ;
-lin hurl_V = mkV "hurl" "hurled" "hurled" ;
-lin purl_V = mkV "purl" "purled" "purled" ;
-lin haul_V = mkV "haul" "hauled" "hauled" ;
-lin overhaul_V = mkV "overhaul" "overhauled" "overhauled" ; -- compound haul_V ;
-lin maul_V = mkV "maul" "mauled" "mauled" ;
-lin caterwaul_V = mkV "caterwaul" "caterwauled" "caterwauled" ;
-lin annul_V = mkV "annul" "annulled" "annulled" ;
-lin foul_V = mkV "foul" "fouled" "fouled" ;
-lin befoul_V = mkV "befoul" "befouled" "befouled" ; -- compound foul_V ;
-lin bawl_V = mkV "bawl" "bawled" "bawled" ;
-lin brawl_V = mkV "brawl" "brawled" "brawled" ;
-lin crawl_V = mkV "crawl" "crawled" "crawled" ;
-lin 'pub-crawl_V' = mkV "pub-crawl" "pub-crawled" "pub-crawled" ; -- compound crawl_V ;
-lin scrawl_V = mkV "scrawl" "scrawled" "scrawled" ; -- notcompound crawl_V ;
-lin drawl_V = mkV "drawl" "drawled" "drawled" ;
-lin sprawl_V = mkV "sprawl" "sprawled" "sprawled" ;
-lin trawl_V = mkV "trawl" "trawled" "trawled" ;
-lin bowl_V = mkV "bowl" "bowled" "bowled" ;
-lin scowl_V = mkV "scowl" "scowled" "scowled" ;
-lin fowl_V = mkV "fowl" "fowled" "fowled" ;
-lin howl_V = mkV "howl" "howled" "howled" ;
-lin growl_V = mkV "growl" "growled" "growled" ;
-lin prowl_V = mkV "prowl" "prowled" "prowled" ;
-lin yowl_V = mkV "yowl" "yowled" "yowled" ;
-lin spill_2_V = mkV "spill" "spilled" "spilt" ;
-lin steal_V = mkV "steal" "stole" "stolen" ;
-lin fall_V = mkV "fall" "fell" "fallen" ;
-lin befall_V = mkV "befall" "befell" "befallen" ; -- compound fall_V ;
-lin spill_3_V = mkV "spill" "spilt" "spilled" ;
-lin deal_V = mkV "deal" "dealt" "dealt" ;
-lin misdeal_V = mkV "misdeal" "misdealt" "misdealt" ; -- compound deal_V ;
-lin feel_2_V = mkV "feel" "felt" "felt" ;
-lin dwell_2_V = mkV "dwell" "dwelt" "dwelt" ;
-lin spill_4_V = mkV "spill" "spilt" "spilt" ;
-lin h'm_V = mkV "h'm" "h'mmed" "h'mmed" ;
-lin salaam_V = mkV "salaam" "salaamed" "salaamed" ;
-lin scam_V = mkV "scam" "scammed" "scammed" ;
-lin dam_V = mkV "dam" "dammed" "dammed" ;
-lin beam_V = mkV "beam" "beamed" "beamed" ;
-lin gleam_V = mkV "gleam" "gleamed" "gleamed" ;
-lin cream_V = mkV "cream" "creamed" "creamed" ;
-lin scream_V = mkV "scream" "screamed" "screamed" ; -- notcompound cream_V ;
-lin dream_1_V = mkV "dream" "dreamed" "dreamed" ;
-lin daydream_V = mkV "daydream" "daydreamed" "daydreamed" ; -- compound dream_1_V ;
-lin stream_V = mkV "stream" "streamed" "streamed" ;
-lin seam_V = mkV "seam" "seamed" "seamed" ;
-lin team_V = mkV "team" "teamed" "teamed" ;
-lin steam_V = mkV "steam" "steamed" "steamed" ; -- notcompound team_V ;
-lin ham_V = mkV "ham" "hammed" "hammed" ;
-lin sham_V = mkV "sham" "shammed" "shammed" ; -- notcompound ham_V ;
-lin jam_V = mkV "jam" "jammed" "jammed" ;
-lin lam_V = mkV "lam" "lammed" "lammed" ;
-lin clam_V = mkV "clam" "clammed" "clammed" ; -- notcompound lam_V ;
-lin slam_V = mkV "slam" "slammed" "slammed" ; -- notcompound lam_V ;
-lin foam_V = mkV "foam" "foamed" "foamed" ;
-lin roam_V = mkV "roam" "roamed" "roamed" ;
-lin ram_V = mkV "ram" "rammed" "rammed" ;
-lin cram_V = mkV "cram" "crammed" "crammed" ; -- notcompound ram_V ;
-lin scram_V = mkV "scram" "scrammed" "scrammed" ; -- notcompound ram_V ;
-lin program_V = mkV "program" "programmed" "programmed" ; -- compound ram_V ;
-lin deem_V = mkV "deem" "deemed" "deemed" ;
-lin redeem_V = mkV "redeem" "redeemed" "redeemed" ; -- compound deem_V ;
-lin seem_V = mkV "seem" "seemed" "seemed" ;
-lin beseem_V = mkV "beseem" "beseemed" "beseemed" ; -- compound seem_V ;
-lin teem_V = mkV "teem" "teemed" "teemed" ;
-lin esteem_V = mkV "esteem" "esteemed" "esteemed" ; -- compound teem_V ;
-lin hem_V = mkV "hem" "hemmed" "hemmed" ;
-lin stem_V = mkV "stem" "stemmed" "stemmed" ;
-lin aim_V = mkV "aim" "aimed" "aimed" ;
-lin claim_V = mkV "claim" "claimed" "claimed" ; -- notcompound aim_V ;
-lin acclaim_V = mkV "acclaim" "acclaimed" "acclaimed" ; -- compound aim_V ;
-lin declaim_V = mkV "declaim" "declaimed" "declaimed" ; -- compound aim_V ;
-lin reclaim_V = mkV "reclaim" "reclaimed" "reclaimed" ; -- compound aim_V ;
-lin proclaim_V = mkV "proclaim" "proclaimed" "proclaimed" ; -- compound aim_V ;
-lin disclaim_V = mkV "disclaim" "disclaimed" "disclaimed" ; -- compound aim_V ;
-lin exclaim_V = mkV "exclaim" "exclaimed" "exclaimed" ; -- compound aim_V ;
-lin maim_V = mkV "maim" "maimed" "maimed" ; -- notcompound aim_V ;
-lin dim_V = mkV "dim" "dimmed" "dimmed" ;
-lin skim_V = mkV "skim" "skimmed" "skimmed" ;
-lin slim_V = mkV "slim" "slimmed" "slimmed" ;
-lin rim_V = mkV "rim" "rimmed" "rimmed" ;
-lin brim_V = mkV "brim" "brimmed" "brimmed" ; -- notcompound rim_V ;
-lin prim_V = mkV "prim" "primmed" "primmed" ; -- notcompound rim_V ;
-lin trim_V = mkV "trim" "trimmed" "trimmed" ; -- notcompound rim_V ;
-lin embalm_V = mkV "embalm" "embalmed" "embalmed" ;
-lin calm_V = mkV "calm" "calmed" "calmed" ;
-lin palm_V = mkV "palm" "palmed" "palmed" ;
-lin underwhelm_V = mkV "underwhelm" "underwhelmed" "underwhelmed" ;
-lin overwhelm_V = mkV "overwhelm" "overwhelmed" "overwhelmed" ;
-lin film_V = mkV "film" "filmed" "filmed" ;
-lin microfilm_V = mkV "microfilm" "microfilmed" "microfilmed" ; -- compound film_V ;
-lin fathom_2_V = mkV "fathom" "fathommed" "fathommed" ;
-lin fathom_1_V = mkV "fathom" "fathomed" "fathomed" ;
-lin envenom_V = mkV "envenom" "envenomed" "envenomed" ;
-lin boom_V = mkV "boom" "boomed" "boomed" ;
-lin doom_V = mkV "doom" "doomed" "doomed" ;
-lin foredoom_V = mkV "foredoom" "foredoomed" "foredoomed" ; -- compound doom_V ;
-lin loom_V = mkV "loom" "loomed" "loomed" ;
-lin bloom_V = mkV "bloom" "bloomed" "bloomed" ; -- notcompound loom_V ;
-lin room_V = mkV "room" "roomed" "roomed" ;
-lin groom_V = mkV "groom" "groomed" "groomed" ; -- notcompound room_V ;
-lin mushroom_V = mkV "mushroom" "mushroomed" "mushroomed" ; -- compound room_V ;
-lin zoom_V = mkV "zoom" "zoomed" "zoomed" ;
-lin ransom_V = mkV "ransom" "ransomed" "ransomed" ;
-lin unbosom_V = mkV "unbosom" "unbosomed" "unbosomed" ;
-lin blossom_V = mkV "blossom" "blossomed" "blossomed" ;
-lin accustom_V = mkV "accustom" "accustomed" "accustomed" ;
-lin bottom_2_V = mkV "bottom" "bottommed" "bottommed" ;
-lin bottom_1_V = mkV "bottom" "bottomed" "bottomed" ;
-lin 'copper-bottom_V' = mkV "copper-bottom" "copper-bottomed" "copper-bottomed" ; -- compound bottom_1_V ;
-lin arm_V = mkV "arm" "armed" "armed" ;
-lin rearm_V = mkV "rearm" "rearmed" "rearmed" ; -- compound arm_V ;
-lin forearm_V = mkV "forearm" "forearmed" "forearmed" ; -- compound arm_V ;
-lin farm_V = mkV "farm" "farmed" "farmed" ; -- notcompound arm_V ;
-lin harm_V = mkV "harm" "harmed" "harmed" ; -- notcompound arm_V ;
-lin charm_V = mkV "charm" "charmed" "charmed" ; -- notcompound arm_V ;
-lin alarm_V = mkV "alarm" "alarmed" "alarmed" ; -- compound arm_V ;
-lin disarm_V = mkV "disarm" "disarmed" "disarmed" ; -- compound arm_V ;
-lin warm_V = mkV "warm" "warmed" "warmed" ; -- notcompound arm_V ;
-lin swarm_V = mkV "swarm" "swarmed" "swarmed" ; -- notcompound arm_V ;
-lin perm_V = mkV "perm" "permed" "permed" ;
-lin term_V = mkV "term" "termed" "termed" ;
-lin firm_V = mkV "firm" "firmed" "firmed" ;
-lin affirm_V = mkV "affirm" "affirmed" "affirmed" ; -- compound firm_V ;
-lin reaffirm_V = mkV "reaffirm" "reaffirmed" "reaffirmed" ; -- compound firm_V ;
-lin confirm_V = mkV "confirm" "confirmed" "confirmed" ; -- compound firm_V ;
-lin squirm_V = mkV "squirm" "squirmed" "squirmed" ;
-lin form_V = mkV "form" "formed" "formed" ;
-lin 're-form_V' = mkV "re-form" "re-formed" "re-formed" ; -- compound form_V ;
-lin deform_V = mkV "deform" "deformed" "deformed" ; -- compound form_V ;
-lin reform_V = mkV "reform" "reformed" "reformed" ; -- compound form_V ;
-lin inform_V = mkV "inform" "informed" "informed" ; -- compound form_V ;
-lin misinform_V = mkV "misinform" "misinformed" "misinformed" ; -- compound form_V ;
-lin conform_V = mkV "conform" "conformed" "conformed" ; -- compound form_V ;
-lin perform_V = mkV "perform" "performed" "performed" ; -- compound form_V ;
-lin underperform_V = mkV "underperform" "underperformed" "underperformed" ; -- compound form_V ;
-lin outperform_V = mkV "outperform" "outperformed" "outperformed" ; -- compound form_V ;
-lin transform_V = mkV "transform" "transformed" "transformed" ; -- compound form_V ;
-lin storm_V = mkV "storm" "stormed" "stormed" ;
-lin barnstorm_V = mkV "barnstorm" "barnstormed" "barnstormed" ; -- compound storm_V ;
-lin worm_V = mkV "worm" "wormed" "wormed" ;
-lin bum_V = mkV "bum" "bummed" "bummed" ;
-lin gum_V = mkV "gum" "gummed" "gummed" ;
-lin regum_V = mkV "regum" "regummed" "regummed" ; -- compound gum_V ;
-lin hum_V = mkV "hum" "hummed" "hummed" ;
-lin chum_V = mkV "chum" "chummed" "chummed" ; -- notcompound hum_V ;
-lin slum_V = mkV "slum" "slummed" "slummed" ;
-lin drum_V = mkV "drum" "drummed" "drummed" ;
-lin thrum_V = mkV "thrum" "thrummed" "thrummed" ;
-lin strum_V = mkV "strum" "strummed" "strummed" ;
-lin sum_V = mkV "sum" "summed" "summed" ;
-lin costum_V = mkV "costum" "costummed" "costummed" ;
-lin vacuum_V = mkV "vacuum" "vacuummed" "vacuummed" ;
-lin dream_2_V = mkV "dream" "dreamed" "dreamt" ;
-lin swim_V = mkV "swim" "swam" "swum" ;
-lin dream_3_V = mkV "dream" "dreamt" "dreamed" ;
-lin dream_4_V = mkV "dream" "dreamt" "dreamt" ;
-lin ban_V = mkV "ban" "banned" "banned" ;
-lin can_V = mkV "can" "canned" "canned" ;
-lin scan_V = mkV "scan" "scanned" "scanned" ; -- notcompound can_V ;
-lin lean_V = mkV "lean" "leaned" "leaned" ;
-lin clean_V = mkV "clean" "cleaned" "cleaned" ; -- notcompound lean_V ;
-lin 'spring-clean_V' = mkV "spring-clean" "spring-cleaned" "spring-cleaned" ; -- compound lean_V ;
-lin 'dry-clean_V' = mkV "dry-clean" "dry-cleaned" "dry-cleaned" ; -- compound lean_V ;
-lin glean_V = mkV "glean" "gleaned" "gleaned" ; -- notcompound lean_V ;
-lin demean_V = mkV "demean" "demeaned" "demeaned" ;
-lin wean_V = mkV "wean" "weaned" "weaned" ;
-lin fan_V = mkV "fan" "fanned" "fanned" ;
-lin toboggan_V = mkV "toboggan" "tobogganed" "tobogganed" ;
-lin orphan_V = mkV "orphan" "orphaned" "orphaned" ;
-lin plan_V = mkV "plan" "planned" "planned" ;
-lin man_V = mkV "man" "manned" "manned" ;
-lin unman_V = mkV "unman" "unmanned" "unmanned" ; -- compound man_V ;
-lin loan_V = mkV "loan" "loaned" "loaned" ;
-lin moan_V = mkV "moan" "moaned" "moaned" ;
-lin bemoan_V = mkV "bemoan" "bemoaned" "bemoaned" ; -- compound moan_V ;
-lin groan_V = mkV "groan" "groaned" "groaned" ;
-lin pan_V = mkV "pan" "panned" "panned" ;
-lin japan_V = mkV "japan" "japanned" "japanned" ; -- compound pan_V ;
-lin trepan_V = mkV "trepan" "trepanned" "trepanned" ; -- compound pan_V ;
-lin span_V = mkV "span" "spanned" "spanned" ; -- notcompound pan_V ;
-lin inspan_V = mkV "inspan" "inspanned" "inspanned" ; -- compound pan_V ;
-lin outspan_V = mkV "outspan" "outspanned" "outspanned" ; -- compound pan_V ;
-lin tan_V = mkV "tan" "tanned" "tanned" ;
-lin swan_V = mkV "swan" "swanned" "swanned" ;
-lin deaden_V = mkV "deaden" "deadened" "deadened" ;
-lin broaden_V = mkV "broaden" "broadened" "broadened" ;
-lin gladden_V = mkV "gladden" "gladdened" "gladdened" ;
-lin madden_V = mkV "madden" "maddened" "maddened" ;
-lin sadden_V = mkV "sadden" "saddened" "saddened" ;
-lin redden_V = mkV "redden" "reddened" "reddened" ;
-lin widen_V = mkV "widen" "widened" "widened" ;
-lin embolden_V = mkV "embolden" "emboldened" "emboldened" ;
-lin garden_V = mkV "garden" "gardened" "gardened" ;
-lin harden_V = mkV "harden" "hardened" "hardened" ;
-lin burden_V = mkV "burden" "burdened" "burdened" ;
-lin unburden_V = mkV "unburden" "unburdened" "unburdened" ; -- compound burden_V ;
-lin overburden_V = mkV "overburden" "overburdened" "overburdened" ; -- compound burden_V ;
-lin disburden_V = mkV "disburden" "disburdened" "disburdened" ; -- compound burden_V ;
-lin keen_V = mkV "keen" "keened" "keened" ;
-lin careen_V = mkV "careen" "careened" "careened" ;
-lin screen_V = mkV "screen" "screened" "screened" ;
-lin preen_V = mkV "preen" "preened" "preened" ;
-lin queen_V = mkV "queen" "queened" "queened" ;
-lin deafen_V = mkV "deafen" "deafened" "deafened" ;
-lin stiffen_1_V = mkV "stiffen" "stiffened" "stiffened" ;
-lin stiffen_2_V = mkV "stiffen" "stiffenned" "stiffenned" ;
-lin gen_V = mkV "gen" "genned" "genned" ;
-lin roughen_V = mkV "roughen" "roughened" "roughened" ;
-lin toughen_V = mkV "toughen" "toughened" "toughened" ;
-lin hyphen_V = mkV "hyphen" "hyphened" "hyphened" ;
-lin freshen_1_V = mkV "freshen" "freshened" "freshened" ;
-lin freshen_2_V = mkV "freshen" "freshenned" "freshenned" ;
-lin lengthen_V = mkV "lengthen" "lengthened" "lengthened" ;
-lin strengthen_V = mkV "strengthen" "strengthened" "strengthened" ;
-lin burthen_V = mkV "burthen" "burthened" "burthened" ;
-lin ken_V = mkV "ken" "kenned" "kenned" ;
-lin weaken_V = mkV "weaken" "weakened" "weakened" ;
-lin waken_V = mkV "waken" "wakened" "wakened" ;
-lin awaken_V = mkV "awaken" "awakened" "awakened" ; -- notcompound waken_V ;
-lin blacken_V = mkV "blacken" "blackened" "blackened" ;
-lin slacken_1_V = mkV "slacken" "slackened" "slackened" ;
-lin thicken_V = mkV "thicken" "thickened" "thickened" ;
-lin sicken_V = mkV "sicken" "sickened" "sickened" ;
-lin quicken_V = mkV "quicken" "quickened" "quickened" ;
-lin slacken_2_V = mkV "slacken" "slackenned" "slackenned" ;
-lin chicken_V = mkV "chicken" "chickenned" "chickenned" ;
-lin liken_V = mkV "liken" "likened" "likened" ;
-lin betoken_V = mkV "betoken" "betokened" "betokened" ;
-lin darken_V = mkV "darken" "darkened" "darkened" ;
-lin hearken_V = mkV "hearken" "hearkened" "hearkened" ;
-lin omen_V = mkV "omen" "omened" "omened" ;
-lin pen_V = mkV "pen" "penned" "penned" ;
-lin cheapen_V = mkV "cheapen" "cheapened" "cheapened" ;
-lin deepen_V = mkV "deepen" "deepened" "deepened" ;
-lin steepen_V = mkV "steepen" "steepened" "steepened" ;
-lin ripen_V = mkV "ripen" "ripened" "ripened" ;
-lin dampen_V = mkV "dampen" "dampened" "dampened" ;
-lin open_1_V = mkV "open" "opened" "opened" ;
-lin reopen_V = mkV "reopen" "reopened" "reopened" ; -- compound open_1_V ;
-lin open_2_V = mkV "open" "openned" "openned" ;
-lin happen_V = mkV "happen" "happened" "happened" ;
-lin sharpen_V = mkV "sharpen" "sharpened" "sharpened" ;
-lin loosen_1_V = mkV "loosen" "loosened" "loosened" ;
-lin loosen_2_V = mkV "loosen" "loosenned" "loosenned" ;
-lin coarsen_V = mkV "coarsen" "coarsened" "coarsened" ;
-lin worsen_V = mkV "worsen" "worsened" "worsened" ;
-lin lessen_V = mkV "lessen" "lessened" "lessened" ;
-lin threaten_V = mkV "threaten" "threatened" "threatened" ;
-lin sweeten_V = mkV "sweeten" "sweetened" "sweetened" ;
-lin quieten_1_V = mkV "quieten" "quietened" "quietened" ;
-lin quieten_2_V = mkV "quieten" "quietenned" "quietenned" ;
-lin soften_1_V = mkV "soften" "softened" "softened" ;
-lin soften_2_V = mkV "soften" "softenned" "softenned" ;
-lin straighten_1_V = mkV "straighten" "straightened" "straightened" ;
-lin heighten_V = mkV "heighten" "heightened" "heightened" ;
-lin lighten_1_V = mkV "lighten" "lightened" "lightened" ;
-lin enlighten_V = mkV "enlighten" "enlightened" "enlightened" ; -- compound lighten_1_V ;
-lin brighten_1_V = mkV "brighten" "brightened" "brightened" ;
-lin frighten_1_V = mkV "frighten" "frightened" "frightened" ;
-lin tighten_1_V = mkV "tighten" "tightened" "tightened" ;
-lin straighten_2_V = mkV "straighten" "straightenned" "straightenned" ;
-lin lighten_2_V = mkV "lighten" "lightenned" "lightenned" ;
-lin brighten_2_V = mkV "brighten" "brightenned" "brightenned" ;
-lin frighten_2_V = mkV "frighten" "frightenned" "frightenned" ;
-lin tighten_2_V = mkV "tighten" "tightenned" "tightenned" ;
-lin straiten_V = mkV "straiten" "straitened" "straitened" ;
-lin whiten_V = mkV "whiten" "whitened" "whitened" ;
-lin hearten_V = mkV "hearten" "heartened" "heartened" ;
-lin dishearten_V = mkV "dishearten" "disheartened" "disheartened" ; -- compound hearten_V ;
-lin smarten_V = mkV "smarten" "smartened" "smartened" ;
-lin shorten_V = mkV "shorten" "shortened" "shortened" ;
-lin foreshorten_V = mkV "foreshorten" "foreshortened" "foreshortened" ; -- compound shorten_V ;
-lin fasten_1_V = mkV "fasten" "fastened" "fastened" ;
-lin unfasten_V = mkV "unfasten" "unfastened" "unfastened" ; -- compound fasten_1_V ;
-lin hasten_V = mkV "hasten" "hastened" "hastened" ;
-lin chasten_V = mkV "chasten" "chastened" "chastened" ; -- notcompound hasten_V ;
-lin listen_1_V = mkV "listen" "listened" "listened" ;
-lin glisten_V = mkV "glisten" "glistened" "glistened" ; -- notcompound listen_1_V ;
-lin moisten_V = mkV "moisten" "moistened" "moistened" ;
-lin christen_V = mkV "christen" "christened" "christened" ;
-lin fasten_2_V = mkV "fasten" "fastenned" "fastenned" ;
-lin listen_2_V = mkV "listen" "listenned" "listenned" ;
-lin batten_V = mkV "batten" "battened" "battened" ;
-lin fatten_1_V = mkV "fatten" "fattened" "fattened" ;
-lin flatten_V = mkV "flatten" "flattened" "flattened" ;
-lin fatten_2_V = mkV "fatten" "fattenned" "fattenned" ;
-lin leaven_V = mkV "leaven" "leavened" "leavened" ;
-lin even_1_V = mkV "even" "evened" "evened" ;
-lin even_2_V = mkV "even" "evenned" "evenned" ;
-lin liven_V = mkV "liven" "livened" "livened" ;
-lin enliven_V = mkV "enliven" "enlivened" "enlivened" ; -- compound liven_V ;
-lin yen_V = mkV "yen" "yenned" "yenned" ;
-lin brazen_V = mkV "brazen" "brazened" "brazened" ;
-lin cozen_V = mkV "cozen" "cozened" "cozened" ;
-lin campaign_V = mkV "campaign" "campaigned" "campaigned" ;
-lin arraign_V = mkV "arraign" "arraigned" "arraigned" ;
-lin deign_V = mkV "deign" "deigned" "deigned" ;
-lin feign_V = mkV "feign" "feigned" "feigned" ;
-lin reign_V = mkV "reign" "reigned" "reigned" ;
-lin align_V = mkV "align" "aligned" "aligned" ;
-lin realign_V = mkV "realign" "realigned" "realigned" ; -- compound align_V ;
-lin malign_V = mkV "malign" "maligned" "maligned" ; -- notcompound align_V ;
-lin sign_V = mkV "sign" "signed" "signed" ;
-lin 'pre-sign_V' = mkV "pre-sign" "pre-signed" "pre-signed" ; -- compound sign_V ;
-lin design_V = mkV "design" "designed" "designed" ; -- compound sign_V ;
-lin redesign_V = mkV "redesign" "redesigned" "redesigned" ; -- compound sign_V ;
-lin resign_V = mkV "resign" "resigned" "resigned" ; -- compound sign_V ;
-lin consign_V = mkV "consign" "consigned" "consigned" ; -- compound sign_V ;
-lin undersign_V = mkV "undersign" "undersigned" "undersigned" ; -- compound sign_V ;
-lin countersign_V = mkV "countersign" "countersigned" "countersigned" ; -- compound sign_V ;
-lin assign_V = mkV "assign" "assigned" "assigned" ; -- compound sign_V ;
-lin reassign_V = mkV "reassign" "reassigned" "reassigned" ; -- compound sign_V ;
-lin impugn_V = mkV "impugn" "impugned" "impugned" ;
-lin oppugn_V = mkV "oppugn" "oppugned" "oppugned" ;
-lin ordain_V = mkV "ordain" "ordained" "ordained" ;
-lin foreordain_V = mkV "foreordain" "foreordained" "foreordained" ; -- compound ordain_V ;
-lin preordain_V = mkV "preordain" "preordained" "preordained" ; -- compound ordain_V ;
-lin disdain_V = mkV "disdain" "disdained" "disdained" ;
-lin gain_V = mkV "gain" "gained" "gained" ;
-lin regain_V = mkV "regain" "regained" "regained" ; -- compound gain_V ;
-lin bargain_V = mkV "bargain" "bargained" "bargained" ; -- compound gain_V ;
-lin outgain_V = mkV "outgain" "outgained" "outgained" ; -- compound gain_V ;
-lin chain_V = mkV "chain" "chained" "chained" ;
-lin enchain_V = mkV "enchain" "enchained" "enchained" ; -- compound chain_V ;
-lin unchain_V = mkV "unchain" "unchained" "unchained" ; -- compound chain_V ;
-lin plain_V = mkV "plain" "plained" "plained" ;
-lin complain_V = mkV "complain" "complained" "complained" ; -- compound plain_V ;
-lin explain_V = mkV "explain" "explained" "explained" ; -- compound plain_V ;
-lin remain_V = mkV "remain" "remained" "remained" ;
-lin pain_V = mkV "pain" "pained" "pained" ;
-lin rain_V = mkV "rain" "rained" "rained" ;
-lin brain_V = mkV "brain" "brained" "brained" ; -- notcompound rain_V ;
-lin drain_V = mkV "drain" "drained" "drained" ; -- notcompound rain_V ;
-lin refrain_V = mkV "refrain" "refrained" "refrained" ; -- compound rain_V ;
-lin sprain_V = mkV "sprain" "sprained" "sprained" ; -- notcompound rain_V ;
-lin train_V = mkV "train" "trained" "trained" ; -- notcompound rain_V ;
-lin detrain_V = mkV "detrain" "detrained" "detrained" ; -- compound rain_V ;
-lin entrain_V = mkV "entrain" "entrained" "entrained" ; -- compound rain_V ;
-lin strain_V = mkV "strain" "strained" "strained" ; -- notcompound rain_V ;
-lin restrain_V = mkV "restrain" "restrained" "restrained" ; -- compound rain_V ;
-lin distrain_V = mkV "distrain" "distrained" "distrained" ; -- compound rain_V ;
-lin constrain_V = mkV "constrain" "constrained" "constrained" ; -- compound rain_V ;
-lin overstrain_V = mkV "overstrain" "overstrained" "overstrained" ; -- compound rain_V ;
-lin obtain_V = mkV "obtain" "obtained" "obtained" ;
-lin detain_V = mkV "detain" "detained" "detained" ;
-lin retain_V = mkV "retain" "retained" "retained" ;
-lin maintain_V = mkV "maintain" "maintained" "maintained" ;
-lin contain_V = mkV "contain" "contained" "contained" ;
-lin captain_V = mkV "captain" "captained" "captained" ;
-lin ascertain_V = mkV "ascertain" "ascertained" "ascertained" ;
-lin pertain_V = mkV "pertain" "pertained" "pertained" ;
-lin appertain_V = mkV "appertain" "appertained" "appertained" ; -- compound pertain_V ;
-lin entertain_V = mkV "entertain" "entertained" "entertained" ;
-lin curtain_V = mkV "curtain" "curtained" "curtained" ;
-lin stain_V = mkV "stain" "stained" "stained" ;
-lin abstain_V = mkV "abstain" "abstained" "abstained" ; -- compound stain_V ;
-lin sustain_V = mkV "sustain" "sustained" "sustained" ; -- compound stain_V ;
-lin attain_V = mkV "attain" "attained" "attained" ;
-lin din_V = mkV "din" "dinned" "dinned" ;
-lin rein_V = mkV "rein" "reined" "reined" ;
-lin gin_V = mkV "gin" "ginned" "ginned" ;
-lin begin_2_V = mkV "begin" "beginned" "beginned" ; -- compound gin_V ;
-lin shin_V = mkV "shin" "shinned" "shinned" ;
-lin thin_V = mkV "thin" "thinned" "thinned" ;
-lin skin_V = mkV "skin" "skinned" "skinned" ;
-lin coin_V = mkV "coin" "coined" "coined" ;
-lin join_V = mkV "join" "joined" "joined" ;
-lin 're-join_V' = mkV "re-join" "re-joined" "re-joined" ; -- compound join_V ;
-lin subjoin_V = mkV "subjoin" "subjoined" "subjoined" ; -- compound join_V ;
-lin adjoin_V = mkV "adjoin" "adjoined" "adjoined" ; -- compound join_V ;
-lin rejoin_V = mkV "rejoin" "rejoined" "rejoined" ; -- compound join_V ;
-lin enjoin_V = mkV "enjoin" "enjoined" "enjoined" ; -- compound join_V ;
-lin conjoin_V = mkV "conjoin" "conjoined" "conjoined" ; -- compound join_V ;
-lin purloin_V = mkV "purloin" "purloined" "purloined" ;
-lin groin_V = mkV "groin" "groined" "groined" ;
-lin pin_V = mkV "pin" "pinned" "pinned" ;
-lin underpin_V = mkV "underpin" "underpinned" "underpinned" ; -- compound pin_V ;
-lin chagrin_V = mkV "chagrin" "chagrined" "chagrined" ;
-lin grin_V = mkV "grin" "grinned" "grinned" ;
-lin sin_V = mkV "sin" "sinned" "sinned" ;
-lin rosin_V = mkV "rosin" "rosinned" "rosinned" ; -- compound sin_V ;
-lin tin_V = mkV "tin" "tinned" "tinned" ;
-lin ruin_V = mkV "ruin" "ruined" "ruined" ;
-lin win_1_V = mkV "win" "winned" "winned" ;
-lin twin_V = mkV "twin" "twinned" "twinned" ; -- notcompound win_1_V ;
-lin entwin_V = mkV "entwin" "entwinned" "entwinned" ; -- compound win_1_V ;
-lin damn_V = mkV "damn" "damned" "damned" ;
-lin condemn_V = mkV "condemn" "condemned" "condemned" ;
-lin contemn_V = mkV "contemn" "contemned" "contemned" ;
-lin limn_V = mkV "limn" "limned" "limned" ;
-lin hymn_V = mkV "hymn" "hymned" "hymned" ;
-lin con_V = mkV "con" "conned" "conned" ;
-lin don_V = mkV "don" "donned" "donned" ;
+lin abalone_N = mkN "abalone" "abalones" ;
+lin abampere_N = mkN "abampere" "abamperes" ;
+lin abandon_N = mkN "abandon" "abandons" ;
lin abandon_V = mkV "abandon" "abandoned" "abandoned" ;
-lin pardon_V = mkV "pardon" "pardoned" "pardoned" ;
-lin cordon_V = mkV "cordon" "cordoned" "cordoned" ;
-lin bludgeon_V = mkV "bludgeon" "bludgeoned" "bludgeoned" ;
-lin burgeon_V = mkV "burgeon" "burgeoned" "burgeoned" ;
-lin syphon_2_V = mkV "syphon" "syphonned" "syphonned" ;
-lin siphon_V = mkV "siphon" "siphoned" "siphoned" ;
-lin syphon_1_V = mkV "syphon" "syphoned" "syphoned" ;
-lin fashion_V = mkV "fashion" "fashioned" "fashioned" ;
-lin refashion_V = mkV "refashion" "refashioned" "refashioned" ; -- compound fashion_V ;
-lin cushion_V = mkV "cushion" "cushioned" "cushioned" ;
-lin pinion_V = mkV "pinion" "pinioned" "pinioned" ;
-lin champion_V = mkV "champion" "championed" "championed" ;
-lin envision_V = mkV "envision" "envisionned" "envisionned" ;
-lin occasion_V = mkV "occasion" "occasioned" "occasioned" ;
-lin provision_V = mkV "provision" "provisioned" "provisioned" ;
-lin pension_V = mkV "pension" "pensioned" "pensioned" ;
-lin commission_V = mkV "commission" "commissioned" "commissioned" ;
-lin disillusion_V = mkV "disillusion" "disillusioned" "disillusioned" ;
-lin auction_2_V = mkV "auction" "auctionned" "auctionned" ;
-lin audition_2_V = mkV "audition" "auditionned" "auditionned" ;
-lin reposition_V = mkV "reposition" "repositionned" "repositionned" ;
-lin vacation_V = mkV "vacation" "vacationed" "vacationed" ;
-lin ration_V = mkV "ration" "rationed" "rationed" ;
-lin station_V = mkV "station" "stationed" "stationed" ;
-lin sanction_V = mkV "sanction" "sanctioned" "sanctioned" ;
-lin function_V = mkV "function" "functioned" "functioned" ;
-lin malfunction_V = mkV "malfunction" "malfunctioned" "malfunctioned" ; -- compound function_V ;
-lin auction_1_V = mkV "auction" "auctioned" "auctioned" ;
-lin condition_V = mkV "condition" "conditioned" "conditioned" ;
-lin recondition_V = mkV "recondition" "reconditioned" "reconditioned" ; -- compound condition_V ;
-lin audition_1_V = mkV "audition" "auditioned" "auditioned" ;
-lin munition_V = mkV "munition" "munitioned" "munitioned" ;
-lin requisition_V = mkV "requisition" "requisitioned" "requisitioned" ;
-lin derequisition_V = mkV "derequisition" "derequisitioned" "derequisitioned" ; -- compound requisition_V ;
-lin position_V = mkV "position" "positioned" "positioned" ;
-lin proposition_V = mkV "proposition" "propositioned" "propositioned" ; -- compound position_V ;
-lin petition_V = mkV "petition" "petitioned" "petitioned" ;
-lin partition_V = mkV "partition" "partitioned" "partitioned" ;
-lin mention_V = mkV "mention" "mentioned" "mentioned" ;
-lin motion_V = mkV "motion" "motioned" "motioned" ;
-lin portion_V = mkV "portion" "portioned" "portioned" ;
-lin proportion_V = mkV "proportion" "proportioned" "proportioned" ; -- compound portion_V ;
-lin apportion_V = mkV "apportion" "apportioned" "apportioned" ; -- compound portion_V ;
-lin question_V = mkV "question" "questioned" "questioned" ;
-lin 'cross-question_V' = mkV "cross-question" "cross-questioned" "cross-questioned" ; -- compound question_V ;
-lin caution_V = mkV "caution" "cautioned" "cautioned" ;
-lin reckon_2_V = mkV "reckon" "reckonned" "reckonned" ;
-lin beckon_V = mkV "beckon" "beckoned" "beckoned" ;
-lin reckon_1_V = mkV "reckon" "reckoned" "reckoned" ;
-lin summon_2_V = mkV "summon" "summonned" "summonned" ;
-lin summon_1_V = mkV "summon" "summoned" "summoned" ;
-lin cocoon_V = mkV "cocoon" "cocooned" "cocooned" ;
-lin dragoon_V = mkV "dragoon" "dragooned" "dragooned" ;
-lin hoon_V = mkV "hoon" "hooned" "hooned" ;
-lin balloon_V = mkV "balloon" "ballooned" "ballooned" ;
-lin moon_V = mkV "moon" "mooned" "mooned" ;
-lin honeymoon_V = mkV "honeymoon" "honeymooned" "honeymooned" ; -- compound moon_V ;
-lin lampoon_V = mkV "lampoon" "lampooned" "lampooned" ;
-lin harpoon_V = mkV "harpoon" "harpooned" "harpooned" ;
-lin spoon_V = mkV "spoon" "spooned" "spooned" ;
-lin maroon_V = mkV "maroon" "marooned" "marooned" ;
-lin croon_V = mkV "croon" "crooned" "crooned" ;
-lin cartoon_V = mkV "cartoon" "cartooned" "cartooned" ;
-lin festoon_V = mkV "festoon" "festooned" "festooned" ;
-lin swoon_V = mkV "swoon" "swooned" "swooned" ;
-lin chaperon_V = mkV "chaperon" "chaperoned" "chaperoned" ;
-lin iron_2_V = mkV "iron" "ironned" "ironned" ;
-lin iron_1_V = mkV "iron" "ironed" "ironed" ;
-lin environ_V = mkV "environ" "environed" "environed" ; -- compound iron_1_V ;
-lin reason_2_V = mkV "reason" "reasonned" "reasonned" ;
-lin reason_1_V = mkV "reason" "reasoned" "reasoned" ;
-lin season_V = mkV "season" "seasoned" "seasoned" ;
-lin poison_V = mkV "poison" "poisoned" "poisoned" ;
-lin caparison_V = mkV "caparison" "caparisoned" "caparisoned" ;
-lin imprison_V = mkV "imprison" "imprisoned" "imprisoned" ;
-lin garrison_V = mkV "garrison" "garrisoned" "garrisoned" ;
-lin jettison_V = mkV "jettison" "jettisoned" "jettisoned" ;
-lin crimson_V = mkV "crimson" "crimsoned" "crimsoned" ;
-lin ton_V = mkV "ton" "tonned" "tonned" ;
-lin wanton_V = mkV "wanton" "wantoned" "wantoned" ;
-lin cotton_2_V = mkV "cotton" "cottonned" "cottonned" ;
-lin cotton_1_V = mkV "cotton" "cottoned" "cottoned" ;
-lin button_V = mkV "button" "buttoned" "buttoned" ;
-lin unbutton_V = mkV "unbutton" "unbuttoned" "unbuttoned" ; -- compound button_V ;
-lin crayon_V = mkV "crayon" "crayoned" "crayoned" ;
-lin blazon_V = mkV "blazon" "blazoned" "blazoned" ;
-lin emblazon_V = mkV "emblazon" "emblazoned" "emblazoned" ; -- compound blazon_V ;
-lin darn_V = mkV "darn" "darned" "darned" ;
-lin earn_V = mkV "earn" "earned" "earned" ;
-lin learn_V = mkV "learn" "learned" "learned" ; -- notcompound earn_V ;
-lin unlearn_V = mkV "unlearn" "unlearned" "unlearned" ; -- compound earn_V ;
-lin yearn_V = mkV "yearn" "yearned" "yearned" ; -- notcompound earn_V ;
-lin larn_V = mkV "larn" "larned" "larned" ;
-lin warn_V = mkV "warn" "warned" "warned" ;
-lin forewarn_V = mkV "forewarn" "forewarned" "forewarned" ; -- compound warn_V ;
-lin yarn_V = mkV "yarn" "yarned" "yarned" ;
-lin concern_V = mkV "concern" "concerned" "concerned" ;
-lin discern_V = mkV "discern" "discerned" "discerned" ;
-lin intern_V = mkV "intern" "interned" "interned" ;
-lin pattern_V = mkV "pattern" "patterned" "patterned" ;
-lin govern_V = mkV "govern" "governed" "governed" ;
-lin misgovern_V = mkV "misgovern" "misgoverned" "misgoverned" ; -- compound govern_V ;
-lin suborn_V = mkV "suborn" "suborned" "suborned" ;
-lin corn_V = mkV "corn" "corned" "corned" ;
-lin scorn_V = mkV "scorn" "scorned" "scorned" ; -- notcompound corn_V ;
-lin adorn_V = mkV "adorn" "adorned" "adorned" ;
-lin horn_V = mkV "horn" "horned" "horned" ;
-lin dehorn_V = mkV "dehorn" "dehorned" "dehorned" ; -- compound horn_V ;
-lin shoehorn_V = mkV "shoehorn" "shoehorned" "shoehorned" ; -- compound horn_V ;
-lin shorn_V = mkV "shorn" "shorned" "shorned" ; -- notcompound horn_V ;
-lin burn_1_V = mkV "burn" "burned" "burned" ;
-lin churn_V = mkV "churn" "churned" "churned" ;
-lin adjourn_V = mkV "adjourn" "adjourned" "adjourned" ;
-lin sojourn_V = mkV "sojourn" "sojourned" "sojourned" ;
-lin mourn_V = mkV "mourn" "mourned" "mourned" ;
-lin spurn_V = mkV "spurn" "spurned" "spurned" ;
-lin turn_V = mkV "turn" "turned" "turned" ;
-lin return_V = mkV "return" "returned" "returned" ; -- compound turn_V ;
-lin overturn_V = mkV "overturn" "overturned" "overturned" ; -- compound turn_V ;
-lin dun_V = mkV "dun" "dunned" "dunned" ;
-lin gun_V = mkV "gun" "gunned" "gunned" ;
-lin shun_V = mkV "shun" "shunned" "shunned" ;
-lin pun_V = mkV "pun" "punned" "punned" ;
-lin run_2_V = mkV "run" "runned" "runned" ;
-lin sun_V = mkV "sun" "sunned" "sunned" ;
-lin stun_V = mkV "stun" "stunned" "stunned" ;
-lin dawn_V = mkV "dawn" "dawned" "dawned" ;
-lin fawn_V = mkV "fawn" "fawned" "fawned" ;
-lin pawn_V = mkV "pawn" "pawned" "pawned" ;
-lin spawn_V = mkV "spawn" "spawned" "spawned" ; -- notcompound pawn_V ;
-lin prawn_V = mkV "prawn" "prawned" "prawned" ;
-lin yawn_V = mkV "yawn" "yawned" "yawned" ;
-lin own_V = mkV "own" "owned" "owned" ;
-lin down_V = mkV "down" "downed" "downed" ; -- notcompound own_V ;
-lin gown_V = mkV "gown" "gowned" "gowned" ; -- notcompound own_V ;
-lin clown_V = mkV "clown" "clowned" "clowned" ; -- notcompound own_V ;
-lin brown_V = mkV "brown" "browned" "browned" ; -- notcompound own_V ;
-lin crown_V = mkV "crown" "crowned" "crowned" ; -- notcompound own_V ;
-lin drown_V = mkV "drown" "drowned" "drowned" ; -- notcompound own_V ;
-lin frown_V = mkV "frown" "frowned" "frowned" ; -- notcompound own_V ;
-lin disown_V = mkV "disown" "disowned" "disowned" ; -- compound own_V ;
-lin burn_2_V = mkV "burn" "burned" "burnt" ;
-lin begin_1_V = mkV "begin" "began" "begun" ;
-lin win_2_V = mkV "win" "won" "won" ;
-lin spin_V = mkV "spin" "spun" "spun" ;
-lin run_1_V = mkV "run" "ran" "run" ;
-lin rerun_V = mkV "rerun" "reran" "rerun" ; -- compound run_1_V ;
-lin overrun_V = mkV "overrun" "overran" "overrun" ; -- compound run_1_V ;
-lin outrun_V = mkV "outrun" "outran" "outrun" ; -- compound run_1_V ;
-lin burn_3_V = mkV "burn" "burnt" "burned" ;
-lin mean_V = mkV "mean" "meant" "meant" ;
-lin burn_4_V = mkV "burn" "burnt" "burnt" ;
-lin stucco_V = mkV "stucco" "stuccoed" "stuccoed" ;
-lin fresco_V = mkV "fresco" "frescoed" "frescoed" ;
-lin bastinado_V = mkV "bastinado" "bastinadoed" "bastinadoed" ;
-lin torpedo_V = mkV "torpedo" "torpedoed" "torpedoed" ;
-lin roneo_V = mkV "roneo" "roneoed" "roneoed" ;
-lin go_1_V = mkV "go" "goed" "goed" ;
-lin tango_V = mkV "tango" "tangoed" "tangoed" ; -- compound go_1_V ;
-lin embargo_V = mkV "embargo" "embargoed" "embargoed" ; -- compound go_1_V ;
-lin echo_V = mkV "echo" "echoed" "echoed" ;
-lin 're-echo_V' = mkV "re-echo" "re-echoed" "re-echoed" ; -- compound echo_V ;
-lin radio_V = mkV "radio" "radioed" "radioed" ;
-lin boo_V = mkV "boo" "booed" "booed" ;
-lin taboo_V = mkV "taboo" "tabooed" "tabooed" ; -- compound boo_V ;
-lin coo_V = mkV "coo" "cooed" "cooed" ;
-lin hoodoo_V = mkV "hoodoo" "hoodooed" "hoodooed" ;
-lin shoo_V = mkV "shoo" "shooed" "shooed" ;
-lin halloo_V = mkV "halloo" "hallooed" "hallooed" ;
-lin moo_V = mkV "moo" "mooed" "mooed" ;
-lin shampoo_V = mkV "shampoo" "shampooed" "shampooed" ;
-lin tattoo_V = mkV "tattoo" "tattooed" "tattooed" ;
-lin woo_V = mkV "woo" "wooed" "wooed" ;
-lin zero_V = mkV "zero" "zeroed" "zeroed" ;
-lin lasso_V = mkV "lasso" "lassoed" "lassoed" ;
-lin veto_V = mkV "veto" "vetoed" "vetoed" ;
-lin do_V = mkV "do" "did" "done" ;
-lin redo_V = mkV "redo" "redid" "redone" ; -- compound do_V ;
-lin undo_V = mkV "undo" "undid" "undone" ; -- compound do_V ;
-lin overdo_V = mkV "overdo" "overdid" "overdone" ; -- compound do_V ;
-lin outdo_V = mkV "outdo" "outdid" "outdone" ; -- compound do_V ;
-lin go_2_V = mkV "go" "went" "gone" ;
-lin forego_V = mkV "forego" "forewent" "foregone" ; -- compound go_2_V ;
-lin undergo_V = mkV "undergo" "underwent" "undergone" ; -- compound go_2_V ;
-lin forgo_V = mkV "forgo" "forwent" "forgone" ; -- compound go_2_V ;
-lin outgo_V = mkV "outgo" "outwent" "outgone" ; -- compound go_2_V ;
-lin cap_V = mkV "cap" "capped" "capped" ;
-lin recap_V = mkV "recap" "recapped" "recapped" ; -- compound cap_V ;
-lin handicap_V = mkV "handicap" "handicapped" "handicapped" ; -- compound cap_V ;
-lin heap_V = mkV "heap" "heaped" "heaped" ;
-lin leap_1_V = mkV "leap" "leaped" "leaped" ;
-lin overleap_V = mkV "overleap" "overleaped" "overleaped" ; -- compound leap_1_V ;
-lin outleap_V = mkV "outleap" "outleaped" "outleaped" ; -- compound leap_1_V ;
-lin reap_V = mkV "reap" "reaped" "reaped" ;
-lin hap_V = mkV "hap" "happed" "happed" ;
-lin chap_V = mkV "chap" "chapped" "chapped" ; -- notcompound hap_V ;
-lin lap_V = mkV "lap" "lapped" "lapped" ;
-lin clap_V = mkV "clap" "clapped" "clapped" ; -- notcompound lap_V ;
-lin flap_V = mkV "flap" "flapped" "flapped" ; -- notcompound lap_V ;
-lin overlap_V = mkV "overlap" "overlapped" "overlapped" ; -- compound lap_V ;
-lin slap_V = mkV "slap" "slapped" "slapped" ; -- notcompound lap_V ;
-lin map_V = mkV "map" "mapped" "mapped" ;
-lin nap_V = mkV "nap" "napped" "napped" ;
-lin kidnap_V = mkV "kidnap" "kidnapped" "kidnapped" ; -- compound nap_V ;
-lin knap_V = mkV "knap" "knapped" "knapped" ; -- notcompound nap_V ;
-lin snap_V = mkV "snap" "snapped" "snapped" ; -- notcompound nap_V ;
-lin soap_V = mkV "soap" "soaped" "soaped" ;
-lin 'soft-soap_V' = mkV "soft-soap" "soft-soaped" "soft-soaped" ; -- compound soap_V ;
-lin rap_V = mkV "rap" "rapped" "rapped" ;
-lin crap_V = mkV "crap" "crapped" "crapped" ; -- notcompound rap_V ;
-lin scrap_V = mkV "scrap" "scrapped" "scrapped" ; -- notcompound rap_V ;
-lin trap_V = mkV "trap" "trapped" "trapped" ; -- notcompound rap_V ;
-lin entrap_V = mkV "entrap" "entrapped" "entrapped" ; -- compound rap_V ;
-lin strap_V = mkV "strap" "strapped" "strapped" ; -- notcompound rap_V ;
-lin wrap_V = mkV "wrap" "wrapped" "wrapped" ; -- notcompound rap_V ;
-lin enwrap_V = mkV "enwrap" "enwrapped" "enwrapped" ; -- compound rap_V ;
-lin unwrap_V = mkV "unwrap" "unwrapped" "unwrapped" ; -- compound rap_V ;
-lin sap_V = mkV "sap" "sapped" "sapped" ;
-lin tap_V = mkV "tap" "tapped" "tapped" ;
-lin swap_V = mkV "swap" "swapped" "swapped" ;
-lin yap_V = mkV "yap" "yapped" "yapped" ;
-lin zap_V = mkV "zap" "zapped" "zapped" ;
-lin cheep_V = mkV "cheep" "cheeped" "cheeped" ;
-lin keep_1_V = mkV "keep" "keeped" "keeped" ;
-lin bleep_V = mkV "bleep" "bleeped" "bleeped" ;
-lin peep_V = mkV "peep" "peeped" "peeped" ;
-lin creep_1_V = mkV "creep" "creeped" "creeped" ;
-lin seep_V = mkV "seep" "seeped" "seeped" ;
-lin steep_V = mkV "steep" "steeped" "steeped" ;
-lin pep_V = mkV "pep" "pepped" "pepped" ;
-lin step_V = mkV "step" "stepped" "stepped" ;
-lin sidestep_V = mkV "sidestep" "sidestepped" "sidestepped" ; -- compound step_V ;
-lin overstep_V = mkV "overstep" "overstepped" "overstepped" ; -- compound step_V ;
-lin dip_V = mkV "dip" "dipped" "dipped" ;
-lin chip_V = mkV "chip" "chipped" "chipped" ;
-lin ship_V = mkV "ship" "shipped" "shipped" ;
-lin worship_V = mkV "worship" "worshipped" "worshipped" ; -- compound ship_V ;
-lin transship_V = mkV "transship" "transshipped" "transshipped" ; -- compound ship_V ;
-lin whip_V = mkV "whip" "whipped" "whipped" ;
-lin horsewhip_V = mkV "horsewhip" "horsewhipped" "horsewhipped" ; -- compound whip_V ;
-lin kip_V = mkV "kip" "kipped" "kipped" ;
-lin skip_V = mkV "skip" "skipped" "skipped" ; -- notcompound kip_V ;
-lin clip_V = mkV "clip" "clipped" "clipped" ;
-lin flip_V = mkV "flip" "flipped" "flipped" ;
-lin slip_V = mkV "slip" "slipped" "slipped" ;
-lin 'side-slip_V' = mkV "side-slip" "side-slipped" "side-slipped" ; -- compound slip_V ;
-lin nip_V = mkV "nip" "nipped" "nipped" ;
-lin snip_V = mkV "snip" "snipped" "snipped" ; -- notcompound nip_V ;
-lin pip_V = mkV "pip" "pipped" "pipped" ;
-lin rip_V = mkV "rip" "ripped" "ripped" ;
-lin drip_V = mkV "drip" "dripped" "dripped" ; -- notcompound rip_V ;
-lin grip_V = mkV "grip" "gripped" "gripped" ; -- notcompound rip_V ;
-lin trip_V = mkV "trip" "tripped" "tripped" ; -- notcompound rip_V ;
-lin egotrip_V = mkV "egotrip" "egotripped" "egotripped" ; -- compound rip_V ;
-lin strip_V = mkV "strip" "stripped" "stripped" ; -- notcompound rip_V ;
-lin outstrip_V = mkV "outstrip" "outstripped" "outstripped" ; -- compound rip_V ;
-lin sip_V = mkV "sip" "sipped" "sipped" ;
-lin gossip_V = mkV "gossip" "gossiped" "gossiped" ;
-lin tip_V = mkV "tip" "tipped" "tipped" ;
-lin quip_V = mkV "quip" "quipped" "quipped" ;
-lin equip_V = mkV "equip" "equipped" "equipped" ; -- notcompound quip_V ;
-lin zip_V = mkV "zip" "zipped" "zipped" ;
-lin unzip_V = mkV "unzip" "unzipped" "unzipped" ; -- compound zip_V ;
-lin scalp_V = mkV "scalp" "scalped" "scalped" ;
-lin help_V = mkV "help" "helped" "helped" ;
-lin whelp_V = mkV "whelp" "whelped" "whelped" ; -- notcompound help_V ;
-lin yelp_V = mkV "yelp" "yelped" "yelped" ;
-lin gulp_V = mkV "gulp" "gulped" "gulped" ;
-lin pulp_V = mkV "pulp" "pulped" "pulped" ;
-lin camp_V = mkV "camp" "camped" "camped" ;
-lin decamp_V = mkV "decamp" "decamped" "decamped" ; -- compound camp_V ;
-lin encamp_V = mkV "encamp" "encamped" "encamped" ; -- compound camp_V ;
-lin scamp_V = mkV "scamp" "scamped" "scamped" ; -- notcompound camp_V ;
-lin damp_V = mkV "damp" "damped" "damped" ;
-lin champ_V = mkV "champ" "champed" "champed" ;
-lin clamp_V = mkV "clamp" "clamped" "clamped" ;
-lin ramp_V = mkV "ramp" "ramped" "ramped" ;
-lin cramp_V = mkV "cramp" "cramped" "cramped" ; -- notcompound ramp_V ;
-lin tramp_V = mkV "tramp" "tramped" "tramped" ; -- notcompound ramp_V ;
-lin tamp_V = mkV "tamp" "tamped" "tamped" ;
-lin stamp_V = mkV "stamp" "stamped" "stamped" ; -- notcompound tamp_V ;
-lin 'rubber-stamp_V' = mkV "rubber-stamp" "rubber-stamped" "rubber-stamped" ; -- compound tamp_V ;
-lin vamp_V = mkV "vamp" "vamped" "vamped" ;
-lin revamp_V = mkV "revamp" "revamped" "revamped" ; -- compound vamp_V ;
-lin swamp_V = mkV "swamp" "swamped" "swamped" ;
-lin skimp_V = mkV "skimp" "skimped" "skimped" ;
-lin limp_V = mkV "limp" "limped" "limped" ;
-lin pimp_V = mkV "pimp" "pimped" "pimped" ;
-lin crimp_V = mkV "crimp" "crimped" "crimped" ;
-lin scrimp_V = mkV "scrimp" "scrimped" "scrimped" ; -- notcompound crimp_V ;
-lin shrimp_V = mkV "shrimp" "shrimped" "shrimped" ;
-lin primp_V = mkV "primp" "primped" "primped" ;
-lin wimp_V = mkV "wimp" "wimped" "wimped" ;
-lin romp_V = mkV "romp" "romped" "romped" ;
-lin stomp_V = mkV "stomp" "stomped" "stomped" ;
-lin bump_V = mkV "bump" "bumped" "bumped" ;
-lin dump_V = mkV "dump" "dumped" "dumped" ;
-lin hump_V = mkV "hump" "humped" "humped" ;
-lin thump_V = mkV "thump" "thumped" "thumped" ; -- notcompound hump_V ;
-lin jump_V = mkV "jump" "jumped" "jumped" ;
-lin lump_V = mkV "lump" "lumped" "lumped" ;
-lin clump_V = mkV "clump" "clumped" "clumped" ; -- notcompound lump_V ;
-lin plump_V = mkV "plump" "plumped" "plumped" ; -- notcompound lump_V ;
-lin slump_V = mkV "slump" "slumped" "slumped" ; -- notcompound lump_V ;
-lin pump_V = mkV "pump" "pumped" "pumped" ;
-lin trump_V = mkV "trump" "trumped" "trumped" ;
-lin overtrump_V = mkV "overtrump" "overtrumped" "overtrumped" ; -- compound trump_V ;
-lin stump_V = mkV "stump" "stumped" "stumped" ;
-lin gazump_V = mkV "gazump" "gazumped" "gazumped" ;
-lin cop_V = mkV "cop" "copped" "copped" ;
-lin hop_V = mkV "hop" "hopped" "hopped" ;
-lin chop_V = mkV "chop" "chopped" "chopped" ; -- notcompound hop_V ;
-lin hedgehop_V = mkV "hedgehop" "hedgehopped" "hedgehopped" ; -- compound hop_V ;
-lin shop_V = mkV "shop" "shopped" "shopped" ; -- notcompound hop_V ;
-lin whop_V = mkV "whop" "whopped" "whopped" ; -- notcompound hop_V ;
-lin lop_V = mkV "lop" "lopped" "lopped" ;
-lin develop_V = mkV "develop" "developed" "developed" ;
-lin redevelop_V = mkV "redevelop" "redeveloped" "redeveloped" ; -- compound develop_V ;
-lin envelop_V = mkV "envelop" "enveloped" "enveloped" ;
-lin flop_V = mkV "flop" "flopped" "flopped" ;
-lin scallop_V = mkV "scallop" "scalloped" "scalloped" ;
-lin gallop_V = mkV "gallop" "galloped" "galloped" ;
-lin wallop_V = mkV "wallop" "walloped" "walloped" ;
-lin scollop_V = mkV "scollop" "scolloped" "scolloped" ;
-lin plop_V = mkV "plop" "plopped" "plopped" ;
-lin slop_V = mkV "slop" "slopped" "slopped" ;
-lin mop_V = mkV "mop" "mopped" "mopped" ;
-lin coop_V = mkV "coop" "cooped" "cooped" ;
-lin scoop_V = mkV "scoop" "scooped" "scooped" ; -- notcompound coop_V ;
-lin hoop_V = mkV "hoop" "hooped" "hooped" ;
-lin whoop_V = mkV "whoop" "whooped" "whooped" ; -- notcompound hoop_V ;
-lin loop_V = mkV "loop" "looped" "looped" ;
-lin snoop_V = mkV "snoop" "snooped" "snooped" ;
-lin poop_V = mkV "poop" "pooped" "pooped" ;
-lin droop_V = mkV "droop" "drooped" "drooped" ;
-lin troop_V = mkV "troop" "trooped" "trooped" ;
-lin stoop_V = mkV "stoop" "stooped" "stooped" ;
-lin swoop_V = mkV "swoop" "swooped" "swooped" ;
-lin pop_V = mkV "pop" "popped" "popped" ;
-lin crop_V = mkV "crop" "cropped" "cropped" ;
-lin overcrop_V = mkV "overcrop" "overcropped" "overcropped" ; -- compound crop_V ;
-lin drop_V = mkV "drop" "dropped" "dropped" ;
-lin 'name-drop_V' = mkV "name-drop" "name-dropped" "name-dropped" ; -- compound drop_V ;
-lin eavesdrop_V = mkV "eavesdrop" "eavesdropped" "eavesdropped" ; -- compound drop_V ;
-lin prop_V = mkV "prop" "propped" "propped" ;
-lin strop_V = mkV "strop" "stropped" "stropped" ;
-lin sop_V = mkV "sop" "sopped" "sopped" ;
-lin top_V = mkV "top" "topped" "topped" ;
-lin overtop_V = mkV "overtop" "overtopped" "overtopped" ; -- compound top_V ;
-lin stop_V = mkV "stop" "stopped" "stopped" ; -- notcompound top_V ;
-lin swop_V = mkV "swop" "swopped" "swopped" ;
-lin carp_V = mkV "carp" "carped" "carped" ;
-lin harp_V = mkV "harp" "harped" "harped" ;
-lin warp_V = mkV "warp" "warped" "warped" ;
-lin chirp_V = mkV "chirp" "chirped" "chirped" ;
-lin burp_V = mkV "burp" "burped" "burped" ;
-lin usurp_V = mkV "usurp" "usurped" "usurped" ;
-lin gasp_V = mkV "gasp" "gasped" "gasped" ;
-lin clasp_V = mkV "clasp" "clasped" "clasped" ;
-lin rasp_V = mkV "rasp" "rasped" "rasped" ;
-lin grasp_V = mkV "grasp" "grasped" "grasped" ; -- notcompound rasp_V ;
-lin lisp_V = mkV "lisp" "lisped" "lisped" ;
-lin crisp_V = mkV "crisp" "crisped" "crisped" ;
-lin up_V = mkV "up" "upped" "upped" ;
-lin cup_V = mkV "cup" "cupped" "cupped" ; -- notcompound up_V ;
-lin hiccup_V = mkV "hiccup" "hiccupped" "hiccupped" ; -- compound up_V ;
-lin recoup_V = mkV "recoup" "recouped" "recouped" ;
-lin group_V = mkV "group" "grouped" "grouped" ;
-lin regroup_V = mkV "regroup" "regrouped" "regrouped" ; -- compound group_V ;
-lin soup_V = mkV "soup" "souped" "souped" ;
-lin chirrup_V = mkV "chirrup" "chirruped" "chirruped" ;
-lin sup_V = mkV "sup" "supped" "supped" ;
-lin gawp_V = mkV "gawp" "gawped" "gawped" ;
-lin gyp_V = mkV "gyp" "gypped" "gypped" ;
-lin leap_2_V = mkV "leap" "leaped" "lept" ;
-lin leap_3_V = mkV "leap" "lept" "leaped" ;
-lin leap_4_V = mkV "leap" "lept" "lept" ;
-lin keep_2_V = mkV "keep" "kept" "kept" ;
-lin sleep_V = mkV "sleep" "slept" "slept" ;
-lin oversleep_V = mkV "oversleep" "overslept" "overslept" ; -- compound sleep_V ;
-lin creep_2_V = mkV "creep" "crept" "crept" ;
-lin weep_V = mkV "weep" "wept" "wept" ;
-lin sweep_V = mkV "sweep" "swept" "swept" ; -- notcompound weep_V ;
-lin bar_V = mkV "bar" "barred" "barred" ;
-lin debar_V = mkV "debar" "debarred" "debarred" ; -- compound bar_V ;
-lin unbar_V = mkV "unbar" "unbarred" "unbarred" ; -- compound bar_V ;
-lin scar_V = mkV "scar" "scarred" "scarred" ;
-lin endear_V = mkV "endear" "endeared" "endeared" ;
-lin fear_V = mkV "fear" "feared" "feared" ;
-lin gear_V = mkV "gear" "geared" "geared" ;
-lin shear_V = mkV "shear" "sheared" "sheared" ;
-lin clear_V = mkV "clear" "cleared" "cleared" ;
-lin smear_V = mkV "smear" "smeared" "smeared" ;
-lin besmear_V = mkV "besmear" "besmeared" "besmeared" ; -- compound smear_V ;
-lin near_V = mkV "near" "neared" "neared" ;
-lin appear_V = mkV "appear" "appeared" "appeared" ;
-lin reappear_V = mkV "reappear" "reappeared" "reappeared" ; -- compound appear_V ;
-lin disappear_V = mkV "disappear" "disappeared" "disappeared" ; -- compound appear_V ;
-lin spear_V = mkV "spear" "speared" "speared" ;
-lin rear_V = mkV "rear" "reared" "reared" ;
-lin sear_V = mkV "sear" "seared" "seared" ;
-lin wear_1_V = mkV "wear" "weared" "weared" ;
-lin swear_1_V = mkV "swear" "sweared" "sweared" ; -- notcompound wear_1_V ;
-lin far_V = mkV "far" "farred" "farred" ;
-lin beggar_V = mkV "beggar" "beggared" "beggared" ;
-lin sugar_V = mkV "sugar" "sugared" "sugared" ;
-lin char_V = mkV "char" "charred" "charred" ;
-lin jar_V = mkV "jar" "jarred" "jarred" ;
-lin collar_V = mkV "collar" "collared" "collared" ;
-lin mar_V = mkV "mar" "marred" "marred" ;
-lin roar_V = mkV "roar" "roared" "roared" ;
-lin soar_V = mkV "soar" "soared" "soared" ;
-lin par_V = mkV "par" "parred" "parred" ;
-lin spar_V = mkV "spar" "sparred" "sparred" ; -- notcompound par_V ;
-lin tar_V = mkV "tar" "tarred" "tarred" ;
-lin mortar_V = mkV "mortar" "mortared" "mortared" ;
-lin star_V = mkV "star" "starred" "starred" ;
-lin 'co-star_V' = mkV "co-star" "co-starred" "co-starred" ; -- compound star_V ;
-lin war_V = mkV "war" "warred" "warred" ;
-lin hear_V = mkV "hear" "heard" "heard" ;
-lin rehear_V = mkV "rehear" "reheard" "reheard" ; -- compound hear_V ;
-lin overhear_V = mkV "overhear" "overheard" "overheard" ; -- compound hear_V ;
-lin jabber_V = mkV "jabber" "jabbered" "jabbered" ;
-lin blabber_V = mkV "blabber" "blabbered" "blabbered" ;
-lin gibber_V = mkV "gibber" "gibbered" "gibbered" ;
-lin clobber_V = mkV "clobber" "clobbered" "clobbered" ;
-lin slobber_V = mkV "slobber" "slobbered" "slobbered" ;
-lin blubber_V = mkV "blubber" "blubbered" "blubbered" ;
-lin rubber_V = mkV "rubber" "rubbered" "rubbered" ;
-lin camber_V = mkV "camber" "cambered" "cambered" ;
-lin clamber_V = mkV "clamber" "clambered" "clambered" ;
-lin remember_V = mkV "remember" "remembered" "remembered" ;
-lin dismember_V = mkV "dismember" "dismembered" "dismembered" ;
-lin limber_V = mkV "limber" "limbered" "limbered" ;
-lin cumber_V = mkV "cumber" "cumbered" "cumbered" ;
-lin encumber_V = mkV "encumber" "encumbered" "encumbered" ; -- compound cumber_V ;
-lin disencumber_V = mkV "disencumber" "disencumbered" "disencumbered" ; -- compound cumber_V ;
-lin lumber_V = mkV "lumber" "lumbered" "lumbered" ;
-lin slumber_V = mkV "slumber" "slumbered" "slumbered" ; -- notcompound lumber_V ;
-lin number_V = mkV "number" "numbered" "numbered" ;
-lin outnumber_V = mkV "outnumber" "outnumbered" "outnumbered" ; -- compound number_V ;
-lin sober_V = mkV "sober" "sobered" "sobered" ;
-lin ladder_V = mkV "ladder" "laddered" "laddered" ;
-lin dodder_V = mkV "dodder" "doddered" "doddered" ;
-lin shudder_V = mkV "shudder" "shuddered" "shuddered" ;
-lin judder_V = mkV "judder" "juddered" "juddered" ;
-lin embroider_V = mkV "embroider" "embroidered" "embroidered" ;
-lin consider_V = mkV "consider" "considered" "considered" ;
-lin reconsider_V = mkV "reconsider" "reconsidered" "reconsidered" ; -- compound consider_V ;
-lin bewilder_V = mkV "bewilder" "bewildered" "bewildered" ;
-lin solder_V = mkV "solder" "soldered" "soldered" ;
-lin 'soft-solder_V' = mkV "soft-solder" "soft-soldered" "soft-soldered" ; -- compound solder_V ;
-lin shoulder_V = mkV "shoulder" "shouldered" "shouldered" ;
-lin 'cold-shoulder_V' = mkV "cold-shoulder" "cold-shouldered" "cold-shouldered" ; -- compound shoulder_V ;
-lin moulder_V = mkV "moulder" "mouldered" "mouldered" ;
-lin smoulder_V = mkV "smoulder" "smouldered" "smouldered" ; -- notcompound moulder_V ;
-lin meander_V = mkV "meander" "meandered" "meandered" ;
-lin philander_V = mkV "philander" "philandered" "philandered" ;
-lin slander_V = mkV "slander" "slandered" "slandered" ;
-lin gerrymander_V = mkV "gerrymander" "gerrymandered" "gerrymandered" ;
-lin pander_V = mkV "pander" "pandered" "pandered" ;
-lin squander_V = mkV "squander" "squandered" "squandered" ;
-lin wander_V = mkV "wander" "wandered" "wandered" ;
-lin engender_V = mkV "engender" "engendered" "engendered" ;
-lin calender_V = mkV "calender" "calendered" "calendered" ;
-lin render_V = mkV "render" "rendered" "rendered" ;
-lin surrender_V = mkV "surrender" "surrendered" "surrendered" ; -- compound render_V ;
-lin tender_V = mkV "tender" "tendered" "tendered" ;
-lin hinder_V = mkV "hinder" "hindered" "hindered" ;
-lin ponder_V = mkV "ponder" "pondered" "pondered" ;
-lin wonder_V = mkV "wonder" "wondered" "wondered" ;
-lin launder_V = mkV "launder" "laundered" "laundered" ;
-lin maunder_V = mkV "maunder" "maundered" "maundered" ;
-lin thunder_V = mkV "thunder" "thundered" "thundered" ;
-lin blunder_V = mkV "blunder" "blundered" "blundered" ;
-lin plunder_V = mkV "plunder" "plundered" "plundered" ;
-lin founder_V = mkV "founder" "foundered" "foundered" ;
-lin flounder_V = mkV "flounder" "floundered" "floundered" ;
-lin sunder_V = mkV "sunder" "sundered" "sundered" ;
-lin order_V = mkV "order" "ordered" "ordered" ;
-lin border_V = mkV "border" "bordered" "bordered" ; -- notcompound order_V ;
-lin disorder_V = mkV "disorder" "disordered" "disordered" ; -- compound order_V ;
-lin murder_V = mkV "murder" "murdered" "murdered" ;
-lin powder_V = mkV "powder" "powdered" "powdered" ;
-lin commandeer_V = mkV "commandeer" "commandeered" "commandeered" ;
-lin cheer_V = mkV "cheer" "cheered" "cheered" ;
-lin sheer_V = mkV "sheer" "sheered" "sheered" ;
-lin jeer_V = mkV "jeer" "jeered" "jeered" ;
-lin leer_V = mkV "leer" "leered" "leered" ;
-lin veneer_V = mkV "veneer" "veneered" "veneered" ;
-lin engineer_V = mkV "engineer" "engineered" "engineered" ;
-lin domineer_V = mkV "domineer" "domineered" "domineered" ;
-lin pioneer_V = mkV "pioneer" "pioneered" "pioneered" ;
-lin sneer_V = mkV "sneer" "sneered" "sneered" ;
-lin peer_V = mkV "peer" "peered" "peered" ;
-lin career_V = mkV "career" "careered" "careered" ;
-lin profiteer_V = mkV "profiteer" "profiteered" "profiteered" ;
-lin volunteer_V = mkV "volunteer" "volunteered" "volunteered" ;
-lin steer_V = mkV "steer" "steered" "steered" ;
-lin queer_V = mkV "queer" "queered" "queered" ;
-lin veer_V = mkV "veer" "veered" "veered" ;
-lin defer_V = mkV "defer" "deferred" "deferred" ;
-lin refer_V = mkV "refer" "referred" "referred" ;
-lin prefer_V = mkV "prefer" "preferred" "preferred" ; -- notcompound refer_V ;
-lin differ_V = mkV "differ" "differed" "differed" ;
-lin offer_V = mkV "offer" "offered" "offered" ;
-lin reoffer_V = mkV "reoffer" "reoffered" "reoffered" ; -- compound offer_V ;
-lin proffer_V = mkV "proffer" "proffered" "proffered" ; -- notcompound offer_V ;
-lin buffer_V = mkV "buffer" "buffered" "buffered" ;
-lin suffer_V = mkV "suffer" "suffered" "suffered" ;
-lin pilfer_V = mkV "pilfer" "pilfered" "pilfered" ;
-lin infer_V = mkV "infer" "inferred" "inferred" ;
-lin confer_V = mkV "confer" "conferred" "conferred" ;
-lin transfer_V = mkV "transfer" "transferred" "transferred" ;
-lin wager_V = mkV "wager" "wagered" "wagered" ;
-lin badger_V = mkV "badger" "badgered" "badgered" ;
-lin stagger_V = mkV "stagger" "staggered" "staggered" ;
-lin swagger_V = mkV "swagger" "swaggered" "swaggered" ;
-lin snigger_V = mkV "snigger" "sniggered" "sniggered" ;
-lin trigger_V = mkV "trigger" "triggered" "triggered" ;
-lin bugger_V = mkV "bugger" "buggered" "buggered" ;
-lin anger_V = mkV "anger" "angered" "angered" ;
-lin endanger_V = mkV "endanger" "endangered" "endangered" ; -- compound anger_V ;
-lin finger_V = mkV "finger" "fingered" "fingered" ;
-lin ginger_V = mkV "ginger" "gingered" "gingered" ;
-lin linger_V = mkV "linger" "lingered" "lingered" ;
-lin malinger_V = mkV "malinger" "malingered" "malingered" ; -- compound linger_V ;
-lin hunger_V = mkV "hunger" "hungered" "hungered" ;
-lin butcher_V = mkV "butcher" "butchered" "butchered" ;
-lin cipher_V = mkV "cipher" "ciphered" "ciphered" ;
-lin decipher_V = mkV "decipher" "deciphered" "deciphered" ; -- compound cipher_V ;
-lin cypher_V = mkV "cypher" "cyphered" "cyphered" ;
-lin usher_V = mkV "usher" "ushered" "ushered" ;
-lin feather_V = mkV "feather" "feathered" "feathered" ;
-lin weather_V = mkV "weather" "weathered" "weathered" ;
-lin father_V = mkV "father" "fathered" "fathered" ;
-lin gather_V = mkV "gather" "gathered" "gathered" ;
-lin foregather_V = mkV "foregather" "foregathered" "foregathered" ; -- compound gather_V ;
-lin forgather_V = mkV "forgather" "forgathered" "forgathered" ; -- compound gather_V ;
-lin lather_V = mkV "lather" "lathered" "lathered" ;
-lin blather_V = mkV "blather" "blathered" "blathered" ; -- notcompound lather_V ;
-lin blether_V = mkV "blether" "blethered" "blethered" ;
-lin tether_V = mkV "tether" "tethered" "tethered" ;
-lin dither_V = mkV "dither" "dithered" "dithered" ;
-lin slither_V = mkV "slither" "slithered" "slithered" ;
-lin wither_V = mkV "wither" "withered" "withered" ;
-lin bother_V = mkV "bother" "bothered" "bothered" ;
-lin mother_V = mkV "mother" "mothered" "mothered" ;
-lin smother_V = mkV "smother" "smothered" "smothered" ; -- notcompound mother_V ;
-lin further_V = mkV "further" "furthered" "furthered" ;
-lin soldier_V = mkV "soldier" "soldiered" "soldiered" ;
-lin cashier_V = mkV "cashier" "cashiered" "cashiered" ;
-lin checker_V = mkV "checker" "checkered" "checkered" ;
-lin bicker_V = mkV "bicker" "bickered" "bickered" ;
-lin dicker_V = mkV "dicker" "dickered" "dickered" ;
-lin flicker_V = mkV "flicker" "flickered" "flickered" ;
-lin snicker_V = mkV "snicker" "snickered" "snickered" ;
-lin pucker_V = mkV "pucker" "puckered" "puckered" ;
-lin canker_V = mkV "canker" "cankered" "cankered" ;
-lin hanker_V = mkV "hanker" "hankered" "hankered" ;
-lin tinker_V = mkV "tinker" "tinkered" "tinkered" ;
-lin bunker_V = mkV "bunker" "bunkered" "bunkered" ;
-lin hunker_V = mkV "hunker" "hunkered" "hunkered" ;
-lin holler_V = mkV "holler" "hollered" "hollered" ;
-lin steamroller_V = mkV "steamroller" "steamrollered" "steamrollered" ;
-lin hammer_V = mkV "hammer" "hammered" "hammered" ;
-lin stammer_V = mkV "stammer" "stammered" "stammered" ;
-lin yammer_V = mkV "yammer" "yammered" "yammered" ;
-lin shimmer_V = mkV "shimmer" "shimmered" "shimmered" ;
-lin glimmer_V = mkV "glimmer" "glimmered" "glimmered" ;
-lin simmer_V = mkV "simmer" "simmered" "simmered" ;
-lin summer_V = mkV "summer" "summered" "summered" ;
-lin homer_V = mkV "homer" "homered" "homered" ;
-lin garner_V = mkV "garner" "garnered" "garnered" ;
-lin corner_V = mkV "corner" "cornered" "cornered" ;
-lin partner_V = mkV "partner" "partnered" "partnered" ;
-lin caper_V = mkV "caper" "capered" "capered" ;
-lin paper_V = mkV "paper" "papered" "papered" ;
-lin sandpaper_V = mkV "sandpaper" "sandpapered" "sandpapered" ; -- compound paper_V ;
-lin taper_V = mkV "taper" "tapered" "tapered" ;
-lin scamper_V = mkV "scamper" "scampered" "scampered" ;
-lin hamper_V = mkV "hamper" "hampered" "hampered" ;
-lin pamper_V = mkV "pamper" "pampered" "pampered" ;
-lin tamper_V = mkV "tamper" "tampered" "tampered" ;
-lin temper_V = mkV "temper" "tempered" "tempered" ;
-lin distemper_V = mkV "distemper" "distempered" "distempered" ; -- compound temper_V ;
-lin whimper_V = mkV "whimper" "whimpered" "whimpered" ;
-lin simper_V = mkV "simper" "simpered" "simpered" ;
-lin pepper_V = mkV "pepper" "peppered" "peppered" ;
-lin skipper_V = mkV "skipper" "skippered" "skippered" ;
-lin copper_V = mkV "copper" "coppered" "coppered" ;
-lin scupper_V = mkV "scupper" "scuppered" "scuppered" ;
-lin scarper_V = mkV "scarper" "scarpered" "scarpered" ;
-lin whisper_V = mkV "whisper" "whispered" "whispered" ;
-lin prosper_V = mkV "prosper" "prospered" "prospered" ;
-lin cater_V = mkV "cater" "catered" "catered" ;
-lin crater_1_V = mkV "crater" "cratered" "cratered" ;
-lin water_V = mkV "water" "watered" "watered" ;
-lin crater_2_V = mkV "crater" "craterred" "craterred" ;
-lin teeter_V = mkV "teeter" "teetered" "teetered" ;
-lin peter_V = mkV "peter" "petered" "petered" ;
-lin deter_V = mkV "deter" "deterred" "deterred" ;
-lin lighter_V = mkV "lighter" "lightered" "lightered" ;
-lin slaughter_V = mkV "slaughter" "slaughtered" "slaughtered" ;
-lin loiter_V = mkV "loiter" "loitered" "loitered" ;
-lin alter_V = mkV "alter" "altered" "altered" ;
-lin falter_V = mkV "falter" "faltered" "faltered" ; -- notcompound alter_V ;
-lin palter_V = mkV "palter" "paltered" "paltered" ; -- notcompound alter_V ;
-lin shelter_V = mkV "shelter" "sheltered" "sheltered" ;
-lin welter_V = mkV "welter" "weltered" "weltered" ;
-lin swelter_V = mkV "swelter" "sweltered" "sweltered" ; -- notcompound welter_V ;
-lin filter_V = mkV "filter" "filtered" "filtered" ;
-lin banter_V = mkV "banter" "bantered" "bantered" ;
-lin canter_V = mkV "canter" "cantered" "cantered" ;
-lin enter_V = mkV "enter" "entered" "entered" ;
-lin 're-enter_V' = mkV "re-enter" "re-entered" "re-entered" ; -- compound enter_V ;
-lin center_V = mkV "center" "centered" "centered" ; -- notcompound enter_V ;
-lin splinter_V = mkV "splinter" "splintered" "splintered" ;
-lin winter_V = mkV "winter" "wintered" "wintered" ;
-lin saunter_V = mkV "saunter" "sauntered" "sauntered" ;
-lin counter_V = mkV "counter" "countered" "countered" ;
-lin encounter_V = mkV "encounter" "encountered" "encountered" ; -- compound counter_V ;
-lin inter_V = mkV "inter" "interred" "interred" ;
-lin disinter_V = mkV "disinter" "disinterred" "disinterred" ; -- compound inter_V ;
-lin barter_V = mkV "barter" "bartered" "bartered" ;
-lin charter_V = mkV "charter" "chartered" "chartered" ;
-lin quarter_V = mkV "quarter" "quartered" "quartered" ;
-lin plaster_V = mkV "plaster" "plastered" "plastered" ;
-lin replaster_V = mkV "replaster" "replastered" "replastered" ; -- compound plaster_V ;
-lin master_V = mkV "master" "mastered" "mastered" ;
-lin overmaster_V = mkV "overmaster" "overmastered" "overmastered" ; -- compound master_V ;
-lin fester_V = mkV "fester" "festered" "festered" ;
-lin pester_V = mkV "pester" "pestered" "pestered" ;
-lin sequester_V = mkV "sequester" "sequestered" "sequestered" ;
-lin register_V = mkV "register" "registered" "registered" ;
-lin 'pre-register_V' = mkV "pre-register" "pre-registered" "pre-registered" ; -- compound register_V ;
-lin blister_V = mkV "blister" "blistered" "blistered" ;
-lin glister_V = mkV "glister" "glistered" "glistered" ;
-lin minister_V = mkV "minister" "ministered" "ministered" ;
-lin administer_V = mkV "administer" "administered" "administered" ; -- compound minister_V ;
-lin cloister_V = mkV "cloister" "cloistered" "cloistered" ;
-lin bolster_V = mkV "bolster" "bolstered" "bolstered" ;
-lin upholster_V = mkV "upholster" "upholstered" "upholstered" ;
-lin foster_V = mkV "foster" "fostered" "fostered" ;
-lin filibuster_V = mkV "filibuster" "filibustered" "filibustered" ;
-lin bluster_V = mkV "bluster" "blustered" "blustered" ;
-lin cluster_V = mkV "cluster" "clustered" "clustered" ;
-lin fluster_V = mkV "fluster" "flustered" "flustered" ;
-lin muster_V = mkV "muster" "mustered" "mustered" ;
-lin batter_V = mkV "batter" "battered" "battered" ;
-lin scatter_V = mkV "scatter" "scattered" "scattered" ;
-lin chatter_V = mkV "chatter" "chattered" "chattered" ;
-lin shatter_V = mkV "shatter" "shattered" "shattered" ;
-lin clatter_V = mkV "clatter" "clattered" "clattered" ;
-lin flatter_V = mkV "flatter" "flattered" "flattered" ;
-lin matter_V = mkV "matter" "mattered" "mattered" ;
-lin natter_V = mkV "natter" "nattered" "nattered" ;
-lin patter_V = mkV "patter" "pattered" "pattered" ;
-lin spatter_V = mkV "spatter" "spattered" "spattered" ; -- notcompound patter_V ;
-lin better_V = mkV "better" "bettered" "bettered" ;
-lin fetter_V = mkV "fetter" "fettered" "fettered" ;
-lin embitter_V = mkV "embitter" "embittered" "embittered" ;
-lin skitter_V = mkV "skitter" "skittered" "skittered" ;
-lin litter_V = mkV "litter" "littered" "littered" ;
-lin glitter_V = mkV "glitter" "glittered" "glittered" ; -- notcompound litter_V ;
-lin fritter_V = mkV "fritter" "frittered" "frittered" ;
-lin titter_V = mkV "titter" "tittered" "tittered" ;
-lin twitter_V = mkV "twitter" "twittered" "twittered" ;
-lin potter_V = mkV "potter" "pottered" "pottered" ;
-lin totter_V = mkV "totter" "tottered" "tottered" ;
-lin utter_V = mkV "utter" "uttered" "uttered" ;
-lin butter_V = mkV "butter" "buttered" "buttered" ; -- notcompound utter_V ;
-lin gutter_V = mkV "gutter" "guttered" "guttered" ; -- notcompound utter_V ;
-lin shutter_V = mkV "shutter" "shuttered" "shuttered" ; -- notcompound utter_V ;
-lin clutter_V = mkV "clutter" "cluttered" "cluttered" ; -- notcompound utter_V ;
-lin flutter_V = mkV "flutter" "fluttered" "fluttered" ; -- notcompound utter_V ;
-lin splutter_V = mkV "splutter" "spluttered" "spluttered" ; -- notcompound utter_V ;
-lin mutter_V = mkV "mutter" "muttered" "muttered" ; -- notcompound utter_V ;
-lin putter_V = mkV "putter" "puttered" "puttered" ; -- notcompound utter_V ;
-lin sputter_V = mkV "sputter" "sputtered" "sputtered" ; -- notcompound utter_V ;
-lin stutter_V = mkV "stutter" "stuttered" "stuttered" ; -- notcompound utter_V ;
-lin neuter_V = mkV "neuter" "neutered" "neutered" ;
-lin beleaguer_V = mkV "beleaguer" "beleaguered" "beleaguered" ;
-lin lacquer_V = mkV "lacquer" "lacquered" "lacquered" ;
-lin chequer_V = mkV "chequer" "chequered" "chequered" ;
-lin conquer_V = mkV "conquer" "conquered" "conquered" ;
-lin beaver_V = mkV "beaver" "beavered" "beavered" ;
-lin palaver_V = mkV "palaver" "palavered" "palavered" ;
-lin slaver_V = mkV "slaver" "slavered" "slavered" ;
-lin quaver_V = mkV "quaver" "quavered" "quavered" ;
-lin waver_V = mkV "waver" "wavered" "wavered" ;
-lin aver_V = mkV "aver" "averred" "averred" ;
-lin lever_V = mkV "lever" "levered" "levered" ;
-lin sever_V = mkV "sever" "severed" "severed" ;
-lin dissever_V = mkV "dissever" "dissevered" "dissevered" ; -- compound sever_V ;
-lin waiver_V = mkV "waiver" "waivered" "waivered" ;
-lin shiver_V = mkV "shiver" "shivered" "shivered" ;
-lin deliver_V = mkV "deliver" "delivered" "delivered" ;
-lin sliver_V = mkV "sliver" "slivered" "slivered" ;
-lin quiver_V = mkV "quiver" "quivered" "quivered" ;
-lin silver_V = mkV "silver" "silvered" "silvered" ;
-lin cover_V = mkV "cover" "covered" "covered" ;
-lin 're-cover_V' = mkV "re-cover" "re-covered" "re-covered" ; -- compound cover_V ;
-lin recover_V = mkV "recover" "recovered" "recovered" ; -- compound cover_V ;
-lin uncover_V = mkV "uncover" "uncovered" "uncovered" ; -- compound cover_V ;
-lin discover_V = mkV "discover" "discovered" "discovered" ; -- compound cover_V ;
-lin rediscover_V = mkV "rediscover" "rediscovered" "rediscovered" ; -- compound cover_V ;
-lin hover_V = mkV "hover" "hovered" "hovered" ;
-lin hoover_V = mkV "hoover" "hoovered" "hoovered" ;
-lin maneuver_V = mkV "maneuver" "maneuvered" "maneuvered" ;
-lin skewer_V = mkV "skewer" "skewered" "skewered" ;
-lin cower_V = mkV "cower" "cowered" "cowered" ;
-lin dower_V = mkV "dower" "dowered" "dowered" ;
-lin shower_V = mkV "shower" "showered" "showered" ;
-lin lower_V = mkV "lower" "lowered" "lowered" ;
-lin flower_V = mkV "flower" "flowered" "flowered" ; -- notcompound lower_V ;
-lin deflower_V = mkV "deflower" "deflowered" "deflowered" ; -- compound lower_V ;
-lin glower_V = mkV "glower" "glowered" "glowered" ; -- notcompound lower_V ;
-lin power_V = mkV "power" "powered" "powered" ;
-lin empower_V = mkV "empower" "empowered" "empowered" ; -- compound power_V ;
-lin overpower_V = mkV "overpower" "overpowered" "overpowered" ; -- compound power_V ;
-lin tower_V = mkV "tower" "towered" "towered" ;
-lin answer_V = mkV "answer" "answered" "answered" ;
-lin layer_V = mkV "layer" "layered" "layered" ;
-lin air_V = mkV "air" "aired" "aired" ;
-lin chair_V = mkV "chair" "chaired" "chaired" ; -- notcompound air_V ;
-lin pair_V = mkV "pair" "paired" "paired" ; -- notcompound air_V ;
-lin repair_V = mkV "repair" "repaired" "repaired" ; -- compound air_V ;
-lin impair_V = mkV "impair" "impaired" "impaired" ; -- compound air_V ;
-lin despair_V = mkV "despair" "despaired" "despaired" ; -- compound air_V ;
-lin whir_V = mkV "whir" "whirred" "whirred" ;
-lin stir_V = mkV "stir" "stirred" "stirred" ;
-lin bestir_V = mkV "bestir" "bestirred" "bestirred" ; -- compound stir_V ;
-lin labor_V = mkV "labor" "labored" "labored" ;
-lin neighbor_V = mkV "neighbor" "neighbored" "neighbored" ;
-lin abhor_V = mkV "abhor" "abhorred" "abhorred" ;
-lin anchor_V = mkV "anchor" "anchored" "anchored" ;
-lin 'co-author_V' = mkV "co-author" "co-authorred" "co-authorred" ;
-lin major_V = mkV "major" "majored" "majored" ;
-lin tailor_V = mkV "tailor" "tailored" "tailored" ;
-lin color_1_V = mkV "color" "colored" "colored" ;
-lin color_2_V = mkV "color" "colorred" "colorred" ;
-lin rumor_V = mkV "rumor" "rumorred" "rumorred" ;
-lin honor_V = mkV "honor" "honorred" "honorred" ;
-lin floor_V = mkV "floor" "floored" "floored" ;
-lin moor_V = mkV "moor" "moored" "moored" ;
-lin mirror_V = mkV "mirror" "mirrored" "mirrored" ;
-lin censor_V = mkV "censor" "censored" "censored" ;
-lin sponsor_V = mkV "sponsor" "sponsored" "sponsored" ;
-lin 'co-sponsor_V' = mkV "co-sponsor" "co-sponsorred" "co-sponsorred" ;
-lin hector_V = mkV "hector" "hectored" "hectored" ;
-lin doctor_V = mkV "doctor" "doctored" "doctored" ;
-lin factor_V = mkV "factor" "factorred" "factorred" ;
-lin monitor_V = mkV "monitor" "monitored" "monitored" ;
-lin motor_V = mkV "motor" "motored" "motored" ;
-lin tutor_V = mkV "tutor" "tutored" "tutored" ;
-lin favor_V = mkV "favor" "favorred" "favorred" ;
-lin razor_V = mkV "razor" "razored" "razored" ;
-lin err_V = mkV "err" "erred" "erred" ;
-lin whirr_V = mkV "whirr" "whirred" "whirred" ;
-lin occurr_V = mkV "occurr" "occurred" "occurred" ;
-lin purr_V = mkV "purr" "purred" "purred" ;
-lin occur_V = mkV "occur" "occurred" "occurred" ;
-lin recur_V = mkV "recur" "recurred" "recurred" ;
-lin incur_V = mkV "incur" "incurred" "incurred" ;
-lin concur_V = mkV "concur" "concurred" "concurred" ;
-lin chauffeur_V = mkV "chauffeur" "chauffeured" "chauffeured" ;
-lin augur_V = mkV "augur" "augured" "augured" ;
-lin blur_V = mkV "blur" "blurred" "blurred" ;
-lin slur_V = mkV "slur" "slurred" "slurred" ;
-lin demur_V = mkV "demur" "demurred" "demurred" ;
-lin murmur_V = mkV "murmur" "murmured" "murmured" ;
-lin labour_V = mkV "labour" "laboured" "laboured" ;
-lin belabour_V = mkV "belabour" "belaboured" "belaboured" ; -- compound labour_V ;
-lin neighbour_V = mkV "neighbour" "neighboured" "neighboured" ;
-lin harbour_V = mkV "harbour" "harboured" "harboured" ;
-lin succour_V = mkV "succour" "succoured" "succoured" ;
-lin scour_V = mkV "scour" "scoured" "scoured" ;
-lin lour_V = mkV "lour" "loured" "loured" ;
-lin flour_V = mkV "flour" "floured" "floured" ; -- notcompound lour_V ;
-lin colour_V = mkV "colour" "coloured" "coloured" ; -- compound lour_V ;
-lin discolour_V = mkV "discolour" "discoloured" "discoloured" ; -- compound lour_V ;
-lin clamour_V = mkV "clamour" "clamoured" "clamoured" ;
-lin enamour_V = mkV "enamour" "enamoured" "enamoured" ;
-lin humour_V = mkV "humour" "humoured" "humoured" ;
-lin rumour_V = mkV "rumour" "rumoured" "rumoured" ;
-lin honour_V = mkV "honour" "honoured" "honoured" ;
-lin dishonour_V = mkV "dishonour" "dishonoured" "dishonoured" ; -- compound honour_V ;
-lin pour_V = mkV "pour" "poured" "poured" ;
-lin sour_V = mkV "sour" "soured" "soured" ;
-lin tour_V = mkV "tour" "toured" "toured" ;
-lin detour_V = mkV "detour" "detoured" "detoured" ; -- compound tour_V ;
-lin contour_V = mkV "contour" "contoured" "contoured" ; -- compound tour_V ;
-lin endeavour_V = mkV "endeavour" "endeavoured" "endeavoured" ;
-lin favour_V = mkV "favour" "favoured" "favoured" ;
-lin disfavour_V = mkV "disfavour" "disfavoured" "disfavoured" ; -- compound favour_V ;
-lin flavour_V = mkV "flavour" "flavoured" "flavoured" ;
-lin savour_V = mkV "savour" "savoured" "savoured" ;
-lin devour_V = mkV "devour" "devoured" "devoured" ;
-lin spur_V = mkV "spur" "spurred" "spurred" ;
-lin martyr_V = mkV "martyr" "martyred" "martyred" ;
-lin bear_V = mkV "bear" "bore" "born" ;
-lin overbear_V = mkV "overbear" "overbore" "overborn" ; -- compound bear_V ;
-lin forbear_V = mkV "forbear" "forbore" "forborn" ; -- compound bear_V ;
-lin tear_V = mkV "tear" "tore" "torn" ;
-lin wear_2_V = mkV "wear" "wore" "worn" ;
-lin swear_2_V = mkV "swear" "swore" "sworn" ; -- notcompound wear_2_V ;
-lin foreswear_V = mkV "foreswear" "foreswore" "foresworn" ; -- compound wear_2_V ;
-lin forswear_V = mkV "forswear" "forswore" "forsworn" ; -- compound wear_2_V ;
-lin outwear_V = mkV "outwear" "outwore" "outworn" ; -- compound wear_2_V ;
-lin précis_V = mkV "précis" "IRREG" "IRREG" ;
-lin rendezvous_V = mkV "rendezvous" "IRREG" "IRREG" ;
-lin gas_V = mkV "gas" "gassed" "gassed" ;
-lin bias_V = mkV "bias" "biased" "biased" ;
-lin trellis_V = mkV "trellis" "trellised" "trellised" ;
-lin balls_V = mkV "balls" "ballsed" "ballsed" ;
-lin summons_V = mkV "summons" "summonsed" "summonsed" ;
-lin class_V = mkV "class" "classed" "classed" ;
-lin outclass_V = mkV "outclass" "outclassed" "outclassed" ; -- compound class_V ;
-lin glass_V = mkV "glass" "glassed" "glassed" ;
-lin mass_V = mkV "mass" "massed" "massed" ;
-lin amass_V = mkV "amass" "amassed" "amassed" ; -- notcompound mass_V ;
-lin pass_V = mkV "pass" "passed" "passed" ;
-lin repass_V = mkV "repass" "repassed" "repassed" ; -- compound pass_V ;
-lin compass_V = mkV "compass" "compassed" "compassed" ; -- compound pass_V ;
-lin encompass_V = mkV "encompass" "encompassed" "encompassed" ; -- compound pass_V ;
-lin surpass_V = mkV "surpass" "surpassed" "surpassed" ; -- compound pass_V ;
-lin trespass_V = mkV "trespass" "trespassed" "trespassed" ; -- compound pass_V ;
-lin bypass_V = mkV "bypass" "bypassed" "bypassed" ; -- compound pass_V ;
-lin harass_V = mkV "harass" "harassed" "harassed" ;
-lin grass_V = mkV "grass" "grassed" "grassed" ;
-lin embarrass_V = mkV "embarrass" "embarrassed" "embarrassed" ;
-lin disembarrass_V = mkV "disembarrass" "disembarrassed" "disembarrassed" ; -- compound embarrass_V ;
-lin canvass_V = mkV "canvass" "canvassed" "canvassed" ;
-lin access_V = mkV "access" "accessed" "accessed" ;
-lin recess_V = mkV "recess" "recessed" "recessed" ;
-lin process_V = mkV "process" "processed" "processed" ;
-lin fess_V = mkV "fess" "fessed" "fessed" ;
-lin confess_V = mkV "confess" "confessed" "confessed" ; -- compound fess_V ;
-lin profess_V = mkV "profess" "professed" "professed" ; -- compound fess_V ;
-lin bless_V = mkV "bless" "blessed" "blessed" ;
-lin mess_V = mkV "mess" "messed" "messed" ;
-lin harness_V = mkV "harness" "harnessed" "harnessed" ;
-lin witness_V = mkV "witness" "witnessed" "witnessed" ;
-lin caress_V = mkV "caress" "caressed" "caressed" ;
-lin dress_V = mkV "dress" "dressed" "dressed" ;
-lin 'top-dress_V' = mkV "top-dress" "top-dressed" "top-dressed" ; -- compound dress_V ;
-lin address_V = mkV "address" "addressed" "addressed" ; -- compound dress_V ;
-lin 're-address_V' = mkV "re-address" "re-addressed" "re-addressed" ; -- compound dress_V ;
-lin redress_V = mkV "redress" "redressed" "redressed" ; -- compound dress_V ;
-lin undress_V = mkV "undress" "undressed" "undressed" ; -- compound dress_V ;
-lin overdress_V = mkV "overdress" "overdressed" "overdressed" ; -- compound dress_V ;
-lin regress_V = mkV "regress" "regressed" "regressed" ;
-lin digress_V = mkV "digress" "digressed" "digressed" ;
-lin progress_V = mkV "progress" "progressed" "progressed" ;
-lin retrogress_V = mkV "retrogress" "retrogressed" "retrogressed" ;
-lin transgress_V = mkV "transgress" "transgressed" "transgressed" ;
-lin press_V = mkV "press" "pressed" "pressed" ;
-lin depress_V = mkV "depress" "depressed" "depressed" ; -- compound press_V ;
-lin repress_V = mkV "repress" "repressed" "repressed" ; -- compound press_V ;
-lin impress_V = mkV "impress" "impressed" "impressed" ; -- compound press_V ;
-lin compress_V = mkV "compress" "compressed" "compressed" ; -- compound press_V ;
-lin decompress_V = mkV "decompress" "decompressed" "decompressed" ; -- compound press_V ;
-lin oppress_V = mkV "oppress" "oppressed" "oppressed" ; -- compound press_V ;
-lin suppress_V = mkV "suppress" "suppressed" "suppressed" ; -- compound press_V ;
-lin express_V = mkV "express" "expressed" "expressed" ; -- compound press_V ;
-lin stress_V = mkV "stress" "stressed" "stressed" ;
-lin distress_V = mkV "distress" "distressed" "distressed" ; -- compound stress_V ;
-lin buttress_V = mkV "buttress" "buttressed" "buttressed" ;
-lin obsess_V = mkV "obsess" "obsessed" "obsessed" ;
-lin assess_V = mkV "assess" "assessed" "assessed" ;
-lin reassess_V = mkV "reassess" "reassessed" "reassessed" ; -- compound assess_V ;
-lin possess_V = mkV "possess" "possessed" "possessed" ;
-lin repossess_V = mkV "repossess" "repossessed" "repossessed" ; -- compound possess_V ;
-lin prepossess_V = mkV "prepossess" "prepossessed" "prepossessed" ; -- compound possess_V ;
-lin dispossess_V = mkV "dispossess" "dispossessed" "dispossessed" ; -- compound possess_V ;
-lin guess_V = mkV "guess" "guessed" "guessed" ;
-lin 'second-guess_V' = mkV "second-guess" "second-guessed" "second-guessed" ; -- compound guess_V ;
-lin hiss_V = mkV "hiss" "hissed" "hissed" ;
-lin kiss_V = mkV "kiss" "kissed" "kissed" ;
-lin bliss_V = mkV "bliss" "blissed" "blissed" ;
-lin miss_V = mkV "miss" "missed" "missed" ;
-lin premiss_V = mkV "premiss" "premissed" "premissed" ; -- compound miss_V ;
-lin dismiss_V = mkV "dismiss" "dismissed" "dismissed" ; -- compound miss_V ;
-lin piss_V = mkV "piss" "pissed" "pissed" ;
-lin boss_V = mkV "boss" "bossed" "bossed" ;
-lin emboss_V = mkV "emboss" "embossed" "embossed" ; -- compound boss_V ;
-lin doss_V = mkV "doss" "dossed" "dossed" ;
-lin gloss_V = mkV "gloss" "glossed" "glossed" ;
-lin cross_V = mkV "cross" "crossed" "crossed" ;
-lin 'double-cross_V' = mkV "double-cross" "double-crossed" "double-crossed" ; -- compound cross_V ;
-lin 'criss-cross_V' = mkV "criss-cross" "criss-crossed" "criss-crossed" ; -- compound cross_V ;
-lin uncross_V = mkV "uncross" "uncrossed" "uncrossed" ; -- compound cross_V ;
-lin crisscross_V = mkV "crisscross" "crisscrossed" "crisscrossed" ; -- compound cross_V ;
-lin gross_V = mkV "gross" "grossed" "grossed" ;
-lin engross_V = mkV "engross" "engrossed" "engrossed" ; -- compound gross_V ;
-lin toss_V = mkV "toss" "tossed" "tossed" ;
-lin degauss_V = mkV "degauss" "degaussed" "degaussed" ;
-lin concuss_V = mkV "concuss" "concussed" "concussed" ;
-lin discuss_V = mkV "discuss" "discussed" "discussed" ;
-lin fuss_V = mkV "fuss" "fussed" "fussed" ;
-lin muss_V = mkV "muss" "mussed" "mussed" ;
-lin truss_V = mkV "truss" "trussed" "trussed" ;
-lin suss_V = mkV "suss" "sussed" "sussed" ;
-lin bus_V = mkV "bus" "bused" "bused" ;
-lin focus_V = mkV "focus" "focused" "focused" ;
-lin refocus_V = mkV "refocus" "refocused" "refocused" ; -- compound focus_V ;
-lin nonplus_2_V = mkV "nonplus" "nonplussed" "nonplussed" ;
-lin nonplus_1_V = mkV "nonplus" "nonplused" "nonplused" ;
-lin chorus_V = mkV "chorus" "chorused" "chorused" ;
-lin bat_V = mkV "bat" "batted" "batted" ;
-lin combat_V = mkV "combat" "combated" "combated" ;
-lin beat_2_V = mkV "beat" "beated" "beated" ;
-lin defeat_V = mkV "defeat" "defeated" "defeated" ;
-lin heat_V = mkV "heat" "heated" "heated" ;
-lin 'steam-heat_V' = mkV "steam-heat" "steam-heated" "steam-heated" ; -- compound heat_V ;
-lin cheat_V = mkV "cheat" "cheated" "cheated" ; -- notcompound heat_V ;
-lin preheat_V = mkV "preheat" "preheated" "preheated" ; -- compound heat_V ;
-lin overheat_V = mkV "overheat" "overheated" "overheated" ; -- compound heat_V ;
-lin bleat_V = mkV "bleat" "bleated" "bleated" ;
-lin pleat_V = mkV "pleat" "pleated" "pleated" ;
-lin repeat_V = mkV "repeat" "repeated" "repeated" ;
-lin treat_V = mkV "treat" "treated" "treated" ;
-lin 'ill-treat_V' = mkV "ill-treat" "ill-treated" "ill-treated" ; -- compound treat_V ;
-lin retreat_V = mkV "retreat" "retreated" "retreated" ; -- compound treat_V ;
-lin maltreat_V = mkV "maltreat" "maltreated" "maltreated" ; -- compound treat_V ;
-lin entreat_V = mkV "entreat" "entreated" "entreated" ; -- compound treat_V ;
-lin mistreat_V = mkV "mistreat" "mistreated" "mistreated" ; -- compound treat_V ;
-lin seat_V = mkV "seat" "seated" "seated" ;
-lin reseat_V = mkV "reseat" "reseated" "reseated" ; -- compound seat_V ;
-lin unseat_V = mkV "unseat" "unseated" "unseated" ; -- compound seat_V ;
-lin sweat_V = mkV "sweat" "sweated" "sweated" ;
-lin fat_V = mkV "fat" "fatted" "fatted" ;
-lin chat_V = mkV "chat" "chatted" "chatted" ;
-lin mat_V = mkV "mat" "matted" "matted" ;
-lin boat_V = mkV "boat" "boated" "boated" ;
-lin coat_V = mkV "coat" "coated" "coated" ;
-lin float_V = mkV "float" "floated" "floated" ;
-lin refloat_V = mkV "refloat" "refloated" "refloated" ; -- compound float_V ;
-lin gloat_V = mkV "gloat" "gloated" "gloated" ;
-lin pat_V = mkV "pat" "patted" "patted" ;
-lin spat_V = mkV "spat" "spatted" "spatted" ; -- notcompound pat_V ;
-lin rat_V = mkV "rat" "ratted" "ratted" ;
-lin drat_V = mkV "drat" "dratted" "dratted" ; -- notcompound rat_V ;
-lin sat_V = mkV "sat" "satted" "satted" ;
-lin tat_V = mkV "tat" "tatted" "tatted" ;
-lin photostat_V = mkV "photostat" "photostatted" "photostatted" ; -- compound tat_V ;
-lin squat_V = mkV "squat" "squatted" "squatted" ;
-lin swat_V = mkV "swat" "swatted" "swatted" ;
-lin doubt_V = mkV "doubt" "doubted" "doubted" ;
-lin act_V = mkV "act" "acted" "acted" ;
-lin redact_V = mkV "redact" "redacted" "redacted" ; -- compound act_V ;
-lin react_V = mkV "react" "reacted" "reacted" ; -- compound act_V ;
-lin overreact_V = mkV "overreact" "overreacted" "overreacted" ; -- compound act_V ;
-lin enact_V = mkV "enact" "enacted" "enacted" ; -- compound act_V ;
-lin impact_V = mkV "impact" "impacted" "impacted" ; -- compound act_V ;
-lin compact_V = mkV "compact" "compacted" "compacted" ; -- compound act_V ;
-lin underact_V = mkV "underact" "underacted" "underacted" ; -- compound act_V ;
-lin interact_V = mkV "interact" "interacted" "interacted" ; -- compound act_V ;
-lin counteract_V = mkV "counteract" "counteracted" "counteracted" ; -- compound act_V ;
-lin overact_V = mkV "overact" "overacted" "overacted" ; -- compound act_V ;
-lin refract_V = mkV "refract" "refracted" "refracted" ; -- compound act_V ;
-lin diffract_V = mkV "diffract" "diffracted" "diffracted" ; -- compound act_V ;
-lin subtract_V = mkV "subtract" "subtracted" "subtracted" ; -- compound act_V ;
-lin detract_V = mkV "detract" "detracted" "detracted" ; -- compound act_V ;
-lin retract_V = mkV "retract" "retracted" "retracted" ; -- compound act_V ;
-lin contract_V = mkV "contract" "contracted" "contracted" ; -- compound act_V ;
-lin subcontract_V = mkV "subcontract" "subcontracted" "subcontracted" ; -- compound act_V ;
-lin protract_V = mkV "protract" "protracted" "protracted" ; -- compound act_V ;
-lin abstract_V = mkV "abstract" "abstracted" "abstracted" ; -- compound act_V ;
-lin distract_V = mkV "distract" "distracted" "distracted" ; -- compound act_V ;
-lin attract_V = mkV "attract" "attracted" "attracted" ; -- compound act_V ;
-lin extract_V = mkV "extract" "extracted" "extracted" ; -- compound act_V ;
-lin transact_V = mkV "transact" "transacted" "transacted" ; -- compound act_V ;
-lin contact_V = mkV "contact" "contacted" "contacted" ; -- compound act_V ;
-lin exact_V = mkV "exact" "exacted" "exacted" ; -- compound act_V ;
-lin defect_V = mkV "defect" "defected" "defected" ;
-lin affect_V = mkV "affect" "affected" "affected" ;
-lin effect_V = mkV "effect" "effected" "effected" ;
-lin infect_V = mkV "infect" "infected" "infected" ;
-lin disinfect_V = mkV "disinfect" "disinfected" "disinfected" ; -- compound infect_V ;
-lin perfect_V = mkV "perfect" "perfected" "perfected" ;
-lin object_V = mkV "object" "objected" "objected" ;
-lin subject_V = mkV "subject" "subjected" "subjected" ;
-lin eject_V = mkV "eject" "ejected" "ejected" ;
-lin deject_V = mkV "deject" "dejected" "dejected" ; -- notcompound eject_V ;
-lin reject_V = mkV "reject" "rejected" "rejected" ; -- notcompound eject_V ;
-lin inject_V = mkV "inject" "injected" "injected" ;
-lin project_V = mkV "project" "projected" "projected" ;
-lin interject_V = mkV "interject" "interjected" "interjected" ;
-lin elect_V = mkV "elect" "elected" "elected" ;
-lin 're-elect_V' = mkV "re-elect" "re-elected" "re-elected" ; -- compound elect_V ;
-lin select_V = mkV "select" "selected" "selected" ; -- notcompound elect_V ;
-lin deflect_V = mkV "deflect" "deflected" "deflected" ;
-lin reflect_V = mkV "reflect" "reflected" "reflected" ;
-lin inflect_V = mkV "inflect" "inflected" "inflected" ;
-lin genuflect_V = mkV "genuflect" "genuflected" "genuflected" ;
-lin neglect_V = mkV "neglect" "neglected" "neglected" ;
-lin collect_V = mkV "collect" "collected" "collected" ;
-lin recollect_V = mkV "recollect" "recollected" "recollected" ; -- compound collect_V ;
-lin connect_V = mkV "connect" "connected" "connected" ;
-lin interconnect_V = mkV "interconnect" "interconnected" "interconnected" ; -- compound connect_V ;
-lin disconnect_V = mkV "disconnect" "disconnected" "disconnected" ; -- compound connect_V ;
-lin respect_V = mkV "respect" "respected" "respected" ;
-lin inspect_V = mkV "inspect" "inspected" "inspected" ;
-lin prospect_V = mkV "prospect" "prospected" "prospected" ;
-lin introspect_V = mkV "introspect" "introspected" "introspected" ;
-lin suspect_V = mkV "suspect" "suspected" "suspected" ;
-lin expect_V = mkV "expect" "expected" "expected" ;
-lin erect_V = mkV "erect" "erected" "erected" ;
-lin direct_V = mkV "direct" "directed" "directed" ;
-lin misdirect_V = mkV "misdirect" "misdirected" "misdirected" ; -- compound direct_V ;
-lin correct_V = mkV "correct" "corrected" "corrected" ;
-lin resurrect_V = mkV "resurrect" "resurrected" "resurrected" ;
-lin bisect_V = mkV "bisect" "bisected" "bisected" ;
-lin trisect_V = mkV "trisect" "trisected" "trisected" ;
-lin vivisect_V = mkV "vivisect" "vivisected" "vivisected" ;
-lin intersect_V = mkV "intersect" "intersected" "intersected" ;
-lin dissect_V = mkV "dissect" "dissected" "dissected" ;
-lin detect_V = mkV "detect" "detected" "detected" ;
-lin protect_V = mkV "protect" "protected" "protected" ;
-lin contradict_V = mkV "contradict" "contradicted" "contradicted" ;
-lin addict_V = mkV "addict" "addicted" "addicted" ;
-lin predict_V = mkV "predict" "predicted" "predicted" ;
-lin indict_V = mkV "indict" "indicted" "indicted" ;
-lin reindict_V = mkV "reindict" "reindicted" "reindicted" ; -- compound indict_V ;
-lin interdict_V = mkV "interdict" "interdicted" "interdicted" ;
-lin afflict_V = mkV "afflict" "afflicted" "afflicted" ;
-lin inflict_V = mkV "inflict" "inflicted" "inflicted" ;
-lin conflict_V = mkV "conflict" "conflicted" "conflicted" ;
-lin depict_V = mkV "depict" "depicted" "depicted" ;
-lin restrict_V = mkV "restrict" "restricted" "restricted" ;
-lin derestrict_V = mkV "derestrict" "derestricted" "derestricted" ; -- compound restrict_V ;
-lin constrict_V = mkV "constrict" "constricted" "constricted" ;
-lin evict_V = mkV "evict" "evicted" "evicted" ;
-lin convict_V = mkV "convict" "convicted" "convicted" ;
-lin reconvict_V = mkV "reconvict" "reconvicted" "reconvicted" ; -- compound convict_V ;
-lin mulct_V = mkV "mulct" "mulcted" "mulcted" ;
-lin concoct_V = mkV "concoct" "concocted" "concocted" ;
+lin abandonment_N = mkN "abandonment" "abandonments" ;
+lin abarticulation_N = mkN "abarticulation" "abarticulations" ;
+lin abase_V = mkV "abase" "abased" "abased" ;
+lin abasement_N = mkN "abasement" "abasements" ;
+lin abash_V = mkV "abash" "abashed" "abashed" ;
+lin abashment_N = mkN "abashment" "abashments" ;
+lin abasia_N = mkN "abasia" "abasias" ;
+lin abasic_A = mkAMost "abasic" "abasicly" ;
+lin abatable_A = mkAMost "abatable" "abatably" ;
+lin abate_V = mkV "abate" "abated" "abated" ;
+lin abatement_N = mkN "abatement" "abatements" ;
+lin abator_N = mkN "abator" "abators" ;
+lin abattis_N = mkN "abattis" "abattises" ;
+lin abattoir_N = mkN "abattoir" "abattoirs" ;
+lin abaxial_A = mkAMost "abaxial" "abaxially" ;
+lin abaya_N = mkN "abaya" "abayas" ;
+lin abbacy_N = mkN "abbacy" "abbacies" ;
+lin abbatial_A = mkAMost "abbatial" "abbatially" ;
+lin abbe_N = mkN "abbe" "abbes" ;
+lin abbess_N = mkN "abbess" "abbesses" ;
+lin abbey_N = mkN "abbey" "abbeys" ;
+lin abbot_N = mkN "abbot" "abbots" ;
+lin abbreviate_V = mkV "abbreviate" "abbreviated" "abbreviated" ;
+lin abbreviation_N = mkN "abbreviation" "abbreviations" ;
+lin abbé_N = mkN "abbé" "abbés" ;
+lin abc_N = mkN "abc" "abcs" ;
+lin abcoulomb_N = mkN "abcoulomb" "abcoulombs" ;
+lin abdicable_A = mkAMost "abdicable" "abdicably" ;
+lin abdicate_V = mkV "abdicate" "abdicated" "abdicated" ;
+lin abdication_N = mkN "abdication" "abdications" ;
+lin abdicator_N = mkN "abdicator" "abdicators" ;
+lin abdomen_N = mkN "abdomen" "abdomens" ;
+lin abdominal_A = mkAMost "abdominal" "abdominally" ;
+lin abdominal_N = mkN "abdominal" "abdominals" ;
+lin abdominocentesis_N = mkN "abdominocentesis" "abdominocentesises" ;
+lin abdominoplasty_N = mkN "abdominoplasty" "abdominoplasties" ;
+lin abdominous_A = mkAMost "abdominous" "abdominously" ;
+lin abdominousness_N = mkN "abdominousness" "abdominousnesses" ;
+lin abdominovesical_A = mkAMost "abdominovesical" "abdominovesically" ;
+lin abducent_A = mkAMost "abducent" "abducently" ;
+lin abducent_N = mkN "abducent" "abducents" ;
lin abduct_V = mkV "abduct" "abducted" "abducted" ;
-lin deduct_V = mkV "deduct" "deducted" "deducted" ;
-lin induct_V = mkV "induct" "inducted" "inducted" ;
-lin conduct_V = mkV "conduct" "conducted" "conducted" ;
-lin misconduct_V = mkV "misconduct" "misconducted" "misconducted" ; -- compound conduct_V ;
-lin obstruct_V = mkV "obstruct" "obstructed" "obstructed" ;
-lin 'self-destruct_V' = mkV "self-destruct" "self-destructed" "self-destructed" ;
-lin instruct_V = mkV "instruct" "instructed" "instructed" ;
-lin construct_V = mkV "construct" "constructed" "constructed" ;
-lin reconstruct_V = mkV "reconstruct" "reconstructed" "reconstructed" ; -- compound construct_V ;
-lin bet_V = mkV "bet" "betted" "betted" ;
-lin abet_V = mkV "abet" "abetted" "abetted" ; -- notcompound bet_V ;
-lin gibbet_V = mkV "gibbet" "gibbeted" "gibbeted" ;
-lin sleet_V = mkV "sleet" "sleeted" "sleeted" ;
-lin meet_1_V = mkV "meet" "meeted" "meeted" ;
-lin greet_V = mkV "greet" "greeted" "greeted" ;
-lin tweet_V = mkV "tweet" "tweeted" "tweeted" ;
-lin buffet_V = mkV "buffet" "buffeted" "buffeted" ;
-lin get_1_V = mkV "get" "getted" "getted" ;
-lin fidget_V = mkV "fidget" "fidgeted" "fidgeted" ;
-lin budget_V = mkV "budget" "budgeted" "budgeted" ;
-lin target_1_V = mkV "target" "targeted" "targeted" ;
-lin target_2_V = mkV "target" "targetted" "targetted" ;
-lin ricochet_V = mkV "ricochet" "ricocheted" "ricocheted" ;
-lin crochet_V = mkV "crochet" "crocheted" "crocheted" ;
-lin ratchet_V = mkV "ratchet" "ratchetted" "ratchetted" ;
-lin whet_V = mkV "whet" "whetted" "whetted" ;
-lin diet_V = mkV "diet" "dieted" "dieted" ;
-lin quiet_1_V = mkV "quiet" "quieted" "quieted" ;
-lin disquiet_V = mkV "disquiet" "disquieted" "disquieted" ; -- compound quiet_1_V ;
-lin quiet_2_V = mkV "quiet" "quietted" "quietted" ;
-lin jet_V = mkV "jet" "jetted" "jetted" ;
-lin racket_V = mkV "racket" "racketed" "racketed" ;
-lin bracket_V = mkV "bracket" "bracketed" "bracketed" ; -- notcompound racket_V ;
-lin picket_V = mkV "picket" "picketed" "picketed" ;
-lin ticket_V = mkV "ticket" "ticketed" "ticketed" ;
-lin docket_V = mkV "docket" "docketed" "docketed" ;
-lin pocket_V = mkV "pocket" "pocketed" "pocketed" ;
-lin rocket_V = mkV "rocket" "rocketed" "rocketed" ;
-lin skyrocket_V = mkV "skyrocket" "skyrocketed" "skyrocketed" ; -- compound rocket_V ;
-lin bucket_1_V = mkV "bucket" "bucketed" "bucketed" ;
-lin bucket_2_V = mkV "bucket" "bucketted" "bucketted" ;
-lin blanket_V = mkV "blanket" "blanketed" "blanketed" ;
-lin junket_V = mkV "junket" "junketed" "junketed" ;
-lin market_V = mkV "market" "marketed" "marketed" ;
-lin valet_V = mkV "valet" "valeted" "valeted" ;
-lin billet_V = mkV "billet" "billeted" "billeted" ;
-lin fillet_V = mkV "fillet" "filleted" "filleted" ;
-lin met_V = mkV "met" "metted" "metted" ;
-lin plummet_V = mkV "plummet" "plummeted" "plummeted" ;
-lin net_V = mkV "net" "netted" "netted" ;
-lin bayonet_V = mkV "bayonet" "bayoneted" "bayoneted" ;
-lin pet_V = mkV "pet" "petted" "petted" ;
-lin trumpet_V = mkV "trumpet" "trumpeted" "trumpeted" ;
-lin carpet_V = mkV "carpet" "carpeted" "carpeted" ;
-lin ret_V = mkV "ret" "retted" "retted" ;
-lin fret_V = mkV "fret" "fretted" "fretted" ; -- notcompound ret_V ;
-lin regret_V = mkV "regret" "regretted" "regretted" ; -- compound ret_V ;
-lin interpret_V = mkV "interpret" "interpreted" "interpreted" ;
-lin reinterpret_V = mkV "reinterpret" "reinterpreted" "reinterpreted" ; -- compound interpret_V ;
-lin misinterpret_V = mkV "misinterpret" "misinterpreted" "misinterpreted" ; -- compound interpret_V ;
-lin ferret_1_V = mkV "ferret" "ferreted" "ferreted" ;
-lin ferret_2_V = mkV "ferret" "ferretted" "ferretted" ;
-lin set_2_V = mkV "set" "setted" "setted" ;
-lin reset_2_V = mkV "reset" "resetted" "resetted" ; -- compound set_2_V ;
-lin closet_V = mkV "closet" "closeted" "closeted" ;
-lin cosset_V = mkV "cosset" "cosseted" "cosseted" ;
-lin banquet_V = mkV "banquet" "banqueted" "banqueted" ;
-lin vet_V = mkV "vet" "vetted" "vetted" ;
-lin rivet_1_V = mkV "rivet" "riveted" "riveted" ;
-lin rivet_2_V = mkV "rivet" "rivetted" "rivetted" ;
-lin covet_V = mkV "covet" "coveted" "coveted" ;
-lin wet_V = mkV "wet" "wetted" "wetted" ;
-lin raft_V = mkV "raft" "rafted" "rafted" ;
-lin craft_V = mkV "craft" "crafted" "crafted" ; -- notcompound raft_V ;
-lin draft_V = mkV "draft" "drafted" "drafted" ; -- notcompound raft_V ;
-lin graft_V = mkV "graft" "grafted" "grafted" ; -- notcompound raft_V ;
-lin engraft_V = mkV "engraft" "engrafted" "engrafted" ; -- compound raft_V ;
-lin ingraft_V = mkV "ingraft" "ingrafted" "ingrafted" ; -- compound raft_V ;
-lin waft_V = mkV "waft" "wafted" "wafted" ;
-lin gift_V = mkV "gift" "gifted" "gifted" ;
-lin shift_V = mkV "shift" "shifted" "shifted" ;
-lin lift_V = mkV "lift" "lifted" "lifted" ;
-lin shoplift_V = mkV "shoplift" "shoplifted" "shoplifted" ; -- compound lift_V ;
-lin uplift_V = mkV "uplift" "uplifted" "uplifted" ; -- compound lift_V ;
-lin drift_V = mkV "drift" "drifted" "drifted" ;
-lin sift_V = mkV "sift" "sifted" "sifted" ;
-lin loft_V = mkV "loft" "lofted" "lofted" ;
-lin yacht_V = mkV "yacht" "yachted" "yachted" ;
-lin freight_V = mkV "freight" "freighted" "freighted" ;
-lin weight_V = mkV "weight" "weighted" "weighted" ;
-lin light_1_V = mkV "light" "lighted" "lighted" ;
-lin alight_V = mkV "alight" "alighted" "alighted" ; -- notcompound light_1_V ;
-lin blight_V = mkV "blight" "blighted" "blighted" ; -- notcompound light_1_V ;
-lin floodlight_V = mkV "floodlight" "floodlighted" "floodlighted" ; -- compound light_1_V ;
-lin delight_V = mkV "delight" "delighted" "delighted" ; -- compound light_1_V ;
-lin flight_V = mkV "flight" "flighted" "flighted" ; -- notcompound light_1_V ;
-lin highlight_V = mkV "highlight" "highlighted" "highlighted" ; -- compound light_1_V ;
-lin plight_V = mkV "plight" "plighted" "plighted" ; -- notcompound light_1_V ;
-lin slight_V = mkV "slight" "slighted" "slighted" ; -- notcompound light_1_V ;
-lin spotlight_V = mkV "spotlight" "spotlighted" "spotlighted" ; -- compound light_1_V ;
-lin knight_V = mkV "knight" "knighted" "knighted" ;
-lin right_V = mkV "right" "righted" "righted" ;
-lin fright_V = mkV "fright" "frighted" "frighted" ; -- notcompound right_V ;
-lin copyright_V = mkV "copyright" "copyrighted" "copyrighted" ; -- compound right_V ;
-lin sight_V = mkV "sight" "sighted" "sighted" ;
-lin draught_V = mkV "draught" "draughted" "draughted" ;
-lin brought_V = mkV "brought" "broughted" "broughted" ;
-lin bait_V = mkV "bait" "baited" "baited" ;
-lin plait_V = mkV "plait" "plaited" "plaited" ;
-lin wait_V = mkV "wait" "waited" "waited" ;
-lin await_V = mkV "await" "awaited" "awaited" ; -- notcompound wait_V ;
-lin inhabit_V = mkV "inhabit" "inhabited" "inhabited" ;
-lin cohabit_V = mkV "cohabit" "cohabited" "cohabited" ;
-lin rabbit_V = mkV "rabbit" "rabbited" "rabbited" ;
-lin debit_V = mkV "debit" "debited" "debited" ;
-lin inhibit_V = mkV "inhibit" "inhibited" "inhibited" ;
-lin prohibit_1_V = mkV "prohibit" "prohibited" "prohibited" ;
-lin exhibit_V = mkV "exhibit" "exhibited" "exhibited" ;
-lin prohibit_2_V = mkV "prohibit" "prohibitted" "prohibitted" ;
-lin orbit_V = mkV "orbit" "orbited" "orbited" ;
-lin elicit_V = mkV "elicit" "elicited" "elicited" ;
-lin solicit_V = mkV "solicit" "solicited" "solicited" ;
-lin edit_V = mkV "edit" "edited" "edited" ;
-lin subedit_V = mkV "subedit" "subedited" "subedited" ; -- compound edit_V ;
-lin credit_V = mkV "credit" "credited" "credited" ; -- notcompound edit_V ;
-lin accredit_V = mkV "accredit" "accredited" "accredited" ; -- compound edit_V ;
-lin discredit_V = mkV "discredit" "discredited" "discredited" ; -- compound edit_V ;
-lin 'co-edit_V' = mkV "co-edit" "co-editted" "co-editted" ;
-lin audit_V = mkV "audit" "audited" "audited" ;
-lin counterfeit_V = mkV "counterfeit" "counterfeited" "counterfeited" ;
-lin forfeit_V = mkV "forfeit" "forfeited" "forfeited" ;
-lin surfeit_V = mkV "surfeit" "surfeited" "surfeited" ;
-lin fit_2_V = mkV "fit" "fitted" "fitted" ;
-lin benefit_V = mkV "benefit" "benefited" "benefited" ;
-lin befit_V = mkV "befit" "befitted" "befitted" ;
-lin refit_V = mkV "refit" "refitted" "refitted" ;
-lin discomfit_V = mkV "discomfit" "discomfited" "discomfited" ;
-lin unfit_V = mkV "unfit" "unfitted" "unfitted" ;
-lin profit_V = mkV "profit" "profited" "profited" ;
-lin retrofit_V = mkV "retrofit" "retrofitted" "retrofitted" ;
-lin outfit_V = mkV "outfit" "outfitted" "outfitted" ;
-lin shit_V = mkV "shit" "shitted" "shitted" ;
-lin bullshit_V = mkV "bullshit" "bullshitted" "bullshitted" ; -- compound shit_V ;
-lin kit_V = mkV "kit" "kitted" "kitted" ;
-lin flit_V = mkV "flit" "flitted" "flitted" ;
-lin submit_V = mkV "submit" "submitted" "submitted" ;
-lin admit_V = mkV "admit" "admitted" "admitted" ;
-lin readmit_V = mkV "readmit" "readmitted" "readmitted" ; -- compound admit_V ;
-lin emit_V = mkV "emit" "emitted" "emitted" ;
-lin remit_V = mkV "remit" "remitted" "remitted" ; -- notcompound emit_V ;
-lin limit_V = mkV "limit" "limited" "limited" ;
-lin delimit_V = mkV "delimit" "delimited" "delimited" ; -- compound limit_V ;
-lin commit_V = mkV "commit" "committed" "committed" ;
-lin recommit_V = mkV "recommit" "recommitted" "recommitted" ; -- compound commit_V ;
-lin overcommit_V = mkV "overcommit" "overcommitted" "overcommitted" ; -- compound commit_V ;
-lin vomit_V = mkV "vomit" "vomited" "vomited" ;
-lin omit_V = mkV "omit" "omitted" "omitted" ;
-lin permit_V = mkV "permit" "permitted" "permitted" ;
-lin transmit_V = mkV "transmit" "transmitted" "transmitted" ;
-lin retransmit_V = mkV "retransmit" "retransmitted" "retransmitted" ; -- compound transmit_V ;
-lin manumit_V = mkV "manumit" "manumitted" "manumitted" ;
-lin knit_V = mkV "knit" "knitted" "knitted" ;
-lin exploit_V = mkV "exploit" "exploited" "exploited" ;
-lin pit_V = mkV "pit" "pitted" "pitted" ;
-lin inherit_V = mkV "inherit" "inherited" "inherited" ;
-lin disinherit_V = mkV "disinherit" "disinherited" "disinherited" ; -- compound inherit_V ;
-lin merit_V = mkV "merit" "merited" "merited" ;
-lin grit_V = mkV "grit" "gritted" "gritted" ;
-lin spirit_1_V = mkV "spirit" "spirited" "spirited" ;
-lin dispirit_V = mkV "dispirit" "dispirited" "dispirited" ; -- compound spirit_1_V ;
-lin spirit_2_V = mkV "spirit" "spiritted" "spiritted" ;
-lin sit_2_V = mkV "sit" "sitted" "sitted" ;
-lin visit_V = mkV "visit" "visited" "visited" ;
-lin revisit_V = mkV "revisit" "revisited" "revisited" ; -- compound visit_V ;
-lin posit_V = mkV "posit" "posited" "posited" ;
-lin deposit_V = mkV "deposit" "deposited" "deposited" ; -- compound posit_V ;
-lin 'short-circuit_V' = mkV "short-circuit" "short-circuited" "short-circuited" ;
-lin quit_2_V = mkV "quit" "quitted" "quitted" ;
-lin acquit_V = mkV "acquit" "acquitted" "acquitted" ; -- compound quit_2_V ;
-lin bruit_V = mkV "bruit" "bruited" "bruited" ;
-lin recruit_V = mkV "recruit" "recruited" "recruited" ;
-lin fruit_V = mkV "fruit" "fruited" "fruited" ;
-lin suit_1_V = mkV "suit" "suited" "suited" ;
-lin suit_2_V = mkV "suit" "suitted" "suitted" ;
-lin intuit_V = mkV "intuit" "intuited" "intuited" ;
-lin twit_V = mkV "twit" "twitted" "twitted" ;
-lin outwit_V = mkV "outwit" "outwitted" "outwitted" ; -- compound twit_V ;
-lin exit_V = mkV "exit" "exited" "exited" ;
-lin halt_V = mkV "halt" "halted" "halted" ;
-lin asphalt_V = mkV "asphalt" "asphalted" "asphalted" ; -- compound halt_V ;
-lin malt_V = mkV "malt" "malted" "malted" ;
-lin salt_V = mkV "salt" "salted" "salted" ;
-lin desalt_V = mkV "desalt" "desalted" "desalted" ; -- compound salt_V ;
-lin exalt_V = mkV "exalt" "exalted" "exalted" ;
-lin belt_V = mkV "belt" "belted" "belted" ;
-lin melt_V = mkV "melt" "melted" "melted" ;
-lin smelt_V = mkV "smelt" "smelted" "smelted" ; -- notcompound melt_V ;
-lin pelt_V = mkV "pelt" "pelted" "pelted" ;
-lin jilt_V = mkV "jilt" "jilted" "jilted" ;
-lin lilt_V = mkV "lilt" "lilted" "lilted" ;
-lin silt_V = mkV "silt" "silted" "silted" ;
-lin tilt_V = mkV "tilt" "tilted" "tilted" ;
-lin quilt_V = mkV "quilt" "quilted" "quilted" ;
-lin wilt_V = mkV "wilt" "wilted" "wilted" ;
-lin bolt_V = mkV "bolt" "bolted" "bolted" ;
-lin unbolt_V = mkV "unbolt" "unbolted" "unbolted" ; -- compound bolt_V ;
-lin jolt_V = mkV "jolt" "jolted" "jolted" ;
-lin revolt_V = mkV "revolt" "revolted" "revolted" ;
-lin fault_V = mkV "fault" "faulted" "faulted" ;
-lin default_V = mkV "default" "defaulted" "defaulted" ; -- compound fault_V ;
-lin somersault_V = mkV "somersault" "somersaulted" "somersaulted" ;
-lin assault_V = mkV "assault" "assaulted" "assaulted" ;
-lin vault_V = mkV "vault" "vaulted" "vaulted" ;
-lin moult_V = mkV "moult" "moulted" "moulted" ;
-lin catapult_V = mkV "catapult" "catapulted" "catapulted" ;
-lin result_V = mkV "result" "resulted" "resulted" ;
-lin insult_V = mkV "insult" "insulted" "insulted" ;
-lin consult_V = mkV "consult" "consulted" "consulted" ;
-lin exult_V = mkV "exult" "exulted" "exulted" ;
-lin bant_V = mkV "bant" "banted" "banted" ;
-lin cant_V = mkV "cant" "canted" "canted" ;
-lin decant_V = mkV "decant" "decanted" "decanted" ; -- compound cant_V ;
-lin recant_V = mkV "recant" "recanted" "recanted" ; -- compound cant_V ;
-lin scant_V = mkV "scant" "scanted" "scanted" ; -- notcompound cant_V ;
-lin descant_V = mkV "descant" "descanted" "descanted" ; -- compound cant_V ;
-lin chant_V = mkV "chant" "chanted" "chanted" ;
-lin enchant_V = mkV "enchant" "enchanted" "enchanted" ; -- compound chant_V ;
-lin disenchant_V = mkV "disenchant" "disenchanted" "disenchanted" ; -- compound chant_V ;
-lin plant_V = mkV "plant" "planted" "planted" ;
-lin replant_V = mkV "replant" "replanted" "replanted" ; -- compound plant_V ;
-lin implant_V = mkV "implant" "implanted" "implanted" ; -- compound plant_V ;
-lin supplant_V = mkV "supplant" "supplanted" "supplanted" ; -- compound plant_V ;
-lin overplant_V = mkV "overplant" "overplanted" "overplanted" ; -- compound plant_V ;
-lin transplant_V = mkV "transplant" "transplanted" "transplanted" ; -- compound plant_V ;
-lin slant_V = mkV "slant" "slanted" "slanted" ;
-lin tenant_V = mkV "tenant" "tenanted" "tenanted" ;
-lin covenant_V = mkV "covenant" "covenanted" "covenanted" ;
-lin pant_V = mkV "pant" "panted" "panted" ;
-lin rant_V = mkV "rant" "ranted" "ranted" ;
-lin grant_V = mkV "grant" "granted" "granted" ; -- notcompound rant_V ;
-lin warrant_V = mkV "warrant" "warranted" "warranted" ; -- compound rant_V ;
-lin levant_V = mkV "levant" "levanted" "levanted" ;
-lin gallivant_V = mkV "gallivant" "gallivanted" "gallivanted" ;
-lin want_V = mkV "want" "wanted" "wanted" ;
-lin accent_V = mkV "accent" "accented" "accented" ;
-lin scent_V = mkV "scent" "scented" "scented" ;
-lin dent_V = mkV "dent" "dented" "dented" ;
-lin indent_V = mkV "indent" "indented" "indented" ; -- compound dent_V ;
-lin orient_V = mkV "orient" "oriented" "oriented" ;
-lin reorient_V = mkV "reorient" "reoriented" "reoriented" ; -- compound orient_V ;
-lin disorient_V = mkV "disorient" "disoriented" "disoriented" ; -- compound orient_V ;
-lin relent_V = mkV "relent" "relented" "relented" ;
-lin lament_V = mkV "lament" "lamented" "lamented" ;
-lin ornament_V = mkV "ornament" "ornamented" "ornamented" ;
-lin cement_V = mkV "cement" "cemented" "cemented" ;
-lin implement_V = mkV "implement" "implemented" "implemented" ;
-lin complement_V = mkV "complement" "complemented" "complemented" ;
-lin supplement_V = mkV "supplement" "supplemented" "supplemented" ;
-lin fragment_V = mkV "fragment" "fragmented" "fragmented" ;
-lin segment_V = mkV "segment" "segmented" "segmented" ;
-lin augment_V = mkV "augment" "augmented" "augmented" ;
-lin regiment_V = mkV "regiment" "regimented" "regimented" ;
-lin compliment_V = mkV "compliment" "complimented" "complimented" ;
-lin experiment_V = mkV "experiment" "experimented" "experimented" ;
-lin comment_V = mkV "comment" "commented" "commented" ;
-lin foment_V = mkV "foment" "fomented" "fomented" ;
-lin ferment_V = mkV "ferment" "fermented" "fermented" ;
-lin torment_V = mkV "torment" "tormented" "tormented" ;
-lin document_V = mkV "document" "documented" "documented" ;
-lin repent_V = mkV "repent" "repented" "repented" ;
-lin rent_V = mkV "rent" "rented" "rented" ;
-lin absent_V = mkV "absent" "absented" "absented" ;
-lin resent_V = mkV "resent" "resented" "resented" ;
-lin present_V = mkV "present" "presented" "presented" ; -- notcompound resent_V ;
-lin represent_V = mkV "represent" "represented" "represented" ; -- compound resent_V ;
-lin misrepresent_V = mkV "misrepresent" "misrepresented" "misrepresented" ; -- compound resent_V ;
-lin consent_V = mkV "consent" "consented" "consented" ;
-lin assent_V = mkV "assent" "assented" "assented" ;
-lin dissent_V = mkV "dissent" "dissented" "dissented" ;
-lin patent_V = mkV "patent" "patented" "patented" ;
-lin content_V = mkV "content" "contented" "contented" ;
-lin discontent_V = mkV "discontent" "discontented" "discontented" ; -- compound content_V ;
-lin frequent_V = mkV "frequent" "frequented" "frequented" ;
-lin vent_V = mkV "vent" "vented" "vented" ;
-lin prevent_V = mkV "prevent" "prevented" "prevented" ; -- compound vent_V ;
-lin circumvent_V = mkV "circumvent" "circumvented" "circumvented" ; -- compound vent_V ;
-lin invent_V = mkV "invent" "invented" "invented" ; -- compound vent_V ;
-lin reinvent_V = mkV "reinvent" "reinvented" "reinvented" ; -- compound vent_V ;
-lin faint_V = mkV "faint" "fainted" "fainted" ;
-lin paint_V = mkV "paint" "painted" "painted" ;
-lin repaint_V = mkV "repaint" "repainted" "repainted" ; -- compound paint_V ;
-lin taint_V = mkV "taint" "tainted" "tainted" ;
-lin acquaint_V = mkV "acquaint" "acquainted" "acquainted" ;
-lin feint_V = mkV "feint" "feinted" "feinted" ;
-lin hint_V = mkV "hint" "hinted" "hinted" ;
-lin glint_V = mkV "glint" "glinted" "glinted" ;
-lin mint_V = mkV "mint" "minted" "minted" ;
-lin joint_V = mkV "joint" "jointed" "jointed" ;
-lin disjoint_V = mkV "disjoint" "disjointed" "disjointed" ; -- compound joint_V ;
-lin anoint_V = mkV "anoint" "anointed" "anointed" ;
-lin point_V = mkV "point" "pointed" "pointed" ;
-lin 'pin-point_V' = mkV "pin-point" "pin-pointed" "pin-pointed" ; -- compound point_V ;
-lin repoint_V = mkV "repoint" "repointed" "repointed" ; -- compound point_V ;
-lin pinpoint_V = mkV "pinpoint" "pinpointed" "pinpointed" ; -- compound point_V ;
-lin appoint_V = mkV "appoint" "appointed" "appointed" ; -- compound point_V ;
-lin reappoint_V = mkV "reappoint" "reappointed" "reappointed" ; -- compound point_V ;
-lin disappoint_V = mkV "disappoint" "disappointed" "disappointed" ; -- compound point_V ;
-lin outpoint_V = mkV "outpoint" "outpointed" "outpointed" ; -- compound point_V ;
-lin print_V = mkV "print" "printed" "printed" ;
-lin reprint_V = mkV "reprint" "reprinted" "reprinted" ; -- compound print_V ;
-lin imprint_V = mkV "imprint" "imprinted" "imprinted" ; -- compound print_V ;
-lin overprint_V = mkV "overprint" "overprinted" "overprinted" ; -- compound print_V ;
-lin sprint_V = mkV "sprint" "sprinted" "sprinted" ; -- notcompound print_V ;
-lin misprint_V = mkV "misprint" "misprinted" "misprinted" ; -- compound print_V ;
-lin tint_V = mkV "tint" "tinted" "tinted" ;
-lin stint_V = mkV "stint" "stinted" "stinted" ; -- notcompound tint_V ;
-lin squint_V = mkV "squint" "squinted" "squinted" ;
-lin front_V = mkV "front" "fronted" "fronted" ;
-lin affront_V = mkV "affront" "affronted" "affronted" ; -- compound front_V ;
-lin confront_V = mkV "confront" "confronted" "confronted" ; -- compound front_V ;
-lin daunt_V = mkV "daunt" "daunted" "daunted" ;
-lin haunt_V = mkV "haunt" "haunted" "haunted" ;
-lin jaunt_V = mkV "jaunt" "jaunted" "jaunted" ;
-lin flaunt_V = mkV "flaunt" "flaunted" "flaunted" ;
-lin taunt_V = mkV "taunt" "taunted" "taunted" ;
-lin vaunt_V = mkV "vaunt" "vaunted" "vaunted" ;
-lin hunt_V = mkV "hunt" "hunted" "hunted" ;
-lin shunt_V = mkV "shunt" "shunted" "shunted" ; -- notcompound hunt_V ;
-lin foxhunt_V = mkV "foxhunt" "foxhunted" "foxhunted" ; -- compound hunt_V ;
-lin blunt_V = mkV "blunt" "blunted" "blunted" ;
-lin count_V = mkV "count" "counted" "counted" ;
-lin 're-count_V' = mkV "re-count" "re-counted" "re-counted" ; -- compound count_V ;
-lin account_V = mkV "account" "accounted" "accounted" ; -- compound count_V ;
-lin recount_V = mkV "recount" "recounted" "recounted" ; -- compound count_V ;
-lin discount_V = mkV "discount" "discounted" "discounted" ; -- compound count_V ;
-lin miscount_V = mkV "miscount" "miscounted" "miscounted" ; -- compound count_V ;
-lin mount_V = mkV "mount" "mounted" "mounted" ;
-lin amount_V = mkV "amount" "amounted" "amounted" ; -- notcompound mount_V ;
-lin remount_V = mkV "remount" "remounted" "remounted" ; -- compound mount_V ;
-lin surmount_V = mkV "surmount" "surmounted" "surmounted" ; -- compound mount_V ;
-lin dismount_V = mkV "dismount" "dismounted" "dismounted" ; -- compound mount_V ;
-lin punt_V = mkV "punt" "punted" "punted" ;
-lin grunt_V = mkV "grunt" "grunted" "grunted" ;
-lin stunt_V = mkV "stunt" "stunted" "stunted" ;
-lin dot_V = mkV "dot" "dotted" "dotted" ;
-lin hot_V = mkV "hot" "hotted" "hotted" ;
-lin shot_V = mkV "shot" "shotted" "shotted" ; -- notcompound hot_V ;
-lin riot_V = mkV "riot" "rioted" "rioted" ;
-lin jot_V = mkV "jot" "jotted" "jotted" ;
-lin blot_V = mkV "blot" "blotted" "blotted" ;
-lin clot_V = mkV "clot" "clotted" "clotted" ;
-lin pilot_V = mkV "pilot" "piloted" "piloted" ;
-lin ballot_V = mkV "ballot" "balloted" "balloted" ;
-lin allot_V = mkV "allot" "allotted" "allotted" ;
-lin plot_V = mkV "plot" "plotted" "plotted" ;
-lin counterplot_V = mkV "counterplot" "counterplotted" "counterplotted" ; -- compound plot_V ;
-lin slot_V = mkV "slot" "slotted" "slotted" ;
-lin knot_V = mkV "knot" "knotted" "knotted" ;
-lin boot_V = mkV "boot" "booted" "booted" ;
-lin scoot_V = mkV "scoot" "scooted" "scooted" ;
-lin foot_V = mkV "foot" "footed" "footed" ;
-lin hotfoot_V = mkV "hotfoot" "hotfooted" "hotfooted" ; -- compound foot_V ;
-lin pussyfoot_V = mkV "pussyfoot" "pussyfooted" "pussyfooted" ; -- compound foot_V ;
-lin hoot_V = mkV "hoot" "hooted" "hooted" ;
-lin loot_V = mkV "loot" "looted" "looted" ;
-lin moot_V = mkV "moot" "mooted" "mooted" ;
-lin root_V = mkV "root" "rooted" "rooted" ;
-lin uproot_V = mkV "uproot" "uprooted" "uprooted" ; -- compound root_V ;
-lin soot_V = mkV "soot" "sooted" "sooted" ;
-lin toot_V = mkV "toot" "tooted" "tooted" ;
-lin pot_V = mkV "pot" "potted" "potted" ;
-lin repot_V = mkV "repot" "repotted" "repotted" ; -- compound pot_V ;
-lin spot_V = mkV "spot" "spotted" "spotted" ; -- notcompound pot_V ;
-lin rot_V = mkV "rot" "rotted" "rotted" ;
-lin trot_V = mkV "trot" "trotted" "trotted" ; -- notcompound rot_V ;
-lin globetrot_V = mkV "globetrot" "globetrotted" "globetrotted" ; -- compound rot_V ;
-lin tot_V = mkV "tot" "totted" "totted" ;
-lin quot_V = mkV "quot" "quotted" "quotted" ;
-lin pivot_V = mkV "pivot" "pivoted" "pivoted" ;
-lin swot_V = mkV "swot" "swotted" "swotted" ;
-lin adapt_V = mkV "adapt" "adapted" "adapted" ;
-lin accept_V = mkV "accept" "accepted" "accepted" ;
-lin intercept_V = mkV "intercept" "intercepted" "intercepted" ;
-lin except_V = mkV "except" "excepted" "excepted" ;
-lin receipt_V = mkV "receipt" "receipted" "receipted" ;
-lin conscript_V = mkV "conscript" "conscripted" "conscripted" ;
-lin sculpt_V = mkV "sculpt" "sculpted" "sculpted" ;
-lin 'pre-empt_V' = mkV "pre-empt" "pre-empted" "pre-empted" ;
-lin tempt_V = mkV "tempt" "tempted" "tempted" ;
-lin attempt_V = mkV "attempt" "attempted" "attempted" ; -- compound tempt_V ;
-lin exempt_V = mkV "exempt" "exempted" "exempted" ;
-lin prompt_V = mkV "prompt" "prompted" "prompted" ;
-lin opt_V = mkV "opt" "opted" "opted" ;
-lin 'co-opt_V' = mkV "co-opt" "co-opted" "co-opted" ; -- compound opt_V ;
-lin adopt_V = mkV "adopt" "adopted" "adopted" ; -- compound opt_V ;
-lin erupt_V = mkV "erupt" "erupted" "erupted" ;
-lin bankrupt_V = mkV "bankrupt" "bankrupted" "bankrupted" ;
-lin interrupt_V = mkV "interrupt" "interrupted" "interrupted" ;
-lin corrupt_V = mkV "corrupt" "corrupted" "corrupted" ;
-lin disrupt_V = mkV "disrupt" "disrupted" "disrupted" ;
-lin encrypt_V = mkV "encrypt" "encrypted" "encrypted" ;
-lin cart_V = mkV "cart" "carted" "carted" ;
-lin dart_V = mkV "dart" "darted" "darted" ;
-lin fart_V = mkV "fart" "farted" "farted" ;
-lin chart_V = mkV "chart" "charted" "charted" ;
-lin smart_V = mkV "smart" "smarted" "smarted" ;
-lin outsmart_V = mkV "outsmart" "outsmarted" "outsmarted" ; -- compound smart_V ;
-lin part_V = mkV "part" "parted" "parted" ;
-lin depart_V = mkV "depart" "departed" "departed" ; -- compound part_V ;
-lin impart_V = mkV "impart" "imparted" "imparted" ; -- compound part_V ;
-lin tart_V = mkV "tart" "tarted" "tarted" ;
-lin start_V = mkV "start" "started" "started" ; -- notcompound tart_V ;
-lin restart_V = mkV "restart" "restarted" "restarted" ; -- compound tart_V ;
-lin thwart_V = mkV "thwart" "thwarted" "thwarted" ;
-lin concert_V = mkV "concert" "concerted" "concerted" ;
-lin disconcert_V = mkV "disconcert" "disconcerted" "disconcerted" ; -- compound concert_V ;
-lin alert_V = mkV "alert" "alerted" "alerted" ;
-lin desert_V = mkV "desert" "deserted" "deserted" ;
-lin insert_V = mkV "insert" "inserted" "inserted" ;
-lin assert_V = mkV "assert" "asserted" "asserted" ;
-lin reassert_V = mkV "reassert" "reasserted" "reasserted" ; -- compound assert_V ;
-lin avert_V = mkV "avert" "averted" "averted" ;
-lin subvert_V = mkV "subvert" "subverted" "subverted" ;
-lin advert_V = mkV "advert" "adverted" "adverted" ;
-lin animadvert_V = mkV "animadvert" "animadverted" "animadverted" ; -- compound advert_V ;
-lin revert_V = mkV "revert" "reverted" "reverted" ;
-lin divert_V = mkV "divert" "diverted" "diverted" ;
-lin invert_V = mkV "invert" "inverted" "inverted" ;
-lin convert_V = mkV "convert" "converted" "converted" ;
-lin introvert_V = mkV "introvert" "introverted" "introverted" ;
-lin controvert_V = mkV "controvert" "controverted" "controverted" ;
-lin pervert_V = mkV "pervert" "perverted" "perverted" ;
-lin exert_V = mkV "exert" "exerted" "exerted" ;
-lin overexert_V = mkV "overexert" "overexerted" "overexerted" ; -- compound exert_V ;
-lin skirt_V = mkV "skirt" "skirted" "skirted" ;
-lin flirt_V = mkV "flirt" "flirted" "flirted" ;
-lin spirt_V = mkV "spirt" "spirted" "spirted" ;
-lin squirt_V = mkV "squirt" "squirted" "squirted" ;
+lin abduction_N = mkN "abduction" "abductions" ;
+lin abductor_N = mkN "abductor" "abductors" ;
+lin abeam_Adv = mkAdv "abeam" ;
+lin abecedarian_A = mkAMost "abecedarian" "abecedarianly" ;
+lin abecedarian_N = mkN "abecedarian" "abecedarians" ;
+lin abecedarius_N = mkN "abecedarius" "abecedariuses" ;
+lin abed_Adv = mkAdv "abed" ;
+lin abelia_N = mkN "abelia" "abelias" ;
+lin abelmosk_N = mkN "abelmosk" "abelmosks" ;
+lin aberrance_N = mkN "aberrance" "aberrances" ;
+lin aberrant_A = mkAMost "aberrant" "aberrantly" ;
+lin aberrant_N = mkN "aberrant" "aberrants" ;
+lin aberration_N = mkN "aberration" "aberrations" ;
+lin abet_V = mkV "abet" "abetted" "abetted" ;
+lin abetalipoproteinemia_N = mkN "abetalipoproteinemia" "abetalipoproteinemias" ;
+lin abetment_N = mkN "abetment" "abetments" ;
+lin abettor_N = mkN "abettor" "abettors" ;
+lin abeyance_N = mkN "abeyance" "abeyances" ;
+lin abeyant_A = mkAMost "abeyant" "abeyantly" ;
+lin abfarad_N = mkN "abfarad" "abfarads" ;
+lin abhenry_N = mkN "abhenry" "abhenries" ;
+lin abhor_V = mkV "abhor" "abhorred" "abhorred" ;
+lin abhorrence_N = mkN "abhorrence" "abhorrences" ;
+lin abhorrent_A = mkAMost "abhorrent" "abhorrently" ;
+lin abhorrer_N = mkN "abhorrer" "abhorrers" ;
+lin abidance_N = mkN "abidance" "abidances" ;
+lin abide_V = mkV "abide" "abided" "abided" ;
+lin abience_N = mkN "abience" "abiences" ;
+lin abient_A = mkAMost "abient" "abiently" ;
+lin ability_N = mkN "ability" "abilities" ;
+lin abiogenesis_N = mkN "abiogenesis" "abiogenesises" ;
+lin abiogenetic_A = mkAMost "abiogenetic" "abiogeneticly" ;
+lin abiogenist_N = mkN "abiogenist" "abiogenists" ;
+lin abiotrophy_N = mkN "abiotrophy" "abiotrophies" ;
+lin abject_A = mkAMost "abject" "abjectly" ;
+lin abjection_N = mkN "abjection" "abjections" ;
+lin abjuration_N = mkN "abjuration" "abjurations" ;
+lin abjure_V = mkV "abjure" "abjured" "abjured" ;
+lin abjurer_N = mkN "abjurer" "abjurers" ;
+lin ablactation_N = mkN "ablactation" "ablactations" ;
+lin ablated_A = mkAMost "ablated" "ablatedly" ;
+lin ablation_N = mkN "ablation" "ablations" ;
+lin ablative_A = mkAMost "ablative" "ablatively" ;
+lin ablative_N = mkN "ablative" "ablatives" ;
+lin ablaut_N = mkN "ablaut" "ablauts" ;
+lin ablaze_A = mkAMost "ablaze" "ablazely" ;
+lin ablaze_Adv = mkAdv "ablaze" ;
+lin able_A = mkA "able" "abler" "ablest" "ably" ;
+lin able_bodied_A = mkAMost "able-bodied" "able-bodiedly" ;
+lin ableism_N = mkN "ableism" "ableisms" ;
+lin ablepharia_N = mkN "ablepharia" "ablepharias" ;
+lin abloom_A = mkAMost "abloom" "abloomly" ;
+lin ablution_N = mkN "ablution" "ablutions" ;
+lin ablutionary_A = mkAMost "ablutionary" "ablutionarily" ;
+lin abnegation_N = mkN "abnegation" "abnegations" ;
+lin abnegator_N = mkN "abnegator" "abnegators" ;
+lin abnormal_A = mkAMost "abnormal" "abnormally" ;
+lin abnormality_N = mkN "abnormality" "abnormalities" ;
+lin abo_N = mkN "abo" "abos" ;
+lin aboard_Adv = mkAdv "aboard" ;
+lin aboard_Prep = mkPrep "aboard" ;
+lin abocclusion_N = mkN "abocclusion" "abocclusions" ;
+lin abode_N = mkN "abode" "abodes" ;
+lin abohm_N = mkN "abohm" "abohms" ;
+lin abolish_V = mkV "abolish" "abolished" "abolished" ;
+lin abolishable_A = mkAMost "abolishable" "abolishably" ;
+lin abolition_N = mkN "abolition" "abolitions" ;
+lin abolitionary_A = mkAMost "abolitionary" "abolitionarily" ;
+lin abolitionism_N = mkN "abolitionism" "abolitionisms" ;
+lin abolitionist_N = mkN "abolitionist" "abolitionists" ;
+lin abomasal_A = mkAMost "abomasal" "abomasally" ;
+lin abomasum_N = mkN "abomasum" "abomasums" ;
+lin abominable_A = mkAMost "abominable" "abominably" ;
+lin abominate_V = mkV "abominate" "abominated" "abominated" ;
+lin abomination_N = mkN "abomination" "abominations" ;
+lin abominator_N = mkN "abominator" "abominators" ;
+lin aborad_Adv = mkAdv "aborad" ;
+lin aboral_A = mkAMost "aboral" "aborally" ;
+lin aboriginal_A = mkAMost "aboriginal" "aboriginally" ;
+lin aboriginal_N = mkN "aboriginal" "aboriginals" ;
+lin aborigine_N = mkN "aborigine" "aborigines" ;
+lin abort_N = mkN "abort" "aborts" ;
lin abort_V = mkV "abort" "aborted" "aborted" ;
-lin escort_V = mkV "escort" "escorted" "escorted" ;
-lin comfort_V = mkV "comfort" "comforted" "comforted" ;
-lin short_V = mkV "short" "shorted" "shorted" ;
-lin exhort_V = mkV "exhort" "exhorted" "exhorted" ;
-lin snort_V = mkV "snort" "snorted" "snorted" ;
-lin port_V = mkV "port" "ported" "ported" ;
-lin deport_V = mkV "deport" "deported" "deported" ; -- compound port_V ;
-lin report_V = mkV "report" "reported" "reported" ; -- compound port_V ;
-lin import_V = mkV "import" "imported" "imported" ; -- compound port_V ;
-lin comport_V = mkV "comport" "comported" "comported" ; -- compound port_V ;
-lin support_V = mkV "support" "supported" "supported" ; -- compound port_V ;
-lin purport_V = mkV "purport" "purported" "purported" ; -- compound port_V ;
-lin sport_V = mkV "sport" "sported" "sported" ; -- notcompound port_V ;
-lin disport_V = mkV "disport" "disported" "disported" ; -- compound port_V ;
-lin transport_V = mkV "transport" "transported" "transported" ; -- compound port_V ;
-lin export_V = mkV "export" "exported" "exported" ; -- compound port_V ;
-lin sort_V = mkV "sort" "sorted" "sorted" ;
-lin resort_V = mkV "resort" "resorted" "resorted" ; -- compound sort_V ;
-lin consort_V = mkV "consort" "consorted" "consorted" ; -- compound sort_V ;
-lin retort_V = mkV "retort" "retorted" "retorted" ;
-lin contort_V = mkV "contort" "contorted" "contorted" ;
-lin distort_V = mkV "distort" "distorted" "distorted" ;
-lin extort_V = mkV "extort" "extorted" "extorted" ;
-lin cavort_V = mkV "cavort" "cavorted" "cavorted" ;
-lin blurt_V = mkV "blurt" "blurted" "blurted" ;
-lin court_V = mkV "court" "courted" "courted" ;
-lin spurt_V = mkV "spurt" "spurted" "spurted" ;
-lin cast_2_V = mkV "cast" "casted" "casted" ;
-lin broadcast_V = mkV "broadcast" "broadcasted" "broadcasted" ; -- compound cast_2_V ;
-lin forecast_V = mkV "forecast" "forecasted" "forecasted" ; -- compound cast_2_V ;
-lin feast_V = mkV "feast" "feasted" "feasted" ;
-lin breast_V = mkV "breast" "breasted" "breasted" ;
-lin fast_V = mkV "fast" "fasted" "fasted" ;
-lin breakfast_V = mkV "breakfast" "breakfasted" "breakfasted" ; -- compound fast_V ;
-lin flabbergast_V = mkV "flabbergast" "flabbergasted" "flabbergasted" ;
-lin last_V = mkV "last" "lasted" "lasted" ;
-lin blast_V = mkV "blast" "blasted" "blasted" ; -- notcompound last_V ;
-lin sandblast_V = mkV "sandblast" "sandblasted" "sandblasted" ; -- compound last_V ;
-lin ballast_V = mkV "ballast" "ballasted" "ballasted" ; -- compound last_V ;
-lin outlast_V = mkV "outlast" "outlasted" "outlasted" ; -- compound last_V ;
-lin boast_V = mkV "boast" "boasted" "boasted" ;
-lin coast_V = mkV "coast" "coasted" "coasted" ;
-lin roast_V = mkV "roast" "roasted" "roasted" ;
-lin toast_V = mkV "toast" "toasted" "toasted" ;
-lin contrast_V = mkV "contrast" "contrasted" "contrasted" ;
-lin best_V = mkV "best" "bested" "bested" ;
-lin manifest_V = mkV "manifest" "manifested" "manifested" ;
-lin infest_V = mkV "infest" "infested" "infested" ;
-lin disinfest_V = mkV "disinfest" "disinfested" "disinfested" ; -- compound infest_V ;
-lin suggest_V = mkV "suggest" "suggested" "suggested" ;
-lin digest_V = mkV "digest" "digested" "digested" ;
-lin predigest_V = mkV "predigest" "predigested" "predigested" ; -- compound digest_V ;
-lin ingest_V = mkV "ingest" "ingested" "ingested" ;
-lin jest_V = mkV "jest" "jested" "jested" ;
-lin molest_V = mkV "molest" "molested" "molested" ;
-lin nest_V = mkV "nest" "nested" "nested" ;
-lin rest_V = mkV "rest" "rested" "rested" ;
-lin crest_V = mkV "crest" "crested" "crested" ; -- notcompound rest_V ;
-lin interest_V = mkV "interest" "interested" "interested" ; -- compound rest_V ;
-lin deforest_V = mkV "deforest" "deforested" "deforested" ; -- compound rest_V ;
-lin reforest_V = mkV "reforest" "reforested" "reforested" ; -- compound rest_V ;
-lin afforest_V = mkV "afforest" "afforested" "afforested" ; -- compound rest_V ;
-lin 're-afforest_V' = mkV "re-afforest" "re-afforested" "re-afforested" ; -- compound rest_V ;
-lin disafforest_V = mkV "disafforest" "disafforested" "disafforested" ; -- compound rest_V ;
-lin disforest_V = mkV "disforest" "disforested" "disforested" ; -- compound rest_V ;
-lin arrest_V = mkV "arrest" "arrested" "arrested" ; -- compound rest_V ;
-lin wrest_V = mkV "wrest" "wrested" "wrested" ; -- notcompound rest_V ;
-lin test_V = mkV "test" "tested" "tested" ;
-lin 'pre-test_V' = mkV "pre-test" "pre-tested" "pre-tested" ; -- compound test_V ;
-lin detest_V = mkV "detest" "detested" "detested" ; -- compound test_V ;
-lin contest_V = mkV "contest" "contested" "contested" ; -- compound test_V ;
-lin protest_V = mkV "protest" "protested" "protested" ; -- compound test_V ;
-lin attest_V = mkV "attest" "attested" "attested" ; -- compound test_V ;
-lin quest_V = mkV "quest" "quested" "quested" ;
-lin request_V = mkV "request" "requested" "requested" ; -- compound quest_V ;
-lin vest_V = mkV "vest" "vested" "vested" ;
-lin divest_V = mkV "divest" "divested" "divested" ; -- compound vest_V ;
-lin invest_V = mkV "invest" "invested" "invested" ; -- compound vest_V ;
-lin reinvest_V = mkV "reinvest" "reinvested" "reinvested" ; -- compound vest_V ;
-lin harvest_V = mkV "harvest" "harvested" "harvested" ; -- compound vest_V ;
-lin list_V = mkV "list" "listed" "listed" ;
-lin blacklist_V = mkV "blacklist" "blacklisted" "blacklisted" ; -- compound list_V ;
-lin enlist_V = mkV "enlist" "enlisted" "enlisted" ; -- compound list_V ;
-lin shortlist_V = mkV "shortlist" "shortlisted" "shortlisted" ; -- compound list_V ;
-lin mist_V = mkV "mist" "misted" "misted" ;
-lin demist_V = mkV "demist" "demisted" "demisted" ; -- compound mist_V ;
-lin foist_V = mkV "foist" "foisted" "foisted" ;
-lin hoist_V = mkV "hoist" "hoisted" "hoisted" ;
-lin subsist_V = mkV "subsist" "subsisted" "subsisted" ;
-lin desist_V = mkV "desist" "desisted" "desisted" ;
-lin resist_V = mkV "resist" "resisted" "resisted" ;
-lin insist_V = mkV "insist" "insisted" "insisted" ;
-lin consist_V = mkV "consist" "consisted" "consisted" ;
-lin persist_V = mkV "persist" "persisted" "persisted" ;
-lin assist_V = mkV "assist" "assisted" "assisted" ;
-lin twist_V = mkV "twist" "twisted" "twisted" ;
-lin exist_V = mkV "exist" "existed" "existed" ;
-lin 'pre-exist_V' = mkV "pre-exist" "pre-existed" "pre-existed" ; -- compound exist_V ;
-lin 'co-exist_V' = mkV "co-exist" "co-existed" "co-existed" ; -- compound exist_V ;
-lin coexist_V = mkV "coexist" "coexisted" "coexisted" ; -- compound exist_V ;
-lin cost_2_V = mkV "cost" "costed" "costed" ;
-lin accost_V = mkV "accost" "accosted" "accosted" ; -- compound cost_2_V ;
-lin host_V = mkV "host" "hosted" "hosted" ;
-lin ghost_V = mkV "ghost" "ghosted" "ghosted" ; -- notcompound host_V ;
-lin boost_V = mkV "boost" "boosted" "boosted" ;
-lin roost_V = mkV "roost" "roosted" "roosted" ;
-lin post_V = mkV "post" "posted" "posted" ;
-lin compost_V = mkV "compost" "composted" "composted" ; -- compound post_V ;
-lin signpost_V = mkV "signpost" "signposted" "signposted" ; -- compound post_V ;
-lin frost_V = mkV "frost" "frosted" "frosted" ;
-lin defrost_V = mkV "defrost" "defrosted" "defrosted" ; -- compound frost_V ;
-lin thirst_V = mkV "thirst" "thirsted" "thirsted" ;
-lin worst_V = mkV "worst" "worsted" "worsted" ;
-lin exhaust_V = mkV "exhaust" "exhausted" "exhausted" ;
-lin bust_V = mkV "bust" "busted" "busted" ;
-lin dust_V = mkV "dust" "dusted" "dusted" ;
-lin disgust_V = mkV "disgust" "disgusted" "disgusted" ;
-lin adjust_V = mkV "adjust" "adjusted" "adjusted" ;
-lin readjust_V = mkV "readjust" "readjusted" "readjusted" ; -- compound adjust_V ;
-lin lust_V = mkV "lust" "lusted" "lusted" ;
-lin oust_V = mkV "oust" "ousted" "ousted" ;
-lin joust_V = mkV "joust" "jousted" "jousted" ; -- notcompound oust_V ;
-lin rust_V = mkV "rust" "rusted" "rusted" ;
-lin crust_V = mkV "crust" "crusted" "crusted" ; -- notcompound rust_V ;
-lin encrust_V = mkV "encrust" "encrusted" "encrusted" ; -- compound rust_V ;
-lin thrust_2_V = mkV "thrust" "thrusted" "thrusted" ; -- notcompound rust_V ;
-lin trust_V = mkV "trust" "trusted" "trusted" ; -- notcompound rust_V ;
-lin entrust_V = mkV "entrust" "entrusted" "entrusted" ; -- compound rust_V ;
-lin intrust_V = mkV "intrust" "intrusted" "intrusted" ; -- compound rust_V ;
-lin distrust_V = mkV "distrust" "distrusted" "distrusted" ; -- compound rust_V ;
-lin mistrust_V = mkV "mistrust" "mistrusted" "mistrusted" ; -- compound rust_V ;
-lin nett_V = mkV "nett" "netted" "netted" ;
-lin boycott_V = mkV "boycott" "boycotted" "boycotted" ;
-lin butt_V = mkV "butt" "butted" "butted" ;
-lin putt_V = mkV "putt" "putted" "putted" ;
+lin aborticide_N = mkN "aborticide" "aborticides" ;
+lin abortifacient_A = mkAMost "abortifacient" "abortifaciently" ;
+lin abortifacient_N = mkN "abortifacient" "abortifacients" ;
+lin abortion_N = mkN "abortion" "abortions" ;
+lin abortionist_N = mkN "abortionist" "abortionists" ;
+lin abortive_A = mkAMost "abortive" "abortively" ;
+lin abortus_N = mkN "abortus" "abortuses" ;
+lin abound_V = mkV "abound" "abounded" "abounded" ;
+lin about_Adv = mkAdv "about" ;
+lin about_Prep = mkPrep "about" ;
+lin about_face_N = mkN "about-face" "about-faces" ;
+lin about_face_V = mkV "about-face" "about-faced" "about-faced" ;
+lin above_A = mkAMost "above" "abovely" ;
+lin above_Adv = mkAdv "above" ;
+lin above_N = mkN "above" "aboves" ;
+lin above_Prep = mkPrep "above" ;
+lin above_board_A = mkAMost "above board" "above boardly" ;
+lin above_board_Adv = mkAdv "above board" ;
+lin above_mentioned_A = mkAMost "above-mentioned" "above-mentionedly" ;
+lin above_named_A = mkAMost "above-named" "above-namedly" ;
+lin aboveboard_A = mkAMost "aboveboard" "aboveboardly" ;
+lin aboveground_A = mkAMost "aboveground" "abovegroundly" ;
+lin abracadabra_N = mkN "abracadabra" "abracadabras" ;
+lin abrachia_N = mkN "abrachia" "abrachias" ;
+lin abrade_V = mkV "abrade" "abraded" "abraded" ;
+lin abrader_N = mkN "abrader" "abraders" ;
+lin abranchiate_A = mkAMost "abranchiate" "abranchiately" ;
+lin abrasion_N = mkN "abrasion" "abrasions" ;
+lin abrasive_A = mkAMost "abrasive" "abrasively" ;
+lin abrasive_N = mkN "abrasive" "abrasives" ;
+lin abrasiveness_N = mkN "abrasiveness" "abrasivenesses" ;
+lin abreast_Adv = mkAdv "abreast" ;
+lin abridge_V = mkV "abridge" "abridged" "abridged" ;
+lin abridgement_N = mkN "abridgement" "abridgements" ;
+lin abridger_N = mkN "abridger" "abridgers" ;
+lin abridgment_N = mkN "abridgment" "abridgments" ;
+lin abroach_A = mkAMost "abroach" "abroachly" ;
+lin abroad_A = mkAMost "abroad" "abroadly" ;
+lin abroad_Adv = mkAdv "abroad" ;
+lin abrocome_N = mkN "abrocome" "abrocomes" ;
+lin abrogate_V = mkV "abrogate" "abrogated" "abrogated" ;
+lin abrogation_N = mkN "abrogation" "abrogations" ;
+lin abrogator_N = mkN "abrogator" "abrogators" ;
+lin abrupt_A = mkAMost "abrupt" "abruptly" ;
+lin abruptness_N = mkN "abruptness" "abruptnesses" ;
+lin abscess_N = mkN "abscess" "abscesses" ;
+lin abscessed_A = mkAMost "abscessed" "abscessedly" ;
+lin abscissa_N = mkN "abscissa" "abscissas" ;
+lin abscission_N = mkN "abscission" "abscissions" ;
+lin abscond_V = mkV "abscond" "absconded" "absconded" ;
+lin absconder_N = mkN "absconder" "absconders" ;
+lin abscondment_N = mkN "abscondment" "abscondments" ;
+lin abseiler_N = mkN "abseiler" "abseilers" ;
+lin absence_N = mkN "absence" "absences" ;
+lin absent_A = mkAMost "absent" "absently" ;
+lin absent_Prep = mkPrep "absent" ;
+lin absent_V = mkV "absent" "absented" "absented" ;
+lin absent_minded_A = mkAMost "absent-minded" "absent-mindedly" ;
+lin absent_mindedness_N = mkN "absent-mindedness" "absent-mindednesses" ;
+lin absentee_N = mkN "absentee" "absentees" ;
+lin absenteeism_N = mkN "absenteeism" "absenteeisms" ;
+lin absentmindedness_N = mkN "absentmindedness" "absentmindednesses" ;
+lin absinth_N = mkN "absinth" "absinths" ;
+lin absinthe_N = mkN "absinthe" "absinthes" ;
+lin absolute_A = mkAMost "absolute" "absolutely" ;
+lin absolute_N = mkN "absolute" "absolutes" ;
+lin absoluteness_N = mkN "absoluteness" "absolutenesses" ;
+lin absolution_N = mkN "absolution" "absolutions" ;
+lin absolutism_N = mkN "absolutism" "absolutisms" ;
+lin absolutist_A = mkAMost "absolutist" "absolutistly" ;
+lin absolutist_N = mkN "absolutist" "absolutists" ;
+lin absolve_V = mkV "absolve" "absolved" "absolved" ;
+lin absolver_N = mkN "absolver" "absolvers" ;
+lin absolvitory_A = mkAMost "absolvitory" "absolvitorily" ;
+lin absorb_V = mkV "absorb" "absorbed" "absorbed" ;
+lin absorbable_A = mkAMost "absorbable" "absorbably" ;
+lin absorbate_N = mkN "absorbate" "absorbates" ;
+lin absorbefacient_A = mkAMost "absorbefacient" "absorbefaciently" ;
+lin absorbency_N = mkN "absorbency" "absorbencies" ;
+lin absorbent_A = mkAMost "absorbent" "absorbently" ;
+lin absorbent_N = mkN "absorbent" "absorbents" ;
+lin absorber_N = mkN "absorber" "absorbers" ;
+lin absorbing_A = mkAMost "absorbing" "absorbingly" ;
+lin absorption_N = mkN "absorption" "absorptions" ;
+lin absorptivity_N = mkN "absorptivity" "absorptivities" ;
+lin abstain_V = mkV "abstain" "abstained" "abstained" ;
+lin abstainer_N = mkN "abstainer" "abstainers" ;
+lin abstemious_A = mkAMost "abstemious" "abstemiously" ;
+lin abstemiousness_N = mkN "abstemiousness" "abstemiousnesses" ;
+lin abstention_N = mkN "abstention" "abstentions" ;
+lin abstinence_N = mkN "abstinence" "abstinences" ;
+lin abstinent_A = mkAMost "abstinent" "abstinently" ;
+lin abstract_A = mkAMost "abstract" "abstractly" ;
+lin abstract_N = mkN "abstract" "abstracts" ;
+lin abstract_V = mkV "abstract" "abstracted" "abstracted" ;
+lin abstractedness_N = mkN "abstractedness" "abstractednesses" ;
+lin abstraction_N = mkN "abstraction" "abstractions" ;
+lin abstractionism_N = mkN "abstractionism" "abstractionisms" ;
+lin abstractionist_N = mkN "abstractionist" "abstractionists" ;
+lin abstractive_A = mkAMost "abstractive" "abstractively" ;
+lin abstractness_N = mkN "abstractness" "abstractnesses" ;
+lin abstractor_N = mkN "abstractor" "abstractors" ;
+lin abstruse_A = mkAMost "abstruse" "abstrusely" ;
+lin abstruseness_N = mkN "abstruseness" "abstrusenesses" ;
+lin absurd_A = mkAMost "absurd" "absurdly" ;
+lin absurd_N = mkN "absurd" "absurds" ;
+lin absurdity_N = mkN "absurdity" "absurdities" ;
+lin abulia_N = mkN "abulia" "abulias" ;
+lin abulic_A = mkAMost "abulic" "abulicly" ;
+lin abundance_N = mkN "abundance" "abundances" ;
+lin abundant_A = mkAMost "abundant" "abundantly" ;
+lin abuse_N = mkN "abuse" "abuses" ;
+lin abuse_V = mkV "abuse" "abused" "abused" ;
+lin abuser_N = mkN "abuser" "abusers" ;
+lin abusive_A = mkAMost "abusive" "abusively" ;
lin abut_V = mkV "abut" "abutted" "abutted" ;
-lin debut_V = mkV "debut" "debutted" "debutted" ;
-lin rebut_V = mkV "rebut" "rebutted" "rebutted" ;
-lin cut_2_V = mkV "cut" "cutted" "cutted" ;
-lin gut_V = mkV "gut" "gutted" "gutted" ;
-lin shut_2_V = mkV "shut" "shutted" "shutted" ;
-lin jut_V = mkV "jut" "jutted" "jutted" ;
-lin glut_V = mkV "glut" "glutted" "glutted" ;
-lin smut_V = mkV "smut" "smutted" "smutted" ;
-lin nut_V = mkV "nut" "nutted" "nutted" ;
-lin out_V = mkV "out" "outed" "outed" ;
-lin scout_V = mkV "scout" "scouted" "scouted" ; -- notcompound out_V ;
-lin shout_V = mkV "shout" "shouted" "shouted" ; -- notcompound out_V ;
-lin clout_V = mkV "clout" "clouted" "clouted" ; -- notcompound out_V ;
-lin flout_V = mkV "flout" "flouted" "flouted" ; -- notcompound out_V ;
-lin pout_V = mkV "pout" "pouted" "pouted" ; -- notcompound out_V ;
-lin spout_V = mkV "spout" "spouted" "spouted" ; -- notcompound out_V ;
-lin rout_V = mkV "rout" "routed" "routed" ; -- notcompound out_V ;
-lin sprout_V = mkV "sprout" "sprouted" "sprouted" ; -- notcompound out_V ;
-lin tout_V = mkV "tout" "touted" "touted" ; -- notcompound out_V ;
-lin rut_V = mkV "rut" "rutted" "rutted" ;
-lin strut_V = mkV "strut" "strutted" "strutted" ; -- notcompound rut_V ;
-lin tut_V = mkV "tut" "tutted" "tutted" ;
-lin text_V = mkV "text" "texted" "texted" ;
-lin eat_V = mkV "eat" "ate" "eaten" ;
-lin overeat_V = mkV "overeat" "overate" "overeaten" ; -- compound eat_V ;
-lin light_2_V = mkV "light" "lit" "lighted" ;
-lin beat_1_V = mkV "beat" "beat" "beaten" ;
-lin browbeat_V = mkV "browbeat" "browbeat" "browbeaten" ; -- compound beat_1_V ;
-lin get_2_V = mkV "get" "got" "gotten" ;
-lin beget_V = mkV "beget" "begot" "begotten" ; -- compound get_2_V ;
-lin forget_V = mkV "forget" "forgot" "forgotten" ; -- compound get_2_V ;
-lin meet_2_V = mkV "meet" "met" "met" ;
-lin let_V = mkV "let" "let" "let" ;
-lin sublet_V = mkV "sublet" "sublet" "sublet" ; -- compound let_V ;
-lin set_1_V = mkV "set" "set" "set" ;
-lin beset_V = mkV "beset" "beset" "beset" ; -- compound set_1_V ;
-lin reset_1_V = mkV "reset" "reset" "reset" ; -- compound set_1_V ;
-lin offset_V = mkV "offset" "offset" "offset" ; -- compound set_1_V ;
-lin inset_V = mkV "inset" "inset" "inset" ; -- compound set_1_V ;
-lin upset_V = mkV "upset" "upset" "upset" ; -- compound set_1_V ;
-lin fight_V = mkV "fight" "fought" "fought" ;
-lin outfight_V = mkV "outfight" "outfought" "outfought" ; -- compound fight_V ;
-lin sit_1_V = mkV "sit" "sat" "sat" ;
-lin babysit_V = mkV "babysit" "babysat" "babysat" ; -- compound sit_1_V ;
-lin spit_1_V = mkV "spit" "spat" "spit" ;
-lin fit_1_V = mkV "fit" "fit" "fit" ;
-lin hit_V = mkV "hit" "hit" "hit" ;
-lin lit_V = mkV "lit" "lit" "lit" ;
-lin split_V = mkV "split" "split" "split" ; -- notcompound lit_V ;
-lin slit_V = mkV "slit" "slit" "slit" ; -- notcompound lit_V ;
-lin spit_2_V = mkV "spit" "spit" "spit" ;
-lin quit_1_V = mkV "quit" "quit" "quit" ;
-lin shoot_V = mkV "shoot" "shot" "shot" ;
-lin undershoot_V = mkV "undershoot" "undershot" "undershot" ; -- compound shoot_V ;
-lin overshoot_V = mkV "overshoot" "overshot" "overshot" ; -- compound shoot_V ;
-lin hurt_V = mkV "hurt" "hurt" "hurt" ;
-lin cast_1_V = mkV "cast" "cast" "cast" ;
-lin telecast_V = mkV "telecast" "telecast" "telecast" ; -- compound cast_1_V ;
-lin typecast_V = mkV "typecast" "typecast" "typecast" ; -- compound cast_1_V ;
-lin recast_V = mkV "recast" "recast" "recast" ; -- compound cast_1_V ;
-lin roughcast_V = mkV "roughcast" "roughcast" "roughcast" ; -- compound cast_1_V ;
-lin miscast_V = mkV "miscast" "miscast" "miscast" ; -- compound cast_1_V ;
-lin cost_1_V = mkV "cost" "cost" "cost" ;
-lin burst_V = mkV "burst" "burst" "burst" ;
-lin thrust_1_V = mkV "thrust" "thrust" "thrust" ;
-lin cut_1_V = mkV "cut" "cut" "cut" ;
-lin undercut_V = mkV "undercut" "undercut" "undercut" ; -- compound cut_1_V ;
-lin shut_1_V = mkV "shut" "shut" "shut" ;
-lin put_V = mkV "put" "put" "put" ;
-lin miaou_V = mkV "miaou" "miaoued" "miaoued" ;
-lin rev_V = mkV "rev" "revved" "revved" ;
-lin caw_V = mkV "caw" "cawed" "cawed" ;
-lin guffaw_V = mkV "guffaw" "guffawed" "guffawed" ;
-lin haw_V = mkV "haw" "hawed" "hawed" ;
-lin chaw_V = mkV "chaw" "chawed" "chawed" ; -- notcompound haw_V ;
-lin thaw_V = mkV "thaw" "thawed" "thawed" ; -- notcompound haw_V ;
-lin jaw_V = mkV "jaw" "jawed" "jawed" ;
-lin claw_V = mkV "claw" "clawed" "clawed" ;
-lin flaw_V = mkV "flaw" "flawed" "flawed" ;
-lin outlaw_V = mkV "outlaw" "outlawed" "outlawed" ;
-lin gnaw_V = mkV "gnaw" "gnawed" "gnawed" ;
-lin paw_V = mkV "paw" "pawed" "pawed" ;
-lin draw_1_V = mkV "draw" "drawed" "drawed" ;
-lin redraw_V = mkV "redraw" "redrawed" "redrawed" ; -- compound draw_1_V ;
-lin straw_V = mkV "straw" "strawed" "strawed" ;
-lin saw_1_V = mkV "saw" "sawed" "sawed" ;
-lin seesaw_V = mkV "seesaw" "seesawed" "seesawed" ; -- compound saw_1_V ;
-lin whipsaw_V = mkV "whipsaw" "whipsawed" "whipsawed" ; -- compound saw_1_V ;
-lin yaw_V = mkV "yaw" "yawed" "yawed" ;
-lin mildew_V = mkV "mildew" "mildewed" "mildewed" ;
-lin hew_V = mkV "hew" "hewed" "hewed" ;
-lin chew_V = mkV "chew" "chewed" "chewed" ; -- notcompound hew_V ;
-lin eschew_V = mkV "eschew" "eschewed" "eschewed" ; -- compound hew_V ;
-lin shew_V = mkV "shew" "shewed" "shewed" ; -- notcompound hew_V ;
-lin view_V = mkV "view" "viewed" "viewed" ;
-lin review_V = mkV "review" "reviewed" "reviewed" ; -- compound view_V ;
-lin preview_V = mkV "preview" "previewed" "previewed" ; -- compound view_V ;
-lin interview_V = mkV "interview" "interviewed" "interviewed" ; -- compound view_V ;
-lin skew_V = mkV "skew" "skewed" "skewed" ;
-lin clew_V = mkV "clew" "clewed" "clewed" ;
-lin slew_V = mkV "slew" "slewed" "slewed" ;
-lin mew_V = mkV "mew" "mewed" "mewed" ;
-lin renew_V = mkV "renew" "renewed" "renewed" ;
-lin spew_V = mkV "spew" "spewed" "spewed" ;
-lin brew_V = mkV "brew" "brewed" "brewed" ;
-lin crew_V = mkV "crew" "crewed" "crewed" ;
-lin screw_V = mkV "screw" "screwed" "screwed" ; -- notcompound crew_V ;
-lin unscrew_V = mkV "unscrew" "unscrewed" "unscrewed" ; -- compound crew_V ;
-lin beshrew_V = mkV "beshrew" "beshrewed" "beshrewed" ;
-lin strew_V = mkV "strew" "strewed" "strewed" ;
-lin bestrew_V = mkV "bestrew" "bestrewed" "bestrewed" ; -- compound strew_V ;
-lin sew_1_V = mkV "sew" "sewed" "sewed" ;
-lin oversew_1_V = mkV "oversew" "oversewed" "oversewed" ; -- compound sew_1_V ;
-lin stew_V = mkV "stew" "stewed" "stewed" ;
-lin miaow_V = mkV "miaow" "miaowed" "miaowed" ;
-lin bow_V = mkV "bow" "bowed" "bowed" ;
-lin elbow_V = mkV "elbow" "elbowed" "elbowed" ; -- compound bow_V ;
-lin cow_V = mkV "cow" "cowed" "cowed" ;
-lin shadow_V = mkV "shadow" "shadowed" "shadowed" ;
-lin foreshadow_V = mkV "foreshadow" "foreshadowed" "foreshadowed" ; -- compound shadow_V ;
-lin overshadow_V = mkV "overshadow" "overshadowed" "overshadowed" ; -- compound shadow_V ;
-lin endow_V = mkV "endow" "endowed" "endowed" ;
-lin chow_V = mkV "chow" "chowed" "chowed" ;
-lin show_1_V = mkV "show" "showed" "showed" ;
-lin low_V = mkV "low" "lowed" "lowed" ;
-lin blow_2_V = mkV "blow" "blowed" "blowed" ; -- notcompound low_V ;
-lin flow_V = mkV "flow" "flowed" "flowed" ; -- notcompound low_V ;
-lin overflow_V = mkV "overflow" "overflowed" "overflowed" ; -- compound low_V ;
-lin glow_V = mkV "glow" "glowed" "glowed" ; -- notcompound low_V ;
-lin allow_V = mkV "allow" "allowed" "allowed" ; -- compound low_V ;
-lin hallow_V = mkV "hallow" "hallowed" "hallowed" ; -- compound low_V ;
-lin shallow_V = mkV "shallow" "shallowed" "shallowed" ; -- compound low_V ;
-lin sallow_V = mkV "sallow" "sallowed" "sallowed" ; -- compound low_V ;
-lin disallow_V = mkV "disallow" "disallowed" "disallowed" ; -- compound low_V ;
-lin wallow_V = mkV "wallow" "wallowed" "wallowed" ; -- compound low_V ;
-lin swallow_V = mkV "swallow" "swallowed" "swallowed" ; -- compound low_V ;
-lin bellow_V = mkV "bellow" "bellowed" "bellowed" ; -- compound low_V ;
-lin mellow_V = mkV "mellow" "mellowed" "mellowed" ; -- compound low_V ;
-lin yellow_V = mkV "yellow" "yellowed" "yellowed" ; -- compound low_V ;
-lin billow_V = mkV "billow" "billowed" "billowed" ; -- compound low_V ;
-lin pillow_V = mkV "pillow" "pillowed" "pillowed" ; -- compound low_V ;
-lin follow_V = mkV "follow" "followed" "followed" ; -- compound low_V ;
-lin hollow_V = mkV "hollow" "hollowed" "hollowed" ; -- compound low_V ;
-lin plow_V = mkV "plow" "plowed" "plowed" ; -- notcompound low_V ;
-lin slow_V = mkV "slow" "slowed" "slowed" ; -- notcompound low_V ;
-lin mow_V = mkV "mow" "mowed" "mowed" ;
-lin winnow_V = mkV "winnow" "winnowed" "winnowed" ;
-lin snow_V = mkV "snow" "snowed" "snowed" ;
-lin row_V = mkV "row" "rowed" "rowed" ;
-lin crow_V = mkV "crow" "crowed" "crowed" ; -- notcompound row_V ;
-lin throw_2_V = mkV "throw" "throwed" "throwed" ; -- notcompound row_V ;
-lin farrow_V = mkV "farrow" "farrowed" "farrowed" ; -- compound row_V ;
-lin harrow_V = mkV "harrow" "harrowed" "harrowed" ; -- compound row_V ;
-lin narrow_V = mkV "narrow" "narrowed" "narrowed" ; -- compound row_V ;
-lin borrow_V = mkV "borrow" "borrowed" "borrowed" ; -- compound row_V ;
-lin sorrow_V = mkV "sorrow" "sorrowed" "sorrowed" ; -- compound row_V ;
-lin burrow_V = mkV "burrow" "burrowed" "burrowed" ; -- compound row_V ;
-lin furrow_V = mkV "furrow" "furrowed" "furrowed" ; -- compound row_V ;
-lin sow_V = mkV "sow" "sowed" "sowed" ;
-lin tow_V = mkV "tow" "towed" "towed" ;
-lin kotow_V = mkV "kotow" "kotowed" "kotowed" ; -- compound tow_V ;
-lin stow_V = mkV "stow" "stowed" "stowed" ; -- notcompound tow_V ;
-lin bestow_V = mkV "bestow" "bestowed" "bestowed" ; -- compound tow_V ;
-lin kowtow_V = mkV "kowtow" "kowtowed" "kowtowed" ; -- compound tow_V ;
-lin vow_V = mkV "vow" "vowed" "vowed" ;
-lin avow_V = mkV "avow" "avowed" "avowed" ; -- notcompound vow_V ;
-lin disavow_V = mkV "disavow" "disavowed" "disavowed" ; -- compound vow_V ;
-lin powwow_V = mkV "powwow" "powwowed" "powwowed" ;
-lin saw_2_V = mkV "saw" "sawed" "sawn" ;
-lin sew_2_V = mkV "sew" "sewed" "sewn" ;
-lin oversew_2_V = mkV "oversew" "oversewed" "oversewn" ; -- compound sew_2_V ;
-lin show_2_V = mkV "show" "showed" "shown" ;
-lin draw_2_V = mkV "draw" "drew" "drawn" ;
-lin withdraw_V = mkV "withdraw" "withdrew" "withdrawn" ; -- compound draw_2_V ;
-lin overdraw_V = mkV "overdraw" "overdrew" "overdrawn" ; -- compound draw_2_V ;
-lin blow_1_V = mkV "blow" "blew" "blown" ;
-lin know_V = mkV "know" "knew" "known" ;
-lin foreknow_V = mkV "foreknow" "foreknew" "foreknown" ; -- compound know_V ;
-lin grow_V = mkV "grow" "grew" "grown" ;
-lin outgrow_V = mkV "outgrow" "outgrew" "outgrown" ; -- compound grow_V ;
-lin throw_1_V = mkV "throw" "threw" "thrown" ;
-lin overthrow_V = mkV "overthrow" "overthrew" "overthrown" ; -- compound throw_1_V ;
-lin ax_V = mkV "ax" "axed" "axed" ;
-lin poleax_V = mkV "poleax" "poleaxed" "poleaxed" ; -- compound ax_V ;
-lin relax_V = mkV "relax" "relaxed" "relaxed" ; -- compound ax_V ;
-lin max_V = mkV "max" "maxed" "maxed" ; -- notcompound ax_V ;
-lin climax_V = mkV "climax" "climaxed" "climaxed" ; -- compound ax_V ;
-lin coax_V = mkV "coax" "coaxed" "coaxed" ; -- compound ax_V ;
-lin hoax_V = mkV "hoax" "hoaxed" "hoaxed" ; -- compound ax_V ;
-lin tax_V = mkV "tax" "taxed" "taxed" ; -- notcompound ax_V ;
-lin overtax_V = mkV "overtax" "overtaxed" "overtaxed" ; -- compound ax_V ;
-lin surtax_V = mkV "surtax" "surtaxed" "surtaxed" ; -- compound ax_V ;
-lin wax_V = mkV "wax" "waxed" "waxed" ; -- notcompound ax_V ;
-lin beeswax_V = mkV "beeswax" "beeswaxed" "beeswaxed" ; -- compound ax_V ;
-lin index_V = mkV "index" "indexed" "indexed" ;
-lin 'cross-index_V' = mkV "cross-index" "cross-indexed" "cross-indexed" ; -- compound index_V ;
-lin flex_V = mkV "flex" "flexed" "flexed" ;
-lin perplex_V = mkV "perplex" "perplexed" "perplexed" ;
-lin annex_V = mkV "annex" "annexed" "annexed" ;
-lin sex_V = mkV "sex" "sexed" "sexed" ;
-lin unsex_V = mkV "unsex" "unsexed" "unsexed" ; -- compound sex_V ;
-lin vex_V = mkV "vex" "vexed" "vexed" ;
-lin fix_V = mkV "fix" "fixed" "fixed" ;
-lin prefix_V = mkV "prefix" "prefixed" "prefixed" ; -- compound fix_V ;
-lin affix_V = mkV "affix" "affixed" "affixed" ; -- compound fix_V ;
-lin transfix_V = mkV "transfix" "transfixed" "transfixed" ; -- compound fix_V ;
-lin mix_V = mkV "mix" "mixed" "mixed" ;
-lin admix_V = mkV "admix" "admixed" "admixed" ; -- compound mix_V ;
-lin intermix_V = mkV "intermix" "intermixed" "intermixed" ; -- compound mix_V ;
-lin nix_V = mkV "nix" "nixed" "nixed" ;
-lin box_V = mkV "box" "boxed" "boxed" ;
-lin cox_V = mkV "cox" "coxed" "coxed" ;
-lin fox_V = mkV "fox" "foxed" "foxed" ;
-lin outfox_V = mkV "outfox" "outfoxed" "outfoxed" ; -- compound fox_V ;
-lin flummox_V = mkV "flummox" "flummoxed" "flummoxed" ;
-lin xerox_V = mkV "xerox" "xeroxed" "xeroxed" ;
-lin savvy_V = mkV "savvy" "IRREG" "IRREG" ;
-lin bay_V = mkV "bay" "bayed" "bayed" ;
-lin decay_V = mkV "decay" "decayed" "decayed" ;
-lin holiday_V = mkV "holiday" "holidayed" "holidayed" ;
-lin okay_V = mkV "okay" "okayed" "okayed" ;
-lin lay_2_V = mkV "lay" "layed" "layed" ;
-lin belay_V = mkV "belay" "belayed" "belayed" ; -- compound lay_2_V ;
-lin delay_V = mkV "delay" "delayed" "delayed" ; -- compound lay_2_V ;
-lin flay_V = mkV "flay" "flayed" "flayed" ; -- notcompound lay_2_V ;
-lin allay_V = mkV "allay" "allayed" "allayed" ; -- compound lay_2_V ;
-lin play_V = mkV "play" "played" "played" ; -- notcompound lay_2_V ;
-lin replay_V = mkV "replay" "replayed" "replayed" ; -- compound lay_2_V ;
-lin downplay_V = mkV "downplay" "downplayed" "downplayed" ; -- compound lay_2_V ;
-lin overplay_V = mkV "overplay" "overplayed" "overplayed" ; -- compound lay_2_V ;
-lin splay_V = mkV "splay" "splayed" "splayed" ; -- notcompound lay_2_V ;
-lin display_V = mkV "display" "displayed" "displayed" ; -- compound lay_2_V ;
-lin outplay_V = mkV "outplay" "outplayed" "outplayed" ; -- compound lay_2_V ;
-lin dismay_V = mkV "dismay" "dismayed" "dismayed" ;
-lin pay_2_V = mkV "pay" "payed" "payed" ;
-lin overpay_2_V = mkV "overpay" "overpayed" "overpayed" ; -- compound pay_2_V ;
-lin spay_V = mkV "spay" "spayed" "spayed" ; -- notcompound pay_2_V ;
-lin ray_V = mkV "ray" "rayed" "rayed" ;
-lin 'x-ray_V' = mkV "x-ray" "x-rayed" "x-rayed" ; -- compound ray_V ;
-lin bray_V = mkV "bray" "brayed" "brayed" ; -- notcompound ray_V ;
-lin fray_V = mkV "fray" "frayed" "frayed" ; -- notcompound ray_V ;
-lin defray_V = mkV "defray" "defrayed" "defrayed" ; -- compound ray_V ;
-lin gray_V = mkV "gray" "grayed" "grayed" ; -- notcompound ray_V ;
-lin foray_V = mkV "foray" "forayed" "forayed" ; -- compound ray_V ;
-lin pray_V = mkV "pray" "prayed" "prayed" ; -- notcompound ray_V ;
-lin spray_V = mkV "spray" "sprayed" "sprayed" ; -- notcompound ray_V ;
-lin array_V = mkV "array" "arrayed" "arrayed" ; -- compound ray_V ;
-lin disarray_V = mkV "disarray" "disarrayed" "disarrayed" ; -- compound ray_V ;
-lin betray_V = mkV "betray" "betrayed" "betrayed" ; -- compound ray_V ;
-lin portray_V = mkV "portray" "portrayed" "portrayed" ; -- compound ray_V ;
-lin stray_V = mkV "stray" "strayed" "strayed" ; -- notcompound ray_V ;
-lin assay_V = mkV "assay" "assayed" "assayed" ;
-lin essay_V = mkV "essay" "essayed" "essayed" ;
-lin naysay_V = mkV "naysay" "naysayed" "naysayed" ;
-lin stay_V = mkV "stay" "stayed" "stayed" ;
-lin overstay_V = mkV "overstay" "overstayed" "overstayed" ; -- compound stay_V ;
-lin outstay_V = mkV "outstay" "outstayed" "outstayed" ; -- compound stay_V ;
-lin sway_V = mkV "sway" "swayed" "swayed" ;
-lin lay_1_V = mkV "lay" "laid" "laid" ;
-lin relay_V = mkV "relay" "relaid" "relaid" ; -- compound lay_1_V ;
-lin inlay_V = mkV "inlay" "inlaid" "inlaid" ; -- compound lay_1_V ;
-lin overlay_V = mkV "overlay" "overlaid" "overlaid" ; -- compound lay_1_V ;
-lin waylay_V = mkV "waylay" "waylaid" "waylaid" ; -- compound lay_1_V ;
-lin pay_1_V = mkV "pay" "paid" "paid" ;
-lin repay_V = mkV "repay" "repaid" "repaid" ; -- compound pay_1_V ;
-lin prepay_V = mkV "prepay" "prepaid" "prepaid" ; -- compound pay_1_V ;
-lin underpay_V = mkV "underpay" "underpaid" "underpaid" ; -- compound pay_1_V ;
-lin overpay_1_V = mkV "overpay" "overpaid" "overpaid" ; -- compound pay_1_V ;
-lin say_V = mkV "say" "said" "said" ;
-lin gainsay_V = mkV "gainsay" "gainsaid" "gainsaid" ; -- compound say_V ;
-lin unsay_V = mkV "unsay" "unsaid" "unsaid" ; -- compound say_V ;
-lin baby_V = mkV "baby" "babied" "babied" ;
-lin lobby_V = mkV "lobby" "lobbied" "lobbied" ;
-lin fancy_V = mkV "fancy" "fancied" "fancied" ;
-lin ready_V = mkV "ready" "readied" "readied" ;
-lin steady_V = mkV "steady" "steadied" "steadied" ;
-lin toady_V = mkV "toady" "toadied" "toadied" ;
-lin eddy_V = mkV "eddy" "eddied" "eddied" ;
-lin muddy_V = mkV "muddy" "muddied" "muddied" ;
-lin remedy_V = mkV "remedy" "remedied" "remedied" ;
-lin tidy_V = mkV "tidy" "tidied" "tidied" ;
-lin bandy_V = mkV "bandy" "bandied" "bandied" ;
-lin candy_V = mkV "candy" "candied" "candied" ;
-lin embody_V = mkV "embody" "embodied" "embodied" ;
-lin disembody_V = mkV "disembody" "disembodied" "disembodied" ; -- compound embody_V ;
-lin parody_V = mkV "parody" "parodied" "parodied" ;
-lin study_V = mkV "study" "studied" "studied" ;
-lin understudy_V = mkV "understudy" "understudied" "understudied" ; -- compound study_V ;
-lin obey_V = mkV "obey" "obeyed" "obeyed" ;
-lin disobey_V = mkV "disobey" "disobeyed" "disobeyed" ; -- compound obey_V ;
-lin key_V = mkV "key" "keyed" "keyed" ;
-lin jockey_V = mkV "jockey" "jockeyed" "jockeyed" ; -- compound key_V ;
-lin monkey_V = mkV "monkey" "monkeyed" "monkeyed" ; -- compound key_V ;
-lin volley_V = mkV "volley" "volleyed" "volleyed" ;
-lin parley_V = mkV "parley" "parleyed" "parleyed" ;
-lin journey_V = mkV "journey" "journeyed" "journeyed" ;
-lin grey_V = mkV "grey" "greyed" "greyed" ;
-lin prey_V = mkV "prey" "preyed" "preyed" ;
-lin mosey_V = mkV "mosey" "moseyed" "moseyed" ;
-lin curtsey_V = mkV "curtsey" "curtseyed" "curtseyed" ;
-lin convey_V = mkV "convey" "conveyed" "conveyed" ;
-lin purvey_V = mkV "purvey" "purveyed" "purveyed" ;
-lin survey_V = mkV "survey" "surveyed" "surveyed" ;
-lin defy_V = mkV "defy" "defied" "defied" ;
-lin stupefy_V = mkV "stupefy" "stupefied" "stupefied" ;
-lin rarefy_V = mkV "rarefy" "rarefied" "rarefied" ;
-lin putrefy_V = mkV "putrefy" "putrefied" "putrefied" ;
-lin liquefy_V = mkV "liquefy" "liquefied" "liquefied" ;
-lin syllabify_V = mkV "syllabify" "syllabified" "syllabified" ;
-lin pacify_V = mkV "pacify" "pacified" "pacified" ;
-lin specify_V = mkV "specify" "specified" "specified" ;
-lin calcify_V = mkV "calcify" "calcified" "calcified" ;
-lin crucify_V = mkV "crucify" "crucified" "crucified" ;
-lin edify_V = mkV "edify" "edified" "edified" ;
-lin acidify_V = mkV "acidify" "acidified" "acidified" ;
-lin solidify_V = mkV "solidify" "solidified" "solidified" ;
-lin humidify_V = mkV "humidify" "humidified" "humidified" ;
-lin codify_V = mkV "codify" "codified" "codified" ;
-lin modify_V = mkV "modify" "modified" "modified" ;
-lin deify_V = mkV "deify" "deified" "deified" ;
-lin preachify_V = mkV "preachify" "preachified" "preachified" ;
-lin speechify_V = mkV "speechify" "speechified" "speechified" ;
-lin qualify_V = mkV "qualify" "qualified" "qualified" ;
-lin disqualify_V = mkV "disqualify" "disqualified" "disqualified" ; -- compound qualify_V ;
-lin uglify_V = mkV "uglify" "uglified" "uglified" ;
-lin vilify_V = mkV "vilify" "vilified" "vilified" ;
-lin mollify_V = mkV "mollify" "mollified" "mollified" ;
-lin nullify_V = mkV "nullify" "nullified" "nullified" ;
-lin amplify_V = mkV "amplify" "amplified" "amplified" ;
-lin exemplify_V = mkV "exemplify" "exemplified" "exemplified" ;
-lin simplify_V = mkV "simplify" "simplified" "simplified" ;
-lin oversimplify_V = mkV "oversimplify" "oversimplified" "oversimplified" ; -- compound simplify_V ;
-lin ramify_V = mkV "ramify" "ramified" "ramified" ;
-lin mummify_V = mkV "mummify" "mummified" "mummified" ;
-lin magnify_V = mkV "magnify" "magnified" "magnified" ;
-lin dignify_V = mkV "dignify" "dignified" "dignified" ;
-lin signify_V = mkV "signify" "signified" "signified" ;
-lin indemnify_V = mkV "indemnify" "indemnified" "indemnified" ;
-lin personify_V = mkV "personify" "personified" "personified" ;
-lin unify_V = mkV "unify" "unified" "unified" ;
-lin stupify_V = mkV "stupify" "stupified" "stupified" ;
-lin typify_V = mkV "typify" "typified" "typified" ;
-lin scarify_V = mkV "scarify" "scarified" "scarified" ;
-lin clarify_V = mkV "clarify" "clarified" "clarified" ;
-lin verify_V = mkV "verify" "verified" "verified" ;
-lin transmogrify_V = mkV "transmogrify" "transmogrified" "transmogrified" ;
-lin glorify_V = mkV "glorify" "glorified" "glorified" ;
-lin terrify_V = mkV "terrify" "terrified" "terrified" ;
-lin horrify_V = mkV "horrify" "horrified" "horrified" ;
-lin electrify_V = mkV "electrify" "electrified" "electrified" ;
-lin petrify_V = mkV "petrify" "petrified" "petrified" ;
-lin vitrify_V = mkV "vitrify" "vitrified" "vitrified" ;
-lin purify_V = mkV "purify" "purified" "purified" ;
-lin gasify_V = mkV "gasify" "gasified" "gasified" ;
-lin falsify_V = mkV "falsify" "falsified" "falsified" ;
-lin emulsify_V = mkV "emulsify" "emulsified" "emulsified" ;
-lin intensify_V = mkV "intensify" "intensified" "intensified" ;
-lin versify_V = mkV "versify" "versified" "versified" ;
-lin diversify_V = mkV "diversify" "diversified" "diversified" ; -- compound versify_V ;
-lin classify_V = mkV "classify" "classified" "classified" ;
-lin declassify_V = mkV "declassify" "declassified" "declassified" ; -- compound classify_V ;
-lin reclassify_V = mkV "reclassify" "reclassified" "reclassified" ; -- compound classify_V ;
-lin ossify_V = mkV "ossify" "ossified" "ossified" ;
-lin beatify_V = mkV "beatify" "beatified" "beatified" ;
-lin ratify_V = mkV "ratify" "ratified" "ratified" ;
-lin gratify_V = mkV "gratify" "gratified" "gratified" ; -- notcompound ratify_V ;
-lin stratify_V = mkV "stratify" "stratified" "stratified" ; -- notcompound ratify_V ;
-lin rectify_V = mkV "rectify" "rectified" "rectified" ;
-lin sanctify_V = mkV "sanctify" "sanctified" "sanctified" ;
-lin fructify_V = mkV "fructify" "fructified" "fructified" ;
-lin stultify_V = mkV "stultify" "stultified" "stultified" ;
-lin quantify_V = mkV "quantify" "quantified" "quantified" ;
-lin identify_V = mkV "identify" "identified" "identified" ;
-lin notify_V = mkV "notify" "notified" "notified" ;
-lin certify_V = mkV "certify" "certified" "certified" ;
-lin fortify_V = mkV "fortify" "fortified" "fortified" ;
-lin mortify_V = mkV "mortify" "mortified" "mortified" ;
-lin testify_V = mkV "testify" "testified" "testified" ;
-lin justify_V = mkV "justify" "justified" "justified" ;
-lin mystify_V = mkV "mystify" "mystified" "mystified" ;
-lin prettify_V = mkV "prettify" "prettified" "prettified" ;
-lin beautify_V = mkV "beautify" "beautified" "beautified" ;
-lin revivify_V = mkV "revivify" "revivified" "revivified" ;
-lin satisfy_V = mkV "satisfy" "satisfied" "satisfied" ;
-lin dissatisfy_V = mkV "dissatisfy" "dissatisfied" "dissatisfied" ; -- compound satisfy_V ;
-lin moggy_V = mkV "moggy" "moggied" "moggied" ;
-lin atrophy_V = mkV "atrophy" "atrophied" "atrophied" ;
-lin shy_V = mkV "shy" "shied" "shied" ;
-lin sky_V = mkV "sky" "skied" "skied" ;
-lin rely_V = mkV "rely" "relied" "relied" ;
-lin fly_2_V = mkV "fly" "flied" "flied" ;
-lin outfly_V = mkV "outfly" "outflied" "outflied" ; -- compound fly_2_V ;
-lin ally_V = mkV "ally" "allied" "allied" ;
-lin dally_V = mkV "dally" "dallied" "dallied" ; -- notcompound ally_V ;
-lin 'dilly-dally_V' = mkV "dilly-dally" "dilly-dallied" "dilly-dallied" ; -- compound ally_V ;
-lin shillyshally_V = mkV "shillyshally" "shillyshallied" "shillyshallied" ; -- compound ally_V ;
-lin rally_V = mkV "rally" "rallied" "rallied" ; -- notcompound ally_V ;
-lin sally_V = mkV "sally" "sallied" "sallied" ; -- notcompound ally_V ;
-lin tally_V = mkV "tally" "tallied" "tallied" ; -- notcompound ally_V ;
-lin belly_V = mkV "belly" "bellied" "bellied" ;
-lin jelly_V = mkV "jelly" "jellied" "jellied" ;
-lin jolly_V = mkV "jolly" "jollied" "jollied" ;
-lin bully_V = mkV "bully" "bullied" "bullied" ;
-lin sully_V = mkV "sully" "sullied" "sullied" ;
-lin ply_V = mkV "ply" "plied" "plied" ;
-lin reply_V = mkV "reply" "replied" "replied" ; -- compound ply_V ;
-lin multiply_V = mkV "multiply" "multiplied" "multiplied" ; -- compound ply_V ;
-lin imply_V = mkV "imply" "implied" "implied" ; -- compound ply_V ;
-lin comply_V = mkV "comply" "complied" "complied" ; -- compound ply_V ;
-lin apply_V = mkV "apply" "applied" "applied" ; -- compound ply_V ;
-lin misapply_V = mkV "misapply" "misapplied" "misapplied" ; -- compound ply_V ;
-lin supply_V = mkV "supply" "supplied" "supplied" ; -- compound ply_V ;
-lin 're-supply_V' = mkV "re-supply" "re-supplied" "re-supplied" ; -- compound ply_V ;
-lin stymy_V = mkV "stymy" "stymied" "stymied" ;
+lin abutment_N = mkN "abutment" "abutments" ;
+lin abutter_N = mkN "abutter" "abutters" ;
+lin abuzz_A = mkAMost "abuzz" "abuzzly" ;
+lin abvolt_N = mkN "abvolt" "abvolts" ;
+lin abwatt_N = mkN "abwatt" "abwatts" ;
+lin abysm_N = mkN "abysm" "abysms" ;
+lin abysmal_A = mkAMost "abysmal" "abysmally" ;
+lin abyss_N = mkN "abyss" "abysses" ;
+lin abyssal_A = mkAMost "abyssal" "abyssally" ;
+lin acacia_N = mkN "acacia" "acacias" ;
+lin academia_N = mkN "academia" "academias" ;
+lin academic_A = mkAMost "academic" "academicly" ;
+lin academic_N = mkN "academic" "academics" ;
+lin academically_Adv = mkAdv "academically" ;
+lin academician_N = mkN "academician" "academicians" ;
+lin academicianship_N = mkN "academicianship" "academicianships" ;
+lin academy_N = mkN "academy" "academies" ;
+lin acanthion_N = mkN "acanthion" "acanthions" ;
+lin acanthocephalan_N = mkN "acanthocephalan" "acanthocephalans" ;
+lin acanthocyte_N = mkN "acanthocyte" "acanthocytes" ;
+lin acanthocytosis_N = mkN "acanthocytosis" "acanthocytosises" ;
+lin acanthoid_A = mkAMost "acanthoid" "acanthoidly" ;
+lin acantholysis_N = mkN "acantholysis" "acantholysises" ;
+lin acanthoma_N = mkN "acanthoma" "acanthomas" ;
+lin acanthosis_N = mkN "acanthosis" "acanthosises" ;
+lin acanthotic_A = mkAMost "acanthotic" "acanthoticly" ;
+lin acanthus_N = mkN "acanthus" "acanthuses" ;
+lin acapnic_A = mkAMost "acapnic" "acapnicly" ;
+lin acardia_N = mkN "acardia" "acardias" ;
+lin acariasis_N = mkN "acariasis" "acariasises" ;
+lin acaricide_N = mkN "acaricide" "acaricides" ;
+lin acarid_N = mkN "acarid" "acarids" ;
+lin acarine_N = mkN "acarine" "acarines" ;
+lin acarophobia_N = mkN "acarophobia" "acarophobias" ;
+lin acarpelous_A = mkAMost "acarpelous" "acarpelously" ;
+lin acarpous_A = mkAMost "acarpous" "acarpously" ;
+lin acarus_N = mkN "acarus" "acaruses" ;
+lin acatalectic_A = mkAMost "acatalectic" "acatalecticly" ;
+lin acatalectic_N = mkN "acatalectic" "acatalectics" ;
+lin acataphasia_N = mkN "acataphasia" "acataphasias" ;
+lin acathexia_N = mkN "acathexia" "acathexias" ;
+lin acathexis_N = mkN "acathexis" "acathexises" ;
+lin acaudate_A = mkAMost "acaudate" "acaudately" ;
+lin acaulescent_A = mkAMost "acaulescent" "acaulescently" ;
+lin accede_V = mkV "accede" "acceded" "acceded" ;
+lin accelerando_A = mkAMost "accelerando" "accelerandoly" ;
+lin accelerando_Adv = mkAdv "accelerando" ;
+lin accelerando_N = mkN "accelerando" "accelerandos" ;
+lin accelerate_V = mkV "accelerate" "accelerated" "accelerated" ;
+lin acceleration_N = mkN "acceleration" "accelerations" ;
+lin accelerative_A = mkAMost "accelerative" "acceleratively" ;
+lin accelerator_N = mkN "accelerator" "accelerators" ;
+lin accelerometer_N = mkN "accelerometer" "accelerometers" ;
+lin accent_N = mkN "accent" "accents" ;
+lin accent_V = mkV "accent" "accented" "accented" ;
+lin accentor_N = mkN "accentor" "accentors" ;
+lin accentual_A = mkAMost "accentual" "accentually" ;
+lin accentuate_V = mkV "accentuate" "accentuated" "accentuated" ;
+lin accentuation_N = mkN "accentuation" "accentuations" ;
+lin accept_V = mkV "accept" "accepted" "accepted" ;
+lin acceptability_N = mkN "acceptability" "acceptabilities" ;
+lin acceptable_A = mkAMost "acceptable" "acceptably" ;
+lin acceptance_N = mkN "acceptance" "acceptances" ;
+lin acceptation_N = mkN "acceptation" "acceptations" ;
+lin acceptive_A = mkAMost "acceptive" "acceptively" ;
+lin acceptor_N = mkN "acceptor" "acceptors" ;
+lin access_N = mkN "access" "accesses" ;
+lin access_V = mkV "access" "accessed" "accessed" ;
+lin accessary_A = mkAMost "accessary" "accessarily" ;
+lin accessary_N = mkN "accessary" "accessaries" ;
+lin accessibility_N = mkN "accessibility" "accessibilities" ;
+lin accessible_A = mkAMost "accessible" "accessibly" ;
+lin accession_N = mkN "accession" "accessions" ;
+lin accessional_A = mkAMost "accessional" "accessionally" ;
+lin accessorial_A = mkAMost "accessorial" "accessorially" ;
+lin accessory_A = mkAMost "accessory" "accessorily" ;
+lin accessory_N = mkN "accessory" "accessories" ;
+lin accidence_N = mkN "accidence" "accidences" ;
+lin accident_N = mkN "accident" "accidents" ;
+lin accident_prone_A = mkAMost "accident-prone" "accident-pronely" ;
+lin accidental_A = mkAMost "accidental" "accidentally" ;
+lin accidental_N = mkN "accidental" "accidentals" ;
+lin accipitrine_A = mkAMost "accipitrine" "accipitrinely" ;
+lin acclaim_N = mkN "acclaim" "acclaims" ;
+lin acclaim_V = mkV "acclaim" "acclaimed" "acclaimed" ;
+lin acclamation_N = mkN "acclamation" "acclamations" ;
+lin acclimate_V = mkV "acclimate" "acclimated" "acclimated" ;
+lin acclimation_N = mkN "acclimation" "acclimations" ;
+lin acclimatization_N = mkN "acclimatization" "acclimatizations" ;
+lin acclimatize_V = mkV "acclimatize" "acclimatized" "acclimatized" ;
+lin acclivitous_A = mkAMost "acclivitous" "acclivitously" ;
+lin acclivity_N = mkN "acclivity" "acclivities" ;
+lin accolade_N = mkN "accolade" "accolades" ;
+lin accommodate_V = mkV "accommodate" "accommodated" "accommodated" ;
+lin accommodation_N = mkN "accommodation" "accommodations" ;
+lin accommodational_A = mkAMost "accommodational" "accommodationally" ;
+lin accommodative_A = mkAMost "accommodative" "accommodatively" ;
+lin accompaniment_N = mkN "accompaniment" "accompaniments" ;
+lin accompanist_N = mkN "accompanist" "accompanists" ;
lin accompany_V = mkV "accompany" "accompanied" "accompanied" ;
-lin deny_V = mkV "deny" "denied" "denied" ;
-lin mutiny_V = mkV "mutiny" "mutinied" "mutinied" ;
-lin whinny_V = mkV "whinny" "whinnied" "whinnied" ;
-lin pony_V = mkV "pony" "ponied" "ponied" ;
-lin decoy_V = mkV "decoy" "decoyed" "decoyed" ;
-lin joy_V = mkV "joy" "joyed" "joyed" ;
-lin enjoy_V = mkV "enjoy" "enjoyed" "enjoyed" ; -- compound joy_V ;
-lin cloy_V = mkV "cloy" "cloyed" "cloyed" ;
+lin accomplice_N = mkN "accomplice" "accomplices" ;
+lin accomplish_V = mkV "accomplish" "accomplished" "accomplished" ;
+lin accomplishable_A = mkAMost "accomplishable" "accomplishably" ;
+lin accomplishment_N = mkN "accomplishment" "accomplishments" ;
+lin accord_N = mkN "accord" "accords" ;
+lin accord_V = mkV "accord" "accorded" "accorded" ;
+lin accordance_N = mkN "accordance" "accordances" ;
+lin accordant_A = mkAMost "accordant" "accordantly" ;
+lin according_to_Prep = mkPrep "according to" ;
+lin accordingly_Adv = mkAdv "accordingly" ;
+lin accordion_N = mkN "accordion" "accordions" ;
+lin accordionist_N = mkN "accordionist" "accordionists" ;
+lin accost_V = mkV "accost" "accosted" "accosted" ;
+lin accouchement_N = mkN "accouchement" "accouchements" ;
+lin account_N = mkN "account" "accounts" ;
+lin account_V = mkV "account" "accounted" "accounted" ;
+lin accountability_N = mkN "accountability" "accountabilities" ;
+lin accountable_A = mkAMost "accountable" "accountably" ;
+lin accountancy_N = mkN "accountancy" "accountancies" ;
+lin accountant_N = mkN "accountant" "accountants" ;
+lin accountantship_N = mkN "accountantship" "accountantships" ;
+lin accounting_N = mkN "accounting" "accountings" ;
+lin accoutered_A = mkAMost "accoutered" "accouteredly" ;
+lin accredit_V = mkV "accredit" "accredited" "accredited" ;
+lin accreditation_N = mkN "accreditation" "accreditations" ;
+lin accretion_N = mkN "accretion" "accretions" ;
+lin accretionary_A = mkAMost "accretionary" "accretionarily" ;
+lin accretive_A = mkAMost "accretive" "accretively" ;
+lin accrue_V = mkV "accrue" "accrued" "accrued" ;
+lin acculturation_N = mkN "acculturation" "acculturations" ;
+lin acculturational_A = mkAMost "acculturational" "acculturationally" ;
+lin accumbent_A = mkAMost "accumbent" "accumbently" ;
+lin accumulate_V = mkV "accumulate" "accumulated" "accumulated" ;
+lin accumulation_N = mkN "accumulation" "accumulations" ;
+lin accumulative_A = mkAMost "accumulative" "accumulatively" ;
+lin accumulator_N = mkN "accumulator" "accumulators" ;
+lin accuracy_N = mkN "accuracy" "accuracies" ;
+lin accurate_A = mkAMost "accurate" "accurately" ;
+lin accursed_A = mkAMost "accursed" "accursedly" ;
+lin accurst_A = mkAMost "accurst" "accurstly" ;
+lin accusation_N = mkN "accusation" "accusations" ;
+lin accusative_A = mkAMost "accusative" "accusatively" ;
+lin accusative_N = mkN "accusative" "accusatives" ;
+lin accusatorial_A = mkAMost "accusatorial" "accusatorially" ;
+lin accuse_V = mkV "accuse" "accused" "accused" ;
+lin accused_N = mkN "accused" "accuseds" ;
+lin accuser_N = mkN "accuser" "accusers" ;
+lin accusingly_Adv = mkAdv "accusingly" ;
+lin accustom_V = mkV "accustom" "accustomed" "accustomed" ;
+lin ace_A = mkA "ace" "acer" "acest" "acely" ;
+lin ace_N = mkN "ace" "aces" ;
+lin acebutolol_N = mkN "acebutolol" "acebutolols" ;
+lin acentric_A = mkAMost "acentric" "acentricly" ;
+lin acephalia_N = mkN "acephalia" "acephalias" ;
+lin acephalous_A = mkAMost "acephalous" "acephalously" ;
+lin acerate_A = mkAMost "acerate" "acerately" ;
+lin acerb_A = mkAMost "acerb" "acerbly" ;
+lin acerbity_N = mkN "acerbity" "acerbities" ;
+lin acerola_N = mkN "acerola" "acerolas" ;
+lin acervate_A = mkAMost "acervate" "acervately" ;
+lin acervulus_N = mkN "acervulus" "acervuluses" ;
+lin acetabular_A = mkAMost "acetabular" "acetabularly" ;
+lin acetabulum_N = mkN "acetabulum" "acetabulums" ;
+lin acetal_N = mkN "acetal" "acetals" ;
+lin acetaldehyde_N = mkN "acetaldehyde" "acetaldehydes" ;
+lin acetaldol_N = mkN "acetaldol" "acetaldols" ;
+lin acetamide_N = mkN "acetamide" "acetamides" ;
+lin acetaminophen_N = mkN "acetaminophen" "acetaminophens" ;
+lin acetanilide_N = mkN "acetanilide" "acetanilides" ;
+lin acetate_N = mkN "acetate" "acetates" ;
+lin acetic_A = mkAMost "acetic" "aceticly" ;
+lin acetin_N = mkN "acetin" "acetins" ;
+lin acetone_N = mkN "acetone" "acetones" ;
+lin acetonic_A = mkAMost "acetonic" "acetonicly" ;
+lin acetophenetidin_N = mkN "acetophenetidin" "acetophenetidins" ;
+lin acetose_A = mkAMost "acetose" "acetosely" ;
+lin acetum_N = mkN "acetum" "acetums" ;
+lin acetyl_N = mkN "acetyl" "acetyls" ;
+lin acetylation_N = mkN "acetylation" "acetylations" ;
+lin acetylcholine_N = mkN "acetylcholine" "acetylcholines" ;
+lin acetylene_N = mkN "acetylene" "acetylenes" ;
+lin acetylenic_A = mkAMost "acetylenic" "acetylenicly" ;
+lin acetylic_A = mkAMost "acetylic" "acetylicly" ;
+lin ache_N = mkN "ache" "aches" ;
+lin ache_V = mkV "ache" "ached" "ached" ;
+lin achene_N = mkN "achene" "achenes" ;
+lin achenial_A = mkAMost "achenial" "achenially" ;
+lin achievability_N = mkN "achievability" "achievabilities" ;
+lin achievable_A = mkAMost "achievable" "achievably" ;
+lin achieve_V = mkV "achieve" "achieved" "achieved" ;
+lin achievement_N = mkN "achievement" "achievements" ;
+lin achiever_N = mkN "achiever" "achievers" ;
+lin achillea_N = mkN "achillea" "achilleas" ;
+lin achimenes_N = mkN "achimenes" "achimeneses" ;
+lin achira_N = mkN "achira" "achiras" ;
+lin achlamydeous_A = mkAMost "achlamydeous" "achlamydeously" ;
+lin achlorhydria_N = mkN "achlorhydria" "achlorhydrias" ;
+lin achlorhydric_A = mkAMost "achlorhydric" "achlorhydricly" ;
+lin acholia_N = mkN "acholia" "acholias" ;
+lin achondrite_N = mkN "achondrite" "achondrites" ;
+lin achondritic_A = mkAMost "achondritic" "achondriticly" ;
+lin achondroplasia_N = mkN "achondroplasia" "achondroplasias" ;
+lin achondroplastic_A = mkAMost "achondroplastic" "achondroplasticly" ;
+lin achromatic_A = mkAMost "achromatic" "achromaticly" ;
+lin achromatin_N = mkN "achromatin" "achromatins" ;
+lin achromatinic_A = mkAMost "achromatinic" "achromatinicly" ;
+lin achromatous_A = mkAMost "achromatous" "achromatously" ;
+lin achromia_N = mkN "achromia" "achromias" ;
+lin achromic_A = mkAMost "achromic" "achromicly" ;
+lin achylia_N = mkN "achylia" "achylias" ;
+lin acicula_N = mkN "acicula" "aciculas" ;
+lin aciculate_A = mkAMost "aciculate" "aciculately" ;
+lin acid_A = mkAMost "acid" "acidly" ;
+lin acid_N = mkN "acid" "acids" ;
+lin acidemia_N = mkN "acidemia" "acidemias" ;
+lin acidic_A = mkAMost "acidic" "acidicly" ;
+lin acidification_N = mkN "acidification" "acidifications" ;
+lin acidify_V = mkV "acidify" "acidified" "acidified" ;
+lin acidimetric_A = mkAMost "acidimetric" "acidimetricly" ;
+lin acidimetry_N = mkN "acidimetry" "acidimetries" ;
+lin acidity_N = mkN "acidity" "acidities" ;
+lin acidophil_N = mkN "acidophil" "acidophils" ;
+lin acidophilic_A = mkAMost "acidophilic" "acidophilicly" ;
+lin acidophilus_N = mkN "acidophilus" "acidophiluses" ;
+lin acidosis_N = mkN "acidosis" "acidosises" ;
+lin acidotic_A = mkAMost "acidotic" "acidoticly" ;
+lin acidulated_A = mkAMost "acidulated" "acidulatedly" ;
+lin acidulous_A = mkAMost "acidulous" "acidulously" ;
+lin acinar_A = mkAMost "acinar" "acinarly" ;
+lin acinus_N = mkN "acinus" "acinuses" ;
+lin ack_ack_N = mkN "ack-ack" "ack-acks" ;
+lin ackee_N = mkN "ackee" "ackees" ;
+lin acknowledge_V = mkV "acknowledge" "acknowledged" "acknowledged" ;
+lin acknowledgeable_A = mkAMost "acknowledgeable" "acknowledgeably" ;
+lin acknowledgement_N = mkN "acknowledgement" "acknowledgements" ;
+lin acknowledgment_N = mkN "acknowledgment" "acknowledgments" ;
+lin acme_N = mkN "acme" "IRREG" ;
+lin acne_N = mkN "acne" "acnes" ;
+lin acned_A = mkAMost "acned" "acnedly" ;
+lin acneiform_A = mkAMost "acneiform" "acneiformly" ;
+lin acold_A = mkAMost "acold" "acoldly" ;
+lin acolyte_N = mkN "acolyte" "acolytes" ;
+lin aconite_N = mkN "aconite" "aconites" ;
+lin acorea_N = mkN "acorea" "acoreas" ;
+lin acorn_N = mkN "acorn" "acorns" ;
+lin acorn_cup_N = mkN "acorn-cup" "acorn-cups" ;
+lin acoustic_A = mkAMost "acoustic" "acousticly" ;
+lin acoustic_N = mkN "acoustic" "acoustics" ;
+lin acoustically_Adv = mkAdv "acoustically" ;
+lin acoustician_N = mkN "acoustician" "acousticians" ;
+lin acoustics_N = mkN "acoustics" "acoustics" ;
+lin acquaint_V = mkV "acquaint" "acquainted" "acquainted" ;
+lin acquaintance_N = mkN "acquaintance" "acquaintances" ;
+lin acquaintanceship_N = mkN "acquaintanceship" "acquaintanceships" ;
+lin acquiesce_V = mkV "acquiesce" "acquiesced" "acquiesced" ;
+lin acquiescence_N = mkN "acquiescence" "acquiescences" ;
+lin acquiescent_A = mkAMost "acquiescent" "acquiescently" ;
+lin acquirable_A = mkAMost "acquirable" "acquirably" ;
+lin acquire_V = mkV "acquire" "acquired" "acquired" ;
+lin acquirement_N = mkN "acquirement" "acquirements" ;
+lin acquirer_N = mkN "acquirer" "acquirers" ;
+lin acquiring_N = mkN "acquiring" "acquirings" ;
+lin acquisition_N = mkN "acquisition" "acquisitions" ;
+lin acquisitive_A = mkAMost "acquisitive" "acquisitively" ;
+lin acquisitiveness_N = mkN "acquisitiveness" "acquisitivenesses" ;
+lin acquit_V = mkV "acquit" "acquitted" "acquitted" ;
+lin acquittal_N = mkN "acquittal" "acquittals" ;
+lin acquittance_N = mkN "acquittance" "acquittances" ;
+lin acre_N = mkN "acre" "acres" ;
+lin acreage_N = mkN "acreage" "acreages" ;
+lin acrid_A = mkAMost "acrid" "acridly" ;
+lin acridity_N = mkN "acridity" "acridities" ;
+lin acrimonious_A = mkAMost "acrimonious" "acrimoniously" ;
+lin acrimony_N = mkN "acrimony" "acrimonies" ;
+lin acritical_A = mkAMost "acritical" "acritically" ;
+lin acroanesthesia_N = mkN "acroanesthesia" "acroanesthesias" ;
+lin acrobat_N = mkN "acrobat" "acrobats" ;
+lin acrobatic_A = mkAMost "acrobatic" "acrobaticly" ;
+lin acrobatics_N = mkN "acrobatics" "acrobatics" ;
+lin acrocarp_N = mkN "acrocarp" "acrocarps" ;
+lin acrocarpous_A = mkAMost "acrocarpous" "acrocarpously" ;
+lin acrocentric_A = mkAMost "acrocentric" "acrocentricly" ;
+lin acrocyanosis_N = mkN "acrocyanosis" "acrocyanosises" ;
+lin acrodont_N = mkN "acrodont" "acrodonts" ;
+lin acrogen_N = mkN "acrogen" "acrogens" ;
+lin acrogenic_A = mkAMost "acrogenic" "acrogenicly" ;
+lin acromegalic_A = mkAMost "acromegalic" "acromegalicly" ;
+lin acromegaly_N = mkN "acromegaly" "acromegalies" ;
+lin acromicria_N = mkN "acromicria" "acromicrias" ;
+lin acromion_N = mkN "acromion" "acromions" ;
+lin acromphalus_N = mkN "acromphalus" "acromphaluses" ;
+lin acromyotonia_N = mkN "acromyotonia" "acromyotonias" ;
+lin acronym_N = mkN "acronym" "acronyms" ;
+lin acronymic_A = mkAMost "acronymic" "acronymicly" ;
+lin acropetal_A = mkAMost "acropetal" "acropetally" ;
+lin acrophobia_N = mkN "acrophobia" "acrophobias" ;
+lin acrophobic_A = mkAMost "acrophobic" "acrophobicly" ;
+lin acrophony_N = mkN "acrophony" "acrophonies" ;
+lin acropolis_N = mkN "acropolis" "acropolises" ;
+lin acroscopic_A = mkAMost "acroscopic" "acroscopicly" ;
+lin acrosome_N = mkN "acrosome" "acrosomes" ;
+lin across_Adv = mkAdv "across" ;
+lin across_Prep = mkPrep "across" ;
+lin acrostic_N = mkN "acrostic" "acrostics" ;
+lin acrylamide_N = mkN "acrylamide" "acrylamides" ;
+lin acrylic_N = mkN "acrylic" "acrylics" ;
+lin act_N = mkN "act" "acts" ;
+lin act_V = mkV "act" "acted" "acted" ;
+lin actable_A = mkAMost "actable" "actably" ;
+lin actin_N = mkN "actin" "actins" ;
+lin actinal_A = mkAMost "actinal" "actinally" ;
+lin acting_N = mkN "acting" "actings" ;
+lin actinia_N = mkN "actinia" "actinias" ;
+lin actinic_A = mkAMost "actinic" "actinicly" ;
+lin actinism_N = mkN "actinism" "actinisms" ;
+lin actinium_N = mkN "actinium" "actiniums" ;
+lin actinoid_A = mkAMost "actinoid" "actinoidly" ;
+lin actinoid_N = mkN "actinoid" "actinoids" ;
+lin actinolite_N = mkN "actinolite" "actinolites" ;
+lin actinometer_N = mkN "actinometer" "actinometers" ;
+lin actinometric_A = mkAMost "actinometric" "actinometricly" ;
+lin actinometry_N = mkN "actinometry" "actinometries" ;
+lin actinomorphic_A = mkAMost "actinomorphic" "actinomorphicly" ;
+lin actinomyces_N = mkN "actinomyces" "actinomyceses" ;
+lin actinomycetal_A = mkAMost "actinomycetal" "actinomycetally" ;
+lin actinomycete_N = mkN "actinomycete" "actinomycetes" ;
+lin actinomycin_N = mkN "actinomycin" "actinomycins" ;
+lin actinomycosis_N = mkN "actinomycosis" "actinomycosises" ;
+lin actinomycotic_A = mkAMost "actinomycotic" "actinomycoticly" ;
+lin actinomyxidian_N = mkN "actinomyxidian" "actinomyxidians" ;
+lin actinopod_N = mkN "actinopod" "actinopods" ;
+lin action_N = mkN "action" "actions" ;
+lin actionable_A = mkAMost "actionable" "actionably" ;
+lin activate_V = mkV "activate" "activated" "activated" ;
+lin activation_N = mkN "activation" "activations" ;
+lin activator_N = mkN "activator" "activators" ;
+lin active_A = mkAMost "active" "actively" ;
+lin active_N = mkN "active" "actives" ;
+lin activeness_N = mkN "activeness" "activenesses" ;
+lin activism_N = mkN "activism" "activisms" ;
+lin activist_A = mkAMost "activist" "activistly" ;
+lin activist_N = mkN "activist" "activists" ;
+lin activity_N = mkN "activity" "activities" ;
+lin actomyosin_N = mkN "actomyosin" "actomyosins" ;
+lin actor_N = mkN "actor" "actors" ;
+lin actress_N = mkN "actress" "actresses" ;
+lin actual_A = mkAMost "actual" "actually" ;
+lin actuality_N = mkN "actuality" "actualities" ;
+lin actuarial_A = mkAMost "actuarial" "actuarially" ;
+lin actuary_N = mkN "actuary" "actuaries" ;
+lin actuate_V = mkV "actuate" "actuated" "actuated" ;
+lin actuator_N = mkN "actuator" "actuators" ;
+lin acuate_A = mkAMost "acuate" "acuately" ;
+lin acuity_N = mkN "acuity" "acuities" ;
+lin aculea_N = mkN "aculea" "aculeas" ;
+lin aculeate_A = mkAMost "aculeate" "aculeately" ;
+lin aculeus_N = mkN "aculeus" "aculeuses" ;
+lin acumen_N = mkN "acumen" "acumens" ;
+lin acuminate_A = mkAMost "acuminate" "acuminately" ;
+lin acupressure_N = mkN "acupressure" "acupressures" ;
+lin acupuncture_N = mkN "acupuncture" "acupunctures" ;
+lin acute_A = mkAMost "acute" "acutely" ;
+lin acuteness_N = mkN "acuteness" "acutenesses" ;
+lin acyclic_A = mkAMost "acyclic" "acyclicly" ;
+lin acyclovir_N = mkN "acyclovir" "acyclovirs" ;
+lin acyl_N = mkN "acyl" "acyls" ;
+lin acylation_N = mkN "acylation" "acylations" ;
+lin ad_N = mkN "ad" "ads" ;
+lin ad_hoc_A = mkAMost "ad hoc" "ad hocly" ;
+lin ad_hoc_Adv = mkAdv "ad hoc" ;
+lin ad_infinitum_Adv = mkAdv "ad infinitum" ;
+lin ad_interim_Adv = mkAdv "ad interim" ;
+lin ad_lib_A = mkAMost "ad-lib" "ad-libly" ;
+lin ad_lib_Adv = mkAdv "ad lib" ;
+lin ad_lib_V = mkV "ad-lib" "ad-libbed" "ad-libbed" ;
+lin ad_libitum_Adv = mkAdv "ad libitum" ;
+lin ad_man_N = mkN "ad-man" "ad-men" ;
+lin ad_nauseam_Adv = mkAdv "ad nauseam" ;
+lin ad_valorem_Adv = mkAdv "ad valorem" ;
+lin adactylia_N = mkN "adactylia" "adactylias" ;
+lin adactylous_A = mkAMost "adactylous" "adactylously" ;
+lin adage_N = mkN "adage" "adages" ;
+lin adagio_A = mkAMost "adagio" "adagioly" ;
+lin adagio_Adv = mkAdv "adagio" ;
+lin adagio_N = mkN "adagio" "adagios" ;
+lin adamance_N = mkN "adamance" "adamances" ;
+lin adamant_A = mkAMost "adamant" "adamantly" ;
+lin adamant_N = mkN "adamant" "adamants" ;
+lin adamantine_A = mkAMost "adamantine" "adamantinely" ;
+lin adapt_V = mkV "adapt" "adapted" "adapted" ;
+lin adaptability_N = mkN "adaptability" "adaptabilities" ;
+lin adaptable_A = mkAMost "adaptable" "adaptably" ;
+lin adaptation_N = mkN "adaptation" "adaptations" ;
+lin adaptational_A = mkAMost "adaptational" "adaptationally" ;
+lin adapter_N = mkN "adapter" "adapters" ;
+lin adaptive_A = mkAMost "adaptive" "adaptively" ;
+lin adaptor_N = mkN "adaptor" "adaptors" ;
+lin adaxial_A = mkAMost "adaxial" "adaxially" ;
+lin add_V = mkV "add" "added" "added" ;
+lin addable_A = mkAMost "addable" "addably" ;
+lin addax_N = mkN "addax" "addaxes" ;
+lin addend_N = mkN "addend" "addends" ;
+lin addendum_N = mkN "addendum" "addenda" ;
+lin adder_N = mkN "adder" "adders" ;
+lin addict_N = mkN "addict" "addicts" ;
+lin addict_V = mkV "addict" "addicted" "addicted" ;
+lin addiction_N = mkN "addiction" "addictions" ;
+lin addictive_A = mkAMost "addictive" "addictively" ;
+lin adding_machine_N = mkN "adding-machine" "adding-machines" ;
+lin addition_N = mkN "addition" "additions" ;
+lin additional_A = mkAMost "additional" "additionally" ;
+lin additive_A = mkAMost "additive" "additively" ;
+lin additive_N = mkN "additive" "additives" ;
+lin addle_A = mkAMost "addle" "addlely" ;
+lin addle_V = mkV "addle" "addled" "addled" ;
+lin addle_brained_A = mkAMost "addle-brained" "addle-brainedly" ;
+lin addle_head_N = mkN "addle-head" "addle-heads" ;
+lin addle_pated_A = mkAMost "addle-pated" "addle-patedly" ;
+lin addlebrained_A = mkAMost "addlebrained" "addlebrainedly" ;
+lin address_N = mkN "address" "addresses" ;
+lin address_V = mkV "address" "addressed" "addressed" ;
+lin addressable_A = mkAMost "addressable" "addressably" ;
+lin addressee_N = mkN "addressee" "addressees" ;
+lin addressograph_N = mkN "addressograph" "addressographs" ;
+lin adduce_V = mkV "adduce" "adduced" "adduced" ;
+lin adducent_A = mkAMost "adducent" "adducently" ;
+lin adducer_N = mkN "adducer" "adducers" ;
+lin adducing_N = mkN "adducing" "adducings" ;
+lin adduct_N = mkN "adduct" "adducts" ;
+lin adduction_N = mkN "adduction" "adductions" ;
+lin adductor_N = mkN "adductor" "adductors" ;
+lin adelgid_N = mkN "adelgid" "adelgids" ;
+lin adenine_N = mkN "adenine" "adenines" ;
+lin adenitis_N = mkN "adenitis" "adenitises" ;
+lin adenocarcinoma_N = mkN "adenocarcinoma" "adenocarcinomas" ;
+lin adenocarcinomatous_A = mkAMost "adenocarcinomatous" "adenocarcinomatously" ;
+lin adenoid_A = mkAMost "adenoid" "adenoidly" ;
+lin adenoidal_A = mkAMost "adenoidal" "adenoidally" ;
+lin adenoidectomy_N = mkN "adenoidectomy" "adenoidectomies" ;
+lin adenoma_N = mkN "adenoma" "adenomas" ;
+lin adenomegaly_N = mkN "adenomegaly" "adenomegalies" ;
+lin adenopathy_N = mkN "adenopathy" "adenopathies" ;
+lin adenosine_N = mkN "adenosine" "adenosines" ;
+lin adenovirus_N = mkN "adenovirus" "adenoviruses" ;
+lin adept_A = mkAMost "adept" "adeptly" ;
+lin adept_N = mkN "adept" "adepts" ;
+lin adeptness_N = mkN "adeptness" "adeptnesses" ;
+lin adequacy_N = mkN "adequacy" "adequacies" ;
+lin adequate_A = mkAMost "adequate" "adequately" ;
+lin adesite_N = mkN "adesite" "adesites" ;
+lin adhere_V = mkV "adhere" "adhered" "adhered" ;
+lin adherence_N = mkN "adherence" "adherences" ;
+lin adherent_A = mkAMost "adherent" "adherently" ;
+lin adherent_N = mkN "adherent" "adherents" ;
+lin adhesion_N = mkN "adhesion" "adhesions" ;
+lin adhesive_A = mkAMost "adhesive" "adhesively" ;
+lin adhesive_N = mkN "adhesive" "adhesives" ;
+lin adhesiveness_N = mkN "adhesiveness" "adhesivenesses" ;
+lin adhocracy_N = mkN "adhocracy" "adhocracies" ;
+lin adiabatic_A = mkAMost "adiabatic" "adiabaticly" ;
+lin adience_N = mkN "adience" "adiences" ;
+lin adient_A = mkAMost "adient" "adiently" ;
+lin adieu_N = mkN "adieu" "adieus" ;
+lin adipose_A = mkAMost "adipose" "adiposely" ;
+lin adiposity_N = mkN "adiposity" "adiposities" ;
+lin adit_N = mkN "adit" "adits" ;
+lin adjacency_N = mkN "adjacency" "adjacencies" ;
+lin adjacent_A = mkAMost "adjacent" "adjacently" ;
+lin adjectival_A = mkAMost "adjectival" "adjectivally" ;
+lin adjective_A = mkAMost "adjective" "adjectively" ;
+lin adjective_N = mkN "adjective" "adjectives" ;
+lin adjoin_V = mkV "adjoin" "adjoined" "adjoined" ;
+lin adjourn_V = mkV "adjourn" "adjourned" "adjourned" ;
+lin adjournment_N = mkN "adjournment" "adjournments" ;
+lin adjudge_V = mkV "adjudge" "adjudged" "adjudged" ;
+lin adjudicate_V = mkV "adjudicate" "adjudicated" "adjudicated" ;
+lin adjudication_N = mkN "adjudication" "adjudications" ;
+lin adjudicative_A = mkAMost "adjudicative" "adjudicatively" ;
+lin adjudicator_N = mkN "adjudicator" "adjudicators" ;
+lin adjunct_A = mkAMost "adjunct" "adjunctly" ;
+lin adjunct_N = mkN "adjunct" "adjuncts" ;
+lin adjunctive_A = mkAMost "adjunctive" "adjunctively" ;
+lin adjuration_N = mkN "adjuration" "adjurations" ;
+lin adjuratory_A = mkAMost "adjuratory" "adjuratorily" ;
+lin adjure_V = mkV "adjure" "adjured" "adjured" ;
+lin adjust_V = mkV "adjust" "adjusted" "adjusted" ;
+lin adjustable_A = mkAMost "adjustable" "adjustably" ;
+lin adjuster_N = mkN "adjuster" "adjusters" ;
+lin adjustive_A = mkAMost "adjustive" "adjustively" ;
+lin adjustment_N = mkN "adjustment" "adjustments" ;
+lin adjutant_N = mkN "adjutant" "adjutants" ;
+lin adjuvant_A = mkAMost "adjuvant" "adjuvantly" ;
+lin adjuvant_N = mkN "adjuvant" "adjuvants" ;
+lin admass_N = mkN "admass" "admasses" ;
+lin administer_V = mkV "administer" "administered" "administered" ;
+lin administrable_A = mkAMost "administrable" "administrably" ;
+lin administration_N = mkN "administration" "administrations" ;
+lin administrative_A = mkAMost "administrative" "administratively" ;
+lin administrator_N = mkN "administrator" "administrators" ;
+lin administrivia_N = mkN "administrivia" "administrivias" ;
+lin admirability_N = mkN "admirability" "admirabilities" ;
+lin admirable_A = mkAMost "admirable" "admirably" ;
+lin admiral_N = mkN "admiral" "admirals" ;
+lin admiralty_N = mkN "admiralty" "admiralties" ;
+lin admiration_N = mkN "admiration" "admirations" ;
+lin admire_V = mkV "admire" "admired" "admired" ;
+lin admirer_N = mkN "admirer" "admirers" ;
+lin admiringly_Adv = mkAdv "admiringly" ;
+lin admissibility_N = mkN "admissibility" "admissibilities" ;
+lin admissible_A = mkAMost "admissible" "admissibly" ;
+lin admission_N = mkN "admission" "admissions" ;
+lin admissive_A = mkAMost "admissive" "admissively" ;
+lin admit_V = mkV "admit" "admitted" "admitted" ;
+lin admittable_A = mkAMost "admittable" "admittably" ;
+lin admittance_N = mkN "admittance" "admittances" ;
+lin admittedly_Adv = mkAdv "admittedly" ;
+lin admix_V = mkV "admix" "admixed" "admixed" ;
+lin admixture_N = mkN "admixture" "admixtures" ;
+lin admonish_V = mkV "admonish" "admonished" "admonished" ;
+lin admonisher_N = mkN "admonisher" "admonishers" ;
+lin admonition_N = mkN "admonition" "admonitions" ;
+lin admonitory_A = mkAMost "admonitory" "admonitorily" ;
+lin adnate_A = mkAMost "adnate" "adnately" ;
+lin adnexa_N = mkN "adnexa" "adnexas" ;
+lin adnexal_A = mkAMost "adnexal" "adnexally" ;
+lin adnoun_N = mkN "adnoun" "adnouns" ;
+lin ado_N = mkN "ado" "adoes" ;
+lin adobe_N = mkN "adobe" "adobes" ;
+lin adobo_N = mkN "adobo" "adoboes" ;
+lin adolescence_N = mkN "adolescence" "adolescences" ;
+lin adolescent_A = mkAMost "adolescent" "adolescently" ;
+lin adolescent_N = mkN "adolescent" "adolescents" ;
+lin adonis_N = mkN "adonis" "adonises" ;
+lin adopt_V = mkV "adopt" "adopted" "adopted" ;
+lin adoptable_A = mkAMost "adoptable" "adoptably" ;
+lin adoptee_N = mkN "adoptee" "adoptees" ;
+lin adoption_N = mkN "adoption" "adoptions" ;
+lin adoptive_A = mkAMost "adoptive" "adoptively" ;
+lin adorability_N = mkN "adorability" "adorabilities" ;
+lin adorable_A = mkAMost "adorable" "adorably" ;
+lin adoration_N = mkN "adoration" "adorations" ;
+lin adore_V = mkV "adore" "adored" "adored" ;
+lin adorer_N = mkN "adorer" "adorers" ;
+lin adoring_A = mkAMost "adoring" "adoringly" ;
+lin adorn_V = mkV "adorn" "adorned" "adorned" ;
+lin adornment_N = mkN "adornment" "adornments" ;
+lin adoxography_N = mkN "adoxography" "adoxographies" ;
+lin adrenal_A = mkAMost "adrenal" "adrenally" ;
+lin adrenalectomy_N = mkN "adrenalectomy" "adrenalectomies" ;
+lin adrenalin_N = mkN "adrenalin" "adrenalins" ;
+lin adrenarche_N = mkN "adrenarche" "adrenarches" ;
+lin adrenergic_A = mkAMost "adrenergic" "adrenergicly" ;
+lin adrenergic_N = mkN "adrenergic" "adrenergics" ;
+lin adrenocortical_A = mkAMost "adrenocortical" "adrenocortically" ;
+lin adrenocorticotropic_A = mkAMost "adrenocorticotropic" "adrenocorticotropicly" ;
+lin adrenosterone_N = mkN "adrenosterone" "adrenosterones" ;
+lin adrift_A = mkAMost "adrift" "adriftly" ;
+lin adrift_Adv = mkAdv "adrift" ;
+lin adroit_A = mkAMost "adroit" "adroitly" ;
+lin adroitness_N = mkN "adroitness" "adroitnesses" ;
+lin adscititious_A = mkAMost "adscititious" "adscititiously" ;
+lin adscript_A = mkAMost "adscript" "adscriptly" ;
+lin adsorbable_A = mkAMost "adsorbable" "adsorbably" ;
+lin adsorbate_N = mkN "adsorbate" "adsorbates" ;
+lin adsorbent_A = mkAMost "adsorbent" "adsorbently" ;
+lin adsorbent_N = mkN "adsorbent" "adsorbents" ;
+lin adsorption_N = mkN "adsorption" "adsorptions" ;
+lin adulation_N = mkN "adulation" "adulations" ;
+lin adulatory_A = mkAMost "adulatory" "adulatorily" ;
+lin adult_A = mkAMost "adult" "adultly" ;
+lin adult_N = mkN "adult" "adults" ;
+lin adulterant_N = mkN "adulterant" "adulterants" ;
+lin adulterate_A = mkAMost "adulterate" "adulterately" ;
+lin adulterate_V = mkV "adulterate" "adulterated" "adulterated" ;
+lin adulterating_A = mkAMost "adulterating" "adulteratingly" ;
+lin adulteration_N = mkN "adulteration" "adulterations" ;
+lin adulterator_N = mkN "adulterator" "adulterators" ;
+lin adulterer_N = mkN "adulterer" "adulterers" ;
+lin adulteress_N = mkN "adulteress" "adulteresses" ;
+lin adulterine_A = mkAMost "adulterine" "adulterinely" ;
+lin adulterous_A = mkAMost "adulterous" "adulterously" ;
+lin adultery_N = mkN "adultery" "adulteries" ;
+lin adulthood_N = mkN "adulthood" "adulthoods" ;
+lin adumbrate_V = mkV "adumbrate" "adumbrated" "adumbrated" ;
+lin adumbration_N = mkN "adumbration" "adumbrations" ;
+lin adumbrative_A = mkAMost "adumbrative" "adumbratively" ;
+lin adust_A = mkAMost "adust" "adustly" ;
+lin advance_N = mkN "advance" "advances" ;
+lin advance_V = mkV "advance" "advanced" "advanced" ;
+lin advancement_N = mkN "advancement" "advancements" ;
+lin advancer_N = mkN "advancer" "advancers" ;
+lin advantage_N = mkN "advantage" "advantages" ;
+lin advantage_V = mkV "advantage" "advantaged" "advantaged" ;
+lin advantageous_A = mkAMost "advantageous" "advantageously" ;
+lin advection_N = mkN "advection" "advections" ;
+lin advective_A = mkAMost "advective" "advectively" ;
+lin advent_N = mkN "advent" "advents" ;
+lin adventist_N = mkN "adventist" "adventists" ;
+lin adventitial_A = mkAMost "adventitial" "adventitially" ;
+lin adventitious_A = mkAMost "adventitious" "adventitiously" ;
+lin adventive_A = mkAMost "adventive" "adventively" ;
+lin adventure_N = mkN "adventure" "adventures" ;
+lin adventure_V = mkV "adventure" "adventured" "adventured" ;
+lin adventurer_N = mkN "adventurer" "adventurers" ;
+lin adventuresome_A = mkAMost "adventuresome" "adventuresomely" ;
+lin adventuress_N = mkN "adventuress" "adventuresses" ;
+lin adventurism_N = mkN "adventurism" "adventurisms" ;
+lin adventuristic_A = mkAMost "adventuristic" "adventuristicly" ;
+lin adventurous_A = mkAMost "adventurous" "adventurously" ;
+lin adventurousness_N = mkN "adventurousness" "adventurousnesses" ;
+lin adverb_N = mkN "adverb" "adverbs" ;
+lin adverbial_A = mkAMost "adverbial" "adverbially" ;
+lin adverbial_N = mkN "adverbial" "adverbials" ;
+lin adversary_N = mkN "adversary" "adversaries" ;
+lin adversative_A = mkAMost "adversative" "adversatively" ;
+lin adverse_A = mkAMost "adverse" "adversely" ;
+lin adversity_N = mkN "adversity" "adversities" ;
+lin advert_N = mkN "advert" "adverts" ;
+lin advert_V = mkV "advert" "adverted" "adverted" ;
+lin advertence_N = mkN "advertence" "advertences" ;
+lin advertent_A = mkAMost "advertent" "advertently" ;
+lin advertise_V = mkV "advertise" "advertised" "advertised" ;
+lin advertisement_N = mkN "advertisement" "advertisements" ;
+lin advertiser_N = mkN "advertiser" "advertisers" ;
+lin advertising_N = mkN "advertising" "advertisings" ;
+lin advertorial_N = mkN "advertorial" "advertorials" ;
+lin advice_N = mkN "advice" "advices" ;
+lin advisability_N = mkN "advisability" "advisabilities" ;
+lin advisable_A = mkAMost "advisable" "advisably" ;
+lin advise_V = mkV "advise" "advised" "advised" ;
+lin advisee_N = mkN "advisee" "advisees" ;
+lin adviser_N = mkN "adviser" "advisers" ;
+lin advisory_A = mkAMost "advisory" "advisorily" ;
+lin advisory_N = mkN "advisory" "advisories" ;
+lin advocacy_N = mkN "advocacy" "advocacies" ;
+lin advocate_N = mkN "advocate" "advocates" ;
+lin advocate_V = mkV "advocate" "advocated" "advocated" ;
+lin advowson_N = mkN "advowson" "advowsons" ;
+lin adynamia_N = mkN "adynamia" "adynamias" ;
+lin adynamic_A = mkAMost "adynamic" "adynamicly" ;
+lin adz_N = mkN "adz" "adzes" ;
+lin adze_N = mkN "adze" "adzes" ;
+lin aecial_A = mkAMost "aecial" "aecially" ;
+lin aeciospore_N = mkN "aeciospore" "aeciospores" ;
+lin aecium_N = mkN "aecium" "aeciums" ;
+lin aegis_N = mkN "aegis" "aegises" ;
+lin aeolotropic_A = mkAMost "aeolotropic" "aeolotropicly" ;
+lin aeon_N = mkN "aeon" "aeons" ;
+lin aerate_V = mkV "aerate" "aerated" "aerated" ;
+lin aeration_N = mkN "aeration" "aerations" ;
+lin aerator_N = mkN "aerator" "aerators" ;
+lin aerial_A = mkAMost "aerial" "aerially" ;
+lin aerial_N = mkN "aerial" "aerials" ;
+lin aerialist_N = mkN "aerialist" "aerialists" ;
+lin aerides_N = mkN "aerides" "aerideses" ;
+lin aerie_N = mkN "aerie" "aeries" ;
+lin aeriferous_A = mkAMost "aeriferous" "aeriferously" ;
+lin aeriform_A = mkAMost "aeriform" "aeriformly" ;
+lin aerobatics_N = mkN "aerobatics" "aerobatics" ;
+lin aerobe_N = mkN "aerobe" "aerobes" ;
+lin aerobic_A = mkAMost "aerobic" "aerobicly" ;
+lin aerobics_N = mkN "aerobics" "aerobicses" ;
+lin aerobiosis_N = mkN "aerobiosis" "aerobiosises" ;
+lin aerobiotic_A = mkAMost "aerobiotic" "aerobioticly" ;
+lin aerodontalgia_N = mkN "aerodontalgia" "aerodontalgias" ;
+lin aerodrome_N = mkN "aerodrome" "aerodromes" ;
+lin aerodynamic_A = mkAMost "aerodynamic" "aerodynamicly" ;
+lin aerodynamics_N = mkN "aerodynamics" "aerodynamics" ;
+lin aerolite_N = mkN "aerolite" "aerolites" ;
+lin aerolitic_A = mkAMost "aerolitic" "aeroliticly" ;
+lin aerological_A = mkAMost "aerological" "aerologically" ;
+lin aerology_N = mkN "aerology" "aerologies" ;
+lin aeromechanic_A = mkAMost "aeromechanic" "aeromechanicly" ;
+lin aeromechanics_N = mkN "aeromechanics" "aeromechanicses" ;
+lin aeromedical_A = mkAMost "aeromedical" "aeromedically" ;
+lin aeromedicine_N = mkN "aeromedicine" "aeromedicines" ;
+lin aeronaut_N = mkN "aeronaut" "aeronauts" ;
+lin aeronautical_A = mkAMost "aeronautical" "aeronautically" ;
+lin aeronautics_N = mkN "aeronautics" "aeronautics" ;
+lin aerophagia_N = mkN "aerophagia" "aerophagias" ;
+lin aerophilatelic_A = mkAMost "aerophilatelic" "aerophilatelicly" ;
+lin aerophilately_N = mkN "aerophilately" "aerophilatelies" ;
+lin aerophile_N = mkN "aerophile" "aerophiles" ;
+lin aeroplane_N = mkN "aeroplane" "aeroplanes" ;
+lin aerosol_N = mkN "aerosol" "aerosols" ;
+lin aerosolized_A = mkAMost "aerosolized" "aerosolizedly" ;
+lin aerospace_N = mkN "aerospace" "aerospaces" ;
+lin aertex_N = mkN "aertex" "aertexes" ;
+lin aery_N = mkN "aery" "aeries" ;
+lin aeschynanthus_N = mkN "aeschynanthus" "aeschynanthuses" ;
+lin aesculapian_A = mkAMost "aesculapian" "aesculapianly" ;
+lin aesthete_N = mkN "aesthete" "aesthetes" ;
+lin aesthetic_A = mkAMost "aesthetic" "aestheticly" ;
+lin aesthetic_N = mkN "aesthetic" "aesthetics" ;
+lin aesthetical_A = mkAMost "aesthetical" "aesthetically" ;
+lin aesthetics_N = mkN "aesthetics" "aesthetics" ;
+lin aestival_A = mkAMost "aestival" "aestivally" ;
+lin aether_N = mkN "aether" "aethers" ;
+lin aetiology_N = mkN "aetiology" "aetiologies" ;
+lin afar_Adv = mkAdv "afar" ;
+lin afebrile_A = mkAMost "afebrile" "afebrilely" ;
+lin affability_N = mkN "affability" "affabilities" ;
+lin affable_A = mkAMost "affable" "affably" ;
+lin affair_N = mkN "affair" "affairs" ;
+lin affairs_N = mkN "affairs" "affairses" ;
+lin affect_N = mkN "affect" "affects" ;
+lin affect_V = mkV "affect" "affected" "affected" ;
+lin affectation_N = mkN "affectation" "affectations" ;
+lin affectedly_Adv = mkAdv "affectedly" ;
+lin affectedness_N = mkN "affectedness" "affectednesses" ;
+lin affecting_A = mkAMost "affecting" "affectingly" ;
+lin affection_N = mkN "affection" "affections" ;
+lin affectional_A = mkAMost "affectional" "affectionally" ;
+lin affectionate_A = mkAMost "affectionate" "affectionately" ;
+lin affectionateness_N = mkN "affectionateness" "affectionatenesses" ;
+lin affenpinscher_N = mkN "affenpinscher" "affenpinschers" ;
+lin afferent_A = mkAMost "afferent" "afferently" ;
+lin affiance_V = mkV "affiance" "affianced" "affianced" ;
+lin affiant_N = mkN "affiant" "affiants" ;
+lin affidavit_N = mkN "affidavit" "affidavits" ;
+lin affiliate_N = mkN "affiliate" "affiliates" ;
+lin affiliate_V = mkV "affiliate" "affiliated" "affiliated" ;
+lin affiliation_N = mkN "affiliation" "affiliations" ;
+lin affinal_A = mkAMost "affinal" "affinally" ;
+lin affine_A = mkAMost "affine" "affinely" ;
+lin affine_N = mkN "affine" "affines" ;
+lin affined_A = mkAMost "affined" "affinedly" ;
+lin affinity_N = mkN "affinity" "affinities" ;
+lin affirm_V = mkV "affirm" "affirmed" "affirmed" ;
+lin affirmable_A = mkAMost "affirmable" "affirmably" ;
+lin affirmation_N = mkN "affirmation" "affirmations" ;
+lin affirmative_A = mkAMost "affirmative" "affirmatively" ;
+lin affirmative_N = mkN "affirmative" "affirmatives" ;
+lin affirmativeness_N = mkN "affirmativeness" "affirmativenesses" ;
+lin affix_N = mkN "affix" "affixes" ;
+lin affix_V = mkV "affix" "affixed" "affixed" ;
+lin affixal_A = mkAMost "affixal" "affixally" ;
+lin affixation_N = mkN "affixation" "affixations" ;
+lin afflatus_N = mkN "afflatus" "afflatuses" ;
+lin afflict_V = mkV "afflict" "afflicted" "afflicted" ;
+lin affliction_N = mkN "affliction" "afflictions" ;
+lin afflictive_A = mkAMost "afflictive" "afflictively" ;
+lin affluence_N = mkN "affluence" "affluences" ;
+lin affluent_A = mkAMost "affluent" "affluently" ;
+lin affluent_N = mkN "affluent" "affluents" ;
+lin afford_V = mkV "afford" "afforded" "afforded" ;
+lin afforest_V = mkV "afforest" "afforested" "afforested" ;
+lin afforestation_N = mkN "afforestation" "afforestations" ;
+lin affranchise_V = mkV "affranchise" "affranchised" "affranchised" ;
+lin affray_N = mkN "affray" "affrays" ;
+lin affricate_N = mkN "affricate" "affricates" ;
+lin affrication_N = mkN "affrication" "affrications" ;
+lin affront_N = mkN "affront" "affronts" ;
+lin affront_V = mkV "affront" "affronted" "affronted" ;
+lin affusion_N = mkN "affusion" "affusions" ;
+lin afghanistani_A = mkAMost "afghanistani" "afghanistanily" ;
+lin afghanistani_N = mkN "afghanistani" "afghanistanis" ;
+lin afibrinogenemia_N = mkN "afibrinogenemia" "afibrinogenemias" ;
+lin aficionado_N = mkN "aficionado" "aficionadoes" ;
+lin afield_Adv = mkAdv "afield" ;
+lin afire_A = mkAMost "afire" "afirely" ;
+lin aflame_A = mkAMost "aflame" "aflamely" ;
+lin aflare_A = mkAMost "aflare" "aflarely" ;
+lin aflatoxin_N = mkN "aflatoxin" "aflatoxins" ;
+lin afloat_A = mkAMost "afloat" "afloatly" ;
+lin aflutter_A = mkAMost "aflutter" "aflutterly" ;
+lin afoot_A = mkAMost "afoot" "afootly" ;
+lin afoot_Adv = mkAdv "afoot" ;
+lin afore_Adv = mkAdv "afore" ;
+lin afore_Prep = mkPrep "afore" ;
+lin aforesaid_A = mkAMost "aforesaid" "aforesaidly" ;
+lin aforethought_Adv = mkAdv "aforethought" ;
+lin afoul_Adv = mkAdv "afoul" ;
+lin afraid_A = mkAMost "afraid" "afraidly" ;
+lin afresh_Adv = mkAdv "afresh" ;
+lin afro_wig_N = mkN "afro-wig" "afro-wigs" ;
+lin afropavo_N = mkN "afropavo" "afropavoes" ;
+lin aft_Adv = mkAdv "aft" ;
+lin after_A = mkAMost "after" "afterly" ;
+lin after_Adv = mkAdv "after" ;
+lin after_Prep = mkPrep "after" ;
+lin afterbirth_N = mkN "afterbirth" "afterbirths" ;
+lin afterburner_N = mkN "afterburner" "afterburners" ;
+lin aftercare_N = mkN "aftercare" "aftercares" ;
+lin afterdamp_N = mkN "afterdamp" "afterdamps" ;
+lin afterdeck_N = mkN "afterdeck" "afterdecks" ;
+lin aftereffect_N = mkN "aftereffect" "aftereffects" ;
+lin afterglow_N = mkN "afterglow" "afterglows" ;
+lin afterimage_N = mkN "afterimage" "afterimages" ;
+lin afterlife_N = mkN "afterlife" "afterlifes" ;
+lin aftermath_N = mkN "aftermath" "aftermaths" ;
+lin aftermost_A = mkAMost "aftermost" "aftermostly" ;
+lin afternoon_N = mkN "afternoon" "afternoons" ;
+lin afterpains_N = mkN "afterpains" "afterpainses" ;
+lin afterpiece_N = mkN "afterpiece" "afterpieces" ;
+lin aftershaft_N = mkN "aftershaft" "aftershafts" ;
+lin aftershafted_A = mkAMost "aftershafted" "aftershaftedly" ;
+lin aftershock_N = mkN "aftershock" "aftershocks" ;
+lin aftertaste_N = mkN "aftertaste" "aftertastes" ;
+lin afterthought_N = mkN "afterthought" "afterthoughts" ;
+lin afterwards_Adv = mkAdv "afterwards" ;
+lin afterworld_N = mkN "afterworld" "afterworlds" ;
+lin again_Adv = mkAdv "again" ;
+lin against_Prep = mkPrep "against" ;
+lin agal_N = mkN "agal" "agals" ;
+lin agalactia_N = mkN "agalactia" "agalactias" ;
+lin agama_N = mkN "agama" "agamas" ;
+lin agamete_N = mkN "agamete" "agametes" ;
+lin agamic_A = mkAMost "agamic" "agamicly" ;
+lin agamid_N = mkN "agamid" "agamids" ;
+lin agammaglobulinemia_N = mkN "agammaglobulinemia" "agammaglobulinemias" ;
+lin agapanthus_N = mkN "agapanthus" "agapanthuses" ;
+lin agape_A = mkAMost "agape" "agapely" ;
+lin agape_N = mkN "agape" "agapes" ;
+lin agar_N = mkN "agar" "agars" ;
+lin agar_agar_N = mkN "agar-agar" "agar-agars" ;
+lin agaric_N = mkN "agaric" "agarics" ;
+lin agate_N = mkN "agate" "agates" ;
+lin agateware_N = mkN "agateware" "agatewares" ;
+lin agave_N = mkN "agave" "agaves" ;
+lin agaze_A = mkAMost "agaze" "agazely" ;
+lin age_N = mkN "age" "ages" ;
+lin age_V = mkV "age" "aged" "aged" ;
+lin age_bracket_N = mkN "age-bracket" "age-brackets" ;
+lin age_group_N = mkN "age-group" "age-groups" ;
+lin age_long_A = mkAMost "age-long" "age-longly" ;
+lin age_old_A = mkAMost "age-old" "age-oldly" ;
+lin aged_N = mkN "aged" "ageds" ;
+lin agedness_N = mkN "agedness" "agednesses" ;
+lin ageing_N = mkN "ageing" "ageings" ;
+lin ageism_N = mkN "ageism" "ageisms" ;
+lin ageless_A = mkAMost "ageless" "agelessly" ;
+lin agelessness_N = mkN "agelessness" "agelessnesses" ;
+lin agelong_A = mkAMost "agelong" "agelongly" ;
+lin agency_N = mkN "agency" "agencies" ;
+lin agenda_N = mkN "agenda" "agendas" ;
+lin agenesis_N = mkN "agenesis" "agenesises" ;
+lin agent_N = mkN "agent" "agents" ;
+lin agent_provocateur_N = mkN "agent provocateur" "agents provocateurs" ;
+lin agential_A = mkAMost "agential" "agentially" ;
+lin agerasia_N = mkN "agerasia" "agerasias" ;
+lin ageratum_N = mkN "ageratum" "ageratums" ;
+lin agglomerate_A = mkAMost "agglomerate" "agglomerately" ;
+lin agglomerate_N = mkN "agglomerate" "agglomerates" ;
+lin agglomerate_V = mkV "agglomerate" "agglomerated" "agglomerated" ;
+lin agglomeration_N = mkN "agglomeration" "agglomerations" ;
+lin agglomerator_N = mkN "agglomerator" "agglomerators" ;
+lin agglutinate_A = mkAMost "agglutinate" "agglutinately" ;
+lin agglutinate_V = mkV "agglutinate" "agglutinated" "agglutinated" ;
+lin agglutination_N = mkN "agglutination" "agglutinations" ;
+lin agglutinative_A = mkAMost "agglutinative" "agglutinatively" ;
+lin agglutinin_N = mkN "agglutinin" "agglutinins" ;
+lin agglutinogen_N = mkN "agglutinogen" "agglutinogens" ;
+lin aggrandize_V = mkV "aggrandize" "aggrandized" "aggrandized" ;
+lin aggrandizement_N = mkN "aggrandizement" "aggrandizements" ;
+lin aggravate_V = mkV "aggravate" "aggravated" "aggravated" ;
+lin aggravating_A = mkAMost "aggravating" "aggravatingly" ;
+lin aggravation_N = mkN "aggravation" "aggravations" ;
+lin aggravator_N = mkN "aggravator" "aggravators" ;
+lin aggregate_A = mkAMost "aggregate" "aggregately" ;
+lin aggregate_N = mkN "aggregate" "aggregates" ;
+lin aggregate_V = mkV "aggregate" "aggregated" "aggregated" ;
+lin aggregation_N = mkN "aggregation" "aggregations" ;
+lin aggression_N = mkN "aggression" "aggressions" ;
+lin aggressive_A = mkAMost "aggressive" "aggressively" ;
+lin aggressiveness_N = mkN "aggressiveness" "aggressivenesses" ;
+lin aggressor_N = mkN "aggressor" "aggressors" ;
+lin aggrieve_V = mkV "aggrieve" "aggrieved" "aggrieved" ;
+lin aggro_N = mkN "aggro" "aggroes" ;
+lin aghast_A = mkAMost "aghast" "aghastly" ;
+lin agile_A = mkAMost "agile" "agilely" ;
+lin agility_N = mkN "agility" "agilities" ;
+lin agin_Prep = mkPrep "agin" ;
+lin aging_N = mkN "aging" "agings" ;
+lin agio_N = mkN "agio" "agios" ;
+lin agitate_V = mkV "agitate" "agitated" "agitated" ;
+lin agitation_N = mkN "agitation" "agitations" ;
+lin agitative_A = mkAMost "agitative" "agitatively" ;
+lin agitator_N = mkN "agitator" "agitators" ;
+lin agitprop_N = mkN "agitprop" "agitprops" ;
+lin agleam_A = mkAMost "agleam" "agleamly" ;
+lin aglet_N = mkN "aglet" "aglets" ;
+lin aglow_A = mkAMost "aglow" "aglowly" ;
+lin agm_N = mkN "agm" "agms" ;
+lin agnail_N = mkN "agnail" "agnails" ;
+lin agnate_A = mkAMost "agnate" "agnately" ;
+lin agnate_N = mkN "agnate" "agnates" ;
+lin agnomen_N = mkN "agnomen" "agnomens" ;
+lin agnosia_N = mkN "agnosia" "agnosias" ;
+lin agnostic_A = mkAMost "agnostic" "agnosticly" ;
+lin agnostic_N = mkN "agnostic" "agnostics" ;
+lin agnosticism_N = mkN "agnosticism" "agnosticisms" ;
+lin ago_Adv = mkAdv "ago" ;
+lin ago_Prep = mkPrep "ago" ;
+lin agog_A = mkAMost "agog" "agogly" ;
+lin agon_N = mkN "agon" "agons" ;
+lin agonadal_A = mkAMost "agonadal" "agonadally" ;
+lin agonal_A = mkAMost "agonal" "agonally" ;
+lin agonist_N = mkN "agonist" "agonists" ;
+lin agonistic_A = mkAMost "agonistic" "agonisticly" ;
+lin agonize_V = mkV "agonize" "agonized" "agonized" ;
+lin agonized_A = mkAMost "agonized" "agonizedly" ;
+lin agonizingly_Adv = mkAdv "agonizingly" ;
+lin agony_N = mkN "agony" "agonies" ;
+lin agora_N = mkN "agora" "agoras" ;
+lin agoraphobia_N = mkN "agoraphobia" "agoraphobias" ;
+lin agoraphobic_A = mkAMost "agoraphobic" "agoraphobicly" ;
+lin agouti_N = mkN "agouti" "agoutis" ;
+lin agranulocytic_A = mkAMost "agranulocytic" "agranulocyticly" ;
+lin agranulocytosis_N = mkN "agranulocytosis" "agranulocytosises" ;
+lin agrapha_N = mkN "agrapha" "agraphas" ;
+lin agraphia_N = mkN "agraphia" "agraphias" ;
+lin agraphic_A = mkAMost "agraphic" "agraphicly" ;
+lin agrarian_A = mkAMost "agrarian" "agrarianly" ;
+lin agree_V = mkV "agree" "agreed" "agreed" ;
+lin agreeable_A = mkAMost "agreeable" "agreeably" ;
+lin agreeableness_N = mkN "agreeableness" "agreeablenesses" ;
+lin agreement_N = mkN "agreement" "agreements" ;
+lin agrestic_A = mkAMost "agrestic" "agresticly" ;
+lin agribusiness_N = mkN "agribusiness" "agribusinesses" ;
+lin agricultural_A = mkAMost "agricultural" "agriculturally" ;
+lin agriculture_N = mkN "agriculture" "agricultures" ;
+lin agriculturist_N = mkN "agriculturist" "agriculturists" ;
+lin agrimonia_N = mkN "agrimonia" "agrimonias" ;
+lin agrobiologic_A = mkAMost "agrobiologic" "agrobiologicly" ;
+lin agrobiology_N = mkN "agrobiology" "agrobiologies" ;
+lin agrologic_A = mkAMost "agrologic" "agrologicly" ;
+lin agrology_N = mkN "agrology" "agrologies" ;
+lin agromania_N = mkN "agromania" "agromanias" ;
+lin agronomic_A = mkAMost "agronomic" "agronomicly" ;
+lin agronomist_N = mkN "agronomist" "agronomists" ;
+lin agronomy_N = mkN "agronomy" "agronomies" ;
+lin aground_A = mkAMost "aground" "agroundly" ;
+lin aground_Adv = mkAdv "aground" ;
+lin agrypnia_N = mkN "agrypnia" "agrypnias" ;
+lin agrypnotic_A = mkAMost "agrypnotic" "agrypnoticly" ;
+lin agua_N = mkN "agua" "aguas" ;
+lin ague_N = mkN "ague" "agues" ;
+lin agueweed_N = mkN "agueweed" "agueweeds" ;
+lin aguish_A = mkAMost "aguish" "aguishly" ;
+lin ahead_Adv = mkAdv "ahead" ;
+lin ahead_of_Prep = mkPrep "ahead of" ;
+lin ahimsa_N = mkN "ahimsa" "ahimsas" ;
+lin ahistorical_A = mkAMost "ahistorical" "ahistorically" ;
+lin aid_N = mkN "aid" "aids" ;
+lin aid_V = mkV "aid" "aided" "aided" ;
+lin aide_N = mkN "aide" "aides" ;
+lin aide_de_camp_N = mkN "aide-de-camp" "aide-de-camps" ;
+lin aide_mémoire_N = mkN "aide-mémoire" "aide-mémoires" ;
+lin aids_N = mkN "aids" "aidses" ;
+lin aigret_N = mkN "aigret" "aigrets" ;
+lin aigrette_N = mkN "aigrette" "aigrettes" ;
+lin aikido_N = mkN "aikido" "aikidoes" ;
+lin ail_V = mkV "ail" "ailed" "ailed" ;
+lin ailanthus_N = mkN "ailanthus" "ailanthuses" ;
+lin aileron_N = mkN "aileron" "ailerons" ;
+lin ailment_N = mkN "ailment" "ailments" ;
+lin ailurophobia_N = mkN "ailurophobia" "ailurophobias" ;
+lin aim_N = mkN "aim" "aims" ;
+lin aim_V = mkV "aim" "aimed" "aimed" ;
+lin aimless_A = mkAMost "aimless" "aimlessly" ;
+lin aioli_N = mkN "aioli" "aiolis" ;
+lin air_N = mkN "air" "airs" ;
+lin air_V = mkV "air" "aired" "aired" ;
+lin air_bladder_N = mkN "air-bladder" "air-bladders" ;
+lin air_conditioned_A = mkAMost "air-conditioned" "air-conditionedly" ;
+lin air_conditioning_N = mkN "air-conditioning" "air-conditionings" ;
+lin air_cooled_A = mkAMost "air-cooled" "air-cooledly" ;
+lin air_minded_A = mkAMost "air-minded" "air-mindedly" ;
+lin air_pump_N = mkN "air-pump" "air-pumps" ;
+lin air_raid_N = mkN "air-raid" "air-raids" ;
+lin air_shaft_N = mkN "air-shaft" "air-shafts" ;
+lin air_sick_A = mkAMost "air-sick" "air-sickly" ;
+lin air_sickness_N = mkN "air-sickness" "air-sicknesses" ;
+lin air_to_air_A = mkAMost "air-to-air" "air-to-airly" ;
+lin air_to_ground_A = mkAMost "air-to-ground" "air-to-groundly" ;
+lin airbed_N = mkN "airbed" "airbeds" ;
+lin airborne_A = mkAMost "airborne" "airbornely" ;
+lin airbrake_N = mkN "airbrake" "airbrakes" ;
+lin airbrush_N = mkN "airbrush" "airbrushes" ;
+lin airburst_N = mkN "airburst" "airbursts" ;
+lin airbus_N = mkN "airbus" "airbuses" ;
+lin aircraft_N = mkN "aircraft" "aircraft" ;
+lin aircraftman_N = mkN "aircraftman" "aircraftmen" ;
+lin aircraftsman_N = mkN "aircraftsman" "aircraftsmans" ;
+lin aircrew_N = mkN "aircrew" "aircrews" ;
+lin aircrewman_N = mkN "aircrewman" "aircrewmans" ;
+lin airdock_N = mkN "airdock" "airdocks" ;
+lin airdrome_N = mkN "airdrome" "airdromes" ;
+lin airdrop_N = mkN "airdrop" "airdrops" ;
+lin airedale_N = mkN "airedale" "airedales" ;
+lin airfare_N = mkN "airfare" "airfares" ;
+lin airfield_N = mkN "airfield" "airfields" ;
+lin airflow_N = mkN "airflow" "airflows" ;
+lin airfoil_N = mkN "airfoil" "airfoils" ;
+lin airforce_N = mkN "airforce" "airforces" ;
+lin airframe_N = mkN "airframe" "airframes" ;
+lin airhead_N = mkN "airhead" "airheads" ;
+lin airheaded_A = mkAMost "airheaded" "airheadedly" ;
+lin airiness_N = mkN "airiness" "airinesses" ;
+lin airing_N = mkN "airing" "airings" ;
+lin airing_cupboard_N = mkN "airing-cupboard" "airing-cupboards" ;
+lin airless_A = mkAMost "airless" "airlessly" ;
+lin airlift_N = mkN "airlift" "airlifts" ;
+lin airline_N = mkN "airline" "airlines" ;
+lin airliner_N = mkN "airliner" "airliners" ;
+lin airlock_N = mkN "airlock" "airlocks" ;
+lin airmail_N = mkN "airmail" "airmails" ;
+lin airmailer_N = mkN "airmailer" "airmailers" ;
+lin airman_N = mkN "airman" "airmen" ;
+lin airplane_N = mkN "airplane" "airplanes" ;
+lin airport_N = mkN "airport" "airports" ;
+lin airs_N = mkN "airs" "airses" ;
+lin airscrew_N = mkN "airscrew" "airscrews" ;
+lin airship_N = mkN "airship" "airships" ;
+lin airsick_A = mkAMost "airsick" "airsickly" ;
+lin airsickness_N = mkN "airsickness" "airsicknesses" ;
+lin airspace_N = mkN "airspace" "airspaces" ;
+lin airspeed_N = mkN "airspeed" "airspeeds" ;
+lin airstream_N = mkN "airstream" "airstreams" ;
+lin airstrip_N = mkN "airstrip" "airstrips" ;
+lin airtight_A = mkAMost "airtight" "airtightly" ;
+lin airway_N = mkN "airway" "airways" ;
+lin airwoman_N = mkN "airwoman" "airwomen" ;
+lin airworthiness_N = mkN "airworthiness" "airworthinesses" ;
+lin airworthy_A = mkAMost "airworthy" "airworthily" ;
+lin airy_A = mkAMost "airy" "airily" ;
+lin aisle_N = mkN "aisle" "aisles" ;
+lin aitch_N = mkN "aitch" "aitches" ;
+lin aitch_bone_N = mkN "aitch-bone" "aitch-bones" ;
+lin aitchbone_N = mkN "aitchbone" "aitchbones" ;
+lin ajar_A = mkAMost "ajar" "ajarly" ;
+lin akaryocyte_N = mkN "akaryocyte" "akaryocytes" ;
+lin akee_N = mkN "akee" "akees" ;
+lin akimbo_Adv = mkAdv "akimbo" ;
+lin akin_A = mkAMost "akin" "akinly" ;
+lin akinesis_N = mkN "akinesis" "akinesises" ;
+lin ala_N = mkN "ala" "alas" ;
+lin alabaster_A = mkAMost "alabaster" "alabasterly" ;
+lin alabaster_N = mkN "alabaster" "alabasters" ;
+lin alacritous_A = mkAMost "alacritous" "alacritously" ;
+lin alacrity_N = mkN "alacrity" "alacrities" ;
+lin alalia_N = mkN "alalia" "alalias" ;
+lin alanine_N = mkN "alanine" "alanines" ;
+lin alar_A = mkAMost "alar" "alarly" ;
+lin alarm_N = mkN "alarm" "alarms" ;
+lin alarm_V = mkV "alarm" "alarmed" "alarmed" ;
+lin alarm_clock_N = mkN "alarm-clock" "alarm-clocks" ;
+lin alarming_A = mkAMost "alarming" "alarmingly" ;
+lin alarmism_N = mkN "alarmism" "alarmisms" ;
+lin alarmist_N = mkN "alarmist" "alarmists" ;
+lin alastrim_N = mkN "alastrim" "alastrims" ;
+lin alate_A = mkAMost "alate" "alately" ;
+lin alb_N = mkN "alb" "albs" ;
+lin albacore_N = mkN "albacore" "albacores" ;
+lin albatross_N = mkN "albatross" "albatrosses" ;
+lin albedo_N = mkN "albedo" "albedoes" ;
+lin albescent_A = mkAMost "albescent" "albescently" ;
+lin albinal_A = mkAMost "albinal" "albinally" ;
+lin albinism_N = mkN "albinism" "albinisms" ;
+lin albino_N = mkN "albino" "albinos" ;
+lin albite_N = mkN "albite" "albites" ;
+lin albitic_A = mkAMost "albitic" "albiticly" ;
+lin albizzia_N = mkN "albizzia" "albizzias" ;
+lin albuca_N = mkN "albuca" "albucas" ;
+lin albuginea_N = mkN "albuginea" "albugineas" ;
+lin album_N = mkN "album" "albums" ;
+lin albumen_N = mkN "albumen" "albumens" ;
+lin albumin_N = mkN "albumin" "albumins" ;
+lin albuminous_A = mkAMost "albuminous" "albuminously" ;
+lin albuminuria_N = mkN "albuminuria" "albuminurias" ;
+lin albuminuric_A = mkAMost "albuminuric" "albuminuricly" ;
+lin albuterol_N = mkN "albuterol" "albuterols" ;
+lin alcalde_N = mkN "alcalde" "alcaldes" ;
+lin alcazar_N = mkN "alcazar" "alcazars" ;
+lin alchemic_A = mkAMost "alchemic" "alchemicly" ;
+lin alchemist_N = mkN "alchemist" "alchemists" ;
+lin alchemistic_A = mkAMost "alchemistic" "alchemisticly" ;
+lin alchemy_N = mkN "alchemy" "alchemies" ;
+lin alcohol_N = mkN "alcohol" "alcohols" ;
+lin alcoholic_A = mkAMost "alcoholic" "alcoholicly" ;
+lin alcoholic_N = mkN "alcoholic" "alcoholics" ;
+lin alcoholism_N = mkN "alcoholism" "alcoholisms" ;
+lin alcove_N = mkN "alcove" "alcoves" ;
+lin aldehyde_N = mkN "aldehyde" "aldehydes" ;
+lin aldehydic_A = mkAMost "aldehydic" "aldehydicly" ;
+lin alder_N = mkN "alder" "alders" ;
+lin alderfly_N = mkN "alderfly" "alderflies" ;
+lin alderman_N = mkN "alderman" "aldermen" ;
+lin aldermanic_A = mkAMost "aldermanic" "aldermanicly" ;
+lin aldohexose_N = mkN "aldohexose" "aldohexoses" ;
+lin aldol_N = mkN "aldol" "aldols" ;
+lin aldose_N = mkN "aldose" "aldoses" ;
+lin aldosterone_N = mkN "aldosterone" "aldosterones" ;
+lin aldosteronism_N = mkN "aldosteronism" "aldosteronisms" ;
+lin ale_N = mkN "ale" "ales" ;
+lin ale_house_N = mkN "ale-house" "ale-houses" ;
+lin aleatory_A = mkAMost "aleatory" "aleatorily" ;
+lin alee_A = mkAMost "alee" "aleely" ;
+lin alee_Adv = mkAdv "alee" ;
+lin alehouse_N = mkN "alehouse" "alehouses" ;
+lin alembic_N = mkN "alembic" "alembics" ;
+lin alendronate_N = mkN "alendronate" "alendronates" ;
+lin aleph_N = mkN "aleph" "alephs" ;
+lin alert_A = mkAMost "alert" "alertly" ;
+lin alert_N = mkN "alert" "alerts" ;
+lin alert_V = mkV "alert" "alerted" "alerted" ;
+lin alertness_N = mkN "alertness" "alertnesses" ;
+lin aleurone_N = mkN "aleurone" "aleurones" ;
+lin aleuronic_A = mkAMost "aleuronic" "aleuronicly" ;
+lin alewife_N = mkN "alewife" "alewifes" ;
+lin alexandrine_N = mkN "alexandrine" "alexandrines" ;
+lin alexandrite_N = mkN "alexandrite" "alexandrites" ;
+lin alexia_N = mkN "alexia" "alexias" ;
+lin alexic_A = mkAMost "alexic" "alexicly" ;
+lin alexic_N = mkN "alexic" "alexics" ;
+lin alfalfa_N = mkN "alfalfa" "alfalfas" ;
+lin alfresco_A = mkAMost "alfresco" "alfrescoly" ;
+lin alfresco_Adv = mkAdv "alfresco" ;
+lin alga_N = mkN "alga" "algae" ;
+lin algal_A = mkAMost "algal" "algally" ;
+lin algarroba_N = mkN "algarroba" "algarrobas" ;
+lin algebra_N = mkN "algebra" "algebras" ;
+lin algebraic_A = mkAMost "algebraic" "algebraicly" ;
+lin algebraical_A = mkAMost "algebraical" "algebraically" ;
+lin algebraist_N = mkN "algebraist" "algebraists" ;
+lin algerian_A = mkAMost "algerian" "algerianly" ;
+lin algerian_N = mkN "algerian" "algerians" ;
+lin algid_A = mkAMost "algid" "algidly" ;
+lin algidity_N = mkN "algidity" "algidities" ;
+lin algin_N = mkN "algin" "algins" ;
+lin algoid_A = mkAMost "algoid" "algoidly" ;
+lin algolagnia_N = mkN "algolagnia" "algolagnias" ;
+lin algolagnic_A = mkAMost "algolagnic" "algolagnicly" ;
+lin algometer_N = mkN "algometer" "algometers" ;
+lin algometric_A = mkAMost "algometric" "algometricly" ;
+lin algometry_N = mkN "algometry" "algometries" ;
+lin algophobia_N = mkN "algophobia" "algophobias" ;
+lin algophobic_A = mkAMost "algophobic" "algophobicly" ;
+lin algorism_N = mkN "algorism" "algorisms" ;
+lin algorithm_N = mkN "algorithm" "algorithms" ;
+lin algorithmic_A = mkAMost "algorithmic" "algorithmicly" ;
+lin alias_Adv = mkAdv "alias" ;
+lin alias_N = mkN "alias" "aliases" ;
+lin alibi_N = mkN "alibi" "alibis" ;
+lin alidade_N = mkN "alidade" "alidades" ;
+lin alien_A = mkAMost "alien" "alienly" ;
+lin alien_N = mkN "alien" "aliens" ;
+lin alienable_A = mkAMost "alienable" "alienably" ;
+lin alienage_N = mkN "alienage" "alienages" ;
+lin alienate_V = mkV "alienate" "alienated" "alienated" ;
+lin alienating_A = mkAMost "alienating" "alienatingly" ;
+lin alienation_N = mkN "alienation" "alienations" ;
+lin alienator_N = mkN "alienator" "alienators" ;
+lin alienee_N = mkN "alienee" "alienees" ;
+lin alienism_N = mkN "alienism" "alienisms" ;
+lin alienist_N = mkN "alienist" "alienists" ;
+lin alienor_N = mkN "alienor" "alienors" ;
+lin alight_A = mkAMost "alight" "alightly" ;
+lin alight_V = mkV "alight" "alighted" "alighted" ;
+lin align_V = mkV "align" "aligned" "aligned" ;
+lin alignment_N = mkN "alignment" "alignments" ;
+lin alike_A = mkAMost "alike" "alikely" ;
+lin alike_Adv = mkAdv "alike" ;
+lin alimentary_A = mkAMost "alimentary" "alimentarily" ;
+lin alimentative_A = mkAMost "alimentative" "alimentatively" ;
+lin alimony_N = mkN "alimony" "alimonies" ;
+lin aliphatic_A = mkAMost "aliphatic" "aliphaticly" ;
+lin aliquant_N = mkN "aliquant" "aliquants" ;
+lin aliquot_A = mkAMost "aliquot" "aliquotly" ;
+lin aliquot_N = mkN "aliquot" "aliquots" ;
+lin aliterate_N = mkN "aliterate" "aliterates" ;
+lin alive_A = mkAMost "alive" "alively" ;
+lin aliyah_N = mkN "aliyah" "aliyahs" ;
+lin alizarin_N = mkN "alizarin" "alizarins" ;
+lin alkahest_N = mkN "alkahest" "alkahests" ;
+lin alkahestic_A = mkAMost "alkahestic" "alkahesticly" ;
+lin alkalemia_N = mkN "alkalemia" "alkalemias" ;
+lin alkalescent_A = mkAMost "alkalescent" "alkalescently" ;
+lin alkali_N = mkN "alkali" "alkalis" ;
+lin alkalimetry_N = mkN "alkalimetry" "alkalimetries" ;
+lin alkaline_A = mkAMost "alkaline" "alkalinely" ;
+lin alkalinity_N = mkN "alkalinity" "alkalinities" ;
+lin alkalinuria_N = mkN "alkalinuria" "alkalinurias" ;
+lin alkaloid_N = mkN "alkaloid" "alkaloids" ;
+lin alkaloidal_A = mkAMost "alkaloidal" "alkaloidally" ;
+lin alkalosis_N = mkN "alkalosis" "alkalosises" ;
+lin alkalotic_A = mkAMost "alkalotic" "alkaloticly" ;
+lin alkapton_N = mkN "alkapton" "alkaptons" ;
+lin alkaptonuria_N = mkN "alkaptonuria" "alkaptonurias" ;
+lin alkene_N = mkN "alkene" "alkenes" ;
+lin alkyd_N = mkN "alkyd" "alkyds" ;
+lin alkyl_N = mkN "alkyl" "alkyls" ;
+lin alkylbenzene_N = mkN "alkylbenzene" "alkylbenzenes" ;
+lin alkylbenzenesulfonate_N = mkN "alkylbenzenesulfonate" "alkylbenzenesulfonates" ;
+lin alkylic_A = mkAMost "alkylic" "alkylicly" ;
+lin all_A = mkA "all" "aller" "allest" "ally" ;
+lin all_mains_A = mkAMost "all-mains" "all-mainsly" ;
+lin all_round_A = mkAMost "all-round" "all-roundly" ;
+lin all_rounder_N = mkN "all-rounder" "all-rounders" ;
+lin allamanda_N = mkN "allamanda" "allamandas" ;
+lin allantoic_A = mkAMost "allantoic" "allantoicly" ;
+lin allantoid_A = mkAMost "allantoid" "allantoidly" ;
+lin allantois_N = mkN "allantois" "allantoises" ;
+lin allargando_A = mkAMost "allargando" "allargandoly" ;
+lin allay_V = mkV "allay" "allayed" "allayed" ;
+lin allegation_N = mkN "allegation" "allegations" ;
+lin allege_V = mkV "allege" "alleged" "alleged" ;
+lin allegiance_N = mkN "allegiance" "allegiances" ;
+lin allegiant_A = mkAMost "allegiant" "allegiantly" ;
+lin allegoric_A = mkAMost "allegoric" "allegoricly" ;
+lin allegorical_A = mkAMost "allegorical" "allegorically" ;
+lin allegorizer_N = mkN "allegorizer" "allegorizers" ;
+lin allegory_N = mkN "allegory" "allegories" ;
+lin allegretto_A = mkAMost "allegretto" "allegrettoly" ;
+lin allegretto_Adv = mkAdv "allegretto" ;
+lin allegretto_N = mkN "allegretto" "allegrettos" ;
+lin allegro_A = mkAMost "allegro" "allegroly" ;
+lin allegro_Adv = mkAdv "allegro" ;
+lin allegro_N = mkN "allegro" "allegros" ;
+lin allele_N = mkN "allele" "alleles" ;
+lin allelic_A = mkAMost "allelic" "allelicly" ;
+lin allemande_N = mkN "allemande" "allemandes" ;
+lin allergen_N = mkN "allergen" "allergens" ;
+lin allergenic_A = mkAMost "allergenic" "allergenicly" ;
+lin allergic_A = mkAMost "allergic" "allergicly" ;
+lin allergist_N = mkN "allergist" "allergists" ;
+lin allergology_N = mkN "allergology" "allergologies" ;
+lin allergy_N = mkN "allergy" "allergies" ;
+lin alleviate_V = mkV "alleviate" "alleviated" "alleviated" ;
+lin alleviation_N = mkN "alleviation" "alleviations" ;
+lin alleviative_A = mkAMost "alleviative" "alleviatively" ;
+lin alleviator_N = mkN "alleviator" "alleviators" ;
+lin alley_N = mkN "alley" "alleys" ;
+lin alleyway_N = mkN "alleyway" "alleyways" ;
+lin alliaceous_A = mkAMost "alliaceous" "alliaceously" ;
+lin alliance_N = mkN "alliance" "alliances" ;
+lin allies_N = mkN "allies" "allieses" ;
+lin alligator_N = mkN "alligator" "alligators" ;
+lin alligatored_A = mkAMost "alligatored" "alligatoredly" ;
+lin alligatorfish_N = mkN "alligatorfish" "alligatorfishes" ;
+lin alliteration_N = mkN "alliteration" "alliterations" ;
+lin alliterative_A = mkAMost "alliterative" "alliteratively" ;
+lin alliterator_N = mkN "alliterator" "alliterators" ;
+lin allocable_A = mkAMost "allocable" "allocably" ;
+lin allocate_V = mkV "allocate" "allocated" "allocated" ;
+lin allocation_N = mkN "allocation" "allocations" ;
+lin allocator_N = mkN "allocator" "allocators" ;
+lin allochronic_A = mkAMost "allochronic" "allochronicly" ;
+lin allochthonous_A = mkAMost "allochthonous" "allochthonously" ;
+lin allocution_N = mkN "allocution" "allocutions" ;
+lin allogamous_A = mkAMost "allogamous" "allogamously" ;
+lin allogamy_N = mkN "allogamy" "allogamies" ;
+lin allogeneic_A = mkAMost "allogeneic" "allogeneicly" ;
+lin allograph_N = mkN "allograph" "allographs" ;
+lin allographic_A = mkAMost "allographic" "allographicly" ;
+lin allomerism_N = mkN "allomerism" "allomerisms" ;
+lin allomerous_A = mkAMost "allomerous" "allomerously" ;
+lin allometric_A = mkAMost "allometric" "allometricly" ;
+lin allometry_N = mkN "allometry" "allometries" ;
+lin allomorph_N = mkN "allomorph" "allomorphs" ;
+lin allomorphic_A = mkAMost "allomorphic" "allomorphicly" ;
+lin allopathic_A = mkAMost "allopathic" "allopathicly" ;
+lin allopathy_N = mkN "allopathy" "allopathies" ;
+lin allopatric_A = mkAMost "allopatric" "allopatricly" ;
+lin allopatry_N = mkN "allopatry" "allopatries" ;
+lin allophone_N = mkN "allophone" "allophones" ;
+lin allophonic_A = mkAMost "allophonic" "allophonicly" ;
+lin allopurinol_N = mkN "allopurinol" "allopurinols" ;
+lin allosaur_N = mkN "allosaur" "allosaurs" ;
+lin allot_V = mkV "allot" "allotted" "allotted" ;
+lin allotment_N = mkN "allotment" "allotments" ;
+lin allotrope_N = mkN "allotrope" "allotropes" ;
+lin allotropic_A = mkAMost "allotropic" "allotropicly" ;
+lin allotropy_N = mkN "allotropy" "allotropies" ;
+lin allover_A = mkAMost "allover" "alloverly" ;
+lin allow_V = mkV "allow" "allowed" "allowed" ;
+lin allowable_A = mkAMost "allowable" "allowably" ;
+lin allowance_N = mkN "allowance" "allowances" ;
+lin alloy_N = mkN "alloy" "alloys" ;
lin alloy_V = mkV "alloy" "alloyed" "alloyed" ;
-lin deploy_V = mkV "deploy" "deployed" "deployed" ;
-lin redeploy_V = mkV "redeploy" "redeployed" "redeployed" ; -- compound deploy_V ;
-lin employ_V = mkV "employ" "employed" "employed" ;
+lin allspice_N = mkN "allspice" "allspices" ;
+lin allude_V = mkV "allude" "alluded" "alluded" ;
+lin allure_N = mkN "allure" "allures" ;
+lin allure_V = mkV "allure" "allured" "allured" ;
+lin allurement_N = mkN "allurement" "allurements" ;
+lin alluring_A = mkAMost "alluring" "alluringly" ;
+lin allusion_N = mkN "allusion" "allusions" ;
+lin allusive_A = mkAMost "allusive" "allusively" ;
+lin allusiveness_N = mkN "allusiveness" "allusivenesses" ;
+lin alluvial_A = mkAMost "alluvial" "alluvially" ;
+lin alluvion_N = mkN "alluvion" "alluvions" ;
+lin ally_N = mkN "ally" "allies" ;
+lin ally_V = mkV "ally" "allied" "allied" ;
+lin allyl_N = mkN "allyl" "allyls" ;
+lin allylic_A = mkAMost "allylic" "allylicly" ;
+lin alma_mater_N = mkN "alma mater" "alma maters" ;
+lin almanac_N = mkN "almanac" "almanacs" ;
+lin almandine_N = mkN "almandine" "almandines" ;
+lin almandite_N = mkN "almandite" "almandites" ;
+lin almighty_A = mkAMost "almighty" "almightily" ;
+lin almighty_N = mkN "almighty" "almighties" ;
+lin almond_N = mkN "almond" "almonds" ;
+lin almond_eyed_A = mkAMost "almond-eyed" "almond-eyedly" ;
+lin almoner_N = mkN "almoner" "almoners" ;
+lin almost_Adv = mkAdv "almost" ;
+lin alms_N = mkN "alms" "almses" ;
+lin alms_box_N = mkN "alms-box" "alms-boxes" ;
+lin alms_giving_N = mkN "alms-giving" "alms-givings" ;
+lin alms_house_N = mkN "alms-house" "alms-houses" ;
+lin almsgiver_N = mkN "almsgiver" "almsgivers" ;
+lin alocasia_N = mkN "alocasia" "alocasias" ;
+lin aloe_N = mkN "aloe" "aloes" ;
+lin aloes_N = mkN "aloes" "aloeses" ;
+lin aloft_Adv = mkAdv "aloft" ;
+lin aloha_N = mkN "aloha" "alohas" ;
+lin alone_A = mkAMost "alone" "alone" ;
+lin aloneness_N = mkN "aloneness" "alonenesses" ;
+lin along_Adv = mkAdv "along" ;
+lin along_Prep = mkPrep "along" ;
+lin alongside_Adv = mkAdv "alongside" ;
+lin alongside_Prep = mkPrep "alongside" ;
+lin aloof_A = mkAMost "aloof" "aloofly" ;
+lin aloof_Adv = mkAdv "aloof" ;
+lin aloofness_N = mkN "aloofness" "aloofnesses" ;
+lin alopecia_N = mkN "alopecia" "alopecias" ;
+lin alopecic_A = mkAMost "alopecic" "alopecicly" ;
+lin aloud_Adv = mkAdv "aloud" ;
+lin alp_N = mkN "alp" "alps" ;
+lin alpaca_N = mkN "alpaca" "alpacas" ;
+lin alpenstock_N = mkN "alpenstock" "alpenstocks" ;
+lin alpestrine_A = mkAMost "alpestrine" "alpestrinely" ;
+lin alpha_A = mkA "alpha" "alphaer" "alphaest" "alphaly" ;
+lin alpha_N = mkN "alpha" "alphas" ;
+lin alphabet_N = mkN "alphabet" "alphabets" ;
+lin alphabetic_A = mkAMost "alphabetic" "alphabeticly" ;
+lin alphabetical_A = mkAMost "alphabetical" "alphabetically" ;
+lin alphabetization_N = mkN "alphabetization" "alphabetizations" ;
+lin alphabetized_A = mkAMost "alphabetized" "alphabetizedly" ;
+lin alphabetizer_N = mkN "alphabetizer" "alphabetizers" ;
+lin alphanumeric_A = mkAMost "alphanumeric" "alphanumericly" ;
+lin alphanumerics_N = mkN "alphanumerics" "alphanumericses" ;
+lin alphavirus_N = mkN "alphavirus" "alphaviruses" ;
+lin alpine_A = mkAMost "alpine" "alpinely" ;
+lin alpinist_N = mkN "alpinist" "alpinists" ;
+lin alprazolam_N = mkN "alprazolam" "alprazolams" ;
+lin already_Adv = mkAdv "already" ;
+lin alright_A = mkAMost "alright" "alrightly" ;
+lin alright_Adv = mkAdv "alright" ;
+lin alsatian_N = mkN "alsatian" "alsatians" ;
+lin also_Adv = mkAdv "also" ;
+lin also_ran_N = mkN "also-ran" "also-rans" ;
+lin alstroemeria_N = mkN "alstroemeria" "alstroemerias" ;
+lin altar_N = mkN "altar" "altars" ;
+lin altar_piece_N = mkN "altar-piece" "altar-pieces" ;
+lin altarpiece_N = mkN "altarpiece" "altarpieces" ;
+lin altazimuth_N = mkN "altazimuth" "altazimuths" ;
+lin alter_V = mkV "alter" "altered" "altered" ;
+lin alter_ego_N = mkN "alter ego" "alter egos" ;
+lin alterability_N = mkN "alterability" "alterabilities" ;
+lin alterable_A = mkAMost "alterable" "alterably" ;
+lin alteration_N = mkN "alteration" "alterations" ;
+lin altercation_N = mkN "altercation" "altercations" ;
+lin alternate_A = mkAMost "alternate" "alternately" ;
+lin alternate_V = mkV "alternate" "alternated" "alternated" ;
+lin alternation_N = mkN "alternation" "alternations" ;
+lin alternative_A = mkAMost "alternative" "alternatively" ;
+lin alternative_N = mkN "alternative" "alternatives" ;
+lin alternator_N = mkN "alternator" "alternators" ;
+lin althea_N = mkN "althea" "altheas" ;
+lin altimeter_N = mkN "altimeter" "altimeters" ;
+lin altissimo_A = mkAMost "altissimo" "altissimoly" ;
+lin altitude_N = mkN "altitude" "altitudes" ;
+lin altitudinal_A = mkAMost "altitudinal" "altitudinally" ;
+lin altitudinous_A = mkAMost "altitudinous" "altitudinously" ;
+lin alto_A = mkA "alto" "altoer" "altoest" "altoly" ;
+lin alto_N = mkN "alto" "altos" ;
+lin altocumulus_N = mkN "altocumulus" "altocumuluses" ;
+lin altogether_Adv = mkAdv "altogether" ;
+lin altostratus_N = mkN "altostratus" "altostratuses" ;
+lin altricial_A = mkAMost "altricial" "altricially" ;
+lin altruism_N = mkN "altruism" "altruisms" ;
+lin altruist_N = mkN "altruist" "altruists" ;
+lin altruistic_A = mkAMost "altruistic" "altruisticly" ;
+lin altruistically_Adv = mkAdv "altruistically" ;
+lin alula_N = mkN "alula" "alulas" ;
+lin alular_A = mkAMost "alular" "alularly" ;
+lin alum_N = mkN "alum" "alums" ;
+lin alumina_N = mkN "alumina" "aluminas" ;
+lin aluminate_N = mkN "aluminate" "aluminates" ;
+lin aluminiferous_A = mkAMost "aluminiferous" "aluminiferously" ;
+lin aluminium_N = mkN "aluminium" "aluminiums" ;
+lin aluminous_A = mkAMost "aluminous" "aluminously" ;
+lin aluminum_N = mkN "aluminum" "aluminums" ;
+lin alumna_N = mkN "alumna" "alumnae" ;
+lin alumnus_N = mkN "alumnus" "alumni" ;
+lin alumroot_N = mkN "alumroot" "alumroots" ;
+lin alundum_N = mkN "alundum" "alundums" ;
+lin alveolar_A = mkAMost "alveolar" "alveolarly" ;
+lin alveolar_N = mkN "alveolar" "alveolars" ;
+lin alveolate_A = mkAMost "alveolate" "alveolately" ;
+lin alveolitis_N = mkN "alveolitis" "alveolitises" ;
+lin alveolus_N = mkN "alveolus" "alveoluses" ;
+lin alvine_A = mkAMost "alvine" "alvinely" ;
+lin alyssum_N = mkN "alyssum" "alyssums" ;
+lin amah_N = mkN "amah" "amahs" ;
+lin amain_Adv = mkAdv "amain" ;
+lin amalgam_N = mkN "amalgam" "amalgams" ;
+lin amalgamate_A = mkAMost "amalgamate" "amalgamately" ;
+lin amalgamate_V = mkV "amalgamate" "amalgamated" "amalgamated" ;
+lin amalgamation_N = mkN "amalgamation" "amalgamations" ;
+lin amalgamative_A = mkAMost "amalgamative" "amalgamatively" ;
+lin amalgamator_N = mkN "amalgamator" "amalgamators" ;
+lin amanuensis_N = mkN "amanuensis" "amanuenses" ;
+lin amaranth_N = mkN "amaranth" "amaranths" ;
+lin amaranthine_A = mkAMost "amaranthine" "amaranthinely" ;
+lin amarelle_N = mkN "amarelle" "amarelles" ;
+lin amaretto_N = mkN "amaretto" "amarettoes" ;
+lin amaryllis_N = mkN "amaryllis" "amaryllises" ;
+lin amass_V = mkV "amass" "amassed" "amassed" ;
+lin amastia_N = mkN "amastia" "amastias" ;
+lin amateur_A = mkAMost "amateur" "amateurly" ;
+lin amateur_N = mkN "amateur" "amateurs" ;
+lin amateurish_A = mkAMost "amateurish" "amateurishly" ;
+lin amateurishness_N = mkN "amateurishness" "amateurishnesses" ;
+lin amateurism_N = mkN "amateurism" "amateurisms" ;
+lin amative_A = mkAMost "amative" "amatively" ;
+lin amatory_A = mkAMost "amatory" "amatorily" ;
+lin amaurosis_N = mkN "amaurosis" "amaurosises" ;
+lin amaurotic_A = mkAMost "amaurotic" "amauroticly" ;
+lin amaze_V = mkV "amaze" "amazed" "amazed" ;
+lin amazement_N = mkN "amazement" "amazements" ;
+lin amazing_A = mkAMost "amazing" "amazingly" ;
+lin amazon_N = mkN "amazon" "amazons" ;
+lin ambages_N = mkN "ambages" "ambageses" ;
+lin ambassador_N = mkN "ambassador" "ambassadors" ;
+lin ambassadorial_A = mkAMost "ambassadorial" "ambassadorially" ;
+lin ambassadorship_N = mkN "ambassadorship" "ambassadorships" ;
+lin ambassadress_N = mkN "ambassadress" "ambassadresses" ;
+lin amber_A = mkAMost "amber" "amberly" ;
+lin amber_N = mkN "amber" "ambers" ;
+lin ambergris_N = mkN "ambergris" "ambergrises" ;
+lin amberjack_N = mkN "amberjack" "amberjacks" ;
+lin ambiance_N = mkN "ambiance" "ambiances" ;
+lin ambidexterity_N = mkN "ambidexterity" "ambidexterities" ;
+lin ambidextrous_A = mkAMost "ambidextrous" "ambidextrously" ;
+lin ambience_N = mkN "ambience" "ambiences" ;
+lin ambient_A = mkAMost "ambient" "ambiently" ;
+lin ambiguity_N = mkN "ambiguity" "ambiguities" ;
+lin ambiguous_A = mkAMost "ambiguous" "ambiguously" ;
+lin ambit_N = mkN "ambit" "ambits" ;
+lin ambition_N = mkN "ambition" "ambitions" ;
+lin ambitious_A = mkAMost "ambitious" "ambitiously" ;
+lin ambivalence_N = mkN "ambivalence" "ambivalences" ;
+lin ambivalent_A = mkAMost "ambivalent" "ambivalently" ;
+lin ambiversion_N = mkN "ambiversion" "ambiversions" ;
+lin ambiversive_A = mkAMost "ambiversive" "ambiversively" ;
+lin amble_N = mkN "amble" "ambles" ;
+lin amble_V = mkV "amble" "ambled" "ambled" ;
+lin amblygonite_N = mkN "amblygonite" "amblygonites" ;
+lin amblyopia_N = mkN "amblyopia" "amblyopias" ;
+lin amblyopic_A = mkAMost "amblyopic" "amblyopicly" ;
+lin amboyna_N = mkN "amboyna" "amboynas" ;
+lin ambrosia_N = mkN "ambrosia" "ambrosias" ;
+lin ambrosial_A = mkAMost "ambrosial" "ambrosially" ;
+lin ambulacral_A = mkAMost "ambulacral" "ambulacrally" ;
+lin ambulacrum_N = mkN "ambulacrum" "ambulacrums" ;
+lin ambulance_N = mkN "ambulance" "ambulances" ;
+lin ambulant_A = mkAMost "ambulant" "ambulantly" ;
+lin ambulation_N = mkN "ambulation" "ambulations" ;
+lin ambulatory_A = mkAMost "ambulatory" "ambulatorily" ;
+lin ambulatory_N = mkN "ambulatory" "ambulatories" ;
+lin ambuscade_N = mkN "ambuscade" "ambuscades" ;
+lin ambuscade_V = mkV "ambuscade" "ambuscaded" "ambuscaded" ;
+lin ambush_N = mkN "ambush" "ambushes" ;
+lin ambush_V = mkV "ambush" "ambushed" "ambushed" ;
+lin ambusher_N = mkN "ambusher" "ambushers" ;
+lin ambystomid_N = mkN "ambystomid" "ambystomids" ;
+lin ameba_N = mkN "ameba" "amebas" ;
+lin amebiasis_N = mkN "amebiasis" "amebiasises" ;
+lin ameboid_A = mkAMost "ameboid" "ameboidly" ;
+lin ameer_N = mkN "ameer" "ameers" ;
+lin amelia_N = mkN "amelia" "amelias" ;
+lin ameliorate_V = mkV "ameliorate" "ameliorated" "ameliorated" ;
+lin amelioration_N = mkN "amelioration" "ameliorations" ;
+lin ameloblast_N = mkN "ameloblast" "ameloblasts" ;
+lin amelogenesis_N = mkN "amelogenesis" "amelogenesises" ;
+lin amenability_N = mkN "amenability" "amenabilities" ;
+lin amenable_A = mkAMost "amenable" "amenably" ;
+lin amend_V = mkV "amend" "amended" "amended" ;
+lin amendable_A = mkAMost "amendable" "amendably" ;
+lin amendatory_A = mkAMost "amendatory" "amendatorily" ;
+lin amendment_N = mkN "amendment" "amendments" ;
+lin amenity_N = mkN "amenity" "amenities" ;
+lin amenorrhea_N = mkN "amenorrhea" "amenorrheas" ;
+lin amenorrheic_A = mkAMost "amenorrheic" "amenorrheicly" ;
+lin amentiferous_A = mkAMost "amentiferous" "amentiferously" ;
+lin amerciable_A = mkAMost "amerciable" "amerciably" ;
+lin americanism_N = mkN "americanism" "americanisms" ;
+lin americanize_V = mkV "americanize" "americanized" "americanized" ;
+lin americium_N = mkN "americium" "americiums" ;
+lin ametabolic_A = mkAMost "ametabolic" "ametabolicly" ;
+lin amethyst_A = mkAMost "amethyst" "amethystly" ;
+lin amethyst_N = mkN "amethyst" "amethysts" ;
+lin amethystine_A = mkAMost "amethystine" "amethystinely" ;
+lin ametria_N = mkN "ametria" "ametrias" ;
+lin ametropia_N = mkN "ametropia" "ametropias" ;
+lin ametropic_A = mkAMost "ametropic" "ametropicly" ;
+lin amharic_N = mkN "amharic" "amharics" ;
+lin amiability_N = mkN "amiability" "amiabilities" ;
+lin amiable_A = mkAMost "amiable" "amiably" ;
+lin amicability_N = mkN "amicability" "amicabilities" ;
+lin amicable_A = mkAMost "amicable" "amicably" ;
+lin amid_Prep = mkPrep "amid" ;
+lin amide_N = mkN "amide" "amides" ;
+lin amidship_A = mkAMost "amidship" "amidshiply" ;
+lin amidship_Adv = mkAdv "amidship" ;
+lin amidships_Adv = mkAdv "amidships" ;
+lin amidst_Prep = mkPrep "amidst" ;
+lin amigo_N = mkN "amigo" "amigoes" ;
+lin amine_N = mkN "amine" "amines" ;
+lin amino_A = mkAMost "amino" "aminoly" ;
+lin amino_N = mkN "amino" "aminoes" ;
+lin aminoaciduria_N = mkN "aminoaciduria" "aminoacidurias" ;
+lin aminomethane_N = mkN "aminomethane" "aminomethanes" ;
+lin aminophylline_N = mkN "aminophylline" "aminophyllines" ;
+lin aminopyrine_N = mkN "aminopyrine" "aminopyrines" ;
+lin amiodarone_N = mkN "amiodarone" "amiodarones" ;
+lin amir_N = mkN "amir" "amirs" ;
+lin amiss_A = mkAMost "amiss" "amissly" ;
+lin amiss_Adv = mkAdv "amiss" ;
+lin amitosis_N = mkN "amitosis" "amitosises" ;
+lin amitotic_A = mkAMost "amitotic" "amitoticly" ;
+lin amitriptyline_N = mkN "amitriptyline" "amitriptylines" ;
+lin amity_N = mkN "amity" "amities" ;
+lin ammeter_N = mkN "ammeter" "ammeters" ;
+lin ammine_N = mkN "ammine" "ammines" ;
+lin ammino_A = mkAMost "ammino" "amminoly" ;
+lin ammobium_N = mkN "ammobium" "ammobiums" ;
+lin ammonia_N = mkN "ammonia" "ammonias" ;
+lin ammoniac_A = mkAMost "ammoniac" "ammoniacly" ;
+lin ammoniac_N = mkN "ammoniac" "ammoniacs" ;
+lin ammoniated_A = mkAMost "ammoniated" "ammoniatedly" ;
+lin ammonification_N = mkN "ammonification" "ammonifications" ;
+lin ammonite_N = mkN "ammonite" "ammonites" ;
+lin ammonitic_A = mkAMost "ammonitic" "ammoniticly" ;
+lin ammonium_N = mkN "ammonium" "ammoniums" ;
+lin ammoniuria_N = mkN "ammoniuria" "ammoniurias" ;
+lin ammunition_N = mkN "ammunition" "ammunitions" ;
+lin amnesia_N = mkN "amnesia" "amnesias" ;
+lin amnesic_A = mkAMost "amnesic" "amnesicly" ;
+lin amnesic_N = mkN "amnesic" "amnesics" ;
+lin amnestic_A = mkAMost "amnestic" "amnesticly" ;
+lin amnesty_N = mkN "amnesty" "amnesties" ;
+lin amniocentesis_N = mkN "amniocentesis" "amniocentesises" ;
+lin amnion_N = mkN "amnion" "amnions" ;
+lin amniote_N = mkN "amniote" "amniotes" ;
+lin amniotic_A = mkAMost "amniotic" "amnioticly" ;
+lin amobarbital_N = mkN "amobarbital" "amobarbitals" ;
+lin amoeba_N = mkN "amoeba" "amoebas" ;
+lin amoebic_A = mkAMost "amoebic" "amoebicly" ;
+lin amok_Adv = mkAdv "amok" ;
+lin among_Prep = mkPrep "among" ;
+lin amongst_Prep = mkPrep "amongst" ;
+lin amora_N = mkN "amora" "amoras" ;
+lin amoral_A = mkAMost "amoral" "amorally" ;
+lin amoralism_N = mkN "amoralism" "amoralisms" ;
+lin amoralist_N = mkN "amoralist" "amoralists" ;
+lin amorality_N = mkN "amorality" "amoralities" ;
+lin amorist_N = mkN "amorist" "amorists" ;
+lin amoristic_A = mkAMost "amoristic" "amoristicly" ;
+lin amorous_A = mkAMost "amorous" "amorously" ;
+lin amorousness_N = mkN "amorousness" "amorousnesses" ;
+lin amorpha_N = mkN "amorpha" "amorphas" ;
+lin amorphophallus_N = mkN "amorphophallus" "amorphophalluses" ;
+lin amorphous_A = mkAMost "amorphous" "amorphously" ;
+lin amort_A = mkAMost "amort" "amortly" ;
+lin amortization_N = mkN "amortization" "amortizations" ;
+lin amortize_V = mkV "amortize" "amortized" "amortized" ;
+lin amount_N = mkN "amount" "amounts" ;
+lin amount_V = mkV "amount" "amounted" "amounted" ;
+lin amour_N = mkN "amour" "amours" ;
+lin amour_propre_N = mkN "amour-propre" "amour-propres" ;
+lin amoxicillin_N = mkN "amoxicillin" "amoxicillins" ;
+lin amp_N = mkN "amp" "amps" ;
+lin amperage_N = mkN "amperage" "amperages" ;
+lin ampere_N = mkN "ampere" "amperes" ;
+lin ampersand_N = mkN "ampersand" "ampersands" ;
+lin amphetamine_N = mkN "amphetamine" "amphetamines" ;
+lin amphibia_N = mkN "amphibia" "amphibias" ;
+lin amphibian_N = mkN "amphibian" "amphibians" ;
+lin amphibiotic_A = mkAMost "amphibiotic" "amphibioticly" ;
+lin amphibious_A = mkAMost "amphibious" "amphibiously" ;
+lin amphibole_N = mkN "amphibole" "amphiboles" ;
+lin amphibolite_N = mkN "amphibolite" "amphibolites" ;
+lin amphibology_N = mkN "amphibology" "amphibologies" ;
+lin amphibrach_N = mkN "amphibrach" "amphibraches" ;
+lin amphictyony_N = mkN "amphictyony" "amphictyonies" ;
+lin amphidiploid_N = mkN "amphidiploid" "amphidiploids" ;
+lin amphidiploidy_N = mkN "amphidiploidy" "amphidiploidies" ;
+lin amphigory_N = mkN "amphigory" "amphigories" ;
+lin amphimixis_N = mkN "amphimixis" "amphimixises" ;
+lin amphipod_N = mkN "amphipod" "amphipods" ;
+lin amphiprostylar_A = mkAMost "amphiprostylar" "amphiprostylarly" ;
+lin amphisbaena_N = mkN "amphisbaena" "amphisbaenas" ;
+lin amphistylar_A = mkAMost "amphistylar" "amphistylarly" ;
+lin amphitheater_N = mkN "amphitheater" "amphitheaters" ;
+lin amphitheatre_N = mkN "amphitheatre" "amphitheatres" ;
+lin amphitheatric_A = mkAMost "amphitheatric" "amphitheatricly" ;
+lin amphitropous_A = mkAMost "amphitropous" "amphitropously" ;
+lin amphiuma_N = mkN "amphiuma" "amphiumas" ;
+lin amphora_N = mkN "amphora" "amphoras" ;
+lin amphoric_A = mkAMost "amphoric" "amphoricly" ;
+lin amphoteric_A = mkAMost "amphoteric" "amphotericly" ;
+lin amphotericin_N = mkN "amphotericin" "amphotericins" ;
+lin ampicillin_N = mkN "ampicillin" "ampicillins" ;
+lin ample_A = mkA "ample" "ampler" "amplest" "amply" ;
+lin ampleness_N = mkN "ampleness" "amplenesses" ;
+lin amplification_N = mkN "amplification" "amplifications" ;
+lin amplifier_N = mkN "amplifier" "amplifiers" ;
+lin amplify_V = mkV "amplify" "amplified" "amplified" ;
+lin amplitude_N = mkN "amplitude" "amplitudes" ;
+lin ampoule_N = mkN "ampoule" "ampoules" ;
+lin ampulla_N = mkN "ampulla" "ampullas" ;
+lin ampullar_A = mkAMost "ampullar" "ampullarly" ;
+lin amputate_V = mkV "amputate" "amputated" "amputated" ;
+lin amputation_N = mkN "amputation" "amputations" ;
+lin amputator_N = mkN "amputator" "amputators" ;
+lin amputee_N = mkN "amputee" "amputees" ;
+lin amrinone_N = mkN "amrinone" "amrinones" ;
+lin amuck_A = mkAMost "amuck" "amuckly" ;
+lin amuck_Adv = mkAdv "amuck" ;
+lin amulet_N = mkN "amulet" "amulets" ;
+lin amuse_V = mkV "amuse" "amused" "amused" ;
+lin amusement_N = mkN "amusement" "amusements" ;
+lin amusing_A = mkAMost "amusing" "amusingly" ;
+lin amygdala_N = mkN "amygdala" "amygdalas" ;
+lin amygdalin_N = mkN "amygdalin" "amygdalins" ;
+lin amygdaline_A = mkAMost "amygdaline" "amygdalinely" ;
+lin amygdaloid_N = mkN "amygdaloid" "amygdaloids" ;
+lin amygdalotomy_N = mkN "amygdalotomy" "amygdalotomies" ;
+lin amyl_N = mkN "amyl" "amyls" ;
+lin amylase_N = mkN "amylase" "amylases" ;
+lin amyloid_N = mkN "amyloid" "amyloids" ;
+lin amyloidosis_N = mkN "amyloidosis" "amyloidosises" ;
+lin amylolysis_N = mkN "amylolysis" "amylolysises" ;
+lin amylolytic_A = mkAMost "amylolytic" "amylolyticly" ;
+lin amyotrophia_N = mkN "amyotrophia" "amyotrophias" ;
+lin amyxia_N = mkN "amyxia" "amyxias" ;
+lin ana_N = mkN "ana" "anas" ;
+lin anabatic_A = mkAMost "anabatic" "anabaticly" ;
+lin anabiosis_N = mkN "anabiosis" "anabiosises" ;
+lin anabiotic_A = mkAMost "anabiotic" "anabioticly" ;
+lin anabolic_A = mkAMost "anabolic" "anabolicly" ;
+lin anabolism_N = mkN "anabolism" "anabolisms" ;
+lin anachronic_A = mkAMost "anachronic" "anachronicly" ;
+lin anachronism_N = mkN "anachronism" "anachronisms" ;
+lin anachronistic_A = mkAMost "anachronistic" "anachronisticly" ;
+lin anachronistically_Adv = mkAdv "anachronistically" ;
+lin anaclinal_A = mkAMost "anaclinal" "anaclinally" ;
+lin anaclisis_N = mkN "anaclisis" "anaclisises" ;
+lin anaclitic_A = mkAMost "anaclitic" "anacliticly" ;
+lin anacoluthia_N = mkN "anacoluthia" "anacoluthias" ;
+lin anacoluthic_A = mkAMost "anacoluthic" "anacoluthicly" ;
+lin anaconda_N = mkN "anaconda" "anacondas" ;
+lin anadiplosis_N = mkN "anadiplosis" "anadiplosises" ;
+lin anadromous_A = mkAMost "anadromous" "anadromously" ;
+lin anaemia_N = mkN "anaemia" "anaemias" ;
+lin anaemic_A = mkAMost "anaemic" "anaemicly" ;
+lin anaerobe_N = mkN "anaerobe" "anaerobes" ;
+lin anaerobic_A = mkAMost "anaerobic" "anaerobicly" ;
+lin anaesthesia_N = mkN "anaesthesia" "anaesthesias" ;
+lin anaesthetic_A = mkAMost "anaesthetic" "anaestheticly" ;
+lin anaesthetic_N = mkN "anaesthetic" "anaesthetics" ;
+lin anaesthetist_N = mkN "anaesthetist" "anaesthetists" ;
+lin anaesthetize_V = mkV "anaesthetize" "anaesthetized" "anaesthetized" ;
+lin anaglyph_N = mkN "anaglyph" "anaglyphs" ;
+lin anaglyphic_A = mkAMost "anaglyphic" "anaglyphicly" ;
+lin anaglyphy_N = mkN "anaglyphy" "anaglyphies" ;
+lin anagnost_N = mkN "anagnost" "anagnosts" ;
+lin anagoge_N = mkN "anagoge" "anagoges" ;
+lin anagogic_A = mkAMost "anagogic" "anagogicly" ;
+lin anagram_N = mkN "anagram" "anagrams" ;
+lin anagrammatic_A = mkAMost "anagrammatic" "anagrammaticly" ;
+lin anagrams_N = mkN "anagrams" "anagramses" ;
+lin anal_A = mkAMost "anal" "anally" ;
+lin analbuminemia_N = mkN "analbuminemia" "analbuminemias" ;
+lin analects_N = mkN "analects" "analectses" ;
+lin analeptic_A = mkAMost "analeptic" "analepticly" ;
+lin analeptic_N = mkN "analeptic" "analeptics" ;
+lin analgesia_N = mkN "analgesia" "analgesias" ;
+lin analgesic_A = mkAMost "analgesic" "analgesicly" ;
+lin analgesic_N = mkN "analgesic" "analgesics" ;
+lin analog_N = mkN "analog" "analogs" ;
+lin analogical_A = mkAMost "analogical" "analogically" ;
+lin analogist_N = mkN "analogist" "analogists" ;
+lin analogous_A = mkAMost "analogous" "analogously" ;
+lin analogue_A = mkAMost "analogue" "analoguely" ;
+lin analogue_N = mkN "analogue" "analogues" ;
+lin analogy_N = mkN "analogy" "analogies" ;
+lin analphabet_N = mkN "analphabet" "analphabets" ;
+lin analphabetic_A = mkAMost "analphabetic" "analphabeticly" ;
+lin analysand_N = mkN "analysand" "analysands" ;
+lin analyse_V = mkV "analyse" "analysed" "analysed" ;
+lin analysis_N = mkN "analysis" "analyses" ;
+lin analyst_N = mkN "analyst" "analysts" ;
+lin analytic_A = mkAMost "analytic" "analyticly" ;
+lin analytical_A = mkAMost "analytical" "analytically" ;
+lin analyticity_N = mkN "analyticity" "analyticities" ;
+lin analyzable_A = mkAMost "analyzable" "analyzably" ;
+lin analyze_V = mkV "analyze" "analyzed" "analyzed" ;
+lin analyzer_N = mkN "analyzer" "analyzers" ;
+lin anamnestic_A = mkAMost "anamnestic" "anamnesticly" ;
+lin anamorphic_A = mkAMost "anamorphic" "anamorphicly" ;
+lin anamorphism_N = mkN "anamorphism" "anamorphisms" ;
+lin anamorphosis_N = mkN "anamorphosis" "anamorphosises" ;
+lin anapaest_N = mkN "anapaest" "anapaests" ;
+lin anapaestic_A = mkAMost "anapaestic" "anapaesticly" ;
+lin anapest_N = mkN "anapest" "anapests" ;
+lin anapestic_A = mkAMost "anapestic" "anapesticly" ;
+lin anaphase_N = mkN "anaphase" "anaphases" ;
+lin anaphasic_A = mkAMost "anaphasic" "anaphasicly" ;
+lin anaphor_N = mkN "anaphor" "anaphors" ;
+lin anaphora_N = mkN "anaphora" "anaphoras" ;
+lin anaphoric_A = mkAMost "anaphoric" "anaphoricly" ;
+lin anaphrodisia_N = mkN "anaphrodisia" "anaphrodisias" ;
+lin anaphrodisiac_A = mkAMost "anaphrodisiac" "anaphrodisiacly" ;
+lin anaphylactic_A = mkAMost "anaphylactic" "anaphylacticly" ;
+lin anaphylaxis_N = mkN "anaphylaxis" "anaphylaxises" ;
+lin anaplasia_N = mkN "anaplasia" "anaplasias" ;
+lin anaplasmosis_N = mkN "anaplasmosis" "anaplasmosises" ;
+lin anaplastic_A = mkAMost "anaplastic" "anaplasticly" ;
+lin anapsid_N = mkN "anapsid" "anapsids" ;
+lin anarchic_A = mkAMost "anarchic" "anarchicly" ;
+lin anarchically_Adv = mkAdv "anarchically" ;
+lin anarchism_N = mkN "anarchism" "anarchisms" ;
+lin anarchist_N = mkN "anarchist" "anarchists" ;
+lin anarchistic_A = mkAMost "anarchistic" "anarchisticly" ;
+lin anarchy_N = mkN "anarchy" "anarchies" ;
+lin anarthria_N = mkN "anarthria" "anarthrias" ;
+lin anasarca_N = mkN "anasarca" "anasarcas" ;
+lin anasarcous_A = mkAMost "anasarcous" "anasarcously" ;
+lin anaspid_N = mkN "anaspid" "anaspids" ;
+lin anastalsis_N = mkN "anastalsis" "anastalsises" ;
+lin anastigmat_N = mkN "anastigmat" "anastigmats" ;
+lin anastigmatic_A = mkAMost "anastigmatic" "anastigmaticly" ;
+lin anastomosis_N = mkN "anastomosis" "anastomosises" ;
+lin anastomotic_A = mkAMost "anastomotic" "anastomoticly" ;
+lin anastrophe_N = mkN "anastrophe" "anastrophes" ;
+lin anastylosis_N = mkN "anastylosis" "anastylosises" ;
+lin anathema_N = mkN "anathema" "anathemas" ;
+lin anathematization_N = mkN "anathematization" "anathematizations" ;
+lin anathematize_V = mkV "anathematize" "anathematized" "anathematized" ;
+lin anatomic_A = mkAMost "anatomic" "anatomicly" ;
+lin anatomical_A = mkAMost "anatomical" "anatomically" ;
+lin anatomist_N = mkN "anatomist" "anatomists" ;
+lin anatomy_N = mkN "anatomy" "anatomies" ;
+lin anatotitan_N = mkN "anatotitan" "anatotitans" ;
+lin anatoxin_N = mkN "anatoxin" "anatoxins" ;
+lin anatropous_A = mkAMost "anatropous" "anatropously" ;
+lin ancestor_N = mkN "ancestor" "ancestors" ;
+lin ancestral_A = mkAMost "ancestral" "ancestrally" ;
+lin ancestress_N = mkN "ancestress" "ancestresses" ;
+lin ancestry_N = mkN "ancestry" "ancestries" ;
+lin anchor_N = mkN "anchor" "anchors" ;
+lin anchor_V = mkV "anchor" "anchored" "anchored" ;
+lin anchorage_N = mkN "anchorage" "anchorages" ;
+lin anchorite_N = mkN "anchorite" "anchorites" ;
+lin anchoritic_A = mkAMost "anchoritic" "anchoriticly" ;
+lin anchorman_N = mkN "anchorman" "anchormen" ;
+lin anchovy_N = mkN "anchovy" "anchovies" ;
+lin anchusa_N = mkN "anchusa" "anchusas" ;
+lin ancient_A = mkAMost "ancient" "anciently" ;
+lin ancient_N = mkN "ancient" "ancients" ;
+lin ancientness_N = mkN "ancientness" "ancientnesses" ;
+lin ancients_N = mkN "ancients" "ancientses" ;
+lin ancillary_A = mkAMost "ancillary" "ancillarily" ;
+lin andante_A = mkAMost "andante" "andantely" ;
+lin andante_Adv = mkAdv "andante" ;
+lin andante_N = mkN "andante" "andantes" ;
+lin andantino_A = mkAMost "andantino" "andantinoly" ;
+lin andesite_N = mkN "andesite" "andesites" ;
+lin andiron_N = mkN "andiron" "andirons" ;
+lin andorran_A = mkAMost "andorran" "andorranly" ;
+lin andorran_N = mkN "andorran" "andorrans" ;
+lin andradite_N = mkN "andradite" "andradites" ;
+lin andrena_N = mkN "andrena" "andrenas" ;
+lin androecium_N = mkN "androecium" "androeciums" ;
+lin androgen_N = mkN "androgen" "androgens" ;
+lin androgenesis_N = mkN "androgenesis" "androgenesises" ;
+lin androgenetic_A = mkAMost "androgenetic" "androgeneticly" ;
+lin androgenic_A = mkAMost "androgenic" "androgenicly" ;
+lin androglossia_N = mkN "androglossia" "androglossias" ;
+lin androgynous_A = mkAMost "androgynous" "androgynously" ;
+lin androgyny_N = mkN "androgyny" "androgynies" ;
+lin android_N = mkN "android" "androids" ;
+lin andromeda_N = mkN "andromeda" "andromedas" ;
+lin androphobia_N = mkN "androphobia" "androphobias" ;
+lin androsterone_N = mkN "androsterone" "androsterones" ;
+lin andryala_N = mkN "andryala" "andryalas" ;
+lin anecdotal_A = mkAMost "anecdotal" "anecdotally" ;
+lin anecdote_N = mkN "anecdote" "anecdotes" ;
+lin anecdotic_A = mkAMost "anecdotic" "anecdoticly" ;
+lin anecdotist_N = mkN "anecdotist" "anecdotists" ;
+lin anechoic_A = mkAMost "anechoic" "anechoicly" ;
+lin anemia_N = mkN "anemia" "anemias" ;
+lin anemic_A = mkAMost "anemic" "anemicly" ;
+lin anemographic_A = mkAMost "anemographic" "anemographicly" ;
+lin anemography_N = mkN "anemography" "anemographies" ;
+lin anemometer_N = mkN "anemometer" "anemometers" ;
+lin anemometric_A = mkAMost "anemometric" "anemometricly" ;
+lin anemometry_N = mkN "anemometry" "anemometries" ;
+lin anemone_N = mkN "anemone" "anemones" ;
+lin anemophilous_A = mkAMost "anemophilous" "anemophilously" ;
+lin anencephalic_A = mkAMost "anencephalic" "anencephalicly" ;
+lin anencephaly_N = mkN "anencephaly" "anencephalies" ;
+lin anenst_Prep = mkPrep "anenst" ;
+lin anent_Prep = mkPrep "anent" ;
+lin anergy_N = mkN "anergy" "anergies" ;
+lin aneroid_A = mkAMost "aneroid" "aneroidly" ;
+lin aneroid_N = mkN "aneroid" "aneroids" ;
+lin anesthesia_N = mkN "anesthesia" "anesthesias" ;
+lin anesthesiologist_N = mkN "anesthesiologist" "anesthesiologists" ;
+lin anesthesiology_N = mkN "anesthesiology" "anesthesiologies" ;
+lin anesthetic_A = mkAMost "anesthetic" "anestheticly" ;
+lin anesthetic_N = mkN "anesthetic" "anesthetics" ;
+lin anesthetist_N = mkN "anesthetist" "anesthetists" ;
+lin anesthetize_V = mkV "anesthetize" "anesthetized" "anesthetized" ;
+lin anesthyl_N = mkN "anesthyl" "anesthyls" ;
+lin anestrous_A = mkAMost "anestrous" "anestrously" ;
+lin anestrus_N = mkN "anestrus" "anestruses" ;
+lin aneuploid_A = mkAMost "aneuploid" "aneuploidly" ;
+lin aneuploidy_N = mkN "aneuploidy" "aneuploidies" ;
+lin aneurysm_N = mkN "aneurysm" "aneurysms" ;
+lin aneurysmal_A = mkAMost "aneurysmal" "aneurysmally" ;
+lin anew_Adv = mkAdv "anew" ;
+lin anfractuous_A = mkAMost "anfractuous" "anfractuously" ;
+lin angel_N = mkN "angel" "angels" ;
+lin angelfish_N = mkN "angelfish" "angelfishes" ;
+lin angelic_A = mkAMost "angelic" "angelicly" ;
+lin angelica_N = mkN "angelica" "angelicas" ;
+lin angelically_Adv = mkAdv "angelically" ;
+lin angelim_N = mkN "angelim" "angelims" ;
+lin angelology_N = mkN "angelology" "angelologies" ;
+lin angelus_N = mkN "angelus" "angeluses" ;
+lin anger_N = mkN "anger" "angers" ;
+lin anger_V = mkV "anger" "angered" "angered" ;
+lin angiitis_N = mkN "angiitis" "angiitises" ;
+lin angina_N = mkN "angina" "anginas" ;
+lin anginal_A = mkAMost "anginal" "anginally" ;
+lin angiocardiogram_N = mkN "angiocardiogram" "angiocardiograms" ;
+lin angiocarp_N = mkN "angiocarp" "angiocarps" ;
+lin angiocarpic_A = mkAMost "angiocarpic" "angiocarpicly" ;
+lin angioedema_N = mkN "angioedema" "angioedemas" ;
+lin angiogenesis_N = mkN "angiogenesis" "angiogenesises" ;
+lin angiogram_N = mkN "angiogram" "angiograms" ;
+lin angiography_N = mkN "angiography" "angiographies" ;
+lin angiologist_N = mkN "angiologist" "angiologists" ;
+lin angiology_N = mkN "angiology" "angiologies" ;
+lin angioma_N = mkN "angioma" "angiomas" ;
+lin angiomatous_A = mkAMost "angiomatous" "angiomatously" ;
+lin angiopathy_N = mkN "angiopathy" "angiopathies" ;
+lin angioplasty_N = mkN "angioplasty" "angioplasties" ;
+lin angiopteris_N = mkN "angiopteris" "angiopterises" ;
+lin angiosarcoma_N = mkN "angiosarcoma" "angiosarcomas" ;
+lin angioscope_N = mkN "angioscope" "angioscopes" ;
+lin angiosperm_N = mkN "angiosperm" "angiosperms" ;
+lin angiospermous_A = mkAMost "angiospermous" "angiospermously" ;
+lin angiotelectasia_N = mkN "angiotelectasia" "angiotelectasias" ;
+lin angiotensin_N = mkN "angiotensin" "angiotensins" ;
+lin angle_N = mkN "angle" "angles" ;
+lin angle_V = mkV "angle" "angled" "angled" ;
+lin angle_dozer_N = mkN "angle-dozer" "angle-dozers" ;
+lin angle_iron_N = mkN "angle-iron" "angle-irons" ;
+lin angle_park_V = mkV "angle-park" "angle-parked" "angle-parked" ;
+lin angledozer_N = mkN "angledozer" "angledozers" ;
+lin angler_N = mkN "angler" "anglers" ;
+lin anglewing_N = mkN "anglewing" "anglewings" ;
+lin anglican_A = mkAMost "anglican" "anglicanly" ;
+lin anglican_N = mkN "anglican" "anglicans" ;
+lin anglicism_N = mkN "anglicism" "anglicisms" ;
+lin anglicize_V = mkV "anglicize" "anglicized" "anglicized" ;
+lin angling_N = mkN "angling" "anglings" ;
+lin anglo_catholic_A = mkAMost "anglo-catholic" "anglo-catholicly" ;
+lin anglo_catholic_N = mkN "anglo-catholic" "anglo-catholics" ;
+lin anglo_indian_A = mkAMost "anglo-indian" "anglo-indianly" ;
+lin anglo_indian_N = mkN "anglo-indian" "anglo-indians" ;
+lin anglo_saxon_A = mkAMost "anglo-saxon" "anglo-saxonly" ;
+lin anglo_saxon_N = mkN "anglo-saxon" "anglo-saxons" ;
+lin anglomania_N = mkN "anglomania" "anglomanias" ;
+lin anglophil_N = mkN "anglophil" "anglophils" ;
+lin anglophile_N = mkN "anglophile" "anglophiles" ;
+lin anglophobe_N = mkN "anglophobe" "anglophobes" ;
+lin anglophobia_N = mkN "anglophobia" "anglophobias" ;
+lin angolan_A = mkAMost "angolan" "angolanly" ;
+lin angolan_N = mkN "angolan" "angolans" ;
+lin angora_N = mkN "angora" "angoras" ;
+lin angostura_N = mkN "angostura" "angosturas" ;
+lin angrecum_N = mkN "angrecum" "angrecums" ;
+lin angry_A = mkA "angry" "angrier" "angriest" "angrily" ;
+lin angst_N = mkN "angst" "angsts" ;
+lin angstrom_N = mkN "angstrom" "angstroms" ;
+lin anguillan_A = mkAMost "anguillan" "anguillanly" ;
+lin anguillan_N = mkN "anguillan" "anguillans" ;
+lin anguine_A = mkAMost "anguine" "anguinely" ;
+lin anguish_N = mkN "anguish" "anguishes" ;
+lin anguished_A = mkAMost "anguished" "anguishedly" ;
+lin angular_A = mkAMost "angular" "angularly" ;
+lin angularity_N = mkN "angularity" "angularities" ;
+lin angulation_N = mkN "angulation" "angulations" ;
+lin angwantibo_N = mkN "angwantibo" "angwantiboes" ;
+lin anhedonia_N = mkN "anhedonia" "anhedonias" ;
+lin anhidrosis_N = mkN "anhidrosis" "anhidrosises" ;
+lin anhydride_N = mkN "anhydride" "anhydrides" ;
+lin anhydrous_A = mkAMost "anhydrous" "anhydrously" ;
+lin ani_N = mkN "ani" "anis" ;
+lin anicteric_A = mkAMost "anicteric" "anictericly" ;
+lin anil_N = mkN "anil" "anils" ;
+lin anile_A = mkAMost "anile" "anilely" ;
+lin aniline_N = mkN "aniline" "anilines" ;
+lin anima_N = mkN "anima" "animas" ;
+lin animadversion_N = mkN "animadversion" "animadversions" ;
+lin animadvert_V = mkV "animadvert" "animadverted" "animadverted" ;
+lin animal_N = mkN "animal" "animals" ;
+lin animalcule_N = mkN "animalcule" "animalcules" ;
+lin animalism_N = mkN "animalism" "animalisms" ;
+lin animalistic_A = mkAMost "animalistic" "animalisticly" ;
+lin animality_N = mkN "animality" "animalities" ;
+lin animalization_N = mkN "animalization" "animalizations" ;
+lin animate_A = mkAMost "animate" "animately" ;
+lin animate_V = mkV "animate" "animated" "animated" ;
+lin animatedly_A = mkAMost "animatedly" "animatedlily" ;
+lin animatedly_Adv = mkAdv "animatedly" ;
+lin animateness_N = mkN "animateness" "animatenesses" ;
+lin animating_A = mkAMost "animating" "animatingly" ;
+lin animation_N = mkN "animation" "animations" ;
+lin animatism_N = mkN "animatism" "animatisms" ;
+lin animatistic_A = mkAMost "animatistic" "animatisticly" ;
+lin animator_N = mkN "animator" "animators" ;
+lin animatronics_N = mkN "animatronics" "animatronicses" ;
+lin anime_N = mkN "anime" "animes" ;
+lin animism_N = mkN "animism" "animisms" ;
+lin animist_A = mkAMost "animist" "animistly" ;
+lin animist_N = mkN "animist" "animists" ;
+lin animosity_N = mkN "animosity" "animosities" ;
+lin animus_N = mkN "animus" "animuses" ;
+lin anion_N = mkN "anion" "anions" ;
+lin anionic_A = mkAMost "anionic" "anionicly" ;
+lin anise_N = mkN "anise" "anises" ;
+lin aniseed_N = mkN "aniseed" "aniseeds" ;
+lin aniseikonia_N = mkN "aniseikonia" "aniseikonias" ;
+lin aniseikonic_A = mkAMost "aniseikonic" "aniseikonicly" ;
+lin anisette_N = mkN "anisette" "anisettes" ;
+lin anisogamete_N = mkN "anisogamete" "anisogametes" ;
+lin anisogametic_A = mkAMost "anisogametic" "anisogameticly" ;
+lin anisogamic_A = mkAMost "anisogamic" "anisogamicly" ;
+lin anisogamy_N = mkN "anisogamy" "anisogamies" ;
+lin anisometric_A = mkAMost "anisometric" "anisometricly" ;
+lin anisometropia_N = mkN "anisometropia" "anisometropias" ;
+lin anisometropic_A = mkAMost "anisometropic" "anisometropicly" ;
+lin anisotropic_A = mkAMost "anisotropic" "anisotropicly" ;
+lin anisotropically_Adv = mkAdv "anisotropically" ;
+lin anisotropy_N = mkN "anisotropy" "anisotropies" ;
+lin anjou_N = mkN "anjou" "anjous" ;
+lin ankle_N = mkN "ankle" "ankles" ;
+lin anklebone_N = mkN "anklebone" "anklebones" ;
+lin anklet_N = mkN "anklet" "anklets" ;
+lin ankus_N = mkN "ankus" "ankuses" ;
+lin ankylosaur_N = mkN "ankylosaur" "ankylosaurs" ;
+lin ankylosis_N = mkN "ankylosis" "ankylosises" ;
+lin ankylotic_A = mkAMost "ankylotic" "ankyloticly" ;
+lin anna_N = mkN "anna" "annas" ;
+lin annalist_N = mkN "annalist" "annalists" ;
+lin annalistic_A = mkAMost "annalistic" "annalisticly" ;
+lin annals_N = mkN "annals" "annalses" ;
+lin anneal_V = mkV "anneal" "annealed" "annealed" ;
+lin annealing_N = mkN "annealing" "annealings" ;
+lin annelid_A = mkAMost "annelid" "annelidly" ;
+lin annelid_N = mkN "annelid" "annelids" ;
+lin annex_N = mkN "annex" "annexes" ;
+lin annex_V = mkV "annex" "annexed" "annexed" ;
+lin annexation_N = mkN "annexation" "annexations" ;
+lin annexational_A = mkAMost "annexational" "annexationally" ;
+lin annexe_N = mkN "annexe" "annexes" ;
+lin annihilate_V = mkV "annihilate" "annihilated" "annihilated" ;
+lin annihilating_A = mkAMost "annihilating" "annihilatingly" ;
+lin annihilation_N = mkN "annihilation" "annihilations" ;
+lin annihilative_A = mkAMost "annihilative" "annihilatively" ;
+lin annihilator_N = mkN "annihilator" "annihilators" ;
+lin anniversary_N = mkN "anniversary" "anniversaries" ;
+lin annotate_V = mkV "annotate" "annotated" "annotated" ;
+lin annotation_N = mkN "annotation" "annotations" ;
+lin annotator_N = mkN "annotator" "annotators" ;
+lin announce_V = mkV "announce" "announced" "announced" ;
+lin announcement_N = mkN "announcement" "announcements" ;
+lin announcer_N = mkN "announcer" "announcers" ;
lin annoy_V = mkV "annoy" "annoyed" "annoyed" ;
-lin destroy_V = mkV "destroy" "destroyed" "destroyed" ;
-lin toy_V = mkV "toy" "toyed" "toyed" ;
-lin buoy_V = mkV "buoy" "buoyed" "buoyed" ;
-lin convoy_V = mkV "convoy" "convoyed" "convoyed" ;
-lin copy_V = mkV "copy" "copied" "copied" ;
-lin photocopy_V = mkV "photocopy" "photocopied" "photocopied" ; -- compound copy_V ;
-lin spy_V = mkV "spy" "spied" "spied" ;
-lin espy_V = mkV "espy" "espied" "espied" ; -- notcompound spy_V ;
-lin occupy_V = mkV "occupy" "occupied" "occupied" ;
-lin preoccupy_V = mkV "preoccupy" "preoccupied" "preoccupied" ; -- compound occupy_V ;
-lin weary_V = mkV "weary" "wearied" "wearied" ;
-lin vary_V = mkV "vary" "varied" "varied" ;
-lin cry_V = mkV "cry" "cried" "cried" ;
-lin decry_V = mkV "decry" "decried" "decried" ; -- compound cry_V ;
-lin descry_V = mkV "descry" "descried" "descried" ; -- compound cry_V ;
-lin dry_V = mkV "dry" "dried" "dried" ;
-lin 'rough-dry_V' = mkV "rough-dry" "rough-dried" "rough-dried" ; -- compound dry_V ;
-lin 'spin-dry_V' = mkV "spin-dry" "spin-dried" "spin-dried" ; -- compound dry_V ;
-lin 'drip-dry_V' = mkV "drip-dry" "drip-dried" "drip-dried" ; -- compound dry_V ;
-lin 'blow-dry_V' = mkV "blow-dry" "blow-dried" "blow-dried" ; -- compound dry_V ;
-lin query_V = mkV "query" "queried" "queried" ;
-lin fry_V = mkV "fry" "fried" "fried" ;
-lin glory_V = mkV "glory" "gloried" "gloried" ;
-lin pillory_V = mkV "pillory" "pilloried" "pilloried" ;
-lin pry_V = mkV "pry" "pried" "pried" ;
-lin carry_V = mkV "carry" "carried" "carried" ;
-lin 'hand-carry_V' = mkV "hand-carry" "hand-carried" "hand-carried" ; -- compound carry_V ;
-lin miscarry_V = mkV "miscarry" "miscarried" "miscarried" ; -- compound carry_V ;
-lin harry_V = mkV "harry" "harried" "harried" ;
-lin marry_V = mkV "marry" "married" "married" ;
-lin remarry_V = mkV "remarry" "remarried" "remarried" ; -- compound marry_V ;
-lin intermarry_V = mkV "intermarry" "intermarried" "intermarried" ; -- compound marry_V ;
-lin parry_V = mkV "parry" "parried" "parried" ;
-lin tarry_V = mkV "tarry" "tarried" "tarried" ;
-lin quarry_V = mkV "quarry" "quarried" "quarried" ;
-lin ferry_V = mkV "ferry" "ferried" "ferried" ;
-lin worry_V = mkV "worry" "worried" "worried" ;
-lin curry_V = mkV "curry" "curried" "curried" ;
-lin scurry_V = mkV "scurry" "scurried" "scurried" ; -- notcompound curry_V ;
-lin hurry_V = mkV "hurry" "hurried" "hurried" ;
-lin flurry_V = mkV "flurry" "flurried" "flurried" ;
-lin try_V = mkV "try" "tried" "tried" ;
-lin bury_V = mkV "bury" "buried" "buried" ;
-lin prophesy_V = mkV "prophesy" "prophesied" "prophesied" ;
-lin palsy_V = mkV "palsy" "palsied" "palsied" ;
-lin gussy_V = mkV "gussy" "gussied" "gussied" ;
-lin curtsy_V = mkV "curtsy" "curtsied" "curtsied" ;
-lin busy_V = mkV "busy" "busied" "busied" ;
-lin pity_V = mkV "pity" "pitied" "pitied" ;
-lin empty_V = mkV "empty" "emptied" "emptied" ;
-lin dirty_V = mkV "dirty" "dirtied" "dirtied" ;
-lin travesty_V = mkV "travesty" "travestied" "travestied" ;
-lin putty_V = mkV "putty" "puttied" "puttied" ;
-lin buy_2_V = mkV "buy" "buyed" "buyed" ;
-lin guy_V = mkV "guy" "guyed" "guyed" ;
-lin levy_V = mkV "levy" "levied" "levied" ;
-lin chivy_V = mkV "chivy" "chivied" "chivied" ;
-lin envy_V = mkV "envy" "envied" "envied" ;
-lin divvy_V = mkV "divvy" "divvied" "divvied" ;
-lin chivvy_V = mkV "chivvy" "chivvied" "chivvied" ;
-lin cozy_V = mkV "cozy" "cozied" "cozied" ;
-lin dizzy_V = mkV "dizzy" "dizzied" "dizzied" ;
-lin buy_1_V = mkV "buy" "bought" "bought" ;
-lin 'impulse-buy_V' = mkV "impulse-buy" "impulse-bought" "impulse-bought" ; -- compound buy_1_V ;
-lin slay_V = mkV "slay" "slew" "slain" ;
-lin mislay_V = mkV "mislay" "mislew" "mislain" ; -- compound slay_V ;
-lin fly_1_V = mkV "fly" "flew" "flown" ;
-lin overfly_V = mkV "overfly" "overflew" "overflown" ; -- compound fly_1_V ;
-lin whiz_V = mkV "whiz" "IRREG" "IRREG" ;
-lin quiz_V = mkV "quiz" "quizzed" "quizzed" ;
-lin blitz_V = mkV "blitz" "blitzed" "blitzed" ;
-lin waltz_V = mkV "waltz" "waltzed" "waltzed" ;
-lin jazz_V = mkV "jazz" "jazzed" "jazzed" ;
-lin fizz_V = mkV "fizz" "fizzed" "fizzed" ;
-lin frizz_V = mkV "frizz" "frizzed" "frizzed" ;
-lin buzz_V = mkV "buzz" "buzzed" "buzzed" ;
-lin sauté_V = mkV "sauté" "sautéed" "sautéed" ;
+lin annoyance_N = mkN "annoyance" "annoyances" ;
+lin annoying_A = mkAMost "annoying" "annoyingly" ;
+lin annual_A = mkAMost "annual" "annually" ;
+lin annual_N = mkN "annual" "annuals" ;
+lin annuitant_N = mkN "annuitant" "annuitants" ;
+lin annuity_N = mkN "annuity" "annuities" ;
+lin annul_V = mkV "annul" "annulled" "annulled" ;
+lin annular_A = mkAMost "annular" "annularly" ;
+lin annulet_N = mkN "annulet" "annulets" ;
+lin annulment_N = mkN "annulment" "annulments" ;
+lin annulus_N = mkN "annulus" "annuluses" ;
+lin annum_N = mkN "annum" "annums" ;
+lin annunciate_V = mkV "annunciate" "annunciated" "annunciated" ;
+lin annunciation_N = mkN "annunciation" "annunciations" ;
+lin annunciator_N = mkN "annunciator" "annunciators" ;
+lin annunciatory_A = mkAMost "annunciatory" "annunciatorily" ;
+lin anoa_N = mkN "anoa" "anoas" ;
+lin anode_N = mkN "anode" "anodes" ;
+lin anodic_A = mkAMost "anodic" "anodicly" ;
+lin anodyne_A = mkAMost "anodyne" "anodynely" ;
+lin anodyne_N = mkN "anodyne" "anodynes" ;
+lin anoint_V = mkV "anoint" "anointed" "anointed" ;
+lin anointer_N = mkN "anointer" "anointers" ;
+lin anointing_N = mkN "anointing" "anointings" ;
+lin anointment_N = mkN "anointment" "anointments" ;
+lin anomalist_N = mkN "anomalist" "anomalists" ;
+lin anomalops_N = mkN "anomalops" "anomalopses" ;
+lin anomalopteryx_N = mkN "anomalopteryx" "anomalopteryxes" ;
+lin anomalous_A = mkAMost "anomalous" "anomalously" ;
+lin anomaly_N = mkN "anomaly" "anomalies" ;
+lin anomie_N = mkN "anomie" "anomies" ;
+lin anon_Adv = mkAdv "anon" ;
+lin anonymity_N = mkN "anonymity" "anonymities" ;
+lin anonymous_A = mkAMost "anonymous" "anonymously" ;
+lin anoperineal_A = mkAMost "anoperineal" "anoperineally" ;
+lin anopheles_N = mkN "anopheles" "anopheles" ;
+lin anopheline_A = mkAMost "anopheline" "anophelinely" ;
+lin anopheline_N = mkN "anopheline" "anophelines" ;
+lin anopia_N = mkN "anopia" "anopias" ;
+lin anorak_N = mkN "anorak" "anoraks" ;
+lin anorchism_N = mkN "anorchism" "anorchisms" ;
+lin anorectal_A = mkAMost "anorectal" "anorectally" ;
+lin anorectic_A = mkAMost "anorectic" "anorecticly" ;
+lin anorexia_N = mkN "anorexia" "anorexias" ;
+lin anorexic_A = mkAMost "anorexic" "anorexicly" ;
+lin anorexic_N = mkN "anorexic" "anorexics" ;
+lin anorgasmia_N = mkN "anorgasmia" "anorgasmias" ;
+lin anorthite_N = mkN "anorthite" "anorthites" ;
+lin anorthitic_A = mkAMost "anorthitic" "anorthiticly" ;
+lin anorthopia_N = mkN "anorthopia" "anorthopias" ;
+lin anosmia_N = mkN "anosmia" "anosmias" ;
+lin anosmic_A = mkAMost "anosmic" "anosmicly" ;
+lin anovulation_N = mkN "anovulation" "anovulations" ;
+lin anoxemia_N = mkN "anoxemia" "anoxemias" ;
+lin anoxemic_A = mkAMost "anoxemic" "anoxemicly" ;
+lin anoxia_N = mkN "anoxia" "anoxias" ;
+lin anoxic_A = mkAMost "anoxic" "anoxicly" ;
+lin anserine_A = mkAMost "anserine" "anserinely" ;
+lin answer_N = mkN "answer" "answers" ;
+lin answer_V = mkV "answer" "answered" "answered" ;
+lin answerable_A = mkAMost "answerable" "answerably" ;
+lin ant_N = mkN "ant" "ants" ;
+lin ant_eater_N = mkN "ant-eater" "ant-eaters" ;
+lin ant_hill_N = mkN "ant-hill" "ant-hills" ;
+lin antacid_A = mkAMost "antacid" "antacidly" ;
+lin antacid_N = mkN "antacid" "antacids" ;
+lin antagonism_N = mkN "antagonism" "antagonisms" ;
+lin antagonist_N = mkN "antagonist" "antagonists" ;
+lin antagonistic_A = mkAMost "antagonistic" "antagonisticly" ;
+lin antagonistically_Adv = mkAdv "antagonistically" ;
+lin antagonize_V = mkV "antagonize" "antagonized" "antagonized" ;
+lin antapex_N = mkN "antapex" "antapexes" ;
+lin antarctic_A = mkAMost "antarctic" "antarcticly" ;
+lin antbird_N = mkN "antbird" "antbirds" ;
+lin ante_N = mkN "ante" "antes" ;
+lin ante_meridiem_Adv = mkAdv "ante meridiem" ;
+lin anteater_N = mkN "anteater" "anteaters" ;
+lin antebellum_A = mkAMost "antebellum" "antebellumly" ;
+lin antecedence_N = mkN "antecedence" "antecedences" ;
+lin antecedent_A = mkAMost "antecedent" "antecedently" ;
+lin antecedent_N = mkN "antecedent" "antecedents" ;
+lin antechamber_N = mkN "antechamber" "antechambers" ;
+lin antecubital_A = mkAMost "antecubital" "antecubitally" ;
+lin antedate_V = mkV "antedate" "antedated" "antedated" ;
+lin antediluvian_A = mkAMost "antediluvian" "antediluvianly" ;
+lin antediluvian_N = mkN "antediluvian" "antediluvians" ;
+lin antefix_N = mkN "antefix" "antefixes" ;
+lin antelope_N = mkN "antelope" "antelopes" ;
+lin antemeridian_A = mkAMost "antemeridian" "antemeridianly" ;
+lin antemortem_A = mkAMost "antemortem" "antemortemly" ;
+lin antenatal_A = mkAMost "antenatal" "antenatally" ;
+lin antenna_N = mkN "antenna" "antennae" ;
+lin antennal_A = mkAMost "antennal" "antennally" ;
+lin antenuptial_A = mkAMost "antenuptial" "antenuptially" ;
+lin antepenult_N = mkN "antepenult" "antepenults" ;
+lin antepenultimate_A = mkAMost "antepenultimate" "antepenultimately" ;
+lin anterior_A = mkAMost "anterior" "anteriorly" ;
+lin anteriority_N = mkN "anteriority" "anteriorities" ;
+lin anterograde_A = mkAMost "anterograde" "anterogradely" ;
+lin anteroom_N = mkN "anteroom" "anterooms" ;
+lin anthelmintic_A = mkAMost "anthelmintic" "anthelminticly" ;
+lin anthem_N = mkN "anthem" "anthems" ;
+lin anther_N = mkN "anther" "anthers" ;
+lin antheral_A = mkAMost "antheral" "antherally" ;
+lin antheridial_A = mkAMost "antheridial" "antheridially" ;
+lin antheridiophore_N = mkN "antheridiophore" "antheridiophores" ;
+lin antheridium_N = mkN "antheridium" "antheridiums" ;
+lin antherozoid_N = mkN "antherozoid" "antherozoids" ;
+lin anthill_N = mkN "anthill" "anthills" ;
+lin anthologist_N = mkN "anthologist" "anthologists" ;
+lin anthology_N = mkN "anthology" "anthologies" ;
+lin anthophagous_A = mkAMost "anthophagous" "anthophagously" ;
+lin anthophyllite_N = mkN "anthophyllite" "anthophyllites" ;
+lin anthozoan_N = mkN "anthozoan" "anthozoans" ;
+lin anthracite_N = mkN "anthracite" "anthracites" ;
+lin anthracitic_A = mkAMost "anthracitic" "anthraciticly" ;
+lin anthracosis_N = mkN "anthracosis" "anthracosises" ;
+lin anthrax_N = mkN "anthrax" "anthraxes" ;
+lin anthropic_A = mkAMost "anthropic" "anthropicly" ;
+lin anthropocentric_A = mkAMost "anthropocentric" "anthropocentricly" ;
+lin anthropocentrism_N = mkN "anthropocentrism" "anthropocentrisms" ;
+lin anthropogenesis_N = mkN "anthropogenesis" "anthropogenesises" ;
+lin anthropogenetic_A = mkAMost "anthropogenetic" "anthropogeneticly" ;
+lin anthropoid_A = mkAMost "anthropoid" "anthropoidly" ;
+lin anthropoid_N = mkN "anthropoid" "anthropoids" ;
+lin anthropolatry_N = mkN "anthropolatry" "anthropolatries" ;
+lin anthropological_A = mkAMost "anthropological" "anthropologically" ;
+lin anthropologist_N = mkN "anthropologist" "anthropologists" ;
+lin anthropology_N = mkN "anthropology" "anthropologies" ;
+lin anthropometric_A = mkAMost "anthropometric" "anthropometricly" ;
+lin anthropometry_N = mkN "anthropometry" "anthropometries" ;
+lin anthropomorphic_A = mkAMost "anthropomorphic" "anthropomorphicly" ;
+lin anthropomorphism_N = mkN "anthropomorphism" "anthropomorphisms" ;
+lin anthropophagous_A = mkAMost "anthropophagous" "anthropophagously" ;
+lin anthropophagy_N = mkN "anthropophagy" "anthropophagies" ;
+lin anthroposophy_N = mkN "anthroposophy" "anthroposophies" ;
+lin anthurium_N = mkN "anthurium" "anthuriums" ;
+lin anti_A = mkA "anti" "antier" "antiest" "antily" ;
+lin anti_N = mkN "anti" "antis" ;
+lin anti_Prep = mkPrep "anti" ;
+lin anti_aircraft_A = mkAMost "anti-aircraft" "anti-aircraftly" ;
+lin anti_hero_N = mkN "anti-hero" "anti-heroes" ;
+lin anti_personnel_A = mkAMost "anti-personnel" "anti-personnelly" ;
+lin anti_semite_A = mkAMost "anti-semite" "anti-semitely" ;
+lin anti_semite_N = mkN "anti-semite" "anti-semites" ;
+lin anti_semitic_A = mkAMost "anti-semitic" "anti-semiticly" ;
+lin anti_semitism_N = mkN "anti-semitism" "anti-semitisms" ;
+lin antiadrenergic_A = mkAMost "antiadrenergic" "antiadrenergicly" ;
+lin antiaircraft_A = mkAMost "antiaircraft" "antiaircraftly" ;
+lin antiaircraft_N = mkN "antiaircraft" "antiaircrafts" ;
+lin antialiasing_N = mkN "antialiasing" "antialiasings" ;
+lin antiapartheid_A = mkAMost "antiapartheid" "antiapartheidly" ;
+lin antiarrhythmic_N = mkN "antiarrhythmic" "antiarrhythmics" ;
+lin antiauthoritarian_A = mkAMost "antiauthoritarian" "antiauthoritarianly" ;
+lin antibacterial_A = mkAMost "antibacterial" "antibacterially" ;
+lin antibacterial_N = mkN "antibacterial" "antibacterials" ;
+lin antibaryon_N = mkN "antibaryon" "antibaryons" ;
+lin antibiosis_N = mkN "antibiosis" "antibiosises" ;
+lin antibiotic_A = mkAMost "antibiotic" "antibioticly" ;
+lin antibiotic_N = mkN "antibiotic" "antibiotics" ;
+lin antibody_N = mkN "antibody" "antibodies" ;
+lin antic_A = mkAMost "antic" "anticly" ;
+lin antic_N = mkN "antic" "antics" ;
+lin anticancer_A = mkAMost "anticancer" "anticancerly" ;
+lin anticatalyst_N = mkN "anticatalyst" "anticatalysts" ;
+lin anticholinergic_A = mkAMost "anticholinergic" "anticholinergicly" ;
+lin anticholinergic_N = mkN "anticholinergic" "anticholinergics" ;
+lin anticholinesterase_N = mkN "anticholinesterase" "anticholinesterases" ;
+lin anticipant_A = mkAMost "anticipant" "anticipantly" ;
+lin anticipate_V = mkV "anticipate" "anticipated" "anticipated" ;
+lin anticipation_N = mkN "anticipation" "anticipations" ;
+lin anticipator_N = mkN "anticipator" "anticipators" ;
+lin anticipatory_A = mkAMost "anticipatory" "anticipatorily" ;
+lin anticlimactic_A = mkAMost "anticlimactic" "anticlimacticly" ;
+lin anticlimax_N = mkN "anticlimax" "anticlimaxes" ;
+lin anticlinal_A = mkAMost "anticlinal" "anticlinally" ;
+lin anticlockwise_Adv = mkAdv "anticlockwise" ;
+lin anticoagulant_N = mkN "anticoagulant" "anticoagulants" ;
+lin anticoagulation_N = mkN "anticoagulation" "anticoagulations" ;
+lin anticoagulative_A = mkAMost "anticoagulative" "anticoagulatively" ;
+lin anticonvulsant_N = mkN "anticonvulsant" "anticonvulsants" ;
+lin anticyclone_N = mkN "anticyclone" "anticyclones" ;
+lin anticyclonic_A = mkAMost "anticyclonic" "anticyclonicly" ;
+lin antidepressant_N = mkN "antidepressant" "antidepressants" ;
+lin antidiabetic_N = mkN "antidiabetic" "antidiabetics" ;
+lin antidiarrheal_N = mkN "antidiarrheal" "antidiarrheals" ;
+lin antidiuretic_N = mkN "antidiuretic" "antidiuretics" ;
+lin antidotal_A = mkAMost "antidotal" "antidotally" ;
+lin antidote_N = mkN "antidote" "antidotes" ;
+lin antidromic_A = mkAMost "antidromic" "antidromicly" ;
+lin antiemetic_N = mkN "antiemetic" "antiemetics" ;
+lin antiestablishmentarianism_N = mkN "antiestablishmentarianism" "antiestablishmentarianisms" ;
+lin antifeminist_N = mkN "antifeminist" "antifeminists" ;
+lin antiferromagnetic_A = mkAMost "antiferromagnetic" "antiferromagneticly" ;
+lin antiferromagnetism_N = mkN "antiferromagnetism" "antiferromagnetisms" ;
+lin antiflatulent_N = mkN "antiflatulent" "antiflatulents" ;
+lin antifreeze_N = mkN "antifreeze" "antifreezes" ;
+lin antifungal_N = mkN "antifungal" "antifungals" ;
+lin antigen_N = mkN "antigen" "antigens" ;
+lin antigenic_A = mkAMost "antigenic" "antigenicly" ;
+lin antigram_N = mkN "antigram" "antigrams" ;
+lin antiguan_A = mkAMost "antiguan" "antiguanly" ;
+lin antiguan_N = mkN "antiguan" "antiguans" ;
+lin antiheretical_A = mkAMost "antiheretical" "antiheretically" ;
+lin antihero_N = mkN "antihero" "antiheroes" ;
+lin antihistamine_N = mkN "antihistamine" "antihistamines" ;
+lin antihypertensive_N = mkN "antihypertensive" "antihypertensives" ;
+lin antiknock_A = mkAMost "antiknock" "antiknockly" ;
+lin antiknock_N = mkN "antiknock" "antiknocks" ;
+lin antilepton_N = mkN "antilepton" "antileptons" ;
+lin antilogarithm_N = mkN "antilogarithm" "antilogarithms" ;
+lin antimacassar_N = mkN "antimacassar" "antimacassars" ;
+lin antimagnetic_A = mkAMost "antimagnetic" "antimagneticly" ;
+lin antimalarial_N = mkN "antimalarial" "antimalarials" ;
+lin antimatter_N = mkN "antimatter" "antimatters" ;
+lin antimeson_N = mkN "antimeson" "antimesons" ;
+lin antimetabolite_N = mkN "antimetabolite" "antimetabolites" ;
+lin antimicrobial_A = mkAMost "antimicrobial" "antimicrobially" ;
+lin antimonial_A = mkAMost "antimonial" "antimonially" ;
+lin antimonic_A = mkAMost "antimonic" "antimonicly" ;
+lin antimonopoly_A = mkAMost "antimonopoly" "antimonopolily" ;
+lin antimony_N = mkN "antimony" "antimonies" ;
+lin antimuon_N = mkN "antimuon" "antimuons" ;
+lin antimycin_N = mkN "antimycin" "antimycins" ;
+lin antineoplastic_N = mkN "antineoplastic" "antineoplastics" ;
+lin antineutrino_N = mkN "antineutrino" "antineutrinoes" ;
+lin antineutron_N = mkN "antineutron" "antineutrons" ;
+lin antinode_N = mkN "antinode" "antinodes" ;
+lin antinomasia_N = mkN "antinomasia" "antinomasias" ;
+lin antinomian_A = mkAMost "antinomian" "antinomianly" ;
+lin antinomian_N = mkN "antinomian" "antinomians" ;
+lin antinomianism_N = mkN "antinomianism" "antinomianisms" ;
+lin antinomy_N = mkN "antinomy" "antinomies" ;
+lin antioxidant_N = mkN "antioxidant" "antioxidants" ;
+lin antiparallel_A = mkAMost "antiparallel" "antiparallelly" ;
+lin antiparticle_N = mkN "antiparticle" "antiparticles" ;
+lin antipasto_N = mkN "antipasto" "antipastoes" ;
+lin antipathetic_A = mkAMost "antipathetic" "antipatheticly" ;
+lin antipathy_N = mkN "antipathy" "antipathies" ;
+lin antipersonnel_A = mkAMost "antipersonnel" "antipersonnelly" ;
+lin antiperspirant_N = mkN "antiperspirant" "antiperspirants" ;
+lin antiphlogistic_A = mkAMost "antiphlogistic" "antiphlogisticly" ;
+lin antiphon_N = mkN "antiphon" "antiphons" ;
+lin antiphonary_A = mkAMost "antiphonary" "antiphonarily" ;
+lin antiphonary_N = mkN "antiphonary" "antiphonaries" ;
+lin antiphony_N = mkN "antiphony" "antiphonies" ;
+lin antiphrasis_N = mkN "antiphrasis" "antiphrasises" ;
+lin antipodal_A = mkAMost "antipodal" "antipodally" ;
+lin antipodal_N = mkN "antipodal" "antipodals" ;
+lin antipode_N = mkN "antipode" "antipodes" ;
+lin antipodes_N = mkN "antipodes" "antipodeses" ;
+lin antipollution_A = mkAMost "antipollution" "antipollutionly" ;
+lin antipope_N = mkN "antipope" "antipopes" ;
+lin antiproton_N = mkN "antiproton" "antiprotons" ;
+lin antiprotozoal_N = mkN "antiprotozoal" "antiprotozoals" ;
+lin antipruritic_N = mkN "antipruritic" "antipruritics" ;
+lin antipyresis_N = mkN "antipyresis" "antipyresises" ;
+lin antipyretic_A = mkAMost "antipyretic" "antipyreticly" ;
+lin antipyretic_N = mkN "antipyretic" "antipyretics" ;
+lin antiquarian_A = mkAMost "antiquarian" "antiquarianly" ;
+lin antiquarian_N = mkN "antiquarian" "antiquarians" ;
+lin antiquark_N = mkN "antiquark" "antiquarks" ;
+lin antiquary_N = mkN "antiquary" "antiquaries" ;
+lin antiquated_A = mkAMost "antiquated" "antiquatedly" ;
+lin antique_A = mkAMost "antique" "antiquely" ;
+lin antique_N = mkN "antique" "antiques" ;
+lin antiquity_N = mkN "antiquity" "antiquities" ;
+lin antiredeposition_N = mkN "antiredeposition" "antiredepositions" ;
+lin antirrhinum_N = mkN "antirrhinum" "antirrhinums" ;
+lin antisatellite_A = mkAMost "antisatellite" "antisatellitely" ;
+lin antisepsis_N = mkN "antisepsis" "antisepsises" ;
+lin antiseptic_A = mkAMost "antiseptic" "antisepticly" ;
+lin antiseptic_N = mkN "antiseptic" "antiseptics" ;
+lin antiserum_N = mkN "antiserum" "antiserums" ;
+lin antisocial_A = mkAMost "antisocial" "antisocially" ;
+lin antispasmodic_N = mkN "antispasmodic" "antispasmodics" ;
+lin antistrophe_N = mkN "antistrophe" "antistrophes" ;
+lin antistrophic_A = mkAMost "antistrophic" "antistrophicly" ;
+lin antisubmarine_A = mkAMost "antisubmarine" "antisubmarinely" ;
+lin antisyphilitic_N = mkN "antisyphilitic" "antisyphilitics" ;
+lin antitank_A = mkAMost "antitank" "antitankly" ;
+lin antitauon_N = mkN "antitauon" "antitauons" ;
+lin antithesis_N = mkN "antithesis" "antitheses" ;
+lin antithetic_A = mkAMost "antithetic" "antitheticly" ;
+lin antithetical_A = mkAMost "antithetical" "antithetically" ;
+lin antithyroid_A = mkAMost "antithyroid" "antithyroidly" ;
+lin antitoxic_A = mkAMost "antitoxic" "antitoxicly" ;
+lin antitoxin_N = mkN "antitoxin" "antitoxins" ;
+lin antitrade_A = mkAMost "antitrade" "antitradely" ;
+lin antitrade_N = mkN "antitrade" "antitrades" ;
+lin antitrades_N = mkN "antitrades" "antitradeses" ;
+lin antitussive_N = mkN "antitussive" "antitussives" ;
+lin antitype_N = mkN "antitype" "antitypes" ;
+lin antitypic_A = mkAMost "antitypic" "antitypicly" ;
+lin antivenin_N = mkN "antivenin" "antivenins" ;
+lin antiviral_A = mkAMost "antiviral" "antivirally" ;
+lin antiviral_N = mkN "antiviral" "antivirals" ;
+lin antler_N = mkN "antler" "antlers" ;
+lin antlered_A = mkAMost "antlered" "antleredly" ;
+lin antonym_N = mkN "antonym" "antonyms" ;
+lin antonymous_A = mkAMost "antonymous" "antonymously" ;
+lin antonymy_N = mkN "antonymy" "antonymies" ;
+lin antrorse_A = mkAMost "antrorse" "antrorsely" ;
+lin antrum_N = mkN "antrum" "antrums" ;
+lin antsy_A = mkA "antsy" "antsier" "antsiest" "antsily" ;
+lin anuran_A = mkAMost "anuran" "anuranly" ;
+lin anuresis_N = mkN "anuresis" "anuresises" ;
+lin anuretic_A = mkAMost "anuretic" "anureticly" ;
+lin anurous_A = mkAMost "anurous" "anurously" ;
+lin anus_N = mkN "anus" "anuses" ;
+lin anvil_N = mkN "anvil" "anvils" ;
+lin anxiety_N = mkN "anxiety" "anxieties" ;
+lin anxiolytic_A = mkAMost "anxiolytic" "anxiolyticly" ;
+lin anxious_A = mkAMost "anxious" "anxiously" ;
+lin anxiousness_N = mkN "anxiousness" "anxiousnesses" ;
+lin any_Adv = mkAdv "any" ;
+lin anyhow_Adv = mkAdv "anyhow" ;
+lin anymore_Adv = mkAdv "anymore" ;
+lin anyplace_Adv = mkAdv "anyplace" ;
+lin anyway_Adv = mkAdv "anyway" ;
+lin anywhere_Adv = mkAdv "anywhere" ;
+lin aorist_N = mkN "aorist" "aorists" ;
+lin aoristic_A = mkAMost "aoristic" "aoristicly" ;
+lin aorta_N = mkN "aorta" "aortas" ;
+lin aortal_A = mkAMost "aortal" "aortally" ;
+lin aortitis_N = mkN "aortitis" "aortitises" ;
+lin aoudad_N = mkN "aoudad" "aoudads" ;
+lin apace_Adv = mkAdv "apace" ;
+lin apache_N = mkN "apache" "apaches" ;
+lin apadana_N = mkN "apadana" "apadanas" ;
+lin apanage_N = mkN "apanage" "apanages" ;
+lin apar_N = mkN "apar" "apars" ;
+lin apart_Adv = mkAdv "apart" ;
+lin apart_from_Prep = mkPrep "apart from" ;
+lin apartheid_N = mkN "apartheid" "apartheids" ;
+lin apartment_N = mkN "apartment" "apartments" ;
+lin apathetic_A = mkAMost "apathetic" "apatheticly" ;
+lin apathetically_Adv = mkAdv "apathetically" ;
+lin apathy_N = mkN "apathy" "apathies" ;
+lin apatite_N = mkN "apatite" "apatites" ;
+lin apatosaur_N = mkN "apatosaur" "apatosaurs" ;
+lin ape_N = mkN "ape" "apes" ;
+lin ape_V = mkV "ape" "aped" "aped" ;
+lin apercu_N = mkN "apercu" "apercus" ;
+lin aperea_N = mkN "aperea" "apereas" ;
+lin aperient_A = mkAMost "aperient" "aperiently" ;
+lin aperient_N = mkN "aperient" "aperients" ;
+lin aperiodic_A = mkAMost "aperiodic" "aperiodicly" ;
+lin aperitif_N = mkN "aperitif" "aperitifs" ;
+lin aperture_N = mkN "aperture" "apertures" ;
+lin apery_N = mkN "apery" "aperies" ;
+lin apetalous_A = mkAMost "apetalous" "apetalously" ;
+lin apex_N = mkN "apex" "apexes" ;
+lin aphaeresis_N = mkN "aphaeresis" "aphaeresises" ;
+lin aphaeretic_A = mkAMost "aphaeretic" "aphaereticly" ;
+lin aphagia_N = mkN "aphagia" "aphagias" ;
+lin aphakia_N = mkN "aphakia" "aphakias" ;
+lin aphakic_A = mkAMost "aphakic" "aphakicly" ;
+lin aphakic_N = mkN "aphakic" "aphakics" ;
+lin aphanite_N = mkN "aphanite" "aphanites" ;
+lin aphanitic_A = mkAMost "aphanitic" "aphaniticly" ;
+lin aphasia_N = mkN "aphasia" "aphasias" ;
+lin aphasic_A = mkAMost "aphasic" "aphasicly" ;
+lin aphasic_N = mkN "aphasic" "aphasics" ;
+lin aphelion_N = mkN "aphelion" "aphelions" ;
+lin apheresis_N = mkN "apheresis" "apheresises" ;
+lin aphesis_N = mkN "aphesis" "aphesises" ;
+lin aphetic_A = mkAMost "aphetic" "apheticly" ;
+lin aphid_N = mkN "aphid" "aphids" ;
+lin aphis_N = mkN "aphis" "aphes" ;
+lin aphonia_N = mkN "aphonia" "aphonias" ;
+lin aphonic_A = mkAMost "aphonic" "aphonicly" ;
+lin aphorism_N = mkN "aphorism" "aphorisms" ;
+lin aphorist_N = mkN "aphorist" "aphorists" ;
+lin aphoristic_A = mkAMost "aphoristic" "aphoristicly" ;
+lin aphotic_A = mkAMost "aphotic" "aphoticly" ;
+lin aphrodisia_N = mkN "aphrodisia" "aphrodisias" ;
+lin aphrodisiac_A = mkAMost "aphrodisiac" "aphrodisiacly" ;
+lin aphrodisiac_N = mkN "aphrodisiac" "aphrodisiacs" ;
+lin aphyllous_A = mkAMost "aphyllous" "aphyllously" ;
+lin apian_A = mkAMost "apian" "apianly" ;
+lin apiarian_A = mkAMost "apiarian" "apiarianly" ;
+lin apiarist_N = mkN "apiarist" "apiarists" ;
+lin apiary_N = mkN "apiary" "apiaries" ;
+lin apical_A = mkAMost "apical" "apically" ;
+lin apiculate_A = mkAMost "apiculate" "apiculately" ;
+lin apicultural_A = mkAMost "apicultural" "apiculturally" ;
+lin apiculture_N = mkN "apiculture" "apicultures" ;
+lin apiece_Adv = mkAdv "apiece" ;
+lin apish_A = mkAMost "apish" "apishly" ;
+lin apishamore_N = mkN "apishamore" "apishamores" ;
+lin apivorous_A = mkAMost "apivorous" "apivorously" ;
+lin aplacental_A = mkAMost "aplacental" "aplacentally" ;
+lin aplanatic_A = mkAMost "aplanatic" "aplanaticly" ;
+lin aplasia_N = mkN "aplasia" "aplasias" ;
+lin aplite_N = mkN "aplite" "aplites" ;
+lin aplitic_A = mkAMost "aplitic" "apliticly" ;
+lin aplomb_N = mkN "aplomb" "aplombs" ;
+lin apnea_N = mkN "apnea" "apneas" ;
+lin apneic_A = mkAMost "apneic" "apneicly" ;
+lin apoapsis_N = mkN "apoapsis" "apoapsises" ;
+lin apocalypse_N = mkN "apocalypse" "apocalypses" ;
+lin apocalyptic_A = mkAMost "apocalyptic" "apocalypticly" ;
+lin apocarpous_A = mkAMost "apocarpous" "apocarpously" ;
+lin apochromatic_A = mkAMost "apochromatic" "apochromaticly" ;
+lin apocope_N = mkN "apocope" "apocopes" ;
+lin apocrine_A = mkAMost "apocrine" "apocrinely" ;
+lin apocrypha_N = mkN "apocrypha" "apocrypha" ;
+lin apocryphal_A = mkAMost "apocryphal" "apocryphally" ;
+lin apocynaceous_A = mkAMost "apocynaceous" "apocynaceously" ;
+lin apodal_A = mkAMost "apodal" "apodally" ;
+lin apodeme_N = mkN "apodeme" "apodemes" ;
+lin apodictic_A = mkAMost "apodictic" "apodicticly" ;
+lin apoenzyme_N = mkN "apoenzyme" "apoenzymes" ;
+lin apogamic_A = mkAMost "apogamic" "apogamicly" ;
+lin apogamy_N = mkN "apogamy" "apogamies" ;
+lin apogean_A = mkAMost "apogean" "apogeanly" ;
+lin apogee_N = mkN "apogee" "apogees" ;
+lin apojove_N = mkN "apojove" "apojoves" ;
+lin apolemia_N = mkN "apolemia" "apolemias" ;
+lin apolitical_A = mkAMost "apolitical" "apolitically" ;
+lin apologetic_A = mkAMost "apologetic" "apologeticly" ;
+lin apologetically_Adv = mkAdv "apologetically" ;
+lin apologetics_N = mkN "apologetics" "apologetics" ;
+lin apologist_N = mkN "apologist" "apologists" ;
+lin apologize_V = mkV "apologize" "apologized" "apologized" ;
+lin apology_N = mkN "apology" "apologies" ;
+lin apomict_N = mkN "apomict" "apomicts" ;
+lin apomictic_A = mkAMost "apomictic" "apomicticly" ;
+lin apomixis_N = mkN "apomixis" "apomixises" ;
+lin apomorphine_N = mkN "apomorphine" "apomorphines" ;
+lin aponeurosis_N = mkN "aponeurosis" "aponeurosises" ;
+lin aponeurotic_A = mkAMost "aponeurotic" "aponeuroticly" ;
+lin apopemptic_A = mkAMost "apopemptic" "apopempticly" ;
+lin apophasis_N = mkN "apophasis" "apophasises" ;
+lin apophatic_A = mkAMost "apophatic" "apophaticly" ;
+lin apophatism_N = mkN "apophatism" "apophatisms" ;
+lin apophthegm_N = mkN "apophthegm" "apophthegms" ;
+lin apophyseal_A = mkAMost "apophyseal" "apophyseally" ;
+lin apophysis_N = mkN "apophysis" "apophysises" ;
+lin apoplectic_A = mkAMost "apoplectic" "apoplecticly" ;
+lin apoplectiform_A = mkAMost "apoplectiform" "apoplectiformly" ;
+lin apoplexy_N = mkN "apoplexy" "apoplexies" ;
+lin apoptosis_N = mkN "apoptosis" "apoptosises" ;
+lin aposelene_N = mkN "aposelene" "aposelenes" ;
+lin aposiopesis_N = mkN "aposiopesis" "aposiopesises" ;
+lin aposiopetic_A = mkAMost "aposiopetic" "aposiopeticly" ;
+lin apostasy_N = mkN "apostasy" "apostasies" ;
+lin apostate_A = mkAMost "apostate" "apostately" ;
+lin apostate_N = mkN "apostate" "apostates" ;
+lin apostle_N = mkN "apostle" "apostles" ;
+lin apostleship_N = mkN "apostleship" "apostleships" ;
+lin apostolic_A = mkAMost "apostolic" "apostolicly" ;
+lin apostrophe_N = mkN "apostrophe" "apostrophes" ;
+lin apostrophic_A = mkAMost "apostrophic" "apostrophicly" ;
+lin apostrophize_V = mkV "apostrophize" "apostrophized" "apostrophized" ;
+lin apothecary_N = mkN "apothecary" "apothecaries" ;
+lin apothecial_A = mkAMost "apothecial" "apothecially" ;
+lin apothecium_N = mkN "apothecium" "apotheciums" ;
+lin apothegm_N = mkN "apothegm" "apothegms" ;
+lin apothegmatic_A = mkAMost "apothegmatic" "apothegmaticly" ;
+lin apotheosis_N = mkN "apotheosis" "apotheoses" ;
+lin apotropaic_A = mkAMost "apotropaic" "apotropaicly" ;
+lin appal_V = mkV "appal" "appalled" "appalled" ;
+lin appalling_A = mkAMost "appalling" "appallingly" ;
+lin appalling_N = mkN "appalling" "appallings" ;
+lin appanage_N = mkN "appanage" "appanages" ;
+lin apparatchik_N = mkN "apparatchik" "apparatchiks" ;
+lin apparatus_N = mkN "apparatus" "apparatuses" ;
+lin apparel_N = mkN "apparel" "apparels" ;
+lin apparel_V = mkV "apparel" "apparelled" "apparelled" ;
+lin appareled_A = mkAMost "appareled" "appareledly" ;
+lin apparent_A = mkAMost "apparent" "apparently" ;
+lin apparentness_N = mkN "apparentness" "apparentnesses" ;
+lin apparition_N = mkN "apparition" "apparitions" ;
+lin apparitional_A = mkAMost "apparitional" "apparitionally" ;
+lin appeal_N = mkN "appeal" "appeals" ;
+lin appeal_V = mkV "appeal" "appealed" "appealed" ;
+lin appealable_A = mkAMost "appealable" "appealably" ;
+lin appealingly_Adv = mkAdv "appealingly" ;
+lin appear_V = mkV "appear" "appeared" "appeared" ;
+lin appearance_N = mkN "appearance" "appearances" ;
+lin appeasable_A = mkAMost "appeasable" "appeasably" ;
+lin appease_V = mkV "appease" "appeased" "appeased" ;
+lin appeasement_N = mkN "appeasement" "appeasements" ;
+lin appeaser_N = mkN "appeaser" "appeasers" ;
+lin appellant_A = mkAMost "appellant" "appellantly" ;
+lin appellant_N = mkN "appellant" "appellants" ;
+lin appellate_A = mkAMost "appellate" "appellately" ;
+lin appellation_N = mkN "appellation" "appellations" ;
+lin appellative_A = mkAMost "appellative" "appellatively" ;
+lin append_V = mkV "append" "appended" "appended" ;
+lin appendage_N = mkN "appendage" "appendages" ;
+lin appendaged_A = mkAMost "appendaged" "appendagedly" ;
+lin appendant_A = mkAMost "appendant" "appendantly" ;
+lin appendectomy_N = mkN "appendectomy" "appendectomies" ;
+lin appendicitis_N = mkN "appendicitis" "appendicitises" ;
+lin appendicle_N = mkN "appendicle" "appendicles" ;
+lin appendicular_A = mkAMost "appendicular" "appendicularly" ;
+lin appendicularia_N = mkN "appendicularia" "appendicularias" ;
+lin appendix_N = mkN "appendix" "appendixes" ;
+lin apperception_N = mkN "apperception" "apperceptions" ;
+lin apperceptive_A = mkAMost "apperceptive" "apperceptively" ;
+lin appertain_V = mkV "appertain" "appertained" "appertained" ;
+lin appetent_A = mkAMost "appetent" "appetently" ;
+lin appetite_N = mkN "appetite" "appetites" ;
+lin appetitive_A = mkAMost "appetitive" "appetitively" ;
+lin appetizer_N = mkN "appetizer" "appetizers" ;
+lin appetizing_A = mkAMost "appetizing" "appetizingly" ;
+lin appetizingness_N = mkN "appetizingness" "appetizingnesses" ;
+lin applaud_V = mkV "applaud" "applauded" "applauded" ;
+lin applaudable_A = mkAMost "applaudable" "applaudably" ;
+lin applause_N = mkN "applause" "applauses" ;
+lin apple_N = mkN "apple" "apples" ;
+lin applecart_N = mkN "applecart" "applecarts" ;
+lin applejack_N = mkN "applejack" "applejacks" ;
+lin applesauce_N = mkN "applesauce" "applesauces" ;
+lin applet_N = mkN "applet" "applets" ;
+lin applewood_N = mkN "applewood" "applewoods" ;
+lin appliance_N = mkN "appliance" "appliances" ;
+lin applicability_N = mkN "applicability" "applicabilities" ;
+lin applicable_A = mkAMost "applicable" "applicably" ;
+lin applicant_N = mkN "applicant" "applicants" ;
+lin application_N = mkN "application" "applications" ;
+lin applicative_A = mkAMost "applicative" "applicatively" ;
+lin applicator_N = mkN "applicator" "applicators" ;
+lin appliqué_N = mkN "appliqué" "appliqués" ;
lin appliqué_V = mkV "appliqué" "appliquéed" "appliquéed" ;
+lin apply_V = mkV "apply" "applied" "applied" ;
+lin appoint_V = mkV "appoint" "appointed" "appointed" ;
+lin appointee_N = mkN "appointee" "appointees" ;
+lin appointive_A = mkAMost "appointive" "appointively" ;
+lin appointment_N = mkN "appointment" "appointments" ;
+lin apportion_V = mkV "apportion" "apportioned" "apportioned" ;
+lin apportionment_N = mkN "apportionment" "apportionments" ;
+lin apposite_A = mkAMost "apposite" "appositely" ;
+lin apposition_N = mkN "apposition" "appositions" ;
+lin appositional_A = mkAMost "appositional" "appositionally" ;
+lin appositively_Adv = mkAdv "appositively" ;
+lin appraisal_N = mkN "appraisal" "appraisals" ;
+lin appraise_V = mkV "appraise" "appraised" "appraised" ;
+lin appraiser_N = mkN "appraiser" "appraisers" ;
+lin appreciable_A = mkAMost "appreciable" "appreciably" ;
+lin appreciate_V = mkV "appreciate" "appreciated" "appreciated" ;
+lin appreciation_N = mkN "appreciation" "appreciations" ;
+lin appreciative_A = mkAMost "appreciative" "appreciatively" ;
+lin appreciator_N = mkN "appreciator" "appreciators" ;
+lin apprehend_V = mkV "apprehend" "apprehended" "apprehended" ;
+lin apprehender_N = mkN "apprehender" "apprehenders" ;
+lin apprehensible_A = mkAMost "apprehensible" "apprehensibly" ;
+lin apprehension_N = mkN "apprehension" "apprehensions" ;
+lin apprehensive_A = mkAMost "apprehensive" "apprehensively" ;
+lin apprentice_N = mkN "apprentice" "apprentices" ;
+lin apprentice_V = mkV "apprentice" "apprenticed" "apprenticed" ;
+lin apprenticeship_N = mkN "apprenticeship" "apprenticeships" ;
+lin appressed_A = mkAMost "appressed" "appressedly" ;
+lin apprise_V = mkV "apprise" "apprised" "apprised" ;
+lin appro_N = mkN "appro" "approes" ;
+lin approach_N = mkN "approach" "approaches" ;
+lin approach_V = mkV "approach" "approached" "approached" ;
+lin approachability_N = mkN "approachability" "approachabilities" ;
+lin approachable_A = mkAMost "approachable" "approachably" ;
+lin approbation_N = mkN "approbation" "approbations" ;
+lin appropriable_A = mkAMost "appropriable" "appropriably" ;
+lin appropriate_A = mkAMost "appropriate" "appropriately" ;
+lin appropriate_V = mkV "appropriate" "appropriated" "appropriated" ;
+lin appropriateness_N = mkN "appropriateness" "appropriatenesses" ;
+lin appropriation_N = mkN "appropriation" "appropriations" ;
+lin appropriative_A = mkAMost "appropriative" "appropriatively" ;
+lin appropriator_N = mkN "appropriator" "appropriators" ;
+lin approval_N = mkN "approval" "approvals" ;
+lin approve_V = mkV "approve" "approved" "approved" ;
+lin approver_N = mkN "approver" "approvers" ;
+lin approvingly_Adv = mkAdv "approvingly" ;
+lin approximate_A = mkAMost "approximate" "approximately" ;
+lin approximate_V = mkV "approximate" "approximated" "approximated" ;
+lin approximation_N = mkN "approximation" "approximations" ;
+lin appurtenance_N = mkN "appurtenance" "appurtenances" ;
+lin apractic_A = mkAMost "apractic" "apracticly" ;
+lin apraxia_N = mkN "apraxia" "apraxias" ;
+lin apricot_N = mkN "apricot" "apricots" ;
+lin apron_N = mkN "apron" "aprons" ;
+lin apropos_A = mkAMost "apropos" "aproposly" ;
+lin apropos_Adv = mkAdv "apropos" ;
+lin apropos_Prep = mkPrep "apropos" ;
+lin après_ski_A = mkAMost "après-ski" "après-skily" ;
+lin apse_N = mkN "apse" "apses" ;
+lin apsidal_A = mkAMost "apsidal" "apsidally" ;
+lin apt_A = mkA "apt" "apter" "aptest" "aptly" ;
+lin apteral_A = mkAMost "apteral" "apterally" ;
+lin apterous_A = mkAMost "apterous" "apterously" ;
+lin aptitude_N = mkN "aptitude" "aptitudes" ;
+lin aptitudinal_A = mkAMost "aptitudinal" "aptitudinally" ;
+lin aptness_N = mkN "aptness" "aptnesses" ;
+lin apud_Prep = mkPrep "apud" ;
+lin aquaculture_N = mkN "aquaculture" "aquacultures" ;
+lin aqualung_N = mkN "aqualung" "aqualungs" ;
+lin aquamarine_N = mkN "aquamarine" "aquamarines" ;
+lin aquanaut_N = mkN "aquanaut" "aquanauts" ;
+lin aquaphobia_N = mkN "aquaphobia" "aquaphobias" ;
+lin aquaplane_N = mkN "aquaplane" "aquaplanes" ;
+lin aquaplane_V = mkV "aquaplane" "aquaplaned" "aquaplaned" ;
+lin aquarium_N = mkN "aquarium" "aquariums" ;
+lin aquatic_A = mkAMost "aquatic" "aquaticly" ;
+lin aquatic_N = mkN "aquatic" "aquatics" ;
+lin aquatint_N = mkN "aquatint" "aquatints" ;
+lin aquavit_N = mkN "aquavit" "aquavits" ;
+lin aqueduct_N = mkN "aqueduct" "aqueducts" ;
+lin aqueous_A = mkAMost "aqueous" "aqueously" ;
+lin aquicultural_A = mkAMost "aquicultural" "aquiculturally" ;
+lin aquifer_N = mkN "aquifer" "aquifers" ;
+lin aquiferous_A = mkAMost "aquiferous" "aquiferously" ;
+lin aquiline_A = mkAMost "aquiline" "aquilinely" ;
+lin arabesque_N = mkN "arabesque" "arabesques" ;
+lin arability_N = mkN "arability" "arabilities" ;
+lin arabist_N = mkN "arabist" "arabists" ;
+lin arable_A = mkAMost "arable" "arably" ;
+lin arachnid_N = mkN "arachnid" "arachnids" ;
+lin arachnoid_A = mkAMost "arachnoid" "arachnoidly" ;
+lin arachnoid_N = mkN "arachnoid" "arachnoids" ;
+lin arachnophobia_N = mkN "arachnophobia" "arachnophobias" ;
+lin aragonite_N = mkN "aragonite" "aragonites" ;
+lin aralia_N = mkN "aralia" "aralias" ;
+lin arame_N = mkN "arame" "arames" ;
+lin araneidal_A = mkAMost "araneidal" "araneidally" ;
+lin arariba_N = mkN "arariba" "araribas" ;
+lin araroba_N = mkN "araroba" "ararobas" ;
+lin araucaria_N = mkN "araucaria" "araucarias" ;
+lin arbiter_N = mkN "arbiter" "arbiters" ;
+lin arbitrable_A = mkAMost "arbitrable" "arbitrably" ;
+lin arbitrage_N = mkN "arbitrage" "arbitrages" ;
+lin arbitrager_N = mkN "arbitrager" "arbitragers" ;
+lin arbitrageur_N = mkN "arbitrageur" "arbitrageurs" ;
+lin arbitral_A = mkAMost "arbitral" "arbitrally" ;
+lin arbitrament_N = mkN "arbitrament" "arbitraments" ;
+lin arbitrary_A = mkAMost "arbitrary" "arbitrarily" ;
+lin arbitrate_V = mkV "arbitrate" "arbitrated" "arbitrated" ;
+lin arbitration_N = mkN "arbitration" "arbitrations" ;
+lin arbitrative_A = mkAMost "arbitrative" "arbitratively" ;
+lin arbitrator_N = mkN "arbitrator" "arbitrators" ;
+lin arbor_N = mkN "arbor" "arbors" ;
+lin arboraceous_A = mkAMost "arboraceous" "arboraceously" ;
+lin arboreal_A = mkAMost "arboreal" "arboreally" ;
+lin arboretum_N = mkN "arboretum" "arboretums" ;
+lin arborical_A = mkAMost "arborical" "arborically" ;
+lin arboriculture_N = mkN "arboriculture" "arboricultures" ;
+lin arborolatry_N = mkN "arborolatry" "arborolatries" ;
+lin arborvitae_N = mkN "arborvitae" "arborvitaes" ;
+lin arbour_N = mkN "arbour" "arbours" ;
+lin arbovirus_N = mkN "arbovirus" "arboviruses" ;
+lin arbutus_N = mkN "arbutus" "arbutuses" ;
+lin arc_N = mkN "arc" "arcs" ;
+lin arc_lamp_N = mkN "arc-lamp" "arc-lamps" ;
+lin arc_light_N = mkN "arc-light" "arc-lights" ;
+lin arcade_N = mkN "arcade" "arcades" ;
+lin arcadian_A = mkAMost "arcadian" "arcadianly" ;
+lin arcadian_N = mkN "arcadian" "arcadians" ;
+lin arcane_A = mkAMost "arcane" "arcanely" ;
+lin arced_A = mkAMost "arced" "arcedly" ;
+lin arcella_N = mkN "arcella" "arcellas" ;
+lin arch_A = mkAMost "arch" "archly" ;
+lin arch_N = mkN "arch" "arches" ;
+lin arch_V = mkV "arch" "arched" "arched" ;
+lin archaebacteria_N = mkN "archaebacteria" "archaebacterias" ;
+lin archaeological_A = mkAMost "archaeological" "archaeologically" ;
+lin archaeologist_N = mkN "archaeologist" "archaeologists" ;
+lin archaeology_N = mkN "archaeology" "archaeologies" ;
+lin archaeopteryx_N = mkN "archaeopteryx" "archaeopteryxes" ;
+lin archaeornis_N = mkN "archaeornis" "archaeornises" ;
+lin archaic_A = mkAMost "archaic" "archaicly" ;
+lin archaism_N = mkN "archaism" "archaisms" ;
+lin archaist_N = mkN "archaist" "archaists" ;
+lin archaistic_A = mkAMost "archaistic" "archaisticly" ;
+lin archangel_N = mkN "archangel" "archangels" ;
+lin archangelic_A = mkAMost "archangelic" "archangelicly" ;
+lin archbishop_N = mkN "archbishop" "archbishops" ;
+lin archbishopric_N = mkN "archbishopric" "archbishoprics" ;
+lin archdeacon_N = mkN "archdeacon" "archdeacons" ;
+lin archdeaconry_N = mkN "archdeaconry" "archdeaconries" ;
+lin archdiocesan_A = mkAMost "archdiocesan" "archdiocesanly" ;
+lin archdiocese_N = mkN "archdiocese" "archdioceses" ;
+lin archducal_A = mkAMost "archducal" "archducally" ;
+lin archduchess_N = mkN "archduchess" "archduchesses" ;
+lin archduchy_N = mkN "archduchy" "archduchies" ;
+lin archduke_N = mkN "archduke" "archdukes" ;
+lin archean_A = mkAMost "archean" "archeanly" ;
+lin archegonial_A = mkAMost "archegonial" "archegonially" ;
+lin archegonium_N = mkN "archegonium" "archegoniums" ;
+lin archenteron_N = mkN "archenteron" "archenterons" ;
+lin archeologist_N = mkN "archeologist" "archeologists" ;
+lin archeology_N = mkN "archeology" "archeologies" ;
+lin archeozoic_A = mkAMost "archeozoic" "archeozoicly" ;
+lin archer_N = mkN "archer" "archers" ;
+lin archerfish_N = mkN "archerfish" "archerfishes" ;
+lin archery_N = mkN "archery" "archeries" ;
+lin archespore_N = mkN "archespore" "archespores" ;
+lin archesporial_A = mkAMost "archesporial" "archesporially" ;
+lin archetypal_A = mkAMost "archetypal" "archetypally" ;
+lin archetype_N = mkN "archetype" "archetypes" ;
+lin archiannelid_N = mkN "archiannelid" "archiannelids" ;
+lin archidiaconal_A = mkAMost "archidiaconal" "archidiaconally" ;
+lin archidiaconate_N = mkN "archidiaconate" "archidiaconates" ;
+lin archiepiscopal_A = mkAMost "archiepiscopal" "archiepiscopally" ;
+lin archil_N = mkN "archil" "archils" ;
+lin archimandrite_N = mkN "archimandrite" "archimandrites" ;
+lin archine_N = mkN "archine" "archines" ;
+lin archipallium_N = mkN "archipallium" "archipalliums" ;
+lin archipelagic_A = mkAMost "archipelagic" "archipelagicly" ;
+lin archipelago_N = mkN "archipelago" "archipelagos" ;
+lin architect_N = mkN "architect" "architects" ;
+lin architectonics_N = mkN "architectonics" "architectonicses" ;
+lin architectural_A = mkAMost "architectural" "architecturally" ;
+lin architecture_N = mkN "architecture" "architectures" ;
+lin architeuthis_N = mkN "architeuthis" "architeuthises" ;
+lin architrave_N = mkN "architrave" "architraves" ;
+lin archival_A = mkAMost "archival" "archivally" ;
+lin archive_N = mkN "archive" "archives" ;
+lin archives_N = mkN "archives" "archiveses" ;
+lin archivist_N = mkN "archivist" "archivists" ;
+lin archosaur_N = mkN "archosaur" "archosaurs" ;
+lin archosaurian_A = mkAMost "archosaurian" "archosaurianly" ;
+lin archpriest_N = mkN "archpriest" "archpriests" ;
+lin archway_N = mkN "archway" "archways" ;
+lin arco_A = mkA "arco" "arcoer" "arcoest" "arcoly" ;
+lin arctic_A = mkAMost "arctic" "arcticly" ;
+lin arctic_N = mkN "arctic" "arctics" ;
+lin arctiid_N = mkN "arctiid" "arctiids" ;
+lin arcus_N = mkN "arcus" "arcuses" ;
+lin ardeb_N = mkN "ardeb" "ardebs" ;
+lin ardent_A = mkAMost "ardent" "ardently" ;
+lin ardor_N = mkN "ardor" "ardors" ;
+lin ardour_N = mkN "ardour" "ardours" ;
+lin arduous_A = mkAMost "arduous" "arduously" ;
+lin arduousness_N = mkN "arduousness" "arduousnesses" ;
+lin are_N = mkN "are" "ares" ;
+lin area_N = mkN "area" "areas" ;
+lin areal_A = mkAMost "areal" "areally" ;
+lin areaway_N = mkN "areaway" "areaways" ;
+lin areca_N = mkN "areca" "arecas" ;
+lin areflexia_N = mkN "areflexia" "areflexias" ;
+lin arena_N = mkN "arena" "arenas" ;
+lin arenaceous_A = mkAMost "arenaceous" "arenaceously" ;
+lin arenavirus_N = mkN "arenavirus" "arenaviruses" ;
+lin arenicolous_A = mkAMost "arenicolous" "arenicolously" ;
+lin areola_N = mkN "areola" "areolas" ;
+lin areolar_A = mkAMost "areolar" "areolarly" ;
+lin arethusa_N = mkN "arethusa" "arethusas" ;
+lin argali_N = mkN "argali" "argalis" ;
+lin argent_A = mkAMost "argent" "argently" ;
+lin argent_N = mkN "argent" "argents" ;
+lin argentic_A = mkAMost "argentic" "argenticly" ;
+lin argentiferous_A = mkAMost "argentiferous" "argentiferously" ;
+lin argentine_N = mkN "argentine" "argentines" ;
+lin argentinian_A = mkAMost "argentinian" "argentinianly" ;
+lin argentinian_N = mkN "argentinian" "argentinians" ;
+lin argentinosaur_N = mkN "argentinosaur" "argentinosaurs" ;
+lin argentite_N = mkN "argentite" "argentites" ;
+lin argentous_A = mkAMost "argentous" "argentously" ;
+lin argil_N = mkN "argil" "argils" ;
+lin argillaceous_A = mkAMost "argillaceous" "argillaceously" ;
+lin argillite_N = mkN "argillite" "argillites" ;
+lin arginine_N = mkN "arginine" "arginines" ;
+lin argon_N = mkN "argon" "argons" ;
+lin argonaut_N = mkN "argonaut" "argonauts" ;
+lin argosy_N = mkN "argosy" "argosies" ;
+lin argot_N = mkN "argot" "argots" ;
+lin arguable_A = mkAMost "arguable" "arguably" ;
+lin argue_V = mkV "argue" "argued" "argued" ;
+lin argument_N = mkN "argument" "arguments" ;
+lin argumentation_N = mkN "argumentation" "argumentations" ;
+lin argumentative_A = mkAMost "argumentative" "argumentatively" ;
+lin argus_N = mkN "argus" "arguses" ;
+lin argus_eyed_A = mkAMost "argus-eyed" "argus-eyedly" ;
+lin argyle_N = mkN "argyle" "argyles" ;
+lin argyll_N = mkN "argyll" "argylls" ;
+lin argyrodite_N = mkN "argyrodite" "argyrodites" ;
+lin aria_N = mkN "aria" "arias" ;
+lin arianist_N = mkN "arianist" "arianists" ;
+lin arid_A = mkAMost "arid" "aridly" ;
+lin aridity_N = mkN "aridity" "aridities" ;
+lin arietta_N = mkN "arietta" "ariettas" ;
+lin aright_Adv = mkAdv "aright" ;
+lin aril_N = mkN "aril" "arils" ;
+lin ariled_A = mkAMost "ariled" "ariledly" ;
+lin ariose_A = mkAMost "ariose" "ariosely" ;
+lin arioso_N = mkN "arioso" "ariosoes" ;
+lin arise_V = mkV "arise" "arose" "arisen" ;
+lin arista_N = mkN "arista" "aristas" ;
+lin aristocracy_N = mkN "aristocracy" "aristocracies" ;
+lin aristocrat_N = mkN "aristocrat" "aristocrats" ;
+lin aristocratic_A = mkAMost "aristocratic" "aristocraticly" ;
+lin aristocratically_Adv = mkAdv "aristocratically" ;
+lin arithmancy_N = mkN "arithmancy" "arithmancies" ;
+lin arithmetic_N = mkN "arithmetic" "arithmetics" ;
+lin arithmetical_A = mkAMost "arithmetical" "arithmetically" ;
+lin arithmetician_N = mkN "arithmetician" "arithmeticians" ;
+lin arity_N = mkN "arity" "arities" ;
+lin ark_N = mkN "ark" "arks" ;
+lin arm_N = mkN "arm" "arms" ;
+lin arm_V = mkV "arm" "armed" "armed" ;
+lin arm_hole_N = mkN "arm-hole" "arm-holes" ;
+lin armada_N = mkN "armada" "armadas" ;
+lin armadillo_N = mkN "armadillo" "armadillos" ;
+lin armament_N = mkN "armament" "armaments" ;
+lin armamentarium_N = mkN "armamentarium" "armamentariums" ;
+lin armature_N = mkN "armature" "armatures" ;
+lin armband_N = mkN "armband" "armbands" ;
+lin armchair_N = mkN "armchair" "armchairs" ;
+lin armet_N = mkN "armet" "armets" ;
+lin armful_N = mkN "armful" "armfuls" ;
+lin armhole_N = mkN "armhole" "armholes" ;
+lin armiger_N = mkN "armiger" "armigers" ;
+lin armilla_N = mkN "armilla" "armillas" ;
+lin armillary_A = mkAMost "armillary" "armillarily" ;
+lin arming_N = mkN "arming" "armings" ;
+lin armistice_N = mkN "armistice" "armistices" ;
+lin armless_A = mkAMost "armless" "armlessly" ;
+lin armlet_N = mkN "armlet" "armlets" ;
+lin armlike_A = mkAMost "armlike" "armlikely" ;
+lin armoire_N = mkN "armoire" "armoires" ;
+lin armor_N = mkN "armor" "armors" ;
+lin armored_A = mkAMost "armored" "armoredly" ;
+lin armorer_N = mkN "armorer" "armorers" ;
+lin armorial_A = mkAMost "armorial" "armorially" ;
+lin armory_N = mkN "armory" "armories" ;
+lin armour_N = mkN "armour" "armours" ;
+lin armour_plate_N = mkN "armour-plate" "armour-plates" ;
+lin armoured_A = mkAMost "armoured" "armouredly" ;
+lin armourer_N = mkN "armourer" "armourers" ;
+lin armoury_N = mkN "armoury" "armouries" ;
+lin armpit_N = mkN "armpit" "armpits" ;
+lin armrest_N = mkN "armrest" "armrests" ;
+lin arms_race_N = mkN "arms-race" "IRREG" ;
+lin arms_runner_N = mkN "arms-runner" "arms-runners" ;
+lin army_N = mkN "army" "armies" ;
+lin armyworm_N = mkN "armyworm" "armyworms" ;
+lin arnica_N = mkN "arnica" "arnicas" ;
+lin aroid_A = mkAMost "aroid" "aroidly" ;
+lin aroma_N = mkN "aroma" "aromas" ;
+lin aromatherapy_N = mkN "aromatherapy" "aromatherapies" ;
+lin aromatic_A = mkAMost "aromatic" "aromaticly" ;
+lin arose_V = mkV "arose" "arosed" "arosed" ;
+lin around_Adv = mkAdv "around" ;
+lin around_Prep = mkPrep "around" ;
+lin arousal_N = mkN "arousal" "arousals" ;
+lin arouse_V = mkV "arouse" "aroused" "aroused" ;
+lin arpeggio_N = mkN "arpeggio" "arpeggios" ;
+lin arpent_N = mkN "arpent" "arpents" ;
+lin arquebus_N = mkN "arquebus" "arquebuses" ;
+lin arrack_N = mkN "arrack" "arracks" ;
+lin arraign_V = mkV "arraign" "arraigned" "arraigned" ;
+lin arraignment_N = mkN "arraignment" "arraignments" ;
+lin arrange_V = mkV "arrange" "arranged" "arranged" ;
+lin arrangement_N = mkN "arrangement" "arrangements" ;
+lin arranger_N = mkN "arranger" "arrangers" ;
+lin arrant_A = mkAMost "arrant" "arrantly" ;
+lin arras_N = mkN "arras" "arrases" ;
+lin array_N = mkN "array" "arrays" ;
+lin array_V = mkV "array" "arrayed" "arrayed" ;
+lin arrears_N = mkN "arrears" "arrearses" ;
+lin arrest_N = mkN "arrest" "arrests" ;
+lin arrest_V = mkV "arrest" "arrested" "arrested" ;
+lin arrester_N = mkN "arrester" "arresters" ;
+lin arresting_A = mkAMost "arresting" "arrestingly" ;
+lin arrhythmic_A = mkAMost "arrhythmic" "arrhythmicly" ;
+lin arrival_N = mkN "arrival" "arrivals" ;
+lin arrive_V = mkV "arrive" "arrived" "arrived" ;
+lin arrière_pensée_N = mkN "arrière pensée" "arrière pensées" ;
+lin arroba_N = mkN "arroba" "arrobas" ;
+lin arrogance_N = mkN "arrogance" "arrogances" ;
+lin arrogant_A = mkAMost "arrogant" "arrogantly" ;
+lin arrogate_V = mkV "arrogate" "arrogated" "arrogated" ;
+lin arrogator_N = mkN "arrogator" "arrogators" ;
+lin arrow_N = mkN "arrow" "arrows" ;
+lin arrowhead_N = mkN "arrowhead" "arrowheads" ;
+lin arrowroot_N = mkN "arrowroot" "arrowroots" ;
+lin arrowsmith_N = mkN "arrowsmith" "arrowsmiths" ;
+lin arrowworm_N = mkN "arrowworm" "arrowworms" ;
+lin arroyo_N = mkN "arroyo" "arroyoes" ;
+lin arse_N = mkN "arse" "arses" ;
+lin arsehole_N = mkN "arsehole" "arseholes" ;
+lin arsenal_N = mkN "arsenal" "arsenals" ;
+lin arsenate_N = mkN "arsenate" "arsenates" ;
+lin arsenic_N = mkN "arsenic" "arsenics" ;
+lin arsenical_A = mkAMost "arsenical" "arsenically" ;
+lin arsenical_N = mkN "arsenical" "arsenicals" ;
+lin arsenide_N = mkN "arsenide" "arsenides" ;
+lin arsenious_A = mkAMost "arsenious" "arseniously" ;
+lin arsenopyrite_N = mkN "arsenopyrite" "arsenopyrites" ;
+lin arsine_N = mkN "arsine" "arsines" ;
+lin arson_N = mkN "arson" "arsons" ;
+lin arsonist_N = mkN "arsonist" "arsonists" ;
+lin art_N = mkN "art" "arts" ;
+lin artefact_N = mkN "artefact" "artefacts" ;
+lin artemisia_N = mkN "artemisia" "artemisias" ;
+lin arterial_A = mkAMost "arterial" "arterially" ;
+lin arteriectasis_N = mkN "arteriectasis" "arteriectasises" ;
+lin arteriogram_N = mkN "arteriogram" "arteriograms" ;
+lin arteriography_N = mkN "arteriography" "arteriographies" ;
+lin arteriolar_A = mkAMost "arteriolar" "arteriolarly" ;
+lin arteriole_N = mkN "arteriole" "arterioles" ;
+lin arteriolosclerosis_N = mkN "arteriolosclerosis" "arteriolosclerosises" ;
+lin arteriosclerosis_N = mkN "arteriosclerosis" "arteriosclerosises" ;
+lin arteriosclerotic_A = mkAMost "arteriosclerotic" "arterioscleroticly" ;
+lin arteriovenous_A = mkAMost "arteriovenous" "arteriovenously" ;
+lin arteritis_N = mkN "arteritis" "arteritises" ;
+lin artery_N = mkN "artery" "arteries" ;
+lin artesian_A = mkAMost "artesian" "artesianly" ;
+lin artful_A = mkAMost "artful" "artfully" ;
+lin artfulness_N = mkN "artfulness" "artfulnesses" ;
+lin arthralgia_N = mkN "arthralgia" "arthralgias" ;
+lin arthralgic_A = mkAMost "arthralgic" "arthralgicly" ;
+lin arthritic_A = mkAMost "arthritic" "arthriticly" ;
+lin arthritic_N = mkN "arthritic" "arthritics" ;
+lin arthritis_N = mkN "arthritis" "arthritises" ;
+lin arthrocentesis_N = mkN "arthrocentesis" "arthrocentesises" ;
+lin arthrodesis_N = mkN "arthrodesis" "arthrodesises" ;
+lin arthrogram_N = mkN "arthrogram" "arthrograms" ;
+lin arthrography_N = mkN "arthrography" "arthrographies" ;
+lin arthromere_N = mkN "arthromere" "arthromeres" ;
+lin arthromeric_A = mkAMost "arthromeric" "arthromericly" ;
+lin arthropathy_N = mkN "arthropathy" "arthropathies" ;
+lin arthroplasty_N = mkN "arthroplasty" "arthroplasties" ;
+lin arthropod_N = mkN "arthropod" "arthropods" ;
+lin arthropodal_A = mkAMost "arthropodal" "arthropodally" ;
+lin arthroscope_N = mkN "arthroscope" "arthroscopes" ;
+lin arthroscopy_N = mkN "arthroscopy" "arthroscopies" ;
+lin arthrospore_N = mkN "arthrospore" "arthrospores" ;
+lin arthrosporic_A = mkAMost "arthrosporic" "arthrosporicly" ;
+lin artichoke_N = mkN "artichoke" "artichokes" ;
+lin article_N = mkN "article" "articles" ;
+lin article_V = mkV "article" "articled" "articled" ;
+lin articular_A = mkAMost "articular" "articularly" ;
+lin articulate_A = mkAMost "articulate" "articulately" ;
+lin articulate_V = mkV "articulate" "articulated" "articulated" ;
+lin articulation_N = mkN "articulation" "articulations" ;
+lin articulator_N = mkN "articulator" "articulators" ;
+lin articulatory_A = mkAMost "articulatory" "articulatorily" ;
+lin artifact_N = mkN "artifact" "artifacts" ;
+lin artifactual_A = mkAMost "artifactual" "artifactually" ;
+lin artifice_N = mkN "artifice" "artifices" ;
+lin artificer_N = mkN "artificer" "artificers" ;
+lin artificial_A = mkAMost "artificial" "artificially" ;
+lin artificiality_N = mkN "artificiality" "artificialities" ;
+lin artillery_N = mkN "artillery" "artilleries" ;
+lin artilleryman_N = mkN "artilleryman" "artillerymans" ;
+lin artiodactyl_A = mkAMost "artiodactyl" "artiodactylly" ;
+lin artisan_N = mkN "artisan" "artisans" ;
+lin artist_N = mkN "artist" "artists" ;
+lin artiste_N = mkN "artiste" "artistes" ;
+lin artistic_A = mkAMost "artistic" "artisticly" ;
+lin artistically_Adv = mkAdv "artistically" ;
+lin artistry_N = mkN "artistry" "artistries" ;
+lin artless_A = mkAMost "artless" "artlessly" ;
+lin artlessness_N = mkN "artlessness" "artlessnesses" ;
+lin artwork_N = mkN "artwork" "artworks" ;
+lin arty_A = mkAMost "arty" "artily" ;
+lin arty_crafty_A = mkAMost "arty-crafty" "arty-craftily" ;
+lin arum_N = mkN "arum" "arums" ;
+lin arundinaceous_A = mkAMost "arundinaceous" "arundinaceously" ;
+lin aryan_A = mkAMost "aryan" "aryanly" ;
+lin aryan_N = mkN "aryan" "aryans" ;
+lin arytenoid_N = mkN "arytenoid" "arytenoids" ;
+lin arête_N = mkN "arête" "arêtes" ;
+lin as_Prep = mkPrep "as" ;
+lin as_for_Prep = mkPrep "as for" ;
+lin as_of_Prep = mkPrep "as of" ;
+lin as_opposed_to_Prep = mkPrep "as opposed to" ;
+lin as_per_Prep = mkPrep "as per" ;
+lin as_regards_Prep = mkPrep "as regards" ;
+lin as_well_Adv = mkAdv "as well" ;
+lin asafetida_N = mkN "asafetida" "asafetidas" ;
+lin asana_N = mkN "asana" "asanas" ;
+lin asarabacca_N = mkN "asarabacca" "asarabaccas" ;
+lin asbestos_N = mkN "asbestos" "asbestoses" ;
+lin asbestosis_N = mkN "asbestosis" "asbestosises" ;
+lin ascariasis_N = mkN "ascariasis" "ascariasises" ;
+lin ascend_V = mkV "ascend" "ascended" "ascended" ;
+lin ascendable_A = mkAMost "ascendable" "ascendably" ;
+lin ascendancy_N = mkN "ascendancy" "ascendancies" ;
+lin ascendant_A = mkAMost "ascendant" "ascendantly" ;
+lin ascendant_N = mkN "ascendant" "ascendants" ;
+lin ascendency_N = mkN "ascendency" "ascendencies" ;
+lin ascendent_N = mkN "ascendent" "ascendents" ;
+lin ascender_N = mkN "ascender" "ascenders" ;
+lin ascension_N = mkN "ascension" "ascensions" ;
+lin ascensional_A = mkAMost "ascensional" "ascensionally" ;
+lin ascent_N = mkN "ascent" "ascents" ;
+lin ascertain_V = mkV "ascertain" "ascertained" "ascertained" ;
+lin ascertainable_A = mkAMost "ascertainable" "ascertainably" ;
+lin ascetic_A = mkAMost "ascetic" "asceticly" ;
+lin ascetic_N = mkN "ascetic" "ascetics" ;
+lin ascetically_Adv = mkAdv "ascetically" ;
+lin asceticism_N = mkN "asceticism" "asceticisms" ;
+lin ascidian_N = mkN "ascidian" "ascidians" ;
+lin ascites_N = mkN "ascites" "asciteses" ;
+lin ascitic_A = mkAMost "ascitic" "asciticly" ;
+lin asclepiad_N = mkN "asclepiad" "asclepiads" ;
+lin asclepiadaceous_A = mkAMost "asclepiadaceous" "asclepiadaceously" ;
+lin ascocarp_N = mkN "ascocarp" "ascocarps" ;
+lin ascocarpous_A = mkAMost "ascocarpous" "ascocarpously" ;
+lin ascolichen_N = mkN "ascolichen" "ascolichens" ;
+lin ascoma_N = mkN "ascoma" "ascomas" ;
+lin ascomycete_N = mkN "ascomycete" "ascomycetes" ;
+lin ascomycetous_A = mkAMost "ascomycetous" "ascomycetously" ;
+lin ascorbic_A = mkAMost "ascorbic" "ascorbicly" ;
+lin ascospore_N = mkN "ascospore" "ascospores" ;
+lin ascosporic_A = mkAMost "ascosporic" "ascosporicly" ;
+lin ascot_N = mkN "ascot" "ascots" ;
+lin ascribable_A = mkAMost "ascribable" "ascribably" ;
+lin ascribe_V = mkV "ascribe" "ascribed" "ascribed" ;
+lin ascription_N = mkN "ascription" "ascriptions" ;
+lin ascus_N = mkN "ascus" "ascuses" ;
+lin asdic_N = mkN "asdic" "asdics" ;
+lin asepsis_N = mkN "asepsis" "asepsises" ;
+lin aseptic_A = mkAMost "aseptic" "asepticly" ;
+lin asexual_A = mkAMost "asexual" "asexually" ;
+lin asexuality_N = mkN "asexuality" "asexualities" ;
+lin ash_N = mkN "ash" "ashes" ;
+lin ash_bin_N = mkN "ash-bin" "ash-bins" ;
+lin ash_can_N = mkN "ash-can" "ash-cans" ;
+lin ash_key_N = mkN "ash-key" "ash-keys" ;
+lin ash_pan_N = mkN "ash-pan" "ash-pans" ;
+lin ashamed_A = mkAMost "ashamed" "ashamedly" ;
+lin ashcake_N = mkN "ashcake" "ashcakes" ;
+lin ashcan_N = mkN "ashcan" "ashcans" ;
+lin ashen_A = mkAMost "ashen" "ashenly" ;
+lin ashlar_N = mkN "ashlar" "ashlars" ;
+lin ashore_Adv = mkAdv "ashore" ;
+lin ashram_N = mkN "ashram" "ashrams" ;
+lin ashtray_N = mkN "ashtray" "ashtrays" ;
+lin ashy_A = mkAMost "ashy" "ashily" ;
+lin asiatic_A = mkAMost "asiatic" "asiaticly" ;
+lin asiatic_N = mkN "asiatic" "asiatics" ;
+lin aside_Adv = mkAdv "aside" ;
+lin aside_N = mkN "aside" "asides" ;
+lin aside_from_Prep = mkPrep "aside from" ;
+lin asinine_A = mkAMost "asinine" "asininely" ;
+lin asininity_N = mkN "asininity" "asininities" ;
+lin ask_V = mkV "ask" "asked" "asked" ;
+lin askance_A = mkAMost "askance" "askancely" ;
+lin askance_Adv = mkAdv "askance" ;
+lin askew_A = mkAMost "askew" "askewly" ;
+lin askew_Adv = mkAdv "askew" ;
+lin asking_N = mkN "asking" "IRREG" ;
+lin aslant_A = mkAMost "aslant" "aslantly" ;
+lin aslant_Adv = mkAdv "aslant" ;
+lin asleep_A = mkAMost "asleep" "asleeply" ;
+lin asleep_Adv = mkAdv "asleep" ;
+lin asocial_A = mkAMost "asocial" "asocially" ;
+lin asp_N = mkN "asp" "asps" ;
+lin asparaginase_N = mkN "asparaginase" "asparaginases" ;
+lin asparagine_N = mkN "asparagine" "asparagines" ;
+lin asparagus_N = mkN "asparagus" "asparaguses" ;
+lin aspartame_N = mkN "aspartame" "aspartames" ;
+lin aspect_N = mkN "aspect" "aspects" ;
+lin aspectual_A = mkAMost "aspectual" "aspectually" ;
+lin aspen_N = mkN "aspen" "aspens" ;
+lin asper_N = mkN "asper" "aspers" ;
+lin aspergill_N = mkN "aspergill" "aspergills" ;
+lin aspergillosis_N = mkN "aspergillosis" "aspergillosises" ;
+lin asperity_N = mkN "asperity" "asperities" ;
+lin asperse_V = mkV "asperse" "aspersed" "aspersed" ;
+lin aspersion_N = mkN "aspersion" "aspersions" ;
+lin aspersorium_N = mkN "aspersorium" "aspersoriums" ;
+lin asphalt_N = mkN "asphalt" "asphalts" ;
+lin asphalt_V = mkV "asphalt" "asphalted" "asphalted" ;
+lin asphaltic_A = mkAMost "asphaltic" "asphalticly" ;
+lin aspheric_A = mkAMost "aspheric" "asphericly" ;
+lin asphodel_N = mkN "asphodel" "asphodels" ;
+lin asphyxia_N = mkN "asphyxia" "asphyxias" ;
+lin asphyxiate_V = mkV "asphyxiate" "asphyxiated" "asphyxiated" ;
+lin asphyxiating_A = mkAMost "asphyxiating" "asphyxiatingly" ;
+lin asphyxiation_N = mkN "asphyxiation" "asphyxiations" ;
+lin aspic_N = mkN "aspic" "aspics" ;
+lin aspidistra_N = mkN "aspidistra" "aspidistras" ;
+lin aspirant_A = mkAMost "aspirant" "aspirantly" ;
+lin aspirant_N = mkN "aspirant" "aspirants" ;
+lin aspirate_N = mkN "aspirate" "aspirates" ;
+lin aspirate_V = mkV "aspirate" "aspirated" "aspirated" ;
+lin aspiration_N = mkN "aspiration" "aspirations" ;
+lin aspirator_N = mkN "aspirator" "aspirators" ;
+lin aspire_V = mkV "aspire" "aspired" "aspired" ;
+lin aspirin_N = mkN "aspirin" "aspirins" ;
+lin ass_N = mkN "ass" "asses" ;
+lin assagai_N = mkN "assagai" "assagais" ;
+lin assail_V = mkV "assail" "assailed" "assailed" ;
+lin assailability_N = mkN "assailability" "assailabilities" ;
+lin assailable_A = mkAMost "assailable" "assailably" ;
+lin assailant_N = mkN "assailant" "assailants" ;
+lin assassin_N = mkN "assassin" "assassins" ;
+lin assassinate_V = mkV "assassinate" "assassinated" "assassinated" ;
+lin assassination_N = mkN "assassination" "assassinations" ;
+lin assault_N = mkN "assault" "assaults" ;
+lin assault_V = mkV "assault" "assaulted" "assaulted" ;
+lin assaultive_A = mkAMost "assaultive" "assaultively" ;
+lin assay_N = mkN "assay" "assays" ;
+lin assay_V = mkV "assay" "assayed" "assayed" ;
+lin assayer_N = mkN "assayer" "assayers" ;
+lin assegai_N = mkN "assegai" "assegais" ;
+lin assemblage_N = mkN "assemblage" "assemblages" ;
+lin assemble_V = mkV "assemble" "assembled" "assembled" ;
+lin assembler_N = mkN "assembler" "assemblers" ;
+lin assembly_N = mkN "assembly" "assemblies" ;
+lin assemblyman_N = mkN "assemblyman" "assemblymans" ;
+lin assemblywoman_N = mkN "assemblywoman" "assemblywomans" ;
+lin assent_N = mkN "assent" "assents" ;
+lin assent_V = mkV "assent" "assented" "assented" ;
+lin assenter_N = mkN "assenter" "assenters" ;
+lin assentient_A = mkAMost "assentient" "assentiently" ;
+lin assert_V = mkV "assert" "asserted" "asserted" ;
+lin asserter_N = mkN "asserter" "asserters" ;
+lin assertion_N = mkN "assertion" "assertions" ;
+lin assertive_A = mkAMost "assertive" "assertively" ;
+lin assertiveness_N = mkN "assertiveness" "assertivenesses" ;
+lin assess_V = mkV "assess" "assessed" "assessed" ;
+lin assessable_A = mkAMost "assessable" "assessably" ;
+lin assessee_N = mkN "assessee" "assessees" ;
+lin assessment_N = mkN "assessment" "assessments" ;
+lin assessor_N = mkN "assessor" "assessors" ;
+lin asset_N = mkN "asset" "assets" ;
+lin assets_N = mkN "assets" "assetses" ;
+lin asseverate_V = mkV "asseverate" "asseverated" "asseverated" ;
+lin asseveration_N = mkN "asseveration" "asseverations" ;
+lin asshole_N = mkN "asshole" "assholes" ;
+lin assibilation_N = mkN "assibilation" "assibilations" ;
+lin assiduity_N = mkN "assiduity" "assiduities" ;
+lin assiduous_A = mkAMost "assiduous" "assiduously" ;
+lin assign_V = mkV "assign" "assigned" "assigned" ;
+lin assignable_A = mkAMost "assignable" "assignably" ;
+lin assignation_N = mkN "assignation" "assignations" ;
+lin assignee_N = mkN "assignee" "assignees" ;
+lin assignment_N = mkN "assignment" "assignments" ;
+lin assignor_N = mkN "assignor" "assignors" ;
+lin assimilable_A = mkAMost "assimilable" "assimilably" ;
+lin assimilate_V = mkV "assimilate" "assimilated" "assimilated" ;
+lin assimilation_N = mkN "assimilation" "assimilations" ;
+lin assimilative_A = mkAMost "assimilative" "assimilatively" ;
+lin assist_N = mkN "assist" "assists" ;
+lin assist_V = mkV "assist" "assisted" "assisted" ;
+lin assistance_N = mkN "assistance" "assistances" ;
+lin assistant_N = mkN "assistant" "assistants" ;
+lin assistive_A = mkAMost "assistive" "assistively" ;
+lin assize_N = mkN "assize" "assizes" ;
+lin assizes_N = mkN "assizes" "assizeses" ;
+lin assoc_N = mkN "assoc" "assocs" ;
+lin associability_N = mkN "associability" "associabilities" ;
+lin associable_A = mkAMost "associable" "associably" ;
+lin associate_A = mkAMost "associate" "associately" ;
+lin associate_N = mkN "associate" "associates" ;
+lin associate_V = mkV "associate" "associated" "associated" ;
+lin associateship_N = mkN "associateship" "associateships" ;
+lin association_N = mkN "association" "associations" ;
+lin associational_A = mkAMost "associational" "associationally" ;
+lin associationism_N = mkN "associationism" "associationisms" ;
+lin associative_A = mkAMost "associative" "associatively" ;
+lin assonance_N = mkN "assonance" "assonances" ;
+lin assonant_A = mkAMost "assonant" "assonantly" ;
+lin assorted_A = mkAMost "assorted" "assortedly" ;
+lin assortment_N = mkN "assortment" "assortments" ;
+lin asst_N = mkN "asst" "assts" ;
+lin assuage_V = mkV "assuage" "assuaged" "assuaged" ;
+lin assuasive_A = mkAMost "assuasive" "assuasively" ;
+lin assume_V = mkV "assume" "assumed" "assumed" ;
+lin assumption_N = mkN "assumption" "assumptions" ;
+lin assumptive_A = mkAMost "assumptive" "assumptively" ;
+lin assurance_N = mkN "assurance" "assurances" ;
+lin assure_V = mkV "assure" "assured" "assured" ;
+lin assuredly_Adv = mkAdv "assuredly" ;
+lin assuredness_N = mkN "assuredness" "assurednesses" ;
+lin assurgent_A = mkAMost "assurgent" "assurgently" ;
+lin assuring_A = mkAMost "assuring" "assuringly" ;
+lin astasia_N = mkN "astasia" "astasias" ;
+lin astatic_A = mkAMost "astatic" "astaticly" ;
+lin astatine_N = mkN "astatine" "astatines" ;
+lin aster_N = mkN "aster" "asters" ;
+lin astereognosis_N = mkN "astereognosis" "astereognosises" ;
+lin asteriated_A = mkAMost "asteriated" "asteriatedly" ;
+lin asterion_N = mkN "asterion" "asterions" ;
+lin asterisk_N = mkN "asterisk" "asterisks" ;
+lin asterisked_A = mkAMost "asterisked" "asteriskedly" ;
+lin asterism_N = mkN "asterism" "asterisms" ;
+lin asterismal_A = mkAMost "asterismal" "asterismally" ;
+lin astern_Adv = mkAdv "astern" ;
+lin asternal_A = mkAMost "asternal" "asternally" ;
+lin asteroid_A = mkAMost "asteroid" "asteroidly" ;
+lin asteroid_N = mkN "asteroid" "asteroids" ;
+lin asteroidal_A = mkAMost "asteroidal" "asteroidally" ;
+lin asthenia_N = mkN "asthenia" "asthenias" ;
+lin asthenic_A = mkAMost "asthenic" "asthenicly" ;
+lin asthenosphere_N = mkN "asthenosphere" "asthenospheres" ;
+lin asthma_N = mkN "asthma" "asthmas" ;
+lin asthmatic_A = mkAMost "asthmatic" "asthmaticly" ;
+lin asthmatic_N = mkN "asthmatic" "asthmatics" ;
+lin astigmatic_A = mkAMost "astigmatic" "astigmaticly" ;
+lin astigmatism_N = mkN "astigmatism" "astigmatisms" ;
+lin astilbe_N = mkN "astilbe" "astilbes" ;
+lin astir_A = mkAMost "astir" "astirly" ;
+lin astir_Adv = mkAdv "astir" ;
+lin astomatal_A = mkAMost "astomatal" "astomatally" ;
+lin astomatous_A = mkAMost "astomatous" "astomatously" ;
+lin astonish_V = mkV "astonish" "astonished" "astonished" ;
+lin astonishing_A = mkAMost "astonishing" "astonishingly" ;
+lin astonishment_N = mkN "astonishment" "astonishments" ;
+lin astound_V = mkV "astound" "astounded" "astounded" ;
+lin astounding_A = mkAMost "astounding" "astoundingly" ;
+lin astragalar_A = mkAMost "astragalar" "astragalarly" ;
+lin astrakhan_N = mkN "astrakhan" "astrakhans" ;
+lin astral_A = mkAMost "astral" "astrally" ;
+lin astrantia_N = mkN "astrantia" "astrantias" ;
+lin astraphobia_N = mkN "astraphobia" "astraphobias" ;
+lin astray_A = mkAMost "astray" "astraily" ;
+lin astray_Adv = mkAdv "astray" ;
+lin astride_A = mkAMost "astride" "astridely" ;
+lin astride_Adv = mkAdv "astride" ;
+lin astride_Prep = mkPrep "astride" ;
+lin astringency_N = mkN "astringency" "astringencies" ;
+lin astringent_A = mkAMost "astringent" "astringently" ;
+lin astringent_N = mkN "astringent" "astringents" ;
+lin astrocyte_N = mkN "astrocyte" "astrocytes" ;
+lin astrocytic_A = mkAMost "astrocytic" "astrocyticly" ;
+lin astrodome_N = mkN "astrodome" "astrodomes" ;
+lin astrodynamics_N = mkN "astrodynamics" "astrodynamicses" ;
+lin astrogator_N = mkN "astrogator" "astrogators" ;
+lin astroglia_N = mkN "astroglia" "astroglias" ;
+lin astrolabe_N = mkN "astrolabe" "astrolabes" ;
+lin astrolatry_N = mkN "astrolatry" "astrolatries" ;
+lin astrologer_N = mkN "astrologer" "astrologers" ;
+lin astrological_A = mkAMost "astrological" "astrologically" ;
+lin astrology_N = mkN "astrology" "astrologies" ;
+lin astrometry_N = mkN "astrometry" "astrometries" ;
+lin astronaut_N = mkN "astronaut" "astronauts" ;
+lin astronautic_A = mkAMost "astronautic" "astronauticly" ;
+lin astronautics_N = mkN "astronautics" "astronautics" ;
+lin astronomer_N = mkN "astronomer" "astronomers" ;
+lin astronomic_A = mkAMost "astronomic" "astronomicly" ;
+lin astronomical_A = mkAMost "astronomical" "astronomically" ;
+lin astronomy_N = mkN "astronomy" "astronomies" ;
+lin astrophysical_A = mkAMost "astrophysical" "astrophysically" ;
+lin astrophysicist_N = mkN "astrophysicist" "astrophysicists" ;
+lin astrophysics_N = mkN "astrophysics" "astrophysics" ;
+lin astute_A = mkAMost "astute" "astutely" ;
+lin astuteness_N = mkN "astuteness" "astutenesses" ;
+lin astylar_A = mkAMost "astylar" "astylarly" ;
+lin asunder_Adv = mkAdv "asunder" ;
+lin asylum_N = mkN "asylum" "asylums" ;
+lin asymmetric_A = mkAMost "asymmetric" "asymmetricly" ;
+lin asymmetrical_A = mkAMost "asymmetrical" "asymmetrically" ;
+lin asymmetry_N = mkN "asymmetry" "asymmetries" ;
+lin asymptomatic_A = mkAMost "asymptomatic" "asymptomaticly" ;
+lin asymptote_N = mkN "asymptote" "asymptotes" ;
+lin asymptotic_A = mkAMost "asymptotic" "asymptoticly" ;
+lin asymptotically_Adv = mkAdv "asymptotically" ;
+lin asynchronism_N = mkN "asynchronism" "asynchronisms" ;
+lin asynchronous_A = mkAMost "asynchronous" "asynchronously" ;
+lin asynclitism_N = mkN "asynclitism" "asynclitisms" ;
+lin asyndetic_A = mkAMost "asyndetic" "asyndeticly" ;
+lin asyndeton_N = mkN "asyndeton" "asyndetons" ;
+lin asynergic_A = mkAMost "asynergic" "asynergicly" ;
+lin asynergy_N = mkN "asynergy" "asynergies" ;
+lin asystole_N = mkN "asystole" "asystoles" ;
+lin at_N = mkN "at" "ats" ;
+lin at_Prep = mkPrep "at" ;
+lin at_all_Adv = mkAdv "at all" ;
+lin at_home_Adv = mkAdv "at home" ;
+lin at_home_N = mkN "at-home" "at-homes" ;
+lin at_the_behest_of_Prep = mkPrep "at the behest of" ;
+lin atabrine_N = mkN "atabrine" "atabrines" ;
+lin ataractic_A = mkAMost "ataractic" "ataracticly" ;
+lin ataraxia_N = mkN "ataraxia" "ataraxias" ;
+lin atavism_N = mkN "atavism" "atavisms" ;
+lin atavist_N = mkN "atavist" "atavists" ;
+lin atavistic_A = mkAMost "atavistic" "atavisticly" ;
+lin ataxia_N = mkN "ataxia" "ataxias" ;
+lin ataxic_A = mkAMost "ataxic" "ataxicly" ;
+lin atelectasis_N = mkN "atelectasis" "atelectasises" ;
+lin ateleiosis_N = mkN "ateleiosis" "ateleiosises" ;
+lin ateleiotic_A = mkAMost "ateleiotic" "ateleioticly" ;
+lin atelier_N = mkN "atelier" "ateliers" ;
+lin atenolol_N = mkN "atenolol" "atenolols" ;
+lin athanor_N = mkN "athanor" "athanors" ;
+lin atheism_N = mkN "atheism" "atheisms" ;
+lin atheist_A = mkAMost "atheist" "atheistly" ;
+lin atheist_N = mkN "atheist" "atheists" ;
+lin atheistic_A = mkAMost "atheistic" "atheisticly" ;
+lin athenaeum_N = mkN "athenaeum" "athenaeums" ;
+lin athenian_A = mkAMost "athenian" "athenianly" ;
+lin athenian_N = mkN "athenian" "athenians" ;
+lin atherogenesis_N = mkN "atherogenesis" "atherogenesises" ;
+lin atheroma_N = mkN "atheroma" "atheromas" ;
+lin atheromatous_A = mkAMost "atheromatous" "atheromatously" ;
+lin atherosclerosis_N = mkN "atherosclerosis" "atherosclerosises" ;
+lin atherosclerotic_A = mkAMost "atherosclerotic" "atheroscleroticly" ;
+lin athetosis_N = mkN "athetosis" "athetosises" ;
+lin athirst_A = mkAMost "athirst" "athirstly" ;
+lin athlete_N = mkN "athlete" "athletes" ;
+lin athletic_A = mkAMost "athletic" "athleticly" ;
+lin athleticism_N = mkN "athleticism" "athleticisms" ;
+lin athletics_N = mkN "athletics" "athletics" ;
+lin athwart_Adv = mkAdv "athwart" ;
+lin athwart_Prep = mkPrep "athwart" ;
+lin atilt_A = mkAMost "atilt" "atiltly" ;
+lin atlas_N = mkN "atlas" "atlases" ;
+lin atmometer_N = mkN "atmometer" "atmometers" ;
+lin atmosphere_N = mkN "atmosphere" "atmospheres" ;
+lin atmospheric_A = mkAMost "atmospheric" "atmosphericly" ;
+lin atmospherics_N = mkN "atmospherics" "atmospherics" ;
+lin atole_N = mkN "atole" "atoles" ;
+lin atoll_N = mkN "atoll" "atolls" ;
+lin atom_N = mkN "atom" "atoms" ;
+lin atomic_A = mkAMost "atomic" "atomicly" ;
+lin atomism_N = mkN "atomism" "atomisms" ;
+lin atomistic_A = mkAMost "atomistic" "atomisticly" ;
+lin atomization_N = mkN "atomization" "atomizations" ;
+lin atomize_V = mkV "atomize" "atomized" "atomized" ;
+lin atomizer_N = mkN "atomizer" "atomizers" ;
+lin atonal_A = mkAMost "atonal" "atonally" ;
+lin atonalistic_A = mkAMost "atonalistic" "atonalisticly" ;
+lin atonality_N = mkN "atonality" "atonalities" ;
+lin atone_V = mkV "atone" "atoned" "atoned" ;
+lin atonement_N = mkN "atonement" "atonements" ;
+lin atonic_A = mkAMost "atonic" "atonicly" ;
+lin atonicity_N = mkN "atonicity" "atonicities" ;
+lin atop_Adv = mkAdv "atop" ;
+lin atop_Prep = mkPrep "atop" ;
+lin atopognosia_N = mkN "atopognosia" "atopognosias" ;
+lin atorvastatin_N = mkN "atorvastatin" "atorvastatins" ;
+lin atrabilious_A = mkAMost "atrabilious" "atrabiliously" ;
+lin atrazine_N = mkN "atrazine" "atrazines" ;
+lin atresia_N = mkN "atresia" "atresias" ;
+lin atrial_A = mkAMost "atrial" "atrially" ;
+lin atrioventricular_A = mkAMost "atrioventricular" "atrioventricularly" ;
+lin atrium_N = mkN "atrium" "atriums" ;
+lin atrocious_A = mkAMost "atrocious" "atrociously" ;
+lin atrocity_N = mkN "atrocity" "atrocities" ;
+lin atrophic_A = mkAMost "atrophic" "atrophicly" ;
+lin atrophy_N = mkN "atrophy" "atrophies" ;
+lin atrophy_V = mkV "atrophy" "atrophied" "atrophied" ;
+lin atropine_N = mkN "atropine" "atropines" ;
+lin attach_V = mkV "attach" "attached" "attached" ;
+lin attachable_A = mkAMost "attachable" "attachably" ;
+lin attachment_N = mkN "attachment" "attachments" ;
+lin attaché_N = mkN "attaché" "attachés" ;
+lin attack_N = mkN "attack" "attacks" ;
+lin attack_V = mkV "attack" "attacked" "attacked" ;
+lin attacker_N = mkN "attacker" "attackers" ;
+lin attain_V = mkV "attain" "attained" "attained" ;
+lin attainable_A = mkAMost "attainable" "attainably" ;
+lin attainder_N = mkN "attainder" "attainders" ;
+lin attainment_N = mkN "attainment" "attainments" ;
+lin attar_N = mkN "attar" "attars" ;
+lin attempt_N = mkN "attempt" "attempts" ;
+lin attempt_V = mkV "attempt" "attempted" "attempted" ;
+lin attend_V = mkV "attend" "attended" "attended" ;
+lin attendance_N = mkN "attendance" "attendances" ;
+lin attendant_A = mkAMost "attendant" "attendantly" ;
+lin attendant_N = mkN "attendant" "attendants" ;
+lin attention_N = mkN "attention" "attentions" ;
+lin attentional_A = mkAMost "attentional" "attentionally" ;
+lin attentive_A = mkAMost "attentive" "attentively" ;
+lin attentiveness_N = mkN "attentiveness" "attentivenesses" ;
+lin attenuate_A = mkAMost "attenuate" "attenuately" ;
+lin attenuate_V = mkV "attenuate" "attenuated" "attenuated" ;
+lin attenuation_N = mkN "attenuation" "attenuations" ;
+lin attenuator_N = mkN "attenuator" "attenuators" ;
+lin attest_V = mkV "attest" "attested" "attested" ;
+lin attestation_N = mkN "attestation" "attestations" ;
+lin attester_N = mkN "attester" "attesters" ;
+lin attic_A = mkAMost "attic" "atticly" ;
+lin attic_N = mkN "attic" "attics" ;
+lin attire_N = mkN "attire" "attires" ;
+lin attire_V = mkV "attire" "attired" "attired" ;
+lin attitude_N = mkN "attitude" "attitudes" ;
+lin attitudinal_A = mkAMost "attitudinal" "attitudinally" ;
+lin attitudinize_V = mkV "attitudinize" "attitudinized" "attitudinized" ;
+lin attorney_N = mkN "attorney" "attorneys" ;
+lin attorneyship_N = mkN "attorneyship" "attorneyships" ;
+lin attosecond_N = mkN "attosecond" "attoseconds" ;
+lin attract_V = mkV "attract" "attracted" "attracted" ;
+lin attractable_A = mkAMost "attractable" "attractably" ;
+lin attraction_N = mkN "attraction" "attractions" ;
+lin attractive_A = mkAMost "attractive" "attractively" ;
+lin attractiveness_N = mkN "attractiveness" "attractivenesses" ;
+lin attractor_N = mkN "attractor" "attractors" ;
+lin attributable_A = mkAMost "attributable" "attributably" ;
+lin attribute_N = mkN "attribute" "attributes" ;
+lin attribute_V = mkV "attribute" "attributed" "attributed" ;
+lin attribution_N = mkN "attribution" "attributions" ;
+lin attributive_A = mkAMost "attributive" "attributively" ;
+lin attrited_A = mkAMost "attrited" "attritedly" ;
+lin attrition_N = mkN "attrition" "attritions" ;
+lin attritional_A = mkAMost "attritional" "attritionally" ;
+lin attune_V = mkV "attune" "attuned" "attuned" ;
+lin atypical_A = mkAMost "atypical" "atypically" ;
+lin atypicality_N = mkN "atypicality" "atypicalities" ;
+lin au_fait_A = mkAMost "au fait" "au faitly" ;
+lin au_fond_Adv = mkAdv "au fond" ;
+lin au_pair_N = mkN "au pair" "au pairs" ;
+lin aubergine_N = mkN "aubergine" "aubergines" ;
+lin aubrietia_N = mkN "aubrietia" "aubrietias" ;
+lin auburn_A = mkAMost "auburn" "auburnly" ;
+lin auction_N = mkN "auction" "auctions" ;
+lin auction_auctioned_V = mkV "auction" "auctioned" "auctioned" ;
+lin auction_auctionned_V = mkV "auction" "auctionned" "auctionned" ;
+lin auctioneer_N = mkN "auctioneer" "auctioneers" ;
+lin audacious_A = mkAMost "audacious" "audaciously" ;
+lin audacity_N = mkN "audacity" "audacities" ;
+lin audibility_N = mkN "audibility" "audibilities" ;
+lin audible_A = mkAMost "audible" "audibly" ;
+lin audible_N = mkN "audible" "audibles" ;
+lin audience_N = mkN "audience" "audiences" ;
+lin audile_N = mkN "audile" "audiles" ;
+lin audio_N = mkN "audio" "audios" ;
+lin audio_lingual_A = mkAMost "audio-lingual" "audio-lingually" ;
+lin audiocassette_N = mkN "audiocassette" "audiocassettes" ;
+lin audiogram_N = mkN "audiogram" "audiograms" ;
+lin audiology_N = mkN "audiology" "audiologies" ;
+lin audiometer_N = mkN "audiometer" "audiometers" ;
+lin audiometric_A = mkAMost "audiometric" "audiometricly" ;
+lin audiometry_N = mkN "audiometry" "audiometries" ;
+lin audiotape_N = mkN "audiotape" "audiotapes" ;
+lin audiovisual_A = mkAMost "audiovisual" "audiovisually" ;
+lin audiovisual_N = mkN "audiovisual" "audiovisuals" ;
+lin audit_N = mkN "audit" "audits" ;
+lin audit_V = mkV "audit" "audited" "audited" ;
+lin audition_N = mkN "audition" "auditions" ;
+lin audition_auditioned_V = mkV "audition" "auditioned" "auditioned" ;
+lin audition_auditionned_V = mkV "audition" "auditionned" "auditionned" ;
+lin auditor_N = mkN "auditor" "auditors" ;
+lin auditorium_N = mkN "auditorium" "auditoriums" ;
+lin auditory_A = mkAMost "auditory" "auditorily" ;
+lin augend_N = mkN "augend" "augends" ;
+lin auger_N = mkN "auger" "augers" ;
+lin aught_N = mkN "aught" "aughts" ;
+lin augite_N = mkN "augite" "augites" ;
+lin augitic_A = mkAMost "augitic" "augiticly" ;
+lin augment_V = mkV "augment" "augmented" "augmented" ;
+lin augmentation_N = mkN "augmentation" "augmentations" ;
+lin augmentative_A = mkAMost "augmentative" "augmentatively" ;
+lin augur_N = mkN "augur" "augurs" ;
+lin augur_V = mkV "augur" "augured" "augured" ;
+lin augury_N = mkN "augury" "auguries" ;
+lin august_A = mkAMost "august" "augustly" ;
+lin augustan_A = mkAMost "augustan" "augustanly" ;
+lin auk_N = mkN "auk" "auks" ;
+lin auklet_N = mkN "auklet" "auklets" ;
+lin auld_A = mkA "auld" "aulder" "auldest" "auldly" ;
+lin auld_lang_syne_N = mkN "auld lang syne" "IRREG" ;
+lin aunt_N = mkN "aunt" "aunts" ;
+lin auntie_N = mkN "auntie" "aunties" ;
+lin aunty_N = mkN "aunty" "aunties" ;
+lin aura_N = mkN "aura" "auras" ;
+lin aural_A = mkAMost "aural" "aurally" ;
+lin aureate_A = mkAMost "aureate" "aureately" ;
+lin aureole_N = mkN "aureole" "aureoles" ;
+lin auricle_N = mkN "auricle" "auricles" ;
+lin auricula_N = mkN "auricula" "auriculas" ;
+lin auricular_A = mkAMost "auricular" "auricularly" ;
+lin auriculare_N = mkN "auriculare" "auriculares" ;
+lin auriculate_A = mkAMost "auriculate" "auriculately" ;
+lin auriferous_A = mkAMost "auriferous" "auriferously" ;
+lin auriform_A = mkAMost "auriform" "auriformly" ;
+lin aurochs_N = mkN "aurochs" "aurochses" ;
+lin aurora_N = mkN "aurora" "auroras" ;
+lin auroral_A = mkAMost "auroral" "aurorally" ;
+lin aurous_A = mkAMost "aurous" "aurously" ;
+lin auscultation_N = mkN "auscultation" "auscultations" ;
+lin auscultatory_A = mkAMost "auscultatory" "auscultatorily" ;
+lin auspice_N = mkN "auspice" "auspices" ;
+lin auspices_N = mkN "auspices" "auspiceses" ;
+lin auspicious_A = mkAMost "auspicious" "auspiciously" ;
+lin auspiciousness_N = mkN "auspiciousness" "auspiciousnesses" ;
+lin aussie_N = mkN "aussie" "aussies" ;
+lin austenite_N = mkN "austenite" "austenites" ;
+lin austenitic_A = mkAMost "austenitic" "austeniticly" ;
+lin austere_A = mkAMost "austere" "austerely" ;
+lin austereness_N = mkN "austereness" "austerenesses" ;
+lin austerity_N = mkN "austerity" "austerities" ;
+lin austral_A = mkAMost "austral" "australly" ;
+lin austral_N = mkN "austral" "australs" ;
+lin australian_A = mkAMost "australian" "australianly" ;
+lin australian_N = mkN "australian" "australians" ;
+lin australopithecine_A = mkAMost "australopithecine" "australopithecinely" ;
+lin australopithecine_N = mkN "australopithecine" "australopithecines" ;
+lin austrian_A = mkAMost "austrian" "austrianly" ;
+lin austrian_N = mkN "austrian" "austrians" ;
+lin autacoid_N = mkN "autacoid" "autacoids" ;
+lin autacoidal_A = mkAMost "autacoidal" "autacoidally" ;
+lin autarchic_A = mkAMost "autarchic" "autarchicly" ;
+lin autarchy_N = mkN "autarchy" "autarchies" ;
+lin autarkic_A = mkAMost "autarkic" "autarkicly" ;
+lin autarky_N = mkN "autarky" "autarkies" ;
+lin auteur_N = mkN "auteur" "auteurs" ;
+lin authentic_A = mkAMost "authentic" "authenticly" ;
+lin authentically_Adv = mkAdv "authentically" ;
+lin authenticate_V = mkV "authenticate" "authenticated" "authenticated" ;
+lin authentication_N = mkN "authentication" "authentications" ;
+lin authenticity_N = mkN "authenticity" "authenticities" ;
+lin author_N = mkN "author" "authors" ;
+lin authore_V = mkV "authore" "authored" "authored" ;
+lin authoress_N = mkN "authoress" "authoresses" ;
+lin authorial_A = mkAMost "authorial" "authorially" ;
+lin authoritarian_A = mkAMost "authoritarian" "authoritarianly" ;
+lin authoritarian_N = mkN "authoritarian" "authoritarians" ;
+lin authoritarianism_N = mkN "authoritarianism" "authoritarianisms" ;
+lin authoritative_A = mkAMost "authoritative" "authoritatively" ;
+lin authority_N = mkN "authority" "authorities" ;
+lin authorization_N = mkN "authorization" "authorizations" ;
+lin authorize_V = mkV "authorize" "authorized" "authorized" ;
+lin authorizer_N = mkN "authorizer" "authorizers" ;
+lin authorship_N = mkN "authorship" "authorships" ;
+lin autism_N = mkN "autism" "autisms" ;
+lin autistic_A = mkAMost "autistic" "autisticly" ;
+lin auto_N = mkN "auto" "autos" ;
+lin auto_changer_N = mkN "auto-changer" "auto-changers" ;
+lin auto_da_fé_auto_de_fés_N = mkN "auto-da-fé" "auto-de-fés" ;
+lin auto_da_fé_autos_de_fé_N = mkN "auto-da-fé" "autos-de-fé" ;
+lin autoantibody_N = mkN "autoantibody" "autoantibodies" ;
+lin autobahn_N = mkN "autobahn" "autobahns" ;
+lin autobiographer_N = mkN "autobiographer" "autobiographers" ;
+lin autobiographic_A = mkAMost "autobiographic" "autobiographicly" ;
+lin autobiographical_A = mkAMost "autobiographical" "autobiographically" ;
+lin autobiography_N = mkN "autobiography" "autobiographies" ;
+lin autocatalysis_N = mkN "autocatalysis" "autocatalysises" ;
+lin autocatalytic_A = mkAMost "autocatalytic" "autocatalyticly" ;
+lin autochthon_N = mkN "autochthon" "autochthons" ;
+lin autochthonal_A = mkAMost "autochthonal" "autochthonally" ;
+lin autochthonous_A = mkAMost "autochthonous" "autochthonously" ;
+lin autoclave_N = mkN "autoclave" "autoclaves" ;
+lin autocracy_N = mkN "autocracy" "autocracies" ;
+lin autocrat_N = mkN "autocrat" "autocrats" ;
+lin autocratic_A = mkAMost "autocratic" "autocraticly" ;
+lin autocratically_Adv = mkAdv "autocratically" ;
+lin autodidact_N = mkN "autodidact" "autodidacts" ;
+lin autodidactic_A = mkAMost "autodidactic" "autodidacticly" ;
+lin autoecious_A = mkAMost "autoecious" "autoeciously" ;
+lin autoerotic_A = mkAMost "autoerotic" "autoeroticly" ;
+lin autoeroticism_N = mkN "autoeroticism" "autoeroticisms" ;
+lin autofluorescence_N = mkN "autofluorescence" "autofluorescences" ;
+lin autofluorescent_A = mkAMost "autofluorescent" "autofluorescently" ;
+lin autofocus_N = mkN "autofocus" "autofocuses" ;
+lin autogamous_A = mkAMost "autogamous" "autogamously" ;
+lin autogamy_N = mkN "autogamy" "autogamies" ;
+lin autogenetic_A = mkAMost "autogenetic" "autogeneticly" ;
+lin autogenous_A = mkAMost "autogenous" "autogenously" ;
+lin autogiro_N = mkN "autogiro" "autogiros" ;
+lin autograft_N = mkN "autograft" "autografts" ;
+lin autograph_N = mkN "autograph" "autographs" ;
+lin autograph_V = mkV "autograph" "autographed" "autographed" ;
+lin autographic_A = mkAMost "autographic" "autographicly" ;
+lin autogyro_N = mkN "autogyro" "autogyros" ;
+lin autoicous_A = mkAMost "autoicous" "autoicously" ;
+lin autoimmune_A = mkAMost "autoimmune" "autoimmunely" ;
+lin autoimmunity_N = mkN "autoimmunity" "autoimmunities" ;
+lin autoinjector_N = mkN "autoinjector" "autoinjectors" ;
+lin autoloader_N = mkN "autoloader" "autoloaders" ;
+lin autologous_A = mkAMost "autologous" "autologously" ;
+lin autolysis_N = mkN "autolysis" "autolysises" ;
+lin autolytic_A = mkAMost "autolytic" "autolyticly" ;
+lin automat_N = mkN "automat" "automats" ;
+lin automate_V = mkV "automate" "automated" "automated" ;
+lin automatic_A = mkAMost "automatic" "automaticly" ;
+lin automatic_N = mkN "automatic" "automatics" ;
+lin automatically_Adv = mkAdv "automatically" ;
+lin automation_N = mkN "automation" "automations" ;
+lin automatism_N = mkN "automatism" "automatisms" ;
+lin automaton_N = mkN "automaton" "automatons" ;
+lin automobile_N = mkN "automobile" "automobiles" ;
+lin automotive_A = mkAMost "automotive" "automotively" ;
+lin automysophobia_N = mkN "automysophobia" "automysophobias" ;
+lin autonomic_A = mkAMost "autonomic" "autonomicly" ;
+lin autonomous_A = mkAMost "autonomous" "autonomously" ;
+lin autonomy_N = mkN "autonomy" "autonomies" ;
+lin autophyte_N = mkN "autophyte" "autophytes" ;
+lin autopilot_N = mkN "autopilot" "autopilots" ;
+lin autoplastic_A = mkAMost "autoplastic" "autoplasticly" ;
+lin autoplasty_N = mkN "autoplasty" "autoplasties" ;
+lin autopsy_N = mkN "autopsy" "autopsies" ;
+lin autoradiograph_N = mkN "autoradiograph" "autoradiographs" ;
+lin autoradiographic_A = mkAMost "autoradiographic" "autoradiographicly" ;
+lin autoradiography_N = mkN "autoradiography" "autoradiographies" ;
+lin autoregulation_N = mkN "autoregulation" "autoregulations" ;
+lin autosemantic_A = mkAMost "autosemantic" "autosemanticly" ;
+lin autosexing_N = mkN "autosexing" "autosexings" ;
+lin autosomal_A = mkAMost "autosomal" "autosomally" ;
+lin autosome_N = mkN "autosome" "autosomes" ;
+lin autostrada_N = mkN "autostrada" "autostradas" ;
+lin autosuggestion_N = mkN "autosuggestion" "autosuggestions" ;
+lin autotelic_A = mkAMost "autotelic" "autotelicly" ;
+lin autotelism_N = mkN "autotelism" "autotelisms" ;
+lin autotomic_A = mkAMost "autotomic" "autotomicly" ;
+lin autotomy_N = mkN "autotomy" "autotomies" ;
+lin autotrophic_A = mkAMost "autotrophic" "autotrophicly" ;
+lin autotype_N = mkN "autotype" "autotypes" ;
+lin autotypic_A = mkAMost "autotypic" "autotypicly" ;
+lin autumn_N = mkN "autumn" "autumns" ;
+lin autumnal_A = mkAMost "autumnal" "autumnally" ;
+lin auxesis_N = mkN "auxesis" "auxesises" ;
+lin auxetic_A = mkAMost "auxetic" "auxeticly" ;
+lin auxiliary_A = mkAMost "auxiliary" "auxiliarily" ;
+lin auxiliary_N = mkN "auxiliary" "auxiliaries" ;
+lin auxin_N = mkN "auxin" "auxins" ;
+lin auxinic_A = mkAMost "auxinic" "auxinicly" ;
+lin avadavat_N = mkN "avadavat" "avadavats" ;
+lin avail_N = mkN "avail" "avails" ;
+lin avail_V = mkV "avail" "availed" "availed" ;
+lin availability_N = mkN "availability" "availabilities" ;
+lin available_A = mkAMost "available" "availably" ;
+lin avalanche_N = mkN "avalanche" "avalanches" ;
+lin avant_garde_N = mkN "avant-garde" "avant-gardes" ;
+lin avaram_N = mkN "avaram" "avarams" ;
+lin avarice_N = mkN "avarice" "avarices" ;
+lin avaricious_A = mkAMost "avaricious" "avariciously" ;
+lin avascular_A = mkAMost "avascular" "avascularly" ;
+lin avatar_N = mkN "avatar" "avatars" ;
+lin avellan_A = mkAMost "avellan" "avellanly" ;
+lin avenge_V = mkV "avenge" "avenged" "avenged" ;
+lin avenger_N = mkN "avenger" "avengers" ;
+lin avens_N = mkN "avens" "avenses" ;
+lin avenue_N = mkN "avenue" "avenues" ;
+lin aver_V = mkV "aver" "averred" "averred" ;
+lin average_A = mkAMost "average" "averagely" ;
+lin average_N = mkN "average" "averages" ;
+lin average_V = mkV "average" "averaged" "averaged" ;
+lin averageness_N = mkN "averageness" "averagenesses" ;
+lin averse_A = mkAMost "averse" "aversely" ;
+lin aversion_N = mkN "aversion" "aversions" ;
+lin aversive_A = mkAMost "aversive" "aversively" ;
+lin avert_V = mkV "avert" "averted" "averted" ;
+lin averting_N = mkN "averting" "avertings" ;
+lin avian_A = mkAMost "avian" "avianly" ;
+lin aviary_N = mkN "aviary" "aviaries" ;
+lin aviation_N = mkN "aviation" "aviations" ;
+lin aviator_N = mkN "aviator" "aviators" ;
+lin aviatrix_N = mkN "aviatrix" "aviatrixes" ;
+lin avid_A = mkAMost "avid" "avidly" ;
+lin avidity_N = mkN "avidity" "avidities" ;
+lin avifauna_N = mkN "avifauna" "avifaunas" ;
+lin avifaunal_A = mkAMost "avifaunal" "avifaunally" ;
+lin avionic_A = mkAMost "avionic" "avionicly" ;
+lin avionics_N = mkN "avionics" "avionicses" ;
+lin avirulent_A = mkAMost "avirulent" "avirulently" ;
+lin avitaminosis_N = mkN "avitaminosis" "avitaminosises" ;
+lin avitaminotic_A = mkAMost "avitaminotic" "avitaminoticly" ;
+lin avo_N = mkN "avo" "avoes" ;
+lin avocado_A = mkAMost "avocado" "avocadoly" ;
+lin avocado_N = mkN "avocado" "avocados" ;
+lin avocation_N = mkN "avocation" "avocations" ;
+lin avocational_A = mkAMost "avocational" "avocationally" ;
+lin avocet_N = mkN "avocet" "avocets" ;
+lin avoid_V = mkV "avoid" "avoided" "avoided" ;
+lin avoidable_A = mkAMost "avoidable" "avoidably" ;
+lin avoidance_N = mkN "avoidance" "avoidances" ;
+lin avoirdupois_N = mkN "avoirdupois" "avoirdupoises" ;
+lin avouch_V = mkV "avouch" "avouched" "avouched" ;
+lin avow_V = mkV "avow" "avowed" "avowed" ;
+lin avowal_N = mkN "avowal" "avowals" ;
+lin avowedly_Adv = mkAdv "avowedly" ;
+lin avower_N = mkN "avower" "avowers" ;
+lin avulsion_N = mkN "avulsion" "avulsions" ;
+lin avuncular_A = mkAMost "avuncular" "avuncularly" ;
+lin await_V = mkV "await" "awaited" "awaited" ;
+lin awake_A = mkAMost "awake" "awakely" ;
+lin awake_V = mkV "awake" "awoke" "awoken" ;
+lin awaken_V = mkV "awaken" "awakened" "awakened" ;
+lin awakening_N = mkN "awakening" "awakenings" ;
+lin award_N = mkN "award" "awards" ;
+lin award_V = mkV "award" "awarded" "awarded" ;
+lin aware_A = mkAMost "aware" "awarely" ;
+lin awareness_N = mkN "awareness" "awarenesses" ;
+lin awash_A = mkAMost "awash" "awashly" ;
+lin away_A = mkAMost "away" "awaily" ;
+lin away_Adv = mkAdv "away" ;
+lin awayness_N = mkN "awayness" "awaynesses" ;
+lin awe_N = mkN "awe" "awes" ;
+lin awe_V = mkV "awe" "awed" "awed" ;
+lin awe_inspiring_A = mkAMost "awe-inspiring" "awe-inspiringly" ;
+lin awe_stricken_A = mkAMost "awe-stricken" "awe-strickenly" ;
+lin awe_struck_A = mkAMost "awe-struck" "awe-struckly" ;
+lin aweary_A = mkAMost "aweary" "awearily" ;
+lin aweigh_A = mkAMost "aweigh" "aweighly" ;
+lin aweigh_Adv = mkAdv "aweigh" ;
+lin aweless_A = mkAMost "aweless" "awelessly" ;
+lin awesome_A = mkAMost "awesome" "awesomely" ;
+lin awful_A = mkAMost "awful" "awfully" ;
+lin awfulness_N = mkN "awfulness" "awfulnesses" ;
+lin awheel_A = mkAMost "awheel" "awheelly" ;
+lin awhile_Adv = mkAdv "awhile" ;
+lin awkward_A = mkAMost "awkward" "awkwardly" ;
+lin awkwardness_N = mkN "awkwardness" "awkwardnesses" ;
+lin awl_N = mkN "awl" "awls" ;
+lin awlwort_N = mkN "awlwort" "awlworts" ;
+lin awn_N = mkN "awn" "awns" ;
+lin awned_A = mkAMost "awned" "awnedly" ;
+lin awning_N = mkN "awning" "awnings" ;
+lin awninged_A = mkAMost "awninged" "awningedly" ;
+lin awnless_A = mkAMost "awnless" "awnlessly" ;
+lin awry_A = mkAMost "awry" "awrily" ;
+lin awry_Adv = mkAdv "awry" ;
+lin ax_N = mkN "ax" "axes" ;
+lin ax_V = mkV "ax" "axed" "axed" ;
+lin axe_N = mkN "axe" "axes" ;
+lin axe_V = mkV "axe" "axed" "axed" ;
+lin axenic_A = mkAMost "axenic" "axenicly" ;
+lin axial_A = mkAMost "axial" "axially" ;
+lin axil_N = mkN "axil" "axils" ;
+lin axile_A = mkAMost "axile" "axilely" ;
+lin axillary_A = mkAMost "axillary" "axillarily" ;
+lin axiological_A = mkAMost "axiological" "axiologically" ;
+lin axiology_N = mkN "axiology" "axiologies" ;
+lin axiom_N = mkN "axiom" "axioms" ;
+lin axiomatic_A = mkAMost "axiomatic" "axiomaticly" ;
+lin axiomatically_Adv = mkAdv "axiomatically" ;
+lin axis_N = mkN "axis" "axes" ;
+lin axle_N = mkN "axle" "axles" ;
+lin axletree_N = mkN "axletree" "axletrees" ;
+lin axolemma_N = mkN "axolemma" "axolemmas" ;
+lin axolotl_N = mkN "axolotl" "axolotls" ;
+lin axon_N = mkN "axon" "axons" ;
+lin axonal_A = mkAMost "axonal" "axonally" ;
+lin axseed_N = mkN "axseed" "axseeds" ;
+lin ay_Adv = mkAdv "ay" ;
+lin ayah_N = mkN "ayah" "ayahs" ;
+lin ayapana_N = mkN "ayapana" "ayapanas" ;
+lin ayatollah_N = mkN "ayatollah" "ayatollahs" ;
+lin aye_Adv = mkAdv "aye" ;
+lin ayin_N = mkN "ayin" "ayins" ;
+lin azadirachtin_N = mkN "azadirachtin" "azadirachtins" ;
+lin azalea_N = mkN "azalea" "azaleas" ;
+lin azathioprine_N = mkN "azathioprine" "azathioprines" ;
+lin azide_N = mkN "azide" "azides" ;
+lin azido_A = mkAMost "azido" "azidoly" ;
+lin azimuth_N = mkN "azimuth" "azimuths" ;
+lin azimuthal_A = mkAMost "azimuthal" "azimuthally" ;
+lin azithromycin_N = mkN "azithromycin" "azithromycins" ;
+lin azo_A = mkA "azo" "azoer" "azoest" "azoly" ;
+lin azoic_A = mkAMost "azoic" "azoicly" ;
+lin azonal_A = mkAMost "azonal" "azonally" ;
+lin azonic_A = mkAMost "azonic" "azonicly" ;
+lin azote_N = mkN "azote" "azotes" ;
+lin azotemic_A = mkAMost "azotemic" "azotemicly" ;
+lin azotic_A = mkAMost "azotic" "azoticly" ;
+lin azoturia_N = mkN "azoturia" "azoturias" ;
+lin aztreonam_N = mkN "aztreonam" "aztreonams" ;
+lin azure_A = mkAMost "azure" "azurely" ;
+lin azure_N = mkN "azure" "azures" ;
+lin azurite_N = mkN "azurite" "azurites" ;
+lin azygous_A = mkAMost "azygous" "azygously" ;
+lin azymia_N = mkN "azymia" "azymias" ;
+lin b_ed_N = mkN "b ed" "b eds" ;
+lin ba_N = mkN "ba" "bas" ;
+lin baa_N = mkN "baa" "baas" ;
+lin baa_V = mkV "baa" "baaed" "baaed" ;
+lin baa_lamb_N = mkN "baa-lamb" "baa-lambs" ;
+lin baas_N = mkN "baas" "baases" ;
+lin baba_N = mkN "baba" "babas" ;
+lin babassu_N = mkN "babassu" "babassus" ;
+lin babbitting_N = mkN "babbitting" "babbittings" ;
+lin babble_N = mkN "babble" "babbles" ;
+lin babble_V = mkV "babble" "babbled" "babbled" ;
+lin babbler_N = mkN "babbler" "babblers" ;
+lin babe_N = mkN "babe" "babes" ;
+lin babel_N = mkN "babel" "babels" ;
+lin babelike_A = mkAMost "babelike" "babelikely" ;
+lin babirusa_N = mkN "babirusa" "babirusas" ;
+lin babka_N = mkN "babka" "babkas" ;
+lin baboo_N = mkN "baboo" "baboos" ;
+lin baboon_N = mkN "baboon" "baboons" ;
+lin baboonish_A = mkAMost "baboonish" "baboonishly" ;
+lin babu_N = mkN "babu" "babus" ;
+lin babushka_N = mkN "babushka" "babushkas" ;
+lin baby_N = mkN "baby" "babies" ;
+lin baby_V = mkV "baby" "babied" "babied" ;
+lin baby_faced_A = mkAMost "baby-faced" "baby-facedly" ;
+lin baby_farmer_N = mkN "baby-farmer" "baby-farmers" ;
+lin baby_minder_N = mkN "baby-minder" "baby-minders" ;
+lin baby_talk_N = mkN "baby-talk" "baby-talks" ;
+lin babyhood_N = mkN "babyhood" "babyhoods" ;
+lin babyish_A = mkAMost "babyish" "babyishly" ;
+lin babyminder_N = mkN "babyminder" "babyminders" ;
+lin babysit_V = mkV "babysit" "babysat" "babysat" ;
+lin babysitter_N = mkN "babysitter" "babysitters" ;
+lin babysitting_N = mkN "babysitting" "babysittings" ;
+lin baccalaureate_N = mkN "baccalaureate" "baccalaureates" ;
+lin baccarat_N = mkN "baccarat" "baccarats" ;
+lin baccate_A = mkAMost "baccate" "baccately" ;
+lin bacchanal_A = mkAMost "bacchanal" "bacchanally" ;
+lin bacchanal_N = mkN "bacchanal" "bacchanals" ;
+lin bacchanalian_A = mkAMost "bacchanalian" "bacchanalianly" ;
+lin bacchant_N = mkN "bacchant" "bacchants" ;
+lin bacchante_N = mkN "bacchante" "bacchantes" ;
+lin bacchantic_A = mkAMost "bacchantic" "bacchanticly" ;
+lin baccivorous_A = mkAMost "baccivorous" "baccivorously" ;
+lin baccy_N = mkN "baccy" "baccies" ;
+lin bachelor_N = mkN "bachelor" "bachelors" ;
+lin bachelorhood_N = mkN "bachelorhood" "bachelorhoods" ;
+lin bacillar_A = mkAMost "bacillar" "bacillarly" ;
+lin bacillus_N = mkN "bacillus" "bacilli" ;
+lin bacitracin_N = mkN "bacitracin" "bacitracins" ;
+lin back_Adv = mkAdv "back" ;
+lin back_N = mkN "back" "backs" ;
+lin back_V = mkV "back" "backed" "backed" ;
+lin back_breaking_A = mkAMost "back-breaking" "back-breakingly" ;
+lin back_down_N = mkN "back-down" "back-downs" ;
+lin back_formation_N = mkN "back-formation" "back-formations" ;
+lin back_to_Prep = mkPrep "back to" ;
+lin back_up_N = mkN "back-up" "back-ups" ;
+lin backache_N = mkN "backache" "backaches" ;
+lin backband_N = mkN "backband" "backbands" ;
+lin backbeat_N = mkN "backbeat" "backbeats" ;
+lin backbench_N = mkN "backbench" "backbenches" ;
+lin backbencher_N = mkN "backbencher" "backbenchers" ;
+lin backbend_N = mkN "backbend" "backbends" ;
+lin backbite_V = mkV "backbite" "backbit" "backbitten" ;
+lin backbiter_N = mkN "backbiter" "backbiters" ;
+lin backblast_N = mkN "backblast" "backblasts" ;
+lin backboard_N = mkN "backboard" "backboards" ;
+lin backbone_N = mkN "backbone" "backbones" ;
+lin backchat_N = mkN "backchat" "backchats" ;
+lin backcloth_N = mkN "backcloth" "backcloths" ;
+lin backdate_V = mkV "backdate" "backdated" "backdated" ;
+lin backdoor_N = mkN "backdoor" "backdoors" ;
+lin backdrop_N = mkN "backdrop" "backdrops" ;
+lin backer_N = mkN "backer" "backers" ;
+lin backfield_N = mkN "backfield" "backfields" ;
+lin backfire_N = mkN "backfire" "backfires" ;
+lin backfire_V = mkV "backfire" "backfired" "backfired" ;
+lin backflow_N = mkN "backflow" "backflows" ;
+lin backgammon_N = mkN "backgammon" "backgammons" ;
+lin background_N = mkN "background" "backgrounds" ;
+lin backgrounder_N = mkN "backgrounder" "backgrounders" ;
+lin backhand_A = mkAMost "backhand" "backhandly" ;
+lin backhand_N = mkN "backhand" "backhands" ;
+lin backhanded_A = mkAMost "backhanded" "backhandedly" ;
+lin backhander_N = mkN "backhander" "backhanders" ;
+lin backhoe_N = mkN "backhoe" "backhoes" ;
+lin backing_N = mkN "backing" "backings" ;
+lin backlash_N = mkN "backlash" "backlashes" ;
+lin backless_A = mkAMost "backless" "backlessly" ;
+lin backlighting_N = mkN "backlighting" "backlightings" ;
+lin backlog_N = mkN "backlog" "backlogs" ;
+lin backmost_A = mkAMost "backmost" "backmostly" ;
+lin backpack_N = mkN "backpack" "backpacks" ;
+lin backpacker_N = mkN "backpacker" "backpackers" ;
+lin backpedal_V = mkV "backpedal" "backpedalled" "backpedalled" ;
+lin backpedaling_V = mkV "backpedaling" "backpedalinged" "backpedalinged" ;
+lin backplate_N = mkN "backplate" "backplates" ;
+lin backroom_N = mkN "backroom" "backrooms" ;
+lin backsaw_N = mkN "backsaw" "backsaws" ;
+lin backscratcher_N = mkN "backscratcher" "backscratchers" ;
+lin backseat_N = mkN "backseat" "backseats" ;
+lin backsheesh_N = mkN "backsheesh" "backsheesh" ;
+lin backside_N = mkN "backside" "backsides" ;
+lin backslapper_N = mkN "backslapper" "backslappers" ;
+lin backslide_V = mkV "backslide" "backslid" "backslid" ;
+lin backsliding_N = mkN "backsliding" "backslidings" ;
+lin backspace_V = mkV "backspace" "backspaced" "backspaced" ;
+lin backspin_N = mkN "backspin" "backspins" ;
+lin backstage_Adv = mkAdv "backstage" ;
+lin backstair_A = mkAMost "backstair" "backstairly" ;
+lin backstairs_N = mkN "backstairs" "backstairses" ;
+lin backstay_N = mkN "backstay" "backstays" ;
+lin backstitch_N = mkN "backstitch" "backstitches" ;
+lin backstop_N = mkN "backstop" "backstops" ;
+lin backstroke_N = mkN "backstroke" "backstrokes" ;
+lin backstroker_N = mkN "backstroker" "backstrokers" ;
+lin backswept_A = mkAMost "backswept" "backsweptly" ;
+lin backswimmer_N = mkN "backswimmer" "backswimmers" ;
+lin backsword_N = mkN "backsword" "backswords" ;
+lin backtalk_N = mkN "backtalk" "backtalks" ;
+lin backup_N = mkN "backup" "backups" ;
+lin backward_A = mkAMost "backward" "backwardly" ;
+lin backward_Adv = mkAdv "backward" ;
+lin backwards_A = mkAMost "backwards" "backwardsly" ;
+lin backwards_Adv = mkAdv "backwards" ;
+lin backwash_N = mkN "backwash" "backwashes" ;
+lin backwater_N = mkN "backwater" "backwaters" ;
+lin backwoods_N = mkN "backwoods" "backwoodses" ;
+lin backwoodsman_N = mkN "backwoodsman" "backwoodsmen" ;
+lin backyard_N = mkN "backyard" "backyards" ;
+lin bacon_N = mkN "bacon" "bacons" ;
+lin bacteremia_N = mkN "bacteremia" "bacteremias" ;
+lin bacteremic_A = mkAMost "bacteremic" "bacteremicly" ;
+lin bacteria_N = mkN "bacteria" "bacterias" ;
+lin bacterial_A = mkAMost "bacterial" "bacterially" ;
+lin bactericidal_A = mkAMost "bactericidal" "bactericidally" ;
+lin bactericide_N = mkN "bactericide" "bactericides" ;
+lin bacteriochlorophyll_N = mkN "bacteriochlorophyll" "bacteriochlorophylls" ;
+lin bacteriological_A = mkAMost "bacteriological" "bacteriologically" ;
+lin bacteriologist_N = mkN "bacteriologist" "bacteriologists" ;
+lin bacteriology_N = mkN "bacteriology" "bacteriologies" ;
+lin bacteriolysis_N = mkN "bacteriolysis" "bacteriolysises" ;
+lin bacteriolytic_A = mkAMost "bacteriolytic" "bacteriolyticly" ;
+lin bacteriophage_N = mkN "bacteriophage" "bacteriophages" ;
+lin bacteriophagic_A = mkAMost "bacteriophagic" "bacteriophagicly" ;
+lin bacteriostasis_N = mkN "bacteriostasis" "bacteriostasises" ;
+lin bacteriostat_N = mkN "bacteriostat" "bacteriostats" ;
+lin bacteriostatic_A = mkAMost "bacteriostatic" "bacteriostaticly" ;
+lin bacterium_N = mkN "bacterium" "bacteria" ;
+lin bacteroid_N = mkN "bacteroid" "bacteroids" ;
+lin bacteroidal_A = mkAMost "bacteroidal" "bacteroidally" ;
+lin bad_A = mkA "bad" "worse" "worst" "badly" ;
+lin bad_N = mkN "bad" "bads" ;
+lin baddeleyite_N = mkN "baddeleyite" "baddeleyites" ;
+lin badge_N = mkN "badge" "badges" ;
+lin badger_N = mkN "badger" "badgers" ;
+lin badger_V = mkV "badger" "badgered" "badgered" ;
+lin badgering_N = mkN "badgering" "badgerings" ;
+lin badinage_N = mkN "badinage" "badinages" ;
+lin badlands_N = mkN "badlands" "badlandses" ;
+lin badly_behaved_A = mkAMost "badly-behaved" "badly-behavedly" ;
+lin badminton_N = mkN "badminton" "badmintons" ;
+lin badness_N = mkN "badness" "badnesses" ;
+lin baedeker_N = mkN "baedeker" "baedekers" ;
+lin baffle_N = mkN "baffle" "baffles" ;
+lin baffle_V = mkV "baffle" "baffled" "baffled" ;
+lin baffled_N = mkN "baffled" "baffleds" ;
+lin baffling_A = mkAMost "baffling" "bafflingly" ;
+lin bag_N = mkN "bag" "bags" ;
+lin bag_V = mkV "bag" "bagged" "bagged" ;
+lin bagasse_N = mkN "bagasse" "bagasses" ;
+lin bagassosis_N = mkN "bagassosis" "bagassosises" ;
+lin bagatelle_N = mkN "bagatelle" "bagatelles" ;
+lin bagel_N = mkN "bagel" "bagels" ;
+lin baggage_N = mkN "baggage" "baggages" ;
+lin baggageman_N = mkN "baggageman" "baggagemen" ;
+lin bagger_N = mkN "bagger" "baggers" ;
+lin baggy_A = mkAMost "baggy" "baggily" ;
+lin bagman_N = mkN "bagman" "bagmans" ;
+lin bagnio_N = mkN "bagnio" "bagnios" ;
+lin bagpipe_N = mkN "bagpipe" "bagpipes" ;
+lin baguet_N = mkN "baguet" "baguets" ;
+lin bahamian_A = mkAMost "bahamian" "bahamianly" ;
+lin bahamian_N = mkN "bahamian" "bahamians" ;
+lin bahasa_N = mkN "bahasa" "bahasas" ;
+lin bahraini_A = mkAMost "bahraini" "bahrainily" ;
+lin bahraini_N = mkN "bahraini" "bahrainis" ;
+lin baht_N = mkN "baht" "bahts" ;
+lin bail_N = mkN "bail" "bails" ;
+lin bail_V = mkV "bail" "bailed" "bailed" ;
+lin bailable_A = mkAMost "bailable" "bailably" ;
+lin bailee_N = mkN "bailee" "bailees" ;
+lin bailey_N = mkN "bailey" "baileys" ;
+lin bailiff_N = mkN "bailiff" "bailiffs" ;
+lin bailiffship_N = mkN "bailiffship" "bailiffships" ;
+lin bailiwick_N = mkN "bailiwick" "bailiwicks" ;
+lin bailment_N = mkN "bailment" "bailments" ;
+lin bailor_N = mkN "bailor" "bailors" ;
+lin bairn_N = mkN "bairn" "bairns" ;
+lin bait_N = mkN "bait" "baits" ;
+lin bait_V = mkV "bait" "baited" "baited" ;
+lin baiting_N = mkN "baiting" "baitings" ;
+lin baiza_N = mkN "baiza" "baizas" ;
+lin baize_N = mkN "baize" "baizes" ;
+lin bake_V = mkV "bake" "baked" "baked" ;
+lin bakelite_N = mkN "bakelite" "bakelites" ;
+lin baker_N = mkN "baker" "bakers" ;
+lin bakery_N = mkN "bakery" "bakeries" ;
+lin baking_N = mkN "baking" "bakings" ;
+lin baking_hot_A = mkAMost "baking-hot" "baking-hotly" ;
+lin baking_powder_N = mkN "baking-powder" "baking-powders" ;
+lin baklava_N = mkN "baklava" "baklavas" ;
+lin baksheesh_N = mkN "baksheesh" "baksheesh" ;
+lin balaclava_N = mkN "balaclava" "balaclavas" ;
+lin balagan_N = mkN "balagan" "balagans" ;
+lin balalaika_N = mkN "balalaika" "balalaikas" ;
+lin balance_N = mkN "balance" "balances" ;
+lin balance_V = mkV "balance" "balanced" "balanced" ;
+lin balance_sheet_N = mkN "balance-sheet" "balance-sheets" ;
+lin balance_wheel_N = mkN "balance-wheel" "balance-wheels" ;
+lin balancer_N = mkN "balancer" "balancers" ;
+lin balanitis_N = mkN "balanitis" "balanitises" ;
+lin balanoposthitis_N = mkN "balanoposthitis" "balanoposthitises" ;
+lin balas_N = mkN "balas" "balases" ;
+lin balata_N = mkN "balata" "balatas" ;
+lin balboa_N = mkN "balboa" "balboas" ;
+lin balbriggan_N = mkN "balbriggan" "balbriggans" ;
+lin balconied_A = mkAMost "balconied" "balconiedly" ;
+lin balcony_N = mkN "balcony" "balconies" ;
+lin bald_A = mkA "bald" "balder" "baldest" "baldly" ;
+lin bald_head_N = mkN "bald-head" "bald-heads" ;
+lin bald_pate_N = mkN "bald-pate" "bald-pates" ;
+lin baldachin_N = mkN "baldachin" "baldachins" ;
+lin balderdash_N = mkN "balderdash" "balderdashes" ;
+lin baldhead_N = mkN "baldhead" "baldheads" ;
+lin balding_A = mkAMost "balding" "baldingly" ;
+lin baldness_N = mkN "baldness" "baldnesses" ;
+lin baldric_N = mkN "baldric" "baldrics" ;
+lin bale_N = mkN "bale" "bales" ;
+lin bale_V = mkV "bale" "baled" "baled" ;
+lin baleful_A = mkAMost "baleful" "balefully" ;
+lin balk_N = mkN "balk" "balks" ;
+lin balk_V = mkV "balk" "balked" "balked" ;
+lin balker_N = mkN "balker" "balkers" ;
+lin balkiness_N = mkN "balkiness" "balkinesses" ;
+lin balkline_N = mkN "balkline" "balklines" ;
+lin ball_N = mkN "ball" "balls" ;
+lin ball_V = mkV "ball" "balled" "balled" ;
+lin ball_cartridge_N = mkN "ball-cartridge" "ball-cartridges" ;
+lin ball_dress_N = mkN "ball-dress" "ball-dresses" ;
+lin ballad_N = mkN "ballad" "ballads" ;
+lin ballade_N = mkN "ballade" "ballades" ;
+lin ballast_N = mkN "ballast" "ballasts" ;
+lin ballast_V = mkV "ballast" "ballasted" "ballasted" ;
+lin ballbearing_N = mkN "ballbearing" "ballbearings" ;
+lin ballcock_N = mkN "ballcock" "ballcocks" ;
+lin balldress_N = mkN "balldress" "balldresses" ;
+lin ballerina_N = mkN "ballerina" "ballerinas" ;
+lin ballet_N = mkN "ballet" "ballets" ;
+lin ballet_dancer_N = mkN "ballet-dancer" "ballet-dancers" ;
+lin ballet_skirt_N = mkN "ballet-skirt" "ballet-skirts" ;
+lin balletic_A = mkAMost "balletic" "balleticly" ;
+lin balletomane_N = mkN "balletomane" "balletomanes" ;
+lin balletomania_N = mkN "balletomania" "balletomanias" ;
+lin ballgame_N = mkN "ballgame" "ballgames" ;
+lin ballistic_A = mkAMost "ballistic" "ballisticly" ;
+lin ballistics_N = mkN "ballistics" "ballistics" ;
+lin ballistocardiogram_N = mkN "ballistocardiogram" "ballistocardiograms" ;
+lin ballistocardiograph_N = mkN "ballistocardiograph" "ballistocardiographs" ;
+lin ballock_N = mkN "ballock" "ballocks" ;
+lin balloon_N = mkN "balloon" "balloons" ;
+lin balloon_V = mkV "balloon" "ballooned" "ballooned" ;
+lin balloonfish_N = mkN "balloonfish" "balloonfishes" ;
+lin ballooning_N = mkN "ballooning" "balloonings" ;
+lin balloonist_N = mkN "balloonist" "balloonists" ;
+lin ballot_N = mkN "ballot" "ballots" ;
+lin ballot_V = mkV "ballot" "balloted" "balloted" ;
+lin ballot_box_N = mkN "ballot-box" "ballot-boxes" ;
+lin ballottement_N = mkN "ballottement" "ballottements" ;
+lin ballpark_N = mkN "ballpark" "ballparks" ;
+lin ballpen_N = mkN "ballpen" "ballpens" ;
+lin ballplayer_N = mkN "ballplayer" "ballplayers" ;
+lin ballpoint_N = mkN "ballpoint" "ballpoints" ;
+lin ballpoint_pen_N = mkN "ballpoint-pen" "ballpoint-pens" ;
+lin ballroom_N = mkN "ballroom" "ballrooms" ;
+lin balls_V = mkV "balls" "ballsed" "ballsed" ;
+lin balls_up_N = mkN "balls-up" "balls-ups" ;
+lin ballup_N = mkN "ballup" "ballups" ;
+lin bally_A = mkAMost "bally" "ballily" ;
+lin bally_Adv = mkAdv "bally" ;
+lin ballyhoo_N = mkN "ballyhoo" "ballyhoos" ;
+lin balm_N = mkN "balm" "balms" ;
+lin balminess_N = mkN "balminess" "balminesses" ;
+lin balmoral_N = mkN "balmoral" "balmorals" ;
+lin balmy_A = mkA "balmy" "balmier" "balmiest" "balmily" ;
+lin baloney_N = mkN "baloney" "baloneys" ;
+lin balsa_N = mkN "balsa" "balsas" ;
+lin balsam_N = mkN "balsam" "balsams" ;
+lin balsamic_A = mkAMost "balsamic" "balsamicly" ;
+lin balsamroot_N = mkN "balsamroot" "balsamroots" ;
+lin baluster_N = mkN "baluster" "balusters" ;
+lin balustrade_N = mkN "balustrade" "balustrades" ;
+lin bambino_N = mkN "bambino" "bambinos" ;
+lin bamboo_N = mkN "bamboo" "bamboos" ;
+lin bamboozle_V = mkV "bamboozle" "bamboozled" "bamboozled" ;
+lin ban_N = mkN "ban" "bans" ;
+lin ban_V = mkV "ban" "banned" "banned" ;
+lin banal_A = mkAMost "banal" "banally" ;
+lin banality_N = mkN "banality" "banalities" ;
+lin banana_N = mkN "banana" "bananas" ;
+lin banausic_A = mkAMost "banausic" "banausicly" ;
+lin band_N = mkN "band" "bands" ;
+lin band_V = mkV "band" "banded" "banded" ;
+lin band_saw_N = mkN "band-saw" "band-saws" ;
+lin bandage_N = mkN "bandage" "bandages" ;
+lin bandage_V = mkV "bandage" "bandaged" "bandaged" ;
+lin bandanna_N = mkN "bandanna" "bandannas" ;
+lin bandbox_N = mkN "bandbox" "bandboxes" ;
+lin bandeau_N = mkN "bandeau" "bandeaux" ;
+lin banderilla_N = mkN "banderilla" "banderillas" ;
+lin banderillero_N = mkN "banderillero" "banderilleroes" ;
+lin bandicoot_N = mkN "bandicoot" "bandicoots" ;
+lin bandit_N = mkN "bandit" "bandits" ;
+lin banditry_N = mkN "banditry" "banditries" ;
+lin bandleader_N = mkN "bandleader" "bandleaders" ;
+lin bandmaster_N = mkN "bandmaster" "bandmasters" ;
+lin bandoleer_N = mkN "bandoleer" "bandoleers" ;
+lin bandolier_N = mkN "bandolier" "bandoliers" ;
+lin bandoneon_N = mkN "bandoneon" "bandoneons" ;
+lin bandsaw_N = mkN "bandsaw" "bandsaws" ;
+lin bandsman_N = mkN "bandsman" "bandsmen" ;
+lin bandstand_N = mkN "bandstand" "bandstands" ;
+lin bandwagon_N = mkN "bandwagon" "bandwagons" ;
+lin bandwidth_N = mkN "bandwidth" "bandwidths" ;
+lin bandy_A = mkA "bandy" "bandier" "bandiest" "bandily" ;
+lin bandy_V = mkV "bandy" "bandied" "bandied" ;
+lin bandy_legged_A = mkAMost "bandy-legged" "bandy-leggedly" ;
+lin bane_N = mkN "bane" "banes" ;
+lin baneberry_N = mkN "baneberry" "baneberries" ;
+lin baneful_A = mkAMost "baneful" "banefully" ;
+lin bang_Adv = mkAdv "bang" ;
+lin bang_N = mkN "bang" "bangs" ;
+lin bang_V = mkV "bang" "banged" "banged" ;
+lin banger_N = mkN "banger" "bangers" ;
+lin banging_N = mkN "banging" "bangings" ;
+lin bangladeshi_A = mkAMost "bangladeshi" "bangladeshily" ;
+lin bangladeshi_N = mkN "bangladeshi" "bangladeshis" ;
+lin bangle_N = mkN "bangle" "bangles" ;
+lin banian_N = mkN "banian" "banians" ;
+lin banian_tree_N = mkN "banian-tree" "banian-trees" ;
+lin banish_V = mkV "banish" "banished" "banished" ;
+lin banishment_N = mkN "banishment" "banishments" ;
+lin banister_N = mkN "banister" "banisters" ;
+lin banjo_N = mkN "banjo" "banjos" ;
+lin bank_N = mkN "bank" "banks" ;
+lin bank_V = mkV "bank" "banked" "banked" ;
+lin bank_bill_N = mkN "bank-bill" "bank-bills" ;
+lin bank_book_N = mkN "bank-book" "bank-books" ;
+lin bank_draft_N = mkN "bank-draft" "bank-drafts" ;
+lin bank_rate_N = mkN "bank-rate" "bank-rates" ;
+lin bankable_A = mkAMost "bankable" "bankably" ;
+lin bankbook_N = mkN "bankbook" "bankbooks" ;
+lin banker_N = mkN "banker" "bankers" ;
+lin banking_N = mkN "banking" "bankings" ;
+lin banknote_N = mkN "banknote" "banknotes" ;
+lin bankroll_N = mkN "bankroll" "bankrolls" ;
+lin bankrupt_A = mkAMost "bankrupt" "bankruptly" ;
+lin bankrupt_N = mkN "bankrupt" "bankrupts" ;
+lin bankrupt_V = mkV "bankrupt" "bankrupted" "bankrupted" ;
+lin bankruptcy_N = mkN "bankruptcy" "bankruptcies" ;
+lin banksia_N = mkN "banksia" "banksias" ;
+lin banner_A = mkAMost "banner" "bannerly" ;
+lin banner_N = mkN "banner" "banners" ;
+lin bannerlike_Adv = mkAdv "bannerlike" ;
+lin banning_order_N = mkN "banning-order" "banning-orders" ;
+lin bannister_N = mkN "bannister" "bannisters" ;
+lin bannock_N = mkN "bannock" "bannocks" ;
+lin banns_N = mkN "banns" "bannses" ;
+lin banquet_N = mkN "banquet" "banquets" ;
+lin banquet_V = mkV "banquet" "banqueted" "banqueted" ;
+lin banquette_N = mkN "banquette" "banquettes" ;
+lin banshee_N = mkN "banshee" "banshees" ;
+lin bant_V = mkV "bant" "banted" "banted" ;
+lin bantam_A = mkAMost "bantam" "bantamly" ;
+lin bantam_N = mkN "bantam" "bantams" ;
+lin bantamweight_N = mkN "bantamweight" "bantamweights" ;
+lin banteng_N = mkN "banteng" "bantengs" ;
+lin banter_N = mkN "banter" "banters" ;
+lin banter_V = mkV "banter" "bantered" "bantered" ;
+lin banteringly_Adv = mkAdv "banteringly" ;
+lin banting_N = mkN "banting" "bantings" ;
+lin bantu_A = mkAMost "bantu" "bantuly" ;
+lin bantu_N = mkN "bantu" "bantu" ;
+lin banyan_N = mkN "banyan" "banyans" ;
+lin banzai_N = mkN "banzai" "banzais" ;
+lin baobab_N = mkN "baobab" "baobabs" ;
+lin bap_N = mkN "bap" "baps" ;
+lin baptism_N = mkN "baptism" "baptisms" ;
+lin baptismal_A = mkAMost "baptismal" "baptismally" ;
+lin baptist_A = mkAMost "baptist" "baptistly" ;
+lin baptist_N = mkN "baptist" "baptists" ;
+lin baptize_V = mkV "baptize" "baptized" "baptized" ;
+lin bar_N = mkN "bar" "bars" ;
+lin bar_Prep = mkPrep "bar" ;
+lin bar_V = mkV "bar" "barred" "barred" ;
+lin barb_N = mkN "barb" "barbs" ;
+lin barbadian_A = mkAMost "barbadian" "barbadianly" ;
+lin barbadian_N = mkN "barbadian" "barbadians" ;
+lin barbarian_A = mkAMost "barbarian" "barbarianly" ;
+lin barbarian_N = mkN "barbarian" "barbarians" ;
+lin barbaric_A = mkAMost "barbaric" "barbaricly" ;
+lin barbarism_N = mkN "barbarism" "barbarisms" ;
+lin barbarity_N = mkN "barbarity" "barbarities" ;
+lin barbarization_N = mkN "barbarization" "barbarizations" ;
+lin barbarize_V = mkV "barbarize" "barbarized" "barbarized" ;
+lin barbarous_A = mkAMost "barbarous" "barbarously" ;
+lin barbasco_N = mkN "barbasco" "barbascoes" ;
+lin barbecue_N = mkN "barbecue" "barbecues" ;
+lin barbecue_V = mkV "barbecue" "barbecued" "barbecued" ;
+lin barbecuing_N = mkN "barbecuing" "barbecuings" ;
+lin barbed_A = mkAMost "barbed" "barbedly" ;
+lin barbel_N = mkN "barbel" "barbels" ;
+lin barbell_N = mkN "barbell" "barbells" ;
+lin barber_N = mkN "barber" "barbers" ;
+lin barberry_N = mkN "barberry" "barberries" ;
+lin barbershop_N = mkN "barbershop" "barbershops" ;
+lin barbet_N = mkN "barbet" "barbets" ;
+lin barbette_N = mkN "barbette" "barbettes" ;
+lin barbican_N = mkN "barbican" "barbicans" ;
+lin barbital_N = mkN "barbital" "barbitals" ;
+lin barbitone_N = mkN "barbitone" "barbitones" ;
+lin barbiturate_N = mkN "barbiturate" "barbiturates" ;
+lin barbu_N = mkN "barbu" "barbus" ;
+lin barcarole_N = mkN "barcarole" "barcaroles" ;
+lin barcarolle_N = mkN "barcarolle" "barcarolles" ;
+lin bard_N = mkN "bard" "bards" ;
+lin bardic_A = mkAMost "bardic" "bardicly" ;
+lin bardolatry_N = mkN "bardolatry" "bardolatries" ;
+lin bare_A = mkA "bare" "barer" "barest" "barely" ;
+lin bare_V = mkV "bare" "bared" "bared" ;
+lin bareback_A = mkAMost "bareback" "barebackly" ;
+lin bareback_Adv = mkAdv "bareback" ;
+lin barebacked_A = mkAMost "barebacked" "barebackedly" ;
+lin barebacked_Adv = mkAdv "barebacked" ;
+lin bareboat_N = mkN "bareboat" "bareboats" ;
+lin bareboating_N = mkN "bareboating" "bareboatings" ;
+lin barefaced_A = mkAMost "barefaced" "barefacedly" ;
+lin barefoot_A = mkAMost "barefoot" "barefootly" ;
+lin barefoot_Adv = mkAdv "barefoot" ;
+lin barefooted_A = mkAMost "barefooted" "barefootedly" ;
+lin barefooted_Adv = mkAdv "barefooted" ;
+lin barehanded_A = mkAMost "barehanded" "barehandedly" ;
+lin bareheaded_A = mkAMost "bareheaded" "bareheadedly" ;
+lin barelegged_A = mkAMost "barelegged" "bareleggedly" ;
+lin bareness_N = mkN "bareness" "barenesses" ;
+lin bargain_N = mkN "bargain" "bargains" ;
+lin bargain_V = mkV "bargain" "bargained" "bargained" ;
+lin bargainer_N = mkN "bargainer" "bargainers" ;
+lin bargaining_N = mkN "bargaining" "bargainings" ;
+lin barge_N = mkN "barge" "barges" ;
+lin barge_V = mkV "barge" "barged" "barged" ;
+lin bargee_N = mkN "bargee" "bargees" ;
+lin bargello_N = mkN "bargello" "bargelloes" ;
+lin bargepole_N = mkN "bargepole" "bargepoles" ;
+lin baric_A = mkAMost "baric" "baricly" ;
+lin barilla_N = mkN "barilla" "barillas" ;
+lin baritone_A = mkAMost "baritone" "baritonely" ;
+lin baritone_N = mkN "baritone" "baritones" ;
+lin barium_N = mkN "barium" "bariums" ;
+lin bark_N = mkN "bark" "barks" ;
+lin bark_V = mkV "bark" "barked" "barked" ;
+lin barker_N = mkN "barker" "barkers" ;
+lin barky_A = mkA "barky" "barkier" "barkiest" "barkily" ;
+lin barley_N = mkN "barley" "barleys" ;
+lin barley_sugar_N = mkN "barley-sugar" "barley-sugars" ;
+lin barley_water_N = mkN "barley-water" "barley-waters" ;
+lin barleycorn_N = mkN "barleycorn" "barleycorns" ;
+lin barm_N = mkN "barm" "barms" ;
+lin barmaid_N = mkN "barmaid" "barmaids" ;
+lin barman_N = mkN "barman" "barmen" ;
+lin barmbrack_N = mkN "barmbrack" "barmbracks" ;
+lin barmy_A = mkAMost "barmy" "barmily" ;
+lin barn_N = mkN "barn" "barns" ;
+lin barn_door_N = mkN "barn-door" "barn-doors" ;
+lin barnacle_N = mkN "barnacle" "barnacles" ;
+lin barnburner_N = mkN "barnburner" "barnburners" ;
+lin barndoor_N = mkN "barndoor" "barndoors" ;
+lin barnful_N = mkN "barnful" "barnfuls" ;
+lin barnstorm_V = mkV "barnstorm" "barnstormed" "barnstormed" ;
+lin barnstormer_N = mkN "barnstormer" "barnstormers" ;
+lin barnyard_N = mkN "barnyard" "barnyards" ;
+lin barograph_N = mkN "barograph" "barographs" ;
+lin barographic_A = mkAMost "barographic" "barographicly" ;
+lin barometer_N = mkN "barometer" "barometers" ;
+lin barometric_A = mkAMost "barometric" "barometricly" ;
+lin baron_N = mkN "baron" "barons" ;
+lin baronage_N = mkN "baronage" "baronages" ;
+lin baronduki_N = mkN "baronduki" "barondukis" ;
+lin baroness_N = mkN "baroness" "baronesses" ;
+lin baronet_N = mkN "baronet" "baronets" ;
+lin baronetage_N = mkN "baronetage" "baronetages" ;
+lin baronetcy_N = mkN "baronetcy" "baronetcies" ;
+lin barong_N = mkN "barong" "barongs" ;
+lin baronial_A = mkAMost "baronial" "baronially" ;
+lin barony_N = mkN "barony" "baronies" ;
+lin baroque_A = mkAMost "baroque" "baroquely" ;
+lin baroque_N = mkN "baroque" "IRREG" ;
+lin baroreceptor_N = mkN "baroreceptor" "baroreceptors" ;
+lin barosaur_N = mkN "barosaur" "barosaurs" ;
+lin barouche_N = mkN "barouche" "barouches" ;
+lin barque_N = mkN "barque" "barques" ;
+lin barrack_N = mkN "barrack" "barracks" ;
+lin barrack_V = mkV "barrack" "barracked" "barracked" ;
+lin barracking_N = mkN "barracking" "barrackings" ;
+lin barracouta_N = mkN "barracouta" "barracoutas" ;
+lin barracuda_N = mkN "barracuda" "barracudas" ;
+lin barrage_N = mkN "barrage" "barrages" ;
+lin barramundi_N = mkN "barramundi" "barramundis" ;
+lin barrator_N = mkN "barrator" "barrators" ;
+lin barratry_N = mkN "barratry" "barratries" ;
+lin barrel_N = mkN "barrel" "barrels" ;
+lin barrel_V = mkV "barrel" "barrelled" "barrelled" ;
+lin barreled_A = mkAMost "barreled" "barreledly" ;
+lin barrelfish_N = mkN "barrelfish" "barrelfishes" ;
+lin barrelhouse_N = mkN "barrelhouse" "barrelhouses" ;
+lin barrels_N = mkN "barrels" "barrelses" ;
+lin barren_A = mkAMost "barren" "barrenly" ;
+lin barren_N = mkN "barren" "barrens" ;
+lin barrenness_N = mkN "barrenness" "barrennesses" ;
+lin barrenwort_N = mkN "barrenwort" "barrenworts" ;
+lin barrette_N = mkN "barrette" "barrettes" ;
+lin barricade_N = mkN "barricade" "barricades" ;
+lin barricade_V = mkV "barricade" "barricaded" "barricaded" ;
+lin barrier_N = mkN "barrier" "barriers" ;
+lin barring_N = mkN "barring" "barrings" ;
+lin barrio_N = mkN "barrio" "barrios" ;
+lin barrister_N = mkN "barrister" "barristers" ;
+lin barroom_N = mkN "barroom" "barrooms" ;
+lin barrow_N = mkN "barrow" "barrows" ;
+lin barrow_boy_N = mkN "barrow-boy" "barrow-boys" ;
+lin barrow_man_N = mkN "barrow-man" "barrow-men" ;
+lin bartender_N = mkN "bartender" "bartenders" ;
+lin barter_N = mkN "barter" "barters" ;
+lin barter_V = mkV "barter" "bartered" "bartered" ;
+lin barterer_N = mkN "barterer" "barterers" ;
+lin bartlett_N = mkN "bartlett" "bartletts" ;
+lin bartonia_N = mkN "bartonia" "bartonias" ;
+lin barycenter_N = mkN "barycenter" "barycenters" ;
+lin barye_N = mkN "barye" "baryes" ;
+lin baryon_N = mkN "baryon" "baryons" ;
+lin baryta_N = mkN "baryta" "barytas" ;
+lin barytic_A = mkAMost "barytic" "baryticly" ;
+lin bas_relief_N = mkN "bas-relief" "bas-reliefs" ;
+lin basal_A = mkAMost "basal" "basally" ;
+lin basalt_N = mkN "basalt" "basalts" ;
+lin basaltic_A = mkAMost "basaltic" "basalticly" ;
+lin bascule_N = mkN "bascule" "bascules" ;
+lin base_A = mkA "base" "baser" "basest" "basely" ;
+lin base_N = mkN "base" "bases" ;
+lin base_V = mkV "base" "based" "based" ;
+lin baseball_N = mkN "baseball" "baseballs" ;
+lin baseboard_N = mkN "baseboard" "baseboards" ;
+lin baseless_A = mkAMost "baseless" "baselessly" ;
+lin baseline_N = mkN "baseline" "baselines" ;
+lin basement_N = mkN "basement" "basements" ;
+lin baseness_N = mkN "baseness" "basenesses" ;
+lin basenji_N = mkN "basenji" "basenjis" ;
+lin bash_N = mkN "bash" "bashes" ;
+lin bash_V = mkV "bash" "bashed" "bashed" ;
+lin bashful_A = mkAMost "bashful" "bashfully" ;
+lin basic_A = mkAMost "basic" "basicly" ;
+lin basic_N = mkN "basic" "basics" ;
+lin basically_Adv = mkAdv "basically" ;
+lin basics_N = mkN "basics" "basicses" ;
+lin basidial_A = mkAMost "basidial" "basidially" ;
+lin basidiocarp_N = mkN "basidiocarp" "basidiocarps" ;
+lin basidiolichen_N = mkN "basidiolichen" "basidiolichens" ;
+lin basidiomycete_N = mkN "basidiomycete" "basidiomycetes" ;
+lin basidiomycetous_A = mkAMost "basidiomycetous" "basidiomycetously" ;
+lin basidiospore_N = mkN "basidiospore" "basidiospores" ;
+lin basidiosporous_A = mkAMost "basidiosporous" "basidiosporously" ;
+lin basidium_N = mkN "basidium" "basidiums" ;
+lin basifixed_A = mkAMost "basifixed" "basifixedly" ;
+lin basil_N = mkN "basil" "basils" ;
+lin basilar_A = mkAMost "basilar" "basilarly" ;
+lin basileus_N = mkN "basileus" "basileuses" ;
+lin basilica_N = mkN "basilica" "basilicas" ;
+lin basilican_A = mkAMost "basilican" "basilicanly" ;
+lin basilisk_N = mkN "basilisk" "basilisks" ;
+lin basin_N = mkN "basin" "basins" ;
+lin basinal_A = mkAMost "basinal" "basinally" ;
+lin basined_A = mkAMost "basined" "basinedly" ;
+lin basinet_N = mkN "basinet" "basinets" ;
+lin basipetal_A = mkAMost "basipetal" "basipetally" ;
+lin basis_N = mkN "basis" "bases" ;
+lin basiscopic_A = mkAMost "basiscopic" "basiscopicly" ;
+lin bask_V = mkV "bask" "basked" "basked" ;
+lin basket_N = mkN "basket" "baskets" ;
+lin basketball_N = mkN "basketball" "basketballs" ;
+lin basketry_N = mkN "basketry" "basketries" ;
+lin basketweaver_N = mkN "basketweaver" "basketweavers" ;
+lin basophil_N = mkN "basophil" "basophils" ;
+lin basophilia_N = mkN "basophilia" "basophilias" ;
+lin basophilic_A = mkAMost "basophilic" "basophilicly" ;
+lin bass_A = mkAMost "bass" "bassly" ;
+lin bass_N = mkN "bass" "basses" ;
+lin bassarisk_N = mkN "bassarisk" "bassarisks" ;
+lin basset_N = mkN "basset" "bassets" ;
+lin bassine_N = mkN "bassine" "bassines" ;
+lin bassinet_N = mkN "bassinet" "bassinets" ;
+lin bassist_N = mkN "bassist" "bassists" ;
+lin bassoon_N = mkN "bassoon" "bassoons" ;
+lin bassoonist_N = mkN "bassoonist" "bassoonists" ;
+lin basswood_N = mkN "basswood" "basswoods" ;
+lin bast_N = mkN "bast" "basts" ;
+lin bastard_N = mkN "bastard" "bastards" ;
+lin bastardization_N = mkN "bastardization" "bastardizations" ;
+lin bastardize_V = mkV "bastardize" "bastardized" "bastardized" ;
+lin bastardly_A = mkAMost "bastardly" "bastardlily" ;
+lin bastardy_N = mkN "bastardy" "bastardies" ;
+lin baste_N = mkN "baste" "bastes" ;
+lin baste_V = mkV "baste" "basted" "basted" ;
+lin baster_N = mkN "baster" "basters" ;
+lin bastille_N = mkN "bastille" "bastilles" ;
+lin bastinado_N = mkN "bastinado" "bastinadi" ;
+lin bastinado_V = mkV "bastinado" "bastinadoed" "bastinadoed" ;
+lin basting_N = mkN "basting" "bastings" ;
+lin bastion_N = mkN "bastion" "bastions" ;
+lin bastioned_A = mkAMost "bastioned" "bastionedly" ;
+lin bastnasite_N = mkN "bastnasite" "bastnasites" ;
+lin basuco_N = mkN "basuco" "basucoes" ;
+lin bat_N = mkN "bat" "bats" ;
+lin bat_V = mkV "bat" "batted" "batted" ;
+lin batch_N = mkN "batch" "batches" ;
+lin bate_V = mkV "bate" "bated" "bated" ;
+lin batfish_N = mkN "batfish" "batfishes" ;
+lin bath_N = mkN "bath" "baths" ;
+lin bath_V = mkV "bath" "bathed" "bathed" ;
+lin bath_chair_N = mkN "bath-chair" "bath-chairs" ;
+lin bathe_N = mkN "bathe" "bathes" ;
+lin bathe_V = mkV "bathe" "bathed" "bathed" ;
+lin bather_N = mkN "bather" "bathers" ;
+lin bathetic_A = mkAMost "bathetic" "batheticly" ;
+lin bathhouse_N = mkN "bathhouse" "bathhouses" ;
+lin bathing_N = mkN "bathing" "bathings" ;
+lin bathing_cap_N = mkN "bathing-cap" "bathing-caps" ;
+lin bathing_costume_N = mkN "bathing-costume" "bathing-costumes" ;
+lin bathing_machine_N = mkN "bathing-machine" "bathing-machines" ;
+lin bathing_suit_N = mkN "bathing-suit" "bathing-suits" ;
+lin batholith_N = mkN "batholith" "batholiths" ;
+lin batholithic_A = mkAMost "batholithic" "batholithicly" ;
+lin bathos_N = mkN "bathos" "bathoses" ;
+lin bathrobe_N = mkN "bathrobe" "bathrobes" ;
+lin bathroom_N = mkN "bathroom" "bathrooms" ;
+lin bathtub_N = mkN "bathtub" "bathtubs" ;
+lin bathyal_A = mkAMost "bathyal" "bathyally" ;
+lin bathymeter_N = mkN "bathymeter" "bathymeters" ;
+lin bathymetric_A = mkAMost "bathymetric" "bathymetricly" ;
+lin bathymetry_N = mkN "bathymetry" "bathymetries" ;
+lin bathyscaphe_N = mkN "bathyscaphe" "bathyscaphes" ;
+lin bathysphere_N = mkN "bathysphere" "bathyspheres" ;
+lin batik_N = mkN "batik" "batiks" ;
+lin batiste_N = mkN "batiste" "batistes" ;
+lin batman_N = mkN "batman" "batmen" ;
+lin baton_N = mkN "baton" "batons" ;
+lin batrachomyomachia_N = mkN "batrachomyomachia" "batrachomyomachias" ;
+lin bats_A = mkAMost "bats" "batsly" ;
+lin batsman_N = mkN "batsman" "batsmen" ;
+lin battalion_N = mkN "battalion" "battalions" ;
+lin batten_N = mkN "batten" "battens" ;
+lin batten_V = mkV "batten" "battened" "battened" ;
+lin batter_N = mkN "batter" "batters" ;
+lin batter_V = mkV "batter" "battered" "battered" ;
+lin battering_N = mkN "battering" "batterings" ;
+lin battery_N = mkN "battery" "batteries" ;
+lin batting_N = mkN "batting" "battings" ;
+lin battle_N = mkN "battle" "battles" ;
+lin battle_V = mkV "battle" "battled" "battled" ;
+lin battle_axe_N = mkN "battle-axe" "battle-axes" ;
+lin battle_cruiser_N = mkN "battle-cruiser" "battle-cruisers" ;
+lin battledore_N = mkN "battledore" "battledores" ;
+lin battledress_N = mkN "battledress" "battledresses" ;
+lin battlefield_N = mkN "battlefield" "battlefields" ;
+lin battlefront_N = mkN "battlefront" "battlefronts" ;
+lin battleful_A = mkAMost "battleful" "battlefully" ;
+lin battleground_N = mkN "battleground" "battlegrounds" ;
+lin battlement_N = mkN "battlement" "battlements" ;
+lin battlemented_A = mkAMost "battlemented" "battlementedly" ;
+lin battleship_N = mkN "battleship" "battleships" ;
+lin battue_N = mkN "battue" "battues" ;
+lin batty_A = mkAMost "batty" "battily" ;
+lin batwing_A = mkAMost "batwing" "batwingly" ;
+lin batwing_N = mkN "batwing" "batwings" ;
+lin bauble_N = mkN "bauble" "baubles" ;
+lin baud_N = mkN "baud" "bauds" ;
+lin baulk_N = mkN "baulk" "baulks" ;
+lin baulk_V = mkV "baulk" "baulked" "baulked" ;
+lin bauxite_N = mkN "bauxite" "bauxites" ;
+lin bauxitic_A = mkAMost "bauxitic" "bauxiticly" ;
+lin bawbee_N = mkN "bawbee" "bawbees" ;
+lin bawd_N = mkN "bawd" "bawds" ;
+lin bawdry_N = mkN "bawdry" "bawdries" ;
+lin bawdy_A = mkA "bawdy" "bawdier" "bawdiest" "bawdily" ;
+lin bawdy_N = mkN "bawdy" "bawdies" ;
+lin bawl_V = mkV "bawl" "bawled" "bawled" ;
+lin bawler_N = mkN "bawler" "bawlers" ;
+lin bay_A = mkAMost "bay" "baily" ;
+lin bay_N = mkN "bay" "bays" ;
+lin bay_V = mkV "bay" "bayed" "bayed" ;
+lin bay_wreath_N = mkN "bay-wreath" "bay-wreaths" ;
+lin baya_N = mkN "baya" "bayas" ;
+lin bayat_N = mkN "bayat" "bayats" ;
+lin bayberry_N = mkN "bayberry" "bayberries" ;
+lin bayonet_N = mkN "bayonet" "bayonets" ;
+lin bayonet_V = mkV "bayonet" "bayoneted" "bayoneted" ;
+lin bayou_N = mkN "bayou" "bayous" ;
+lin bazaar_N = mkN "bazaar" "bazaars" ;
+lin bazooka_N = mkN "bazooka" "bazookas" ;
+lin bdellium_N = mkN "bdellium" "bdelliums" ;
+lin beach_N = mkN "beach" "beaches" ;
+lin beach_V = mkV "beach" "beached" "beached" ;
+lin beachcomber_N = mkN "beachcomber" "beachcombers" ;
+lin beachfront_N = mkN "beachfront" "beachfronts" ;
+lin beachhead_N = mkN "beachhead" "beachheads" ;
+lin beachwear_N = mkN "beachwear" "beachwears" ;
+lin beacon_N = mkN "beacon" "beacons" ;
+lin beacon_fire_N = mkN "beacon-fire" "beacon-fires" ;
+lin beacon_light_N = mkN "beacon-light" "beacon-lights" ;
+lin bead_N = mkN "bead" "beads" ;
+lin beaded_A = mkAMost "beaded" "beadedly" ;
+lin beading_N = mkN "beading" "beadings" ;
+lin beadle_N = mkN "beadle" "beadles" ;
+lin beads_N = mkN "beads" "beadses" ;
+lin beadsman_N = mkN "beadsman" "beadsmans" ;
+lin beady_A = mkAMost "beady" "beadily" ;
+lin beagle_N = mkN "beagle" "beagles" ;
+lin beagling_N = mkN "beagling" "beaglings" ;
+lin beak_N = mkN "beak" "beaks" ;
+lin beaked_A = mkAMost "beaked" "beakedly" ;
+lin beaker_N = mkN "beaker" "beakers" ;
+lin beakless_A = mkAMost "beakless" "beaklessly" ;
+lin beaklike_A = mkAMost "beaklike" "beaklikely" ;
+lin beam_N = mkN "beam" "beams" ;
+lin beam_V = mkV "beam" "beamed" "beamed" ;
+lin beamish_A = mkAMost "beamish" "beamishly" ;
+lin beamy_A = mkA "beamy" "beamier" "beamiest" "beamily" ;
+lin bean_N = mkN "bean" "beans" ;
+lin beanbag_N = mkN "beanbag" "beanbags" ;
+lin beanball_N = mkN "beanball" "beanballs" ;
+lin beanfeast_N = mkN "beanfeast" "beanfeasts" ;
+lin beanie_N = mkN "beanie" "beanies" ;
+lin beano_N = mkN "beano" "beanos" ;
+lin beanstalk_N = mkN "beanstalk" "beanstalks" ;
+lin bear_N = mkN "bear" "bears" ;
+lin bear_V = mkV "bear" "bore" "born" ;
+lin bearable_A = mkAMost "bearable" "bearably" ;
+lin bearberry_N = mkN "bearberry" "bearberries" ;
+lin beard_N = mkN "beard" "beards" ;
+lin beard_V = mkV "beard" "bearded" "bearded" ;
+lin beardless_A = mkAMost "beardless" "beardlessly" ;
+lin bearer_N = mkN "bearer" "bearers" ;
+lin bearing_N = mkN "bearing" "bearings" ;
+lin bearish_A = mkAMost "bearish" "bearishly" ;
+lin bearnaise_N = mkN "bearnaise" "bearnaises" ;
+lin bearskin_N = mkN "bearskin" "bearskins" ;
+lin beast_N = mkN "beast" "beasts" ;
+lin beastliness_N = mkN "beastliness" "beastlinesses" ;
+lin beastly_A = mkA "beastly" "beastlier" "beastliest" "beastlily" ;
+lin beastly_Adv = mkAdv "beastly" ;
+lin beat_N = mkN "beat" "beats" ;
+lin beat_beat_V = mkV "beat" "beat" "beaten" ;
+lin beat_beated_V = mkV "beat" "beated" "beated" ;
+lin beatable_A = mkAMost "beatable" "beatably" ;
+lin beaten_A = mkAMost "beaten" "beatenly" ;
+lin beater_N = mkN "beater" "beaters" ;
+lin beatific_A = mkAMost "beatific" "beatificly" ;
+lin beatification_N = mkN "beatification" "beatifications" ;
+lin beatify_V = mkV "beatify" "beatified" "beatified" ;
+lin beating_N = mkN "beating" "beatings" ;
+lin beatitude_N = mkN "beatitude" "beatitudes" ;
+lin beatnik_N = mkN "beatnik" "beatniks" ;
+lin beau_N = mkN "beau" "beaux" ;
+lin beaugregory_N = mkN "beaugregory" "beaugregories" ;
+lin beaujolais_N = mkN "beaujolais" "beaujolaises" ;
+lin beauteous_A = mkAMost "beauteous" "beauteously" ;
+lin beautician_N = mkN "beautician" "beauticians" ;
+lin beautification_N = mkN "beautification" "beautifications" ;
+lin beautiful_A = mkAMost "beautiful" "beautifully" ;
+lin beautify_V = mkV "beautify" "beautified" "beautified" ;
+lin beauty_N = mkN "beauty" "beauties" ;
+lin beauty_parlour_N = mkN "beauty-parlour" "beauty-parlours" ;
+lin beauty_salon_N = mkN "beauty-salon" "beauty-salons" ;
+lin beauty_sleep_N = mkN "beauty-sleep" "beauty-sleeps" ;
+lin beauty_spot_N = mkN "beauty-spot" "beauty-spots" ;
+lin beaver_N = mkN "beaver" "beavers" ;
+lin beaver_V = mkV "beaver" "beavered" "beavered" ;
+lin becalmed_A = mkAMost "becalmed" "becalmedly" ;
+lin because_of_Prep = mkPrep "because of" ;
+lin beck_N = mkN "beck" "becks" ;
+lin becket_N = mkN "becket" "beckets" ;
+lin beckon_V = mkV "beckon" "beckoned" "beckoned" ;
+lin become_V = mkV "become" "became" "become" ;
+lin becomingly_Adv = mkAdv "becomingly" ;
+lin becomingness_N = mkN "becomingness" "becomingnesses" ;
+lin bed_N = mkN "bed" "beds" ;
+lin bed_V = mkV "bed" "bedded" "bedded" ;
+lin bedaubed_A = mkAMost "bedaubed" "bedaubedly" ;
+lin bedbug_N = mkN "bedbug" "bedbugs" ;
+lin bedclothes_N = mkN "bedclothes" "bedclotheses" ;
+lin bedder_N = mkN "bedder" "bedders" ;
+lin bedding_N = mkN "bedding" "beddings" ;
+lin bedecked_A = mkAMost "bedecked" "bedeckedly" ;
+lin bedevil_V = mkV "bedevil" "bedevilled" "bedevilled" ;
+lin bedevilment_N = mkN "bedevilment" "bedevilments" ;
+lin bedewed_A = mkAMost "bedewed" "bedewedly" ;
+lin bedfast_A = mkAMost "bedfast" "bedfastly" ;
+lin bedfellow_N = mkN "bedfellow" "bedfellows" ;
+lin bedimmed_A = mkAMost "bedimmed" "bedimmedly" ;
+lin bedlam_N = mkN "bedlam" "bedlams" ;
+lin bedlamite_N = mkN "bedlamite" "bedlamites" ;
+lin bedless_A = mkAMost "bedless" "bedlessly" ;
+lin bedouin_N = mkN "bedouin" "bedouin" ;
+lin bedpan_N = mkN "bedpan" "bedpans" ;
+lin bedpost_N = mkN "bedpost" "bedposts" ;
+lin bedraggled_A = mkAMost "bedraggled" "bedraggledly" ;
+lin bedrest_N = mkN "bedrest" "bedrests" ;
+lin bedridden_A = mkAMost "bedridden" "bedriddenly" ;
+lin bedrock_N = mkN "bedrock" "bedrocks" ;
+lin bedroll_N = mkN "bedroll" "bedrolls" ;
+lin bedroom_N = mkN "bedroom" "bedrooms" ;
+lin bedroomed_A = mkAMost "bedroomed" "bedroomedly" ;
+lin bedside_N = mkN "bedside" "bedsides" ;
+lin bedsit_N = mkN "bedsit" "bedsits" ;
+lin bedsitter_N = mkN "bedsitter" "bedsitters" ;
+lin bedsitting_room_N = mkN "bedsitting-room" "bedsitting-rooms" ;
+lin bedsore_N = mkN "bedsore" "bedsores" ;
+lin bedspread_N = mkN "bedspread" "bedspreads" ;
+lin bedspring_N = mkN "bedspring" "bedsprings" ;
+lin bedstead_N = mkN "bedstead" "bedsteads" ;
+lin bedstraw_N = mkN "bedstraw" "bedstraws" ;
+lin bedtime_N = mkN "bedtime" "bedtimes" ;
+lin beduin_N = mkN "beduin" "beduin" ;
+lin bedwetter_N = mkN "bedwetter" "bedwetters" ;
+lin bee_N = mkN "bee" "bees" ;
+lin beebread_N = mkN "beebread" "beebreads" ;
+lin beech_N = mkN "beech" "beeches" ;
+lin beechen_A = mkAMost "beechen" "beechenly" ;
+lin beechnut_N = mkN "beechnut" "beechnuts" ;
+lin beef_N = mkN "beef" "beeves" ;
+lin beef_V = mkV "beef" "beefed" "beefed" ;
+lin beefcake_N = mkN "beefcake" "beefcakes" ;
+lin beefeater_N = mkN "beefeater" "beefeaters" ;
+lin beefsteak_N = mkN "beefsteak" "beefsteaks" ;
+lin beefwood_N = mkN "beefwood" "beefwoods" ;
+lin beefy_A = mkA "beefy" "beefier" "beefiest" "beefily" ;
+lin beehive_N = mkN "beehive" "beehives" ;
+lin beekeeper_N = mkN "beekeeper" "beekeepers" ;
+lin beekeeping_N = mkN "beekeeping" "beekeepings" ;
+lin beeline_N = mkN "beeline" "beelines" ;
+lin beep_N = mkN "beep" "beeps" ;
+lin beeper_N = mkN "beeper" "beepers" ;
+lin beer_N = mkN "beer" "beers" ;
+lin beery_A = mkA "beery" "beerier" "beeriest" "beerily" ;
+lin beeswax_N = mkN "beeswax" "beeswaxes" ;
+lin beeswax_V = mkV "beeswax" "beeswaxed" "beeswaxed" ;
+lin beet_N = mkN "beet" "beets" ;
+lin beetle_A = mkA "beetle" "beetler" "beetlest" "beetlely" ;
+lin beetle_N = mkN "beetle" "beetles" ;
+lin beetle_V = mkV "beetle" "beetled" "beetled" ;
+lin beetle_browed_A = mkAMost "beetle-browed" "beetle-browedly" ;
+lin beetroot_N = mkN "beetroot" "beetroots" ;
+lin befall_V = mkV "befall" "befell" "befallen" ;
+lin befit_V = mkV "befit" "befitted" "befitted" ;
+lin befitting_A = mkAMost "befitting" "befittingly" ;
+lin befogged_A = mkAMost "befogged" "befoggedly" ;
+lin before_Adv = mkAdv "before" ;
+lin before_Prep = mkPrep "before" ;
+lin beforehand_A = mkAMost "beforehand" "beforehandly" ;
+lin beforehand_Adv = mkAdv "beforehand" ;
+lin befoul_V = mkV "befoul" "befouled" "befouled" ;
+lin befoulment_N = mkN "befoulment" "befoulments" ;
+lin befriend_V = mkV "befriend" "befriended" "befriended" ;
+lin beg_V = mkV "beg" "begged" "begged" ;
+lin beget_V = mkV "beget" "begot" "begotten" ;
+lin begetter_N = mkN "begetter" "begetters" ;
+lin beggar_N = mkN "beggar" "beggars" ;
+lin beggar_V = mkV "beggar" "beggared" "beggared" ;
+lin beggarly_A = mkAMost "beggarly" "beggarlily" ;
+lin beggarman_N = mkN "beggarman" "beggarmen" ;
+lin beggarweed_N = mkN "beggarweed" "beggarweeds" ;
+lin beggarwoman_N = mkN "beggarwoman" "beggarwomen" ;
+lin beggary_N = mkN "beggary" "beggaries" ;
+lin begin_began_V = mkV "begin" "began" "begun" ;
+lin begin_beginned_V = mkV "begin" "beginned" "beginned" ;
+lin beginner_N = mkN "beginner" "beginners" ;
+lin beginning_N = mkN "beginning" "beginnings" ;
+lin begonia_N = mkN "begonia" "begonias" ;
+lin begrimed_A = mkAMost "begrimed" "begrimedly" ;
+lin begrudge_V = mkV "begrudge" "begrudged" "begrudged" ;
+lin beguile_V = mkV "beguile" "beguiled" "beguiled" ;
+lin beguilement_N = mkN "beguilement" "beguilements" ;
+lin beguiling_A = mkAMost "beguiling" "beguilingly" ;
+lin beguine_N = mkN "beguine" "beguines" ;
+lin begum_N = mkN "begum" "begums" ;
+lin behalf_N = mkN "behalf" "behalves" ;
+lin behave_V = mkV "behave" "behaved" "behaved" ;
+lin behaved_A = mkAMost "behaved" "behavedly" ;
+lin behavior_N = mkN "behavior" "behaviors" ;
+lin behavioral_A = mkAMost "behavioral" "behaviorally" ;
+lin behaviorism_N = mkN "behaviorism" "behaviorisms" ;
+lin behaviorist_N = mkN "behaviorist" "behaviorists" ;
+lin behavioristic_A = mkAMost "behavioristic" "behavioristicly" ;
+lin behaviour_N = mkN "behaviour" "behaviours" ;
+lin behaviourism_N = mkN "behaviourism" "behaviourisms" ;
+lin behaviourist_N = mkN "behaviourist" "behaviourists" ;
+lin behead_V = mkV "behead" "beheaded" "beheaded" ;
+lin behest_N = mkN "behest" "behests" ;
+lin behind_Adv = mkAdv "behind" ;
+lin behind_N = mkN "behind" "behinds" ;
+lin behind_Prep = mkPrep "behind" ;
+lin behindhand_A = mkAMost "behindhand" "behindhandly" ;
+lin behither_Prep = mkPrep "behither" ;
+lin behold_V = mkV "behold" "beheld" "beheld" ;
+lin beholden_A = mkAMost "beholden" "beholdenly" ;
+lin beholder_N = mkN "beholder" "beholders" ;
+lin behove_V = mkV "behove" "behoved" "behoved" ;
+lin beige_A = mkA "beige" "beiger" "beigest" "beigely" ;
+lin beige_N = mkN "beige" "beiges" ;
+lin being_N = mkN "being" "beings" ;
+lin bejewelled_A = mkAMost "bejewelled" "bejewelledly" ;
+lin belabour_V = mkV "belabour" "belaboured" "belaboured" ;
+lin belated_A = mkAMost "belated" "belatedly" ;
+lin belay_N = mkN "belay" "belays" ;
+lin belay_V = mkV "belay" "belayed" "belayed" ;
+lin belaying_pin_N = mkN "belaying-pin" "belaying-pins" ;
+lin belch_N = mkN "belch" "belches" ;
+lin belch_V = mkV "belch" "belched" "belched" ;
+lin belching_N = mkN "belching" "belchings" ;
+lin beldam_N = mkN "beldam" "beldams" ;
+lin beldame_N = mkN "beldame" "beldames" ;
+lin beleaguer_V = mkV "beleaguer" "beleaguered" "beleaguered" ;
+lin belemnite_N = mkN "belemnite" "belemnites" ;
+lin belemnitic_A = mkAMost "belemnitic" "belemniticly" ;
+lin belfry_N = mkN "belfry" "belfries" ;
+lin belgian_A = mkAMost "belgian" "belgianly" ;
+lin belgian_N = mkN "belgian" "belgians" ;
+lin belie_V = mkV "belie" "belay" "belain" ;
+lin belief_N = mkN "belief" "beliefs" ;
+lin believable_A = mkAMost "believable" "believably" ;
+lin believe_V = mkV "believe" "believed" "believed" ;
+lin believer_N = mkN "believer" "believers" ;
+lin believing_N = mkN "believing" "believings" ;
+lin belike_Adv = mkAdv "belike" ;
+lin belittle_V = mkV "belittle" "belittled" "belittled" ;
+lin belittling_A = mkAMost "belittling" "belittlingly" ;
+lin belittling_N = mkN "belittling" "belittlings" ;
+lin bell_N = mkN "bell" "bells" ;
+lin bell_V = mkV "bell" "belled" "belled" ;
+lin bell_bottomed_A = mkAMost "bell-bottomed" "bell-bottomedly" ;
+lin bell_buoy_N = mkN "bell-buoy" "bell-buoys" ;
+lin bell_flower_N = mkN "bell-flower" "bell-flowers" ;
+lin bell_founder_N = mkN "bell-founder" "bell-founders" ;
+lin bell_foundry_N = mkN "bell-foundry" "bell-foundries" ;
+lin bell_metal_N = mkN "bell-metal" "bell-metals" ;
+lin bell_push_N = mkN "bell-push" "bell-pushes" ;
+lin bell_ringer_N = mkN "bell-ringer" "bell-ringers" ;
+lin bell_tent_N = mkN "bell-tent" "bell-tents" ;
+lin belladonna_N = mkN "belladonna" "belladonnas" ;
+lin bellarmine_N = mkN "bellarmine" "bellarmines" ;
+lin bellbird_N = mkN "bellbird" "bellbirds" ;
+lin bellboy_N = mkN "bellboy" "bellboys" ;
+lin belle_N = mkN "belle" "belles" ;
+lin belletristic_A = mkAMost "belletristic" "belletristicly" ;
+lin bellhop_N = mkN "bellhop" "bellhops" ;
+lin bellicose_A = mkAMost "bellicose" "bellicosely" ;
+lin bellicosity_N = mkN "bellicosity" "bellicosities" ;
+lin belligerence_N = mkN "belligerence" "belligerences" ;
+lin belligerency_N = mkN "belligerency" "belligerencies" ;
+lin belligerent_A = mkAMost "belligerent" "belligerently" ;
+lin belligerent_N = mkN "belligerent" "belligerents" ;
+lin bellow_N = mkN "bellow" "bellows" ;
+lin bellow_V = mkV "bellow" "bellowed" "bellowed" ;
+lin bellows_N = mkN "bellows" "bellowses" ;
+lin bellpull_N = mkN "bellpull" "bellpulls" ;
+lin bellwether_N = mkN "bellwether" "bellwethers" ;
+lin bellwort_N = mkN "bellwort" "bellworts" ;
+lin belly_N = mkN "belly" "bellies" ;
+lin belly_V = mkV "belly" "bellied" "bellied" ;
+lin bellyache_N = mkN "bellyache" "bellyaches" ;
+lin bellyache_V = mkV "bellyache" "bellyached" "bellyached" ;
+lin bellyband_N = mkN "bellyband" "bellybands" ;
+lin bellyflop_N = mkN "bellyflop" "bellyflops" ;
+lin bellyful_N = mkN "bellyful" "bellyfuls" ;
+lin bellyland_V = mkV "bellyland" "bellylanded" "bellylanded" ;
+lin bellylaugh_N = mkN "bellylaugh" "bellylaughs" ;
+lin bellylaugh_V = mkV "bellylaugh" "bellylaughed" "bellylaughed" ;
+lin bellyless_A = mkAMost "bellyless" "bellylessly" ;
+lin belong_V = mkV "belong" "belonged" "belonged" ;
+lin belonging_N = mkN "belonging" "belongings" ;
+lin beloved_A = mkAMost "beloved" "belovedly" ;
+lin beloved_N = mkN "beloved" "beloveds" ;
+lin below_Adv = mkAdv "below" ;
+lin below_Prep = mkPrep "below" ;
+lin belowground_A = mkAMost "belowground" "belowgroundly" ;
+lin belt_N = mkN "belt" "belts" ;
+lin belt_V = mkV "belt" "belted" "belted" ;
+lin belting_N = mkN "belting" "beltings" ;
+lin beltlike_A = mkAMost "beltlike" "beltlikely" ;
+lin beltway_N = mkN "beltway" "beltways" ;
+lin beluga_N = mkN "beluga" "belugas" ;
+lin belvedere_N = mkN "belvedere" "belvederes" ;
+lin bemoan_V = mkV "bemoan" "bemoaned" "bemoaned" ;
+lin bemused_A = mkAMost "bemused" "bemusedly" ;
+lin ben_N = mkN "ben" "bens" ;
+lin bench_N = mkN "bench" "benches" ;
+lin benchmark_N = mkN "benchmark" "benchmarks" ;
+lin bend_N = mkN "bend" "bends" ;
+lin bend_bended_V = mkV "bend" "bended" "bended" ;
+lin bend_bent_V = mkV "bend" "bent" "bent" ;
+lin bendability_N = mkN "bendability" "bendabilities" ;
+lin bendable_A = mkAMost "bendable" "bendably" ;
+lin bender_N = mkN "bender" "benders" ;
+lin bending_N = mkN "bending" "bendings" ;
+lin beneath_Adv = mkAdv "beneath" ;
+lin beneath_Prep = mkPrep "beneath" ;
+lin benedick_N = mkN "benedick" "benedicks" ;
+lin benedictine_A = mkAMost "benedictine" "benedictinely" ;
+lin benedictine_N = mkN "benedictine" "benedictines" ;
+lin benediction_N = mkN "benediction" "benedictions" ;
+lin benedictory_A = mkAMost "benedictory" "benedictorily" ;
+lin benefaction_N = mkN "benefaction" "benefactions" ;
+lin benefactor_N = mkN "benefactor" "benefactors" ;
+lin benefactress_N = mkN "benefactress" "benefactresses" ;
+lin benefic_A = mkAMost "benefic" "beneficly" ;
+lin benefice_N = mkN "benefice" "benefices" ;
+lin beneficed_A = mkAMost "beneficed" "beneficedly" ;
+lin beneficence_N = mkN "beneficence" "beneficences" ;
+lin beneficent_A = mkAMost "beneficent" "beneficently" ;
+lin beneficial_A = mkAMost "beneficial" "beneficially" ;
+lin beneficiary_A = mkAMost "beneficiary" "beneficiarily" ;
+lin beneficiary_N = mkN "beneficiary" "beneficiaries" ;
+lin benefit_N = mkN "benefit" "benefits" ;
+lin benefit_V = mkV "benefit" "benefited" "benefited" ;
+lin benevolence_N = mkN "benevolence" "benevolences" ;
+lin benevolent_A = mkAMost "benevolent" "benevolently" ;
+lin bengali_A = mkAMost "bengali" "bengalily" ;
+lin bengali_N = mkN "bengali" "bengalis" ;
+lin benighted_A = mkAMost "benighted" "benightedly" ;
+lin benign_A = mkAMost "benign" "benignly" ;
+lin benignant_A = mkAMost "benignant" "benignantly" ;
+lin benignity_N = mkN "benignity" "benignities" ;
+lin beninese_A = mkAMost "beninese" "beninesely" ;
+lin beninese_N = mkN "beninese" "beninese" ;
+lin benison_N = mkN "benison" "benisons" ;
+lin bennet_N = mkN "bennet" "bennets" ;
+lin bent_A = mkAMost "bent" "bently" ;
+lin bent_N = mkN "bent" "bents" ;
+lin benthic_A = mkAMost "benthic" "benthicly" ;
+lin benthos_N = mkN "benthos" "benthoses" ;
+lin bentonite_N = mkN "bentonite" "bentonites" ;
+lin bentonitic_A = mkAMost "bentonitic" "bentoniticly" ;
+lin bentwood_N = mkN "bentwood" "bentwoods" ;
+lin benumbed_A = mkAMost "benumbed" "benumbedly" ;
+lin benzedrine_N = mkN "benzedrine" "benzedrines" ;
+lin benzene_N = mkN "benzene" "benzenes" ;
+lin benzenoid_A = mkAMost "benzenoid" "benzenoidly" ;
+lin benzine_N = mkN "benzine" "benzines" ;
+lin benzoate_N = mkN "benzoate" "benzoates" ;
+lin benzocaine_N = mkN "benzocaine" "benzocaines" ;
+lin benzodiazepine_N = mkN "benzodiazepine" "benzodiazepines" ;
+lin benzofuran_N = mkN "benzofuran" "benzofurans" ;
+lin benzoic_A = mkAMost "benzoic" "benzoicly" ;
+lin benzoin_N = mkN "benzoin" "benzoins" ;
+lin benzol_N = mkN "benzol" "benzols" ;
+lin benzyl_N = mkN "benzyl" "benzyls" ;
+lin benzylic_A = mkAMost "benzylic" "benzylicly" ;
+lin bequeath_V = mkV "bequeath" "bequeathed" "bequeathed" ;
+lin bequest_N = mkN "bequest" "bequests" ;
+lin berate_V = mkV "berate" "berated" "berated" ;
+lin berating_N = mkN "berating" "beratings" ;
+lin bereave_V = mkV "bereave" "bereaved" "bereaved" ;
+lin bereaved_N = mkN "bereaved" "bereaveds" ;
+lin bereavement_N = mkN "bereavement" "bereavements" ;
+lin bereft_A = mkAMost "bereft" "bereftly" ;
+lin beret_N = mkN "beret" "berets" ;
+lin berg_N = mkN "berg" "bergs" ;
+lin bergamot_N = mkN "bergamot" "bergamots" ;
+lin bergenia_N = mkN "bergenia" "bergenias" ;
+lin beri_beri_N = mkN "beri-beri" "beri-beris" ;
+lin beriberi_N = mkN "beriberi" "beriberis" ;
+lin berk_N = mkN "berk" "berks" ;
+lin berkelium_N = mkN "berkelium" "berkeliums" ;
+lin berlin_N = mkN "berlin" "berlins" ;
+lin berm_N = mkN "berm" "berms" ;
+lin bermudan_A = mkAMost "bermudan" "bermudanly" ;
+lin bermudan_N = mkN "bermudan" "bermudans" ;
+lin beroe_N = mkN "beroe" "beroes" ;
+lin berried_A = mkAMost "berried" "berriedly" ;
+lin berry_N = mkN "berry" "berries" ;
+lin berserk_A = mkAMost "berserk" "berserkly" ;
+lin berserker_N = mkN "berserker" "berserkers" ;
+lin berth_N = mkN "berth" "berths" ;
+lin berth_V = mkV "berth" "berthed" "berthed" ;
+lin beryl_N = mkN "beryl" "beryls" ;
+lin beryllium_N = mkN "beryllium" "berylliums" ;
+lin beseech_V = mkV "beseech" "beseeched" "beseeched" ;
+lin beseeching_A = mkAMost "beseeching" "beseechingly" ;
+lin beseem_V = mkV "beseem" "beseemed" "beseemed" ;
+lin beset_V = mkV "beset" "beset" "beset" ;
+lin beshrew_V = mkV "beshrew" "beshrewed" "beshrewed" ;
+lin beside_Prep = mkPrep "beside" ;
+lin besides_Adv = mkAdv "besides" ;
+lin besides_Prep = mkPrep "besides" ;
+lin besiege_V = mkV "besiege" "besieged" "besieged" ;
+lin besieger_N = mkN "besieger" "besiegers" ;
+lin besmear_V = mkV "besmear" "besmeared" "besmeared" ;
+lin besmirch_V = mkV "besmirch" "besmirched" "besmirched" ;
+lin besom_N = mkN "besom" "besoms" ;
+lin besotted_A = mkAMost "besotted" "besottedly" ;
+lin bespangled_A = mkAMost "bespangled" "bespangledly" ;
+lin bespattered_A = mkAMost "bespattered" "bespatteredly" ;
+lin bespeak_V = mkV "bespeak" "bespoke" "bespoken" ;
+lin bespectacled_A = mkAMost "bespectacled" "bespectacledly" ;
+lin bespoke_A = mkAMost "bespoke" "bespokely" ;
+lin besprent_A = mkAMost "besprent" "besprently" ;
+lin best_A = mkA "best" "bester" "bestest" "bestly" ;
+lin best_Adv = mkAdv "best" ;
+lin best_N = mkN "best" "bests" ;
+lin best_V = mkV "best" "bested" "bested" ;
+lin best_seller_N = mkN "best-seller" "best-sellers" ;
+lin bestial_A = mkAMost "bestial" "bestially" ;
+lin bestiality_N = mkN "bestiality" "bestialities" ;
+lin bestiary_N = mkN "bestiary" "bestiaries" ;
+lin bestir_V = mkV "bestir" "bestirred" "bestirred" ;
+lin bestow_V = mkV "bestow" "bestowed" "bestowed" ;
+lin bestowal_N = mkN "bestowal" "bestowals" ;
+lin bestrew_V = mkV "bestrew" "bestrewed" "bestrewed" ;
+lin bestride_V = mkV "bestride" "bestrod" "bestridden" ;
+lin bestubbled_A = mkAMost "bestubbled" "bestubbledly" ;
+lin bet_N = mkN "bet" "bets" ;
+lin bet_V = mkV "bet" "betted" "betted" ;
+lin beta_A = mkA "beta" "betaer" "betaest" "betaly" ;
+lin beta_N = mkN "beta" "betas" ;
+lin betaine_N = mkN "betaine" "betaines" ;
+lin betake_V = mkV "betake" "betook" "betaken" ;
+lin betatron_N = mkN "betatron" "betatrons" ;
+lin betel_N = mkN "betel" "betels" ;
+lin betel_nut_N = mkN "betel-nut" "betel-nuts" ;
+lin beth_N = mkN "beth" "beths" ;
+lin bethel_N = mkN "bethel" "bethels" ;
+lin bethink_V = mkV "bethink" "bethought" "bethought" ;
+lin betide_V = mkV "betide" "betided" "betided" ;
+lin betimes_Adv = mkAdv "betimes" ;
+lin betoken_V = mkV "betoken" "betokened" "betokened" ;
+lin betray_V = mkV "betray" "betrayed" "betrayed" ;
+lin betrayal_N = mkN "betrayal" "betrayals" ;
+lin betrayer_N = mkN "betrayer" "betrayers" ;
+lin betroth_V = mkV "betroth" "betrothed" "betrothed" ;
+lin betrothal_N = mkN "betrothal" "betrothals" ;
+lin betrothed_N = mkN "betrothed" "betrotheds" ;
+lin better_A = mkAMost "better" "betterly" ;
+lin better_Adv = mkAdv "better" ;
+lin better_N = mkN "better" "betters" ;
+lin better_V = mkV "better" "bettered" "bettered" ;
+lin bettering_A = mkAMost "bettering" "betteringly" ;
+lin betterment_N = mkN "betterment" "betterments" ;
+lin bettong_N = mkN "bettong" "bettongs" ;
+lin bettor_N = mkN "bettor" "bettors" ;
+lin betulaceous_A = mkAMost "betulaceous" "betulaceously" ;
+lin between_Adv = mkAdv "between" ;
+lin between_Prep = mkPrep "between" ;
+lin betwixen_Prep = mkPrep "betwixen" ;
+lin betwixt_Prep = mkPrep "betwixt" ;
+lin bevatron_N = mkN "bevatron" "bevatrons" ;
+lin bevel_N = mkN "bevel" "bevels" ;
+lin bevel_V = mkV "bevel" "bevelled" "bevelled" ;
+lin beverage_N = mkN "beverage" "beverages" ;
+lin bevy_N = mkN "bevy" "bevies" ;
+lin bewail_V = mkV "bewail" "bewailed" "bewailed" ;
+lin beware_V = mkV "beware" "IRREG" "IRREG" ;
+lin bewilder_V = mkV "bewilder" "bewildered" "bewildered" ;
+lin bewilderedly_Adv = mkAdv "bewilderedly" ;
+lin bewildering_A = mkAMost "bewildering" "bewilderingly" ;
+lin bewilderment_N = mkN "bewilderment" "bewilderments" ;
+lin bewitch_V = mkV "bewitch" "bewitched" "bewitched" ;
+lin bewitchery_N = mkN "bewitchery" "bewitcheries" ;
+lin bewitching_A = mkAMost "bewitching" "bewitchingly" ;
+lin bey_N = mkN "bey" "beys" ;
+lin beyond_Adv = mkAdv "beyond" ;
+lin beyond_Prep = mkPrep "beyond" ;
+lin bezant_N = mkN "bezant" "bezants" ;
+lin bezel_N = mkN "bezel" "bezels" ;
+lin bezique_N = mkN "bezique" "beziques" ;
+lin bhakti_N = mkN "bhakti" "bhaktis" ;
+lin bhang_N = mkN "bhang" "bhangs" ;
+lin bhutani_A = mkAMost "bhutani" "bhutanily" ;
+lin bhutani_N = mkN "bhutani" "bhutanis" ;
+lin bialy_N = mkN "bialy" "bialies" ;
+lin biannually_Adv = mkAdv "biannually" ;
+lin bias_A = mkA "bias" "biaser" "biasest" "biasly" ;
+lin bias_N = mkN "bias" "biases" ;
+lin bias_V = mkV "bias" "biased" "biased" ;
+lin biauricular_A = mkAMost "biauricular" "biauricularly" ;
+lin biaxial_A = mkAMost "biaxial" "biaxially" ;
+lin bib_N = mkN "bib" "bibs" ;
+lin bib_V = mkV "bib" "bibbed" "bibbed" ;
+lin bibbed_A = mkAMost "bibbed" "bibbedly" ;
+lin bible_N = mkN "bible" "bibles" ;
+lin bibless_A = mkAMost "bibless" "biblessly" ;
+lin biblical_A = mkAMost "biblical" "biblically" ;
+lin bibliographer_N = mkN "bibliographer" "bibliographers" ;
+lin bibliographic_A = mkAMost "bibliographic" "bibliographicly" ;
+lin bibliography_N = mkN "bibliography" "bibliographies" ;
+lin bibliolatrous_A = mkAMost "bibliolatrous" "bibliolatrously" ;
+lin bibliolatry_N = mkN "bibliolatry" "bibliolatries" ;
+lin bibliomania_N = mkN "bibliomania" "bibliomanias" ;
+lin bibliomaniacal_A = mkAMost "bibliomaniacal" "bibliomaniacally" ;
+lin bibliophile_N = mkN "bibliophile" "bibliophiles" ;
+lin bibliophilic_A = mkAMost "bibliophilic" "bibliophilicly" ;
+lin bibliopole_N = mkN "bibliopole" "bibliopoles" ;
+lin bibliopolic_A = mkAMost "bibliopolic" "bibliopolicly" ;
+lin bibliotheca_N = mkN "bibliotheca" "bibliothecas" ;
+lin bibliothecal_A = mkAMost "bibliothecal" "bibliothecally" ;
+lin bibliotic_A = mkAMost "bibliotic" "biblioticly" ;
+lin bibliotics_N = mkN "bibliotics" "biblioticses" ;
+lin bibliotist_N = mkN "bibliotist" "bibliotists" ;
+lin bibulous_A = mkAMost "bibulous" "bibulously" ;
+lin bicameral_A = mkAMost "bicameral" "bicamerally" ;
+lin bicapsular_A = mkAMost "bicapsular" "bicapsularly" ;
+lin bicarbonate_N = mkN "bicarbonate" "bicarbonates" ;
+lin bicentenary_N = mkN "bicentenary" "bicentenaries" ;
+lin bicentennial_A = mkAMost "bicentennial" "bicentennially" ;
+lin bicentennial_N = mkN "bicentennial" "bicentennials" ;
+lin bicentric_A = mkAMost "bicentric" "bicentricly" ;
+lin bicephalous_A = mkAMost "bicephalous" "bicephalously" ;
+lin biceps_N = mkN "biceps" "biceps" ;
+lin bichromate_N = mkN "bichromate" "bichromates" ;
+lin bichromated_A = mkAMost "bichromated" "bichromatedly" ;
+lin bicipital_A = mkAMost "bicipital" "bicipitally" ;
+lin bicker_N = mkN "bicker" "bickers" ;
+lin bicker_V = mkV "bicker" "bickered" "bickered" ;
+lin bicolor_A = mkAMost "bicolor" "bicolorly" ;
+lin biconcave_A = mkAMost "biconcave" "biconcavely" ;
+lin biconvex_A = mkAMost "biconvex" "biconvexly" ;
+lin bicorn_A = mkAMost "bicorn" "bicornly" ;
+lin bicorn_N = mkN "bicorn" "bicorns" ;
+lin bicuspid_A = mkAMost "bicuspid" "bicuspidly" ;
+lin bicycle_N = mkN "bicycle" "bicycles" ;
+lin bicycle_V = mkV "bicycle" "bicycled" "bicycled" ;
+lin bicyclic_A = mkAMost "bicyclic" "bicyclicly" ;
+lin bicycling_N = mkN "bicycling" "bicyclings" ;
+lin bicylindrical_A = mkAMost "bicylindrical" "bicylindrically" ;
+lin bid_N = mkN "bid" "bids" ;
+lin bid_bade_bid_V = mkV "bid" "bade" "bid" ;
+lin bid_bade_bidden_V = mkV "bid" "bade" "bidden" ;
+lin bid_bid_bid_V = mkV "bid" "bid" "bid" ;
+lin bid_bid_bidden_V = mkV "bid" "bid" "bidden" ;
+lin bid_bidded_bidded_V = mkV "bid" "bidded" "bidded" ;
+lin biddable_A = mkAMost "biddable" "biddably" ;
+lin bidder_N = mkN "bidder" "bidders" ;
+lin bidding_N = mkN "bidding" "biddings" ;
+lin bide_V = mkV "bide" "bided" "bided" ;
+lin bidentate_A = mkAMost "bidentate" "bidentately" ;
+lin bidet_N = mkN "bidet" "bidets" ;
+lin bidirectional_A = mkAMost "bidirectional" "bidirectionally" ;
+lin biennial_A = mkAMost "biennial" "biennially" ;
+lin biennial_N = mkN "biennial" "biennials" ;
+lin bier_N = mkN "bier" "biers" ;
+lin biface_A = mkAMost "biface" "bifacely" ;
+lin biff_N = mkN "biff" "biffs" ;
+lin biff_V = mkV "biff" "biffed" "biffed" ;
+lin bifid_A = mkAMost "bifid" "bifidly" ;
+lin bifilar_A = mkAMost "bifilar" "bifilarly" ;
+lin biflagellate_A = mkAMost "biflagellate" "biflagellately" ;
+lin bifocal_A = mkAMost "bifocal" "bifocally" ;
+lin bifocals_N = mkN "bifocals" "bifocalses" ;
+lin bifoliate_A = mkAMost "bifoliate" "bifoliately" ;
+lin biform_A = mkAMost "biform" "biformly" ;
+lin bifurcate_A = mkAMost "bifurcate" "bifurcately" ;
+lin bifurcate_V = mkV "bifurcate" "bifurcated" "bifurcated" ;
+lin bifurcation_N = mkN "bifurcation" "bifurcations" ;
+lin big_A = mkA "big" "bigger" "biggest" "big" ;
+lin big_V = mkV "big" "bigged" "bigged" ;
+lin big_boned_A = mkAMost "big-boned" "big-bonedly" ;
+lin bigamist_N = mkN "bigamist" "bigamists" ;
+lin bigamous_A = mkAMost "bigamous" "bigamously" ;
+lin bigamy_N = mkN "bigamy" "bigamies" ;
+lin bigeminal_A = mkAMost "bigeminal" "bigeminally" ;
+lin bigeneric_A = mkAMost "bigeneric" "bigenericly" ;
+lin bigeye_N = mkN "bigeye" "bigeyes" ;
+lin biggin_N = mkN "biggin" "biggins" ;
+lin biggish_A = mkAMost "biggish" "biggishly" ;
+lin bighead_N = mkN "bighead" "bigheads" ;
+lin bigheaded_A = mkAMost "bigheaded" "bigheadedly" ;
+lin bigheartedness_N = mkN "bigheartedness" "bigheartednesses" ;
+lin bighorn_N = mkN "bighorn" "bighorns" ;
+lin bight_N = mkN "bight" "bights" ;
+lin bigmouthed_A = mkAMost "bigmouthed" "bigmouthedly" ;
+lin bignoniaceous_A = mkAMost "bignoniaceous" "bignoniaceously" ;
+lin bignoniad_N = mkN "bignoniad" "bignoniads" ;
+lin bigos_N = mkN "bigos" "bigoses" ;
+lin bigot_N = mkN "bigot" "bigots" ;
+lin bigoted_A = mkAMost "bigoted" "bigotedly" ;
+lin bigotry_N = mkN "bigotry" "bigotries" ;
+lin bigram_N = mkN "bigram" "bigrams" ;
+lin bigwig_N = mkN "bigwig" "bigwigs" ;
+lin bijou_A = mkAMost "bijou" "bijouly" ;
+lin bijou_N = mkN "bijou" "bijous" ;
+lin bike_N = mkN "bike" "bikes" ;
+lin bike_V = mkV "bike" "biked" "biked" ;
+lin bikini_N = mkN "bikini" "bikinis" ;
+lin bilabial_A = mkAMost "bilabial" "bilabially" ;
+lin bilabial_N = mkN "bilabial" "bilabials" ;
+lin bilabiate_A = mkAMost "bilabiate" "bilabiately" ;
+lin bilateral_A = mkAMost "bilateral" "bilaterally" ;
+lin bilateralism_N = mkN "bilateralism" "bilateralisms" ;
+lin bilaterality_N = mkN "bilaterality" "bilateralities" ;
+lin bilberry_N = mkN "bilberry" "bilberries" ;
+lin bile_N = mkN "bile" "biles" ;
+lin bile_duct_N = mkN "bile-duct" "bile-ducts" ;
+lin bilge_N = mkN "bilge" "bilges" ;
+lin bilge_water_N = mkN "bilge-water" "bilge-waters" ;
+lin bilges_N = mkN "bilges" "bilgeses" ;
+lin bilgy_A = mkA "bilgy" "bilgier" "bilgiest" "bilgily" ;
+lin bilharzia_N = mkN "bilharzia" "bilharzias" ;
+lin biliary_A = mkAMost "biliary" "biliarily" ;
+lin bilimbi_N = mkN "bilimbi" "bilimbis" ;
+lin bilinear_A = mkAMost "bilinear" "bilinearly" ;
+lin bilingual_A = mkAMost "bilingual" "bilingually" ;
+lin bilingual_N = mkN "bilingual" "bilinguals" ;
+lin bilingualism_N = mkN "bilingualism" "bilingualisms" ;
+lin bilious_A = mkAMost "bilious" "biliously" ;
+lin biliousness_N = mkN "biliousness" "biliousnesses" ;
+lin bilirubin_N = mkN "bilirubin" "bilirubins" ;
+lin bilk_V = mkV "bilk" "bilked" "bilked" ;
+lin bill_N = mkN "bill" "bills" ;
+lin bill_V = mkV "bill" "billed" "billed" ;
+lin bill_poster_N = mkN "bill-poster" "bill-posters" ;
+lin bill_sticker_N = mkN "bill-sticker" "bill-stickers" ;
+lin billabong_N = mkN "billabong" "billabongs" ;
+lin billboard_N = mkN "billboard" "billboards" ;
+lin billet_N = mkN "billet" "billets" ;
+lin billet_V = mkV "billet" "billeted" "billeted" ;
+lin billet_doux_N = mkN "billet-doux" "billets-doux" ;
+lin billfish_N = mkN "billfish" "billfishes" ;
+lin billfold_N = mkN "billfold" "billfolds" ;
+lin billhook_N = mkN "billhook" "billhooks" ;
+lin billiard_A = mkAMost "billiard" "billiardly" ;
+lin billiard_marker_N = mkN "billiard-marker" "billiard-markers" ;
+lin billiard_player_N = mkN "billiard-player" "billiard-players" ;
+lin billiard_room_N = mkN "billiard-room" "billiard-rooms" ;
+lin billiard_table_N = mkN "billiard-table" "billiard-tables" ;
+lin billiards_N = mkN "billiards" "billiards" ;
+lin billingsgate_N = mkN "billingsgate" "billingsgates" ;
+lin billion_A = mkAMost "billion" "billionly" ;
+lin billion_N = mkN "billion" "billions" ;
+lin billionaire_N = mkN "billionaire" "billionaires" ;
+lin billionth_A = mkAMost "billionth" "billionthly" ;
+lin billionth_N = mkN "billionth" "billionths" ;
+lin billow_N = mkN "billow" "billows" ;
+lin billow_V = mkV "billow" "billowed" "billowed" ;
+lin billowy_A = mkAMost "billowy" "billowily" ;
+lin billy_N = mkN "billy" "billies" ;
+lin billy_goat_N = mkN "billy-goat" "billy-goats" ;
+lin billy_ho_N = mkN "billy-ho" "billy-hi" ;
+lin billy_o_N = mkN "billy-o" "billy-oes" ;
+lin billyo_N = mkN "billyo" "billyoes" ;
+lin bilobate_A = mkAMost "bilobate" "bilobately" ;
+lin bilocation_N = mkN "bilocation" "bilocations" ;
+lin bilocular_A = mkAMost "bilocular" "bilocularly" ;
+lin biltong_N = mkN "biltong" "biltongs" ;
+lin bimbo_N = mkN "bimbo" "bimboes" ;
+lin bimester_N = mkN "bimester" "bimesters" ;
+lin bimestrial_A = mkAMost "bimestrial" "bimestrially" ;
+lin bimetal_A = mkAMost "bimetal" "bimetally" ;
+lin bimetal_N = mkN "bimetal" "bimetals" ;
+lin bimetallic_A = mkAMost "bimetallic" "bimetallicly" ;
+lin bimetallism_N = mkN "bimetallism" "bimetallisms" ;
+lin bimetallist_N = mkN "bimetallist" "bimetallists" ;
+lin bimetallistic_A = mkAMost "bimetallistic" "bimetallisticly" ;
+lin bimillenial_A = mkAMost "bimillenial" "bimillenially" ;
+lin bimillennium_N = mkN "bimillennium" "bimillenniums" ;
+lin bimodal_A = mkAMost "bimodal" "bimodally" ;
+lin bimolecular_A = mkAMost "bimolecular" "bimolecularly" ;
+lin bimonthly_A = mkAMost "bimonthly" "bimonthlily" ;
+lin bimonthly_Adv = mkAdv "bimonthly" ;
+lin bimonthly_N = mkN "bimonthly" "bimonthlies" ;
+lin bimorphemic_A = mkAMost "bimorphemic" "bimorphemicly" ;
+lin bimotored_A = mkAMost "bimotored" "bimotoredly" ;
+lin bin_N = mkN "bin" "bins" ;
+lin binary_A = mkAMost "binary" "binarily" ;
+lin binary_N = mkN "binary" "binaries" ;
+lin binate_A = mkAMost "binate" "binately" ;
+lin binaural_A = mkAMost "binaural" "binaurally" ;
+lin bind_N = mkN "bind" "binds" ;
+lin bind_V = mkV "bind" "bound" "bound" ;
+lin bindable_A = mkAMost "bindable" "bindably" ;
+lin binder_N = mkN "binder" "binders" ;
+lin bindery_N = mkN "bindery" "binderies" ;
+lin binding_N = mkN "binding" "bindings" ;
+lin bindweed_N = mkN "bindweed" "bindweeds" ;
+lin bine_N = mkN "bine" "bines" ;
+lin binge_N = mkN "binge" "binges" ;
+lin bingo_N = mkN "bingo" "bingoes" ;
+lin binnacle_N = mkN "binnacle" "binnacles" ;
+lin binocular_A = mkAMost "binocular" "binocularly" ;
+lin binoculars_N = mkN "binoculars" "binocularses" ;
+lin binomial_A = mkAMost "binomial" "binomially" ;
+lin binomial_N = mkN "binomial" "binomials" ;
+lin binturong_N = mkN "binturong" "binturongs" ;
+lin binucleate_A = mkAMost "binucleate" "binucleately" ;
+lin bioassay_N = mkN "bioassay" "bioassays" ;
+lin biocatalyst_N = mkN "biocatalyst" "biocatalysts" ;
+lin biocatalytic_A = mkAMost "biocatalytic" "biocatalyticly" ;
+lin biochemical_A = mkAMost "biochemical" "biochemically" ;
+lin biochemist_N = mkN "biochemist" "biochemists" ;
+lin biochemistry_N = mkN "biochemistry" "biochemistries" ;
+lin biochip_N = mkN "biochip" "biochips" ;
+lin bioclimatic_A = mkAMost "bioclimatic" "bioclimaticly" ;
+lin bioclimatology_N = mkN "bioclimatology" "bioclimatologies" ;
+lin biodegradable_A = mkAMost "biodegradable" "biodegradably" ;
+lin biodiversity_N = mkN "biodiversity" "biodiversities" ;
+lin bioelectricity_N = mkN "bioelectricity" "bioelectricities" ;
+lin bioethics_N = mkN "bioethics" "bioethicses" ;
+lin biofeedback_N = mkN "biofeedback" "biofeedbacks" ;
+lin biogenesis_N = mkN "biogenesis" "biogenesises" ;
+lin biogenetic_A = mkAMost "biogenetic" "biogeneticly" ;
+lin biogenic_A = mkAMost "biogenic" "biogenicly" ;
+lin biogenous_A = mkAMost "biogenous" "biogenously" ;
+lin biogeographic_A = mkAMost "biogeographic" "biogeographicly" ;
+lin biogeography_N = mkN "biogeography" "biogeographies" ;
+lin biograph_N = mkN "biograph" "biographs" ;
+lin biographer_N = mkN "biographer" "biographers" ;
+lin biographic_A = mkAMost "biographic" "biographicly" ;
+lin biographical_A = mkAMost "biographical" "biographically" ;
+lin biography_N = mkN "biography" "biographies" ;
+lin biohazard_N = mkN "biohazard" "biohazards" ;
+lin biological_A = mkAMost "biological" "biologically" ;
+lin biologism_N = mkN "biologism" "biologisms" ;
+lin biologist_N = mkN "biologist" "biologists" ;
+lin biologistic_A = mkAMost "biologistic" "biologisticly" ;
+lin biology_N = mkN "biology" "biologies" ;
+lin bioluminescence_N = mkN "bioluminescence" "bioluminescences" ;
+lin bioluminescent_A = mkAMost "bioluminescent" "bioluminescently" ;
+lin biomass_N = mkN "biomass" "biomasses" ;
+lin biome_N = mkN "biome" "biomes" ;
+lin biomedical_A = mkAMost "biomedical" "biomedically" ;
+lin biomedicine_N = mkN "biomedicine" "biomedicines" ;
+lin biometrics_N = mkN "biometrics" "biometricses" ;
+lin bionic_A = mkAMost "bionic" "bionicly" ;
+lin bionics_N = mkN "bionics" "bionicses" ;
+lin biont_N = mkN "biont" "bionts" ;
+lin biophysicist_N = mkN "biophysicist" "biophysicists" ;
+lin biophysics_N = mkN "biophysics" "biophysicses" ;
+lin biopiracy_N = mkN "biopiracy" "biopiracies" ;
+lin biopsy_N = mkN "biopsy" "biopsies" ;
+lin bioremediation_N = mkN "bioremediation" "bioremediations" ;
+lin biosafety_N = mkN "biosafety" "biosafeties" ;
+lin bioscope_N = mkN "bioscope" "bioscopes" ;
+lin biosphere_N = mkN "biosphere" "biospheres" ;
+lin biosynthesis_N = mkN "biosynthesis" "biosynthesises" ;
+lin biosynthetic_A = mkAMost "biosynthetic" "biosyntheticly" ;
+lin biosystematic_A = mkAMost "biosystematic" "biosystematicly" ;
+lin biosystematics_N = mkN "biosystematics" "biosystematicses" ;
+lin biota_N = mkN "biota" "biotas" ;
+lin biotechnology_N = mkN "biotechnology" "biotechnologies" ;
+lin bioterrorism_N = mkN "bioterrorism" "bioterrorisms" ;
+lin biotic_A = mkAMost "biotic" "bioticly" ;
+lin biotin_N = mkN "biotin" "biotins" ;
+lin biotite_N = mkN "biotite" "biotites" ;
+lin biotitic_A = mkAMost "biotitic" "biotiticly" ;
+lin biotype_N = mkN "biotype" "biotypes" ;
+lin biotypic_A = mkAMost "biotypic" "biotypicly" ;
+lin bioweapon_N = mkN "bioweapon" "bioweapons" ;
+lin biparous_A = mkAMost "biparous" "biparously" ;
+lin bipartisan_A = mkAMost "bipartisan" "bipartisanly" ;
+lin bipartite_A = mkAMost "bipartite" "bipartitely" ;
+lin biped_N = mkN "biped" "bipeds" ;
+lin bipedal_A = mkAMost "bipedal" "bipedally" ;
+lin bipedalism_N = mkN "bipedalism" "bipedalisms" ;
+lin bipinnate_A = mkAMost "bipinnate" "bipinnately" ;
+lin bipinnatifid_A = mkAMost "bipinnatifid" "bipinnatifidly" ;
+lin biplane_N = mkN "biplane" "biplanes" ;
+lin bipolar_A = mkAMost "bipolar" "bipolarly" ;
+lin biprism_N = mkN "biprism" "biprisms" ;
+lin biquadrate_N = mkN "biquadrate" "biquadrates" ;
+lin biquadratic_A = mkAMost "biquadratic" "biquadraticly" ;
+lin biquadratic_N = mkN "biquadratic" "biquadratics" ;
+lin biracial_A = mkAMost "biracial" "biracially" ;
+lin biradial_A = mkAMost "biradial" "biradially" ;
+lin birch_A = mkA "birch" "bircher" "birchest" "birchly" ;
+lin birch_N = mkN "birch" "birches" ;
+lin birch_V = mkV "birch" "birched" "birched" ;
+lin birch_rod_N = mkN "birch-rod" "birch-rods" ;
+lin bird's_eye_A = mkAMost "bird's-eye" "bird's-eyely" ;
+lin bird_N = mkN "bird" "birds" ;
+lin bird_fancier_N = mkN "bird-fancier" "bird-fanciers" ;
+lin birdbath_N = mkN "birdbath" "birdbaths" ;
+lin birdcage_N = mkN "birdcage" "birdcages" ;
+lin birdcall_N = mkN "birdcall" "birdcalls" ;
+lin birdhouse_N = mkN "birdhouse" "birdhouses" ;
+lin birdie_N = mkN "birdie" "birdies" ;
+lin birdlime_N = mkN "birdlime" "birdlimes" ;
+lin birdnesting_N = mkN "birdnesting" "birdnestings" ;
+lin birdwatcher_N = mkN "birdwatcher" "birdwatchers" ;
+lin birefringent_A = mkAMost "birefringent" "birefringently" ;
+lin biretta_N = mkN "biretta" "birettas" ;
+lin birling_N = mkN "birling" "birlings" ;
+lin biro_N = mkN "biro" "biros" ;
+lin birr_N = mkN "birr" "birrs" ;
+lin birth_N = mkN "birth" "births" ;
+lin birth_control_N = mkN "birth-control" "birth-controls" ;
+lin birthday_N = mkN "birthday" "birthdays" ;
+lin birthmark_N = mkN "birthmark" "birthmarks" ;
+lin birthplace_N = mkN "birthplace" "birthplaces" ;
+lin birthrate_N = mkN "birthrate" "birthrates" ;
+lin birthright_N = mkN "birthright" "birthrights" ;
+lin birthwort_N = mkN "birthwort" "birthworts" ;
+lin biryani_N = mkN "biryani" "biryanis" ;
+lin biscuit_N = mkN "biscuit" "biscuits" ;
+lin bise_N = mkN "bise" "bises" ;
+lin bisect_V = mkV "bisect" "bisected" "bisected" ;
+lin bisection_N = mkN "bisection" "bisections" ;
+lin bisectional_A = mkAMost "bisectional" "bisectionally" ;
+lin biserrate_A = mkAMost "biserrate" "biserrately" ;
+lin bisexual_A = mkAMost "bisexual" "bisexually" ;
+lin bisexual_N = mkN "bisexual" "bisexuals" ;
+lin bisexuality_N = mkN "bisexuality" "bisexualities" ;
+lin bishop_N = mkN "bishop" "bishops" ;
+lin bishopric_N = mkN "bishopric" "bishoprics" ;
+lin bishopry_N = mkN "bishopry" "bishopries" ;
+lin bismuth_N = mkN "bismuth" "bismuths" ;
+lin bismuthal_A = mkAMost "bismuthal" "bismuthally" ;
+lin bismuthic_A = mkAMost "bismuthic" "bismuthicly" ;
+lin bison_N = mkN "bison" "bison" ;
+lin bisontine_A = mkAMost "bisontine" "bisontinely" ;
+lin bisque_N = mkN "bisque" "bisques" ;
+lin bister_N = mkN "bister" "bisters" ;
+lin bistered_A = mkAMost "bistered" "bisteredly" ;
+lin bistro_N = mkN "bistro" "bistros" ;
+lin bistroic_A = mkAMost "bistroic" "bistroicly" ;
+lin bit_N = mkN "bit" "bits" ;
+lin bitartrate_N = mkN "bitartrate" "bitartrates" ;
+lin bitch_N = mkN "bitch" "bitches" ;
+lin bitch_V = mkV "bitch" "bitched" "bitched" ;
+lin bitchery_N = mkN "bitchery" "bitcheries" ;
+lin bitchy_A = mkA "bitchy" "bitchier" "bitchiest" "bitchily" ;
+lin bite_N = mkN "bite" "bites" ;
+lin bite_V = mkV "bite" "bit" "bitten" ;
+lin biter_N = mkN "biter" "biters" ;
+lin bitewing_N = mkN "bitewing" "bitewings" ;
+lin biting_A = mkAMost "biting" "bitingly" ;
+lin bitmap_N = mkN "bitmap" "bitmaps" ;
+lin bitok_N = mkN "bitok" "bitoks" ;
+lin bitter_A = mkAMost "bitter" "bitterly" ;
+lin bitter_N = mkN "bitter" "bitters" ;
+lin bitter_sweet_A = mkAMost "bitter-sweet" "bitter-sweetly" ;
+lin bittercress_N = mkN "bittercress" "bittercresses" ;
+lin bitterish_A = mkAMost "bitterish" "bitterishly" ;
+lin bittern_N = mkN "bittern" "bitterns" ;
+lin bitterness_N = mkN "bitterness" "bitternesses" ;
+lin bitternut_N = mkN "bitternut" "bitternuts" ;
+lin bitterroot_N = mkN "bitterroot" "bitterroots" ;
+lin bitters_N = mkN "bitters" "bitterses" ;
+lin bittersweet_A = mkAMost "bittersweet" "bittersweetly" ;
+lin bittersweet_N = mkN "bittersweet" "bittersweets" ;
+lin bitthead_N = mkN "bitthead" "bittheads" ;
+lin bitty_A = mkA "bitty" "bittier" "bittiest" "bittily" ;
+lin bitumastic_N = mkN "bitumastic" "bitumastics" ;
+lin bitumen_N = mkN "bitumen" "bitumens" ;
+lin bituminoid_A = mkAMost "bituminoid" "bituminoidly" ;
+lin bituminous_A = mkAMost "bituminous" "bituminously" ;
+lin bivalent_A = mkAMost "bivalent" "bivalently" ;
+lin bivalve_A = mkAMost "bivalve" "bivalvely" ;
+lin bivalve_N = mkN "bivalve" "bivalves" ;
+lin bivariate_A = mkAMost "bivariate" "bivariately" ;
+lin bivouac_N = mkN "bivouac" "bivouacs" ;
+lin bivouac_V = mkV "bivouac" "bivouacked" "bivouacked" ;
+lin biweekly_N = mkN "biweekly" "biweeklies" ;
+lin biz_N = mkN "biz" "bizes" ;
+lin bizarre_A = mkAMost "bizarre" "bizarrely" ;
+lin bizonal_A = mkAMost "bizonal" "bizonally" ;
+lin blab_V = mkV "blab" "blabbed" "blabbed" ;
+lin blabber_V = mkV "blabber" "blabbered" "blabbered" ;
+lin blabbermouth_N = mkN "blabbermouth" "blabbermouths" ;
+lin blabbermouthed_A = mkAMost "blabbermouthed" "blabbermouthedly" ;
+lin black_A = mkA "black" "blacker" "blackest" "blackly" ;
+lin black_N = mkN "black" "blacks" ;
+lin black_V = mkV "black" "blacked" "blacked" ;
+lin black_beetle_N = mkN "black-beetle" "black-beetles" ;
+lin black_lead_N = mkN "black-lead" "black-leads" ;
+lin black_lead_V = mkV "black-lead" "black-leaded" "black-leaded" ;
+lin blackamoor_N = mkN "blackamoor" "blackamoors" ;
+lin blackball_V = mkV "blackball" "blackballed" "blackballed" ;
+lin blackberry_N = mkN "blackberry" "blackberries" ;
+lin blackbird_N = mkN "blackbird" "blackbirds" ;
+lin blackboard_N = mkN "blackboard" "blackboards" ;
+lin blackbuck_N = mkN "blackbuck" "blackbucks" ;
+lin blackcap_N = mkN "blackcap" "blackcaps" ;
+lin blackcock_N = mkN "blackcock" "blackcocks" ;
+lin blackcurrant_N = mkN "blackcurrant" "blackcurrants" ;
+lin blacken_V = mkV "blacken" "blackened" "blackened" ;
+lin blackening_N = mkN "blackening" "blackenings" ;
+lin blackface_N = mkN "blackface" "blackfaces" ;
+lin blackfish_N = mkN "blackfish" "blackfishes" ;
+lin blackfly_N = mkN "blackfly" "blackflies" ;
+lin blackguard_N = mkN "blackguard" "blackguards" ;
+lin blackguard_V = mkV "blackguard" "blackguarded" "blackguarded" ;
+lin blackguardly_A = mkAMost "blackguardly" "blackguardlily" ;
+lin blackhead_N = mkN "blackhead" "blackheads" ;
+lin blackheart_N = mkN "blackheart" "blackhearts" ;
+lin blacking_N = mkN "blacking" "blackings" ;
+lin blackish_A = mkAMost "blackish" "blackishly" ;
+lin blackjack_N = mkN "blackjack" "blackjacks" ;
+lin blackleg_N = mkN "blackleg" "blacklegs" ;
+lin blackleg_V = mkV "blackleg" "blacklegged" "blacklegged" ;
+lin blacklist_N = mkN "blacklist" "blacklists" ;
+lin blacklist_V = mkV "blacklist" "blacklisted" "blacklisted" ;
+lin blackmail_N = mkN "blackmail" "blackmails" ;
+lin blackmail_V = mkV "blackmail" "blackmailed" "blackmailed" ;
+lin blackmailer_N = mkN "blackmailer" "blackmailers" ;
+lin blackness_N = mkN "blackness" "blacknesses" ;
+lin blackout_N = mkN "blackout" "blackouts" ;
+lin blackpoll_N = mkN "blackpoll" "blackpolls" ;
+lin blackshirt_N = mkN "blackshirt" "blackshirts" ;
+lin blacksmith_N = mkN "blacksmith" "blacksmiths" ;
+lin blacksnake_N = mkN "blacksnake" "blacksnakes" ;
+lin blackthorn_N = mkN "blackthorn" "blackthorns" ;
+lin blacktop_N = mkN "blacktop" "blacktops" ;
+lin blackwash_N = mkN "blackwash" "blackwashes" ;
+lin blackwater_A = mkAMost "blackwater" "blackwaterly" ;
+lin blackwater_N = mkN "blackwater" "blackwaters" ;
+lin blackwood_N = mkN "blackwood" "blackwoods" ;
+lin bladder_N = mkN "bladder" "bladders" ;
+lin bladderpod_N = mkN "bladderpod" "bladderpods" ;
+lin bladderwort_N = mkN "bladderwort" "bladderworts" ;
+lin bladderwrack_N = mkN "bladderwrack" "bladderwracks" ;
+lin bladdery_A = mkAMost "bladdery" "bladderily" ;
+lin blade_N = mkN "blade" "blades" ;
+lin bladed_A = mkAMost "bladed" "bladedly" ;
+lin blae_A = mkA "blae" "blaer" "blaest" "blaely" ;
+lin blaeberry_N = mkN "blaeberry" "blaeberries" ;
+lin blah_N = mkN "blah" "blahs" ;
+lin blahs_N = mkN "blahs" "blahses" ;
+lin blain_N = mkN "blain" "blains" ;
+lin blame_N = mkN "blame" "blames" ;
+lin blame_V = mkV "blame" "blamed" "blamed" ;
+lin blameless_A = mkAMost "blameless" "blamelessly" ;
+lin blamelessness_N = mkN "blamelessness" "blamelessnesses" ;
+lin blameworthiness_N = mkN "blameworthiness" "blameworthinesses" ;
+lin blameworthy_A = mkAMost "blameworthy" "blameworthily" ;
+lin blanc_N = mkN "blanc" "blancs" ;
+lin blanch_V = mkV "blanch" "blanched" "blanched" ;
+lin blancmange_N = mkN "blancmange" "blancmanges" ;
+lin bland_A = mkA "bland" "blander" "blandest" "blandly" ;
+lin blandishment_N = mkN "blandishment" "blandishments" ;
+lin blandness_N = mkN "blandness" "blandnesses" ;
+lin blank_A = mkAMost "blank" "blankly" ;
+lin blank_N = mkN "blank" "blanks" ;
+lin blank_V = mkV "blank" "blanked" "blanked" ;
+lin blanket_N = mkN "blanket" "blankets" ;
+lin blanket_V = mkV "blanket" "blanketed" "blanketed" ;
+lin blankness_N = mkN "blankness" "blanknesses" ;
+lin blanquillo_N = mkN "blanquillo" "blanquilloes" ;
+lin blare_N = mkN "blare" "blares" ;
+lin blare_V = mkV "blare" "blared" "blared" ;
+lin blarney_N = mkN "blarney" "blarneys" ;
+lin blaspheme_V = mkV "blaspheme" "blasphemed" "blasphemed" ;
+lin blasphemer_N = mkN "blasphemer" "blasphemers" ;
+lin blasphemous_A = mkAMost "blasphemous" "blasphemously" ;
+lin blasphemy_N = mkN "blasphemy" "blasphemies" ;
+lin blast_N = mkN "blast" "blasts" ;
+lin blast_V = mkV "blast" "blasted" "blasted" ;
+lin blast_furnace_N = mkN "blast-furnace" "blast-furnaces" ;
+lin blast_off_N = mkN "blast-off" "blast-offs" ;
+lin blastema_N = mkN "blastema" "blastemas" ;
+lin blastemal_A = mkAMost "blastemal" "blastemally" ;
+lin blaster_N = mkN "blaster" "blasters" ;
+lin blastocoel_N = mkN "blastocoel" "blastocoels" ;
+lin blastocoelic_A = mkAMost "blastocoelic" "blastocoelicly" ;
+lin blastocyst_N = mkN "blastocyst" "blastocysts" ;
+lin blastocyte_N = mkN "blastocyte" "blastocytes" ;
+lin blastoderm_N = mkN "blastoderm" "blastoderms" ;
+lin blastodermatic_A = mkAMost "blastodermatic" "blastodermaticly" ;
+lin blastoff_N = mkN "blastoff" "blastoffs" ;
+lin blastogenesis_N = mkN "blastogenesis" "blastogenesises" ;
+lin blastogenetic_A = mkAMost "blastogenetic" "blastogeneticly" ;
+lin blastoma_N = mkN "blastoma" "blastomas" ;
+lin blastomere_N = mkN "blastomere" "blastomeres" ;
+lin blastomeric_A = mkAMost "blastomeric" "blastomericly" ;
+lin blastomycete_N = mkN "blastomycete" "blastomycetes" ;
+lin blastomycosis_N = mkN "blastomycosis" "blastomycosises" ;
+lin blastomycotic_A = mkAMost "blastomycotic" "blastomycoticly" ;
+lin blastoporal_A = mkAMost "blastoporal" "blastoporally" ;
+lin blastopore_N = mkN "blastopore" "blastopores" ;
+lin blastospheric_A = mkAMost "blastospheric" "blastosphericly" ;
+lin blastula_N = mkN "blastula" "blastulas" ;
+lin blasé_A = mkAMost "blasé" "blasély" ;
+lin blatancy_N = mkN "blatancy" "blatancies" ;
+lin blatant_A = mkAMost "blatant" "blatantly" ;
+lin blather_N = mkN "blather" "blathers" ;
+lin blather_V = mkV "blather" "blathered" "blathered" ;
+lin blaxploitation_N = mkN "blaxploitation" "blaxploitations" ;
+lin blaze_N = mkN "blaze" "blazes" ;
+lin blaze_V = mkV "blaze" "blazed" "blazed" ;
+lin blazer_N = mkN "blazer" "blazers" ;
+lin blazon_N = mkN "blazon" "blazons" ;
+lin blazon_V = mkV "blazon" "blazoned" "blazoned" ;
+lin blazonry_N = mkN "blazonry" "blazonries" ;
+lin bleach_N = mkN "bleach" "bleaches" ;
+lin bleach_V = mkV "bleach" "bleached" "bleached" ;
+lin bleacher_N = mkN "bleacher" "bleachers" ;
+lin bleachers_N = mkN "bleachers" "bleacherses" ;
+lin bleaching_powder_N = mkN "bleaching-powder" "bleaching-powders" ;
+lin bleak_A = mkA "bleak" "bleaker" "bleakest" "bleakly" ;
+lin bleakness_N = mkN "bleakness" "bleaknesses" ;
+lin bleary_A = mkAMost "bleary" "blearily" ;
+lin bleary_eyed_A = mkAMost "bleary-eyed" "bleary-eyedly" ;
+lin bleat_N = mkN "bleat" "bleats" ;
+lin bleat_V = mkV "bleat" "bleated" "bleated" ;
+lin blebbed_A = mkAMost "blebbed" "blebbedly" ;
+lin blebby_A = mkA "blebby" "blebbier" "blebbiest" "blebbily" ;
+lin bleed_bled_V = mkV "bleed" "bled" "bled" ;
+lin bleed_bleeded_V = mkV "bleed" "bleeded" "bleeded" ;
+lin bleeding_N = mkN "bleeding" "bleedings" ;
+lin bleep_N = mkN "bleep" "bleeps" ;
+lin bleep_V = mkV "bleep" "bleeped" "bleeped" ;
+lin blemish_N = mkN "blemish" "blemishes" ;
+lin blemish_V = mkV "blemish" "blemished" "blemished" ;
+lin blench_V = mkV "blench" "blenched" "blenched" ;
+lin blend_N = mkN "blend" "blends" ;
+lin blend_V = mkV "blend" "blended" "blended" ;
+lin blender_N = mkN "blender" "blenders" ;
+lin blenny_N = mkN "blenny" "blennies" ;
+lin blepharism_N = mkN "blepharism" "blepharisms" ;
+lin blepharitis_N = mkN "blepharitis" "blepharitises" ;
+lin blepharospasm_N = mkN "blepharospasm" "blepharospasms" ;
+lin bless_V = mkV "bless" "blessed" "blessed" ;
+lin blessedly_Adv = mkAdv "blessedly" ;
+lin blessedness_N = mkN "blessedness" "blessednesses" ;
+lin blessing_N = mkN "blessing" "blessings" ;
+lin blether_N = mkN "blether" "blethers" ;
+lin blether_V = mkV "blether" "blethered" "blethered" ;
+lin bletia_N = mkN "bletia" "bletias" ;
+lin bleu_N = mkN "bleu" "bleus" ;
+lin blewits_N = mkN "blewits" "blewitses" ;
+lin blight_N = mkN "blight" "blights" ;
+lin blight_V = mkV "blight" "blighted" "blighted" ;
+lin blighter_N = mkN "blighter" "blighters" ;
+lin blighty_N = mkN "blighty" "blighties" ;
+lin blimp_N = mkN "blimp" "blimps" ;
+lin blimpish_A = mkAMost "blimpish" "blimpishly" ;
+lin blind_A = mkAMost "blind" "blindly" ;
+lin blind_N = mkN "blind" "blinds" ;
+lin blind_V = mkV "blind" "blinded" "blinded" ;
+lin blindfold_A = mkAMost "blindfold" "blindfoldly" ;
+lin blindfold_N = mkN "blindfold" "blindfolds" ;
+lin blindfold_V = mkV "blindfold" "blindfolded" "blindfolded" ;
+lin blindman's_buff_N = mkN "blindman's buff" "blindman's buffs" ;
+lin blindness_N = mkN "blindness" "blindnesses" ;
+lin blindworm_N = mkN "blindworm" "blindworms" ;
+lin bling_N = mkN "bling" "blings" ;
+lin blini_N = mkN "blini" "blinis" ;
+lin blink_N = mkN "blink" "blinks" ;
+lin blink_V = mkV "blink" "blinked" "blinked" ;
+lin blinker_N = mkN "blinker" "blinkers" ;
+lin blinks_N = mkN "blinks" "blinkses" ;
+lin blintz_N = mkN "blintz" "blintzes" ;
+lin blip_N = mkN "blip" "blips" ;
+lin bliss_N = mkN "bliss" "blisses" ;
+lin bliss_V = mkV "bliss" "blissed" "blissed" ;
+lin blissful_A = mkAMost "blissful" "blissfully" ;
+lin blister_N = mkN "blister" "blisters" ;
+lin blister_V = mkV "blister" "blistered" "blistered" ;
+lin blithe_A = mkAMost "blithe" "blithely" ;
+lin blithering_A = mkAMost "blithering" "blitheringly" ;
+lin blithesome_A = mkAMost "blithesome" "blithesomely" ;
+lin blitz_N = mkN "blitz" "blitzes" ;
+lin blitz_V = mkV "blitz" "blitzed" "blitzed" ;
+lin blizzard_N = mkN "blizzard" "blizzards" ;
+lin bloat_N = mkN "bloat" "bloats" ;
+lin bloated_A = mkAMost "bloated" "bloatedly" ;
+lin bloater_N = mkN "bloater" "bloaters" ;
+lin blob_N = mkN "blob" "blobs" ;
+lin bloc_N = mkN "bloc" "blocs" ;
+lin block_N = mkN "block" "blocks" ;
+lin block_V = mkV "block" "blocked" "blocked" ;
+lin blockade_N = mkN "blockade" "blockades" ;
+lin blockade_V = mkV "blockade" "blockaded" "blockaded" ;
+lin blockade_runner_N = mkN "blockade-runner" "blockade-runners" ;
+lin blockading_A = mkAMost "blockading" "blockadingly" ;
+lin blockage_N = mkN "blockage" "blockages" ;
+lin blockbuster_N = mkN "blockbuster" "blockbusters" ;
+lin blocker_N = mkN "blocker" "blockers" ;
+lin blockhead_N = mkN "blockhead" "blockheads" ;
+lin blockheaded_A = mkAMost "blockheaded" "blockheadedly" ;
+lin blockhouse_N = mkN "blockhouse" "blockhouses" ;
+lin blocking_N = mkN "blocking" "blockings" ;
+lin blockish_A = mkAMost "blockish" "blockishly" ;
+lin blogger_N = mkN "blogger" "bloggers" ;
+lin bloke_N = mkN "bloke" "blokes" ;
+lin blolly_N = mkN "blolly" "blollies" ;
+lin blond_A = mkA "blond" "blonder" "blondest" "blondly" ;
+lin blond_N = mkN "blond" "blonds" ;
+lin blonde_A = mkAMost "blonde" "blondely" ;
+lin blonde_N = mkN "blonde" "blondes" ;
+lin blood_N = mkN "blood" "bloods" ;
+lin blood_bath_N = mkN "blood-bath" "blood-baths" ;
+lin blood_blooded_V = mkV "blood" "blooded" "blooded" ;
+lin blood_bloodied_V = mkV "blood" "bloodied" "bloodied" ;
+lin blood_donor_N = mkN "blood-donor" "blood-donors" ;
+lin blood_group_N = mkN "blood-group" "blood-groups" ;
+lin blood_heat_N = mkN "blood-heat" "blood-heats" ;
+lin blood_letting_N = mkN "blood-letting" "blood-lettings" ;
+lin blood_money_N = mkN "blood-money" "blood-moneys" ;
+lin blood_poisoning_N = mkN "blood-poisoning" "blood-poisonings" ;
+lin blood_pressure_N = mkN "blood-pressure" "blood-pressures" ;
+lin blood_relation_N = mkN "blood-relation" "blood-relations" ;
+lin blood_transfusion_N = mkN "blood-transfusion" "blood-transfusions" ;
+lin blood_type_N = mkN "blood-type" "blood-types" ;
+lin blood_vessel_N = mkN "blood-vessel" "blood-vessels" ;
+lin bloodbath_N = mkN "bloodbath" "bloodbaths" ;
+lin bloodberry_N = mkN "bloodberry" "bloodberries" ;
+lin bloodcurdling_A = mkAMost "bloodcurdling" "bloodcurdlingly" ;
+lin bloodguilt_N = mkN "bloodguilt" "bloodguilts" ;
+lin bloodguilty_A = mkAMost "bloodguilty" "bloodguiltily" ;
+lin bloodhound_N = mkN "bloodhound" "bloodhounds" ;
+lin bloodiness_N = mkN "bloodiness" "bloodinesses" ;
+lin bloodleaf_N = mkN "bloodleaf" "bloodleafs" ;
+lin bloodless_A = mkAMost "bloodless" "bloodlessly" ;
+lin bloodletting_N = mkN "bloodletting" "bloodlettings" ;
+lin bloodlust_N = mkN "bloodlust" "bloodlusts" ;
+lin bloodmobile_N = mkN "bloodmobile" "bloodmobiles" ;
+lin bloodroot_N = mkN "bloodroot" "bloodroots" ;
+lin bloodshed_N = mkN "bloodshed" "bloodsheds" ;
+lin bloodshot_A = mkAMost "bloodshot" "bloodshotly" ;
+lin bloodstain_N = mkN "bloodstain" "bloodstains" ;
+lin bloodstained_A = mkAMost "bloodstained" "bloodstainedly" ;
+lin bloodstock_N = mkN "bloodstock" "bloodstocks" ;
+lin bloodstone_N = mkN "bloodstone" "bloodstones" ;
+lin bloodstream_N = mkN "bloodstream" "bloodstreams" ;
+lin bloodsucker_N = mkN "bloodsucker" "bloodsuckers" ;
+lin bloodsucking_A = mkAMost "bloodsucking" "bloodsuckingly" ;
+lin bloodthirstiness_N = mkN "bloodthirstiness" "bloodthirstinesses" ;
+lin bloodthirsty_A = mkAMost "bloodthirsty" "bloodthirstily" ;
+lin bloodworm_N = mkN "bloodworm" "bloodworms" ;
+lin bloodwort_N = mkN "bloodwort" "bloodworts" ;
+lin bloody_A = mkA "bloody" "bloodier" "bloodiest" "bloodily" ;
+lin bloody_Adv = mkAdv "bloody" ;
+lin bloody_minded_A = mkAMost "bloody-minded" "bloody-mindedly" ;
+lin bloom_N = mkN "bloom" "blooms" ;
+lin bloom_V = mkV "bloom" "bloomed" "bloomed" ;
+lin bloomer_N = mkN "bloomer" "bloomers" ;
+lin bloomers_N = mkN "bloomers" "bloomerses" ;
+lin blooming_N = mkN "blooming" "bloomings" ;
+lin blossom_N = mkN "blossom" "blossoms" ;
+lin blossom_V = mkV "blossom" "blossomed" "blossomed" ;
+lin blossoming_N = mkN "blossoming" "blossomings" ;
+lin blot_N = mkN "blot" "blots" ;
+lin blot_V = mkV "blot" "blotted" "blotted" ;
+lin blotch_N = mkN "blotch" "blotches" ;
+lin blotched_A = mkAMost "blotched" "blotchedly" ;
+lin blotchy_A = mkA "blotchy" "blotchier" "blotchiest" "blotchily" ;
+lin blotter_N = mkN "blotter" "blotters" ;
+lin blotting_paper_N = mkN "blotting-paper" "blotting-papers" ;
+lin blotto_A = mkAMost "blotto" "blottoly" ;
+lin blouse_N = mkN "blouse" "blouses" ;
+lin blow_N = mkN "blow" "blows" ;
+lin blow_blew_V = mkV "blow" "blew" "blown" ;
+lin blow_blowed_V = mkV "blow" "blowed" "blowed" ;
+lin blow_dry_V = mkV "blow-dry" "blow-dried" "blow-dried" ;
+lin blow_up_N = mkN "blow-up" "blow-ups" ;
+lin blowback_N = mkN "blowback" "blowbacks" ;
+lin blower_N = mkN "blower" "blowers" ;
+lin blowfish_N = mkN "blowfish" "blowfishes" ;
+lin blowfly_N = mkN "blowfly" "blowflies" ;
+lin blowgun_N = mkN "blowgun" "blowguns" ;
+lin blowhole_N = mkN "blowhole" "blowholes" ;
+lin blowing_N = mkN "blowing" "blowings" ;
+lin blowing_up_N = mkN "blowing-up" "blowing-ups" ;
+lin blowlamp_N = mkN "blowlamp" "blowlamps" ;
+lin blowout_N = mkN "blowout" "blowouts" ;
+lin blowpipe_N = mkN "blowpipe" "blowpipes" ;
+lin blowsy_A = mkA "blowsy" "blowsier" "blowsiest" "blowsily" ;
+lin blowtorch_N = mkN "blowtorch" "blowtorches" ;
+lin blowtube_N = mkN "blowtube" "blowtubes" ;
+lin blowy_A = mkA "blowy" "blowier" "blowiest" "blowily" ;
+lin blowzy_A = mkAMost "blowzy" "blowzily" ;
+lin blubber_N = mkN "blubber" "blubbers" ;
+lin blubber_V = mkV "blubber" "blubbered" "blubbered" ;
+lin blubberer_N = mkN "blubberer" "blubberers" ;
+lin blubbery_A = mkAMost "blubbery" "blubberily" ;
+lin blucher_N = mkN "blucher" "bluchers" ;
+lin bludgeon_N = mkN "bludgeon" "bludgeons" ;
+lin bludgeon_V = mkV "bludgeon" "bludgeoned" "bludgeoned" ;
+lin bludgeoner_N = mkN "bludgeoner" "bludgeoners" ;
+lin blue_A = mkA "blue" "bluer" "bluest" "bluely" ;
+lin blue_N = mkN "blue" "blues" ;
+lin blue_V = mkV "blue" "blued" "blued" ;
+lin blue_collar_A = mkAMost "blue-collar" "blue-collarly" ;
+lin blue_jacket_N = mkN "blue-jacket" "blue-jackets" ;
+lin blue_pencil_V = mkV "blue-pencil" "blue-pencilled" "blue-pencilled" ;
+lin bluebell_N = mkN "bluebell" "bluebells" ;
+lin blueberry_N = mkN "blueberry" "blueberries" ;
+lin bluebird_N = mkN "bluebird" "bluebirds" ;
+lin bluebonnet_N = mkN "bluebonnet" "bluebonnets" ;
+lin bluebottle_N = mkN "bluebottle" "bluebottles" ;
+lin bluecoat_N = mkN "bluecoat" "bluecoats" ;
+lin bluefin_N = mkN "bluefin" "bluefins" ;
+lin bluefish_N = mkN "bluefish" "bluefishes" ;
+lin bluegill_N = mkN "bluegill" "bluegills" ;
+lin bluegrass_N = mkN "bluegrass" "bluegrasses" ;
+lin bluehead_N = mkN "bluehead" "blueheads" ;
+lin bluejacket_N = mkN "bluejacket" "bluejackets" ;
+lin bluepoint_N = mkN "bluepoint" "bluepoints" ;
+lin blueprint_N = mkN "blueprint" "blueprints" ;
+lin blues_N = mkN "blues" "blueses" ;
+lin bluestem_N = mkN "bluestem" "bluestems" ;
+lin bluestocking_N = mkN "bluestocking" "bluestockings" ;
+lin bluestone_N = mkN "bluestone" "bluestones" ;
+lin bluethroat_N = mkN "bluethroat" "bluethroats" ;
+lin bluetick_N = mkN "bluetick" "blueticks" ;
+lin bluetongue_N = mkN "bluetongue" "bluetongues" ;
+lin blueweed_N = mkN "blueweed" "blueweeds" ;
+lin bluewing_N = mkN "bluewing" "bluewings" ;
+lin bluff_A = mkAMost "bluff" "bluffly" ;
+lin bluff_N = mkN "bluff" "bluffs" ;
+lin bluff_V = mkV "bluff" "bluffed" "bluffed" ;
+lin bluffer_N = mkN "bluffer" "bluffers" ;
+lin bluffness_N = mkN "bluffness" "bluffnesses" ;
+lin bluing_N = mkN "bluing" "bluings" ;
+lin bluish_A = mkAMost "bluish" "bluishly" ;
+lin blunder_N = mkN "blunder" "blunders" ;
+lin blunder_V = mkV "blunder" "blundered" "blundered" ;
+lin blunderbuss_N = mkN "blunderbuss" "blunderbusses" ;
+lin blunderer_N = mkN "blunderer" "blunderers" ;
+lin blunt_A = mkA "blunt" "blunter" "bluntest" "bluntly" ;
+lin blunt_V = mkV "blunt" "blunted" "blunted" ;
+lin bluntness_N = mkN "bluntness" "bluntnesses" ;
+lin blur_N = mkN "blur" "blurs" ;
+lin blur_V = mkV "blur" "blurred" "blurred" ;
+lin blurb_N = mkN "blurb" "blurbs" ;
+lin blurt_V = mkV "blurt" "blurted" "blurted" ;
+lin blush_N = mkN "blush" "blushes" ;
+lin blush_V = mkV "blush" "blushed" "blushed" ;
+lin blushful_A = mkAMost "blushful" "blushfully" ;
+lin bluster_N = mkN "bluster" "blusters" ;
+lin bluster_V = mkV "bluster" "blustered" "blustered" ;
+lin blustery_A = mkAMost "blustery" "blusterily" ;
+lin blvd_N = mkN "blvd" "blvds" ;
+lin bma_N = mkN "bma" "bmas" ;
+lin bmus_N = mkN "bmus" "bmuses" ;
+lin bo'sn_N = mkN "bo'sn" "bo'sns" ;
+lin bo'sun_N = mkN "bo'sun" "bo'suns" ;
+lin boa_N = mkN "boa" "boas" ;
+lin boa_constrictor_N = mkN "boa-constrictor" "boa-constrictors" ;
+lin boar_N = mkN "boar" "boars" ;
+lin board_N = mkN "board" "boards" ;
+lin board_V = mkV "board" "boarded" "boarded" ;
+lin boarder_N = mkN "boarder" "boarders" ;
+lin boarding_N = mkN "boarding" "boardings" ;
+lin boarding_card_N = mkN "boarding-card" "boarding-cards" ;
+lin boarding_house_N = mkN "boarding-house" "boarding-houses" ;
+lin boarding_school_N = mkN "boarding-school" "boarding-schools" ;
+lin boardroom_N = mkN "boardroom" "boardrooms" ;
+lin boards_N = mkN "boards" "boardses" ;
+lin boardwalk_N = mkN "boardwalk" "boardwalks" ;
+lin boarfish_N = mkN "boarfish" "boarfishes" ;
+lin boarhound_N = mkN "boarhound" "boarhounds" ;
+lin boast_N = mkN "boast" "boasts" ;
+lin boast_V = mkV "boast" "boasted" "boasted" ;
+lin boaster_N = mkN "boaster" "boasters" ;
+lin boastful_A = mkAMost "boastful" "boastfully" ;
+lin boastfulness_N = mkN "boastfulness" "boastfulnesses" ;
+lin boat_N = mkN "boat" "boats" ;
+lin boat_V = mkV "boat" "boated" "boated" ;
+lin boat_hook_N = mkN "boat-hook" "boat-hooks" ;
+lin boat_house_N = mkN "boat-house" "boat-houses" ;
+lin boat_race_N = mkN "boat-race" "boat-races" ;
+lin boat_train_N = mkN "boat-train" "boat-trains" ;
+lin boatbill_N = mkN "boatbill" "boatbills" ;
+lin boatbuilder_N = mkN "boatbuilder" "boatbuilders" ;
+lin boater_N = mkN "boater" "boaters" ;
+lin boathouse_N = mkN "boathouse" "boathouses" ;
+lin boating_N = mkN "boating" "boatings" ;
+lin boatload_N = mkN "boatload" "boatloads" ;
+lin boatman_N = mkN "boatman" "boatmen" ;
+lin boatmanship_N = mkN "boatmanship" "boatmanships" ;
+lin boatswain_N = mkN "boatswain" "boatswains" ;
+lin boatyard_N = mkN "boatyard" "boatyards" ;
+lin bob_N = mkN "bob" "bob" ;
+lin bob_V = mkV "bob" "bobbed" "bobbed" ;
+lin bobbin_N = mkN "bobbin" "bobbins" ;
+lin bobble_N = mkN "bobble" "bobbles" ;
+lin bobby_N = mkN "bobby" "bobbies" ;
+lin bobby_soxer_N = mkN "bobby-soxer" "bobby-soxers" ;
+lin bobbysoxer_N = mkN "bobbysoxer" "bobbysoxers" ;
+lin bobcat_N = mkN "bobcat" "bobcats" ;
+lin bobolink_N = mkN "bobolink" "bobolinks" ;
+lin bobsled_N = mkN "bobsled" "bobsleds" ;
+lin bobsledding_N = mkN "bobsledding" "bobsleddings" ;
+lin bobsleigh_N = mkN "bobsleigh" "bobsleighs" ;
+lin bobtail_A = mkAMost "bobtail" "bobtailly" ;
+lin bobtail_N = mkN "bobtail" "bobtails" ;
+lin bobwhite_N = mkN "bobwhite" "bobwhites" ;
+lin bocce_N = mkN "bocce" "bocces" ;
+lin bocconia_N = mkN "bocconia" "bocconias" ;
+lin boche_A = mkAMost "boche" "bochely" ;
+lin bock_N = mkN "bock" "bocks" ;
+lin bodacious_A = mkAMost "bodacious" "bodaciously" ;
+lin bode_V = mkV "bode" "boded" "boded" ;
+lin bodega_N = mkN "bodega" "bodegas" ;
+lin bodice_N = mkN "bodice" "bodices" ;
+lin bodied_A = mkAMost "bodied" "bodiedly" ;
+lin bodiless_A = mkAMost "bodiless" "bodilessly" ;
+lin bodily_A = mkAMost "bodily" "bodilily" ;
+lin bodily_Adv = mkAdv "bodily" ;
+lin boding_N = mkN "boding" "bodings" ;
+lin bodkin_N = mkN "bodkin" "bodkins" ;
+lin body_N = mkN "body" "bodies" ;
+lin body_servant_N = mkN "body-servant" "body-servants" ;
+lin body_snatcher_N = mkN "body-snatcher" "body-snatchers" ;
+lin bodybuilder_N = mkN "bodybuilder" "bodybuilders" ;
+lin bodybuilding_N = mkN "bodybuilding" "bodybuildings" ;
+lin bodyguard_N = mkN "bodyguard" "bodyguards" ;
+lin bodywork_N = mkN "bodywork" "bodyworks" ;
+lin boer_A = mkAMost "boer" "boerly" ;
+lin boer_N = mkN "boer" "boers" ;
+lin boffin_N = mkN "boffin" "boffins" ;
+lin boffo_A = mkA "boffo" "boffoer" "boffoest" "boffoly" ;
+lin bog_N = mkN "bog" "bogs" ;
+lin bog_V = mkV "bog" "bogged" "bogged" ;
+lin bogey_N = mkN "bogey" "bogeys" ;
+lin bogeyman_N = mkN "bogeyman" "bogeymen" ;
+lin boggle_V = mkV "boggle" "boggled" "boggled" ;
+lin boggy_A = mkA "boggy" "boggier" "boggiest" "boggily" ;
+lin bogie_N = mkN "bogie" "bogies" ;
+lin bogus_A = mkAMost "bogus" "bogusly" ;
+lin bogy_N = mkN "bogy" "bogies" ;
+lin bohemia_N = mkN "bohemia" "bohemias" ;
+lin bohemian_A = mkAMost "bohemian" "bohemianly" ;
+lin bohemian_N = mkN "bohemian" "bohemians" ;
+lin bohemianism_N = mkN "bohemianism" "bohemianisms" ;
+lin bohrium_N = mkN "bohrium" "bohriums" ;
+lin boil_N = mkN "boil" "boils" ;
+lin boil_V = mkV "boil" "boiled" "boiled" ;
+lin boiler_N = mkN "boiler" "boilers" ;
+lin boilerplate_N = mkN "boilerplate" "boilerplates" ;
+lin boilersuit_N = mkN "boilersuit" "boilersuits" ;
+lin boiling_Adv = mkAdv "boiling" ;
+lin boiling_N = mkN "boiling" "boilings" ;
+lin boiling_point_N = mkN "boiling-point" "boiling-points" ;
+lin boisterous_A = mkAMost "boisterous" "boisterously" ;
+lin boisterousness_N = mkN "boisterousness" "boisterousnesses" ;
+lin bola_N = mkN "bola" "bolas" ;
+lin bold_A = mkA "bold" "bolder" "boldest" "boldly" ;
+lin boldface_N = mkN "boldface" "boldfaces" ;
+lin boldness_N = mkN "boldness" "boldnesses" ;
+lin bole_N = mkN "bole" "boles" ;
+lin bolero_N = mkN "bolero" "boleros" ;
+lin bolete_N = mkN "bolete" "boletes" ;
+lin bolide_N = mkN "bolide" "bolides" ;
+lin bolivar_N = mkN "bolivar" "bolivars" ;
+lin bolivia_N = mkN "bolivia" "bolivias" ;
+lin bolivian_A = mkAMost "bolivian" "bolivianly" ;
+lin bolivian_N = mkN "bolivian" "bolivians" ;
+lin boliviano_N = mkN "boliviano" "bolivianoes" ;
+lin boll_N = mkN "boll" "bolls" ;
+lin bollard_N = mkN "bollard" "bollards" ;
+lin bollock_N = mkN "bollock" "bollocks" ;
+lin bollworm_N = mkN "bollworm" "bollworms" ;
+lin bolo_N = mkN "bolo" "boloes" ;
+lin bologna_N = mkN "bologna" "bolognas" ;
+lin bologram_N = mkN "bologram" "bolograms" ;
+lin bolographic_A = mkAMost "bolographic" "bolographicly" ;
+lin bolometer_N = mkN "bolometer" "bolometers" ;
+lin bolometric_A = mkAMost "bolometric" "bolometricly" ;
+lin boloney_N = mkN "boloney" "boloneys" ;
+lin bolshevik_N = mkN "bolshevik" "bolsheviks" ;
+lin bolshy_A = mkAMost "bolshy" "bolshily" ;
+lin bolster_N = mkN "bolster" "bolsters" ;
+lin bolster_V = mkV "bolster" "bolstered" "bolstered" ;
+lin bolt_Adv = mkAdv "bolt" ;
+lin bolt_N = mkN "bolt" "bolts" ;
+lin bolt_V = mkV "bolt" "bolted" "bolted" ;
+lin bolt_hole_N = mkN "bolt-hole" "bolt-holes" ;
+lin bolti_N = mkN "bolti" "boltis" ;
+lin bolus_N = mkN "bolus" "boluses" ;
+lin bomb_N = mkN "bomb" "bombs" ;
+lin bomb_V = mkV "bomb" "bombed" "bombed" ;
+lin bomb_proof_A = mkAMost "bomb-proof" "bomb-proofly" ;
+lin bomb_sight_N = mkN "bomb-sight" "bomb-sights" ;
+lin bomb_site_N = mkN "bomb-site" "bomb-sites" ;
+lin bombard_V = mkV "bombard" "bombarded" "bombarded" ;
+lin bombardier_N = mkN "bombardier" "bombardiers" ;
+lin bombardment_N = mkN "bombardment" "bombardments" ;
+lin bombardon_N = mkN "bombardon" "bombardons" ;
+lin bombast_N = mkN "bombast" "bombasts" ;
+lin bombastic_A = mkAMost "bombastic" "bombasticly" ;
+lin bombastically_Adv = mkAdv "bombastically" ;
+lin bombazine_N = mkN "bombazine" "bombazines" ;
+lin bomber_N = mkN "bomber" "bombers" ;
+lin bombie_N = mkN "bombie" "bombies" ;
+lin bombing_N = mkN "bombing" "bombings" ;
+lin bomblet_N = mkN "bomblet" "bomblets" ;
+lin bombproof_A = mkAMost "bombproof" "bombproofly" ;
+lin bombshell_N = mkN "bombshell" "bombshells" ;
+lin bombsight_N = mkN "bombsight" "bombsights" ;
+lin bombycid_N = mkN "bombycid" "bombycids" ;
+lin bon_mot_N = mkN "bon mot" "IRREG" ;
+lin bona_fide_A = mkAMost "bona fide" "bona fidely" ;
+lin bona_fide_Adv = mkAdv "bona fide" ;
+lin bonanza_N = mkN "bonanza" "bonanzas" ;
+lin bonbon_N = mkN "bonbon" "bonbons" ;
+lin bond_N = mkN "bond" "bonds" ;
+lin bond_V = mkV "bond" "bonded" "bonded" ;
+lin bond_holder_N = mkN "bond-holder" "bond-holders" ;
+lin bondable_A = mkAMost "bondable" "bondably" ;
+lin bondage_N = mkN "bondage" "bondages" ;
+lin bondholder_N = mkN "bondholder" "bondholders" ;
+lin bonding_N = mkN "bonding" "bondings" ;
+lin bondman_N = mkN "bondman" "bondmen" ;
+lin bondsman_N = mkN "bondsman" "bondsmen" ;
+lin bonduc_N = mkN "bonduc" "bonducs" ;
+lin bondwoman_N = mkN "bondwoman" "bondwomen" ;
+lin bone_A = mkA "bone" "boner" "bonest" "bonely" ;
+lin bone_N = mkN "bone" "bones" ;
+lin bone_V = mkV "bone" "boned" "boned" ;
+lin bone_dry_A = mkAMost "bone-dry" "bone-drily" ;
+lin bone_head_N = mkN "bone-head" "bone-heads" ;
+lin bone_idle_A = mkAMost "bone-idle" "bone-idlely" ;
+lin bone_lazy_A = mkAMost "bone-lazy" "bone-lazily" ;
+lin bone_setter_N = mkN "bone-setter" "bone-setters" ;
+lin bonefish_N = mkN "bonefish" "bonefishes" ;
+lin boneless_A = mkAMost "boneless" "bonelessly" ;
+lin bonelike_A = mkAMost "bonelike" "bonelikely" ;
+lin bonemeal_N = mkN "bonemeal" "bonemeals" ;
+lin boner_N = mkN "boner" "boners" ;
+lin bones_N = mkN "bones" "boneses" ;
+lin boneset_N = mkN "boneset" "bonesets" ;
+lin bonesetter_N = mkN "bonesetter" "bonesetters" ;
+lin boneshaker_N = mkN "boneshaker" "boneshakers" ;
+lin bonfire_N = mkN "bonfire" "bonfires" ;
+lin bong_N = mkN "bong" "bongs" ;
+lin bongo_N = mkN "bongo" "bongos" ;
+lin bonheur_N = mkN "bonheur" "bonheurs" ;
+lin bonhomie_N = mkN "bonhomie" "bonhomies" ;
+lin bonito_N = mkN "bonito" "bonitos" ;
+lin bonkers_A = mkAMost "bonkers" "bonkersly" ;
+lin bonnet_N = mkN "bonnet" "bonnets" ;
+lin bonny_A = mkA "bonny" "bonnier" "bonniest" "bonnily" ;
+lin bonsai_N = mkN "bonsai" "bonsais" ;
+lin bonus_N = mkN "bonus" "bonuses" ;
+lin bony_A = mkA "bony" "bonier" "boniest" "bonily" ;
+lin bonyness_N = mkN "bonyness" "bonynesses" ;
+lin bonzer_A = mkAMost "bonzer" "bonzerly" ;
+lin boo_N = mkN "boo" "boos" ;
+lin boo_V = mkV "boo" "booed" "booed" ;
+lin boob_N = mkN "boob" "boobs" ;
+lin boob_V = mkV "boob" "boobed" "boobed" ;
+lin booboisie_N = mkN "booboisie" "booboisies" ;
+lin booby_N = mkN "booby" "boobies" ;
+lin booby_trap_N = mkN "booby-trap" "booby-traps" ;
+lin boodle_N = mkN "boodle" "boodles" ;
+lin booger_N = mkN "booger" "boogers" ;
+lin boogie_N = mkN "boogie" "boogies" ;
+lin boogie_woogie_N = mkN "boogie-woogie" "boogie-woogies" ;
+lin book_N = mkN "book" "books" ;
+lin book_V = mkV "book" "booked" "booked" ;
+lin book_end_N = mkN "book-end" "book-ends" ;
+lin book_keeper_N = mkN "book-keeper" "book-keepers" ;
+lin bookable_A = mkAMost "bookable" "bookably" ;
+lin bookbinder_N = mkN "bookbinder" "bookbinders" ;
+lin bookbindery_N = mkN "bookbindery" "bookbinderies" ;
+lin bookbinding_N = mkN "bookbinding" "bookbindings" ;
+lin bookcase_N = mkN "bookcase" "bookcases" ;
+lin bookclub_N = mkN "bookclub" "bookclubs" ;
+lin bookdealer_N = mkN "bookdealer" "bookdealers" ;
+lin bookend_N = mkN "bookend" "bookends" ;
+lin booker_N = mkN "booker" "bookers" ;
+lin bookie_N = mkN "bookie" "bookies" ;
+lin booking_N = mkN "booking" "bookings" ;
+lin bookish_A = mkAMost "bookish" "bookishly" ;
+lin bookishness_N = mkN "bookishness" "bookishnesses" ;
+lin bookkeeper_N = mkN "bookkeeper" "bookkeepers" ;
+lin bookkeeping_N = mkN "bookkeeping" "bookkeepings" ;
+lin booklet_N = mkN "booklet" "booklets" ;
+lin booklouse_N = mkN "booklouse" "booklouses" ;
+lin bookmaker_N = mkN "bookmaker" "bookmakers" ;
+lin bookmark_N = mkN "bookmark" "bookmarks" ;
+lin bookmarker_N = mkN "bookmarker" "bookmarkers" ;
+lin bookmobile_N = mkN "bookmobile" "bookmobiles" ;
+lin bookplate_N = mkN "bookplate" "bookplates" ;
+lin bookseller_N = mkN "bookseller" "booksellers" ;
+lin bookshelf_N = mkN "bookshelf" "bookshelfs" ;
+lin bookshop_N = mkN "bookshop" "bookshops" ;
+lin bookstall_N = mkN "bookstall" "bookstalls" ;
+lin bookworm_N = mkN "bookworm" "bookworms" ;
+lin boom_N = mkN "boom" "booms" ;
+lin boom_V = mkV "boom" "boomed" "boomed" ;
+lin boomerang_N = mkN "boomerang" "boomerangs" ;
+lin boon_A = mkAMost "boon" "boonly" ;
+lin boon_N = mkN "boon" "boons" ;
+lin boondoggle_N = mkN "boondoggle" "boondoggles" ;
+lin boor_N = mkN "boor" "boors" ;
+lin boorish_A = mkAMost "boorish" "boorishly" ;
+lin boorishness_N = mkN "boorishness" "boorishnesses" ;
+lin boost_N = mkN "boost" "boosts" ;
+lin boost_V = mkV "boost" "boosted" "boosted" ;
+lin booster_N = mkN "booster" "boosters" ;
+lin boot_N = mkN "boot" "boots" ;
+lin boot_V = mkV "boot" "booted" "booted" ;
+lin bootblack_N = mkN "bootblack" "bootblacks" ;
+lin bootee_N = mkN "bootee" "bootees" ;
+lin booth_N = mkN "booth" "booths" ;
+lin boothose_N = mkN "boothose" "boothoses" ;
+lin bootjack_N = mkN "bootjack" "bootjacks" ;
+lin bootlace_N = mkN "bootlace" "bootlaces" ;
+lin bootleg_A = mkAMost "bootleg" "bootlegly" ;
+lin bootleg_N = mkN "bootleg" "bootlegs" ;
+lin bootleg_V = mkV "bootleg" "bootlegged" "bootlegged" ;
+lin bootlegger_N = mkN "bootlegger" "bootleggers" ;
+lin bootlegging_N = mkN "bootlegging" "bootleggings" ;
+lin bootless_A = mkAMost "bootless" "bootlessly" ;
+lin bootlicking_A = mkAMost "bootlicking" "bootlickingly" ;
+lin bootmaker_N = mkN "bootmaker" "bootmakers" ;
+lin bootstrap_N = mkN "bootstrap" "bootstraps" ;
+lin booty_N = mkN "booty" "booties" ;
+lin booze_N = mkN "booze" "boozes" ;
+lin booze_V = mkV "booze" "boozed" "boozed" ;
+lin booze_up_N = mkN "booze-up" "booze-ups" ;
+lin boozer_N = mkN "boozer" "boozers" ;
+lin boozy_A = mkA "boozy" "boozier" "booziest" "boozily" ;
+lin bop_N = mkN "bop" "bops" ;
+lin bopeep_N = mkN "bopeep" "bopeeps" ;
+lin boracic_A = mkAMost "boracic" "boracicly" ;
+lin borage_N = mkN "borage" "borages" ;
+lin borate_N = mkN "borate" "borates" ;
+lin borated_A = mkAMost "borated" "boratedly" ;
+lin borax_N = mkN "borax" "boraxes" ;
+lin bordeaux_N = mkN "bordeaux" "bordeauxes" ;
+lin bordelaise_N = mkN "bordelaise" "bordelaises" ;
+lin border_N = mkN "border" "borders" ;
+lin border_V = mkV "border" "bordered" "bordered" ;
+lin borderer_N = mkN "borderer" "borderers" ;
+lin borderland_N = mkN "borderland" "borderlands" ;
+lin borderline_A = mkAMost "borderline" "borderlinely" ;
+lin borderline_N = mkN "borderline" "borderlines" ;
+lin bore_N = mkN "bore" "bores" ;
+lin bore_V = mkV "bore" "bored" "bored" ;
+lin bore_hole_N = mkN "bore-hole" "bore-holes" ;
+lin boreal_A = mkAMost "boreal" "boreally" ;
+lin boredom_N = mkN "boredom" "boredoms" ;
+lin borer_N = mkN "borer" "borers" ;
+lin boric_A = mkAMost "boric" "boricly" ;
+lin boring_A = mkAMost "boring" "boringly" ;
+lin boring_N = mkN "boring" "borings" ;
+lin boringness_N = mkN "boringness" "boringnesses" ;
+lin bornite_N = mkN "bornite" "bornites" ;
+lin boron_N = mkN "boron" "borons" ;
+lin boronic_A = mkAMost "boronic" "boronicly" ;
+lin borosilicate_N = mkN "borosilicate" "borosilicates" ;
+lin borough_N = mkN "borough" "boroughs" ;
+lin borrelia_N = mkN "borrelia" "borrelias" ;
+lin borrow_V = mkV "borrow" "borrowed" "borrowed" ;
+lin borrower_N = mkN "borrower" "borrowers" ;
+lin borrowing_N = mkN "borrowing" "borrowings" ;
+lin borsch_N = mkN "borsch" "borsches" ;
+lin borstal_N = mkN "borstal" "borstals" ;
+lin bortsch_N = mkN "bortsch" "bortsches" ;
+lin borzoi_N = mkN "borzoi" "borzois" ;
+lin bosa_N = mkN "bosa" "bosas" ;
+lin bosc_N = mkN "bosc" "boscs" ;
+lin bosh_N = mkN "bosh" "boshes" ;
+lin bosk_N = mkN "bosk" "bosks" ;
+lin boskopoid_A = mkAMost "boskopoid" "boskopoidly" ;
+lin bosky_A = mkAMost "bosky" "boskily" ;
+lin bosom_N = mkN "bosom" "bosoms" ;
+lin bosomed_A = mkAMost "bosomed" "bosomedly" ;
+lin bosomy_A = mkAMost "bosomy" "bosomily" ;
+lin boson_N = mkN "boson" "bosons" ;
+lin boss_A = mkA "boss" "bosser" "bossest" "bossly" ;
+lin boss_N = mkN "boss" "bosses" ;
+lin boss_V = mkV "boss" "bossed" "bossed" ;
+lin boss_eyed_A = mkAMost "boss-eyed" "boss-eyedly" ;
+lin bossism_N = mkN "bossism" "bossisms" ;
+lin bossy_A = mkA "bossy" "bossier" "bossiest" "bossily" ;
+lin bot_N = mkN "bot" "bots" ;
+lin bota_N = mkN "bota" "botas" ;
+lin botanic_A = mkAMost "botanic" "botanicly" ;
+lin botanical_A = mkAMost "botanical" "botanically" ;
+lin botanical_N = mkN "botanical" "botanicals" ;
+lin botanist_N = mkN "botanist" "botanists" ;
+lin botanize_V = mkV "botanize" "botanized" "botanized" ;
+lin botany_N = mkN "botany" "botanies" ;
+lin botch_N = mkN "botch" "botches" ;
+lin botch_V = mkV "botch" "botched" "botched" ;
+lin botcher_N = mkN "botcher" "botchers" ;
+lin botchy_A = mkA "botchy" "botchier" "botchiest" "botchily" ;
+lin botfly_N = mkN "botfly" "botflies" ;
+lin both_Adv = mkAdv "both" ;
+lin bother_N = mkN "bother" "bothers" ;
+lin bother_V = mkV "bother" "bothered" "bothered" ;
+lin bothersome_A = mkAMost "bothersome" "bothersomely" ;
+lin botonee_A = mkAMost "botonee" "botoneely" ;
+lin botryoid_A = mkAMost "botryoid" "botryoidly" ;
+lin bottle_N = mkN "bottle" "bottles" ;
+lin bottle_V = mkV "bottle" "bottled" "bottled" ;
+lin bottle_fed_A = mkAMost "bottle-fed" "bottle-fedly" ;
+lin bottle_green_A = mkAMost "bottle-green" "bottle-greenly" ;
+lin bottlebrush_N = mkN "bottlebrush" "bottlebrushes" ;
+lin bottlecap_N = mkN "bottlecap" "bottlecaps" ;
+lin bottleneck_N = mkN "bottleneck" "bottlenecks" ;
+lin bottler_N = mkN "bottler" "bottlers" ;
+lin bottom_A = mkAMost "bottom" "bottomly" ;
+lin bottom_N = mkN "bottom" "bottoms" ;
+lin bottom_bottomed_V = mkV "bottom" "bottomed" "bottomed" ;
+lin bottom_bottommed_V = mkV "bottom" "bottommed" "bottommed" ;
+lin bottomed_A = mkAMost "bottomed" "bottomedly" ;
+lin bottomland_N = mkN "bottomland" "bottomlands" ;
+lin bottomless_A = mkAMost "bottomless" "bottomlessly" ;
+lin bottomlessness_N = mkN "bottomlessness" "bottomlessnesses" ;
+lin bottommost_A = mkAMost "bottommost" "bottommostly" ;
+lin botuliform_A = mkAMost "botuliform" "botuliformly" ;
+lin botulin_N = mkN "botulin" "botulins" ;
+lin botulinal_A = mkAMost "botulinal" "botulinally" ;
+lin botulinus_N = mkN "botulinus" "botulinuses" ;
+lin botulism_N = mkN "botulism" "botulisms" ;
+lin boucle_N = mkN "boucle" "boucles" ;
+lin boudoir_N = mkN "boudoir" "boudoirs" ;
+lin bouffant_A = mkAMost "bouffant" "bouffantly" ;
+lin bouffant_N = mkN "bouffant" "bouffants" ;
+lin bougainvillea_N = mkN "bougainvillea" "bougainvilleas" ;
+lin bough_N = mkN "bough" "boughs" ;
+lin boughed_A = mkAMost "boughed" "boughedly" ;
+lin boughless_A = mkAMost "boughless" "boughlessly" ;
+lin boughten_A = mkAMost "boughten" "boughtenly" ;
+lin bouillabaisse_N = mkN "bouillabaisse" "bouillabaisses" ;
+lin bouillon_N = mkN "bouillon" "bouillons" ;
+lin boulder_N = mkN "boulder" "boulders" ;
+lin boulevard_N = mkN "boulevard" "boulevards" ;
+lin boulevardier_N = mkN "boulevardier" "boulevardiers" ;
+lin boulle_N = mkN "boulle" "boulles" ;
+lin bounce_N = mkN "bounce" "bounces" ;
+lin bounce_V = mkV "bounce" "bounced" "bounced" ;
+lin bouncer_N = mkN "bouncer" "bouncers" ;
+lin bouncy_A = mkA "bouncy" "bouncier" "bounciest" "bouncily" ;
+lin bound_N = mkN "bound" "bounds" ;
+lin bound_V = mkV "bound" "bounded" "bounded" ;
+lin boundary_N = mkN "boundary" "boundaries" ;
+lin bounden_A = mkAMost "bounden" "boundenly" ;
+lin bounder_N = mkN "bounder" "bounders" ;
+lin boundless_A = mkAMost "boundless" "boundlessly" ;
+lin bounteous_A = mkAMost "bounteous" "bounteously" ;
+lin bountied_A = mkAMost "bountied" "bountiedly" ;
+lin bountiful_A = mkAMost "bountiful" "bountifully" ;
+lin bounty_N = mkN "bounty" "bounties" ;
+lin bouquet_N = mkN "bouquet" "bouquets" ;
+lin bourbon_N = mkN "bourbon" "bourbons" ;
+lin bourgeois_A = mkAMost "bourgeois" "bourgeoisly" ;
+lin bourgeois_N = mkN "bourgeois" "bourgeois" ;
+lin bourgeoisie_N = mkN "bourgeoisie" "bourgeoisies" ;
+lin bourguignon_N = mkN "bourguignon" "bourguignons" ;
+lin bourn_N = mkN "bourn" "bourns" ;
+lin bourne_N = mkN "bourne" "bournes" ;
+lin bourse_N = mkN "bourse" "bourses" ;
+lin bourtree_N = mkN "bourtree" "bourtrees" ;
+lin boustrophedon_N = mkN "boustrophedon" "boustrophedons" ;
+lin boustrophedonic_A = mkAMost "boustrophedonic" "boustrophedonicly" ;
+lin bout_N = mkN "bout" "bouts" ;
+lin boutique_N = mkN "boutique" "boutiques" ;
+lin boutonniere_N = mkN "boutonniere" "boutonnieres" ;
+lin bovid_N = mkN "bovid" "bovids" ;
+lin bovine_A = mkAMost "bovine" "bovinely" ;
+lin bovine_N = mkN "bovine" "bovines" ;
+lin bovril_N = mkN "bovril" "bovrils" ;
+lin bow_N = mkN "bow" "bows" ;
+lin bow_V = mkV "bow" "bowed" "bowed" ;
+lin bow_wow_N = mkN "bow-wow" "bow-wows" ;
+lin bowdlerization_N = mkN "bowdlerization" "bowdlerizations" ;
+lin bowdlerize_V = mkV "bowdlerize" "bowdlerized" "bowdlerized" ;
+lin bowel_N = mkN "bowel" "bowels" ;
+lin bowels_N = mkN "bowels" "bowelses" ;
+lin bower_N = mkN "bower" "bowers" ;
+lin bowerbird_N = mkN "bowerbird" "bowerbirds" ;
+lin bowery_A = mkAMost "bowery" "bowerily" ;
+lin bowfin_N = mkN "bowfin" "bowfins" ;
+lin bowfront_A = mkAMost "bowfront" "bowfrontly" ;
+lin bowhead_N = mkN "bowhead" "bowheads" ;
+lin bowie_knife_N = mkN "bowie knife" "bowie knives" ;
+lin bowing_N = mkN "bowing" "bowings" ;
+lin bowl_N = mkN "bowl" "bowls" ;
+lin bowl_V = mkV "bowl" "bowled" "bowled" ;
+lin bowleg_N = mkN "bowleg" "bowlegs" ;
+lin bowler_N = mkN "bowler" "bowlers" ;
+lin bowline_N = mkN "bowline" "bowlines" ;
+lin bowling_N = mkN "bowling" "bowlings" ;
+lin bowling_green_N = mkN "bowling-green" "bowling-greens" ;
+lin bowls_N = mkN "bowls" "bowls" ;
+lin bowman_N = mkN "bowman" "bowmen" ;
+lin bowsprit_N = mkN "bowsprit" "bowsprits" ;
+lin bowstring_N = mkN "bowstring" "bowstrings" ;
+lin box_N = mkN "box" "boxes" ;
+lin box_V = mkV "box" "boxed" "boxed" ;
+lin box_kite_N = mkN "box-kite" "box-kites" ;
+lin box_number_N = mkN "box-number" "box-numbers" ;
+lin box_office_N = mkN "box-office" "box-offices" ;
+lin boxcar_N = mkN "boxcar" "boxcars" ;
+lin boxcars_N = mkN "boxcars" "boxcarses" ;
+lin boxer_N = mkN "boxer" "boxers" ;
+lin boxfish_N = mkN "boxfish" "boxfishes" ;
+lin boxful_N = mkN "boxful" "boxfuls" ;
+lin boxing_N = mkN "boxing" "boxings" ;
+lin boxing_day_N = mkN "boxing day" "boxing days" ;
+lin boxing_glove_N = mkN "boxing-glove" "boxing-gloves" ;
+lin boxing_match_N = mkN "boxing-match" "boxing-matches" ;
+lin boxlike_A = mkAMost "boxlike" "boxlikely" ;
+lin boxwood_N = mkN "boxwood" "boxwoods" ;
+lin boy_N = mkN "boy" "boys" ;
+lin boycott_N = mkN "boycott" "boycotts" ;
+lin boycott_V = mkV "boycott" "boycotted" "boycotted" ;
+lin boyfriend_N = mkN "boyfriend" "boyfriends" ;
+lin boyhood_N = mkN "boyhood" "boyhoods" ;
+lin boyish_A = mkAMost "boyish" "boyishly" ;
+lin boyishness_N = mkN "boyishness" "boyishnesses" ;
+lin boysenberry_N = mkN "boysenberry" "boysenberries" ;
+lin boza_N = mkN "boza" "bozas" ;
+lin bra_N = mkN "bra" "bras" ;
+lin brace_N = mkN "brace" "brace" ;
+lin brace_V = mkV "brace" "braced" "braced" ;
+lin bracelet_N = mkN "bracelet" "bracelets" ;
+lin bracer_N = mkN "bracer" "bracers" ;
+lin bracero_N = mkN "bracero" "braceroes" ;
+lin brachial_A = mkAMost "brachial" "brachially" ;
+lin brachiate_A = mkAMost "brachiate" "brachiately" ;
+lin brachiation_N = mkN "brachiation" "brachiations" ;
+lin brachiopod_A = mkAMost "brachiopod" "brachiopodly" ;
+lin brachiopod_N = mkN "brachiopod" "brachiopods" ;
+lin brachium_N = mkN "brachium" "brachiums" ;
+lin brachycephalic_A = mkAMost "brachycephalic" "brachycephalicly" ;
+lin brachycephalic_N = mkN "brachycephalic" "brachycephalics" ;
+lin brachycephaly_N = mkN "brachycephaly" "brachycephalies" ;
+lin brachydactylic_A = mkAMost "brachydactylic" "brachydactylicly" ;
+lin brachydactyly_N = mkN "brachydactyly" "brachydactylies" ;
+lin brachypterous_A = mkAMost "brachypterous" "brachypterously" ;
+lin brachyuran_N = mkN "brachyuran" "brachyurans" ;
+lin brachyurous_A = mkAMost "brachyurous" "brachyurously" ;
+lin bracken_N = mkN "bracken" "brackens" ;
+lin bracket_N = mkN "bracket" "brackets" ;
+lin bracket_V = mkV "bracket" "bracketed" "bracketed" ;
+lin brackish_A = mkAMost "brackish" "brackishly" ;
+lin brackishness_N = mkN "brackishness" "brackishnesses" ;
+lin bract_N = mkN "bract" "bracts" ;
+lin bracteal_A = mkAMost "bracteal" "bracteally" ;
+lin bracteate_A = mkAMost "bracteate" "bracteately" ;
+lin bracteolate_A = mkAMost "bracteolate" "bracteolately" ;
+lin bracteole_N = mkN "bracteole" "bracteoles" ;
+lin brad_N = mkN "brad" "brads" ;
+lin bradawl_N = mkN "bradawl" "bradawls" ;
+lin bradycardia_N = mkN "bradycardia" "bradycardias" ;
+lin brae_N = mkN "brae" "braes" ;
+lin brag_N = mkN "brag" "brags" ;
+lin brag_V = mkV "brag" "bragged" "bragged" ;
+lin braggadocio_N = mkN "braggadocio" "braggadocios" ;
+lin braggart_N = mkN "braggart" "braggarts" ;
+lin bragger_N = mkN "bragger" "braggers" ;
+lin bragging_N = mkN "bragging" "braggings" ;
+lin brahman_N = mkN "brahman" "brahmans" ;
+lin brahmin_N = mkN "brahmin" "brahmins" ;
+lin brahminic_A = mkAMost "brahminic" "brahminicly" ;
+lin braid_N = mkN "braid" "braids" ;
+lin braid_V = mkV "braid" "braided" "braided" ;
+lin brail_N = mkN "brail" "brails" ;
+lin braille_N = mkN "braille" "brailles" ;
+lin brain_N = mkN "brain" "brains" ;
+lin brain_V = mkV "brain" "brained" "brained" ;
+lin brain_fag_N = mkN "brain-fag" "brain-fags" ;
+lin brain_teaser_N = mkN "brain-teaser" "brain-teasers" ;
+lin brainchild_N = mkN "brainchild" "brainchildren" ;
+lin brainless_A = mkAMost "brainless" "brainlessly" ;
+lin brainsick_A = mkAMost "brainsick" "brainsickly" ;
+lin brainstem_N = mkN "brainstem" "brainstems" ;
+lin brainstorm_N = mkN "brainstorm" "brainstorms" ;
+lin brainstorming_N = mkN "brainstorming" "brainstormings" ;
+lin brainwash_V = mkV "brainwash" "brainwashed" "brainwashed" ;
+lin brainwashing_N = mkN "brainwashing" "brainwashings" ;
+lin brainwave_N = mkN "brainwave" "brainwaves" ;
+lin brainworker_N = mkN "brainworker" "brainworkers" ;
+lin brainy_A = mkA "brainy" "brainier" "brainiest" "brainily" ;
+lin braise_V = mkV "braise" "braised" "braised" ;
+lin braising_N = mkN "braising" "braisings" ;
+lin brake_N = mkN "brake" "brakes" ;
+lin brake_V = mkV "brake" "braked" "braked" ;
+lin brakeman_N = mkN "brakeman" "brakemen" ;
+lin braky_A = mkA "braky" "brakier" "brakiest" "brakily" ;
+lin bramble_N = mkN "bramble" "brambles" ;
+lin brambling_N = mkN "brambling" "bramblings" ;
+lin bran_N = mkN "bran" "brans" ;
+lin bran_new_A = mkAMost "bran-new" "bran-newly" ;
+lin branch_N = mkN "branch" "branches" ;
+lin branch_V = mkV "branch" "branched" "branched" ;
+lin branched_A = mkAMost "branched" "branchedly" ;
+lin branchial_A = mkAMost "branchial" "branchially" ;
+lin branchiate_A = mkAMost "branchiate" "branchiately" ;
+lin branching_N = mkN "branching" "branchings" ;
+lin branchiopod_A = mkAMost "branchiopod" "branchiopodly" ;
+lin branchless_A = mkAMost "branchless" "branchlessly" ;
+lin branchlet_N = mkN "branchlet" "branchlets" ;
+lin branchy_A = mkA "branchy" "branchier" "branchiest" "branchily" ;
+lin brand_N = mkN "brand" "brands" ;
+lin brand_V = mkV "brand" "branded" "branded" ;
+lin brand_new_A = mkAMost "brand-new" "brand-newly" ;
+lin branding_iron_N = mkN "branding-iron" "branding-irons" ;
+lin brandish_V = mkV "brandish" "brandished" "brandished" ;
+lin brandy_N = mkN "brandy" "brandies" ;
+lin brandy_ball_N = mkN "brandy-ball" "brandy-balls" ;
+lin brandy_snap_N = mkN "brandy-snap" "brandy-snaps" ;
+lin brandyball_N = mkN "brandyball" "brandyballs" ;
+lin brandysnap_N = mkN "brandysnap" "brandysnaps" ;
+lin brant_N = mkN "brant" "brants" ;
+lin brash_A = mkA "brash" "brasher" "brashest" "brashly" ;
+lin brashness_N = mkN "brashness" "brashnesses" ;
+lin brass_N = mkN "brass" "brasses" ;
+lin brassard_N = mkN "brassard" "brassards" ;
+lin brassavola_N = mkN "brassavola" "brassavolas" ;
+lin brassbound_A = mkAMost "brassbound" "brassboundly" ;
+lin brasserie_N = mkN "brasserie" "brasseries" ;
+lin brassie_N = mkN "brassie" "brassies" ;
+lin brassiere_N = mkN "brassiere" "brassieres" ;
+lin brassière_N = mkN "brassière" "brassières" ;
+lin brassy_A = mkA "brassy" "brassier" "brassiest" "brassily" ;
+lin brat_N = mkN "brat" "brats" ;
+lin brattice_N = mkN "brattice" "brattices" ;
+lin bratty_A = mkA "bratty" "brattier" "brattiest" "brattily" ;
+lin bratwurst_N = mkN "bratwurst" "bratwursts" ;
+lin bravado_N = mkN "bravado" "bravados" ;
+lin brave_A = mkA "brave" "braver" "bravest" "bravely" ;
+lin brave_N = mkN "brave" "braves" ;
+lin brave_V = mkV "brave" "braved" "braved" ;
+lin bravery_N = mkN "bravery" "braveries" ;
+lin bravo_N = mkN "bravo" "bravos" ;
+lin bravura_N = mkN "bravura" "bravuras" ;
+lin brawl_N = mkN "brawl" "brawls" ;
+lin brawl_V = mkV "brawl" "brawled" "brawled" ;
+lin brawler_N = mkN "brawler" "brawlers" ;
+lin brawn_N = mkN "brawn" "brawns" ;
+lin brawny_A = mkA "brawny" "brawnier" "brawniest" "brawnily" ;
+lin bray_N = mkN "bray" "brays" ;
+lin bray_V = mkV "bray" "brayed" "brayed" ;
+lin braze_V = mkV "braze" "brazed" "brazed" ;
+lin brazen_A = mkAMost "brazen" "brazenly" ;
+lin brazen_V = mkV "brazen" "brazened" "brazened" ;
+lin brazen_faced_A = mkAMost "brazen-faced" "brazen-facedly" ;
+lin brazier_N = mkN "brazier" "braziers" ;
+lin brazilwood_N = mkN "brazilwood" "brazilwoods" ;
+lin breach_N = mkN "breach" "breaches" ;
+lin breach_V = mkV "breach" "breached" "breached" ;
+lin bread_N = mkN "bread" "breads" ;
+lin breadbasket_N = mkN "breadbasket" "breadbaskets" ;
+lin breadboard_N = mkN "breadboard" "breadboards" ;
+lin breadcrumb_N = mkN "breadcrumb" "breadcrumbs" ;
+lin breadfruit_N = mkN "breadfruit" "breadfruit" ;
+lin breadline_N = mkN "breadline" "breadlines" ;
+lin breadroot_N = mkN "breadroot" "breadroots" ;
+lin breadstick_N = mkN "breadstick" "breadsticks" ;
+lin breadstuff_N = mkN "breadstuff" "breadstuffs" ;
+lin breadth_N = mkN "breadth" "breadths" ;
+lin breadthways_Adv = mkAdv "breadthways" ;
+lin breadthwise_Adv = mkAdv "breadthwise" ;
+lin breadwinner_N = mkN "breadwinner" "breadwinners" ;
+lin break_N = mkN "break" "breaks" ;
+lin break_breaked_V = mkV "break" "breaked" "breaked" ;
+lin break_broke_V = mkV "break" "broke" "broken" ;
+lin break_in_N = mkN "break-in" "break-ins" ;
+lin break_up_N = mkN "break-up" "break-ups" ;
+lin breakable_A = mkAMost "breakable" "breakably" ;
+lin breakable_N = mkN "breakable" "breakables" ;
+lin breakableness_N = mkN "breakableness" "breakablenesses" ;
+lin breakage_N = mkN "breakage" "breakages" ;
+lin breakaway_A = mkAMost "breakaway" "breakawaily" ;
+lin breakaway_N = mkN "breakaway" "breakaways" ;
+lin breakaways_N = mkN "breakaways" "breakawayss" ;
+lin breakax_N = mkN "breakax" "breakaxes" ;
+lin breakdown_N = mkN "breakdown" "breakdowns" ;
+lin breaker_N = mkN "breaker" "breakers" ;
+lin breakfast_N = mkN "breakfast" "breakfasts" ;
+lin breakfast_V = mkV "breakfast" "breakfasted" "breakfasted" ;
+lin breakneck_A = mkAMost "breakneck" "breakneckly" ;
+lin breakthrough_N = mkN "breakthrough" "breakthroughs" ;
+lin breakwater_N = mkN "breakwater" "breakwaters" ;
+lin bream_N = mkN "bream" "bream" ;
+lin breast_N = mkN "breast" "breasts" ;
+lin breast_V = mkV "breast" "breasted" "breasted" ;
+lin breast_deep_Adv = mkAdv "breast-deep" ;
+lin breast_fed_A = mkAMost "breast-fed" "breast-fedly" ;
+lin breast_high_Adv = mkAdv "breast-high" ;
+lin breast_plate_N = mkN "breast-plate" "breast-plates" ;
+lin breastfeed_V = mkV "breastfeed" "breastfed" "breastfed" ;
+lin breastless_A = mkAMost "breastless" "breastlessly" ;
+lin breastplate_N = mkN "breastplate" "breastplates" ;
+lin breaststroke_N = mkN "breaststroke" "breaststrokes" ;
+lin breaststroker_N = mkN "breaststroker" "breaststrokers" ;
+lin breastwork_N = mkN "breastwork" "breastworks" ;
+lin breath_N = mkN "breath" "breaths" ;
+lin breathalyser_N = mkN "breathalyser" "breathalysers" ;
+lin breathalyzer_N = mkN "breathalyzer" "breathalyzers" ;
+lin breathe_V = mkV "breathe" "breathed" "breathed" ;
+lin breather_N = mkN "breather" "breathers" ;
+lin breathing_N = mkN "breathing" "breathings" ;
+lin breathing_space_N = mkN "breathing-space" "breathing-spaces" ;
+lin breathless_A = mkAMost "breathless" "breathlessly" ;
+lin breathtaking_A = mkAMost "breathtaking" "breathtakingly" ;
+lin breccia_N = mkN "breccia" "breccias" ;
+lin breech_N = mkN "breech" "breeches" ;
+lin breech_block_N = mkN "breech-block" "breech-blocks" ;
+lin breechblock_N = mkN "breechblock" "breechblocks" ;
+lin breechcloth_N = mkN "breechcloth" "breechcloths" ;
+lin breeched_A = mkAMost "breeched" "breechedly" ;
+lin breeches_N = mkN "breeches" "breecheses" ;
+lin breeches_buoy_N = mkN "breeches-buoy" "breeches-buoys" ;
+lin breechloader_N = mkN "breechloader" "breechloaders" ;
+lin breed_N = mkN "breed" "breeds" ;
+lin breed_V = mkV "breed" "bred" "bred" ;
+lin breeder_N = mkN "breeder" "breeders" ;
+lin breeding_N = mkN "breeding" "breedings" ;
+lin breeze_N = mkN "breeze" "breezes" ;
+lin breeze_V = mkV "breeze" "breezed" "breezed" ;
+lin breeziness_N = mkN "breeziness" "breezinesses" ;
+lin breezy_A = mkA "breezy" "breezier" "breeziest" "breezily" ;
+lin bregma_N = mkN "bregma" "bregmas" ;
+lin bregmatic_A = mkAMost "bregmatic" "bregmaticly" ;
+lin bren_N = mkN "bren" "brens" ;
+lin bren_gun_N = mkN "bren-gun" "bren-guns" ;
+lin brethren_N = mkN "brethren" "brethrens" ;
+lin breve_N = mkN "breve" "breves" ;
+lin brevet_N = mkN "brevet" "brevets" ;
+lin breviary_N = mkN "breviary" "breviaries" ;
+lin brevity_N = mkN "brevity" "brevities" ;
+lin brew_N = mkN "brew" "brews" ;
+lin brew_V = mkV "brew" "brewed" "brewed" ;
+lin brewer_N = mkN "brewer" "brewers" ;
+lin brewery_N = mkN "brewery" "breweries" ;
+lin brewing_N = mkN "brewing" "brewings" ;
+lin brewpub_N = mkN "brewpub" "brewpubs" ;
+lin briar_N = mkN "briar" "briars" ;
+lin briard_N = mkN "briard" "briards" ;
+lin briarroot_N = mkN "briarroot" "briarroots" ;
+lin briarwood_N = mkN "briarwood" "briarwoods" ;
+lin bribable_A = mkAMost "bribable" "bribably" ;
+lin bribe_N = mkN "bribe" "bribes" ;
+lin bribe_V = mkV "bribe" "bribed" "bribed" ;
+lin briber_N = mkN "briber" "bribers" ;
+lin bribery_N = mkN "bribery" "briberies" ;
+lin bric_a_brac_N = mkN "bric-a-brac" "bric-a-bracs" ;
+lin brick_N = mkN "brick" "bricks" ;
+lin brick_V = mkV "brick" "bricked" "bricked" ;
+lin brick_field_N = mkN "brick-field" "brick-fields" ;
+lin brickbat_N = mkN "brickbat" "brickbats" ;
+lin brickkiln_N = mkN "brickkiln" "brickkilns" ;
+lin bricklayer_N = mkN "bricklayer" "bricklayers" ;
+lin bricklaying_N = mkN "bricklaying" "bricklayings" ;
+lin brickwork_N = mkN "brickwork" "brickworks" ;
+lin brickyard_N = mkN "brickyard" "brickyards" ;
+lin bridal_A = mkAMost "bridal" "bridally" ;
+lin bridal_N = mkN "bridal" "bridals" ;
+lin bride_N = mkN "bride" "brides" ;
+lin bridecake_N = mkN "bridecake" "bridecakes" ;
+lin bridegroom_N = mkN "bridegroom" "bridegrooms" ;
+lin bridesmaid_N = mkN "bridesmaid" "bridesmaids" ;
+lin bridge_N = mkN "bridge" "bridges" ;
+lin bridge_V = mkV "bridge" "bridged" "bridged" ;
+lin bridgeable_A = mkAMost "bridgeable" "bridgeably" ;
+lin bridgehead_N = mkN "bridgehead" "bridgeheads" ;
+lin bridle_N = mkN "bridle" "bridles" ;
+lin bridle_V = mkV "bridle" "bridled" "bridled" ;
+lin bridle_path_N = mkN "bridle-path" "bridle-paths" ;
+lin bridle_road_N = mkN "bridle-road" "bridle-roads" ;
+lin bridoon_N = mkN "bridoon" "bridoons" ;
+lin brief_A = mkA "brief" "briefer" "briefest" "briefly" ;
+lin brief_N = mkN "brief" "briefs" ;
+lin brief_V = mkV "brief" "briefed" "briefed" ;
+lin briefcase_N = mkN "briefcase" "briefcases" ;
+lin briefing_N = mkN "briefing" "briefings" ;
+lin briefless_A = mkAMost "briefless" "brieflessly" ;
+lin briefness_N = mkN "briefness" "briefnesses" ;
+lin brier_N = mkN "brier" "briers" ;
+lin brig_N = mkN "brig" "brigs" ;
+lin brigade_N = mkN "brigade" "brigades" ;
+lin brigadier_N = mkN "brigadier" "brigadiers" ;
+lin brigand_N = mkN "brigand" "brigands" ;
+lin brigandine_N = mkN "brigandine" "brigandines" ;
+lin brigantine_N = mkN "brigantine" "brigantines" ;
+lin bright_A = mkA "bright" "brighter" "brightest" "brightly" ;
+lin bright_Adv = mkAdv "bright" ;
+lin brighten_brightened_V = mkV "brighten" "brightened" "brightened" ;
+lin brighten_brightenned_V = mkV "brighten" "brightenned" "brightenned" ;
+lin brightness_N = mkN "brightness" "brightnesses" ;
+lin brill_N = mkN "brill" "brill" ;
+lin brilliance_N = mkN "brilliance" "brilliances" ;
+lin brilliancy_N = mkN "brilliancy" "brilliancies" ;
+lin brilliant_A = mkAMost "brilliant" "brilliantly" ;
+lin brilliantine_N = mkN "brilliantine" "brilliantines" ;
+lin brim_N = mkN "brim" "brims" ;
+lin brim_V = mkV "brim" "brimmed" "brimmed" ;
+lin brimful_A = mkAMost "brimful" "brimfully" ;
+lin brimfull_A = mkAMost "brimfull" "brimfully" ;
+lin brimless_A = mkAMost "brimless" "brimlessly" ;
+lin brimstone_N = mkN "brimstone" "brimstones" ;
+lin brindled_A = mkAMost "brindled" "brindledly" ;
+lin brine_N = mkN "brine" "brines" ;
+lin bring_V = mkV "bring" "brought" "brought" ;
+lin brininess_N = mkN "brininess" "brininesses" ;
+lin brink_N = mkN "brink" "brinks" ;
+lin brinkmanship_N = mkN "brinkmanship" "brinkmanships" ;
+lin briny_A = mkA "briny" "brinier" "briniest" "brinily" ;
+lin brioche_N = mkN "brioche" "brioches" ;
+lin briquet_N = mkN "briquet" "briquets" ;
+lin briquette_N = mkN "briquette" "briquettes" ;
+lin brisance_N = mkN "brisance" "brisances" ;
+lin brisant_A = mkAMost "brisant" "brisantly" ;
+lin brisk_A = mkA "brisk" "brisker" "briskest" "briskly" ;
+lin brisket_N = mkN "brisket" "briskets" ;
+lin brisling_N = mkN "brisling" "brislings" ;
+lin bristle_N = mkN "bristle" "bristles" ;
+lin bristle_V = mkV "bristle" "bristled" "bristled" ;
+lin bristlegrass_N = mkN "bristlegrass" "bristlegrasses" ;
+lin bristlelike_A = mkAMost "bristlelike" "bristlelikely" ;
+lin bristletail_N = mkN "bristletail" "bristletails" ;
+lin bristly_A = mkA "bristly" "bristlier" "bristliest" "bristlily" ;
+lin brit_N = mkN "brit" "brits" ;
+lin britannic_A = mkAMost "britannic" "britannicly" ;
+lin britches_N = mkN "britches" "britcheses" ;
+lin briton_A = mkAMost "briton" "britonly" ;
+lin briton_N = mkN "briton" "britons" ;
+lin brittle_A = mkAMost "brittle" "brittlely" ;
+lin brittle_N = mkN "brittle" "brittles" ;
+lin brittlebush_N = mkN "brittlebush" "brittlebushes" ;
+lin brittleness_N = mkN "brittleness" "brittlenesses" ;
+lin broach_V = mkV "broach" "broached" "broached" ;
+lin broad_A = mkA "broad" "broader" "broadest" "broadly" ;
+lin broad_N = mkN "broad" "broads" ;
+lin broad_minded_A = mkAMost "broad-minded" "broad-mindedly" ;
+lin broad_mindedness_N = mkN "broad-mindedness" "broad-mindednesses" ;
+lin broadax_N = mkN "broadax" "broadaxes" ;
+lin broadband_A = mkAMost "broadband" "broadbandly" ;
+lin broadbill_N = mkN "broadbill" "broadbills" ;
+lin broadcast_Adv = mkAdv "broadcast" ;
+lin broadcast_N = mkN "broadcast" "broadcasts" ;
+lin broadcast_V = mkV "broadcast" "broadcasted" "broadcasted" ;
+lin broadcaster_N = mkN "broadcaster" "broadcasters" ;
+lin broadcasting_N = mkN "broadcasting" "broadcastings" ;
+lin broadcloth_N = mkN "broadcloth" "broadcloths" ;
+lin broaden_V = mkV "broaden" "broadened" "broadened" ;
+lin broadening_N = mkN "broadening" "broadenings" ;
+lin broadleaf_A = mkAMost "broadleaf" "broadleafly" ;
+lin broadloom_A = mkAMost "broadloom" "broadloomly" ;
+lin broadloom_N = mkN "broadloom" "broadlooms" ;
+lin broadness_N = mkN "broadness" "broadnesses" ;
+lin broadsheet_N = mkN "broadsheet" "broadsheets" ;
+lin broadside_A = mkAMost "broadside" "broadsidely" ;
+lin broadside_Adv = mkAdv "broadside" ;
+lin broadside_N = mkN "broadside" "broadsides" ;
+lin broadsword_N = mkN "broadsword" "broadswords" ;
+lin broadtail_N = mkN "broadtail" "broadtails" ;
+lin broadways_Adv = mkAdv "broadways" ;
+lin broadwise_Adv = mkAdv "broadwise" ;
+lin brocade_N = mkN "brocade" "brocades" ;
+lin brocade_V = mkV "brocade" "brocaded" "brocaded" ;
+lin broccoli_N = mkN "broccoli" "broccolis" ;
+lin brochette_N = mkN "brochette" "brochettes" ;
+lin brochure_N = mkN "brochure" "brochures" ;
+lin brocket_N = mkN "brocket" "brockets" ;
+lin brodiaea_N = mkN "brodiaea" "brodiaeas" ;
+lin brogan_N = mkN "brogan" "brogans" ;
+lin brogue_N = mkN "brogue" "brogues" ;
+lin broil_N = mkN "broil" "broils" ;
+lin broil_V = mkV "broil" "broiled" "broiled" ;
+lin broiler_N = mkN "broiler" "broilers" ;
+lin broke_A = mkAMost "broke" "brokely" ;
+lin broken_hearted_A = mkAMost "broken-hearted" "broken-heartedly" ;
+lin brokenhearted_A = mkAMost "brokenhearted" "brokenheartedly" ;
+lin broker_N = mkN "broker" "brokers" ;
+lin brokerage_N = mkN "brokerage" "brokerages" ;
+lin brolly_N = mkN "brolly" "brollies" ;
+lin brome_N = mkN "brome" "bromes" ;
+lin bromic_A = mkAMost "bromic" "bromicly" ;
+lin bromide_N = mkN "bromide" "bromides" ;
+lin bromidic_A = mkAMost "bromidic" "bromidicly" ;
+lin bromine_N = mkN "bromine" "bromines" ;
+lin bromoform_N = mkN "bromoform" "bromoforms" ;
+lin bronchial_A = mkAMost "bronchial" "bronchially" ;
+lin bronchiolar_A = mkAMost "bronchiolar" "bronchiolarly" ;
+lin bronchiole_N = mkN "bronchiole" "bronchioles" ;
+lin bronchiolitis_N = mkN "bronchiolitis" "bronchiolitises" ;
+lin bronchitic_A = mkAMost "bronchitic" "bronchiticly" ;
+lin bronchitis_N = mkN "bronchitis" "bronchitises" ;
+lin bronchodilator_N = mkN "bronchodilator" "bronchodilators" ;
+lin bronchopneumonia_N = mkN "bronchopneumonia" "bronchopneumonias" ;
+lin bronchoscope_N = mkN "bronchoscope" "bronchoscopes" ;
+lin bronchoscopic_A = mkAMost "bronchoscopic" "bronchoscopicly" ;
+lin bronchospasm_N = mkN "bronchospasm" "bronchospasms" ;
+lin bronchus_N = mkN "bronchus" "bronchi" ;
+lin bronco_N = mkN "bronco" "broncos" ;
+lin bronze_A = mkA "bronze" "bronzer" "bronzest" "bronzely" ;
+lin bronze_N = mkN "bronze" "bronzes" ;
+lin bronze_V = mkV "bronze" "bronzed" "bronzed" ;
+lin brooch_N = mkN "brooch" "brooches" ;
+lin brood_N = mkN "brood" "broods" ;
+lin brood_V = mkV "brood" "brooded" "brooded" ;
+lin brood_hen_N = mkN "brood-hen" "brood-hens" ;
+lin brood_mare_N = mkN "brood-mare" "brood-mares" ;
+lin brooding_N = mkN "brooding" "broodings" ;
+lin broodmare_N = mkN "broodmare" "broodmares" ;
+lin broody_A = mkA "broody" "broodier" "broodiest" "broodily" ;
+lin brook_N = mkN "brook" "brooks" ;
+lin brook_V = mkV "brook" "brooked" "brooked" ;
+lin brooklet_N = mkN "brooklet" "brooklets" ;
+lin brooklime_N = mkN "brooklime" "brooklimes" ;
+lin brookweed_N = mkN "brookweed" "brookweeds" ;
+lin broom_N = mkN "broom" "brooms" ;
+lin broomcorn_N = mkN "broomcorn" "broomcorns" ;
+lin broomstick_N = mkN "broomstick" "broomsticks" ;
+lin broomweed_N = mkN "broomweed" "broomweeds" ;
+lin broth_N = mkN "broth" "broths" ;
+lin brothel_N = mkN "brothel" "brothels" ;
+lin brother_N = mkN "brother" "brothers" ;
+lin brother_in_law_N = mkN "brother-in-law" "brothers-in-law" ;
+lin brotherhood_N = mkN "brotherhood" "brotherhoods" ;
+lin brotherly_A = mkAMost "brotherly" "brotherlily" ;
+lin brotherly_Adv = mkAdv "brotherly" ;
+lin brotula_N = mkN "brotula" "brotulas" ;
+lin brougham_N = mkN "brougham" "broughams" ;
+lin brought_V = mkV "brought" "broughted" "broughted" ;
+lin brouhaha_N = mkN "brouhaha" "brouhahas" ;
+lin brow_N = mkN "brow" "brows" ;
+lin browbeat_V = mkV "browbeat" "browbeat" "browbeaten" ;
+lin brown_A = mkA "brown" "browner" "brownest" "brownly" ;
+lin brown_N = mkN "brown" "browns" ;
+lin brown_V = mkV "brown" "browned" "browned" ;
+lin brownie_N = mkN "brownie" "brownies" ;
+lin brownish_A = mkAMost "brownish" "brownishly" ;
+lin brownstone_N = mkN "brownstone" "brownstones" ;
+lin browntail_N = mkN "browntail" "browntails" ;
+lin browse_N = mkN "browse" "browses" ;
+lin browse_V = mkV "browse" "browsed" "browsed" ;
+lin browser_N = mkN "browser" "browsers" ;
+lin brucellosis_N = mkN "brucellosis" "brucellosises" ;
+lin brucine_N = mkN "brucine" "brucines" ;
+lin bruin_N = mkN "bruin" "bruins" ;
+lin bruise_N = mkN "bruise" "bruises" ;
+lin bruise_V = mkV "bruise" "bruised" "bruised" ;
+lin bruiser_N = mkN "bruiser" "bruisers" ;
+lin bruit_V = mkV "bruit" "bruited" "bruited" ;
+lin brumal_A = mkAMost "brumal" "brumally" ;
+lin brumous_A = mkAMost "brumous" "brumously" ;
+lin brunch_N = mkN "brunch" "brunches" ;
+lin bruneian_A = mkAMost "bruneian" "bruneianly" ;
+lin bruneian_N = mkN "bruneian" "bruneians" ;
+lin brunet_A = mkAMost "brunet" "brunetly" ;
+lin brunet_N = mkN "brunet" "brunets" ;
+lin brunette_N = mkN "brunette" "brunettes" ;
+lin brunt_N = mkN "brunt" "brunts" ;
+lin brush_N = mkN "brush" "brushes" ;
+lin brush_V = mkV "brush" "brushed" "brushed" ;
+lin brush_off_N = mkN "brush-off" "brush-offs" ;
+lin brush_up_N = mkN "brush-up" "brush-ups" ;
+lin brushlike_A = mkAMost "brushlike" "brushlikely" ;
+lin brushwood_N = mkN "brushwood" "brushwoods" ;
+lin brushwork_N = mkN "brushwork" "brushworks" ;
+lin brusque_A = mkAMost "brusque" "brusquely" ;
+lin brusqueness_N = mkN "brusqueness" "brusquenesses" ;
+lin brut_A = mkA "brut" "brutter" "bruttest" "brutly" ;
+lin brutal_A = mkAMost "brutal" "brutally" ;
+lin brutality_N = mkN "brutality" "brutalities" ;
+lin brutalization_N = mkN "brutalization" "brutalizations" ;
+lin brutalize_V = mkV "brutalize" "brutalized" "brutalized" ;
+lin brute_N = mkN "brute" "brutes" ;
+lin brutish_A = mkAMost "brutish" "brutishly" ;
+lin bruxism_N = mkN "bruxism" "bruxisms" ;
+lin bryanthus_N = mkN "bryanthus" "bryanthuses" ;
+lin bryony_N = mkN "bryony" "bryonies" ;
+lin bryophyte_N = mkN "bryophyte" "bryophytes" ;
+lin bryophytic_A = mkAMost "bryophytic" "bryophyticly" ;
+lin bryozoan_N = mkN "bryozoan" "bryozoans" ;
+lin bsc_N = mkN "bsc" "bscs" ;
+lin bubaline_A = mkAMost "bubaline" "bubalinely" ;
+lin bubble_N = mkN "bubble" "bubbles" ;
+lin bubble_V = mkV "bubble" "bubbled" "bubbled" ;
+lin bubbler_N = mkN "bubbler" "bubblers" ;
+lin bubbliness_N = mkN "bubbliness" "bubblinesses" ;
+lin bubbly_A = mkA "bubbly" "bubblier" "bubbliest" "bubblily" ;
+lin bubbly_N = mkN "bubbly" "bubblies" ;
+lin bubo_N = mkN "bubo" "buboes" ;
+lin bubonic_A = mkAMost "bubonic" "bubonicly" ;
+lin buccal_A = mkAMost "buccal" "buccally" ;
+lin buccaneer_N = mkN "buccaneer" "buccaneers" ;
+lin buck_N = mkN "buck" "bucks" ;
+lin buck_V = mkV "buck" "bucked" "bucked" ;
+lin buckboard_N = mkN "buckboard" "buckboards" ;
+lin bucket_N = mkN "bucket" "buckets" ;
+lin bucket_bucketed_V = mkV "bucket" "bucketed" "bucketed" ;
+lin bucket_bucketted_V = mkV "bucket" "bucketted" "bucketted" ;
+lin bucketful_N = mkN "bucketful" "bucketfuls" ;
+lin buckeye_N = mkN "buckeye" "buckeyes" ;
+lin buckle_N = mkN "buckle" "buckles" ;
+lin buckle_V = mkV "buckle" "buckled" "buckled" ;
+lin buckler_N = mkN "buckler" "bucklers" ;
+lin buckleya_N = mkN "buckleya" "buckleyas" ;
+lin buckminsterfullerene_N = mkN "buckminsterfullerene" "buckminsterfullerenes" ;
+lin buckram_N = mkN "buckram" "buckrams" ;
+lin bucksaw_N = mkN "bucksaw" "bucksaws" ;
+lin buckshee_A = mkAMost "buckshee" "bucksheely" ;
+lin buckshot_N = mkN "buckshot" "buckshots" ;
+lin buckskin_N = mkN "buckskin" "buckskins" ;
+lin buckskins_N = mkN "buckskins" "buckskinses" ;
+lin buckthorn_N = mkN "buckthorn" "buckthorns" ;
+lin bucktooth_N = mkN "bucktooth" "buckteeth" ;
+lin buckwheat_N = mkN "buckwheat" "buckwheats" ;
+lin bucolic_A = mkAMost "bucolic" "bucolicly" ;
+lin bucolics_N = mkN "bucolics" "bucolics" ;
+lin bud_N = mkN "bud" "buds" ;
+lin bud_V = mkV "bud" "budded" "budded" ;
+lin buddhism_N = mkN "buddhism" "buddhisms" ;
+lin buddhist_N = mkN "buddhist" "buddhists" ;
+lin budding_N = mkN "budding" "buddings" ;
+lin buddy_N = mkN "buddy" "buddies" ;
+lin budge_V = mkV "budge" "budged" "budged" ;
+lin budgerigar_N = mkN "budgerigar" "budgerigars" ;
+lin budget_N = mkN "budget" "budgets" ;
+lin budget_V = mkV "budget" "budgeted" "budgeted" ;
+lin budgetary_A = mkAMost "budgetary" "budgetarily" ;
+lin budgie_N = mkN "budgie" "budgies" ;
+lin buff_A = mkA "buff" "buffer" "buffest" "buffly" ;
+lin buff_N = mkN "buff" "buffs" ;
+lin buff_V = mkV "buff" "buffed" "buffed" ;
+lin buffalo_N = mkN "buffalo" "buffalo" ;
+lin buffalofish_N = mkN "buffalofish" "buffalofishes" ;
+lin buffer_N = mkN "buffer" "buffers" ;
+lin buffer_V = mkV "buffer" "buffered" "buffered" ;
+lin buffet_N = mkN "buffet" "buffets" ;
+lin buffet_V = mkV "buffet" "buffeted" "buffeted" ;
+lin bufflehead_N = mkN "bufflehead" "buffleheads" ;
+lin buffoon_N = mkN "buffoon" "buffoons" ;
+lin buffoonery_N = mkN "buffoonery" "buffooneries" ;
+lin buffoonish_A = mkAMost "buffoonish" "buffoonishly" ;
+lin bufo_N = mkN "bufo" "bufoes" ;
+lin bug_N = mkN "bug" "bugs" ;
+lin bug_V = mkV "bug" "bugged" "bugged" ;
+lin bug_hunter_N = mkN "bug-hunter" "bug-hunters" ;
+lin bugaboo_N = mkN "bugaboo" "bugaboos" ;
+lin bugbane_N = mkN "bugbane" "bugbanes" ;
+lin bugbear_N = mkN "bugbear" "bugbears" ;
+lin bugger_N = mkN "bugger" "buggers" ;
+lin bugger_V = mkV "bugger" "buggered" "buggered" ;
+lin bugger_all_N = mkN "bugger-all" "bugger-alls" ;
+lin buggery_N = mkN "buggery" "buggeries" ;
+lin bugginess_N = mkN "bugginess" "bugginesses" ;
+lin buggy_A = mkA "buggy" "buggier" "buggiest" "buggily" ;
+lin buggy_N = mkN "buggy" "buggies" ;
+lin bugle_N = mkN "bugle" "bugles" ;
+lin bugler_N = mkN "bugler" "buglers" ;
+lin bugleweed_N = mkN "bugleweed" "bugleweeds" ;
+lin bugloss_N = mkN "bugloss" "buglosses" ;
+lin buhl_N = mkN "buhl" "buhls" ;
+lin build_N = mkN "build" "builds" ;
+lin build_V = mkV "build" "built" "built" ;
+lin build_up_N = mkN "build-up" "build-ups" ;
+lin builder_N = mkN "builder" "builders" ;
+lin building_N = mkN "building" "buildings" ;
+lin building_society_N = mkN "building-society" "building-societies" ;
+lin buildup_N = mkN "buildup" "buildups" ;
+lin built_in_A = mkAMost "built-in" "built-inly" ;
+lin built_up_A = mkAMost "built-up" "built-uply" ;
+lin bulb_N = mkN "bulb" "bulbs" ;
+lin bulbaceous_A = mkAMost "bulbaceous" "bulbaceously" ;
+lin bulbar_A = mkAMost "bulbar" "bulbarly" ;
+lin bulbed_A = mkAMost "bulbed" "bulbedly" ;
+lin bulbil_N = mkN "bulbil" "bulbils" ;
+lin bulblike_A = mkAMost "bulblike" "bulblikely" ;
+lin bulbous_A = mkAMost "bulbous" "bulbously" ;
+lin bulbul_N = mkN "bulbul" "bulbuls" ;
+lin bulge_N = mkN "bulge" "bulges" ;
+lin bulge_V = mkV "bulge" "bulged" "bulged" ;
+lin bulgur_N = mkN "bulgur" "bulgurs" ;
+lin bulimarexia_N = mkN "bulimarexia" "bulimarexias" ;
+lin bulimia_N = mkN "bulimia" "bulimias" ;
+lin bulimic_A = mkAMost "bulimic" "bulimicly" ;
+lin bulimic_N = mkN "bulimic" "bulimics" ;
+lin bulk_N = mkN "bulk" "bulks" ;
+lin bulk_V = mkV "bulk" "bulked" "bulked" ;
+lin bulkhead_N = mkN "bulkhead" "bulkheads" ;
+lin bulkiness_N = mkN "bulkiness" "bulkinesses" ;
+lin bulky_A = mkA "bulky" "bulkier" "bulkiest" "bulkily" ;
+lin bull's_eye_N = mkN "bull's-eye" "bull's-eyes" ;
+lin bull_N = mkN "bull" "bulls" ;
+lin bull_headed_A = mkAMost "bull-headed" "bull-headedly" ;
+lin bull_neck_N = mkN "bull-neck" "bull-necks" ;
+lin bull_terrier_N = mkN "bull-terrier" "bull-terriers" ;
+lin bulla_N = mkN "bulla" "bullas" ;
+lin bullace_N = mkN "bullace" "bullaces" ;
+lin bullate_A = mkAMost "bullate" "bullately" ;
+lin bullbrier_N = mkN "bullbrier" "bullbriers" ;
+lin bulldog_N = mkN "bulldog" "bulldogs" ;
+lin bulldoze_V = mkV "bulldoze" "bulldozed" "bulldozed" ;
+lin bulldozer_N = mkN "bulldozer" "bulldozers" ;
+lin bullet_N = mkN "bullet" "bullets" ;
+lin bullet_headed_A = mkAMost "bullet-headed" "bullet-headedly" ;
+lin bullethead_N = mkN "bullethead" "bulletheads" ;
+lin bulletin_N = mkN "bulletin" "bulletins" ;
+lin bulletproof_A = mkAMost "bulletproof" "bulletproofly" ;
+lin bullfight_N = mkN "bullfight" "bullfights" ;
+lin bullfighter_N = mkN "bullfighter" "bullfighters" ;
+lin bullfighting_N = mkN "bullfighting" "bullfightings" ;
+lin bullfinch_N = mkN "bullfinch" "bullfinches" ;
+lin bullfrog_N = mkN "bullfrog" "bullfrogs" ;
+lin bullhead_N = mkN "bullhead" "bullheads" ;
+lin bullheaded_A = mkAMost "bullheaded" "bullheadedly" ;
+lin bullhorn_N = mkN "bullhorn" "bullhorns" ;
+lin bullion_N = mkN "bullion" "bullions" ;
+lin bullish_A = mkAMost "bullish" "bullishly" ;
+lin bullnecked_A = mkAMost "bullnecked" "bullneckedly" ;
+lin bullnose_N = mkN "bullnose" "bullnoses" ;
+lin bullock_N = mkN "bullock" "bullocks" ;
+lin bullocky_A = mkAMost "bullocky" "bullockily" ;
+lin bullpen_N = mkN "bullpen" "bullpens" ;
+lin bullring_N = mkN "bullring" "bullrings" ;
+lin bullshit_N = mkN "bullshit" "bullshits" ;
+lin bullshit_V = mkV "bullshit" "bullshitted" "bullshitted" ;
+lin bullshot_N = mkN "bullshot" "bullshots" ;
+lin bullterrier_N = mkN "bullterrier" "bullterriers" ;
+lin bully_A = mkAMost "bully" "bullily" ;
+lin bully_N = mkN "bully" "bullies" ;
+lin bully_V = mkV "bully" "bullied" "bullied" ;
+lin bullyboy_N = mkN "bullyboy" "bullyboys" ;
+lin bullying_N = mkN "bullying" "bullyings" ;
+lin bulrush_N = mkN "bulrush" "bulrushes" ;
+lin bulwark_N = mkN "bulwark" "bulwarks" ;
+lin bum_A = mkAMost "bum" "bumly" ;
+lin bum_N = mkN "bum" "bums" ;
+lin bum_V = mkV "bum" "bummed" "bummed" ;
+lin bumblebee_N = mkN "bumblebee" "bumblebees" ;
+lin bumbling_A = mkAMost "bumbling" "bumblingly" ;
+lin bumboat_N = mkN "bumboat" "bumboats" ;
+lin bumf_N = mkN "bumf" "bumfs" ;
+lin bummer_N = mkN "bummer" "bummers" ;
+lin bump_Adv = mkAdv "bump" ;
+lin bump_N = mkN "bump" "bumps" ;
+lin bump_V = mkV "bump" "bumped" "bumped" ;
+lin bumper_N = mkN "bumper" "bumpers" ;
+lin bumpiness_N = mkN "bumpiness" "bumpinesses" ;
+lin bumpkin_N = mkN "bumpkin" "bumpkins" ;
+lin bumpkinly_A = mkAMost "bumpkinly" "bumpkinlily" ;
+lin bumptious_A = mkAMost "bumptious" "bumptiously" ;
+lin bumptiousness_N = mkN "bumptiousness" "bumptiousnesses" ;
+lin bumpy_A = mkA "bumpy" "bumpier" "bumpiest" "bumpily" ;
+lin bun_N = mkN "bun" "buns" ;
+lin buna_N = mkN "buna" "bunas" ;
+lin bunch_N = mkN "bunch" "bunches" ;
+lin bunch_V = mkV "bunch" "bunched" "bunched" ;
+lin bunchberry_N = mkN "bunchberry" "bunchberries" ;
+lin bunchgrass_N = mkN "bunchgrass" "bunchgrasses" ;
+lin bunchy_A = mkA "bunchy" "bunchier" "bunchiest" "bunchily" ;
+lin bunco_N = mkN "bunco" "buncoes" ;
+lin bundle_N = mkN "bundle" "bundles" ;
+lin bundle_V = mkV "bundle" "bundled" "bundled" ;
+lin bundling_N = mkN "bundling" "bundlings" ;
+lin bunfight_N = mkN "bunfight" "bunfights" ;
+lin bung_N = mkN "bung" "bungs" ;
+lin bung_V = mkV "bung" "bunged" "bunged" ;
+lin bung_hole_N = mkN "bung-hole" "bung-holes" ;
+lin bungaloid_A = mkAMost "bungaloid" "bungaloidly" ;
+lin bungalow_N = mkN "bungalow" "bungalows" ;
+lin bungee_N = mkN "bungee" "bungees" ;
+lin bunghole_N = mkN "bunghole" "bungholes" ;
+lin bungle_N = mkN "bungle" "bungles" ;
+lin bungle_V = mkV "bungle" "bungled" "bungled" ;
+lin bungler_N = mkN "bungler" "bunglers" ;
+lin bunion_N = mkN "bunion" "bunions" ;
+lin bunk_N = mkN "bunk" "bunks" ;
+lin bunk_V = mkV "bunk" "bunked" "bunked" ;
+lin bunker_N = mkN "bunker" "bunkers" ;
+lin bunker_V = mkV "bunker" "bunkered" "bunkered" ;
+lin bunkmate_N = mkN "bunkmate" "bunkmates" ;
+lin bunkum_N = mkN "bunkum" "bunkums" ;
+lin bunny_N = mkN "bunny" "bunnies" ;
+lin bunsen_N = mkN "bunsen" "bunsens" ;
+lin bunt_N = mkN "bunt" "bunts" ;
+lin buntal_N = mkN "buntal" "buntals" ;
+lin bunter_N = mkN "bunter" "bunters" ;
+lin bunting_N = mkN "bunting" "buntings" ;
+lin bunyavirus_N = mkN "bunyavirus" "bunyaviruses" ;
+lin buoy_N = mkN "buoy" "buoys" ;
+lin buoy_V = mkV "buoy" "buoyed" "buoyed" ;
+lin buoyancy_N = mkN "buoyancy" "buoyancies" ;
+lin buoyant_A = mkAMost "buoyant" "buoyantly" ;
+lin bur_N = mkN "bur" "burs" ;
+lin burberry_N = mkN "burberry" "burberries" ;
+lin burble_V = mkV "burble" "burbled" "burbled" ;
+lin burbot_N = mkN "burbot" "burbots" ;
+lin burden_N = mkN "burden" "burdens" ;
+lin burden_V = mkV "burden" "burdened" "burdened" ;
+lin burdenless_A = mkAMost "burdenless" "burdenlessly" ;
+lin burdensome_A = mkAMost "burdensome" "burdensomely" ;
+lin burdensomeness_N = mkN "burdensomeness" "burdensomenesses" ;
+lin burdock_N = mkN "burdock" "burdocks" ;
+lin bureau_N = mkN "bureau" "bureaux" ;
+lin bureaucracy_N = mkN "bureaucracy" "bureaucracies" ;
+lin bureaucrat_N = mkN "bureaucrat" "bureaucrats" ;
+lin bureaucratic_A = mkAMost "bureaucratic" "bureaucraticly" ;
+lin bureaucratically_Adv = mkAdv "bureaucratically" ;
+lin burette_N = mkN "burette" "burettes" ;
+lin burg_N = mkN "burg" "burgs" ;
+lin burgeon_V = mkV "burgeon" "burgeoned" "burgeoned" ;
+lin burger_N = mkN "burger" "burgers" ;
+lin burgess_N = mkN "burgess" "burgesses" ;
+lin burgh_N = mkN "burgh" "burghs" ;
+lin burgher_N = mkN "burgher" "burghers" ;
+lin burglar_N = mkN "burglar" "burglars" ;
+lin burglar_alarm_N = mkN "burglar-alarm" "burglar-alarms" ;
+lin burglar_proof_A = mkAMost "burglar-proof" "burglar-proofly" ;
+lin burglarious_A = mkAMost "burglarious" "burglariously" ;
+lin burglarproof_A = mkAMost "burglarproof" "burglarproofly" ;
+lin burglary_N = mkN "burglary" "burglaries" ;
+lin burgle_V = mkV "burgle" "burgled" "burgled" ;
+lin burgomaster_N = mkN "burgomaster" "burgomasters" ;
+lin burgoo_N = mkN "burgoo" "burgoos" ;
+lin burgrass_N = mkN "burgrass" "burgrasses" ;
+lin burgrave_N = mkN "burgrave" "burgraves" ;
+lin burgundy_N = mkN "burgundy" "burgundies" ;
+lin burial_N = mkN "burial" "burials" ;
+lin burial_ground_N = mkN "burial-ground" "burial-grounds" ;
+lin burin_N = mkN "burin" "burins" ;
+lin burke_V = mkV "burke" "burked" "burked" ;
+lin burl_N = mkN "burl" "burls" ;
+lin burlap_N = mkN "burlap" "burlaps" ;
+lin burled_A = mkAMost "burled" "burledly" ;
+lin burlesque_A = mkAMost "burlesque" "burlesquely" ;
+lin burlesque_N = mkN "burlesque" "burlesques" ;
+lin burlesque_V = mkV "burlesque" "burlesqued" "burlesqued" ;
+lin burly_A = mkA "burly" "burlier" "burliest" "burlily" ;
+lin burmese_A = mkAMost "burmese" "burmesely" ;
+lin burmese_N = mkN "burmese" "burmese" ;
+lin burn_N = mkN "burn" "burns" ;
+lin burn_burned_burned_V = mkV "burn" "burned" "burned" ;
+lin burn_burned_burnt_V = mkV "burn" "burned" "burnt" ;
+lin burn_burnt_burned_V = mkV "burn" "burnt" "burned" ;
+lin burn_burnt_burnt_V = mkV "burn" "burnt" "burnt" ;
+lin burn_up_N = mkN "burn-up" "burn-ups" ;
+lin burnable_A = mkAMost "burnable" "burnably" ;
+lin burner_N = mkN "burner" "burners" ;
+lin burning_N = mkN "burning" "burnings" ;
+lin burnish_V = mkV "burnish" "burnished" "burnished" ;
+lin burnous_N = mkN "burnous" "burnouses" ;
+lin burnouse_N = mkN "burnouse" "burnouses" ;
+lin burnup_N = mkN "burnup" "burnups" ;
+lin burp_N = mkN "burp" "burps" ;
+lin burp_V = mkV "burp" "burped" "burped" ;
+lin burqa_N = mkN "burqa" "burqas" ;
+lin burr_N = mkN "burr" "burrs" ;
+lin burr_drill_N = mkN "burr-drill" "burr-drills" ;
+lin burrawong_N = mkN "burrawong" "burrawongs" ;
+lin burrfish_N = mkN "burrfish" "burrfishes" ;
+lin burrito_N = mkN "burrito" "burritoes" ;
+lin burrlike_A = mkAMost "burrlike" "burrlikely" ;
+lin burro_N = mkN "burro" "burroes" ;
+lin burrow_N = mkN "burrow" "burrows" ;
+lin burrow_V = mkV "burrow" "burrowed" "burrowed" ;
+lin bursa_N = mkN "bursa" "bursas" ;
+lin bursal_A = mkAMost "bursal" "bursally" ;
+lin bursar_N = mkN "bursar" "bursars" ;
+lin bursary_N = mkN "bursary" "bursaries" ;
+lin bursiform_A = mkAMost "bursiform" "bursiformly" ;
+lin bursitis_N = mkN "bursitis" "bursitises" ;
+lin burst_N = mkN "burst" "bursts" ;
+lin burst_V = mkV "burst" "burst" "burst" ;
+lin burthen_N = mkN "burthen" "burthens" ;
+lin burthen_V = mkV "burthen" "burthened" "burthened" ;
+lin burton_N = mkN "burton" "burtons" ;
+lin burundian_A = mkAMost "burundian" "burundianly" ;
+lin burundian_N = mkN "burundian" "burundians" ;
+lin bury_V = mkV "bury" "buried" "buried" ;
+lin burying_N = mkN "burying" "buryings" ;
+lin burying_ground_N = mkN "burying-ground" "burying-grounds" ;
+lin bus_N = mkN "bus" "buses" ;
+lin bus_V = mkV "bus" "bused" "bused" ;
+lin busbar_N = mkN "busbar" "busbars" ;
+lin busboy_N = mkN "busboy" "busboys" ;
+lin busby_N = mkN "busby" "busbies" ;
+lin bush_N = mkN "bush" "bushes" ;
+lin bushbuck_N = mkN "bushbuck" "bushbucks" ;
+lin bushel_N = mkN "bushel" "bushels" ;
+lin bushing_N = mkN "bushing" "bushings" ;
+lin bushman_N = mkN "bushman" "bushmen" ;
+lin bushtit_N = mkN "bushtit" "bushtits" ;
+lin bushwhacker_N = mkN "bushwhacker" "bushwhackers" ;
+lin bushwhacking_A = mkAMost "bushwhacking" "bushwhackingly" ;
+lin bushy_A = mkAMost "bushy" "bushily" ;
+lin business_N = mkN "business" "businesses" ;
+lin businesslike_A = mkAMost "businesslike" "businesslikely" ;
+lin businessman_N = mkN "businessman" "businessmen" ;
+lin businessperson_N = mkN "businessperson" "businesspersons" ;
+lin businesswoman_N = mkN "businesswoman" "businesswomans" ;
+lin busker_N = mkN "busker" "buskers" ;
+lin buskin_N = mkN "buskin" "buskins" ;
+lin busload_N = mkN "busload" "busloads" ;
+lin busman_N = mkN "busman" "busmen" ;
+lin buspirone_N = mkN "buspirone" "buspirones" ;
+lin bust_N = mkN "bust" "busts" ;
+lin bust_V = mkV "bust" "busted" "busted" ;
+lin bust_up_N = mkN "bust-up" "bust-ups" ;
+lin bustard_N = mkN "bustard" "bustards" ;
+lin buster_N = mkN "buster" "busters" ;
+lin bustier_N = mkN "bustier" "bustiers" ;
+lin bustle_N = mkN "bustle" "bustles" ;
+lin bustle_V = mkV "bustle" "bustled" "bustled" ;
+lin busy_A = mkA "busy" "busier" "busiest" "busily" ;
+lin busy_V = mkV "busy" "busied" "busied" ;
+lin busybody_N = mkN "busybody" "busybodies" ;
+lin busyness_N = mkN "busyness" "busynesses" ;
+lin busywork_N = mkN "busywork" "busyworks" ;
+lin but_Adv = mkAdv "but" ;
+lin but_Prep = mkPrep "but" ;
+lin butacaine_N = mkN "butacaine" "butacaines" ;
+lin butadiene_N = mkN "butadiene" "butadienes" ;
+lin butane_N = mkN "butane" "butanes" ;
+lin butanone_N = mkN "butanone" "butanones" ;
+lin butch_A = mkAMost "butch" "butchly" ;
+lin butch_N = mkN "butch" "butches" ;
+lin butcher_N = mkN "butcher" "butchers" ;
+lin butcher_V = mkV "butcher" "butchered" "butchered" ;
+lin butcherbird_N = mkN "butcherbird" "butcherbirds" ;
+lin butchery_N = mkN "butchery" "butcheries" ;
+lin buteonine_A = mkAMost "buteonine" "buteoninely" ;
+lin buteonine_N = mkN "buteonine" "buteonines" ;
+lin butler_N = mkN "butler" "butlers" ;
+lin butt_N = mkN "butt" "butts" ;
+lin butt_V = mkV "butt" "butted" "butted" ;
+lin butte_N = mkN "butte" "buttes" ;
+lin butter_N = mkN "butter" "butters" ;
+lin butter_V = mkV "butter" "buttered" "buttered" ;
+lin butterbean_N = mkN "butterbean" "butterbeans" ;
+lin butterbur_N = mkN "butterbur" "butterburs" ;
+lin buttercrunch_N = mkN "buttercrunch" "buttercrunches" ;
+lin buttercup_N = mkN "buttercup" "buttercups" ;
+lin butterfat_N = mkN "butterfat" "butterfats" ;
+lin butterfingers_N = mkN "butterfingers" "butterfingers" ;
+lin butterfish_N = mkN "butterfish" "butterfishes" ;
+lin butterfly_N = mkN "butterfly" "butterflies" ;
+lin buttermilk_N = mkN "buttermilk" "buttermilks" ;
+lin butternut_N = mkN "butternut" "butternuts" ;
+lin butterscotch_N = mkN "butterscotch" "butterscotches" ;
+lin butterweed_N = mkN "butterweed" "butterweeds" ;
+lin butterwort_N = mkN "butterwort" "butterworts" ;
+lin buttery_A = mkAMost "buttery" "butterily" ;
+lin buttery_N = mkN "buttery" "butteries" ;
+lin buttinsky_N = mkN "buttinsky" "buttinskies" ;
+lin buttock_N = mkN "buttock" "buttocks" ;
+lin buttocks_N = mkN "buttocks" "buttockses" ;
+lin button_N = mkN "button" "buttons" ;
+lin button_V = mkV "button" "buttoned" "buttoned" ;
+lin buttoned_up_A = mkAMost "buttoned-up" "buttoned-uply" ;
+lin buttonhole_N = mkN "buttonhole" "buttonholes" ;
+lin buttonhole_V = mkV "buttonhole" "buttonholed" "buttonholed" ;
+lin buttonhook_N = mkN "buttonhook" "buttonhooks" ;
+lin buttonwood_N = mkN "buttonwood" "buttonwoods" ;
+lin buttony_A = mkAMost "buttony" "buttonily" ;
+lin buttress_N = mkN "buttress" "buttresses" ;
+lin buttress_V = mkV "buttress" "buttressed" "buttressed" ;
+lin butty_N = mkN "butty" "butties" ;
+lin butut_N = mkN "butut" "bututs" ;
+lin butyl_N = mkN "butyl" "butyls" ;
+lin butylene_N = mkN "butylene" "butylenes" ;
+lin butyraceous_A = mkAMost "butyraceous" "butyraceously" ;
+lin butyric_A = mkAMost "butyric" "butyricly" ;
+lin butyrin_N = mkN "butyrin" "butyrins" ;
+lin buxom_A = mkAMost "buxom" "buxomly" ;
+lin buxomness_N = mkN "buxomness" "buxomnesses" ;
+lin buy_N = mkN "buy" "buys" ;
+lin buy_bought_V = mkV "buy" "bought" "bought" ;
+lin buy_buyed_V = mkV "buy" "buyed" "buyed" ;
+lin buyer_N = mkN "buyer" "buyers" ;
+lin buying_N = mkN "buying" "buyings" ;
+lin buyout_N = mkN "buyout" "buyouts" ;
+lin buzz_N = mkN "buzz" "buzzes" ;
+lin buzz_V = mkV "buzz" "buzzed" "buzzed" ;
+lin buzzard_N = mkN "buzzard" "buzzards" ;
+lin buzzer_N = mkN "buzzer" "buzzers" ;
+lin buzzword_N = mkN "buzzword" "buzzwords" ;
+lin bvm_N = mkN "bvm" "bvms" ;
+lin by_Adv = mkAdv "by" ;
+lin by_Prep = mkPrep "by" ;
+lin by_election_N = mkN "by-election" "by-elections" ;
+lin by_means_of_Prep = mkPrep "by means of" ;
+lin by_virtue_of_Prep = mkPrep "by virtue of" ;
+lin bye_law_N = mkN "bye-law" "bye-laws" ;
+lin bygone_A = mkAMost "bygone" "bygonely" ;
+lin bygone_N = mkN "bygone" "bygones" ;
+lin bylaw_N = mkN "bylaw" "bylaws" ;
+lin bypass_N = mkN "bypass" "bypasses" ;
+lin bypass_V = mkV "bypass" "bypassed" "bypassed" ;
+lin bypath_N = mkN "bypath" "bypaths" ;
+lin byplay_N = mkN "byplay" "byplays" ;
+lin byproduct_N = mkN "byproduct" "byproducts" ;
+lin byroad_N = mkN "byroad" "byroads" ;
+lin byssus_N = mkN "byssus" "byssuses" ;
+lin bystander_N = mkN "bystander" "bystanders" ;
+lin byte_N = mkN "byte" "bytes" ;
+lin byway_N = mkN "byway" "byways" ;
+lin byword_N = mkN "byword" "bywords" ;
+lin bête_noire_N = mkN "bête noire" "IRREG" ;
+lin c_of_e_N = mkN "c of e" "c of es" ;
+lin ca'canny_N = mkN "ca'canny" "IRREG" ;
+lin cab_N = mkN "cab" "cabs" ;
+lin cab_rank_N = mkN "cab-rank" "cab-ranks" ;
+lin cabal_N = mkN "cabal" "cabals" ;
+lin cabala_N = mkN "cabala" "cabalas" ;
+lin cabalist_N = mkN "cabalist" "cabalists" ;
+lin cabalistic_A = mkAMost "cabalistic" "cabalisticly" ;
+lin cabana_N = mkN "cabana" "cabanas" ;
+lin cabaret_N = mkN "cabaret" "cabarets" ;
+lin cabbage_N = mkN "cabbage" "cabbages" ;
+lin cabbageworm_N = mkN "cabbageworm" "cabbageworms" ;
+lin cabby_N = mkN "cabby" "cabbies" ;
+lin caber_N = mkN "caber" "cabers" ;
+lin cabin_N = mkN "cabin" "cabins" ;
+lin cabinet_N = mkN "cabinet" "cabinets" ;
+lin cabinet_maker_N = mkN "cabinet-maker" "cabinet-makers" ;
+lin cabinetmaker_N = mkN "cabinetmaker" "cabinetmakers" ;
+lin cabinetmaking_N = mkN "cabinetmaking" "cabinetmakings" ;
+lin cabinetwork_N = mkN "cabinetwork" "cabinetworks" ;
+lin cable's_length_N = mkN "cable's-length" "cable's-lengths" ;
+lin cable_N = mkN "cable" "cables" ;
+lin cable_V = mkV "cable" "cabled" "cabled" ;
+lin cable_car_N = mkN "cable-car" "cable-cars" ;
+lin cable_length_N = mkN "cable-length" "cable-lengths" ;
+lin cable_railway_N = mkN "cable-railway" "cable-railways" ;
+lin cablegram_N = mkN "cablegram" "cablegrams" ;
+lin cabman_N = mkN "cabman" "cabmen" ;
+lin cabochon_N = mkN "cabochon" "cabochons" ;
+lin caboodle_N = mkN "caboodle" "caboodles" ;
+lin caboose_N = mkN "caboose" "cabooses" ;
+lin cabotage_N = mkN "cabotage" "cabotages" ;
+lin cabstand_N = mkN "cabstand" "cabstands" ;
+lin cacao_N = mkN "cacao" "cacaos" ;
+lin cacao_bean_N = mkN "cacao-bean" "cacao-beans" ;
+lin cacao_tree_N = mkN "cacao-tree" "cacao-trees" ;
+lin cache_N = mkN "cache" "caches" ;
+lin cache_V = mkV "cache" "cached" "cached" ;
+lin cachectic_A = mkAMost "cachectic" "cachecticly" ;
+lin cachet_N = mkN "cachet" "cachets" ;
+lin cachexia_N = mkN "cachexia" "cachexias" ;
+lin cachinnation_N = mkN "cachinnation" "cachinnations" ;
+lin cachou_N = mkN "cachou" "cachous" ;
+lin cacique_N = mkN "cacique" "caciques" ;
+lin cackle_N = mkN "cackle" "cackles" ;
+lin cackle_V = mkV "cackle" "cackled" "cackled" ;
+lin cackler_N = mkN "cackler" "cacklers" ;
+lin cackly_A = mkA "cackly" "cacklier" "cackliest" "cacklily" ;
+lin cacodemon_N = mkN "cacodemon" "cacodemons" ;
+lin cacodemonic_A = mkAMost "cacodemonic" "cacodemonicly" ;
+lin cacodyl_N = mkN "cacodyl" "cacodyls" ;
+lin cacodylic_A = mkAMost "cacodylic" "cacodylicly" ;
+lin cacogenesis_N = mkN "cacogenesis" "cacogenesises" ;
+lin cacophonous_A = mkAMost "cacophonous" "cacophonously" ;
+lin cacophony_N = mkN "cacophony" "cacophonies" ;
+lin cactus_N = mkN "cactus" "cactuses" ;
+lin cacuminal_A = mkAMost "cacuminal" "cacuminally" ;
+lin cad_N = mkN "cad" "cads" ;
+lin cadaster_N = mkN "cadaster" "cadasters" ;
+lin cadastral_A = mkAMost "cadastral" "cadastrally" ;
+lin cadaver_N = mkN "cadaver" "cadavers" ;
+lin cadaverine_N = mkN "cadaverine" "cadaverines" ;
+lin cadaverous_A = mkAMost "cadaverous" "cadaverously" ;
+lin caddie_N = mkN "caddie" "caddies" ;
+lin caddish_A = mkAMost "caddish" "caddishly" ;
+lin caddisworm_N = mkN "caddisworm" "caddisworms" ;
+lin caddy_N = mkN "caddy" "caddies" ;
+lin cadence_N = mkN "cadence" "cadences" ;
+lin cadenced_A = mkAMost "cadenced" "cadencedly" ;
+lin cadenza_N = mkN "cadenza" "cadenzas" ;
+lin cadet_N = mkN "cadet" "cadets" ;
+lin cadetship_N = mkN "cadetship" "cadetships" ;
+lin cadge_V = mkV "cadge" "cadged" "cadged" ;
+lin cadger_N = mkN "cadger" "cadgers" ;
+lin cadmium_N = mkN "cadmium" "cadmiums" ;
+lin cadre_N = mkN "cadre" "cadres" ;
+lin caducean_A = mkAMost "caducean" "caduceanly" ;
+lin caduceus_N = mkN "caduceus" "caduceuses" ;
+lin caducous_A = mkAMost "caducous" "caducously" ;
+lin caecilian_A = mkAMost "caecilian" "caecilianly" ;
+lin caecilian_N = mkN "caecilian" "caecilians" ;
+lin caesar_N = mkN "caesar" "caesars" ;
+lin caesarian_A = mkAMost "caesarian" "caesarianly" ;
+lin caespitose_A = mkAMost "caespitose" "caespitosely" ;
+lin caesura_N = mkN "caesura" "caesuras" ;
+lin caesural_A = mkAMost "caesural" "caesurally" ;
+lin cafe_au_lait_N = mkN "cafe-au-lait" "cafe-au-laits" ;
+lin cafeteria_N = mkN "cafeteria" "cafeterias" ;
+lin caff_N = mkN "caff" "caffs" ;
+lin caffeine_N = mkN "caffeine" "caffeines" ;
+lin caffeinic_A = mkAMost "caffeinic" "caffeinicly" ;
+lin caffeinism_N = mkN "caffeinism" "caffeinisms" ;
+lin caftan_N = mkN "caftan" "caftans" ;
+lin café_N = mkN "café" "cafés" ;
+lin cage_N = mkN "cage" "cages" ;
+lin cage_V = mkV "cage" "caged" "caged" ;
+lin cagey_A = mkAMost "cagey" "cageily" ;
+lin cagily_Adv = mkAdv "cagily" ;
+lin cagoule_N = mkN "cagoule" "cagoules" ;
+lin cahoot_N = mkN "cahoot" "cahoots" ;
+lin caiman_N = mkN "caiman" "caimans" ;
+lin cairn_N = mkN "cairn" "cairns" ;
+lin cairned_A = mkAMost "cairned" "cairnedly" ;
+lin cairngorm_N = mkN "cairngorm" "cairngorms" ;
+lin caisson_N = mkN "caisson" "caissons" ;
+lin caitiff_A = mkAMost "caitiff" "caitiffly" ;
+lin caitiff_N = mkN "caitiff" "caitiffs" ;
+lin cajole_V = mkV "cajole" "cajoled" "cajoled" ;
+lin cajolery_N = mkN "cajolery" "cajoleries" ;
+lin cake_N = mkN "cake" "cakes" ;
+lin cake_V = mkV "cake" "caked" "caked" ;
+lin cakewalk_N = mkN "cakewalk" "cakewalks" ;
+lin calaba_N = mkN "calaba" "calabas" ;
+lin calabash_N = mkN "calabash" "calabashes" ;
+lin caladenia_N = mkN "caladenia" "caladenias" ;
+lin caladium_N = mkN "caladium" "caladiums" ;
+lin calamint_N = mkN "calamint" "calamints" ;
+lin calamitous_A = mkAMost "calamitous" "calamitously" ;
+lin calamity_N = mkN "calamity" "calamities" ;
+lin calamus_N = mkN "calamus" "calamuses" ;
+lin calando_A = mkAMost "calando" "calandoly" ;
+lin calanthe_N = mkN "calanthe" "calanthes" ;
+lin calash_N = mkN "calash" "calashes" ;
+lin calcaneal_A = mkAMost "calcaneal" "calcaneally" ;
+lin calcareous_A = mkAMost "calcareous" "calcareously" ;
+lin calced_A = mkAMost "calced" "calcedly" ;
+lin calceolaria_N = mkN "calceolaria" "calceolarias" ;
+lin calceolate_A = mkAMost "calceolate" "calceolately" ;
+lin calceus_N = mkN "calceus" "calceuses" ;
+lin calcic_A = mkAMost "calcic" "calcicly" ;
+lin calcicolous_A = mkAMost "calcicolous" "calcicolously" ;
+lin calciferous_A = mkAMost "calciferous" "calciferously" ;
+lin calcific_A = mkAMost "calcific" "calcificly" ;
+lin calcification_N = mkN "calcification" "calcifications" ;
+lin calcifugous_A = mkAMost "calcifugous" "calcifugously" ;
+lin calcify_V = mkV "calcify" "calcified" "calcified" ;
+lin calcimine_N = mkN "calcimine" "calcimines" ;
+lin calcination_N = mkN "calcination" "calcinations" ;
+lin calcine_V = mkV "calcine" "calcined" "calcined" ;
+lin calcite_N = mkN "calcite" "calcites" ;
+lin calcitic_A = mkAMost "calcitic" "calciticly" ;
+lin calcitonin_N = mkN "calcitonin" "calcitonins" ;
+lin calcium_N = mkN "calcium" "calciums" ;
+lin calculable_A = mkAMost "calculable" "calculably" ;
+lin calculate_V = mkV "calculate" "calculated" "calculated" ;
+lin calculatingly_Adv = mkAdv "calculatingly" ;
+lin calculation_N = mkN "calculation" "calculations" ;
+lin calculator_N = mkN "calculator" "calculators" ;
+lin calculous_A = mkAMost "calculous" "calculously" ;
+lin calculus_N = mkN "calculus" "calculuses" ;
+lin caldera_N = mkN "caldera" "calderas" ;
+lin caldron_N = mkN "caldron" "caldrons" ;
+lin calefacient_A = mkAMost "calefacient" "calefaciently" ;
+lin calefaction_N = mkN "calefaction" "calefactions" ;
+lin calefactory_A = mkAMost "calefactory" "calefactorily" ;
+lin calendar_N = mkN "calendar" "calendars" ;
+lin calender_N = mkN "calender" "calenders" ;
+lin calender_V = mkV "calender" "calendered" "calendered" ;
+lin calendric_A = mkAMost "calendric" "calendricly" ;
+lin calendula_N = mkN "calendula" "calendulas" ;
+lin calf_N = mkN "calf" "calves" ;
+lin calf_love_N = mkN "calf-love" "calf-loves" ;
+lin calibrate_V = mkV "calibrate" "calibrated" "calibrated" ;
+lin calibration_N = mkN "calibration" "calibrations" ;
+lin calibre_N = mkN "calibre" "calibres" ;
+lin caliche_N = mkN "caliche" "caliches" ;
+lin calico_A = mkAMost "calico" "calicoly" ;
+lin calico_N = mkN "calico" "calicoes" ;
+lin calif_N = mkN "calif" "califs" ;
+lin californian_A = mkAMost "californian" "californianly" ;
+lin californian_N = mkN "californian" "californians" ;
+lin californium_N = mkN "californium" "californiums" ;
+lin caliginous_A = mkAMost "caliginous" "caliginously" ;
+lin caliper_N = mkN "caliper" "calipers" ;
+lin caliph_N = mkN "caliph" "caliphs" ;
+lin caliphate_N = mkN "caliphate" "caliphates" ;
+lin calisaya_N = mkN "calisaya" "calisayas" ;
+lin calisthenic_A = mkAMost "calisthenic" "calisthenicly" ;
+lin calisthenics_N = mkN "calisthenics" "calisthenics" ;
+lin calk_N = mkN "calk" "calks" ;
+lin calk_V = mkV "calk" "calked" "calked" ;
+lin call_N = mkN "call" "calls" ;
+lin call_V = mkV "call" "called" "called" ;
+lin call_box_N = mkN "call-box" "call-boxes" ;
+lin call_girl_N = mkN "call-girl" "call-girls" ;
+lin call_over_N = mkN "call-over" "call-overs" ;
+lin call_up_N = mkN "call-up" "call-ups" ;
+lin callable_A = mkAMost "callable" "callably" ;
+lin caller_A = mkAMost "caller" "callerly" ;
+lin caller_N = mkN "caller" "callers" ;
+lin calliandra_N = mkN "calliandra" "calliandras" ;
+lin calligrapher_N = mkN "calligrapher" "calligraphers" ;
+lin calligraphic_A = mkAMost "calligraphic" "calligraphicly" ;
+lin calligraphy_N = mkN "calligraphy" "calligraphies" ;
+lin calling_N = mkN "calling" "callings" ;
+lin calliope_N = mkN "calliope" "calliopes" ;
+lin calliopsis_N = mkN "calliopsis" "calliopsises" ;
+lin callipygian_A = mkAMost "callipygian" "callipygianly" ;
+lin callisthenics_N = mkN "callisthenics" "callisthenics" ;
+lin callithump_N = mkN "callithump" "callithumps" ;
+lin callithumpian_A = mkAMost "callithumpian" "callithumpianly" ;
+lin callosity_N = mkN "callosity" "callosities" ;
+lin callosotomy_N = mkN "callosotomy" "callosotomies" ;
+lin callous_A = mkAMost "callous" "callously" ;
+lin calloused_A = mkAMost "calloused" "callousedly" ;
+lin callousness_N = mkN "callousness" "callousnesses" ;
+lin callow_A = mkAMost "callow" "callowly" ;
+lin callowness_N = mkN "callowness" "callownesses" ;
+lin callus_N = mkN "callus" "calluses" ;
+lin calm_A = mkA "calm" "calmer" "calmest" "calmly" ;
+lin calm_N = mkN "calm" "calms" ;
+lin calm_V = mkV "calm" "calmed" "calmed" ;
+lin calme_V = mkV "calme" "calmed" "calmed" ;
+lin calmness_N = mkN "calmness" "calmnesses" ;
+lin calomel_N = mkN "calomel" "calomels" ;
+lin caloric_A = mkAMost "caloric" "caloricly" ;
+lin calorie_N = mkN "calorie" "calories" ;
+lin calorifacient_A = mkAMost "calorifacient" "calorifaciently" ;
+lin calorific_A = mkAMost "calorific" "calorificly" ;
+lin calorimeter_N = mkN "calorimeter" "calorimeters" ;
+lin calorimetric_A = mkAMost "calorimetric" "calorimetricly" ;
+lin calorimetry_N = mkN "calorimetry" "calorimetries" ;
+lin calosoma_N = mkN "calosoma" "calosomas" ;
+lin calpac_N = mkN "calpac" "calpacs" ;
+lin calque_N = mkN "calque" "calques" ;
+lin caltrop_N = mkN "caltrop" "caltrops" ;
+lin calumet_N = mkN "calumet" "calumets" ;
+lin calumniate_V = mkV "calumniate" "calumniated" "calumniated" ;
+lin calumniatory_A = mkAMost "calumniatory" "calumniatorily" ;
+lin calumny_N = mkN "calumny" "calumnies" ;
+lin calvaria_N = mkN "calvaria" "calvarias" ;
+lin calvary_N = mkN "calvary" "calvaries" ;
+lin calve_V = mkV "calve" "calved" "calved" ;
+lin calving_N = mkN "calving" "calvings" ;
+lin calvinism_N = mkN "calvinism" "calvinisms" ;
+lin calvinist_N = mkN "calvinist" "calvinists" ;
+lin calyceal_A = mkAMost "calyceal" "calyceally" ;
+lin calycular_A = mkAMost "calycular" "calycularly" ;
+lin calyculate_A = mkAMost "calyculate" "calyculately" ;
+lin calyculus_N = mkN "calyculus" "calyculuses" ;
+lin calypso_N = mkN "calypso" "calypsos" ;
+lin calyptra_N = mkN "calyptra" "calyptras" ;
+lin calyptrate_A = mkAMost "calyptrate" "calyptrately" ;
+lin calyx_N = mkN "calyx" "calyxes" ;
+lin cam_N = mkN "cam" "cams" ;
+lin camail_N = mkN "camail" "camails" ;
+lin camaraderie_N = mkN "camaraderie" "camaraderies" ;
+lin camas_N = mkN "camas" "camases" ;
+lin camber_N = mkN "camber" "cambers" ;
+lin camber_V = mkV "camber" "cambered" "cambered" ;
+lin cambial_A = mkAMost "cambial" "cambially" ;
+lin cambium_N = mkN "cambium" "cambiums" ;
+lin cambodian_A = mkAMost "cambodian" "cambodianly" ;
+lin cambodian_N = mkN "cambodian" "cambodians" ;
+lin cambric_N = mkN "cambric" "cambrics" ;
+lin camcorder_N = mkN "camcorder" "camcorders" ;
+lin camel_N = mkN "camel" "camels" ;
+lin camel_hair_N = mkN "camel-hair" "camel-hairs" ;
+lin camellia_N = mkN "camellia" "camellias" ;
+lin camelpox_N = mkN "camelpox" "camelpoxes" ;
+lin camembert_N = mkN "camembert" "camemberts" ;
+lin cameo_N = mkN "cameo" "cameos" ;
+lin camera_N = mkN "camera" "cameras" ;
+lin cameraman_N = mkN "cameraman" "cameramen" ;
+lin cameroonian_A = mkAMost "cameroonian" "cameroonianly" ;
+lin cameroonian_N = mkN "cameroonian" "cameroonians" ;
+lin camion_N = mkN "camion" "camions" ;
+lin camise_N = mkN "camise" "camises" ;
+lin camisole_N = mkN "camisole" "camisoles" ;
+lin camlet_N = mkN "camlet" "camlets" ;
+lin camomile_N = mkN "camomile" "camomiles" ;
+lin camouflage_N = mkN "camouflage" "camouflages" ;
+lin camouflage_V = mkV "camouflage" "camouflaged" "camouflaged" ;
+lin camp_A = mkAMost "camp" "camply" ;
+lin camp_N = mkN "camp" "camps" ;
+lin camp_V = mkV "camp" "camped" "camped" ;
+lin camp_bed_N = mkN "camp-bed" "camp-beds" ;
+lin camp_chair_N = mkN "camp-chair" "camp-chairs" ;
+lin camp_fire_N = mkN "camp-fire" "camp-fires" ;
+lin camp_follower_N = mkN "camp-follower" "camp-followers" ;
+lin camp_stool_N = mkN "camp-stool" "camp-stools" ;
+lin campaign_N = mkN "campaign" "campaigns" ;
+lin campaign_V = mkV "campaign" "campaigned" "campaigned" ;
+lin campaigner_N = mkN "campaigner" "campaigners" ;
+lin campaigning_N = mkN "campaigning" "campaignings" ;
+lin campanile_N = mkN "campanile" "campaniles" ;
+lin campanula_N = mkN "campanula" "campanulas" ;
+lin campanulate_A = mkAMost "campanulate" "campanulately" ;
+lin camper_N = mkN "camper" "campers" ;
+lin campestral_A = mkAMost "campestral" "campestrally" ;
+lin campfire_N = mkN "campfire" "campfires" ;
+lin camphor_N = mkN "camphor" "camphors" ;
+lin camphoraceous_A = mkAMost "camphoraceous" "camphoraceously" ;
+lin camphorated_A = mkAMost "camphorated" "camphoratedly" ;
+lin camphoric_A = mkAMost "camphoric" "camphoricly" ;
+lin camping_N = mkN "camping" "campings" ;
+lin campion_N = mkN "campion" "campions" ;
+lin campmate_N = mkN "campmate" "campmates" ;
+lin campsite_N = mkN "campsite" "campsites" ;
+lin campstool_N = mkN "campstool" "campstools" ;
+lin campus_N = mkN "campus" "campuses" ;
+lin campylotropous_A = mkAMost "campylotropous" "campylotropously" ;
+lin camshaft_N = mkN "camshaft" "camshafts" ;
+lin camwood_N = mkN "camwood" "camwoods" ;
+lin can_N = mkN "can" "cans" ;
+lin can_V = mkV "can" "canned" "canned" ;
+lin canal_N = mkN "canal" "canals" ;
+lin canalicular_A = mkAMost "canalicular" "canalicularly" ;
+lin canaliculate_A = mkAMost "canaliculate" "canaliculately" ;
+lin canaliculus_N = mkN "canaliculus" "canaliculuses" ;
+lin canalization_N = mkN "canalization" "canalizations" ;
+lin canalize_V = mkV "canalize" "canalized" "canalized" ;
+lin canapé_N = mkN "canapé" "canapés" ;
+lin canard_N = mkN "canard" "canards" ;
+lin canary_A = mkAMost "canary" "canarily" ;
+lin canary_N = mkN "canary" "canaries" ;
+lin canary_bird_N = mkN "canary-bird" "canary-birds" ;
+lin canary_wine_N = mkN "canary-wine" "canary-wines" ;
+lin canasta_N = mkN "canasta" "canastas" ;
+lin canavanine_N = mkN "canavanine" "canavanines" ;
+lin cancan_N = mkN "cancan" "cancans" ;
+lin cancel_canceled_V = mkV "cancel" "canceled" "canceled" ;
+lin cancel_cancelled_V = mkV "cancel" "cancelled" "cancelled" ;
+lin cancellate_A = mkAMost "cancellate" "cancellately" ;
+lin cancellation_N = mkN "cancellation" "cancellations" ;
+lin cancer_N = mkN "cancer" "cancers" ;
+lin cancerous_A = mkAMost "cancerous" "cancerously" ;
+lin cancerweed_N = mkN "cancerweed" "cancerweeds" ;
+lin cancroid_A = mkAMost "cancroid" "cancroidly" ;
+lin cancroid_N = mkN "cancroid" "cancroids" ;
+lin candelabrum_N = mkN "candelabrum" "candelabra" ;
+lin candelilla_N = mkN "candelilla" "candelillas" ;
+lin candescent_A = mkAMost "candescent" "candescently" ;
+lin candid_A = mkAMost "candid" "candidly" ;
+lin candida_N = mkN "candida" "candidas" ;
+lin candidacy_N = mkN "candidacy" "candidacies" ;
+lin candidate_N = mkN "candidate" "candidates" ;
+lin candidature_N = mkN "candidature" "candidatures" ;
+lin candidiasis_N = mkN "candidiasis" "candidiasises" ;
+lin candle_N = mkN "candle" "candles" ;
+lin candle_power_N = mkN "candle-power" "candle-powers" ;
+lin candlelight_N = mkN "candlelight" "candlelights" ;
+lin candlemaker_N = mkN "candlemaker" "candlemakers" ;
+lin candlenut_N = mkN "candlenut" "candlenuts" ;
+lin candlepin_N = mkN "candlepin" "candlepins" ;
+lin candlepins_N = mkN "candlepins" "candlepinses" ;
+lin candlepower_N = mkN "candlepower" "candlepowers" ;
+lin candlesnuffer_N = mkN "candlesnuffer" "candlesnuffers" ;
+lin candlestick_N = mkN "candlestick" "candlesticks" ;
+lin candlewick_N = mkN "candlewick" "candlewicks" ;
+lin candlewood_N = mkN "candlewood" "candlewoods" ;
+lin candor_N = mkN "candor" "candors" ;
+lin candour_N = mkN "candour" "candours" ;
+lin candy_N = mkN "candy" "candies" ;
+lin candy_V = mkV "candy" "candied" "candied" ;
+lin candy_floss_N = mkN "candy-floss" "candy-flosses" ;
+lin candytuft_N = mkN "candytuft" "candytufts" ;
+lin cane_N = mkN "cane" "canes" ;
+lin cane_V = mkV "cane" "caned" "caned" ;
+lin canebrake_N = mkN "canebrake" "canebrakes" ;
+lin canella_N = mkN "canella" "canellas" ;
+lin canescent_A = mkAMost "canescent" "canescently" ;
+lin canfield_N = mkN "canfield" "canfields" ;
+lin cangue_N = mkN "cangue" "cangues" ;
+lin canicular_A = mkAMost "canicular" "canicularly" ;
+lin canine_A = mkAMost "canine" "caninely" ;
+lin canine_N = mkN "canine" "canines" ;
+lin canistel_N = mkN "canistel" "canistels" ;
+lin canister_N = mkN "canister" "canisters" ;
+lin canker_N = mkN "canker" "cankers" ;
+lin canker_V = mkV "canker" "cankered" "cankered" ;
+lin cankerous_A = mkAMost "cankerous" "cankerously" ;
+lin cankerworm_N = mkN "cankerworm" "cankerworms" ;
+lin canna_N = mkN "canna" "cannas" ;
+lin cannabin_N = mkN "cannabin" "cannabins" ;
+lin cannabis_N = mkN "cannabis" "cannabises" ;
+lin cannelloni_N = mkN "cannelloni" "cannellonis" ;
+lin cannery_N = mkN "cannery" "canneries" ;
+lin cannibal_N = mkN "cannibal" "cannibals" ;
+lin cannibalic_A = mkAMost "cannibalic" "cannibalicly" ;
+lin cannibalism_N = mkN "cannibalism" "cannibalisms" ;
+lin cannibalistic_A = mkAMost "cannibalistic" "cannibalisticly" ;
+lin cannibalize_V = mkV "cannibalize" "cannibalized" "cannibalized" ;
+lin cannikin_N = mkN "cannikin" "cannikins" ;
+lin cannon_N = mkN "cannon" "cannons" ;
+lin cannon_fodder_N = mkN "cannon-fodder" "cannon-fodders" ;
+lin cannonade_N = mkN "cannonade" "cannonades" ;
+lin cannonball_N = mkN "cannonball" "cannonballs" ;
+lin cannula_N = mkN "cannula" "cannulas" ;
+lin cannulation_N = mkN "cannulation" "cannulations" ;
+lin canny_A = mkA "canny" "cannier" "canniest" "cannily" ;
+lin canoe_N = mkN "canoe" "canoes" ;
+lin canoe_V = mkV "canoe" "canoed" "canoed" ;
+lin canoeist_N = mkN "canoeist" "canoeists" ;
+lin canon_N = mkN "canon" "canons" ;
+lin canonic_A = mkAMost "canonic" "canonicly" ;
+lin canonical_A = mkAMost "canonical" "canonically" ;
+lin canonist_A = mkAMost "canonist" "canonistly" ;
+lin canonist_N = mkN "canonist" "canonists" ;
+lin canonization_N = mkN "canonization" "canonizations" ;
+lin canonize_V = mkV "canonize" "canonized" "canonized" ;
+lin canopied_A = mkAMost "canopied" "canopiedly" ;
+lin canopy_N = mkN "canopy" "canopies" ;
+lin canorous_A = mkAMost "canorous" "canorously" ;
+lin cant_N = mkN "cant" "cants" ;
+lin cant_V = mkV "cant" "canted" "canted" ;
+lin cantabile_A = mkAMost "cantabile" "cantabilely" ;
+lin cantala_N = mkN "cantala" "cantalas" ;
+lin cantaloup_N = mkN "cantaloup" "cantaloups" ;
+lin cantaloupe_N = mkN "cantaloupe" "cantaloupes" ;
+lin cantankerous_A = mkAMost "cantankerous" "cantankerously" ;
+lin cantata_N = mkN "cantata" "cantatas" ;
+lin canteen_N = mkN "canteen" "canteens" ;
+lin canter_N = mkN "canter" "canters" ;
+lin canter_V = mkV "canter" "cantered" "cantered" ;
+lin canthus_N = mkN "canthus" "canthuses" ;
+lin canticle_N = mkN "canticle" "canticles" ;
+lin cantilever_N = mkN "cantilever" "cantilevers" ;
+lin cantillation_N = mkN "cantillation" "cantillations" ;
+lin cantle_N = mkN "cantle" "cantles" ;
+lin canto_N = mkN "canto" "cantos" ;
+lin canton_N = mkN "canton" "cantons" ;
+lin cantonal_A = mkAMost "cantonal" "cantonally" ;
+lin cantonment_N = mkN "cantonment" "cantonments" ;
+lin cantor_N = mkN "cantor" "cantors" ;
+lin canty_A = mkA "canty" "cantier" "cantiest" "cantily" ;
+lin canuck_N = mkN "canuck" "canucks" ;
+lin canvas_N = mkN "canvas" "canvases" ;
+lin canvasback_N = mkN "canvasback" "canvasbacks" ;
+lin canvass_N = mkN "canvass" "canvasses" ;
+lin canvass_V = mkV "canvass" "canvassed" "canvassed" ;
+lin canvasser_N = mkN "canvasser" "canvassers" ;
+lin canyon_N = mkN "canyon" "canyons" ;
+lin canyonside_N = mkN "canyonside" "canyonsides" ;
+lin cap_N = mkN "cap" "caps" ;
+lin cap_V = mkV "cap" "capped" "capped" ;
+lin cap_à_pie_Adv = mkAdv "cap-à-pie" ;
+lin capability_N = mkN "capability" "capabilities" ;
+lin capable_A = mkAMost "capable" "capably" ;
+lin capacious_A = mkAMost "capacious" "capaciously" ;
+lin capaciousness_N = mkN "capaciousness" "capaciousnesses" ;
+lin capacitance_N = mkN "capacitance" "capacitances" ;
+lin capacitive_A = mkAMost "capacitive" "capacitively" ;
+lin capacitor_N = mkN "capacitor" "capacitors" ;
+lin capacity_N = mkN "capacity" "capacities" ;
+lin caparison_N = mkN "caparison" "caparisons" ;
+lin caparison_V = mkV "caparison" "caparisoned" "caparisoned" ;
+lin cape_N = mkN "cape" "capes" ;
+lin capelin_N = mkN "capelin" "capelins" ;
+lin caper_N = mkN "caper" "capers" ;
+lin caper_V = mkV "caper" "capered" "capered" ;
+lin capercaillie_N = mkN "capercaillie" "capercaillies" ;
+lin capful_N = mkN "capful" "capfuls" ;
+lin capillarity_N = mkN "capillarity" "capillarities" ;
+lin capillary_A = mkAMost "capillary" "capillarily" ;
+lin capillary_N = mkN "capillary" "capillaries" ;
+lin capital_A = mkAMost "capital" "capitally" ;
+lin capital_N = mkN "capital" "capitals" ;
+lin capitalisation_N = mkN "capitalisation" "capitalisations" ;
+lin capitalism_A = mkAMost "capitalism" "capitalismly" ;
+lin capitalism_N = mkN "capitalism" "capitalisms" ;
+lin capitalist_A = mkAMost "capitalist" "capitalistly" ;
+lin capitalist_N = mkN "capitalist" "capitalists" ;
+lin capitalistic_A = mkAMost "capitalistic" "capitalisticly" ;
+lin capitalization_N = mkN "capitalization" "capitalizations" ;
+lin capitalize_V = mkV "capitalize" "capitalized" "capitalized" ;
+lin capitate_A = mkAMost "capitate" "capitately" ;
+lin capitate_N = mkN "capitate" "capitates" ;
+lin capitation_N = mkN "capitation" "capitations" ;
+lin capitol_N = mkN "capitol" "capitols" ;
+lin capitular_A = mkAMost "capitular" "capitularly" ;
+lin capitulate_V = mkV "capitulate" "capitulated" "capitulated" ;
+lin capitulation_N = mkN "capitulation" "capitulations" ;
+lin capitulum_N = mkN "capitulum" "capitulums" ;
+lin capo_N = mkN "capo" "capoes" ;
+lin capon_N = mkN "capon" "capons" ;
+lin capote_N = mkN "capote" "capotes" ;
+lin cappuccino_N = mkN "cappuccino" "cappuccinoes" ;
+lin capriccio_N = mkN "capriccio" "capriccios" ;
+lin caprice_N = mkN "caprice" "caprices" ;
+lin capricious_A = mkAMost "capricious" "capriciously" ;
+lin capriciousness_N = mkN "capriciousness" "capriciousnesses" ;
+lin caprifig_N = mkN "caprifig" "caprifigs" ;
+lin caprine_A = mkAMost "caprine" "caprinely" ;
+lin capriole_N = mkN "capriole" "caprioles" ;
+lin capsaicin_N = mkN "capsaicin" "capsaicins" ;
+lin capsicum_N = mkN "capsicum" "capsicums" ;
+lin capsid_N = mkN "capsid" "capsids" ;
+lin capsize_V = mkV "capsize" "capsized" "capsized" ;
+lin capsizing_N = mkN "capsizing" "capsizings" ;
+lin capstan_N = mkN "capstan" "capstans" ;
+lin capstone_N = mkN "capstone" "capstones" ;
+lin capsular_A = mkAMost "capsular" "capsularly" ;
+lin capsulate_A = mkAMost "capsulate" "capsulately" ;
+lin capsule_N = mkN "capsule" "capsules" ;
+lin captain_N = mkN "captain" "captains" ;
+lin captain_V = mkV "captain" "captained" "captained" ;
+lin captainship_N = mkN "captainship" "captainships" ;
+lin caption_N = mkN "caption" "captions" ;
+lin captious_A = mkAMost "captious" "captiously" ;
+lin captivate_V = mkV "captivate" "captivated" "captivated" ;
+lin captivation_N = mkN "captivation" "captivations" ;
+lin captive_A = mkAMost "captive" "captively" ;
+lin captive_N = mkN "captive" "captives" ;
+lin captivity_N = mkN "captivity" "captivities" ;
+lin captopril_N = mkN "captopril" "captoprils" ;
+lin captor_N = mkN "captor" "captors" ;
+lin capture_N = mkN "capture" "captures" ;
+lin capture_V = mkV "capture" "captured" "captured" ;
+lin capuchin_N = mkN "capuchin" "capuchins" ;
+lin capulin_N = mkN "capulin" "capulins" ;
+lin caput_N = mkN "caput" "caputs" ;
+lin capybara_N = mkN "capybara" "capybaras" ;
+lin car_N = mkN "car" "cars" ;
+lin car_ferry_N = mkN "car-ferry" "car-ferries" ;
+lin carabao_N = mkN "carabao" "carabaoes" ;
+lin carabiner_N = mkN "carabiner" "carabiners" ;
+lin caracal_N = mkN "caracal" "caracals" ;
+lin caracara_N = mkN "caracara" "caracaras" ;
+lin caracolito_N = mkN "caracolito" "caracolitoes" ;
+lin carafe_N = mkN "carafe" "carafes" ;
+lin carambola_N = mkN "carambola" "carambolas" ;
+lin caramel_A = mkAMost "caramel" "caramelly" ;
+lin caramel_N = mkN "caramel" "caramels" ;
+lin carancha_N = mkN "carancha" "caranchas" ;
+lin caranday_N = mkN "caranday" "carandays" ;
+lin carangid_A = mkAMost "carangid" "carangidly" ;
+lin carapace_N = mkN "carapace" "carapaces" ;
+lin carat_N = mkN "carat" "carats" ;
+lin caravan_N = mkN "caravan" "caravans" ;
+lin caravanning_N = mkN "caravanning" "caravannings" ;
+lin caravansary_N = mkN "caravansary" "caravansaries" ;
+lin caravanserai_N = mkN "caravanserai" "caravanserais" ;
+lin caraway_N = mkN "caraway" "caraways" ;
+lin carbamate_N = mkN "carbamate" "carbamates" ;
+lin carbide_N = mkN "carbide" "carbides" ;
+lin carbine_N = mkN "carbine" "carbines" ;
+lin carbineer_N = mkN "carbineer" "carbineers" ;
+lin carbocyclic_A = mkAMost "carbocyclic" "carbocyclicly" ;
+lin carbohydrate_N = mkN "carbohydrate" "carbohydrates" ;
+lin carbolated_A = mkAMost "carbolated" "carbolatedly" ;
+lin carbolic_A = mkAMost "carbolic" "carbolicly" ;
+lin carbomycin_N = mkN "carbomycin" "carbomycins" ;
+lin carbon_N = mkN "carbon" "carbons" ;
+lin carbon_paper_N = mkN "carbon-paper" "carbon-papers" ;
+lin carbonaceous_A = mkAMost "carbonaceous" "carbonaceously" ;
+lin carbonado_N = mkN "carbonado" "carbonadoes" ;
+lin carbonara_N = mkN "carbonara" "carbonaras" ;
+lin carbonate_N = mkN "carbonate" "carbonates" ;
+lin carbonated_A = mkAMost "carbonated" "carbonatedly" ;
+lin carbonation_N = mkN "carbonation" "carbonations" ;
+lin carbonic_A = mkAMost "carbonic" "carbonicly" ;
+lin carboniferous_A = mkAMost "carboniferous" "carboniferously" ;
+lin carbonization_N = mkN "carbonization" "carbonizations" ;
+lin carbonize_V = mkV "carbonize" "carbonized" "carbonized" ;
+lin carbonyl_A = mkAMost "carbonyl" "carbonylly" ;
+lin carbonyl_N = mkN "carbonyl" "carbonyls" ;
+lin carborundum_N = mkN "carborundum" "carborundums" ;
+lin carboxyl_A = mkAMost "carboxyl" "carboxylly" ;
+lin carboxyl_N = mkN "carboxyl" "carboxyls" ;
+lin carboy_N = mkN "carboy" "carboys" ;
+lin carbuncle_N = mkN "carbuncle" "carbuncles" ;
+lin carbuncled_A = mkAMost "carbuncled" "carbuncledly" ;
+lin carburetor_N = mkN "carburetor" "carburetors" ;
+lin carburettor_N = mkN "carburettor" "carburettors" ;
+lin carcase_N = mkN "carcase" "carcases" ;
+lin carcass_N = mkN "carcass" "carcasses" ;
+lin carcinogen_N = mkN "carcinogen" "carcinogens" ;
+lin carcinogenic_A = mkAMost "carcinogenic" "carcinogenicly" ;
+lin carcinoid_N = mkN "carcinoid" "carcinoids" ;
+lin carcinoma_N = mkN "carcinoma" "carcinomas" ;
+lin carcinomatous_A = mkAMost "carcinomatous" "carcinomatously" ;
+lin carcinosarcoma_N = mkN "carcinosarcoma" "carcinosarcomas" ;
+lin card_N = mkN "card" "cards" ;
+lin card_V = mkV "card" "carded" "carded" ;
+lin card_sharper_N = mkN "card-sharper" "card-sharpers" ;
+lin cardamom_N = mkN "cardamom" "cardamoms" ;
+lin cardboard_A = mkAMost "cardboard" "cardboardly" ;
+lin cardboard_N = mkN "cardboard" "cardboards" ;
+lin cardcase_N = mkN "cardcase" "cardcases" ;
+lin cardholder_N = mkN "cardholder" "cardholders" ;
+lin cardia_N = mkN "cardia" "cardias" ;
+lin cardiac_A = mkAMost "cardiac" "cardiacly" ;
+lin cardigan_N = mkN "cardigan" "cardigans" ;
+lin cardinal_A = mkAMost "cardinal" "cardinally" ;
+lin cardinal_N = mkN "cardinal" "cardinals" ;
+lin cardinalate_N = mkN "cardinalate" "cardinalates" ;
+lin cardinalfish_N = mkN "cardinalfish" "cardinalfishes" ;
+lin cardinality_N = mkN "cardinality" "cardinalities" ;
+lin cardinalship_N = mkN "cardinalship" "cardinalships" ;
+lin cardiograph_N = mkN "cardiograph" "cardiographs" ;
+lin cardiographic_A = mkAMost "cardiographic" "cardiographicly" ;
+lin cardiography_N = mkN "cardiography" "cardiographies" ;
+lin cardioid_N = mkN "cardioid" "cardioids" ;
+lin cardiologic_A = mkAMost "cardiologic" "cardiologicly" ;
+lin cardiologist_N = mkN "cardiologist" "cardiologists" ;
+lin cardiology_N = mkN "cardiology" "cardiologies" ;
+lin cardiomegaly_N = mkN "cardiomegaly" "cardiomegalies" ;
+lin cardiomyopathy_N = mkN "cardiomyopathy" "cardiomyopathies" ;
+lin cardiopulmonary_A = mkAMost "cardiopulmonary" "cardiopulmonarily" ;
+lin cardiospasm_N = mkN "cardiospasm" "cardiospasms" ;
+lin cardiovascular_A = mkAMost "cardiovascular" "cardiovascularly" ;
+lin carditis_N = mkN "carditis" "carditises" ;
+lin cardoon_N = mkN "cardoon" "cardoons" ;
+lin cardroom_N = mkN "cardroom" "cardrooms" ;
+lin cardsharp_N = mkN "cardsharp" "cardsharps" ;
+lin care_N = mkN "care" "cares" ;
+lin care_V = mkV "care" "cared" "cared" ;
+lin careen_V = mkV "careen" "careened" "careened" ;
+lin career_N = mkN "career" "careers" ;
+lin career_V = mkV "career" "careered" "careered" ;
+lin careerism_N = mkN "careerism" "careerisms" ;
+lin careerist_N = mkN "careerist" "careerists" ;
+lin carefree_A = mkAMost "carefree" "carefreely" ;
+lin carefreeness_N = mkN "carefreeness" "carefreenesses" ;
+lin careful_A = mkAMost "careful" "carefully" ;
+lin carefulness_N = mkN "carefulness" "carefulnesses" ;
+lin caregiver_N = mkN "caregiver" "caregivers" ;
+lin careladen_A = mkAMost "careladen" "careladenly" ;
+lin careless_A = mkAMost "careless" "carelessly" ;
+lin carelessness_N = mkN "carelessness" "carelessnesses" ;
+lin caress_N = mkN "caress" "caresses" ;
+lin caress_V = mkV "caress" "caressed" "caressed" ;
+lin caressing_A = mkAMost "caressing" "caressingly" ;
+lin caressing_N = mkN "caressing" "caressings" ;
+lin caret_N = mkN "caret" "carets" ;
+lin caretaker_N = mkN "caretaker" "caretakers" ;
+lin careworn_A = mkAMost "careworn" "carewornly" ;
+lin carful_N = mkN "carful" "carfuls" ;
+lin cargo_N = mkN "cargo" "cargoes" ;
+lin carhop_N = mkN "carhop" "carhops" ;
+lin caribou_N = mkN "caribou" "caribou" ;
+lin caricature_N = mkN "caricature" "caricatures" ;
+lin caricature_V = mkV "caricature" "caricatured" "caricatured" ;
+lin caricaturist_N = mkN "caricaturist" "caricaturists" ;
+lin caries_N = mkN "caries" "carieses" ;
+lin carillon_N = mkN "carillon" "carillons" ;
+lin carillonneur_N = mkN "carillonneur" "carillonneurs" ;
+lin carina_N = mkN "carina" "carinas" ;
+lin carinal_A = mkAMost "carinal" "carinally" ;
+lin carinate_N = mkN "carinate" "carinates" ;
+lin carioca_N = mkN "carioca" "cariocas" ;
+lin carious_A = mkAMost "carious" "cariously" ;
+lin carissa_N = mkN "carissa" "carissas" ;
+lin carjacking_N = mkN "carjacking" "carjackings" ;
+lin carload_N = mkN "carload" "carloads" ;
+lin carminative_A = mkAMost "carminative" "carminatively" ;
+lin carminative_N = mkN "carminative" "carminatives" ;
+lin carmine_A = mkAMost "carmine" "carminely" ;
+lin carmine_N = mkN "carmine" "carmines" ;
+lin carnage_N = mkN "carnage" "carnages" ;
+lin carnal_A = mkAMost "carnal" "carnally" ;
+lin carnallite_N = mkN "carnallite" "carnallites" ;
+lin carnassial_A = mkAMost "carnassial" "carnassially" ;
+lin carnation_A = mkAMost "carnation" "carnationly" ;
+lin carnation_N = mkN "carnation" "carnations" ;
+lin carnauba_N = mkN "carnauba" "carnaubas" ;
+lin carnelian_N = mkN "carnelian" "carnelians" ;
+lin carnival_N = mkN "carnival" "carnivals" ;
+lin carnivore_N = mkN "carnivore" "carnivores" ;
+lin carnivorous_A = mkAMost "carnivorous" "carnivorously" ;
+lin carnosaur_N = mkN "carnosaur" "carnosaurs" ;
+lin carnotite_N = mkN "carnotite" "carnotites" ;
+lin carob_N = mkN "carob" "carobs" ;
+lin caroche_N = mkN "caroche" "caroches" ;
+lin carol_N = mkN "carol" "carols" ;
+lin carol_V = mkV "carol" "carolled" "carolled" ;
+lin caroler_N = mkN "caroler" "carolers" ;
+lin caroling_N = mkN "caroling" "carolings" ;
+lin caroller_N = mkN "caroller" "carollers" ;
+lin carom_N = mkN "carom" "caroms" ;
+lin carotene_N = mkN "carotene" "carotenes" ;
+lin carotenemia_N = mkN "carotenemia" "carotenemias" ;
+lin carotenoid_N = mkN "carotenoid" "carotenoids" ;
+lin carotid_A = mkAMost "carotid" "carotidly" ;
+lin carousal_N = mkN "carousal" "carousals" ;
+lin carouse_N = mkN "carouse" "carouses" ;
+lin carouse_V = mkV "carouse" "caroused" "caroused" ;
+lin carousel_N = mkN "carousel" "carousels" ;
+lin carp_N = mkN "carp" "carp" ;
+lin carp_V = mkV "carp" "carped" "carped" ;
+lin carpal_A = mkAMost "carpal" "carpally" ;
+lin carpal_N = mkN "carpal" "carpals" ;
+lin carpel_N = mkN "carpel" "carpels" ;
+lin carpellary_A = mkAMost "carpellary" "carpellarily" ;
+lin carpellate_A = mkAMost "carpellate" "carpellately" ;
+lin carpenter_N = mkN "carpenter" "carpenters" ;
+lin carpenteria_N = mkN "carpenteria" "carpenterias" ;
+lin carpentry_N = mkN "carpentry" "carpentries" ;
+lin carper_N = mkN "carper" "carpers" ;
+lin carpet_N = mkN "carpet" "carpets" ;
+lin carpet_V = mkV "carpet" "carpeted" "carpeted" ;
+lin carpet_beater_N = mkN "carpet-beater" "carpet-beaters" ;
+lin carpet_knight_N = mkN "carpet-knight" "carpet-knights" ;
+lin carpet_sweeper_N = mkN "carpet-sweeper" "carpet-sweepers" ;
+lin carpetbag_A = mkAMost "carpetbag" "carpetbagly" ;
+lin carpetbag_N = mkN "carpetbag" "carpetbags" ;
+lin carpetbagger_N = mkN "carpetbagger" "carpetbaggers" ;
+lin carpetweed_N = mkN "carpetweed" "carpetweeds" ;
+lin carpophagous_A = mkAMost "carpophagous" "carpophagously" ;
+lin carpophore_N = mkN "carpophore" "carpophores" ;
+lin carport_N = mkN "carport" "carports" ;
+lin carpospore_N = mkN "carpospore" "carpospores" ;
+lin carposporic_A = mkAMost "carposporic" "carposporicly" ;
+lin carposporous_A = mkAMost "carposporous" "carposporously" ;
+lin carrack_N = mkN "carrack" "carracks" ;
+lin carrageenin_N = mkN "carrageenin" "carrageenins" ;
+lin carrel_N = mkN "carrel" "carrels" ;
+lin carriage_N = mkN "carriage" "carriages" ;
+lin carriageway_N = mkN "carriageway" "carriageways" ;
+lin carried_V = mkV "carried" "carriedded" "carriedded" ;
+lin carrier_N = mkN "carrier" "carriers" ;
+lin carrier_bag_N = mkN "carrier-bag" "carrier-bags" ;
+lin carrier_pigeon_N = mkN "carrier-pigeon" "carrier-pigeons" ;
+lin carrion_N = mkN "carrion" "carrions" ;
+lin carrion_crow_N = mkN "carrion-crow" "carrion-crows" ;
+lin carrot_N = mkN "carrot" "carrots" ;
+lin carroty_A = mkAMost "carroty" "carrotily" ;
+lin carry_N = mkN "carry" "carries" ;
+lin carry_V = mkV "carry" "carried" "carried" ;
+lin carryall_N = mkN "carryall" "carryalls" ;
+lin carrycot_N = mkN "carrycot" "carrycots" ;
+lin carsick_A = mkAMost "carsick" "carsickly" ;
+lin carsickness_N = mkN "carsickness" "carsicknesses" ;
+lin cart_N = mkN "cart" "carts" ;
+lin cart_V = mkV "cart" "carted" "carted" ;
+lin cart_track_N = mkN "cart-track" "cart-tracks" ;
+lin cartage_N = mkN "cartage" "cartages" ;
+lin carte_blanche_N = mkN "carte blanche" "cartes blanches" ;
+lin cartel_N = mkN "cartel" "cartels" ;
+lin carter_N = mkN "carter" "carters" ;
+lin carthorse_N = mkN "carthorse" "carthorses" ;
+lin cartilage_N = mkN "cartilage" "cartilages" ;
+lin cartilaginification_N = mkN "cartilaginification" "cartilaginifications" ;
+lin cartilaginous_A = mkAMost "cartilaginous" "cartilaginously" ;
+lin cartload_N = mkN "cartload" "cartloads" ;
+lin cartographer_N = mkN "cartographer" "cartographers" ;
+lin cartographic_A = mkAMost "cartographic" "cartographicly" ;
+lin cartography_N = mkN "cartography" "cartographies" ;
+lin carton_N = mkN "carton" "cartons" ;
+lin cartoon_N = mkN "cartoon" "cartoons" ;
+lin cartoon_V = mkV "cartoon" "cartooned" "cartooned" ;
+lin cartoonist_N = mkN "cartoonist" "cartoonists" ;
+lin cartouche_N = mkN "cartouche" "cartouches" ;
+lin cartridge_N = mkN "cartridge" "cartridges" ;
+lin cartridge_belt_N = mkN "cartridge-belt" "cartridge-belts" ;
+lin cartridge_paper_N = mkN "cartridge-paper" "cartridge-papers" ;
+lin cartroad_N = mkN "cartroad" "cartroads" ;
+lin cartwheel_N = mkN "cartwheel" "cartwheels" ;
+lin cartwright_N = mkN "cartwright" "cartwrights" ;
+lin caruncle_N = mkN "caruncle" "caruncles" ;
+lin caruncular_A = mkAMost "caruncular" "caruncularly" ;
+lin carunculate_A = mkAMost "carunculate" "carunculately" ;
+lin carve_V = mkV "carve" "carved" "carved" ;
+lin carvedilol_N = mkN "carvedilol" "carvedilols" ;
+lin carver_N = mkN "carver" "carvers" ;
+lin carving_N = mkN "carving" "carvings" ;
+lin carving_fork_N = mkN "carving-fork" "carving-forks" ;
+lin carving_knife_N = mkN "carving-knife" "carving-knives" ;
+lin caryatid_N = mkN "caryatid" "caryatids" ;
+lin caryophyllaceous_A = mkAMost "caryophyllaceous" "caryophyllaceously" ;
+lin casaba_N = mkN "casaba" "casabas" ;
+lin cascade_N = mkN "cascade" "cascades" ;
+lin cascade_V = mkV "cascade" "cascaded" "cascaded" ;
+lin cascara_N = mkN "cascara" "cascaras" ;
+lin cascarilla_N = mkN "cascarilla" "cascarillas" ;
+lin case_N = mkN "case" "cases" ;
+lin case_V = mkV "case" "cased" "cased" ;
+lin case_hardened_A = mkAMost "case-hardened" "case-hardenedly" ;
+lin case_history_N = mkN "case-history" "case-histories" ;
+lin case_law_N = mkN "case-law" "case-laws" ;
+lin casebook_A = mkAMost "casebook" "casebookly" ;
+lin casebook_N = mkN "casebook" "casebooks" ;
+lin casein_N = mkN "casein" "caseins" ;
+lin casement_N = mkN "casement" "casements" ;
+lin caseous_A = mkAMost "caseous" "caseously" ;
+lin casern_N = mkN "casern" "caserns" ;
+lin casework_N = mkN "casework" "caseworks" ;
+lin caseworm_N = mkN "caseworm" "caseworms" ;
+lin cash_N = mkN "cash" "cashes" ;
+lin cash_V = mkV "cash" "cashed" "cashed" ;
+lin cashable_A = mkAMost "cashable" "cashably" ;
+lin cashbox_N = mkN "cashbox" "cashboxes" ;
+lin cashew_N = mkN "cashew" "cashews" ;
+lin cashier_N = mkN "cashier" "cashiers" ;
+lin cashier_V = mkV "cashier" "cashiered" "cashiered" ;
+lin cashmere_N = mkN "cashmere" "cashmeres" ;
+lin casing_N = mkN "casing" "casings" ;
+lin casino_N = mkN "casino" "casinos" ;
+lin cask_N = mkN "cask" "casks" ;
+lin casket_N = mkN "casket" "caskets" ;
+lin caspase_N = mkN "caspase" "caspases" ;
+lin casque_N = mkN "casque" "casques" ;
+lin casquet_N = mkN "casquet" "casquets" ;
+lin cassareep_N = mkN "cassareep" "cassareeps" ;
+lin cassava_N = mkN "cassava" "cassavas" ;
+lin casserole_N = mkN "casserole" "casseroles" ;
+lin cassette_N = mkN "cassette" "cassettes" ;
+lin cassia_N = mkN "cassia" "cassias" ;
+lin cassiri_N = mkN "cassiri" "cassiris" ;
+lin cassiterite_N = mkN "cassiterite" "cassiterites" ;
+lin cassock_N = mkN "cassock" "cassocks" ;
+lin cassocked_A = mkAMost "cassocked" "cassockedly" ;
+lin cassowary_N = mkN "cassowary" "cassowaries" ;
+lin cast_N = mkN "cast" "casts" ;
+lin cast_cast_V = mkV "cast" "cast" "cast" ;
+lin cast_casted_V = mkV "cast" "casted" "casted" ;
+lin cast_iron_A = mkAMost "cast-iron" "cast-ironly" ;
+lin cast_off_A = mkAMost "cast-off" "cast-offly" ;
+lin castaway_N = mkN "castaway" "castaways" ;
+lin caste_N = mkN "caste" "castes" ;
+lin castellated_A = mkAMost "castellated" "castellatedly" ;
+lin caster_N = mkN "caster" "casters" ;
+lin castigate_V = mkV "castigate" "castigated" "castigated" ;
+lin castigation_N = mkN "castigation" "castigations" ;
+lin casting_N = mkN "casting" "castings" ;
+lin castle_N = mkN "castle" "castles" ;
+lin castle_V = mkV "castle" "castled" "castled" ;
+lin castor_N = mkN "castor" "castors" ;
+lin castor_oil_N = mkN "castor oil" "castor oils" ;
+lin castrate_V = mkV "castrate" "castrated" "castrated" ;
+lin castration_N = mkN "castration" "castrations" ;
+lin castrato_N = mkN "castrato" "castratoes" ;
+lin casual_A = mkAMost "casual" "casually" ;
+lin casualness_N = mkN "casualness" "casualnesses" ;
+lin casualty_N = mkN "casualty" "casualties" ;
+lin casuarina_N = mkN "casuarina" "casuarinas" ;
+lin casuist_N = mkN "casuist" "casuists" ;
+lin casuistic_A = mkAMost "casuistic" "casuisticly" ;
+lin casuistical_A = mkAMost "casuistical" "casuistically" ;
+lin casuistry_N = mkN "casuistry" "casuistries" ;
+lin casus_belli_N = mkN "casus belli" "casus belli" ;
+lin cat_N = mkN "cat" "cats" ;
+lin cat_nap_N = mkN "cat-nap" "cat-naps" ;
+lin cat_o'_nine_tails_N = mkN "cat-o'-nine-tails" "IRREG" ;
+lin cat_sleep_N = mkN "cat-sleep" "cat-sleeps" ;
+lin catabiosis_N = mkN "catabiosis" "catabiosises" ;
+lin catabolic_A = mkAMost "catabolic" "catabolicly" ;
+lin catabolism_N = mkN "catabolism" "catabolisms" ;
+lin catachresis_N = mkN "catachresis" "catachresises" ;
+lin catachrestic_A = mkAMost "catachrestic" "catachresticly" ;
+lin cataclinal_A = mkAMost "cataclinal" "cataclinally" ;
+lin cataclysm_N = mkN "cataclysm" "cataclysms" ;
+lin cataclysmal_A = mkAMost "cataclysmal" "cataclysmally" ;
+lin cataclysmic_A = mkAMost "cataclysmic" "cataclysmicly" ;
+lin catacomb_N = mkN "catacomb" "catacombs" ;
+lin catacorner_A = mkAMost "catacorner" "catacornerly" ;
+lin catadromous_A = mkAMost "catadromous" "catadromously" ;
+lin catafalque_N = mkN "catafalque" "catafalques" ;
+lin catalan_A = mkAMost "catalan" "catalanly" ;
+lin catalan_N = mkN "catalan" "catalans" ;
+lin catalase_N = mkN "catalase" "catalases" ;
+lin catalatic_A = mkAMost "catalatic" "catalaticly" ;
+lin catalectic_A = mkAMost "catalectic" "catalecticly" ;
+lin catalectic_N = mkN "catalectic" "catalectics" ;
+lin catalepsy_N = mkN "catalepsy" "catalepsies" ;
+lin cataleptic_A = mkAMost "cataleptic" "catalepticly" ;
+lin cataleptic_N = mkN "cataleptic" "cataleptics" ;
+lin catalexis_N = mkN "catalexis" "catalexises" ;
+lin catalog_N = mkN "catalog" "catalogs" ;
+lin catalog_V = mkV "catalog" "catalogged" "catalogged" ;
+lin cataloger_N = mkN "cataloger" "catalogers" ;
+lin catalogue_N = mkN "catalogue" "catalogues" ;
+lin catalogue_V = mkV "catalogue" "catalogued" "catalogued" ;
+lin catalpa_N = mkN "catalpa" "catalpas" ;
+lin catalufa_N = mkN "catalufa" "catalufas" ;
+lin catalysis_N = mkN "catalysis" "catalysises" ;
+lin catalyst_N = mkN "catalyst" "catalysts" ;
+lin catalytic_A = mkAMost "catalytic" "catalyticly" ;
+lin catalytically_Adv = mkAdv "catalytically" ;
+lin catamaran_N = mkN "catamaran" "catamarans" ;
+lin catamite_N = mkN "catamite" "catamites" ;
+lin catananche_N = mkN "catananche" "catananches" ;
+lin cataphasia_N = mkN "cataphasia" "cataphasias" ;
+lin cataphatic_A = mkAMost "cataphatic" "cataphaticly" ;
+lin cataphatism_N = mkN "cataphatism" "cataphatisms" ;
+lin cataphyll_N = mkN "cataphyll" "cataphylls" ;
+lin cataplasia_N = mkN "cataplasia" "cataplasias" ;
+lin cataplastic_A = mkAMost "cataplastic" "cataplasticly" ;
+lin catapult_N = mkN "catapult" "catapults" ;
+lin catapult_V = mkV "catapult" "catapulted" "catapulted" ;
+lin catapultic_A = mkAMost "catapultic" "catapulticly" ;
+lin cataract_N = mkN "cataract" "cataracts" ;
+lin catarrh_N = mkN "catarrh" "catarrhs" ;
+lin catarrhal_A = mkAMost "catarrhal" "catarrhally" ;
+lin catarrhine_A = mkAMost "catarrhine" "catarrhinely" ;
+lin catastrophe_N = mkN "catastrophe" "catastrophes" ;
+lin catastrophic_A = mkAMost "catastrophic" "catastrophicly" ;
+lin catastrophically_Adv = mkAdv "catastrophically" ;
+lin catatonia_N = mkN "catatonia" "catatonias" ;
+lin catatonic_A = mkAMost "catatonic" "catatonicly" ;
+lin catbird_N = mkN "catbird" "catbirds" ;
+lin catboat_N = mkN "catboat" "catboats" ;
+lin catcall_N = mkN "catcall" "catcalls" ;
+lin catcall_V = mkV "catcall" "catcalled" "catcalled" ;
+lin catch_N = mkN "catch" "catches" ;
+lin catch_V = mkV "catch" "caught" "caught" ;
+lin catch_crop_N = mkN "catch-crop" "catch-crops" ;
+lin catchall_N = mkN "catchall" "catchalls" ;
+lin catcher_N = mkN "catcher" "catchers" ;
+lin catching_N = mkN "catching" "catchings" ;
+lin catchment_N = mkN "catchment" "catchments" ;
+lin catchment_area_N = mkN "catchment-area" "catchment-areas" ;
+lin catchment_basin_N = mkN "catchment-basin" "catchment-basins" ;
+lin catchpenny_A = mkAMost "catchpenny" "catchpennily" ;
+lin catchphrase_N = mkN "catchphrase" "catchphrases" ;
+lin catchup_N = mkN "catchup" "catchups" ;
+lin catchword_N = mkN "catchword" "catchwords" ;
+lin catchy_A = mkA "catchy" "catchier" "catchiest" "catchily" ;
+lin catechesis_N = mkN "catechesis" "catechesises" ;
+lin catechetical_A = mkAMost "catechetical" "catechetically" ;
+lin catechin_N = mkN "catechin" "catechins" ;
+lin catechism_N = mkN "catechism" "catechisms" ;
+lin catechismal_A = mkAMost "catechismal" "catechismally" ;
+lin catechist_N = mkN "catechist" "catechists" ;
+lin catechistic_A = mkAMost "catechistic" "catechisticly" ;
+lin catechize_V = mkV "catechize" "catechized" "catechized" ;
+lin catecholamine_N = mkN "catecholamine" "catecholamines" ;
+lin catechu_N = mkN "catechu" "catechus" ;
+lin catechumen_N = mkN "catechumen" "catechumens" ;
+lin categorem_N = mkN "categorem" "categorems" ;
+lin categorematic_A = mkAMost "categorematic" "categorematicly" ;
+lin categorial_A = mkAMost "categorial" "categorially" ;
+lin categoric_A = mkAMost "categoric" "categoricly" ;
+lin categorical_A = mkAMost "categorical" "categorically" ;
+lin categorization_N = mkN "categorization" "categorizations" ;
+lin categorize_V = mkV "categorize" "categorized" "categorized" ;
+lin category_N = mkN "category" "categories" ;
+lin catena_N = mkN "catena" "catenas" ;
+lin catenary_N = mkN "catenary" "catenaries" ;
+lin catenulate_A = mkAMost "catenulate" "catenulately" ;
+lin cater_V = mkV "cater" "catered" "catered" ;
+lin caterer_N = mkN "caterer" "caterers" ;
+lin catering_N = mkN "catering" "caterings" ;
+lin caterpillar_N = mkN "caterpillar" "caterpillars" ;
+lin caterwaul_N = mkN "caterwaul" "caterwauls" ;
+lin caterwaul_V = mkV "caterwaul" "caterwauled" "caterwauled" ;
+lin catfish_N = mkN "catfish" "catfish" ;
+lin catgut_N = mkN "catgut" "catguts" ;
+lin catharsis_N = mkN "catharsis" "catharses" ;
+lin cathartic_A = mkAMost "cathartic" "catharticly" ;
+lin cathartic_N = mkN "cathartic" "cathartics" ;
+lin cathectic_A = mkAMost "cathectic" "cathecticly" ;
+lin cathedra_N = mkN "cathedra" "cathedras" ;
+lin cathedral_A = mkAMost "cathedral" "cathedrally" ;
+lin cathedral_N = mkN "cathedral" "cathedrals" ;
+lin catheter_N = mkN "catheter" "catheters" ;
+lin catheterization_N = mkN "catheterization" "catheterizations" ;
+lin cathexis_N = mkN "cathexis" "cathexises" ;
+lin cathode_N = mkN "cathode" "cathodes" ;
+lin cathodic_A = mkAMost "cathodic" "cathodicly" ;
+lin catholicism_N = mkN "catholicism" "catholicisms" ;
+lin catholicity_N = mkN "catholicity" "catholicities" ;
+lin cation_N = mkN "cation" "cations" ;
+lin cationic_A = mkAMost "cationic" "cationicly" ;
+lin catkin_N = mkN "catkin" "catkins" ;
+lin catkinate_A = mkAMost "catkinate" "catkinately" ;
+lin catling_N = mkN "catling" "catlings" ;
+lin catmint_N = mkN "catmint" "catmints" ;
+lin catoptric_A = mkAMost "catoptric" "catoptricly" ;
+lin catoptrics_N = mkN "catoptrics" "catoptricses" ;
+lin catostomid_N = mkN "catostomid" "catostomids" ;
+lin catsup_N = mkN "catsup" "catsups" ;
+lin cattail_N = mkN "cattail" "cattails" ;
+lin cattalo_N = mkN "cattalo" "cattaloes" ;
+lin cattiness_N = mkN "cattiness" "cattinesses" ;
+lin cattish_A = mkAMost "cattish" "cattishly" ;
+lin cattle_N = mkN "cattle" "cattles" ;
+lin cattle_cake_N = mkN "cattle-cake" "cattle-cakes" ;
+lin cattleman_N = mkN "cattleman" "cattlemen" ;
+lin cattleship_N = mkN "cattleship" "cattleships" ;
+lin cattleya_N = mkN "cattleya" "cattleyas" ;
+lin catty_A = mkA "catty" "cattier" "cattiest" "cattily" ;
+lin catty_N = mkN "catty" "catties" ;
+lin catwalk_N = mkN "catwalk" "catwalks" ;
+lin caucasian_A = mkAMost "caucasian" "caucasianly" ;
+lin caucasian_N = mkN "caucasian" "caucasians" ;
+lin caucus_N = mkN "caucus" "caucuses" ;
+lin cauda_N = mkN "cauda" "caudas" ;
+lin caudal_A = mkAMost "caudal" "caudally" ;
+lin caudate_A = mkAMost "caudate" "caudately" ;
+lin caudex_N = mkN "caudex" "caudexes" ;
+lin caul_N = mkN "caul" "cauls" ;
+lin cauldron_N = mkN "cauldron" "cauldrons" ;
+lin caulescent_A = mkAMost "caulescent" "caulescently" ;
+lin cauliflower_N = mkN "cauliflower" "cauliflowers" ;
+lin cauline_A = mkAMost "cauline" "caulinely" ;
+lin caulk_N = mkN "caulk" "caulks" ;
+lin caulk_V = mkV "caulk" "caulked" "caulked" ;
+lin causal_A = mkAMost "causal" "causally" ;
+lin causalgia_N = mkN "causalgia" "causalgias" ;
+lin causality_N = mkN "causality" "causalities" ;
+lin causation_N = mkN "causation" "causations" ;
+lin causative_A = mkAMost "causative" "causatively" ;
+lin cause_N = mkN "cause" "causes" ;
+lin cause_V = mkV "cause" "caused" "caused" ;
+lin causeless_A = mkAMost "causeless" "causelessly" ;
+lin causerie_N = mkN "causerie" "causeries" ;
+lin causeway_N = mkN "causeway" "causeways" ;
+lin causing_N = mkN "causing" "causings" ;
+lin caustic_A = mkAMost "caustic" "causticly" ;
+lin caustic_N = mkN "caustic" "caustics" ;
+lin caustically_Adv = mkAdv "caustically" ;
+lin cauterize_V = mkV "cauterize" "cauterized" "cauterized" ;
+lin cautery_N = mkN "cautery" "cauteries" ;
+lin caution_N = mkN "caution" "cautions" ;
+lin caution_V = mkV "caution" "cautioned" "cautioned" ;
+lin cautionary_A = mkAMost "cautionary" "cautionarily" ;
+lin cautious_A = mkAMost "cautious" "cautiously" ;
+lin cavalcade_N = mkN "cavalcade" "cavalcades" ;
+lin cavalier_A = mkAMost "cavalier" "cavalierly" ;
+lin cavalier_N = mkN "cavalier" "cavaliers" ;
+lin cavalry_N = mkN "cavalry" "cavalries" ;
+lin cavalryman_N = mkN "cavalryman" "cavalrymen" ;
+lin cave_N = mkN "cave" "caves" ;
+lin cave_V = mkV "cave" "caved" "caved" ;
+lin cave_dweller_N = mkN "cave-dweller" "cave-dwellers" ;
+lin cave_in_N = mkN "cave-in" "cave-ins" ;
+lin caveat_N = mkN "caveat" "caveats" ;
+lin caveman_N = mkN "caveman" "cavemen" ;
+lin cavern_N = mkN "cavern" "caverns" ;
+lin cavernous_A = mkAMost "cavernous" "cavernously" ;
+lin cavetto_N = mkN "cavetto" "cavettoes" ;
+lin caviar_N = mkN "caviar" "caviars" ;
+lin caviare_N = mkN "caviare" "caviares" ;
+lin cavil_V = mkV "cavil" "cavilled" "cavilled" ;
+lin cavity_N = mkN "cavity" "cavities" ;
+lin cavort_V = mkV "cavort" "cavorted" "cavorted" ;
+lin cavy_N = mkN "cavy" "cavies" ;
+lin caw_N = mkN "caw" "caws" ;
+lin caw_V = mkV "caw" "cawed" "cawed" ;
+lin cayenne_N = mkN "cayenne" "cayennes" ;
+lin cayenne_pepper_N = mkN "cayenne pepper" "cayenne peppers" ;
+lin cayman_N = mkN "cayman" "caymans" ;
+lin cayuse_N = mkN "cayuse" "cayuses" ;
+lin cañon_N = mkN "cañon" "cañons" ;
+lin cbi_N = mkN "cbi" "cbis" ;
+lin cc_N = mkN "cc" "cc" ;
+lin cd_N = mkN "cd" "cds" ;
+lin cease_N = mkN "cease" "ceases" ;
+lin cease_V = mkV "cease" "ceased" "ceased" ;
+lin cease_fire_N = mkN "cease-fire" "cease-fires" ;
+lin ceaseless_A = mkAMost "ceaseless" "ceaselessly" ;
+lin cecal_A = mkAMost "cecal" "cecally" ;
+lin cecropia_N = mkN "cecropia" "cecropias" ;
+lin cecum_N = mkN "cecum" "cecums" ;
+lin cedar_N = mkN "cedar" "cedars" ;
+lin cedarn_A = mkAMost "cedarn" "cedarnly" ;
+lin cede_V = mkV "cede" "ceded" "ceded" ;
+lin cedi_N = mkN "cedi" "cedis" ;
+lin cedilla_N = mkN "cedilla" "cedillas" ;
+lin cefadroxil_N = mkN "cefadroxil" "cefadroxils" ;
+lin cefoperazone_N = mkN "cefoperazone" "cefoperazones" ;
+lin cefotaxime_N = mkN "cefotaxime" "cefotaximes" ;
+lin ceftazidime_N = mkN "ceftazidime" "ceftazidimes" ;
+lin ceftriaxone_N = mkN "ceftriaxone" "ceftriaxones" ;
+lin cefuroxime_N = mkN "cefuroxime" "cefuroximes" ;
+lin ceibo_N = mkN "ceibo" "ceiboes" ;
+lin ceilidh_N = mkN "ceilidh" "ceilidhs" ;
+lin ceiling_N = mkN "ceiling" "ceilings" ;
+lin ceilinged_A = mkAMost "ceilinged" "ceilingedly" ;
+lin celandine_N = mkN "celandine" "celandines" ;
+lin celebrant_N = mkN "celebrant" "celebrants" ;
+lin celebrate_A = mkAMost "celebrate" "celebrately" ;
+lin celebrate_V = mkV "celebrate" "celebrated" "celebrated" ;
+lin celebration_N = mkN "celebration" "celebrations" ;
+lin celebratory_A = mkAMost "celebratory" "celebratorily" ;
+lin celebrity_N = mkN "celebrity" "celebrities" ;
+lin celecoxib_N = mkN "celecoxib" "celecoxibs" ;
+lin celeriac_N = mkN "celeriac" "celeriacs" ;
+lin celerity_N = mkN "celerity" "celerities" ;
+lin celery_N = mkN "celery" "celeries" ;
+lin celesta_N = mkN "celesta" "celestas" ;
+lin celestial_A = mkAMost "celestial" "celestially" ;
+lin celestite_N = mkN "celestite" "celestites" ;
+lin celiac_A = mkAMost "celiac" "celiacly" ;
+lin celibacy_N = mkN "celibacy" "celibacies" ;
+lin celibate_A = mkAMost "celibate" "celibately" ;
+lin celibate_N = mkN "celibate" "celibates" ;
+lin celiocentesis_N = mkN "celiocentesis" "celiocentesises" ;
+lin celioma_N = mkN "celioma" "celiomas" ;
+lin celioscopy_N = mkN "celioscopy" "celioscopies" ;
+lin cell_N = mkN "cell" "cells" ;
+lin cellar_N = mkN "cellar" "cellars" ;
+lin cellarage_N = mkN "cellarage" "cellarages" ;
+lin cellblock_N = mkN "cellblock" "cellblocks" ;
+lin cellist_N = mkN "cellist" "cellists" ;
+lin cello_N = mkN "cello" "cellos" ;
+lin cellophane_N = mkN "cellophane" "cellophanes" ;
+lin cellular_A = mkAMost "cellular" "cellularly" ;
+lin cellularity_N = mkN "cellularity" "cellularities" ;
+lin cellulite_N = mkN "cellulite" "cellulites" ;
+lin cellulitis_N = mkN "cellulitis" "cellulitises" ;
+lin celluloid_A = mkAMost "celluloid" "celluloidly" ;
+lin celluloid_N = mkN "celluloid" "celluloids" ;
+lin cellulose_N = mkN "cellulose" "celluloses" ;
+lin cellulosic_N = mkN "cellulosic" "cellulosics" ;
+lin cellulosid_A = mkAMost "cellulosid" "cellulosidly" ;
+lin celom_N = mkN "celom" "celoms" ;
+lin celt_N = mkN "celt" "celts" ;
+lin celtic_A = mkAMost "celtic" "celticly" ;
+lin celtic_N = mkN "celtic" "celtics" ;
+lin celtuce_N = mkN "celtuce" "celtuces" ;
+lin cement_N = mkN "cement" "cements" ;
+lin cement_V = mkV "cement" "cemented" "cemented" ;
+lin cement_mixer_N = mkN "cement-mixer" "cement-mixers" ;
+lin cementite_N = mkN "cementite" "cementites" ;
+lin cementitious_A = mkAMost "cementitious" "cementitiously" ;
+lin cementum_N = mkN "cementum" "cementums" ;
+lin cemetery_N = mkN "cemetery" "cemeteries" ;
+lin cenobite_N = mkN "cenobite" "cenobites" ;
+lin cenobitic_A = mkAMost "cenobitic" "cenobiticly" ;
+lin cenogenesis_N = mkN "cenogenesis" "cenogenesises" ;
+lin cenogenetic_A = mkAMost "cenogenetic" "cenogeneticly" ;
+lin cenotaph_N = mkN "cenotaph" "cenotaphs" ;
+lin censer_N = mkN "censer" "censers" ;
+lin censor_N = mkN "censor" "censors" ;
+lin censor_V = mkV "censor" "censored" "censored" ;
+lin censorial_A = mkAMost "censorial" "censorially" ;
+lin censoring_N = mkN "censoring" "censorings" ;
+lin censorious_A = mkAMost "censorious" "censoriously" ;
+lin censorship_N = mkN "censorship" "censorships" ;
+lin censure_N = mkN "censure" "censures" ;
+lin censure_V = mkV "censure" "censured" "censured" ;
+lin census_N = mkN "census" "censuses" ;
+lin cent_N = mkN "cent" "cents" ;
+lin centas_N = mkN "centas" "centases" ;
+lin centaur_N = mkN "centaur" "centaurs" ;
+lin centaury_N = mkN "centaury" "centauries" ;
+lin centavo_N = mkN "centavo" "centavoes" ;
+lin centenarian_A = mkAMost "centenarian" "centenarianly" ;
+lin centenarian_N = mkN "centenarian" "centenarians" ;
+lin centenary_A = mkAMost "centenary" "centenarily" ;
+lin centenary_N = mkN "centenary" "centenaries" ;
+lin centennial_A = mkAMost "centennial" "centennially" ;
+lin centennial_N = mkN "centennial" "centennials" ;
+lin center_A = mkAMost "center" "centerly" ;
+lin center_N = mkN "center" "centers" ;
+lin center_V = mkV "center" "centered" "centered" ;
+lin centerboard_N = mkN "centerboard" "centerboards" ;
+lin centered_A = mkAMost "centered" "centeredly" ;
+lin centerfold_N = mkN "centerfold" "centerfolds" ;
+lin centering_N = mkN "centering" "centerings" ;
+lin centerline_N = mkN "centerline" "centerlines" ;
+lin centerpiece_N = mkN "centerpiece" "centerpieces" ;
+lin centesimal_A = mkAMost "centesimal" "centesimally" ;
+lin centesimo_N = mkN "centesimo" "centesimoes" ;
+lin centesis_N = mkN "centesis" "centesises" ;
+lin centigrade_A = mkAMost "centigrade" "centigradely" ;
+lin centiliter_N = mkN "centiliter" "centiliters" ;
+lin centime_N = mkN "centime" "centimes" ;
+lin centimeter_N = mkN "centimeter" "centimeters" ;
+lin centimetre_N = mkN "centimetre" "centimetres" ;
+lin centimo_N = mkN "centimo" "centimoes" ;
+lin centipede_N = mkN "centipede" "centipedes" ;
+lin centner_N = mkN "centner" "centners" ;
+lin central_A = mkAMost "central" "centrally" ;
+lin central_N = mkN "central" "centrals" ;
+lin centralism_N = mkN "centralism" "centralisms" ;
+lin centralist_A = mkAMost "centralist" "centralistly" ;
+lin centrality_N = mkN "centrality" "centralities" ;
+lin centralization_N = mkN "centralization" "centralizations" ;
+lin centralize_V = mkV "centralize" "centralized" "centralized" ;
+lin centre_N = mkN "centre" "centres" ;
+lin centre_V = mkV "centre" "centred" "centred" ;
+lin centre_bit_N = mkN "centre-bit" "centre-bits" ;
+lin centre_board_N = mkN "centre-board" "centre-boards" ;
+lin centrepiece_N = mkN "centrepiece" "centrepieces" ;
+lin centrex_N = mkN "centrex" "centrexes" ;
+lin centric_A = mkAMost "centric" "centricly" ;
+lin centrifugal_A = mkAMost "centrifugal" "centrifugally" ;
+lin centrifugation_N = mkN "centrifugation" "centrifugations" ;
+lin centrifuge_N = mkN "centrifuge" "centrifuges" ;
+lin centriole_N = mkN "centriole" "centrioles" ;
+lin centripetal_A = mkAMost "centripetal" "centripetally" ;
+lin centrism_N = mkN "centrism" "centrisms" ;
+lin centrist_A = mkAMost "centrist" "centristly" ;
+lin centrist_N = mkN "centrist" "centrists" ;
+lin centroid_N = mkN "centroid" "centroids" ;
+lin centroidal_A = mkAMost "centroidal" "centroidally" ;
+lin centromere_N = mkN "centromere" "centromeres" ;
+lin centromeric_A = mkAMost "centromeric" "centromericly" ;
+lin centrosome_N = mkN "centrosome" "centrosomes" ;
+lin centrosomic_A = mkAMost "centrosomic" "centrosomicly" ;
+lin centrum_N = mkN "centrum" "centrums" ;
+lin centurion_N = mkN "centurion" "centurions" ;
+lin century_N = mkN "century" "centuries" ;
+lin cephalexin_N = mkN "cephalexin" "cephalexins" ;
+lin cephalhematoma_N = mkN "cephalhematoma" "cephalhematomas" ;
+lin cephalic_A = mkAMost "cephalic" "cephalicly" ;
+lin cephalochordate_N = mkN "cephalochordate" "cephalochordates" ;
+lin cephaloglycin_N = mkN "cephaloglycin" "cephaloglycins" ;
+lin cephalometry_N = mkN "cephalometry" "cephalometries" ;
+lin cephalopod_A = mkAMost "cephalopod" "cephalopodly" ;
+lin cephalopod_N = mkN "cephalopod" "cephalopods" ;
+lin cephaloridine_N = mkN "cephaloridine" "cephaloridines" ;
+lin cephalosporin_N = mkN "cephalosporin" "cephalosporins" ;
+lin cephalothin_N = mkN "cephalothin" "cephalothins" ;
+lin ceramic_A = mkAMost "ceramic" "ceramicly" ;
+lin ceramic_N = mkN "ceramic" "ceramics" ;
+lin ceramics_N = mkN "ceramics" "ceramics" ;
+lin ceras_N = mkN "ceras" "cerases" ;
+lin cerate_N = mkN "cerate" "cerates" ;
+lin ceratodus_N = mkN "ceratodus" "ceratoduses" ;
+lin ceratopsian_N = mkN "ceratopsian" "ceratopsians" ;
+lin ceratosaur_N = mkN "ceratosaur" "ceratosaurs" ;
+lin ceratozamia_N = mkN "ceratozamia" "ceratozamias" ;
+lin cercaria_N = mkN "cercaria" "cercarias" ;
+lin cercarial_A = mkAMost "cercarial" "cercarially" ;
+lin cere_N = mkN "cere" "ceres" ;
+lin cereal_A = mkAMost "cereal" "cereally" ;
+lin cereal_N = mkN "cereal" "cereals" ;
+lin cerebellar_A = mkAMost "cerebellar" "cerebellarly" ;
+lin cerebellum_N = mkN "cerebellum" "cerebellums" ;
+lin cerebral_A = mkAMost "cerebral" "cerebrally" ;
+lin cerebration_N = mkN "cerebration" "cerebrations" ;
+lin cerebrospinal_A = mkAMost "cerebrospinal" "cerebrospinally" ;
+lin cerebrovascular_A = mkAMost "cerebrovascular" "cerebrovascularly" ;
+lin cerebrum_N = mkN "cerebrum" "cerebrums" ;
+lin cerecloth_N = mkN "cerecloth" "cerecloths" ;
+lin ceremonial_A = mkAMost "ceremonial" "ceremonially" ;
+lin ceremonial_N = mkN "ceremonial" "ceremonials" ;
+lin ceremonious_A = mkAMost "ceremonious" "ceremoniously" ;
+lin ceremoniousness_N = mkN "ceremoniousness" "ceremoniousnesses" ;
+lin ceremony_N = mkN "ceremony" "ceremonies" ;
+lin ceresin_N = mkN "ceresin" "ceresins" ;
+lin ceric_A = mkAMost "ceric" "cericly" ;
+lin ceriman_N = mkN "ceriman" "cerimans" ;
+lin cerise_A = mkAMost "cerise" "cerisely" ;
+lin cerise_N = mkN "cerise" "cerises" ;
+lin cerium_N = mkN "cerium" "ceriums" ;
+lin cerivastatin_N = mkN "cerivastatin" "cerivastatins" ;
+lin cernuous_A = mkAMost "cernuous" "cernuously" ;
+lin cero_N = mkN "cero" "ceroes" ;
+lin cerous_A = mkAMost "cerous" "cerously" ;
+lin cert_N = mkN "cert" "certs" ;
+lin certain_A = mkAMost "certain" "certainly" ;
+lin certainty_N = mkN "certainty" "certainties" ;
+lin certifiable_A = mkAMost "certifiable" "certifiably" ;
+lin certificate_N = mkN "certificate" "certificates" ;
+lin certificate_V = mkV "certificate" "certificated" "certificated" ;
+lin certification_N = mkN "certification" "certifications" ;
+lin certificatory_A = mkAMost "certificatory" "certificatorily" ;
+lin certify_V = mkV "certify" "certified" "certified" ;
+lin certiorari_N = mkN "certiorari" "certioraris" ;
+lin certitude_N = mkN "certitude" "certitudes" ;
+lin cerulean_A = mkAMost "cerulean" "ceruleanly" ;
+lin cerumen_N = mkN "cerumen" "cerumens" ;
+lin ceruminous_A = mkAMost "ceruminous" "ceruminously" ;
+lin cerussite_N = mkN "cerussite" "cerussites" ;
+lin cervical_A = mkAMost "cervical" "cervically" ;
+lin cervicitis_N = mkN "cervicitis" "cervicitises" ;
+lin cervine_A = mkAMost "cervine" "cervinely" ;
+lin cervix_N = mkN "cervix" "cervixes" ;
+lin cesarean_A = mkAMost "cesarean" "cesareanly" ;
+lin cesium_N = mkN "cesium" "cesiums" ;
+lin cessation_N = mkN "cessation" "cessations" ;
+lin cession_N = mkN "cession" "cessions" ;
+lin cesspit_N = mkN "cesspit" "cesspits" ;
+lin cesspool_N = mkN "cesspool" "cesspools" ;
+lin cetacean_A = mkAMost "cetacean" "cetaceanly" ;
+lin cetacean_N = mkN "cetacean" "cetaceans" ;
+lin cetrimide_N = mkN "cetrimide" "cetrimides" ;
+lin cgs_N = mkN "cgs" "cgses" ;
+lin chabazite_N = mkN "chabazite" "chabazites" ;
+lin chachalaca_N = mkN "chachalaca" "chachalacas" ;
+lin chachka_N = mkN "chachka" "chachkas" ;
+lin chacma_N = mkN "chacma" "chacmas" ;
+lin chad_N = mkN "chad" "chads" ;
+lin chadian_A = mkAMost "chadian" "chadianly" ;
+lin chadian_N = mkN "chadian" "chadians" ;
+lin chador_N = mkN "chador" "chadors" ;
+lin chaenactis_N = mkN "chaenactis" "chaenactises" ;
+lin chaeta_N = mkN "chaeta" "chaetas" ;
+lin chaetal_A = mkAMost "chaetal" "chaetally" ;
+lin chaetodon_N = mkN "chaetodon" "chaetodons" ;
+lin chaetognathan_A = mkAMost "chaetognathan" "chaetognathanly" ;
+lin chafe_N = mkN "chafe" "chafes" ;
+lin chafe_V = mkV "chafe" "chafed" "chafed" ;
+lin chafeweed_N = mkN "chafeweed" "chafeweeds" ;
+lin chaff_N = mkN "chaff" "chaffs" ;
+lin chaff_V = mkV "chaff" "chaffed" "chaffed" ;
+lin chaffinch_N = mkN "chaffinch" "chaffinches" ;
+lin chaffweed_N = mkN "chaffweed" "chaffweeds" ;
+lin chaffy_A = mkA "chaffy" "chaffier" "chaffiest" "chaffily" ;
+lin chafing_N = mkN "chafing" "chafings" ;
+lin chafing_dish_N = mkN "chafing dish" "chafing dishes" ;
+lin chagrin_N = mkN "chagrin" "chagrins" ;
+lin chagrin_V = mkV "chagrin" "chagrined" "chagrined" ;
+lin chain_N = mkN "chain" "chains" ;
+lin chain_V = mkV "chain" "chained" "chained" ;
+lin chain_armour_N = mkN "chain-armour" "chain-armours" ;
+lin chain_gang_N = mkN "chain-gang" "chain-gangs" ;
+lin chain_letter_N = mkN "chain-letter" "chain-letters" ;
+lin chain_mail_N = mkN "chain-mail" "chain-mails" ;
+lin chain_smoker_N = mkN "chain-smoker" "chain-smokers" ;
+lin chain_stitch_N = mkN "chain-stitch" "chain-stitches" ;
+lin chain_store_N = mkN "chain-store" "chain-stores" ;
+lin chair_N = mkN "chair" "chairs" ;
+lin chair_V = mkV "chair" "chaired" "chaired" ;
+lin chair_lift_N = mkN "chair-lift" "chair-lifts" ;
+lin chairlift_N = mkN "chairlift" "chairlifts" ;
+lin chairman_N = mkN "chairman" "chairmen" ;
+lin chairmanship_N = mkN "chairmanship" "chairmanships" ;
+lin chaise_N = mkN "chaise" "chaises" ;
+lin chaise_longue_N = mkN "chaise longue" "chaise longues" ;
+lin chaja_N = mkN "chaja" "chajas" ;
+lin chalaza_N = mkN "chalaza" "chalazas" ;
+lin chalazion_N = mkN "chalazion" "chalazions" ;
+lin chalcedony_N = mkN "chalcedony" "chalcedonies" ;
+lin chalcocite_N = mkN "chalcocite" "chalcocites" ;
+lin chalcopyrite_N = mkN "chalcopyrite" "chalcopyrites" ;
+lin chaldron_N = mkN "chaldron" "chaldrons" ;
+lin chalet_N = mkN "chalet" "chalets" ;
+lin chalice_N = mkN "chalice" "chalices" ;
+lin chalk_N = mkN "chalk" "chalks" ;
+lin chalk_V = mkV "chalk" "chalked" "chalked" ;
+lin chalkpit_N = mkN "chalkpit" "chalkpits" ;
+lin chalky_A = mkA "chalky" "chalkier" "chalkiest" "chalkily" ;
+lin challah_N = mkN "challah" "challahs" ;
+lin challenge_N = mkN "challenge" "challenges" ;
+lin challenge_V = mkV "challenge" "challenged" "challenged" ;
+lin challengeable_A = mkAMost "challengeable" "challengeably" ;
+lin challenger_N = mkN "challenger" "challengers" ;
+lin challis_N = mkN "challis" "challises" ;
+lin chalybeate_A = mkAMost "chalybeate" "chalybeately" ;
+lin chamber_N = mkN "chamber" "chambers" ;
+lin chambered_A = mkAMost "chambered" "chamberedly" ;
+lin chamberlain_N = mkN "chamberlain" "chamberlains" ;
+lin chambermaid_N = mkN "chambermaid" "chambermaids" ;
+lin chamberpot_N = mkN "chamberpot" "chamberpots" ;
+lin chambray_N = mkN "chambray" "chambrays" ;
+lin chameleon_N = mkN "chameleon" "chameleons" ;
+lin chammy_leather_N = mkN "chammy-leather" "chammy-leathers" ;
+lin chamois_N = mkN "chamois" "chamoises" ;
+lin chamois_leather_N = mkN "chamois-leather" "chamois-leathers" ;
+lin chamomile_N = mkN "chamomile" "chamomiles" ;
+lin chamosite_N = mkN "chamosite" "chamosites" ;
+lin champ_N = mkN "champ" "champs" ;
+lin champ_V = mkV "champ" "champed" "champed" ;
+lin champerty_N = mkN "champerty" "champerties" ;
+lin champion_A = mkAMost "champion" "championly" ;
+lin champion_Adv = mkAdv "champion" ;
+lin champion_N = mkN "champion" "champions" ;
+lin champion_V = mkV "champion" "championed" "championed" ;
+lin championship_N = mkN "championship" "championships" ;
+lin champleve_A = mkAMost "champleve" "champlevely" ;
+lin chanar_N = mkN "chanar" "chanars" ;
+lin chance_N = mkN "chance" "chances" ;
+lin chance_V = mkV "chance" "chanced" "chanced" ;
+lin chancel_N = mkN "chancel" "chancels" ;
+lin chancellery_N = mkN "chancellery" "chancelleries" ;
+lin chancellor_N = mkN "chancellor" "chancellors" ;
+lin chancellorship_N = mkN "chancellorship" "chancellorships" ;
+lin chancery_N = mkN "chancery" "chanceries" ;
+lin chancre_N = mkN "chancre" "chancres" ;
+lin chancroid_N = mkN "chancroid" "chancroids" ;
+lin chancroidal_A = mkAMost "chancroidal" "chancroidally" ;
+lin chancrous_A = mkAMost "chancrous" "chancrously" ;
+lin chancy_A = mkAMost "chancy" "chancily" ;
+lin chandelier_N = mkN "chandelier" "chandeliers" ;
+lin chandelle_N = mkN "chandelle" "chandelles" ;
+lin chandler_N = mkN "chandler" "chandlers" ;
+lin chandlery_N = mkN "chandlery" "chandleries" ;
+lin chanfron_N = mkN "chanfron" "chanfrons" ;
+lin change_N = mkN "change" "changes" ;
+lin change_V = mkV "change" "changed" "changed" ;
+lin changeable_A = mkAMost "changeable" "changeably" ;
+lin changeableness_N = mkN "changeableness" "changeablenesses" ;
+lin changeful_A = mkAMost "changeful" "changefully" ;
+lin changeless_A = mkAMost "changeless" "changelessly" ;
+lin changelessness_N = mkN "changelessness" "changelessnesses" ;
+lin changeling_N = mkN "changeling" "changelings" ;
+lin changeover_N = mkN "changeover" "changeovers" ;
+lin changer_N = mkN "changer" "changers" ;
+lin channel_N = mkN "channel" "channels" ;
+lin channel_V = mkV "channel" "channelled" "channelled" ;
+lin channelization_N = mkN "channelization" "channelizations" ;
+lin channels_N = mkN "channels" "channelses" ;
+lin chant_N = mkN "chant" "chants" ;
+lin chant_V = mkV "chant" "chanted" "chanted" ;
+lin chanter_N = mkN "chanter" "chanters" ;
+lin chanterelle_N = mkN "chanterelle" "chanterelles" ;
+lin chantey_N = mkN "chantey" "chanteys" ;
+lin chantlike_A = mkAMost "chantlike" "chantlikely" ;
+lin chantry_N = mkN "chantry" "chantries" ;
+lin chaos_N = mkN "chaos" "chaoses" ;
+lin chaotic_A = mkAMost "chaotic" "chaoticly" ;
+lin chaotically_Adv = mkAdv "chaotically" ;
+lin chap_N = mkN "chap" "chaps" ;
+lin chap_V = mkV "chap" "chapped" "chapped" ;
+lin chapatti_N = mkN "chapatti" "chapattis" ;
+lin chapel_N = mkN "chapel" "chapels" ;
+lin chapelgoer_N = mkN "chapelgoer" "chapelgoers" ;
+lin chaperon_N = mkN "chaperon" "chaperons" ;
+lin chaperon_V = mkV "chaperon" "chaperoned" "chaperoned" ;
+lin chapfallen_A = mkAMost "chapfallen" "chapfallenly" ;
+lin chaplain_N = mkN "chaplain" "chaplains" ;
+lin chaplaincy_N = mkN "chaplaincy" "chaplaincies" ;
+lin chaplet_N = mkN "chaplet" "chaplets" ;
+lin chapleted_A = mkAMost "chapleted" "chapletedly" ;
+lin chapman_N = mkN "chapman" "chapmen" ;
+lin chapter_N = mkN "chapter" "chapters" ;
+lin chapterhouse_N = mkN "chapterhouse" "chapterhouses" ;
+lin char_N = mkN "char" "chars" ;
+lin char_V = mkV "char" "charred" "charred" ;
+lin charabanc_N = mkN "charabanc" "charabancs" ;
+lin characin_N = mkN "characin" "characins" ;
+lin character_N = mkN "character" "characters" ;
+lin characterisation_N = mkN "characterisation" "characterisations" ;
+lin characteristic_A = mkAMost "characteristic" "characteristicly" ;
+lin characteristic_N = mkN "characteristic" "characteristics" ;
+lin characteristically_Adv = mkAdv "characteristically" ;
+lin characterization_N = mkN "characterization" "characterizations" ;
+lin characterize_V = mkV "characterize" "characterized" "characterized" ;
+lin characterless_A = mkAMost "characterless" "characterlessly" ;
+lin charade_N = mkN "charade" "charades" ;
+lin charades_N = mkN "charades" "charadeses" ;
+lin charcoal_A = mkAMost "charcoal" "charcoally" ;
+lin charcoal_N = mkN "charcoal" "charcoals" ;
+lin charcoal_burner_N = mkN "charcoal-burner" "charcoal-burners" ;
+lin charcuterie_N = mkN "charcuterie" "charcuteries" ;
+lin chard_N = mkN "chard" "chards" ;
+lin charge_N = mkN "charge" "charges" ;
+lin charge_V = mkV "charge" "charged" "charged" ;
+lin charge_account_N = mkN "charge-account" "charge-accounts" ;
+lin charge_sheet_N = mkN "charge-sheet" "charge-sheets" ;
+lin chargeable_A = mkAMost "chargeable" "chargeably" ;
+lin charger_N = mkN "charger" "chargers" ;
+lin chargé_d'affaires_N = mkN "chargé d'affaires" "IRREG" ;
+lin chariot_N = mkN "chariot" "chariots" ;
+lin charioteer_N = mkN "charioteer" "charioteers" ;
+lin charisma_N = mkN "charisma" "charismas" ;
+lin charismatic_A = mkAMost "charismatic" "charismaticly" ;
+lin charitable_A = mkAMost "charitable" "charitably" ;
+lin charitableness_N = mkN "charitableness" "charitablenesses" ;
+lin charity_N = mkN "charity" "charities" ;
+lin charivari_N = mkN "charivari" "charivaris" ;
+lin charlady_N = mkN "charlady" "charladies" ;
+lin charlatan_N = mkN "charlatan" "charlatans" ;
+lin charlatanism_N = mkN "charlatanism" "charlatanisms" ;
+lin charleston_N = mkN "charleston" "charlestons" ;
+lin charlock_N = mkN "charlock" "charlocks" ;
+lin charlotte_N = mkN "charlotte" "charlottes" ;
+lin charm_N = mkN "charm" "charms" ;
+lin charm_V = mkV "charm" "charmed" "charmed" ;
+lin charmer_N = mkN "charmer" "charmers" ;
+lin charmingly_Adv = mkAdv "charmingly" ;
+lin charnel_A = mkAMost "charnel" "charnelly" ;
+lin charnel_house_N = mkN "charnel house" "charnel houses" ;
+lin chart_N = mkN "chart" "charts" ;
+lin chart_V = mkV "chart" "charted" "charted" ;
+lin chartaceous_A = mkAMost "chartaceous" "chartaceously" ;
+lin charter_N = mkN "charter" "charters" ;
+lin charter_V = mkV "charter" "chartered" "chartered" ;
+lin charter_party_N = mkN "charter-party" "charter-parties" ;
+lin charterhouse_N = mkN "charterhouse" "charterhouses" ;
+lin chartism_N = mkN "chartism" "chartisms" ;
+lin chartist_N = mkN "chartist" "chartists" ;
+lin chartless_A = mkAMost "chartless" "chartlessly" ;
+lin chartreuse_A = mkAMost "chartreuse" "chartreusely" ;
+lin chartreuse_N = mkN "chartreuse" "chartreuses" ;
+lin charwoman_N = mkN "charwoman" "charwomen" ;
+lin chary_A = mkAMost "chary" "charily" ;
+lin charàbanc_N = mkN "charàbanc" "charàbancs" ;
+lin chase_N = mkN "chase" "chases" ;
+lin chase_V = mkV "chase" "chased" "chased" ;
+lin chaser_N = mkN "chaser" "chasers" ;
+lin chasm_N = mkN "chasm" "chasms" ;
+lin chasse_N = mkN "chasse" "chasses" ;
+lin chassis_N = mkN "chassis" "chassis" ;
+lin chaste_A = mkAMost "chaste" "chastely" ;
+lin chasten_V = mkV "chasten" "chastened" "chastened" ;
+lin chasteness_N = mkN "chasteness" "chastenesses" ;
+lin chastise_V = mkV "chastise" "chastised" "chastised" ;
+lin chastisement_N = mkN "chastisement" "chastisements" ;
+lin chastity_N = mkN "chastity" "chastities" ;
+lin chasuble_N = mkN "chasuble" "chasubles" ;
+lin chat_N = mkN "chat" "chats" ;
+lin chat_V = mkV "chat" "chatted" "chatted" ;
+lin chatelaine_N = mkN "chatelaine" "chatelaines" ;
+lin chattel_N = mkN "chattel" "chattels" ;
+lin chatter_N = mkN "chatter" "chatters" ;
+lin chatter_V = mkV "chatter" "chattered" "chattered" ;
+lin chatterbox_N = mkN "chatterbox" "chatterboxes" ;
+lin chatterer_N = mkN "chatterer" "chatterers" ;
+lin chatty_A = mkA "chatty" "chattier" "chattiest" "chattily" ;
+lin chauffeur_N = mkN "chauffeur" "chauffeurs" ;
+lin chauffeur_V = mkV "chauffeur" "chauffeured" "chauffeured" ;
+lin chauffeuse_N = mkN "chauffeuse" "IRREG" ;
+lin chaulmoogra_N = mkN "chaulmoogra" "chaulmoogras" ;
+lin chauvinism_N = mkN "chauvinism" "chauvinisms" ;
+lin chauvinist_N = mkN "chauvinist" "chauvinists" ;
+lin chauvinistic_A = mkAMost "chauvinistic" "chauvinisticly" ;
+lin chaw_N = mkN "chaw" "chaws" ;
+lin chaw_V = mkV "chaw" "chawed" "chawed" ;
+lin chaw_bacon_N = mkN "chaw-bacon" "chaw-bacons" ;
+lin cheap_A = mkA "cheap" "cheaper" "cheapest" "cheaply" ;
+lin cheapen_V = mkV "cheapen" "cheapened" "cheapened" ;
+lin cheapjack_A = mkAMost "cheapjack" "cheapjackly" ;
+lin cheapjack_N = mkN "cheapjack" "cheapjacks" ;
+lin cheapness_N = mkN "cheapness" "cheapnesses" ;
+lin cheapskate_N = mkN "cheapskate" "cheapskates" ;
+lin cheat_N = mkN "cheat" "cheats" ;
+lin cheat_V = mkV "cheat" "cheated" "cheated" ;
+lin chebab_N = mkN "chebab" "chebabs" ;
+lin check_N = mkN "check" "checks" ;
+lin check_V = mkV "check" "checked" "checked" ;
+lin checkbook_N = mkN "checkbook" "checkbooks" ;
+lin checker_N = mkN "checker" "checkers" ;
+lin checker_V = mkV "checker" "checkered" "checkered" ;
+lin checkerbloom_N = mkN "checkerbloom" "checkerblooms" ;
+lin checkerboard_N = mkN "checkerboard" "checkerboards" ;
+lin checkers_N = mkN "checkers" "checkers" ;
+lin checklist_N = mkN "checklist" "checklists" ;
+lin checkmate_N = mkN "checkmate" "checkmates" ;
+lin checkmate_V = mkV "checkmate" "checkmated" "checkmated" ;
+lin checkout_N = mkN "checkout" "checkouts" ;
+lin checkpoint_N = mkN "checkpoint" "checkpoints" ;
+lin checkroom_N = mkN "checkroom" "checkrooms" ;
+lin checksum_N = mkN "checksum" "checksums" ;
+lin checkup_N = mkN "checkup" "checkups" ;
+lin cheddar_N = mkN "cheddar" "cheddars" ;
+lin cheek_N = mkN "cheek" "cheeks" ;
+lin cheek_V = mkV "cheek" "cheeked" "cheeked" ;
+lin cheekbone_N = mkN "cheekbone" "cheekbones" ;
+lin cheekpiece_N = mkN "cheekpiece" "cheekpieces" ;
+lin cheeky_A = mkA "cheeky" "cheekier" "cheekiest" "cheekily" ;
+lin cheep_N = mkN "cheep" "cheeps" ;
+lin cheep_V = mkV "cheep" "cheeped" "cheeped" ;
+lin cheer_N = mkN "cheer" "cheers" ;
+lin cheer_V = mkV "cheer" "cheered" "cheered" ;
+lin cheerer_N = mkN "cheerer" "cheerers" ;
+lin cheerful_A = mkAMost "cheerful" "cheerfully" ;
+lin cheerfulness_N = mkN "cheerfulness" "cheerfulnesses" ;
+lin cheering_N = mkN "cheering" "cheerings" ;
+lin cheerleader_N = mkN "cheerleader" "cheerleaders" ;
+lin cheerless_A = mkAMost "cheerless" "cheerlessly" ;
+lin cheerlessness_N = mkN "cheerlessness" "cheerlessnesses" ;
+lin cheery_A = mkAMost "cheery" "cheerily" ;
+lin cheese_N = mkN "cheese" "cheeses" ;
+lin cheeseboard_N = mkN "cheeseboard" "cheeseboards" ;
+lin cheeseburger_N = mkN "cheeseburger" "cheeseburgers" ;
+lin cheesecake_N = mkN "cheesecake" "cheesecakes" ;
+lin cheesecloth_N = mkN "cheesecloth" "cheesecloths" ;
+lin cheeselike_A = mkAMost "cheeselike" "cheeselikely" ;
+lin cheesemonger_N = mkN "cheesemonger" "cheesemongers" ;
+lin cheeseparing_A = mkAMost "cheeseparing" "cheeseparingly" ;
+lin cheetah_N = mkN "cheetah" "cheetahs" ;
+lin chef_N = mkN "chef" "chefs" ;
+lin chef_d'oeuvre_N = mkN "chef-d'oeuvre" "chefs-d'oeuvre" ;
+lin cheilitis_N = mkN "cheilitis" "cheilitises" ;
+lin cheilosis_N = mkN "cheilosis" "cheilosises" ;
+lin chela_N = mkN "chela" "chelas" ;
+lin chelate_A = mkAMost "chelate" "chelately" ;
+lin chelate_N = mkN "chelate" "chelates" ;
+lin chelation_N = mkN "chelation" "chelations" ;
+lin chelicera_N = mkN "chelicera" "cheliceras" ;
+lin cheliceral_A = mkAMost "cheliceral" "chelicerally" ;
+lin chelicerous_A = mkAMost "chelicerous" "chelicerously" ;
+lin cheliferous_A = mkAMost "cheliferous" "cheliferously" ;
+lin chelonian_A = mkAMost "chelonian" "chelonianly" ;
+lin chelonian_N = mkN "chelonian" "chelonians" ;
+lin chemical_A = mkAMost "chemical" "chemically" ;
+lin chemical_N = mkN "chemical" "chemicals" ;
+lin chemiluminescence_N = mkN "chemiluminescence" "chemiluminescences" ;
+lin chemiluminescent_A = mkAMost "chemiluminescent" "chemiluminescently" ;
+lin chemise_N = mkN "chemise" "chemises" ;
+lin chemisorption_N = mkN "chemisorption" "chemisorptions" ;
+lin chemisorptive_A = mkAMost "chemisorptive" "chemisorptively" ;
+lin chemist_N = mkN "chemist" "chemists" ;
+lin chemistry_N = mkN "chemistry" "chemistries" ;
+lin chemoreceptive_A = mkAMost "chemoreceptive" "chemoreceptively" ;
+lin chemoreceptor_N = mkN "chemoreceptor" "chemoreceptors" ;
+lin chemosis_N = mkN "chemosis" "chemosises" ;
+lin chemosurgery_N = mkN "chemosurgery" "chemosurgeries" ;
+lin chemosynthesis_N = mkN "chemosynthesis" "chemosynthesises" ;
+lin chemotaxis_N = mkN "chemotaxis" "chemotaxises" ;
+lin chemotherapeutic_A = mkAMost "chemotherapeutic" "chemotherapeuticly" ;
+lin chemotherapy_N = mkN "chemotherapy" "chemotherapies" ;
+lin chenille_N = mkN "chenille" "chenilles" ;
+lin cheque_N = mkN "cheque" "cheques" ;
+lin chequebook_N = mkN "chequebook" "chequebooks" ;
+lin chequer_V = mkV "chequer" "chequered" "chequered" ;
+lin cherimoya_N = mkN "cherimoya" "cherimoyas" ;
+lin cherish_V = mkV "cherish" "cherished" "cherished" ;
+lin cheroot_N = mkN "cheroot" "cheroots" ;
+lin cherry_A = mkAMost "cherry" "cherrily" ;
+lin cherry_N = mkN "cherry" "cherries" ;
+lin cherrystone_N = mkN "cherrystone" "cherrystones" ;
+lin chert_N = mkN "chert" "cherts" ;
+lin cherty_A = mkA "cherty" "chertier" "chertiest" "chertily" ;
+lin cherub_N = mkN "cherub" "cherubs" ;
+lin cherubic_A = mkAMost "cherubic" "cherubicly" ;
+lin chervil_N = mkN "chervil" "chervils" ;
+lin chess_N = mkN "chess" "chesses" ;
+lin chessboard_N = mkN "chessboard" "chessboards" ;
+lin chessman_N = mkN "chessman" "chessmen" ;
+lin chest_N = mkN "chest" "chests" ;
+lin chesterfield_N = mkN "chesterfield" "chesterfields" ;
+lin chestnut_A = mkAMost "chestnut" "chestnutly" ;
+lin chestnut_N = mkN "chestnut" "chestnuts" ;
+lin chetrum_N = mkN "chetrum" "chetrums" ;
+lin cheval_glass_N = mkN "cheval glass" "cheval glasses" ;
+lin chevron_N = mkN "chevron" "chevrons" ;
+lin chevrotain_N = mkN "chevrotain" "chevrotains" ;
+lin chew_N = mkN "chew" "chews" ;
+lin chew_V = mkV "chew" "chewed" "chewed" ;
+lin chewable_A = mkAMost "chewable" "chewably" ;
+lin chewer_N = mkN "chewer" "chewers" ;
+lin chewing_gum_N = mkN "chewing-gum" "chewing-gums" ;
+lin chewink_N = mkN "chewink" "chewinks" ;
+lin chewy_A = mkA "chewy" "chewier" "chewiest" "chewily" ;
+lin chez_Prep = mkPrep "chez" ;
+lin chi_N = mkN "chi" "chis" ;
+lin chianti_N = mkN "chianti" "chiantis" ;
+lin chiaroscuro_N = mkN "chiaroscuro" "chiaroscuroes" ;
+lin chiasma_N = mkN "chiasma" "chiasmas" ;
+lin chiasmal_A = mkAMost "chiasmal" "chiasmally" ;
+lin chiasmus_N = mkN "chiasmus" "chiasmuses" ;
+lin chic_A = mkAMost "chic" "chicly" ;
+lin chic_N = mkN "chic" "chics" ;
+lin chicane_N = mkN "chicane" "chicanes" ;
+lin chicanery_N = mkN "chicanery" "chicaneries" ;
+lin chichi_A = mkAMost "chichi" "chichily" ;
+lin chichi_N = mkN "chichi" "chichis" ;
+lin chichipe_N = mkN "chichipe" "chichipes" ;
+lin chick_N = mkN "chick" "chicks" ;
+lin chickadee_N = mkN "chickadee" "chickadees" ;
+lin chicken_A = mkAMost "chicken" "chickenly" ;
+lin chicken_N = mkN "chicken" "chickens" ;
+lin chicken_V = mkV "chicken" "chickenned" "chickenned" ;
+lin chicken_hearted_A = mkAMost "chicken-hearted" "chicken-heartedly" ;
+lin chicken_run_N = mkN "chicken-run" "chicken-runs" ;
+lin chickenfeed_N = mkN "chickenfeed" "chickenfeeds" ;
+lin chickenpox_N = mkN "chickenpox" "chickenpoxes" ;
+lin chickenshit_N = mkN "chickenshit" "chickenshits" ;
+lin chickeree_N = mkN "chickeree" "chickerees" ;
+lin chickpea_N = mkN "chickpea" "chickpeas" ;
+lin chickweed_N = mkN "chickweed" "chickweeds" ;
+lin chicle_N = mkN "chicle" "chicles" ;
+lin chicory_N = mkN "chicory" "chicories" ;
+lin chide_V = mkV "chide" "chided" "chided" ;
+lin chiding_N = mkN "chiding" "chidings" ;
+lin chief_A = mkAMost "chief" "chiefly" ;
+lin chief_N = mkN "chief" "chiefs" ;
+lin chieftain_N = mkN "chieftain" "chieftains" ;
+lin chieftaincy_N = mkN "chieftaincy" "chieftaincies" ;
+lin chiffon_N = mkN "chiffon" "chiffons" ;
+lin chiffonier_N = mkN "chiffonier" "chiffoniers" ;
+lin chigetai_N = mkN "chigetai" "chigetais" ;
+lin chignon_N = mkN "chignon" "chignons" ;
+lin chigoe_N = mkN "chigoe" "chigoes" ;
+lin chilblain_N = mkN "chilblain" "chilblains" ;
+lin chilblained_A = mkAMost "chilblained" "chilblainedly" ;
+lin child's_play_N = mkN "child's-play" "child's-plays" ;
+lin child_N = mkN "child" "children" ;
+lin child_bearing_N = mkN "child-bearing" "child-bearings" ;
+lin childbearing_A = mkAMost "childbearing" "childbearingly" ;
+lin childbirth_N = mkN "childbirth" "childbirths" ;
+lin childcare_N = mkN "childcare" "childcares" ;
+lin childhood_N = mkN "childhood" "childhoods" ;
+lin childish_A = mkAMost "childish" "childishly" ;
+lin childishness_N = mkN "childishness" "childishnesses" ;
+lin childless_A = mkAMost "childless" "childlessly" ;
+lin childlessness_N = mkN "childlessness" "childlessnesses" ;
+lin childlike_A = mkAMost "childlike" "childlikely" ;
+lin chilean_A = mkAMost "chilean" "chileanly" ;
+lin chilean_N = mkN "chilean" "chileans" ;
+lin chili_N = mkN "chili" "chilis" ;
+lin chill_A = mkAMost "chill" "chilly" ;
+lin chill_N = mkN "chill" "chills" ;
+lin chill_V = mkV "chill" "chilled" "chilled" ;
+lin chilli_N = mkN "chilli" "chillies" ;
+lin chilliness_N = mkN "chilliness" "chillinesses" ;
+lin chilly_A = mkA "chilly" "chillier" "chilliest" "chillily" ;
+lin chilly_N = mkN "chilly" "chillies" ;
+lin chimaera_N = mkN "chimaera" "chimaeras" ;
+lin chime_N = mkN "chime" "chimes" ;
+lin chime_V = mkV "chime" "chimed" "chimed" ;
+lin chimera_N = mkN "chimera" "chimeras" ;
+lin chimeric_A = mkAMost "chimeric" "chimericly" ;
+lin chimerical_A = mkAMost "chimerical" "chimerically" ;
+lin chimney_N = mkN "chimney" "chimneys" ;
+lin chimney_sweep_N = mkN "chimney-sweep" "chimney-sweeps" ;
+lin chimneybreast_N = mkN "chimneybreast" "chimneybreasts" ;
+lin chimneypiece_N = mkN "chimneypiece" "chimneypieces" ;
+lin chimneypot_N = mkN "chimneypot" "chimneypots" ;
+lin chimneystack_N = mkN "chimneystack" "chimneystacks" ;
+lin chimneysweep_N = mkN "chimneysweep" "chimneysweeps" ;
+lin chimneysweeper_N = mkN "chimneysweeper" "chimneysweepers" ;
+lin chimp_N = mkN "chimp" "chimps" ;
+lin chimpanzee_N = mkN "chimpanzee" "chimpanzees" ;
+lin chin_N = mkN "chin" "chins" ;
+lin chin_strap_N = mkN "chin-strap" "chin-straps" ;
+lin chin_wagging_N = mkN "chin-wagging" "chin-waggings" ;
+lin china_N = mkN "china" "chinas" ;
+lin china_closet_N = mkN "china-closet" "china-closets" ;
+lin chinaberry_N = mkN "chinaberry" "chinaberries" ;
+lin chinaware_N = mkN "chinaware" "chinawares" ;
+lin chincapin_N = mkN "chincapin" "chincapins" ;
+lin chincherinchee_N = mkN "chincherinchee" "chincherinchees" ;
+lin chinchilla_N = mkN "chinchilla" "chinchillas" ;
+lin chine_N = mkN "chine" "chines" ;
+lin chink_N = mkN "chink" "chinks" ;
+lin chink_V = mkV "chink" "chinked" "chinked" ;
+lin chinless_A = mkAMost "chinless" "chinlessly" ;
+lin chino_N = mkN "chino" "chinoes" ;
+lin chinoiserie_N = mkN "chinoiserie" "chinoiseries" ;
+lin chinook_N = mkN "chinook" "chinooks" ;
+lin chintz_N = mkN "chintz" "chintzes" ;
+lin chip_N = mkN "chip" "chips" ;
+lin chip_V = mkV "chip" "chipped" "chipped" ;
+lin chipboard_N = mkN "chipboard" "chipboards" ;
+lin chipmunk_N = mkN "chipmunk" "chipmunks" ;
+lin chipolata_N = mkN "chipolata" "chipolatas" ;
+lin chipotle_N = mkN "chipotle" "chipotles" ;
+lin chippendale_N = mkN "chippendale" "chippendales" ;
+lin chipper_A = mkAMost "chipper" "chipperly" ;
+lin chips_N = mkN "chips" "chipses" ;
+lin chiralgia_N = mkN "chiralgia" "chiralgias" ;
+lin chiromantic_A = mkAMost "chiromantic" "chiromanticly" ;
+lin chiropodist_N = mkN "chiropodist" "chiropodists" ;
+lin chiropody_N = mkN "chiropody" "chiropodies" ;
+lin chiropractic_N = mkN "chiropractic" "chiropractics" ;
+lin chiropractor_N = mkN "chiropractor" "chiropractors" ;
+lin chirp_N = mkN "chirp" "chirps" ;
+lin chirp_V = mkV "chirp" "chirped" "chirped" ;
+lin chirpiness_N = mkN "chirpiness" "chirpinesses" ;
+lin chirpy_A = mkAMost "chirpy" "chirpily" ;
+lin chirrup_N = mkN "chirrup" "chirrups" ;
+lin chirrup_V = mkV "chirrup" "chirruped" "chirruped" ;
+lin chisel_N = mkN "chisel" "chisels" ;
+lin chisel_V = mkV "chisel" "chiselled" "chiselled" ;
+lin chiseled_A = mkAMost "chiseled" "chiseledly" ;
+lin chiseller_N = mkN "chiseller" "chisellers" ;
+lin chit_N = mkN "chit" "chits" ;
+lin chit_chat_N = mkN "chit-chat" "chit-chats" ;
+lin chitchat_N = mkN "chitchat" "chitchats" ;
+lin chitin_N = mkN "chitin" "chitins" ;
+lin chitinous_A = mkAMost "chitinous" "chitinously" ;
+lin chiton_N = mkN "chiton" "chitons" ;
+lin chitterlings_N = mkN "chitterlings" "chitterlingses" ;
+lin chivalric_A = mkAMost "chivalric" "chivalricly" ;
+lin chivalrous_A = mkAMost "chivalrous" "chivalrously" ;
+lin chivalry_N = mkN "chivalry" "chivalries" ;
+lin chive_N = mkN "chive" "chives" ;
+lin chives_N = mkN "chives" "chiveses" ;
+lin chivvy_V = mkV "chivvy" "chivvied" "chivvied" ;
+lin chivy_V = mkV "chivy" "chivied" "chivied" ;
+lin chlamydeous_A = mkAMost "chlamydeous" "chlamydeously" ;
+lin chlamydia_N = mkN "chlamydia" "chlamydias" ;
+lin chlamydial_A = mkAMost "chlamydial" "chlamydially" ;
+lin chlamydospore_N = mkN "chlamydospore" "chlamydospores" ;
+lin chlamys_N = mkN "chlamys" "chlamyses" ;
+lin chloasma_N = mkN "chloasma" "chloasmas" ;
+lin chlorambucil_N = mkN "chlorambucil" "chlorambucils" ;
+lin chloramine_N = mkN "chloramine" "chloramines" ;
+lin chloramphenicol_N = mkN "chloramphenicol" "chloramphenicols" ;
+lin chlorate_N = mkN "chlorate" "chlorates" ;
+lin chlordiazepoxide_N = mkN "chlordiazepoxide" "chlordiazepoxides" ;
+lin chlorella_N = mkN "chlorella" "chlorellas" ;
+lin chlorenchyma_N = mkN "chlorenchyma" "chlorenchymas" ;
+lin chlorhexidine_N = mkN "chlorhexidine" "chlorhexidines" ;
+lin chloride_N = mkN "chloride" "chlorides" ;
+lin chlorinate_V = mkV "chlorinate" "chlorinated" "chlorinated" ;
+lin chlorination_N = mkN "chlorination" "chlorinations" ;
+lin chlorine_N = mkN "chlorine" "chlorines" ;
+lin chlorinity_N = mkN "chlorinity" "chlorinities" ;
+lin chlorite_N = mkN "chlorite" "chlorites" ;
+lin chloroacetophenone_N = mkN "chloroacetophenone" "chloroacetophenones" ;
+lin chlorobenzene_N = mkN "chlorobenzene" "chlorobenzenes" ;
+lin chlorobenzylidenemalononitrile_N = mkN "chlorobenzylidenemalononitrile" "chlorobenzylidenemalononitriles" ;
+lin chlorofluorocarbon_N = mkN "chlorofluorocarbon" "chlorofluorocarbons" ;
+lin chloroform_N = mkN "chloroform" "chloroforms" ;
+lin chlorophyll_N = mkN "chlorophyll" "chlorophylls" ;
+lin chlorophyllose_A = mkAMost "chlorophyllose" "chlorophyllosely" ;
+lin chloropicrin_N = mkN "chloropicrin" "chloropicrins" ;
+lin chloroplast_N = mkN "chloroplast" "chloroplasts" ;
+lin chloroprene_N = mkN "chloroprene" "chloroprenes" ;
+lin chloroquine_N = mkN "chloroquine" "chloroquines" ;
+lin chlorosis_N = mkN "chlorosis" "chlorosises" ;
+lin chlorothiazide_N = mkN "chlorothiazide" "chlorothiazides" ;
+lin chlorotic_A = mkAMost "chlorotic" "chloroticly" ;
+lin chlorpromazine_N = mkN "chlorpromazine" "chlorpromazines" ;
+lin chlorpyrifos_N = mkN "chlorpyrifos" "chlorpyrifoses" ;
+lin chlortetracycline_N = mkN "chlortetracycline" "chlortetracyclines" ;
+lin chlorthalidone_N = mkN "chlorthalidone" "chlorthalidones" ;
+lin choanocyte_N = mkN "choanocyte" "choanocytes" ;
+lin choc_N = mkN "choc" "chocs" ;
+lin choc_ice_N = mkN "choc-ice" "choc-ices" ;
+lin chock_Adv = mkAdv "chock" ;
+lin chock_N = mkN "chock" "chocks" ;
+lin chock_V = mkV "chock" "chocked" "chocked" ;
+lin chock_a_block_A = mkAMost "chock-a-block" "chock-a-blockly" ;
+lin chock_a_block_Adv = mkAdv "chock-a-block" ;
+lin chock_full_A = mkAMost "chock-full" "chock-fully" ;
+lin chocolate_N = mkN "chocolate" "chocolates" ;
+lin choice_A = mkAMost "choice" "choicely" ;
+lin choice_N = mkN "choice" "choices" ;
+lin choir_N = mkN "choir" "choirs" ;
+lin choir_school_N = mkN "choir-school" "choir-schools" ;
+lin choirboy_N = mkN "choirboy" "choirboys" ;
+lin choirmaster_N = mkN "choirmaster" "choirmasters" ;
+lin choke_N = mkN "choke" "chokes" ;
+lin choke_V = mkV "choke" "choked" "choked" ;
+lin choke_damp_N = mkN "choke-damp" "choke-damps" ;
+lin chokecherry_N = mkN "chokecherry" "chokecherries" ;
+lin chokedamp_N = mkN "chokedamp" "chokedamps" ;
+lin chokehold_N = mkN "chokehold" "chokeholds" ;
+lin chokepoint_N = mkN "chokepoint" "chokepoints" ;
+lin choker_N = mkN "choker" "chokers" ;
+lin chokey_N = mkN "chokey" "chokeys" ;
+lin choking_N = mkN "choking" "chokings" ;
+lin choky_A = mkA "choky" "chokier" "chokiest" "chokily" ;
+lin choky_N = mkN "choky" "chokies" ;
+lin cholangiography_N = mkN "cholangiography" "cholangiographies" ;
+lin cholangitis_N = mkN "cholangitis" "cholangitises" ;
+lin cholecystectomy_N = mkN "cholecystectomy" "cholecystectomies" ;
+lin cholecystitis_N = mkN "cholecystitis" "cholecystitises" ;
+lin cholecystokinin_N = mkN "cholecystokinin" "cholecystokinins" ;
+lin cholelithiasis_N = mkN "cholelithiasis" "cholelithiasises" ;
+lin cholelithotomy_N = mkN "cholelithotomy" "cholelithotomies" ;
+lin choler_N = mkN "choler" "cholers" ;
+lin cholera_N = mkN "cholera" "choleras" ;
+lin choleraic_A = mkAMost "choleraic" "choleraicly" ;
+lin choleric_A = mkAMost "choleric" "cholericly" ;
+lin cholesterol_N = mkN "cholesterol" "cholesterols" ;
+lin choline_N = mkN "choline" "cholines" ;
+lin cholinergic_A = mkAMost "cholinergic" "cholinergicly" ;
+lin cholinesterase_N = mkN "cholinesterase" "cholinesterases" ;
+lin cholla_N = mkN "cholla" "chollas" ;
+lin chomping_N = mkN "chomping" "chompings" ;
+lin chon_N = mkN "chon" "chons" ;
+lin chondrin_N = mkN "chondrin" "chondrins" ;
+lin chondrite_N = mkN "chondrite" "chondrites" ;
+lin chondritic_A = mkAMost "chondritic" "chondriticly" ;
+lin chondroma_N = mkN "chondroma" "chondromas" ;
+lin chondrosarcoma_N = mkN "chondrosarcoma" "chondrosarcomas" ;
+lin chondrule_N = mkN "chondrule" "chondrules" ;
+lin choose_V = mkV "choose" "chose" "chosen" ;
+lin choosey_A = mkAMost "choosey" "chooseily" ;
+lin choosy_A = mkA "choosy" "choosier" "choosiest" "choosily" ;
+lin chop_N = mkN "chop" "chops" ;
+lin chop_V = mkV "chop" "chopped" "chopped" ;
+lin chop_chop_Adv = mkAdv "chop-chop" ;
+lin chop_house_N = mkN "chop-house" "chop-houses" ;
+lin chop_suey_N = mkN "chop suey" "chop sueys" ;
+lin chopine_N = mkN "chopine" "chopines" ;
+lin chopper_N = mkN "chopper" "choppers" ;
+lin choppiness_N = mkN "choppiness" "choppinesses" ;
+lin choppy_A = mkA "choppy" "choppier" "choppiest" "choppily" ;
+lin chopstick_N = mkN "chopstick" "chopsticks" ;
+lin choragic_A = mkAMost "choragic" "choragicly" ;
+lin choragus_N = mkN "choragus" "choraguses" ;
+lin choral_A = mkAMost "choral" "chorally" ;
+lin chorale_N = mkN "chorale" "chorales" ;
+lin chord_N = mkN "chord" "chords" ;
+lin chordal_A = mkAMost "chordal" "chordally" ;
+lin chordamesoderm_N = mkN "chordamesoderm" "chordamesoderms" ;
+lin chordate_A = mkAMost "chordate" "chordately" ;
+lin chordate_N = mkN "chordate" "chordates" ;
+lin chorditis_N = mkN "chorditis" "chorditises" ;
+lin chordophone_N = mkN "chordophone" "chordophones" ;
+lin chore_N = mkN "chore" "chores" ;
+lin chorea_N = mkN "chorea" "choreas" ;
+lin choreographer_N = mkN "choreographer" "choreographers" ;
+lin choreographic_A = mkAMost "choreographic" "choreographicly" ;
+lin choreography_N = mkN "choreography" "choreographies" ;
+lin choric_A = mkAMost "choric" "choricly" ;
+lin chorioallantois_N = mkN "chorioallantois" "chorioallantoises" ;
+lin choriomeningitis_N = mkN "choriomeningitis" "choriomeningitises" ;
+lin chorion_N = mkN "chorion" "chorions" ;
+lin chorionic_A = mkAMost "chorionic" "chorionicly" ;
+lin chorioretinitis_N = mkN "chorioretinitis" "chorioretinitises" ;
+lin chorister_N = mkN "chorister" "choristers" ;
+lin chorizo_N = mkN "chorizo" "chorizoes" ;
+lin choroid_N = mkN "choroid" "choroids" ;
+lin chortle_N = mkN "chortle" "chortles" ;
+lin chortle_V = mkV "chortle" "chortled" "chortled" ;
+lin chorus_N = mkN "chorus" "choruses" ;
+lin chorus_V = mkV "chorus" "chorused" "chorused" ;
+lin chorus_girl_N = mkN "chorus-girl" "chorus-girls" ;
+lin chosen_N = mkN "chosen" "chosens" ;
+lin chough_N = mkN "chough" "choughs" ;
+lin chow_N = mkN "chow" "chows" ;
+lin chow_V = mkV "chow" "chowed" "chowed" ;
+lin chowchow_N = mkN "chowchow" "chowchows" ;
+lin chowder_N = mkN "chowder" "chowders" ;
+lin chrestomathy_N = mkN "chrestomathy" "chrestomathies" ;
+lin chrism_N = mkN "chrism" "chrisms" ;
+lin christella_N = mkN "christella" "christellas" ;
+lin christen_V = mkV "christen" "christened" "christened" ;
+lin christendom_N = mkN "christendom" "christendoms" ;
+lin christening_N = mkN "christening" "christenings" ;
+lin christian_A = mkAMost "christian" "christianly" ;
+lin christian_N = mkN "christian" "christians" ;
+lin christianly_A = mkAMost "christianly" "christianlily" ;
+lin christless_A = mkAMost "christless" "christlessly" ;
+lin christlike_A = mkAMost "christlike" "christlikely" ;
+lin christmas_box_N = mkN "christmas-box" "christmas-boxes" ;
+lin christmas_tree_N = mkN "christmas-tree" "christmas-trees" ;
+lin christmastide_N = mkN "christmastide" "christmastides" ;
+lin christmastime_N = mkN "christmastime" "christmastimes" ;
+lin chromate_N = mkN "chromate" "chromates" ;
+lin chromatic_A = mkAMost "chromatic" "chromaticly" ;
+lin chromatically_Adv = mkAdv "chromatically" ;
+lin chromatid_N = mkN "chromatid" "chromatids" ;
+lin chromatin_N = mkN "chromatin" "chromatins" ;
+lin chromatinic_A = mkAMost "chromatinic" "chromatinicly" ;
+lin chromatism_N = mkN "chromatism" "chromatisms" ;
+lin chromatogram_N = mkN "chromatogram" "chromatograms" ;
+lin chromatographic_A = mkAMost "chromatographic" "chromatographicly" ;
+lin chromatographically_Adv = mkAdv "chromatographically" ;
+lin chromatography_N = mkN "chromatography" "chromatographies" ;
+lin chrome_N = mkN "chrome" "chromes" ;
+lin chromesthesia_N = mkN "chromesthesia" "chromesthesias" ;
+lin chromite_N = mkN "chromite" "chromites" ;
+lin chromium_N = mkN "chromium" "chromiums" ;
+lin chromoblastomycosis_N = mkN "chromoblastomycosis" "chromoblastomycosises" ;
+lin chromogen_N = mkN "chromogen" "chromogens" ;
+lin chromolithography_N = mkN "chromolithography" "chromolithographies" ;
+lin chromophore_N = mkN "chromophore" "chromophores" ;
+lin chromoplast_N = mkN "chromoplast" "chromoplasts" ;
+lin chromosomal_A = mkAMost "chromosomal" "chromosomally" ;
+lin chromosome_N = mkN "chromosome" "chromosomes" ;
+lin chromosphere_N = mkN "chromosphere" "chromospheres" ;
+lin chronic_A = mkAMost "chronic" "chronicly" ;
+lin chronically_Adv = mkAdv "chronically" ;
+lin chronicle_N = mkN "chronicle" "chronicles" ;
+lin chronicle_V = mkV "chronicle" "chronicled" "chronicled" ;
+lin chronicler_N = mkN "chronicler" "chroniclers" ;
+lin chronograph_N = mkN "chronograph" "chronographs" ;
+lin chronological_A = mkAMost "chronological" "chronologically" ;
+lin chronology_N = mkN "chronology" "chronologies" ;
+lin chronometer_N = mkN "chronometer" "chronometers" ;
+lin chronoscope_N = mkN "chronoscope" "chronoscopes" ;
+lin chrysalis_N = mkN "chrysalis" "chrysalises" ;
+lin chrysanthemum_N = mkN "chrysanthemum" "chrysanthemums" ;
+lin chrysoberyl_N = mkN "chrysoberyl" "chrysoberyls" ;
+lin chrysolite_N = mkN "chrysolite" "chrysolites" ;
+lin chrysoprase_N = mkN "chrysoprase" "chrysoprases" ;
+lin chrysotherapy_N = mkN "chrysotherapy" "chrysotherapies" ;
+lin chrysotile_N = mkN "chrysotile" "chrysotiles" ;
+lin chthonian_A = mkAMost "chthonian" "chthonianly" ;
+lin chub_N = mkN "chub" "chubs" ;
+lin chubbiness_N = mkN "chubbiness" "chubbinesses" ;
+lin chubby_A = mkA "chubby" "chubbier" "chubbiest" "chubbily" ;
+lin chuck_N = mkN "chuck" "chucks" ;
+lin chuck_V = mkV "chuck" "chucked" "chucked" ;
+lin chucker_out_N = mkN "chucker-out" "IRREG" ;
+lin chuckle_N = mkN "chuckle" "chuckles" ;
+lin chuckle_V = mkV "chuckle" "chuckled" "chuckled" ;
+lin chuckwalla_N = mkN "chuckwalla" "chuckwallas" ;
+lin chufa_N = mkN "chufa" "chufas" ;
+lin chuffed_A = mkAMost "chuffed" "chuffedly" ;
+lin chug_N = mkN "chug" "chugs" ;
+lin chug_V = mkV "chug" "chugged" "chugged" ;
+lin chukka_N = mkN "chukka" "chukkas" ;
+lin chukker_N = mkN "chukker" "chukkers" ;
+lin chum_N = mkN "chum" "chums" ;
+lin chum_V = mkV "chum" "chummed" "chummed" ;
+lin chumminess_N = mkN "chumminess" "chumminesses" ;
+lin chummy_A = mkA "chummy" "chummier" "chummiest" "chummily" ;
+lin chump_N = mkN "chump" "chumps" ;
+lin chunga_N = mkN "chunga" "chungas" ;
+lin chunk_N = mkN "chunk" "chunks" ;
+lin chunky_A = mkA "chunky" "chunkier" "chunkiest" "chunkily" ;
+lin chunnel_N = mkN "chunnel" "chunnels" ;
+lin church_N = mkN "church" "churches" ;
+lin churchgoer_N = mkN "churchgoer" "churchgoers" ;
+lin churchgoing_A = mkAMost "churchgoing" "churchgoingly" ;
+lin churchly_A = mkA "churchly" "churchlier" "churchliest" "churchlily" ;
+lin churchman_N = mkN "churchman" "churchmen" ;
+lin churchwarden_N = mkN "churchwarden" "churchwardens" ;
+lin churchyard_N = mkN "churchyard" "churchyards" ;
+lin churidars_N = mkN "churidars" "churidarses" ;
+lin churl_N = mkN "churl" "churls" ;
+lin churlish_A = mkAMost "churlish" "churlishly" ;
+lin churn_N = mkN "churn" "churns" ;
+lin churn_V = mkV "churn" "churned" "churned" ;
+lin chute_N = mkN "chute" "chutes" ;
+lin chutney_N = mkN "chutney" "chutneys" ;
+lin chutzpa_N = mkN "chutzpa" "chutzpas" ;
+lin chutzpanik_N = mkN "chutzpanik" "chutzpaniks" ;
+lin chylaceous_A = mkAMost "chylaceous" "chylaceously" ;
+lin chyle_N = mkN "chyle" "chyles" ;
+lin chyliferous_A = mkAMost "chyliferous" "chyliferously" ;
+lin chylific_A = mkAMost "chylific" "chylificly" ;
+lin chylomicron_N = mkN "chylomicron" "chylomicrons" ;
+lin chyme_N = mkN "chyme" "chymes" ;
+lin château_N = mkN "château" "châteaux" ;
+lin cia_N = mkN "cia" "cias" ;
+lin cicada_N = mkN "cicada" "cicadas" ;
+lin cicala_N = mkN "cicala" "cicalas" ;
+lin cicatrice_N = mkN "cicatrice" "cicatrices" ;
+lin cicatrix_N = mkN "cicatrix" "cicatrices" ;
+lin cicero_N = mkN "cicero" "ciceroes" ;
+lin cicerone_N = mkN "cicerone" "ciceroni" ;
+lin cichlid_N = mkN "cichlid" "cichlids" ;
+lin cid_N = mkN "cid" "cids" ;
+lin cider_N = mkN "cider" "ciders" ;
+lin ciderpress_N = mkN "ciderpress" "ciderpresses" ;
+lin cigar_N = mkN "cigar" "cigars" ;
+lin cigar_shaped_A = mkAMost "cigar-shaped" "cigar-shapedly" ;
+lin cigarette_N = mkN "cigarette" "cigarettes" ;
+lin cigarette_case_N = mkN "cigarette-case" "cigarette-cases" ;
+lin cigarette_holder_N = mkN "cigarette-holder" "cigarette-holders" ;
+lin cigarette_paper_N = mkN "cigarette-paper" "cigarette-papers" ;
+lin cigarillo_N = mkN "cigarillo" "cigarilloes" ;
+lin ciliary_A = mkAMost "ciliary" "ciliarily" ;
+lin ciliate_A = mkAMost "ciliate" "ciliately" ;
+lin ciliate_N = mkN "ciliate" "ciliates" ;
+lin cilium_N = mkN "cilium" "ciliums" ;
+lin cimetidine_N = mkN "cimetidine" "cimetidines" ;
+lin cinch_N = mkN "cinch" "cinches" ;
+lin cinch_V = mkV "cinch" "cinched" "cinched" ;
+lin cinchona_N = mkN "cinchona" "cinchonas" ;
+lin cinchonine_N = mkN "cinchonine" "cinchonines" ;
+lin cincture_N = mkN "cincture" "cinctures" ;
+lin cinder_N = mkN "cinder" "cinders" ;
+lin cinder_track_N = mkN "cinder-track" "cinder-tracks" ;
+lin cinderella_N = mkN "cinderella" "cinderellas" ;
+lin cine_camera_N = mkN "cine-camera" "cine-cameras" ;
+lin cine_film_N = mkN "cine-film" "cine-films" ;
+lin cine_projector_N = mkN "cine-projector" "cine-projectors" ;
+lin cinema_N = mkN "cinema" "cinemas" ;
+lin cinematic_A = mkAMost "cinematic" "cinematicly" ;
+lin cinematography_N = mkN "cinematography" "cinematographies" ;
+lin cineraria_N = mkN "cineraria" "cinerarias" ;
+lin cinerary_A = mkAMost "cinerary" "cinerarily" ;
+lin cingulum_N = mkN "cingulum" "cingulums" ;
+lin cinnabar_N = mkN "cinnabar" "cinnabars" ;
+lin cinnamon_N = mkN "cinnamon" "cinnamons" ;
+lin cinquefoil_N = mkN "cinquefoil" "cinquefoils" ;
+lin cipher_N = mkN "cipher" "ciphers" ;
+lin cipher_V = mkV "cipher" "ciphered" "ciphered" ;
+lin ciprofloxacin_N = mkN "ciprofloxacin" "ciprofloxacins" ;
+lin circa_Prep = mkPrep "circa" ;
+lin circadian_A = mkAMost "circadian" "circadianly" ;
+lin circle_N = mkN "circle" "circles" ;
+lin circle_V = mkV "circle" "circled" "circled" ;
+lin circlet_N = mkN "circlet" "circlets" ;
+lin circuit_N = mkN "circuit" "circuits" ;
+lin circuitous_A = mkAMost "circuitous" "circuitously" ;
+lin circuitry_N = mkN "circuitry" "circuitries" ;
+lin circular_A = mkAMost "circular" "circularly" ;
+lin circular_N = mkN "circular" "circulars" ;
+lin circularity_N = mkN "circularity" "circularities" ;
+lin circularization_N = mkN "circularization" "circularizations" ;
+lin circularize_V = mkV "circularize" "circularized" "circularized" ;
+lin circulate_V = mkV "circulate" "circulated" "circulated" ;
+lin circulation_N = mkN "circulation" "circulations" ;
+lin circulative_A = mkAMost "circulative" "circulatively" ;
+lin circulatory_A = mkAMost "circulatory" "circulatorily" ;
+lin circumcise_V = mkV "circumcise" "circumcised" "circumcised" ;
+lin circumcision_N = mkN "circumcision" "circumcisions" ;
+lin circumduction_N = mkN "circumduction" "circumductions" ;
+lin circumference_N = mkN "circumference" "circumferences" ;
+lin circumferential_A = mkAMost "circumferential" "circumferentially" ;
+lin circumflex_N = mkN "circumflex" "circumflexes" ;
+lin circumlocution_N = mkN "circumlocution" "circumlocutions" ;
+lin circumlocutious_A = mkAMost "circumlocutious" "circumlocutiously" ;
+lin circumnavigate_V = mkV "circumnavigate" "circumnavigated" "circumnavigated" ;
+lin circumnavigation_N = mkN "circumnavigation" "circumnavigations" ;
+lin circumpolar_A = mkAMost "circumpolar" "circumpolarly" ;
+lin circumscribe_V = mkV "circumscribe" "circumscribed" "circumscribed" ;
+lin circumscription_N = mkN "circumscription" "circumscriptions" ;
+lin circumspect_A = mkAMost "circumspect" "circumspectly" ;
+lin circumspection_N = mkN "circumspection" "circumspections" ;
+lin circumstance_N = mkN "circumstance" "circumstances" ;
+lin circumstances_N = mkN "circumstances" "circumstanceses" ;
+lin circumstantial_A = mkAMost "circumstantial" "circumstantially" ;
+lin circumvent_V = mkV "circumvent" "circumvented" "circumvented" ;
+lin circumvention_N = mkN "circumvention" "circumventions" ;
+lin circumvolution_N = mkN "circumvolution" "circumvolutions" ;
+lin circus_N = mkN "circus" "circuses" ;
+lin cirque_N = mkN "cirque" "cirques" ;
+lin cirrhosis_N = mkN "cirrhosis" "cirrhosises" ;
+lin cirrocumulus_N = mkN "cirrocumulus" "cirrocumuluses" ;
+lin cirrostratus_N = mkN "cirrostratus" "cirrostratuses" ;
+lin cirrus_N = mkN "cirrus" "cirruses" ;
+lin cisalpine_A = mkAMost "cisalpine" "cisalpinely" ;
+lin cisco_N = mkN "cisco" "ciscoes" ;
+lin cismontane_A = mkAMost "cismontane" "cismontanely" ;
+lin cissy_A = mkAMost "cissy" "cissily" ;
+lin cissy_N = mkN "cissy" "cissies" ;
+lin cistern_N = mkN "cistern" "cisterns" ;
+lin cisterna_N = mkN "cisterna" "cisternas" ;
+lin citadel_N = mkN "citadel" "citadels" ;
+lin citation_N = mkN "citation" "citations" ;
+lin cite_V = mkV "cite" "cited" "cited" ;
+lin citified_A = mkAMost "citified" "citifiedly" ;
+lin citizen_N = mkN "citizen" "citizens" ;
+lin citizenry_N = mkN "citizenry" "citizenries" ;
+lin citizenship_N = mkN "citizenship" "citizenships" ;
+lin citrange_N = mkN "citrange" "citranges" ;
+lin citrate_N = mkN "citrate" "citrates" ;
+lin citric_A = mkAMost "citric" "citricly" ;
+lin citrine_N = mkN "citrine" "citrines" ;
+lin citron_N = mkN "citron" "citrons" ;
+lin citronwood_N = mkN "citronwood" "citronwoods" ;
+lin citrous_A = mkAMost "citrous" "citrously" ;
+lin citrulline_N = mkN "citrulline" "citrullines" ;
+lin citrus_N = mkN "citrus" "citruses" ;
+lin cittern_N = mkN "cittern" "citterns" ;
+lin city_N = mkN "city" "cities" ;
+lin cityscape_N = mkN "cityscape" "cityscapes" ;
+lin citywide_A = mkAMost "citywide" "citywidely" ;
+lin civet_N = mkN "civet" "civets" ;
+lin civet_cat_N = mkN "civet-cat" "civet-cats" ;
+lin civic_A = mkAMost "civic" "civicly" ;
+lin civics_N = mkN "civics" "civics" ;
+lin civies_N = mkN "civies" "civieses" ;
+lin civil_A = mkAMost "civil" "civilly" ;
+lin civilian_A = mkAMost "civilian" "civilianly" ;
+lin civilian_N = mkN "civilian" "civilians" ;
+lin civility_N = mkN "civility" "civilities" ;
+lin civilization_N = mkN "civilization" "civilizations" ;
+lin civilize_V = mkV "civilize" "civilized" "civilized" ;
+lin clabber_N = mkN "clabber" "clabbers" ;
+lin clack_N = mkN "clack" "clacks" ;
+lin clack_V = mkV "clack" "clacked" "clacked" ;
+lin clad_V = mkV "clad" "clad" "clad" ;
+lin clade_N = mkN "clade" "clades" ;
+lin cladistics_N = mkN "cladistics" "cladisticses" ;
+lin cladode_N = mkN "cladode" "cladodes" ;
+lin cladogram_N = mkN "cladogram" "cladograms" ;
+lin clag_V = mkV "clag" "clagged" "clagged" ;
+lin claim_N = mkN "claim" "claims" ;
+lin claim_V = mkV "claim" "claimed" "claimed" ;
+lin claimant_N = mkN "claimant" "claimants" ;
+lin clairvoyance_N = mkN "clairvoyance" "clairvoyances" ;
+lin clairvoyant_A = mkAMost "clairvoyant" "clairvoyantly" ;
+lin clairvoyant_N = mkN "clairvoyant" "clairvoyants" ;
+lin clam_N = mkN "clam" "clams" ;
+lin clam_V = mkV "clam" "clammed" "clammed" ;
+lin clamant_A = mkAMost "clamant" "clamantly" ;
+lin clamatorial_A = mkAMost "clamatorial" "clamatorially" ;
+lin clambake_N = mkN "clambake" "clambakes" ;
+lin clamber_N = mkN "clamber" "clambers" ;
+lin clamber_V = mkV "clamber" "clambered" "clambered" ;
+lin clammy_A = mkA "clammy" "clammier" "clammiest" "clammily" ;
+lin clammyweed_N = mkN "clammyweed" "clammyweeds" ;
+lin clamor_N = mkN "clamor" "clamors" ;
+lin clamorous_A = mkAMost "clamorous" "clamorously" ;
+lin clamour_N = mkN "clamour" "clamours" ;
+lin clamour_V = mkV "clamour" "clamoured" "clamoured" ;
+lin clamp_N = mkN "clamp" "clamps" ;
+lin clamp_V = mkV "clamp" "clamped" "clamped" ;
+lin clamp_down_N = mkN "clamp-down" "clamp-downs" ;
+lin clampdown_N = mkN "clampdown" "clampdowns" ;
+lin clamshell_N = mkN "clamshell" "clamshells" ;
+lin clan_N = mkN "clan" "clans" ;
+lin clandestine_A = mkAMost "clandestine" "clandestinely" ;
+lin clang_N = mkN "clang" "clangs" ;
+lin clang_V = mkV "clang" "clanged" "clanged" ;
+lin clanger_N = mkN "clanger" "clangers" ;
+lin clangorous_A = mkAMost "clangorous" "clangorously" ;
+lin clangour_N = mkN "clangour" "clangours" ;
+lin clank_N = mkN "clank" "clanks" ;
+lin clank_V = mkV "clank" "clanked" "clanked" ;
+lin clannish_A = mkAMost "clannish" "clannishly" ;
+lin clannishness_N = mkN "clannishness" "clannishnesses" ;
+lin clansman_N = mkN "clansman" "clansmen" ;
+lin clap_N = mkN "clap" "claps" ;
+lin clap_V = mkV "clap" "clapped" "clapped" ;
+lin clapboard_N = mkN "clapboard" "clapboards" ;
+lin clapper_N = mkN "clapper" "clappers" ;
+lin clapperboard_N = mkN "clapperboard" "clapperboards" ;
+lin claptrap_N = mkN "claptrap" "claptraps" ;
+lin claque_N = mkN "claque" "claques" ;
+lin clarence_N = mkN "clarence" "clarences" ;
+lin claret_N = mkN "claret" "clarets" ;
+lin clarification_N = mkN "clarification" "clarifications" ;
+lin clarify_V = mkV "clarify" "clarified" "clarified" ;
+lin clarinet_N = mkN "clarinet" "clarinets" ;
+lin clarinetist_N = mkN "clarinetist" "clarinetists" ;
+lin clarinettist_N = mkN "clarinettist" "clarinettists" ;
+lin clarion_A = mkAMost "clarion" "clarionly" ;
+lin clarion_N = mkN "clarion" "clarions" ;
+lin clarity_N = mkN "clarity" "clarities" ;
+lin claro_N = mkN "claro" "claroes" ;
+lin clary_N = mkN "clary" "claries" ;
+lin clash_N = mkN "clash" "clashes" ;
+lin clash_V = mkV "clash" "clashed" "clashed" ;
+lin clasp_N = mkN "clasp" "clasps" ;
+lin clasp_V = mkV "clasp" "clasped" "clasped" ;
+lin clasp_knife_N = mkN "clasp-knife" "clasp-knives" ;
+lin class_N = mkN "class" "classes" ;
+lin class_V = mkV "class" "classed" "classed" ;
+lin class_conscious_A = mkAMost "class-conscious" "class-consciously" ;
+lin class_feeling_N = mkN "class-feeling" "class-feelings" ;
+lin class_fellow_N = mkN "class-fellow" "class-fellows" ;
+lin class_list_N = mkN "class-list" "class-lists" ;
+lin class_warfare_N = mkN "class-warfare" "class-warfares" ;
+lin classic_A = mkAMost "classic" "classicly" ;
+lin classic_N = mkN "classic" "classics" ;
+lin classical_A = mkAMost "classical" "classically" ;
+lin classicism_N = mkN "classicism" "classicisms" ;
+lin classicist_N = mkN "classicist" "classicists" ;
+lin classicistic_A = mkAMost "classicistic" "classicisticly" ;
+lin classics_N = mkN "classics" "classics" ;
+lin classifiable_A = mkAMost "classifiable" "classifiably" ;
+lin classification_N = mkN "classification" "classifications" ;
+lin classificatory_A = mkAMost "classificatory" "classificatorily" ;
+lin classifier_N = mkN "classifier" "classifiers" ;
+lin classify_V = mkV "classify" "classified" "classified" ;
+lin classless_A = mkAMost "classless" "classlessly" ;
+lin classmate_N = mkN "classmate" "classmates" ;
+lin classroom_N = mkN "classroom" "classrooms" ;
+lin classwork_N = mkN "classwork" "classworks" ;
+lin classy_A = mkA "classy" "classier" "classiest" "classily" ;
+lin clast_N = mkN "clast" "clasts" ;
+lin clastic_A = mkAMost "clastic" "clasticly" ;
+lin clathrate_A = mkAMost "clathrate" "clathrately" ;
+lin clatter_N = mkN "clatter" "clatters" ;
+lin clatter_V = mkV "clatter" "clattered" "clattered" ;
+lin clattery_A = mkAMost "clattery" "clatterily" ;
+lin clausal_A = mkAMost "clausal" "clausally" ;
+lin clause_N = mkN "clause" "clauses" ;
+lin claustrophobe_N = mkN "claustrophobe" "claustrophobes" ;
+lin claustrophobia_N = mkN "claustrophobia" "claustrophobias" ;
+lin claustrophobic_A = mkAMost "claustrophobic" "claustrophobicly" ;
+lin claustrum_N = mkN "claustrum" "claustrums" ;
+lin clavichord_N = mkN "clavichord" "clavichords" ;
+lin clavicle_N = mkN "clavicle" "clavicles" ;
+lin clavier_N = mkN "clavier" "claviers" ;
+lin claw_N = mkN "claw" "claws" ;
+lin claw_V = mkV "claw" "clawed" "clawed" ;
+lin clawback_N = mkN "clawback" "clawbacks" ;
+lin clawfoot_N = mkN "clawfoot" "clawfoots" ;
+lin clawhammer_N = mkN "clawhammer" "clawhammers" ;
+lin clawlike_A = mkAMost "clawlike" "clawlikely" ;
+lin clay_N = mkN "clay" "clays" ;
+lin clayey_A = mkAMost "clayey" "clayeily" ;
+lin claymore_N = mkN "claymore" "claymores" ;
+lin claystone_N = mkN "claystone" "claystones" ;
+lin clean_A = mkA "clean" "cleaner" "cleanest" "cleanly" ;
+lin clean_Adv = mkAdv "clean" ;
+lin clean_N = mkN "clean" "cleans" ;
+lin clean_V = mkV "clean" "cleaned" "cleaned" ;
+lin clean_bowled_A = mkAMost "clean-bowled" "clean-bowledly" ;
+lin clean_cut_A = mkAMost "clean-cut" "clean-cutly" ;
+lin clean_limbed_A = mkAMost "clean-limbed" "clean-limbedly" ;
+lin clean_living_A = mkAMost "clean-living" "clean-livingly" ;
+lin clean_shaven_A = mkAMost "clean-shaven" "clean-shavenly" ;
+lin clean_up_N = mkN "clean-up" "clean-ups" ;
+lin cleanable_A = mkAMost "cleanable" "cleanably" ;
+lin cleaner_N = mkN "cleaner" "cleaners" ;
+lin cleaners_N = mkN "cleaners" "cleanerses" ;
+lin cleaning_N = mkN "cleaning" "cleanings" ;
+lin cleanliness_N = mkN "cleanliness" "cleanlinesses" ;
+lin cleanly_A = mkA "cleanly" "cleanlier" "cleanliest" "cleanlily" ;
+lin cleanness_N = mkN "cleanness" "cleannesses" ;
+lin cleanse_V = mkV "cleanse" "cleansed" "cleansed" ;
+lin cleanser_N = mkN "cleanser" "cleansers" ;
+lin cleansing_A = mkAMost "cleansing" "cleansingly" ;
+lin cleanup_N = mkN "cleanup" "cleanups" ;
+lin clear_A = mkA "clear" "clearer" "clearest" "clearly" ;
+lin clear_Adv = mkAdv "clear" ;
+lin clear_N = mkN "clear" "clears" ;
+lin clear_V = mkV "clear" "cleared" "cleared" ;
+lin clear_cut_Adv = mkAdv "clear-cut" ;
+lin clear_headed_A = mkAMost "clear-headed" "clear-headedly" ;
+lin clear_sighted_A = mkAMost "clear-sighted" "clear-sightedly" ;
+lin clearance_N = mkN "clearance" "clearances" ;
+lin clearheaded_A = mkAMost "clearheaded" "clearheadedly" ;
+lin clearing_N = mkN "clearing" "clearings" ;
+lin clearing_house_N = mkN "clearing-house" "clearing-houses" ;
+lin clearness_N = mkN "clearness" "clearnesses" ;
+lin clearway_N = mkN "clearway" "clearways" ;
+lin cleat_N = mkN "cleat" "cleats" ;
+lin cleats_N = mkN "cleats" "cleatses" ;
+lin cleavable_A = mkAMost "cleavable" "cleavably" ;
+lin cleavage_N = mkN "cleavage" "cleavages" ;
+lin cleave_V = mkV "cleave" "cleaved" "cleaved" ;
+lin cleaver_N = mkN "cleaver" "cleavers" ;
+lin cleavers_N = mkN "cleavers" "cleaverses" ;
+lin clef_N = mkN "clef" "clefs" ;
+lin cleft_A = mkA "cleft" "clefter" "cleftest" "cleftly" ;
+lin cleft_N = mkN "cleft" "clefts" ;
+lin cleistogamous_A = mkAMost "cleistogamous" "cleistogamously" ;
+lin cleistogamy_N = mkN "cleistogamy" "cleistogamies" ;
+lin cleistothecium_N = mkN "cleistothecium" "cleistotheciums" ;
+lin clematis_N = mkN "clematis" "clematises" ;
+lin clemency_N = mkN "clemency" "clemencies" ;
+lin clement_A = mkAMost "clement" "clemently" ;
+lin clementine_N = mkN "clementine" "clementines" ;
+lin clench_V = mkV "clench" "clenched" "clenched" ;
+lin clerestory_N = mkN "clerestory" "clerestories" ;
+lin clergy_N = mkN "clergy" "clergies" ;
+lin clergyman_N = mkN "clergyman" "clergymen" ;
+lin cleric_N = mkN "cleric" "clerics" ;
+lin clerical_A = mkAMost "clerical" "clerically" ;
+lin clericalism_N = mkN "clericalism" "clericalisms" ;
+lin clericalist_N = mkN "clericalist" "clericalists" ;
+lin clerihew_N = mkN "clerihew" "clerihews" ;
+lin clerk_N = mkN "clerk" "clerks" ;
+lin clerk_V = mkV "clerk" "clerked" "clerked" ;
+lin clerkship_N = mkN "clerkship" "clerkships" ;
+lin clever_A = mkA "clever" "cleverer" "cleverest" "cleverly" ;
+lin cleverness_N = mkN "cleverness" "clevernesses" ;
+lin clevis_N = mkN "clevis" "clevises" ;
+lin clew_N = mkN "clew" "clews" ;
+lin clew_V = mkV "clew" "clewed" "clewed" ;
+lin clews_N = mkN "clews" "clewses" ;
+lin cliched_A = mkAMost "cliched" "clichedly" ;
+lin cliché_N = mkN "cliché" "clichés" ;
+lin click_N = mkN "click" "clicks" ;
+lin click_V = mkV "click" "clicked" "clicked" ;
+lin client_N = mkN "client" "clients" ;
+lin clientage_N = mkN "clientage" "clientages" ;
+lin clientele_N = mkN "clientele" "clienteles" ;
+lin cliff_N = mkN "cliff" "cliffs" ;
+lin cliff_hanger_N = mkN "cliff-hanger" "cliff-hangers" ;
+lin cliffhanger_N = mkN "cliffhanger" "cliffhangers" ;
+lin climacteric_N = mkN "climacteric" "climacterics" ;
+lin climactic_A = mkAMost "climactic" "climacticly" ;
+lin climate_N = mkN "climate" "climates" ;
+lin climatic_A = mkAMost "climatic" "climaticly" ;
+lin climatically_Adv = mkAdv "climatically" ;
+lin climatologist_N = mkN "climatologist" "climatologists" ;
+lin climatology_N = mkN "climatology" "climatologies" ;
+lin climax_N = mkN "climax" "climaxes" ;
+lin climax_V = mkV "climax" "climaxed" "climaxed" ;
+lin climb_N = mkN "climb" "climbs" ;
+lin climb_V = mkV "climb" "climbed" "climbed" ;
+lin climb_down_N = mkN "climb-down" "climb-downs" ;
+lin climber_N = mkN "climber" "climbers" ;
+lin clime_N = mkN "clime" "climes" ;
+lin clinch_N = mkN "clinch" "clinches" ;
+lin clinch_V = mkV "clinch" "clinched" "clinched" ;
+lin clincher_N = mkN "clincher" "clinchers" ;
+lin cling_N = mkN "cling" "clings" ;
+lin cling_V = mkV "cling" "clung" "clung" ;
+lin clingfish_N = mkN "clingfish" "clingfishes" ;
+lin clinic_N = mkN "clinic" "clinics" ;
+lin clinical_A = mkAMost "clinical" "clinically" ;
+lin clinician_N = mkN "clinician" "clinicians" ;
+lin clinid_N = mkN "clinid" "clinids" ;
+lin clink_N = mkN "clink" "clinks" ;
+lin clink_V = mkV "clink" "clinked" "clinked" ;
+lin clinker_N = mkN "clinker" "clinkers" ;
+lin clinker_built_A = mkAMost "clinker-built" "clinker-builtly" ;
+lin clinocephaly_N = mkN "clinocephaly" "clinocephalies" ;
+lin clinodactyly_N = mkN "clinodactyly" "clinodactylies" ;
+lin clinometer_N = mkN "clinometer" "clinometers" ;
+lin clinquant_A = mkAMost "clinquant" "clinquantly" ;
+lin clintonia_N = mkN "clintonia" "clintonias" ;
+lin clip_N = mkN "clip" "clips" ;
+lin clip_V = mkV "clip" "clipped" "clipped" ;
+lin clip_joint_N = mkN "clip-joint" "clip-joints" ;
+lin clip_on_A = mkAMost "clip-on" "clip-only" ;
+lin clipboard_N = mkN "clipboard" "clipboards" ;
+lin clipper_N = mkN "clipper" "clippers" ;
+lin clipping_N = mkN "clipping" "clippings" ;
+lin clique_N = mkN "clique" "cliques" ;
+lin cliquish_A = mkAMost "cliquish" "cliquishly" ;
+lin clitoral_A = mkAMost "clitoral" "clitorally" ;
+lin clitoridectomy_N = mkN "clitoridectomy" "clitoridectomies" ;
+lin clitoris_N = mkN "clitoris" "clitorises" ;
+lin cloaca_N = mkN "cloaca" "cloacas" ;
+lin cloak_N = mkN "cloak" "cloaks" ;
+lin cloak_V = mkV "cloak" "cloaked" "cloaked" ;
+lin cloakmaker_N = mkN "cloakmaker" "cloakmakers" ;
+lin cloakroom_N = mkN "cloakroom" "cloakrooms" ;
+lin clobber_N = mkN "clobber" "clobbers" ;
+lin clobber_V = mkV "clobber" "clobbered" "clobbered" ;
+lin cloche_N = mkN "cloche" "cloches" ;
+lin clock_N = mkN "clock" "clocks" ;
+lin clock_V = mkV "clock" "clocked" "clocked" ;
+lin clock_dial_N = mkN "clock-dial" "clock-dials" ;
+lin clock_face_N = mkN "clock-face" "clock-faces" ;
+lin clock_golf_N = mkN "clock-golf" "clock-golfs" ;
+lin clock_tower_N = mkN "clock-tower" "clock-towers" ;
+lin clock_watching_N = mkN "clock-watching" "clock-watchings" ;
+lin clocking_N = mkN "clocking" "clockings" ;
+lin clocksmith_N = mkN "clocksmith" "clocksmiths" ;
+lin clockwise_A = mkAMost "clockwise" "clockwisely" ;
+lin clockwise_Adv = mkAdv "clockwise" ;
+lin clockwork_N = mkN "clockwork" "clockworks" ;
+lin clod_N = mkN "clod" "clods" ;
+lin cloddish_A = mkAMost "cloddish" "cloddishly" ;
+lin clodhopper_N = mkN "clodhopper" "clodhoppers" ;
+lin clofibrate_N = mkN "clofibrate" "clofibrates" ;
+lin clog_N = mkN "clog" "clogs" ;
+lin clog_V = mkV "clog" "clogged" "clogged" ;
+lin clog_dance_N = mkN "clog-dance" "clog-dances" ;
+lin cloggy_A = mkA "cloggy" "cloggier" "cloggiest" "cloggily" ;
+lin cloisonné_N = mkN "cloisonné" "cloisonnés" ;
+lin cloister_N = mkN "cloister" "cloisters" ;
+lin cloister_V = mkV "cloister" "cloistered" "cloistered" ;
+lin clomiphene_N = mkN "clomiphene" "clomiphenes" ;
+lin clomipramine_N = mkN "clomipramine" "clomipramines" ;
+lin clonal_A = mkAMost "clonal" "clonally" ;
+lin clone_N = mkN "clone" "clones" ;
+lin clone_V = mkV "clone" "cloned" "cloned" ;
+lin clonic_A = mkAMost "clonic" "clonicly" ;
+lin clonidine_N = mkN "clonidine" "clonidines" ;
+lin cloning_N = mkN "cloning" "clonings" ;
+lin clonus_N = mkN "clonus" "clonuses" ;
+lin close_A = mkA "close" "closer" "closest" "closely" ;
+lin close_Adv = mkAdv "close" ;
+lin close_N = mkN "close" "closes" ;
+lin close_V = mkV "close" "closed" "closed" ;
+lin close_cropped_A = mkAMost "close-cropped" "close-croppedly" ;
+lin close_cut_A = mkAMost "close-cut" "close-cutly" ;
+lin close_down_N = mkN "close-down" "close-downs" ;
+lin close_fisted_A = mkAMost "close-fisted" "close-fistedly" ;
+lin close_fitting_A = mkAMost "close-fitting" "close-fittingly" ;
+lin close_grained_A = mkAMost "close-grained" "close-grainedly" ;
+lin close_hauled_A = mkAMost "close-hauled" "close-hauledly" ;
+lin close_set_A = mkAMost "close-set" "close-setly" ;
+lin close_to_Prep = mkPrep "close to" ;
+lin close_up_N = mkN "close-up" "close-ups" ;
+lin closefisted_A = mkAMost "closefisted" "closefistedly" ;
+lin closeness_N = mkN "closeness" "closenesses" ;
+lin closeout_N = mkN "closeout" "closeouts" ;
+lin closer_N = mkN "closer" "closers" ;
+lin closet_A = mkAMost "closet" "closetly" ;
+lin closet_N = mkN "closet" "closets" ;
+lin closet_V = mkV "closet" "closeted" "closeted" ;
+lin closeup_N = mkN "closeup" "closeups" ;
+lin closing_N = mkN "closing" "closings" ;
+lin clostridium_N = mkN "clostridium" "clostridiums" ;
+lin closure_N = mkN "closure" "closures" ;
+lin clot_N = mkN "clot" "clots" ;
+lin clot_V = mkV "clot" "clotted" "clotted" ;
+lin cloth_N = mkN "cloth" "cloths" ;
+lin clothe_V = mkV "clothe" "clothed" "clothed" ;
+lin clothes_basket_N = mkN "clothes-basket" "clothes-baskets" ;
+lin clothes_hanger_N = mkN "clothes-hanger" "clothes-hangers" ;
+lin clothes_moth_N = mkN "clothes-moth" "clothes-moths" ;
+lin clothes_peg_N = mkN "clothes-peg" "clothes-pegs" ;
+lin clothes_pin_N = mkN "clothes-pin" "clothes-pins" ;
+lin clothesbrush_N = mkN "clothesbrush" "clothesbrushes" ;
+lin clotheshorse_N = mkN "clotheshorse" "clotheshorses" ;
+lin clothesless_A = mkAMost "clothesless" "clotheslessly" ;
+lin clothesline_N = mkN "clothesline" "clotheslines" ;
+lin clothespin_N = mkN "clothespin" "clothespins" ;
+lin clothier_N = mkN "clothier" "clothiers" ;
+lin clothing_N = mkN "clothing" "clothings" ;
+lin cloud_N = mkN "cloud" "clouds" ;
+lin cloud_V = mkV "cloud" "clouded" "clouded" ;
+lin cloud_bank_N = mkN "cloud-bank" "cloud-banks" ;
+lin cloud_capped_A = mkAMost "cloud-capped" "cloud-cappedly" ;
+lin cloud_cuckoo_land_N = mkN "cloud-cuckoo-land" "cloud-cuckoo-lands" ;
+lin cloudberry_N = mkN "cloudberry" "cloudberries" ;
+lin cloudburst_N = mkN "cloudburst" "cloudbursts" ;
+lin cloudiness_N = mkN "cloudiness" "cloudinesses" ;
+lin clouding_N = mkN "clouding" "cloudings" ;
+lin cloudless_A = mkAMost "cloudless" "cloudlessly" ;
+lin cloudlessness_N = mkN "cloudlessness" "cloudlessnesses" ;
+lin cloudlike_A = mkAMost "cloudlike" "cloudlikely" ;
+lin cloudy_A = mkA "cloudy" "cloudier" "cloudiest" "cloudily" ;
+lin clout_N = mkN "clout" "clouts" ;
+lin clout_V = mkV "clout" "clouted" "clouted" ;
+lin clove_N = mkN "clove" "cloves" ;
+lin clove_hitch_N = mkN "clove hitch" "clove hitches" ;
+lin cloven_A = mkAMost "cloven" "clovenly" ;
+lin clover_N = mkN "clover" "clovers" ;
+lin cloverleaf_N = mkN "cloverleaf" "cloverleaves" ;
+lin clowder_N = mkN "clowder" "clowders" ;
+lin clown_N = mkN "clown" "clowns" ;
+lin clown_V = mkV "clown" "clowned" "clowned" ;
+lin clownish_A = mkAMost "clownish" "clownishly" ;
+lin cloy_V = mkV "cloy" "cloyed" "cloyed" ;
+lin cloyingly_Adv = mkAdv "cloyingly" ;
+lin clozapine_N = mkN "clozapine" "clozapines" ;
+lin cloze_A = mkA "cloze" "clozer" "clozest" "clozely" ;
+lin club_N = mkN "club" "clubs" ;
+lin club_V = mkV "club" "clubbed" "clubbed" ;
+lin club_footed_A = mkAMost "club-footed" "club-footedly" ;
+lin clubbable_A = mkAMost "clubbable" "clubbably" ;
+lin clubbing_N = mkN "clubbing" "clubbings" ;
+lin clubbish_A = mkAMost "clubbish" "clubbishly" ;
+lin clubfoot_N = mkN "clubfoot" "clubfeet" ;
+lin clubfooted_A = mkAMost "clubfooted" "clubfootedly" ;
+lin clubhouse_N = mkN "clubhouse" "clubhouses" ;
+lin clubroom_N = mkN "clubroom" "clubrooms" ;
+lin cluck_N = mkN "cluck" "clucks" ;
+lin cluck_V = mkV "cluck" "clucked" "clucked" ;
+lin clue_N = mkN "clue" "clues" ;
+lin clueless_A = mkAMost "clueless" "cluelessly" ;
+lin clumber_N = mkN "clumber" "clumbers" ;
+lin clump_N = mkN "clump" "clumps" ;
+lin clump_V = mkV "clump" "clumped" "clumped" ;
+lin clumsiness_N = mkN "clumsiness" "clumsinesses" ;
+lin clumsy_A = mkA "clumsy" "clumsier" "clumsiest" "clumsily" ;
+lin clunch_N = mkN "clunch" "clunches" ;
+lin clunk_N = mkN "clunk" "clunks" ;
+lin clunk_V = mkV "clunk" "clunked" "clunked" ;
+lin clunky_A = mkA "clunky" "clunkier" "clunkiest" "clunkily" ;
+lin clusia_N = mkN "clusia" "clusias" ;
+lin cluster_N = mkN "cluster" "clusters" ;
+lin cluster_V = mkV "cluster" "clustered" "clustered" ;
+lin clutch_N = mkN "clutch" "clutches" ;
+lin clutch_V = mkV "clutch" "clutched" "clutched" ;
+lin clutter_N = mkN "clutter" "clutters" ;
+lin clutter_V = mkV "clutter" "cluttered" "cluttered" ;
+lin clypeus_N = mkN "clypeus" "clypeuses" ;
+lin cm_N = mkN "cm" "cm" ;
+lin co_N = mkN "co" "coes" ;
+lin co_author_V = mkV "co-author" "co-authorred" "co-authorred" ;
+lin co_ed_N = mkN "co-ed" "co-eds" ;
+lin co_edit_V = mkV "co-edit" "co-editted" "co-editted" ;
+lin co_exist_V = mkV "co-exist" "co-existed" "co-existed" ;
+lin co_found_V = mkV "co-found" "co-founded" "co-founded" ;
+lin co_manage_V = mkV "co-manage" "co-managed" "co-managed" ;
+lin co_op_N = mkN "co-op" "co-ops" ;
+lin co_opt_V = mkV "co-opt" "co-opted" "co-opted" ;
+lin co_respondent_N = mkN "co-respondent" "co-respondents" ;
+lin co_sponsor_V = mkV "co-sponsor" "co-sponsorred" "co-sponsorred" ;
+lin co_star_N = mkN "co-star" "co-stars" ;
+lin co_star_V = mkV "co-star" "co-starred" "co-starred" ;
+lin coach_N = mkN "coach" "coaches" ;
+lin coach_V = mkV "coach" "coached" "coached" ;
+lin coach_builder_N = mkN "coach-builder" "coach-builders" ;
+lin coachbuilder_N = mkN "coachbuilder" "coachbuilders" ;
+lin coaching_N = mkN "coaching" "coachings" ;
+lin coachman_N = mkN "coachman" "coachmen" ;
+lin coachwhip_N = mkN "coachwhip" "coachwhips" ;
+lin coadjutor_N = mkN "coadjutor" "coadjutors" ;
+lin coagulable_A = mkAMost "coagulable" "coagulably" ;
+lin coagulant_N = mkN "coagulant" "coagulants" ;
+lin coagulase_N = mkN "coagulase" "coagulases" ;
+lin coagulate_A = mkAMost "coagulate" "coagulately" ;
+lin coagulate_V = mkV "coagulate" "coagulated" "coagulated" ;
+lin coagulation_N = mkN "coagulation" "coagulations" ;
+lin coal_N = mkN "coal" "coals" ;
+lin coal_V = mkV "coal" "coaled" "coaled" ;
+lin coal_gas_N = mkN "coal-gas" "coal-gases" ;
+lin coal_hole_N = mkN "coal-hole" "coal-holes" ;
+lin coal_house_N = mkN "coal-house" "coal-houses" ;
+lin coal_scuttle_N = mkN "coal-scuttle" "coal-scuttles" ;
+lin coal_seam_N = mkN "coal-seam" "coal-seams" ;
+lin coal_tar_N = mkN "coal-tar" "coal-tars" ;
+lin coalbin_N = mkN "coalbin" "coalbins" ;
+lin coalesce_V = mkV "coalesce" "coalesced" "coalesced" ;
+lin coalescence_N = mkN "coalescence" "coalescences" ;
+lin coalescent_A = mkAMost "coalescent" "coalescently" ;
+lin coalface_N = mkN "coalface" "coalfaces" ;
+lin coalfield_N = mkN "coalfield" "coalfields" ;
+lin coaling_station_N = mkN "coaling-station" "coaling-stations" ;
+lin coalition_N = mkN "coalition" "coalitions" ;
+lin coalman_N = mkN "coalman" "coalmen" ;
+lin coalmine_N = mkN "coalmine" "coalmines" ;
+lin coalpit_N = mkN "coalpit" "coalpits" ;
+lin coaming_N = mkN "coaming" "coamings" ;
+lin coarctate_A = mkAMost "coarctate" "coarctately" ;
+lin coarctation_N = mkN "coarctation" "coarctations" ;
+lin coarse_A = mkA "coarse" "coarser" "coarsest" "coarsely" ;
+lin coarsen_V = mkV "coarsen" "coarsened" "coarsened" ;
+lin coarseness_N = mkN "coarseness" "coarsenesses" ;
+lin coast_N = mkN "coast" "coasts" ;
+lin coast_V = mkV "coast" "coasted" "coasted" ;
+lin coastal_A = mkAMost "coastal" "coastally" ;
+lin coaster_N = mkN "coaster" "coasters" ;
+lin coastguard_N = mkN "coastguard" "coastguards" ;
+lin coastguardsman_N = mkN "coastguardsman" "coastguardsmen" ;
+lin coastland_N = mkN "coastland" "coastlands" ;
+lin coastline_N = mkN "coastline" "coastlines" ;
+lin coastward_Adv = mkAdv "coastward" ;
+lin coastwise_A = mkAMost "coastwise" "coastwisely" ;
+lin coastwise_Adv = mkAdv "coastwise" ;
+lin coat_N = mkN "coat" "coats" ;
+lin coat_V = mkV "coat" "coated" "coated" ;
+lin coat_hanger_N = mkN "coat-hanger" "coat-hangers" ;
+lin coatdress_N = mkN "coatdress" "coatdresses" ;
+lin coatee_N = mkN "coatee" "coatees" ;
+lin coati_N = mkN "coati" "coatis" ;
+lin coating_N = mkN "coating" "coatings" ;
+lin coatrack_N = mkN "coatrack" "coatracks" ;
+lin coattail_N = mkN "coattail" "coattails" ;
+lin coauthor_N = mkN "coauthor" "coauthors" ;
+lin coax_V = mkV "coax" "coaxed" "coaxed" ;
+lin coaxial_A = mkAMost "coaxial" "coaxially" ;
+lin coaxing_N = mkN "coaxing" "coaxings" ;
+lin coaxingly_Adv = mkAdv "coaxingly" ;
+lin cob_N = mkN "cob" "cobs" ;
+lin cob_nut_N = mkN "cob-nut" "cob-nuts" ;
+lin cobalt_N = mkN "cobalt" "cobalts" ;
+lin cobaltite_N = mkN "cobaltite" "cobaltites" ;
+lin cobber_N = mkN "cobber" "cobbers" ;
+lin cobble_N = mkN "cobble" "cobbles" ;
+lin cobble_V = mkV "cobble" "cobbled" "cobbled" ;
+lin cobbler_N = mkN "cobbler" "cobblers" ;
+lin cobblers_N = mkN "cobblers" "cobblerses" ;
+lin cobblestone_N = mkN "cobblestone" "cobblestones" ;
+lin cobia_N = mkN "cobia" "cobias" ;
+lin cobnut_N = mkN "cobnut" "cobnuts" ;
+lin cobra_N = mkN "cobra" "cobras" ;
+lin cobweb_N = mkN "cobweb" "cobwebs" ;
+lin cobwebby_A = mkAMost "cobwebby" "cobwebbily" ;
+lin coca_N = mkN "coca" "cocas" ;
+lin coca_cola_N = mkN "coca-cola" "coca-colas" ;
+lin cocaine_N = mkN "cocaine" "cocaines" ;
+lin cocarboxylase_N = mkN "cocarboxylase" "cocarboxylases" ;
+lin coccal_A = mkAMost "coccal" "coccally" ;
+lin coccidioidomycosis_N = mkN "coccidioidomycosis" "coccidioidomycosises" ;
+lin coccidiosis_N = mkN "coccidiosis" "coccidiosises" ;
+lin coccidium_N = mkN "coccidium" "coccidiums" ;
+lin coccobacillus_N = mkN "coccobacillus" "coccobacilluses" ;
+lin coccoid_A = mkAMost "coccoid" "coccoidly" ;
+lin coccus_N = mkN "coccus" "coccuses" ;
+lin coccygeal_A = mkAMost "coccygeal" "coccygeally" ;
+lin coccyx_N = mkN "coccyx" "coccyxes" ;
+lin cochin_N = mkN "cochin" "cochins" ;
+lin cochineal_N = mkN "cochineal" "cochineals" ;
+lin cochlea_N = mkN "cochlea" "cochleas" ;
+lin cochlear_A = mkAMost "cochlear" "cochlearly" ;
+lin cock_N = mkN "cock" "cocks" ;
+lin cock_V = mkV "cock" "cocked" "cocked" ;
+lin cock_a_doodle_doo_N = mkN "cock-a-doodle-doo" "cock-a-doodle-doos" ;
+lin cock_a_hoop_A = mkAMost "cock-a-hoop" "cock-a-hooply" ;
+lin cock_a_hoop_Adv = mkAdv "cock-a-hoop" ;
+lin cock_crow_N = mkN "cock-crow" "cock-crows" ;
+lin cockade_N = mkN "cockade" "cockades" ;
+lin cockamamie_A = mkAMost "cockamamie" "cockamamiely" ;
+lin cockateel_N = mkN "cockateel" "cockateels" ;
+lin cockatoo_N = mkN "cockatoo" "cockatoos" ;
+lin cockatrice_N = mkN "cockatrice" "cockatrices" ;
+lin cockchafer_N = mkN "cockchafer" "cockchafers" ;
+lin cocker_N = mkN "cocker" "cockers" ;
+lin cockerel_N = mkN "cockerel" "cockerels" ;
+lin cockeyed_A = mkAMost "cockeyed" "cockeyedly" ;
+lin cockfight_N = mkN "cockfight" "cockfights" ;
+lin cockfighting_N = mkN "cockfighting" "cockfightings" ;
+lin cockhorse_N = mkN "cockhorse" "cockhorses" ;
+lin cockle_N = mkN "cockle" "cockles" ;
+lin cocklebur_N = mkN "cocklebur" "cockleburs" ;
+lin cockleshell_N = mkN "cockleshell" "cockleshells" ;
+lin cockloft_N = mkN "cockloft" "cocklofts" ;
+lin cockney_A = mkAMost "cockney" "cockneily" ;
+lin cockney_N = mkN "cockney" "cockneys" ;
+lin cockpit_N = mkN "cockpit" "cockpits" ;
+lin cockroach_N = mkN "cockroach" "cockroaches" ;
+lin cockscomb_N = mkN "cockscomb" "cockscombs" ;
+lin cockspur_N = mkN "cockspur" "cockspurs" ;
+lin cocksucker_N = mkN "cocksucker" "cocksuckers" ;
+lin cocksure_A = mkAMost "cocksure" "cocksurely" ;
+lin cocktail_N = mkN "cocktail" "cocktails" ;
+lin cockup_N = mkN "cockup" "cockups" ;
+lin cocky_A = mkA "cocky" "cockier" "cockiest" "cockily" ;
+lin coco_N = mkN "coco" "cocos" ;
+lin cocoa_N = mkN "cocoa" "cocoas" ;
+lin cocobolo_N = mkN "cocobolo" "cocoboloes" ;
+lin coconut_N = mkN "coconut" "coconuts" ;
+lin cocoon_N = mkN "cocoon" "cocoons" ;
+lin cocoon_V = mkV "cocoon" "cocooned" "cocooned" ;
+lin cocooning_N = mkN "cocooning" "cocoonings" ;
+lin cocotte_N = mkN "cocotte" "cocottes" ;
+lin cocozelle_N = mkN "cocozelle" "cocozelles" ;
+lin cocuswood_N = mkN "cocuswood" "cocuswoods" ;
+lin cod_N = mkN "cod" "cods" ;
+lin cod_V = mkV "cod" "codded" "codded" ;
+lin cod_liver_oil_N = mkN "cod-liver oil" "cod-liver oils" ;
+lin coda_N = mkN "coda" "codas" ;
+lin coddle_V = mkV "coddle" "coddled" "coddled" ;
+lin code_N = mkN "code" "codes" ;
+lin code_V = mkV "code" "coded" "coded" ;
+lin codefendant_N = mkN "codefendant" "codefendants" ;
+lin codeine_N = mkN "codeine" "codeines" ;
+lin codetalker_N = mkN "codetalker" "codetalkers" ;
+lin codex_N = mkN "codex" "codices" ;
+lin codfish_N = mkN "codfish" "codfish" ;
+lin codger_N = mkN "codger" "codgers" ;
+lin codicil_N = mkN "codicil" "codicils" ;
+lin codification_N = mkN "codification" "codifications" ;
+lin codify_V = mkV "codify" "codified" "codified" ;
+lin codling_N = mkN "codling" "codlings" ;
+lin codon_N = mkN "codon" "codons" ;
+lin codpiece_N = mkN "codpiece" "codpieces" ;
+lin coeducation_N = mkN "coeducation" "coeducations" ;
+lin coeducational_A = mkAMost "coeducational" "coeducationally" ;
+lin coefficient_N = mkN "coefficient" "coefficients" ;
+lin coelacanth_N = mkN "coelacanth" "coelacanths" ;
+lin coelenterate_N = mkN "coelenterate" "coelenterates" ;
+lin coelenteron_N = mkN "coelenteron" "coelenterons" ;
+lin coeliac_A = mkAMost "coeliac" "coeliacly" ;
+lin coelogyne_N = mkN "coelogyne" "coelogynes" ;
+lin coelophysis_N = mkN "coelophysis" "coelophysises" ;
+lin coelostat_N = mkN "coelostat" "coelostats" ;
+lin coenzyme_N = mkN "coenzyme" "coenzymes" ;
+lin coequal_A = mkAMost "coequal" "coequally" ;
+lin coerce_V = mkV "coerce" "coerced" "coerced" ;
+lin coercion_N = mkN "coercion" "coercions" ;
+lin coercive_A = mkAMost "coercive" "coercively" ;
+lin coetaneous_A = mkAMost "coetaneous" "coetaneously" ;
+lin coeval_A = mkAMost "coeval" "coevally" ;
+lin coeval_N = mkN "coeval" "coevals" ;
+lin coevals_N = mkN "coevals" "coevalses" ;
+lin coexist_V = mkV "coexist" "coexisted" "coexisted" ;
+lin coexistence_N = mkN "coexistence" "coexistences" ;
+lin coexistent_A = mkAMost "coexistent" "coexistently" ;
+lin coextension_N = mkN "coextension" "coextensions" ;
+lin coextensive_A = mkAMost "coextensive" "coextensively" ;
+lin coextrude_V = mkV "coextrude" "coextruded" "coextruded" ;
+lin cofactor_N = mkN "cofactor" "cofactors" ;
+lin coffee_N = mkN "coffee" "coffees" ;
+lin coffee_house_N = mkN "coffee-house" "coffee-houses" ;
+lin coffee_mill_N = mkN "coffee-mill" "coffee-mills" ;
+lin coffee_stall_N = mkN "coffee-stall" "coffee-stalls" ;
+lin coffeeberry_N = mkN "coffeeberry" "coffeeberries" ;
+lin coffeecake_N = mkN "coffeecake" "coffeecakes" ;
+lin coffeepot_N = mkN "coffeepot" "coffeepots" ;
+lin coffer_N = mkN "coffer" "coffers" ;
+lin coffer_dam_N = mkN "coffer-dam" "coffer-dams" ;
+lin coffin_N = mkN "coffin" "coffins" ;
+lin cofounder_N = mkN "cofounder" "cofounders" ;
+lin cog_N = mkN "cog" "cogs" ;
+lin cogency_N = mkN "cogency" "cogencies" ;
+lin cogent_A = mkAMost "cogent" "cogently" ;
+lin cogged_A = mkAMost "cogged" "coggedly" ;
+lin cogitable_A = mkAMost "cogitable" "cogitably" ;
+lin cogitate_V = mkV "cogitate" "cogitated" "cogitated" ;
+lin cogitation_N = mkN "cogitation" "cogitations" ;
+lin cogitative_A = mkAMost "cogitative" "cogitatively" ;
+lin cognac_N = mkN "cognac" "cognacs" ;
+lin cognate_A = mkAMost "cognate" "cognately" ;
+lin cognate_N = mkN "cognate" "cognates" ;
+lin cognition_N = mkN "cognition" "cognitions" ;
+lin cognitive_A = mkAMost "cognitive" "cognitively" ;
+lin cognizance_N = mkN "cognizance" "cognizances" ;
+lin cognizant_A = mkAMost "cognizant" "cognizantly" ;
+lin cognomen_N = mkN "cognomen" "cognomens" ;
+lin cogwheel_N = mkN "cogwheel" "cogwheels" ;
+lin cohabit_V = mkV "cohabit" "cohabited" "cohabited" ;
+lin cohabitation_N = mkN "cohabitation" "cohabitations" ;
+lin cohere_V = mkV "cohere" "cohered" "cohered" ;
+lin coherence_N = mkN "coherence" "coherences" ;
+lin coherency_N = mkN "coherency" "coherencies" ;
+lin coherent_A = mkAMost "coherent" "coherently" ;
+lin cohesion_N = mkN "cohesion" "cohesions" ;
+lin cohesive_A = mkAMost "cohesive" "cohesively" ;
+lin cohesiveness_N = mkN "cohesiveness" "cohesivenesses" ;
+lin coho_N = mkN "coho" "cohoes" ;
+lin cohort_N = mkN "cohort" "cohorts" ;
+lin coif_N = mkN "coif" "coifs" ;
+lin coiffeur_N = mkN "coiffeur" "coiffeurs" ;
+lin coiffeuse_N = mkN "coiffeuse" "coiffeuses" ;
+lin coiffure_N = mkN "coiffure" "coiffures" ;
+lin coign_N = mkN "coign" "coigns" ;
+lin coil_N = mkN "coil" "coils" ;
+lin coil_V = mkV "coil" "coiled" "coiled" ;
+lin coin_N = mkN "coin" "coins" ;
+lin coin_V = mkV "coin" "coined" "coined" ;
+lin coinage_N = mkN "coinage" "coinages" ;
+lin coincide_V = mkV "coincide" "coincided" "coincided" ;
+lin coincidence_N = mkN "coincidence" "coincidences" ;
+lin coincident_A = mkAMost "coincident" "coincidently" ;
+lin coincidental_A = mkAMost "coincidental" "coincidentally" ;
+lin coiner_N = mkN "coiner" "coiners" ;
+lin coinsurance_N = mkN "coinsurance" "coinsurances" ;
+lin coir_N = mkN "coir" "coirs" ;
+lin coital_A = mkAMost "coital" "coitally" ;
+lin coition_N = mkN "coition" "coitions" ;
+lin coitus_N = mkN "coitus" "coituses" ;
+lin coke_N = mkN "coke" "cokes" ;
+lin coke_V = mkV "coke" "coked" "coked" ;
+lin col_N = mkN "col" "cols" ;
+lin cola_N = mkN "cola" "colas" ;
+lin colander_N = mkN "colander" "colanders" ;
+lin colchicine_N = mkN "colchicine" "colchicines" ;
+lin cold_A = mkA "cold" "colder" "coldest" "coldly" ;
+lin cold_N = mkN "cold" "colds" ;
+lin cold_blooded_A = mkAMost "cold-blooded" "cold-bloodedly" ;
+lin cold_hearted_A = mkAMost "cold-hearted" "cold-heartedly" ;
+lin cold_shoulder_V = mkV "cold-shoulder" "cold-shouldered" "cold-shouldered" ;
+lin coldhearted_A = mkAMost "coldhearted" "coldheartedly" ;
+lin coldness_N = mkN "coldness" "coldnesses" ;
+lin coleslaw_N = mkN "coleslaw" "coleslaws" ;
+lin coleus_N = mkN "coleus" "coleuses" ;
+lin colic_N = mkN "colic" "colics" ;
+lin colicky_A = mkAMost "colicky" "colickily" ;
+lin colicroot_N = mkN "colicroot" "colicroots" ;
+lin coliphage_N = mkN "coliphage" "coliphages" ;
+lin colitis_N = mkN "colitis" "colitises" ;
+lin collaborate_V = mkV "collaborate" "collaborated" "collaborated" ;
+lin collaboration_N = mkN "collaboration" "collaborations" ;
+lin collaborationist_N = mkN "collaborationist" "collaborationists" ;
+lin collaborative_A = mkAMost "collaborative" "collaboratively" ;
+lin collaborator_N = mkN "collaborator" "collaborators" ;
+lin collage_N = mkN "collage" "collages" ;
+lin collagen_N = mkN "collagen" "collagens" ;
+lin collagenase_N = mkN "collagenase" "collagenases" ;
+lin collagenous_A = mkAMost "collagenous" "collagenously" ;
+lin collapsable_A = mkAMost "collapsable" "collapsably" ;
+lin collapse_N = mkN "collapse" "collapses" ;
+lin collapse_V = mkV "collapse" "collapsed" "collapsed" ;
+lin collapsible_A = mkAMost "collapsible" "collapsibly" ;
+lin collar_N = mkN "collar" "collars" ;
+lin collar_V = mkV "collar" "collared" "collared" ;
+lin collarbone_N = mkN "collarbone" "collarbones" ;
+lin collard_N = mkN "collard" "collards" ;
+lin collards_N = mkN "collards" "collardses" ;
+lin collarless_A = mkAMost "collarless" "collarlessly" ;
+lin collate_V = mkV "collate" "collated" "collated" ;
+lin collateral_A = mkAMost "collateral" "collaterally" ;
+lin collateral_N = mkN "collateral" "collaterals" ;
+lin collation_N = mkN "collation" "collations" ;
+lin colleague_N = mkN "colleague" "colleagues" ;
+lin collect_A = mkAMost "collect" "collectly" ;
+lin collect_Adv = mkAdv "collect" ;
+lin collect_N = mkN "collect" "collects" ;
+lin collect_V = mkV "collect" "collected" "collected" ;
+lin collectedly_Adv = mkAdv "collectedly" ;
+lin collectible_A = mkAMost "collectible" "collectibly" ;
+lin collectible_N = mkN "collectible" "collectibles" ;
+lin collection_N = mkN "collection" "collections" ;
+lin collective_A = mkAMost "collective" "collectively" ;
+lin collective_N = mkN "collective" "collectives" ;
+lin collectivism_N = mkN "collectivism" "collectivisms" ;
+lin collectivist_A = mkAMost "collectivist" "collectivistly" ;
+lin collectivist_N = mkN "collectivist" "collectivists" ;
+lin collectivization_N = mkN "collectivization" "collectivizations" ;
+lin collectivize_V = mkV "collectivize" "collectivized" "collectivized" ;
+lin collector_N = mkN "collector" "collectors" ;
+lin colleen_N = mkN "colleen" "colleens" ;
+lin college_N = mkN "college" "colleges" ;
+lin collegial_A = mkAMost "collegial" "collegially" ;
+lin collegian_N = mkN "collegian" "collegians" ;
+lin collegiate_A = mkAMost "collegiate" "collegiately" ;
+lin collembolan_N = mkN "collembolan" "collembolans" ;
+lin collet_N = mkN "collet" "collets" ;
+lin collide_V = mkV "collide" "collided" "collided" ;
+lin collider_N = mkN "collider" "colliders" ;
+lin collie_N = mkN "collie" "collies" ;
+lin collier_N = mkN "collier" "colliers" ;
+lin colliery_N = mkN "colliery" "collieries" ;
+lin colligation_N = mkN "colligation" "colligations" ;
+lin collimation_N = mkN "collimation" "collimations" ;
+lin collimator_N = mkN "collimator" "collimators" ;
+lin collinear_A = mkAMost "collinear" "collinearly" ;
+lin collins_N = mkN "collins" "collinses" ;
+lin collision_N = mkN "collision" "collisions" ;
+lin collocate_V = mkV "collocate" "collocated" "collocated" ;
+lin collocation_N = mkN "collocation" "collocations" ;
+lin collodion_N = mkN "collodion" "collodions" ;
+lin colloid_N = mkN "colloid" "colloids" ;
+lin colloidal_A = mkAMost "colloidal" "colloidally" ;
+lin colloquial_A = mkAMost "colloquial" "colloquially" ;
+lin colloquialism_N = mkN "colloquialism" "colloquialisms" ;
+lin colloquium_N = mkN "colloquium" "colloquiums" ;
+lin colloquy_N = mkN "colloquy" "colloquies" ;
+lin collotype_N = mkN "collotype" "collotypes" ;
+lin collusion_N = mkN "collusion" "collusions" ;
+lin collusive_A = mkAMost "collusive" "collusively" ;
+lin colobus_N = mkN "colobus" "colobuses" ;
+lin cologne_N = mkN "cologne" "colognes" ;
+lin colombian_A = mkAMost "colombian" "colombianly" ;
+lin colombian_N = mkN "colombian" "colombians" ;
+lin colon_N = mkN "colon" "colons" ;
+lin colonel_N = mkN "colonel" "colonels" ;
+lin colonial_A = mkAMost "colonial" "colonially" ;
+lin colonial_N = mkN "colonial" "colonials" ;
+lin colonialism_N = mkN "colonialism" "colonialisms" ;
+lin colonialist_N = mkN "colonialist" "colonialists" ;
+lin colonic_A = mkAMost "colonic" "colonicly" ;
+lin colonist_N = mkN "colonist" "colonists" ;
+lin colonization_N = mkN "colonization" "colonizations" ;
+lin colonize_V = mkV "colonize" "colonized" "colonized" ;
+lin colonizer_N = mkN "colonizer" "colonizers" ;
+lin colonnade_N = mkN "colonnade" "colonnades" ;
+lin colonnaded_A = mkAMost "colonnaded" "colonnadedly" ;
+lin colonoscope_N = mkN "colonoscope" "colonoscopes" ;
+lin colonoscopy_N = mkN "colonoscopy" "colonoscopies" ;
+lin colony_N = mkN "colony" "colonies" ;
+lin colophon_N = mkN "colophon" "colophons" ;
+lin colophony_N = mkN "colophony" "colophonies" ;
+lin color_A = mkAMost "color" "colorly" ;
+lin color_N = mkN "color" "colors" ;
+lin color_bar_N = mkN "color-bar" "color-bars" ;
+lin color_blind_A = mkAMost "color-blind" "color-blindly" ;
+lin color_code_V = mkV "color-code" "color-coded" "color-coded" ;
+lin color_colored_V = mkV "color" "colored" "colored" ;
+lin color_colorred_V = mkV "color" "colorred" "colorred" ;
+lin color_wash_N = mkN "color-wash" "color-washes" ;
+lin coloration_N = mkN "coloration" "colorations" ;
+lin coloratura_N = mkN "coloratura" "coloraturas" ;
+lin colorcast_N = mkN "colorcast" "colorcasts" ;
+lin colorectal_A = mkAMost "colorectal" "colorectally" ;
+lin colored_A = mkAMost "colored" "coloredly" ;
+lin colorfast_A = mkAMost "colorfast" "colorfastly" ;
+lin colorful_A = mkAMost "colorful" "colorfully" ;
+lin colorimeter_N = mkN "colorimeter" "colorimeters" ;
+lin colorimetric_A = mkAMost "colorimetric" "colorimetricly" ;
+lin colorimetry_N = mkN "colorimetry" "colorimetries" ;
+lin coloring_N = mkN "coloring" "colorings" ;
+lin colorist_N = mkN "colorist" "colorists" ;
+lin colorless_A = mkAMost "colorless" "colorlessly" ;
+lin colorlessness_N = mkN "colorlessness" "colorlessnesses" ;
+lin colossal_A = mkAMost "colossal" "colossally" ;
+lin colossus_N = mkN "colossus" "colossi" ;
+lin colostomy_N = mkN "colostomy" "colostomies" ;
+lin colostrum_N = mkN "colostrum" "colostrums" ;
+lin colour_N = mkN "colour" "colours" ;
+lin colour_V = mkV "colour" "coloured" "coloured" ;
+lin colour_bar_N = mkN "colour-bar" "colour-bars" ;
+lin colour_blind_A = mkAMost "colour-blind" "colour-blindly" ;
+lin colour_code_V = mkV "colour-code" "colour-coded" "colour-coded" ;
+lin colour_wash_N = mkN "colour-wash" "colour-washes" ;
+lin colourful_A = mkAMost "colourful" "colourfully" ;
+lin colouring_N = mkN "colouring" "colourings" ;
+lin colourless_A = mkAMost "colourless" "colourlessly" ;
+lin colourlessness_N = mkN "colourlessness" "colourlessnesses" ;
+lin colpitis_N = mkN "colpitis" "colpitises" ;
+lin colpocele_N = mkN "colpocele" "colpoceles" ;
+lin colpocystitis_N = mkN "colpocystitis" "colpocystitises" ;
+lin colpoxerosis_N = mkN "colpoxerosis" "colpoxerosises" ;
+lin colt_N = mkN "colt" "colts" ;
+lin colter_N = mkN "colter" "colters" ;
+lin coltish_A = mkAMost "coltish" "coltishly" ;
+lin coltsfoot_N = mkN "coltsfoot" "coltsfoots" ;
+lin columbarium_N = mkN "columbarium" "columbariums" ;
+lin columbine_N = mkN "columbine" "columbines" ;
+lin columbium_N = mkN "columbium" "columbiums" ;
+lin columbo_N = mkN "columbo" "columboes" ;
+lin columella_N = mkN "columella" "columellas" ;
+lin column_N = mkN "column" "columns" ;
+lin columnar_A = mkAMost "columnar" "columnarly" ;
+lin columnea_N = mkN "columnea" "columneas" ;
+lin columned_A = mkAMost "columned" "columnedly" ;
+lin columniation_N = mkN "columniation" "columniations" ;
+lin columniform_A = mkAMost "columniform" "columniformly" ;
+lin columnist_N = mkN "columnist" "columnists" ;
+lin coma_N = mkN "coma" "comas" ;
+lin comate_A = mkAMost "comate" "comately" ;
+lin comatose_A = mkAMost "comatose" "comatosely" ;
+lin comb_N = mkN "comb" "combs" ;
+lin comb_V = mkV "comb" "combed" "combed" ;
+lin comb_out_N = mkN "comb-out" "comb-outs" ;
+lin combat_N = mkN "combat" "combats" ;
+lin combat_V = mkV "combat" "combated" "combated" ;
+lin combatant_A = mkAMost "combatant" "combatantly" ;
+lin combatant_N = mkN "combatant" "combatants" ;
+lin combative_A = mkAMost "combative" "combatively" ;
+lin combativeness_N = mkN "combativeness" "combativenesses" ;
+lin comber_N = mkN "comber" "combers" ;
+lin combinable_A = mkAMost "combinable" "combinably" ;
+lin combination_N = mkN "combination" "combinations" ;
+lin combination_lock_N = mkN "combination-lock" "combination-locks" ;
+lin combinative_A = mkAMost "combinative" "combinatively" ;
+lin combinatorial_A = mkAMost "combinatorial" "combinatorially" ;
+lin combine_N = mkN "combine" "combines" ;
+lin combine_V = mkV "combine" "combined" "combined" ;
+lin combining_N = mkN "combining" "combinings" ;
+lin combretum_N = mkN "combretum" "combretums" ;
+lin comburent_A = mkAMost "comburent" "comburently" ;
+lin combustibility_N = mkN "combustibility" "combustibilities" ;
+lin combustible_A = mkAMost "combustible" "combustibly" ;
+lin combustible_N = mkN "combustible" "combustibles" ;
+lin combustion_N = mkN "combustion" "combustions" ;
+lin come_at_able_A = mkAMost "come-at-able" "come-at-ably" ;
+lin come_came_V = mkV "come" "came" "come" ;
+lin come_comed_V = mkV "come" "comed" "comed" ;
+lin come_on_N = mkN "come-on" "come-ons" ;
+lin comeback_N = mkN "comeback" "comebacks" ;
+lin comedian_N = mkN "comedian" "comedians" ;
+lin comedienne_N = mkN "comedienne" "comediennes" ;
+lin comedown_N = mkN "comedown" "comedowns" ;
+lin comedy_N = mkN "comedy" "comedies" ;
+lin comeliness_N = mkN "comeliness" "comelinesses" ;
+lin comely_A = mkA "comely" "comelier" "comeliest" "comelily" ;
+lin comer_N = mkN "comer" "comers" ;
+lin comestible_N = mkN "comestible" "comestibles" ;
+lin comet_N = mkN "comet" "comets" ;
+lin cometary_A = mkAMost "cometary" "cometarily" ;
+lin comfit_N = mkN "comfit" "comfits" ;
+lin comfort_N = mkN "comfort" "comforts" ;
+lin comfort_V = mkV "comfort" "comforted" "comforted" ;
+lin comfortable_A = mkAMost "comfortable" "comfortably" ;
+lin comfortableness_N = mkN "comfortableness" "comfortablenesses" ;
+lin comforter_N = mkN "comforter" "comforters" ;
+lin comforting_A = mkAMost "comforting" "comfortingly" ;
+lin comfortless_A = mkAMost "comfortless" "comfortlessly" ;
+lin comforts_N = mkN "comforts" "comfortses" ;
+lin comfrey_N = mkN "comfrey" "comfreys" ;
+lin comfy_A = mkA "comfy" "comfier" "comfiest" "comfily" ;
+lin comic_A = mkAMost "comic" "comicly" ;
+lin comic_N = mkN "comic" "comics" ;
+lin comical_A = mkAMost "comical" "comically" ;
+lin comicality_N = mkN "comicality" "comicalities" ;
+lin coming_N = mkN "coming" "comings" ;
+lin comity_N = mkN "comity" "comities" ;
+lin comma_N = mkN "comma" "commas" ;
+lin command_N = mkN "command" "commands" ;
+lin command_V = mkV "command" "commanded" "commanded" ;
+lin commandant_N = mkN "commandant" "commandants" ;
+lin commandeer_V = mkV "commandeer" "commandeered" "commandeered" ;
+lin commander_N = mkN "commander" "commanders" ;
+lin commandership_N = mkN "commandership" "commanderships" ;
+lin commandment_N = mkN "commandment" "commandments" ;
+lin commando_N = mkN "commando" "commandos" ;
+lin commelina_N = mkN "commelina" "commelinas" ;
+lin commemorate_V = mkV "commemorate" "commemorated" "commemorated" ;
+lin commemoration_N = mkN "commemoration" "commemorations" ;
+lin commemorative_A = mkAMost "commemorative" "commemoratively" ;
+lin commemorative_N = mkN "commemorative" "commemoratives" ;
+lin commence_V = mkV "commence" "commenced" "commenced" ;
+lin commencement_N = mkN "commencement" "commencements" ;
+lin commend_V = mkV "commend" "commended" "commended" ;
+lin commendable_A = mkAMost "commendable" "commendably" ;
+lin commendation_N = mkN "commendation" "commendations" ;
+lin commensal_A = mkAMost "commensal" "commensally" ;
+lin commensal_N = mkN "commensal" "commensals" ;
+lin commensalism_N = mkN "commensalism" "commensalisms" ;
+lin commensurable_A = mkAMost "commensurable" "commensurably" ;
+lin commensurate_A = mkAMost "commensurate" "commensurately" ;
+lin commensurateness_N = mkN "commensurateness" "commensuratenesses" ;
+lin comment_N = mkN "comment" "comments" ;
+lin comment_V = mkV "comment" "commented" "commented" ;
+lin commentary_N = mkN "commentary" "commentaries" ;
+lin commentate_V = mkV "commentate" "commentated" "commentated" ;
+lin commentator_N = mkN "commentator" "commentators" ;
+lin commerce_N = mkN "commerce" "commerces" ;
+lin commercial_A = mkAMost "commercial" "commercially" ;
+lin commercial_N = mkN "commercial" "commercials" ;
+lin commercialism_N = mkN "commercialism" "commercialisms" ;
+lin commercialization_N = mkN "commercialization" "commercializations" ;
+lin commercialize_V = mkV "commercialize" "commercialized" "commercialized" ;
+lin commination_N = mkN "commination" "comminations" ;
+lin comminatory_A = mkAMost "comminatory" "comminatorily" ;
+lin commingle_V = mkV "commingle" "commingled" "commingled" ;
+lin commiserate_V = mkV "commiserate" "commiserated" "commiserated" ;
+lin commiseration_N = mkN "commiseration" "commiserations" ;
+lin commiserative_A = mkAMost "commiserative" "commiseratively" ;
+lin commissar_N = mkN "commissar" "commissars" ;
+lin commissariat_N = mkN "commissariat" "commissariats" ;
+lin commissary_N = mkN "commissary" "commissaries" ;
+lin commission_N = mkN "commission" "commissions" ;
+lin commission_V = mkV "commission" "commissioned" "commissioned" ;
+lin commissionaire_N = mkN "commissionaire" "commissionaires" ;
+lin commissioner_N = mkN "commissioner" "commissioners" ;
+lin commissure_N = mkN "commissure" "commissures" ;
+lin commit_V = mkV "commit" "committed" "committed" ;
+lin commital_N = mkN "commital" "commitals" ;
+lin commitment_N = mkN "commitment" "commitments" ;
+lin committedness_N = mkN "committedness" "committednesses" ;
+lin committee_N = mkN "committee" "committees" ;
+lin committeeman_N = mkN "committeeman" "committeemen" ;
+lin committeewoman_N = mkN "committeewoman" "committeewomen" ;
+lin commode_N = mkN "commode" "commodes" ;
+lin commodious_A = mkAMost "commodious" "commodiously" ;
+lin commodity_N = mkN "commodity" "commodities" ;
+lin commodore_N = mkN "commodore" "commodores" ;
+lin common_DUMMY_A = mkAMost "common" "commonly" ;
+lin common_N = mkN "common" "commons" ;
+lin common_commoner_A = mkA "common" "commoner" "commonest" "commonly" ;
+lin common_room_N = mkN "common-room" "common-rooms" ;
+lin commonage_N = mkN "commonage" "commonages" ;
+lin commonality_N = mkN "commonality" "commonalities" ;
+lin commonalty_N = mkN "commonalty" "commonalties" ;
+lin commoner_N = mkN "commoner" "commoners" ;
+lin commonness_N = mkN "commonness" "commonnesses" ;
+lin commonplace_A = mkAMost "commonplace" "commonplacely" ;
+lin commonplace_N = mkN "commonplace" "commonplaces" ;
+lin commons_N = mkN "commons" "commonses" ;
+lin commonsense_A = mkAMost "commonsense" "commonsensely" ;
+lin commonwealth_N = mkN "commonwealth" "commonwealths" ;
+lin commotion_N = mkN "commotion" "commotions" ;
+lin communal_A = mkAMost "communal" "communally" ;
+lin communalism_N = mkN "communalism" "communalisms" ;
+lin commune_N = mkN "commune" "communes" ;
+lin commune_V = mkV "commune" "communed" "communed" ;
+lin communicable_A = mkAMost "communicable" "communicably" ;
+lin communicant_N = mkN "communicant" "communicants" ;
+lin communicate_V = mkV "communicate" "communicated" "communicated" ;
+lin communication_N = mkN "communication" "communications" ;
+lin communicational_A = mkAMost "communicational" "communicationally" ;
+lin communications_N = mkN "communications" "communicationses" ;
+lin communicative_A = mkAMost "communicative" "communicatively" ;
+lin communicativeness_N = mkN "communicativeness" "communicativenesses" ;
+lin communicator_N = mkN "communicator" "communicators" ;
+lin communion_N = mkN "communion" "communions" ;
+lin communiqué_N = mkN "communiqué" "communiqués" ;
+lin communism_N = mkN "communism" "communisms" ;
+lin communist_A = mkAMost "communist" "communistly" ;
+lin communist_N = mkN "communist" "communists" ;
+lin community_N = mkN "community" "communities" ;
+lin communization_N = mkN "communization" "communizations" ;
+lin commutability_N = mkN "commutability" "commutabilities" ;
+lin commutable_A = mkAMost "commutable" "commutably" ;
+lin commutation_N = mkN "commutation" "commutations" ;
+lin commutative_A = mkAMost "commutative" "commutatively" ;
+lin commutator_N = mkN "commutator" "commutators" ;
+lin commute_N = mkN "commute" "commutes" ;
+lin commute_V = mkV "commute" "commuted" "commuted" ;
+lin commuter_N = mkN "commuter" "commuters" ;
+lin compact_A = mkAMost "compact" "compactly" ;
+lin compact_N = mkN "compact" "compacts" ;
+lin compact_V = mkV "compact" "compacted" "compacted" ;
+lin compaction_N = mkN "compaction" "compactions" ;
+lin compactness_N = mkN "compactness" "compactnesses" ;
+lin companion_N = mkN "companion" "companions" ;
+lin companionability_N = mkN "companionability" "companionabilities" ;
+lin companionable_A = mkAMost "companionable" "companionably" ;
+lin companionate_A = mkAMost "companionate" "companionately" ;
+lin companionship_N = mkN "companionship" "companionships" ;
+lin companionway_N = mkN "companionway" "companionways" ;
+lin company_N = mkN "company" "companies" ;
+lin comparability_N = mkN "comparability" "comparabilities" ;
+lin comparable_A = mkAMost "comparable" "comparably" ;
+lin comparative_A = mkAMost "comparative" "comparatively" ;
+lin comparative_N = mkN "comparative" "comparatives" ;
+lin compare_N = mkN "compare" "compares" ;
+lin compare_V = mkV "compare" "compared" "compared" ;
+lin comparison_N = mkN "comparison" "comparisons" ;
+lin compartment_N = mkN "compartment" "compartments" ;
+lin compartmental_A = mkAMost "compartmental" "compartmentally" ;
+lin compartmentalization_N = mkN "compartmentalization" "compartmentalizations" ;
+lin compartmentalize_V = mkV "compartmentalize" "compartmentalized" "compartmentalized" ;
+lin compartmented_A = mkAMost "compartmented" "compartmentedly" ;
+lin compass_N = mkN "compass" "compasses" ;
+lin compass_V = mkV "compass" "compassed" "compassed" ;
+lin compassion_N = mkN "compassion" "compassions" ;
+lin compassionate_A = mkAMost "compassionate" "compassionately" ;
+lin compatibility_N = mkN "compatibility" "compatibilities" ;
+lin compatible_A = mkAMost "compatible" "compatibly" ;
+lin compatriot_N = mkN "compatriot" "compatriots" ;
+lin compeer_N = mkN "compeer" "compeers" ;
+lin compel_V = mkV "compel" "compelled" "compelled" ;
+lin compelling_A = mkAMost "compelling" "compellingly" ;
+lin compendious_A = mkAMost "compendious" "compendiously" ;
+lin compendium_N = mkN "compendium" "compendiums" ;
+lin compensable_A = mkAMost "compensable" "compensably" ;
+lin compensate_V = mkV "compensate" "compensated" "compensated" ;
+lin compensation_N = mkN "compensation" "compensations" ;
+lin compensatory_A = mkAMost "compensatory" "compensatorily" ;
+lin compete_V = mkV "compete" "competed" "competed" ;
+lin competence_N = mkN "competence" "competences" ;
+lin competent_A = mkAMost "competent" "competently" ;
+lin competition_N = mkN "competition" "competitions" ;
+lin competitive_A = mkAMost "competitive" "competitively" ;
+lin competitiveness_N = mkN "competitiveness" "competitivenesses" ;
+lin competitor_N = mkN "competitor" "competitors" ;
+lin compilation_N = mkN "compilation" "compilations" ;
+lin compile_V = mkV "compile" "compiled" "compiled" ;
+lin compiler_N = mkN "compiler" "compilers" ;
+lin complacence_N = mkN "complacence" "complacences" ;
+lin complacency_N = mkN "complacency" "complacencies" ;
+lin complacent_A = mkAMost "complacent" "complacently" ;
+lin complain_V = mkV "complain" "complained" "complained" ;
+lin complainant_N = mkN "complainant" "complainants" ;
+lin complainingly_Adv = mkAdv "complainingly" ;
+lin complaint_N = mkN "complaint" "complaints" ;
+lin complaisance_N = mkN "complaisance" "complaisances" ;
+lin complaisant_A = mkAMost "complaisant" "complaisantly" ;
+lin complement_N = mkN "complement" "complements" ;
+lin complement_V = mkV "complement" "complemented" "complemented" ;
+lin complemental_A = mkAMost "complemental" "complementally" ;
+lin complementarity_N = mkN "complementarity" "complementarities" ;
+lin complementary_A = mkAMost "complementary" "complementarily" ;
+lin complementation_N = mkN "complementation" "complementations" ;
+lin complete_A = mkAMost "complete" "completely" ;
+lin complete_V = mkV "complete" "completed" "completed" ;
+lin completeness_N = mkN "completeness" "completenesses" ;
+lin completion_N = mkN "completion" "completions" ;
+lin complex_A = mkAMost "complex" "complexly" ;
+lin complex_N = mkN "complex" "complexes" ;
+lin complexifier_N = mkN "complexifier" "complexifiers" ;
+lin complexion_N = mkN "complexion" "complexions" ;
+lin complexity_N = mkN "complexity" "complexities" ;
+lin compliance_N = mkN "compliance" "compliances" ;
+lin compliant_A = mkAMost "compliant" "compliantly" ;
+lin complicate_V = mkV "complicate" "complicated" "complicated" ;
+lin complicatedness_N = mkN "complicatedness" "complicatednesses" ;
+lin complication_N = mkN "complication" "complications" ;
+lin complicity_N = mkN "complicity" "complicities" ;
+lin compliment_N = mkN "compliment" "compliments" ;
+lin compliment_V = mkV "compliment" "complimented" "complimented" ;
+lin complimentary_A = mkAMost "complimentary" "complimentarily" ;
+lin complin_N = mkN "complin" "complins" ;
+lin compline_N = mkN "compline" "complines" ;
+lin comply_V = mkV "comply" "complied" "complied" ;
+lin component_A = mkAMost "component" "componently" ;
+lin component_N = mkN "component" "components" ;
+lin comport_V = mkV "comport" "comported" "comported" ;
+lin comportment_N = mkN "comportment" "comportments" ;
+lin compos_mentis_A = mkAMost "compos mentis" "compos mentisly" ;
+lin compose_V = mkV "compose" "composed" "composed" ;
+lin composer_N = mkN "composer" "composers" ;
+lin composing_N = mkN "composing" "composings" ;
+lin composite_A = mkAMost "composite" "compositely" ;
+lin composite_N = mkN "composite" "composites" ;
+lin compositeness_N = mkN "compositeness" "compositenesses" ;
+lin composition_N = mkN "composition" "compositions" ;
+lin compositional_A = mkAMost "compositional" "compositionally" ;
+lin compositor_N = mkN "compositor" "compositors" ;
+lin compost_N = mkN "compost" "composts" ;
+lin compost_V = mkV "compost" "composted" "composted" ;
+lin composure_N = mkN "composure" "composures" ;
+lin compote_N = mkN "compote" "compotes" ;
+lin compound_A = mkAMost "compound" "compoundly" ;
+lin compound_N = mkN "compound" "compounds" ;
+lin compound_V = mkV "compound" "compounded" "compounded" ;
+lin comprehend_V = mkV "comprehend" "comprehended" "comprehended" ;
+lin comprehensibility_N = mkN "comprehensibility" "comprehensibilities" ;
+lin comprehensible_A = mkAMost "comprehensible" "comprehensibly" ;
+lin comprehension_N = mkN "comprehension" "comprehensions" ;
+lin comprehensive_A = mkAMost "comprehensive" "comprehensively" ;
+lin comprehensiveness_N = mkN "comprehensiveness" "comprehensivenesses" ;
+lin compress_N = mkN "compress" "compresses" ;
+lin compress_V = mkV "compress" "compressed" "compressed" ;
+lin compressibility_N = mkN "compressibility" "compressibilities" ;
+lin compressible_A = mkAMost "compressible" "compressibly" ;
+lin compression_N = mkN "compression" "compressions" ;
+lin compressor_N = mkN "compressor" "compressors" ;
+lin comprise_V = mkV "comprise" "comprised" "comprised" ;
+lin compromise_N = mkN "compromise" "compromises" ;
+lin compromise_V = mkV "compromise" "compromised" "compromised" ;
+lin compromiser_N = mkN "compromiser" "compromisers" ;
+lin compsognathus_N = mkN "compsognathus" "compsognathuses" ;
+lin comptroller_N = mkN "comptroller" "comptrollers" ;
+lin comptrollership_N = mkN "comptrollership" "comptrollerships" ;
+lin compulsion_N = mkN "compulsion" "compulsions" ;
+lin compulsive_A = mkAMost "compulsive" "compulsively" ;
+lin compulsive_N = mkN "compulsive" "compulsives" ;
+lin compulsiveness_N = mkN "compulsiveness" "compulsivenesses" ;
+lin compulsory_A = mkAMost "compulsory" "compulsorily" ;
+lin compunction_N = mkN "compunction" "compunctions" ;
+lin computable_A = mkAMost "computable" "computably" ;
+lin computation_N = mkN "computation" "computations" ;
+lin computational_A = mkAMost "computational" "computationally" ;
+lin compute_V = mkV "compute" "computed" "computed" ;
+lin computer_N = mkN "computer" "computers" ;
+lin computer_science_N = mkN "computer science" "computer sciences" ;
+lin computerisation_N = mkN "computerisation" "computerisations" ;
+lin computerization_N = mkN "computerization" "computerizations" ;
+lin computerize_V = mkV "computerize" "computerized" "computerized" ;
+lin compère_N = mkN "compère" "compères" ;
+lin compère_V = mkV "compère" "compèred" "compèred" ;
+lin comrade_N = mkN "comrade" "comrades" ;
+lin comradely_A = mkAMost "comradely" "comradelily" ;
+lin comradely_Adv = mkAdv "comradely" ;
+lin comradeship_N = mkN "comradeship" "comradeships" ;
+lin con_Adv = mkAdv "con" ;
+lin con_N = mkN "con" "cons" ;
+lin con_V = mkV "con" "conned" "conned" ;
+lin con_man_N = mkN "con-man" "con-men" ;
+lin conacaste_N = mkN "conacaste" "conacastes" ;
+lin concatenation_N = mkN "concatenation" "concatenations" ;
+lin concave_A = mkAMost "concave" "concavely" ;
+lin concavity_N = mkN "concavity" "concavities" ;
+lin conceal_V = mkV "conceal" "concealed" "concealed" ;
+lin conceale_V = mkV "conceale" "concealed" "concealed" ;
+lin concealment_N = mkN "concealment" "concealments" ;
+lin concede_V = mkV "concede" "conceded" "conceded" ;
+lin conceit_N = mkN "conceit" "conceits" ;
+lin conceited_A = mkAMost "conceited" "conceitedly" ;
+lin conceivable_A = mkAMost "conceivable" "conceivably" ;
+lin conceivableness_N = mkN "conceivableness" "conceivablenesses" ;
+lin conceive_V = mkV "conceive" "conceived" "conceived" ;
+lin concentrate_N = mkN "concentrate" "concentrates" ;
+lin concentrate_V = mkV "concentrate" "concentrated" "concentrated" ;
+lin concentration_N = mkN "concentration" "concentrations" ;
+lin concentric_A = mkAMost "concentric" "concentricly" ;
+lin concentricity_N = mkN "concentricity" "concentricities" ;
+lin concept_N = mkN "concept" "concepts" ;
+lin conception_N = mkN "conception" "conceptions" ;
+lin conceptional_A = mkAMost "conceptional" "conceptionally" ;
+lin conceptive_A = mkAMost "conceptive" "conceptively" ;
+lin conceptual_A = mkAMost "conceptual" "conceptually" ;
+lin conceptualism_N = mkN "conceptualism" "conceptualisms" ;
+lin conceptualistic_A = mkAMost "conceptualistic" "conceptualisticly" ;
+lin conceptualization_N = mkN "conceptualization" "conceptualizations" ;
+lin concern_N = mkN "concern" "concerns" ;
+lin concern_V = mkV "concern" "concerned" "concerned" ;
+lin concernedly_Adv = mkAdv "concernedly" ;
+lin concert_N = mkN "concert" "concerts" ;
+lin concert_V = mkV "concert" "concerted" "concerted" ;
+lin concert_hall_N = mkN "concert-hall" "concert-halls" ;
+lin concertina_N = mkN "concertina" "concertinas" ;
+lin concerto_N = mkN "concerto" "concertos" ;
+lin concession_N = mkN "concession" "concessions" ;
+lin concessionaire_N = mkN "concessionaire" "concessionaires" ;
+lin concessive_A = mkAMost "concessive" "concessively" ;
+lin conch_N = mkN "conch" "conches" ;
+lin concha_N = mkN "concha" "conchas" ;
+lin conchfish_N = mkN "conchfish" "conchfishes" ;
+lin conchologist_N = mkN "conchologist" "conchologists" ;
+lin conchology_N = mkN "conchology" "conchologies" ;
+lin concierge_N = mkN "concierge" "concierges" ;
+lin conciliate_V = mkV "conciliate" "conciliated" "conciliated" ;
+lin conciliation_N = mkN "conciliation" "conciliations" ;
+lin conciliator_N = mkN "conciliator" "conciliators" ;
+lin conciliatory_A = mkAMost "conciliatory" "conciliatorily" ;
+lin concise_A = mkAMost "concise" "concisely" ;
+lin conciseness_N = mkN "conciseness" "concisenesses" ;
+lin conclave_N = mkN "conclave" "conclaves" ;
+lin conclude_V = mkV "conclude" "concluded" "concluded" ;
+lin conclusion_N = mkN "conclusion" "conclusions" ;
+lin conclusive_A = mkAMost "conclusive" "conclusively" ;
+lin concoct_V = mkV "concoct" "concocted" "concocted" ;
+lin concoction_N = mkN "concoction" "concoctions" ;
+lin concomitance_N = mkN "concomitance" "concomitances" ;
+lin concomitant_A = mkAMost "concomitant" "concomitantly" ;
+lin concomitant_N = mkN "concomitant" "concomitants" ;
+lin concord_N = mkN "concord" "concords" ;
+lin concordance_N = mkN "concordance" "concordances" ;
+lin concordant_A = mkAMost "concordant" "concordantly" ;
+lin concordat_N = mkN "concordat" "concordats" ;
+lin concourse_N = mkN "concourse" "concourses" ;
+lin concrete_A = mkAMost "concrete" "concretely" ;
+lin concrete_N = mkN "concrete" "concretes" ;
+lin concrete_V = mkV "concrete" "concreted" "concreted" ;
+lin concreteness_N = mkN "concreteness" "concretenesses" ;
+lin concretion_N = mkN "concretion" "concretions" ;
+lin concretism_N = mkN "concretism" "concretisms" ;
+lin concretistic_A = mkAMost "concretistic" "concretisticly" ;
+lin concubinage_N = mkN "concubinage" "concubinages" ;
+lin concubine_N = mkN "concubine" "concubines" ;
+lin concupiscence_N = mkN "concupiscence" "concupiscences" ;
+lin concur_V = mkV "concur" "concurred" "concurred" ;
+lin concurrence_N = mkN "concurrence" "concurrences" ;
+lin concurrent_A = mkAMost "concurrent" "concurrently" ;
+lin concurrentness_N = mkN "concurrentness" "concurrentnesses" ;
+lin concuss_V = mkV "concuss" "concussed" "concussed" ;
+lin concussion_N = mkN "concussion" "concussions" ;
+lin condemn_V = mkV "condemn" "condemned" "condemned" ;
+lin condemnable_A = mkAMost "condemnable" "condemnably" ;
+lin condemnation_N = mkN "condemnation" "condemnations" ;
+lin condemnatory_A = mkAMost "condemnatory" "condemnatorily" ;
+lin condensate_N = mkN "condensate" "condensates" ;
+lin condensation_N = mkN "condensation" "condensations" ;
+lin condense_V = mkV "condense" "condensed" "condensed" ;
+lin condenser_N = mkN "condenser" "condensers" ;
+lin condensing_N = mkN "condensing" "condensings" ;
+lin condescend_V = mkV "condescend" "condescended" "condescended" ;
+lin condescendingly_Adv = mkAdv "condescendingly" ;
+lin condescension_N = mkN "condescension" "condescensions" ;
+lin condign_A = mkAMost "condign" "condignly" ;
+lin condiment_N = mkN "condiment" "condiments" ;
+lin condition_N = mkN "condition" "conditions" ;
+lin condition_V = mkV "condition" "conditioned" "conditioned" ;
+lin conditional_A = mkAMost "conditional" "conditionally" ;
+lin conditionality_N = mkN "conditionality" "conditionalities" ;
+lin conditioner_N = mkN "conditioner" "conditioners" ;
+lin conditioning_N = mkN "conditioning" "conditionings" ;
+lin conditions_N = mkN "conditions" "conditionses" ;
+lin condole_V = mkV "condole" "condoled" "condoled" ;
+lin condolence_N = mkN "condolence" "condolences" ;
+lin condolent_A = mkAMost "condolent" "condolently" ;
+lin condom_N = mkN "condom" "condoms" ;
+lin condominium_N = mkN "condominium" "condominiums" ;
+lin condonation_N = mkN "condonation" "condonations" ;
+lin condone_V = mkV "condone" "condoned" "condoned" ;
+lin condor_N = mkN "condor" "condors" ;
+lin conduce_V = mkV "conduce" "conduced" "conduced" ;
+lin conducive_A = mkAMost "conducive" "conducively" ;
+lin conduct_N = mkN "conduct" "conducts" ;
+lin conduct_V = mkV "conduct" "conducted" "conducted" ;
+lin conductance_N = mkN "conductance" "conductances" ;
+lin conducting_N = mkN "conducting" "conductings" ;
+lin conduction_N = mkN "conduction" "conductions" ;
+lin conductive_A = mkAMost "conductive" "conductively" ;
+lin conductivity_N = mkN "conductivity" "conductivities" ;
+lin conductor_N = mkN "conductor" "conductors" ;
+lin conductress_N = mkN "conductress" "conductresses" ;
+lin conduit_N = mkN "conduit" "conduits" ;
+lin condylar_A = mkAMost "condylar" "condylarly" ;
+lin condyle_N = mkN "condyle" "condyles" ;
+lin condylion_N = mkN "condylion" "condylions" ;
+lin cone_N = mkN "cone" "cones" ;
+lin cone_V = mkV "cone" "coned" "coned" ;
+lin coneflower_N = mkN "coneflower" "coneflowers" ;
+lin conenose_N = mkN "conenose" "conenoses" ;
+lin coney_N = mkN "coney" "coneys" ;
+lin confab_N = mkN "confab" "confabs" ;
+lin confab_V = mkV "confab" "confabbed" "confabbed" ;
+lin confabulate_V = mkV "confabulate" "confabulated" "confabulated" ;
+lin confabulation_N = mkN "confabulation" "confabulations" ;
+lin confection_N = mkN "confection" "confections" ;
+lin confectioner_N = mkN "confectioner" "confectioners" ;
+lin confectionery_N = mkN "confectionery" "confectioneries" ;
+lin confederacy_N = mkN "confederacy" "confederacies" ;
+lin confederate_A = mkAMost "confederate" "confederately" ;
+lin confederate_N = mkN "confederate" "confederates" ;
+lin confederate_V = mkV "confederate" "confederated" "confederated" ;
+lin confederation_N = mkN "confederation" "confederations" ;
+lin confer_V = mkV "confer" "conferred" "conferred" ;
+lin conferee_N = mkN "conferee" "conferees" ;
+lin conference_N = mkN "conference" "conferences" ;
+lin conferment_N = mkN "conferment" "conferments" ;
+lin conferrer_N = mkN "conferrer" "conferrers" ;
+lin conferva_N = mkN "conferva" "confervas" ;
+lin confess_V = mkV "confess" "confessed" "confessed" ;
+lin confessedly_Adv = mkAdv "confessedly" ;
+lin confession_N = mkN "confession" "confessions" ;
+lin confessional_N = mkN "confessional" "confessionals" ;
+lin confessor_N = mkN "confessor" "confessors" ;
+lin confetti_N = mkN "confetti" "confetti" ;
+lin confidant_N = mkN "confidant" "confidants" ;
+lin confidante_N = mkN "confidante" "confidantes" ;
+lin confide_V = mkV "confide" "confided" "confided" ;
+lin confidence_N = mkN "confidence" "confidences" ;
+lin confident_A = mkAMost "confident" "confidently" ;
+lin confidential_A = mkAMost "confidential" "confidentially" ;
+lin confidentiality_N = mkN "confidentiality" "confidentialities" ;
+lin configuration_N = mkN "configuration" "configurations" ;
+lin configurational_A = mkAMost "configurational" "configurationally" ;
+lin configure_V = mkV "configure" "configured" "configured" ;
+lin confine_N = mkN "confine" "confines" ;
+lin confine_V = mkV "confine" "confined" "confined" ;
+lin confinement_N = mkN "confinement" "confinements" ;
+lin confining_A = mkAMost "confining" "confiningly" ;
+lin confirm_V = mkV "confirm" "confirmed" "confirmed" ;
+lin confirmable_A = mkAMost "confirmable" "confirmably" ;
+lin confirmation_N = mkN "confirmation" "confirmations" ;
+lin confiscate_A = mkAMost "confiscate" "confiscately" ;
+lin confiscate_V = mkV "confiscate" "confiscated" "confiscated" ;
+lin confiscation_N = mkN "confiscation" "confiscations" ;
+lin confit_N = mkN "confit" "confits" ;
+lin confiture_N = mkN "confiture" "confitures" ;
+lin conflagration_N = mkN "conflagration" "conflagrations" ;
+lin conflict_N = mkN "conflict" "conflicts" ;
+lin conflict_V = mkV "conflict" "conflicted" "conflicted" ;
+lin confluence_N = mkN "confluence" "confluences" ;
+lin confluent_A = mkAMost "confluent" "confluently" ;
+lin conform_V = mkV "conform" "conformed" "conformed" ;
+lin conformable_A = mkAMost "conformable" "conformably" ;
+lin conformation_N = mkN "conformation" "conformations" ;
+lin conformist_A = mkAMost "conformist" "conformistly" ;
+lin conformist_N = mkN "conformist" "conformists" ;
+lin conformity_N = mkN "conformity" "conformities" ;
+lin confound_V = mkV "confound" "confounded" "confounded" ;
+lin confounding_A = mkAMost "confounding" "confoundingly" ;
+lin confront_V = mkV "confront" "confronted" "confronted" ;
+lin confrontation_N = mkN "confrontation" "confrontations" ;
+lin confrontational_A = mkAMost "confrontational" "confrontationally" ;
+lin confrère_N = mkN "confrère" "confrères" ;
+lin confucian_A = mkAMost "confucian" "confucianly" ;
+lin confucian_N = mkN "confucian" "confucians" ;
+lin confusable_A = mkAMost "confusable" "confusably" ;
+lin confuse_V = mkV "confuse" "confused" "confused" ;
+lin confusedly_Adv = mkAdv "confusedly" ;
+lin confusing_A = mkAMost "confusing" "confusingly" ;
+lin confusion_N = mkN "confusion" "confusions" ;
+lin confutation_N = mkN "confutation" "confutations" ;
+lin confute_V = mkV "confute" "confuted" "confuted" ;
+lin conga_N = mkN "conga" "congas" ;
+lin congeal_V = mkV "congeal" "congealed" "congealed" ;
+lin congealment_N = mkN "congealment" "congealments" ;
+lin congee_N = mkN "congee" "congees" ;
+lin congener_N = mkN "congener" "congeners" ;
+lin congeneric_A = mkAMost "congeneric" "congenericly" ;
+lin congenial_A = mkAMost "congenial" "congenially" ;
+lin congeniality_N = mkN "congeniality" "congenialities" ;
+lin congenialness_N = mkN "congenialness" "congenialnesses" ;
+lin congenital_A = mkAMost "congenital" "congenitally" ;
+lin conger_N = mkN "conger" "congers" ;
+lin conger_eel_N = mkN "conger-eel" "conger-eels" ;
+lin congested_A = mkAMost "congested" "congestedly" ;
+lin congestion_N = mkN "congestion" "congestions" ;
+lin congestive_A = mkAMost "congestive" "congestively" ;
+lin conglomerate_A = mkAMost "conglomerate" "conglomerately" ;
+lin conglomerate_N = mkN "conglomerate" "conglomerates" ;
+lin conglomerate_V = mkV "conglomerate" "conglomerated" "conglomerated" ;
+lin conglomeration_N = mkN "conglomeration" "conglomerations" ;
+lin congolese_A = mkAMost "congolese" "congolesely" ;
+lin congolese_N = mkN "congolese" "congolese" ;
+lin congou_N = mkN "congou" "congous" ;
+lin congratulate_V = mkV "congratulate" "congratulated" "congratulated" ;
+lin congratulation_N = mkN "congratulation" "congratulations" ;
+lin congratulatory_A = mkAMost "congratulatory" "congratulatorily" ;
+lin congregant_N = mkN "congregant" "congregants" ;
+lin congregate_V = mkV "congregate" "congregated" "congregated" ;
+lin congregation_N = mkN "congregation" "congregations" ;
+lin congregational_A = mkAMost "congregational" "congregationally" ;
+lin congress_N = mkN "congress" "congresses" ;
+lin congressional_A = mkAMost "congressional" "congressionally" ;
+lin congressman_N = mkN "congressman" "congressmen" ;
+lin congresswoman_N = mkN "congresswoman" "congresswomen" ;
+lin congruent_A = mkAMost "congruent" "congruently" ;
+lin congruity_N = mkN "congruity" "congruities" ;
+lin congruous_A = mkAMost "congruous" "congruously" ;
+lin congé_N = mkN "congé" "congés" ;
+lin conic_A = mkAMost "conic" "conicly" ;
+lin conical_A = mkAMost "conical" "conically" ;
+lin conidiophore_N = mkN "conidiophore" "conidiophores" ;
+lin conidium_N = mkN "conidium" "conidiums" ;
+lin conifer_N = mkN "conifer" "conifers" ;
+lin coniferous_A = mkAMost "coniferous" "coniferously" ;
+lin conima_N = mkN "conima" "conimas" ;
+lin conjectural_A = mkAMost "conjectural" "conjecturally" ;
+lin conjecture_N = mkN "conjecture" "conjectures" ;
+lin conjecture_V = mkV "conjecture" "conjectured" "conjectured" ;
+lin conjoin_V = mkV "conjoin" "conjoined" "conjoined" ;
+lin conjoint_A = mkAMost "conjoint" "conjointly" ;
+lin conjugal_A = mkAMost "conjugal" "conjugally" ;
+lin conjugate_A = mkAMost "conjugate" "conjugately" ;
+lin conjugate_V = mkV "conjugate" "conjugated" "conjugated" ;
+lin conjugation_N = mkN "conjugation" "conjugations" ;
+lin conjunct_A = mkAMost "conjunct" "conjunctly" ;
+lin conjunction_N = mkN "conjunction" "conjunctions" ;
+lin conjunctiva_N = mkN "conjunctiva" "conjunctivas" ;
+lin conjunctival_A = mkAMost "conjunctival" "conjunctivally" ;
+lin conjunctive_A = mkAMost "conjunctive" "conjunctively" ;
+lin conjunctive_N = mkN "conjunctive" "conjunctives" ;
+lin conjunctivitis_N = mkN "conjunctivitis" "conjunctivitises" ;
+lin conjuncture_N = mkN "conjuncture" "conjunctures" ;
+lin conjuration_N = mkN "conjuration" "conjurations" ;
+lin conjure_V = mkV "conjure" "conjured" "conjured" ;
+lin conjurer_N = mkN "conjurer" "conjurers" ;
+lin conjuring_N = mkN "conjuring" "conjurings" ;
+lin conjuror_N = mkN "conjuror" "conjurors" ;
+lin conk_N = mkN "conk" "conks" ;
+lin conk_V = mkV "conk" "conked" "conked" ;
+lin conker_N = mkN "conker" "conkers" ;
+lin connate_A = mkAMost "connate" "connately" ;
+lin connatural_A = mkAMost "connatural" "connaturally" ;
+lin connect_V = mkV "connect" "connected" "connected" ;
+lin connection_N = mkN "connection" "connections" ;
+lin connective_A = mkAMost "connective" "connectively" ;
+lin connective_N = mkN "connective" "connectives" ;
+lin connectivity_N = mkN "connectivity" "connectivities" ;
+lin connexion_N = mkN "connexion" "connexions" ;
+lin conning_A = mkAMost "conning" "conningly" ;
+lin connivance_N = mkN "connivance" "connivances" ;
+lin connive_V = mkV "connive" "connived" "connived" ;
+lin connoisseur_N = mkN "connoisseur" "connoisseurs" ;
+lin connotation_N = mkN "connotation" "connotations" ;
+lin connotational_A = mkAMost "connotational" "connotationally" ;
+lin connotative_A = mkAMost "connotative" "connotatively" ;
+lin connote_V = mkV "connote" "connoted" "connoted" ;
+lin connubial_A = mkAMost "connubial" "connubially" ;
+lin conodont_N = mkN "conodont" "conodonts" ;
+lin conquer_V = mkV "conquer" "conquered" "conquered" ;
+lin conquerable_A = mkAMost "conquerable" "conquerably" ;
+lin conqueror_N = mkN "conqueror" "conquerors" ;
+lin conquest_N = mkN "conquest" "conquests" ;
+lin conquistador_N = mkN "conquistador" "conquistadors" ;
+lin consanguinity_N = mkN "consanguinity" "consanguinities" ;
+lin conscience_N = mkN "conscience" "consciences" ;
+lin conscience_smitten_A = mkAMost "conscience-smitten" "conscience-smittenly" ;
+lin conscienceless_A = mkAMost "conscienceless" "consciencelessly" ;
+lin conscientious_A = mkAMost "conscientious" "conscientiously" ;
+lin conscientiousness_N = mkN "conscientiousness" "conscientiousnesses" ;
+lin conscionable_A = mkAMost "conscionable" "conscionably" ;
+lin conscious_A = mkAMost "conscious" "consciously" ;
+lin consciousness_N = mkN "consciousness" "consciousnesses" ;
+lin conscript_N = mkN "conscript" "conscripts" ;
+lin conscript_V = mkV "conscript" "conscripted" "conscripted" ;
+lin conscription_N = mkN "conscription" "conscriptions" ;
+lin consecrate_V = mkV "consecrate" "consecrated" "consecrated" ;
+lin consecration_N = mkN "consecration" "consecrations" ;
+lin consecutive_A = mkAMost "consecutive" "consecutively" ;
+lin consecutive_Adv = mkAdv "consecutive" ;
+lin consensual_A = mkAMost "consensual" "consensually" ;
+lin consensus_N = mkN "consensus" "consensi" ;
+lin consent_N = mkN "consent" "consents" ;
+lin consent_V = mkV "consent" "consented" "consented" ;
+lin consentaneous_A = mkAMost "consentaneous" "consentaneously" ;
+lin consequence_N = mkN "consequence" "consequences" ;
+lin consequent_A = mkAMost "consequent" "consequently" ;
+lin consequential_A = mkAMost "consequential" "consequentially" ;
+lin conservancy_N = mkN "conservancy" "conservancies" ;
+lin conservation_N = mkN "conservation" "conservations" ;
+lin conservatism_N = mkN "conservatism" "conservatisms" ;
+lin conservative_A = mkAMost "conservative" "conservatively" ;
+lin conservative_N = mkN "conservative" "conservatives" ;
+lin conservatoire_N = mkN "conservatoire" "conservatoires" ;
+lin conservator_N = mkN "conservator" "conservators" ;
+lin conservatory_N = mkN "conservatory" "conservatories" ;
+lin conserve_N = mkN "conserve" "conserves" ;
+lin conserve_V = mkV "conserve" "conserved" "conserved" ;
+lin consider_V = mkV "consider" "considered" "considered" ;
+lin considerable_A = mkAMost "considerable" "considerably" ;
+lin considerate_A = mkAMost "considerate" "considerately" ;
+lin considerateness_N = mkN "considerateness" "consideratenesses" ;
+lin consideration_N = mkN "consideration" "considerations" ;
+lin consign_V = mkV "consign" "consigned" "consigned" ;
+lin consignee_N = mkN "consignee" "consignees" ;
+lin consigner_N = mkN "consigner" "consigners" ;
+lin consignment_N = mkN "consignment" "consignments" ;
+lin consignor_N = mkN "consignor" "consignors" ;
+lin consist_V = mkV "consist" "consisted" "consisted" ;
+lin consistence_N = mkN "consistence" "consistences" ;
+lin consistency_N = mkN "consistency" "consistencies" ;
+lin consistent_A = mkAMost "consistent" "consistently" ;
+lin consistory_N = mkN "consistory" "consistories" ;
+lin consolable_A = mkAMost "consolable" "consolably" ;
+lin consolation_N = mkN "consolation" "consolations" ;
+lin consolatory_A = mkAMost "consolatory" "consolatorily" ;
+lin console_N = mkN "console" "consoles" ;
+lin console_V = mkV "console" "consoled" "consoled" ;
+lin consolidate_V = mkV "consolidate" "consolidated" "consolidated" ;
+lin consolidation_N = mkN "consolidation" "consolidations" ;
+lin consolidative_A = mkAMost "consolidative" "consolidatively" ;
+lin consommé_N = mkN "consommé" "consommés" ;
+lin consonance_N = mkN "consonance" "consonances" ;
+lin consonant_A = mkAMost "consonant" "consonantly" ;
+lin consonant_N = mkN "consonant" "consonants" ;
+lin consonantal_A = mkAMost "consonantal" "consonantally" ;
+lin consort_N = mkN "consort" "consorts" ;
+lin consort_V = mkV "consort" "consorted" "consorted" ;
+lin consortium_N = mkN "consortium" "consortia" ;
+lin conspecific_A = mkAMost "conspecific" "conspecificly" ;
+lin conspecific_N = mkN "conspecific" "conspecifics" ;
+lin conspectus_N = mkN "conspectus" "conspectuses" ;
+lin conspicuous_A = mkAMost "conspicuous" "conspicuously" ;
+lin conspicuousness_N = mkN "conspicuousness" "conspicuousnesses" ;
+lin conspiracy_N = mkN "conspiracy" "conspiracies" ;
+lin conspirator_N = mkN "conspirator" "conspirators" ;
+lin conspiratorial_A = mkAMost "conspiratorial" "conspiratorially" ;
+lin conspire_V = mkV "conspire" "conspired" "conspired" ;
+lin constable_N = mkN "constable" "constables" ;
+lin constabulary_N = mkN "constabulary" "constabularies" ;
+lin constancy_N = mkN "constancy" "constancies" ;
+lin constant_A = mkAMost "constant" "constantly" ;
+lin constant_N = mkN "constant" "constants" ;
+lin constantan_N = mkN "constantan" "constantans" ;
+lin constellation_N = mkN "constellation" "constellations" ;
+lin consternation_N = mkN "consternation" "consternations" ;
+lin constipate_V = mkV "constipate" "constipated" "constipated" ;
+lin constipation_N = mkN "constipation" "constipations" ;
+lin constituency_N = mkN "constituency" "constituencies" ;
+lin constituent_A = mkAMost "constituent" "constituently" ;
+lin constituent_N = mkN "constituent" "constituents" ;
+lin constitute_V = mkV "constitute" "constituted" "constituted" ;
+lin constitution_N = mkN "constitution" "constitutions" ;
+lin constitutional_A = mkAMost "constitutional" "constitutionally" ;
+lin constitutional_N = mkN "constitutional" "constitutionals" ;
+lin constitutionalism_N = mkN "constitutionalism" "constitutionalisms" ;
+lin constitutionalist_N = mkN "constitutionalist" "constitutionalists" ;
+lin constitutionalize_V = mkV "constitutionalize" "constitutionalized" "constitutionalized" ;
+lin constitutive_A = mkAMost "constitutive" "constitutively" ;
+lin constrain_V = mkV "constrain" "constrained" "constrained" ;
+lin constrainedly_Adv = mkAdv "constrainedly" ;
+lin constraint_N = mkN "constraint" "constraints" ;
+lin constrict_V = mkV "constrict" "constricted" "constricted" ;
+lin constricting_A = mkAMost "constricting" "constrictingly" ;
+lin constriction_N = mkN "constriction" "constrictions" ;
+lin constrictor_N = mkN "constrictor" "constrictors" ;
+lin construal_N = mkN "construal" "construals" ;
+lin construct_V = mkV "construct" "constructed" "constructed" ;
+lin construction_N = mkN "construction" "constructions" ;
+lin constructional_A = mkAMost "constructional" "constructionally" ;
+lin constructive_A = mkAMost "constructive" "constructively" ;
+lin constructiveness_N = mkN "constructiveness" "constructivenesses" ;
+lin constructivism_N = mkN "constructivism" "constructivisms" ;
+lin constructivist_N = mkN "constructivist" "constructivists" ;
+lin constructor_N = mkN "constructor" "constructors" ;
+lin construe_V = mkV "construe" "construed" "construed" ;
+lin consubstantial_A = mkAMost "consubstantial" "consubstantially" ;
+lin consubstantiation_N = mkN "consubstantiation" "consubstantiations" ;
+lin consuetude_N = mkN "consuetude" "consuetudes" ;
+lin consuetudinary_N = mkN "consuetudinary" "consuetudinaries" ;
+lin consul_N = mkN "consul" "consuls" ;
+lin consular_A = mkAMost "consular" "consularly" ;
+lin consulate_N = mkN "consulate" "consulates" ;
+lin consulship_N = mkN "consulship" "consulships" ;
+lin consult_V = mkV "consult" "consulted" "consulted" ;
+lin consultancy_N = mkN "consultancy" "consultancies" ;
+lin consultant_N = mkN "consultant" "consultants" ;
+lin consultation_N = mkN "consultation" "consultations" ;
+lin consultative_A = mkAMost "consultative" "consultatively" ;
+lin consumable_A = mkAMost "consumable" "consumably" ;
+lin consume_V = mkV "consume" "consumed" "consumed" ;
+lin consumer_N = mkN "consumer" "consumers" ;
+lin consumerism_N = mkN "consumerism" "consumerisms" ;
+lin consummate_A = mkAMost "consummate" "consummately" ;
+lin consummate_V = mkV "consummate" "consummated" "consummated" ;
+lin consummation_N = mkN "consummation" "consummations" ;
+lin consumption_N = mkN "consumption" "consumptions" ;
+lin consumptive_A = mkAMost "consumptive" "consumptively" ;
+lin consumptive_N = mkN "consumptive" "consumptives" ;
+lin contact_N = mkN "contact" "contacts" ;
+lin contact_V = mkV "contact" "contacted" "contacted" ;
+lin contadino_N = mkN "contadino" "contadinoes" ;
+lin contagion_N = mkN "contagion" "contagions" ;
+lin contagious_A = mkAMost "contagious" "contagiously" ;
+lin contain_V = mkV "contain" "contained" "contained" ;
+lin container_N = mkN "container" "containers" ;
+lin containerful_N = mkN "containerful" "containerfuls" ;
+lin containment_N = mkN "containment" "containments" ;
+lin contaminant_N = mkN "contaminant" "contaminants" ;
+lin contaminate_V = mkV "contaminate" "contaminated" "contaminated" ;
+lin contamination_N = mkN "contamination" "contaminations" ;
+lin contaminative_A = mkAMost "contaminative" "contaminatively" ;
+lin contemn_V = mkV "contemn" "contemned" "contemned" ;
+lin contemplate_V = mkV "contemplate" "contemplated" "contemplated" ;
+lin contemplation_N = mkN "contemplation" "contemplations" ;
+lin contemplative_A = mkAMost "contemplative" "contemplatively" ;
+lin contemplative_N = mkN "contemplative" "contemplatives" ;
+lin contemporaneity_N = mkN "contemporaneity" "contemporaneities" ;
+lin contemporaneous_A = mkAMost "contemporaneous" "contemporaneously" ;
+lin contemporary_A = mkAMost "contemporary" "contemporarily" ;
+lin contemporary_N = mkN "contemporary" "contemporaries" ;
+lin contempt_N = mkN "contempt" "contempts" ;
+lin contemptible_A = mkAMost "contemptible" "contemptibly" ;
+lin contemptuousness_N = mkN "contemptuousness" "contemptuousnesses" ;
+lin contend_V = mkV "contend" "contended" "contended" ;
+lin contender_N = mkN "contender" "contenders" ;
+lin content_A = mkAMost "content" "contently" ;
+lin content_N = mkN "content" "contents" ;
+lin content_V = mkV "content" "contented" "contented" ;
+lin contentedly_Adv = mkAdv "contentedly" ;
+lin contentedness_N = mkN "contentedness" "contentednesses" ;
+lin contention_N = mkN "contention" "contentions" ;
+lin contentious_A = mkAMost "contentious" "contentiously" ;
+lin contentment_N = mkN "contentment" "contentments" ;
+lin contents_N = mkN "contents" "contentses" ;
+lin conterminous_A = mkAMost "conterminous" "conterminously" ;
+lin contest_N = mkN "contest" "contests" ;
+lin contest_V = mkV "contest" "contested" "contested" ;
+lin contestable_A = mkAMost "contestable" "contestably" ;
+lin contestant_N = mkN "contestant" "contestants" ;
+lin contestee_N = mkN "contestee" "contestees" ;
+lin contester_N = mkN "contester" "contesters" ;
+lin context_N = mkN "context" "contexts" ;
+lin contextual_A = mkAMost "contextual" "contextually" ;
+lin contextualism_N = mkN "contextualism" "contextualisms" ;
+lin contiguity_N = mkN "contiguity" "contiguities" ;
+lin contiguous_A = mkAMost "contiguous" "contiguously" ;
+lin continence_N = mkN "continence" "continences" ;
+lin continent_A = mkAMost "continent" "continently" ;
+lin continent_N = mkN "continent" "continents" ;
+lin continental_A = mkAMost "continental" "continentally" ;
+lin contingency_N = mkN "contingency" "contingencies" ;
+lin contingent_A = mkAMost "contingent" "contingently" ;
+lin contingent_N = mkN "contingent" "contingents" ;
+lin continual_A = mkAMost "continual" "continually" ;
+lin continuance_N = mkN "continuance" "IRREG" ;
+lin continuation_N = mkN "continuation" "continuations" ;
+lin continue_V = mkV "continue" "continued" "continued" ;
+lin continuity_N = mkN "continuity" "continuities" ;
+lin continuous_A = mkAMost "continuous" "continuously" ;
+lin continuousness_N = mkN "continuousness" "continuousnesses" ;
+lin continuum_N = mkN "continuum" "continuums" ;
+lin conto_N = mkN "conto" "contoes" ;
+lin contort_V = mkV "contort" "contorted" "contorted" ;
+lin contortion_N = mkN "contortion" "contortions" ;
+lin contortionist_N = mkN "contortionist" "contortionists" ;
+lin contour_N = mkN "contour" "contours" ;
+lin contour_V = mkV "contour" "contoured" "contoured" ;
+lin contra_Prep = mkPrep "contra" ;
+lin contraband_N = mkN "contraband" "contrabands" ;
+lin contrabass_A = mkAMost "contrabass" "contrabassly" ;
+lin contrabass_N = mkN "contrabass" "contrabasses" ;
+lin contrabassoon_N = mkN "contrabassoon" "contrabassoons" ;
+lin contraception_N = mkN "contraception" "contraceptions" ;
+lin contraceptive_A = mkAMost "contraceptive" "contraceptively" ;
+lin contraceptive_N = mkN "contraceptive" "contraceptives" ;
+lin contract_N = mkN "contract" "contracts" ;
+lin contract_V = mkV "contract" "contracted" "contracted" ;
+lin contractible_A = mkAMost "contractible" "contractibly" ;
+lin contractile_A = mkAMost "contractile" "contractilely" ;
+lin contractility_N = mkN "contractility" "contractilities" ;
+lin contraction_N = mkN "contraction" "contractions" ;
+lin contractor_N = mkN "contractor" "contractors" ;
+lin contractual_A = mkAMost "contractual" "contractually" ;
+lin contracture_N = mkN "contracture" "contractures" ;
+lin contradict_V = mkV "contradict" "contradicted" "contradicted" ;
+lin contradiction_N = mkN "contradiction" "contradictions" ;
+lin contradictoriness_N = mkN "contradictoriness" "contradictorinesses" ;
+lin contradictory_A = mkAMost "contradictory" "contradictorily" ;
+lin contradictory_N = mkN "contradictory" "contradictories" ;
+lin contradistinction_N = mkN "contradistinction" "contradistinctions" ;
+lin contradistinguish_V = mkV "contradistinguish" "contradistinguished" "contradistinguished" ;
+lin contrail_N = mkN "contrail" "contrails" ;
+lin contraindication_N = mkN "contraindication" "contraindications" ;
+lin contralateral_A = mkAMost "contralateral" "contralaterally" ;
+lin contralto_N = mkN "contralto" "contraltos" ;
+lin contraption_N = mkN "contraption" "contraptions" ;
+lin contrapuntal_A = mkAMost "contrapuntal" "contrapuntally" ;
+lin contrapuntist_N = mkN "contrapuntist" "contrapuntists" ;
+lin contrarian_N = mkN "contrarian" "contrarians" ;
+lin contrariety_N = mkN "contrariety" "contrarieties" ;
+lin contrariness_N = mkN "contrariness" "contrarinesses" ;
+lin contrarious_A = mkAMost "contrarious" "contrariously" ;
+lin contrariwise_Adv = mkAdv "contrariwise" ;
+lin contrary_A = mkAMost "contrary" "contrarily" ;
+lin contrary_N = mkN "contrary" "contraries" ;
+lin contrast_N = mkN "contrast" "contrasts" ;
+lin contrast_V = mkV "contrast" "contrasted" "contrasted" ;
+lin contrastingly_Adv = mkAdv "contrastingly" ;
+lin contrastive_A = mkAMost "contrastive" "contrastively" ;
+lin contrasty_A = mkAMost "contrasty" "contrastily" ;
+lin contravene_V = mkV "contravene" "contravened" "contravened" ;
+lin contravention_N = mkN "contravention" "contraventions" ;
+lin contretemps_N = mkN "contretemps" "contretemps" ;
+lin contribute_V = mkV "contribute" "contributed" "contributed" ;
+lin contribution_N = mkN "contribution" "contributions" ;
+lin contributor_N = mkN "contributor" "contributors" ;
+lin contributory_A = mkAMost "contributory" "contributorily" ;
+lin contrite_A = mkAMost "contrite" "contritely" ;
+lin contrition_N = mkN "contrition" "contritions" ;
+lin contrivance_N = mkN "contrivance" "contrivances" ;
+lin contrive_V = mkV "contrive" "contrived" "contrived" ;
+lin contriver_N = mkN "contriver" "contrivers" ;
+lin control_N = mkN "control" "controls" ;
+lin control_controled_V = mkV "control" "controled" "controled" ;
+lin control_controlled_V = mkV "control" "controlled" "controlled" ;
+lin controllable_A = mkAMost "controllable" "controllably" ;
+lin controller_N = mkN "controller" "controllers" ;
+lin controllership_N = mkN "controllership" "controllerships" ;
+lin controlling_A = mkAMost "controlling" "controllingly" ;
+lin controversial_A = mkAMost "controversial" "controversially" ;
+lin controversialist_N = mkN "controversialist" "controversialists" ;
+lin controversy_N = mkN "controversy" "controversies" ;
+lin controvert_V = mkV "controvert" "controverted" "controverted" ;
+lin contumacious_A = mkAMost "contumacious" "contumaciously" ;
+lin contumacy_N = mkN "contumacy" "contumacies" ;
+lin contumelious_A = mkAMost "contumelious" "contumeliously" ;
+lin contumely_N = mkN "contumely" "contumelies" ;
+lin contuse_V = mkV "contuse" "contused" "contused" ;
+lin contusion_N = mkN "contusion" "contusions" ;
+lin conundrum_N = mkN "conundrum" "conundrums" ;
+lin conurbation_N = mkN "conurbation" "conurbations" ;
+lin convalesce_V = mkV "convalesce" "convalesced" "convalesced" ;
+lin convalescence_N = mkN "convalescence" "convalescences" ;
+lin convalescent_A = mkAMost "convalescent" "convalescently" ;
+lin convalescent_N = mkN "convalescent" "convalescents" ;
+lin convection_N = mkN "convection" "convections" ;
+lin convector_N = mkN "convector" "convectors" ;
+lin convene_V = mkV "convene" "convened" "convened" ;
+lin convener_N = mkN "convener" "conveners" ;
+lin convenience_N = mkN "convenience" "conveniences" ;
+lin convenient_A = mkAMost "convenient" "conveniently" ;
+lin convent_N = mkN "convent" "convents" ;
+lin conventicle_N = mkN "conventicle" "conventicles" ;
+lin convention_N = mkN "convention" "conventions" ;
+lin conventional_A = mkAMost "conventional" "conventionally" ;
+lin conventionality_N = mkN "conventionality" "conventionalities" ;
+lin conventionalization_N = mkN "conventionalization" "conventionalizations" ;
+lin conventionalized_A = mkAMost "conventionalized" "conventionalizedly" ;
+lin conventioneer_N = mkN "conventioneer" "conventioneers" ;
+lin converge_V = mkV "converge" "converged" "converged" ;
+lin convergence_N = mkN "convergence" "convergences" ;
+lin convergent_A = mkAMost "convergent" "convergently" ;
+lin conversant_A = mkAMost "conversant" "conversantly" ;
+lin conversation_N = mkN "conversation" "conversations" ;
+lin conversational_A = mkAMost "conversational" "conversationally" ;
+lin conversationalist_N = mkN "conversationalist" "conversationalists" ;
+lin converse_A = mkAMost "converse" "conversely" ;
+lin converse_N = mkN "converse" "converses" ;
+lin converse_V = mkV "converse" "conversed" "conversed" ;
+lin conversion_N = mkN "conversion" "conversions" ;
+lin convert_N = mkN "convert" "converts" ;
+lin convert_V = mkV "convert" "converted" "converted" ;
+lin converter_N = mkN "converter" "converters" ;
+lin convertibility_N = mkN "convertibility" "convertibilities" ;
+lin convertible_A = mkAMost "convertible" "convertibly" ;
+lin convertible_N = mkN "convertible" "convertibles" ;
+lin convex_A = mkAMost "convex" "convexly" ;
+lin convexity_N = mkN "convexity" "convexities" ;
+lin convey_V = mkV "convey" "conveyed" "conveyed" ;
+lin conveyance_N = mkN "conveyance" "conveyances" ;
+lin conveyancer_N = mkN "conveyancer" "conveyancers" ;
+lin conveyer_N = mkN "conveyer" "conveyers" ;
+lin conveyer_belt_N = mkN "conveyer-belt" "conveyer-belts" ;
+lin conveyor_N = mkN "conveyor" "conveyors" ;
+lin convict_N = mkN "convict" "convicts" ;
+lin convict_V = mkV "convict" "convicted" "convicted" ;
+lin conviction_N = mkN "conviction" "convictions" ;
+lin convince_V = mkV "convince" "convinced" "convinced" ;
+lin convincible_A = mkAMost "convincible" "convincibly" ;
+lin convincing_A = mkAMost "convincing" "convincingly" ;
+lin convincingness_N = mkN "convincingness" "convincingnesses" ;
+lin convivial_A = mkAMost "convivial" "convivially" ;
+lin conviviality_N = mkN "conviviality" "convivialities" ;
+lin convocation_N = mkN "convocation" "convocations" ;
+lin convoke_V = mkV "convoke" "convoked" "convoked" ;
+lin convolute_A = mkAMost "convolute" "convolutely" ;
+lin convoluted_A = mkAMost "convoluted" "convolutedly" ;
+lin convolution_N = mkN "convolution" "convolutions" ;
+lin convolvulus_N = mkN "convolvulus" "convolvuluses" ;
+lin convoy_N = mkN "convoy" "convoys" ;
+lin convoy_V = mkV "convoy" "convoyed" "convoyed" ;
+lin convulse_V = mkV "convulse" "convulsed" "convulsed" ;
+lin convulsion_N = mkN "convulsion" "convulsions" ;
+lin convulsive_A = mkAMost "convulsive" "convulsively" ;
+lin cony_N = mkN "cony" "conies" ;
+lin coo_N = mkN "coo" "coos" ;
+lin coo_V = mkV "coo" "cooed" "cooed" ;
+lin cook_N = mkN "cook" "cooks" ;
+lin cook_V = mkV "cook" "cooked" "cooked" ;
+lin cookbook_N = mkN "cookbook" "cookbooks" ;
+lin cooker_N = mkN "cooker" "cookers" ;
+lin cookery_N = mkN "cookery" "cookeries" ;
+lin cookery_book_N = mkN "cookery-book" "cookery-books" ;
+lin cookfire_N = mkN "cookfire" "cookfires" ;
+lin cookhouse_N = mkN "cookhouse" "cookhouses" ;
+lin cookie_N = mkN "cookie" "cookies" ;
+lin cooking_N = mkN "cooking" "cookings" ;
+lin cookout_N = mkN "cookout" "cookouts" ;
+lin cookstove_N = mkN "cookstove" "cookstoves" ;
+lin cooky_N = mkN "cooky" "cookies" ;
+lin cool_A = mkA "cool" "cooler" "coolest" "coolly" ;
+lin cool_N = mkN "cool" "cools" ;
+lin cool_V = mkV "cool" "cooled" "cooled" ;
+lin cool_headed_A = mkAMost "cool-headed" "cool-headedly" ;
+lin coolant_N = mkN "coolant" "coolants" ;
+lin cooler_N = mkN "cooler" "coolers" ;
+lin coolie_N = mkN "coolie" "coolies" ;
+lin cooling_N = mkN "cooling" "coolings" ;
+lin cooling_tower_N = mkN "cooling-tower" "cooling-towers" ;
+lin coolness_N = mkN "coolness" "coolnesses" ;
+lin coon_N = mkN "coon" "coons" ;
+lin coondog_N = mkN "coondog" "coondogs" ;
+lin coonhound_N = mkN "coonhound" "coonhounds" ;
+lin coontie_N = mkN "coontie" "coonties" ;
+lin coop_N = mkN "coop" "coops" ;
+lin coop_V = mkV "coop" "cooped" "cooped" ;
+lin cooper_N = mkN "cooper" "coopers" ;
+lin cooperate_V = mkV "cooperate" "cooperated" "cooperated" ;
+lin cooperation_N = mkN "cooperation" "cooperations" ;
+lin cooperative_A = mkAMost "cooperative" "cooperatively" ;
+lin cooperative_N = mkN "cooperative" "cooperatives" ;
+lin cooperator_N = mkN "cooperator" "cooperators" ;
+lin coordinate_A = mkAMost "coordinate" "coordinately" ;
+lin coordinate_N = mkN "coordinate" "coordinates" ;
+lin coordinate_V = mkV "coordinate" "coordinated" "coordinated" ;
+lin coordination_N = mkN "coordination" "coordinations" ;
+lin coordinator_N = mkN "coordinator" "coordinators" ;
+lin coot_N = mkN "coot" "coots" ;
+lin cooter_N = mkN "cooter" "cooters" ;
+lin cop_N = mkN "cop" "cops" ;
+lin cop_V = mkV "cop" "copped" "copped" ;
+lin cop_out_N = mkN "cop-out" "cop-outs" ;
+lin copacetic_A = mkAMost "copacetic" "copaceticly" ;
+lin copaiba_N = mkN "copaiba" "copaibas" ;
+lin copal_N = mkN "copal" "copals" ;
+lin copalite_N = mkN "copalite" "copalites" ;
+lin copartner_N = mkN "copartner" "copartners" ;
+lin copartnership_N = mkN "copartnership" "copartnerships" ;
+lin cope_N = mkN "cope" "copes" ;
+lin cope_V = mkV "cope" "coped" "coped" ;
+lin copeck_N = mkN "copeck" "copecks" ;
+lin copepod_N = mkN "copepod" "copepods" ;
+lin copernican_A = mkAMost "copernican" "copernicanly" ;
+lin copilot_N = mkN "copilot" "copilots" ;
+lin coping_N = mkN "coping" "copings" ;
+lin coping_stone_N = mkN "coping-stone" "coping-stones" ;
+lin copious_A = mkAMost "copious" "copiously" ;
+lin coplanar_A = mkAMost "coplanar" "coplanarly" ;
+lin copolymer_N = mkN "copolymer" "copolymers" ;
+lin copout_N = mkN "copout" "copouts" ;
+lin copper_N = mkN "copper" "coppers" ;
+lin copper_V = mkV "copper" "coppered" "coppered" ;
+lin copper_bottom_V = mkV "copper-bottom" "copper-bottomed" "copper-bottomed" ;
+lin copper_bottomed_A = mkAMost "copper-bottomed" "copper-bottomedly" ;
+lin copperhead_N = mkN "copperhead" "copperheads" ;
+lin copperplate_N = mkN "copperplate" "copperplates" ;
+lin coppersmith_N = mkN "coppersmith" "coppersmiths" ;
+lin copperware_N = mkN "copperware" "copperwares" ;
+lin coppery_A = mkAMost "coppery" "copperily" ;
+lin coppice_N = mkN "coppice" "coppices" ;
+lin copra_N = mkN "copra" "copras" ;
+lin coproduction_N = mkN "coproduction" "coproductions" ;
+lin coprolalia_N = mkN "coprolalia" "coprolalias" ;
+lin coprolite_N = mkN "coprolite" "coprolites" ;
+lin coprolith_N = mkN "coprolith" "coproliths" ;
+lin coprophagy_N = mkN "coprophagy" "coprophagies" ;
+lin copse_N = mkN "copse" "copses" ;
+lin copt_A = mkAMost "copt" "coptly" ;
+lin copt_N = mkN "copt" "copts" ;
+lin coptic_N = mkN "coptic" "coptics" ;
+lin copula_N = mkN "copula" "copulas" ;
+lin copular_A = mkAMost "copular" "copularly" ;
+lin copulate_V = mkV "copulate" "copulated" "copulated" ;
+lin copulation_N = mkN "copulation" "copulations" ;
+lin copulative_A = mkAMost "copulative" "copulatively" ;
+lin copulative_N = mkN "copulative" "copulatives" ;
+lin copy_N = mkN "copy" "copies" ;
+lin copy_V = mkV "copy" "copied" "copied" ;
+lin copybook_N = mkN "copybook" "copybooks" ;
+lin copycat_N = mkN "copycat" "copycats" ;
+lin copyhold_N = mkN "copyhold" "copyholds" ;
+lin copyholder_N = mkN "copyholder" "copyholders" ;
+lin copying_N = mkN "copying" "copyings" ;
+lin copyist_N = mkN "copyist" "copyists" ;
+lin copyright_N = mkN "copyright" "copyrights" ;
+lin copyright_V = mkV "copyright" "copyrighted" "copyrighted" ;
+lin copywriter_N = mkN "copywriter" "copywriters" ;
+lin coquetry_N = mkN "coquetry" "coquetries" ;
+lin coquette_N = mkN "coquette" "coquettes" ;
+lin coquettish_A = mkAMost "coquettish" "coquettishly" ;
+lin coquille_N = mkN "coquille" "coquilles" ;
+lin cor_anglais_N = mkN "cor anglais" "cor anglaes" ;
+lin coracle_N = mkN "coracle" "coracles" ;
+lin coral_A = mkAMost "coral" "corally" ;
+lin coral_N = mkN "coral" "corals" ;
+lin coral_reef_N = mkN "coral-reef" "coral-reefs" ;
+lin coralbells_N = mkN "coralbells" "coralbellses" ;
+lin coralberry_N = mkN "coralberry" "coralberries" ;
+lin coralwood_N = mkN "coralwood" "coralwoods" ;
+lin corbel_N = mkN "corbel" "corbels" ;
+lin corbelled_A = mkAMost "corbelled" "corbelledly" ;
+lin corbina_N = mkN "corbina" "corbinas" ;
+lin corchorus_N = mkN "corchorus" "corchoruses" ;
+lin cord_N = mkN "cord" "cords" ;
+lin cord_V = mkV "cord" "corded" "corded" ;
+lin cordage_N = mkN "cordage" "cordages" ;
+lin cordate_A = mkAMost "cordate" "cordately" ;
+lin cordgrass_N = mkN "cordgrass" "cordgrasses" ;
+lin cordial_A = mkAMost "cordial" "cordially" ;
+lin cordial_N = mkN "cordial" "cordials" ;
+lin cordiality_N = mkN "cordiality" "cordialities" ;
+lin cordierite_N = mkN "cordierite" "cordierites" ;
+lin cordite_N = mkN "cordite" "cordites" ;
+lin corditis_N = mkN "corditis" "corditises" ;
+lin cordless_A = mkAMost "cordless" "cordlessly" ;
+lin cordoba_N = mkN "cordoba" "cordobas" ;
+lin cordon_N = mkN "cordon" "cordons" ;
+lin cordon_V = mkV "cordon" "cordoned" "cordoned" ;
+lin cordon_bleu_A = mkAMost "cordon bleu" "cordon bleuly" ;
+lin cordovan_N = mkN "cordovan" "cordovans" ;
+lin cords_N = mkN "cords" "cordses" ;
+lin corduroy_N = mkN "corduroy" "corduroys" ;
+lin cordwood_N = mkN "cordwood" "cordwoods" ;
+lin core_N = mkN "core" "cores" ;
+lin core_V = mkV "core" "cored" "cored" ;
+lin coreference_N = mkN "coreference" "coreferences" ;
+lin coreferent_A = mkAMost "coreferent" "coreferently" ;
+lin coreferential_A = mkAMost "coreferential" "coreferentially" ;
+lin coreligionist_N = mkN "coreligionist" "coreligionists" ;
+lin coreopsis_N = mkN "coreopsis" "coreopsises" ;
+lin corer_N = mkN "corer" "corers" ;
+lin corespondent_N = mkN "corespondent" "corespondents" ;
+lin corgi_N = mkN "corgi" "corgis" ;
+lin coriaceous_A = mkAMost "coriaceous" "coriaceously" ;
+lin coriander_N = mkN "coriander" "corianders" ;
+lin corinthian_A = mkAMost "corinthian" "corinthianly" ;
+lin corinthian_N = mkN "corinthian" "corinthians" ;
+lin cork_N = mkN "cork" "corks" ;
+lin cork_V = mkV "cork" "corked" "corked" ;
+lin corkage_N = mkN "corkage" "corkages" ;
+lin corkboard_N = mkN "corkboard" "corkboards" ;
+lin corker_N = mkN "corker" "corkers" ;
+lin corkscrew_N = mkN "corkscrew" "corkscrews" ;
+lin corkwood_N = mkN "corkwood" "corkwoods" ;
+lin corm_N = mkN "corm" "corms" ;
+lin cormorant_N = mkN "cormorant" "cormorants" ;
+lin cormous_A = mkAMost "cormous" "cormously" ;
+lin corn_N = mkN "corn" "corns" ;
+lin corn_V = mkV "corn" "corned" "corned" ;
+lin corn_exchange_N = mkN "corn-exchange" "corn-exchanges" ;
+lin cornbread_N = mkN "cornbread" "cornbreads" ;
+lin corncob_N = mkN "corncob" "corncobs" ;
+lin corncrake_N = mkN "corncrake" "corncrakes" ;
+lin corncrib_N = mkN "corncrib" "corncribs" ;
+lin cornea_N = mkN "cornea" "corneas" ;
+lin corneal_A = mkAMost "corneal" "corneally" ;
+lin cornelian_N = mkN "cornelian" "cornelians" ;
+lin corneous_A = mkAMost "corneous" "corneously" ;
+lin corner_N = mkN "corner" "corners" ;
+lin corner_V = mkV "corner" "cornered" "cornered" ;
+lin corner_kick_N = mkN "corner-kick" "corner-kicks" ;
+lin cornerback_N = mkN "cornerback" "cornerbacks" ;
+lin cornerstone_N = mkN "cornerstone" "cornerstones" ;
+lin cornet_N = mkN "cornet" "cornets" ;
+lin cornetfish_N = mkN "cornetfish" "cornetfishes" ;
+lin cornfield_N = mkN "cornfield" "cornfields" ;
+lin cornflake_N = mkN "cornflake" "cornflakes" ;
+lin cornflour_N = mkN "cornflour" "cornflours" ;
+lin cornflower_N = mkN "cornflower" "cornflowers" ;
+lin cornhusk_N = mkN "cornhusk" "cornhusks" ;
+lin cornhusker_N = mkN "cornhusker" "cornhuskers" ;
+lin cornhusking_N = mkN "cornhusking" "cornhuskings" ;
+lin cornice_N = mkN "cornice" "cornices" ;
+lin cornmeal_N = mkN "cornmeal" "cornmeals" ;
+lin cornpone_N = mkN "cornpone" "cornpones" ;
+lin cornsilk_N = mkN "cornsilk" "cornsilks" ;
+lin cornsmut_N = mkN "cornsmut" "cornsmuts" ;
+lin cornstalk_N = mkN "cornstalk" "cornstalks" ;
+lin cornstarch_N = mkN "cornstarch" "cornstarches" ;
+lin cornu_N = mkN "cornu" "cornus" ;
+lin cornucopia_N = mkN "cornucopia" "cornucopias" ;
+lin corny_A = mkA "corny" "cornier" "corniest" "cornily" ;
+lin corolla_N = mkN "corolla" "corollas" ;
+lin corollary_N = mkN "corollary" "corollaries" ;
+lin corona_N = mkN "corona" "coronas" ;
+lin coronary_A = mkAMost "coronary" "coronarily" ;
+lin coronary_N = mkN "coronary" "coronaries" ;
+lin coronation_N = mkN "coronation" "coronations" ;
+lin coroner_N = mkN "coroner" "coroners" ;
+lin coronet_N = mkN "coronet" "coronets" ;
+lin coroneted_A = mkAMost "coroneted" "coronetedly" ;
+lin coronilla_N = mkN "coronilla" "coronillas" ;
+lin coronion_N = mkN "coronion" "coronions" ;
+lin corozo_N = mkN "corozo" "corozoes" ;
+lin corporal_A = mkAMost "corporal" "corporally" ;
+lin corporal_N = mkN "corporal" "corporals" ;
+lin corporate_A = mkAMost "corporate" "corporately" ;
+lin corporation_N = mkN "corporation" "corporations" ;
+lin corporatism_N = mkN "corporatism" "corporatisms" ;
+lin corporatist_A = mkAMost "corporatist" "corporatistly" ;
+lin corporatist_N = mkN "corporatist" "corporatists" ;
+lin corporeal_A = mkAMost "corporeal" "corporeally" ;
+lin corps_N = mkN "corps" "corps" ;
+lin corps_de_ballet_N = mkN "corps de ballet" "IRREG" ;
+lin corps_diplomatique_N = mkN "corps diplomatique" "IRREG" ;
+lin corpse_N = mkN "corpse" "corpses" ;
+lin corpulence_N = mkN "corpulence" "corpulences" ;
+lin corpulent_A = mkAMost "corpulent" "corpulently" ;
+lin corpus_N = mkN "corpus" "corpora" ;
+lin corpuscle_N = mkN "corpuscle" "corpuscles" ;
+lin corpuscular_A = mkAMost "corpuscular" "corpuscularly" ;
+lin corral_N = mkN "corral" "corrals" ;
+lin corral_V = mkV "corral" "corralled" "corralled" ;
+lin correct_A = mkAMost "correct" "correctly" ;
+lin correct_V = mkV "correct" "corrected" "corrected" ;
+lin correctable_A = mkAMost "correctable" "correctably" ;
+lin correction_N = mkN "correction" "corrections" ;
+lin correctional_A = mkAMost "correctional" "correctionally" ;
+lin corrections_N = mkN "corrections" "correctionses" ;
+lin correctitude_N = mkN "correctitude" "correctitudes" ;
+lin corrective_A = mkAMost "corrective" "correctively" ;
+lin corrective_N = mkN "corrective" "correctives" ;
+lin correctness_N = mkN "correctness" "correctnesses" ;
+lin correlate_N = mkN "correlate" "correlates" ;
+lin correlate_V = mkV "correlate" "correlated" "correlated" ;
+lin correlation_N = mkN "correlation" "correlations" ;
+lin correlational_A = mkAMost "correlational" "correlationally" ;
+lin correlative_A = mkAMost "correlative" "correlatively" ;
+lin correlative_N = mkN "correlative" "correlatives" ;
+lin correspond_V = mkV "correspond" "corresponded" "corresponded" ;
+lin correspondence_N = mkN "correspondence" "correspondences" ;
+lin correspondent_N = mkN "correspondent" "correspondents" ;
+lin correspondingly_Adv = mkAdv "correspondingly" ;
+lin corridor_N = mkN "corridor" "corridors" ;
+lin corrie_N = mkN "corrie" "corries" ;
+lin corrigenda_N = mkN "corrigenda" "corrigendas" ;
+lin corrigendum_N = mkN "corrigendum" "corrigenda" ;
+lin corrigible_A = mkAMost "corrigible" "corrigibly" ;
+lin corroborant_A = mkAMost "corroborant" "corroborantly" ;
+lin corroborate_V = mkV "corroborate" "corroborated" "corroborated" ;
+lin corroboration_N = mkN "corroboration" "corroborations" ;
+lin corroborative_A = mkAMost "corroborative" "corroboratively" ;
+lin corrode_V = mkV "corrode" "corroded" "corroded" ;
+lin corrosion_N = mkN "corrosion" "corrosions" ;
+lin corrosive_A = mkAMost "corrosive" "corrosively" ;
+lin corrosive_N = mkN "corrosive" "corrosives" ;
+lin corrugate_V = mkV "corrugate" "corrugated" "corrugated" ;
+lin corrugation_N = mkN "corrugation" "corrugations" ;
+lin corrupt_A = mkAMost "corrupt" "corruptly" ;
+lin corrupt_V = mkV "corrupt" "corrupted" "corrupted" ;
+lin corruptibility_N = mkN "corruptibility" "corruptibilities" ;
+lin corruptible_A = mkAMost "corruptible" "corruptibly" ;
+lin corruption_N = mkN "corruption" "corruptions" ;
+lin corruptive_A = mkAMost "corruptive" "corruptively" ;
+lin corruptness_N = mkN "corruptness" "corruptnesses" ;
+lin corsage_N = mkN "corsage" "corsages" ;
+lin corsair_N = mkN "corsair" "corsairs" ;
+lin corse_N = mkN "corse" "corses" ;
+lin corselet_N = mkN "corselet" "corselets" ;
+lin corset_N = mkN "corset" "corsets" ;
+lin corslet_N = mkN "corslet" "corslets" ;
+lin cortege_N = mkN "cortege" "corteges" ;
+lin cortex_N = mkN "cortex" "cortices" ;
+lin cortical_A = mkAMost "cortical" "cortically" ;
+lin corticoafferent_A = mkAMost "corticoafferent" "corticoafferently" ;
+lin corticoefferent_A = mkAMost "corticoefferent" "corticoefferently" ;
+lin corticosteroid_N = mkN "corticosteroid" "corticosteroids" ;
+lin corticosterone_N = mkN "corticosterone" "corticosterones" ;
+lin cortina_N = mkN "cortina" "cortinas" ;
+lin cortisone_N = mkN "cortisone" "cortisones" ;
+lin cortège_N = mkN "cortège" "cortèges" ;
+lin corundom_N = mkN "corundom" "corundoms" ;
+lin corundum_N = mkN "corundum" "corundums" ;
+lin coruscate_V = mkV "coruscate" "coruscated" "coruscated" ;
+lin coruscation_N = mkN "coruscation" "coruscations" ;
+lin corvette_N = mkN "corvette" "corvettes" ;
+lin corvine_A = mkAMost "corvine" "corvinely" ;
+lin corvée_N = mkN "corvée" "corvées" ;
+lin corydalis_N = mkN "corydalis" "corydalises" ;
+lin corymb_N = mkN "corymb" "corymbs" ;
+lin corymbose_A = mkAMost "corymbose" "corymbosely" ;
+lin corynebacterium_N = mkN "corynebacterium" "corynebacteriums" ;
+lin coryphantha_N = mkN "coryphantha" "coryphanthas" ;
+lin corythosaur_N = mkN "corythosaur" "corythosaurs" ;
+lin cos_N = mkN "cos" "cos" ;
+lin coscoroba_N = mkN "coscoroba" "coscorobas" ;
+lin cosecant_N = mkN "cosecant" "cosecants" ;
+lin coseismic_A = mkAMost "coseismic" "coseismicly" ;
+lin cosh_N = mkN "cosh" "coshes" ;
+lin cosh_V = mkV "cosh" "coshed" "coshed" ;
+lin cosher_A = mkAMost "cosher" "cosherly" ;
+lin cosignatory_A = mkAMost "cosignatory" "cosignatorily" ;
+lin cosignatory_N = mkN "cosignatory" "cosignatories" ;
+lin cosigner_N = mkN "cosigner" "cosigners" ;
+lin cosine_N = mkN "cosine" "cosines" ;
+lin cosiness_N = mkN "cosiness" "cosinesses" ;
+lin cosmetic_A = mkAMost "cosmetic" "cosmeticly" ;
+lin cosmetic_N = mkN "cosmetic" "cosmetics" ;
+lin cosmetically_Adv = mkAdv "cosmetically" ;
+lin cosmetician_N = mkN "cosmetician" "cosmeticians" ;
+lin cosmetologist_N = mkN "cosmetologist" "cosmetologists" ;
+lin cosmetology_N = mkN "cosmetology" "cosmetologies" ;
+lin cosmic_A = mkAMost "cosmic" "cosmicly" ;
+lin cosmid_N = mkN "cosmid" "cosmids" ;
+lin cosmogony_N = mkN "cosmogony" "cosmogonies" ;
+lin cosmographer_N = mkN "cosmographer" "cosmographers" ;
+lin cosmography_N = mkN "cosmography" "cosmographies" ;
+lin cosmolatry_N = mkN "cosmolatry" "cosmolatries" ;
+lin cosmologic_A = mkAMost "cosmologic" "cosmologicly" ;
+lin cosmologist_N = mkN "cosmologist" "cosmologists" ;
+lin cosmology_N = mkN "cosmology" "cosmologies" ;
+lin cosmonaut_N = mkN "cosmonaut" "cosmonauts" ;
+lin cosmopolitan_A = mkAMost "cosmopolitan" "cosmopolitanly" ;
+lin cosmopolitan_N = mkN "cosmopolitan" "cosmopolitans" ;
+lin cosmos_cosmoi_N = mkN "cosmos" "cosmoi" ;
+lin cosmos_cosmoses_N = mkN "cosmos" "cosmoses" ;
+lin cosmotron_N = mkN "cosmotron" "cosmotrons" ;
+lin cosset_V = mkV "cosset" "cosseted" "cosseted" ;
+lin cost_N = mkN "cost" "costs" ;
+lin cost_cost_V = mkV "cost" "cost" "cost" ;
+lin cost_costed_V = mkV "cost" "costed" "costed" ;
+lin costa_N = mkN "costa" "costas" ;
+lin costa_rican_A = mkAMost "costa rican" "costa ricanly" ;
+lin costa_rican_N = mkN "costa rican" "costa ricans" ;
+lin costal_A = mkAMost "costal" "costally" ;
+lin costate_A = mkAMost "costate" "costately" ;
+lin costermonger_N = mkN "costermonger" "costermongers" ;
+lin costia_N = mkN "costia" "costias" ;
+lin costiasis_N = mkN "costiasis" "costiasises" ;
+lin costing_N = mkN "costing" "costings" ;
+lin costive_A = mkAMost "costive" "costively" ;
+lin costliness_N = mkN "costliness" "costlinesses" ;
+lin costly_A = mkA "costly" "costlier" "costliest" "costlily" ;
+lin costmary_N = mkN "costmary" "costmaries" ;
+lin costochondritis_N = mkN "costochondritis" "costochondritises" ;
+lin costs_N = mkN "costs" "costses" ;
+lin costum_V = mkV "costum" "costummed" "costummed" ;
+lin costume_N = mkN "costume" "costumes" ;
+lin costumed_A = mkAMost "costumed" "costumedly" ;
+lin costumier_N = mkN "costumier" "costumiers" ;
+lin costusroot_N = mkN "costusroot" "costusroots" ;
+lin cosy_A = mkA "cosy" "cosier" "cosiest" "cosily" ;
+lin cosy_N = mkN "cosy" "cosies" ;
+lin cot_N = mkN "cot" "cots" ;
+lin cotangent_N = mkN "cotangent" "cotangents" ;
+lin cote_N = mkN "cote" "cotes" ;
+lin cotenant_N = mkN "cotenant" "cotenants" ;
+lin coterie_N = mkN "coterie" "coteries" ;
+lin coterminous_A = mkAMost "coterminous" "coterminously" ;
+lin cotilion_N = mkN "cotilion" "cotilions" ;
+lin cotillion_N = mkN "cotillion" "cotillions" ;
+lin cotinga_N = mkN "cotinga" "cotingas" ;
+lin cotoneaster_N = mkN "cotoneaster" "cotoneasters" ;
+lin cottage_N = mkN "cottage" "cottages" ;
+lin cottager_N = mkN "cottager" "cottagers" ;
+lin cottar_N = mkN "cottar" "cottars" ;
+lin cotter_N = mkN "cotter" "cotters" ;
+lin cotton_N = mkN "cotton" "cottons" ;
+lin cotton_cake_N = mkN "cotton-cake" "cotton-cakes" ;
+lin cotton_cottoned_V = mkV "cotton" "cottoned" "cottoned" ;
+lin cotton_cottonned_V = mkV "cotton" "cottonned" "cottonned" ;
+lin cotton_plant_N = mkN "cotton-plant" "cotton-plants" ;
+lin cotton_wool_N = mkN "cotton-wool" "cotton-wools" ;
+lin cottonseed_N = mkN "cottonseed" "cottonseeds" ;
+lin cottontail_N = mkN "cottontail" "cottontails" ;
+lin cottonweed_N = mkN "cottonweed" "cottonweeds" ;
+lin cottonwick_N = mkN "cottonwick" "cottonwicks" ;
+lin cottonwood_N = mkN "cottonwood" "cottonwoods" ;
+lin cottony_A = mkAMost "cottony" "cottonily" ;
+lin cotyledon_N = mkN "cotyledon" "cotyledons" ;
+lin coucal_N = mkN "coucal" "coucals" ;
+lin couch_N = mkN "couch" "couches" ;
+lin couch_V = mkV "couch" "couched" "couched" ;
+lin couch_grass_N = mkN "couch-grass" "couch-grasses" ;
+lin couchant_A = mkAMost "couchant" "couchantly" ;
+lin couchette_N = mkN "couchette" "couchettes" ;
+lin cougar_N = mkN "cougar" "cougars" ;
+lin cough_N = mkN "cough" "coughs" ;
+lin cough_V = mkV "cough" "coughed" "coughed" ;
+lin coulisse_N = mkN "coulisse" "coulisses" ;
+lin coulomb_N = mkN "coulomb" "coulombs" ;
+lin coulter_N = mkN "coulter" "coulters" ;
+lin council_N = mkN "council" "councils" ;
+lin council_board_N = mkN "council-board" "council-boards" ;
+lin council_chamber_N = mkN "council-chamber" "council-chambers" ;
+lin councillor_N = mkN "councillor" "councillors" ;
+lin councillorship_N = mkN "councillorship" "councillorships" ;
+lin councilman_N = mkN "councilman" "councilmen" ;
+lin councilwoman_N = mkN "councilwoman" "councilwomen" ;
+lin counsel_N = mkN "counsel" "counsels" ;
+lin counsel_V = mkV "counsel" "counselled" "counselled" ;
+lin counsellor_N = mkN "counsellor" "counsellors" ;
+lin counselor_N = mkN "counselor" "counselors" ;
+lin counselorship_N = mkN "counselorship" "counselorships" ;
+lin count_N = mkN "count" "counts" ;
+lin count_V = mkV "count" "counted" "counted" ;
+lin countable_A = mkAMost "countable" "countably" ;
+lin countdown_N = mkN "countdown" "countdowns" ;
+lin countenance_N = mkN "countenance" "countenances" ;
+lin countenance_V = mkV "countenance" "countenanced" "countenanced" ;
+lin counter_Adv = mkAdv "counter" ;
+lin counter_N = mkN "counter" "counters" ;
+lin counter_V = mkV "counter" "countered" "countered" ;
+lin counter_example_N = mkN "counter-example" "counter-examples" ;
+lin counter_revolution_N = mkN "counter-revolution" "counter-revolutions" ;
+lin counter_revolutionary_A = mkAMost "counter-revolutionary" "counter-revolutionarily" ;
+lin counter_revolutionary_N = mkN "counter-revolutionary" "counter-revolutionaries" ;
+lin counteract_V = mkV "counteract" "counteracted" "counteracted" ;
+lin counteraction_N = mkN "counteraction" "counteractions" ;
+lin counteractive_A = mkAMost "counteractive" "counteractively" ;
+lin counterargument_N = mkN "counterargument" "counterarguments" ;
+lin counterattack_N = mkN "counterattack" "counterattacks" ;
+lin counterattack_V = mkV "counterattack" "counterattacked" "counterattacked" ;
+lin counterattraction_N = mkN "counterattraction" "counterattractions" ;
+lin counterbalance_N = mkN "counterbalance" "counterbalances" ;
+lin counterbalance_V = mkV "counterbalance" "counterbalanced" "counterbalanced" ;
+lin counterblast_N = mkN "counterblast" "counterblasts" ;
+lin counterblow_N = mkN "counterblow" "counterblows" ;
+lin counterbombardment_N = mkN "counterbombardment" "counterbombardments" ;
+lin counterbore_N = mkN "counterbore" "counterbores" ;
+lin countercharge_N = mkN "countercharge" "countercharges" ;
+lin countercheck_N = mkN "countercheck" "counterchecks" ;
+lin counterclaim_N = mkN "counterclaim" "counterclaims" ;
+lin counterclockwise_A = mkAMost "counterclockwise" "counterclockwisely" ;
+lin counterclockwise_Adv = mkAdv "counterclockwise" ;
+lin countercoup_N = mkN "countercoup" "countercoups" ;
+lin counterculture_N = mkN "counterculture" "countercultures" ;
+lin countercurrent_N = mkN "countercurrent" "countercurrents" ;
+lin counterdemonstration_N = mkN "counterdemonstration" "counterdemonstrations" ;
+lin counterdemonstrator_N = mkN "counterdemonstrator" "counterdemonstrators" ;
+lin counterespionage_N = mkN "counterespionage" "counterespionages" ;
+lin counterexample_N = mkN "counterexample" "counterexamples" ;
+lin counterfactual_A = mkAMost "counterfactual" "counterfactually" ;
+lin counterfactuality_N = mkN "counterfactuality" "counterfactualities" ;
+lin counterfeit_A = mkAMost "counterfeit" "counterfeitly" ;
+lin counterfeit_N = mkN "counterfeit" "counterfeits" ;
+lin counterfeit_V = mkV "counterfeit" "counterfeited" "counterfeited" ;
+lin counterfeiter_N = mkN "counterfeiter" "counterfeiters" ;
+lin counterfire_N = mkN "counterfire" "counterfires" ;
+lin counterfoil_N = mkN "counterfoil" "counterfoils" ;
+lin counterglow_N = mkN "counterglow" "counterglows" ;
+lin counterinsurgent_A = mkAMost "counterinsurgent" "counterinsurgently" ;
+lin counterintelligence_N = mkN "counterintelligence" "counterintelligences" ;
+lin counterintuitive_A = mkAMost "counterintuitive" "counterintuitively" ;
+lin counterirritant_N = mkN "counterirritant" "counterirritants" ;
+lin countermand_N = mkN "countermand" "countermands" ;
+lin countermand_V = mkV "countermand" "countermanded" "countermanded" ;
+lin countermarch_N = mkN "countermarch" "countermarches" ;
+lin countermeasure_N = mkN "countermeasure" "countermeasures" ;
+lin countermine_N = mkN "countermine" "countermines" ;
+lin countermine_V = mkV "countermine" "countermined" "countermined" ;
+lin counteroffensive_N = mkN "counteroffensive" "counteroffensives" ;
+lin counteroffer_N = mkN "counteroffer" "counteroffers" ;
+lin counterpane_N = mkN "counterpane" "counterpanes" ;
+lin counterpart_N = mkN "counterpart" "counterparts" ;
+lin counterperson_N = mkN "counterperson" "counterpersons" ;
+lin counterplea_N = mkN "counterplea" "counterpleas" ;
+lin counterplot_N = mkN "counterplot" "counterplots" ;
+lin counterplot_V = mkV "counterplot" "counterplotted" "counterplotted" ;
+lin counterpoint_N = mkN "counterpoint" "counterpoints" ;
+lin counterpoise_N = mkN "counterpoise" "counterpoises" ;
+lin counterpoise_V = mkV "counterpoise" "counterpoised" "counterpoised" ;
+lin counterproductive_A = mkAMost "counterproductive" "counterproductively" ;
+lin counterproposal_N = mkN "counterproposal" "counterproposals" ;
+lin counterpunch_N = mkN "counterpunch" "counterpunches" ;
+lin counterreformation_N = mkN "counterreformation" "counterreformations" ;
+lin counterrevolution_N = mkN "counterrevolution" "counterrevolutions" ;
+lin counterrevolutionary_A = mkAMost "counterrevolutionary" "counterrevolutionarily" ;
+lin counterrevolutionist_N = mkN "counterrevolutionist" "counterrevolutionists" ;
+lin countershot_N = mkN "countershot" "countershots" ;
+lin countersign_N = mkN "countersign" "countersigns" ;
+lin countersign_V = mkV "countersign" "countersigned" "countersigned" ;
+lin countersignature_N = mkN "countersignature" "countersignatures" ;
+lin countersink_N = mkN "countersink" "countersinks" ;
+lin countersink_V = mkV "countersink" "countersank" "countersunk" ;
+lin counterspy_N = mkN "counterspy" "counterspies" ;
+lin counterstain_N = mkN "counterstain" "counterstains" ;
+lin countersubversion_N = mkN "countersubversion" "countersubversions" ;
+lin countersuing_V = mkV "countersuing" "countersuinged" "countersuinged" ;
+lin countersuit_N = mkN "countersuit" "countersuits" ;
+lin countertenor_A = mkAMost "countertenor" "countertenorly" ;
+lin countertenor_N = mkN "countertenor" "countertenors" ;
+lin counterterror_A = mkAMost "counterterror" "counterterrorly" ;
+lin counterterrorism_N = mkN "counterterrorism" "counterterrorisms" ;
+lin counterterrorist_N = mkN "counterterrorist" "counterterrorists" ;
+lin countertop_N = mkN "countertop" "countertops" ;
+lin countertransference_N = mkN "countertransference" "countertransferences" ;
+lin countervail_V = mkV "countervail" "countervailed" "countervailed" ;
+lin counterweight_N = mkN "counterweight" "counterweights" ;
+lin countess_N = mkN "countess" "countesses" ;
+lin counting_house_N = mkN "counting-house" "counting-houses" ;
+lin countinghouse_N = mkN "countinghouse" "countinghouses" ;
+lin countless_A = mkAMost "countless" "countlessly" ;
+lin countrified_A = mkAMost "countrified" "countrifiedly" ;
+lin country_N = mkN "country" "countries" ;
+lin country_house_N = mkN "country-house" "country-houses" ;
+lin country_seat_N = mkN "country-seat" "country-seats" ;
+lin countryman_N = mkN "countryman" "countrymen" ;
+lin countryseat_N = mkN "countryseat" "countryseats" ;
+lin countryside_N = mkN "countryside" "countrysides" ;
+lin countrywide_A = mkAMost "countrywide" "countrywidely" ;
+lin countrywoman_N = mkN "countrywoman" "countrywomen" ;
+lin county_N = mkN "county" "counties" ;
+lin countywide_A = mkAMost "countywide" "countywidely" ;
+lin coup_N = mkN "coup" "coups" ;
+lin coup_d'etat_N = mkN "coup d'etat" "IRREG" ;
+lin coup_de_grace_N = mkN "coup de grace" "IRREG" ;
+lin couple_N = mkN "couple" "couples" ;
+lin couple_V = mkV "couple" "coupled" "coupled" ;
+lin couplet_N = mkN "couplet" "couplets" ;
+lin coupling_N = mkN "coupling" "couplings" ;
+lin coupon_N = mkN "coupon" "coupons" ;
+lin coupé_N = mkN "coupé" "coupés" ;
+lin courage_N = mkN "courage" "courages" ;
+lin courageous_A = mkAMost "courageous" "courageously" ;
+lin courante_N = mkN "courante" "courantes" ;
+lin courbaril_N = mkN "courbaril" "courbarils" ;
+lin courgette_N = mkN "courgette" "courgettes" ;
+lin courier_N = mkN "courier" "couriers" ;
+lin courlan_N = mkN "courlan" "courlans" ;
+lin course_N = mkN "course" "courses" ;
+lin course_V = mkV "course" "coursed" "coursed" ;
+lin courser_N = mkN "courser" "coursers" ;
+lin coursework_N = mkN "coursework" "courseworks" ;
+lin coursing_N = mkN "coursing" "coursings" ;
+lin court_N = mkN "court" "courts" ;
+lin court_V = mkV "court" "courted" "courted" ;
+lin court_card_N = mkN "court-card" "court-cards" ;
+lin court_martial_N = mkN "court-martial" "courts-martial" ;
+lin court_martial_V = mkV "court-martial" "court-martialed" "court-martialed" ;
+lin courteous_A = mkAMost "courteous" "courteously" ;
+lin courtesan_N = mkN "courtesan" "courtesans" ;
+lin courtesy_N = mkN "courtesy" "courtesies" ;
+lin courthouse_N = mkN "courthouse" "courthouses" ;
+lin courtier_N = mkN "courtier" "courtiers" ;
+lin courtliness_N = mkN "courtliness" "courtlinesses" ;
+lin courtly_A = mkA "courtly" "courtlier" "courtliest" "courtlily" ;
+lin courtroom_N = mkN "courtroom" "courtrooms" ;
+lin courtship_N = mkN "courtship" "courtships" ;
+lin courtyard_N = mkN "courtyard" "courtyards" ;
+lin couscous_N = mkN "couscous" "couscouses" ;
+lin cousin_N = mkN "cousin" "cousins" ;
+lin cousinly_A = mkAMost "cousinly" "cousinlily" ;
+lin couth_A = mkA "couth" "couther" "couthest" "couthly" ;
+lin couthie_A = mkAMost "couthie" "couthiely" ;
+lin couture_N = mkN "couture" "coutures" ;
+lin couturier_N = mkN "couturier" "couturiers" ;
+lin couvade_N = mkN "couvade" "couvades" ;
+lin couverture_N = mkN "couverture" "couvertures" ;
+lin covalence_N = mkN "covalence" "covalences" ;
+lin covalent_A = mkAMost "covalent" "covalently" ;
+lin covariance_N = mkN "covariance" "covariances" ;
+lin covariant_A = mkAMost "covariant" "covariantly" ;
+lin covariation_N = mkN "covariation" "covariations" ;
+lin cove_N = mkN "cove" "coves" ;
+lin coven_N = mkN "coven" "covens" ;
+lin covenant_N = mkN "covenant" "covenants" ;
+lin covenant_V = mkV "covenant" "covenanted" "covenanted" ;
+lin cover_N = mkN "cover" "covers" ;
+lin cover_V = mkV "cover" "covered" "covered" ;
+lin cover_up_N = mkN "cover-up" "cover-ups" ;
+lin coverage_N = mkN "coverage" "coverages" ;
+lin coverall_N = mkN "coverall" "coveralls" ;
+lin covering_A = mkAMost "covering" "coveringly" ;
+lin covering_N = mkN "covering" "coverings" ;
+lin coverlet_N = mkN "coverlet" "coverlets" ;
+lin covert_A = mkAMost "covert" "covertly" ;
+lin covert_N = mkN "covert" "coverts" ;
+lin covet_V = mkV "covet" "coveted" "coveted" ;
+lin covetous_A = mkAMost "covetous" "covetously" ;
+lin covetousness_N = mkN "covetousness" "covetousnesses" ;
+lin covey_N = mkN "covey" "coveys" ;
+lin cow_N = mkN "cow" "cows" ;
+lin cow_V = mkV "cow" "cowed" "cowed" ;
+lin cowage_N = mkN "cowage" "cowages" ;
+lin coward_N = mkN "coward" "cowards" ;
+lin cowardice_N = mkN "cowardice" "cowardices" ;
+lin cowardly_A = mkAMost "cowardly" "cowardlily" ;
+lin cowbarn_N = mkN "cowbarn" "cowbarns" ;
+lin cowbell_N = mkN "cowbell" "cowbells" ;
+lin cowberry_N = mkN "cowberry" "cowberries" ;
+lin cowbird_N = mkN "cowbird" "cowbirds" ;
+lin cowboy_N = mkN "cowboy" "cowboys" ;
+lin cowcatcher_N = mkN "cowcatcher" "cowcatchers" ;
+lin cower_V = mkV "cower" "cowered" "cowered" ;
+lin cowfish_N = mkN "cowfish" "cowfishes" ;
+lin cowgirl_N = mkN "cowgirl" "cowgirls" ;
+lin cowhand_N = mkN "cowhand" "cowhands" ;
+lin cowherb_N = mkN "cowherb" "cowherbs" ;
+lin cowherd_N = mkN "cowherd" "cowherds" ;
+lin cowhide_N = mkN "cowhide" "cowhides" ;
+lin cowhouse_N = mkN "cowhouse" "cowhouses" ;
+lin cowl_N = mkN "cowl" "cowls" ;
+lin cowled_A = mkAMost "cowled" "cowledly" ;
+lin cowlick_N = mkN "cowlick" "cowlicks" ;
+lin cowling_N = mkN "cowling" "cowlings" ;
+lin cowman_N = mkN "cowman" "cowmen" ;
+lin coworker_N = mkN "coworker" "coworkers" ;
+lin cowpea_N = mkN "cowpea" "cowpeas" ;
+lin cowpox_N = mkN "cowpox" "cowpoxes" ;
+lin cowrie_N = mkN "cowrie" "cowries" ;
+lin cowshed_N = mkN "cowshed" "cowsheds" ;
+lin cowskin_N = mkN "cowskin" "cowskins" ;
+lin cowslip_N = mkN "cowslip" "cowslips" ;
+lin cox_N = mkN "cox" "coxes" ;
+lin cox_V = mkV "cox" "coxed" "coxed" ;
+lin coxcomb_N = mkN "coxcomb" "coxcombs" ;
+lin coxsackievirus_N = mkN "coxsackievirus" "coxsackieviruses" ;
+lin coxswain_N = mkN "coxswain" "coxswains" ;
+lin coy_A = mkA "coy" "coyer" "coyest" "coily" ;
+lin coydog_N = mkN "coydog" "coydogs" ;
+lin coyly_Adv = mkAdv "coyly" ;
+lin coyness_N = mkN "coyness" "coynesses" ;
+lin coyol_N = mkN "coyol" "coyols" ;
+lin coyote_N = mkN "coyote" "coyotes" ;
+lin coypu_N = mkN "coypu" "coypus" ;
+lin cozen_V = mkV "cozen" "cozened" "cozened" ;
+lin coziness_N = mkN "coziness" "cozinesses" ;
+lin cozy_A = mkA "cozy" "cozier" "coziest" "cozily" ;
+lin cozy_V = mkV "cozy" "cozied" "cozied" ;
+lin crab_N = mkN "crab" "crabs" ;
+lin crab_V = mkV "crab" "crabbed" "crabbed" ;
+lin crab_apple_N = mkN "crab-apple" "crab-apples" ;
+lin crabbiness_N = mkN "crabbiness" "crabbinesses" ;
+lin crabgrass_N = mkN "crabgrass" "crabgrasses" ;
+lin crabwise_A = mkAMost "crabwise" "crabwisely" ;
+lin crack_N = mkN "crack" "cracks" ;
+lin crack_V = mkV "crack" "cracked" "cracked" ;
+lin crack_down_N = mkN "crack-down" "crack-downs" ;
+lin crack_up_N = mkN "crack-up" "crack-ups" ;
+lin crackbrained_A = mkAMost "crackbrained" "crackbrainedly" ;
+lin crackdown_N = mkN "crackdown" "crackdowns" ;
+lin cracker_N = mkN "cracker" "crackers" ;
+lin crackers_A = mkAMost "crackers" "crackersly" ;
+lin cracking_N = mkN "cracking" "crackings" ;
+lin crackle_A = mkA "crackle" "crackler" "cracklest" "cracklely" ;
+lin crackle_N = mkN "crackle" "crackles" ;
+lin crackle_V = mkV "crackle" "crackled" "crackled" ;
+lin crackle_china_N = mkN "crackle-china" "crackle-chinas" ;
+lin crackleware_N = mkN "crackleware" "cracklewares" ;
+lin crackling_N = mkN "crackling" "cracklings" ;
+lin cracklings_N = mkN "cracklings" "cracklingses" ;
+lin crackpot_N = mkN "crackpot" "crackpots" ;
+lin cracksman_N = mkN "cracksman" "cracksmen" ;
+lin cradle_N = mkN "cradle" "cradles" ;
+lin cradle_V = mkV "cradle" "cradled" "cradled" ;
+lin craft_N = mkN "craft" "crafts" ;
+lin craft_V = mkV "craft" "crafted" "crafted" ;
+lin craftiness_N = mkN "craftiness" "craftinesses" ;
+lin craftsman_N = mkN "craftsman" "craftsmen" ;
+lin craftsmanship_N = mkN "craftsmanship" "craftsmanships" ;
+lin crafty_A = mkA "crafty" "craftier" "craftiest" "craftily" ;
+lin crag_N = mkN "crag" "crags" ;
+lin cragfast_A = mkAMost "cragfast" "cragfastly" ;
+lin cragged_A = mkAMost "cragged" "craggedly" ;
+lin craggy_A = mkA "craggy" "craggier" "craggiest" "craggily" ;
+lin cragsman_N = mkN "cragsman" "cragsmen" ;
+lin crake_N = mkN "crake" "crakes" ;
+lin cram_V = mkV "cram" "crammed" "crammed" ;
+lin cram_full_A = mkAMost "cram-full" "cram-fully" ;
+lin cram_full_Adv = mkAdv "cram-full" ;
+lin crammer_N = mkN "crammer" "crammers" ;
+lin cramp_N = mkN "cramp" "cramps" ;
+lin cramp_V = mkV "cramp" "cramped" "cramped" ;
+lin cramp_iron_N = mkN "cramp-iron" "cramp-irons" ;
+lin crampon_N = mkN "crampon" "crampons" ;
+lin cran_N = mkN "cran" "crans" ;
+lin cranberry_N = mkN "cranberry" "cranberries" ;
+lin crane_N = mkN "crane" "cranes" ;
+lin crane_V = mkV "crane" "craned" "craned" ;
+lin crane_fly_N = mkN "crane-fly" "crane-flies" ;
+lin cranesbill_N = mkN "cranesbill" "cranesbills" ;
+lin cranial_A = mkAMost "cranial" "cranially" ;
+lin craniology_N = mkN "craniology" "craniologies" ;
+lin craniometer_N = mkN "craniometer" "craniometers" ;
+lin craniometric_A = mkAMost "craniometric" "craniometricly" ;
+lin craniometry_N = mkN "craniometry" "craniometries" ;
+lin craniotomy_N = mkN "craniotomy" "craniotomies" ;
+lin cranium_N = mkN "cranium" "craniums" ;
+lin crank_A = mkA "crank" "cranker" "crankest" "crankly" ;
+lin crank_N = mkN "crank" "cranks" ;
+lin crank_V = mkV "crank" "cranked" "cranked" ;
+lin crankcase_N = mkN "crankcase" "crankcases" ;
+lin crankiness_N = mkN "crankiness" "crankinesses" ;
+lin crankshaft_N = mkN "crankshaft" "crankshafts" ;
+lin cranky_A = mkA "cranky" "crankier" "crankiest" "crankily" ;
+lin crannied_A = mkAMost "crannied" "cranniedly" ;
+lin cranny_N = mkN "cranny" "crannies" ;
+lin crap_N = mkN "crap" "craps" ;
+lin crap_V = mkV "crap" "crapped" "crapped" ;
+lin crap_shooting_N = mkN "crap-shooting" "crap-shootings" ;
+lin crapaud_N = mkN "crapaud" "crapauds" ;
+lin crape_N = mkN "crape" "crapes" ;
+lin crappie_N = mkN "crappie" "crappies" ;
+lin craps_N = mkN "craps" "craps" ;
+lin crapshoot_N = mkN "crapshoot" "crapshoots" ;
+lin crapshooter_N = mkN "crapshooter" "crapshooters" ;
+lin crapulent_A = mkAMost "crapulent" "crapulently" ;
+lin crapulous_A = mkAMost "crapulous" "crapulously" ;
+lin crash_Adv = mkAdv "crash" ;
+lin crash_N = mkN "crash" "crashes" ;
+lin crash_V = mkV "crash" "crashed" "crashed" ;
+lin crash_dive_N = mkN "crash-dive" "crash-dives" ;
+lin crash_dive_V = mkV "crash-dive" "crash-dived" "crash-dived" ;
+lin crash_helmet_N = mkN "crash-helmet" "crash-helmets" ;
+lin crash_land_V = mkV "crash-land" "crash-landed" "crash-landed" ;
+lin crash_landing_N = mkN "crash-landing" "crash-landings" ;
+lin crass_A = mkAMost "crass" "crassly" ;
+lin crassness_N = mkN "crassness" "crassnesses" ;
+lin crate_N = mkN "crate" "crates" ;
+lin crate_V = mkV "crate" "crated" "crated" ;
+lin crater_N = mkN "crater" "craters" ;
+lin crater_cratered_V = mkV "crater" "cratered" "cratered" ;
+lin crater_craterred_V = mkV "crater" "craterred" "craterred" ;
+lin craton_N = mkN "craton" "cratons" ;
+lin cravat_N = mkN "cravat" "cravats" ;
+lin crave_V = mkV "crave" "craved" "craved" ;
+lin craven_A = mkAMost "craven" "cravenly" ;
+lin craven_N = mkN "craven" "cravens" ;
+lin cravenness_N = mkN "cravenness" "cravennesses" ;
+lin craving_N = mkN "craving" "cravings" ;
+lin craw_N = mkN "craw" "craws" ;
+lin crawfish_N = mkN "crawfish" "crawfishes" ;
+lin crawl_N = mkN "crawl" "crawls" ;
+lin crawl_V = mkV "crawl" "crawled" "crawled" ;
+lin crawler_N = mkN "crawler" "crawlers" ;
+lin crawlspace_N = mkN "crawlspace" "crawlspaces" ;
+lin crayfish_N = mkN "crayfish" "crayfishes" ;
+lin crayon_N = mkN "crayon" "crayons" ;
+lin crayon_V = mkV "crayon" "crayoned" "crayoned" ;
+lin craze_N = mkN "craze" "crazes" ;
+lin crazed_A = mkAMost "crazed" "crazedly" ;
+lin craziness_N = mkN "craziness" "crazinesses" ;
+lin crazy_A = mkA "crazy" "crazier" "craziest" "crazily" ;
+lin crazy_N = mkN "crazy" "crazies" ;
+lin creak_N = mkN "creak" "creaks" ;
+lin creak_V = mkV "creak" "creaked" "creaked" ;
+lin creaky_A = mkA "creaky" "creakier" "creakiest" "creakily" ;
+lin cream_N = mkN "cream" "creams" ;
+lin cream_V = mkV "cream" "creamed" "creamed" ;
+lin creamcups_N = mkN "creamcups" "creamcupses" ;
+lin creamery_N = mkN "creamery" "creameries" ;
+lin creaminess_N = mkN "creaminess" "creaminesses" ;
+lin creamy_A = mkA "creamy" "creamier" "creamiest" "creamily" ;
+lin crease_N = mkN "crease" "creases" ;
+lin crease_V = mkV "crease" "creased" "creased" ;
+lin creaseless_A = mkAMost "creaseless" "creaselessly" ;
+lin creaseproof_A = mkAMost "creaseproof" "creaseproofly" ;
+lin create_V = mkV "create" "created" "created" ;
+lin creatine_N = mkN "creatine" "creatines" ;
+lin creation_N = mkN "creation" "creations" ;
+lin creationism_N = mkN "creationism" "creationisms" ;
+lin creative_A = mkAMost "creative" "creatively" ;
+lin creativeness_N = mkN "creativeness" "creativenesses" ;
+lin creativity_N = mkN "creativity" "creativities" ;
+lin creator_N = mkN "creator" "creators" ;
+lin creature_N = mkN "creature" "creatures" ;
+lin credence_N = mkN "credence" "credences" ;
+lin credentialled_A = mkAMost "credentialled" "credentialledly" ;
+lin credenza_N = mkN "credenza" "credenzas" ;
+lin credibility_N = mkN "credibility" "credibilities" ;
+lin credible_A = mkAMost "credible" "credibly" ;
+lin credit_N = mkN "credit" "credits" ;
+lin credit_V = mkV "credit" "credited" "credited" ;
+lin credit_side_N = mkN "credit-side" "credit-sides" ;
+lin credit_worthiness_N = mkN "credit-worthiness" "credit-worthinesses" ;
+lin credit_worthy_A = mkAMost "credit-worthy" "credit-worthily" ;
+lin creditable_A = mkAMost "creditable" "creditably" ;
+lin creditor_N = mkN "creditor" "creditors" ;
+lin credits_N = mkN "credits" "creditses" ;
+lin creditworthiness_N = mkN "creditworthiness" "creditworthinesses" ;
+lin creditworthy_A = mkAMost "creditworthy" "creditworthily" ;
+lin credo_N = mkN "credo" "credos" ;
+lin credulity_N = mkN "credulity" "credulities" ;
+lin credulous_A = mkAMost "credulous" "credulously" ;
+lin credulousness_N = mkN "credulousness" "credulousnesses" ;
+lin creed_N = mkN "creed" "creeds" ;
+lin creedal_A = mkAMost "creedal" "creedally" ;
+lin creek_N = mkN "creek" "creeks" ;
+lin creel_N = mkN "creel" "creels" ;
+lin creep_N = mkN "creep" "creeps" ;
+lin creep_creeped_V = mkV "creep" "creeped" "creeped" ;
+lin creep_crept_V = mkV "creep" "crept" "crept" ;
+lin creeper_N = mkN "creeper" "creepers" ;
+lin creepiness_N = mkN "creepiness" "creepinesses" ;
+lin creeps_N = mkN "creeps" "creepses" ;
+lin creepy_A = mkA "creepy" "creepier" "creepiest" "creepily" ;
+lin cremains_N = mkN "cremains" "cremainses" ;
+lin cremate_V = mkV "cremate" "cremated" "cremated" ;
+lin cremation_N = mkN "cremation" "cremations" ;
+lin crematorium_N = mkN "crematorium" "crematoriums" ;
+lin crematory_N = mkN "crematory" "crematories" ;
+lin crenate_A = mkAMost "crenate" "crenately" ;
+lin crenel_N = mkN "crenel" "crenels" ;
+lin crenelation_N = mkN "crenelation" "crenelations" ;
+lin crenellated_A = mkAMost "crenellated" "crenellatedly" ;
+lin crenulate_A = mkAMost "crenulate" "crenulately" ;
+lin creole_A = mkAMost "creole" "creolely" ;
+lin creole_N = mkN "creole" "creoles" ;
+lin creosol_N = mkN "creosol" "creosols" ;
+lin creosote_N = mkN "creosote" "creosotes" ;
+lin crepe_N = mkN "crepe" "crepes" ;
+lin crepitate_V = mkV "crepitate" "crepitated" "crepitated" ;
+lin crepitation_N = mkN "crepitation" "crepitations" ;
+lin crepuscular_A = mkAMost "crepuscular" "crepuscularly" ;
+lin crescendo_A = mkAMost "crescendo" "crescendoly" ;
+lin crescendo_N = mkN "crescendo" "crescendos" ;
+lin crescent_N = mkN "crescent" "crescents" ;
+lin cresol_N = mkN "cresol" "cresols" ;
+lin cress_N = mkN "cress" "cresses" ;
+lin crest_N = mkN "crest" "crests" ;
+lin crest_V = mkV "crest" "crested" "crested" ;
+lin crestfallen_A = mkAMost "crestfallen" "crestfallenly" ;
+lin cretaceous_A = mkAMost "cretaceous" "cretaceously" ;
+lin cretin_N = mkN "cretin" "cretins" ;
+lin cretinism_N = mkN "cretinism" "cretinisms" ;
+lin cretinous_A = mkAMost "cretinous" "cretinously" ;
+lin cretonne_N = mkN "cretonne" "cretonnes" ;
+lin crevasse_N = mkN "crevasse" "crevasses" ;
+lin crevice_N = mkN "crevice" "crevices" ;
+lin crew_N = mkN "crew" "crews" ;
+lin crew_V = mkV "crew" "crewed" "crewed" ;
+lin crew_cut_N = mkN "crew-cut" "crew-cuts" ;
+lin crew_neck_N = mkN "crew-neck" "crew-necks" ;
+lin crewelwork_N = mkN "crewelwork" "crewelworks" ;
+lin crewman_N = mkN "crewman" "crewmans" ;
+lin crib_N = mkN "crib" "cribs" ;
+lin crib_V = mkV "crib" "cribbed" "cribbed" ;
+lin cribbage_N = mkN "cribbage" "cribbages" ;
+lin cribbage_board_N = mkN "cribbage-board" "cribbage-boards" ;
+lin crick_N = mkN "crick" "cricks" ;
+lin crick_V = mkV "crick" "cricked" "cricked" ;
+lin cricket_N = mkN "cricket" "crickets" ;
+lin cricketer_N = mkN "cricketer" "cricketers" ;
+lin crier_N = mkN "crier" "criers" ;
+lin crime_N = mkN "crime" "crimes" ;
+lin crime_V = mkV "crime" "crimed" "crimed" ;
+lin criminal_A = mkAMost "criminal" "criminally" ;
+lin criminal_N = mkN "criminal" "criminals" ;
+lin criminalism_N = mkN "criminalism" "criminalisms" ;
+lin criminalization_N = mkN "criminalization" "criminalizations" ;
+lin criminalize_V = mkV "criminalize" "criminalized" "criminalized" ;
+lin criminative_A = mkAMost "criminative" "criminatively" ;
+lin criminological_A = mkAMost "criminological" "criminologically" ;
+lin criminologist_N = mkN "criminologist" "criminologists" ;
+lin criminology_N = mkN "criminology" "criminologies" ;
+lin crimp_N = mkN "crimp" "crimps" ;
+lin crimp_V = mkV "crimp" "crimped" "crimped" ;
+lin crimson_A = mkAMost "crimson" "crimsonly" ;
+lin crimson_N = mkN "crimson" "crimsons" ;
+lin crimson_V = mkV "crimson" "crimsoned" "crimsoned" ;
+lin cringe_V = mkV "cringe" "cringed" "cringed" ;
+lin cringle_N = mkN "cringle" "cringles" ;
+lin crinkle_N = mkN "crinkle" "crinkles" ;
+lin crinkle_V = mkV "crinkle" "crinkled" "crinkled" ;
+lin crinkleroot_N = mkN "crinkleroot" "crinkleroots" ;
+lin crinkly_A = mkA "crinkly" "crinklier" "crinkliest" "crinklily" ;
+lin crinoid_A = mkAMost "crinoid" "crinoidly" ;
+lin crinoid_N = mkN "crinoid" "crinoids" ;
+lin crinoline_N = mkN "crinoline" "crinolines" ;
+lin criollo_N = mkN "criollo" "criolloes" ;
+lin cripple_N = mkN "cripple" "cripples" ;
+lin cripple_V = mkV "cripple" "crippled" "crippled" ;
+lin crippling_A = mkAMost "crippling" "cripplingly" ;
+lin crisis_N = mkN "crisis" "crises" ;
+lin crisp_A = mkA "crisp" "crisper" "crispest" "crisply" ;
+lin crisp_N = mkN "crisp" "crisps" ;
+lin crisp_V = mkV "crisp" "crisped" "crisped" ;
+lin crispate_A = mkAMost "crispate" "crispately" ;
+lin crispness_N = mkN "crispness" "crispnesses" ;
+lin criss_cross_V = mkV "criss-cross" "criss-crossed" "criss-crossed" ;
+lin crisscross_A = mkAMost "crisscross" "crisscrossly" ;
+lin crisscross_Adv = mkAdv "crisscross" ;
+lin crisscross_N = mkN "crisscross" "crisscrosses" ;
+lin crisscross_V = mkV "crisscross" "crisscrossed" "crisscrossed" ;
+lin cristobalite_N = mkN "cristobalite" "cristobalites" ;
+lin criterial_A = mkAMost "criterial" "criterially" ;
+lin criterion_criteria_N = mkN "criterion" "criteria" ;
+lin criterion_criterions_N = mkN "criterion" "criterions" ;
+lin crith_N = mkN "crith" "criths" ;
+lin critic_N = mkN "critic" "critics" ;
+lin critical_A = mkAMost "critical" "critically" ;
+lin criticality_N = mkN "criticality" "criticalities" ;
+lin criticism_N = mkN "criticism" "criticisms" ;
+lin criticize_V = mkV "criticize" "criticized" "criticized" ;
+lin critique_N = mkN "critique" "critiques" ;
+lin critter_N = mkN "critter" "critters" ;
+lin croak_N = mkN "croak" "croaks" ;
+lin croak_V = mkV "croak" "croaked" "croaked" ;
+lin croaker_N = mkN "croaker" "croakers" ;
+lin croaky_A = mkA "croaky" "croakier" "croakiest" "croakily" ;
+lin crochet_N = mkN "crochet" "crochets" ;
+lin crochet_V = mkV "crochet" "crocheted" "crocheted" ;
+lin crochet_hook_N = mkN "crochet-hook" "crochet-hooks" ;
+lin crocheting_N = mkN "crocheting" "crochetings" ;
+lin crock_N = mkN "crock" "crocks" ;
+lin crock_V = mkV "crock" "crocked" "crocked" ;
+lin crockery_N = mkN "crockery" "crockeries" ;
+lin crocket_N = mkN "crocket" "crockets" ;
+lin crocketed_A = mkAMost "crocketed" "crocketedly" ;
+lin crocodile_N = mkN "crocodile" "crocodiles" ;
+lin crocolite_N = mkN "crocolite" "crocolites" ;
+lin crocus_N = mkN "crocus" "crocuses" ;
+lin croft_N = mkN "croft" "crofts" ;
+lin crofter_N = mkN "crofter" "crofters" ;
+lin cromlech_N = mkN "cromlech" "cromlechs" ;
+lin crone_N = mkN "crone" "crones" ;
+lin crony_N = mkN "crony" "cronies" ;
+lin cronyism_N = mkN "cronyism" "cronyisms" ;
+lin crook_N = mkN "crook" "crooks" ;
+lin crook_V = mkV "crook" "crooked" "crooked" ;
+lin crook_back_A = mkAMost "crook-back" "crook-backly" ;
+lin crook_backed_A = mkAMost "crook-backed" "crook-backedly" ;
+lin crookback_A = mkAMost "crookback" "crookbackly" ;
+lin crookedness_N = mkN "crookedness" "crookednesses" ;
+lin crookneck_N = mkN "crookneck" "crooknecks" ;
+lin croon_V = mkV "croon" "crooned" "crooned" ;
+lin crooner_N = mkN "crooner" "crooners" ;
+lin crooning_N = mkN "crooning" "croonings" ;
+lin crop_N = mkN "crop" "crops" ;
+lin crop_V = mkV "crop" "cropped" "cropped" ;
+lin crop_dusting_N = mkN "crop-dusting" "crop-dustings" ;
+lin cropper_N = mkN "cropper" "croppers" ;
+lin croquet_N = mkN "croquet" "croquets" ;
+lin croquette_N = mkN "croquette" "croquettes" ;
+lin crore_N = mkN "crore" "crores" ;
+lin crosier_N = mkN "crosier" "crosiers" ;
+lin cross_A = mkAMost "cross" "crossly" ;
+lin cross_N = mkN "cross" "crosses" ;
+lin cross_V = mkV "cross" "crossed" "crossed" ;
+lin cross_bench_N = mkN "cross-bench" "cross-benches" ;
+lin cross_bencher_N = mkN "cross-bencher" "cross-benchers" ;
+lin cross_division_N = mkN "cross-division" "cross-divisions" ;
+lin cross_examination_N = mkN "cross-examination" "cross-examinations" ;
+lin cross_examine_V = mkV "cross-examine" "cross-examined" "cross-examined" ;
+lin cross_examiner_N = mkN "cross-examiner" "cross-examiners" ;
+lin cross_fertilization_N = mkN "cross-fertilization" "cross-fertilizations" ;
+lin cross_fertilize_V = mkV "cross-fertilize" "cross-fertilized" "cross-fertilized" ;
+lin cross_grained_A = mkAMost "cross-grained" "cross-grainedly" ;
+lin cross_heading_N = mkN "cross-heading" "cross-headings" ;
+lin cross_index_N = mkN "cross-index" "cross-indexes" ;
+lin cross_index_V = mkV "cross-index" "cross-indexed" "cross-indexed" ;
+lin cross_legged_Adv = mkAdv "cross-legged" ;
+lin cross_question_V = mkV "cross-question" "cross-questioned" "cross-questioned" ;
+lin cross_reference_N = mkN "cross-reference" "cross-references" ;
+lin cross_section_N = mkN "cross-section" "cross-sections" ;
+lin cross_stitch_N = mkN "cross-stitch" "cross-stitches" ;
+lin crossbar_N = mkN "crossbar" "crossbars" ;
+lin crossbeam_N = mkN "crossbeam" "crossbeams" ;
+lin crossbench_N = mkN "crossbench" "crossbenches" ;
+lin crossbencher_N = mkN "crossbencher" "crossbenchers" ;
+lin crossbill_N = mkN "crossbill" "crossbills" ;
+lin crossbones_N = mkN "crossbones" "crossboneses" ;
+lin crossbow_N = mkN "crossbow" "crossbows" ;
+lin crossbreed_N = mkN "crossbreed" "crossbreeds" ;
+lin crossbreed_V = mkV "crossbreed" "crossbred" "crossbred" ;
+lin crosscheck_N = mkN "crosscheck" "crosschecks" ;
+lin crosscheck_V = mkV "crosscheck" "crosschecked" "crosschecked" ;
+lin crosscountry_A = mkAMost "crosscountry" "crosscountrily" ;
+lin crosscountry_Adv = mkAdv "crosscountry" ;
+lin crosscurrent_N = mkN "crosscurrent" "crosscurrents" ;
+lin crosscut_A = mkAMost "crosscut" "crosscutly" ;
+lin crosscut_N = mkN "crosscut" "crosscuts" ;
+lin crosse_N = mkN "crosse" "crosses" ;
+lin crosseyed_A = mkAMost "crosseyed" "crosseyedly" ;
+lin crossfire_N = mkN "crossfire" "crossfires" ;
+lin crosshairs_N = mkN "crosshairs" "crosshairses" ;
+lin crosshead_N = mkN "crosshead" "crossheads" ;
+lin crossheading_N = mkN "crossheading" "crossheadings" ;
+lin crossing_N = mkN "crossing" "crossings" ;
+lin crossjack_N = mkN "crossjack" "crossjacks" ;
+lin crossness_N = mkN "crossness" "crossnesses" ;
+lin crossopterygian_N = mkN "crossopterygian" "crossopterygians" ;
+lin crossover_N = mkN "crossover" "crossovers" ;
+lin crosspatch_N = mkN "crosspatch" "crosspatches" ;
+lin crosspiece_N = mkN "crosspiece" "crosspieces" ;
+lin crossroad_N = mkN "crossroad" "crossroads" ;
+lin crossroads_N = mkN "crossroads" "crossroadses" ;
+lin crosstalk_N = mkN "crosstalk" "crosstalks" ;
+lin crosstown_A = mkAMost "crosstown" "crosstownly" ;
+lin crosstown_Adv = mkAdv "crosstown" ;
+lin crosswalk_N = mkN "crosswalk" "crosswalks" ;
+lin crosswind_N = mkN "crosswind" "crosswinds" ;
+lin crosswise_A = mkAMost "crosswise" "crosswisely" ;
+lin crosswise_Adv = mkAdv "crosswise" ;
+lin crossword_N = mkN "crossword" "crosswords" ;
+lin crotalaria_N = mkN "crotalaria" "crotalarias" ;
+lin crotaphion_N = mkN "crotaphion" "crotaphions" ;
+lin crotch_N = mkN "crotch" "crotches" ;
+lin crotchet_N = mkN "crotchet" "crotchets" ;
+lin crotchety_A = mkAMost "crotchety" "crotchetily" ;
+lin croton_N = mkN "croton" "crotons" ;
+lin crottle_N = mkN "crottle" "crottles" ;
+lin crouch_N = mkN "crouch" "crouches" ;
+lin crouch_V = mkV "crouch" "crouched" "crouched" ;
+lin croup_N = mkN "croup" "croups" ;
+lin croupier_N = mkN "croupier" "croupiers" ;
+lin croupy_A = mkA "croupy" "croupier" "croupiest" "croupily" ;
+lin crouton_N = mkN "crouton" "croutons" ;
+lin crow's_nest_N = mkN "crow's-nest" "crow's-nests" ;
+lin crow_N = mkN "crow" "crows" ;
+lin crow_V = mkV "crow" "crowed" "crowed" ;
+lin crowbait_N = mkN "crowbait" "crowbaits" ;
+lin crowbar_N = mkN "crowbar" "crowbars" ;
+lin crowberry_N = mkN "crowberry" "crowberries" ;
+lin crowd_N = mkN "crowd" "crowds" ;
+lin crowd_V = mkV "crowd" "crowded" "crowded" ;
+lin crowding_N = mkN "crowding" "crowdings" ;
+lin crown_N = mkN "crown" "crowns" ;
+lin crown_V = mkV "crown" "crowned" "crowned" ;
+lin crown_land_N = mkN "crown-land" "crown-lands" ;
+lin crownbeard_N = mkN "crownbeard" "crownbeards" ;
+lin crowning_A = mkAMost "crowning" "crowningly" ;
+lin crozier_N = mkN "crozier" "croziers" ;
+lin crucial_A = mkAMost "crucial" "crucially" ;
+lin cruciate_A = mkAMost "cruciate" "cruciately" ;
+lin crucible_N = mkN "crucible" "crucibles" ;
+lin crucifer_N = mkN "crucifer" "crucifers" ;
+lin cruciferous_A = mkAMost "cruciferous" "cruciferously" ;
+lin crucifix_N = mkN "crucifix" "crucifixes" ;
+lin crucifixion_N = mkN "crucifixion" "crucifixions" ;
+lin cruciform_A = mkAMost "cruciform" "cruciformly" ;
+lin crucify_V = mkV "crucify" "crucified" "crucified" ;
+lin crud_N = mkN "crud" "cruds" ;
+lin cruddy_A = mkA "cruddy" "cruddier" "cruddiest" "cruddily" ;
+lin crude_A = mkA "crude" "cruder" "crudest" "crudely" ;
+lin crudeness_N = mkN "crudeness" "crudenesses" ;
+lin crudites_N = mkN "crudites" "cruditeses" ;
+lin crudity_N = mkN "crudity" "crudities" ;
+lin cruel_A = mkA "cruel" "crueller" "cruellest" "cruelly" ;
+lin cruelty_N = mkN "cruelty" "cruelties" ;
+lin cruet_N = mkN "cruet" "cruets" ;
+lin cruet_stand_N = mkN "cruet-stand" "cruet-stands" ;
+lin cruise_N = mkN "cruise" "cruises" ;
+lin cruise_V = mkV "cruise" "cruised" "cruised" ;
+lin cruiser_N = mkN "cruiser" "cruisers" ;
+lin cruller_N = mkN "cruller" "crullers" ;
+lin crumb_N = mkN "crumb" "crumbs" ;
+lin crumb_V = mkV "crumb" "crumbed" "crumbed" ;
+lin crumble_V = mkV "crumble" "crumbled" "crumbled" ;
+lin crumbliness_N = mkN "crumbliness" "crumblinesses" ;
+lin crumbly_A = mkA "crumbly" "crumblier" "crumbliest" "crumblily" ;
+lin crumpet_N = mkN "crumpet" "crumpets" ;
+lin crumple_V = mkV "crumple" "crumpled" "crumpled" ;
+lin crunch_N = mkN "crunch" "crunches" ;
+lin crunch_V = mkV "crunch" "crunched" "crunched" ;
+lin crupper_N = mkN "crupper" "cruppers" ;
+lin crural_A = mkAMost "crural" "crurally" ;
+lin crus_N = mkN "crus" "cruses" ;
+lin crusade_N = mkN "crusade" "crusades" ;
+lin crusade_V = mkV "crusade" "crusaded" "crusaded" ;
+lin crusader_N = mkN "crusader" "crusaders" ;
+lin cruse_N = mkN "cruse" "cruses" ;
+lin crush_N = mkN "crush" "crushes" ;
+lin crush_V = mkV "crush" "crushed" "crushed" ;
+lin crusher_N = mkN "crusher" "crushers" ;
+lin crushingly_Adv = mkAdv "crushingly" ;
+lin crust_N = mkN "crust" "crusts" ;
+lin crust_V = mkV "crust" "crusted" "crusted" ;
+lin crustacean_N = mkN "crustacean" "crustaceans" ;
+lin crustaceous_A = mkAMost "crustaceous" "crustaceously" ;
+lin crustal_A = mkAMost "crustal" "crustally" ;
+lin crustose_A = mkAMost "crustose" "crustosely" ;
+lin crusty_A = mkA "crusty" "crustier" "crustiest" "crustily" ;
+lin crutch_N = mkN "crutch" "crutches" ;
+lin crux_N = mkN "crux" "cruxes" ;
+lin cruzeiro_N = mkN "cruzeiro" "cruzeiros" ;
+lin cry_N = mkN "cry" "cries" ;
+lin cry_V = mkV "cry" "cried" "cried" ;
+lin crybaby_N = mkN "crybaby" "crybabies" ;
+lin cryesthesia_N = mkN "cryesthesia" "cryesthesias" ;
+lin crying_N = mkN "crying" "cryings" ;
+lin cryoanesthesia_N = mkN "cryoanesthesia" "cryoanesthesias" ;
+lin cryobiology_N = mkN "cryobiology" "cryobiologies" ;
+lin cryocautery_N = mkN "cryocautery" "cryocauteries" ;
+lin cryogen_N = mkN "cryogen" "cryogens" ;
+lin cryogenic_A = mkAMost "cryogenic" "cryogenicly" ;
+lin cryogenics_N = mkN "cryogenics" "cryogenicses" ;
+lin cryolite_N = mkN "cryolite" "cryolites" ;
+lin cryometer_N = mkN "cryometer" "cryometers" ;
+lin cryonic_A = mkAMost "cryonic" "cryonicly" ;
+lin cryonics_N = mkN "cryonics" "cryonicses" ;
+lin cryophobia_N = mkN "cryophobia" "cryophobias" ;
+lin cryoscope_N = mkN "cryoscope" "cryoscopes" ;
+lin cryostat_N = mkN "cryostat" "cryostats" ;
+lin cryosurgery_N = mkN "cryosurgery" "cryosurgeries" ;
+lin crypt_N = mkN "crypt" "crypts" ;
+lin cryptanalysis_N = mkN "cryptanalysis" "cryptanalysises" ;
+lin cryptanalyst_N = mkN "cryptanalyst" "cryptanalysts" ;
+lin cryptanalytic_A = mkAMost "cryptanalytic" "cryptanalyticly" ;
+lin cryptic_A = mkAMost "cryptic" "crypticly" ;
+lin cryptically_Adv = mkAdv "cryptically" ;
+lin cryptobiosis_N = mkN "cryptobiosis" "cryptobiosises" ;
+lin cryptobiotic_A = mkAMost "cryptobiotic" "cryptobioticly" ;
+lin cryptococcosis_N = mkN "cryptococcosis" "cryptococcosises" ;
+lin cryptocoryne_N = mkN "cryptocoryne" "cryptocorynes" ;
+lin cryptogam_N = mkN "cryptogam" "cryptogams" ;
+lin cryptogamic_A = mkAMost "cryptogamic" "cryptogamicly" ;
+lin cryptogram_N = mkN "cryptogram" "cryptograms" ;
+lin cryptograph_N = mkN "cryptograph" "cryptographs" ;
+lin cryptographically_Adv = mkAdv "cryptographically" ;
+lin cryptography_N = mkN "cryptography" "cryptographies" ;
+lin cryptomonad_N = mkN "cryptomonad" "cryptomonads" ;
+lin cryptorchidy_N = mkN "cryptorchidy" "cryptorchidies" ;
+lin crystal_N = mkN "crystal" "crystals" ;
+lin crystal_gazing_N = mkN "crystal-gazing" "crystal-gazings" ;
+lin crystalline_A = mkAMost "crystalline" "crystallinely" ;
+lin crystallite_N = mkN "crystallite" "crystallites" ;
+lin crystallization_N = mkN "crystallization" "crystallizations" ;
+lin crystallize_V = mkV "crystallize" "crystallized" "crystallized" ;
+lin crystallographer_N = mkN "crystallographer" "crystallographers" ;
+lin crystallography_N = mkN "crystallography" "crystallographies" ;
+lin crèche_N = mkN "crèche" "crèches" ;
+lin crème_de_menthe_N = mkN "crème de menthe" "crème de menthes" ;
+lin crêpe_N = mkN "crêpe" "crêpes" ;
+lin ctene_N = mkN "ctene" "ctenes" ;
+lin ctenidium_N = mkN "ctenidium" "ctenidiums" ;
+lin ctenoid_A = mkAMost "ctenoid" "ctenoidly" ;
+lin ctenophore_N = mkN "ctenophore" "ctenophores" ;
+lin cub_N = mkN "cub" "cubs" ;
+lin cuban_A = mkAMost "cuban" "cubanly" ;
+lin cuban_N = mkN "cuban" "cubans" ;
+lin cubby_N = mkN "cubby" "cubbies" ;
+lin cubbyhole_N = mkN "cubbyhole" "cubbyholes" ;
+lin cube_N = mkN "cube" "cubes" ;
+lin cube_V = mkV "cube" "cubed" "cubed" ;
+lin cubeb_N = mkN "cubeb" "cubebs" ;
+lin cubelike_A = mkAMost "cubelike" "cubelikely" ;
+lin cubic_A = mkAMost "cubic" "cubicly" ;
+lin cubical_A = mkAMost "cubical" "cubically" ;
+lin cubicity_N = mkN "cubicity" "cubicities" ;
+lin cubicle_N = mkN "cubicle" "cubicles" ;
+lin cubism_N = mkN "cubism" "cubisms" ;
+lin cubist_A = mkAMost "cubist" "cubistly" ;
+lin cubist_N = mkN "cubist" "cubists" ;
+lin cubit_N = mkN "cubit" "cubits" ;
+lin cubital_A = mkAMost "cubital" "cubitally" ;
+lin cubitiere_N = mkN "cubitiere" "cubitieres" ;
+lin cubitus_N = mkN "cubitus" "cubituses" ;
+lin cuboid_N = mkN "cuboid" "cuboids" ;
+lin cuckold_N = mkN "cuckold" "cuckolds" ;
+lin cuckold_V = mkV "cuckold" "cuckolded" "cuckolded" ;
+lin cuckoldom_N = mkN "cuckoldom" "cuckoldoms" ;
+lin cuckoldry_N = mkN "cuckoldry" "cuckoldries" ;
+lin cuckoo_N = mkN "cuckoo" "cuckoos" ;
+lin cuckoo_clock_N = mkN "cuckoo-clock" "cuckoo-clocks" ;
+lin cuckoopint_N = mkN "cuckoopint" "cuckoopints" ;
+lin cucumber_N = mkN "cucumber" "cucumbers" ;
+lin cucurbit_N = mkN "cucurbit" "cucurbits" ;
+lin cucurbitaceous_A = mkAMost "cucurbitaceous" "cucurbitaceously" ;
+lin cud_N = mkN "cud" "cuds" ;
+lin cuddle_N = mkN "cuddle" "cuddles" ;
+lin cuddle_V = mkV "cuddle" "cuddled" "cuddled" ;
+lin cuddlesome_A = mkAMost "cuddlesome" "cuddlesomely" ;
+lin cuddly_A = mkA "cuddly" "cuddlier" "cuddliest" "cuddlily" ;
+lin cuddy_N = mkN "cuddy" "cuddies" ;
+lin cudgel_N = mkN "cudgel" "cudgels" ;
+lin cudgel_V = mkV "cudgel" "cudgeled" "cudgeled" ;
+lin cudweed_N = mkN "cudweed" "cudweeds" ;
+lin cue_N = mkN "cue" "cues" ;
+lin cuff_N = mkN "cuff" "cuffs" ;
+lin cuff_V = mkV "cuff" "cuffed" "cuffed" ;
+lin cufflink_N = mkN "cufflink" "cufflinks" ;
+lin cuirass_N = mkN "cuirass" "cuirasses" ;
+lin cuirassier_N = mkN "cuirassier" "cuirassiers" ;
+lin cuisine_N = mkN "cuisine" "cuisines" ;
+lin cuisse_N = mkN "cuisse" "cuisses" ;
+lin cul_N = mkN "cul" "culs" ;
+lin cul_de_sac_N = mkN "cul-de-sac" "cul-de-sacs" ;
+lin culdoscope_N = mkN "culdoscope" "culdoscopes" ;
+lin culdoscopy_N = mkN "culdoscopy" "culdoscopies" ;
+lin culinary_A = mkAMost "culinary" "culinarily" ;
+lin cull_N = mkN "cull" "culls" ;
+lin cull_V = mkV "cull" "culled" "culled" ;
+lin cullender_N = mkN "cullender" "cullenders" ;
+lin cullis_N = mkN "cullis" "cullises" ;
+lin culm_N = mkN "culm" "culms" ;
+lin culminate_V = mkV "culminate" "culminated" "culminated" ;
+lin culmination_N = mkN "culmination" "culminations" ;
+lin culotte_N = mkN "culotte" "culottes" ;
+lin culpability_N = mkN "culpability" "culpabilities" ;
+lin culpable_A = mkAMost "culpable" "culpably" ;
+lin culprit_N = mkN "culprit" "culprits" ;
+lin cult_N = mkN "cult" "cults" ;
+lin cultism_N = mkN "cultism" "cultisms" ;
+lin cultist_N = mkN "cultist" "cultists" ;
+lin cultivable_A = mkAMost "cultivable" "cultivably" ;
+lin cultivar_N = mkN "cultivar" "cultivars" ;
+lin cultivate_V = mkV "cultivate" "cultivated" "cultivated" ;
+lin cultivation_N = mkN "cultivation" "cultivations" ;
+lin cultivator_N = mkN "cultivator" "cultivators" ;
+lin cultural_A = mkAMost "cultural" "culturally" ;
+lin culturati_N = mkN "culturati" "culturatis" ;
+lin culture_N = mkN "culture" "cultures" ;
+lin cultured_A = mkAMost "cultured" "culturedly" ;
+lin culverin_N = mkN "culverin" "culverins" ;
+lin culvert_N = mkN "culvert" "culverts" ;
+lin cum_Prep = mkPrep "cum" ;
+lin cumber_V = mkV "cumber" "cumbered" "cumbered" ;
+lin cumbersome_A = mkAMost "cumbersome" "cumbersomely" ;
+lin cumbrous_A = mkAMost "cumbrous" "cumbrously" ;
+lin cumin_N = mkN "cumin" "cumins" ;
+lin cummerbund_N = mkN "cummerbund" "cummerbunds" ;
+lin cummings_N = mkN "cummings" "cummingses" ;
+lin cumulative_A = mkAMost "cumulative" "cumulatively" ;
+lin cumuliform_A = mkAMost "cumuliform" "cumuliformly" ;
+lin cumulonimbus_N = mkN "cumulonimbus" "cumulonimbuses" ;
+lin cumulous_A = mkAMost "cumulous" "cumulously" ;
+lin cumulus_N = mkN "cumulus" "cumuli" ;
+lin cuneate_A = mkAMost "cuneate" "cuneately" ;
+lin cuneiform_A = mkAMost "cuneiform" "cuneiformly" ;
+lin cuneiform_N = mkN "cuneiform" "cuneiforms" ;
+lin cunner_N = mkN "cunner" "cunners" ;
+lin cunnilingus_N = mkN "cunnilingus" "cunnilinguses" ;
+lin cunning_A = mkAMost "cunning" "cunningly" ;
+lin cunning_N = mkN "cunning" "cunnings" ;
+lin cunt_N = mkN "cunt" "cunts" ;
+lin cup_N = mkN "cup" "cups" ;
+lin cup_V = mkV "cup" "cupped" "cupped" ;
+lin cup_bearer_N = mkN "cup-bearer" "cup-bearers" ;
+lin cup_final_N = mkN "cup-final" "cup-finals" ;
+lin cup_tie_N = mkN "cup-tie" "cup-ties" ;
+lin cupbearer_N = mkN "cupbearer" "cupbearers" ;
+lin cupboard_N = mkN "cupboard" "cupboards" ;
+lin cupboard_love_N = mkN "cupboard-love" "cupboard-loves" ;
+lin cupcake_N = mkN "cupcake" "cupcakes" ;
+lin cupflower_N = mkN "cupflower" "cupflowers" ;
+lin cupful_N = mkN "cupful" "cupfuls" ;
+lin cupid_N = mkN "cupid" "cupids" ;
+lin cupidity_N = mkN "cupidity" "cupidities" ;
+lin cuplike_A = mkAMost "cuplike" "cuplikely" ;
+lin cupola_N = mkN "cupola" "cupolas" ;
+lin cuppa_N = mkN "cuppa" "cuppas" ;
+lin cupping_N = mkN "cupping" "cuppings" ;
+lin cupric_A = mkAMost "cupric" "cupricly" ;
+lin cuprite_N = mkN "cuprite" "cuprites" ;
+lin cupro_nickel_N = mkN "cupro-nickel" "cupro-nickels" ;
+lin cupronickel_N = mkN "cupronickel" "cupronickels" ;
+lin cupular_A = mkAMost "cupular" "cupularly" ;
+lin cupule_N = mkN "cupule" "cupules" ;
+lin cur_N = mkN "cur" "curs" ;
+lin curability_N = mkN "curability" "curabilities" ;
+lin curable_A = mkAMost "curable" "curably" ;
+lin curacy_N = mkN "curacy" "curacies" ;
+lin curandera_N = mkN "curandera" "curanderas" ;
+lin curandero_N = mkN "curandero" "curanderoes" ;
+lin curassow_N = mkN "curassow" "curassows" ;
+lin curate_N = mkN "curate" "curates" ;
+lin curative_A = mkAMost "curative" "curatively" ;
+lin curator_N = mkN "curator" "curators" ;
+lin curatorial_A = mkAMost "curatorial" "curatorially" ;
+lin curatorship_N = mkN "curatorship" "curatorships" ;
+lin curaçao_N = mkN "curaçao" "curaçaoes" ;
+lin curaçoa_N = mkN "curaçoa" "curaçoas" ;
+lin curb_N = mkN "curb" "curbs" ;
+lin curb_V = mkV "curb" "curbed" "curbed" ;
+lin curbside_N = mkN "curbside" "curbsides" ;
+lin curbstone_N = mkN "curbstone" "curbstones" ;
+lin curd_N = mkN "curd" "curds" ;
+lin curdle_V = mkV "curdle" "curdled" "curdled" ;
+lin curdling_N = mkN "curdling" "curdlings" ;
+lin cure_N = mkN "cure" "cures" ;
+lin cure_V = mkV "cure" "cured" "cured" ;
+lin cure_all_N = mkN "cure-all" "cure-alls" ;
+lin curettage_N = mkN "curettage" "curettages" ;
+lin curette_N = mkN "curette" "curettes" ;
+lin curfew_N = mkN "curfew" "curfews" ;
+lin curie_N = mkN "curie" "curies" ;
+lin curio_N = mkN "curio" "curios" ;
+lin curiosa_N = mkN "curiosa" "curiosas" ;
+lin curiosity_N = mkN "curiosity" "curiosities" ;
+lin curious_A = mkAMost "curious" "curiously" ;
+lin curiousness_N = mkN "curiousness" "curiousnesses" ;
+lin curium_N = mkN "curium" "curiums" ;
+lin curl_N = mkN "curl" "curls" ;
+lin curl_V = mkV "curl" "curled" "curled" ;
+lin curler_N = mkN "curler" "curlers" ;
+lin curlew_N = mkN "curlew" "curlews" ;
+lin curliness_N = mkN "curliness" "curlinesses" ;
+lin curling_N = mkN "curling" "curlings" ;
+lin curly_A = mkA "curly" "curlier" "curliest" "curlily" ;
+lin curmudgeon_N = mkN "curmudgeon" "curmudgeons" ;
+lin currant_N = mkN "currant" "currants" ;
+lin currawong_N = mkN "currawong" "currawongs" ;
+lin currency_N = mkN "currency" "currencies" ;
+lin current_A = mkAMost "current" "currently" ;
+lin current_N = mkN "current" "currents" ;
+lin currentness_N = mkN "currentness" "currentnesses" ;
+lin curricular_A = mkAMost "curricular" "curricularly" ;
+lin curriculum_N = mkN "curriculum" "curriculums" ;
+lin curriculum_vitae_N = mkN "curriculum vitae" "curricula vitae" ;
+lin currier_N = mkN "currier" "curriers" ;
+lin currish_A = mkAMost "currish" "currishly" ;
+lin curry_N = mkN "curry" "curries" ;
+lin curry_V = mkV "curry" "curried" "curried" ;
+lin curry_powder_N = mkN "curry-powder" "curry-powders" ;
+lin currycomb_N = mkN "currycomb" "currycombs" ;
+lin curse_N = mkN "curse" "curses" ;
+lin curse_V = mkV "curse" "cursed" "cursed" ;
+lin cursive_A = mkAMost "cursive" "cursively" ;
+lin cursor_N = mkN "cursor" "cursors" ;
+lin cursorial_A = mkAMost "cursorial" "cursorially" ;
+lin cursory_A = mkAMost "cursory" "cursorily" ;
+lin curst_A = mkAMost "curst" "curstly" ;
+lin curt_A = mkAMost "curt" "curtly" ;
+lin curtail_V = mkV "curtail" "curtailed" "curtailed" ;
+lin curtailment_N = mkN "curtailment" "curtailments" ;
+lin curtain_N = mkN "curtain" "curtains" ;
+lin curtain_V = mkV "curtain" "curtained" "curtained" ;
+lin curtain_call_N = mkN "curtain-call" "curtain-calls" ;
+lin curtain_lecture_N = mkN "curtain-lecture" "curtain-lectures" ;
+lin curtain_raiser_N = mkN "curtain-raiser" "curtain-raisers" ;
+lin curtainless_A = mkAMost "curtainless" "curtainlessly" ;
+lin curtal_A = mkAMost "curtal" "curtally" ;
+lin curtness_N = mkN "curtness" "curtnesses" ;
+lin curtsey_N = mkN "curtsey" "curtseys" ;
+lin curtsey_V = mkV "curtsey" "curtseyed" "curtseyed" ;
+lin curtsy_N = mkN "curtsy" "curtsies" ;
+lin curtsy_V = mkV "curtsy" "curtsied" "curtsied" ;
+lin curvaceously_Adv = mkAdv "curvaceously" ;
+lin curvaceousness_N = mkN "curvaceousness" "curvaceousnesses" ;
+lin curvature_N = mkN "curvature" "curvatures" ;
+lin curve_N = mkN "curve" "curves" ;
+lin curve_V = mkV "curve" "curved" "curved" ;
+lin curvet_N = mkN "curvet" "curvets" ;
+lin curvilineal_A = mkAMost "curvilineal" "curvilineally" ;
+lin curvy_A = mkA "curvy" "curvier" "curviest" "curvily" ;
+lin curé_N = mkN "curé" "curés" ;
+lin cuscus_N = mkN "cuscus" "cuscuses" ;
+lin cushaw_N = mkN "cushaw" "cushaws" ;
+lin cushion_N = mkN "cushion" "cushions" ;
+lin cushion_V = mkV "cushion" "cushioned" "cushioned" ;
+lin cushy_A = mkA "cushy" "cushier" "cushiest" "cushily" ;
+lin cusk_N = mkN "cusk" "cusks" ;
+lin cusp_N = mkN "cusp" "cusps" ;
+lin cuspate_A = mkAMost "cuspate" "cuspately" ;
+lin cuspidation_N = mkN "cuspidation" "cuspidations" ;
+lin cuspidor_N = mkN "cuspidor" "cuspidors" ;
+lin cuss_N = mkN "cuss" "cusses" ;
+lin cussed_A = mkAMost "cussed" "cussedly" ;
+lin cussedness_N = mkN "cussedness" "cussednesses" ;
+lin custard_N = mkN "custard" "custards" ;
+lin custodial_A = mkAMost "custodial" "custodially" ;
+lin custodian_N = mkN "custodian" "custodians" ;
+lin custodianship_N = mkN "custodianship" "custodianships" ;
+lin custody_N = mkN "custody" "custodies" ;
+lin custom_N = mkN "custom" "customs" ;
+lin custom_built_A = mkAMost "custom-built" "custom-builtly" ;
+lin custom_made_A = mkAMost "custom-made" "custom-madely" ;
+lin customary_A = mkAMost "customary" "customarily" ;
+lin customer_N = mkN "customer" "customers" ;
+lin customhouse_N = mkN "customhouse" "customhouses" ;
+lin customize_V = mkV "customize" "customized" "customized" ;
+lin customs_N = mkN "customs" "customses" ;
+lin cut_N = mkN "cut" "cuts" ;
+lin cut_cut_V = mkV "cut" "cut" "cut" ;
+lin cut_cutted_V = mkV "cut" "cutted" "cutted" ;
+lin cut_out_N = mkN "cut-out" "cut-outs" ;
+lin cut_price_A = mkAMost "cut-price" "cut-pricely" ;
+lin cut_rate_A = mkAMost "cut-rate" "cut-rately" ;
+lin cut_throat_A = mkAMost "cut-throat" "cut-throatly" ;
+lin cut_throat_N = mkN "cut-throat" "cut-throats" ;
+lin cutaneous_A = mkAMost "cutaneous" "cutaneously" ;
+lin cutaway_N = mkN "cutaway" "cutaways" ;
+lin cutback_N = mkN "cutback" "cutbacks" ;
+lin cutch_N = mkN "cutch" "cutches" ;
+lin cute_A = mkA "cute" "cuter" "cutest" "cutely" ;
+lin cuteness_N = mkN "cuteness" "cutenesses" ;
+lin cuticle_N = mkN "cuticle" "cuticles" ;
+lin cuticula_N = mkN "cuticula" "cuticulas" ;
+lin cuticular_A = mkAMost "cuticular" "cuticularly" ;
+lin cutin_N = mkN "cutin" "cutins" ;
+lin cutlas_N = mkN "cutlas" "cutlases" ;
+lin cutlass_N = mkN "cutlass" "cutlasses" ;
+lin cutlassfish_N = mkN "cutlassfish" "cutlassfishes" ;
+lin cutler_N = mkN "cutler" "cutlers" ;
+lin cutlery_N = mkN "cutlery" "cutleries" ;
+lin cutlet_N = mkN "cutlet" "cutlets" ;
+lin cutoff_N = mkN "cutoff" "cutoffs" ;
+lin cutout_N = mkN "cutout" "cutouts" ;
+lin cutpurse_N = mkN "cutpurse" "cutpurses" ;
+lin cutter_N = mkN "cutter" "cutters" ;
+lin cutthroat_A = mkAMost "cutthroat" "cutthroatly" ;
+lin cutthroat_N = mkN "cutthroat" "cutthroats" ;
+lin cutting_N = mkN "cutting" "cuttings" ;
+lin cutting_room_N = mkN "cutting-room" "cutting-rooms" ;
+lin cuttingly_Adv = mkAdv "cuttingly" ;
+lin cuttlefish_N = mkN "cuttlefish" "cuttlefishes" ;
+lin cutwork_N = mkN "cutwork" "cutworks" ;
+lin cutworm_N = mkN "cutworm" "cutworms" ;
+lin cwt_N = mkN "cwt" "cwt" ;
+lin cyan_N = mkN "cyan" "cyans" ;
+lin cyanamide_N = mkN "cyanamide" "cyanamides" ;
+lin cyanide_N = mkN "cyanide" "cyanides" ;
+lin cyanobacteria_N = mkN "cyanobacteria" "cyanobacterias" ;
+lin cyanobacterial_A = mkAMost "cyanobacterial" "cyanobacterially" ;
+lin cyanogen_N = mkN "cyanogen" "cyanogens" ;
+lin cyanogenetic_A = mkAMost "cyanogenetic" "cyanogeneticly" ;
+lin cyanohydrin_N = mkN "cyanohydrin" "cyanohydrins" ;
+lin cyanosis_N = mkN "cyanosis" "cyanosises" ;
+lin cyberart_N = mkN "cyberart" "cyberarts" ;
+lin cybercafe_N = mkN "cybercafe" "cybercafes" ;
+lin cybercrime_N = mkN "cybercrime" "cybercrimes" ;
+lin cyberculture_N = mkN "cyberculture" "cybercultures" ;
+lin cybernaut_N = mkN "cybernaut" "cybernauts" ;
+lin cybernetic_A = mkAMost "cybernetic" "cyberneticly" ;
+lin cybernetics_N = mkN "cybernetics" "cybernetics" ;
+lin cyberphobia_N = mkN "cyberphobia" "cyberphobias" ;
+lin cyberpunk_N = mkN "cyberpunk" "cyberpunks" ;
+lin cybersex_N = mkN "cybersex" "cybersexes" ;
+lin cyborg_N = mkN "cyborg" "cyborgs" ;
+lin cycad_N = mkN "cycad" "cycads" ;
+lin cyclamen_N = mkN "cyclamen" "cyclamens" ;
+lin cycle_N = mkN "cycle" "cycles" ;
+lin cycle_V = mkV "cycle" "cycled" "cycled" ;
+lin cyclic_A = mkAMost "cyclic" "cyclicly" ;
+lin cyclical_A = mkAMost "cyclical" "cyclically" ;
+lin cyclicity_N = mkN "cyclicity" "cyclicities" ;
+lin cycling_N = mkN "cycling" "cyclings" ;
+lin cyclist_N = mkN "cyclist" "cyclists" ;
+lin cyclobenzaprine_N = mkN "cyclobenzaprine" "cyclobenzaprines" ;
+lin cyclohexanol_N = mkN "cyclohexanol" "cyclohexanols" ;
+lin cycloid_A = mkAMost "cycloid" "cycloidly" ;
+lin cycloid_N = mkN "cycloid" "cycloids" ;
+lin cyclone_N = mkN "cyclone" "cyclones" ;
+lin cyclonic_A = mkAMost "cyclonic" "cyclonicly" ;
+lin cyclooxygenase_N = mkN "cyclooxygenase" "cyclooxygenases" ;
+lin cyclopaedia_N = mkN "cyclopaedia" "cyclopaedias" ;
+lin cyclopean_A = mkAMost "cyclopean" "cyclopeanly" ;
+lin cyclopia_N = mkN "cyclopia" "cyclopias" ;
+lin cyclopropane_N = mkN "cyclopropane" "cyclopropanes" ;
+lin cyclops_N = mkN "cyclops" "cyclopses" ;
+lin cycloserine_N = mkN "cycloserine" "cycloserines" ;
+lin cyclosis_N = mkN "cyclosis" "cyclosises" ;
+lin cyclostome_N = mkN "cyclostome" "cyclostomes" ;
+lin cyclostyle_N = mkN "cyclostyle" "cyclostyles" ;
+lin cyclostyle_V = mkV "cyclostyle" "cyclostyled" "cyclostyled" ;
+lin cyclothymia_N = mkN "cyclothymia" "cyclothymias" ;
+lin cyclothymic_A = mkAMost "cyclothymic" "cyclothymicly" ;
+lin cyclotron_N = mkN "cyclotron" "cyclotrons" ;
+lin cyder_N = mkN "cyder" "cyders" ;
+lin cygnet_N = mkN "cygnet" "cygnets" ;
+lin cylinder_N = mkN "cylinder" "cylinders" ;
+lin cylindrical_A = mkAMost "cylindrical" "cylindrically" ;
+lin cylindricality_N = mkN "cylindricality" "cylindricalities" ;
+lin cyma_N = mkN "cyma" "cymas" ;
+lin cymbal_N = mkN "cymbal" "cymbals" ;
+lin cymbalist_N = mkN "cymbalist" "cymbalists" ;
+lin cymbid_N = mkN "cymbid" "cymbids" ;
+lin cyme_N = mkN "cyme" "cymes" ;
+lin cymene_N = mkN "cymene" "cymenes" ;
+lin cymling_N = mkN "cymling" "cymlings" ;
+lin cymose_A = mkAMost "cymose" "cymosely" ;
+lin cymule_N = mkN "cymule" "cymules" ;
+lin cynancum_N = mkN "cynancum" "cynancums" ;
+lin cynic_N = mkN "cynic" "cynics" ;
+lin cynical_A = mkAMost "cynical" "cynically" ;
+lin cynicism_N = mkN "cynicism" "cynicisms" ;
+lin cynodont_N = mkN "cynodont" "cynodonts" ;
+lin cynophobia_N = mkN "cynophobia" "cynophobias" ;
+lin cynosure_N = mkN "cynosure" "cynosures" ;
+lin cypher_N = mkN "cypher" "cyphers" ;
+lin cypher_V = mkV "cypher" "cyphered" "cyphered" ;
+lin cypress_N = mkN "cypress" "cypresses" ;
+lin cyprian_A = mkAMost "cyprian" "cyprianly" ;
+lin cyprinid_A = mkAMost "cyprinid" "cyprinidly" ;
+lin cyprinid_N = mkN "cyprinid" "cyprinids" ;
+lin cyprinodont_N = mkN "cyprinodont" "cyprinodonts" ;
+lin cypriot_A = mkAMost "cypriot" "cypriotly" ;
+lin cypriot_N = mkN "cypriot" "cypriots" ;
+lin cypripedia_N = mkN "cypripedia" "cypripedias" ;
+lin cyproheptadine_N = mkN "cyproheptadine" "cyproheptadines" ;
+lin cyrilla_N = mkN "cyrilla" "cyrillas" ;
+lin cyrillic_A = mkAMost "cyrillic" "cyrillicly" ;
+lin cyst_N = mkN "cyst" "cysts" ;
+lin cysteine_N = mkN "cysteine" "cysteines" ;
+lin cystic_A = mkAMost "cystic" "cysticly" ;
+lin cystine_N = mkN "cystine" "cystines" ;
+lin cystitis_N = mkN "cystitis" "cystitises" ;
+lin cystocele_N = mkN "cystocele" "cystoceles" ;
+lin cystoplegia_N = mkN "cystoplegia" "cystoplegias" ;
+lin cytoarchitectural_A = mkAMost "cytoarchitectural" "cytoarchitecturally" ;
+lin cytoarchitecture_N = mkN "cytoarchitecture" "cytoarchitectures" ;
+lin cytochrome_N = mkN "cytochrome" "cytochromes" ;
+lin cytogenesis_N = mkN "cytogenesis" "cytogenesises" ;
+lin cytogenetic_A = mkAMost "cytogenetic" "cytogeneticly" ;
+lin cytogeneticist_N = mkN "cytogeneticist" "cytogeneticists" ;
+lin cytogenetics_N = mkN "cytogenetics" "cytogeneticses" ;
+lin cytokine_N = mkN "cytokine" "cytokines" ;
+lin cytokinesis_N = mkN "cytokinesis" "cytokinesises" ;
+lin cytokinetic_A = mkAMost "cytokinetic" "cytokineticly" ;
+lin cytological_A = mkAMost "cytological" "cytologically" ;
+lin cytologist_N = mkN "cytologist" "cytologists" ;
+lin cytology_N = mkN "cytology" "cytologies" ;
+lin cytolysin_N = mkN "cytolysin" "cytolysins" ;
+lin cytolysis_N = mkN "cytolysis" "cytolysises" ;
+lin cytolytic_A = mkAMost "cytolytic" "cytolyticly" ;
+lin cytomegalic_A = mkAMost "cytomegalic" "cytomegalicly" ;
+lin cytomegalovirus_N = mkN "cytomegalovirus" "cytomegaloviruses" ;
+lin cytopathogenic_A = mkAMost "cytopathogenic" "cytopathogenicly" ;
+lin cytopenia_N = mkN "cytopenia" "cytopenias" ;
+lin cytophotometer_N = mkN "cytophotometer" "cytophotometers" ;
+lin cytophotometric_A = mkAMost "cytophotometric" "cytophotometricly" ;
+lin cytophotometrically_Adv = mkAdv "cytophotometrically" ;
+lin cytophotometry_N = mkN "cytophotometry" "cytophotometries" ;
+lin cytoplasm_N = mkN "cytoplasm" "cytoplasms" ;
+lin cytoplasmic_A = mkAMost "cytoplasmic" "cytoplasmicly" ;
+lin cytoplasmically_Adv = mkAdv "cytoplasmically" ;
+lin cytoplast_N = mkN "cytoplast" "cytoplasts" ;
+lin cytoplastic_A = mkAMost "cytoplastic" "cytoplasticly" ;
+lin cytosine_N = mkN "cytosine" "cytosines" ;
+lin cytoskeleton_N = mkN "cytoskeleton" "cytoskeletons" ;
+lin cytosol_N = mkN "cytosol" "cytosols" ;
+lin cytostome_N = mkN "cytostome" "cytostomes" ;
+lin cytotoxic_A = mkAMost "cytotoxic" "cytotoxicly" ;
+lin cytotoxicity_N = mkN "cytotoxicity" "cytotoxicities" ;
+lin cytotoxin_N = mkN "cytotoxin" "cytotoxins" ;
+lin czar_N = mkN "czar" "czars" ;
+lin czarina_N = mkN "czarina" "czarinas" ;
+lin czarist_A = mkAMost "czarist" "czaristly" ;
+lin czechoslovak_A = mkAMost "czechoslovak" "czechoslovakly" ;
+lin da'wah_N = mkN "da'wah" "da'wahs" ;
+lin dab_N = mkN "dab" "dabs" ;
+lin dab_V = mkV "dab" "dabbed" "dabbed" ;
+lin dabble_V = mkV "dabble" "dabbled" "dabbled" ;
+lin dabbler_N = mkN "dabbler" "dabblers" ;
+lin dabchick_N = mkN "dabchick" "dabchicks" ;
+lin dace_N = mkN "dace" "dace" ;
+lin dacha_N = mkN "dacha" "dachas" ;
+lin dachshund_N = mkN "dachshund" "dachshunds" ;
+lin dacite_N = mkN "dacite" "dacites" ;
+lin dacitic_A = mkAMost "dacitic" "daciticly" ;
+lin dacoit_N = mkN "dacoit" "dacoits" ;
+lin dacoity_N = mkN "dacoity" "dacoities" ;
+lin dacryocystitis_N = mkN "dacryocystitis" "dacryocystitises" ;
+lin dacryon_N = mkN "dacryon" "dacryons" ;
+lin dactyl_N = mkN "dactyl" "dactyls" ;
+lin dactylic_A = mkAMost "dactylic" "dactylicly" ;
+lin dactylomegaly_N = mkN "dactylomegaly" "dactylomegalies" ;
+lin dad_N = mkN "dad" "dads" ;
+lin dada_N = mkN "dada" "dadas" ;
+lin daddy_N = mkN "daddy" "daddies" ;
+lin daddy_longlegs_N = mkN "daddy-longlegs" "daddy-longlegs" ;
+lin dado_N = mkN "dado" "dados" ;
+lin daedal_A = mkAMost "daedal" "daedally" ;
+lin daemon_N = mkN "daemon" "daemons" ;
+lin daffodil_N = mkN "daffodil" "daffodils" ;
+lin daft_A = mkA "daft" "dafter" "daftest" "daftly" ;
+lin dagame_N = mkN "dagame" "dagames" ;
+lin dagga_N = mkN "dagga" "daggas" ;
+lin dagger_N = mkN "dagger" "daggers" ;
+lin daggerboard_N = mkN "daggerboard" "daggerboards" ;
+lin dago_N = mkN "dago" "dagos" ;
+lin daguerreotype_N = mkN "daguerreotype" "daguerreotypes" ;
+lin dahlia_N = mkN "dahlia" "dahlias" ;
+lin dail_eireann_N = mkN "dail eireann" "IRREG" ;
+lin daily_A = mkAMost "daily" "dailily" ;
+lin daily_Adv = mkAdv "daily" ;
+lin daily_N = mkN "daily" "dailies" ;
+lin daintiness_N = mkN "daintiness" "daintinesses" ;
+lin dainty_A = mkA "dainty" "daintier" "daintiest" "daintily" ;
+lin dainty_N = mkN "dainty" "dainties" ;
+lin daiquiri_N = mkN "daiquiri" "daiquiris" ;
+lin dairy_N = mkN "dairy" "dairies" ;
+lin dairy_farm_N = mkN "dairy-farm" "dairy-farms" ;
+lin dairy_farming_N = mkN "dairy-farming" "dairy-farmings" ;
+lin dairying_N = mkN "dairying" "dairyings" ;
+lin dairymaid_N = mkN "dairymaid" "dairymaids" ;
+lin dairyman_N = mkN "dairyman" "dairymen" ;
+lin dais_N = mkN "dais" "daises" ;
+lin daisy_N = mkN "daisy" "daisies" ;
+lin daisybush_N = mkN "daisybush" "daisybushes" ;
+lin daisylike_A = mkAMost "daisylike" "daisylikely" ;
+lin dalasi_N = mkN "dalasi" "dalasis" ;
+lin dale_N = mkN "dale" "dales" ;
+lin dalesman_N = mkN "dalesman" "dalesmen" ;
+lin daleth_N = mkN "daleth" "daleths" ;
+lin dalliance_N = mkN "dalliance" "dalliances" ;
+lin dallier_N = mkN "dallier" "dalliers" ;
+lin dallisgrass_N = mkN "dallisgrass" "dallisgrasses" ;
+lin dally_V = mkV "dally" "dallied" "dallied" ;
+lin dalmatian_N = mkN "dalmatian" "dalmatians" ;
+lin dam_N = mkN "dam" "dams" ;
+lin dam_V = mkV "dam" "dammed" "dammed" ;
+lin damage_N = mkN "damage" "damages" ;
+lin damage_V = mkV "damage" "damaged" "damaged" ;
+lin damages_N = mkN "damages" "damageses" ;
+lin damaging_A = mkAMost "damaging" "damagingly" ;
+lin damascene_A = mkAMost "damascene" "damascenely" ;
+lin damascene_N = mkN "damascene" "damascenes" ;
+lin damascene_V = mkV "damascene" "damascened" "damascened" ;
+lin damask_A = mkAMost "damask" "damaskly" ;
+lin damask_N = mkN "damask" "damasks" ;
+lin dame_N = mkN "dame" "dames" ;
+lin dammar_N = mkN "dammar" "dammars" ;
+lin damn_A = mkAMost "damn" "damn" ;
+lin damn_N = mkN "damn" "damns" ;
+lin damn_V = mkV "damn" "damned" "damned" ;
+lin damnable_A = mkAMost "damnable" "damnably" ;
+lin damnation_N = mkN "damnation" "damnations" ;
+lin damnatory_A = mkAMost "damnatory" "damnatorily" ;
+lin damned_Adv = mkAdv "damned" ;
+lin damned_N = mkN "damned" "damneds" ;
+lin damourite_N = mkN "damourite" "damourites" ;
+lin damp_A = mkA "damp" "damper" "dampest" "damply" ;
+lin damp_N = mkN "damp" "damps" ;
+lin damp_V = mkV "damp" "damped" "damped" ;
+lin dampen_V = mkV "dampen" "dampened" "dampened" ;
+lin dampener_N = mkN "dampener" "dampeners" ;
+lin damper_N = mkN "damper" "dampers" ;
+lin dampish_A = mkAMost "dampish" "dampishly" ;
+lin dampness_N = mkN "dampness" "dampnesses" ;
+lin damsel_N = mkN "damsel" "damsels" ;
+lin damselfish_N = mkN "damselfish" "damselfishes" ;
+lin damselfly_N = mkN "damselfly" "damselflies" ;
+lin damson_N = mkN "damson" "damsons" ;
+lin danaid_N = mkN "danaid" "danaids" ;
+lin dance_N = mkN "dance" "dances" ;
+lin dance_V = mkV "dance" "danced" "danced" ;
+lin dance_band_N = mkN "dance-band" "dance-bands" ;
+lin dance_hall_N = mkN "dance-hall" "dance-halls" ;
+lin dance_orchestra_N = mkN "dance-orchestra" "dance-orchestras" ;
+lin danceable_A = mkAMost "danceable" "danceably" ;
+lin dancer_N = mkN "dancer" "dancers" ;
+lin dancing_N = mkN "dancing" "dancings" ;
+lin dandelion_N = mkN "dandelion" "dandelions" ;
+lin dander_N = mkN "dander" "IRREG" ;
+lin dandified_A = mkAMost "dandified" "dandifiedly" ;
+lin dandle_V = mkV "dandle" "dandled" "dandled" ;
+lin dandruff_N = mkN "dandruff" "dandruffs" ;
+lin dandy_A = mkAMost "dandy" "dandily" ;
+lin dandy_N = mkN "dandy" "dandies" ;
+lin dane_N = mkN "dane" "danes" ;
+lin danger_N = mkN "danger" "dangers" ;
+lin dangerous_A = mkAMost "dangerous" "dangerously" ;
+lin dangerousness_N = mkN "dangerousness" "dangerousnesses" ;
+lin dangle_V = mkV "dangle" "dangled" "dangled" ;
+lin dangleberry_N = mkN "dangleberry" "dangleberries" ;
+lin daniel_N = mkN "daniel" "daniels" ;
+lin dank_A = mkA "dank" "danker" "dankest" "dankly" ;
+lin dankness_N = mkN "dankness" "danknesses" ;
+lin danse_macabre_N = mkN "danse macabre" "IRREG" ;
+lin danseur_N = mkN "danseur" "danseurs" ;
+lin daphne_N = mkN "daphne" "daphnes" ;
+lin daphnia_N = mkN "daphnia" "daphnias" ;
+lin dapper_A = mkAMost "dapper" "dapperly" ;
+lin dapple_V = mkV "dapple" "dappled" "dappled" ;
+lin dapple_grey_A = mkAMost "dapple-grey" "dapple-greily" ;
+lin dapple_grey_N = mkN "dapple-grey" "dapple-greys" ;
+lin dapsone_N = mkN "dapsone" "dapsones" ;
+lin daraf_N = mkN "daraf" "darafs" ;
+lin dare_N = mkN "dare" "dares" ;
+lin dare_V = mkV "dare" "dared" "dared" ;
+lin daredevil_A = mkAMost "daredevil" "daredevilly" ;
+lin daredevil_N = mkN "daredevil" "daredevils" ;
+lin daredevilry_N = mkN "daredevilry" "daredevilries" ;
+lin daring_N = mkN "daring" "darings" ;
+lin daringly_Adv = mkAdv "daringly" ;
+lin dark_A = mkA "dark" "darker" "darkest" "darkly" ;
+lin dark_N = mkN "dark" "darks" ;
+lin darken_V = mkV "darken" "darkened" "darkened" ;
+lin darkey_N = mkN "darkey" "darkeys" ;
+lin darkie_N = mkN "darkie" "darkies" ;
+lin darkish_A = mkAMost "darkish" "darkishly" ;
+lin darkling_A = mkAMost "darkling" "darklingly" ;
+lin darkness_N = mkN "darkness" "darknesses" ;
+lin darkroom_N = mkN "darkroom" "darkrooms" ;
+lin darky_N = mkN "darky" "darkies" ;
+lin darling_N = mkN "darling" "darlings" ;
+lin darmstadtium_N = mkN "darmstadtium" "darmstadtiums" ;
+lin darn_N = mkN "darn" "darns" ;
+lin darn_V = mkV "darn" "darned" "darned" ;
+lin darnel_N = mkN "darnel" "darnels" ;
+lin darner_N = mkN "darner" "darners" ;
+lin darning_N = mkN "darning" "darnings" ;
+lin darning_needle_N = mkN "darning-needle" "darning-needles" ;
+lin dart_N = mkN "dart" "darts" ;
+lin dart_V = mkV "dart" "darted" "darted" ;
+lin dartboard_N = mkN "dartboard" "dartboards" ;
+lin darter_N = mkN "darter" "darters" ;
+lin darts_N = mkN "darts" "dartses" ;
+lin dash_N = mkN "dash" "dashes" ;
+lin dash_V = mkV "dash" "dashed" "dashed" ;
+lin dashboard_N = mkN "dashboard" "dashboards" ;
+lin dashiki_N = mkN "dashiki" "dashikis" ;
+lin dashingly_Adv = mkAdv "dashingly" ;
+lin dastard_N = mkN "dastard" "dastards" ;
+lin dastardliness_N = mkN "dastardliness" "dastardlinesses" ;
+lin dastardly_A = mkAMost "dastardly" "dastardlily" ;
+lin dasymeter_N = mkN "dasymeter" "dasymeters" ;
+lin dasyure_N = mkN "dasyure" "dasyures" ;
+lin data_N = mkN "data" "data" ;
+lin database_N = mkN "database" "databases" ;
+lin datable_A = mkAMost "datable" "datably" ;
+lin date_N = mkN "date" "dates" ;
+lin date_V = mkV "date" "dated" "dated" ;
+lin dateless_A = mkAMost "dateless" "datelessly" ;
+lin dateline_N = mkN "dateline" "datelines" ;
+lin dating_N = mkN "dating" "datings" ;
+lin dative_A = mkAMost "dative" "datively" ;
+lin dative_N = mkN "dative" "datives" ;
+lin datum_N = mkN "datum" "data" ;
+lin daub_N = mkN "daub" "daubs" ;
+lin daub_V = mkV "daub" "daubed" "daubed" ;
+lin dauber_N = mkN "dauber" "daubers" ;
+lin daughter_N = mkN "daughter" "daughters" ;
+lin daughter_in_law_N = mkN "daughter-in-law" "daughters-in-law" ;
+lin daughterly_A = mkAMost "daughterly" "daughterlily" ;
+lin daunt_V = mkV "daunt" "daunted" "daunted" ;
+lin daunting_A = mkAMost "daunting" "dauntingly" ;
+lin dauntless_A = mkAMost "dauntless" "dauntlessly" ;
+lin dauntlessness_N = mkN "dauntlessness" "dauntlessnesses" ;
+lin dauphin_N = mkN "dauphin" "dauphins" ;
+lin davallia_N = mkN "davallia" "davallias" ;
+lin davenport_N = mkN "davenport" "davenports" ;
+lin davit_N = mkN "davit" "davits" ;
+lin daw_N = mkN "daw" "daws" ;
+lin dawdle_V = mkV "dawdle" "dawdled" "dawdled" ;
+lin dawdler_N = mkN "dawdler" "dawdlers" ;
+lin dawn_N = mkN "dawn" "dawns" ;
+lin dawn_V = mkV "dawn" "dawned" "dawned" ;
+lin day_N = mkN "day" "days" ;
+lin day_boarder_N = mkN "day-boarder" "day-boarders" ;
+lin day_labourer_N = mkN "day-labourer" "day-labourers" ;
+lin day_return_N = mkN "day-return" "day-returns" ;
+lin day_school_N = mkN "day-school" "day-schools" ;
+lin daybed_N = mkN "daybed" "daybeds" ;
+lin daybook_N = mkN "daybook" "daybooks" ;
+lin dayboy_N = mkN "dayboy" "dayboys" ;
+lin daybreak_N = mkN "daybreak" "daybreaks" ;
+lin daycare_N = mkN "daycare" "daycares" ;
+lin daydream_N = mkN "daydream" "daydreams" ;
+lin daydream_V = mkV "daydream" "daydreamed" "daydreamed" ;
+lin daydreamer_N = mkN "daydreamer" "daydreamers" ;
+lin daygirl_N = mkN "daygirl" "daygirls" ;
+lin daylight_N = mkN "daylight" "daylights" ;
+lin daylight_saving_A = mkAMost "daylight-saving" "daylight-savingly" ;
+lin daylight_saving_N = mkN "daylight-saving" "daylight-savings" ;
+lin daylong_A = mkAMost "daylong" "daylongly" ;
+lin daylong_Adv = mkAdv "daylong" ;
+lin days_N = mkN "days" "dayses" ;
+lin dayspring_N = mkN "dayspring" "daysprings" ;
+lin daytime_N = mkN "daytime" "daytimes" ;
+lin daze_N = mkN "daze" "dazes" ;
+lin daze_V = mkV "daze" "dazed" "dazed" ;
+lin dazedly_Adv = mkAdv "dazedly" ;
+lin dazzle_N = mkN "dazzle" "dazzles" ;
+lin dazzle_V = mkV "dazzle" "dazzled" "dazzled" ;
+lin dazzling_A = mkAMost "dazzling" "dazzlingly" ;
+lin ddt_N = mkN "ddt" "ddts" ;
+lin deVries_N = mkN "deVries" "deVrieses" ;
+lin de_emphasize_V = mkV "de-emphasize" "de-emphasized" "de-emphasized" ;
+lin de_escalate_V = mkV "de-escalate" "de-escalated" "de-escalated" ;
+lin de_escalation_N = mkN "de-escalation" "de-escalations" ;
+lin de_facto_A = mkAMost "de facto" "de factoly" ;
+lin de_facto_Adv = mkAdv "de facto" ;
+lin de_ice_V = mkV "de-ice" "de-iced" "de-iced" ;
+lin de_jure_A = mkAMost "de jure" "de jurely" ;
+lin de_jure_Adv = mkAdv "de jure" ;
+lin de_luxe_A = mkAMost "de luxe" "de luxely" ;
+lin de_rigeur_A = mkAMost "de rigeur" "de rigeurly" ;
+lin de_trop_A = mkAMost "de trop" "de troply" ;
+lin deacon_N = mkN "deacon" "deacons" ;
+lin deaconess_N = mkN "deaconess" "deaconesses" ;
+lin deactivate_V = mkV "deactivate" "deactivated" "deactivated" ;
+lin deactivation_N = mkN "deactivation" "deactivations" ;
+lin dead_A = mkAMost "dead" "deadly" ;
+lin dead_Adv = mkAdv "dead" ;
+lin dead_N = mkN "dead" "deads" ;
+lin deaden_V = mkV "deaden" "deadened" "deadened" ;
+lin deadeye_N = mkN "deadeye" "deadeyes" ;
+lin deadhead_N = mkN "deadhead" "deadheads" ;
+lin deadlight_N = mkN "deadlight" "deadlights" ;
+lin deadline_N = mkN "deadline" "deadlines" ;
+lin deadliness_N = mkN "deadliness" "deadlinesses" ;
+lin deadlock_N = mkN "deadlock" "deadlocks" ;
+lin deadlock_V = mkV "deadlock" "deadlocked" "deadlocked" ;
+lin deadlocked_A = mkAMost "deadlocked" "deadlockedly" ;
+lin deadly_A = mkA "deadly" "deadlier" "deadliest" "deadlily" ;
+lin deadness_N = mkN "deadness" "deadnesses" ;
+lin deadpan_A = mkAMost "deadpan" "deadpanly" ;
+lin deadpan_Adv = mkAdv "deadpan" ;
+lin deadwood_N = mkN "deadwood" "deadwoods" ;
+lin deaf_A = mkA "deaf" "deafer" "deafest" "deafly" ;
+lin deaf_N = mkN "deaf" "deafs" ;
+lin deaf_aid_N = mkN "deaf-aid" "deaf-aids" ;
+lin deaf_mute_N = mkN "deaf mute" "deaf mutes" ;
+lin deafen_V = mkV "deafen" "deafened" "deafened" ;
+lin deafening_A = mkAMost "deafening" "deafeningly" ;
+lin deafness_N = mkN "deafness" "deafnesses" ;
+lin deal_Adv = mkAdv "deal" ;
+lin deal_N = mkN "deal" "deals" ;
+lin deal_V = mkV "deal" "dealt" "dealt" ;
+lin dealer_N = mkN "dealer" "dealers" ;
+lin dealfish_N = mkN "dealfish" "dealfishes" ;
+lin dealignment_N = mkN "dealignment" "dealignments" ;
+lin dealing_N = mkN "dealing" "dealings" ;
+lin dealings_N = mkN "dealings" "dealingses" ;
+lin deamination_N = mkN "deamination" "deaminations" ;
+lin dean_N = mkN "dean" "deans" ;
+lin deanery_N = mkN "deanery" "deaneries" ;
+lin deanship_N = mkN "deanship" "deanships" ;
+lin dear_A = mkA "dear" "dearer" "dearest" "dearly" ;
+lin dear_Adv = mkAdv "dear" ;
+lin dear_N = mkN "dear" "dears" ;
+lin dearest_N = mkN "dearest" "dearests" ;
+lin dearie_N = mkN "dearie" "dearies" ;
+lin dearness_N = mkN "dearness" "dearnesses" ;
+lin dearth_N = mkN "dearth" "dearths" ;
+lin deary_N = mkN "deary" "dearies" ;
+lin death_N = mkN "death" "deaths" ;
+lin death_mask_N = mkN "death-mask" "death-masks" ;
+lin death_rate_N = mkN "death-rate" "death-rates" ;
+lin death_roll_N = mkN "death-roll" "death-rolls" ;
+lin death_warrant_N = mkN "death-warrant" "death-warrants" ;
+lin deathbed_N = mkN "deathbed" "deathbeds" ;
+lin deathblow_N = mkN "deathblow" "deathblows" ;
+lin deathless_A = mkAMost "deathless" "deathlessly" ;
+lin deathlike_A = mkAMost "deathlike" "deathlikely" ;
+lin deathly_A = mkAMost "deathly" "deathlily" ;
+lin deathly_Adv = mkAdv "deathly" ;
+lin deathrate_N = mkN "deathrate" "deathrates" ;
+lin deathtrap_N = mkN "deathtrap" "deathtraps" ;
+lin deb_N = mkN "deb" "debs" ;
+lin debag_V = mkV "debag" "debagged" "debagged" ;
+lin debar_V = mkV "debar" "debarred" "debarred" ;
+lin debark_V = mkV "debark" "debarked" "debarked" ;
+lin debarkation_N = mkN "debarkation" "debarkations" ;
+lin debarment_N = mkN "debarment" "debarments" ;
+lin debase_V = mkV "debase" "debased" "debased" ;
+lin debasement_N = mkN "debasement" "debasements" ;
+lin debaser_N = mkN "debaser" "debasers" ;
+lin debasing_A = mkAMost "debasing" "debasingly" ;
+lin debatable_A = mkAMost "debatable" "debatably" ;
+lin debate_N = mkN "debate" "debates" ;
+lin debate_V = mkV "debate" "debated" "debated" ;
+lin debater_N = mkN "debater" "debaters" ;
+lin debauch_N = mkN "debauch" "debauches" ;
+lin debauch_V = mkV "debauch" "debauched" "debauched" ;
+lin debauchee_N = mkN "debauchee" "debauchees" ;
+lin debauchery_N = mkN "debauchery" "debaucheries" ;
+lin debenture_N = mkN "debenture" "debentures" ;
+lin debilitate_V = mkV "debilitate" "debilitated" "debilitated" ;
+lin debilitating_A = mkAMost "debilitating" "debilitatingly" ;
+lin debilitation_N = mkN "debilitation" "debilitations" ;
+lin debilitative_A = mkAMost "debilitative" "debilitatively" ;
+lin debility_N = mkN "debility" "debilities" ;
+lin debit_N = mkN "debit" "debits" ;
+lin debit_V = mkV "debit" "debited" "debited" ;
+lin debit_side_N = mkN "debit-side" "debit-sides" ;
+lin debonair_A = mkAMost "debonair" "debonairly" ;
+lin debouch_V = mkV "debouch" "debouched" "debouched" ;
+lin debridement_N = mkN "debridement" "debridements" ;
+lin debrief_V = mkV "debrief" "debriefed" "debriefed" ;
+lin debriefing_N = mkN "debriefing" "debriefings" ;
+lin debris_N = mkN "debris" "debrises" ;
+lin debt_N = mkN "debt" "debts" ;
+lin debtor_N = mkN "debtor" "debtors" ;
+lin debug_V = mkV "debug" "debugged" "debugged" ;
+lin debugger_N = mkN "debugger" "debuggers" ;
+lin debunk_V = mkV "debunk" "debunked" "debunked" ;
+lin debut_N = mkN "debut" "debuts" ;
+lin debut_V = mkV "debut" "debutted" "debutted" ;
+lin debutante_N = mkN "debutante" "debutantes" ;
+lin decade_N = mkN "decade" "decades" ;
+lin decadence_N = mkN "decadence" "decadences" ;
+lin decadent_A = mkAMost "decadent" "decadently" ;
+lin decadent_N = mkN "decadent" "decadents" ;
+lin decagon_N = mkN "decagon" "decagons" ;
+lin decahedron_N = mkN "decahedron" "decahedrons" ;
+lin decal_N = mkN "decal" "decals" ;
+lin decalcification_N = mkN "decalcification" "decalcifications" ;
+lin decalcomania_N = mkN "decalcomania" "decalcomanias" ;
+lin decalescence_N = mkN "decalescence" "decalescences" ;
+lin decalescent_A = mkAMost "decalescent" "decalescently" ;
+lin decalogue_N = mkN "decalogue" "decalogues" ;
+lin decameter_N = mkN "decameter" "decameters" ;
+lin decamp_V = mkV "decamp" "decamped" "decamped" ;
+lin decampment_N = mkN "decampment" "decampments" ;
+lin decant_V = mkV "decant" "decanted" "decanted" ;
+lin decantation_N = mkN "decantation" "decantations" ;
+lin decanter_N = mkN "decanter" "decanters" ;
+lin decapitate_V = mkV "decapitate" "decapitated" "decapitated" ;
+lin decapitation_N = mkN "decapitation" "decapitations" ;
+lin decapod_N = mkN "decapod" "decapods" ;
+lin decarbonize_V = mkV "decarbonize" "decarbonized" "decarbonized" ;
+lin decarboxylase_N = mkN "decarboxylase" "decarboxylases" ;
+lin decarboxylation_N = mkN "decarboxylation" "decarboxylations" ;
+lin decasyllabic_A = mkAMost "decasyllabic" "decasyllabicly" ;
+lin decasyllable_N = mkN "decasyllable" "decasyllables" ;
+lin decathlon_N = mkN "decathlon" "decathlons" ;
+lin decay_N = mkN "decay" "decays" ;
+lin decay_V = mkV "decay" "decayed" "decayed" ;
+lin decayable_A = mkAMost "decayable" "decayably" ;
+lin decayed_A = mkAMost "decayed" "decayedly" ;
+lin decease_N = mkN "decease" "deceases" ;
+lin decease_V = mkV "decease" "deceased" "deceased" ;
+lin deceit_N = mkN "deceit" "deceits" ;
+lin deceitful_A = mkAMost "deceitful" "deceitfully" ;
+lin deceitfulness_N = mkN "deceitfulness" "deceitfulnesses" ;
+lin deceive_V = mkV "deceive" "deceived" "deceived" ;
+lin deceiver_N = mkN "deceiver" "deceivers" ;
+lin deceivingly_Adv = mkAdv "deceivingly" ;
+lin decelerate_V = mkV "decelerate" "decelerated" "decelerated" ;
+lin deceleration_N = mkN "deceleration" "decelerations" ;
+lin decency_N = mkN "decency" "decencies" ;
+lin decent_A = mkAMost "decent" "decently" ;
+lin decentralisation_N = mkN "decentralisation" "decentralisations" ;
+lin decentralization_N = mkN "decentralization" "decentralizations" ;
+lin decentralize_V = mkV "decentralize" "decentralized" "decentralized" ;
+lin deception_N = mkN "deception" "deceptions" ;
+lin deceptive_A = mkAMost "deceptive" "deceptively" ;
+lin deceptiveness_N = mkN "deceptiveness" "deceptivenesses" ;
+lin decibel_N = mkN "decibel" "decibels" ;
+lin decide_V = mkV "decide" "decided" "decided" ;
+lin decided_A = mkAMost "decided" "decidedly" ;
+lin decidua_N = mkN "decidua" "deciduas" ;
+lin deciduous_A = mkAMost "deciduous" "deciduously" ;
+lin decigram_N = mkN "decigram" "decigrams" ;
+lin decile_N = mkN "decile" "deciles" ;
+lin deciliter_N = mkN "deciliter" "deciliters" ;
+lin decimal_A = mkAMost "decimal" "decimally" ;
+lin decimal_N = mkN "decimal" "decimals" ;
+lin decimalization_N = mkN "decimalization" "decimalizations" ;
+lin decimalize_V = mkV "decimalize" "decimalized" "decimalized" ;
+lin decimate_V = mkV "decimate" "decimated" "decimated" ;
+lin decimation_N = mkN "decimation" "decimations" ;
+lin decimeter_N = mkN "decimeter" "decimeters" ;
+lin decipher_V = mkV "decipher" "deciphered" "deciphered" ;
+lin decipherable_A = mkAMost "decipherable" "decipherably" ;
+lin decipherer_N = mkN "decipherer" "decipherers" ;
+lin decision_N = mkN "decision" "decisions" ;
+lin decisive_A = mkAMost "decisive" "decisively" ;
+lin decisiveness_N = mkN "decisiveness" "decisivenesses" ;
+lin deck_N = mkN "deck" "decks" ;
+lin deck_V = mkV "deck" "decked" "decked" ;
+lin decker_N = mkN "decker" "deckers" ;
+lin deckhand_N = mkN "deckhand" "deckhands" ;
+lin deckle_N = mkN "deckle" "deckles" ;
+lin deckle_edged_A = mkAMost "deckle-edged" "deckle-edgedly" ;
+lin deckled_A = mkAMost "deckled" "deckledly" ;
+lin declaim_V = mkV "declaim" "declaimed" "declaimed" ;
+lin declamation_N = mkN "declamation" "declamations" ;
+lin declamatory_A = mkAMost "declamatory" "declamatorily" ;
+lin declarable_A = mkAMost "declarable" "declarably" ;
+lin declaration_N = mkN "declaration" "declarations" ;
+lin declarative_A = mkAMost "declarative" "declaratively" ;
+lin declare_V = mkV "declare" "declared" "declared" ;
+lin declassification_N = mkN "declassification" "declassifications" ;
+lin declassify_V = mkV "declassify" "declassified" "declassified" ;
+lin declension_N = mkN "declension" "declensions" ;
+lin declination_N = mkN "declination" "declinations" ;
+lin decline_N = mkN "decline" "declines" ;
+lin decline_V = mkV "decline" "declined" "declined" ;
+lin declinometer_N = mkN "declinometer" "declinometers" ;
+lin declivitous_A = mkAMost "declivitous" "declivitously" ;
+lin declivity_N = mkN "declivity" "declivities" ;
+lin declutch_V = mkV "declutch" "declutched" "declutched" ;
+lin deco_N = mkN "deco" "decoes" ;
+lin decoction_N = mkN "decoction" "decoctions" ;
+lin decode_V = mkV "decode" "decoded" "decoded" ;
+lin decoder_N = mkN "decoder" "decoders" ;
+lin decoding_N = mkN "decoding" "decodings" ;
+lin decoke_V = mkV "decoke" "decoked" "decoked" ;
+lin decolletage_N = mkN "decolletage" "decolletages" ;
+lin decolonization_N = mkN "decolonization" "decolonizations" ;
+lin decolonize_V = mkV "decolonize" "decolonized" "decolonized" ;
+lin decompose_V = mkV "decompose" "decomposed" "decomposed" ;
+lin decomposition_N = mkN "decomposition" "decompositions" ;
+lin decompositional_A = mkAMost "decompositional" "decompositionally" ;
+lin decompound_A = mkAMost "decompound" "decompoundly" ;
+lin decompress_V = mkV "decompress" "decompressed" "decompressed" ;
+lin decompression_N = mkN "decompression" "decompressions" ;
+lin decongestant_N = mkN "decongestant" "decongestants" ;
+lin deconsecrated_A = mkAMost "deconsecrated" "deconsecratedly" ;
+lin deconstruction_N = mkN "deconstruction" "deconstructions" ;
+lin deconstructionist_A = mkAMost "deconstructionist" "deconstructionistly" ;
+lin deconstructivism_N = mkN "deconstructivism" "deconstructivisms" ;
+lin decontaminate_V = mkV "decontaminate" "decontaminated" "decontaminated" ;
+lin decontamination_N = mkN "decontamination" "decontaminations" ;
+lin decontrol_V = mkV "decontrol" "decontrolled" "decontrolled" ;
+lin decorate_V = mkV "decorate" "decorated" "decorated" ;
+lin decoration_N = mkN "decoration" "decorations" ;
+lin decorative_A = mkAMost "decorative" "decoratively" ;
+lin decorativeness_N = mkN "decorativeness" "decorativenesses" ;
+lin decorator_N = mkN "decorator" "decorators" ;
+lin decorous_A = mkAMost "decorous" "decorously" ;
+lin decortication_N = mkN "decortication" "decortications" ;
+lin decorum_N = mkN "decorum" "decorums" ;
+lin decoupage_N = mkN "decoupage" "decoupages" ;
+lin decoy_N = mkN "decoy" "decoys" ;
+lin decoy_V = mkV "decoy" "decoyed" "decoyed" ;
+lin decrease_N = mkN "decrease" "decreases" ;
+lin decrease_V = mkV "decrease" "decreased" "decreased" ;
+lin decree_N = mkN "decree" "decrees" ;
+lin decree_V = mkV "decree" "decreed" "decreed" ;
+lin decree_nisi_N = mkN "decree nisi" "IRREG" ;
+lin decrepit_A = mkAMost "decrepit" "decrepitly" ;
+lin decrepitation_N = mkN "decrepitation" "decrepitations" ;
+lin decrepitude_N = mkN "decrepitude" "decrepitudes" ;
+lin decrescendo_A = mkAMost "decrescendo" "decrescendoly" ;
+lin decrescendo_N = mkN "decrescendo" "decrescendoes" ;
+lin decribe_V = mkV "decribe" "decribed" "decribed" ;
+lin decriminalization_N = mkN "decriminalization" "decriminalizations" ;
+lin decry_V = mkV "decry" "decried" "decried" ;
+lin decubitus_N = mkN "decubitus" "decubituses" ;
+lin decumary_N = mkN "decumary" "decumaries" ;
+lin decurved_A = mkAMost "decurved" "decurvedly" ;
+lin decussate_A = mkAMost "decussate" "decussately" ;
+lin dedicate_V = mkV "dedicate" "dedicated" "dedicated" ;
+lin dedication_N = mkN "dedication" "dedications" ;
+lin dedifferentiated_A = mkAMost "dedifferentiated" "dedifferentiatedly" ;
+lin dedifferentiation_N = mkN "dedifferentiation" "dedifferentiations" ;
+lin deduce_V = mkV "deduce" "deduced" "deduced" ;
+lin deducible_A = mkAMost "deducible" "deducibly" ;
+lin deduct_V = mkV "deduct" "deducted" "deducted" ;
+lin deductible_A = mkAMost "deductible" "deductibly" ;
+lin deductible_N = mkN "deductible" "deductibles" ;
+lin deduction_N = mkN "deduction" "deductions" ;
+lin deductive_A = mkAMost "deductive" "deductively" ;
+lin deed_N = mkN "deed" "deeds" ;
+lin deed_box_N = mkN "deed-box" "deed-boxes" ;
+lin deedpoll_N = mkN "deedpoll" "deedpolls" ;
+lin deem_V = mkV "deem" "deemed" "deemed" ;
+lin deep_A = mkA "deep" "deeper" "deepest" "deeply" ;
+lin deep_Adv = mkAdv "deep" ;
+lin deep_N = mkN "deep" "deeps" ;
+lin deep_freeze_N = mkN "deep-freeze" "deep-freezes" ;
+lin deep_freeze_V = mkV "deep-freeze" "deep-froze" "deep-frozen" ;
+lin deep_laid_A = mkAMost "deep-laid" "deep-laidly" ;
+lin deep_mined_A = mkAMost "deep-mined" "deep-minedly" ;
+lin deep_rooted_A = mkAMost "deep-rooted" "deep-rootedly" ;
+lin deep_sea_A = mkAMost "deep-sea" "deep-sealy" ;
+lin deep_seated_A = mkAMost "deep-seated" "deep-seatedly" ;
+lin deep_water_A = mkAMost "deep-water" "deep-waterly" ;
+lin deepen_V = mkV "deepen" "deepened" "deepened" ;
+lin deepening_N = mkN "deepening" "deepenings" ;
+lin deepness_N = mkN "deepness" "deepnesses" ;
+lin deer_N = mkN "deer" "deer" ;
+lin deerberry_N = mkN "deerberry" "deerberries" ;
+lin deerskin_N = mkN "deerskin" "deerskins" ;
+lin deerstalker_N = mkN "deerstalker" "deerstalkers" ;
+lin deerstalking_N = mkN "deerstalking" "deerstalkings" ;
+lin deface_V = mkV "deface" "defaced" "defaced" ;
+lin defacement_N = mkN "defacement" "defacements" ;
+lin defalcation_N = mkN "defalcation" "defalcations" ;
+lin defamation_N = mkN "defamation" "defamations" ;
+lin defamatory_A = mkAMost "defamatory" "defamatorily" ;
+lin defame_V = mkV "defame" "defamed" "defamed" ;
+lin defamer_N = mkN "defamer" "defamers" ;
+lin default_N = mkN "default" "defaults" ;
+lin default_V = mkV "default" "defaulted" "defaulted" ;
+lin defaulter_N = mkN "defaulter" "defaulters" ;
+lin defeasible_A = mkAMost "defeasible" "defeasibly" ;
+lin defeat_N = mkN "defeat" "defeats" ;
+lin defeat_V = mkV "defeat" "defeated" "defeated" ;
+lin defeated_N = mkN "defeated" "defeateds" ;
+lin defeatism_N = mkN "defeatism" "defeatisms" ;
+lin defeatist_N = mkN "defeatist" "defeatists" ;
+lin defecate_V = mkV "defecate" "defecated" "defecated" ;
+lin defecation_N = mkN "defecation" "defecations" ;
+lin defecator_N = mkN "defecator" "defecators" ;
+lin defect_N = mkN "defect" "defects" ;
+lin defect_V = mkV "defect" "defected" "defected" ;
+lin defection_N = mkN "defection" "defections" ;
+lin defective_A = mkAMost "defective" "defectively" ;
+lin defectiveness_N = mkN "defectiveness" "defectivenesses" ;
+lin defector_N = mkN "defector" "defectors" ;
+lin defence_N = mkN "defence" "defences" ;
+lin defenceless_A = mkAMost "defenceless" "defencelessly" ;
+lin defencelessness_N = mkN "defencelessness" "defencelessnesses" ;
+lin defend_V = mkV "defend" "defended" "defended" ;
+lin defendable_A = mkAMost "defendable" "defendably" ;
+lin defendant_N = mkN "defendant" "defendants" ;
+lin defender_N = mkN "defender" "defenders" ;
+lin defenestration_N = mkN "defenestration" "defenestrations" ;
+lin defense_N = mkN "defense" "defenses" ;
+lin defenseless_A = mkAMost "defenseless" "defenselessly" ;
+lin defenseless_Adv = mkAdv "defenseless" ;
+lin defenselessness_N = mkN "defenselessness" "defenselessnesses" ;
+lin defensibility_N = mkN "defensibility" "defensibilities" ;
+lin defensible_A = mkAMost "defensible" "defensibly" ;
+lin defensive_A = mkAMost "defensive" "defensively" ;
+lin defensive_N = mkN "defensive" "defensives" ;
+lin defensiveness_N = mkN "defensiveness" "defensivenesses" ;
+lin defer_V = mkV "defer" "deferred" "deferred" ;
+lin deference_N = mkN "deference" "deferences" ;
+lin deferent_A = mkAMost "deferent" "deferently" ;
+lin deferential_A = mkAMost "deferential" "deferentially" ;
+lin deferment_N = mkN "deferment" "deferments" ;
+lin deferral_N = mkN "deferral" "deferrals" ;
+lin defervescence_N = mkN "defervescence" "defervescences" ;
+lin defervescent_A = mkAMost "defervescent" "defervescently" ;
+lin defiance_N = mkN "defiance" "defiances" ;
+lin defiant_A = mkAMost "defiant" "defiantly" ;
+lin defibrillation_N = mkN "defibrillation" "defibrillations" ;
+lin defibrillator_N = mkN "defibrillator" "defibrillators" ;
+lin deficiency_N = mkN "deficiency" "deficiencies" ;
+lin deficient_A = mkAMost "deficient" "deficiently" ;
+lin deficit_N = mkN "deficit" "deficits" ;
+lin defilade_N = mkN "defilade" "defilades" ;
+lin defile_N = mkN "defile" "defiles" ;
+lin defile_V = mkV "defile" "defiled" "defiled" ;
+lin defilement_N = mkN "defilement" "defilements" ;
+lin definable_A = mkAMost "definable" "definably" ;
+lin define_V = mkV "define" "defined" "defined" ;
+lin definite_A = mkAMost "definite" "definitely" ;
+lin definition_N = mkN "definition" "definitions" ;
+lin definitive_A = mkAMost "definitive" "definitively" ;
+lin deflagration_N = mkN "deflagration" "deflagrations" ;
+lin deflate_V = mkV "deflate" "deflated" "deflated" ;
+lin deflation_N = mkN "deflation" "deflations" ;
+lin deflationary_A = mkAMost "deflationary" "deflationarily" ;
+lin deflator_N = mkN "deflator" "deflators" ;
+lin deflect_V = mkV "deflect" "deflected" "deflected" ;
+lin deflection_N = mkN "deflection" "deflections" ;
+lin deflective_A = mkAMost "deflective" "deflectively" ;
+lin deflector_N = mkN "deflector" "deflectors" ;
+lin defloration_N = mkN "defloration" "deflorations" ;
+lin deflower_V = mkV "deflower" "deflowered" "deflowered" ;
+lin defoliant_N = mkN "defoliant" "defoliants" ;
+lin defoliate_A = mkAMost "defoliate" "defoliately" ;
+lin defoliate_V = mkV "defoliate" "defoliated" "defoliated" ;
+lin defoliation_N = mkN "defoliation" "defoliations" ;
+lin defoliator_N = mkN "defoliator" "defoliators" ;
+lin deforest_V = mkV "deforest" "deforested" "deforested" ;
+lin deforestation_N = mkN "deforestation" "deforestations" ;
+lin deform_V = mkV "deform" "deformed" "deformed" ;
+lin deformation_N = mkN "deformation" "deformations" ;
+lin deformational_A = mkAMost "deformational" "deformationally" ;
+lin deformity_N = mkN "deformity" "deformities" ;
+lin defraud_V = mkV "defraud" "defrauded" "defrauded" ;
+lin defray_V = mkV "defray" "defrayed" "defrayed" ;
+lin defrayal_N = mkN "defrayal" "defrayals" ;
+lin defrayment_N = mkN "defrayment" "defrayments" ;
+lin defrock_V = mkV "defrock" "defrocked" "defrocked" ;
+lin defrost_V = mkV "defrost" "defrosted" "defrosted" ;
+lin defroster_N = mkN "defroster" "defrosters" ;
+lin deft_A = mkAMost "deft" "deftly" ;
+lin deftness_N = mkN "deftness" "deftnesses" ;
+lin defunct_A = mkAMost "defunct" "defunctly" ;
+lin defuse_V = mkV "defuse" "defused" "defused" ;
+lin defy_V = mkV "defy" "defied" "defied" ;
+lin degage_A = mkAMost "degage" "degagely" ;
+lin degauss_V = mkV "degauss" "degaussed" "degaussed" ;
+lin degaussing_N = mkN "degaussing" "degaussings" ;
+lin degeneracy_N = mkN "degeneracy" "degeneracies" ;
+lin degenerate_A = mkAMost "degenerate" "degenerately" ;
+lin degenerate_N = mkN "degenerate" "degenerates" ;
+lin degenerate_V = mkV "degenerate" "degenerated" "degenerated" ;
+lin degeneration_N = mkN "degeneration" "degenerations" ;
+lin degenerative_A = mkAMost "degenerative" "degeneratively" ;
+lin degradation_N = mkN "degradation" "degradations" ;
+lin degrade_V = mkV "degrade" "degraded" "degraded" ;
+lin degree_N = mkN "degree" "degrees" ;
+lin degressive_A = mkAMost "degressive" "degressively" ;
+lin dehiscence_N = mkN "dehiscence" "dehiscences" ;
+lin dehiscent_A = mkAMost "dehiscent" "dehiscently" ;
+lin dehorn_V = mkV "dehorn" "dehorned" "dehorned" ;
+lin dehumanization_N = mkN "dehumanization" "dehumanizations" ;
+lin dehumanize_V = mkV "dehumanize" "dehumanized" "dehumanized" ;
+lin dehydrate_V = mkV "dehydrate" "dehydrated" "dehydrated" ;
+lin dehydration_N = mkN "dehydration" "dehydrations" ;
+lin deictic_A = mkAMost "deictic" "deicticly" ;
+lin deictic_N = mkN "deictic" "deictics" ;
+lin deific_A = mkAMost "deific" "deificly" ;
+lin deification_N = mkN "deification" "deifications" ;
+lin deify_V = mkV "deify" "deified" "deified" ;
+lin deign_V = mkV "deign" "deigned" "deigned" ;
+lin deinocheirus_N = mkN "deinocheirus" "deinocheiruses" ;
+lin deinonychus_N = mkN "deinonychus" "deinonychuses" ;
+lin deipnosophist_N = mkN "deipnosophist" "deipnosophists" ;
+lin deism_N = mkN "deism" "deisms" ;
+lin deist_A = mkA "deist" "deister" "deistest" "deistly" ;
+lin deist_N = mkN "deist" "deists" ;
+lin deity_N = mkN "deity" "deities" ;
+lin deixis_N = mkN "deixis" "deixises" ;
+lin deject_V = mkV "deject" "dejected" "dejected" ;
+lin dejectedly_Adv = mkAdv "dejectedly" ;
+lin dejection_N = mkN "dejection" "dejections" ;
+lin dekagram_N = mkN "dekagram" "dekagrams" ;
+lin dekaliter_N = mkN "dekaliter" "dekaliters" ;
+lin dekko_N = mkN "dekko" "dekki" ;
+lin delavirdine_N = mkN "delavirdine" "delavirdines" ;
+lin delay_N = mkN "delay" "delays" ;
+lin delay_V = mkV "delay" "delayed" "delayed" ;
+lin delayed_action_A = mkAMost "delayed-action" "delayed-actionly" ;
+lin delayed_action_N = mkN "delayed-action" "delayed-actions" ;
+lin delayer_N = mkN "delayer" "delayers" ;
+lin delectability_N = mkN "delectability" "delectabilities" ;
+lin delectable_A = mkAMost "delectable" "delectably" ;
+lin delectation_N = mkN "delectation" "delectations" ;
+lin delegacy_N = mkN "delegacy" "delegacies" ;
+lin delegate_N = mkN "delegate" "delegates" ;
+lin delegate_V = mkV "delegate" "delegated" "delegated" ;
+lin delegating_N = mkN "delegating" "delegatings" ;
+lin delegation_N = mkN "delegation" "delegations" ;
+lin delete_V = mkV "delete" "deleted" "deleted" ;
+lin deleterious_A = mkAMost "deleterious" "deleteriously" ;
+lin deletion_N = mkN "deletion" "deletions" ;
+lin delf_N = mkN "delf" "delfs" ;
+lin delft_N = mkN "delft" "delfts" ;
+lin deliberate_A = mkAMost "deliberate" "deliberately" ;
+lin deliberate_V = mkV "deliberate" "deliberated" "deliberated" ;
+lin deliberation_N = mkN "deliberation" "deliberations" ;
+lin deliberative_A = mkAMost "deliberative" "deliberatively" ;
+lin delible_A = mkAMost "delible" "delibly" ;
+lin delicacy_N = mkN "delicacy" "delicacies" ;
+lin delicate_A = mkAMost "delicate" "delicately" ;
+lin delicatessen_N = mkN "delicatessen" "delicatessens" ;
+lin delicious_A = mkAMost "delicious" "deliciously" ;
+lin delight_N = mkN "delight" "delights" ;
+lin delight_V = mkV "delight" "delighted" "delighted" ;
+lin delightedly_Adv = mkAdv "delightedly" ;
+lin delightful_A = mkAMost "delightful" "delightfully" ;
+lin delimit_V = mkV "delimit" "delimited" "delimited" ;
+lin delimitate_V = mkV "delimitate" "delimitated" "delimitated" ;
+lin delimitation_N = mkN "delimitation" "delimitations" ;
+lin delineate_V = mkV "delineate" "delineated" "delineated" ;
+lin delineation_N = mkN "delineation" "delineations" ;
+lin delineative_A = mkAMost "delineative" "delineatively" ;
+lin delinquency_N = mkN "delinquency" "delinquencies" ;
+lin delinquent_A = mkAMost "delinquent" "delinquently" ;
+lin delinquent_N = mkN "delinquent" "delinquents" ;
+lin deliquescent_A = mkAMost "deliquescent" "deliquescently" ;
+lin delirious_A = mkAMost "delirious" "deliriously" ;
+lin delirium_N = mkN "delirium" "deliriums" ;
+lin delirium_tremens_N = mkN "delirium tremens" "IRREG" ;
+lin deliver_V = mkV "deliver" "delivered" "delivered" ;
+lin deliverable_A = mkAMost "deliverable" "deliverably" ;
+lin deliverable_N = mkN "deliverable" "deliverables" ;
+lin deliverance_N = mkN "deliverance" "deliverances" ;
+lin deliverer_N = mkN "deliverer" "deliverers" ;
+lin delivery_N = mkN "delivery" "deliveries" ;
+lin deliveryman_N = mkN "deliveryman" "deliverymen" ;
+lin dell_N = mkN "dell" "dells" ;
+lin delouse_V = mkV "delouse" "deloused" "deloused" ;
+lin delphic_A = mkAMost "delphic" "delphicly" ;
+lin delphinium_N = mkN "delphinium" "delphiniums" ;
+lin delta_N = mkN "delta" "deltas" ;
+lin deltoid_A = mkAMost "deltoid" "deltoidly" ;
+lin deltoid_N = mkN "deltoid" "deltoids" ;
+lin delude_V = mkV "delude" "deluded" "deluded" ;
+lin deluge_N = mkN "deluge" "deluges" ;
+lin deluge_V = mkV "deluge" "deluged" "deluged" ;
+lin delusion_N = mkN "delusion" "delusions" ;
+lin delusional_A = mkAMost "delusional" "delusionally" ;
+lin delusive_A = mkAMost "delusive" "delusively" ;
+lin deluxe_A = mkAMost "deluxe" "deluxely" ;
+lin delve_V = mkV "delve" "delved" "delved" ;
+lin demagnetization_N = mkN "demagnetization" "demagnetizations" ;
+lin demagnetize_V = mkV "demagnetize" "demagnetized" "demagnetized" ;
+lin demagogic_A = mkAMost "demagogic" "demagogicly" ;
+lin demagogue_N = mkN "demagogue" "demagogues" ;
+lin demagoguery_N = mkN "demagoguery" "demagogueries" ;
+lin demagogy_N = mkN "demagogy" "demagogies" ;
+lin demand_N = mkN "demand" "demands" ;
+lin demand_V = mkV "demand" "demanded" "demanded" ;
+lin demander_N = mkN "demander" "demanders" ;
+lin demanding_A = mkAMost "demanding" "demandingly" ;
+lin demantoid_N = mkN "demantoid" "demantoids" ;
+lin demarcate_V = mkV "demarcate" "demarcated" "demarcated" ;
+lin demarcation_N = mkN "demarcation" "demarcations" ;
+lin demean_V = mkV "demean" "demeaned" "demeaned" ;
+lin demeaning_A = mkAMost "demeaning" "demeaningly" ;
+lin demeanor_N = mkN "demeanor" "demeanors" ;
+lin demeanour_N = mkN "demeanour" "demeanours" ;
+lin demented_A = mkAMost "demented" "dementedly" ;
+lin dementia_N = mkN "dementia" "dementias" ;
+lin demerara_N = mkN "demerara" "demeraras" ;
+lin demerit_N = mkN "demerit" "demerits" ;
+lin demesne_N = mkN "demesne" "demesnes" ;
+lin demiglace_N = mkN "demiglace" "demiglaces" ;
+lin demigod_N = mkN "demigod" "demigods" ;
+lin demijohn_N = mkN "demijohn" "demijohns" ;
+lin demilitarisation_N = mkN "demilitarisation" "demilitarisations" ;
+lin demilitarization_N = mkN "demilitarization" "demilitarizations" ;
+lin demilitarize_V = mkV "demilitarize" "demilitarized" "demilitarized" ;
+lin demimondaine_N = mkN "demimondaine" "demimondaines" ;
+lin demimonde_N = mkN "demimonde" "demimondes" ;
+lin demineralization_N = mkN "demineralization" "demineralizations" ;
+lin demise_N = mkN "demise" "demises" ;
+lin demist_V = mkV "demist" "demisted" "demisted" ;
+lin demister_N = mkN "demister" "demisters" ;
+lin demitasse_N = mkN "demitasse" "demitasses" ;
+lin demiurge_N = mkN "demiurge" "demiurges" ;
+lin demo_N = mkN "demo" "demos" ;
+lin demob_V = mkV "demob" "demobbed" "demobbed" ;
+lin demobilisation_N = mkN "demobilisation" "demobilisations" ;
+lin demobilization_N = mkN "demobilization" "demobilizations" ;
+lin demobilize_V = mkV "demobilize" "demobilized" "demobilized" ;
+lin democracy_N = mkN "democracy" "democracies" ;
+lin democrat_N = mkN "democrat" "democrats" ;
+lin democratic_A = mkAMost "democratic" "democraticly" ;
+lin democratically_Adv = mkAdv "democratically" ;
+lin democratisation_N = mkN "democratisation" "democratisations" ;
+lin democratization_N = mkN "democratization" "democratizations" ;
+lin democratize_V = mkV "democratize" "democratized" "democratized" ;
+lin demodulation_N = mkN "demodulation" "demodulations" ;
+lin demographer_N = mkN "demographer" "demographers" ;
+lin demographic_A = mkAMost "demographic" "demographicly" ;
+lin demographic_N = mkN "demographic" "demographics" ;
+lin demography_N = mkN "demography" "demographies" ;
+lin demolish_V = mkV "demolish" "demolished" "demolished" ;
+lin demolition_N = mkN "demolition" "demolitions" ;
+lin demon_N = mkN "demon" "demons" ;
+lin demonetization_N = mkN "demonetization" "demonetizations" ;
+lin demonetize_V = mkV "demonetize" "demonetized" "demonetized" ;
+lin demoniac_A = mkAMost "demoniac" "demoniacly" ;
+lin demoniac_N = mkN "demoniac" "demoniacs" ;
+lin demoniacal_A = mkAMost "demoniacal" "demoniacally" ;
+lin demonic_A = mkAMost "demonic" "demonicly" ;
+lin demonization_N = mkN "demonization" "demonizations" ;
+lin demonize_V = mkV "demonize" "demonized" "demonized" ;
+lin demonstrability_N = mkN "demonstrability" "demonstrabilities" ;
+lin demonstrable_A = mkAMost "demonstrable" "demonstrably" ;
+lin demonstrate_V = mkV "demonstrate" "demonstrated" "demonstrated" ;
+lin demonstration_N = mkN "demonstration" "demonstrations" ;
+lin demonstrative_A = mkAMost "demonstrative" "demonstratively" ;
+lin demonstrativeness_N = mkN "demonstrativeness" "demonstrativenesses" ;
+lin demonstrator_N = mkN "demonstrator" "demonstrators" ;
+lin demoralization_N = mkN "demoralization" "demoralizations" ;
+lin demoralize_V = mkV "demoralize" "demoralized" "demoralized" ;
+lin demoralizing_A = mkAMost "demoralizing" "demoralizingly" ;
+lin demote_V = mkV "demote" "demoted" "demoted" ;
+lin demotic_A = mkAMost "demotic" "demoticly" ;
+lin demotion_N = mkN "demotion" "demotions" ;
+lin demulcent_A = mkAMost "demulcent" "demulcently" ;
+lin demulcent_N = mkN "demulcent" "demulcents" ;
+lin demur_N = mkN "demur" "demurs" ;
+lin demur_V = mkV "demur" "demurred" "demurred" ;
+lin demure_A = mkAMost "demure" "demurely" ;
+lin demureness_N = mkN "demureness" "demurenesses" ;
+lin demurrage_N = mkN "demurrage" "demurrages" ;
+lin demurrer_N = mkN "demurrer" "demurrers" ;
+lin demyelination_N = mkN "demyelination" "demyelinations" ;
+lin demythologization_N = mkN "demythologization" "demythologizations" ;
+lin demythologized_A = mkAMost "demythologized" "demythologizedly" ;
+lin den_N = mkN "den" "dens" ;
+lin denar_N = mkN "denar" "denars" ;
+lin denary_A = mkAMost "denary" "denarily" ;
+lin denationalisation_N = mkN "denationalisation" "denationalisations" ;
+lin denationalization_N = mkN "denationalization" "denationalizations" ;
+lin denationalize_V = mkV "denationalize" "denationalized" "denationalized" ;
+lin denaturant_N = mkN "denaturant" "denaturants" ;
+lin denatured_A = mkAMost "denatured" "denaturedly" ;
+lin denazification_N = mkN "denazification" "denazifications" ;
+lin dendrite_N = mkN "dendrite" "dendrites" ;
+lin dendritic_A = mkAMost "dendritic" "dendriticly" ;
+lin dendrobium_N = mkN "dendrobium" "dendrobiums" ;
+lin dengue_N = mkN "dengue" "dengues" ;
+lin deniable_A = mkAMost "deniable" "deniably" ;
+lin denial_N = mkN "denial" "denials" ;
+lin denier_N = mkN "denier" "denier" ;
+lin denigrate_V = mkV "denigrate" "denigrated" "denigrated" ;
+lin denigration_N = mkN "denigration" "denigrations" ;
+lin denim_N = mkN "denim" "denims" ;
+lin denizen_N = mkN "denizen" "denizens" ;
+lin denominate_V = mkV "denominate" "denominated" "denominated" ;
+lin denomination_N = mkN "denomination" "denominations" ;
+lin denominational_A = mkAMost "denominational" "denominationally" ;
+lin denominationalism_N = mkN "denominationalism" "denominationalisms" ;
+lin denominator_N = mkN "denominator" "denominators" ;
+lin denotative_A = mkAMost "denotative" "denotatively" ;
+lin denotatum_N = mkN "denotatum" "denotatums" ;
+lin denote_V = mkV "denote" "denoted" "denoted" ;
+lin denounce_V = mkV "denounce" "denounced" "denounced" ;
+lin dense_A = mkA "dense" "denser" "densest" "densely" ;
+lin denseness_N = mkN "denseness" "densenesses" ;
+lin densimeter_N = mkN "densimeter" "densimeters" ;
+lin densitometer_N = mkN "densitometer" "densitometers" ;
+lin densitometry_N = mkN "densitometry" "densitometries" ;
+lin density_N = mkN "density" "densities" ;
+lin dent_N = mkN "dent" "dents" ;
+lin dent_V = mkV "dent" "dented" "dented" ;
+lin dental_A = mkAMost "dental" "dentally" ;
+lin dentate_A = mkAMost "dentate" "dentately" ;
+lin denticle_N = mkN "denticle" "denticles" ;
+lin denticulate_A = mkAMost "denticulate" "denticulately" ;
+lin dentifrice_N = mkN "dentifrice" "dentifrices" ;
+lin dentine_N = mkN "dentine" "dentines" ;
+lin dentist_N = mkN "dentist" "dentists" ;
+lin dentistry_N = mkN "dentistry" "dentistries" ;
+lin dentition_N = mkN "dentition" "dentitions" ;
+lin denture_N = mkN "denture" "dentures" ;
+lin denudation_N = mkN "denudation" "denudations" ;
+lin denude_V = mkV "denude" "denuded" "denuded" ;
+lin denunciation_N = mkN "denunciation" "denunciations" ;
+lin deny_V = mkV "deny" "denied" "denied" ;
+lin deodar_N = mkN "deodar" "deodars" ;
+lin deodorant_N = mkN "deodorant" "deodorants" ;
+lin deodorize_V = mkV "deodorize" "deodorized" "deodorized" ;
+lin deossification_N = mkN "deossification" "deossifications" ;
+lin deoxyadenosine_N = mkN "deoxyadenosine" "deoxyadenosines" ;
+lin deoxycytidine_N = mkN "deoxycytidine" "deoxycytidines" ;
+lin deoxyguanosine_N = mkN "deoxyguanosine" "deoxyguanosines" ;
+lin deoxyribose_N = mkN "deoxyribose" "deoxyriboses" ;
+lin deoxythymidine_N = mkN "deoxythymidine" "deoxythymidines" ;
+lin depart_V = mkV "depart" "departed" "departed" ;
+lin departed_A = mkAMost "departed" "departedly" ;
+lin departed_N = mkN "departed" "departed" ;
+lin departer_N = mkN "departer" "departers" ;
+lin department_N = mkN "department" "departments" ;
+lin departmental_A = mkAMost "departmental" "departmentally" ;
+lin departure_N = mkN "departure" "departures" ;
+lin depend_V = mkV "depend" "depended" "depended" ;
+lin dependability_N = mkN "dependability" "dependabilities" ;
+lin dependable_A = mkAMost "dependable" "dependably" ;
+lin dependant_N = mkN "dependant" "dependants" ;
+lin dependence_N = mkN "dependence" "dependences" ;
+lin dependency_N = mkN "dependency" "dependencies" ;
+lin dependent_A = mkAMost "dependent" "dependently" ;
+lin dependent_N = mkN "dependent" "dependents" ;
+lin depersonalization_N = mkN "depersonalization" "depersonalizations" ;
+lin depict_V = mkV "depict" "depicted" "depicted" ;
+lin depicting_N = mkN "depicting" "depictings" ;
+lin depiction_N = mkN "depiction" "depictions" ;
+lin depigmentation_N = mkN "depigmentation" "depigmentations" ;
+lin depilation_N = mkN "depilation" "depilations" ;
+lin depilatory_A = mkAMost "depilatory" "depilatorily" ;
+lin depilatory_N = mkN "depilatory" "depilatories" ;
+lin depilous_A = mkAMost "depilous" "depilously" ;
+lin deplane_V = mkV "deplane" "deplaned" "deplaned" ;
+lin depletable_A = mkAMost "depletable" "depletably" ;
+lin deplete_V = mkV "deplete" "depleted" "depleted" ;
+lin depletion_N = mkN "depletion" "depletions" ;
+lin deplorable_A = mkAMost "deplorable" "deplorably" ;
+lin deplore_V = mkV "deplore" "deplored" "deplored" ;
+lin deploy_V = mkV "deploy" "deployed" "deployed" ;
+lin deployment_N = mkN "deployment" "deployments" ;
+lin depolarization_N = mkN "depolarization" "depolarizations" ;
+lin deponent_N = mkN "deponent" "deponents" ;
+lin depopulate_V = mkV "depopulate" "depopulated" "depopulated" ;
+lin depopulation_N = mkN "depopulation" "depopulations" ;
+lin deport_V = mkV "deport" "deported" "deported" ;
+lin deportation_N = mkN "deportation" "deportations" ;
+lin deportee_N = mkN "deportee" "deportees" ;
+lin deportment_N = mkN "deportment" "deportments" ;
+lin depose_V = mkV "depose" "deposed" "deposed" ;
+lin deposit_N = mkN "deposit" "deposits" ;
+lin deposit_V = mkV "deposit" "deposited" "deposited" ;
+lin deposition_N = mkN "deposition" "depositions" ;
+lin depositor_N = mkN "depositor" "depositors" ;
+lin depository_N = mkN "depository" "depositories" ;
+lin depot_N = mkN "depot" "depots" ;
+lin deprave_V = mkV "deprave" "depraved" "depraved" ;
+lin depravity_N = mkN "depravity" "depravities" ;
+lin deprecate_V = mkV "deprecate" "deprecated" "deprecated" ;
+lin deprecation_N = mkN "deprecation" "deprecations" ;
+lin deprecative_A = mkAMost "deprecative" "deprecatively" ;
+lin depreciate_V = mkV "depreciate" "depreciated" "depreciated" ;
+lin depreciation_N = mkN "depreciation" "depreciations" ;
+lin depreciatory_A = mkAMost "depreciatory" "depreciatorily" ;
+lin depredation_N = mkN "depredation" "depredations" ;
+lin depress_V = mkV "depress" "depressed" "depressed" ;
+lin depressant_A = mkAMost "depressant" "depressantly" ;
+lin depressing_A = mkAMost "depressing" "depressingly" ;
+lin depression_N = mkN "depression" "depressions" ;
+lin depressive_A = mkAMost "depressive" "depressively" ;
+lin depressive_N = mkN "depressive" "depressives" ;
+lin depressor_N = mkN "depressor" "depressors" ;
+lin deprivation_N = mkN "deprivation" "deprivations" ;
+lin deprive_V = mkV "deprive" "deprived" "deprived" ;
+lin depth_N = mkN "depth" "depths" ;
+lin depth_bomb_N = mkN "depth-bomb" "depth-bombs" ;
+lin depth_charge_N = mkN "depth-charge" "depth-charges" ;
+lin deputation_N = mkN "deputation" "deputations" ;
+lin depute_V = mkV "depute" "deputed" "deputed" ;
+lin deputize_V = mkV "deputize" "deputized" "deputized" ;
+lin deputy_N = mkN "deputy" "deputies" ;
+lin derail_V = mkV "derail" "derailed" "derailed" ;
+lin derailment_N = mkN "derailment" "derailments" ;
+lin derange_V = mkV "derange" "deranged" "deranged" ;
+lin derangement_N = mkN "derangement" "derangements" ;
+lin derate_V = mkV "derate" "derated" "derated" ;
+lin derby_N = mkN "derby" "derbies" ;
+lin deregulate_V = mkV "deregulate" "deregulated" "deregulated" ;
+lin deregulation_N = mkN "deregulation" "deregulations" ;
+lin derelict_A = mkAMost "derelict" "derelictly" ;
+lin derelict_N = mkN "derelict" "derelicts" ;
+lin dereliction_N = mkN "dereliction" "derelictions" ;
+lin derequisition_V = mkV "derequisition" "derequisitioned" "derequisitioned" ;
+lin derestrict_V = mkV "derestrict" "derestricted" "derestricted" ;
+lin deride_V = mkV "deride" "derided" "derided" ;
+lin derision_N = mkN "derision" "derisions" ;
+lin derisive_A = mkAMost "derisive" "derisively" ;
+lin derisory_A = mkAMost "derisory" "derisorily" ;
+lin derivable_A = mkAMost "derivable" "derivably" ;
+lin derivation_N = mkN "derivation" "derivations" ;
+lin derivational_A = mkAMost "derivational" "derivationally" ;
+lin derivative_A = mkAMost "derivative" "derivatively" ;
+lin derivative_N = mkN "derivative" "derivatives" ;
+lin derive_V = mkV "derive" "derived" "derived" ;
+lin deriving_N = mkN "deriving" "derivings" ;
+lin dermabrasion_N = mkN "dermabrasion" "dermabrasions" ;
+lin dermal_A = mkAMost "dermal" "dermally" ;
+lin dermatitis_N = mkN "dermatitis" "dermatitises" ;
+lin dermatoglyphic_N = mkN "dermatoglyphic" "dermatoglyphics" ;
+lin dermatoglyphics_N = mkN "dermatoglyphics" "dermatoglyphicses" ;
+lin dermatologic_A = mkAMost "dermatologic" "dermatologicly" ;
+lin dermatologist_N = mkN "dermatologist" "dermatologists" ;
+lin dermatology_N = mkN "dermatology" "dermatologies" ;
+lin dermatome_N = mkN "dermatome" "dermatomes" ;
+lin dermatomycosis_N = mkN "dermatomycosis" "dermatomycosises" ;
+lin dermatomyositis_N = mkN "dermatomyositis" "dermatomyositises" ;
+lin dermatosis_N = mkN "dermatosis" "dermatosises" ;
+lin dermis_N = mkN "dermis" "dermises" ;
+lin derogate_V = mkV "derogate" "derogated" "derogated" ;
+lin derogation_N = mkN "derogation" "derogations" ;
+lin derogative_A = mkAMost "derogative" "derogatively" ;
+lin derogatory_A = mkAMost "derogatory" "derogatorily" ;
+lin derrick_N = mkN "derrick" "derricks" ;
+lin derring_do_N = mkN "derring-do" "derring-does" ;
+lin derringer_N = mkN "derringer" "derringers" ;
+lin derris_N = mkN "derris" "derrises" ;
+lin derv_N = mkN "derv" "dervs" ;
+lin dervish_N = mkN "dervish" "dervishes" ;
+lin des_N = mkN "des" "deses" ;
+lin desalinate_V = mkV "desalinate" "desalinated" "desalinated" ;
+lin desalination_N = mkN "desalination" "desalinations" ;
+lin desalinization_N = mkN "desalinization" "desalinizations" ;
+lin desalinize_V = mkV "desalinize" "desalinized" "desalinized" ;
+lin desalt_V = mkV "desalt" "desalted" "desalted" ;
+lin descale_V = mkV "descale" "descaled" "descaled" ;
+lin descant_N = mkN "descant" "descants" ;
+lin descant_V = mkV "descant" "descanted" "descanted" ;
+lin descend_V = mkV "descend" "descended" "descended" ;
+lin descendant_A = mkAMost "descendant" "descendantly" ;
+lin descendant_N = mkN "descendant" "descendants" ;
+lin descendants_N = mkN "descendants" "descendantses" ;
+lin descender_N = mkN "descender" "descenders" ;
+lin descent_N = mkN "descent" "descents" ;
+lin describable_A = mkAMost "describable" "describably" ;
+lin describe_V = mkV "describe" "described" "described" ;
+lin description_N = mkN "description" "descriptions" ;
+lin descriptive_A = mkAMost "descriptive" "descriptively" ;
+lin descriptivism_N = mkN "descriptivism" "descriptivisms" ;
+lin descriptor_N = mkN "descriptor" "descriptors" ;
+lin descry_V = mkV "descry" "descried" "descried" ;
+lin desecrate_V = mkV "desecrate" "desecrated" "desecrated" ;
+lin desecration_N = mkN "desecration" "desecrations" ;
+lin desegrated_A = mkAMost "desegrated" "desegratedly" ;
+lin desegregate_V = mkV "desegregate" "desegregated" "desegregated" ;
+lin desegregation_N = mkN "desegregation" "desegregations" ;
+lin desensitization_N = mkN "desensitization" "desensitizations" ;
+lin desensitize_V = mkV "desensitize" "desensitized" "desensitized" ;
+lin desensitizing_A = mkAMost "desensitizing" "desensitizingly" ;
+lin desert_A = mkAMost "desert" "desertly" ;
+lin desert_N = mkN "desert" "deserts" ;
+lin desert_V = mkV "desert" "deserted" "deserted" ;
+lin deserter_N = mkN "deserter" "deserters" ;
+lin desertification_N = mkN "desertification" "desertifications" ;
+lin desertion_N = mkN "desertion" "desertions" ;
+lin deserts_N = mkN "deserts" "desertses" ;
+lin deserve_V = mkV "deserve" "deserved" "deserved" ;
+lin deservedly_Adv = mkAdv "deservedly" ;
+lin deservingness_N = mkN "deservingness" "deservingnesses" ;
+lin desiccant_N = mkN "desiccant" "desiccants" ;
+lin desiccate_V = mkV "desiccate" "desiccated" "desiccated" ;
+lin desideratum_N = mkN "desideratum" "desiderata" ;
+lin design_N = mkN "design" "designs" ;
+lin design_V = mkV "design" "designed" "designed" ;
+lin designate_A = mkAMost "designate" "designately" ;
+lin designate_V = mkV "designate" "designated" "designated" ;
+lin designation_N = mkN "designation" "designations" ;
+lin designative_A = mkAMost "designative" "designatively" ;
+lin designatum_N = mkN "designatum" "designatums" ;
+lin designedly_Adv = mkAdv "designedly" ;
+lin designer_N = mkN "designer" "designers" ;
+lin designing_N = mkN "designing" "designings" ;
+lin desipramine_N = mkN "desipramine" "desipramines" ;
+lin desirability_N = mkN "desirability" "desirabilities" ;
+lin desirable_A = mkAMost "desirable" "desirably" ;
+lin desire_N = mkN "desire" "desires" ;
+lin desire_V = mkV "desire" "desired" "desired" ;
+lin desirous_A = mkAMost "desirous" "desirously" ;
+lin desist_V = mkV "desist" "desisted" "desisted" ;
+lin desk_N = mkN "desk" "desks" ;
+lin desktop_N = mkN "desktop" "desktops" ;
+lin desmid_N = mkN "desmid" "desmids" ;
+lin desolate_A = mkAMost "desolate" "desolately" ;
+lin desolate_V = mkV "desolate" "desolated" "desolated" ;
+lin desolation_N = mkN "desolation" "desolations" ;
+lin desorption_N = mkN "desorption" "desorptions" ;
+lin despair_N = mkN "despair" "despairs" ;
+lin despair_V = mkV "despair" "despaired" "despaired" ;
+lin despairingly_Adv = mkAdv "despairingly" ;
+lin despatch_N = mkN "despatch" "despatches" ;
+lin despatch_V = mkV "despatch" "despatched" "despatched" ;
+lin desperado_N = mkN "desperado" "desperadoes" ;
+lin desperate_A = mkAMost "desperate" "desperately" ;
+lin desperate_N = mkN "desperate" "desperates" ;
+lin desperation_N = mkN "desperation" "desperations" ;
+lin despicable_A = mkAMost "despicable" "despicably" ;
+lin despisal_N = mkN "despisal" "despisals" ;
+lin despise_V = mkV "despise" "despised" "despised" ;
+lin despite_N = mkN "despite" "despites" ;
+lin despite_Prep = mkPrep "despite" ;
+lin despiteful_A = mkAMost "despiteful" "despitefully" ;
+lin despoil_V = mkV "despoil" "despoiled" "despoiled" ;
+lin despondency_N = mkN "despondency" "despondencies" ;
+lin despondent_A = mkAMost "despondent" "despondently" ;
+lin despot_N = mkN "despot" "despots" ;
+lin despotic_A = mkAMost "despotic" "despoticly" ;
+lin despotism_N = mkN "despotism" "despotisms" ;
+lin desquamation_N = mkN "desquamation" "desquamations" ;
+lin dessert_N = mkN "dessert" "desserts" ;
+lin dessertspoon_N = mkN "dessertspoon" "dessertspoons" ;
+lin dessertspoonful_N = mkN "dessertspoonful" "dessertspoonfuls" ;
+lin dessiatine_N = mkN "dessiatine" "dessiatines" ;
+lin destabilisation_N = mkN "destabilisation" "destabilisations" ;
+lin destabilization_N = mkN "destabilization" "destabilizations" ;
+lin destalinization_N = mkN "destalinization" "destalinizations" ;
+lin destination_N = mkN "destination" "destinations" ;
+lin destine_V = mkV "destine" "destined" "destined" ;
+lin destiny_N = mkN "destiny" "destinies" ;
+lin destitute_A = mkAMost "destitute" "destitutely" ;
+lin destitution_N = mkN "destitution" "destitutions" ;
+lin destroy_V = mkV "destroy" "destroyed" "destroyed" ;
+lin destroyable_A = mkAMost "destroyable" "destroyably" ;
+lin destroyer_N = mkN "destroyer" "destroyers" ;
+lin destructibility_N = mkN "destructibility" "destructibilities" ;
+lin destructible_A = mkAMost "destructible" "destructibly" ;
+lin destruction_N = mkN "destruction" "destructions" ;
+lin destructive_A = mkAMost "destructive" "destructively" ;
+lin destructiveness_N = mkN "destructiveness" "destructivenesses" ;
+lin desuetude_N = mkN "desuetude" "desuetudes" ;
+lin desultory_A = mkAMost "desultory" "desultorily" ;
+lin detach_V = mkV "detach" "detached" "detached" ;
+lin detachable_A = mkAMost "detachable" "detachably" ;
+lin detachment_N = mkN "detachment" "detachments" ;
+lin detail_N = mkN "detail" "details" ;
+lin detail_V = mkV "detail" "detailed" "detailed" ;
+lin detain_V = mkV "detain" "detained" "detained" ;
+lin detainee_N = mkN "detainee" "detainees" ;
+lin detect_V = mkV "detect" "detected" "detected" ;
+lin detectable_A = mkAMost "detectable" "detectably" ;
+lin detection_N = mkN "detection" "detections" ;
+lin detective_N = mkN "detective" "detectives" ;
+lin detector_N = mkN "detector" "detectors" ;
+lin detention_N = mkN "detention" "detentions" ;
+lin deter_V = mkV "deter" "deterred" "deterred" ;
+lin detergency_N = mkN "detergency" "detergencies" ;
+lin detergent_A = mkAMost "detergent" "detergently" ;
+lin detergent_N = mkN "detergent" "detergents" ;
+lin deteriorate_V = mkV "deteriorate" "deteriorated" "deteriorated" ;
+lin deterioration_N = mkN "deterioration" "deteriorations" ;
+lin determent_N = mkN "determent" "determents" ;
+lin determinable_A = mkAMost "determinable" "determinably" ;
+lin determinant_A = mkAMost "determinant" "determinantly" ;
+lin determinant_N = mkN "determinant" "determinants" ;
+lin determinate_A = mkAMost "determinate" "determinately" ;
+lin determinateness_N = mkN "determinateness" "determinatenesses" ;
+lin determination_N = mkN "determination" "determinations" ;
+lin determinative_A = mkAMost "determinative" "determinatively" ;
+lin determinative_N = mkN "determinative" "determinatives" ;
+lin determine_V = mkV "determine" "determined" "determined" ;
+lin determinedly_Adv = mkAdv "determinedly" ;
+lin determiner_N = mkN "determiner" "determiners" ;
+lin determinism_N = mkN "determinism" "determinisms" ;
+lin deterministic_A = mkAMost "deterministic" "deterministicly" ;
+lin deterrence_N = mkN "deterrence" "deterrences" ;
+lin deterrent_A = mkAMost "deterrent" "deterrently" ;
+lin deterrent_N = mkN "deterrent" "deterrents" ;
+lin detest_V = mkV "detest" "detested" "detested" ;
+lin detestable_A = mkAMost "detestable" "detestably" ;
+lin detestation_N = mkN "detestation" "detestations" ;
+lin dethrone_V = mkV "dethrone" "dethroned" "dethroned" ;
+lin dethronement_N = mkN "dethronement" "dethronements" ;
+lin detonate_V = mkV "detonate" "detonated" "detonated" ;
+lin detonation_N = mkN "detonation" "detonations" ;
+lin detonative_A = mkAMost "detonative" "detonatively" ;
+lin detonator_N = mkN "detonator" "detonators" ;
+lin detour_N = mkN "detour" "detours" ;
+lin detour_V = mkV "detour" "detoured" "detoured" ;
+lin detox_N = mkN "detox" "detoxes" ;
+lin detoxification_N = mkN "detoxification" "detoxifications" ;
+lin detract_V = mkV "detract" "detracted" "detracted" ;
+lin detraction_N = mkN "detraction" "detractions" ;
+lin detractive_A = mkAMost "detractive" "detractively" ;
+lin detractor_N = mkN "detractor" "detractors" ;
+lin detrain_V = mkV "detrain" "detrained" "detrained" ;
+lin detribalization_N = mkN "detribalization" "detribalizations" ;
+lin detribalize_V = mkV "detribalize" "detribalized" "detribalized" ;
+lin detriment_N = mkN "detriment" "detriments" ;
+lin detrimental_A = mkAMost "detrimental" "detrimentally" ;
+lin detritus_N = mkN "detritus" "detrituses" ;
+lin detumescence_N = mkN "detumescence" "detumescences" ;
+lin deuce_N = mkN "deuce" "deuces" ;
+lin deuced_A = mkAMost "deuced" "deucedly" ;
+lin deuteranopia_N = mkN "deuteranopia" "deuteranopias" ;
+lin deuteranopic_A = mkAMost "deuteranopic" "deuteranopicly" ;
+lin deuterium_N = mkN "deuterium" "deuteriums" ;
+lin deuteron_N = mkN "deuteron" "deuterons" ;
+lin deutschmark_N = mkN "deutschmark" "deutschmarks" ;
+lin deutzia_N = mkN "deutzia" "deutzias" ;
+lin devaluate_V = mkV "devaluate" "devaluated" "devaluated" ;
+lin devaluation_N = mkN "devaluation" "devaluations" ;
+lin devalue_V = mkV "devalue" "devalued" "devalued" ;
+lin devastate_V = mkV "devastate" "devastated" "devastated" ;
+lin devastation_N = mkN "devastation" "devastations" ;
+lin develop_V = mkV "develop" "developed" "developed" ;
+lin developer_N = mkN "developer" "developers" ;
+lin development_N = mkN "development" "developments" ;
+lin developmental_A = mkAMost "developmental" "developmentally" ;
+lin deviant_A = mkAMost "deviant" "deviantly" ;
+lin deviant_N = mkN "deviant" "deviants" ;
+lin deviate_V = mkV "deviate" "deviated" "deviated" ;
+lin deviation_N = mkN "deviation" "deviations" ;
+lin deviationism_N = mkN "deviationism" "deviationisms" ;
+lin deviationist_N = mkN "deviationist" "deviationists" ;
+lin device_N = mkN "device" "devices" ;
+lin devil_N = mkN "devil" "devils" ;
+lin devil_V = mkV "devil" "devilled" "devilled" ;
+lin devil_may_care_A = mkAMost "devil-may-care" "devil-may-carely" ;
+lin devilish_A = mkAMost "devilish" "devilishly" ;
+lin devilish_Adv = mkAdv "devilish" ;
+lin devilment_N = mkN "devilment" "devilments" ;
+lin devilry_N = mkN "devilry" "devilries" ;
+lin deviltry_N = mkN "deviltry" "deviltries" ;
+lin devilwood_N = mkN "devilwood" "devilwoods" ;
+lin devious_A = mkAMost "devious" "deviously" ;
+lin deviousness_N = mkN "deviousness" "deviousnesses" ;
+lin devisal_N = mkN "devisal" "devisals" ;
+lin devise_N = mkN "devise" "devises" ;
+lin devise_V = mkV "devise" "devised" "devised" ;
+lin devisee_N = mkN "devisee" "devisees" ;
+lin devising_N = mkN "devising" "devisings" ;
+lin devisor_N = mkN "devisor" "devisors" ;
+lin devitalization_N = mkN "devitalization" "devitalizations" ;
+lin devitalize_V = mkV "devitalize" "devitalized" "devitalized" ;
+lin devoid_A = mkAMost "devoid" "devoidly" ;
+lin devoir_N = mkN "devoir" "devoirs" ;
+lin devolution_N = mkN "devolution" "devolutions" ;
+lin devolve_V = mkV "devolve" "devolved" "devolved" ;
+lin devote_V = mkV "devote" "devoted" "devoted" ;
+lin devotedly_Adv = mkAdv "devotedly" ;
+lin devotee_N = mkN "devotee" "devotees" ;
+lin devotion_N = mkN "devotion" "devotions" ;
+lin devotional_A = mkAMost "devotional" "devotionally" ;
+lin devotional_N = mkN "devotional" "devotionals" ;
+lin devour_V = mkV "devour" "devoured" "devoured" ;
+lin devourer_N = mkN "devourer" "devourers" ;
+lin devout_A = mkAMost "devout" "devoutly" ;
+lin devoutness_N = mkN "devoutness" "devoutnesses" ;
+lin dew_N = mkN "dew" "dews" ;
+lin dewberry_N = mkN "dewberry" "dewberries" ;
+lin dewdrop_N = mkN "dewdrop" "dewdrops" ;
+lin dewlap_N = mkN "dewlap" "dewlaps" ;
+lin dewy_A = mkA "dewy" "dewier" "dewiest" "dewily" ;
+lin dexamethasone_N = mkN "dexamethasone" "dexamethasones" ;
+lin dexter_A = mkAMost "dexter" "dexterly" ;
+lin dexterity_N = mkN "dexterity" "dexterities" ;
+lin dexterous_A = mkAMost "dexterous" "dexterously" ;
+lin dextral_A = mkAMost "dextral" "dextrally" ;
+lin dextrin_N = mkN "dextrin" "dextrins" ;
+lin dextrocardia_N = mkN "dextrocardia" "dextrocardias" ;
+lin dextrorotary_A = mkAMost "dextrorotary" "dextrorotarily" ;
+lin dextrorotation_N = mkN "dextrorotation" "dextrorotations" ;
+lin dextrorse_A = mkAMost "dextrorse" "dextrorsely" ;
+lin dextrose_N = mkN "dextrose" "dextroses" ;
+lin dextrous_A = mkAMost "dextrous" "dextrously" ;
+lin dhak_N = mkN "dhak" "dhaks" ;
+lin dhawa_N = mkN "dhawa" "dhawas" ;
+lin dhole_N = mkN "dhole" "dholes" ;
+lin dhoti_N = mkN "dhoti" "dhotis" ;
+lin dhow_N = mkN "dhow" "dhows" ;
+lin diabatic_A = mkAMost "diabatic" "diabaticly" ;
+lin diabetes_N = mkN "diabetes" "diabeteses" ;
+lin diabetic_A = mkAMost "diabetic" "diabeticly" ;
+lin diabetic_N = mkN "diabetic" "diabetics" ;
+lin diabolatry_N = mkN "diabolatry" "diabolatries" ;
+lin diabolic_A = mkAMost "diabolic" "diabolicly" ;
+lin diabolical_A = mkAMost "diabolical" "diabolically" ;
+lin diabolism_N = mkN "diabolism" "diabolisms" ;
+lin diachronic_A = mkAMost "diachronic" "diachronicly" ;
+lin diacritic_A = mkAMost "diacritic" "diacriticly" ;
+lin diacritic_N = mkN "diacritic" "diacritics" ;
+lin diacritical_A = mkAMost "diacritical" "diacritically" ;
+lin diadem_N = mkN "diadem" "diadems" ;
+lin diadromous_A = mkAMost "diadromous" "diadromously" ;
+lin diaeresis_N = mkN "diaeresis" "diaereses" ;
+lin diagnosable_A = mkAMost "diagnosable" "diagnosably" ;
+lin diagnose_V = mkV "diagnose" "diagnosed" "diagnosed" ;
+lin diagnosis_N = mkN "diagnosis" "diagnoses" ;
+lin diagnostic_A = mkAMost "diagnostic" "diagnosticly" ;
+lin diagnostician_N = mkN "diagnostician" "diagnosticians" ;
+lin diagonal_A = mkAMost "diagonal" "diagonally" ;
+lin diagonal_N = mkN "diagonal" "diagonals" ;
+lin diagonalizable_A = mkAMost "diagonalizable" "diagonalizably" ;
+lin diagonalization_N = mkN "diagonalization" "diagonalizations" ;
+lin diagram_N = mkN "diagram" "diagrams" ;
+lin diagrammatic_A = mkAMost "diagrammatic" "diagrammaticly" ;
+lin diagrammatical_A = mkAMost "diagrammatical" "diagrammatically" ;
+lin diakinesis_N = mkN "diakinesis" "diakinesises" ;
+lin dial_N = mkN "dial" "dials" ;
+lin dial_dialed_V = mkV "dial" "dialed" "dialed" ;
+lin dial_dialled_V = mkV "dial" "dialled" "dialled" ;
+lin dialect_N = mkN "dialect" "dialects" ;
+lin dialectal_A = mkAMost "dialectal" "dialectally" ;
+lin dialectic_A = mkAMost "dialectic" "dialecticly" ;
+lin dialectic_N = mkN "dialectic" "dialectics" ;
+lin dialectical_A = mkAMost "dialectical" "dialectically" ;
+lin dialectician_N = mkN "dialectician" "dialecticians" ;
+lin dialectics_N = mkN "dialectics" "dialecticses" ;
+lin dialectology_N = mkN "dialectology" "dialectologies" ;
+lin dialogue_N = mkN "dialogue" "dialogues" ;
+lin dialysis_N = mkN "dialysis" "dialysises" ;
+lin dialyzer_N = mkN "dialyzer" "dialyzers" ;
+lin diamagnet_N = mkN "diamagnet" "diamagnets" ;
+lin diamagnetic_A = mkAMost "diamagnetic" "diamagneticly" ;
+lin diamagnetism_N = mkN "diamagnetism" "diamagnetisms" ;
+lin diamante_N = mkN "diamante" "diamantes" ;
+lin diamantine_A = mkAMost "diamantine" "diamantinely" ;
+lin diameter_N = mkN "diameter" "diameters" ;
+lin diametral_A = mkAMost "diametral" "diametrally" ;
+lin diametric_A = mkAMost "diametric" "diametricly" ;
+lin diametrically_Adv = mkAdv "diametrically" ;
+lin diamine_N = mkN "diamine" "diamines" ;
+lin diamond_N = mkN "diamond" "diamonds" ;
+lin diamondback_N = mkN "diamondback" "diamondbacks" ;
+lin dianoetic_A = mkAMost "dianoetic" "dianoeticly" ;
+lin diapason_N = mkN "diapason" "diapasons" ;
+lin diapedesis_N = mkN "diapedesis" "diapedesises" ;
+lin diapensia_N = mkN "diapensia" "diapensias" ;
+lin diaper_N = mkN "diaper" "diapers" ;
+lin diaphanous_A = mkAMost "diaphanous" "diaphanously" ;
+lin diapheromera_N = mkN "diapheromera" "diapheromeras" ;
+lin diaphone_N = mkN "diaphone" "diaphones" ;
+lin diaphoretic_A = mkAMost "diaphoretic" "diaphoreticly" ;
+lin diaphoretic_N = mkN "diaphoretic" "diaphoretics" ;
+lin diaphragm_N = mkN "diaphragm" "diaphragms" ;
+lin diaphyseal_A = mkAMost "diaphyseal" "diaphyseally" ;
+lin diaphysis_N = mkN "diaphysis" "diaphysises" ;
+lin diapir_N = mkN "diapir" "diapirs" ;
+lin diapsid_N = mkN "diapsid" "diapsids" ;
+lin diarchy_N = mkN "diarchy" "diarchies" ;
+lin diarist_N = mkN "diarist" "diarists" ;
+lin diarrhea_N = mkN "diarrhea" "diarrheas" ;
+lin diarrheal_A = mkAMost "diarrheal" "diarrheally" ;
+lin diarrhoea_N = mkN "diarrhoea" "diarrhoeas" ;
+lin diary_N = mkN "diary" "diaries" ;
+lin diaspora_N = mkN "diaspora" "diasporas" ;
+lin diastasis_N = mkN "diastasis" "diastasises" ;
+lin diastema_N = mkN "diastema" "diastemas" ;
+lin diastole_N = mkN "diastole" "diastoles" ;
+lin diastolic_A = mkAMost "diastolic" "diastolicly" ;
+lin diastrophism_N = mkN "diastrophism" "diastrophisms" ;
+lin diathermy_N = mkN "diathermy" "diathermies" ;
+lin diathesis_N = mkN "diathesis" "diathesises" ;
+lin diatom_N = mkN "diatom" "diatoms" ;
+lin diatomic_A = mkAMost "diatomic" "diatomicly" ;
+lin diatonic_A = mkAMost "diatonic" "diatonicly" ;
+lin diatribe_N = mkN "diatribe" "diatribes" ;
+lin diazepam_N = mkN "diazepam" "diazepams" ;
+lin diazo_A = mkA "diazo" "diazoer" "diazoest" "diazoly" ;
+lin diazonium_N = mkN "diazonium" "diazoniums" ;
+lin diazoxide_N = mkN "diazoxide" "diazoxides" ;
+lin dibber_N = mkN "dibber" "dibbers" ;
+lin dibble_N = mkN "dibble" "dibbles" ;
+lin dibble_V = mkV "dibble" "dibbled" "dibbled" ;
+lin dibranchiate_N = mkN "dibranchiate" "dibranchiates" ;
+lin dibs_N = mkN "dibs" "dibses" ;
+lin dibucaine_N = mkN "dibucaine" "dibucaines" ;
+lin dicamptodon_N = mkN "dicamptodon" "dicamptodons" ;
+lin dicarboxylic_A = mkAMost "dicarboxylic" "dicarboxylicly" ;
+lin dice_N = mkN "dice" "dice" ;
+lin dice_V = mkV "dice" "diced" "diced" ;
+lin dice_box_N = mkN "dice-box" "dice-boxes" ;
+lin dicer_N = mkN "dicer" "dicers" ;
+lin dicey_A = mkAMost "dicey" "diceily" ;
+lin dichloride_N = mkN "dichloride" "dichlorides" ;
+lin dichlorodiphenyltrichloroethane_N = mkN "dichlorodiphenyltrichloroethane" "dichlorodiphenyltrichloroethanes" ;
+lin dichondra_N = mkN "dichondra" "dichondras" ;
+lin dichotomization_N = mkN "dichotomization" "dichotomizations" ;
+lin dichotomous_A = mkAMost "dichotomous" "dichotomously" ;
+lin dichotomy_N = mkN "dichotomy" "dichotomies" ;
+lin dichroism_N = mkN "dichroism" "dichroisms" ;
+lin dichromacy_N = mkN "dichromacy" "dichromacies" ;
+lin dichromat_N = mkN "dichromat" "dichromats" ;
+lin dichromatic_A = mkAMost "dichromatic" "dichromaticly" ;
+lin dick_N = mkN "dick" "dicks" ;
+lin dickens_N = mkN "dickens" "IRREG" ;
+lin dicker_V = mkV "dicker" "dickered" "dickered" ;
+lin dickey_N = mkN "dickey" "dickeys" ;
+lin dickeybird_N = mkN "dickeybird" "dickeybirds" ;
+lin dicky_A = mkAMost "dicky" "dickily" ;
+lin dicky_N = mkN "dicky" "dickies" ;
+lin dicky_seat_N = mkN "dicky-seat" "dicky-seats" ;
+lin dickybird_N = mkN "dickybird" "dickybirds" ;
+lin diclinous_A = mkAMost "diclinous" "diclinously" ;
+lin dicloxacillin_N = mkN "dicloxacillin" "dicloxacillins" ;
+lin dicot_N = mkN "dicot" "dicots" ;
+lin dicotyledonous_A = mkAMost "dicotyledonous" "dicotyledonously" ;
+lin dictaphone_N = mkN "dictaphone" "dictaphones" ;
+lin dictate_N = mkN "dictate" "dictates" ;
+lin dictate_V = mkV "dictate" "dictated" "dictated" ;
+lin dictation_N = mkN "dictation" "dictations" ;
+lin dictator_N = mkN "dictator" "dictators" ;
+lin dictatorial_A = mkAMost "dictatorial" "dictatorially" ;
+lin dictatorship_N = mkN "dictatorship" "dictatorships" ;
+lin diction_N = mkN "diction" "dictions" ;
+lin dictionary_N = mkN "dictionary" "dictionaries" ;
+lin dictostylium_N = mkN "dictostylium" "dictostyliums" ;
+lin dictum_N = mkN "dictum" "dictums" ;
+lin dictyopteran_A = mkAMost "dictyopteran" "dictyopteranly" ;
+lin dicumarol_N = mkN "dicumarol" "dicumarols" ;
+lin dicynodont_N = mkN "dicynodont" "dicynodonts" ;
+lin didactic_A = mkAMost "didactic" "didacticly" ;
+lin didactically_Adv = mkAdv "didactically" ;
+lin didacticism_N = mkN "didacticism" "didacticisms" ;
+lin diddle_V = mkV "diddle" "diddled" "diddled" ;
+lin dideoxycytosine_N = mkN "dideoxycytosine" "dideoxycytosines" ;
+lin dideoxyinosine_N = mkN "dideoxyinosine" "dideoxyinosines" ;
+lin die_N = mkN "die" "dies" ;
+lin die_V = mkV "die" "died" "died" ;
+lin die_cast_A = mkAMost "die-cast" "die-castly" ;
+lin die_hard_N = mkN "die-hard" "die-hards" ;
+lin dieback_N = mkN "dieback" "diebacks" ;
+lin diemaker_N = mkN "diemaker" "diemakers" ;
+lin diencephalon_N = mkN "diencephalon" "diencephalons" ;
+lin dieresis_N = mkN "dieresis" "diereses" ;
+lin diesel_N = mkN "diesel" "diesels" ;
+lin diestock_N = mkN "diestock" "diestocks" ;
+lin diestrous_A = mkAMost "diestrous" "diestrously" ;
+lin diestrus_N = mkN "diestrus" "diestruses" ;
+lin diet_N = mkN "diet" "diets" ;
+lin diet_V = mkV "diet" "dieted" "dieted" ;
+lin dietary_A = mkAMost "dietary" "dietarily" ;
+lin dietary_N = mkN "dietary" "dietaries" ;
+lin dieter_N = mkN "dieter" "dieters" ;
+lin dietetics_N = mkN "dietetics" "dietetics" ;
+lin diethylstilbesterol_N = mkN "diethylstilbesterol" "diethylstilbesterols" ;
+lin diethylstilbestrol_N = mkN "diethylstilbestrol" "diethylstilbestrols" ;
+lin dietician_N = mkN "dietician" "dieticians" ;
+lin dietitian_N = mkN "dietitian" "dietitians" ;
+lin differ_V = mkV "differ" "differed" "differed" ;
+lin difference_N = mkN "difference" "differences" ;
+lin different_A = mkAMost "different" "differently" ;
+lin differentia_N = mkN "differentia" "differentias" ;
+lin differentiable_A = mkAMost "differentiable" "differentiably" ;
+lin differential_A = mkAMost "differential" "differentially" ;
+lin differential_N = mkN "differential" "differentials" ;
+lin differentiate_V = mkV "differentiate" "differentiated" "differentiated" ;
+lin differentiation_N = mkN "differentiation" "differentiations" ;
+lin differentiator_N = mkN "differentiator" "differentiators" ;
+lin difficult_A = mkAMost "difficult" "difficultly" ;
+lin difficulty_N = mkN "difficulty" "difficulties" ;
+lin diffidence_N = mkN "diffidence" "diffidences" ;
+lin diffident_A = mkAMost "diffident" "diffidently" ;
+lin difflugia_N = mkN "difflugia" "difflugias" ;
+lin diffract_V = mkV "diffract" "diffracted" "diffracted" ;
+lin diffraction_N = mkN "diffraction" "diffractions" ;
+lin diffuse_A = mkAMost "diffuse" "diffusely" ;
+lin diffuse_V = mkV "diffuse" "diffused" "diffused" ;
+lin diffuseness_N = mkN "diffuseness" "diffusenesses" ;
+lin diffuser_N = mkN "diffuser" "diffusers" ;
+lin diffusion_N = mkN "diffusion" "diffusions" ;
+lin diflunisal_N = mkN "diflunisal" "diflunisals" ;
+lin dig_N = mkN "dig" "digs" ;
+lin dig_V = mkV "dig" "dug" "dug" ;
+lin digest_N = mkN "digest" "digests" ;
+lin digest_V = mkV "digest" "digested" "digested" ;
+lin digester_N = mkN "digester" "digesters" ;
+lin digestibility_N = mkN "digestibility" "digestibilities" ;
+lin digestible_A = mkAMost "digestible" "digestibly" ;
+lin digestion_N = mkN "digestion" "digestions" ;
+lin digestive_A = mkAMost "digestive" "digestively" ;
+lin digestive_N = mkN "digestive" "digestives" ;
+lin digger_N = mkN "digger" "diggers" ;
+lin digging_N = mkN "digging" "diggings" ;
+lin diggings_N = mkN "diggings" "diggingses" ;
+lin dighted_A = mkAMost "dighted" "dightedly" ;
+lin digit_N = mkN "digit" "digits" ;
+lin digital_A = mkAMost "digital" "digitally" ;
+lin digitalis_N = mkN "digitalis" "digitalises" ;
+lin digitalisation_N = mkN "digitalisation" "digitalisations" ;
+lin digitalization_N = mkN "digitalization" "digitalizations" ;
+lin digitate_A = mkAMost "digitate" "digitately" ;
+lin digitigrade_A = mkAMost "digitigrade" "digitigradely" ;
+lin digitization_N = mkN "digitization" "digitizations" ;
+lin digitizer_N = mkN "digitizer" "digitizers" ;
+lin digitoxin_N = mkN "digitoxin" "digitoxins" ;
+lin diglyceride_N = mkN "diglyceride" "diglycerides" ;
+lin dignify_V = mkV "dignify" "dignified" "dignified" ;
+lin dignifying_A = mkAMost "dignifying" "dignifyingly" ;
+lin dignitary_N = mkN "dignitary" "dignitaries" ;
+lin dignity_N = mkN "dignity" "dignities" ;
+lin digoxin_N = mkN "digoxin" "digoxins" ;
+lin digraph_N = mkN "digraph" "digraphs" ;
+lin digress_V = mkV "digress" "digressed" "digressed" ;
+lin digression_N = mkN "digression" "digressions" ;
+lin digressive_A = mkAMost "digressive" "digressively" ;
+lin dihybrid_N = mkN "dihybrid" "dihybrids" ;
+lin dihydrostreptomycin_N = mkN "dihydrostreptomycin" "dihydrostreptomycins" ;
+lin dike_N = mkN "dike" "dikes" ;
+lin dike_V = mkV "dike" "diked" "diked" ;
+lin dilapidated_A = mkAMost "dilapidated" "dilapidatedly" ;
+lin dilapidation_N = mkN "dilapidation" "dilapidations" ;
+lin dilatation_N = mkN "dilatation" "dilatations" ;
+lin dilate_V = mkV "dilate" "dilated" "dilated" ;
+lin dilation_N = mkN "dilation" "dilations" ;
+lin dilator_N = mkN "dilator" "dilators" ;
+lin dilatoriness_N = mkN "dilatoriness" "dilatorinesses" ;
+lin dilatory_A = mkAMost "dilatory" "dilatorily" ;
+lin dildo_N = mkN "dildo" "dildoes" ;
+lin dilemma_N = mkN "dilemma" "dilemmas" ;
+lin dilettante_A = mkAMost "dilettante" "dilettantely" ;
+lin dilettante_N = mkN "dilettante" "dilettantes" ;
+lin diligence_N = mkN "diligence" "diligences" ;
+lin diligent_A = mkAMost "diligent" "diligently" ;
+lin dill_N = mkN "dill" "dills" ;
+lin dillenia_N = mkN "dillenia" "dillenias" ;
+lin dilly_dally_V = mkV "dilly-dally" "dilly-dallied" "dilly-dallied" ;
+lin diltiazem_N = mkN "diltiazem" "diltiazems" ;
+lin dilutant_N = mkN "dilutant" "dilutants" ;
+lin dilute_A = mkAMost "dilute" "dilutely" ;
+lin dilute_V = mkV "dilute" "diluted" "diluted" ;
+lin dilution_N = mkN "dilution" "dilutions" ;
+lin diluvian_A = mkAMost "diluvian" "diluvianly" ;
+lin dim_A = mkA "dim" "dimmer" "dimmest" "dimly" ;
+lin dim_V = mkV "dim" "dimmed" "dimmed" ;
+lin dime_N = mkN "dime" "dimes" ;
+lin dimenhydrinate_N = mkN "dimenhydrinate" "dimenhydrinates" ;
+lin dimension_N = mkN "dimension" "dimensions" ;
+lin dimensional_A = mkAMost "dimensional" "dimensionally" ;
+lin dimensionality_N = mkN "dimensionality" "dimensionalities" ;
+lin dimensioning_A = mkAMost "dimensioning" "dimensioningly" ;
+lin dimer_N = mkN "dimer" "dimers" ;
+lin dimethylglyoxime_N = mkN "dimethylglyoxime" "dimethylglyoximes" ;
+lin dimetrodon_N = mkN "dimetrodon" "dimetrodons" ;
+lin diminish_V = mkV "diminish" "diminished" "diminished" ;
+lin diminuendo_N = mkN "diminuendo" "diminuendos" ;
+lin diminution_N = mkN "diminution" "diminutions" ;
+lin diminutive_A = mkAMost "diminutive" "diminutively" ;
+lin diminutive_N = mkN "diminutive" "diminutives" ;
+lin diminutiveness_N = mkN "diminutiveness" "diminutivenesses" ;
+lin dimity_N = mkN "dimity" "dimities" ;
+lin dimmer_N = mkN "dimmer" "dimmers" ;
+lin dimness_N = mkN "dimness" "dimnesses" ;
+lin dimorphic_A = mkAMost "dimorphic" "dimorphicly" ;
+lin dimorphism_N = mkN "dimorphism" "dimorphisms" ;
+lin dimple_N = mkN "dimple" "dimples" ;
+lin dimple_V = mkV "dimple" "dimpled" "dimpled" ;
+lin dimwit_N = mkN "dimwit" "dimwits" ;
+lin din_N = mkN "din" "dins" ;
+lin din_V = mkV "din" "dinned" "dinned" ;
+lin dinar_N = mkN "dinar" "dinars" ;
+lin dine_V = mkV "dine" "dined" "dined" ;
+lin diner_N = mkN "diner" "diners" ;
+lin dinette_N = mkN "dinette" "dinettes" ;
+lin ding_N = mkN "ding" "dings" ;
+lin ding_dong_Adv = mkAdv "ding-dong" ;
+lin ding_dong_N = mkN "ding-dong" "ding-dongs" ;
+lin dingbat_N = mkN "dingbat" "dingbats" ;
+lin dingdong_Adv = mkAdv "dingdong" ;
+lin dinghy_N = mkN "dinghy" "dinghies" ;
+lin dinginess_N = mkN "dinginess" "dinginesses" ;
+lin dingle_N = mkN "dingle" "dingles" ;
+lin dingo_N = mkN "dingo" "dingoes" ;
+lin dingy_A = mkA "dingy" "dingier" "dingiest" "dingily" ;
+lin dining_N = mkN "dining" "dinings" ;
+lin dining_car_N = mkN "dining-car" "dining-cars" ;
+lin dining_room_N = mkN "dining-room" "dining-rooms" ;
+lin dining_table_N = mkN "dining-table" "dining-tables" ;
+lin dinky_A = mkA "dinky" "dinkier" "dinkiest" "dinkily" ;
+lin dinky_N = mkN "dinky" "dinkies" ;
+lin dinner_N = mkN "dinner" "dinners" ;
+lin dinner_jacket_N = mkN "dinner-jacket" "dinner-jackets" ;
+lin dinner_party_N = mkN "dinner-party" "dinner-parties" ;
+lin dinner_service_N = mkN "dinner-service" "dinner-services" ;
+lin dinner_set_N = mkN "dinner-set" "dinner-sets" ;
+lin dinnertime_N = mkN "dinnertime" "dinnertimes" ;
+lin dinnerware_N = mkN "dinnerware" "dinnerwares" ;
+lin dinoceras_N = mkN "dinoceras" "dinocerases" ;
+lin dinocerate_N = mkN "dinocerate" "dinocerates" ;
+lin dinoflagellate_N = mkN "dinoflagellate" "dinoflagellates" ;
+lin dinosaur_N = mkN "dinosaur" "dinosaurs" ;
+lin dint_N = mkN "dint" "dints" ;
+lin diocesan_A = mkAMost "diocesan" "diocesanly" ;
+lin diocesan_N = mkN "diocesan" "diocesans" ;
+lin diocese_N = mkN "diocese" "dioceses" ;
+lin diode_N = mkN "diode" "diodes" ;
+lin dioecious_A = mkAMost "dioecious" "dioeciously" ;
+lin diol_N = mkN "diol" "diols" ;
+lin dioon_N = mkN "dioon" "dioons" ;
+lin diopter_N = mkN "diopter" "diopters" ;
+lin diorite_N = mkN "diorite" "diorites" ;
+lin dioxide_N = mkN "dioxide" "dioxides" ;
+lin dioxin_N = mkN "dioxin" "dioxins" ;
+lin dip_N = mkN "dip" "dips" ;
+lin dip_V = mkV "dip" "dipped" "dipped" ;
+lin dip_ed_N = mkN "dip ed" "dip eds" ;
+lin diphenhydramine_N = mkN "diphenhydramine" "diphenhydramines" ;
+lin diphenylhydantoin_N = mkN "diphenylhydantoin" "diphenylhydantoins" ;
+lin diphtheria_N = mkN "diphtheria" "diphtherias" ;
+lin diphthong_N = mkN "diphthong" "diphthongs" ;
+lin diplegia_N = mkN "diplegia" "diplegias" ;
+lin diplococcus_N = mkN "diplococcus" "diplococcuses" ;
+lin diplodocus_N = mkN "diplodocus" "diplodocuses" ;
+lin diploid_A = mkAMost "diploid" "diploidly" ;
+lin diploid_N = mkN "diploid" "diploids" ;
+lin diploidy_N = mkN "diploidy" "diploidies" ;
+lin diploma_N = mkN "diploma" "diplomas" ;
+lin diplomacy_N = mkN "diplomacy" "diplomacies" ;
+lin diplomat_N = mkN "diplomat" "diplomats" ;
+lin diplomate_N = mkN "diplomate" "diplomates" ;
+lin diplomatic_A = mkAMost "diplomatic" "diplomatically" ;
+lin diplomatist_N = mkN "diplomatist" "diplomatists" ;
+lin diplopia_N = mkN "diplopia" "diplopias" ;
+lin diplotene_N = mkN "diplotene" "diplotenes" ;
+lin dipolar_A = mkAMost "dipolar" "dipolarly" ;
+lin dipole_N = mkN "dipole" "dipoles" ;
+lin dipper_N = mkN "dipper" "dippers" ;
+lin dipsomania_N = mkN "dipsomania" "dipsomanias" ;
+lin dipsomaniac_N = mkN "dipsomaniac" "dipsomaniacs" ;
+lin dipstick_N = mkN "dipstick" "dipsticks" ;
+lin dipterocarp_N = mkN "dipterocarp" "dipterocarps" ;
+lin dipterous_A = mkAMost "dipterous" "dipterously" ;
+lin diptych_N = mkN "diptych" "diptychs" ;
+lin dir_N = mkN "dir" "dirs" ;
+lin dire_A = mkA "dire" "direr" "direst" "direly" ;
+lin direct_A = mkAMost "direct" "directly" ;
+lin direct_Adv = mkAdv "direct" ;
+lin direct_V = mkV "direct" "directed" "directed" ;
+lin direction_N = mkN "direction" "directions" ;
+lin direction_finder_N = mkN "direction-finder" "direction-finders" ;
+lin directional_A = mkAMost "directional" "directionally" ;
+lin directionality_N = mkN "directionality" "directionalities" ;
+lin directive_N = mkN "directive" "directives" ;
+lin directivity_N = mkN "directivity" "directivities" ;
+lin directness_N = mkN "directness" "directnesses" ;
+lin director_N = mkN "director" "directors" ;
+lin directorate_N = mkN "directorate" "directorates" ;
+lin directorship_N = mkN "directorship" "directorships" ;
+lin directory_N = mkN "directory" "directories" ;
+lin direful_A = mkAMost "direful" "direfully" ;
+lin dirge_N = mkN "dirge" "dirges" ;
+lin dirigible_N = mkN "dirigible" "dirigibles" ;
+lin dirk_N = mkN "dirk" "dirks" ;
+lin dirndl_N = mkN "dirndl" "dirndls" ;
+lin dirt_A = mkA "dirt" "dirter" "dirtest" "dirtly" ;
+lin dirt_N = mkN "dirt" "dirts" ;
+lin dirt_cheap_A = mkAMost "dirt-cheap" "dirt-cheaply" ;
+lin dirt_track_N = mkN "dirt-track" "dirt-tracks" ;
+lin dirtiness_N = mkN "dirtiness" "dirtinesses" ;
+lin dirty_A = mkA "dirty" "dirtier" "dirtiest" "dirtily" ;
+lin dirty_V = mkV "dirty" "dirtied" "dirtied" ;
+lin disa_N = mkN "disa" "disas" ;
+lin disability_N = mkN "disability" "disabilities" ;
+lin disable_V = mkV "disable" "disabled" "disabled" ;
+lin disabled_N = mkN "disabled" "disableds" ;
+lin disablement_N = mkN "disablement" "disablements" ;
+lin disabling_A = mkAMost "disabling" "disablingly" ;
+lin disabuse_V = mkV "disabuse" "disabused" "disabused" ;
+lin disaccharidase_N = mkN "disaccharidase" "disaccharidases" ;
+lin disaccharide_N = mkN "disaccharide" "disaccharides" ;
+lin disadvantage_N = mkN "disadvantage" "disadvantages" ;
+lin disadvantageous_A = mkAMost "disadvantageous" "disadvantageously" ;
+lin disaffected_A = mkAMost "disaffected" "disaffectedly" ;
+lin disaffection_N = mkN "disaffection" "disaffections" ;
+lin disafforest_V = mkV "disafforest" "disafforested" "disafforested" ;
+lin disagree_V = mkV "disagree" "disagreed" "disagreed" ;
+lin disagreeable_A = mkAMost "disagreeable" "disagreeably" ;
+lin disagreeableness_N = mkN "disagreeableness" "disagreeablenesses" ;
+lin disagreement_N = mkN "disagreement" "disagreements" ;
+lin disallow_V = mkV "disallow" "disallowed" "disallowed" ;
+lin disambiguation_N = mkN "disambiguation" "disambiguations" ;
+lin disambiguator_N = mkN "disambiguator" "disambiguators" ;
+lin disappear_V = mkV "disappear" "disappeared" "disappeared" ;
+lin disappearance_N = mkN "disappearance" "disappearances" ;
+lin disappoint_V = mkV "disappoint" "disappointed" "disappointed" ;
+lin disappointedly_Adv = mkAdv "disappointedly" ;
+lin disappointing_A = mkAMost "disappointing" "disappointingly" ;
+lin disappointment_N = mkN "disappointment" "disappointments" ;
+lin disapprobation_N = mkN "disapprobation" "disapprobations" ;
+lin disapproval_N = mkN "disapproval" "disapprovals" ;
+lin disapprove_V = mkV "disapprove" "disapproved" "disapproved" ;
+lin disapprovingly_Adv = mkAdv "disapprovingly" ;
+lin disarm_V = mkV "disarm" "disarmed" "disarmed" ;
+lin disarmament_N = mkN "disarmament" "disarmaments" ;
+lin disarming_N = mkN "disarming" "disarmings" ;
+lin disarrange_V = mkV "disarrange" "disarranged" "disarranged" ;
+lin disarrangement_N = mkN "disarrangement" "disarrangements" ;
+lin disarray_N = mkN "disarray" "disarrays" ;
+lin disarray_V = mkV "disarray" "disarrayed" "disarrayed" ;
+lin disassociate_V = mkV "disassociate" "disassociated" "disassociated" ;
+lin disassociation_N = mkN "disassociation" "disassociations" ;
+lin disaster_N = mkN "disaster" "disasters" ;
+lin disastrous_A = mkAMost "disastrous" "disastrously" ;
+lin disavow_V = mkV "disavow" "disavowed" "disavowed" ;
+lin disavowable_A = mkAMost "disavowable" "disavowably" ;
+lin disavowal_N = mkN "disavowal" "disavowals" ;
+lin disband_V = mkV "disband" "disbanded" "disbanded" ;
+lin disbandment_N = mkN "disbandment" "disbandments" ;
+lin disbarment_N = mkN "disbarment" "disbarments" ;
+lin disbelief_N = mkN "disbelief" "disbeliefs" ;
+lin disbelieve_V = mkV "disbelieve" "disbelieved" "disbelieved" ;
+lin disbeliever_N = mkN "disbeliever" "disbelievers" ;
+lin disbelievingly_Adv = mkAdv "disbelievingly" ;
+lin disbud_V = mkV "disbud" "disbudded" "disbudded" ;
+lin disburden_V = mkV "disburden" "disburdened" "disburdened" ;
+lin disburse_V = mkV "disburse" "disbursed" "disbursed" ;
+lin disbursement_N = mkN "disbursement" "disbursements" ;
+lin disc_N = mkN "disc" "discs" ;
+lin discalced_A = mkAMost "discalced" "discalcedly" ;
+lin discard_N = mkN "discard" "discards" ;
+lin discard_V = mkV "discard" "discarded" "discarded" ;
+lin discern_V = mkV "discern" "discerned" "discerned" ;
+lin discernability_N = mkN "discernability" "discernabilities" ;
+lin discernible_A = mkAMost "discernible" "discernibly" ;
+lin discerning_A = mkAMost "discerning" "discerningly" ;
+lin discernment_N = mkN "discernment" "discernments" ;
+lin discharge_N = mkN "discharge" "discharges" ;
+lin discharge_V = mkV "discharge" "discharged" "discharged" ;
+lin disciform_A = mkAMost "disciform" "disciformly" ;
+lin discina_N = mkN "discina" "discinas" ;
+lin disciple_N = mkN "disciple" "disciples" ;
+lin discipleship_N = mkN "discipleship" "discipleships" ;
+lin disciplinarian_N = mkN "disciplinarian" "disciplinarians" ;
+lin disciplinary_A = mkAMost "disciplinary" "disciplinarily" ;
+lin discipline_N = mkN "discipline" "disciplines" ;
+lin discipline_V = mkV "discipline" "disciplined" "disciplined" ;
+lin disclaim_V = mkV "disclaim" "disclaimed" "disclaimed" ;
+lin disclaimer_N = mkN "disclaimer" "disclaimers" ;
+lin disclose_V = mkV "disclose" "disclosed" "disclosed" ;
+lin disclosure_N = mkN "disclosure" "disclosures" ;
+lin disco_N = mkN "disco" "discos" ;
+lin discography_N = mkN "discography" "discographies" ;
+lin discoid_A = mkAMost "discoid" "discoidly" ;
+lin discoloration_N = mkN "discoloration" "discolorations" ;
+lin discolour_V = mkV "discolour" "discoloured" "discoloured" ;
+lin discolouration_N = mkN "discolouration" "discolourations" ;
+lin discombobulated_A = mkAMost "discombobulated" "discombobulatedly" ;
+lin discomfit_V = mkV "discomfit" "discomfited" "discomfited" ;
+lin discomfiture_N = mkN "discomfiture" "discomfitures" ;
+lin discomfort_N = mkN "discomfort" "discomforts" ;
+lin discommode_V = mkV "discommode" "discommoded" "discommoded" ;
+lin discompose_V = mkV "discompose" "discomposed" "discomposed" ;
+lin discomposure_N = mkN "discomposure" "discomposures" ;
+lin discomycete_N = mkN "discomycete" "discomycetes" ;
+lin discomycetous_A = mkAMost "discomycetous" "discomycetously" ;
+lin disconcert_V = mkV "disconcert" "disconcerted" "disconcerted" ;
+lin disconcerting_A = mkAMost "disconcerting" "disconcertingly" ;
+lin disconfirming_A = mkAMost "disconfirming" "disconfirmingly" ;
+lin disconnect_V = mkV "disconnect" "disconnected" "disconnected" ;
+lin disconnection_N = mkN "disconnection" "disconnections" ;
+lin disconsolate_A = mkAMost "disconsolate" "disconsolately" ;
+lin discontent_N = mkN "discontent" "discontents" ;
+lin discontent_V = mkV "discontent" "discontented" "discontented" ;
+lin discontentedly_Adv = mkAdv "discontentedly" ;
+lin discontentment_N = mkN "discontentment" "discontentments" ;
+lin discontinuance_N = mkN "discontinuance" "discontinuances" ;
+lin discontinue_V = mkV "discontinue" "discontinued" "discontinued" ;
+lin discontinuity_N = mkN "discontinuity" "discontinuities" ;
+lin discontinuous_A = mkAMost "discontinuous" "discontinuously" ;
+lin discord_N = mkN "discord" "discords" ;
+lin discordance_N = mkN "discordance" "discordances" ;
+lin discordant_A = mkAMost "discordant" "discordantly" ;
+lin discorporate_A = mkAMost "discorporate" "discorporately" ;
+lin discotheque_N = mkN "discotheque" "discotheques" ;
+lin discount_N = mkN "discount" "discounts" ;
+lin discount_V = mkV "discount" "discounted" "discounted" ;
+lin discountenance_V = mkV "discountenance" "discountenanced" "discountenanced" ;
+lin discourage_V = mkV "discourage" "discouraged" "discouraged" ;
+lin discouragement_N = mkN "discouragement" "discouragements" ;
+lin discouraging_A = mkAMost "discouraging" "discouragingly" ;
+lin discourse_N = mkN "discourse" "discourses" ;
+lin discourse_V = mkV "discourse" "discoursed" "discoursed" ;
+lin discourteous_A = mkAMost "discourteous" "discourteously" ;
+lin discourtesy_N = mkN "discourtesy" "discourtesies" ;
+lin discover_V = mkV "discover" "discovered" "discovered" ;
+lin discoverer_N = mkN "discoverer" "discoverers" ;
+lin discovery_N = mkN "discovery" "discoveries" ;
+lin discredit_N = mkN "discredit" "discredits" ;
+lin discredit_V = mkV "discredit" "discredited" "discredited" ;
+lin discreditable_A = mkAMost "discreditable" "discreditably" ;
+lin discreet_A = mkAMost "discreet" "discreetly" ;
+lin discrepancy_N = mkN "discrepancy" "discrepancies" ;
+lin discrepant_A = mkAMost "discrepant" "discrepantly" ;
+lin discrete_A = mkAMost "discrete" "discretely" ;
+lin discreteness_N = mkN "discreteness" "discretenesses" ;
+lin discretion_N = mkN "discretion" "discretions" ;
+lin discretionary_A = mkAMost "discretionary" "discretionarily" ;
+lin discriminable_A = mkAMost "discriminable" "discriminably" ;
+lin discriminate_A = mkAMost "discriminate" "discriminately" ;
+lin discriminate_V = mkV "discriminate" "discriminated" "discriminated" ;
+lin discrimination_N = mkN "discrimination" "discriminations" ;
+lin discriminative_A = mkAMost "discriminative" "discriminatively" ;
+lin discriminatory_A = mkAMost "discriminatory" "discriminatorily" ;
+lin discursive_A = mkAMost "discursive" "discursively" ;
+lin discursiveness_N = mkN "discursiveness" "discursivenesses" ;
+lin discus_N = mkN "discus" "discuses" ;
+lin discuss_V = mkV "discuss" "discussed" "discussed" ;
+lin discussant_N = mkN "discussant" "discussants" ;
+lin discussion_N = mkN "discussion" "discussions" ;
+lin disdain_N = mkN "disdain" "disdains" ;
+lin disdain_V = mkV "disdain" "disdained" "disdained" ;
+lin disdainful_A = mkAMost "disdainful" "disdainfully" ;
+lin disease_N = mkN "disease" "diseases" ;
+lin diseased_A = mkAMost "diseased" "diseasedly" ;
+lin disembark_V = mkV "disembark" "disembarked" "disembarked" ;
+lin disembarkation_N = mkN "disembarkation" "disembarkations" ;
+lin disembarrass_V = mkV "disembarrass" "disembarrassed" "disembarrassed" ;
+lin disembarrassment_N = mkN "disembarrassment" "disembarrassments" ;
+lin disembody_V = mkV "disembody" "disembodied" "disembodied" ;
+lin disembowel_V = mkV "disembowel" "disembowelled" "disembowelled" ;
+lin disembowelment_N = mkN "disembowelment" "disembowelments" ;
+lin disenchant_V = mkV "disenchant" "disenchanted" "disenchanted" ;
+lin disenchanting_A = mkAMost "disenchanting" "disenchantingly" ;
+lin disenchantment_N = mkN "disenchantment" "disenchantments" ;
+lin disencumber_V = mkV "disencumber" "disencumbered" "disencumbered" ;
+lin disenfranchise_V = mkV "disenfranchise" "disenfranchised" "disenfranchised" ;
+lin disenfranchisement_N = mkN "disenfranchisement" "disenfranchisements" ;
+lin disengage_V = mkV "disengage" "disengaged" "disengaged" ;
+lin disengagement_N = mkN "disengagement" "disengagements" ;
+lin disentangle_V = mkV "disentangle" "disentangled" "disentangled" ;
+lin disentanglement_N = mkN "disentanglement" "disentanglements" ;
+lin disentangler_N = mkN "disentangler" "disentanglers" ;
+lin disequilibrium_N = mkN "disequilibrium" "disequilibriums" ;
+lin disestablish_V = mkV "disestablish" "disestablished" "disestablished" ;
+lin disestablishment_N = mkN "disestablishment" "disestablishments" ;
+lin disesteem_N = mkN "disesteem" "disesteems" ;
+lin disfavor_N = mkN "disfavor" "disfavors" ;
+lin disfavour_N = mkN "disfavour" "disfavours" ;
+lin disfavour_V = mkV "disfavour" "disfavoured" "disfavoured" ;
+lin disfigure_V = mkV "disfigure" "disfigured" "disfigured" ;
+lin disfigurement_N = mkN "disfigurement" "disfigurements" ;
+lin disfluency_N = mkN "disfluency" "disfluencies" ;
+lin disforest_V = mkV "disforest" "disforested" "disforested" ;
+lin disfranchise_V = mkV "disfranchise" "disfranchised" "disfranchised" ;
+lin disfranchisement_N = mkN "disfranchisement" "disfranchisements" ;
+lin disgorge_V = mkV "disgorge" "disgorged" "disgorged" ;
+lin disgrace_N = mkN "disgrace" "disgraces" ;
+lin disgrace_V = mkV "disgrace" "disgraced" "disgraced" ;
+lin disgraceful_A = mkAMost "disgraceful" "disgracefully" ;
+lin disgruntled_A = mkAMost "disgruntled" "disgruntledly" ;
+lin disgruntlement_N = mkN "disgruntlement" "disgruntlements" ;
+lin disguise_N = mkN "disguise" "disguises" ;
+lin disguise_V = mkV "disguise" "disguised" "disguised" ;
+lin disgust_N = mkN "disgust" "disgusts" ;
+lin disgust_V = mkV "disgust" "disgusted" "disgusted" ;
+lin disgustedly_Adv = mkAdv "disgustedly" ;
+lin disgusting_A = mkAMost "disgusting" "disgustingly" ;
+lin disgustingness_N = mkN "disgustingness" "disgustingnesses" ;
+lin dish_N = mkN "dish" "dishes" ;
+lin dish_V = mkV "dish" "dished" "dished" ;
+lin dishabille_N = mkN "dishabille" "dishabilles" ;
+lin disharmonious_A = mkAMost "disharmonious" "disharmoniously" ;
+lin disharmony_N = mkN "disharmony" "disharmonies" ;
+lin dishcloth_N = mkN "dishcloth" "dishcloths" ;
+lin dishearten_V = mkV "dishearten" "disheartened" "disheartened" ;
+lin disheartenment_N = mkN "disheartenment" "disheartenments" ;
+lin disheveled_A = mkAMost "disheveled" "disheveledly" ;
+lin dishevelled_A = mkAMost "dishevelled" "dishevelledly" ;
+lin dishful_N = mkN "dishful" "dishfuls" ;
+lin dishonest_A = mkAMost "dishonest" "dishonestly" ;
+lin dishonesty_N = mkN "dishonesty" "dishonesties" ;
+lin dishonor_N = mkN "dishonor" "dishonors" ;
+lin dishonorable_A = mkAMost "dishonorable" "dishonorably" ;
+lin dishonorableness_N = mkN "dishonorableness" "dishonorablenesses" ;
+lin dishonour_N = mkN "dishonour" "dishonours" ;
+lin dishonour_V = mkV "dishonour" "dishonoured" "dishonoured" ;
+lin dishonourable_A = mkAMost "dishonourable" "dishonourably" ;
+lin dishpan_N = mkN "dishpan" "dishpans" ;
+lin dishrag_N = mkN "dishrag" "dishrags" ;
+lin dishtowel_N = mkN "dishtowel" "dishtowels" ;
+lin dishwasher_N = mkN "dishwasher" "dishwashers" ;
+lin dishwashing_N = mkN "dishwashing" "dishwashings" ;
+lin dishwater_N = mkN "dishwater" "dishwaters" ;
+lin dishy_A = mkA "dishy" "dishier" "dishiest" "dishily" ;
+lin disillusion_N = mkN "disillusion" "disillusions" ;
+lin disillusion_V = mkV "disillusion" "disillusioned" "disillusioned" ;
+lin disillusionment_N = mkN "disillusionment" "disillusionments" ;
+lin disincentive_N = mkN "disincentive" "disincentives" ;
+lin disinclination_N = mkN "disinclination" "disinclinations" ;
+lin disincline_V = mkV "disincline" "disinclined" "disinclined" ;
+lin disinfect_V = mkV "disinfect" "disinfected" "disinfected" ;
+lin disinfectant_A = mkAMost "disinfectant" "disinfectantly" ;
+lin disinfectant_N = mkN "disinfectant" "disinfectants" ;
+lin disinfection_N = mkN "disinfection" "disinfections" ;
+lin disinfest_V = mkV "disinfest" "disinfested" "disinfested" ;
+lin disinfestation_N = mkN "disinfestation" "disinfestations" ;
+lin disinflation_N = mkN "disinflation" "disinflations" ;
+lin disinformation_N = mkN "disinformation" "disinformations" ;
+lin disingenuous_A = mkAMost "disingenuous" "disingenuously" ;
+lin disingenuousness_N = mkN "disingenuousness" "disingenuousnesses" ;
+lin disinherit_V = mkV "disinherit" "disinherited" "disinherited" ;
+lin disinheritance_N = mkN "disinheritance" "disinheritances" ;
+lin disintegrate_V = mkV "disintegrate" "disintegrated" "disintegrated" ;
+lin disintegration_N = mkN "disintegration" "disintegrations" ;
+lin disintegrative_A = mkAMost "disintegrative" "disintegratively" ;
+lin disinter_V = mkV "disinter" "disinterred" "disinterred" ;
+lin disinterest_N = mkN "disinterest" "disinterests" ;
+lin disinterested_A = mkAMost "disinterested" "disinterestedly" ;
+lin disinterestedness_N = mkN "disinterestedness" "disinterestednesses" ;
+lin disinterment_N = mkN "disinterment" "disinterments" ;
+lin disinvestment_N = mkN "disinvestment" "disinvestments" ;
+lin disjoined_A = mkAMost "disjoined" "disjoinedly" ;
+lin disjoint_A = mkAMost "disjoint" "disjointly" ;
+lin disjoint_V = mkV "disjoint" "disjointed" "disjointed" ;
+lin disjointedly_Adv = mkAdv "disjointedly" ;
+lin disjointedness_N = mkN "disjointedness" "disjointednesses" ;
+lin disjunct_A = mkAMost "disjunct" "disjunctly" ;
+lin disjunction_N = mkN "disjunction" "disjunctions" ;
+lin disjunctive_A = mkAMost "disjunctive" "disjunctively" ;
+lin disk_N = mkN "disk" "disks" ;
+lin diskette_N = mkN "diskette" "diskettes" ;
+lin dislikable_A = mkAMost "dislikable" "dislikably" ;
+lin dislike_N = mkN "dislike" "dislikes" ;
+lin dislike_V = mkV "dislike" "disliked" "disliked" ;
+lin dislocate_V = mkV "dislocate" "dislocated" "dislocated" ;
+lin dislocation_N = mkN "dislocation" "dislocations" ;
+lin dislodge_V = mkV "dislodge" "dislodged" "dislodged" ;
+lin dislodgement_N = mkN "dislodgement" "dislodgements" ;
+lin dislodgment_N = mkN "dislodgment" "dislodgments" ;
+lin disloyal_A = mkAMost "disloyal" "disloyally" ;
+lin disloyalty_N = mkN "disloyalty" "disloyalties" ;
+lin dismal_A = mkAMost "dismal" "dismally" ;
+lin dismantle_V = mkV "dismantle" "dismantled" "dismantled" ;
+lin dismantlement_N = mkN "dismantlement" "dismantlements" ;
+lin dismantling_N = mkN "dismantling" "dismantlings" ;
+lin dismay_N = mkN "dismay" "dismays" ;
+lin dismay_V = mkV "dismay" "dismayed" "dismayed" ;
+lin dismember_V = mkV "dismember" "dismembered" "dismembered" ;
+lin dismemberment_N = mkN "dismemberment" "dismemberments" ;
+lin dismiss_V = mkV "dismiss" "dismissed" "dismissed" ;
+lin dismissal_N = mkN "dismissal" "dismissals" ;
+lin dismissible_A = mkAMost "dismissible" "dismissibly" ;
+lin dismissive_A = mkAMost "dismissive" "dismissively" ;
+lin dismount_N = mkN "dismount" "dismounts" ;
+lin dismount_V = mkV "dismount" "dismounted" "dismounted" ;
+lin disobedience_N = mkN "disobedience" "disobediences" ;
+lin disobedient_A = mkAMost "disobedient" "disobediently" ;
+lin disobey_V = mkV "disobey" "disobeyed" "disobeyed" ;
+lin disoblige_V = mkV "disoblige" "disobliged" "disobliged" ;
+lin disobliging_A = mkAMost "disobliging" "disobligingly" ;
+lin disorder_N = mkN "disorder" "disorders" ;
+lin disorder_V = mkV "disorder" "disordered" "disordered" ;
+lin disorderliness_N = mkN "disorderliness" "disorderlinesses" ;
+lin disorderly_A = mkAMost "disorderly" "disorderlily" ;
+lin disorganization_N = mkN "disorganization" "disorganizations" ;
+lin disorganize_V = mkV "disorganize" "disorganized" "disorganized" ;
+lin disorient_V = mkV "disorient" "disoriented" "disoriented" ;
+lin disorientate_V = mkV "disorientate" "disorientated" "disorientated" ;
+lin disorientation_N = mkN "disorientation" "disorientations" ;
+lin disorienting_A = mkAMost "disorienting" "disorientingly" ;
+lin disown_V = mkV "disown" "disowned" "disowned" ;
+lin disownment_N = mkN "disownment" "disownments" ;
+lin disparage_V = mkV "disparage" "disparaged" "disparaged" ;
+lin disparagement_N = mkN "disparagement" "disparagements" ;
+lin disparagingly_Adv = mkAdv "disparagingly" ;
+lin disparate_A = mkAMost "disparate" "disparately" ;
+lin disparateness_N = mkN "disparateness" "disparatenesses" ;
+lin disparity_N = mkN "disparity" "disparities" ;
+lin dispassion_N = mkN "dispassion" "dispassions" ;
+lin dispassionate_A = mkAMost "dispassionate" "dispassionately" ;
+lin dispassionateness_N = mkN "dispassionateness" "dispassionatenesses" ;
+lin dispatch_N = mkN "dispatch" "dispatches" ;
+lin dispatch_V = mkV "dispatch" "dispatched" "dispatched" ;
+lin dispatch_box_N = mkN "dispatch-box" "dispatch-boxes" ;
+lin dispatch_rider_N = mkN "dispatch-rider" "dispatch-riders" ;
+lin dispatcher_N = mkN "dispatcher" "dispatchers" ;
+lin dispel_V = mkV "dispel" "dispelled" "dispelled" ;
+lin dispensability_N = mkN "dispensability" "dispensabilities" ;
+lin dispensable_A = mkAMost "dispensable" "dispensably" ;
+lin dispensary_N = mkN "dispensary" "dispensaries" ;
+lin dispensation_N = mkN "dispensation" "dispensations" ;
+lin dispense_V = mkV "dispense" "dispensed" "dispensed" ;
+lin dispenser_N = mkN "dispenser" "dispensers" ;
+lin dispersal_N = mkN "dispersal" "dispersals" ;
+lin disperse_V = mkV "disperse" "dispersed" "dispersed" ;
+lin dispersion_N = mkN "dispersion" "dispersions" ;
+lin dispirit_V = mkV "dispirit" "dispirited" "dispirited" ;
+lin dispiritedly_Adv = mkAdv "dispiritedly" ;
+lin displace_V = mkV "displace" "displaced" "displaced" ;
+lin displacement_N = mkN "displacement" "displacements" ;
+lin display_N = mkN "display" "displays" ;
+lin display_V = mkV "display" "displayed" "displayed" ;
+lin displease_V = mkV "displease" "displeased" "displeased" ;
+lin displeasing_A = mkAMost "displeasing" "displeasingly" ;
+lin displeasure_N = mkN "displeasure" "displeasures" ;
+lin disport_V = mkV "disport" "disported" "disported" ;
+lin disposable_A = mkAMost "disposable" "disposably" ;
+lin disposable_N = mkN "disposable" "disposables" ;
+lin disposal_N = mkN "disposal" "disposals" ;
+lin dispose_V = mkV "dispose" "disposed" "disposed" ;
+lin disposition_N = mkN "disposition" "dispositions" ;
+lin dispossess_V = mkV "dispossess" "dispossessed" "dispossessed" ;
+lin dispossession_N = mkN "dispossession" "dispossessions" ;
+lin disproof_N = mkN "disproof" "disproofs" ;
+lin disproportion_N = mkN "disproportion" "disproportions" ;
+lin disproportionate_A = mkAMost "disproportionate" "disproportionately" ;
+lin disprove_V = mkV "disprove" "disproved" "disproved" ;
+lin disputable_A = mkAMost "disputable" "disputably" ;
+lin disputant_N = mkN "disputant" "disputants" ;
+lin disputation_N = mkN "disputation" "disputations" ;
+lin disputatious_A = mkAMost "disputatious" "disputatiously" ;
+lin dispute_N = mkN "dispute" "disputes" ;
+lin dispute_V = mkV "dispute" "disputed" "disputed" ;
+lin disqualification_N = mkN "disqualification" "disqualifications" ;
+lin disqualify_V = mkV "disqualify" "disqualified" "disqualified" ;
+lin disquiet_N = mkN "disquiet" "disquiets" ;
+lin disquiet_V = mkV "disquiet" "disquieted" "disquieted" ;
+lin disquieting_A = mkAMost "disquieting" "disquietingly" ;
+lin disquietude_N = mkN "disquietude" "disquietudes" ;
+lin disquisition_N = mkN "disquisition" "disquisitions" ;
+lin disregard_N = mkN "disregard" "disregards" ;
+lin disregard_V = mkV "disregard" "disregarded" "disregarded" ;
+lin disrepair_N = mkN "disrepair" "disrepairs" ;
+lin disreputable_A = mkAMost "disreputable" "disreputably" ;
+lin disrepute_N = mkN "disrepute" "disreputes" ;
+lin disrespect_N = mkN "disrespect" "disrespects" ;
+lin disrespectful_A = mkAMost "disrespectful" "disrespectfully" ;
+lin disrobe_V = mkV "disrobe" "disrobed" "disrobed" ;
+lin disrupt_V = mkV "disrupt" "disrupted" "disrupted" ;
+lin disruption_N = mkN "disruption" "disruptions" ;
+lin disruptive_A = mkAMost "disruptive" "disruptively" ;
+lin dissatisfaction_N = mkN "dissatisfaction" "dissatisfactions" ;
+lin dissatisfy_V = mkV "dissatisfy" "dissatisfied" "dissatisfied" ;
+lin dissect_V = mkV "dissect" "dissected" "dissected" ;
+lin dissection_N = mkN "dissection" "dissections" ;
+lin dissemble_V = mkV "dissemble" "dissembled" "dissembled" ;
+lin dissembler_N = mkN "dissembler" "dissemblers" ;
+lin disseminate_V = mkV "disseminate" "disseminated" "disseminated" ;
+lin dissemination_N = mkN "dissemination" "disseminations" ;
+lin dissension_N = mkN "dissension" "dissensions" ;
+lin dissent_N = mkN "dissent" "dissents" ;
+lin dissent_V = mkV "dissent" "dissented" "dissented" ;
+lin dissenter_N = mkN "dissenter" "dissenters" ;
+lin dissentient_A = mkAMost "dissentient" "dissentiently" ;
+lin dissentious_A = mkAMost "dissentious" "dissentiously" ;
+lin dissertation_N = mkN "dissertation" "dissertations" ;
+lin disservice_N = mkN "disservice" "disservices" ;
+lin dissever_V = mkV "dissever" "dissevered" "dissevered" ;
+lin dissidence_N = mkN "dissidence" "dissidences" ;
+lin dissident_A = mkAMost "dissident" "dissidently" ;
+lin dissident_N = mkN "dissident" "dissidents" ;
+lin dissilience_N = mkN "dissilience" "dissiliences" ;
+lin dissilient_A = mkAMost "dissilient" "dissiliently" ;
+lin dissimilar_A = mkAMost "dissimilar" "dissimilarly" ;
+lin dissimilarity_N = mkN "dissimilarity" "dissimilarities" ;
+lin dissimilation_N = mkN "dissimilation" "dissimilations" ;
+lin dissimilitude_N = mkN "dissimilitude" "dissimilitudes" ;
+lin dissimulate_V = mkV "dissimulate" "dissimulated" "dissimulated" ;
+lin dissimulation_N = mkN "dissimulation" "dissimulations" ;
+lin dissimulative_A = mkAMost "dissimulative" "dissimulatively" ;
+lin dissipate_V = mkV "dissipate" "dissipated" "dissipated" ;
+lin dissipation_N = mkN "dissipation" "dissipations" ;
+lin dissociable_A = mkAMost "dissociable" "dissociably" ;
+lin dissociate_V = mkV "dissociate" "dissociated" "dissociated" ;
+lin dissociation_N = mkN "dissociation" "dissociations" ;
+lin dissociative_A = mkAMost "dissociative" "dissociatively" ;
+lin dissolubility_N = mkN "dissolubility" "dissolubilities" ;
+lin dissoluble_A = mkAMost "dissoluble" "dissolubly" ;
+lin dissolute_A = mkAMost "dissolute" "dissolutely" ;
+lin dissoluteness_N = mkN "dissoluteness" "dissolutenesses" ;
+lin dissolution_N = mkN "dissolution" "dissolutions" ;
+lin dissolvable_A = mkAMost "dissolvable" "dissolvably" ;
+lin dissolve_N = mkN "dissolve" "dissolves" ;
+lin dissolve_V = mkV "dissolve" "dissolved" "dissolved" ;
+lin dissolving_N = mkN "dissolving" "dissolvings" ;
+lin dissonance_N = mkN "dissonance" "dissonances" ;
+lin dissonant_A = mkAMost "dissonant" "dissonantly" ;
+lin dissuade_V = mkV "dissuade" "dissuaded" "dissuaded" ;
+lin dissuasion_N = mkN "dissuasion" "dissuasions" ;
+lin dissuasive_A = mkAMost "dissuasive" "dissuasively" ;
+lin dissyllable_N = mkN "dissyllable" "dissyllables" ;
+lin distaff_N = mkN "distaff" "distaffs" ;
+lin distal_A = mkAMost "distal" "distally" ;
+lin distance_N = mkN "distance" "distances" ;
+lin distance_V = mkV "distance" "distanced" "distanced" ;
+lin distant_A = mkAMost "distant" "distantly" ;
+lin distaste_N = mkN "distaste" "distastes" ;
+lin distasteful_A = mkAMost "distasteful" "distastefully" ;
+lin distastefulness_N = mkN "distastefulness" "distastefulnesses" ;
+lin distemper_N = mkN "distemper" "distempers" ;
+lin distemper_V = mkV "distemper" "distempered" "distempered" ;
+lin distend_V = mkV "distend" "distended" "distended" ;
+lin distensible_A = mkAMost "distensible" "distensibly" ;
+lin distension_N = mkN "distension" "distensions" ;
+lin distention_N = mkN "distention" "distentions" ;
+lin distil_V = mkV "distil" "distilled" "distilled" ;
+lin distillate_N = mkN "distillate" "distillates" ;
+lin distillation_N = mkN "distillation" "distillations" ;
+lin distiller_N = mkN "distiller" "distillers" ;
+lin distillery_N = mkN "distillery" "distilleries" ;
+lin distinct_A = mkAMost "distinct" "distinctly" ;
+lin distinction_N = mkN "distinction" "distinctions" ;
+lin distinctive_A = mkAMost "distinctive" "distinctively" ;
+lin distinctiveness_N = mkN "distinctiveness" "distinctivenesses" ;
+lin distinctness_N = mkN "distinctness" "distinctnesses" ;
+lin distinguish_V = mkV "distinguish" "distinguished" "distinguished" ;
+lin distinguishable_A = mkAMost "distinguishable" "distinguishably" ;
+lin distort_V = mkV "distort" "distorted" "distorted" ;
+lin distortable_A = mkAMost "distortable" "distortably" ;
+lin distortion_N = mkN "distortion" "distortions" ;
+lin distortionist_N = mkN "distortionist" "distortionists" ;
+lin distract_V = mkV "distract" "distracted" "distracted" ;
+lin distractedly_Adv = mkAdv "distractedly" ;
+lin distraction_N = mkN "distraction" "distractions" ;
+lin distrain_V = mkV "distrain" "distrained" "distrained" ;
+lin distraint_N = mkN "distraint" "distraints" ;
+lin distrait_A = mkAMost "distrait" "distraitly" ;
+lin distraught_A = mkAMost "distraught" "distraughtly" ;
+lin distress_N = mkN "distress" "distresses" ;
+lin distress_V = mkV "distress" "distressed" "distressed" ;
+lin distressful_A = mkAMost "distressful" "distressfully" ;
+lin distressing_A = mkAMost "distressing" "distressingly" ;
+lin distributary_N = mkN "distributary" "distributaries" ;
+lin distribute_V = mkV "distribute" "distributed" "distributed" ;
+lin distribution_N = mkN "distribution" "distributions" ;
+lin distributional_A = mkAMost "distributional" "distributionally" ;
+lin distributive_A = mkAMost "distributive" "distributively" ;
+lin distributor_N = mkN "distributor" "distributors" ;
+lin district_N = mkN "district" "districts" ;
+lin distrust_N = mkN "distrust" "distrusts" ;
+lin distrust_V = mkV "distrust" "distrusted" "distrusted" ;
+lin distrustful_A = mkAMost "distrustful" "distrustfully" ;
+lin distrustfulness_N = mkN "distrustfulness" "distrustfulnesses" ;
+lin disturb_V = mkV "disturb" "disturbed" "disturbed" ;
+lin disturbance_N = mkN "disturbance" "disturbances" ;
+lin disturber_N = mkN "disturber" "disturbers" ;
+lin disturbingly_Adv = mkAdv "disturbingly" ;
+lin disulfiram_N = mkN "disulfiram" "disulfirams" ;
+lin disunion_N = mkN "disunion" "disunions" ;
+lin disunite_V = mkV "disunite" "disunited" "disunited" ;
+lin disunity_N = mkN "disunity" "disunities" ;
+lin disuse_N = mkN "disuse" "disuses" ;
+lin disused_A = mkAMost "disused" "disusedly" ;
+lin disyllabic_A = mkAMost "disyllabic" "disyllabicly" ;
+lin disyllable_N = mkN "disyllable" "disyllables" ;
+lin dita_N = mkN "dita" "ditas" ;
+lin ditch_N = mkN "ditch" "ditches" ;
+lin ditch_V = mkV "ditch" "ditched" "ditched" ;
+lin dither_N = mkN "dither" "dithers" ;
+lin dither_V = mkV "dither" "dithered" "dithered" ;
+lin dithering_N = mkN "dithering" "ditherings" ;
+lin dithyramb_N = mkN "dithyramb" "dithyrambs" ;
+lin dithyrambic_A = mkAMost "dithyrambic" "dithyrambicly" ;
+lin ditto_N = mkN "ditto" "ditti" ;
+lin ditty_N = mkN "ditty" "ditties" ;
+lin diuresis_N = mkN "diuresis" "diuresises" ;
+lin diurnal_A = mkAMost "diurnal" "diurnally" ;
+lin divagate_V = mkV "divagate" "divagated" "divagated" ;
+lin divagation_N = mkN "divagation" "divagations" ;
+lin divan_N = mkN "divan" "divans" ;
+lin divan_bed_N = mkN "divan-bed" "divan-beds" ;
+lin divarication_N = mkN "divarication" "divarications" ;
+lin dive_N = mkN "dive" "dives" ;
+lin dive_bomb_V = mkV "dive-bomb" "dive-bombed" "dive-bombed" ;
+lin dive_bomber_N = mkN "dive-bomber" "dive-bombers" ;
+lin dive_dived_V = mkV "dive" "dived" "dived" ;
+lin dive_dove_V = mkV "dive" "dove" "dived" ;
+lin diver_N = mkN "diver" "divers" ;
+lin diverge_V = mkV "diverge" "diverged" "diverged" ;
+lin divergence_N = mkN "divergence" "divergences" ;
+lin divergency_N = mkN "divergency" "divergencies" ;
+lin divergent_A = mkAMost "divergent" "divergently" ;
+lin divers_A = mkAMost "divers" "diversly" ;
+lin diverse_A = mkAMost "diverse" "diversely" ;
+lin diverseness_N = mkN "diverseness" "diversenesses" ;
+lin diversification_N = mkN "diversification" "diversifications" ;
+lin diversify_V = mkV "diversify" "diversified" "diversified" ;
+lin diversion_N = mkN "diversion" "diversions" ;
+lin diversionary_A = mkAMost "diversionary" "diversionarily" ;
+lin diversionist_N = mkN "diversionist" "diversionists" ;
+lin diversity_N = mkN "diversity" "diversities" ;
+lin divert_V = mkV "divert" "diverted" "diverted" ;
+lin diverticulitis_N = mkN "diverticulitis" "diverticulitises" ;
+lin diverticulosis_N = mkN "diverticulosis" "diverticulosises" ;
+lin diverticulum_N = mkN "diverticulum" "diverticulums" ;
+lin divertimento_N = mkN "divertimento" "divertimentoes" ;
+lin divest_V = mkV "divest" "divested" "divested" ;
+lin divestiture_N = mkN "divestiture" "divestitures" ;
+lin dividable_A = mkAMost "dividable" "dividably" ;
+lin divide_N = mkN "divide" "divides" ;
+lin divide_V = mkV "divide" "divided" "divided" ;
+lin dividend_N = mkN "dividend" "dividends" ;
+lin dividend_warrant_N = mkN "dividend-warrant" "dividend-warrants" ;
+lin divider_N = mkN "divider" "dividers" ;
+lin divination_N = mkN "divination" "divinations" ;
+lin divinatory_A = mkAMost "divinatory" "divinatorily" ;
+lin divine_A = mkAMost "divine" "divinely" ;
+lin divine_N = mkN "divine" "divines" ;
+lin divine_V = mkV "divine" "divined" "divined" ;
+lin diviner_N = mkN "diviner" "diviners" ;
+lin diving_N = mkN "diving" "divings" ;
+lin diving_bell_N = mkN "diving-bell" "diving-bells" ;
+lin diving_board_N = mkN "diving-board" "diving-boards" ;
+lin diving_dress_N = mkN "diving-dress" "diving-dresses" ;
+lin diving_suit_N = mkN "diving-suit" "diving-suits" ;
+lin divinity_N = mkN "divinity" "divinities" ;
+lin divisibility_N = mkN "divisibility" "divisibilities" ;
+lin divisible_A = mkAMost "divisible" "divisibly" ;
+lin division_N = mkN "division" "divisions" ;
+lin divisional_A = mkAMost "divisional" "divisionally" ;
+lin divisor_N = mkN "divisor" "divisors" ;
+lin divorce_N = mkN "divorce" "divorces" ;
+lin divorce_V = mkV "divorce" "divorced" "divorced" ;
+lin divorcee_N = mkN "divorcee" "divorcees" ;
+lin divot_N = mkN "divot" "divots" ;
+lin divulge_V = mkV "divulge" "divulged" "divulged" ;
+lin divulgence_N = mkN "divulgence" "divulgences" ;
+lin divvy_N = mkN "divvy" "divvies" ;
+lin divvy_V = mkV "divvy" "divvied" "divvied" ;
+lin dixie_N = mkN "dixie" "dixies" ;
+lin diy_N = mkN "diy" "diies" ;
+lin dizygotic_A = mkAMost "dizygotic" "dizygoticly" ;
+lin dizziness_N = mkN "dizziness" "dizzinesses" ;
+lin dizzy_A = mkA "dizzy" "dizzier" "dizziest" "dizzily" ;
+lin dizzy_V = mkV "dizzy" "dizzied" "dizzied" ;
+lin dj_N = mkN "dj" "djs" ;
+lin djiboutian_A = mkAMost "djiboutian" "djiboutianly" ;
+lin djiboutian_N = mkN "djiboutian" "djiboutians" ;
+lin djinn_N = mkN "djinn" "djinns" ;
+lin dlitt_N = mkN "dlitt" "dlitts" ;
+lin dm_N = mkN "dm" "dm" ;
+lin do_N = mkN "do" "di" ;
+lin do_V = mkV "do" "did" "done" ;
+lin do_gooder_N = mkN "do-gooder" "do-gooders" ;
+lin dob_V = mkV "dob" "dobbed" "dobbed" ;
+lin dobbin_N = mkN "dobbin" "dobbins" ;
+lin dobra_N = mkN "dobra" "dobras" ;
+lin dobson_N = mkN "dobson" "dobsons" ;
+lin docent_N = mkN "docent" "docents" ;
+lin docile_A = mkAMost "docile" "docilely" ;
+lin docility_N = mkN "docility" "docilities" ;
+lin dock_N = mkN "dock" "docks" ;
+lin dock_V = mkV "dock" "docked" "docked" ;
+lin dockage_N = mkN "dockage" "dockages" ;
+lin docker_N = mkN "docker" "dockers" ;
+lin docket_N = mkN "docket" "dockets" ;
+lin docket_V = mkV "docket" "docketed" "docketed" ;
+lin docking_N = mkN "docking" "dockings" ;
+lin dockside_N = mkN "dockside" "docksides" ;
+lin dockyard_N = mkN "dockyard" "dockyards" ;
+lin doctor_N = mkN "doctor" "doctors" ;
+lin doctor_V = mkV "doctor" "doctored" "doctored" ;
+lin doctoral_A = mkAMost "doctoral" "doctorally" ;
+lin doctorate_N = mkN "doctorate" "doctorates" ;
+lin doctorfish_N = mkN "doctorfish" "doctorfishes" ;
+lin doctorspeak_N = mkN "doctorspeak" "doctorspeaks" ;
+lin doctrinaire_A = mkAMost "doctrinaire" "doctrinairely" ;
+lin doctrinaire_N = mkN "doctrinaire" "doctrinaires" ;
+lin doctrinal_A = mkAMost "doctrinal" "doctrinally" ;
+lin doctrine_N = mkN "doctrine" "doctrines" ;
+lin document_N = mkN "document" "documents" ;
+lin document_V = mkV "document" "documented" "documented" ;
+lin documentary_A = mkAMost "documentary" "documentarily" ;
+lin documentary_N = mkN "documentary" "documentaries" ;
+lin documentation_N = mkN "documentation" "documentations" ;
+lin dodder_N = mkN "dodder" "dodders" ;
+lin dodder_V = mkV "dodder" "doddered" "doddered" ;
+lin dodderer_N = mkN "dodderer" "dodderers" ;
+lin doddery_A = mkAMost "doddery" "dodderily" ;
+lin doddle_N = mkN "doddle" "doddles" ;
+lin dodecagon_N = mkN "dodecagon" "dodecagons" ;
+lin dodecahedron_N = mkN "dodecahedron" "dodecahedrons" ;
+lin dodge_N = mkN "dodge" "dodges" ;
+lin dodge_V = mkV "dodge" "dodged" "dodged" ;
+lin dodgem_N = mkN "dodgem" "dodgems" ;
+lin dodger_N = mkN "dodger" "dodgers" ;
+lin dodgy_A = mkAMost "dodgy" "dodgily" ;
+lin dodo_N = mkN "dodo" "dodos" ;
+lin doe_N = mkN "doe" "does" ;
+lin doer_N = mkN "doer" "doers" ;
+lin doeskin_N = mkN "doeskin" "doeskins" ;
+lin doff_V = mkV "doff" "doffed" "doffed" ;
+lin dog's_tooth_N = mkN "dog's-tooth" "dog's-tooths" ;
+lin dog_N = mkN "dog" "dogs" ;
+lin dog_V = mkV "dog" "dogged" "dogged" ;
+lin dog_biscuit_N = mkN "dog-biscuit" "dog-biscuits" ;
+lin dog_cart_N = mkN "dog-cart" "dog-carts" ;
+lin dog_collar_N = mkN "dog-collar" "dog-collars" ;
+lin dog_eared_A = mkAMost "dog-eared" "dog-earedly" ;
+lin dog_like_A = mkAMost "dog-like" "dog-likely" ;
+lin dogbane_N = mkN "dogbane" "dogbanes" ;
+lin dogcart_N = mkN "dogcart" "dogcarts" ;
+lin doge_N = mkN "doge" "doges" ;
+lin dogfight_N = mkN "dogfight" "dogfights" ;
+lin dogfighter_N = mkN "dogfighter" "dogfighters" ;
+lin dogfish_N = mkN "dogfish" "dogfish" ;
+lin doggedly_Adv = mkAdv "doggedly" ;
+lin doggedness_N = mkN "doggedness" "doggednesses" ;
+lin doggerel_N = mkN "doggerel" "doggerels" ;
+lin doggie_N = mkN "doggie" "doggies" ;
+lin dogging_A = mkAMost "dogging" "doggingly" ;
+lin doggo_Adv = mkAdv "doggo" ;
+lin doggy_N = mkN "doggy" "doggies" ;
+lin doghouse_N = mkN "doghouse" "doghouses" ;
+lin dogie_N = mkN "dogie" "dogies" ;
+lin dogleg_N = mkN "dogleg" "doglegs" ;
+lin doglike_A = mkAMost "doglike" "doglikely" ;
+lin dogma_N = mkN "dogma" "dogmas" ;
+lin dogmatic_A = mkAMost "dogmatic" "dogmaticly" ;
+lin dogmatically_Adv = mkAdv "dogmatically" ;
+lin dogmatism_N = mkN "dogmatism" "dogmatisms" ;
+lin dogmatist_N = mkN "dogmatist" "dogmatists" ;
+lin dogmatize_V = mkV "dogmatize" "dogmatized" "dogmatized" ;
+lin dogsbody_N = mkN "dogsbody" "dogsbodies" ;
+lin dogsled_N = mkN "dogsled" "dogsleds" ;
+lin dogtooth_N = mkN "dogtooth" "dogtooths" ;
+lin dogtrot_N = mkN "dogtrot" "dogtrots" ;
+lin dogwatch_N = mkN "dogwatch" "dogwatches" ;
+lin dogwood_N = mkN "dogwood" "dogwoods" ;
+lin doh_N = mkN "doh" "dohs" ;
+lin doily_N = mkN "doily" "doilies" ;
+lin dol_N = mkN "dol" "dols" ;
+lin dolabriform_A = mkAMost "dolabriform" "dolabriformly" ;
+lin dolce_Adv = mkAdv "dolce" ;
+lin doldrums_N = mkN "doldrums" "doldrumses" ;
+lin dole_N = mkN "dole" "doles" ;
+lin dole_V = mkV "dole" "doled" "doled" ;
+lin doleful_A = mkAMost "doleful" "dolefully" ;
+lin dolefulness_N = mkN "dolefulness" "dolefulnesses" ;
+lin dolichocephalic_A = mkAMost "dolichocephalic" "dolichocephalicly" ;
+lin dolichocephalic_N = mkN "dolichocephalic" "dolichocephalics" ;
+lin dolichocephaly_N = mkN "dolichocephaly" "dolichocephalies" ;
+lin doliolum_N = mkN "doliolum" "doliolums" ;
+lin doll_N = mkN "doll" "dolls" ;
+lin doll_V = mkV "doll" "dolled" "dolled" ;
+lin dollar_N = mkN "dollar" "dollars" ;
+lin dollarfish_N = mkN "dollarfish" "dollarfishes" ;
+lin dollhouse_N = mkN "dollhouse" "dollhouses" ;
+lin dollop_N = mkN "dollop" "dollops" ;
+lin dolly_N = mkN "dolly" "dollies" ;
+lin dolman_N = mkN "dolman" "dolmans" ;
+lin dolmas_N = mkN "dolmas" "dolmases" ;
+lin dolmen_N = mkN "dolmen" "dolmens" ;
+lin dolomite_N = mkN "dolomite" "dolomites" ;
+lin dolomitic_A = mkAMost "dolomitic" "dolomiticly" ;
+lin dolor_N = mkN "dolor" "dolors" ;
+lin dolorous_A = mkAMost "dolorous" "dolorously" ;
+lin dolour_N = mkN "dolour" "dolours" ;
+lin dolourous_A = mkAMost "dolourous" "dolourously" ;
+lin dolphin_N = mkN "dolphin" "dolphins" ;
+lin dolphinfish_N = mkN "dolphinfish" "dolphinfishes" ;
+lin dolt_N = mkN "dolt" "dolts" ;
+lin doltish_A = mkAMost "doltish" "doltishly" ;
+lin domain_N = mkN "domain" "domains" ;
+lin domatium_N = mkN "domatium" "domatiums" ;
+lin dombeya_N = mkN "dombeya" "dombeyas" ;
+lin dome_N = mkN "dome" "domes" ;
+lin domed_A = mkAMost "domed" "domedly" ;
+lin domestic_A = mkAMost "domestic" "domesticly" ;
+lin domestic_N = mkN "domestic" "domestics" ;
+lin domestically_Adv = mkAdv "domestically" ;
+lin domesticate_V = mkV "domesticate" "domesticated" "domesticated" ;
+lin domestication_N = mkN "domestication" "domestications" ;
+lin domesticity_N = mkN "domesticity" "domesticities" ;
+lin domicile_N = mkN "domicile" "domiciles" ;
+lin domiciliary_A = mkAMost "domiciliary" "domiciliarily" ;
+lin dominance_N = mkN "dominance" "dominances" ;
+lin dominant_A = mkAMost "dominant" "dominantly" ;
+lin dominant_N = mkN "dominant" "dominants" ;
+lin dominate_V = mkV "dominate" "dominated" "dominated" ;
+lin domination_N = mkN "domination" "dominations" ;
+lin dominatrix_N = mkN "dominatrix" "dominatrixes" ;
+lin domineer_V = mkV "domineer" "domineered" "domineered" ;
+lin domineeringly_Adv = mkAdv "domineeringly" ;
+lin dominical_A = mkAMost "dominical" "dominically" ;
+lin dominican_A = mkAMost "dominican" "dominicanly" ;
+lin dominican_N = mkN "dominican" "dominicans" ;
+lin dominie_N = mkN "dominie" "dominies" ;
+lin dominion_N = mkN "dominion" "dominions" ;
+lin domino_N = mkN "domino" "dominos" ;
+lin dominoes_N = mkN "dominoes" "dominoeses" ;
+lin dominus_N = mkN "dominus" "dominuses" ;
+lin don't_know_N = mkN "don't-know" "don't-knows" ;
+lin don_N = mkN "don" "dons" ;
+lin don_V = mkV "don" "donned" "donned" ;
+lin donate_V = mkV "donate" "donated" "donated" ;
+lin donation_N = mkN "donation" "donations" ;
+lin dong_N = mkN "dong" "dongs" ;
+lin dongle_N = mkN "dongle" "dongles" ;
+lin donjon_N = mkN "donjon" "donjons" ;
+lin donkey_N = mkN "donkey" "donkeys" ;
+lin donkey_jacket_N = mkN "donkey-jacket" "donkey-jackets" ;
+lin donkey_work_N = mkN "donkey-work" "donkey-works" ;
+lin donna_N = mkN "donna" "donnas" ;
+lin donnish_A = mkAMost "donnish" "donnishly" ;
+lin donor_N = mkN "donor" "donors" ;
+lin doodad_N = mkN "doodad" "doodads" ;
+lin doodia_N = mkN "doodia" "doodias" ;
+lin doodle_V = mkV "doodle" "doodled" "doodled" ;
+lin doodlebug_N = mkN "doodlebug" "doodlebugs" ;
+lin doom_N = mkN "doom" "dooms" ;
+lin doom_V = mkV "doom" "doomed" "doomed" ;
+lin doomed_N = mkN "doomed" "doomeds" ;
+lin door_N = mkN "door" "doors" ;
+lin door_to_door_A = mkAMost "door-to-door" "door-to-doorly" ;
+lin doorbell_N = mkN "doorbell" "doorbells" ;
+lin doorcase_N = mkN "doorcase" "doorcases" ;
+lin doorframe_N = mkN "doorframe" "doorframes" ;
+lin doorhandle_N = mkN "doorhandle" "doorhandles" ;
+lin doorjamb_N = mkN "doorjamb" "doorjambs" ;
+lin doorkeeper_N = mkN "doorkeeper" "doorkeepers" ;
+lin doorknob_N = mkN "doorknob" "doorknobs" ;
+lin doorknocker_N = mkN "doorknocker" "doorknockers" ;
+lin doorlock_N = mkN "doorlock" "doorlocks" ;
+lin doorman_N = mkN "doorman" "doormen" ;
+lin doormat_N = mkN "doormat" "doormats" ;
+lin doornail_N = mkN "doornail" "doornails" ;
+lin doorplate_N = mkN "doorplate" "doorplates" ;
+lin doorpost_N = mkN "doorpost" "doorposts" ;
+lin doorsill_N = mkN "doorsill" "doorsills" ;
+lin doorstep_N = mkN "doorstep" "doorsteps" ;
+lin doorstop_N = mkN "doorstop" "doorstops" ;
+lin doorstopper_N = mkN "doorstopper" "doorstoppers" ;
+lin doorway_N = mkN "doorway" "doorways" ;
+lin dooryard_N = mkN "dooryard" "dooryards" ;
+lin dopa_N = mkN "dopa" "dopas" ;
+lin dopamine_N = mkN "dopamine" "dopamines" ;
+lin dope_N = mkN "dope" "dopes" ;
+lin dope_V = mkV "dope" "doped" "doped" ;
+lin dopey_A = mkAMost "dopey" "dopeily" ;
+lin doppelganger_N = mkN "doppelganger" "doppelgangers" ;
+lin dorbeetle_N = mkN "dorbeetle" "dorbeetles" ;
+lin doric_A = mkAMost "doric" "doricly" ;
+lin dormancy_N = mkN "dormancy" "dormancies" ;
+lin dormant_A = mkAMost "dormant" "dormantly" ;
+lin dormer_N = mkN "dormer" "dormers" ;
+lin dormer_window_N = mkN "dormer-window" "dormer-windows" ;
+lin dormie_A = mkAMost "dormie" "dormiely" ;
+lin dormitory_N = mkN "dormitory" "dormitories" ;
+lin dormouse_N = mkN "dormouse" "dormice" ;
+lin dorsal_A = mkAMost "dorsal" "dorsally" ;
+lin dorsiflexion_N = mkN "dorsiflexion" "dorsiflexions" ;
+lin dorsoventral_A = mkAMost "dorsoventral" "dorsoventrally" ;
+lin dorsum_N = mkN "dorsum" "dorsums" ;
+lin dory_N = mkN "dory" "dories" ;
+lin dosage_N = mkN "dosage" "dosages" ;
+lin dose_N = mkN "dose" "doses" ;
+lin dose_V = mkV "dose" "dosed" "dosed" ;
+lin dosemeter_N = mkN "dosemeter" "dosemeters" ;
+lin dosimetry_N = mkN "dosimetry" "dosimetries" ;
+lin doss_V = mkV "doss" "dossed" "dossed" ;
+lin doss_house_N = mkN "doss-house" "doss-houses" ;
+lin dossal_N = mkN "dossal" "dossals" ;
+lin dosser_N = mkN "dosser" "dossers" ;
+lin dossier_N = mkN "dossier" "dossiers" ;
+lin dot_N = mkN "dot" "dots" ;
+lin dot_V = mkV "dot" "dotted" "dotted" ;
+lin dotage_N = mkN "dotage" "dotages" ;
+lin dotard_N = mkN "dotard" "dotards" ;
+lin dote_V = mkV "dote" "doted" "doted" ;
+lin dotterel_N = mkN "dotterel" "dotterels" ;
+lin dottle_N = mkN "dottle" "dottles" ;
+lin dotty_A = mkA "dotty" "dottier" "dottiest" "dottily" ;
+lin double_A = mkAMost "double" "doubly" ;
+lin double_Adv = mkAdv "double" ;
+lin double_N = mkN "double" "doubles" ;
+lin double_V = mkV "double" "doubled" "doubled" ;
+lin double_barrelled_A = mkAMost "double-barrelled" "double-barrelledly" ;
+lin double_bass_N = mkN "double-bass" "double-basses" ;
+lin double_bedded_A = mkAMost "double-bedded" "double-beddedly" ;
+lin double_breasted_A = mkAMost "double-breasted" "double-breastedly" ;
+lin double_check_V = mkV "double-check" "double-checked" "double-checked" ;
+lin double_cross_N = mkN "double-cross" "double-crosses" ;
+lin double_cross_V = mkV "double-cross" "double-crossed" "double-crossed" ;
+lin double_dealer_N = mkN "double-dealer" "double-dealers" ;
+lin double_dealing_A = mkAMost "double-dealing" "double-dealingly" ;
+lin double_dealing_N = mkN "double-dealing" "double-dealings" ;
+lin double_decker_N = mkN "double-decker" "double-deckers" ;
+lin double_dutch_N = mkN "double-dutch" "double-dutches" ;
+lin double_dyed_A = mkAMost "double-dyed" "double-dyedly" ;
+lin double_edged_A = mkAMost "double-edged" "double-edgedly" ;
+lin double_entry_N = mkN "double-entry" "double-entries" ;
+lin double_faced_A = mkAMost "double-faced" "double-facedly" ;
+lin double_first_N = mkN "double-first" "double-firsts" ;
+lin double_jointed_A = mkAMost "double-jointed" "double-jointedly" ;
+lin double_park_V = mkV "double-park" "double-parked" "double-parked" ;
+lin double_quick_A = mkAMost "double-quick" "double-quickly" ;
+lin double_quick_Adv = mkAdv "double-quick" ;
+lin double_spacing_N = mkN "double-spacing" "double-spacings" ;
+lin double_talk_N = mkN "double-talk" "double-talks" ;
+lin double_think_N = mkN "double-think" "double-thinks" ;
+lin doubler_N = mkN "doubler" "doublers" ;
+lin doubles_N = mkN "doubles" "doubleses" ;
+lin doublespeak_N = mkN "doublespeak" "doublespeaks" ;
+lin doublet_N = mkN "doublet" "doublets" ;
+lin doublethink_N = mkN "doublethink" "doublethinks" ;
+lin doubleton_N = mkN "doubleton" "doubletons" ;
+lin doubletree_N = mkN "doubletree" "doubletrees" ;
+lin doubling_N = mkN "doubling" "doublings" ;
+lin doubloon_N = mkN "doubloon" "doubloons" ;
+lin doubt_N = mkN "doubt" "doubts" ;
+lin doubt_V = mkV "doubt" "doubted" "doubted" ;
+lin doubtful_A = mkAMost "doubtful" "doubtfully" ;
+lin doubting_A = mkAMost "doubting" "doubtingly" ;
+lin doubtless_Adv = mkAdv "doubtless" ;
+lin douche_N = mkN "douche" "douches" ;
+lin dough_N = mkN "dough" "doughs" ;
+lin doughboy_N = mkN "doughboy" "doughboys" ;
+lin doughnut_N = mkN "doughnut" "doughnuts" ;
+lin doughty_A = mkAMost "doughty" "doughtily" ;
+lin doughy_A = mkA "doughy" "doughier" "doughiest" "doughily" ;
+lin dour_A = mkAMost "dour" "dourly" ;
+lin douroucouli_N = mkN "douroucouli" "douroucoulis" ;
+lin douse_V = mkV "douse" "doused" "doused" ;
+lin dove_N = mkN "dove" "doves" ;
+lin dovecote_N = mkN "dovecote" "dovecotes" ;
+lin dovetail_N = mkN "dovetail" "dovetails" ;
+lin dovetail_V = mkV "dovetail" "dovetailed" "dovetailed" ;
+lin dovishness_N = mkN "dovishness" "dovishnesses" ;
+lin dowager_N = mkN "dowager" "dowagers" ;
+lin dowdiness_N = mkN "dowdiness" "dowdinesses" ;
+lin dowdy_A = mkA "dowdy" "dowdier" "dowdiest" "dowdily" ;
+lin dowdy_N = mkN "dowdy" "dowdies" ;
+lin dowel_N = mkN "dowel" "dowels" ;
+lin doweling_N = mkN "doweling" "dowelings" ;
+lin dower_N = mkN "dower" "dowers" ;
+lin dower_V = mkV "dower" "dowered" "dowered" ;
+lin dowerless_A = mkAMost "dowerless" "dowerlessly" ;
+lin dowitcher_N = mkN "dowitcher" "dowitchers" ;
+lin down_A = mkA "down" "downer" "downest" "downly" ;
+lin down_Adv = mkAdv "down" ;
+lin down_N = mkN "down" "downs" ;
+lin down_Prep = mkPrep "down" ;
+lin down_V = mkV "down" "downed" "downed" ;
+lin down_and_out_N = mkN "down-and-out" "down-and-outs" ;
+lin down_market_A = mkAMost "down-market" "down-marketly" ;
+lin down_to_earth_A = mkAMost "down-to-earth" "down-to-earthly" ;
+lin downbeat_N = mkN "downbeat" "downbeats" ;
+lin downbound_A = mkAMost "downbound" "downboundly" ;
+lin downcast_A = mkAMost "downcast" "downcastly" ;
+lin downcast_N = mkN "downcast" "downcasts" ;
+lin downdraft_N = mkN "downdraft" "downdrafts" ;
+lin downfall_N = mkN "downfall" "downfalls" ;
+lin downfield_A = mkAMost "downfield" "downfieldly" ;
+lin downfield_Adv = mkAdv "downfield" ;
+lin downgrade_N = mkN "downgrade" "downgrades" ;
+lin downgrade_V = mkV "downgrade" "downgraded" "downgraded" ;
+lin downhearted_A = mkAMost "downhearted" "downheartedly" ;
+lin downheartedness_N = mkN "downheartedness" "downheartednesses" ;
+lin downhill_Adv = mkAdv "downhill" ;
+lin downhill_N = mkN "downhill" "downhills" ;
+lin downiness_N = mkN "downiness" "downinesses" ;
+lin downmarket_A = mkAMost "downmarket" "downmarketly" ;
+lin downplay_V = mkV "downplay" "downplayed" "downplayed" ;
+lin downpour_N = mkN "downpour" "downpours" ;
+lin downright_A = mkAMost "downright" "downrightly" ;
+lin downright_Adv = mkAdv "downright" ;
+lin downrightness_N = mkN "downrightness" "downrightnesses" ;
+lin downriver_Adv = mkAdv "downriver" ;
+lin downscale_A = mkAMost "downscale" "downscalely" ;
+lin downshift_N = mkN "downshift" "downshifts" ;
+lin downside_N = mkN "downside" "downsides" ;
+lin downsize_V = mkV "downsize" "downsized" "downsized" ;
+lin downspin_N = mkN "downspin" "downspins" ;
+lin downstage_A = mkAMost "downstage" "downstagely" ;
+lin downstage_Adv = mkAdv "downstage" ;
+lin downstage_N = mkN "downstage" "downstages" ;
+lin downstair_A = mkAMost "downstair" "downstairly" ;
+lin downstairs_A = mkAMost "downstairs" "downstairsly" ;
+lin downstairs_Adv = mkAdv "downstairs" ;
+lin downstream_A = mkAMost "downstream" "downstreamly" ;
+lin downstream_Adv = mkAdv "downstream" ;
+lin downstroke_N = mkN "downstroke" "downstrokes" ;
+lin downswing_N = mkN "downswing" "downswings" ;
+lin downtick_N = mkN "downtick" "downticks" ;
+lin downtime_N = mkN "downtime" "downtimes" ;
+lin downtown_A = mkAMost "downtown" "downtownly" ;
+lin downtown_Adv = mkAdv "downtown" ;
+lin downtrodden_A = mkAMost "downtrodden" "downtroddenly" ;
+lin downturn_N = mkN "downturn" "downturns" ;
+lin downward_A = mkAMost "downward" "downwardly" ;
+lin downward_Adv = mkAdv "downward" ;
+lin downwards_Adv = mkAdv "downwards" ;
+lin downwind_A = mkAMost "downwind" "downwindly" ;
+lin downwind_Adv = mkAdv "downwind" ;
+lin downy_A = mkAMost "downy" "downily" ;
+lin dowry_N = mkN "dowry" "dowries" ;
+lin dowse_N = mkN "dowse" "dowses" ;
+lin dowse_V = mkV "dowse" "dowsed" "dowsed" ;
+lin dowser_N = mkN "dowser" "dowsers" ;
+lin dowsing_N = mkN "dowsing" "dowsings" ;
+lin doxazosin_N = mkN "doxazosin" "doxazosins" ;
+lin doxepin_N = mkN "doxepin" "doxepins" ;
+lin doxology_N = mkN "doxology" "doxologies" ;
+lin doxorubicin_N = mkN "doxorubicin" "doxorubicins" ;
+lin doxycycline_N = mkN "doxycycline" "doxycyclines" ;
+lin doyen_N = mkN "doyen" "doyens" ;
+lin doyenne_N = mkN "doyenne" "doyennes" ;
+lin doyley_N = mkN "doyley" "doyleys" ;
+lin doyly_N = mkN "doyly" "doylies" ;
+lin doz_N = mkN "doz" "doz" ;
+lin doze_N = mkN "doze" "dozes" ;
+lin doze_V = mkV "doze" "dozed" "dozed" ;
+lin dozen_N = mkN "dozen" "dozens" ;
+lin dphil_N = mkN "dphil" "dphils" ;
+lin drab_A = mkA "drab" "drabber" "drabbest" "drably" ;
+lin draba_N = mkN "draba" "drabas" ;
+lin drabness_N = mkN "drabness" "drabnesses" ;
+lin dracaena_N = mkN "dracaena" "dracaenas" ;
+lin drachm_N = mkN "drachm" "drachms" ;
+lin drachma_N = mkN "drachma" "drachmas" ;
+lin draconian_A = mkAMost "draconian" "draconianly" ;
+lin dracontium_N = mkN "dracontium" "dracontiums" ;
+lin draft_N = mkN "draft" "drafts" ;
+lin draft_V = mkV "draft" "drafted" "drafted" ;
+lin draftee_N = mkN "draftee" "draftees" ;
+lin drafter_N = mkN "drafter" "drafters" ;
+lin drafting_N = mkN "drafting" "draftings" ;
+lin draftsman_N = mkN "draftsman" "draftsmen" ;
+lin drafty_A = mkA "drafty" "draftier" "draftiest" "draftily" ;
+lin drag_N = mkN "drag" "drags" ;
+lin drag_V = mkV "drag" "dragged" "dragged" ;
+lin dragee_N = mkN "dragee" "dragees" ;
+lin draggingly_Adv = mkAdv "draggingly" ;
+lin draggled_A = mkAMost "draggled" "draggledly" ;
+lin dragnet_N = mkN "dragnet" "dragnets" ;
+lin dragoman_N = mkN "dragoman" "dragomans" ;
+lin dragon_N = mkN "dragon" "dragons" ;
+lin dragonet_N = mkN "dragonet" "dragonets" ;
+lin dragonfly_N = mkN "dragonfly" "dragonflies" ;
+lin dragonhead_N = mkN "dragonhead" "dragonheads" ;
+lin dragoon_N = mkN "dragoon" "dragoons" ;
+lin dragoon_V = mkV "dragoon" "dragooned" "dragooned" ;
+lin drain_N = mkN "drain" "drains" ;
+lin drain_V = mkV "drain" "drained" "drained" ;
+lin drainage_N = mkN "drainage" "drainages" ;
+lin drainage_basin_N = mkN "drainage-basin" "drainage-basins" ;
+lin drainboard_N = mkN "drainboard" "drainboards" ;
+lin draining_board_N = mkN "draining-board" "draining-boards" ;
+lin drainpipe_N = mkN "drainpipe" "drainpipes" ;
+lin drainplug_N = mkN "drainplug" "drainplugs" ;
+lin drake_N = mkN "drake" "drakes" ;
+lin dram_N = mkN "dram" "drams" ;
+lin drama_N = mkN "drama" "dramas" ;
+lin dramatic_A = mkAMost "dramatic" "dramaticly" ;
+lin dramatically_Adv = mkAdv "dramatically" ;
+lin dramatics_N = mkN "dramatics" "dramatics" ;
+lin dramatist_N = mkN "dramatist" "dramatists" ;
+lin dramatization_N = mkN "dramatization" "dramatizations" ;
+lin dramatize_V = mkV "dramatize" "dramatized" "dramatized" ;
+lin dramaturgic_A = mkAMost "dramaturgic" "dramaturgicly" ;
+lin dramaturgy_N = mkN "dramaturgy" "dramaturgies" ;
+lin drape_N = mkN "drape" "drapes" ;
+lin drape_V = mkV "drape" "draped" "draped" ;
+lin draper_N = mkN "draper" "drapers" ;
+lin drapery_N = mkN "drapery" "draperies" ;
+lin drastic_A = mkAMost "drastic" "drasticly" ;
+lin drastically_Adv = mkAdv "drastically" ;
+lin drat_V = mkV "drat" "dratted" "dratted" ;
+lin draught_N = mkN "draught" "draughts" ;
+lin draught_V = mkV "draught" "draughted" "draughted" ;
+lin draught_horse_N = mkN "draught-horse" "draught-horses" ;
+lin draughts_N = mkN "draughts" "draughts" ;
+lin draughtsman_N = mkN "draughtsman" "draughtsmen" ;
+lin draughty_A = mkA "draughty" "draughtier" "draughtiest" "draughtily" ;
+lin draw_N = mkN "draw" "draws" ;
+lin draw_drawed_V = mkV "draw" "drawed" "drawed" ;
+lin draw_drew_V = mkV "draw" "drew" "drawn" ;
+lin drawback_N = mkN "drawback" "drawbacks" ;
+lin drawbar_N = mkN "drawbar" "drawbars" ;
+lin drawbridge_N = mkN "drawbridge" "drawbridges" ;
+lin drawee_N = mkN "drawee" "drawees" ;
+lin drawer_N = mkN "drawer" "drawers" ;
+lin drawers_N = mkN "drawers" "drawerses" ;
+lin drawing_N = mkN "drawing" "drawings" ;
+lin drawing_board_N = mkN "drawing-board" "drawing-boards" ;
+lin drawing_pin_N = mkN "drawing-pin" "drawing-pins" ;
+lin drawing_room_N = mkN "drawing-room" "drawing-rooms" ;
+lin drawknife_N = mkN "drawknife" "drawknifes" ;
+lin drawl_N = mkN "drawl" "drawls" ;
+lin drawl_V = mkV "drawl" "drawled" "drawled" ;
+lin drawler_N = mkN "drawler" "drawlers" ;
+lin drawnwork_N = mkN "drawnwork" "drawnworks" ;
+lin drawstring_N = mkN "drawstring" "drawstrings" ;
+lin dray_N = mkN "dray" "drays" ;
+lin dread_N = mkN "dread" "dreads" ;
+lin dread_V = mkV "dread" "dreaded" "dreaded" ;
+lin dreadful_A = mkAMost "dreadful" "dreadfully" ;
+lin dreadfulness_N = mkN "dreadfulness" "dreadfulnesses" ;
+lin dreadlock_N = mkN "dreadlock" "dreadlocks" ;
+lin dreadnought_N = mkN "dreadnought" "dreadnoughts" ;
+lin dream_N = mkN "dream" "dreams" ;
+lin dream_dreamed_dreamed_V = mkV "dream" "dreamed" "dreamed" ;
+lin dream_dreamed_dreamt_V = mkV "dream" "dreamed" "dreamt" ;
+lin dream_dreamt_dreamed_V = mkV "dream" "dreamt" "dreamed" ;
+lin dream_dreamt_dreamt_V = mkV "dream" "dreamt" "dreamt" ;
+lin dreamer_N = mkN "dreamer" "dreamers" ;
+lin dreamland_N = mkN "dreamland" "dreamlands" ;
+lin dreamless_A = mkAMost "dreamless" "dreamlessly" ;
+lin dreamlike_A = mkAMost "dreamlike" "dreamlikely" ;
+lin dreamworld_N = mkN "dreamworld" "dreamworlds" ;
+lin dreamy_A = mkA "dreamy" "dreamier" "dreamiest" "dreamily" ;
+lin drear_A = mkAMost "drear" "drearly" ;
+lin dreariness_N = mkN "dreariness" "drearinesses" ;
+lin dreary_A = mkA "dreary" "drearier" "dreariest" "drearily" ;
+lin dredge_N = mkN "dredge" "dredges" ;
+lin dredge_V = mkV "dredge" "dredged" "dredged" ;
+lin dredger_N = mkN "dredger" "dredgers" ;
+lin dreg_N = mkN "dreg" "dregs" ;
+lin dregs_N = mkN "dregs" "dregses" ;
+lin drench_V = mkV "drench" "drenched" "drenched" ;
+lin drenching_N = mkN "drenching" "drenchings" ;
+lin dress_A = mkA "dress" "dresser" "dressest" "dressly" ;
+lin dress_N = mkN "dress" "dresses" ;
+lin dress_V = mkV "dress" "dressed" "dressed" ;
+lin dress_hanger_N = mkN "dress-hanger" "dress-hangers" ;
+lin dressage_N = mkN "dressage" "dressages" ;
+lin dresser_N = mkN "dresser" "dressers" ;
+lin dressing_N = mkN "dressing" "dressings" ;
+lin dressing_case_N = mkN "dressing-case" "dressing-cases" ;
+lin dressing_down_N = mkN "dressing-down" "dressing-downs" ;
+lin dressing_gown_N = mkN "dressing-gown" "dressing-gowns" ;
+lin dressing_table_N = mkN "dressing-table" "dressing-tables" ;
+lin dressmaker_N = mkN "dressmaker" "dressmakers" ;
+lin dressmaking_N = mkN "dressmaking" "dressmakings" ;
+lin dressy_A = mkA "dressy" "dressier" "dressiest" "dressily" ;
+lin drey_N = mkN "drey" "dreys" ;
+lin dribble_N = mkN "dribble" "dribbles" ;
+lin dribble_V = mkV "dribble" "dribbled" "dribbled" ;
+lin dribbler_N = mkN "dribbler" "dribblers" ;
+lin driblet_N = mkN "driblet" "driblets" ;
+lin drier_N = mkN "drier" "driers" ;
+lin drift_N = mkN "drift" "drifts" ;
+lin drift_V = mkV "drift" "drifted" "drifted" ;
+lin drift_ice_N = mkN "drift-ice" "drift-ices" ;
+lin drift_net_N = mkN "drift-net" "drift-nets" ;
+lin drift_wood_N = mkN "drift-wood" "drift-woods" ;
+lin driftage_N = mkN "driftage" "driftages" ;
+lin drifter_N = mkN "drifter" "drifters" ;
+lin driftfish_N = mkN "driftfish" "driftfishes" ;
+lin drifting_N = mkN "drifting" "driftings" ;
+lin driftwood_N = mkN "driftwood" "driftwoods" ;
+lin drill_N = mkN "drill" "drills" ;
+lin drill_V = mkV "drill" "drilled" "drilled" ;
+lin drilling_N = mkN "drilling" "drillings" ;
+lin drink_N = mkN "drink" "drinks" ;
+lin drink_V = mkV "drink" "drank" "drunk" ;
+lin drinkable_A = mkAMost "drinkable" "drinkably" ;
+lin drinker_N = mkN "drinker" "drinkers" ;
+lin drinking_N = mkN "drinking" "drinkings" ;
+lin drinking_bout_N = mkN "drinking-bout" "drinking-bouts" ;
+lin drinking_fountain_N = mkN "drinking-fountain" "drinking-fountains" ;
+lin drinking_song_N = mkN "drinking-song" "drinking-songs" ;
+lin drinking_water_N = mkN "drinking-water" "drinking-waters" ;
+lin drip_N = mkN "drip" "drips" ;
+lin drip_V = mkV "drip" "dripped" "dripped" ;
+lin drip_dry_A = mkAMost "drip-dry" "drip-drily" ;
+lin drip_dry_V = mkV "drip-dry" "drip-dried" "drip-dried" ;
+lin dripless_A = mkAMost "dripless" "driplessly" ;
+lin drippiness_N = mkN "drippiness" "drippinesses" ;
+lin dripping_N = mkN "dripping" "drippings" ;
+lin dripping_pan_N = mkN "dripping-pan" "dripping-pans" ;
+lin drippings_N = mkN "drippings" "drippingses" ;
+lin drippy_A = mkA "drippy" "drippier" "drippiest" "drippily" ;
+lin dripstone_N = mkN "dripstone" "dripstones" ;
+lin drive_N = mkN "drive" "drives" ;
+lin drive_drived_V = mkV "drive" "drived" "drived" ;
+lin drive_drove_V = mkV "drive" "drove" "driven" ;
+lin drive_in_N = mkN "drive-in" "drive-ins" ;
+lin drivel_N = mkN "drivel" "drivels" ;
+lin drivel_V = mkV "drivel" "drivelled" "drivelled" ;
+lin driveller_N = mkN "driveller" "drivellers" ;
+lin driver_N = mkN "driver" "drivers" ;
+lin driveshaft_N = mkN "driveshaft" "driveshafts" ;
+lin driveway_N = mkN "driveway" "driveways" ;
+lin driving_N = mkN "driving" "drivings" ;
+lin driving_belt_N = mkN "driving-belt" "driving-belts" ;
+lin driving_wheel_N = mkN "driving-wheel" "driving-wheels" ;
+lin drizzle_N = mkN "drizzle" "drizzles" ;
+lin drizzle_V = mkV "drizzle" "drizzled" "drizzled" ;
+lin drizzly_A = mkAMost "drizzly" "drizzlily" ;
+lin drogue_N = mkN "drogue" "drogues" ;
+lin droll_A = mkAMost "droll" "drolly" ;
+lin drollery_N = mkN "drollery" "drolleries" ;
+lin dromaeosaur_N = mkN "dromaeosaur" "dromaeosaurs" ;
+lin dromedary_N = mkN "dromedary" "dromedaries" ;
+lin dronabinol_N = mkN "dronabinol" "dronabinols" ;
+lin drone_N = mkN "drone" "drones" ;
+lin drone_V = mkV "drone" "droned" "droned" ;
+lin drool_N = mkN "drool" "drools" ;
+lin drool_V = mkV "drool" "drooled" "drooled" ;
+lin droop_N = mkN "droop" "droops" ;
+lin droop_V = mkV "droop" "drooped" "drooped" ;
+lin droopingly_Adv = mkAdv "droopingly" ;
+lin drop_N = mkN "drop" "drops" ;
+lin drop_V = mkV "drop" "dropped" "dropped" ;
+lin drop_curtain_N = mkN "drop-curtain" "drop-curtains" ;
+lin drop_kick_N = mkN "drop-kick" "drop-kicks" ;
+lin dropkick_N = mkN "dropkick" "dropkicks" ;
+lin dropkicker_N = mkN "dropkicker" "dropkickers" ;
+lin droplet_N = mkN "droplet" "droplets" ;
+lin dropline_N = mkN "dropline" "droplines" ;
+lin dropout_N = mkN "dropout" "dropouts" ;
+lin dropper_N = mkN "dropper" "droppers" ;
+lin dropping_zone_N = mkN "dropping-zone" "dropping-zones" ;
+lin droppings_N = mkN "droppings" "droppingses" ;
+lin dropseed_N = mkN "dropseed" "dropseeds" ;
+lin dropsical_A = mkAMost "dropsical" "dropsically" ;
+lin dropsy_N = mkN "dropsy" "dropsies" ;
+lin droshky_N = mkN "droshky" "droshkies" ;
+lin drosophila_N = mkN "drosophila" "drosophilas" ;
+lin dross_N = mkN "dross" "drosses" ;
+lin drought_N = mkN "drought" "droughts" ;
+lin drove_N = mkN "drove" "droves" ;
+lin drover_N = mkN "drover" "drovers" ;
+lin drown_V = mkV "drown" "drowned" "drowned" ;
+lin drowse_N = mkN "drowse" "drowses" ;
+lin drowse_V = mkV "drowse" "drowsed" "drowsed" ;
+lin drowsiness_N = mkN "drowsiness" "drowsinesses" ;
+lin drowsy_A = mkA "drowsy" "drowsier" "drowsiest" "drowsily" ;
+lin drub_V = mkV "drub" "drubbed" "drubbed" ;
+lin drubbing_N = mkN "drubbing" "IRREG" ;
+lin drudge_N = mkN "drudge" "drudges" ;
+lin drudge_V = mkV "drudge" "drudged" "drudged" ;
+lin drudgery_N = mkN "drudgery" "drudgeries" ;
+lin drug_N = mkN "drug" "drugs" ;
+lin drug_V = mkV "drug" "drugged" "drugged" ;
+lin drugget_N = mkN "drugget" "druggets" ;
+lin druggist_N = mkN "druggist" "druggists" ;
+lin drugless_A = mkAMost "drugless" "druglessly" ;
+lin drugstore_N = mkN "drugstore" "drugstores" ;
+lin druid_N = mkN "druid" "druids" ;
+lin druidism_N = mkN "druidism" "druidisms" ;
+lin drum_N = mkN "drum" "drums" ;
+lin drum_V = mkV "drum" "drummed" "drummed" ;
+lin drum_major_N = mkN "drum-major" "drum-majors" ;
+lin drum_majorette_N = mkN "drum-majorette" "drum-majorettes" ;
+lin drumbeat_N = mkN "drumbeat" "drumbeats" ;
+lin drumfire_N = mkN "drumfire" "drumfires" ;
+lin drumhead_A = mkAMost "drumhead" "drumheadly" ;
+lin drumhead_N = mkN "drumhead" "drumheads" ;
+lin drumlin_N = mkN "drumlin" "drumlins" ;
+lin drummer_N = mkN "drummer" "drummers" ;
+lin drumming_N = mkN "drumming" "drummings" ;
+lin drumstick_N = mkN "drumstick" "drumsticks" ;
+lin drunk_A = mkA "drunk" "drunker" "drunkest" "drunkly" ;
+lin drunk_N = mkN "drunk" "drunks" ;
+lin drunkard_N = mkN "drunkard" "drunkards" ;
+lin drunken_A = mkAMost "drunken" "drunkenly" ;
+lin drunkenness_N = mkN "drunkenness" "drunkennesses" ;
+lin drupaceous_A = mkAMost "drupaceous" "drupaceously" ;
+lin drupe_N = mkN "drupe" "drupes" ;
+lin drupelet_N = mkN "drupelet" "drupelets" ;
+lin drusen_N = mkN "drusen" "drusens" ;
+lin dry_A = mkA "dry" "drier" "driest" "drily" ;
+lin dry_N = mkN "dry" "dries" ;
+lin dry_V = mkV "dry" "dried" "dried" ;
+lin dry_clean_V = mkV "dry-clean" "dry-cleaned" "dry-cleaned" ;
+lin dry_cleaner_N = mkN "dry-cleaner" "dry-cleaners" ;
+lin dry_cleaning_N = mkN "dry-cleaning" "dry-cleanings" ;
+lin dry_shod_A = mkAMost "dry-shod" "dry-shodly" ;
+lin dry_walling_N = mkN "dry-walling" "dry-wallings" ;
+lin dryad_N = mkN "dryad" "dryads" ;
+lin dryer_N = mkN "dryer" "dryers" ;
+lin drygoods_N = mkN "drygoods" "drygoodses" ;
+lin dryness_N = mkN "dryness" "drynesses" ;
+lin dryopithecine_N = mkN "dryopithecine" "dryopithecines" ;
+lin drypis_N = mkN "drypis" "drypises" ;
+lin dscDNA_N = mkN "dscDNA" "dscDNAs" ;
+lin dsc_N = mkN "dsc" "dscs" ;
+lin dss_N = mkN "dss" "dsses" ;
+lin dti_N = mkN "dti" "dtis" ;
+lin dual_A = mkAMost "dual" "dually" ;
+lin dualism_N = mkN "dualism" "dualisms" ;
+lin dualist_N = mkN "dualist" "dualists" ;
+lin dualistic_A = mkAMost "dualistic" "dualisticly" ;
+lin duality_N = mkN "duality" "dualities" ;
+lin dub_N = mkN "dub" "dubs" ;
+lin dub_V = mkV "dub" "dubbed" "dubbed" ;
+lin dubbin_N = mkN "dubbin" "dubbins" ;
+lin dubbing_N = mkN "dubbing" "dubbings" ;
+lin dubiety_N = mkN "dubiety" "dubieties" ;
+lin dubious_A = mkAMost "dubious" "dubiously" ;
+lin dubiousness_N = mkN "dubiousness" "dubiousnesses" ;
+lin dubliner_N = mkN "dubliner" "dubliners" ;
+lin dubnium_N = mkN "dubnium" "dubniums" ;
+lin ducal_A = mkAMost "ducal" "ducally" ;
+lin ducat_N = mkN "ducat" "ducats" ;
+lin duce_N = mkN "duce" "duci" ;
+lin duchess_N = mkN "duchess" "duchesses" ;
+lin duchy_N = mkN "duchy" "duchies" ;
+lin duck_N = mkN "duck" "duck" ;
+lin duck_V = mkV "duck" "ducked" "ducked" ;
+lin duckbill_A = mkAMost "duckbill" "duckbilly" ;
+lin duckbilled_A = mkAMost "duckbilled" "duckbilledly" ;
+lin duckboard_N = mkN "duckboard" "duckboards" ;
+lin ducking_N = mkN "ducking" "duckings" ;
+lin ducking_stool_N = mkN "ducking-stool" "ducking-stools" ;
+lin duckling_N = mkN "duckling" "ducklings" ;
+lin duckpin_N = mkN "duckpin" "duckpins" ;
+lin duckpins_N = mkN "duckpins" "duckpinses" ;
+lin duckweed_N = mkN "duckweed" "duckweeds" ;
+lin ducky_N = mkN "ducky" "duckies" ;
+lin duct_N = mkN "duct" "ducts" ;
+lin ductile_A = mkAMost "ductile" "ductilely" ;
+lin ductility_N = mkN "ductility" "ductilities" ;
+lin ductless_A = mkAMost "ductless" "ductlessly" ;
+lin ductule_N = mkN "ductule" "ductules" ;
+lin dud_A = mkAMost "dud" "dudly" ;
+lin dud_N = mkN "dud" "duds" ;
+lin dude_N = mkN "dude" "dudes" ;
+lin dudeen_N = mkN "dudeen" "dudeens" ;
+lin dudgeon_N = mkN "dudgeon" "dudgeons" ;
+lin due_A = mkAMost "due" "duely" ;
+lin due_Adv = mkAdv "due" ;
+lin due_N = mkN "due" "dues" ;
+lin due_to_Prep = mkPrep "due to" ;
+lin duel_N = mkN "duel" "duels" ;
+lin duel_V = mkV "duel" "duelled" "duelled" ;
+lin dueler_N = mkN "dueler" "duelers" ;
+lin duelist_N = mkN "duelist" "duelists" ;
+lin duellist_N = mkN "duellist" "duellists" ;
+lin duenna_N = mkN "duenna" "duennas" ;
+lin duet_N = mkN "duet" "duets" ;
+lin duff_N = mkN "duff" "duffs" ;
+lin duff_V = mkV "duff" "duffed" "duffed" ;
+lin duffel_N = mkN "duffel" "duffels" ;
+lin duffer_N = mkN "duffer" "duffers" ;
+lin duffle_N = mkN "duffle" "duffles" ;
+lin dug_N = mkN "dug" "dugs" ;
+lin dug_V = mkV "dug" "dugged" "dugged" ;
+lin dugong_N = mkN "dugong" "dugongs" ;
+lin dugout_N = mkN "dugout" "dugouts" ;
+lin duke_N = mkN "duke" "dukes" ;
+lin dukedom_N = mkN "dukedom" "dukedoms" ;
+lin dulcet_A = mkAMost "dulcet" "dulcetly" ;
+lin dulciana_N = mkN "dulciana" "dulcianas" ;
+lin dulcimer_N = mkN "dulcimer" "dulcimers" ;
+lin dull_A = mkA "dull" "duller" "dullest" "dully" ;
+lin dull_V = mkV "dull" "dulled" "dulled" ;
+lin dullard_N = mkN "dullard" "dullards" ;
+lin dullness_N = mkN "dullness" "dullnesses" ;
+lin dulse_N = mkN "dulse" "dulses" ;
+lin dumb_A = mkA "dumb" "dumber" "dumbest" "dumbly" ;
+lin dumb_V = mkV "dumb" "dumbed" "dumbed" ;
+lin dumbbell_N = mkN "dumbbell" "dumbbells" ;
+lin dumbfound_V = mkV "dumbfound" "dumbfounded" "dumbfounded" ;
+lin dumbness_N = mkN "dumbness" "dumbnesses" ;
+lin dumbwaiter_N = mkN "dumbwaiter" "dumbwaiters" ;
+lin dumdum_N = mkN "dumdum" "dumdums" ;
+lin dummy_A = mkA "dummy" "dummier" "dummiest" "dummily" ;
+lin dummy_N = mkN "dummy" "dummies" ;
+lin dump_N = mkN "dump" "dumps" ;
+lin dump_V = mkV "dump" "dumped" "dumped" ;
+lin dumpcart_N = mkN "dumpcart" "dumpcarts" ;
+lin dumper_N = mkN "dumper" "dumpers" ;
+lin dumpiness_N = mkN "dumpiness" "dumpinesses" ;
+lin dumping_N = mkN "dumping" "dumpings" ;
+lin dumpling_N = mkN "dumpling" "dumplings" ;
+lin dumps_N = mkN "dumps" "dumpses" ;
+lin dumpy_A = mkA "dumpy" "dumpier" "dumpiest" "dumpily" ;
+lin dun_A = mkAMost "dun" "dunly" ;
+lin dun_N = mkN "dun" "duns" ;
+lin dun_V = mkV "dun" "dunned" "dunned" ;
+lin dunce_N = mkN "dunce" "dunces" ;
+lin dunderhead_N = mkN "dunderhead" "dunderheads" ;
+lin dune_N = mkN "dune" "dunes" ;
+lin dung_N = mkN "dung" "dungs" ;
+lin dungeon_N = mkN "dungeon" "dungeons" ;
+lin dunghill_N = mkN "dunghill" "dunghills" ;
+lin dunk_N = mkN "dunk" "dunks" ;
+lin dunk_V = mkV "dunk" "dunked" "dunked" ;
+lin dunker_N = mkN "dunker" "dunkers" ;
+lin duodecimal_A = mkAMost "duodecimal" "duodecimally" ;
+lin duodenal_A = mkAMost "duodenal" "duodenally" ;
+lin duodenum_N = mkN "duodenum" "duodenums" ;
+lin duologue_N = mkN "duologue" "duologues" ;
+lin dupe_N = mkN "dupe" "dupes" ;
+lin dupe_V = mkV "dupe" "duped" "duped" ;
+lin duplex_A = mkAMost "duplex" "duplexly" ;
+lin duplicable_A = mkAMost "duplicable" "duplicably" ;
+lin duplicate_A = mkAMost "duplicate" "duplicately" ;
+lin duplicate_N = mkN "duplicate" "duplicates" ;
+lin duplicate_V = mkV "duplicate" "duplicated" "duplicated" ;
+lin duplication_N = mkN "duplication" "duplications" ;
+lin duplicator_N = mkN "duplicator" "duplicators" ;
+lin duplicity_N = mkN "duplicity" "duplicities" ;
+lin durability_N = mkN "durability" "durabilities" ;
+lin durable_A = mkAMost "durable" "durably" ;
+lin durable_N = mkN "durable" "durables" ;
+lin durables_N = mkN "durables" "durableses" ;
+lin dural_A = mkAMost "dural" "durally" ;
+lin durance_N = mkN "durance" "durances" ;
+lin duration_N = mkN "duration" "durations" ;
+lin durative_N = mkN "durative" "duratives" ;
+lin durbar_N = mkN "durbar" "durbars" ;
+lin duress_N = mkN "duress" "duresses" ;
+lin durian_N = mkN "durian" "durians" ;
+lin during_Prep = mkPrep "during" ;
+lin durmast_N = mkN "durmast" "durmasts" ;
+lin durra_N = mkN "durra" "durras" ;
+lin durum_N = mkN "durum" "durums" ;
+lin dusk_N = mkN "dusk" "dusks" ;
+lin dusky_A = mkA "dusky" "duskier" "duskiest" "duskily" ;
+lin dust_N = mkN "dust" "dusts" ;
+lin dust_V = mkV "dust" "dusted" "dusted" ;
+lin dust_bowl_N = mkN "dust-bowl" "dust-bowls" ;
+lin dust_coat_N = mkN "dust-coat" "dust-coats" ;
+lin dust_jacket_N = mkN "dust-jacket" "dust-jackets" ;
+lin dust_sheet_N = mkN "dust-sheet" "dust-sheets" ;
+lin dust_up_N = mkN "dust-up" "dust-ups" ;
+lin dust_wrapper_N = mkN "dust-wrapper" "dust-wrappers" ;
+lin dustbin_N = mkN "dustbin" "dustbins" ;
+lin dustcart_N = mkN "dustcart" "dustcarts" ;
+lin dustcloth_N = mkN "dustcloth" "dustcloths" ;
+lin duster_N = mkN "duster" "dusters" ;
+lin dustiness_N = mkN "dustiness" "dustinesses" ;
+lin dustlike_A = mkAMost "dustlike" "dustlikely" ;
+lin dustman_N = mkN "dustman" "dustmen" ;
+lin dustmop_N = mkN "dustmop" "dustmops" ;
+lin dustpan_N = mkN "dustpan" "dustpans" ;
+lin dusty_A = mkA "dusty" "dustier" "dustiest" "dustily" ;
+lin dutchman_N = mkN "dutchman" "dutchmen" ;
+lin duteous_A = mkAMost "duteous" "duteously" ;
+lin dutiable_A = mkAMost "dutiable" "dutiably" ;
+lin dutiful_A = mkAMost "dutiful" "dutifully" ;
+lin dutifulness_N = mkN "dutifulness" "dutifulnesses" ;
+lin duty_N = mkN "duty" "duties" ;
+lin duty_free_A = mkAMost "duty-free" "duty-freely" ;
+lin duvet_N = mkN "duvet" "duvets" ;
+lin dwarf_N = mkN "dwarf" "dwarfs" ;
+lin dwarf_V = mkV "dwarf" "dwarfed" "dwarfed" ;
+lin dwarfish_A = mkAMost "dwarfish" "dwarfishly" ;
+lin dwarfishness_N = mkN "dwarfishness" "dwarfishnesses" ;
+lin dwarfism_N = mkN "dwarfism" "dwarfisms" ;
+lin dwell_dwelled_V = mkV "dwell" "dwelled" "dwelled" ;
+lin dwell_dwelt_V = mkV "dwell" "dwelt" "dwelt" ;
+lin dweller_N = mkN "dweller" "dwellers" ;
+lin dwelling_N = mkN "dwelling" "dwellings" ;
+lin dwelling_house_N = mkN "dwelling-house" "dwelling-houses" ;
+lin dwindle_V = mkV "dwindle" "dwindled" "dwindled" ;
+lin dwindling_N = mkN "dwindling" "dwindlings" ;
+lin dyadic_A = mkAMost "dyadic" "dyadicly" ;
+lin dyarchy_N = mkN "dyarchy" "dyarchies" ;
+lin dybbuk_N = mkN "dybbuk" "dybbuks" ;
+lin dye_N = mkN "dye" "dyes" ;
+lin dye_V = mkV "dye" "dyed" "dyed" ;
+lin dye_works_N = mkN "dye-works" "dye-works" ;
+lin dyed_in_the_wool_A = mkAMost "dyed-in-the-wool" "dyed-in-the-woolly" ;
+lin dyeing_N = mkN "dyeing" "dyeings" ;
+lin dyer_N = mkN "dyer" "dyers" ;
+lin dyestuff_N = mkN "dyestuff" "dyestuffs" ;
+lin dyewood_N = mkN "dyewood" "dyewoods" ;
+lin dyke_N = mkN "dyke" "dykes" ;
+lin dyke_V = mkV "dyke" "dyked" "dyked" ;
+lin dynamic_A = mkAMost "dynamic" "dynamicly" ;
+lin dynamic_N = mkN "dynamic" "dynamics" ;
+lin dynamically_Adv = mkAdv "dynamically" ;
+lin dynamics_N = mkN "dynamics" "dynamicses" ;
+lin dynamism_N = mkN "dynamism" "dynamisms" ;
+lin dynamite_N = mkN "dynamite" "dynamites" ;
+lin dynamite_V = mkV "dynamite" "dynamited" "dynamited" ;
+lin dynamiter_N = mkN "dynamiter" "dynamiters" ;
+lin dynamo_N = mkN "dynamo" "dynamos" ;
+lin dynamometer_N = mkN "dynamometer" "dynamometers" ;
+lin dynast_N = mkN "dynast" "dynasts" ;
+lin dynastic_A = mkAMost "dynastic" "dynasticly" ;
+lin dynasty_N = mkN "dynasty" "dynasties" ;
+lin dyne_N = mkN "dyne" "dynes" ;
+lin dysaphia_N = mkN "dysaphia" "dysaphias" ;
+lin dysarthria_N = mkN "dysarthria" "dysarthrias" ;
+lin dyscalculia_N = mkN "dyscalculia" "dyscalculias" ;
+lin dyschezia_N = mkN "dyschezia" "dyschezias" ;
+lin dyscrasia_N = mkN "dyscrasia" "dyscrasias" ;
+lin dysentery_N = mkN "dysentery" "dysenteries" ;
+lin dysfunction_N = mkN "dysfunction" "dysfunctions" ;
+lin dysfunctional_A = mkAMost "dysfunctional" "dysfunctionally" ;
+lin dysgenesis_N = mkN "dysgenesis" "dysgenesises" ;
+lin dysgenic_A = mkAMost "dysgenic" "dysgenicly" ;
+lin dysgenics_N = mkN "dysgenics" "dysgenicses" ;
+lin dysgraphia_N = mkN "dysgraphia" "dysgraphias" ;
+lin dyskinesia_N = mkN "dyskinesia" "dyskinesias" ;
+lin dyslectic_A = mkAMost "dyslectic" "dyslecticly" ;
+lin dyslectic_N = mkN "dyslectic" "dyslectics" ;
+lin dyslexia_N = mkN "dyslexia" "dyslexias" ;
+lin dyslexic_A = mkAMost "dyslexic" "dyslexicly" ;
+lin dyslogia_N = mkN "dyslogia" "dyslogias" ;
+lin dyslogistic_A = mkAMost "dyslogistic" "dyslogisticly" ;
+lin dysmenorrhea_N = mkN "dysmenorrhea" "dysmenorrheas" ;
+lin dysomia_N = mkN "dysomia" "dysomias" ;
+lin dysosmia_N = mkN "dysosmia" "dysosmias" ;
+lin dyspepsia_N = mkN "dyspepsia" "dyspepsias" ;
+lin dyspeptic_A = mkAMost "dyspeptic" "dyspepticly" ;
+lin dyspeptic_N = mkN "dyspeptic" "dyspeptics" ;
+lin dysphagia_N = mkN "dysphagia" "dysphagias" ;
+lin dysphasia_N = mkN "dysphasia" "dysphasias" ;
+lin dysphemism_N = mkN "dysphemism" "dysphemisms" ;
+lin dysphemistic_A = mkAMost "dysphemistic" "dysphemisticly" ;
+lin dysphonia_N = mkN "dysphonia" "dysphonias" ;
+lin dysphoria_N = mkN "dysphoria" "dysphorias" ;
+lin dysphoric_A = mkAMost "dysphoric" "dysphoricly" ;
+lin dysplasia_N = mkN "dysplasia" "dysplasias" ;
+lin dysplastic_A = mkAMost "dysplastic" "dysplasticly" ;
+lin dyspnea_N = mkN "dyspnea" "dyspneas" ;
+lin dysprosium_N = mkN "dysprosium" "dysprosiums" ;
+lin dysthymia_N = mkN "dysthymia" "dysthymias" ;
+lin dystopia_N = mkN "dystopia" "dystopias" ;
+lin dystopian_A = mkAMost "dystopian" "dystopianly" ;
+lin dystrophy_N = mkN "dystrophy" "dystrophies" ;
+lin dysuria_N = mkN "dysuria" "dysurias" ;
+lin débris_N = mkN "débris" "débrises" ;
+lin début_N = mkN "début" "débuts" ;
+lin débutante_N = mkN "débutante" "débutantes" ;
+lin débâcle_N = mkN "débâcle" "débâcles" ;
+lin décolleté_A = mkAMost "décolleté" "décolletély" ;
+lin décor_N = mkN "décor" "décors" ;
+lin démarche_N = mkN "démarche" "démarches" ;
+lin démodé_A = mkAMost "démodé" "démodély" ;
+lin dénouement_N = mkN "dénouement" "dénouements" ;
+lin déshabillé_N = mkN "déshabillé" "déshabillés" ;
+lin détente_N = mkN "détente" "détentes" ;
+lin e'en_Adv = mkAdv "e'en" ;
+lin e'er_Adv = mkAdv "e'er" ;
+lin e_mail_N = mkN "e-mail" "e-mails" ;
+lin each_Adv = mkAdv "each" ;
+lin eager_A = mkAMost "eager" "eagerly" ;
+lin eagerness_N = mkN "eagerness" "eagernesses" ;
+lin eagle_N = mkN "eagle" "eagles" ;
+lin eagle_eyed_A = mkAMost "eagle-eyed" "eagle-eyedly" ;
+lin eaglet_N = mkN "eaglet" "eaglets" ;
+lin ear_N = mkN "ear" "ears" ;
+lin ear_trumpet_N = mkN "ear-trumpet" "ear-trumpets" ;
+lin earache_N = mkN "earache" "earaches" ;
+lin eardrop_N = mkN "eardrop" "eardrops" ;
+lin eardrum_N = mkN "eardrum" "eardrums" ;
+lin eared_A = mkAMost "eared" "earedly" ;
+lin earflap_N = mkN "earflap" "earflaps" ;
+lin earful_N = mkN "earful" "earfuls" ;
+lin earl_N = mkN "earl" "earls" ;
+lin earldom_N = mkN "earldom" "earldoms" ;
+lin earless_A = mkAMost "earless" "earlessly" ;
+lin earlier_A = mkAMost "earlier" "earlierly" ;
+lin earlier_Adv = mkAdv "earlier" ;
+lin earliness_N = mkN "earliness" "earlinesses" ;
+lin earlobe_N = mkN "earlobe" "earlobes" ;
+lin early_A = mkA "early" "earlier" "earliest" "earlily" ;
+lin early_Adv = mkAdv "early" ;
+lin early_on_Adv = mkAdv "early on" ;
+lin early_warning_A = mkAMost "early-warning" "early-warningly" ;
+lin earlyish_A = mkAMost "earlyish" "earlyishly" ;
+lin earmark_N = mkN "earmark" "earmarks" ;
+lin earmark_V = mkV "earmark" "earmarked" "earmarked" ;
+lin earmuff_N = mkN "earmuff" "earmuffs" ;
+lin earn_V = mkV "earn" "earned" "earned" ;
+lin earner_N = mkN "earner" "earners" ;
+lin earnest_A = mkAMost "earnest" "earnestly" ;
+lin earnest_N = mkN "earnest" "earnests" ;
+lin earnest_money_N = mkN "earnest-money" "earnest-moneys" ;
+lin earnestness_N = mkN "earnestness" "earnestnesses" ;
+lin earphone_N = mkN "earphone" "earphones" ;
+lin earpiece_N = mkN "earpiece" "earpieces" ;
+lin earplug_N = mkN "earplug" "earplugs" ;
+lin earring_N = mkN "earring" "earrings" ;
+lin earshot_N = mkN "earshot" "earshots" ;
+lin earth_N = mkN "earth" "earths" ;
+lin earth_V = mkV "earth" "earthed" "earthed" ;
+lin earth_closet_N = mkN "earth-closet" "earth-closets" ;
+lin earthball_N = mkN "earthball" "earthballs" ;
+lin earthborn_A = mkAMost "earthborn" "earthbornly" ;
+lin earthbound_A = mkAMost "earthbound" "earthboundly" ;
+lin earthen_A = mkAMost "earthen" "earthenly" ;
+lin earthenware_N = mkN "earthenware" "earthenwares" ;
+lin earthlike_A = mkAMost "earthlike" "earthlikely" ;
+lin earthly_A = mkAMost "earthly" "earthlily" ;
+lin earthnut_N = mkN "earthnut" "earthnuts" ;
+lin earthquake_N = mkN "earthquake" "earthquakes" ;
+lin earthshaking_A = mkAMost "earthshaking" "earthshakingly" ;
+lin earthstar_N = mkN "earthstar" "earthstars" ;
+lin earthtongue_N = mkN "earthtongue" "earthtongues" ;
+lin earthwork_N = mkN "earthwork" "earthworks" ;
+lin earthworm_N = mkN "earthworm" "earthworms" ;
+lin earthy_A = mkA "earthy" "earthier" "earthiest" "earthily" ;
+lin earwax_N = mkN "earwax" "earwaxes" ;
+lin earwig_N = mkN "earwig" "earwigs" ;
+lin ease_N = mkN "ease" "eases" ;
+lin ease_V = mkV "ease" "eased" "eased" ;
+lin easel_N = mkN "easel" "easels" ;
+lin easement_N = mkN "easement" "easements" ;
+lin easiness_N = mkN "easiness" "easinesses" ;
+lin easing_N = mkN "easing" "easings" ;
+lin eastbound_A = mkAMost "eastbound" "eastboundly" ;
+lin easter_N = mkN "easter" "easters" ;
+lin easterly_A = mkAMost "easterly" "easterlily" ;
+lin easterly_Adv = mkAdv "easterly" ;
+lin easterner_N = mkN "easterner" "easterners" ;
+lin easternmost_A = mkAMost "easternmost" "easternmostly" ;
+lin eastside_A = mkAMost "eastside" "eastsidely" ;
+lin eastward_A = mkAMost "eastward" "eastwardly" ;
+lin eastward_Adv = mkAdv "eastward" ;
+lin eastwards_Adv = mkAdv "eastwards" ;
+lin easy_A = mkA "easy" "easier" "easiest" "easily" ;
+lin easy_Adv = mkAdv "easy" ;
+lin easygoing_A = mkAMost "easygoing" "easygoingly" ;
+lin easygoingness_N = mkN "easygoingness" "easygoingnesses" ;
+lin eat_V = mkV "eat" "ate" "eaten" ;
+lin eatable_A = mkAMost "eatable" "eatably" ;
+lin eatable_N = mkN "eatable" "eatables" ;
+lin eatage_N = mkN "eatage" "eatages" ;
+lin eater_N = mkN "eater" "eaters" ;
+lin eating_N = mkN "eating" "eatings" ;
+lin eating_apple_N = mkN "eating-apple" "eating-apples" ;
+lin eating_house_N = mkN "eating-house" "eating-houses" ;
+lin eau_de_cologne_N = mkN "eau de cologne" "eau de colognes" ;
+lin eau_de_vie_N = mkN "eau-de-vie" "eau-de-vies" ;
+lin eaves_N = mkN "eaves" "eaveses" ;
+lin eavesdrop_V = mkV "eavesdrop" "eavesdropped" "eavesdropped" ;
+lin eavesdropper_N = mkN "eavesdropper" "eavesdroppers" ;
+lin ebb_N = mkN "ebb" "ebbs" ;
+lin ebb_V = mkV "ebb" "ebbed" "ebbed" ;
+lin ebbtide_N = mkN "ebbtide" "ebbtides" ;
+lin eblis_N = mkN "eblis" "eblises" ;
+lin ebon_A = mkAMost "ebon" "ebonly" ;
+lin ebonite_N = mkN "ebonite" "ebonites" ;
+lin ebony_A = mkAMost "ebony" "ebonily" ;
+lin ebony_N = mkN "ebony" "ebonies" ;
+lin ebracteate_A = mkAMost "ebracteate" "ebracteately" ;
+lin ebullience_N = mkN "ebullience" "ebulliences" ;
+lin ebullient_A = mkAMost "ebullient" "ebulliently" ;
+lin eburnation_N = mkN "eburnation" "eburnations" ;
+lin ec_N = mkN "ec" "ecs" ;
+lin ecarte_N = mkN "ecarte" "ecartes" ;
+lin eccentric_A = mkAMost "eccentric" "eccentricly" ;
+lin eccentric_N = mkN "eccentric" "eccentrics" ;
+lin eccentrically_Adv = mkAdv "eccentrically" ;
+lin eccentricity_N = mkN "eccentricity" "eccentricities" ;
+lin ecchymosis_N = mkN "ecchymosis" "ecchymosises" ;
+lin ecclesiastic_N = mkN "ecclesiastic" "ecclesiastics" ;
+lin ecclesiastical_A = mkAMost "ecclesiastical" "ecclesiastically" ;
+lin ecclesiasticism_N = mkN "ecclesiasticism" "ecclesiasticisms" ;
+lin ecclesiology_N = mkN "ecclesiology" "ecclesiologies" ;
+lin eccrine_A = mkAMost "eccrine" "eccrinely" ;
+lin ecdemic_A = mkAMost "ecdemic" "ecdemicly" ;
+lin echelon_N = mkN "echelon" "echelons" ;
+lin echidna_N = mkN "echidna" "echidnas" ;
+lin echinocactus_N = mkN "echinocactus" "echinocactuses" ;
+lin echinococcosis_N = mkN "echinococcosis" "echinococcosises" ;
+lin echinococcus_N = mkN "echinococcus" "echinococcuses" ;
+lin echinoderm_N = mkN "echinoderm" "echinoderms" ;
+lin echinus_N = mkN "echinus" "echinuses" ;
+lin echo_N = mkN "echo" "echoes" ;
+lin echo_V = mkV "echo" "echoed" "echoed" ;
+lin echo_sounder_N = mkN "echo-sounder" "echo-sounders" ;
+lin echo_sounding_N = mkN "echo-sounding" "echo-soundings" ;
+lin echocardiogram_N = mkN "echocardiogram" "echocardiograms" ;
+lin echocardiograph_N = mkN "echocardiograph" "echocardiographs" ;
+lin echocardiography_N = mkN "echocardiography" "echocardiographies" ;
+lin echoencephalogram_N = mkN "echoencephalogram" "echoencephalograms" ;
+lin echoencephalograph_N = mkN "echoencephalograph" "echoencephalographs" ;
+lin echoencephalography_N = mkN "echoencephalography" "echoencephalographies" ;
+lin echoic_A = mkAMost "echoic" "echoicly" ;
+lin echolalia_N = mkN "echolalia" "echolalias" ;
+lin echoless_A = mkAMost "echoless" "echolessly" ;
+lin echolocation_N = mkN "echolocation" "echolocations" ;
+lin echovirus_N = mkN "echovirus" "echoviruses" ;
+lin eclampsia_N = mkN "eclampsia" "eclampsias" ;
+lin eclectic_A = mkAMost "eclectic" "eclecticly" ;
+lin eclectic_N = mkN "eclectic" "eclectics" ;
+lin eclecticism_N = mkN "eclecticism" "eclecticisms" ;
+lin eclipse_N = mkN "eclipse" "eclipses" ;
+lin eclipse_V = mkV "eclipse" "eclipsed" "eclipsed" ;
+lin ecliptic_N = mkN "ecliptic" "ecliptics" ;
+lin eclogue_N = mkN "eclogue" "eclogues" ;
+lin ecobabble_N = mkN "ecobabble" "ecobabbles" ;
+lin ecological_A = mkAMost "ecological" "ecologically" ;
+lin ecologist_N = mkN "ecologist" "ecologists" ;
+lin ecology_N = mkN "ecology" "ecologies" ;
+lin econometric_A = mkAMost "econometric" "econometricly" ;
+lin econometrician_N = mkN "econometrician" "econometricians" ;
+lin econometrics_N = mkN "econometrics" "econometricses" ;
+lin economic_A = mkAMost "economic" "economicly" ;
+lin economical_A = mkAMost "economical" "economically" ;
+lin economics_N = mkN "economics" "economics" ;
+lin economist_N = mkN "economist" "economists" ;
+lin economize_V = mkV "economize" "economized" "economized" ;
+lin economizer_N = mkN "economizer" "economizers" ;
+lin economy_N = mkN "economy" "economies" ;
+lin ecosystem_N = mkN "ecosystem" "ecosystems" ;
+lin ecoterrorism_N = mkN "ecoterrorism" "ecoterrorisms" ;
+lin ecotourism_N = mkN "ecotourism" "ecotourisms" ;
+lin ecphonesis_N = mkN "ecphonesis" "ecphonesises" ;
+lin ecstasy_N = mkN "ecstasy" "ecstasies" ;
+lin ecstatic_A = mkAMost "ecstatic" "ecstaticly" ;
+lin ecstatically_Adv = mkAdv "ecstatically" ;
+lin ectasia_N = mkN "ectasia" "ectasias" ;
+lin ectoderm_N = mkN "ectoderm" "ectoderms" ;
+lin ectodermal_A = mkAMost "ectodermal" "ectodermally" ;
+lin ectomorph_N = mkN "ectomorph" "ectomorphs" ;
+lin ectomorphic_A = mkAMost "ectomorphic" "ectomorphicly" ;
+lin ectoparasite_N = mkN "ectoparasite" "ectoparasites" ;
+lin ectopia_N = mkN "ectopia" "ectopias" ;
+lin ectopic_A = mkAMost "ectopic" "ectopicly" ;
+lin ectoplasm_N = mkN "ectoplasm" "ectoplasms" ;
+lin ectoproct_N = mkN "ectoproct" "ectoprocts" ;
+lin ectrodactyly_N = mkN "ectrodactyly" "ectrodactylies" ;
+lin ecuadorian_A = mkAMost "ecuadorian" "ecuadorianly" ;
+lin ecuadorian_N = mkN "ecuadorian" "ecuadorians" ;
+lin ecumenic_A = mkAMost "ecumenic" "ecumenicly" ;
+lin ecumenical_A = mkAMost "ecumenical" "ecumenically" ;
+lin ecumenism_N = mkN "ecumenism" "ecumenisms" ;
+lin eczema_N = mkN "eczema" "eczemas" ;
+lin edacious_A = mkAMost "edacious" "edaciously" ;
+lin edacity_N = mkN "edacity" "edacities" ;
+lin edaphosaurus_N = mkN "edaphosaurus" "edaphosauruses" ;
+lin eddy_N = mkN "eddy" "eddies" ;
+lin eddy_V = mkV "eddy" "eddied" "eddied" ;
+lin edelweiss_N = mkN "edelweiss" "edelweisses" ;
+lin edema_N = mkN "edema" "edemas" ;
+lin edematous_A = mkAMost "edematous" "edematously" ;
+lin edental_A = mkAMost "edental" "edentally" ;
+lin edentate_N = mkN "edentate" "edentates" ;
+lin edentulous_A = mkAMost "edentulous" "edentulously" ;
+lin edge_N = mkN "edge" "edges" ;
+lin edge_V = mkV "edge" "edged" "edged" ;
+lin edgeless_A = mkAMost "edgeless" "edgelessly" ;
+lin edger_N = mkN "edger" "edgers" ;
+lin edgeways_Adv = mkAdv "edgeways" ;
+lin edgewise_Adv = mkAdv "edgewise" ;
+lin edginess_N = mkN "edginess" "edginesses" ;
+lin edging_N = mkN "edging" "edgings" ;
+lin edgy_A = mkA "edgy" "edgier" "edgiest" "edgily" ;
+lin edibility_N = mkN "edibility" "edibilities" ;
+lin edible_A = mkAMost "edible" "edibly" ;
+lin edible_N = mkN "edible" "edibles" ;
+lin edict_N = mkN "edict" "edicts" ;
+lin edification_N = mkN "edification" "edifications" ;
+lin edifice_N = mkN "edifice" "edifices" ;
+lin edify_V = mkV "edify" "edified" "edified" ;
+lin edifying_A = mkAMost "edifying" "edifyingly" ;
+lin edit_V = mkV "edit" "edited" "edited" ;
+lin editing_N = mkN "editing" "editings" ;
+lin edition_N = mkN "edition" "editions" ;
+lin editor_N = mkN "editor" "editors" ;
+lin editorial_A = mkAMost "editorial" "editorially" ;
+lin editorial_N = mkN "editorial" "editorials" ;
+lin editorship_N = mkN "editorship" "editorships" ;
+lin edmontosaurus_N = mkN "edmontosaurus" "edmontosauruses" ;
+lin edp_N = mkN "edp" "edps" ;
+lin educate_V = mkV "educate" "educated" "educated" ;
+lin education_N = mkN "education" "educations" ;
+lin educational_A = mkAMost "educational" "educationally" ;
+lin educationalist_N = mkN "educationalist" "educationalists" ;
+lin educationist_N = mkN "educationist" "educationists" ;
+lin educative_A = mkAMost "educative" "educatively" ;
+lin educator_N = mkN "educator" "educators" ;
+lin educe_V = mkV "educe" "educed" "educed" ;
+lin edutainment_N = mkN "edutainment" "edutainments" ;
+lin edwardian_A = mkAMost "edwardian" "edwardianly" ;
+lin edwardian_N = mkN "edwardian" "edwardians" ;
+lin eec_N = mkN "eec" "eecs" ;
+lin eeg_N = mkN "eeg" "eegs" ;
+lin eel_N = mkN "eel" "eels" ;
+lin eelblenny_N = mkN "eelblenny" "eelblennies" ;
+lin eelgrass_N = mkN "eelgrass" "eelgrasses" ;
+lin eellike_A = mkAMost "eellike" "eellikely" ;
+lin eelpout_N = mkN "eelpout" "eelpouts" ;
+lin eelworm_N = mkN "eelworm" "eelworms" ;
+lin eerie_A = mkA "eerie" "eerier" "eeriest" "eeriely" ;
+lin eeriness_N = mkN "eeriness" "eerinesses" ;
+lin eery_A = mkA "eery" "eerier" "eeriest" "eerily" ;
+lin eff_V = mkV "eff" "effed" "effed" ;
+lin efface_V = mkV "efface" "effaced" "effaced" ;
+lin effaceable_A = mkAMost "effaceable" "effaceably" ;
+lin effacement_N = mkN "effacement" "effacements" ;
+lin effect_N = mkN "effect" "effects" ;
+lin effect_V = mkV "effect" "effected" "effected" ;
+lin effecter_N = mkN "effecter" "effecters" ;
+lin effective_A = mkAMost "effective" "effectively" ;
+lin effectiveness_N = mkN "effectiveness" "effectivenesses" ;
+lin effector_N = mkN "effector" "effectors" ;
+lin effects_N = mkN "effects" "effectses" ;
+lin effectual_A = mkAMost "effectual" "effectually" ;
+lin effectuality_N = mkN "effectuality" "effectualities" ;
+lin effectualness_N = mkN "effectualness" "effectualnesses" ;
+lin effeminacy_N = mkN "effeminacy" "effeminacies" ;
+lin effeminate_A = mkAMost "effeminate" "effeminately" ;
+lin effendi_N = mkN "effendi" "effendis" ;
+lin efferent_A = mkAMost "efferent" "efferently" ;
+lin effervesce_V = mkV "effervesce" "effervesced" "effervesced" ;
+lin effervescence_N = mkN "effervescence" "effervescences" ;
+lin effervescent_A = mkAMost "effervescent" "effervescently" ;
+lin effete_A = mkAMost "effete" "effetely" ;
+lin effeteness_N = mkN "effeteness" "effetenesses" ;
+lin efficacious_A = mkAMost "efficacious" "efficaciously" ;
+lin efficacy_N = mkN "efficacy" "efficacies" ;
+lin efficiency_N = mkN "efficiency" "efficiencies" ;
+lin efficient_A = mkAMost "efficient" "efficiently" ;
+lin effigy_N = mkN "effigy" "effigies" ;
+lin effleurage_N = mkN "effleurage" "effleurages" ;
+lin efflorescence_N = mkN "efflorescence" "efflorescences" ;
+lin efflorescent_A = mkAMost "efflorescent" "efflorescently" ;
+lin effluent_A = mkAMost "effluent" "effluently" ;
+lin effluent_N = mkN "effluent" "effluents" ;
+lin effluvium_N = mkN "effluvium" "effluviums" ;
+lin efflux_N = mkN "efflux" "effluxes" ;
+lin effort_N = mkN "effort" "efforts" ;
+lin effortful_A = mkAMost "effortful" "effortfully" ;
+lin effortfulness_N = mkN "effortfulness" "effortfulnesses" ;
+lin effortless_A = mkAMost "effortless" "effortlessly" ;
+lin effortlessness_N = mkN "effortlessness" "effortlessnesses" ;
+lin effrontery_N = mkN "effrontery" "effronteries" ;
+lin effulgence_N = mkN "effulgence" "effulgences" ;
+lin effulgent_A = mkAMost "effulgent" "effulgently" ;
+lin effusion_N = mkN "effusion" "effusions" ;
+lin effusive_A = mkAMost "effusive" "effusively" ;
+lin effusiveness_N = mkN "effusiveness" "effusivenesses" ;
+lin eft_N = mkN "eft" "efts" ;
+lin efta_N = mkN "efta" "eftas" ;
+lin egalitarian_A = mkAMost "egalitarian" "egalitarianly" ;
+lin egalitarian_N = mkN "egalitarian" "egalitarians" ;
+lin egalitarianism_N = mkN "egalitarianism" "egalitarianisms" ;
+lin egality_N = mkN "egality" "egalities" ;
+lin egg_N = mkN "egg" "eggs" ;
+lin egg_V = mkV "egg" "egged" "egged" ;
+lin egg_beater_N = mkN "egg-beater" "egg-beaters" ;
+lin egg_cup_N = mkN "egg-cup" "egg-cups" ;
+lin egg_whisk_N = mkN "egg-whisk" "egg-whisks" ;
+lin eggar_N = mkN "eggar" "eggars" ;
+lin eggbeater_N = mkN "eggbeater" "eggbeaters" ;
+lin eggcup_N = mkN "eggcup" "eggcups" ;
+lin egghead_N = mkN "egghead" "eggheads" ;
+lin eggnog_N = mkN "eggnog" "eggnogs" ;
+lin eggplant_N = mkN "eggplant" "eggplants" ;
+lin eggshake_N = mkN "eggshake" "eggshakes" ;
+lin eggshell_N = mkN "eggshell" "eggshells" ;
+lin eglantine_N = mkN "eglantine" "eglantines" ;
+lin ego_N = mkN "ego" "egos" ;
+lin egocentric_A = mkAMost "egocentric" "egocentricly" ;
+lin egocentric_N = mkN "egocentric" "egocentrics" ;
+lin egoism_N = mkN "egoism" "egoisms" ;
+lin egoist_N = mkN "egoist" "egoists" ;
+lin egoistic_A = mkAMost "egoistic" "egoisticly" ;
+lin egoistical_A = mkAMost "egoistical" "egoistically" ;
+lin egomania_N = mkN "egomania" "egomanias" ;
+lin egomaniac_N = mkN "egomaniac" "egomaniacs" ;
+lin egotism_N = mkN "egotism" "egotisms" ;
+lin egotist_N = mkN "egotist" "egotists" ;
+lin egotistic_A = mkAMost "egotistic" "egotisticly" ;
+lin egotistically_Adv = mkAdv "egotistically" ;
+lin egotrip_N = mkN "egotrip" "egotrips" ;
+lin egotrip_V = mkV "egotrip" "egotripped" "egotripped" ;
+lin egregious_A = mkAMost "egregious" "egregiously" ;
+lin egress_N = mkN "egress" "egresses" ;
+lin egret_N = mkN "egret" "egrets" ;
+lin egyptian_A = mkAMost "egyptian" "egyptianly" ;
+lin egyptian_N = mkN "egyptian" "egyptians" ;
+lin eider_N = mkN "eider" "eiders" ;
+lin eiderdown_N = mkN "eiderdown" "eiderdowns" ;
+lin eidetic_A = mkAMost "eidetic" "eideticly" ;
+lin eidos_N = mkN "eidos" "eidoses" ;
+lin eigenvalue_N = mkN "eigenvalue" "eigenvalues" ;
+lin eightpence_N = mkN "eightpence" "eightpences" ;
+lin eightpenny_A = mkAMost "eightpenny" "eightpennily" ;
+lin eightsome_N = mkN "eightsome" "eightsomes" ;
+lin einsteinium_N = mkN "einsteinium" "einsteiniums" ;
+lin eisegesis_N = mkN "eisegesis" "eisegesises" ;
+lin eisteddfod_N = mkN "eisteddfod" "eisteddfods" ;
+lin either_Adv = mkAdv "either" ;
+lin ejaculate_V = mkV "ejaculate" "ejaculated" "ejaculated" ;
+lin ejaculation_N = mkN "ejaculation" "ejaculations" ;
+lin ejaculator_N = mkN "ejaculator" "ejaculators" ;
+lin eject_V = mkV "eject" "ejected" "ejected" ;
+lin ejection_N = mkN "ejection" "ejections" ;
+lin ejector_N = mkN "ejector" "ejectors" ;
+lin ejector_seat_N = mkN "ejector-seat" "ejector-seats" ;
+lin eke_V = mkV "eke" "eked" "eked" ;
+lin el_dorado_N = mkN "el dorado" "el doradi" ;
+lin elaborate_A = mkAMost "elaborate" "elaborately" ;
+lin elaborate_V = mkV "elaborate" "elaborated" "elaborated" ;
+lin elaborateness_N = mkN "elaborateness" "elaboratenesses" ;
+lin elaboration_N = mkN "elaboration" "elaborations" ;
+lin eland_N = mkN "eland" "elands" ;
+lin elapid_N = mkN "elapid" "elapids" ;
+lin elapse_V = mkV "elapse" "elapsed" "elapsed" ;
+lin elapsed_A = mkAMost "elapsed" "elapsedly" ;
+lin elasmobranch_N = mkN "elasmobranch" "elasmobranches" ;
+lin elastance_N = mkN "elastance" "elastances" ;
+lin elastase_N = mkN "elastase" "elastases" ;
+lin elastic_A = mkAMost "elastic" "elasticly" ;
+lin elastic_N = mkN "elastic" "elastics" ;
+lin elasticity_N = mkN "elasticity" "elasticities" ;
+lin elasticized_A = mkAMost "elasticized" "elasticizedly" ;
+lin elastin_N = mkN "elastin" "elastins" ;
+lin elastomer_N = mkN "elastomer" "elastomers" ;
+lin elastoplast_N = mkN "elastoplast" "elastoplasts" ;
+lin elastosis_N = mkN "elastosis" "elastosises" ;
+lin elate_V = mkV "elate" "elated" "elated" ;
+lin elating_A = mkAMost "elating" "elatingly" ;
+lin elation_N = mkN "elation" "elations" ;
+lin elbow_N = mkN "elbow" "elbows" ;
+lin elbow_V = mkV "elbow" "elbowed" "elbowed" ;
+lin elbowing_N = mkN "elbowing" "elbowings" ;
+lin elder_A = mkAMost "elder" "elderly" ;
+lin elder_N = mkN "elder" "elders" ;
+lin elderberry_N = mkN "elderberry" "elderberries" ;
+lin elderly_A = mkAMost "elderly" "elderlily" ;
+lin eldership_N = mkN "eldership" "elderships" ;
+lin eldritch_A = mkAMost "eldritch" "eldritchly" ;
+lin elecampane_N = mkN "elecampane" "elecampanes" ;
+lin elect_A = mkAMost "elect" "electly" ;
+lin elect_V = mkV "elect" "elected" "elected" ;
+lin election_N = mkN "election" "elections" ;
+lin electioneering_N = mkN "electioneering" "electioneerings" ;
+lin elective_A = mkAMost "elective" "electively" ;
+lin elector_N = mkN "elector" "electors" ;
+lin electoral_A = mkAMost "electoral" "electorally" ;
+lin electorate_N = mkN "electorate" "electorates" ;
+lin electric_A = mkAMost "electric" "electricly" ;
+lin electric_N = mkN "electric" "electrics" ;
+lin electrical_A = mkAMost "electrical" "electrically" ;
+lin electrician_N = mkN "electrician" "electricians" ;
+lin electricity_N = mkN "electricity" "electricities" ;
+lin electrification_N = mkN "electrification" "electrifications" ;
+lin electrify_V = mkV "electrify" "electrified" "electrified" ;
+lin electrifying_A = mkAMost "electrifying" "electrifyingly" ;
+lin electrocardiogram_N = mkN "electrocardiogram" "electrocardiograms" ;
+lin electrocardiograph_N = mkN "electrocardiograph" "electrocardiographs" ;
+lin electrocardiographic_A = mkAMost "electrocardiographic" "electrocardiographicly" ;
+lin electrocautery_N = mkN "electrocautery" "electrocauteries" ;
+lin electrochemical_A = mkAMost "electrochemical" "electrochemically" ;
+lin electrochemistry_N = mkN "electrochemistry" "electrochemistries" ;
+lin electrocute_V = mkV "electrocute" "electrocuted" "electrocuted" ;
+lin electrocution_N = mkN "electrocution" "electrocutions" ;
+lin electrocutioner_N = mkN "electrocutioner" "electrocutioners" ;
+lin electrode_N = mkN "electrode" "electrodes" ;
+lin electrodeposition_N = mkN "electrodeposition" "electrodepositions" ;
+lin electrodynamometer_N = mkN "electrodynamometer" "electrodynamometers" ;
+lin electroencephalogram_N = mkN "electroencephalogram" "electroencephalograms" ;
+lin electroencephalograph_N = mkN "electroencephalograph" "electroencephalographs" ;
+lin electroencephalographic_A = mkAMost "electroencephalographic" "electroencephalographicly" ;
+lin electrograph_N = mkN "electrograph" "electrographs" ;
+lin electrologist_N = mkN "electrologist" "electrologists" ;
+lin electrolysis_N = mkN "electrolysis" "electrolysises" ;
+lin electrolyte_N = mkN "electrolyte" "electrolytes" ;
+lin electrolytic_A = mkAMost "electrolytic" "electrolyticly" ;
+lin electrolytic_N = mkN "electrolytic" "electrolytics" ;
+lin electromagnet_N = mkN "electromagnet" "electromagnets" ;
+lin electromagnetic_A = mkAMost "electromagnetic" "electromagneticly" ;
+lin electromagnetism_N = mkN "electromagnetism" "electromagnetisms" ;
+lin electromechanical_A = mkAMost "electromechanical" "electromechanically" ;
+lin electrometer_N = mkN "electrometer" "electrometers" ;
+lin electromotive_A = mkAMost "electromotive" "electromotively" ;
+lin electromyogram_N = mkN "electromyogram" "electromyograms" ;
+lin electromyograph_N = mkN "electromyograph" "electromyographs" ;
+lin electromyography_N = mkN "electromyography" "electromyographies" ;
+lin electron_N = mkN "electron" "electrons" ;
+lin electronegativity_N = mkN "electronegativity" "electronegativities" ;
+lin electronic_A = mkAMost "electronic" "electronicly" ;
+lin electronically_Adv = mkAdv "electronically" ;
+lin electronics_N = mkN "electronics" "electronics" ;
+lin electrophoresis_N = mkN "electrophoresis" "electrophoresises" ;
+lin electrophoretic_A = mkAMost "electrophoretic" "electrophoreticly" ;
+lin electrophorus_N = mkN "electrophorus" "electrophoruses" ;
+lin electroplate_N = mkN "electroplate" "electroplates" ;
+lin electroplate_V = mkV "electroplate" "electroplated" "electroplated" ;
+lin electroplater_N = mkN "electroplater" "electroplaters" ;
+lin electroretinogram_N = mkN "electroretinogram" "electroretinograms" ;
+lin electroscope_N = mkN "electroscope" "electroscopes" ;
+lin electrosleep_N = mkN "electrosleep" "electrosleeps" ;
+lin electrostatic_A = mkAMost "electrostatic" "electrostaticly" ;
+lin electrostatically_Adv = mkAdv "electrostatically" ;
+lin electrostatics_N = mkN "electrostatics" "electrostaticses" ;
+lin electrosurgery_N = mkN "electrosurgery" "electrosurgeries" ;
+lin electrotherapist_N = mkN "electrotherapist" "electrotherapists" ;
+lin electrotherapy_N = mkN "electrotherapy" "electrotherapies" ;
+lin electrum_N = mkN "electrum" "electrums" ;
+lin eleemosynary_A = mkAMost "eleemosynary" "eleemosynarily" ;
+lin elegance_N = mkN "elegance" "elegances" ;
+lin elegant_A = mkAMost "elegant" "elegantly" ;
+lin elegiac_A = mkAMost "elegiac" "elegiacly" ;
+lin elegist_N = mkN "elegist" "elegists" ;
+lin elegy_N = mkN "elegy" "elegies" ;
+lin element_N = mkN "element" "elements" ;
+lin elemental_A = mkAMost "elemental" "elementally" ;
+lin elementary_A = mkAMost "elementary" "elementarily" ;
+lin elemi_N = mkN "elemi" "elemis" ;
+lin elephant_N = mkN "elephant" "elephants" ;
+lin elephantiasis_N = mkN "elephantiasis" "elephantiasises" ;
+lin elephantine_A = mkAMost "elephantine" "elephantinely" ;
+lin elevate_V = mkV "elevate" "elevated" "elevated" ;
+lin elevation_N = mkN "elevation" "elevations" ;
+lin elevator_N = mkN "elevator" "elevators" ;
+lin elf_N = mkN "elf" "elves" ;
+lin elfin_A = mkAMost "elfin" "elfinly" ;
+lin elfish_A = mkAMost "elfish" "elfishly" ;
+lin elicit_V = mkV "elicit" "elicited" "elicited" ;
+lin elicitation_N = mkN "elicitation" "elicitations" ;
+lin elide_V = mkV "elide" "elided" "elided" ;
+lin eligibility_N = mkN "eligibility" "eligibilities" ;
+lin eligible_A = mkAMost "eligible" "eligibly" ;
+lin eliminate_V = mkV "eliminate" "eliminated" "eliminated" ;
+lin elimination_N = mkN "elimination" "eliminations" ;
+lin eliminator_N = mkN "eliminator" "eliminators" ;
+lin elision_N = mkN "elision" "elisions" ;
+lin elite_N = mkN "elite" "elites" ;
+lin elitism_N = mkN "elitism" "elitisms" ;
+lin elitist_N = mkN "elitist" "elitists" ;
+lin elixir_N = mkN "elixir" "elixirs" ;
+lin elizabethan_A = mkAMost "elizabethan" "elizabethanly" ;
+lin elizabethan_N = mkN "elizabethan" "elizabethans" ;
+lin elk_N = mkN "elk" "elks" ;
+lin ell_N = mkN "ell" "ells" ;
+lin ellipse_N = mkN "ellipse" "ellipses" ;
+lin ellipsis_N = mkN "ellipsis" "ellipses" ;
+lin ellipsoid_A = mkAMost "ellipsoid" "ellipsoidly" ;
+lin ellipsoid_N = mkN "ellipsoid" "ellipsoids" ;
+lin elliptic_A = mkAMost "elliptic" "ellipticly" ;
+lin elliptical_A = mkAMost "elliptical" "elliptically" ;
+lin elm_N = mkN "elm" "elms" ;
+lin elocution_N = mkN "elocution" "elocutions" ;
+lin elocutionary_A = mkAMost "elocutionary" "elocutionarily" ;
+lin elocutionist_N = mkN "elocutionist" "elocutionists" ;
+lin elongate_A = mkAMost "elongate" "elongately" ;
+lin elongate_V = mkV "elongate" "elongated" "elongated" ;
+lin elongation_N = mkN "elongation" "elongations" ;
+lin elope_V = mkV "elope" "eloped" "eloped" ;
+lin elopement_N = mkN "elopement" "elopements" ;
+lin eloquence_N = mkN "eloquence" "eloquences" ;
+lin eloquent_A = mkAMost "eloquent" "eloquently" ;
+lin else_Adv = mkAdv "else" ;
+lin elsewhere_Adv = mkAdv "elsewhere" ;
+lin elsholtzia_N = mkN "elsholtzia" "elsholtzias" ;
+lin eluate_N = mkN "eluate" "eluates" ;
+lin elucidate_V = mkV "elucidate" "elucidated" "elucidated" ;
+lin elucidation_N = mkN "elucidation" "elucidations" ;
+lin elude_V = mkV "elude" "eluded" "eluded" ;
+lin elusive_A = mkAMost "elusive" "elusively" ;
+lin elusiveness_N = mkN "elusiveness" "elusivenesses" ;
+lin elution_N = mkN "elution" "elutions" ;
+lin elver_N = mkN "elver" "elvers" ;
+lin elves_N = mkN "elves" "elveses" ;
+lin elvish_A = mkAMost "elvish" "elvishly" ;
+lin elysian_A = mkAMost "elysian" "elysianly" ;
+lin em_N = mkN "em" "ems" ;
+lin emaciate_V = mkV "emaciate" "emaciated" "emaciated" ;
+lin emaciation_N = mkN "emaciation" "emaciations" ;
+lin emanate_V = mkV "emanate" "emanated" "emanated" ;
+lin emanation_N = mkN "emanation" "emanations" ;
+lin emancipate_V = mkV "emancipate" "emancipated" "emancipated" ;
+lin emancipation_N = mkN "emancipation" "emancipations" ;
+lin emancipative_A = mkAMost "emancipative" "emancipatively" ;
+lin emancipator_N = mkN "emancipator" "emancipators" ;
+lin emarginate_A = mkAMost "emarginate" "emarginately" ;
+lin emasculate_V = mkV "emasculate" "emasculated" "emasculated" ;
+lin emasculation_N = mkN "emasculation" "emasculations" ;
+lin embalm_V = mkV "embalm" "embalmed" "embalmed" ;
+lin embalmer_N = mkN "embalmer" "embalmers" ;
+lin embalmment_N = mkN "embalmment" "embalmments" ;
+lin embankment_N = mkN "embankment" "embankments" ;
+lin embargo_N = mkN "embargo" "embargoes" ;
+lin embargo_V = mkV "embargo" "embargoed" "embargoed" ;
+lin embark_V = mkV "embark" "embarked" "embarked" ;
+lin embarkation_N = mkN "embarkation" "embarkations" ;
+lin embarrass_V = mkV "embarrass" "embarrassed" "embarrassed" ;
+lin embarrassing_A = mkAMost "embarrassing" "embarrassingly" ;
+lin embarrassment_N = mkN "embarrassment" "embarrassments" ;
+lin embassy_N = mkN "embassy" "embassies" ;
+lin embattled_A = mkAMost "embattled" "embattledly" ;
+lin embed_V = mkV "embed" "embedded" "embedded" ;
+lin embellish_V = mkV "embellish" "embellished" "embellished" ;
+lin embellishment_N = mkN "embellishment" "embellishments" ;
+lin ember_N = mkN "ember" "embers" ;
+lin embezzle_V = mkV "embezzle" "embezzled" "embezzled" ;
+lin embezzlement_N = mkN "embezzlement" "embezzlements" ;
+lin embezzler_N = mkN "embezzler" "embezzlers" ;
+lin embitter_V = mkV "embitter" "embittered" "embittered" ;
+lin embitterment_N = mkN "embitterment" "embitterments" ;
+lin emblazon_V = mkV "emblazon" "emblazoned" "emblazoned" ;
+lin emblem_N = mkN "emblem" "emblems" ;
+lin emblematic_A = mkAMost "emblematic" "emblematicly" ;
+lin embodiment_N = mkN "embodiment" "embodiments" ;
+lin embody_V = mkV "embody" "embodied" "embodied" ;
+lin embolden_V = mkV "embolden" "emboldened" "emboldened" ;
+lin embolectomy_N = mkN "embolectomy" "embolectomies" ;
+lin embolic_A = mkAMost "embolic" "embolicly" ;
+lin embolism_N = mkN "embolism" "embolisms" ;
+lin embolus_N = mkN "embolus" "emboluses" ;
+lin embonpoint_A = mkAMost "embonpoint" "embonpointly" ;
+lin embonpoint_N = mkN "embonpoint" "embonpoints" ;
+lin emboss_V = mkV "emboss" "embossed" "embossed" ;
+lin embrace_N = mkN "embrace" "embraces" ;
+lin embrace_V = mkV "embrace" "embraced" "embraced" ;
+lin embrasure_N = mkN "embrasure" "embrasures" ;
+lin embrocation_N = mkN "embrocation" "embrocations" ;
+lin embroider_V = mkV "embroider" "embroidered" "embroidered" ;
+lin embroiderer_N = mkN "embroiderer" "embroiderers" ;
+lin embroideress_N = mkN "embroideress" "embroideresses" ;
+lin embroidery_N = mkN "embroidery" "embroideries" ;
+lin embroil_V = mkV "embroil" "embroiled" "embroiled" ;
+lin embryo_N = mkN "embryo" "embryos" ;
+lin embryologist_N = mkN "embryologist" "embryologists" ;
+lin embryology_N = mkN "embryology" "embryologies" ;
+lin embryonic_A = mkAMost "embryonic" "embryonicly" ;
+lin emeer_N = mkN "emeer" "emeers" ;
+lin emend_V = mkV "emend" "emended" "emended" ;
+lin emendation_N = mkN "emendation" "emendations" ;
+lin emerald_N = mkN "emerald" "emeralds" ;
+lin emerge_V = mkV "emerge" "emerged" "emerged" ;
+lin emergence_N = mkN "emergence" "emergences" ;
+lin emergency_N = mkN "emergency" "emergencies" ;
+lin emergent_A = mkAMost "emergent" "emergently" ;
+lin emeritus_A = mkAMost "emeritus" "emeritusly" ;
+lin emeritus_N = mkN "emeritus" "emerituses" ;
+lin emery_N = mkN "emery" "emeries" ;
+lin emetic_N = mkN "emetic" "emetics" ;
+lin emigrant_N = mkN "emigrant" "emigrants" ;
+lin emigrate_V = mkV "emigrate" "emigrated" "emigrated" ;
+lin emigration_N = mkN "emigration" "emigrations" ;
+lin eminence_N = mkN "eminence" "eminences" ;
+lin eminent_A = mkAMost "eminent" "eminently" ;
+lin emir_N = mkN "emir" "emirs" ;
+lin emirate_N = mkN "emirate" "emirates" ;
+lin emissary_N = mkN "emissary" "emissaries" ;
+lin emission_N = mkN "emission" "emissions" ;
+lin emit_V = mkV "emit" "emitted" "emitted" ;
+lin emitter_N = mkN "emitter" "emitters" ;
+lin emmenagogue_N = mkN "emmenagogue" "emmenagogues" ;
+lin emmer_N = mkN "emmer" "emmers" ;
+lin emmetropia_N = mkN "emmetropia" "emmetropias" ;
+lin emmetropic_A = mkAMost "emmetropic" "emmetropicly" ;
+lin emolument_N = mkN "emolument" "emoluments" ;
+lin emoticon_N = mkN "emoticon" "emoticons" ;
+lin emotion_N = mkN "emotion" "emotions" ;
+lin emotional_A = mkAMost "emotional" "emotionally" ;
+lin emotionality_N = mkN "emotionality" "emotionalities" ;
+lin emotionless_A = mkAMost "emotionless" "emotionlessly" ;
+lin emotionlessness_N = mkN "emotionlessness" "emotionlessnesses" ;
+lin emotive_A = mkAMost "emotive" "emotively" ;
+lin empale_V = mkV "empale" "empaled" "empaled" ;
+lin empanel_V = mkV "empanel" "empanelled" "empanelled" ;
+lin empathic_A = mkAMost "empathic" "empathicly" ;
+lin empathize_V = mkV "empathize" "empathized" "empathized" ;
+lin empathy_N = mkN "empathy" "empathies" ;
+lin emperor_N = mkN "emperor" "emperors" ;
+lin emphasis_N = mkN "emphasis" "emphases" ;
+lin emphasize_V = mkV "emphasize" "emphasized" "emphasized" ;
+lin emphasizing_N = mkN "emphasizing" "emphasizings" ;
+lin emphatic_A = mkAMost "emphatic" "emphaticly" ;
+lin emphatically_Adv = mkAdv "emphatically" ;
+lin emphysema_N = mkN "emphysema" "emphysemas" ;
+lin emphysematous_A = mkAMost "emphysematous" "emphysematously" ;
+lin empire_N = mkN "empire" "empires" ;
+lin empiric_A = mkAMost "empiric" "empiricly" ;
+lin empirical_A = mkAMost "empirical" "empirically" ;
+lin empiricism_N = mkN "empiricism" "empiricisms" ;
+lin empiricist_N = mkN "empiricist" "empiricists" ;
+lin emplacement_N = mkN "emplacement" "emplacements" ;
+lin emplane_V = mkV "emplane" "emplaned" "emplaned" ;
+lin employ_N = mkN "employ" "employs" ;
+lin employ_V = mkV "employ" "employed" "employed" ;
+lin employable_A = mkAMost "employable" "employably" ;
+lin employable_N = mkN "employable" "employables" ;
+lin employee_N = mkN "employee" "employees" ;
+lin employer_N = mkN "employer" "employers" ;
+lin employment_N = mkN "employment" "employments" ;
+lin emporium_N = mkN "emporium" "emporiums" ;
+lin empower_V = mkV "empower" "empowered" "empowered" ;
+lin empress_N = mkN "empress" "empresses" ;
+lin emptiness_N = mkN "emptiness" "emptinesses" ;
+lin empty_A = mkA "empty" "emptier" "emptiest" "emptily" ;
+lin empty_N = mkN "empty" "empties" ;
+lin empty_V = mkV "empty" "emptied" "emptied" ;
+lin empty_handed_A = mkAMost "empty-handed" "empty-handedly" ;
+lin empty_headed_A = mkAMost "empty-headed" "empty-headedly" ;
+lin emptying_N = mkN "emptying" "emptyings" ;
+lin empurpled_A = mkAMost "empurpled" "empurpledly" ;
+lin empyema_N = mkN "empyema" "empyemas" ;
+lin empyreal_A = mkAMost "empyreal" "empyreally" ;
+lin empyrean_A = mkAMost "empyrean" "empyreanly" ;
+lin empyrean_N = mkN "empyrean" "IRREG" ;
+lin emu_N = mkN "emu" "emus" ;
+lin emulate_V = mkV "emulate" "emulated" "emulated" ;
+lin emulation_N = mkN "emulation" "emulations" ;
+lin emulous_A = mkAMost "emulous" "emulously" ;
+lin emulsifier_N = mkN "emulsifier" "emulsifiers" ;
+lin emulsify_V = mkV "emulsify" "emulsified" "emulsified" ;
+lin emulsion_N = mkN "emulsion" "emulsions" ;
+lin en_N = mkN "en" "ens" ;
+lin en_clair_Adv = mkAdv "en clair" ;
+lin en_famille_Adv = mkAdv "en famille" ;
+lin en_masse_Adv = mkAdv "en masse" ;
+lin en_route_Adv = mkAdv "en route" ;
+lin enable_V = mkV "enable" "enabled" "enabled" ;
+lin enabling_A = mkAMost "enabling" "enablingly" ;
+lin enact_V = mkV "enact" "enacted" "enacted" ;
+lin enactment_N = mkN "enactment" "enactments" ;
+lin enalapril_N = mkN "enalapril" "enalaprils" ;
+lin enallage_N = mkN "enallage" "enallages" ;
+lin enamel_N = mkN "enamel" "enamels" ;
+lin enamel_V = mkV "enamel" "enamelled" "enamelled" ;
+lin enamelware_N = mkN "enamelware" "enamelwares" ;
+lin enamine_N = mkN "enamine" "enamines" ;
+lin enamored_A = mkAMost "enamored" "enamoredly" ;
+lin enamour_V = mkV "enamour" "enamoured" "enamoured" ;
+lin enanthem_N = mkN "enanthem" "enanthems" ;
+lin enantiomorph_N = mkN "enantiomorph" "enantiomorphs" ;
+lin enantiomorphism_N = mkN "enantiomorphism" "enantiomorphisms" ;
+lin enate_A = mkAMost "enate" "enately" ;
+lin enate_N = mkN "enate" "enates" ;
+lin encainide_N = mkN "encainide" "encainides" ;
+lin encamp_V = mkV "encamp" "encamped" "encamped" ;
+lin encampment_N = mkN "encampment" "encampments" ;
+lin encapsulation_N = mkN "encapsulation" "encapsulations" ;
+lin encase_V = mkV "encase" "encased" "encased" ;
+lin encasement_N = mkN "encasement" "encasements" ;
+lin encaustic_A = mkAMost "encaustic" "encausticly" ;
+lin encaustic_N = mkN "encaustic" "encaustics" ;
+lin encephalartos_N = mkN "encephalartos" "encephalartoses" ;
+lin encephalitis_N = mkN "encephalitis" "encephalitises" ;
+lin encephalocele_N = mkN "encephalocele" "encephaloceles" ;
+lin encephalogram_N = mkN "encephalogram" "encephalograms" ;
+lin encephalography_N = mkN "encephalography" "encephalographies" ;
+lin encephalomyelitis_N = mkN "encephalomyelitis" "encephalomyelitises" ;
+lin enchain_V = mkV "enchain" "enchained" "enchained" ;
+lin enchant_V = mkV "enchant" "enchanted" "enchanted" ;
+lin enchanter_N = mkN "enchanter" "enchanters" ;
+lin enchantingly_Adv = mkAdv "enchantingly" ;
+lin enchantment_N = mkN "enchantment" "enchantments" ;
+lin enchantress_N = mkN "enchantress" "enchantresses" ;
+lin enchilada_N = mkN "enchilada" "enchiladas" ;
+lin enchondroma_N = mkN "enchondroma" "enchondromas" ;
+lin encircle_V = mkV "encircle" "encircled" "encircled" ;
+lin encirclement_N = mkN "encirclement" "encirclements" ;
+lin enclave_N = mkN "enclave" "enclaves" ;
+lin enclose_V = mkV "enclose" "enclosed" "enclosed" ;
+lin enclosure_N = mkN "enclosure" "enclosures" ;
+lin encode_V = mkV "encode" "encoded" "encoded" ;
+lin encoding_N = mkN "encoding" "encodings" ;
+lin encolure_N = mkN "encolure" "encolures" ;
+lin encomiastic_A = mkAMost "encomiastic" "encomiasticly" ;
+lin encomium_N = mkN "encomium" "encomiums" ;
+lin encompass_V = mkV "encompass" "encompassed" "encompassed" ;
+lin encompassment_N = mkN "encompassment" "encompassments" ;
+lin encopresis_N = mkN "encopresis" "encopresises" ;
+lin encore_N = mkN "encore" "encores" ;
+lin encore_V = mkV "encore" "encored" "encored" ;
+lin encounter_N = mkN "encounter" "encounters" ;
+lin encounter_V = mkV "encounter" "encountered" "encountered" ;
+lin encourage_V = mkV "encourage" "encouraged" "encouraged" ;
+lin encouragement_N = mkN "encouragement" "encouragements" ;
+lin encouraging_A = mkAMost "encouraging" "encouragingly" ;
+lin encroach_V = mkV "encroach" "encroached" "encroached" ;
+lin encroachment_N = mkN "encroachment" "encroachments" ;
+lin encrust_V = mkV "encrust" "encrusted" "encrusted" ;
+lin encrypt_V = mkV "encrypt" "encrypted" "encrypted" ;
+lin encumber_V = mkV "encumber" "encumbered" "encumbered" ;
+lin encumbrance_N = mkN "encumbrance" "encumbrances" ;
+lin encyclical_A = mkAMost "encyclical" "encyclically" ;
+lin encyclical_N = mkN "encyclical" "encyclicals" ;
+lin encyclopaedia_N = mkN "encyclopaedia" "encyclopaedias" ;
+lin encyclopaedic_A = mkAMost "encyclopaedic" "encyclopaedicly" ;
+lin encyclopedia_N = mkN "encyclopedia" "encyclopedias" ;
+lin encyclopedic_A = mkAMost "encyclopedic" "encyclopedicly" ;
+lin encyclopedist_N = mkN "encyclopedist" "encyclopedists" ;
+lin encysted_A = mkAMost "encysted" "encystedly" ;
+lin end_N = mkN "end" "ends" ;
+lin end_V = mkV "end" "ended" "ended" ;
+lin end_all_N = mkN "end-all" "IRREG" ;
+lin end_tail_V = mkV "end-tail" "end-tailed" "end-tailed" ;
+lin endameba_N = mkN "endameba" "endamebas" ;
+lin endanger_V = mkV "endanger" "endangered" "endangered" ;
+lin endarterectomy_N = mkN "endarterectomy" "endarterectomies" ;
+lin endarteritis_N = mkN "endarteritis" "endarteritises" ;
+lin endear_V = mkV "endear" "endeared" "endeared" ;
+lin endearingly_Adv = mkAdv "endearingly" ;
+lin endearment_N = mkN "endearment" "endearments" ;
+lin endeavour_N = mkN "endeavour" "endeavours" ;
+lin endeavour_V = mkV "endeavour" "endeavoured" "endeavoured" ;
+lin endemic_A = mkAMost "endemic" "endemicly" ;
+lin endemic_N = mkN "endemic" "endemics" ;
+lin endergonic_A = mkAMost "endergonic" "endergonicly" ;
+lin endermic_A = mkAMost "endermic" "endermicly" ;
+lin endgame_N = mkN "endgame" "endgames" ;
+lin ending_N = mkN "ending" "endings" ;
+lin endive_N = mkN "endive" "endives" ;
+lin endless_A = mkAMost "endless" "endlessly" ;
+lin endlessness_N = mkN "endlessness" "endlessnesses" ;
+lin endocarditis_N = mkN "endocarditis" "endocarditises" ;
+lin endocardium_N = mkN "endocardium" "endocardiums" ;
+lin endocentric_A = mkAMost "endocentric" "endocentricly" ;
+lin endocervicitis_N = mkN "endocervicitis" "endocervicitises" ;
+lin endocranium_N = mkN "endocranium" "endocraniums" ;
+lin endocrine_A = mkAMost "endocrine" "endocrinely" ;
+lin endocrinologist_N = mkN "endocrinologist" "endocrinologists" ;
+lin endocrinology_N = mkN "endocrinology" "endocrinologies" ;
+lin endoderm_N = mkN "endoderm" "endoderms" ;
+lin endodontic_A = mkAMost "endodontic" "endodonticly" ;
+lin endodontics_N = mkN "endodontics" "endodonticses" ;
+lin endodontist_N = mkN "endodontist" "endodontists" ;
+lin endoergic_A = mkAMost "endoergic" "endoergicly" ;
+lin endogamous_A = mkAMost "endogamous" "endogamously" ;
+lin endogamy_N = mkN "endogamy" "endogamies" ;
+lin endogenic_A = mkAMost "endogenic" "endogenicly" ;
+lin endogenous_A = mkAMost "endogenous" "endogenously" ;
+lin endogeny_N = mkN "endogeny" "endogenies" ;
+lin endolymph_N = mkN "endolymph" "endolymphs" ;
+lin endometrial_A = mkAMost "endometrial" "endometrially" ;
+lin endometriosis_N = mkN "endometriosis" "endometriosises" ;
+lin endometrium_N = mkN "endometrium" "endometriums" ;
+lin endomorph_N = mkN "endomorph" "endomorphs" ;
+lin endomorphic_A = mkAMost "endomorphic" "endomorphicly" ;
+lin endomorphy_N = mkN "endomorphy" "endomorphies" ;
+lin endoneurium_N = mkN "endoneurium" "endoneuriums" ;
+lin endonuclease_N = mkN "endonuclease" "endonucleases" ;
+lin endoparasite_N = mkN "endoparasite" "endoparasites" ;
+lin endoparasitic_A = mkAMost "endoparasitic" "endoparasiticly" ;
+lin endoplasm_N = mkN "endoplasm" "endoplasms" ;
+lin endorphin_N = mkN "endorphin" "endorphins" ;
+lin endorse_V = mkV "endorse" "endorsed" "endorsed" ;
+lin endorsement_N = mkN "endorsement" "endorsements" ;
+lin endorser_N = mkN "endorser" "endorsers" ;
+lin endoscope_N = mkN "endoscope" "endoscopes" ;
+lin endoscopic_A = mkAMost "endoscopic" "endoscopicly" ;
+lin endoscopy_N = mkN "endoscopy" "endoscopies" ;
+lin endoskeleton_N = mkN "endoskeleton" "endoskeletons" ;
+lin endosperm_N = mkN "endosperm" "endosperms" ;
+lin endospore_N = mkN "endospore" "endospores" ;
+lin endosteum_N = mkN "endosteum" "endosteums" ;
+lin endothelial_A = mkAMost "endothelial" "endothelially" ;
+lin endothelium_N = mkN "endothelium" "endotheliums" ;
+lin endothermic_A = mkAMost "endothermic" "endothermicly" ;
+lin endotoxin_N = mkN "endotoxin" "endotoxins" ;
+lin endow_V = mkV "endow" "endowed" "endowed" ;
+lin endowment_N = mkN "endowment" "endowments" ;
+lin endue_V = mkV "endue" "endued" "endued" ;
+lin endurable_A = mkAMost "endurable" "endurably" ;
+lin endurance_N = mkN "endurance" "endurances" ;
+lin endure_V = mkV "endure" "endured" "endured" ;
+lin enduringly_Adv = mkAdv "enduringly" ;
+lin endways_Adv = mkAdv "endways" ;
+lin endwise_Adv = mkAdv "endwise" ;
+lin enema_N = mkN "enema" "enemas" ;
+lin enemy_N = mkN "enemy" "enemies" ;
+lin energetic_A = mkAMost "energetic" "energeticly" ;
+lin energetically_Adv = mkAdv "energetically" ;
+lin energid_N = mkN "energid" "energids" ;
+lin energizer_N = mkN "energizer" "energizers" ;
+lin energizing_A = mkAMost "energizing" "energizingly" ;
+lin energizing_N = mkN "energizing" "energizings" ;
+lin energy_N = mkN "energy" "energies" ;
+lin enervate_V = mkV "enervate" "enervated" "enervated" ;
+lin enervation_N = mkN "enervation" "enervations" ;
+lin enfant_terrible_N = mkN "enfant terrible" "IRREG" ;
+lin enfeeble_V = mkV "enfeeble" "enfeebled" "enfeebled" ;
+lin enfeoffment_N = mkN "enfeoffment" "enfeoffments" ;
+lin enfilade_N = mkN "enfilade" "enfilades" ;
+lin enflurane_N = mkN "enflurane" "enfluranes" ;
+lin enfold_V = mkV "enfold" "enfolded" "enfolded" ;
+lin enforce_V = mkV "enforce" "enforced" "enforced" ;
+lin enforceable_A = mkAMost "enforceable" "enforceably" ;
+lin enforcement_N = mkN "enforcement" "enforcements" ;
+lin enfranchise_V = mkV "enfranchise" "enfranchised" "enfranchised" ;
+lin enfranchisement_N = mkN "enfranchisement" "enfranchisements" ;
+lin engage_V = mkV "engage" "engaged" "engaged" ;
+lin engagement_N = mkN "engagement" "engagements" ;
+lin engelmannia_N = mkN "engelmannia" "engelmannias" ;
+lin engender_V = mkV "engender" "engendered" "engendered" ;
+lin engine_N = mkN "engine" "engines" ;
+lin engine_driver_N = mkN "engine-driver" "engine-drivers" ;
+lin engineer_N = mkN "engineer" "engineers" ;
+lin engineer_V = mkV "engineer" "engineered" "engineered" ;
+lin engineering_N = mkN "engineering" "engineerings" ;
+lin enginery_N = mkN "enginery" "engineries" ;
+lin englishman_N = mkN "englishman" "englishmen" ;
+lin englishwoman_N = mkN "englishwoman" "englishwomen" ;
+lin engorgement_N = mkN "engorgement" "engorgements" ;
+lin engraft_V = mkV "engraft" "engrafted" "engrafted" ;
+lin engram_N = mkN "engram" "engrams" ;
+lin engrave_V = mkV "engrave" "engraved" "engraved" ;
+lin engraver_N = mkN "engraver" "engravers" ;
+lin engraving_N = mkN "engraving" "engravings" ;
+lin engross_V = mkV "engross" "engrossed" "engrossed" ;
+lin engulf_V = mkV "engulf" "engulfed" "engulfed" ;
+lin enhance_V = mkV "enhance" "enhanced" "enhanced" ;
+lin enhancement_N = mkN "enhancement" "enhancements" ;
+lin enigma_N = mkN "enigma" "enigmas" ;
+lin enigmatic_A = mkAMost "enigmatic" "enigmaticly" ;
+lin enigmatically_Adv = mkAdv "enigmatically" ;
+lin enjambment_N = mkN "enjambment" "enjambments" ;
+lin enjoin_V = mkV "enjoin" "enjoined" "enjoined" ;
+lin enjoy_V = mkV "enjoy" "enjoyed" "enjoyed" ;
+lin enjoyable_A = mkAMost "enjoyable" "enjoyably" ;
+lin enjoyableness_N = mkN "enjoyableness" "enjoyablenesses" ;
+lin enjoyer_N = mkN "enjoyer" "enjoyers" ;
+lin enjoyment_N = mkN "enjoyment" "enjoyments" ;
+lin enkephalin_N = mkN "enkephalin" "enkephalins" ;
+lin enkindle_V = mkV "enkindle" "enkindled" "enkindled" ;
+lin enlarge_V = mkV "enlarge" "enlarged" "enlarged" ;
+lin enlargement_N = mkN "enlargement" "enlargements" ;
+lin enlarger_N = mkN "enlarger" "enlargers" ;
+lin enlighten_V = mkV "enlighten" "enlightened" "enlightened" ;
+lin enlightening_A = mkAMost "enlightening" "enlighteningly" ;
+lin enlightenment_N = mkN "enlightenment" "enlightenments" ;
+lin enlist_V = mkV "enlist" "enlisted" "enlisted" ;
+lin enlistment_N = mkN "enlistment" "enlistments" ;
+lin enliven_V = mkV "enliven" "enlivened" "enlivened" ;
+lin enmesh_V = mkV "enmesh" "enmeshed" "enmeshed" ;
+lin enmity_N = mkN "enmity" "enmities" ;
+lin ennoble_V = mkV "ennoble" "ennobled" "ennobled" ;
+lin ennoblement_N = mkN "ennoblement" "ennoblements" ;
+lin ennobling_A = mkAMost "ennobling" "ennoblingly" ;
+lin ennui_N = mkN "ennui" "ennuis" ;
+lin ennumerate_V = mkV "ennumerate" "ennumerated" "ennumerated" ;
+lin enol_N = mkN "enol" "enols" ;
+lin enolic_A = mkAMost "enolic" "enolicly" ;
+lin enologist_N = mkN "enologist" "enologists" ;
+lin enology_N = mkN "enology" "enologies" ;
+lin enophile_N = mkN "enophile" "enophiles" ;
+lin enormity_N = mkN "enormity" "enormities" ;
+lin enormous_A = mkAMost "enormous" "enormously" ;
+lin enormousness_N = mkN "enormousness" "enormousnesses" ;
+lin enosis_N = mkN "enosis" "enosises" ;
+lin enough_A = mkAMost "enough" "enough" ;
+lin enough_N = mkN "enough" "enough" ;
+lin enplane_V = mkV "enplane" "enplaned" "enplaned" ;
+lin enquire_V = mkV "enquire" "enquired" "enquired" ;
+lin enquirer_N = mkN "enquirer" "enquirers" ;
+lin enquiringly_Adv = mkAdv "enquiringly" ;
+lin enquiry_N = mkN "enquiry" "enquiries" ;
+lin enrage_V = mkV "enrage" "enraged" "enraged" ;
+lin enrapture_V = mkV "enrapture" "enraptured" "enraptured" ;
+lin enrich_V = mkV "enrich" "enriched" "enriched" ;
+lin enrichment_N = mkN "enrichment" "enrichments" ;
+lin enrol_V = mkV "enrol" "enroled" "enroled" ;
+lin enroll_V = mkV "enroll" "enrolled" "enrolled" ;
+lin enrollee_N = mkN "enrollee" "enrollees" ;
+lin enrolment_N = mkN "enrolment" "enrolments" ;
+lin ensconce_V = mkV "ensconce" "ensconced" "ensconced" ;
+lin ensemble_N = mkN "ensemble" "ensembles" ;
+lin enshrine_V = mkV "enshrine" "enshrined" "enshrined" ;
+lin enshroud_V = mkV "enshroud" "enshrouded" "enshrouded" ;
+lin ensiform_A = mkAMost "ensiform" "ensiformly" ;
+lin ensign_N = mkN "ensign" "ensigns" ;
+lin ensilage_N = mkN "ensilage" "ensilages" ;
+lin enslave_V = mkV "enslave" "enslaved" "enslaved" ;
+lin enslavement_N = mkN "enslavement" "enslavements" ;
+lin ensnare_V = mkV "ensnare" "ensnared" "ensnared" ;
+lin ensue_V = mkV "ensue" "ensued" "ensued" ;
+lin ensure_V = mkV "ensure" "ensured" "ensured" ;
+lin entablature_N = mkN "entablature" "entablatures" ;
+lin entail_N = mkN "entail" "entails" ;
+lin entail_V = mkV "entail" "entailed" "entailed" ;
+lin entangle_V = mkV "entangle" "entangled" "entangled" ;
+lin entanglement_N = mkN "entanglement" "entanglements" ;
+lin entasis_N = mkN "entasis" "entasises" ;
+lin entelechy_N = mkN "entelechy" "entelechies" ;
+lin entellus_N = mkN "entellus" "entelluses" ;
+lin entente_N = mkN "entente" "ententes" ;
+lin entente_cordiale_N = mkN "entente cordiale" "IRREG" ;
+lin enter_V = mkV "enter" "entered" "entered" ;
+lin enteric_A = mkAMost "enteric" "entericly" ;
+lin enteritis_N = mkN "enteritis" "enteritises" ;
+lin enterobiasis_N = mkN "enterobiasis" "enterobiasises" ;
+lin enterokinase_N = mkN "enterokinase" "enterokinases" ;
+lin enterolith_N = mkN "enterolith" "enteroliths" ;
+lin enterolithiasis_N = mkN "enterolithiasis" "enterolithiasises" ;
+lin enteron_N = mkN "enteron" "enterons" ;
+lin enteropathy_N = mkN "enteropathy" "enteropathies" ;
+lin enteroptosis_N = mkN "enteroptosis" "enteroptosises" ;
+lin enterostenosis_N = mkN "enterostenosis" "enterostenosises" ;
+lin enterostomy_N = mkN "enterostomy" "enterostomies" ;
+lin enterotoxemia_N = mkN "enterotoxemia" "enterotoxemias" ;
+lin enterotoxin_N = mkN "enterotoxin" "enterotoxins" ;
+lin enterovirus_N = mkN "enterovirus" "enteroviruses" ;
+lin enterprise_N = mkN "enterprise" "enterprises" ;
+lin enterprising_A = mkAMost "enterprising" "enterprisingly" ;
+lin entertain_V = mkV "entertain" "entertained" "entertained" ;
+lin entertainer_N = mkN "entertainer" "entertainers" ;
+lin entertaining_A = mkAMost "entertaining" "entertainingly" ;
+lin entertainment_N = mkN "entertainment" "entertainments" ;
+lin enthral_V = mkV "enthral" "enthralled" "enthralled" ;
+lin enthrall_V = mkV "enthrall" "enthralled" "enthralled" ;
+lin enthrone_V = mkV "enthrone" "enthroned" "enthroned" ;
+lin enthronement_N = mkN "enthronement" "enthronements" ;
+lin enthuse_V = mkV "enthuse" "enthused" "enthused" ;
+lin enthusiasm_N = mkN "enthusiasm" "enthusiasms" ;
+lin enthusiast_N = mkN "enthusiast" "enthusiasts" ;
+lin enthusiastic_enthusiastically_A = mkAMost "enthusiastic" "enthusiastically" ;
+lin enthusiastic_enthusiasticly_A = mkAMost "enthusiastic" "enthusiasticly" ;
+lin entice_V = mkV "entice" "enticed" "enticed" ;
+lin enticement_N = mkN "enticement" "enticements" ;
+lin entire_A = mkAMost "entire" "entirely" ;
+lin entirety_N = mkN "entirety" "entireties" ;
+lin entitle_V = mkV "entitle" "entitled" "entitled" ;
+lin entitlement_N = mkN "entitlement" "entitlements" ;
+lin entity_N = mkN "entity" "entities" ;
+lin entomb_V = mkV "entomb" "entombed" "entombed" ;
+lin entomion_N = mkN "entomion" "entomions" ;
+lin entomological_A = mkAMost "entomological" "entomologically" ;
+lin entomologist_N = mkN "entomologist" "entomologists" ;
+lin entomology_N = mkN "entomology" "entomologies" ;
+lin entomophilous_A = mkAMost "entomophilous" "entomophilously" ;
+lin entomophobia_N = mkN "entomophobia" "entomophobias" ;
+lin entoproct_N = mkN "entoproct" "entoprocts" ;
+lin entourage_N = mkN "entourage" "entourages" ;
+lin entozoan_A = mkAMost "entozoan" "entozoanly" ;
+lin entozoic_A = mkAMost "entozoic" "entozoicly" ;
+lin entr'acte_N = mkN "entr'acte" "entr'actes" ;
+lin entrain_V = mkV "entrain" "entrained" "entrained" ;
+lin entrance_N = mkN "entrance" "entrances" ;
+lin entrance_V = mkV "entrance" "entranced" "entranced" ;
+lin entrance_fee_N = mkN "entrance-fee" "entrance-fees" ;
+lin entrance_money_N = mkN "entrance-money" "entrance-moneys" ;
+lin entrancement_N = mkN "entrancement" "entrancements" ;
+lin entrant_N = mkN "entrant" "entrants" ;
+lin entrap_V = mkV "entrap" "entrapped" "entrapped" ;
+lin entrapment_N = mkN "entrapment" "entrapments" ;
+lin entreat_V = mkV "entreat" "entreated" "entreated" ;
+lin entreatingly_Adv = mkAdv "entreatingly" ;
+lin entreaty_N = mkN "entreaty" "entreaties" ;
+lin entrecote_N = mkN "entrecote" "entrecotes" ;
+lin entrench_V = mkV "entrench" "entrenched" "entrenched" ;
+lin entrenchment_N = mkN "entrenchment" "entrenchments" ;
+lin entrepot_N = mkN "entrepot" "entrepots" ;
+lin entrepreneur_N = mkN "entrepreneur" "entrepreneurs" ;
+lin entrepreneurial_A = mkAMost "entrepreneurial" "entrepreneurially" ;
+lin entrust_V = mkV "entrust" "entrusted" "entrusted" ;
+lin entry_N = mkN "entry" "entries" ;
+lin entrée_N = mkN "entrée" "entrées" ;
+lin entwin_V = mkV "entwin" "entwinned" "entwinned" ;
+lin entwine_V = mkV "entwine" "entwined" "entwined" ;
+lin enucleation_N = mkN "enucleation" "enucleations" ;
+lin enumerate_V = mkV "enumerate" "enumerated" "enumerated" ;
+lin enumeration_N = mkN "enumeration" "enumerations" ;
+lin enunciate_V = mkV "enunciate" "enunciated" "enunciated" ;
+lin enunciation_N = mkN "enunciation" "enunciations" ;
+lin enured_A = mkAMost "enured" "enuredly" ;
+lin enuresis_N = mkN "enuresis" "enuresises" ;
+lin envelop_V = mkV "envelop" "enveloped" "enveloped" ;
+lin envelope_N = mkN "envelope" "envelopes" ;
+lin envelopment_N = mkN "envelopment" "envelopments" ;
+lin envenom_V = mkV "envenom" "envenomed" "envenomed" ;
+lin enviable_A = mkAMost "enviable" "enviably" ;
+lin envious_A = mkAMost "envious" "enviously" ;
+lin environ_V = mkV "environ" "environed" "environed" ;
+lin environment_N = mkN "environment" "environments" ;
+lin environmental_A = mkAMost "environmental" "environmentally" ;
+lin environmentalism_N = mkN "environmentalism" "environmentalisms" ;
+lin environmentalist_N = mkN "environmentalist" "environmentalists" ;
+lin environs_N = mkN "environs" "environses" ;
+lin envisage_V = mkV "envisage" "envisaged" "envisaged" ;
+lin envision_V = mkV "envision" "envisionned" "envisionned" ;
+lin envisioned_A = mkAMost "envisioned" "envisionedly" ;
+lin envoi_N = mkN "envoi" "envois" ;
+lin envoy_N = mkN "envoy" "envoys" ;
+lin envy_N = mkN "envy" "envies" ;
+lin envy_V = mkV "envy" "envied" "envied" ;
+lin enwrap_V = mkV "enwrap" "enwrapped" "enwrapped" ;
+lin enzootic_A = mkAMost "enzootic" "enzooticly" ;
+lin enzymatic_A = mkAMost "enzymatic" "enzymaticly" ;
+lin enzyme_N = mkN "enzyme" "enzymes" ;
+lin enzymologist_N = mkN "enzymologist" "enzymologists" ;
+lin enzymology_N = mkN "enzymology" "enzymologies" ;
+lin eohippus_N = mkN "eohippus" "eohippuses" ;
+lin eolith_N = mkN "eolith" "eoliths" ;
+lin eolithic_A = mkAMost "eolithic" "eolithicly" ;
+lin eon_N = mkN "eon" "eons" ;
+lin eonian_A = mkAMost "eonian" "eonianly" ;
+lin eoraptor_N = mkN "eoraptor" "eoraptors" ;
+lin eosin_N = mkN "eosin" "eosins" ;
+lin eosinopenia_N = mkN "eosinopenia" "eosinopenias" ;
+lin eosinophil_N = mkN "eosinophil" "eosinophils" ;
+lin eosinophilia_N = mkN "eosinophilia" "eosinophilias" ;
+lin eosinophilic_A = mkAMost "eosinophilic" "eosinophilicly" ;
+lin epacris_N = mkN "epacris" "epacrises" ;
+lin epanalepsis_N = mkN "epanalepsis" "epanalepsises" ;
+lin epanaphora_N = mkN "epanaphora" "epanaphoras" ;
+lin epanodos_N = mkN "epanodos" "epanodoses" ;
+lin epanorthosis_N = mkN "epanorthosis" "epanorthosises" ;
+lin eparch_N = mkN "eparch" "eparches" ;
+lin eparchial_A = mkAMost "eparchial" "eparchially" ;
+lin eparchy_N = mkN "eparchy" "eparchies" ;
+lin epaulet_N = mkN "epaulet" "epaulets" ;
+lin epaulette_N = mkN "epaulette" "epaulettes" ;
+lin epauliere_N = mkN "epauliere" "epaulieres" ;
+lin ependyma_N = mkN "ependyma" "ependymas" ;
+lin epenthesis_N = mkN "epenthesis" "epenthesises" ;
+lin epenthetic_A = mkAMost "epenthetic" "epentheticly" ;
+lin epergne_N = mkN "epergne" "epergnes" ;
+lin ephah_N = mkN "ephah" "ephahs" ;
+lin ephedra_N = mkN "ephedra" "ephedras" ;
+lin ephedrine_N = mkN "ephedrine" "ephedrines" ;
+lin ephemera_N = mkN "ephemera" "ephemeras" ;
+lin ephemeral_A = mkAMost "ephemeral" "ephemerally" ;
+lin ephemerality_N = mkN "ephemerality" "ephemeralities" ;
+lin ephemerid_N = mkN "ephemerid" "ephemerids" ;
+lin ephemeris_N = mkN "ephemeris" "ephemerises" ;
+lin ephemeron_N = mkN "ephemeron" "ephemerons" ;
+lin epic_A = mkAMost "epic" "epicly" ;
+lin epic_N = mkN "epic" "epics" ;
+lin epicalyx_N = mkN "epicalyx" "epicalyxes" ;
+lin epicanthus_N = mkN "epicanthus" "epicanthuses" ;
+lin epicardia_N = mkN "epicardia" "epicardias" ;
+lin epicardium_N = mkN "epicardium" "epicardiums" ;
+lin epicarp_N = mkN "epicarp" "epicarps" ;
+lin epicarpal_A = mkAMost "epicarpal" "epicarpally" ;
+lin epicenter_N = mkN "epicenter" "epicenters" ;
+lin epicentre_N = mkN "epicentre" "epicentres" ;
+lin epicondyle_N = mkN "epicondyle" "epicondyles" ;
+lin epicondylitis_N = mkN "epicondylitis" "epicondylitises" ;
+lin epicranium_N = mkN "epicranium" "epicraniums" ;
+lin epicure_N = mkN "epicure" "epicures" ;
+lin epicurean_A = mkAMost "epicurean" "epicureanly" ;
+lin epicurean_N = mkN "epicurean" "epicureans" ;
+lin epicureanism_N = mkN "epicureanism" "epicureanisms" ;
+lin epicurism_N = mkN "epicurism" "epicurisms" ;
+lin epicycle_N = mkN "epicycle" "epicycles" ;
+lin epicyclic_A = mkAMost "epicyclic" "epicyclicly" ;
+lin epicycloid_N = mkN "epicycloid" "epicycloids" ;
+lin epideictic_A = mkAMost "epideictic" "epideicticly" ;
+lin epidemic_A = mkAMost "epidemic" "epidemicly" ;
+lin epidemic_N = mkN "epidemic" "epidemics" ;
+lin epidemiologic_A = mkAMost "epidemiologic" "epidemiologicly" ;
+lin epidemiologist_N = mkN "epidemiologist" "epidemiologists" ;
+lin epidemiology_N = mkN "epidemiology" "epidemiologies" ;
+lin epidendron_N = mkN "epidendron" "epidendrons" ;
+lin epidermis_N = mkN "epidermis" "epidermises" ;
+lin epidiascope_N = mkN "epidiascope" "epidiascopes" ;
+lin epididymis_N = mkN "epididymis" "epididymises" ;
+lin epididymitis_N = mkN "epididymitis" "epididymitises" ;
+lin epidural_A = mkAMost "epidural" "epidurally" ;
+lin epigastric_A = mkAMost "epigastric" "epigastricly" ;
+lin epigastrium_N = mkN "epigastrium" "epigastriums" ;
+lin epigenesis_N = mkN "epigenesis" "epigenesises" ;
+lin epiglottis_N = mkN "epiglottis" "epiglottises" ;
+lin epiglottitis_N = mkN "epiglottitis" "epiglottitises" ;
+lin epigone_N = mkN "epigone" "epigones" ;
+lin epigram_N = mkN "epigram" "epigrams" ;
+lin epigrammatic_A = mkAMost "epigrammatic" "epigrammaticly" ;
+lin epigraph_N = mkN "epigraph" "epigraphs" ;
+lin epigraphy_N = mkN "epigraphy" "epigraphies" ;
+lin epikeratophakia_N = mkN "epikeratophakia" "epikeratophakias" ;
+lin epilation_N = mkN "epilation" "epilations" ;
+lin epilepsy_N = mkN "epilepsy" "epilepsies" ;
+lin epileptic_A = mkAMost "epileptic" "epilepticly" ;
+lin epileptic_N = mkN "epileptic" "epileptics" ;
+lin epilithic_A = mkAMost "epilithic" "epilithicly" ;
+lin epilogue_N = mkN "epilogue" "epilogues" ;
+lin epimorphic_A = mkAMost "epimorphic" "epimorphicly" ;
+lin epinephrine_N = mkN "epinephrine" "epinephrines" ;
+lin epiphany_N = mkN "epiphany" "epiphanies" ;
+lin epiphenomenon_N = mkN "epiphenomenon" "epiphenomenons" ;
+lin epiphora_N = mkN "epiphora" "epiphoras" ;
+lin epiphyllum_N = mkN "epiphyllum" "epiphyllums" ;
+lin epiphyseal_A = mkAMost "epiphyseal" "epiphyseally" ;
+lin epiphysis_N = mkN "epiphysis" "epiphysises" ;
+lin epiphytic_A = mkAMost "epiphytic" "epiphyticly" ;
+lin epiphytotic_A = mkAMost "epiphytotic" "epiphytoticly" ;
+lin epiplexis_N = mkN "epiplexis" "epiplexises" ;
+lin episcia_N = mkN "episcia" "episcias" ;
+lin episcleritis_N = mkN "episcleritis" "episcleritises" ;
+lin episcopacy_N = mkN "episcopacy" "episcopacies" ;
+lin episcopal_A = mkAMost "episcopal" "episcopally" ;
+lin episcopalian_A = mkAMost "episcopalian" "episcopalianly" ;
+lin episcopalian_N = mkN "episcopalian" "episcopalians" ;
+lin episcopate_N = mkN "episcopate" "episcopates" ;
+lin episiotomy_N = mkN "episiotomy" "episiotomies" ;
+lin episode_N = mkN "episode" "episodes" ;
+lin episodic_A = mkAMost "episodic" "episodicly" ;
+lin episodically_Adv = mkAdv "episodically" ;
+lin episome_N = mkN "episome" "episomes" ;
+lin epispadias_N = mkN "epispadias" "epispadiases" ;
+lin episteme_N = mkN "episteme" "epistemes" ;
+lin epistemic_A = mkAMost "epistemic" "epistemicly" ;
+lin epistemologist_N = mkN "epistemologist" "epistemologists" ;
+lin epistemology_N = mkN "epistemology" "epistemologies" ;
+lin epistle_N = mkN "epistle" "epistles" ;
+lin epistolary_A = mkAMost "epistolary" "epistolarily" ;
+lin epitaph_N = mkN "epitaph" "epitaphs" ;
+lin epitaxy_N = mkN "epitaxy" "epitaxies" ;
+lin epithalamium_N = mkN "epithalamium" "epithalamiums" ;
+lin epithelial_A = mkAMost "epithelial" "epithelially" ;
+lin epitheliod_A = mkAMost "epitheliod" "epitheliodly" ;
+lin epithelioma_N = mkN "epithelioma" "epitheliomas" ;
+lin epithelium_N = mkN "epithelium" "epitheliums" ;
+lin epithet_N = mkN "epithet" "epithets" ;
+lin epitome_N = mkN "epitome" "epitomes" ;
+lin epitomize_V = mkV "epitomize" "epitomized" "epitomized" ;
+lin epizoan_A = mkAMost "epizoan" "epizoanly" ;
+lin epizoic_A = mkAMost "epizoic" "epizoicly" ;
+lin epizootic_A = mkAMost "epizootic" "epizooticly" ;
+lin epoch_N = mkN "epoch" "epochs" ;
+lin epoch_making_A = mkAMost "epoch-making" "epoch-makingly" ;
+lin epochal_A = mkAMost "epochal" "epochally" ;
+lin eponym_N = mkN "eponym" "eponyms" ;
+lin eponymous_A = mkAMost "eponymous" "eponymously" ;
+lin eponymy_N = mkN "eponymy" "eponymies" ;
+lin epos_N = mkN "epos" "eposes" ;
+lin epoxy_N = mkN "epoxy" "epoxies" ;
+lin epsilon_N = mkN "epsilon" "epsilons" ;
+lin eptatretus_N = mkN "eptatretus" "eptatretuses" ;
+lin equable_A = mkAMost "equable" "equably" ;
+lin equal_A = mkAMost "equal" "equally" ;
+lin equal_N = mkN "equal" "equals" ;
+lin equal_equaled_V = mkV "equal" "equaled" "equaled" ;
+lin equal_equalled_V = mkV "equal" "equalled" "equalled" ;
+lin equalitarian_N = mkN "equalitarian" "equalitarians" ;
+lin equality_N = mkN "equality" "equalities" ;
+lin equalization_N = mkN "equalization" "equalizations" ;
+lin equalize_V = mkV "equalize" "equalized" "equalized" ;
+lin equalizer_N = mkN "equalizer" "equalizers" ;
+lin equanimity_N = mkN "equanimity" "equanimities" ;
+lin equatability_N = mkN "equatability" "equatabilities" ;
+lin equate_V = mkV "equate" "equated" "equated" ;
+lin equation_N = mkN "equation" "equations" ;
+lin equator_N = mkN "equator" "equators" ;
+lin equatorial_A = mkAMost "equatorial" "equatorially" ;
+lin equatorial_N = mkN "equatorial" "equatorials" ;
+lin equerry_N = mkN "equerry" "equerries" ;
+lin equestrian_A = mkAMost "equestrian" "equestrianly" ;
+lin equestrian_N = mkN "equestrian" "equestrians" ;
+lin equiangular_A = mkAMost "equiangular" "equiangularly" ;
+lin equidistant_A = mkAMost "equidistant" "equidistantly" ;
+lin equidistribution_N = mkN "equidistribution" "equidistributions" ;
+lin equilateral_A = mkAMost "equilateral" "equilaterally" ;
+lin equilateral_N = mkN "equilateral" "equilaterals" ;
+lin equilibration_N = mkN "equilibration" "equilibrations" ;
+lin equilibrium_N = mkN "equilibrium" "equilibriums" ;
+lin equine_A = mkAMost "equine" "equinely" ;
+lin equine_N = mkN "equine" "equines" ;
+lin equinoctial_A = mkAMost "equinoctial" "equinoctially" ;
+lin equinox_N = mkN "equinox" "equinoxes" ;
+lin equip_V = mkV "equip" "equipped" "equipped" ;
+lin equipage_N = mkN "equipage" "equipages" ;
+lin equipment_N = mkN "equipment" "equipments" ;
+lin equipoise_N = mkN "equipoise" "equipoises" ;
+lin equipoised_A = mkAMost "equipoised" "equipoisedly" ;
+lin equipotent_A = mkAMost "equipotent" "equipotently" ;
+lin equiprobable_A = mkAMost "equiprobable" "equiprobably" ;
+lin equitable_A = mkAMost "equitable" "equitably" ;
+lin equity_N = mkN "equity" "equities" ;
+lin equivalence_N = mkN "equivalence" "equivalences" ;
+lin equivalent_A = mkAMost "equivalent" "equivalently" ;
+lin equivalent_N = mkN "equivalent" "equivalents" ;
+lin equivocal_A = mkAMost "equivocal" "equivocally" ;
+lin equivocation_N = mkN "equivocation" "equivocations" ;
+lin era_N = mkN "era" "eras" ;
+lin eradicable_A = mkAMost "eradicable" "eradicably" ;
+lin eradicate_V = mkV "eradicate" "eradicated" "eradicated" ;
+lin eradication_N = mkN "eradication" "eradications" ;
+lin erase_V = mkV "erase" "erased" "erased" ;
+lin eraser_N = mkN "eraser" "erasers" ;
+lin erasure_N = mkN "erasure" "erasures" ;
+lin erbium_N = mkN "erbium" "erbiums" ;
+lin ere_Adv = mkAdv "ere" ;
+lin ere_Prep = mkPrep "ere" ;
+lin erect_A = mkAMost "erect" "erectly" ;
+lin erect_V = mkV "erect" "erected" "erected" ;
+lin erectile_A = mkAMost "erectile" "erectilely" ;
+lin erecting_N = mkN "erecting" "erectings" ;
+lin erection_N = mkN "erection" "erections" ;
+lin erectness_N = mkN "erectness" "erectnesses" ;
+lin eremite_N = mkN "eremite" "eremites" ;
+lin eremitic_A = mkAMost "eremitic" "eremiticly" ;
+lin eremitism_N = mkN "eremitism" "eremitisms" ;
+lin erethism_N = mkN "erethism" "erethisms" ;
+lin erg_N = mkN "erg" "ergs" ;
+lin ergo_Adv = mkAdv "ergo" ;
+lin ergodic_A = mkAMost "ergodic" "ergodicly" ;
+lin ergodicity_N = mkN "ergodicity" "ergodicities" ;
+lin ergonomic_A = mkAMost "ergonomic" "ergonomicly" ;
+lin ergonomics_N = mkN "ergonomics" "ergonomics" ;
+lin ergonovine_N = mkN "ergonovine" "ergonovines" ;
+lin ergosterol_N = mkN "ergosterol" "ergosterols" ;
+lin ergot_N = mkN "ergot" "ergots" ;
+lin ergotamine_N = mkN "ergotamine" "ergotamines" ;
+lin ergotic_A = mkAMost "ergotic" "ergoticly" ;
+lin ergotism_N = mkN "ergotism" "ergotisms" ;
+lin ergotropic_A = mkAMost "ergotropic" "ergotropicly" ;
+lin ergotropism_N = mkN "ergotropism" "ergotropisms" ;
+lin erica_N = mkN "erica" "ericas" ;
+lin eriogonum_N = mkN "eriogonum" "eriogonums" ;
+lin eristic_A = mkAMost "eristic" "eristicly" ;
+lin eristic_N = mkN "eristic" "eristics" ;
+lin eritrean_A = mkAMost "eritrean" "eritreanly" ;
+lin eritrean_N = mkN "eritrean" "eritreans" ;
+lin ermine_N = mkN "ermine" "ermines" ;
+lin ern_N = mkN "ern" "erns" ;
+lin erode_V = mkV "erode" "eroded" "eroded" ;
+lin erogenous_A = mkAMost "erogenous" "erogenously" ;
+lin erose_A = mkAMost "erose" "erosely" ;
+lin erosion_N = mkN "erosion" "erosions" ;
+lin erosive_A = mkAMost "erosive" "erosively" ;
+lin erotic_A = mkAMost "erotic" "eroticly" ;
+lin erotic_N = mkN "erotic" "erotics" ;
+lin erotically_Adv = mkAdv "erotically" ;
+lin eroticism_N = mkN "eroticism" "eroticisms" ;
+lin err_V = mkV "err" "erred" "erred" ;
+lin errancy_N = mkN "errancy" "errancies" ;
+lin errand_N = mkN "errand" "errands" ;
+lin errant_A = mkAMost "errant" "errantly" ;
+lin erratic_A = mkAMost "erratic" "erraticly" ;
+lin erratically_Adv = mkAdv "erratically" ;
+lin erratum_N = mkN "erratum" "errata" ;
+lin errhine_A = mkAMost "errhine" "errhinely" ;
+lin erroneous_A = mkAMost "erroneous" "erroneously" ;
+lin erroneousness_N = mkN "erroneousness" "erroneousnesses" ;
+lin error_N = mkN "error" "errors" ;
+lin errorless_A = mkAMost "errorless" "errorlessly" ;
+lin ersatz_A = mkAMost "ersatz" "ersatzly" ;
+lin ersatz_N = mkN "ersatz" "ersatzes" ;
+lin erse_N = mkN "erse" "erses" ;
+lin eructation_N = mkN "eructation" "eructations" ;
+lin erudite_A = mkAMost "erudite" "eruditely" ;
+lin eruditeness_N = mkN "eruditeness" "eruditenesses" ;
+lin erudition_N = mkN "erudition" "eruditions" ;
+lin erupt_V = mkV "erupt" "erupted" "erupted" ;
+lin eruption_N = mkN "eruption" "eruptions" ;
+lin eruptive_A = mkAMost "eruptive" "eruptively" ;
+lin erwinia_N = mkN "erwinia" "erwinias" ;
+lin eryngo_N = mkN "eryngo" "eryngoes" ;
+lin erysipelas_N = mkN "erysipelas" "erysipelases" ;
+lin erythema_N = mkN "erythema" "erythemas" ;
+lin erythematous_A = mkAMost "erythematous" "erythematously" ;
+lin erythrite_N = mkN "erythrite" "erythrites" ;
+lin erythroblast_N = mkN "erythroblast" "erythroblasts" ;
+lin erythroblastosis_N = mkN "erythroblastosis" "erythroblastosises" ;
+lin erythroderma_N = mkN "erythroderma" "erythrodermas" ;
+lin erythroid_A = mkAMost "erythroid" "erythroidly" ;
+lin erythromycin_N = mkN "erythromycin" "erythromycins" ;
+lin erythropoiesis_N = mkN "erythropoiesis" "erythropoiesises" ;
+lin erythropoietic_A = mkAMost "erythropoietic" "erythropoieticly" ;
+lin erythropoietin_N = mkN "erythropoietin" "erythropoietins" ;
+lin escadrille_N = mkN "escadrille" "escadrilles" ;
+lin escalade_N = mkN "escalade" "escalades" ;
+lin escalader_N = mkN "escalader" "escaladers" ;
+lin escalate_V = mkV "escalate" "escalated" "escalated" ;
+lin escalation_N = mkN "escalation" "escalations" ;
+lin escalator_N = mkN "escalator" "escalators" ;
+lin escalope_N = mkN "escalope" "escalopes" ;
+lin escapade_N = mkN "escapade" "escapades" ;
+lin escape_N = mkN "escape" "escapes" ;
+lin escape_V = mkV "escape" "escaped" "escaped" ;
+lin escapee_N = mkN "escapee" "escapees" ;
+lin escapement_N = mkN "escapement" "escapements" ;
+lin escapism_N = mkN "escapism" "escapisms" ;
+lin escapist_N = mkN "escapist" "escapists" ;
+lin escapologist_N = mkN "escapologist" "escapologists" ;
+lin escapology_N = mkN "escapology" "escapologies" ;
+lin escargot_N = mkN "escargot" "escargots" ;
+lin escarpment_N = mkN "escarpment" "escarpments" ;
+lin eschar_N = mkN "eschar" "eschars" ;
+lin eschatological_A = mkAMost "eschatological" "eschatologically" ;
+lin eschatologist_N = mkN "eschatologist" "eschatologists" ;
+lin eschatology_N = mkN "eschatology" "eschatologies" ;
+lin escheat_N = mkN "escheat" "escheats" ;
+lin escherichia_N = mkN "escherichia" "escherichias" ;
+lin eschew_V = mkV "eschew" "eschewed" "eschewed" ;
+lin escolar_N = mkN "escolar" "escolars" ;
+lin escort_N = mkN "escort" "escorts" ;
+lin escort_V = mkV "escort" "escorted" "escorted" ;
+lin escritoire_N = mkN "escritoire" "escritoires" ;
+lin escrow_N = mkN "escrow" "escrows" ;
+lin escudo_N = mkN "escudo" "escudos" ;
+lin escutcheon_N = mkN "escutcheon" "escutcheons" ;
+lin esker_N = mkN "esker" "eskers" ;
+lin eskimo_N = mkN "eskimo" "eskimos" ;
+lin esmolol_N = mkN "esmolol" "esmolols" ;
+lin esophageal_A = mkAMost "esophageal" "esophageally" ;
+lin esophagitis_N = mkN "esophagitis" "esophagitises" ;
+lin esophagoscope_N = mkN "esophagoscope" "esophagoscopes" ;
+lin esophagus_N = mkN "esophagus" "esophaguses" ;
+lin esoteric_A = mkAMost "esoteric" "esotericly" ;
+lin esoterica_N = mkN "esoterica" "esotericas" ;
+lin esp_N = mkN "esp" "esps" ;
+lin espadrille_N = mkN "espadrille" "espadrilles" ;
+lin espalier_N = mkN "espalier" "espaliers" ;
+lin especial_A = mkAMost "especial" "especially" ;
+lin esperanto_N = mkN "esperanto" "esperantoes" ;
+lin espionage_N = mkN "espionage" "espionages" ;
+lin esplanade_N = mkN "esplanade" "esplanades" ;
+lin espousal_N = mkN "espousal" "espousals" ;
+lin espouse_V = mkV "espouse" "espoused" "espoused" ;
+lin espresso_N = mkN "espresso" "espressos" ;
+lin esprit_N = mkN "esprit" "esprits" ;
+lin esprit_de_corps_N = mkN "esprit de corps" "IRREG" ;
+lin espy_V = mkV "espy" "espied" "espied" ;
+lin esquire_N = mkN "esquire" "esquires" ;
+lin essay_N = mkN "essay" "essays" ;
+lin essay_V = mkV "essay" "essayed" "essayed" ;
+lin essayist_N = mkN "essayist" "essayists" ;
+lin essence_N = mkN "essence" "essences" ;
+lin essential_A = mkAMost "essential" "essentially" ;
+lin essential_N = mkN "essential" "essentials" ;
+lin essentiality_N = mkN "essentiality" "essentialities" ;
+lin establish_V = mkV "establish" "established" "established" ;
+lin establishment_N = mkN "establishment" "establishments" ;
+lin establishmentarianism_N = mkN "establishmentarianism" "establishmentarianisms" ;
+lin estaminet_N = mkN "estaminet" "estaminets" ;
+lin estate_N = mkN "estate" "estates" ;
+lin estazolam_N = mkN "estazolam" "estazolams" ;
+lin esteem_N = mkN "esteem" "esteems" ;
+lin esteem_V = mkV "esteem" "esteemed" "esteemed" ;
+lin ester_N = mkN "ester" "esters" ;
+lin esthete_N = mkN "esthete" "esthetes" ;
+lin esthetic_A = mkAMost "esthetic" "estheticly" ;
+lin esthetic_N = mkN "esthetic" "esthetics" ;
+lin esthetical_A = mkAMost "esthetical" "esthetically" ;
+lin esthetician_N = mkN "esthetician" "estheticians" ;
+lin esthetics_N = mkN "esthetics" "esthetics" ;
+lin estimable_A = mkAMost "estimable" "estimably" ;
+lin estimate_N = mkN "estimate" "estimates" ;
+lin estimate_V = mkV "estimate" "estimated" "estimated" ;
+lin estimation_N = mkN "estimation" "estimations" ;
+lin estivation_N = mkN "estivation" "estivations" ;
+lin estoppel_N = mkN "estoppel" "estoppels" ;
+lin estradiol_N = mkN "estradiol" "estradiols" ;
+lin estrange_V = mkV "estrange" "estranged" "estranged" ;
+lin estrangement_N = mkN "estrangement" "estrangements" ;
+lin estranging_A = mkAMost "estranging" "estrangingly" ;
+lin estriol_N = mkN "estriol" "estriols" ;
+lin estrogen_N = mkN "estrogen" "estrogens" ;
+lin estrogenic_A = mkAMost "estrogenic" "estrogenicly" ;
+lin estrone_N = mkN "estrone" "estrones" ;
+lin estrous_A = mkAMost "estrous" "estrously" ;
+lin estrus_N = mkN "estrus" "estruses" ;
+lin estuarine_A = mkAMost "estuarine" "estuarinely" ;
+lin estuary_N = mkN "estuary" "estuaries" ;
+lin eta_N = mkN "eta" "etas" ;
+lin etagere_N = mkN "etagere" "etageres" ;
+lin etamine_N = mkN "etamine" "etamines" ;
+lin etanercept_N = mkN "etanercept" "etanercepts" ;
+lin etcetera_N = mkN "etcetera" "etceteras" ;
+lin etch_V = mkV "etch" "etched" "etched" ;
+lin etcher_N = mkN "etcher" "etchers" ;
+lin etching_N = mkN "etching" "etchings" ;
+lin etd_N = mkN "etd" "etds" ;
+lin eternal_A = mkAMost "eternal" "eternally" ;
+lin eternity_N = mkN "eternity" "eternities" ;
+lin ethane_N = mkN "ethane" "ethanes" ;
+lin ethchlorvynol_N = mkN "ethchlorvynol" "ethchlorvynols" ;
+lin ether_N = mkN "ether" "ethers" ;
+lin ethereal_A = mkAMost "ethereal" "ethereally" ;
+lin ethernet_N = mkN "ethernet" "ethernets" ;
+lin ethic_N = mkN "ethic" "ethics" ;
+lin ethical_A = mkAMost "ethical" "ethically" ;
+lin ethicism_N = mkN "ethicism" "ethicisms" ;
+lin ethicist_N = mkN "ethicist" "ethicists" ;
+lin ethics_N = mkN "ethics" "ethicses" ;
+lin ethiopian_A = mkAMost "ethiopian" "ethiopianly" ;
+lin ethiopian_N = mkN "ethiopian" "ethiopians" ;
+lin ethmoid_N = mkN "ethmoid" "ethmoids" ;
+lin ethnarch_N = mkN "ethnarch" "ethnarches" ;
+lin ethnic_A = mkAMost "ethnic" "ethnicly" ;
+lin ethnic_N = mkN "ethnic" "ethnics" ;
+lin ethnically_Adv = mkAdv "ethnically" ;
+lin ethnicity_N = mkN "ethnicity" "ethnicities" ;
+lin ethnocentric_A = mkAMost "ethnocentric" "ethnocentricly" ;
+lin ethnocentrism_N = mkN "ethnocentrism" "ethnocentrisms" ;
+lin ethnographer_N = mkN "ethnographer" "ethnographers" ;
+lin ethnographic_A = mkAMost "ethnographic" "ethnographicly" ;
+lin ethnography_N = mkN "ethnography" "ethnographies" ;
+lin ethnological_A = mkAMost "ethnological" "ethnologically" ;
+lin ethnologist_N = mkN "ethnologist" "ethnologists" ;
+lin ethnology_N = mkN "ethnology" "ethnologies" ;
+lin ethologist_N = mkN "ethologist" "ethologists" ;
+lin ethology_N = mkN "ethology" "ethologies" ;
+lin ethos_ethe_N = mkN "ethos" "ethe" ;
+lin ethos_ethea_N = mkN "ethos" "ethea" ;
+lin ethosuximide_N = mkN "ethosuximide" "ethosuximides" ;
+lin ethyl_N = mkN "ethyl" "ethyls" ;
+lin ethylene_N = mkN "ethylene" "ethylenes" ;
+lin etiolate_A = mkAMost "etiolate" "etiolately" ;
+lin etiolation_N = mkN "etiolation" "etiolations" ;
+lin etiological_A = mkAMost "etiological" "etiologically" ;
+lin etiologist_N = mkN "etiologist" "etiologists" ;
+lin etiology_N = mkN "etiology" "etiologies" ;
+lin etiquette_N = mkN "etiquette" "etiquettes" ;
+lin etodolac_N = mkN "etodolac" "etodolacs" ;
+lin etude_N = mkN "etude" "etudes" ;
+lin etui_N = mkN "etui" "etuis" ;
+lin etymological_A = mkAMost "etymological" "etymologically" ;
+lin etymologist_N = mkN "etymologist" "etymologists" ;
+lin etymology_N = mkN "etymology" "etymologies" ;
+lin etymon_N = mkN "etymon" "etymons" ;
+lin eubacteria_N = mkN "eubacteria" "eubacterias" ;
+lin eucalyptus_N = mkN "eucalyptus" "eucalyptuses" ;
+lin eucharist_N = mkN "eucharist" "eucharists" ;
+lin euchre_N = mkN "euchre" "euchres" ;
+lin euclidean_A = mkAMost "euclidean" "euclideanly" ;
+lin euclidian_A = mkAMost "euclidian" "euclidianly" ;
+lin eudemon_N = mkN "eudemon" "eudemons" ;
+lin eudemonic_A = mkAMost "eudemonic" "eudemonicly" ;
+lin eudemonism_N = mkN "eudemonism" "eudemonisms" ;
+lin eudiometer_N = mkN "eudiometer" "eudiometers" ;
+lin eugenic_A = mkAMost "eugenic" "eugenicly" ;
+lin eugenics_N = mkN "eugenics" "eugenics" ;
+lin euglena_N = mkN "euglena" "euglenas" ;
+lin euglenoid_N = mkN "euglenoid" "euglenoids" ;
+lin eukaryote_N = mkN "eukaryote" "eukaryotes" ;
+lin eukaryotic_A = mkAMost "eukaryotic" "eukaryoticly" ;
+lin eulogist_N = mkN "eulogist" "eulogists" ;
+lin eulogistic_A = mkAMost "eulogistic" "eulogisticly" ;
+lin eulogize_V = mkV "eulogize" "eulogized" "eulogized" ;
+lin eulogy_N = mkN "eulogy" "eulogies" ;
+lin eunuch_N = mkN "eunuch" "eunuchs" ;
+lin euphemism_N = mkN "euphemism" "euphemisms" ;
+lin euphemistic_A = mkAMost "euphemistic" "euphemisticly" ;
+lin euphemistically_Adv = mkAdv "euphemistically" ;
+lin euphonic_A = mkAMost "euphonic" "euphonicly" ;
+lin euphonious_A = mkAMost "euphonious" "euphoniously" ;
+lin euphonium_N = mkN "euphonium" "euphoniums" ;
+lin euphony_N = mkN "euphony" "euphonies" ;
+lin euphorbium_N = mkN "euphorbium" "euphorbiums" ;
+lin euphoria_N = mkN "euphoria" "euphorias" ;
+lin euphoriant_A = mkAMost "euphoriant" "euphoriantly" ;
+lin euphoriant_N = mkN "euphoriant" "euphoriants" ;
+lin euphoric_A = mkAMost "euphoric" "euphoricly" ;
+lin euphuism_N = mkN "euphuism" "euphuisms" ;
+lin eupnea_N = mkN "eupnea" "eupneas" ;
+lin eurasian_A = mkAMost "eurasian" "eurasianly" ;
+lin eurasian_N = mkN "eurasian" "eurasians" ;
+lin eurhythmics_N = mkN "eurhythmics" "eurhythmics" ;
+lin euro_N = mkN "euro" "euros" ;
+lin eurodollar_N = mkN "eurodollar" "eurodollars" ;
+lin europium_N = mkN "europium" "europiums" ;
+lin eurypterid_N = mkN "eurypterid" "eurypterids" ;
+lin eurythmics_N = mkN "eurythmics" "eurythmics" ;
+lin eurythmy_N = mkN "eurythmy" "eurythmies" ;
+lin eusporangiate_A = mkAMost "eusporangiate" "eusporangiately" ;
+lin eusporangium_N = mkN "eusporangium" "eusporangiums" ;
+lin eustachian_A = mkAMost "eustachian" "eustachianly" ;
+lin eutectic_N = mkN "eutectic" "eutectics" ;
+lin euthanasia_N = mkN "euthanasia" "euthanasias" ;
+lin euthenics_N = mkN "euthenics" "euthenicses" ;
+lin eutherian_A = mkAMost "eutherian" "eutherianly" ;
+lin eutrophic_A = mkAMost "eutrophic" "eutrophicly" ;
+lin eutrophication_N = mkN "eutrophication" "eutrophications" ;
+lin evacuate_V = mkV "evacuate" "evacuated" "evacuated" ;
+lin evacuation_N = mkN "evacuation" "evacuations" ;
+lin evacuee_N = mkN "evacuee" "evacuees" ;
+lin evade_V = mkV "evade" "evaded" "evaded" ;
+lin evaluate_V = mkV "evaluate" "evaluated" "evaluated" ;
+lin evaluation_N = mkN "evaluation" "evaluations" ;
+lin evaluative_A = mkAMost "evaluative" "evaluatively" ;
+lin evaluator_N = mkN "evaluator" "evaluators" ;
+lin evanescence_N = mkN "evanescence" "evanescences" ;
+lin evanescent_A = mkAMost "evanescent" "evanescently" ;
+lin evangelical_A = mkAMost "evangelical" "evangelically" ;
+lin evangelicalism_N = mkN "evangelicalism" "evangelicalisms" ;
+lin evangelism_N = mkN "evangelism" "evangelisms" ;
+lin evangelist_N = mkN "evangelist" "evangelists" ;
+lin evangelistic_A = mkAMost "evangelistic" "evangelisticly" ;
+lin evaporable_A = mkAMost "evaporable" "evaporably" ;
+lin evaporate_V = mkV "evaporate" "evaporated" "evaporated" ;
+lin evaporation_N = mkN "evaporation" "evaporations" ;
+lin evaporative_A = mkAMost "evaporative" "evaporatively" ;
+lin evaporite_N = mkN "evaporite" "evaporites" ;
+lin evasion_N = mkN "evasion" "evasions" ;
+lin evasive_A = mkAMost "evasive" "evasively" ;
+lin evasiveness_N = mkN "evasiveness" "evasivenesses" ;
+lin eve_N = mkN "eve" "eves" ;
+lin even_A = mkAMost "even" "evenly" ;
+lin even_Adv = mkAdv "even" ;
+lin even_N = mkN "even" "evens" ;
+lin even_evened_V = mkV "even" "evened" "evened" ;
+lin even_evenned_V = mkV "even" "evenned" "evenned" ;
+lin even_handed_A = mkAMost "even-handed" "even-handedly" ;
+lin evenhanded_A = mkAMost "evenhanded" "evenhandedly" ;
+lin evening_N = mkN "evening" "evenings" ;
+lin evenness_N = mkN "evenness" "evennesses" ;
+lin evensong_N = mkN "evensong" "evensongs" ;
+lin event_N = mkN "event" "events" ;
+lin eventful_A = mkAMost "eventful" "eventfully" ;
+lin eventide_N = mkN "eventide" "eventides" ;
+lin eventration_N = mkN "eventration" "eventrations" ;
+lin eventual_A = mkAMost "eventual" "eventually" ;
+lin eventuality_N = mkN "eventuality" "eventualities" ;
+lin ever_Adv = mkAdv "ever" ;
+lin evergreen_A = mkAMost "evergreen" "evergreenly" ;
+lin evergreen_N = mkN "evergreen" "evergreens" ;
+lin everlasting_A = mkAMost "everlasting" "everlastingly" ;
+lin everlasting_N = mkN "everlasting" "everlastings" ;
+lin everlastingness_N = mkN "everlastingness" "everlastingnesses" ;
+lin evermore_Adv = mkAdv "evermore" ;
+lin eversion_N = mkN "eversion" "eversions" ;
+lin everyday_A = mkAMost "everyday" "everydaily" ;
+lin everyman_N = mkN "everyman" "everymans" ;
+lin everyplace_Adv = mkAdv "everyplace" ;
+lin everywhere_Adv = mkAdv "everywhere" ;
+lin evict_V = mkV "evict" "evicted" "evicted" ;
+lin eviction_N = mkN "eviction" "evictions" ;
+lin evidence_N = mkN "evidence" "evidences" ;
+lin evidence_V = mkV "evidence" "evidenced" "evidenced" ;
+lin evident_A = mkAMost "evident" "evidently" ;
+lin evidential_A = mkAMost "evidential" "evidentially" ;
+lin evidentiary_A = mkAMost "evidentiary" "evidentiarily" ;
+lin evil_A = mkAMost "evil" "evilly" ;
+lin evil_N = mkN "evil" "evils" ;
+lin evil_doer_N = mkN "evil-doer" "evil-doers" ;
+lin evil_minded_A = mkAMost "evil-minded" "evil-mindedly" ;
+lin evince_V = mkV "evince" "evinced" "evinced" ;
+lin eviscerate_A = mkAMost "eviscerate" "eviscerately" ;
+lin eviscerate_V = mkV "eviscerate" "eviscerated" "eviscerated" ;
+lin evisceration_N = mkN "evisceration" "eviscerations" ;
+lin evitable_A = mkAMost "evitable" "evitably" ;
+lin evocation_N = mkN "evocation" "evocations" ;
+lin evocative_A = mkAMost "evocative" "evocatively" ;
+lin evoke_V = mkV "evoke" "evoked" "evoked" ;
+lin evolution_N = mkN "evolution" "evolutions" ;
+lin evolutionary_A = mkAMost "evolutionary" "evolutionarily" ;
+lin evolutionist_N = mkN "evolutionist" "evolutionists" ;
+lin evolve_V = mkV "evolve" "evolved" "evolved" ;
+lin ewe_N = mkN "ewe" "ewes" ;
+lin ewer_N = mkN "ewer" "ewers" ;
+lin ex_directory_A = mkAMost "ex-directory" "ex-directorily" ;
+lin ex_gratia_A = mkAMost "ex gratia" "ex gratialy" ;
+lin ex_officio_A = mkAMost "ex officio" "ex officioly" ;
+lin ex_officio_Adv = mkAdv "ex officio" ;
+lin ex_service_A = mkAMost "ex-service" "ex-servicely" ;
+lin ex_serviceman_N = mkN "ex-serviceman" "ex-servicemen" ;
+lin exabit_N = mkN "exabit" "exabits" ;
+lin exabyte_N = mkN "exabyte" "exabytes" ;
+lin exacerbate_V = mkV "exacerbate" "exacerbated" "exacerbated" ;
+lin exacerbation_N = mkN "exacerbation" "exacerbations" ;
+lin exact_A = mkAMost "exact" "exactly" ;
+lin exact_V = mkV "exact" "exacted" "exacted" ;
+lin exacta_N = mkN "exacta" "exactas" ;
+lin exacting_A = mkAMost "exacting" "exactingly" ;
+lin exaction_N = mkN "exaction" "exactions" ;
+lin exactitude_N = mkN "exactitude" "exactitudes" ;
+lin exactness_N = mkN "exactness" "exactnesses" ;
+lin exaggerate_V = mkV "exaggerate" "exaggerated" "exaggerated" ;
+lin exaggeration_N = mkN "exaggeration" "exaggerations" ;
+lin exalt_V = mkV "exalt" "exalted" "exalted" ;
+lin exaltation_N = mkN "exaltation" "exaltations" ;
+lin exam_N = mkN "exam" "exams" ;
+lin examen_N = mkN "examen" "examens" ;
+lin examination_N = mkN "examination" "examinations" ;
+lin examine_V = mkV "examine" "examined" "examined" ;
+lin examiner_N = mkN "examiner" "examiners" ;
+lin example_N = mkN "example" "examples" ;
+lin exanthem_N = mkN "exanthem" "exanthems" ;
+lin exarch_N = mkN "exarch" "exarches" ;
+lin exasperate_V = mkV "exasperate" "exasperated" "exasperated" ;
+lin exasperating_A = mkAMost "exasperating" "exasperatingly" ;
+lin exasperation_N = mkN "exasperation" "exasperations" ;
+lin exaugural_A = mkAMost "exaugural" "exaugurally" ;
+lin exbibit_N = mkN "exbibit" "exbibits" ;
+lin excavate_V = mkV "excavate" "excavated" "excavated" ;
+lin excavation_N = mkN "excavation" "excavations" ;
+lin excavator_N = mkN "excavator" "excavators" ;
+lin exceed_V = mkV "exceed" "exceeded" "exceeded" ;
+lin exceedance_N = mkN "exceedance" "exceedances" ;
+lin exceeding_A = mkAMost "exceeding" "exceedingly" ;
+lin excel_V = mkV "excel" "excelled" "excelled" ;
+lin excellence_N = mkN "excellence" "excellences" ;
+lin excellency_N = mkN "excellency" "excellencies" ;
+lin excellent_A = mkAMost "excellent" "excellently" ;
+lin excelsior_N = mkN "excelsior" "excelsiors" ;
+lin except_Prep = mkPrep "except" ;
+lin except_V = mkV "except" "excepted" "excepted" ;
+lin except_for_Prep = mkPrep "except for" ;
+lin exception_N = mkN "exception" "exceptions" ;
+lin exceptionable_A = mkAMost "exceptionable" "exceptionably" ;
+lin exceptional_A = mkAMost "exceptional" "exceptionally" ;
+lin excerpt_N = mkN "excerpt" "excerpts" ;
+lin excess_A = mkAMost "excess" "excessly" ;
+lin excess_N = mkN "excess" "excesses" ;
+lin excessive_A = mkAMost "excessive" "excessively" ;
+lin exchange_N = mkN "exchange" "exchanges" ;
+lin exchange_V = mkV "exchange" "exchanged" "exchanged" ;
+lin exchangeability_N = mkN "exchangeability" "exchangeabilities" ;
+lin exchangeable_A = mkAMost "exchangeable" "exchangeably" ;
+lin exchanger_N = mkN "exchanger" "exchangers" ;
+lin exchequer_N = mkN "exchequer" "exchequers" ;
+lin excise_N = mkN "excise" "excises" ;
+lin excise_V = mkV "excise" "excised" "excised" ;
+lin exciseman_N = mkN "exciseman" "excisemen" ;
+lin excision_N = mkN "excision" "excisions" ;
+lin excitability_N = mkN "excitability" "excitabilities" ;
+lin excitable_A = mkAMost "excitable" "excitably" ;
+lin excitant_A = mkAMost "excitant" "excitantly" ;
+lin excitation_N = mkN "excitation" "excitations" ;
+lin excite_V = mkV "excite" "excited" "excited" ;
+lin excitedly_Adv = mkAdv "excitedly" ;
+lin excitement_N = mkN "excitement" "excitements" ;
+lin exciting_A = mkAMost "exciting" "excitingly" ;
+lin exclaim_V = mkV "exclaim" "exclaimed" "exclaimed" ;
+lin exclamation_N = mkN "exclamation" "exclamations" ;
+lin exclamatory_A = mkAMost "exclamatory" "exclamatorily" ;
+lin exclude_V = mkV "exclude" "excluded" "excluded" ;
+lin exclusion_N = mkN "exclusion" "exclusions" ;
+lin exclusive_A = mkAMost "exclusive" "exclusively" ;
+lin exclusive_N = mkN "exclusive" "exclusives" ;
+lin excogitate_V = mkV "excogitate" "excogitated" "excogitated" ;
+lin excogitation_N = mkN "excogitation" "excogitations" ;
+lin excogitative_A = mkAMost "excogitative" "excogitatively" ;
+lin excogitator_N = mkN "excogitator" "excogitators" ;
+lin excommunicate_V = mkV "excommunicate" "excommunicated" "excommunicated" ;
+lin excommunication_N = mkN "excommunication" "excommunications" ;
+lin excoriate_V = mkV "excoriate" "excoriated" "excoriated" ;
+lin excoriation_N = mkN "excoriation" "excoriations" ;
+lin excrement_N = mkN "excrement" "excrements" ;
+lin excrescence_N = mkN "excrescence" "excrescences" ;
+lin excrescent_A = mkAMost "excrescent" "excrescently" ;
+lin excrete_V = mkV "excrete" "excreted" "excreted" ;
+lin excretion_N = mkN "excretion" "excretions" ;
+lin excretory_A = mkAMost "excretory" "excretorily" ;
+lin excruciating_A = mkAMost "excruciating" "excruciatingly" ;
+lin exculpate_V = mkV "exculpate" "exculpated" "exculpated" ;
+lin exculpation_N = mkN "exculpation" "exculpations" ;
+lin exculpatory_A = mkAMost "exculpatory" "exculpatorily" ;
+lin excursion_N = mkN "excursion" "excursions" ;
+lin excursionist_N = mkN "excursionist" "excursionists" ;
+lin excusable_A = mkAMost "excusable" "excusably" ;
+lin excuse_N = mkN "excuse" "excuses" ;
+lin excuse_V = mkV "excuse" "excused" "excused" ;
+lin execrable_A = mkAMost "execrable" "execrably" ;
+lin execrate_V = mkV "execrate" "execrated" "execrated" ;
+lin execration_N = mkN "execration" "execrations" ;
+lin executability_N = mkN "executability" "executabilities" ;
+lin executant_N = mkN "executant" "executants" ;
+lin execute_V = mkV "execute" "executed" "executed" ;
+lin execution_N = mkN "execution" "executions" ;
+lin executioner_N = mkN "executioner" "executioners" ;
+lin executive_A = mkAMost "executive" "executively" ;
+lin executive_N = mkN "executive" "executives" ;
+lin executor_N = mkN "executor" "executors" ;
+lin executrix_N = mkN "executrix" "executrixes" ;
+lin exegesis_N = mkN "exegesis" "exegesises" ;
+lin exegete_N = mkN "exegete" "exegetes" ;
+lin exegetic_A = mkAMost "exegetic" "exegeticly" ;
+lin exemplar_N = mkN "exemplar" "exemplars" ;
+lin exemplary_A = mkAMost "exemplary" "exemplarily" ;
+lin exemplification_N = mkN "exemplification" "exemplifications" ;
+lin exemplify_V = mkV "exemplify" "exemplified" "exemplified" ;
+lin exemplifying_A = mkAMost "exemplifying" "exemplifyingly" ;
+lin exempt_A = mkAMost "exempt" "exemptly" ;
+lin exempt_V = mkV "exempt" "exempted" "exempted" ;
+lin exemption_N = mkN "exemption" "exemptions" ;
+lin exenteration_N = mkN "exenteration" "exenterations" ;
+lin exercise_N = mkN "exercise" "exercises" ;
+lin exercise_V = mkV "exercise" "exercised" "exercised" ;
+lin exergonic_A = mkAMost "exergonic" "exergonicly" ;
+lin exert_V = mkV "exert" "exerted" "exerted" ;
+lin exertion_N = mkN "exertion" "exertions" ;
+lin exfoliation_N = mkN "exfoliation" "exfoliations" ;
+lin exhalation_N = mkN "exhalation" "exhalations" ;
+lin exhale_V = mkV "exhale" "exhaled" "exhaled" ;
+lin exhaust_N = mkN "exhaust" "exhausts" ;
+lin exhaust_V = mkV "exhaust" "exhausted" "exhausted" ;
+lin exhaust_pipe_N = mkN "exhaust-pipe" "exhaust-pipes" ;
+lin exhaustible_A = mkAMost "exhaustible" "exhaustibly" ;
+lin exhausting_A = mkAMost "exhausting" "exhaustingly" ;
+lin exhaustion_N = mkN "exhaustion" "exhaustions" ;
+lin exhaustive_A = mkAMost "exhaustive" "exhaustively" ;
+lin exhibit_N = mkN "exhibit" "exhibits" ;
+lin exhibit_V = mkV "exhibit" "exhibited" "exhibited" ;
+lin exhibition_N = mkN "exhibition" "exhibitions" ;
+lin exhibitioner_N = mkN "exhibitioner" "exhibitioners" ;
+lin exhibitionism_N = mkN "exhibitionism" "exhibitionisms" ;
+lin exhibitionist_N = mkN "exhibitionist" "exhibitionists" ;
+lin exhibitionistic_A = mkAMost "exhibitionistic" "exhibitionisticly" ;
+lin exhibitor_N = mkN "exhibitor" "exhibitors" ;
+lin exhilarate_V = mkV "exhilarate" "exhilarated" "exhilarated" ;
+lin exhilarating_A = mkAMost "exhilarating" "exhilaratingly" ;
+lin exhilaration_N = mkN "exhilaration" "exhilarations" ;
+lin exhort_V = mkV "exhort" "exhorted" "exhorted" ;
+lin exhortation_N = mkN "exhortation" "exhortations" ;
+lin exhortative_A = mkAMost "exhortative" "exhortatively" ;
+lin exhumation_N = mkN "exhumation" "exhumations" ;
+lin exhume_V = mkV "exhume" "exhumed" "exhumed" ;
+lin exigency_N = mkN "exigency" "exigencies" ;
+lin exigent_A = mkAMost "exigent" "exigently" ;
+lin exiguous_A = mkAMost "exiguous" "exiguously" ;
+lin exile_N = mkN "exile" "exiles" ;
+lin exile_V = mkV "exile" "exiled" "exiled" ;
+lin exilic_A = mkAMost "exilic" "exilicly" ;
+lin exist_V = mkV "exist" "existed" "existed" ;
+lin existence_N = mkN "existence" "existences" ;
+lin existent_A = mkAMost "existent" "existently" ;
+lin existential_A = mkAMost "existential" "existentially" ;
+lin existentialism_N = mkN "existentialism" "existentialisms" ;
+lin existentialist_A = mkAMost "existentialist" "existentialistly" ;
+lin existentialist_N = mkN "existentialist" "existentialists" ;
+lin exit_N = mkN "exit" "exits" ;
+lin exit_V = mkV "exit" "exited" "exited" ;
+lin exobiology_N = mkN "exobiology" "exobiologies" ;
+lin exocentric_A = mkAMost "exocentric" "exocentricly" ;
+lin exocrine_A = mkAMost "exocrine" "exocrinely" ;
+lin exode_N = mkN "exode" "exodes" ;
+lin exodontic_A = mkAMost "exodontic" "exodonticly" ;
+lin exodontics_N = mkN "exodontics" "exodonticses" ;
+lin exodontist_N = mkN "exodontist" "exodontists" ;
+lin exodus_N = mkN "exodus" "exoduses" ;
+lin exoergic_A = mkAMost "exoergic" "exoergicly" ;
+lin exogamous_A = mkAMost "exogamous" "exogamously" ;
+lin exogamy_N = mkN "exogamy" "exogamies" ;
+lin exogenous_A = mkAMost "exogenous" "exogenously" ;
+lin exomphalos_N = mkN "exomphalos" "exomphaloses" ;
+lin exon_N = mkN "exon" "exons" ;
+lin exonerate_V = mkV "exonerate" "exonerated" "exonerated" ;
+lin exoneration_N = mkN "exoneration" "exonerations" ;
+lin exonuclease_N = mkN "exonuclease" "exonucleases" ;
+lin exophthalmos_N = mkN "exophthalmos" "exophthalmoses" ;
+lin exorbitance_N = mkN "exorbitance" "exorbitances" ;
+lin exorbitant_A = mkAMost "exorbitant" "exorbitantly" ;
+lin exorcise_V = mkV "exorcise" "exorcised" "exorcised" ;
+lin exorcism_N = mkN "exorcism" "exorcisms" ;
+lin exorcist_N = mkN "exorcist" "exorcists" ;
+lin exorcize_V = mkV "exorcize" "exorcized" "exorcized" ;
+lin exordium_N = mkN "exordium" "exordiums" ;
+lin exoskeleton_N = mkN "exoskeleton" "exoskeletons" ;
+lin exosphere_N = mkN "exosphere" "exospheres" ;
+lin exostosis_N = mkN "exostosis" "exostosises" ;
+lin exoteric_A = mkAMost "exoteric" "exotericly" ;
+lin exotherm_N = mkN "exotherm" "exotherms" ;
+lin exothermic_A = mkAMost "exothermic" "exothermicly" ;
+lin exotic_A = mkAMost "exotic" "exoticly" ;
+lin exoticism_N = mkN "exoticism" "exoticisms" ;
+lin exotoxin_N = mkN "exotoxin" "exotoxins" ;
+lin expand_V = mkV "expand" "expanded" "expanded" ;
+lin expandable_A = mkAMost "expandable" "expandably" ;
+lin expanse_N = mkN "expanse" "expanses" ;
+lin expansion_N = mkN "expansion" "expansions" ;
+lin expansionism_N = mkN "expansionism" "expansionisms" ;
+lin expansionist_A = mkAMost "expansionist" "expansionistly" ;
+lin expansive_A = mkAMost "expansive" "expansively" ;
+lin expansiveness_N = mkN "expansiveness" "expansivenesses" ;
+lin expatiate_V = mkV "expatiate" "expatiated" "expatiated" ;
+lin expatiation_N = mkN "expatiation" "expatiations" ;
+lin expatriate_N = mkN "expatriate" "expatriates" ;
+lin expatriate_V = mkV "expatriate" "expatriated" "expatriated" ;
+lin expect_V = mkV "expect" "expected" "expected" ;
+lin expectable_A = mkAMost "expectable" "expectably" ;
+lin expectancy_N = mkN "expectancy" "expectancies" ;
+lin expectant_A = mkAMost "expectant" "expectantly" ;
+lin expectation_N = mkN "expectation" "expectations" ;
+lin expectedness_N = mkN "expectedness" "expectednesses" ;
+lin expectorant_N = mkN "expectorant" "expectorants" ;
+lin expectorate_V = mkV "expectorate" "expectorated" "expectorated" ;
+lin expectoration_N = mkN "expectoration" "expectorations" ;
+lin expedience_N = mkN "expedience" "expediences" ;
+lin expediency_N = mkN "expediency" "expediencies" ;
+lin expedient_A = mkAMost "expedient" "expediently" ;
+lin expedient_N = mkN "expedient" "expedients" ;
+lin expedite_V = mkV "expedite" "expedited" "expedited" ;
+lin expedition_N = mkN "expedition" "expeditions" ;
+lin expeditionary_A = mkAMost "expeditionary" "expeditionarily" ;
+lin expeditious_A = mkAMost "expeditious" "expeditiously" ;
+lin expel_V = mkV "expel" "expelled" "expelled" ;
+lin expend_V = mkV "expend" "expended" "expended" ;
+lin expendable_A = mkAMost "expendable" "expendably" ;
+lin expending_N = mkN "expending" "expendings" ;
+lin expenditure_N = mkN "expenditure" "expenditures" ;
+lin expense_N = mkN "expense" "expenses" ;
+lin expensive_A = mkAMost "expensive" "expensively" ;
+lin expensiveness_N = mkN "expensiveness" "expensivenesses" ;
+lin experience_N = mkN "experience" "experiences" ;
+lin experience_V = mkV "experience" "experienced" "experienced" ;
+lin experienced_A = mkAMost "experienced" "experiencedly" ;
+lin experiential_A = mkAMost "experiential" "experientially" ;
+lin experiment_N = mkN "experiment" "experiments" ;
+lin experiment_V = mkV "experiment" "experimented" "experimented" ;
+lin experimental_A = mkAMost "experimental" "experimentally" ;
+lin experimentalism_N = mkN "experimentalism" "experimentalisms" ;
+lin experimentation_N = mkN "experimentation" "experimentations" ;
+lin experimenter_N = mkN "experimenter" "experimenters" ;
+lin expert_A = mkAMost "expert" "expertly" ;
+lin expert_N = mkN "expert" "experts" ;
+lin expertise_N = mkN "expertise" "expertises" ;
+lin expertness_N = mkN "expertness" "expertnesses" ;
+lin expiable_A = mkAMost "expiable" "expiably" ;
+lin expiate_V = mkV "expiate" "expiated" "expiated" ;
+lin expiation_N = mkN "expiation" "expiations" ;
+lin expiatory_A = mkAMost "expiatory" "expiatorily" ;
+lin expiration_N = mkN "expiration" "expirations" ;
+lin expiratory_A = mkAMost "expiratory" "expiratorily" ;
+lin expire_V = mkV "expire" "expired" "expired" ;
+lin expiry_N = mkN "expiry" "expiries" ;
+lin explain_V = mkV "explain" "explained" "explained" ;
+lin explainable_A = mkAMost "explainable" "explainably" ;
+lin explanans_N = mkN "explanans" "explananses" ;
+lin explanation_N = mkN "explanation" "explanations" ;
+lin explanatory_A = mkAMost "explanatory" "explanatorily" ;
+lin expletive_N = mkN "expletive" "expletives" ;
+lin explicable_A = mkAMost "explicable" "explicably" ;
+lin explicandum_N = mkN "explicandum" "explicandums" ;
+lin explicate_V = mkV "explicate" "explicated" "explicated" ;
+lin explication_N = mkN "explication" "explications" ;
+lin explicit_A = mkAMost "explicit" "explicitly" ;
+lin explicitness_N = mkN "explicitness" "explicitnesses" ;
+lin explode_V = mkV "explode" "exploded" "exploded" ;
+lin exploit_N = mkN "exploit" "exploits" ;
+lin exploit_V = mkV "exploit" "exploited" "exploited" ;
+lin exploitation_N = mkN "exploitation" "exploitations" ;
+lin exploitative_A = mkAMost "exploitative" "exploitatively" ;
+lin exploiter_N = mkN "exploiter" "exploiters" ;
+lin exploration_N = mkN "exploration" "explorations" ;
+lin exploratory_A = mkAMost "exploratory" "exploratorily" ;
+lin explore_V = mkV "explore" "explored" "explored" ;
+lin explorer_N = mkN "explorer" "explorers" ;
+lin explosion_N = mkN "explosion" "explosions" ;
+lin explosive_A = mkAMost "explosive" "explosively" ;
+lin explosive_N = mkN "explosive" "explosives" ;
+lin expo_N = mkN "expo" "expos" ;
+lin exponent_N = mkN "exponent" "exponents" ;
+lin exponential_A = mkAMost "exponential" "exponentially" ;
+lin exponential_N = mkN "exponential" "exponentials" ;
+lin exponentiation_N = mkN "exponentiation" "exponentiations" ;
+lin export_N = mkN "export" "exports" ;
+lin export_V = mkV "export" "exported" "exported" ;
+lin exportable_A = mkAMost "exportable" "exportably" ;
+lin exportation_N = mkN "exportation" "exportations" ;
+lin exporter_N = mkN "exporter" "exporters" ;
+lin exporting_N = mkN "exporting" "exportings" ;
+lin expose_V = mkV "expose" "exposed" "exposed" ;
+lin exposition_N = mkN "exposition" "expositions" ;
+lin expositor_N = mkN "expositor" "expositors" ;
+lin expository_A = mkAMost "expository" "expositorily" ;
+lin expostulate_V = mkV "expostulate" "expostulated" "expostulated" ;
+lin expostulation_N = mkN "expostulation" "expostulations" ;
+lin exposure_N = mkN "exposure" "exposures" ;
+lin exposé_N = mkN "exposé" "exposés" ;
+lin expound_V = mkV "expound" "expounded" "expounded" ;
+lin express_A = mkAMost "express" "expressly" ;
+lin express_Adv = mkAdv "express" ;
+lin express_N = mkN "express" "expresses" ;
+lin express_V = mkV "express" "expressed" "expressed" ;
+lin expressible_A = mkAMost "expressible" "expressibly" ;
+lin expression_N = mkN "expression" "expressions" ;
+lin expressionism_N = mkN "expressionism" "expressionisms" ;
+lin expressionist_A = mkAMost "expressionist" "expressionistly" ;
+lin expressionist_N = mkN "expressionist" "expressionists" ;
+lin expressionless_A = mkAMost "expressionless" "expressionlessly" ;
+lin expressive_A = mkAMost "expressive" "expressively" ;
+lin expressiveness_N = mkN "expressiveness" "expressivenesses" ;
+lin expressway_N = mkN "expressway" "expressways" ;
+lin expropriate_V = mkV "expropriate" "expropriated" "expropriated" ;
+lin expropriation_N = mkN "expropriation" "expropriations" ;
+lin expulsion_N = mkN "expulsion" "expulsions" ;
+lin expunction_N = mkN "expunction" "expunctions" ;
+lin expunge_V = mkV "expunge" "expunged" "expunged" ;
+lin expurgate_V = mkV "expurgate" "expurgated" "expurgated" ;
+lin expurgation_N = mkN "expurgation" "expurgations" ;
+lin expurgator_N = mkN "expurgator" "expurgators" ;
+lin exquisite_A = mkAMost "exquisite" "exquisitely" ;
+lin exquisiteness_N = mkN "exquisiteness" "exquisitenesses" ;
+lin extant_A = mkAMost "extant" "extantly" ;
+lin extemporaneous_A = mkAMost "extemporaneous" "extemporaneously" ;
+lin extemporary_A = mkAMost "extemporary" "extemporarily" ;
+lin extempore_A = mkAMost "extempore" "extemporely" ;
+lin extempore_Adv = mkAdv "extempore" ;
+lin extemporization_N = mkN "extemporization" "extemporizations" ;
+lin extemporize_V = mkV "extemporize" "extemporize" "extemporize" ;
+lin extend_V = mkV "extend" "extended" "extended" ;
+lin extendible_A = mkAMost "extendible" "extendibly" ;
+lin extensile_A = mkAMost "extensile" "extensilely" ;
+lin extension_N = mkN "extension" "extensions" ;
+lin extensional_A = mkAMost "extensional" "extensionally" ;
+lin extensive_A = mkAMost "extensive" "extensively" ;
+lin extent_N = mkN "extent" "extents" ;
+lin extenuate_V = mkV "extenuate" "extenuated" "extenuated" ;
+lin extenuating_A = mkAMost "extenuating" "extenuatingly" ;
+lin extenuation_N = mkN "extenuation" "extenuations" ;
+lin exterior_A = mkAMost "exterior" "exteriorly" ;
+lin exterior_N = mkN "exterior" "exteriors" ;
+lin exteriorize_V = mkV "exteriorize" "exteriorized" "exteriorized" ;
+lin exterminable_A = mkAMost "exterminable" "exterminably" ;
+lin exterminate_V = mkV "exterminate" "exterminated" "exterminated" ;
+lin extermination_N = mkN "extermination" "exterminations" ;
+lin exterminator_N = mkN "exterminator" "exterminators" ;
+lin extern_N = mkN "extern" "externs" ;
+lin external_A = mkAMost "external" "externally" ;
+lin external_N = mkN "external" "externals" ;
+lin externalization_N = mkN "externalization" "externalizations" ;
+lin externalize_V = mkV "externalize" "externalized" "externalized" ;
+lin exteroception_N = mkN "exteroception" "exteroceptions" ;
+lin exteroceptive_A = mkAMost "exteroceptive" "exteroceptively" ;
+lin exteroceptor_N = mkN "exteroceptor" "exteroceptors" ;
+lin exterritorial_A = mkAMost "exterritorial" "exterritorially" ;
+lin extinct_A = mkAMost "extinct" "extinctly" ;
+lin extinction_N = mkN "extinction" "extinctions" ;
+lin extinguish_V = mkV "extinguish" "extinguished" "extinguished" ;
+lin extinguishable_A = mkAMost "extinguishable" "extinguishably" ;
+lin extinguisher_N = mkN "extinguisher" "extinguishers" ;
+lin extirpate_V = mkV "extirpate" "extirpated" "extirpated" ;
+lin extirpation_N = mkN "extirpation" "extirpations" ;
+lin extol_V = mkV "extol" "extolled" "extolled" ;
+lin extort_V = mkV "extort" "extorted" "extorted" ;
+lin extortion_N = mkN "extortion" "extortions" ;
+lin extortionate_A = mkAMost "extortionate" "extortionately" ;
+lin extra_A = mkAMost "extra" "extraly" ;
+lin extra_Adv = mkAdv "extra" ;
+lin extra_N = mkN "extra" "extras" ;
+lin extracellular_A = mkAMost "extracellular" "extracellularly" ;
+lin extract_N = mkN "extract" "extracts" ;
+lin extract_V = mkV "extract" "extracted" "extracted" ;
+lin extractable_A = mkAMost "extractable" "extractably" ;
+lin extraction_N = mkN "extraction" "extractions" ;
+lin extractor_N = mkN "extractor" "extractors" ;
+lin extracurricular_A = mkAMost "extracurricular" "extracurricularly" ;
+lin extradite_V = mkV "extradite" "extradited" "extradited" ;
+lin extradition_N = mkN "extradition" "extraditions" ;
+lin extrados_N = mkN "extrados" "extradoses" ;
+lin extragalactic_A = mkAMost "extragalactic" "extragalacticly" ;
+lin extrajudicial_A = mkAMost "extrajudicial" "extrajudicially" ;
+lin extralegal_A = mkAMost "extralegal" "extralegally" ;
+lin extralinguistic_A = mkAMost "extralinguistic" "extralinguisticly" ;
+lin extramarital_A = mkAMost "extramarital" "extramaritally" ;
+lin extramural_A = mkAMost "extramural" "extramurally" ;
+lin extraneous_A = mkAMost "extraneous" "extraneously" ;
+lin extraneousness_N = mkN "extraneousness" "extraneousnesses" ;
+lin extraordinariness_N = mkN "extraordinariness" "extraordinarinesses" ;
+lin extraordinary_A = mkAMost "extraordinary" "extraordinarily" ;
+lin extrapolate_V = mkV "extrapolate" "extrapolate" "extrapolate" ;
+lin extrapolation_N = mkN "extrapolation" "extrapolations" ;
+lin extrasensory_A = mkAMost "extrasensory" "extrasensorily" ;
+lin extrasystole_N = mkN "extrasystole" "extrasystoles" ;
+lin extrasystolic_A = mkAMost "extrasystolic" "extrasystolicly" ;
+lin extraterrestrial_A = mkAMost "extraterrestrial" "extraterrestrially" ;
+lin extraterritorial_A = mkAMost "extraterritorial" "extraterritorially" ;
+lin extravagance_N = mkN "extravagance" "extravagances" ;
+lin extravagant_A = mkAMost "extravagant" "extravagantly" ;
+lin extravaganza_N = mkN "extravaganza" "extravaganzas" ;
+lin extravasation_N = mkN "extravasation" "extravasations" ;
+lin extraversion_N = mkN "extraversion" "extraversions" ;
+lin extreme_A = mkAMost "extreme" "extremely" ;
+lin extreme_N = mkN "extreme" "extremes" ;
+lin extremeness_N = mkN "extremeness" "extremenesses" ;
+lin extremism_N = mkN "extremism" "extremisms" ;
+lin extremist_A = mkAMost "extremist" "extremistly" ;
+lin extremist_N = mkN "extremist" "extremists" ;
+lin extremity_N = mkN "extremity" "extremities" ;
+lin extremum_N = mkN "extremum" "extremums" ;
+lin extricable_A = mkAMost "extricable" "extricably" ;
+lin extricate_V = mkV "extricate" "extricated" "extricated" ;
+lin extrication_N = mkN "extrication" "extrications" ;
+lin extrinsic_A = mkAMost "extrinsic" "extrinsicly" ;
+lin extropic_A = mkAMost "extropic" "extropicly" ;
+lin extropy_N = mkN "extropy" "extropies" ;
+lin extrospective_A = mkAMost "extrospective" "extrospectively" ;
+lin extroversion_N = mkN "extroversion" "extroversions" ;
+lin extroversive_A = mkAMost "extroversive" "extroversively" ;
+lin extrovert_A = mkAMost "extrovert" "extrovertly" ;
+lin extrovert_N = mkN "extrovert" "extroverts" ;
+lin extroverted_A = mkAMost "extroverted" "extrovertedly" ;
+lin extrovertish_A = mkAMost "extrovertish" "extrovertishly" ;
+lin extrude_V = mkV "extrude" "extruded" "extruded" ;
+lin extrusion_N = mkN "extrusion" "extrusions" ;
+lin extrusive_A = mkAMost "extrusive" "extrusively" ;
+lin exuberance_N = mkN "exuberance" "exuberances" ;
+lin exuberant_A = mkAMost "exuberant" "exuberantly" ;
+lin exudate_N = mkN "exudate" "exudates" ;
+lin exudation_N = mkN "exudation" "exudations" ;
+lin exude_V = mkV "exude" "exuded" "exuded" ;
+lin exult_V = mkV "exult" "exulted" "exulted" ;
+lin exultant_A = mkAMost "exultant" "exultantly" ;
+lin exultation_N = mkN "exultation" "exultations" ;
+lin exurbia_N = mkN "exurbia" "exurbias" ;
+lin exuviae_N = mkN "exuviae" "exuviaes" ;
+lin exuvial_A = mkAMost "exuvial" "exuvially" ;
+lin eyas_N = mkN "eyas" "eyases" ;
+lin eye_N = mkN "eye" "eyes" ;
+lin eye_V = mkV "eye" "eyed" "eyed" ;
+lin eye_catching_A = mkAMost "eye-catching" "eye-catchingly" ;
+lin eye_opener_N = mkN "eye-opener" "eye-openers" ;
+lin eye_shadow_N = mkN "eye-shadow" "eye-shadows" ;
+lin eyeball_N = mkN "eyeball" "eyeballs" ;
+lin eyeball_V = mkV "eyeball" "eyeballed" "eyeballed" ;
+lin eyebath_N = mkN "eyebath" "eyebaths" ;
+lin eyebrow_N = mkN "eyebrow" "eyebrows" ;
+lin eyecatching_A = mkAMost "eyecatching" "eyecatchingly" ;
+lin eyecup_N = mkN "eyecup" "eyecups" ;
+lin eyedness_N = mkN "eyedness" "eyednesses" ;
+lin eyedrop_N = mkN "eyedrop" "eyedrops" ;
+lin eyeful_N = mkN "eyeful" "eyefuls" ;
+lin eyeglass_N = mkN "eyeglass" "eyeglasses" ;
+lin eyelash_N = mkN "eyelash" "eyelashes" ;
+lin eyeless_A = mkAMost "eyeless" "eyelessly" ;
+lin eyelessness_N = mkN "eyelessness" "eyelessnesses" ;
+lin eyelet_N = mkN "eyelet" "eyelets" ;
+lin eyelid_N = mkN "eyelid" "eyelids" ;
+lin eyelike_A = mkAMost "eyelike" "eyelikely" ;
+lin eyeliner_N = mkN "eyeliner" "eyeliners" ;
+lin eyepatch_N = mkN "eyepatch" "eyepatches" ;
+lin eyepiece_N = mkN "eyepiece" "eyepieces" ;
+lin eyes_N = mkN "eyes" "eyeses" ;
+lin eyeshadow_N = mkN "eyeshadow" "eyeshadows" ;
+lin eyeshot_N = mkN "eyeshot" "eyeshots" ;
+lin eyesight_N = mkN "eyesight" "eyesights" ;
+lin eyesore_N = mkN "eyesore" "eyesores" ;
+lin eyespot_N = mkN "eyespot" "eyespots" ;
+lin eyestrain_N = mkN "eyestrain" "eyestrains" ;
+lin eyetooth_N = mkN "eyetooth" "eyeteeth" ;
+lin eyewash_N = mkN "eyewash" "eyewashes" ;
+lin eyewitness_N = mkN "eyewitness" "eyewitnesses" ;
+lin eyrie_N = mkN "eyrie" "eyries" ;
+lin eyrir_N = mkN "eyrir" "eyrirs" ;
+lin eyry_N = mkN "eyry" "eyries" ;
+lin fa_N = mkN "fa" "fas" ;
+lin fab_A = mkAMost "fab" "fably" ;
+lin fabian_A = mkAMost "fabian" "fabianly" ;
+lin fabian_N = mkN "fabian" "fabians" ;
+lin fable_N = mkN "fable" "fables" ;
+lin fabled_A = mkAMost "fabled" "fabledly" ;
+lin fabric_N = mkN "fabric" "fabrics" ;
+lin fabricate_V = mkV "fabricate" "fabricated" "fabricated" ;
+lin fabrication_N = mkN "fabrication" "fabrications" ;
+lin fabulist_N = mkN "fabulist" "fabulists" ;
+lin fabulous_A = mkAMost "fabulous" "fabulously" ;
+lin facade_N = mkN "facade" "facades" ;
+lin face_N = mkN "face" "faces" ;
+lin face_V = mkV "face" "faced" "faced" ;
+lin face_ache_N = mkN "face-ache" "face-aches" ;
+lin face_card_N = mkN "face-card" "face-cards" ;
+lin face_cloth_N = mkN "face-cloth" "face-cloths" ;
+lin face_cream_N = mkN "face-cream" "face-creams" ;
+lin face_lift_N = mkN "face-lift" "face-lifts" ;
+lin face_lifting_N = mkN "face-lifting" "face-liftings" ;
+lin face_pack_N = mkN "face-pack" "face-packs" ;
+lin face_powder_N = mkN "face-powder" "face-powders" ;
+lin face_saver_N = mkN "face-saver" "face-savers" ;
+lin face_saving_A = mkAMost "face-saving" "face-savingly" ;
+lin face_saving_N = mkN "face-saving" "face-savings" ;
+lin faceless_A = mkAMost "faceless" "facelessly" ;
+lin faceplate_N = mkN "faceplate" "faceplates" ;
+lin facer_N = mkN "facer" "facers" ;
+lin facet_N = mkN "facet" "facets" ;
+lin faceted_A = mkAMost "faceted" "facetedly" ;
+lin facetious_A = mkAMost "facetious" "facetiously" ;
+lin facetiousness_N = mkN "facetiousness" "facetiousnesses" ;
+lin facia_N = mkN "facia" "facias" ;
+lin facial_A = mkAMost "facial" "facially" ;
+lin facial_N = mkN "facial" "facials" ;
+lin facile_A = mkAMost "facile" "facilely" ;
+lin facilitate_V = mkV "facilitate" "facilitated" "facilitated" ;
+lin facilitation_N = mkN "facilitation" "facilitations" ;
+lin facilitative_A = mkAMost "facilitative" "facilitatively" ;
+lin facilitator_N = mkN "facilitator" "facilitators" ;
+lin facilitatory_A = mkAMost "facilitatory" "facilitatorily" ;
+lin facility_N = mkN "facility" "facilities" ;
+lin facing_N = mkN "facing" "facings" ;
+lin facsimile_N = mkN "facsimile" "facsimiles" ;
+lin fact_N = mkN "fact" "facts" ;
+lin fact_finding_A = mkAMost "fact-finding" "fact-findingly" ;
+lin faction_N = mkN "faction" "factions" ;
+lin factious_A = mkAMost "factious" "factiously" ;
+lin factitious_A = mkAMost "factitious" "factitiously" ;
+lin factoid_N = mkN "factoid" "factoids" ;
+lin factor_N = mkN "factor" "factors" ;
+lin factor_V = mkV "factor" "factorred" "factorred" ;
+lin factorial_A = mkAMost "factorial" "factorially" ;
+lin factorial_N = mkN "factorial" "factorials" ;
+lin factorization_N = mkN "factorization" "factorizations" ;
+lin factorize_V = mkV "factorize" "factorized" "factorized" ;
+lin factory_N = mkN "factory" "factories" ;
+lin factotum_N = mkN "factotum" "factotums" ;
+lin factual_A = mkAMost "factual" "factually" ;
+lin factuality_N = mkN "factuality" "factualities" ;
+lin facula_N = mkN "facula" "faculas" ;
+lin facultative_A = mkAMost "facultative" "facultatively" ;
+lin faculty_N = mkN "faculty" "faculties" ;
+lin fad_N = mkN "fad" "fads" ;
+lin faddish_A = mkAMost "faddish" "faddishly" ;
+lin faddist_N = mkN "faddist" "faddists" ;
+lin faddy_A = mkA "faddy" "faddier" "faddiest" "faddily" ;
+lin fade_N = mkN "fade" "fades" ;
+lin fade_V = mkV "fade" "faded" "faded" ;
+lin fadeout_N = mkN "fadeout" "fadeouts" ;
+lin fado_N = mkN "fado" "fadoes" ;
+lin faecal_A = mkAMost "faecal" "faecally" ;
+lin faerie_N = mkN "faerie" "faeries" ;
+lin faery_N = mkN "faery" "faeries" ;
+lin faff_V = mkV "faff" "faffed" "faffed" ;
+lin fag_N = mkN "fag" "fags" ;
+lin fag_V = mkV "fag" "fagged" "fagged" ;
+lin fag_end_N = mkN "fag-end" "fag-ends" ;
+lin faggot_N = mkN "faggot" "faggots" ;
+lin fagot_N = mkN "fagot" "fagots" ;
+lin fagoting_N = mkN "fagoting" "fagotings" ;
+lin faience_N = mkN "faience" "faiences" ;
+lin fail_N = mkN "fail" "fails" ;
+lin fail_V = mkV "fail" "failed" "failed" ;
+lin fail_safe_A = mkAMost "fail-safe" "fail-safely" ;
+lin failing_N = mkN "failing" "failings" ;
+lin faille_N = mkN "faille" "failles" ;
+lin failure_N = mkN "failure" "failures" ;
+lin fain_Adv = mkAdv "fain" ;
+lin faineance_N = mkN "faineance" "faineances" ;
+lin faineant_A = mkAMost "faineant" "faineantly" ;
+lin faint_A = mkA "faint" "fainter" "faintest" "faintly" ;
+lin faint_N = mkN "faint" "faints" ;
+lin faint_V = mkV "faint" "fainted" "fainted" ;
+lin faint_hearted_A = mkAMost "faint-hearted" "faint-heartedly" ;
+lin faintheartedness_N = mkN "faintheartedness" "faintheartednesses" ;
+lin faintness_N = mkN "faintness" "faintnesses" ;
+lin fair_A = mkA "fair" "fairer" "fairest" "fairly" ;
+lin fair_Adv = mkAdv "fair" ;
+lin fair_N = mkN "fair" "fairs" ;
+lin fair_minded_A = mkAMost "fair-minded" "fair-mindedly" ;
+lin fairground_N = mkN "fairground" "fairgrounds" ;
+lin fairish_A = mkAMost "fairish" "fairishly" ;
+lin fairlead_N = mkN "fairlead" "fairleads" ;
+lin fairness_N = mkN "fairness" "fairnesses" ;
+lin fairway_N = mkN "fairway" "fairways" ;
+lin fairy_N = mkN "fairy" "fairies" ;
+lin fairyland_N = mkN "fairyland" "fairylands" ;
+lin fairytale_N = mkN "fairytale" "fairytales" ;
+lin fait_accompli_N = mkN "fait accompli" "IRREG" ;
+lin faith_N = mkN "faith" "faiths" ;
+lin faith_healing_N = mkN "faith-healing" "faith-healings" ;
+lin faithful_A = mkAMost "faithful" "faithfully" ;
+lin faithful_N = mkN "faithful" "faithfuls" ;
+lin faithfulness_N = mkN "faithfulness" "faithfulnesses" ;
+lin faithless_A = mkAMost "faithless" "faithlessly" ;
+lin faithlessness_N = mkN "faithlessness" "faithlessnesses" ;
+lin fake_A = mkA "fake" "faker" "fakest" "fakely" ;
+lin fake_N = mkN "fake" "fakes" ;
+lin fake_V = mkV "fake" "faked" "faked" ;
+lin fakery_N = mkN "fakery" "fakeries" ;
+lin fakir_N = mkN "fakir" "fakirs" ;
+lin falafel_N = mkN "falafel" "falafels" ;
+lin falangist_N = mkN "falangist" "falangists" ;
+lin falcate_A = mkAMost "falcate" "falcately" ;
+lin falchion_N = mkN "falchion" "falchions" ;
+lin falcon_N = mkN "falcon" "falcons" ;
+lin falconer_N = mkN "falconer" "falconers" ;
+lin falconine_A = mkAMost "falconine" "falconinely" ;
+lin falconry_N = mkN "falconry" "falconries" ;
+lin fall_N = mkN "fall" "falls" ;
+lin fall_V = mkV "fall" "fell" "fallen" ;
+lin fallacious_A = mkAMost "fallacious" "fallaciously" ;
+lin fallaciousness_N = mkN "fallaciousness" "fallaciousnesses" ;
+lin fallacy_N = mkN "fallacy" "fallacies" ;
+lin fallboard_N = mkN "fallboard" "fallboards" ;
+lin faller_N = mkN "faller" "fallers" ;
+lin fallibility_N = mkN "fallibility" "fallibilities" ;
+lin fallible_A = mkAMost "fallible" "fallibly" ;
+lin fallopian_A = mkAMost "fallopian" "fallopianly" ;
+lin fallout_N = mkN "fallout" "fallouts" ;
+lin fallow_A = mkAMost "fallow" "fallowly" ;
+lin fallow_N = mkN "fallow" "fallows" ;
+lin fallow_deer_N = mkN "fallow-deer" "fallow-deer" ;
+lin falls_N = mkN "falls" "fallses" ;
+lin false_A = mkAMost "false" "falsely" ;
+lin false_Adv = mkAdv "false" ;
+lin falsehood_N = mkN "falsehood" "falsehoods" ;
+lin falseness_N = mkN "falseness" "falsenesses" ;
+lin falsetto_A = mkAMost "falsetto" "falsettoly" ;
+lin falsetto_N = mkN "falsetto" "falsettos" ;
+lin falsie_N = mkN "falsie" "falsies" ;
+lin falsification_N = mkN "falsification" "falsifications" ;
+lin falsifier_N = mkN "falsifier" "falsifiers" ;
+lin falsify_V = mkV "falsify" "falsified" "falsified" ;
+lin falsity_N = mkN "falsity" "falsities" ;
+lin falter_V = mkV "falter" "faltered" "faltered" ;
+lin falteringly_Adv = mkAdv "falteringly" ;
+lin fame_N = mkN "fame" "fames" ;
+lin fame_V = mkV "fame" "famed" "famed" ;
+lin familial_A = mkAMost "familial" "familially" ;
+lin familiar_A = mkAMost "familiar" "familiarly" ;
+lin familiar_N = mkN "familiar" "familiars" ;
+lin familiarity_N = mkN "familiarity" "familiarities" ;
+lin familiarization_N = mkN "familiarization" "familiarizations" ;
+lin familiarize_V = mkV "familiarize" "familiarized" "familiarized" ;
+lin familiarizing_A = mkAMost "familiarizing" "familiarizingly" ;
+lin family_N = mkN "family" "families" ;
+lin famine_N = mkN "famine" "famines" ;
+lin famish_V = mkV "famish" "famished" "famished" ;
+lin famotidine_N = mkN "famotidine" "famotidines" ;
+lin famous_A = mkAMost "famous" "famously" ;
+lin famulus_N = mkN "famulus" "famuluses" ;
+lin fan_N = mkN "fan" "fans" ;
+lin fan_V = mkV "fan" "fanned" "fanned" ;
+lin fan_belt_N = mkN "fan-belt" "fan-belts" ;
+lin fanaloka_N = mkN "fanaloka" "fanalokas" ;
+lin fanatic_A = mkAMost "fanatic" "fanaticly" ;
+lin fanatic_N = mkN "fanatic" "fanatics" ;
+lin fanatical_A = mkAMost "fanatical" "fanatically" ;
+lin fanaticism_N = mkN "fanaticism" "fanaticisms" ;
+lin fancier_N = mkN "fancier" "fanciers" ;
+lin fanciful_A = mkAMost "fanciful" "fancifully" ;
+lin fancy_A = mkA "fancy" "fancier" "fanciest" "fancily" ;
+lin fancy_N = mkN "fancy" "fancies" ;
+lin fancy_V = mkV "fancy" "fancied" "fancied" ;
+lin fancy_free_A = mkAMost "fancy-free" "fancy-freely" ;
+lin fandango_N = mkN "fandango" "fandangos" ;
+lin fandom_N = mkN "fandom" "fandoms" ;
+lin fanfare_N = mkN "fanfare" "fanfares" ;
+lin fang_N = mkN "fang" "fangs" ;
+lin fanged_A = mkAMost "fanged" "fangedly" ;
+lin fanion_N = mkN "fanion" "fanions" ;
+lin fanjet_N = mkN "fanjet" "fanjets" ;
+lin fanlight_N = mkN "fanlight" "fanlights" ;
+lin fanlike_A = mkAMost "fanlike" "fanlikely" ;
+lin fanny_N = mkN "fanny" "fannies" ;
+lin fantail_N = mkN "fantail" "fantails" ;
+lin fantan_N = mkN "fantan" "fantans" ;
+lin fantasia_N = mkN "fantasia" "fantasias" ;
+lin fantasist_N = mkN "fantasist" "fantasists" ;
+lin fantasize_V = mkV "fantasize" "fantasized" "fantasized" ;
+lin fantast_N = mkN "fantast" "fantasts" ;
+lin fantastic_A = mkAMost "fantastic" "fantasticly" ;
+lin fantastically_Adv = mkAdv "fantastically" ;
+lin fantasy_N = mkN "fantasy" "fantasies" ;
+lin fantods_N = mkN "fantods" "fantodses" ;
+lin fao_N = mkN "fao" "faoes" ;
+lin far_A = mkAMost "far" "far" ;
+lin far_V = mkV "far" "farred" "farred" ;
+lin far_famed_A = mkAMost "far-famed" "far-famedly" ;
+lin far_fetched_A = mkAMost "far-fetched" "far-fetchedly" ;
+lin far_flung_A = mkAMost "far-flung" "far-flungly" ;
+lin far_from_Prep = mkPrep "far from" ;
+lin far_off_A = mkAMost "far-off" "far-offly" ;
+lin far_reaching_A = mkAMost "far-reaching" "far-reachingly" ;
+lin far_seeing_A = mkAMost "far-seeing" "far-seeingly" ;
+lin far_sighted_A = mkAMost "far-sighted" "far-sightedly" ;
+lin farad_N = mkN "farad" "farads" ;
+lin farandole_N = mkN "farandole" "farandoles" ;
+lin faraway_A = mkAMost "faraway" "farawaily" ;
+lin farce_N = mkN "farce" "farces" ;
+lin farcical_A = mkAMost "farcical" "farcically" ;
+lin fardel_N = mkN "fardel" "fardels" ;
+lin fare_N = mkN "fare" "fares" ;
+lin fare_V = mkV "fare" "fared" "fared" ;
+lin fare_stage_N = mkN "fare-stage" "fare-stages" ;
+lin farewell_N = mkN "farewell" "farewells" ;
+lin farfalle_N = mkN "farfalle" "farfalles" ;
+lin farfetched_A = mkAMost "farfetched" "farfetchedly" ;
+lin farina_N = mkN "farina" "farinas" ;
+lin farinaceous_A = mkAMost "farinaceous" "farinaceously" ;
+lin farkleberry_N = mkN "farkleberry" "farkleberries" ;
+lin farm_N = mkN "farm" "farms" ;
+lin farm_V = mkV "farm" "farmed" "farmed" ;
+lin farmer_N = mkN "farmer" "farmers" ;
+lin farmerette_N = mkN "farmerette" "farmerettes" ;
+lin farmhand_N = mkN "farmhand" "farmhands" ;
+lin farmhouse_N = mkN "farmhouse" "farmhouses" ;
+lin farming_N = mkN "farming" "farmings" ;
+lin farmland_N = mkN "farmland" "farmlands" ;
+lin farmplace_N = mkN "farmplace" "farmplaces" ;
+lin farmstead_N = mkN "farmstead" "farmsteads" ;
+lin farmyard_N = mkN "farmyard" "farmyards" ;
+lin farness_N = mkN "farness" "farnesses" ;
+lin faro_N = mkN "faro" "faroes" ;
+lin farrago_N = mkN "farrago" "farragos" ;
+lin farrier_N = mkN "farrier" "farriers" ;
+lin farrow_N = mkN "farrow" "farrows" ;
+lin farrow_V = mkV "farrow" "farrowed" "farrowed" ;
+lin farseeing_A = mkAMost "farseeing" "farseeingly" ;
+lin farsi_N = mkN "farsi" "farsis" ;
+lin farsighted_A = mkAMost "farsighted" "farsightedly" ;
+lin fart_N = mkN "fart" "farts" ;
+lin fart_V = mkV "fart" "farted" "farted" ;
+lin farther_A = mkAMost "farther" "fartherly" ;
+lin farther_Adv = mkAdv "farther" ;
+lin farthermost_A = mkAMost "farthermost" "farthermostly" ;
+lin farthest_Adv = mkAdv "farthest" ;
+lin farthing_N = mkN "farthing" "farthings" ;
+lin farthingale_N = mkN "farthingale" "farthingales" ;
+lin fartlek_N = mkN "fartlek" "fartleks" ;
+lin fasces_N = mkN "fasces" "fasceses" ;
+lin fascia_N = mkN "fascia" "fascias" ;
+lin fascicle_N = mkN "fascicle" "fascicles" ;
+lin fasciculation_N = mkN "fasciculation" "fasciculations" ;
+lin fascinate_V = mkV "fascinate" "fascinated" "fascinated" ;
+lin fascinating_A = mkAMost "fascinating" "fascinatingly" ;
+lin fascination_N = mkN "fascination" "fascinations" ;
+lin fascioliasis_N = mkN "fascioliasis" "fascioliasises" ;
+lin fasciolopsiasis_N = mkN "fasciolopsiasis" "fasciolopsiasises" ;
+lin fascism_N = mkN "fascism" "fascisms" ;
+lin fascist_A = mkAMost "fascist" "fascistly" ;
+lin fascist_N = mkN "fascist" "fascists" ;
+lin fascista_N = mkN "fascista" "fascistas" ;
+lin fashion_N = mkN "fashion" "fashions" ;
+lin fashion_V = mkV "fashion" "fashioned" "fashioned" ;
+lin fashionable_A = mkAMost "fashionable" "fashionably" ;
+lin fast_A = mkA "fast" "faster" "fastest" "fastly" ;
+lin fast_Adv = mkAdv "fast" ;
+lin fast_N = mkN "fast" "fasts" ;
+lin fast_V = mkV "fast" "fasted" "fasted" ;
+lin fastball_N = mkN "fastball" "fastballs" ;
+lin fasten_fastened_V = mkV "fasten" "fastened" "fastened" ;
+lin fasten_fastenned_V = mkV "fasten" "fastenned" "fastenned" ;
+lin fastener_N = mkN "fastener" "fasteners" ;
+lin fastening_N = mkN "fastening" "fastenings" ;
+lin fastidious_A = mkAMost "fastidious" "fastidiously" ;
+lin fastidiousness_N = mkN "fastidiousness" "fastidiousnesses" ;
+lin fastigiate_A = mkAMost "fastigiate" "fastigiately" ;
+lin fastnacht_N = mkN "fastnacht" "fastnachts" ;
+lin fastness_N = mkN "fastness" "fastnesses" ;
+lin fat_A = mkA "fat" "fatter" "fattest" "fatly" ;
+lin fat_N = mkN "fat" "fats" ;
+lin fat_V = mkV "fat" "fatted" "fatted" ;
+lin fatal_A = mkAMost "fatal" "fatally" ;
+lin fatalism_N = mkN "fatalism" "fatalisms" ;
+lin fatalist_A = mkAMost "fatalist" "fatalistly" ;
+lin fatalist_N = mkN "fatalist" "fatalists" ;
+lin fatalistic_A = mkAMost "fatalistic" "fatalisticly" ;
+lin fatality_N = mkN "fatality" "fatalities" ;
+lin fatback_N = mkN "fatback" "fatbacks" ;
+lin fate_N = mkN "fate" "fates" ;
+lin fate_V = mkV "fate" "fated" "fated" ;
+lin fateful_A = mkAMost "fateful" "fatefully" ;
+lin fathead_N = mkN "fathead" "fatheads" ;
+lin father_N = mkN "father" "fathers" ;
+lin father_V = mkV "father" "fathered" "fathered" ;
+lin father_in_law_N = mkN "father-in-law" "fathers-in-law" ;
+lin fatherhood_N = mkN "fatherhood" "fatherhoods" ;
+lin fatherland_N = mkN "fatherland" "fatherlands" ;
+lin fatherless_A = mkAMost "fatherless" "fatherlessly" ;
+lin fatherliness_N = mkN "fatherliness" "fatherlinesses" ;
+lin fatherly_A = mkAMost "fatherly" "fatherlily" ;
+lin fathom_N = mkN "fathom" "fathoms" ;
+lin fathom_fathomed_V = mkV "fathom" "fathomed" "fathomed" ;
+lin fathom_fathommed_V = mkV "fathom" "fathommed" "fathommed" ;
+lin fathomable_A = mkAMost "fathomable" "fathomably" ;
+lin fathomless_A = mkAMost "fathomless" "fathomlessly" ;
+lin fatigability_N = mkN "fatigability" "fatigabilities" ;
+lin fatigue_N = mkN "fatigue" "fatigues" ;
+lin fatigue_V = mkV "fatigue" "fatigued" "fatigued" ;
+lin fatigue_party_N = mkN "fatigue-party" "fatigue-parties" ;
+lin fatigues_N = mkN "fatigues" "fatigueses" ;
+lin fatless_A = mkAMost "fatless" "fatlessly" ;
+lin fatness_N = mkN "fatness" "fatnesses" ;
+lin fatso_N = mkN "fatso" "fatsoes" ;
+lin fatten_fattened_V = mkV "fatten" "fattened" "fattened" ;
+lin fatten_fattenned_V = mkV "fatten" "fattenned" "fattenned" ;
+lin fattish_A = mkAMost "fattish" "fattishly" ;
+lin fattism_N = mkN "fattism" "fattisms" ;
+lin fatty_A = mkA "fatty" "fattier" "fattiest" "fattily" ;
+lin fatuity_N = mkN "fatuity" "fatuities" ;
+lin fatuous_A = mkAMost "fatuous" "fatuously" ;
+lin fatuousness_N = mkN "fatuousness" "fatuousnesses" ;
+lin fatwa_N = mkN "fatwa" "fatwas" ;
+lin fatwah_N = mkN "fatwah" "fatwahs" ;
+lin faubourg_N = mkN "faubourg" "faubourgs" ;
+lin faucal_A = mkAMost "faucal" "faucally" ;
+lin fauces_N = mkN "fauces" "fauceses" ;
+lin faucet_N = mkN "faucet" "faucets" ;
+lin fauld_N = mkN "fauld" "faulds" ;
+lin fault_N = mkN "fault" "faults" ;
+lin fault_V = mkV "fault" "faulted" "faulted" ;
+lin fault_finder_N = mkN "fault-finder" "fault-finders" ;
+lin fault_finding_N = mkN "fault-finding" "fault-findings" ;
+lin faultfinding_N = mkN "faultfinding" "faultfindings" ;
+lin faultless_A = mkAMost "faultless" "faultlessly" ;
+lin faultlessness_N = mkN "faultlessness" "faultlessnesses" ;
+lin faulty_A = mkA "faulty" "faultier" "faultiest" "faultily" ;
+lin faun_N = mkN "faun" "fauns" ;
+lin fauna_N = mkN "fauna" "faunas" ;
+lin fauteuil_N = mkN "fauteuil" "fauteuils" ;
+lin fauvism_N = mkN "fauvism" "fauvisms" ;
+lin faux_pas_N = mkN "faux pas" "faux pas" ;
+lin favism_N = mkN "favism" "favisms" ;
+lin favor_N = mkN "favor" "favors" ;
+lin favor_V = mkV "favor" "favorred" "favorred" ;
+lin favorable_A = mkAMost "favorable" "favorably" ;
+lin favorableness_N = mkN "favorableness" "favorablenesses" ;
+lin favorite_A = mkAMost "favorite" "favoritely" ;
+lin favorite_N = mkN "favorite" "favorites" ;
+lin favoritism_N = mkN "favoritism" "favoritisms" ;
+lin favour_N = mkN "favour" "favours" ;
+lin favour_V = mkV "favour" "favoured" "favoured" ;
+lin favourable_A = mkAMost "favourable" "favourably" ;
+lin favourite_A = mkAMost "favourite" "favouritely" ;
+lin favourite_N = mkN "favourite" "favourites" ;
+lin favouritism_N = mkN "favouritism" "favouritisms" ;
+lin favus_N = mkN "favus" "favuses" ;
+lin fawn_N = mkN "fawn" "fawns" ;
+lin fawn_V = mkV "fawn" "fawned" "fawned" ;
+lin façade_N = mkN "façade" "façades" ;
+lin fealty_N = mkN "fealty" "fealties" ;
+lin fear_N = mkN "fear" "fears" ;
+lin fear_V = mkV "fear" "feared" "feared" ;
+lin fearful_A = mkAMost "fearful" "fearfully" ;
+lin fearfulness_N = mkN "fearfulness" "fearfulnesses" ;
+lin fearless_A = mkAMost "fearless" "fearlessly" ;
+lin fearlessness_N = mkN "fearlessness" "fearlessnesses" ;
+lin fearsome_A = mkAMost "fearsome" "fearsomely" ;
+lin feasibility_N = mkN "feasibility" "feasibilities" ;
+lin feasible_A = mkAMost "feasible" "feasibly" ;
+lin feast_N = mkN "feast" "feasts" ;
+lin feast_V = mkV "feast" "feasted" "feasted" ;
+lin feast_day_N = mkN "feast-day" "feast-days" ;
+lin feasting_N = mkN "feasting" "feastings" ;
+lin feat_N = mkN "feat" "feats" ;
+lin feather_N = mkN "feather" "feathers" ;
+lin feather_V = mkV "feather" "feathered" "feathered" ;
+lin feather_boa_N = mkN "feather-boa" "feather-boas" ;
+lin featherbed_N = mkN "featherbed" "featherbeds" ;
+lin featherbed_V = mkV "featherbed" "featherbedded" "featherbedded" ;
+lin featherbedding_N = mkN "featherbedding" "featherbeddings" ;
+lin featherbrained_A = mkAMost "featherbrained" "featherbrainedly" ;
+lin featheredge_N = mkN "featheredge" "featheredges" ;
+lin featherfoil_N = mkN "featherfoil" "featherfoils" ;
+lin featherlike_A = mkAMost "featherlike" "featherlikely" ;
+lin feathertop_N = mkN "feathertop" "feathertops" ;
+lin featherweight_N = mkN "featherweight" "featherweights" ;
+lin feathery_A = mkAMost "feathery" "featherily" ;
+lin feature_N = mkN "feature" "features" ;
+lin feature_V = mkV "feature" "featured" "featured" ;
+lin featureless_A = mkAMost "featureless" "featurelessly" ;
+lin febrile_A = mkAMost "febrile" "febrilely" ;
+lin feckless_A = mkAMost "feckless" "fecklessly" ;
+lin fecklessness_N = mkN "fecklessness" "fecklessnesses" ;
+lin fecula_N = mkN "fecula" "feculas" ;
+lin feculence_N = mkN "feculence" "feculences" ;
+lin feculent_A = mkAMost "feculent" "feculently" ;
+lin fecund_A = mkAMost "fecund" "fecundly" ;
+lin fecundity_N = mkN "fecundity" "fecundities" ;
+lin fed_N = mkN "fed" "feds" ;
+lin fed_V = mkV "fed" "fedded" "fedded" ;
+lin fedayeen_N = mkN "fedayeen" "fedayeens" ;
+lin fedelline_N = mkN "fedelline" "fedellines" ;
+lin federal_A = mkAMost "federal" "federally" ;
+lin federalism_N = mkN "federalism" "federalisms" ;
+lin federalist_N = mkN "federalist" "federalists" ;
+lin federalization_N = mkN "federalization" "federalizations" ;
+lin federate_A = mkAMost "federate" "federately" ;
+lin federate_V = mkV "federate" "federated" "federated" ;
+lin federation_N = mkN "federation" "federations" ;
+lin fedora_N = mkN "fedora" "fedoras" ;
+lin fee_N = mkN "fee" "fees" ;
+lin fee_V = mkV "fee" "IRREG" "IRREG" ;
+lin feeble_A = mkA "feeble" "feebler" "feeblest" "feebly" ;
+lin feeble_minded_A = mkAMost "feeble-minded" "feeble-mindedly" ;
+lin feeblemindedness_N = mkN "feeblemindedness" "feeblemindednesses" ;
+lin feebleness_N = mkN "feebleness" "feeblenesses" ;
+lin feed_N = mkN "feed" "feeds" ;
+lin feed_V = mkV "feed" "fed" "fed" ;
+lin feedback_N = mkN "feedback" "feedbacks" ;
+lin feeder_N = mkN "feeder" "feeders" ;
+lin feeding_N = mkN "feeding" "feedings" ;
+lin feeding_bottle_N = mkN "feeding-bottle" "feeding-bottles" ;
+lin feedlot_N = mkN "feedlot" "feedlots" ;
+lin feedstock_N = mkN "feedstock" "feedstocks" ;
+lin feel_N = mkN "feel" "feels" ;
+lin feel_feeled_V = mkV "feel" "feeled" "feeled" ;
+lin feel_felt_V = mkV "feel" "felt" "felt" ;
+lin feeler_N = mkN "feeler" "feelers" ;
+lin feeling_N = mkN "feeling" "feelings" ;
+lin feelingly_Adv = mkAdv "feelingly" ;
+lin feelings_N = mkN "feelings" "feelingses" ;
+lin feetfirst_Adv = mkAdv "feetfirst" ;
+lin feign_V = mkV "feign" "feigned" "feigned" ;
+lin feijoa_N = mkN "feijoa" "feijoas" ;
+lin feint_N = mkN "feint" "feints" ;
+lin feint_V = mkV "feint" "feinted" "feinted" ;
+lin feist_N = mkN "feist" "feists" ;
+lin feisty_A = mkA "feisty" "feistier" "feistiest" "feistily" ;
+lin feldspar_N = mkN "feldspar" "feldspars" ;
+lin felicitate_V = mkV "felicitate" "felicitated" "felicitated" ;
+lin felicitation_N = mkN "felicitation" "felicitations" ;
+lin felicitous_A = mkAMost "felicitous" "felicitously" ;
+lin felicity_N = mkN "felicity" "felicities" ;
+lin feline_A = mkAMost "feline" "felinely" ;
+lin feline_N = mkN "feline" "felines" ;
+lin fell_A = mkAMost "fell" "felly" ;
+lin fell_N = mkN "fell" "fells" ;
+lin fell_V = mkV "fell" "felled" "felled" ;
+lin fellah_fellaheen_N = mkN "fellah" "fellaheen" ;
+lin fellah_fellahin_N = mkN "fellah" "fellahin" ;
+lin fellatio_N = mkN "fellatio" "fellatios" ;
+lin felloe_N = mkN "felloe" "felloes" ;
+lin fellow_N = mkN "fellow" "fellows" ;
+lin fellow_feeling_N = mkN "fellow-feeling" "fellow-feelings" ;
+lin fellow_traveller_N = mkN "fellow-traveller" "fellow-travellers" ;
+lin fellowship_N = mkN "fellowship" "fellowships" ;
+lin felon_N = mkN "felon" "felons" ;
+lin felonious_A = mkAMost "felonious" "feloniously" ;
+lin felony_N = mkN "felony" "felonies" ;
+lin felspar_N = mkN "felspar" "felspars" ;
+lin felt_N = mkN "felt" "felts" ;
+lin felted_A = mkAMost "felted" "feltedly" ;
+lin felucca_N = mkN "felucca" "feluccas" ;
+lin felwort_N = mkN "felwort" "felworts" ;
+lin female_A = mkAMost "female" "femalely" ;
+lin female_N = mkN "female" "females" ;
+lin femaleness_N = mkN "femaleness" "femalenesses" ;
+lin feminine_A = mkAMost "feminine" "femininely" ;
+lin feminine_N = mkN "feminine" "feminines" ;
+lin femininity_N = mkN "femininity" "femininities" ;
+lin feminism_N = mkN "feminism" "feminisms" ;
+lin feminist_A = mkAMost "feminist" "feministly" ;
+lin feminist_N = mkN "feminist" "feminists" ;
+lin feminization_N = mkN "feminization" "feminizations" ;
+lin femoral_A = mkAMost "femoral" "femorally" ;
+lin femtochemistry_N = mkN "femtochemistry" "femtochemistries" ;
+lin femtometer_N = mkN "femtometer" "femtometers" ;
+lin femtosecond_N = mkN "femtosecond" "femtoseconds" ;
+lin femtovolt_N = mkN "femtovolt" "femtovolts" ;
+lin femur_N = mkN "femur" "femurs" ;
+lin fen_N = mkN "fen" "fens" ;
+lin fence_N = mkN "fence" "fences" ;
+lin fence_V = mkV "fence" "fenced" "fenced" ;
+lin fencelike_A = mkAMost "fencelike" "fencelikely" ;
+lin fencer_N = mkN "fencer" "fencers" ;
+lin fencing_N = mkN "fencing" "fencings" ;
+lin fend_V = mkV "fend" "fended" "fended" ;
+lin fender_N = mkN "fender" "fenders" ;
+lin fenestra_N = mkN "fenestra" "fenestras" ;
+lin fenestral_A = mkAMost "fenestral" "fenestrally" ;
+lin fenestration_N = mkN "fenestration" "fenestrations" ;
+lin fennel_N = mkN "fennel" "fennels" ;
+lin fenoprofen_N = mkN "fenoprofen" "fenoprofens" ;
+lin fenugreek_N = mkN "fenugreek" "fenugreeks" ;
+lin feoff_N = mkN "feoff" "feoffs" ;
+lin feral_A = mkAMost "feral" "ferally" ;
+lin fergusonite_N = mkN "fergusonite" "fergusonites" ;
+lin feria_N = mkN "feria" "ferias" ;
+lin ferial_A = mkAMost "ferial" "ferially" ;
+lin fermata_N = mkN "fermata" "fermatas" ;
+lin ferment_N = mkN "ferment" "ferments" ;
+lin ferment_V = mkV "ferment" "fermented" "fermented" ;
+lin fermentable_A = mkAMost "fermentable" "fermentably" ;
+lin fermentation_N = mkN "fermentation" "fermentations" ;
+lin fermion_N = mkN "fermion" "fermions" ;
+lin fermium_N = mkN "fermium" "fermiums" ;
+lin fern_N = mkN "fern" "ferns" ;
+lin ferned_A = mkAMost "ferned" "fernedly" ;
+lin fernless_A = mkAMost "fernless" "fernlessly" ;
+lin fernlike_A = mkAMost "fernlike" "fernlikely" ;
+lin ferny_A = mkA "ferny" "fernier" "ferniest" "fernily" ;
+lin ferocious_A = mkAMost "ferocious" "ferociously" ;
+lin ferociousness_N = mkN "ferociousness" "ferociousnesses" ;
+lin ferocity_N = mkN "ferocity" "ferocities" ;
+lin ferret_N = mkN "ferret" "ferrets" ;
+lin ferret_ferreted_V = mkV "ferret" "ferreted" "ferreted" ;
+lin ferret_ferretted_V = mkV "ferret" "ferretted" "ferretted" ;
+lin ferric_A = mkAMost "ferric" "ferricly" ;
+lin ferricyanide_N = mkN "ferricyanide" "ferricyanides" ;
+lin ferrimagnetism_N = mkN "ferrimagnetism" "ferrimagnetisms" ;
+lin ferrite_N = mkN "ferrite" "ferrites" ;
+lin ferritin_N = mkN "ferritin" "ferritins" ;
+lin ferrocerium_N = mkN "ferrocerium" "ferroceriums" ;
+lin ferroconcrete_N = mkN "ferroconcrete" "ferroconcretes" ;
+lin ferrocyanide_N = mkN "ferrocyanide" "ferrocyanides" ;
+lin ferromagnetic_A = mkAMost "ferromagnetic" "ferromagneticly" ;
+lin ferromagnetism_N = mkN "ferromagnetism" "ferromagnetisms" ;
+lin ferrous_A = mkAMost "ferrous" "ferrously" ;
+lin ferrule_N = mkN "ferrule" "ferrules" ;
+lin ferry_N = mkN "ferry" "ferries" ;
+lin ferry_V = mkV "ferry" "ferried" "ferried" ;
+lin ferryboat_N = mkN "ferryboat" "ferryboats" ;
+lin ferryman_N = mkN "ferryman" "ferrymen" ;
+lin fertile_A = mkAMost "fertile" "fertilely" ;
+lin fertility_N = mkN "fertility" "fertilities" ;
+lin fertilizable_A = mkAMost "fertilizable" "fertilizably" ;
+lin fertilization_N = mkN "fertilization" "fertilizations" ;
+lin fertilize_V = mkV "fertilize" "fertilized" "fertilized" ;
+lin fertilizer_N = mkN "fertilizer" "fertilizers" ;
+lin ferule_N = mkN "ferule" "ferules" ;
+lin fervency_N = mkN "fervency" "fervencies" ;
+lin fervent_A = mkAMost "fervent" "fervently" ;
+lin fervid_A = mkAMost "fervid" "fervidly" ;
+lin fervour_N = mkN "fervour" "fervours" ;
+lin fescue_N = mkN "fescue" "fescues" ;
+lin fess_V = mkV "fess" "fessed" "fessed" ;
+lin fesse_N = mkN "fesse" "fesses" ;
+lin festal_A = mkAMost "festal" "festally" ;
+lin fester_N = mkN "fester" "festers" ;
+lin fester_V = mkV "fester" "festered" "festered" ;
+lin festering_N = mkN "festering" "festerings" ;
+lin festination_N = mkN "festination" "festinations" ;
+lin festival_N = mkN "festival" "festivals" ;
+lin festive_A = mkAMost "festive" "festively" ;
+lin festivity_N = mkN "festivity" "festivities" ;
+lin festoon_N = mkN "festoon" "festoons" ;
+lin festoon_V = mkV "festoon" "festooned" "festooned" ;
+lin festschrift_N = mkN "festschrift" "festschrifts" ;
+lin fetal_A = mkAMost "fetal" "fetally" ;
+lin fetch_N = mkN "fetch" "fetches" ;
+lin fetch_V = mkV "fetch" "fetched" "fetched" ;
+lin fetching_A = mkAMost "fetching" "fetchingly" ;
+lin fete_day_N = mkN "fete-day" "fete-days" ;
+lin feterita_N = mkN "feterita" "feteritas" ;
+lin fetid_A = mkAMost "fetid" "fetidly" ;
+lin fetish_N = mkN "fetish" "fetishes" ;
+lin fetishism_N = mkN "fetishism" "fetishisms" ;
+lin fetishist_N = mkN "fetishist" "fetishists" ;
+lin fetlock_N = mkN "fetlock" "fetlocks" ;
+lin fetology_N = mkN "fetology" "fetologies" ;
+lin fetometry_N = mkN "fetometry" "fetometries" ;
+lin fetoprotein_N = mkN "fetoprotein" "fetoproteins" ;
+lin fetoscope_N = mkN "fetoscope" "fetoscopes" ;
+lin fetoscopy_N = mkN "fetoscopy" "fetoscopies" ;
+lin fetter_N = mkN "fetter" "fetters" ;
+lin fetter_V = mkV "fetter" "fettered" "fettered" ;
+lin fetterbush_N = mkN "fetterbush" "fetterbushes" ;
+lin fettle_N = mkN "fettle" "fettles" ;
+lin fettuccine_N = mkN "fettuccine" "fettuccines" ;
+lin fetus_N = mkN "fetus" "fetuses" ;
+lin feud_N = mkN "feud" "feuds" ;
+lin feudal_A = mkAMost "feudal" "feudally" ;
+lin feudalism_N = mkN "feudalism" "feudalisms" ;
+lin feudatory_A = mkAMost "feudatory" "feudatorily" ;
+lin feudatory_N = mkN "feudatory" "feudatories" ;
+lin feude_V = mkV "feude" "feuded" "feuded" ;
+lin fever_N = mkN "fever" "fevers" ;
+lin fevered_A = mkAMost "fevered" "feveredly" ;
+lin feverfew_N = mkN "feverfew" "feverfews" ;
+lin feverish_A = mkAMost "feverish" "feverishly" ;
+lin feverroot_N = mkN "feverroot" "feverroots" ;
+lin few_A = mkA "few" "fewer" "fewest" "fewly" ;
+lin few_N = mkN "few" "fews" ;
+lin fewer_A = mkAMost "fewer" "fewerly" ;
+lin fewness_N = mkN "fewness" "fewnesses" ;
+lin fey_A = mkAMost "fey" "feily" ;
+lin fez_N = mkN "fez" "fezes" ;
+lin fiance_N = mkN "fiance" "fiances" ;
+lin fiancee_N = mkN "fiancee" "fiancees" ;
+lin fiancé_N = mkN "fiancé" "fiancés" ;
+lin fiancée_N = mkN "fiancée" "fiancées" ;
+lin fiasco_N = mkN "fiasco" "fiascos" ;
+lin fiat_N = mkN "fiat" "fiats" ;
+lin fib_N = mkN "fib" "fibs" ;
+lin fib_V = mkV "fib" "fibbed" "fibbed" ;
+lin fibber_N = mkN "fibber" "fibbers" ;
+lin fibbing_N = mkN "fibbing" "fibbings" ;
+lin fiber_N = mkN "fiber" "fibers" ;
+lin fiberboard_N = mkN "fiberboard" "fiberboards" ;
+lin fiberglass_N = mkN "fiberglass" "fiberglasses" ;
+lin fiberscope_N = mkN "fiberscope" "fiberscopes" ;
+lin fibre_N = mkN "fibre" "fibres" ;
+lin fibreboard_N = mkN "fibreboard" "fibreboards" ;
+lin fibreglass_N = mkN "fibreglass" "fibreglasses" ;
+lin fibril_N = mkN "fibril" "fibrils" ;
+lin fibrillation_N = mkN "fibrillation" "fibrillations" ;
+lin fibrillose_A = mkAMost "fibrillose" "fibrillosely" ;
+lin fibrin_N = mkN "fibrin" "fibrins" ;
+lin fibrinase_N = mkN "fibrinase" "fibrinases" ;
+lin fibrinogen_N = mkN "fibrinogen" "fibrinogens" ;
+lin fibrinolysis_N = mkN "fibrinolysis" "fibrinolysises" ;
+lin fibrinopeptide_N = mkN "fibrinopeptide" "fibrinopeptides" ;
+lin fibrinous_A = mkAMost "fibrinous" "fibrinously" ;
+lin fibroadenoma_N = mkN "fibroadenoma" "fibroadenomas" ;
+lin fibroblast_N = mkN "fibroblast" "fibroblasts" ;
+lin fibrocalcific_A = mkAMost "fibrocalcific" "fibrocalcificly" ;
+lin fibrocartilage_N = mkN "fibrocartilage" "fibrocartilages" ;
+lin fibrocartilaginous_A = mkAMost "fibrocartilaginous" "fibrocartilaginously" ;
+lin fibroma_N = mkN "fibroma" "fibromas" ;
+lin fibromyositis_N = mkN "fibromyositis" "fibromyositises" ;
+lin fibrosis_N = mkN "fibrosis" "fibrosises" ;
+lin fibrositis_N = mkN "fibrositis" "fibrositises" ;
+lin fibrosity_N = mkN "fibrosity" "fibrosities" ;
+lin fibrous_A = mkAMost "fibrous" "fibrously" ;
+lin fibula_N = mkN "fibula" "fibulas" ;
+lin fichu_N = mkN "fichu" "fichus" ;
+lin fickle_A = mkAMost "fickle" "ficklely" ;
+lin fickleness_N = mkN "fickleness" "ficklenesses" ;
+lin fictile_A = mkAMost "fictile" "fictilely" ;
+lin fiction_N = mkN "fiction" "fictions" ;
+lin fictional_A = mkAMost "fictional" "fictionally" ;
+lin fictionalization_N = mkN "fictionalization" "fictionalizations" ;
+lin fictitious_A = mkAMost "fictitious" "fictitiously" ;
+lin fictive_A = mkAMost "fictive" "fictively" ;
+lin fiddle_N = mkN "fiddle" "fiddles" ;
+lin fiddle_V = mkV "fiddle" "fiddled" "fiddled" ;
+lin fiddleneck_N = mkN "fiddleneck" "fiddlenecks" ;
+lin fiddler_N = mkN "fiddler" "fiddlers" ;
+lin fiddlestick_N = mkN "fiddlestick" "fiddlesticks" ;
+lin fidelity_N = mkN "fidelity" "fidelities" ;
+lin fidget_N = mkN "fidget" "fidgets" ;
+lin fidget_V = mkV "fidget" "fidgeted" "fidgeted" ;
+lin fidgety_A = mkAMost "fidgety" "fidgetily" ;
+lin fiducial_A = mkAMost "fiducial" "fiducially" ;
+lin fiduciary_A = mkAMost "fiduciary" "fiduciarily" ;
+lin fiduciary_N = mkN "fiduciary" "fiduciaries" ;
+lin fief_N = mkN "fief" "fiefs" ;
+lin fiefdom_N = mkN "fiefdom" "fiefdoms" ;
+lin field_N = mkN "field" "fields" ;
+lin field_V = mkV "field" "fielded" "fielded" ;
+lin field_hospital_N = mkN "field-hospital" "field-hospitals" ;
+lin field_officer_N = mkN "field-officer" "field-officers" ;
+lin fielder_N = mkN "fielder" "fielders" ;
+lin fieldfare_N = mkN "fieldfare" "fieldfares" ;
+lin fielding_N = mkN "fielding" "fieldings" ;
+lin fieldsman_N = mkN "fieldsman" "fieldsmen" ;
+lin fieldstone_N = mkN "fieldstone" "fieldstones" ;
+lin fieldwork_N = mkN "fieldwork" "fieldworks" ;
+lin fieldworker_N = mkN "fieldworker" "fieldworkers" ;
+lin fiend_N = mkN "fiend" "fiends" ;
+lin fiendish_A = mkAMost "fiendish" "fiendishly" ;
+lin fierce_A = mkA "fierce" "fiercer" "fiercest" "fiercely" ;
+lin fierceness_N = mkN "fierceness" "fiercenesses" ;
+lin fieriness_N = mkN "fieriness" "fierinesses" ;
+lin fiery_A = mkAMost "fiery" "fierily" ;
+lin fiesta_N = mkN "fiesta" "fiestas" ;
+lin fife_N = mkN "fife" "fifes" ;
+lin fig_N = mkN "fig" "figs" ;
+lin fig_leaf_N = mkN "fig-leaf" "fig-leaves" ;
+lin fight_N = mkN "fight" "fights" ;
+lin fight_V = mkV "fight" "fought" "fought" ;
+lin fighter_N = mkN "fighter" "fighters" ;
+lin fighting_N = mkN "fighting" "fightings" ;
+lin figment_N = mkN "figment" "figments" ;
+lin figural_A = mkAMost "figural" "figurally" ;
+lin figuration_N = mkN "figuration" "figurations" ;
+lin figurative_A = mkAMost "figurative" "figuratively" ;
+lin figure_N = mkN "figure" "figures" ;
+lin figure_V = mkV "figure" "figured" "figured" ;
+lin figurehead_N = mkN "figurehead" "figureheads" ;
+lin figurine_N = mkN "figurine" "figurines" ;
+lin figwort_N = mkN "figwort" "figworts" ;
+lin fijian_A = mkAMost "fijian" "fijianly" ;
+lin fijian_N = mkN "fijian" "fijians" ;
+lin filaggrin_N = mkN "filaggrin" "filaggrins" ;
+lin filament_N = mkN "filament" "filaments" ;
+lin filamentous_A = mkAMost "filamentous" "filamentously" ;
+lin filar_A = mkAMost "filar" "filarly" ;
+lin filaria_N = mkN "filaria" "filarias" ;
+lin filarial_A = mkAMost "filarial" "filarially" ;
+lin filariasis_N = mkN "filariasis" "filariasises" ;
+lin filariid_A = mkAMost "filariid" "filariidly" ;
+lin filature_N = mkN "filature" "filatures" ;
+lin filbert_N = mkN "filbert" "filberts" ;
+lin filch_V = mkV "filch" "filched" "filched" ;
+lin file_N = mkN "file" "files" ;
+lin file_V = mkV "file" "filed" "filed" ;
+lin filefish_N = mkN "filefish" "filefishes" ;
+lin filename_N = mkN "filename" "filenames" ;
+lin filer_N = mkN "filer" "filers" ;
+lin filet_N = mkN "filet" "filets" ;
+lin filial_A = mkAMost "filial" "filially" ;
+lin filibuster_N = mkN "filibuster" "filibusters" ;
+lin filibuster_V = mkV "filibuster" "filibustered" "filibustered" ;
+lin filicide_N = mkN "filicide" "filicides" ;
+lin filigree_N = mkN "filigree" "filigrees" ;
+lin filing_N = mkN "filing" "filings" ;
+lin filipino_A = mkAMost "filipino" "filipinoly" ;
+lin filipino_N = mkN "filipino" "filipinos" ;
+lin fill_N = mkN "fill" "fills" ;
+lin fill_V = mkV "fill" "filled" "filled" ;
+lin filler_N = mkN "filler" "fillers" ;
+lin fillet_N = mkN "fillet" "fillets" ;
+lin fillet_V = mkV "fillet" "filleted" "filleted" ;
+lin filling_N = mkN "filling" "fillings" ;
+lin fillip_N = mkN "fillip" "fillips" ;
+lin filly_N = mkN "filly" "fillies" ;
+lin film_N = mkN "film" "films" ;
+lin film_V = mkV "film" "filmed" "filmed" ;
+lin film_star_N = mkN "film-star" "film-stars" ;
+lin filmable_A = mkAMost "filmable" "filmably" ;
+lin filmdom_N = mkN "filmdom" "filmdoms" ;
+lin filming_N = mkN "filming" "filmings" ;
+lin filmy_A = mkA "filmy" "filmier" "filmiest" "filmily" ;
+lin filovirus_N = mkN "filovirus" "filoviruses" ;
+lin fils_N = mkN "fils" "filses" ;
+lin filter_N = mkN "filter" "filters" ;
+lin filter_V = mkV "filter" "filtered" "filtered" ;
+lin filtertipped_A = mkAMost "filtertipped" "filtertippedly" ;
+lin filth_N = mkN "filth" "filths" ;
+lin filthiness_N = mkN "filthiness" "filthinesses" ;
+lin filthy_A = mkA "filthy" "filthier" "filthiest" "filthily" ;
+lin filtrate_N = mkN "filtrate" "filtrates" ;
+lin filtrate_V = mkV "filtrate" "filtrated" "filtrated" ;
+lin filtration_N = mkN "filtration" "filtrations" ;
+lin fimbria_N = mkN "fimbria" "fimbrias" ;
+lin fimbriate_A = mkAMost "fimbriate" "fimbriately" ;
+lin fin_N = mkN "fin" "fins" ;
+lin finable_A = mkAMost "finable" "finably" ;
+lin finagle_V = mkV "finagle" "finagled" "finagled" ;
+lin finagler_N = mkN "finagler" "finaglers" ;
+lin final_A = mkAMost "final" "finally" ;
+lin final_N = mkN "final" "finals" ;
+lin finale_N = mkN "finale" "finales" ;
+lin finalist_N = mkN "finalist" "finalists" ;
+lin finality_N = mkN "finality" "finalities" ;
+lin finalization_N = mkN "finalization" "finalizations" ;
+lin finalize_V = mkV "finalize" "finalized" "finalized" ;
+lin finance_N = mkN "finance" "finances" ;
+lin finance_V = mkV "finance" "financed" "financed" ;
+lin financial_A = mkAMost "financial" "financially" ;
+lin financier_N = mkN "financier" "financiers" ;
+lin financing_N = mkN "financing" "financings" ;
+lin finback_N = mkN "finback" "finbacks" ;
+lin finch_N = mkN "finch" "finches" ;
+lin find_N = mkN "find" "finds" ;
+lin find_V = mkV "find" "found" "found" ;
+lin finder_N = mkN "finder" "finders" ;
+lin finding_N = mkN "finding" "findings" ;
+lin findings_N = mkN "findings" "findingses" ;
+lin fine_A = mkA "fine" "finer" "finest" "finely" ;
+lin fine_Adv = mkAdv "fine" ;
+lin fine_N = mkN "fine" "fines" ;
+lin fine_V = mkV "fine" "fined" "fined" ;
+lin fine_tooth_A = mkAMost "fine-tooth" "fine-toothly" ;
+lin fineable_A = mkAMost "fineable" "fineably" ;
+lin fineness_N = mkN "fineness" "finenesses" ;
+lin finer_A = mkAMost "finer" "finerly" ;
+lin finery_N = mkN "finery" "fineries" ;
+lin finespun_A = mkAMost "finespun" "finespunly" ;
+lin finesse_N = mkN "finesse" "finesses" ;
+lin finesse_V = mkV "finesse" "finessed" "finessed" ;
+lin finger_N = mkN "finger" "fingers" ;
+lin finger_V = mkV "finger" "fingered" "fingered" ;
+lin finger_alphabet_N = mkN "finger-alphabet" "finger-alphabets" ;
+lin finger_bowl_N = mkN "finger-bowl" "finger-bowls" ;
+lin finger_plate_N = mkN "finger-plate" "finger-plates" ;
+lin finger_post_N = mkN "finger-post" "finger-posts" ;
+lin fingerboard_N = mkN "fingerboard" "fingerboards" ;
+lin fingering_N = mkN "fingering" "fingerings" ;
+lin fingerless_A = mkAMost "fingerless" "fingerlessly" ;
+lin fingerling_N = mkN "fingerling" "fingerlings" ;
+lin fingermark_N = mkN "fingermark" "fingermarks" ;
+lin fingernail_N = mkN "fingernail" "fingernails" ;
+lin fingerpost_N = mkN "fingerpost" "fingerposts" ;
+lin fingerprint_N = mkN "fingerprint" "fingerprints" ;
+lin fingerprinting_N = mkN "fingerprinting" "fingerprintings" ;
+lin fingerstall_N = mkN "fingerstall" "fingerstalls" ;
+lin fingertip_N = mkN "fingertip" "fingertips" ;
+lin finial_N = mkN "finial" "finials" ;
+lin finical_A = mkAMost "finical" "finically" ;
+lin finicky_A = mkAMost "finicky" "finickily" ;
+lin finis_N = mkN "finis" "fines" ;
+lin finish_N = mkN "finish" "finishes" ;
+lin finish_V = mkV "finish" "finished" "finished" ;
+lin finisher_N = mkN "finisher" "finishers" ;
+lin finite_A = mkAMost "finite" "finitely" ;
+lin finiteness_N = mkN "finiteness" "finitenesses" ;
+lin fink_N = mkN "fink" "finks" ;
+lin fink_V = mkV "fink" "finked" "finked" ;
+lin finn_N = mkN "finn" "finns" ;
+lin finnan_N = mkN "finnan" "finnans" ;
+lin finnan_haddie_N = mkN "finnan haddie" "finnan haddies" ;
+lin finnan_haddock_N = mkN "finnan haddock" "finnan haddocks" ;
+lin fiord_N = mkN "fiord" "fiords" ;
+lin fipple_N = mkN "fipple" "fipples" ;
+lin fir_N = mkN "fir" "firs" ;
+lin fir_cone_N = mkN "fir-cone" "fir-cones" ;
+lin fire_N = mkN "fire" "fires" ;
+lin fire_V = mkV "fire" "fired" "fired" ;
+lin fire_alarm_N = mkN "fire-alarm" "fire-alarms" ;
+lin fire_brigade_N = mkN "fire-brigade" "fire-brigades" ;
+lin fire_control_N = mkN "fire-control" "fire-controls" ;
+lin fire_eater_N = mkN "fire-eater" "fire-eaters" ;
+lin fire_engine_N = mkN "fire-engine" "fire-engines" ;
+lin fire_escape_N = mkN "fire-escape" "fire-escapes" ;
+lin fire_extinguisher_N = mkN "fire-extinguisher" "fire-extinguishers" ;
+lin fire_fighter_N = mkN "fire-fighter" "fire-fighters" ;
+lin fire_hose_N = mkN "fire-hose" "fire-hoses" ;
+lin fire_power_N = mkN "fire-power" "fire-powers" ;
+lin fire_raising_N = mkN "fire-raising" "fire-raisings" ;
+lin fire_walker_N = mkN "fire-walker" "fire-walkers" ;
+lin fire_walking_N = mkN "fire-walking" "fire-walkings" ;
+lin fire_watcher_N = mkN "fire-watcher" "fire-watchers" ;
+lin fire_watching_N = mkN "fire-watching" "fire-watchings" ;
+lin firearm_N = mkN "firearm" "firearms" ;
+lin fireball_N = mkN "fireball" "fireballs" ;
+lin firebase_N = mkN "firebase" "firebases" ;
+lin firebird_N = mkN "firebird" "firebirds" ;
+lin fireboat_N = mkN "fireboat" "fireboats" ;
+lin firebomb_N = mkN "firebomb" "firebombs" ;
+lin firebox_N = mkN "firebox" "fireboxes" ;
+lin firebrand_N = mkN "firebrand" "firebrands" ;
+lin firebrat_N = mkN "firebrat" "firebrats" ;
+lin firebreak_N = mkN "firebreak" "firebreaks" ;
+lin firebrick_N = mkN "firebrick" "firebricks" ;
+lin firebug_N = mkN "firebug" "firebugs" ;
+lin fireclay_N = mkN "fireclay" "fireclays" ;
+lin firecracker_N = mkN "firecracker" "firecrackers" ;
+lin firedamp_N = mkN "firedamp" "firedamps" ;
+lin firedog_N = mkN "firedog" "firedogs" ;
+lin firefly_N = mkN "firefly" "fireflies" ;
+lin fireguard_N = mkN "fireguard" "fireguards" ;
+lin firelight_N = mkN "firelight" "firelights" ;
+lin firelighter_N = mkN "firelighter" "firelighters" ;
+lin fireman_N = mkN "fireman" "firemen" ;
+lin fireplace_N = mkN "fireplace" "fireplaces" ;
+lin fireplug_N = mkN "fireplug" "fireplugs" ;
+lin firepower_N = mkN "firepower" "firepowers" ;
+lin fireproof_A = mkAMost "fireproof" "fireproofly" ;
+lin fireside_N = mkN "fireside" "firesides" ;
+lin firestone_N = mkN "firestone" "firestones" ;
+lin firestorm_N = mkN "firestorm" "firestorms" ;
+lin firetrap_N = mkN "firetrap" "firetraps" ;
+lin firewall_N = mkN "firewall" "firewalls" ;
+lin firewater_N = mkN "firewater" "firewaters" ;
+lin fireweed_N = mkN "fireweed" "fireweeds" ;
+lin firewood_N = mkN "firewood" "firewoods" ;
+lin firework_N = mkN "firework" "fireworks" ;
+lin firing_line_N = mkN "firing-line" "firing-lines" ;
+lin firing_party_N = mkN "firing-party" "firing-parties" ;
+lin firing_squad_N = mkN "firing-squad" "firing-squads" ;
+lin firkin_N = mkN "firkin" "firkins" ;
+lin firm_A = mkA "firm" "firmer" "firmest" "firmly" ;
+lin firm_Adv = mkAdv "firm" ;
+lin firm_N = mkN "firm" "firms" ;
+lin firm_V = mkV "firm" "firmed" "firmed" ;
+lin firmament_N = mkN "firmament" "firmaments" ;
+lin firmamental_A = mkAMost "firmamental" "firmamentally" ;
+lin firmness_N = mkN "firmness" "firmnesses" ;
+lin firmware_N = mkN "firmware" "firmwares" ;
+lin first_class_A = mkAMost "first-class" "first-classly" ;
+lin first_class_Adv = mkAdv "first-class" ;
+lin first_hand_A = mkAMost "first-hand" "first-handly" ;
+lin first_hand_Adv = mkAdv "first-hand" ;
+lin first_nighter_N = mkN "first-nighter" "first-nighters" ;
+lin first_rate_A = mkAMost "first-rate" "first-rate" ;
+lin firstborn_A = mkAMost "firstborn" "firstbornly" ;
+lin firstborn_N = mkN "firstborn" "firstborns" ;
+lin firsthand_A = mkAMost "firsthand" "firsthandly" ;
+lin firsthand_Adv = mkAdv "firsthand" ;
+lin firth_N = mkN "firth" "firths" ;
+lin fisc_N = mkN "fisc" "fiscs" ;
+lin fiscal_A = mkAMost "fiscal" "fiscally" ;
+lin fish_N = mkN "fish" "fish" ;
+lin fish_V = mkV "fish" "fished" "fished" ;
+lin fish_hook_N = mkN "fish-hook" "fish-hooks" ;
+lin fish_knife_N = mkN "fish-knife" "fish-knives" ;
+lin fish_slice_N = mkN "fish-slice" "fish-slices" ;
+lin fishball_N = mkN "fishball" "fishballs" ;
+lin fishbone_N = mkN "fishbone" "fishbones" ;
+lin fishbowl_N = mkN "fishbowl" "fishbowls" ;
+lin fishcake_N = mkN "fishcake" "fishcakes" ;
+lin fisher_N = mkN "fisher" "fishers" ;
+lin fisherman_N = mkN "fisherman" "fishermen" ;
+lin fishery_N = mkN "fishery" "fisheries" ;
+lin fisheye_A = mkAMost "fisheye" "fisheyely" ;
+lin fishhook_N = mkN "fishhook" "fishhooks" ;
+lin fishing_N = mkN "fishing" "fishings" ;
+lin fishing_line_N = mkN "fishing-line" "fishing-lines" ;
+lin fishing_rod_N = mkN "fishing-rod" "fishing-rods" ;
+lin fishing_tackle_N = mkN "fishing-tackle" "fishing-tackles" ;
+lin fishmonger_N = mkN "fishmonger" "fishmongers" ;
+lin fishnet_N = mkN "fishnet" "fishnets" ;
+lin fishpaste_N = mkN "fishpaste" "fishpastes" ;
+lin fishplate_N = mkN "fishplate" "fishplates" ;
+lin fishpond_N = mkN "fishpond" "fishponds" ;
+lin fishwife_N = mkN "fishwife" "fishwives" ;
+lin fishy_A = mkA "fishy" "fishier" "fishiest" "fishily" ;
+lin fissile_A = mkAMost "fissile" "fissilely" ;
+lin fission_N = mkN "fission" "fissions" ;
+lin fissionable_A = mkAMost "fissionable" "fissionably" ;
+lin fissiparity_N = mkN "fissiparity" "fissiparities" ;
+lin fissiparous_A = mkAMost "fissiparous" "fissiparously" ;
+lin fissure_N = mkN "fissure" "fissures" ;
+lin fist_N = mkN "fist" "fists" ;
+lin fistfight_N = mkN "fistfight" "fistfights" ;
+lin fistmele_N = mkN "fistmele" "fistmeles" ;
+lin fistula_N = mkN "fistula" "fistulas" ;
+lin fistular_A = mkAMost "fistular" "fistularly" ;
+lin fistulous_A = mkAMost "fistulous" "fistulously" ;
+lin fit_A = mkA "fit" "fitter" "fittest" "fitly" ;
+lin fit_N = mkN "fit" "fits" ;
+lin fit_fit_V = mkV "fit" "fit" "fit" ;
+lin fit_fitted_V = mkV "fit" "fitted" "fitted" ;
+lin fitful_A = mkAMost "fitful" "fitfully" ;
+lin fitfulness_N = mkN "fitfulness" "fitfulnesses" ;
+lin fitment_N = mkN "fitment" "fitments" ;
+lin fitness_N = mkN "fitness" "fitnesses" ;
+lin fitter_A = mkAMost "fitter" "fitterly" ;
+lin fitter_N = mkN "fitter" "fitters" ;
+lin fitting_A = mkAMost "fitting" "fittingly" ;
+lin fitting_N = mkN "fitting" "fittings" ;
+lin fivefold_A = mkAMost "fivefold" "fivefoldly" ;
+lin fivepence_N = mkN "fivepence" "fivepences" ;
+lin fivepenny_A = mkAMost "fivepenny" "fivepennily" ;
+lin fiver_N = mkN "fiver" "fivers" ;
+lin fives_N = mkN "fives" "fives" ;
+lin fix_N = mkN "fix" "fixes" ;
+lin fix_V = mkV "fix" "fixed" "fixed" ;
+lin fixate_V = mkV "fixate" "fixated" "fixated" ;
+lin fixation_N = mkN "fixation" "fixations" ;
+lin fixative_N = mkN "fixative" "fixatives" ;
+lin fixedly_Adv = mkAdv "fixedly" ;
+lin fixedness_N = mkN "fixedness" "fixednesses" ;
+lin fixer_N = mkN "fixer" "fixers" ;
+lin fixings_N = mkN "fixings" "fixingses" ;
+lin fixture_N = mkN "fixture" "fixtures" ;
+lin fizgig_N = mkN "fizgig" "fizgigs" ;
+lin fizz_N = mkN "fizz" "fizzes" ;
+lin fizz_V = mkV "fizz" "fizzed" "fizzed" ;
+lin fizzle_V = mkV "fizzle" "fizzled" "fizzled" ;
+lin fizzy_A = mkA "fizzy" "fizzier" "fizziest" "fizzily" ;
+lin fjord_N = mkN "fjord" "fjords" ;
+lin flab_N = mkN "flab" "flabs" ;
+lin flabbergast_V = mkV "flabbergast" "flabbergasted" "flabbergasted" ;
+lin flabbiness_N = mkN "flabbiness" "flabbinesses" ;
+lin flabby_A = mkA "flabby" "flabbier" "flabbiest" "flabbily" ;
+lin flaccid_A = mkAMost "flaccid" "flaccidly" ;
+lin flaccidity_N = mkN "flaccidity" "flaccidities" ;
+lin flag_N = mkN "flag" "flags" ;
+lin flag_V = mkV "flag" "flagged" "flagged" ;
+lin flag_captain_N = mkN "flag-captain" "flag-captains" ;
+lin flag_day_N = mkN "flag-day" "flag-days" ;
+lin flagellant_N = mkN "flagellant" "flagellants" ;
+lin flagellate_A = mkAMost "flagellate" "flagellately" ;
+lin flagellate_N = mkN "flagellate" "flagellates" ;
+lin flagellate_V = mkV "flagellate" "flagellated" "flagellated" ;
+lin flagellation_N = mkN "flagellation" "flagellations" ;
+lin flagellum_N = mkN "flagellum" "flagellums" ;
+lin flageolet_N = mkN "flageolet" "flageolets" ;
+lin flagfish_N = mkN "flagfish" "flagfishes" ;
+lin flagging_N = mkN "flagging" "flaggings" ;
+lin flagitious_A = mkAMost "flagitious" "flagitiously" ;
+lin flagon_N = mkN "flagon" "flagons" ;
+lin flagpole_N = mkN "flagpole" "flagpoles" ;
+lin flagrant_A = mkAMost "flagrant" "flagrantly" ;
+lin flagship_N = mkN "flagship" "flagships" ;
+lin flagstaff_N = mkN "flagstaff" "flagstaffs" ;
+lin flagstone_N = mkN "flagstone" "flagstones" ;
+lin flail_N = mkN "flail" "flails" ;
+lin flail_V = mkV "flail" "flailed" "flailed" ;
+lin flair_N = mkN "flair" "flairs" ;
+lin flak_N = mkN "flak" "flaks" ;
+lin flake_N = mkN "flake" "flakes" ;
+lin flake_V = mkV "flake" "flaked" "flaked" ;
+lin flakiness_N = mkN "flakiness" "flakinesses" ;
+lin flaky_A = mkA "flaky" "flakier" "flakiest" "flakily" ;
+lin flambeau_N = mkN "flambeau" "flambeaus" ;
+lin flamboyance_N = mkN "flamboyance" "flamboyances" ;
+lin flamboyant_A = mkAMost "flamboyant" "flamboyantly" ;
+lin flame_N = mkN "flame" "flames" ;
+lin flame_V = mkV "flame" "flamed" "flamed" ;
+lin flamen_N = mkN "flamen" "flamens" ;
+lin flamenco_N = mkN "flamenco" "flamencoes" ;
+lin flameproof_A = mkAMost "flameproof" "flameproofly" ;
+lin flamethrower_N = mkN "flamethrower" "flamethrowers" ;
+lin flamingo_N = mkN "flamingo" "flamingos" ;
+lin flammability_N = mkN "flammability" "flammabilities" ;
+lin flammable_A = mkAMost "flammable" "flammably" ;
+lin flan_N = mkN "flan" "flans" ;
+lin flange_N = mkN "flange" "flanges" ;
+lin flank_N = mkN "flank" "flanks" ;
+lin flank_V = mkV "flank" "flanked" "flanked" ;
+lin flanker_N = mkN "flanker" "flankers" ;
+lin flannel_N = mkN "flannel" "flannels" ;
+lin flannelbush_N = mkN "flannelbush" "flannelbushes" ;
+lin flannelette_N = mkN "flannelette" "flannelettes" ;
+lin flap_N = mkN "flap" "flaps" ;
+lin flap_V = mkV "flap" "flapped" "flapped" ;
+lin flapjack_N = mkN "flapjack" "flapjacks" ;
+lin flapper_N = mkN "flapper" "flappers" ;
+lin flare_N = mkN "flare" "flares" ;
+lin flare_V = mkV "flare" "flared" "flared" ;
+lin flare_path_N = mkN "flare-path" "flare-paths" ;
+lin flare_up_N = mkN "flare-up" "flare-ups" ;
+lin flash_N = mkN "flash" "flashes" ;
+lin flash_V = mkV "flash" "flashed" "flashed" ;
+lin flashback_N = mkN "flashback" "flashbacks" ;
+lin flashboard_N = mkN "flashboard" "flashboards" ;
+lin flashbulb_N = mkN "flashbulb" "flashbulbs" ;
+lin flasher_N = mkN "flasher" "flashers" ;
+lin flashgun_N = mkN "flashgun" "flashguns" ;
+lin flashiness_N = mkN "flashiness" "flashinesses" ;
+lin flashing_N = mkN "flashing" "flashings" ;
+lin flashlight_N = mkN "flashlight" "flashlights" ;
+lin flashover_N = mkN "flashover" "flashovers" ;
+lin flashpoint_N = mkN "flashpoint" "flashpoints" ;
+lin flashy_A = mkA "flashy" "flashier" "flashiest" "flashily" ;
+lin flask_N = mkN "flask" "flasks" ;
+lin flat_A = mkA "flat" "flatter" "flattest" "flatly" ;
+lin flat_Adv = mkAdv "flat" ;
+lin flat_N = mkN "flat" "flats" ;
+lin flat_bottomed_A = mkAMost "flat-bottomed" "flat-bottomedly" ;
+lin flat_car_N = mkN "flat-car" "flat-cars" ;
+lin flat_footed_A = mkAMost "flat-footed" "flat-footedly" ;
+lin flat_iron_N = mkN "flat-iron" "flat-irons" ;
+lin flatbed_N = mkN "flatbed" "flatbeds" ;
+lin flatbottom_A = mkAMost "flatbottom" "flatbottomly" ;
+lin flatbread_N = mkN "flatbread" "flatbreads" ;
+lin flatbrod_N = mkN "flatbrod" "flatbrods" ;
+lin flatcar_N = mkN "flatcar" "flatcars" ;
+lin flatfish_N = mkN "flatfish" "flatfish" ;
+lin flatfoot_N = mkN "flatfoot" "flatfoots" ;
+lin flathead_N = mkN "flathead" "flatheads" ;
+lin flatiron_N = mkN "flatiron" "flatirons" ;
+lin flatlet_N = mkN "flatlet" "flatlets" ;
+lin flatmate_N = mkN "flatmate" "flatmates" ;
+lin flatness_N = mkN "flatness" "flatnesses" ;
+lin flats_N = mkN "flats" "flatses" ;
+lin flatten_V = mkV "flatten" "flattened" "flattened" ;
+lin flatter_V = mkV "flatter" "flattered" "flattered" ;
+lin flatterer_N = mkN "flatterer" "flatterers" ;
+lin flattering_A = mkAMost "flattering" "flatteringly" ;
+lin flattery_N = mkN "flattery" "flatteries" ;
+lin flattop_N = mkN "flattop" "flattops" ;
+lin flatulence_N = mkN "flatulence" "flatulences" ;
+lin flatulent_A = mkAMost "flatulent" "flatulently" ;
+lin flatware_N = mkN "flatware" "flatwares" ;
+lin flatwork_N = mkN "flatwork" "flatworks" ;
+lin flatworm_N = mkN "flatworm" "flatworms" ;
+lin flaunt_N = mkN "flaunt" "flaunts" ;
+lin flaunt_V = mkV "flaunt" "flaunted" "flaunted" ;
+lin flaunty_A = mkA "flaunty" "flauntier" "flauntiest" "flauntily" ;
+lin flautist_N = mkN "flautist" "flautists" ;
+lin flavin_N = mkN "flavin" "flavins" ;
+lin flavivirus_N = mkN "flavivirus" "flaviviruses" ;
+lin flavone_N = mkN "flavone" "flavones" ;
+lin flavonoid_N = mkN "flavonoid" "flavonoids" ;
+lin flavor_N = mkN "flavor" "flavors" ;
+lin flavorer_N = mkN "flavorer" "flavorers" ;
+lin flavorful_A = mkAMost "flavorful" "flavorfully" ;
+lin flavorlessness_N = mkN "flavorlessness" "flavorlessnesses" ;
+lin flavorsomeness_N = mkN "flavorsomeness" "flavorsomenesses" ;
+lin flavour_N = mkN "flavour" "flavours" ;
+lin flavour_V = mkV "flavour" "flavoured" "flavoured" ;
+lin flavouring_N = mkN "flavouring" "flavourings" ;
+lin flavourless_A = mkAMost "flavourless" "flavourlessly" ;
+lin flaw_N = mkN "flaw" "flaws" ;
+lin flaw_V = mkV "flaw" "flawed" "flawed" ;
+lin flawless_A = mkAMost "flawless" "flawlessly" ;
+lin flax_N = mkN "flax" "flaxes" ;
+lin flaxen_A = mkAMost "flaxen" "flaxenly" ;
+lin flay_V = mkV "flay" "flayed" "flayed" ;
+lin flea_N = mkN "flea" "fleas" ;
+lin flea_bite_N = mkN "flea-bite" "flea-bites" ;
+lin flea_bitten_A = mkAMost "flea-bitten" "flea-bittenly" ;
+lin fleabag_N = mkN "fleabag" "fleabags" ;
+lin fleabane_N = mkN "fleabane" "fleabanes" ;
+lin fleapit_N = mkN "fleapit" "fleapits" ;
+lin fleawort_N = mkN "fleawort" "fleaworts" ;
+lin flecainide_N = mkN "flecainide" "flecainides" ;
+lin fleck_N = mkN "fleck" "flecks" ;
+lin fleck_V = mkV "fleck" "flecked" "flecked" ;
+lin fledged_A = mkAMost "fledged" "fledgedly" ;
+lin fledgeling_N = mkN "fledgeling" "fledgelings" ;
+lin fledgling_A = mkAMost "fledgling" "fledglingly" ;
+lin fledgling_N = mkN "fledgling" "fledglings" ;
+lin flee_V = mkV "flee" "fled" "fled" ;
+lin fleece_N = mkN "fleece" "fleeces" ;
+lin fleece_V = mkV "fleece" "fleeced" "fleeced" ;
+lin fleeceable_A = mkAMost "fleeceable" "fleeceably" ;
+lin fleecy_A = mkA "fleecy" "fleecier" "fleeciest" "fleecily" ;
+lin fleer_N = mkN "fleer" "fleers" ;
+lin fleet_A = mkA "fleet" "fleeter" "fleetest" "fleetly" ;
+lin fleet_N = mkN "fleet" "fleets" ;
+lin fleeting_A = mkAMost "fleeting" "fleetingly" ;
+lin fleetness_N = mkN "fleetness" "fleetnesses" ;
+lin flemish_A = mkAMost "flemish" "flemishly" ;
+lin flemish_N = mkN "flemish" "flemishes" ;
+lin flesh_N = mkN "flesh" "fleshes" ;
+lin flesh_V = mkV "flesh" "fleshed" "fleshed" ;
+lin flesh_wound_N = mkN "flesh-wound" "flesh-wounds" ;
+lin fleshiness_N = mkN "fleshiness" "fleshinesses" ;
+lin fleshly_A = mkAMost "fleshly" "fleshlily" ;
+lin fleshy_A = mkA "fleshy" "fleshier" "fleshiest" "fleshily" ;
+lin fleur_de_lis_N = mkN "fleur-de-lis" "fleur-de-les" ;
+lin fleur_de_lys_N = mkN "fleur-de-lys" "fleur-de-les" ;
+lin flex_N = mkN "flex" "flexes" ;
+lin flex_V = mkV "flex" "flexed" "flexed" ;
+lin flexibility_N = mkN "flexibility" "flexibilities" ;
+lin flexible_A = mkAMost "flexible" "flexibly" ;
+lin flexion_N = mkN "flexion" "flexions" ;
+lin flexuous_A = mkAMost "flexuous" "flexuously" ;
+lin flexure_N = mkN "flexure" "flexures" ;
+lin flibbertigibbet_N = mkN "flibbertigibbet" "flibbertigibbets" ;
+lin flick_N = mkN "flick" "flicks" ;
+lin flick_V = mkV "flick" "flicked" "flicked" ;
+lin flick_knife_N = mkN "flick-knife" "flick-knives" ;
+lin flicker_N = mkN "flicker" "flickers" ;
+lin flicker_V = mkV "flicker" "flickered" "flickered" ;
+lin flickertail_N = mkN "flickertail" "flickertails" ;
+lin flier_N = mkN "flier" "fliers" ;
+lin flies_N = mkN "flies" "flieses" ;
+lin flight_N = mkN "flight" "flights" ;
+lin flight_V = mkV "flight" "flighted" "flighted" ;
+lin flightiness_N = mkN "flightiness" "flightinesses" ;
+lin flightless_A = mkAMost "flightless" "flightlessly" ;
+lin flighty_A = mkAMost "flighty" "flightily" ;
+lin flimsiness_N = mkN "flimsiness" "flimsinesses" ;
+lin flimsy_A = mkA "flimsy" "flimsier" "flimsiest" "flimsily" ;
+lin flimsy_N = mkN "flimsy" "flimsies" ;
+lin flinch_V = mkV "flinch" "flinched" "flinched" ;
+lin flinders_N = mkN "flinders" "flinderses" ;
+lin fling_N = mkN "fling" "flings" ;
+lin fling_V = mkV "fling" "flung" "flung" ;
+lin flint_N = mkN "flint" "flints" ;
+lin flintlock_N = mkN "flintlock" "flintlocks" ;
+lin flintstone_N = mkN "flintstone" "flintstones" ;
+lin flinty_A = mkA "flinty" "flintier" "flintiest" "flintily" ;
+lin flip_A = mkAMost "flip" "fliply" ;
+lin flip_N = mkN "flip" "flips" ;
+lin flip_V = mkV "flip" "flipped" "flipped" ;
+lin flippancy_N = mkN "flippancy" "flippancies" ;
+lin flippant_A = mkAMost "flippant" "flippantly" ;
+lin flipper_N = mkN "flipper" "flippers" ;
+lin flirt_N = mkN "flirt" "flirts" ;
+lin flirt_V = mkV "flirt" "flirted" "flirted" ;
+lin flirtation_N = mkN "flirtation" "flirtations" ;
+lin flirtatious_A = mkAMost "flirtatious" "flirtatiously" ;
+lin flit_N = mkN "flit" "flits" ;
+lin flit_V = mkV "flit" "flitted" "flitted" ;
+lin flitch_N = mkN "flitch" "flitches" ;
+lin float_N = mkN "float" "floats" ;
+lin float_V = mkV "float" "floated" "floated" ;
+lin floatation_N = mkN "floatation" "floatations" ;
+lin floater_N = mkN "floater" "floaters" ;
+lin floating_N = mkN "floating" "floatings" ;
+lin floatplane_N = mkN "floatplane" "floatplanes" ;
+lin floccose_A = mkAMost "floccose" "floccosely" ;
+lin flocculation_N = mkN "flocculation" "flocculations" ;
+lin floccule_N = mkN "floccule" "floccules" ;
+lin flocculent_A = mkAMost "flocculent" "flocculently" ;
+lin flock_N = mkN "flock" "flocks" ;
+lin flock_V = mkV "flock" "flocked" "flocked" ;
+lin floe_N = mkN "floe" "floes" ;
+lin flog_V = mkV "flog" "flogged" "flogged" ;
+lin flogger_N = mkN "flogger" "floggers" ;
+lin flogging_N = mkN "flogging" "floggings" ;
+lin flood_N = mkN "flood" "floods" ;
+lin flood_V = mkV "flood" "flooded" "flooded" ;
+lin flood_tide_N = mkN "flood-tide" "flood-tides" ;
+lin floodgate_N = mkN "floodgate" "floodgates" ;
+lin floodhead_N = mkN "floodhead" "floodheads" ;
+lin floodlight_V = mkV "floodlight" "floodlighted" "floodlighted" ;
+lin floodlit_A = mkAMost "floodlit" "floodlitly" ;
+lin floodplain_N = mkN "floodplain" "floodplains" ;
+lin floor_N = mkN "floor" "floors" ;
+lin floor_V = mkV "floor" "floored" "floored" ;
+lin floor_walker_N = mkN "floor-walker" "floor-walkers" ;
+lin floorboard_N = mkN "floorboard" "floorboards" ;
+lin flooring_N = mkN "flooring" "floorings" ;
+lin floorwalker_N = mkN "floorwalker" "floorwalkers" ;
+lin floozie_N = mkN "floozie" "floozies" ;
+lin floozy_N = mkN "floozy" "floozies" ;
+lin flop_Adv = mkAdv "flop" ;
+lin flop_N = mkN "flop" "flops" ;
+lin flop_V = mkV "flop" "flopped" "flopped" ;
+lin flophouse_N = mkN "flophouse" "flophouses" ;
+lin floppy_A = mkA "floppy" "floppier" "floppiest" "floppily" ;
+lin floral_A = mkAMost "floral" "florally" ;
+lin floret_N = mkN "floret" "florets" ;
+lin floricultural_A = mkAMost "floricultural" "floriculturally" ;
+lin floriculture_N = mkN "floriculture" "floricultures" ;
+lin florid_A = mkAMost "florid" "floridly" ;
+lin florilegium_N = mkN "florilegium" "florilegiums" ;
+lin florin_N = mkN "florin" "florins" ;
+lin florist_N = mkN "florist" "florists" ;
+lin floss_N = mkN "floss" "flosses" ;
+lin flotation_N = mkN "flotation" "flotations" ;
+lin flotilla_N = mkN "flotilla" "flotillas" ;
+lin flotsam_N = mkN "flotsam" "flotsams" ;
+lin flounce_N = mkN "flounce" "flounces" ;
+lin flounce_V = mkV "flounce" "flounced" "flounced" ;
+lin flounder_N = mkN "flounder" "flounders" ;
+lin flounder_V = mkV "flounder" "floundered" "floundered" ;
+lin flour_N = mkN "flour" "flours" ;
+lin flour_V = mkV "flour" "floured" "floured" ;
+lin flourish_N = mkN "flourish" "flourishes" ;
+lin flourish_V = mkV "flourish" "flourished" "flourished" ;
+lin floury_A = mkA "floury" "flourier" "flouriest" "flourily" ;
+lin flout_V = mkV "flout" "flouted" "flouted" ;
+lin flow_N = mkN "flow" "flows" ;
+lin flow_V = mkV "flow" "flowed" "flowed" ;
+lin flowage_N = mkN "flowage" "flowages" ;
+lin flower_N = mkN "flower" "flowers" ;
+lin flower_V = mkV "flower" "flowered" "flowered" ;
+lin flower_girl_N = mkN "flower-girl" "flower-girls" ;
+lin flowerbed_N = mkN "flowerbed" "flowerbeds" ;
+lin flowered_A = mkAMost "flowered" "floweredly" ;
+lin flowerless_A = mkAMost "flowerless" "flowerlessly" ;
+lin flowerpot_N = mkN "flowerpot" "flowerpots" ;
+lin flowery_A = mkA "flowery" "flowerier" "floweriest" "flowerily" ;
+lin floxuridine_N = mkN "floxuridine" "floxuridines" ;
+lin flu_N = mkN "flu" "flus" ;
+lin fluctuate_V = mkV "fluctuate" "fluctuated" "fluctuated" ;
+lin fluctuation_N = mkN "fluctuation" "fluctuations" ;
+lin flue_N = mkN "flue" "flues" ;
+lin fluency_N = mkN "fluency" "fluencies" ;
+lin fluent_A = mkAMost "fluent" "fluently" ;
+lin fluff_N = mkN "fluff" "fluffs" ;
+lin fluff_V = mkV "fluff" "fluffed" "fluffed" ;
+lin fluffy_A = mkA "fluffy" "fluffier" "fluffiest" "fluffily" ;
+lin flugelhorn_N = mkN "flugelhorn" "flugelhorns" ;
+lin fluid_A = mkAMost "fluid" "fluidly" ;
+lin fluid_N = mkN "fluid" "fluids" ;
+lin fluidity_N = mkN "fluidity" "fluidities" ;
+lin fluidounce_N = mkN "fluidounce" "fluidounces" ;
+lin fluidram_N = mkN "fluidram" "fluidrams" ;
+lin fluke_N = mkN "fluke" "flukes" ;
+lin flume_N = mkN "flume" "flumes" ;
+lin flummery_N = mkN "flummery" "flummeries" ;
+lin flummox_V = mkV "flummox" "flummoxed" "flummoxed" ;
+lin flunitrazepan_N = mkN "flunitrazepan" "flunitrazepans" ;
+lin flunk_V = mkV "flunk" "flunked" "flunked" ;
+lin flunkey_N = mkN "flunkey" "flunkeys" ;
+lin flunky_N = mkN "flunky" "flunkies" ;
+lin fluorapatite_N = mkN "fluorapatite" "fluorapatites" ;
+lin fluorescein_N = mkN "fluorescein" "fluoresceins" ;
+lin fluorescence_N = mkN "fluorescence" "fluorescences" ;
+lin fluorescent_A = mkAMost "fluorescent" "fluorescently" ;
+lin fluorescent_N = mkN "fluorescent" "fluorescents" ;
+lin fluoridate_V = mkV "fluoridate" "fluoridated" "fluoridated" ;
+lin fluoridation_N = mkN "fluoridation" "fluoridations" ;
+lin fluoride_N = mkN "fluoride" "fluorides" ;
+lin fluoridization_N = mkN "fluoridization" "fluoridizations" ;
+lin fluoridize_V = mkV "fluoridize" "fluoridized" "fluoridized" ;
+lin fluorine_N = mkN "fluorine" "fluorines" ;
+lin fluorite_N = mkN "fluorite" "fluorites" ;
+lin fluoroboride_N = mkN "fluoroboride" "fluoroborides" ;
+lin fluorocarbon_N = mkN "fluorocarbon" "fluorocarbons" ;
+lin fluorochrome_N = mkN "fluorochrome" "fluorochromes" ;
+lin fluoroform_N = mkN "fluoroform" "fluoroforms" ;
+lin fluoroscope_N = mkN "fluoroscope" "fluoroscopes" ;
+lin fluoroscopy_N = mkN "fluoroscopy" "fluoroscopies" ;
+lin fluorosis_N = mkN "fluorosis" "fluorosises" ;
+lin fluorouracil_N = mkN "fluorouracil" "fluorouracils" ;
+lin fluosilicate_N = mkN "fluosilicate" "fluosilicates" ;
+lin fluoxetine_N = mkN "fluoxetine" "fluoxetines" ;
+lin fluphenazine_N = mkN "fluphenazine" "fluphenazines" ;
+lin flurazepam_N = mkN "flurazepam" "flurazepams" ;
+lin flurbiprofen_N = mkN "flurbiprofen" "flurbiprofens" ;
+lin flurry_N = mkN "flurry" "flurries" ;
+lin flurry_V = mkV "flurry" "flurried" "flurried" ;
+lin flush_A = mkAMost "flush" "flushly" ;
+lin flush_Adv = mkAdv "flush" ;
+lin flush_N = mkN "flush" "flushes" ;
+lin flush_V = mkV "flush" "flushed" "flushed" ;
+lin fluster_N = mkN "fluster" "flusters" ;
+lin fluster_V = mkV "fluster" "flustered" "flustered" ;
+lin flute_N = mkN "flute" "flutes" ;
+lin flute_V = mkV "flute" "fluted" "fluted" ;
+lin fluting_N = mkN "fluting" "flutings" ;
+lin flutist_N = mkN "flutist" "flutists" ;
+lin flutter_N = mkN "flutter" "flutters" ;
+lin flutter_V = mkV "flutter" "fluttered" "fluttered" ;
+lin fluvastatin_N = mkN "fluvastatin" "fluvastatins" ;
+lin fluvial_A = mkAMost "fluvial" "fluvially" ;
+lin flux_N = mkN "flux" "fluxes" ;
+lin fluxmeter_N = mkN "fluxmeter" "fluxmeters" ;
+lin fly_A = mkAMost "fly" "flily" ;
+lin fly_N = mkN "fly" "flies" ;
+lin fly_fish_V = mkV "fly-fish" "fly-fished" "fly-fished" ;
+lin fly_fishing_N = mkN "fly-fishing" "fly-fishings" ;
+lin fly_flew_V = mkV "fly" "flew" "flown" ;
+lin fly_flied_V = mkV "fly" "flied" "flied" ;
+lin fly_swat_N = mkN "fly-swat" "fly-swats" ;
+lin fly_swatter_N = mkN "fly-swatter" "fly-swatters" ;
+lin flyaway_A = mkAMost "flyaway" "flyawaily" ;
+lin flyblown_A = mkAMost "flyblown" "flyblownly" ;
+lin flycatcher_N = mkN "flycatcher" "flycatchers" ;
+lin flyer_N = mkN "flyer" "flyers" ;
+lin flying_bomb_N = mkN "flying-bomb" "flying-bombs" ;
+lin flying_fish_N = mkN "flying-fish" "flying-fish" ;
+lin flying_fox_N = mkN "flying-fox" "flying-foxes" ;
+lin flying_squad_N = mkN "flying-squad" "flying-squads" ;
+lin flyleaf_N = mkN "flyleaf" "flyleaves" ;
+lin flyover_N = mkN "flyover" "flyovers" ;
+lin flypaper_N = mkN "flypaper" "flypapers" ;
+lin flypast_N = mkN "flypast" "flypasts" ;
+lin flyspeck_N = mkN "flyspeck" "flyspecks" ;
+lin flytrap_N = mkN "flytrap" "flytraps" ;
+lin flyweight_N = mkN "flyweight" "flyweights" ;
+lin flywheel_N = mkN "flywheel" "flywheels" ;
+lin fm_N = mkN "fm" "fms" ;
+lin fo'c'sle_N = mkN "fo'c'sle" "fo'c'sles" ;
+lin fo_N = mkN "fo" "foes" ;
+lin foal_N = mkN "foal" "foals" ;
+lin foal_V = mkV "foal" "foaled" "foaled" ;
+lin foam_N = mkN "foam" "foams" ;
+lin foam_V = mkV "foam" "foamed" "foamed" ;
+lin foam_rubber_N = mkN "foam-rubber" "foam-rubbers" ;
+lin foamflower_N = mkN "foamflower" "foamflowers" ;
+lin foaminess_N = mkN "foaminess" "foaminesses" ;
+lin foamy_A = mkA "foamy" "foamier" "foamiest" "foamily" ;
+lin fob_N = mkN "fob" "fobs" ;
+lin fob_V = mkV "fob" "fobbed" "fobbed" ;
+lin focal_A = mkAMost "focal" "focally" ;
+lin focalization_N = mkN "focalization" "focalizations" ;
+lin focus_N = mkN "focus" "focuses" ;
+lin focus_V = mkV "focus" "focused" "focused" ;
+lin fodder_N = mkN "fodder" "fodders" ;
+lin foe_N = mkN "foe" "foes" ;
+lin foetal_A = mkAMost "foetal" "foetally" ;
+lin foetus_N = mkN "foetus" "foetuses" ;
+lin fog_N = mkN "fog" "fogs" ;
+lin fog_V = mkV "fog" "fogged" "fogged" ;
+lin fogbank_N = mkN "fogbank" "fogbanks" ;
+lin fogbound_A = mkAMost "fogbound" "fogboundly" ;
+lin fogey_N = mkN "fogey" "fogeys" ;
+lin foggy_A = mkA "foggy" "foggier" "foggiest" "foggily" ;
+lin foghorn_N = mkN "foghorn" "foghorns" ;
+lin foglamp_N = mkN "foglamp" "foglamps" ;
+lin fogsignal_N = mkN "fogsignal" "fogsignals" ;
+lin fogyish_A = mkAMost "fogyish" "fogyishly" ;
+lin fohn_N = mkN "fohn" "fohns" ;
+lin foible_N = mkN "foible" "foibles" ;
+lin foil_N = mkN "foil" "foils" ;
+lin foil_V = mkV "foil" "foiled" "foiled" ;
+lin foist_V = mkV "foist" "foisted" "foisted" ;
+lin fold_N = mkN "fold" "folds" ;
+lin fold_V = mkV "fold" "folded" "folded" ;
+lin foldable_A = mkAMost "foldable" "foldably" ;
+lin folder_N = mkN "folder" "folders" ;
+lin folderal_N = mkN "folderal" "folderals" ;
+lin folderol_N = mkN "folderol" "folderols" ;
+lin foldout_N = mkN "foldout" "foldouts" ;
+lin foliaceous_A = mkAMost "foliaceous" "foliaceously" ;
+lin foliage_N = mkN "foliage" "foliages" ;
+lin foliate_A = mkAMost "foliate" "foliately" ;
+lin foliation_N = mkN "foliation" "foliations" ;
+lin folio_N = mkN "folio" "folios" ;
+lin foliolate_A = mkAMost "foliolate" "foliolately" ;
+lin folium_N = mkN "folium" "foliums" ;
+lin folk_N = mkN "folk" "folks" ;
+lin folk_dance_N = mkN "folk-dance" "folk-dances" ;
+lin folklore_N = mkN "folklore" "folklores" ;
+lin folks_N = mkN "folks" "folkses" ;
+lin folksong_N = mkN "folksong" "folksongs" ;
+lin folksy_A = mkAMost "folksy" "folksily" ;
+lin folktale_N = mkN "folktale" "folktales" ;
+lin follicle_N = mkN "follicle" "follicles" ;
+lin follicular_A = mkAMost "follicular" "follicularly" ;
+lin folliculitis_N = mkN "folliculitis" "folliculitises" ;
+lin follies_N = mkN "follies" "follieses" ;
+lin follow_V = mkV "follow" "followed" "followed" ;
+lin follow_on_N = mkN "follow-on" "follow-ons" ;
+lin follow_through_N = mkN "follow-through" "follow-throughs" ;
+lin follow_up_N = mkN "follow-up" "follow-ups" ;
+lin follower_N = mkN "follower" "followers" ;
+lin following_A = mkAMost "following" "followingly" ;
+lin following_N = mkN "following" "followings" ;
+lin folly_N = mkN "folly" "follies" ;
+lin foment_V = mkV "foment" "fomented" "fomented" ;
+lin fomentation_N = mkN "fomentation" "fomentations" ;
+lin fomite_N = mkN "fomite" "fomites" ;
+lin fond_A = mkA "fond" "fonder" "fondest" "fondly" ;
+lin fondant_N = mkN "fondant" "fondants" ;
+lin fondle_V = mkV "fondle" "fondled" "fondled" ;
+lin fondler_N = mkN "fondler" "fondlers" ;
+lin fondness_N = mkN "fondness" "fondnesses" ;
+lin fondue_N = mkN "fondue" "fondues" ;
+lin font_N = mkN "font" "fonts" ;
+lin fontanelle_N = mkN "fontanelle" "fontanelles" ;
+lin food_N = mkN "food" "foods" ;
+lin foodless_A = mkAMost "foodless" "foodlessly" ;
+lin foodstuff_N = mkN "foodstuff" "foodstuffs" ;
+lin fool_N = mkN "fool" "fools" ;
+lin fool_V = mkV "fool" "fooled" "fooled" ;
+lin foolery_N = mkN "foolery" "fooleries" ;
+lin foolhardiness_N = mkN "foolhardiness" "foolhardinesses" ;
+lin foolhardy_A = mkAMost "foolhardy" "foolhardily" ;
+lin foolish_A = mkAMost "foolish" "foolishly" ;
+lin foolishness_N = mkN "foolishness" "foolishnesses" ;
+lin foolproof_A = mkAMost "foolproof" "foolproofly" ;
+lin foolscap_N = mkN "foolscap" "foolscaps" ;
+lin foot_N = mkN "foot" "feet" ;
+lin foot_V = mkV "foot" "footed" "footed" ;
+lin foot_and_mouth_A = mkAMost "foot-and-mouth" "foot-and-mouthly" ;
+lin foot_and_mouth_N = mkN "foot-and-mouth" "foot-and-mouths" ;
+lin foot_bath_N = mkN "foot-bath" "foot-baths" ;
+lin foot_pound_N = mkN "foot-pound" "foot-pounds" ;
+lin foot_race_N = mkN "foot-race" "foot-races" ;
+lin foot_rot_N = mkN "foot-rot" "foot-rots" ;
+lin footage_N = mkN "footage" "footages" ;
+lin football_N = mkN "football" "footballs" ;
+lin footballer_N = mkN "footballer" "footballers" ;
+lin footbath_N = mkN "footbath" "footbaths" ;
+lin footboard_N = mkN "footboard" "footboards" ;
+lin footbridge_N = mkN "footbridge" "footbridges" ;
+lin footcandle_N = mkN "footcandle" "footcandles" ;
+lin footedness_N = mkN "footedness" "footednesses" ;
+lin footer_N = mkN "footer" "footers" ;
+lin footfall_N = mkN "footfall" "footfalls" ;
+lin footfault_N = mkN "footfault" "footfaults" ;
+lin foothill_N = mkN "foothill" "foothills" ;
+lin foothold_N = mkN "foothold" "footholds" ;
+lin footing_N = mkN "footing" "IRREG" ;
+lin footle_V = mkV "footle" "footled" "footled" ;
+lin footless_A = mkAMost "footless" "footlessly" ;
+lin footlights_N = mkN "footlights" "footlightses" ;
+lin footlocker_N = mkN "footlocker" "footlockers" ;
+lin footloose_A = mkAMost "footloose" "footloosely" ;
+lin footman_N = mkN "footman" "footmen" ;
+lin footmark_N = mkN "footmark" "footmarks" ;
+lin footnote_N = mkN "footnote" "footnotes" ;
+lin footpad_N = mkN "footpad" "footpads" ;
+lin footpath_N = mkN "footpath" "footpaths" ;
+lin footplate_N = mkN "footplate" "footplates" ;
+lin footprint_N = mkN "footprint" "footprints" ;
+lin footrace_N = mkN "footrace" "footraces" ;
+lin footslog_V = mkV "footslog" "footslogged" "footslogged" ;
+lin footslogger_N = mkN "footslogger" "footsloggers" ;
+lin footsore_A = mkAMost "footsore" "footsorely" ;
+lin footstep_N = mkN "footstep" "footsteps" ;
+lin footstool_N = mkN "footstool" "footstools" ;
+lin footsure_A = mkAMost "footsure" "footsurely" ;
+lin footwall_N = mkN "footwall" "footwalls" ;
+lin footwear_N = mkN "footwear" "footwears" ;
+lin footwork_N = mkN "footwork" "footworks" ;
+lin fop_N = mkN "fop" "fops" ;
+lin foppish_A = mkAMost "foppish" "foppishly" ;
+lin foppishness_N = mkN "foppishness" "foppishnesses" ;
+lin for_Prep = mkPrep "for" ;
+lin for_example_Adv = mkAdv "for example" ;
+lin for_instance_Adv = mkAdv "for instance" ;
+lin for_starters_Adv = mkAdv "for starters" ;
+lin for_sure_Adv = mkAdv "for sure" ;
+lin for_the_sake_of_Prep = mkPrep "for the sake of" ;
+lin forage_N = mkN "forage" "forages" ;
+lin forage_V = mkV "forage" "foraged" "foraged" ;
+lin forager_N = mkN "forager" "foragers" ;
+lin foraging_N = mkN "foraging" "foragings" ;
+lin foram_N = mkN "foram" "forams" ;
+lin foramen_N = mkN "foramen" "foramens" ;
+lin foray_N = mkN "foray" "forays" ;
+lin foray_V = mkV "foray" "forayed" "forayed" ;
+lin forbear_N = mkN "forbear" "forbears" ;
+lin forbear_V = mkV "forbear" "forbore" "forborn" ;
+lin forbearance_N = mkN "forbearance" "forbearances" ;
+lin forbid_V = mkV "forbid" "forbade" "forbidden" ;
+lin forbidding_A = mkAMost "forbidding" "forbiddingly" ;
+lin forby_Prep = mkPrep "forby" ;
+lin force_N = mkN "force" "forces" ;
+lin force_V = mkV "force" "forced" "forced" ;
+lin force_feed_V = mkV "force-feed" "force-fed" "force-fed" ;
+lin force_land_V = mkV "force-land" "force-landed" "force-landed" ;
+lin force_majeure_N = mkN "force majeure" "force majeures" ;
+lin forceful_A = mkAMost "forceful" "forcefully" ;
+lin forcefulness_N = mkN "forcefulness" "forcefulnesses" ;
+lin forceless_A = mkAMost "forceless" "forcelessly" ;
+lin forcemeat_N = mkN "forcemeat" "forcemeats" ;
+lin forceps_N = mkN "forceps" "forcepses" ;
+lin forcible_A = mkAMost "forcible" "forcibly" ;
+lin forcipate_A = mkAMost "forcipate" "forcipately" ;
+lin ford_N = mkN "ford" "fords" ;
+lin ford_V = mkV "ford" "forded" "forded" ;
+lin fordable_A = mkAMost "fordable" "fordably" ;
+lin fore_A = mkAMost "fore" "forely" ;
+lin fore_Adv = mkAdv "fore" ;
+lin fore_N = mkN "fore" "fores" ;
+lin forearm_N = mkN "forearm" "forearms" ;
+lin forearm_V = mkV "forearm" "forearmed" "forearmed" ;
+lin forebear_N = mkN "forebear" "forebears" ;
+lin forebode_V = mkV "forebode" "foreboded" "foreboded" ;
+lin foreboding_N = mkN "foreboding" "forebodings" ;
+lin forebrain_N = mkN "forebrain" "forebrains" ;
+lin forecast_N = mkN "forecast" "forecasts" ;
+lin forecast_V = mkV "forecast" "forecasted" "forecasted" ;
+lin forecaster_N = mkN "forecaster" "forecasters" ;
+lin forecastle_N = mkN "forecastle" "forecastles" ;
+lin foreclose_V = mkV "foreclose" "foreclosed" "foreclosed" ;
+lin foreclosure_N = mkN "foreclosure" "foreclosures" ;
+lin forecourt_N = mkN "forecourt" "forecourts" ;
+lin foredeck_N = mkN "foredeck" "foredecks" ;
+lin foredoom_V = mkV "foredoom" "foredoomed" "foredoomed" ;
+lin forefather_N = mkN "forefather" "forefathers" ;
+lin forefinger_N = mkN "forefinger" "forefingers" ;
+lin forefoot_N = mkN "forefoot" "forefeet" ;
+lin forefront_N = mkN "forefront" "forefronts" ;
+lin foregather_V = mkV "foregather" "foregathered" "foregathered" ;
+lin forego_V = mkV "forego" "forewent" "foregone" ;
+lin foreground_N = mkN "foreground" "foregrounds" ;
+lin forehand_A = mkAMost "forehand" "forehandly" ;
+lin forehand_N = mkN "forehand" "forehands" ;
+lin forehanded_A = mkAMost "forehanded" "forehandedly" ;
+lin forehead_N = mkN "forehead" "foreheads" ;
+lin foreign_A = mkAMost "foreign" "foreignly" ;
+lin foreigner_N = mkN "foreigner" "foreigners" ;
+lin foreignness_N = mkN "foreignness" "foreignnesses" ;
+lin foreknow_V = mkV "foreknow" "foreknew" "foreknown" ;
+lin foreknowledge_N = mkN "foreknowledge" "foreknowledges" ;
+lin foreland_N = mkN "foreland" "forelands" ;
+lin foreleg_N = mkN "foreleg" "forelegs" ;
+lin forelimb_N = mkN "forelimb" "forelimbs" ;
+lin forelock_N = mkN "forelock" "forelocks" ;
+lin foreman_N = mkN "foreman" "foremen" ;
+lin foremanship_N = mkN "foremanship" "foremanships" ;
+lin foremast_N = mkN "foremast" "foremasts" ;
+lin foremost_A = mkAMost "foremost" "foremostly" ;
+lin foremost_Adv = mkAdv "foremost" ;
+lin foremother_N = mkN "foremother" "foremothers" ;
+lin forename_N = mkN "forename" "forenames" ;
+lin forenenst_Prep = mkPrep "forenenst" ;
+lin forenoon_N = mkN "forenoon" "forenoons" ;
+lin forensic_A = mkAMost "forensic" "forensicly" ;
+lin forensics_N = mkN "forensics" "forensicses" ;
+lin foreordain_V = mkV "foreordain" "foreordained" "foreordained" ;
+lin forepaw_N = mkN "forepaw" "forepaws" ;
+lin foreperson_N = mkN "foreperson" "forepersons" ;
+lin foreplay_N = mkN "foreplay" "foreplays" ;
+lin forequarter_N = mkN "forequarter" "forequarters" ;
+lin forerunner_N = mkN "forerunner" "forerunners" ;
+lin foresail_N = mkN "foresail" "foresails" ;
+lin foresee_V = mkV "foresee" "foresaw" "foreseen" ;
+lin foreseeable_A = mkAMost "foreseeable" "foreseeably" ;
+lin foreshadow_V = mkV "foreshadow" "foreshadowed" "foreshadowed" ;
+lin foreshank_N = mkN "foreshank" "foreshanks" ;
+lin foreshock_N = mkN "foreshock" "foreshocks" ;
+lin foreshore_N = mkN "foreshore" "foreshores" ;
+lin foreshorten_V = mkV "foreshorten" "foreshortened" "foreshortened" ;
+lin foresight_N = mkN "foresight" "foresights" ;
+lin foreskin_N = mkN "foreskin" "foreskins" ;
+lin forest_N = mkN "forest" "forests" ;
+lin forestall_V = mkV "forestall" "forestalled" "forestalled" ;
+lin forestay_N = mkN "forestay" "forestays" ;
+lin forested_A = mkAMost "forested" "forestedly" ;
+lin forester_N = mkN "forester" "foresters" ;
+lin forestiera_N = mkN "forestiera" "forestieras" ;
+lin forestry_N = mkN "forestry" "forestries" ;
+lin foreswear_V = mkV "foreswear" "foreswore" "foresworn" ;
+lin foretaste_N = mkN "foretaste" "foretastes" ;
+lin foretell_V = mkV "foretell" "foretold" "foretold" ;
+lin forethought_N = mkN "forethought" "forethoughts" ;
+lin forethoughtful_A = mkAMost "forethoughtful" "forethoughtfully" ;
+lin foretop_N = mkN "foretop" "foretops" ;
+lin forever_Adv = mkAdv "forever" ;
+lin forewarn_V = mkV "forewarn" "forewarned" "forewarned" ;
+lin forewarning_N = mkN "forewarning" "forewarnings" ;
+lin forewing_N = mkN "forewing" "forewings" ;
+lin forewoman_N = mkN "forewoman" "forewomen" ;
+lin foreword_N = mkN "foreword" "forewords" ;
+lin forfeit_N = mkN "forfeit" "forfeits" ;
+lin forfeit_V = mkV "forfeit" "forfeited" "forfeited" ;
+lin forfeiture_N = mkN "forfeiture" "forfeitures" ;
+lin forgather_V = mkV "forgather" "forgathered" "forgathered" ;
+lin forge_N = mkN "forge" "forges" ;
+lin forge_V = mkV "forge" "forged" "forged" ;
+lin forger_N = mkN "forger" "forgers" ;
+lin forgery_N = mkN "forgery" "forgeries" ;
+lin forget_V = mkV "forget" "forgot" "forgotten" ;
+lin forget_me_not_N = mkN "forget-me-not" "forget-me-nots" ;
+lin forgetful_A = mkAMost "forgetful" "forgetfully" ;
+lin forgetfulness_N = mkN "forgetfulness" "forgetfulnesses" ;
+lin forgettable_A = mkAMost "forgettable" "forgettably" ;
+lin forging_N = mkN "forging" "forgings" ;
+lin forgivable_A = mkAMost "forgivable" "forgivably" ;
+lin forgive_V = mkV "forgive" "forgave" "forgiven" ;
+lin forgiveness_N = mkN "forgiveness" "forgivenesses" ;
+lin forgivingly_Adv = mkAdv "forgivingly" ;
+lin forgivingness_N = mkN "forgivingness" "forgivingnesses" ;
+lin forgo_V = mkV "forgo" "forwent" "forgone" ;
+lin forint_N = mkN "forint" "forints" ;
+lin fork_N = mkN "fork" "forks" ;
+lin fork_V = mkV "fork" "forked" "forked" ;
+lin forklift_N = mkN "forklift" "forklifts" ;
+lin forlorn_A = mkAMost "forlorn" "forlornly" ;
+lin forlornness_N = mkN "forlornness" "forlornnesses" ;
+lin form_N = mkN "form" "forms" ;
+lin form_V = mkV "form" "formed" "formed" ;
+lin formal_A = mkAMost "formal" "formally" ;
+lin formaldehyde_N = mkN "formaldehyde" "formaldehydes" ;
+lin formalin_N = mkN "formalin" "formalins" ;
+lin formalism_N = mkN "formalism" "formalisms" ;
+lin formalistic_A = mkAMost "formalistic" "formalisticly" ;
+lin formality_N = mkN "formality" "formalities" ;
+lin formalization_N = mkN "formalization" "formalizations" ;
+lin formalize_V = mkV "formalize" "formalized" "formalized" ;
+lin formalwear_N = mkN "formalwear" "formalwears" ;
+lin format_N = mkN "format" "formats" ;
+lin formation_N = mkN "formation" "formations" ;
+lin formative_A = mkAMost "formative" "formatively" ;
+lin formative_N = mkN "formative" "formatives" ;
+lin former_A = mkAMost "former" "formerly" ;
+lin former_N = mkN "former" "formers" ;
+lin formic_A = mkAMost "formic" "formicly" ;
+lin formica_N = mkN "formica" "formicas" ;
+lin formication_N = mkN "formication" "formications" ;
+lin formidability_N = mkN "formidability" "formidabilities" ;
+lin formidable_A = mkAMost "formidable" "formidably" ;
+lin formless_A = mkAMost "formless" "formlessly" ;
+lin formula_N = mkN "formula" "formulas" ;
+lin formulaic_A = mkAMost "formulaic" "formulaicly" ;
+lin formulary_A = mkAMost "formulary" "formularily" ;
+lin formulary_N = mkN "formulary" "formularies" ;
+lin formulate_V = mkV "formulate" "formulated" "formulated" ;
+lin formulation_N = mkN "formulation" "formulations" ;
+lin fornenst_Prep = mkPrep "fornenst" ;
+lin fornent_Prep = mkPrep "fornent" ;
+lin fornicate_V = mkV "fornicate" "fornicated" "fornicated" ;
+lin fornication_N = mkN "fornication" "fornications" ;
+lin fornix_N = mkN "fornix" "fornixes" ;
+lin forrader_Adv = mkAdv "forrader" ;
+lin forsake_V = mkV "forsake" "forsook" "forsaken" ;
+lin forsaking_N = mkN "forsaking" "forsakings" ;
+lin forsooth_Adv = mkAdv "forsooth" ;
+lin forswear_V = mkV "forswear" "forswore" "forsworn" ;
+lin forsythia_N = mkN "forsythia" "forsythias" ;
+lin fort_N = mkN "fort" "forts" ;
+lin forte_A = mkAMost "forte" "fortely" ;
+lin forte_Adv = mkAdv "forte" ;
+lin forte_N = mkN "forte" "fortes" ;
+lin fortemente_A = mkAMost "fortemente" "fortementely" ;
+lin forth_Adv = mkAdv "forth" ;
+lin forthcoming_A = mkAMost "forthcoming" "forthcomingly" ;
+lin forthright_A = mkAMost "forthright" "forthrightly" ;
+lin forthwith_Adv = mkAdv "forthwith" ;
+lin fortification_N = mkN "fortification" "fortifications" ;
+lin fortify_V = mkV "fortify" "fortified" "fortified" ;
+lin fortissimo_A = mkAMost "fortissimo" "fortissimoly" ;
+lin fortissimo_Adv = mkAdv "fortissimo" ;
+lin fortitude_N = mkN "fortitude" "fortitudes" ;
+lin fortnight_N = mkN "fortnight" "fortnights" ;
+lin fortnightly_A = mkAMost "fortnightly" "fortnightlily" ;
+lin fortnightly_Adv = mkAdv "fortnightly" ;
+lin fortress_N = mkN "fortress" "fortresses" ;
+lin fortuitous_A = mkAMost "fortuitous" "fortuitously" ;
+lin fortuitousness_N = mkN "fortuitousness" "fortuitousnesses" ;
+lin fortunate_A = mkAMost "fortunate" "fortunately" ;
+lin fortune_N = mkN "fortune" "fortunes" ;
+lin fortuneteller_N = mkN "fortuneteller" "fortunetellers" ;
+lin fortunetelling_N = mkN "fortunetelling" "fortunetellings" ;
+lin forty_A = mkAMost "forty" "fortily" ;
+lin forty_N = mkN "forty" "forties" ;
+lin fortyish_A = mkAMost "fortyish" "fortyishly" ;
+lin forum_N = mkN "forum" "forums" ;
+lin forward_A = mkAMost "forward" "forwardly" ;
+lin forward_Adv = mkAdv "forward" ;
+lin forward_N = mkN "forward" "forwards" ;
+lin forward_V = mkV "forward" "forwarded" "forwarded" ;
+lin forwarding_N = mkN "forwarding" "forwardings" ;
+lin forwardness_N = mkN "forwardness" "forwardnesses" ;
+lin forwards_Adv = mkAdv "forwards" ;
+lin foryml_N = mkN "foryml" "forymls" ;
+lin fossa_N = mkN "fossa" "fossas" ;
+lin fosse_N = mkN "fosse" "fosses" ;
+lin fossil_A = mkAMost "fossil" "fossilly" ;
+lin fossil_N = mkN "fossil" "fossils" ;
+lin fossiliferous_A = mkAMost "fossiliferous" "fossiliferously" ;
+lin fossilization_N = mkN "fossilization" "fossilizations" ;
+lin fossilize_V = mkV "fossilize" "fossilized" "fossilized" ;
+lin fossorial_A = mkAMost "fossorial" "fossorially" ;
+lin foster_A = mkAMost "foster" "fosterly" ;
+lin foster_V = mkV "foster" "fostered" "fostered" ;
+lin foster_brother_N = mkN "foster-brother" "foster-brothers" ;
+lin foster_child_N = mkN "foster-child" "foster-children" ;
+lin foster_father_N = mkN "foster-father" "foster-fathers" ;
+lin foster_mother_N = mkN "foster-mother" "foster-mothers" ;
+lin foster_parent_N = mkN "foster-parent" "foster-parents" ;
+lin foster_sister_N = mkN "foster-sister" "foster-sisters" ;
+lin fostering_N = mkN "fostering" "fosterings" ;
+lin fothergilla_N = mkN "fothergilla" "fothergillas" ;
+lin foul_A = mkA "foul" "fouler" "foulest" "foully" ;
+lin foul_N = mkN "foul" "fouls" ;
+lin foul_V = mkV "foul" "fouled" "fouled" ;
+lin foul_mouthed_A = mkAMost "foul-mouthed" "foul-mouthedly" ;
+lin foul_spoken_A = mkAMost "foul-spoken" "foul-spokenly" ;
+lin foulard_N = mkN "foulard" "foulards" ;
+lin foulness_N = mkN "foulness" "foulnesses" ;
+lin found_N = mkN "found" "founds" ;
+lin found_V = mkV "found" "founded" "founded" ;
+lin foundation_N = mkN "foundation" "foundations" ;
+lin foundation_stone_N = mkN "foundation-stone" "foundation-stones" ;
+lin founder_N = mkN "founder" "founders" ;
+lin founder_V = mkV "founder" "foundered" "foundered" ;
+lin foundering_N = mkN "foundering" "founderings" ;
+lin foundling_N = mkN "foundling" "foundlings" ;
+lin foundress_N = mkN "foundress" "foundresses" ;
+lin foundry_N = mkN "foundry" "foundries" ;
+lin fount_N = mkN "fount" "founts" ;
+lin fountain_N = mkN "fountain" "fountains" ;
+lin fountain_head_N = mkN "fountain-head" "fountain-heads" ;
+lin fountain_pen_N = mkN "fountain-pen" "fountain-pens" ;
+lin fountainhead_N = mkN "fountainhead" "fountainheads" ;
+lin four_in_hand_N = mkN "four-in-hand" "four-in-hands" ;
+lin four_part_A = mkAMost "four-part" "four-partly" ;
+lin four_ply_A = mkAMost "four-ply" "four-plily" ;
+lin four_poster_N = mkN "four-poster" "four-posters" ;
+lin four_pounder_N = mkN "four-pounder" "four-pounders" ;
+lin four_wheeler_N = mkN "four-wheeler" "four-wheelers" ;
+lin fourfold_A = mkAMost "fourfold" "fourfoldly" ;
+lin fourfold_Adv = mkAdv "fourfold" ;
+lin fourhanded_A = mkAMost "fourhanded" "fourhandedly" ;
+lin fourpence_N = mkN "fourpence" "fourpences" ;
+lin fourpenny_A = mkAMost "fourpenny" "fourpennily" ;
+lin fourscore_A = mkAMost "fourscore" "fourscorely" ;
+lin fourscore_N = mkN "fourscore" "fourscores" ;
+lin foursome_N = mkN "foursome" "foursomes" ;
+lin foursquare_A = mkAMost "foursquare" "foursquarely" ;
+lin foursquare_Adv = mkAdv "foursquare" ;
+lin fovea_N = mkN "fovea" "foveas" ;
+lin fowl_N = mkN "fowl" "fowls" ;
+lin fowl_V = mkV "fowl" "fowled" "fowled" ;
+lin fowl_run_N = mkN "fowl-run" "fowl-runs" ;
+lin fowler_N = mkN "fowler" "fowlers" ;
+lin fowlingpiece_N = mkN "fowlingpiece" "fowlingpieces" ;
+lin fowlpest_N = mkN "fowlpest" "fowlpests" ;
+lin fox_N = mkN "fox" "foxes" ;
+lin fox_V = mkV "fox" "foxed" "foxed" ;
+lin fox_terrier_N = mkN "fox-terrier" "fox-terriers" ;
+lin foxglove_N = mkN "foxglove" "foxgloves" ;
+lin foxhole_N = mkN "foxhole" "foxholes" ;
+lin foxhound_N = mkN "foxhound" "foxhounds" ;
+lin foxhunt_N = mkN "foxhunt" "foxhunts" ;
+lin foxhunt_V = mkV "foxhunt" "foxhunted" "foxhunted" ;
+lin foxhunter_N = mkN "foxhunter" "foxhunters" ;
+lin foxtail_N = mkN "foxtail" "foxtails" ;
+lin foxtrot_N = mkN "foxtrot" "foxtrots" ;
+lin foxy_A = mkA "foxy" "foxier" "foxiest" "foxily" ;
+lin foyer_N = mkN "foyer" "foyers" ;
+lin fracas_fracas_N = mkN "fracas" "fracas" ;
+lin fracas_fracases_N = mkN "fracas" "fracases" ;
+lin fractal_N = mkN "fractal" "fractals" ;
+lin fraction_N = mkN "fraction" "fractions" ;
+lin fractional_A = mkAMost "fractional" "fractionally" ;
+lin fractionation_N = mkN "fractionation" "fractionations" ;
+lin fractious_A = mkAMost "fractious" "fractiously" ;
+lin fractiousness_N = mkN "fractiousness" "fractiousnesses" ;
+lin fracture_N = mkN "fracture" "fractures" ;
+lin fracture_V = mkV "fracture" "fractured" "fractured" ;
+lin fragile_A = mkAMost "fragile" "fragilely" ;
+lin fragility_N = mkN "fragility" "fragilities" ;
+lin fragment_N = mkN "fragment" "fragments" ;
+lin fragment_V = mkV "fragment" "fragmented" "fragmented" ;
+lin fragmental_A = mkAMost "fragmental" "fragmentally" ;
+lin fragmentary_A = mkAMost "fragmentary" "fragmentarily" ;
+lin fragmentation_N = mkN "fragmentation" "fragmentations" ;
+lin fragrance_N = mkN "fragrance" "fragrances" ;
+lin fragrant_A = mkAMost "fragrant" "fragrantly" ;
+lin frail_A = mkA "frail" "frailer" "frailest" "frailly" ;
+lin frail_N = mkN "frail" "frails" ;
+lin frailty_N = mkN "frailty" "frailties" ;
+lin fraise_N = mkN "fraise" "fraises" ;
+lin frame_N = mkN "frame" "frames" ;
+lin frame_V = mkV "frame" "framed" "framed" ;
+lin frame_up_N = mkN "frame-up" "frame-ups" ;
+lin framer_N = mkN "framer" "framers" ;
+lin framework_N = mkN "framework" "frameworks" ;
+lin framing_N = mkN "framing" "framings" ;
+lin franc_N = mkN "franc" "francs" ;
+lin franchise_N = mkN "franchise" "franchises" ;
+lin franciscan_A = mkAMost "franciscan" "franciscanly" ;
+lin franciscan_N = mkN "franciscan" "franciscans" ;
+lin francium_N = mkN "francium" "franciums" ;
+lin frangible_A = mkAMost "frangible" "frangibly" ;
+lin frangipane_N = mkN "frangipane" "frangipanes" ;
+lin frangipani_N = mkN "frangipani" "frangipanis" ;
+lin frank_A = mkA "frank" "franker" "frankest" "frankly" ;
+lin frank_N = mkN "frank" "franks" ;
+lin frank_V = mkV "frank" "franked" "franked" ;
+lin frankfurter_N = mkN "frankfurter" "frankfurters" ;
+lin frankincense_N = mkN "frankincense" "frankincenses" ;
+lin franking_machine_N = mkN "franking-machine" "franking-machines" ;
+lin franklin_N = mkN "franklin" "franklins" ;
+lin frankness_N = mkN "frankness" "franknesses" ;
+lin frantic_A = mkAMost "frantic" "franticly" ;
+lin frantically_Adv = mkAdv "frantically" ;
+lin frappe_N = mkN "frappe" "frappes" ;
+lin fraternal_A = mkAMost "fraternal" "fraternally" ;
+lin fraternity_N = mkN "fraternity" "fraternities" ;
+lin fraternization_N = mkN "fraternization" "fraternizations" ;
+lin fraternize_V = mkV "fraternize" "fraternized" "fraternized" ;
+lin fratricide_N = mkN "fratricide" "fratricides" ;
+lin frau_N = mkN "frau" "fraus" ;
+lin fraud_N = mkN "fraud" "frauds" ;
+lin fraudulence_N = mkN "fraudulence" "fraudulences" ;
+lin fraudulent_A = mkAMost "fraudulent" "fraudulently" ;
+lin fraught_A = mkAMost "fraught" "fraughtly" ;
+lin fraxinella_N = mkN "fraxinella" "fraxinellas" ;
+lin fray_N = mkN "fray" "frays" ;
+lin fray_V = mkV "fray" "frayed" "frayed" ;
+lin frazzle_N = mkN "frazzle" "frazzles" ;
+lin freak_N = mkN "freak" "freaks" ;
+lin freak_V = mkV "freak" "freaked" "freaked" ;
+lin freak_out_N = mkN "freak-out" "freak-outs" ;
+lin freakish_A = mkAMost "freakish" "freakishly" ;
+lin freakishness_N = mkN "freakishness" "freakishnesses" ;
+lin freaky_A = mkA "freaky" "freakier" "freakiest" "freakily" ;
+lin freckle_N = mkN "freckle" "freckles" ;
+lin freckle_V = mkV "freckle" "freckled" "freckled" ;
+lin free_A = mkA "free" "freer" "freest" "freely" ;
+lin free_N = mkN "free" "frees" ;
+lin free_V = mkV "free" "freed" "freed" ;
+lin free_and_easy_A = mkAMost "free-and-easy" "free-and-easily" ;
+lin free_for_all_N = mkN "free-for-all" "free-for-alls" ;
+lin free_handed_A = mkAMost "free-handed" "free-handedly" ;
+lin free_list_N = mkN "free-list" "free-lists" ;
+lin free_liver_N = mkN "free-liver" "free-livers" ;
+lin free_living_N = mkN "free-living" "free-livings" ;
+lin free_range_A = mkAMost "free-range" "free-rangely" ;
+lin free_spoken_A = mkAMost "free-spoken" "free-spokenly" ;
+lin free_standing_A = mkAMost "free-standing" "free-standingly" ;
+lin free_thinker_N = mkN "free-thinker" "free-thinkers" ;
+lin free_thinking_A = mkAMost "free-thinking" "free-thinkingly" ;
+lin free_thought_N = mkN "free-thought" "free-thoughts" ;
+lin free_trader_N = mkN "free-trader" "free-traders" ;
+lin freebie_N = mkN "freebie" "freebies" ;
+lin freebooter_N = mkN "freebooter" "freebooters" ;
+lin freeborn_A = mkAMost "freeborn" "freebornly" ;
+lin freedman_N = mkN "freedman" "freedmen" ;
+lin freedom_N = mkN "freedom" "freedoms" ;
+lin freehand_A = mkAMost "freehand" "freehandly" ;
+lin freehold_N = mkN "freehold" "freeholds" ;
+lin freeholder_N = mkN "freeholder" "freeholders" ;
+lin freelance_A = mkAMost "freelance" "freelancely" ;
+lin freelance_N = mkN "freelance" "freelances" ;
+lin freelance_V = mkV "freelance" "freelanced" "freelanced" ;
+lin freelancer_N = mkN "freelancer" "freelancers" ;
+lin freeloader_N = mkN "freeloader" "freeloaders" ;
+lin freemail_N = mkN "freemail" "freemails" ;
+lin freeman_N = mkN "freeman" "freemen" ;
+lin freemason_N = mkN "freemason" "freemasons" ;
+lin freemasonry_N = mkN "freemasonry" "freemasonries" ;
+lin freesia_N = mkN "freesia" "freesias" ;
+lin freestanding_A = mkAMost "freestanding" "freestandingly" ;
+lin freestone_N = mkN "freestone" "freestones" ;
+lin freestyle_N = mkN "freestyle" "freestyles" ;
+lin freetail_N = mkN "freetail" "freetails" ;
+lin freeware_N = mkN "freeware" "freewares" ;
+lin freeway_N = mkN "freeway" "freeways" ;
+lin freewheel_N = mkN "freewheel" "freewheels" ;
+lin freewheel_V = mkV "freewheel" "freewheeled" "freewheeled" ;
+lin freewill_A = mkAMost "freewill" "freewilly" ;
+lin freeze_N = mkN "freeze" "freezes" ;
+lin freeze_freezed_V = mkV "freeze" "freezed" "freezed" ;
+lin freeze_froze_V = mkV "freeze" "froze" "frozen" ;
+lin freezer_N = mkN "freezer" "freezers" ;
+lin freezing_mixture_N = mkN "freezing-mixture" "freezing-mixtures" ;
+lin freezing_point_N = mkN "freezing-point" "freezing-points" ;
+lin freight_N = mkN "freight" "freights" ;
+lin freight_V = mkV "freight" "freighted" "freighted" ;
+lin freight_train_N = mkN "freight-train" "freight-trains" ;
+lin freighter_N = mkN "freighter" "freighters" ;
+lin freightliner_N = mkN "freightliner" "freightliners" ;
+lin french_N = mkN "french" "frenches" ;
+lin frenchman_N = mkN "frenchman" "frenchmen" ;
+lin frenchwoman_N = mkN "frenchwoman" "frenchwomen" ;
+lin frenetic_A = mkAMost "frenetic" "freneticly" ;
+lin frenzied_A = mkAMost "frenzied" "frenziedly" ;
+lin frenzy_N = mkN "frenzy" "frenzies" ;
+lin frequency_N = mkN "frequency" "frequencies" ;
+lin frequent_A = mkAMost "frequent" "frequently" ;
+lin frequent_V = mkV "frequent" "frequented" "frequented" ;
+lin frequentative_N = mkN "frequentative" "frequentatives" ;
+lin fresco_N = mkN "fresco" "frescos" ;
+lin fresco_V = mkV "fresco" "frescoed" "frescoed" ;
+lin fresh_A = mkA "fresh" "fresher" "freshest" "freshly" ;
+lin fresh_Adv = mkAdv "fresh" ;
+lin freshen_freshened_V = mkV "freshen" "freshened" "freshened" ;
+lin freshen_freshenned_V = mkV "freshen" "freshenned" "freshenned" ;
+lin freshener_N = mkN "freshener" "fresheners" ;
+lin fresher_N = mkN "fresher" "freshers" ;
+lin freshet_N = mkN "freshet" "freshets" ;
+lin freshman_A = mkAMost "freshman" "freshmanly" ;
+lin freshman_N = mkN "freshman" "freshmen" ;
+lin freshness_N = mkN "freshness" "freshnesses" ;
+lin freshwater_A = mkAMost "freshwater" "freshwaterly" ;
+lin fret_N = mkN "fret" "frets" ;
+lin fret_V = mkV "fret" "fretted" "fretted" ;
+lin fretful_A = mkAMost "fretful" "fretfully" ;
+lin fretsaw_N = mkN "fretsaw" "fretsaws" ;
+lin fretwork_N = mkN "fretwork" "fretworks" ;
+lin freudian_A = mkAMost "freudian" "freudianly" ;
+lin friability_N = mkN "friability" "friabilities" ;
+lin friable_A = mkAMost "friable" "friably" ;
+lin friar_N = mkN "friar" "friars" ;
+lin friary_N = mkN "friary" "friaries" ;
+lin fricandeau_N = mkN "fricandeau" "fricandeaus" ;
+lin fricassee_N = mkN "fricassee" "fricassees" ;
+lin fricassee_V = mkV "fricassee" "fricassaw" "fricasseen" ;
+lin fricative_A = mkAMost "fricative" "fricatively" ;
+lin fricative_N = mkN "fricative" "fricatives" ;
+lin friction_N = mkN "friction" "frictions" ;
+lin frictional_A = mkAMost "frictional" "frictionally" ;
+lin frictionless_A = mkAMost "frictionless" "frictionlessly" ;
+lin fridge_N = mkN "fridge" "fridges" ;
+lin friedcake_N = mkN "friedcake" "friedcakes" ;
+lin friend_N = mkN "friend" "friends" ;
+lin friendless_A = mkAMost "friendless" "friendlessly" ;
+lin friendlessness_N = mkN "friendlessness" "friendlessnesses" ;
+lin friendliness_N = mkN "friendliness" "friendlinesses" ;
+lin friendly_A = mkA "friendly" "friendlier" "friendliest" "friendlily" ;
+lin friendly_N = mkN "friendly" "friendlies" ;
+lin friendship_N = mkN "friendship" "friendships" ;
+lin frier_N = mkN "frier" "friers" ;
+lin frieze_N = mkN "frieze" "friezes" ;
+lin frigate_N = mkN "frigate" "frigates" ;
+lin fright_N = mkN "fright" "frights" ;
+lin fright_V = mkV "fright" "frighted" "frighted" ;
+lin frighten_frightened_V = mkV "frighten" "frightened" "frightened" ;
+lin frighten_frightenned_V = mkV "frighten" "frightenned" "frightenned" ;
+lin frightening_A = mkAMost "frightening" "frighteningly" ;
+lin frightful_A = mkAMost "frightful" "frightfully" ;
+lin frightfulness_N = mkN "frightfulness" "frightfulnesses" ;
+lin frigid_A = mkAMost "frigid" "frigidly" ;
+lin frigidity_N = mkN "frigidity" "frigidities" ;
+lin frigorific_A = mkAMost "frigorific" "frigorificly" ;
+lin frijole_N = mkN "frijole" "frijoles" ;
+lin frill_N = mkN "frill" "frills" ;
+lin frilled_A = mkAMost "frilled" "frilledly" ;
+lin frilly_A = mkA "frilly" "frillier" "frilliest" "frillily" ;
+lin fringe_N = mkN "fringe" "fringes" ;
+lin fringe_V = mkV "fringe" "fringed" "fringed" ;
+lin fringepod_N = mkN "fringepod" "fringepods" ;
+lin fringy_A = mkA "fringy" "fringier" "fringiest" "fringily" ;
+lin frippery_N = mkN "frippery" "fripperies" ;
+lin frisk_N = mkN "frisk" "frisks" ;
+lin frisk_V = mkV "frisk" "frisked" "frisked" ;
+lin friskiness_N = mkN "friskiness" "friskinesses" ;
+lin frisky_A = mkA "frisky" "friskier" "friskiest" "friskily" ;
+lin frisson_N = mkN "frisson" "frissons" ;
+lin fritillary_N = mkN "fritillary" "fritillaries" ;
+lin frittata_N = mkN "frittata" "frittatas" ;
+lin fritter_N = mkN "fritter" "fritters" ;
+lin fritter_V = mkV "fritter" "frittered" "frittered" ;
+lin frivol_V = mkV "frivol" "frivolled" "frivolled" ;
+lin frivolity_N = mkN "frivolity" "frivolities" ;
+lin frivolous_A = mkAMost "frivolous" "frivolously" ;
+lin frizz_N = mkN "frizz" "frizzes" ;
+lin frizz_V = mkV "frizz" "frizzed" "frizzed" ;
+lin frizzle_V = mkV "frizzle" "frizzled" "frizzled" ;
+lin frizzy_A = mkA "frizzy" "frizzier" "frizziest" "frizzily" ;
+lin fro_Adv = mkAdv "fro" ;
+lin frock_N = mkN "frock" "frocks" ;
+lin frock_coat_N = mkN "frock-coat" "frock-coats" ;
+lin frog_N = mkN "frog" "frogs" ;
+lin frogbit_N = mkN "frogbit" "frogbits" ;
+lin frogfish_N = mkN "frogfish" "frogfishes" ;
+lin froghopper_N = mkN "froghopper" "froghoppers" ;
+lin frogman_N = mkN "frogman" "frogmen" ;
+lin frogmarch_V = mkV "frogmarch" "frogmarched" "frogmarched" ;
+lin frogmouth_N = mkN "frogmouth" "frogmouths" ;
+lin frolic_N = mkN "frolic" "frolics" ;
+lin frolic_V = mkV "frolic" "frolicked" "frolicked" ;
+lin frolicsome_A = mkAMost "frolicsome" "frolicsomely" ;
+lin from_Prep = mkPrep "from" ;
+lin from_home_Adv = mkAdv "from home" ;
+lin fromward_Prep = mkPrep "fromward" ;
+lin frond_N = mkN "frond" "fronds" ;
+lin front_N = mkN "front" "fronts" ;
+lin front_V = mkV "front" "fronted" "fronted" ;
+lin front_bench_N = mkN "front-bench" "front-benches" ;
+lin front_bencher_N = mkN "front-bencher" "front-benchers" ;
+lin frontage_N = mkN "frontage" "frontages" ;
+lin frontal_A = mkAMost "frontal" "frontally" ;
+lin frontal_N = mkN "frontal" "frontals" ;
+lin frontbencher_N = mkN "frontbencher" "frontbenchers" ;
+lin frontier_N = mkN "frontier" "frontiers" ;
+lin frontiersman_N = mkN "frontiersman" "frontiersmen" ;
+lin frontierswoman_N = mkN "frontierswoman" "frontierswomans" ;
+lin frontispiece_N = mkN "frontispiece" "frontispieces" ;
+lin frontlet_N = mkN "frontlet" "frontlets" ;
+lin frore_A = mkA "frore" "frorer" "frorest" "frorely" ;
+lin frost_N = mkN "frost" "frosts" ;
+lin frost_V = mkV "frost" "frosted" "frosted" ;
+lin frost_bound_A = mkAMost "frost-bound" "frost-boundly" ;
+lin frostbite_N = mkN "frostbite" "frostbites" ;
+lin frostbitten_A = mkAMost "frostbitten" "frostbittenly" ;
+lin frostiness_N = mkN "frostiness" "frostinesses" ;
+lin frosting_N = mkN "frosting" "frostings" ;
+lin frostweed_N = mkN "frostweed" "frostweeds" ;
+lin frosty_A = mkA "frosty" "frostier" "frostiest" "frostily" ;
+lin froth_N = mkN "froth" "froths" ;
+lin froth_V = mkV "froth" "frothed" "frothed" ;
+lin frothiness_N = mkN "frothiness" "frothinesses" ;
+lin frothy_A = mkA "frothy" "frothier" "frothiest" "frothily" ;
+lin frottage_N = mkN "frottage" "frottages" ;
+lin frotteur_N = mkN "frotteur" "frotteurs" ;
+lin froward_A = mkAMost "froward" "frowardly" ;
+lin froward_Prep = mkPrep "froward" ;
+lin frowards_Prep = mkPrep "frowards" ;
+lin frown_N = mkN "frown" "frowns" ;
+lin frown_V = mkV "frown" "frowned" "frowned" ;
+lin frowningly_Adv = mkAdv "frowningly" ;
+lin frowsty_A = mkAMost "frowsty" "frowstily" ;
+lin frowsy_A = mkA "frowsy" "frowsier" "frowsiest" "frowsily" ;
+lin frowzy_A = mkAMost "frowzy" "frowzily" ;
+lin frs_N = mkN "frs" "frses" ;
+lin fructification_N = mkN "fructification" "fructifications" ;
+lin fructify_V = mkV "fructify" "fructified" "fructified" ;
+lin fructose_N = mkN "fructose" "fructoses" ;
+lin fructosuria_N = mkN "fructosuria" "fructosurias" ;
+lin frugal_A = mkAMost "frugal" "frugally" ;
+lin frugality_N = mkN "frugality" "frugalities" ;
+lin fruit_N = mkN "fruit" "fruits" ;
+lin fruit_V = mkV "fruit" "fruited" "fruited" ;
+lin fruit_fly_N = mkN "fruit-fly" "fruit-flies" ;
+lin fruitage_N = mkN "fruitage" "fruitages" ;
+lin fruitcake_N = mkN "fruitcake" "fruitcakes" ;
+lin fruiterer_N = mkN "fruiterer" "fruiterers" ;
+lin fruitful_A = mkAMost "fruitful" "fruitfully" ;
+lin fruitfulness_N = mkN "fruitfulness" "fruitfulnesses" ;
+lin fruition_N = mkN "fruition" "fruitions" ;
+lin fruitless_A = mkAMost "fruitless" "fruitlessly" ;
+lin fruitlessness_N = mkN "fruitlessness" "fruitlessnesses" ;
+lin fruitlet_N = mkN "fruitlet" "fruitlets" ;
+lin fruitwood_N = mkN "fruitwood" "fruitwoods" ;
+lin fruity_A = mkA "fruity" "fruitier" "fruitiest" "fruitily" ;
+lin frumenty_N = mkN "frumenty" "frumenties" ;
+lin frump_N = mkN "frump" "frumps" ;
+lin frumpish_A = mkAMost "frumpish" "frumpishly" ;
+lin frumpy_A = mkA "frumpy" "frumpier" "frumpiest" "frumpily" ;
+lin frustrate_V = mkV "frustrate" "frustrated" "frustrated" ;
+lin frustrating_A = mkAMost "frustrating" "frustratingly" ;
+lin frustration_N = mkN "frustration" "frustrations" ;
+lin frustum_N = mkN "frustum" "frustums" ;
+lin fry_N = mkN "fry" "fry" ;
+lin fry_V = mkV "fry" "fried" "fried" ;
+lin fry_pan_N = mkN "fry-pan" "fry-pans" ;
+lin fryer_N = mkN "fryer" "fryers" ;
+lin frying_N = mkN "frying" "fryings" ;
+lin frying_pan_N = mkN "frying-pan" "frying-pans" ;
+lin fräulein_N = mkN "fräulein" "fräuleins" ;
+lin fuchsia_N = mkN "fuchsia" "fuchsias" ;
+lin fuck_N = mkN "fuck" "fucks" ;
+lin fuck_V = mkV "fuck" "fucked" "fucked" ;
+lin fuck_all_N = mkN "fuck-all" "fuck-alls" ;
+lin fucker_N = mkN "fucker" "fuckers" ;
+lin fucking_Adv = mkAdv "fucking" ;
+lin fucoid_N = mkN "fucoid" "fucoids" ;
+lin fucus_N = mkN "fucus" "fucuses" ;
+lin fuddle_V = mkV "fuddle" "fuddled" "fuddled" ;
+lin fuddy_duddy_N = mkN "fuddy-duddy" "fuddy-duddies" ;
+lin fudge_N = mkN "fudge" "fudges" ;
+lin fudge_V = mkV "fudge" "fudged" "fudged" ;
+lin fuel_N = mkN "fuel" "fuels" ;
+lin fuel_fueled_V = mkV "fuel" "fueled" "fueled" ;
+lin fuel_fuelled_V = mkV "fuel" "fuelled" "fuelled" ;
+lin fueling_N = mkN "fueling" "fuelings" ;
+lin fug_N = mkN "fug" "fugs" ;
+lin fugacity_N = mkN "fugacity" "fugacities" ;
+lin fugal_A = mkAMost "fugal" "fugally" ;
+lin fuggy_A = mkA "fuggy" "fuggier" "fuggiest" "fuggily" ;
+lin fugitive_A = mkAMost "fugitive" "fugitively" ;
+lin fugitive_N = mkN "fugitive" "fugitives" ;
+lin fugleman_N = mkN "fugleman" "fuglemans" ;
+lin fugly_A = mkA "fugly" "fuglier" "fugliest" "fuglily" ;
+lin fugu_N = mkN "fugu" "fugus" ;
+lin fugue_N = mkN "fugue" "fugues" ;
+lin fuji_N = mkN "fuji" "fujis" ;
+lin fulcrum_N = mkN "fulcrum" "fulcrums" ;
+lin fulfil_V = mkV "fulfil" "fulfilled" "fulfilled" ;
+lin fulfill_V = mkV "fulfill" "fulfilled" "fulfilled" ;
+lin fulfillment_N = mkN "fulfillment" "fulfillments" ;
+lin fulfilment_N = mkN "fulfilment" "fulfilments" ;
+lin fulgurating_A = mkAMost "fulgurating" "fulguratingly" ;
+lin full_A = mkA "full" "fuller" "fullest" "fully" ;
+lin full_blooded_A = mkAMost "full-blooded" "full-bloodedly" ;
+lin full_blown_A = mkAMost "full-blown" "full-blownly" ;
+lin full_dress_A = mkAMost "full-dress" "full-dressly" ;
+lin full_fashioned_A = mkAMost "full-fashioned" "full-fashionedly" ;
+lin full_fledged_A = mkAMost "full-fledged" "full-fledgedly" ;
+lin full_grown_A = mkAMost "full-grown" "full-grownly" ;
+lin full_length_A = mkAMost "full-length" "full-lengthly" ;
+lin full_page_A = mkAMost "full-page" "full-pagely" ;
+lin full_scale_A = mkAMost "full-scale" "full-scalely" ;
+lin full_time_A = mkAMost "full-time" "full-timely" ;
+lin full_time_Adv = mkAdv "full-time" ;
+lin fullback_N = mkN "fullback" "fullbacks" ;
+lin fuller_N = mkN "fuller" "fullers" ;
+lin fullerene_N = mkN "fullerene" "fullerenes" ;
+lin fullness_N = mkN "fullness" "fullnesses" ;
+lin fully_fashioned_A = mkAMost "fully-fashioned" "fully-fashionedly" ;
+lin fully_fledged_A = mkAMost "fully-fledged" "fully-fledgedly" ;
+lin fully_grown_A = mkAMost "fully-grown" "fully-grownly" ;
+lin fulmar_N = mkN "fulmar" "fulmars" ;
+lin fulminant_A = mkAMost "fulminant" "fulminantly" ;
+lin fulminate_N = mkN "fulminate" "fulminates" ;
+lin fulminate_V = mkV "fulminate" "fulminated" "fulminated" ;
+lin fulmination_N = mkN "fulmination" "fulminations" ;
+lin fulsome_A = mkAMost "fulsome" "fulsomely" ;
+lin fulsomeness_N = mkN "fulsomeness" "fulsomenesses" ;
+lin fumble_N = mkN "fumble" "fumbles" ;
+lin fumble_V = mkV "fumble" "fumbled" "fumbled" ;
+lin fumbler_N = mkN "fumbler" "fumblers" ;
+lin fume_N = mkN "fume" "fumes" ;
+lin fume_V = mkV "fume" "fumed" "fumed" ;
+lin fumewort_N = mkN "fumewort" "fumeworts" ;
+lin fumigant_N = mkN "fumigant" "fumigants" ;
+lin fumigate_V = mkV "fumigate" "fumigated" "fumigated" ;
+lin fumigation_N = mkN "fumigation" "fumigations" ;
+lin fumigator_N = mkN "fumigator" "fumigators" ;
+lin fumitory_N = mkN "fumitory" "fumitories" ;
+lin fun_N = mkN "fun" "funs" ;
+lin funambulism_N = mkN "funambulism" "funambulisms" ;
+lin funambulist_N = mkN "funambulist" "funambulists" ;
+lin function_N = mkN "function" "functions" ;
+lin function_V = mkV "function" "functioned" "functioned" ;
+lin functional_A = mkAMost "functional" "functionally" ;
+lin functionalism_N = mkN "functionalism" "functionalisms" ;
+lin functionalist_N = mkN "functionalist" "functionalists" ;
+lin functionality_N = mkN "functionality" "functionalities" ;
+lin functionary_N = mkN "functionary" "functionaries" ;
+lin fund_N = mkN "fund" "funds" ;
+lin fund_V = mkV "fund" "funded" "funded" ;
+lin fundamental_A = mkAMost "fundamental" "fundamentally" ;
+lin fundamental_N = mkN "fundamental" "fundamentals" ;
+lin fundamentalism_N = mkN "fundamentalism" "fundamentalisms" ;
+lin fundamentalist_A = mkAMost "fundamentalist" "fundamentalistly" ;
+lin fundamentalist_N = mkN "fundamentalist" "fundamentalists" ;
+lin fundamentals_N = mkN "fundamentals" "fundamentalses" ;
+lin fundraiser_N = mkN "fundraiser" "fundraisers" ;
+lin funds_N = mkN "funds" "fundses" ;
+lin fundus_N = mkN "fundus" "funduses" ;
+lin funeral_N = mkN "funeral" "funerals" ;
+lin funerary_A = mkAMost "funerary" "funerarily" ;
+lin funereal_A = mkAMost "funereal" "funereally" ;
+lin funfair_N = mkN "funfair" "funfairs" ;
+lin fungal_A = mkAMost "fungal" "fungally" ;
+lin fungible_A = mkAMost "fungible" "fungibly" ;
+lin fungible_N = mkN "fungible" "fungibles" ;
+lin fungicidal_A = mkAMost "fungicidal" "fungicidally" ;
+lin fungicide_N = mkN "fungicide" "fungicides" ;
+lin fungoid_A = mkAMost "fungoid" "fungoidly" ;
+lin fungous_A = mkAMost "fungous" "fungously" ;
+lin fungus_N = mkN "fungus" "funguses" ;
+lin funicle_N = mkN "funicle" "funicles" ;
+lin funicular_A = mkAMost "funicular" "funicularly" ;
+lin funicular_N = mkN "funicular" "funiculars" ;
+lin funiculitis_N = mkN "funiculitis" "funiculitises" ;
+lin funiculus_N = mkN "funiculus" "funiculuses" ;
+lin funk_N = mkN "funk" "funks" ;
+lin funk_V = mkV "funk" "funked" "funked" ;
+lin funky_A = mkA "funky" "funkier" "funkiest" "funkily" ;
+lin funnel_N = mkN "funnel" "funnels" ;
+lin funnel_V = mkV "funnel" "funnelled" "funnelled" ;
+lin funniness_N = mkN "funniness" "funninesses" ;
+lin funny_A = mkA "funny" "funnier" "funniest" "funnily" ;
+lin funny_bone_N = mkN "funny-bone" "funny-bones" ;
+lin funrun_N = mkN "funrun" "funruns" ;
+lin fur_N = mkN "fur" "furs" ;
+lin furan_N = mkN "furan" "furans" ;
+lin furbelow_N = mkN "furbelow" "furbelows" ;
+lin furbish_V = mkV "furbish" "furbished" "furbished" ;
+lin furcation_N = mkN "furcation" "furcations" ;
+lin furcula_N = mkN "furcula" "furculas" ;
+lin furfural_N = mkN "furfural" "furfurals" ;
+lin furious_A = mkAMost "furious" "furiously" ;
+lin furl_V = mkV "furl" "furled" "furled" ;
+lin furlike_A = mkAMost "furlike" "furlikely" ;
+lin furlong_N = mkN "furlong" "furlongs" ;
+lin furlough_N = mkN "furlough" "furloughs" ;
+lin furnace_N = mkN "furnace" "furnaces" ;
+lin furnish_V = mkV "furnish" "furnished" "furnished" ;
+lin furnishing_N = mkN "furnishing" "furnishings" ;
+lin furniture_N = mkN "furniture" "furnitures" ;
+lin furor_N = mkN "furor" "furors" ;
+lin furore_N = mkN "furore" "furores" ;
+lin furosemide_N = mkN "furosemide" "furosemides" ;
+lin furred_A = mkAMost "furred" "furredly" ;
+lin furrier_N = mkN "furrier" "furriers" ;
+lin furring_N = mkN "furring" "furrings" ;
+lin furrow_N = mkN "furrow" "furrows" ;
+lin furrow_V = mkV "furrow" "furrowed" "furrowed" ;
+lin furry_A = mkA "furry" "furrier" "furriest" "furrily" ;
+lin further_A = mkAMost "further" "furtherly" ;
+lin further_Adv = mkAdv "further" ;
+lin further_V = mkV "further" "furthered" "furthered" ;
+lin furtherance_N = mkN "furtherance" "furtherances" ;
+lin furthermore_Adv = mkAdv "furthermore" ;
+lin furthermost_A = mkAMost "furthermost" "furthermostly" ;
+lin furthest_A = mkAMost "furthest" "furthestly" ;
+lin furthest_Adv = mkAdv "furthest" ;
+lin furtive_A = mkAMost "furtive" "furtively" ;
+lin furtiveness_N = mkN "furtiveness" "furtivenesses" ;
+lin furunculosis_N = mkN "furunculosis" "furunculosises" ;
+lin fury_N = mkN "fury" "furies" ;
+lin furze_N = mkN "furze" "furzes" ;
+lin fuschia_N = mkN "fuschia" "fuschias" ;
+lin fuscous_A = mkAMost "fuscous" "fuscously" ;
+lin fuse_N = mkN "fuse" "fuses" ;
+lin fuse_V = mkV "fuse" "fused" "fused" ;
+lin fusee_N = mkN "fusee" "fusees" ;
+lin fuselage_N = mkN "fuselage" "fuselages" ;
+lin fusible_A = mkAMost "fusible" "fusibly" ;
+lin fusiform_A = mkAMost "fusiform" "fusiformly" ;
+lin fusil_N = mkN "fusil" "fusils" ;
+lin fusilier_N = mkN "fusilier" "fusiliers" ;
+lin fusillade_N = mkN "fusillade" "fusillades" ;
+lin fusion_N = mkN "fusion" "fusions" ;
+lin fuss_N = mkN "fuss" "fusses" ;
+lin fuss_V = mkV "fuss" "fussed" "fussed" ;
+lin fussiness_N = mkN "fussiness" "fussinesses" ;
+lin fusspot_N = mkN "fusspot" "fusspots" ;
+lin fussy_A = mkA "fussy" "fussier" "fussiest" "fussily" ;
+lin fustian_N = mkN "fustian" "fustians" ;
+lin fusty_A = mkAMost "fusty" "fustily" ;
+lin futile_A = mkAMost "futile" "futilely" ;
+lin futility_N = mkN "futility" "futilities" ;
+lin futon_N = mkN "futon" "futons" ;
+lin future_A = mkAMost "future" "futurely" ;
+lin future_N = mkN "future" "futures" ;
+lin futureless_A = mkAMost "futureless" "futurelessly" ;
+lin futurism_N = mkN "futurism" "futurisms" ;
+lin futurist_N = mkN "futurist" "futurists" ;
+lin futuristic_A = mkAMost "futuristic" "futuristicly" ;
+lin futurity_N = mkN "futurity" "futurities" ;
+lin futurology_N = mkN "futurology" "futurologies" ;
+lin fuze_N = mkN "fuze" "fuzes" ;
+lin fuzz_N = mkN "fuzz" "fuzzes" ;
+lin fuzzed_A = mkAMost "fuzzed" "fuzzedly" ;
+lin fuzzy_A = mkA "fuzzy" "fuzzier" "fuzziest" "fuzzily" ;
+lin fête_N = mkN "fête" "fêtes" ;
+lin fête_V = mkV "fête" "fêted" "fêted" ;
+lin führer_N = mkN "führer" "führers" ;
+lin g_N = mkN "g" "gs" ;
+lin g_man_N = mkN "g-man" "g-men" ;
+lin gab_N = mkN "gab" "gabs" ;
+lin gabapentin_N = mkN "gabapentin" "gabapentins" ;
+lin gabardine_N = mkN "gabardine" "gabardines" ;
+lin gabble_N = mkN "gabble" "gabbles" ;
+lin gabble_V = mkV "gabble" "gabbled" "gabbled" ;
+lin gabbro_N = mkN "gabbro" "gabbroes" ;
+lin gaberdine_N = mkN "gaberdine" "gaberdines" ;
+lin gable_N = mkN "gable" "gables" ;
+lin gabled_A = mkAMost "gabled" "gabledly" ;
+lin gabonese_A = mkAMost "gabonese" "gabonesely" ;
+lin gabonese_N = mkN "gabonese" "gabonese" ;
+lin gad_V = mkV "gad" "gadded" "gadded" ;
+lin gadabout_N = mkN "gadabout" "gadabouts" ;
+lin gaddi_N = mkN "gaddi" "gaddis" ;
+lin gadfly_N = mkN "gadfly" "gadflies" ;
+lin gadget_N = mkN "gadget" "gadgets" ;
+lin gadgeteer_N = mkN "gadgeteer" "gadgeteers" ;
+lin gadgetry_N = mkN "gadgetry" "gadgetries" ;
+lin gadoid_N = mkN "gadoid" "gadoids" ;
+lin gadolinite_N = mkN "gadolinite" "gadolinites" ;
+lin gadolinium_N = mkN "gadolinium" "gadoliniums" ;
+lin gael_N = mkN "gael" "gaels" ;
+lin gaelic_A = mkAMost "gaelic" "gaelicly" ;
+lin gaelic_N = mkN "gaelic" "gaelics" ;
+lin gaff_N = mkN "gaff" "gaffs" ;
+lin gaffe_N = mkN "gaffe" "gaffes" ;
+lin gaffer_N = mkN "gaffer" "gaffers" ;
+lin gaffsail_N = mkN "gaffsail" "gaffsails" ;
+lin gag_N = mkN "gag" "gags" ;
+lin gag_V = mkV "gag" "gagged" "gagged" ;
+lin gaga_A = mkAMost "gaga" "gagaly" ;
+lin gage_N = mkN "gage" "gages" ;
+lin gage_V = mkV "gage" "gaged" "gaged" ;
+lin gaggle_N = mkN "gaggle" "gaggles" ;
+lin gagman_N = mkN "gagman" "gagmen" ;
+lin gaiety_N = mkN "gaiety" "gaieties" ;
+lin gaillardia_N = mkN "gaillardia" "gaillardias" ;
+lin gain_N = mkN "gain" "gains" ;
+lin gain_V = mkV "gain" "gained" "gained" ;
+lin gainer_N = mkN "gainer" "gainers" ;
+lin gainful_A = mkAMost "gainful" "gainfully" ;
+lin gainly_A = mkA "gainly" "gainlier" "gainliest" "gainlily" ;
+lin gainsay_V = mkV "gainsay" "gainsaid" "gainsaid" ;
+lin gainsborough_N = mkN "gainsborough" "gainsboroughs" ;
+lin gait_N = mkN "gait" "gaits" ;
+lin gaiter_N = mkN "gaiter" "gaiters" ;
+lin gal_N = mkN "gal" "gals" ;
+lin gala_N = mkN "gala" "galas" ;
+lin galactagogue_N = mkN "galactagogue" "galactagogues" ;
+lin galactic_A = mkAMost "galactic" "galacticly" ;
+lin galactocele_N = mkN "galactocele" "galactoceles" ;
+lin galactose_N = mkN "galactose" "galactoses" ;
+lin galactosemia_N = mkN "galactosemia" "galactosemias" ;
+lin galactosis_N = mkN "galactosis" "galactosises" ;
+lin galago_N = mkN "galago" "galagoes" ;
+lin galangal_N = mkN "galangal" "galangals" ;
+lin galantine_N = mkN "galantine" "galantines" ;
+lin galax_N = mkN "galax" "galaxes" ;
+lin galaxy_N = mkN "galaxy" "galaxies" ;
+lin galbanum_N = mkN "galbanum" "galbanums" ;
+lin galbulus_N = mkN "galbulus" "galbuluses" ;
+lin gale_N = mkN "gale" "gales" ;
+lin galea_N = mkN "galea" "galeas" ;
+lin galena_N = mkN "galena" "galenas" ;
+lin galere_N = mkN "galere" "galeres" ;
+lin galingale_N = mkN "galingale" "galingales" ;
+lin gall_N = mkN "gall" "galls" ;
+lin gall_V = mkV "gall" "galled" "galled" ;
+lin gallamine_N = mkN "gallamine" "gallamines" ;
+lin gallant_A = mkAMost "gallant" "gallantly" ;
+lin gallant_N = mkN "gallant" "gallants" ;
+lin gallantry_N = mkN "gallantry" "gallantries" ;
+lin gallbladder_N = mkN "gallbladder" "gallbladders" ;
+lin galleon_N = mkN "galleon" "galleons" ;
+lin gallery_N = mkN "gallery" "galleries" ;
+lin galley_N = mkN "galley" "galleys" ;
+lin galley_proof_N = mkN "galley-proof" "galley-proofs" ;
+lin galley_slave_N = mkN "galley-slave" "galley-slaves" ;
+lin gallfly_N = mkN "gallfly" "gallflies" ;
+lin gallic_A = mkAMost "gallic" "gallicly" ;
+lin gallicism_N = mkN "gallicism" "gallicisms" ;
+lin gallinaceous_A = mkAMost "gallinaceous" "gallinaceously" ;
+lin gallinule_N = mkN "gallinule" "gallinules" ;
+lin gallium_N = mkN "gallium" "galliums" ;
+lin gallivant_V = mkV "gallivant" "gallivanted" "gallivanted" ;
+lin gallon_N = mkN "gallon" "gallons" ;
+lin gallop_N = mkN "gallop" "gallops" ;
+lin gallop_V = mkV "gallop" "galloped" "galloped" ;
+lin gallows_N = mkN "gallows" "gallowses" ;
+lin gallows_bird_N = mkN "gallows-bird" "gallows-birds" ;
+lin gallstone_N = mkN "gallstone" "gallstones" ;
+lin galoot_N = mkN "galoot" "galoots" ;
+lin galore_Adv = mkAdv "galore" ;
+lin galosh_N = mkN "galosh" "galoshes" ;
+lin galumph_V = mkV "galumph" "galumphed" "galumphed" ;
+lin galvanic_A = mkAMost "galvanic" "galvanicly" ;
+lin galvanism_N = mkN "galvanism" "galvanisms" ;
+lin galvanization_N = mkN "galvanization" "galvanizations" ;
+lin galvanize_V = mkV "galvanize" "galvanized" "galvanized" ;
+lin galvanizer_N = mkN "galvanizer" "galvanizers" ;
+lin galvanometer_N = mkN "galvanometer" "galvanometers" ;
+lin gam_N = mkN "gam" "gams" ;
+lin gambian_A = mkAMost "gambian" "gambianly" ;
+lin gambian_N = mkN "gambian" "gambians" ;
+lin gambist_N = mkN "gambist" "gambists" ;
+lin gambit_N = mkN "gambit" "gambits" ;
+lin gamble_N = mkN "gamble" "gambles" ;
+lin gamble_V = mkV "gamble" "gambled" "gambled" ;
+lin gambler_N = mkN "gambler" "gamblers" ;
+lin gambling_N = mkN "gambling" "gamblings" ;
+lin gambling_den_N = mkN "gambling-den" "gambling-dens" ;
+lin gamboge_N = mkN "gamboge" "gamboges" ;
+lin gambol_N = mkN "gambol" "gambols" ;
+lin gambol_V = mkV "gambol" "gambolled" "gambolled" ;
+lin gambrel_N = mkN "gambrel" "gambrels" ;
+lin game_A = mkAMost "game" "gamely" ;
+lin game_N = mkN "game" "games" ;
+lin game_V = mkV "game" "gamed" "gamed" ;
+lin game_bag_N = mkN "game-bag" "game-bags" ;
+lin game_bird_N = mkN "game-bird" "game-birds" ;
+lin game_licence_N = mkN "game-licence" "game-licences" ;
+lin gamebag_N = mkN "gamebag" "gamebags" ;
+lin gamecock_N = mkN "gamecock" "gamecocks" ;
+lin gamekeeper_N = mkN "gamekeeper" "gamekeepers" ;
+lin gamelan_N = mkN "gamelan" "gamelans" ;
+lin games_master_N = mkN "games-master" "games-masters" ;
+lin games_mistress_N = mkN "games-mistress" "games-mistresses" ;
+lin gamesmanship_N = mkN "gamesmanship" "gamesmanships" ;
+lin gametangium_N = mkN "gametangium" "gametangiums" ;
+lin gamete_N = mkN "gamete" "gametes" ;
+lin gametocyte_N = mkN "gametocyte" "gametocytes" ;
+lin gametoecium_N = mkN "gametoecium" "gametoeciums" ;
+lin gametogenesis_N = mkN "gametogenesis" "gametogenesises" ;
+lin gametophore_N = mkN "gametophore" "gametophores" ;
+lin gametophyte_N = mkN "gametophyte" "gametophytes" ;
+lin gamey_A = mkAMost "gamey" "gameily" ;
+lin gamine_N = mkN "gamine" "gamines" ;
+lin gaminess_N = mkN "gaminess" "gaminesses" ;
+lin gaming_house_N = mkN "gaming-house" "gaming-houses" ;
+lin gaming_table_N = mkN "gaming-table" "gaming-tables" ;
+lin gamma_N = mkN "gamma" "gammas" ;
+lin gammon_N = mkN "gammon" "gammons" ;
+lin gammopathy_N = mkN "gammopathy" "gammopathies" ;
+lin gammy_A = mkAMost "gammy" "gammily" ;
+lin gamopetalous_A = mkAMost "gamopetalous" "gamopetalously" ;
+lin gamp_N = mkN "gamp" "gamps" ;
+lin gamut_N = mkN "gamut" "gamuts" ;
+lin gamy_A = mkA "gamy" "gamier" "gamiest" "gamily" ;
+lin gander_N = mkN "gander" "ganders" ;
+lin gang_N = mkN "gang" "gangs" ;
+lin gang_V = mkV "gang" "ganged" "ganged" ;
+lin ganger_N = mkN "ganger" "gangers" ;
+lin gangling_A = mkAMost "gangling" "ganglingly" ;
+lin ganglion_N = mkN "ganglion" "ganglions" ;
+lin gangplank_N = mkN "gangplank" "gangplanks" ;
+lin gangrene_N = mkN "gangrene" "gangrenes" ;
+lin gangrene_V = mkV "gangrene" "gangrened" "gangrened" ;
+lin gangrenous_A = mkAMost "gangrenous" "gangrenously" ;
+lin gangsaw_N = mkN "gangsaw" "gangsaws" ;
+lin gangsta_N = mkN "gangsta" "gangstas" ;
+lin gangster_N = mkN "gangster" "gangsters" ;
+lin gangway_N = mkN "gangway" "gangways" ;
+lin gannet_N = mkN "gannet" "gannets" ;
+lin ganoid_N = mkN "ganoid" "ganoids" ;
+lin ganoin_N = mkN "ganoin" "ganoins" ;
+lin gantlet_N = mkN "gantlet" "gantlets" ;
+lin gantry_N = mkN "gantry" "gantries" ;
+lin gaol_N = mkN "gaol" "gaols" ;
+lin gaol_V = mkV "gaol" "gaoled" "gaoled" ;
+lin gaolbird_N = mkN "gaolbird" "gaolbirds" ;
+lin gaolbreak_N = mkN "gaolbreak" "gaolbreaks" ;
+lin gaoler_N = mkN "gaoler" "gaolers" ;
+lin gap_N = mkN "gap" "gaps" ;
+lin gap_toothed_A = mkAMost "gap-toothed" "gap-toothedly" ;
+lin gape_N = mkN "gape" "gapes" ;
+lin gape_V = mkV "gape" "gaped" "gaped" ;
+lin gar_N = mkN "gar" "gars" ;
+lin garage_N = mkN "garage" "garages" ;
+lin garage_V = mkV "garage" "garaged" "garaged" ;
+lin garambulla_N = mkN "garambulla" "garambullas" ;
+lin garb_N = mkN "garb" "garbs" ;
+lin garb_V = mkV "garb" "garbed" "garbed" ;
+lin garbage_N = mkN "garbage" "garbages" ;
+lin garbage_can_N = mkN "garbage-can" "garbage-cans" ;
+lin garble_V = mkV "garble" "garbled" "garbled" ;
+lin garboard_N = mkN "garboard" "garboards" ;
+lin garbology_N = mkN "garbology" "garbologies" ;
+lin garden_N = mkN "garden" "gardens" ;
+lin garden_V = mkV "garden" "gardened" "gardened" ;
+lin garden_truck_N = mkN "garden-truck" "garden-trucks" ;
+lin gardener_N = mkN "gardener" "gardeners" ;
+lin gardenia_N = mkN "gardenia" "gardenias" ;
+lin gardening_N = mkN "gardening" "gardenings" ;
+lin garganey_N = mkN "garganey" "garganeys" ;
+lin gargantuan_A = mkAMost "gargantuan" "gargantuanly" ;
+lin gargle_N = mkN "gargle" "gargles" ;
+lin gargle_V = mkV "gargle" "gargled" "gargled" ;
+lin gargoyle_N = mkN "gargoyle" "gargoyles" ;
+lin garibaldi_N = mkN "garibaldi" "garibaldis" ;
+lin garish_A = mkAMost "garish" "garishly" ;
+lin garishness_N = mkN "garishness" "garishnesses" ;
+lin garland_N = mkN "garland" "garlands" ;
+lin garland_V = mkV "garland" "garlanded" "garlanded" ;
+lin garlic_N = mkN "garlic" "garlics" ;
+lin garlicky_A = mkAMost "garlicky" "garlickily" ;
+lin garment_N = mkN "garment" "garments" ;
+lin garmentmaker_N = mkN "garmentmaker" "garmentmakers" ;
+lin garner_N = mkN "garner" "garners" ;
+lin garner_V = mkV "garner" "garnered" "garnered" ;
+lin garnet_N = mkN "garnet" "garnets" ;
+lin garnierite_N = mkN "garnierite" "garnierites" ;
+lin garnish_N = mkN "garnish" "garnishes" ;
+lin garnish_V = mkV "garnish" "garnished" "garnished" ;
+lin garnishee_N = mkN "garnishee" "garnishees" ;
+lin garnishment_N = mkN "garnishment" "garnishments" ;
+lin garotte_N = mkN "garotte" "garottes" ;
+lin garotte_V = mkV "garotte" "garotted" "garotted" ;
+lin garret_N = mkN "garret" "garrets" ;
+lin garrison_N = mkN "garrison" "garrisons" ;
+lin garrison_V = mkV "garrison" "garrisoned" "garrisoned" ;
+lin garrote_N = mkN "garrote" "garrotes" ;
+lin garroter_N = mkN "garroter" "garroters" ;
+lin garrotte_N = mkN "garrotte" "garrottes" ;
+lin garrotte_V = mkV "garrotte" "garrotted" "garrotted" ;
+lin garrulity_N = mkN "garrulity" "garrulities" ;
+lin garrulous_A = mkAMost "garrulous" "garrulously" ;
+lin garter_N = mkN "garter" "garters" ;
+lin gas_N = mkN "gas" "gases" ;
+lin gas_V = mkV "gas" "gassed" "gassed" ;
+lin gas_bracket_N = mkN "gas-bracket" "gas-brackets" ;
+lin gas_cooker_N = mkN "gas-cooker" "gas-cookers" ;
+lin gas_engine_N = mkN "gas-engine" "gas-engines" ;
+lin gas_fitter_N = mkN "gas-fitter" "gas-fitters" ;
+lin gas_helmet_N = mkN "gas-helmet" "gas-helmets" ;
+lin gas_holder_N = mkN "gas-holder" "gas-holders" ;
+lin gas_mask_N = mkN "gas-mask" "gas-masks" ;
+lin gas_meter_N = mkN "gas-meter" "gas-meters" ;
+lin gas_oven_N = mkN "gas-oven" "gas-ovens" ;
+lin gas_ring_N = mkN "gas-ring" "gas-rings" ;
+lin gas_station_N = mkN "gas-station" "gas-stations" ;
+lin gas_stove_N = mkN "gas-stove" "gas-stoves" ;
+lin gasbag_N = mkN "gasbag" "gasbags" ;
+lin gaseous_A = mkAMost "gaseous" "gaseously" ;
+lin gaseousness_N = mkN "gaseousness" "gaseousnesses" ;
+lin gasfield_N = mkN "gasfield" "gasfields" ;
+lin gash_N = mkN "gash" "gashes" ;
+lin gash_V = mkV "gash" "gashed" "gashed" ;
+lin gasification_N = mkN "gasification" "gasifications" ;
+lin gasify_V = mkV "gasify" "gasified" "gasified" ;
+lin gasket_N = mkN "gasket" "gaskets" ;
+lin gaskin_N = mkN "gaskin" "gaskins" ;
+lin gaslight_N = mkN "gaslight" "gaslights" ;
+lin gasman_N = mkN "gasman" "gasmans" ;
+lin gasmask_N = mkN "gasmask" "gasmasks" ;
+lin gasohol_N = mkN "gasohol" "gasohols" ;
+lin gasolene_N = mkN "gasolene" "gasolenes" ;
+lin gasoline_N = mkN "gasoline" "gasolines" ;
+lin gasometer_N = mkN "gasometer" "gasometers" ;
+lin gasp_N = mkN "gasp" "gasps" ;
+lin gasp_V = mkV "gasp" "gasped" "gasped" ;
+lin gassing_N = mkN "gassing" "gassings" ;
+lin gassy_A = mkA "gassy" "gassier" "gassiest" "gassily" ;
+lin gasteromycete_N = mkN "gasteromycete" "gasteromycetes" ;
+lin gastrectomy_N = mkN "gastrectomy" "gastrectomies" ;
+lin gastric_A = mkAMost "gastric" "gastricly" ;
+lin gastrin_N = mkN "gastrin" "gastrins" ;
+lin gastritis_N = mkN "gastritis" "gastritises" ;
+lin gastrocnemius_N = mkN "gastrocnemius" "gastrocnemiuses" ;
+lin gastroduodenal_A = mkAMost "gastroduodenal" "gastroduodenally" ;
+lin gastroenteritis_N = mkN "gastroenteritis" "gastroenteritises" ;
+lin gastroenterologist_N = mkN "gastroenterologist" "gastroenterologists" ;
+lin gastroenterology_N = mkN "gastroenterology" "gastroenterologies" ;
+lin gastroenterostomy_N = mkN "gastroenterostomy" "gastroenterostomies" ;
+lin gastroesophageal_A = mkAMost "gastroesophageal" "gastroesophageally" ;
+lin gastrogavage_N = mkN "gastrogavage" "gastrogavages" ;
+lin gastrointestinal_A = mkAMost "gastrointestinal" "gastrointestinally" ;
+lin gastromy_N = mkN "gastromy" "gastromies" ;
+lin gastronomic_A = mkAMost "gastronomic" "gastronomicly" ;
+lin gastronomy_N = mkN "gastronomy" "gastronomies" ;
+lin gastropod_N = mkN "gastropod" "gastropods" ;
+lin gastroscope_N = mkN "gastroscope" "gastroscopes" ;
+lin gastroscopy_N = mkN "gastroscopy" "gastroscopies" ;
+lin gastrostomy_N = mkN "gastrostomy" "gastrostomies" ;
+lin gastrula_N = mkN "gastrula" "gastrulas" ;
+lin gastrulation_N = mkN "gastrulation" "gastrulations" ;
+lin gasworks_N = mkN "gasworks" "gasworks" ;
+lin gat_N = mkN "gat" "gats" ;
+lin gate_N = mkN "gate" "gates" ;
+lin gate_V = mkV "gate" "gated" "gated" ;
+lin gatecrash_V = mkV "gatecrash" "gatecrashed" "gatecrashed" ;
+lin gatecrasher_N = mkN "gatecrasher" "gatecrashers" ;
+lin gatehouse_N = mkN "gatehouse" "gatehouses" ;
+lin gatekeeper_N = mkN "gatekeeper" "gatekeepers" ;
+lin gatepost_N = mkN "gatepost" "gateposts" ;
+lin gateway_N = mkN "gateway" "gateways" ;
+lin gather_N = mkN "gather" "gathers" ;
+lin gather_V = mkV "gather" "gathered" "gathered" ;
+lin gatherer_N = mkN "gatherer" "gatherers" ;
+lin gathering_N = mkN "gathering" "gatherings" ;
+lin gatt_N = mkN "gatt" "gatts" ;
+lin gauche_A = mkAMost "gauche" "gauchely" ;
+lin gaucherie_N = mkN "gaucherie" "gaucheries" ;
+lin gaucho_N = mkN "gaucho" "gauchos" ;
+lin gaud_N = mkN "gaud" "gauds" ;
+lin gaudery_N = mkN "gaudery" "gauderies" ;
+lin gaudy_A = mkA "gaudy" "gaudier" "gaudiest" "gaudily" ;
+lin gaudy_N = mkN "gaudy" "gaudies" ;
+lin gauge_N = mkN "gauge" "gauges" ;
+lin gauge_V = mkV "gauge" "gauged" "gauged" ;
+lin gaul_N = mkN "gaul" "gauls" ;
+lin gaumless_A = mkAMost "gaumless" "gaumlessly" ;
+lin gaunt_A = mkAMost "gaunt" "gauntly" ;
+lin gauntlet_N = mkN "gauntlet" "gauntlets" ;
+lin gauntleted_A = mkAMost "gauntleted" "gauntletedly" ;
+lin gauntness_N = mkN "gauntness" "gauntnesses" ;
+lin gaur_N = mkN "gaur" "gaurs" ;
+lin gauss_N = mkN "gauss" "gausses" ;
+lin gauze_N = mkN "gauze" "gauzes" ;
+lin gauzy_A = mkA "gauzy" "gauzier" "gauziest" "gauzily" ;
+lin gavel_N = mkN "gavel" "gavels" ;
+lin gavial_N = mkN "gavial" "gavials" ;
+lin gavotte_N = mkN "gavotte" "gavottes" ;
+lin gawk_N = mkN "gawk" "gawks" ;
+lin gawker_N = mkN "gawker" "gawkers" ;
+lin gawkiness_N = mkN "gawkiness" "gawkinesses" ;
+lin gawky_A = mkA "gawky" "gawkier" "gawkiest" "gawkily" ;
+lin gawp_V = mkV "gawp" "gawped" "gawped" ;
+lin gay_A = mkA "gay" "gayer" "gayest" "gaily" ;
+lin gay_N = mkN "gay" "gays" ;
+lin gayal_N = mkN "gayal" "gayals" ;
+lin gayness_N = mkN "gayness" "gaynesses" ;
+lin gazania_N = mkN "gazania" "gazanias" ;
+lin gaze_N = mkN "gaze" "gazes" ;
+lin gaze_V = mkV "gaze" "gazed" "gazed" ;
+lin gazebo_N = mkN "gazebo" "gazeboes" ;
+lin gazelle_N = mkN "gazelle" "gazelles" ;
+lin gazette_N = mkN "gazette" "gazettes" ;
+lin gazette_V = mkV "gazette" "gazetted" "gazetted" ;
+lin gazetteer_N = mkN "gazetteer" "gazetteers" ;
+lin gazpacho_N = mkN "gazpacho" "gazpachoes" ;
+lin gazump_V = mkV "gazump" "gazumped" "gazumped" ;
+lin gcse_N = mkN "gcse" "gcses" ;
+lin gean_N = mkN "gean" "geans" ;
+lin gear_N = mkN "gear" "gears" ;
+lin gear_V = mkV "gear" "geared" "geared" ;
+lin gear_case_N = mkN "gear-case" "gear-cases" ;
+lin gearbox_N = mkN "gearbox" "gearboxes" ;
+lin gearing_N = mkN "gearing" "gearings" ;
+lin gearset_N = mkN "gearset" "gearsets" ;
+lin gearshift_N = mkN "gearshift" "gearshifts" ;
+lin gecko_N = mkN "gecko" "geckos" ;
+lin gee_gee_N = mkN "gee-gee" "gee-gees" ;
+lin geebung_N = mkN "geebung" "geebungs" ;
+lin geek_N = mkN "geek" "geeks" ;
+lin geek_V = mkV "geek" "geeked" "geeked" ;
+lin geezer_N = mkN "geezer" "geezers" ;
+lin geiger_N = mkN "geiger" "geigers" ;
+lin geisha_N = mkN "geisha" "geishas" ;
+lin gel_N = mkN "gel" "gels" ;
+lin gel_V = mkV "gel" "gelled" "gelled" ;
+lin gelatin_N = mkN "gelatin" "gelatins" ;
+lin gelatine_N = mkN "gelatine" "gelatines" ;
+lin gelatinous_A = mkAMost "gelatinous" "gelatinously" ;
+lin gelatinousness_N = mkN "gelatinousness" "gelatinousnesses" ;
+lin geld_V = mkV "geld" "gelded" "gelded" ;
+lin gelding_N = mkN "gelding" "geldings" ;
+lin gelechiid_N = mkN "gelechiid" "gelechiids" ;
+lin gelignite_N = mkN "gelignite" "gelignites" ;
+lin gem_N = mkN "gem" "gems" ;
+lin gemfibrozil_N = mkN "gemfibrozil" "gemfibrozils" ;
+lin geminate_N = mkN "geminate" "geminates" ;
+lin gemination_N = mkN "gemination" "geminations" ;
+lin gemma_N = mkN "gemma" "gemmas" ;
+lin gemmed_A = mkAMost "gemmed" "gemmedly" ;
+lin gemmiferous_A = mkAMost "gemmiferous" "gemmiferously" ;
+lin gemmule_N = mkN "gemmule" "gemmules" ;
+lin gempylid_N = mkN "gempylid" "gempylids" ;
+lin gemsbok_N = mkN "gemsbok" "gemsboks" ;
+lin gen_N = mkN "gen" "gens" ;
+lin gen_V = mkV "gen" "genned" "genned" ;
+lin gendarme_N = mkN "gendarme" "gendarmes" ;
+lin gendarmerie_N = mkN "gendarmerie" "gendarmeries" ;
+lin gender_N = mkN "gender" "genders" ;
+lin gene_N = mkN "gene" "genes" ;
+lin genealogic_A = mkAMost "genealogic" "genealogicly" ;
+lin genealogical_A = mkAMost "genealogical" "genealogically" ;
+lin genealogist_N = mkN "genealogist" "genealogists" ;
+lin genealogy_N = mkN "genealogy" "genealogies" ;
+lin general_A = mkAMost "general" "generally" ;
+lin general_N = mkN "general" "generals" ;
+lin generalissimo_N = mkN "generalissimo" "generalissimos" ;
+lin generality_N = mkN "generality" "generalities" ;
+lin generalization_N = mkN "generalization" "generalizations" ;
+lin generalize_V = mkV "generalize" "generalized" "generalized" ;
+lin generalship_N = mkN "generalship" "generalships" ;
+lin generate_V = mkV "generate" "generated" "generated" ;
+lin generation_N = mkN "generation" "generations" ;
+lin generational_A = mkAMost "generational" "generationally" ;
+lin generative_A = mkAMost "generative" "generatively" ;
+lin generator_N = mkN "generator" "generators" ;
+lin generic_A = mkAMost "generic" "genericly" ;
+lin generic_N = mkN "generic" "generics" ;
+lin generically_Adv = mkAdv "generically" ;
+lin generosity_N = mkN "generosity" "generosities" ;
+lin generous_A = mkAMost "generous" "generously" ;
+lin genesis_N = mkN "genesis" "geneses" ;
+lin genet_N = mkN "genet" "genets" ;
+lin genetic_A = mkAMost "genetic" "geneticly" ;
+lin genetically_Adv = mkAdv "genetically" ;
+lin geneticism_N = mkN "geneticism" "geneticisms" ;
+lin geneticist_N = mkN "geneticist" "geneticists" ;
+lin genetics_N = mkN "genetics" "genetics" ;
+lin geneva_N = mkN "geneva" "genevas" ;
+lin genial_A = mkAMost "genial" "genially" ;
+lin geniality_N = mkN "geniality" "genialities" ;
+lin genic_A = mkAMost "genic" "genicly" ;
+lin geniculate_A = mkAMost "geniculate" "geniculately" ;
+lin genie_N = mkN "genie" "genies" ;
+lin genip_N = mkN "genip" "genips" ;
+lin genipa_N = mkN "genipa" "genipas" ;
+lin genipap_N = mkN "genipap" "genipaps" ;
+lin genital_A = mkAMost "genital" "genitally" ;
+lin genitalia_N = mkN "genitalia" "genitalias" ;
+lin genitive_A = mkAMost "genitive" "genitively" ;
+lin genitive_N = mkN "genitive" "genitives" ;
+lin genitor_N = mkN "genitor" "genitors" ;
+lin genitourinary_A = mkAMost "genitourinary" "genitourinarily" ;
+lin genius_N = mkN "genius" "geniuses" ;
+lin genius_loci_N = mkN "genius loci" "IRREG" ;
+lin genlisea_N = mkN "genlisea" "genliseas" ;
+lin genocide_N = mkN "genocide" "genocides" ;
+lin genoise_N = mkN "genoise" "genoises" ;
+lin genome_N = mkN "genome" "genomes" ;
+lin genomics_N = mkN "genomics" "genomicses" ;
+lin genotype_N = mkN "genotype" "genotypes" ;
+lin genotypical_A = mkAMost "genotypical" "genotypically" ;
+lin genre_N = mkN "genre" "genres" ;
+lin genre_painting_N = mkN "genre-painting" "genre-paintings" ;
+lin gent_N = mkN "gent" "gents" ;
+lin gentamicin_N = mkN "gentamicin" "gentamicins" ;
+lin genteel_A = mkAMost "genteel" "genteelly" ;
+lin gentian_N = mkN "gentian" "gentians" ;
+lin gentianella_N = mkN "gentianella" "gentianellas" ;
+lin gentile_A = mkAMost "gentile" "gentilely" ;
+lin gentile_N = mkN "gentile" "gentiles" ;
+lin gentility_N = mkN "gentility" "gentilities" ;
+lin gentle_A = mkA "gentle" "gentler" "gentlest" "gentlely" ;
+lin gentlefolk_N = mkN "gentlefolk" "gentlefolks" ;
+lin gentleman_N = mkN "gentleman" "gentlemen" ;
+lin gentleman_at_arms_N = mkN "gentleman-at-arms" "gentlemen-*at-arms" ;
+lin gentlemanlike_A = mkAMost "gentlemanlike" "gentlemanlikely" ;
+lin gentlemanly_A = mkAMost "gentlemanly" "gentlemanlily" ;
+lin gentleness_N = mkN "gentleness" "gentlenesses" ;
+lin gentlewoman_N = mkN "gentlewoman" "gentlewomen" ;
+lin gently_Adv = mkAdv "gently" ;
+lin gentrification_N = mkN "gentrification" "gentrifications" ;
+lin gentry_N = mkN "gentry" "gentry" ;
+lin genuflect_V = mkV "genuflect" "genuflected" "genuflected" ;
+lin genuflection_N = mkN "genuflection" "genuflections" ;
+lin genuflexion_N = mkN "genuflexion" "genuflexions" ;
+lin genuine_A = mkAMost "genuine" "genuinely" ;
+lin genuineness_N = mkN "genuineness" "genuinenesses" ;
+lin genus_N = mkN "genus" "geni" ;
+lin geocentric_A = mkAMost "geocentric" "geocentricly" ;
+lin geochemistry_N = mkN "geochemistry" "geochemistries" ;
+lin geode_N = mkN "geode" "geodes" ;
+lin geodesic_N = mkN "geodesic" "geodesics" ;
+lin geodesy_N = mkN "geodesy" "geodesies" ;
+lin geodetic_A = mkAMost "geodetic" "geodeticly" ;
+lin geoduck_N = mkN "geoduck" "geoducks" ;
+lin geographer_N = mkN "geographer" "geographers" ;
+lin geographic_A = mkAMost "geographic" "geographicly" ;
+lin geographical_A = mkAMost "geographical" "geographically" ;
+lin geography_N = mkN "geography" "geographies" ;
+lin geological_A = mkAMost "geological" "geologically" ;
+lin geologist_N = mkN "geologist" "geologists" ;
+lin geology_N = mkN "geology" "geologies" ;
+lin geomancer_N = mkN "geomancer" "geomancers" ;
+lin geomancy_N = mkN "geomancy" "geomancies" ;
+lin geometer_N = mkN "geometer" "geometers" ;
+lin geometric_A = mkAMost "geometric" "geometricly" ;
+lin geometrical_A = mkAMost "geometrical" "geometrically" ;
+lin geometrid_N = mkN "geometrid" "geometrids" ;
+lin geometry_N = mkN "geometry" "geometries" ;
+lin geomorphologic_A = mkAMost "geomorphologic" "geomorphologicly" ;
+lin geophagy_N = mkN "geophagy" "geophagies" ;
+lin geophysical_A = mkAMost "geophysical" "geophysically" ;
+lin geophysicist_N = mkN "geophysicist" "geophysicists" ;
+lin geophysics_N = mkN "geophysics" "geophysics" ;
+lin geophyte_N = mkN "geophyte" "geophytes" ;
+lin geophytic_A = mkAMost "geophytic" "geophyticly" ;
+lin geopolitical_A = mkAMost "geopolitical" "geopolitically" ;
+lin geopolitics_N = mkN "geopolitics" "geopolitics" ;
+lin geordie_N = mkN "geordie" "geordies" ;
+lin georgette_N = mkN "georgette" "georgettes" ;
+lin georgian_A = mkAMost "georgian" "georgianly" ;
+lin georgian_N = mkN "georgian" "georgians" ;
+lin geostationary_A = mkAMost "geostationary" "geostationarily" ;
+lin geostrategic_A = mkAMost "geostrategic" "geostrategicly" ;
+lin geostrategy_N = mkN "geostrategy" "geostrategies" ;
+lin geosynchronous_A = mkAMost "geosynchronous" "geosynchronously" ;
+lin geothermal_A = mkAMost "geothermal" "geothermally" ;
+lin geotropism_N = mkN "geotropism" "geotropisms" ;
+lin geranium_N = mkN "geranium" "geraniums" ;
+lin gerardia_N = mkN "gerardia" "gerardias" ;
+lin gerbil_N = mkN "gerbil" "gerbils" ;
+lin gerenuk_N = mkN "gerenuk" "gerenuks" ;
+lin geriatric_A = mkAMost "geriatric" "geriatricly" ;
+lin geriatrician_N = mkN "geriatrician" "geriatricians" ;
+lin geriatrics_N = mkN "geriatrics" "geriatrics" ;
+lin germ_N = mkN "germ" "germs" ;
+lin germander_N = mkN "germander" "germanders" ;
+lin germane_A = mkAMost "germane" "germanely" ;
+lin germaneness_N = mkN "germaneness" "germanenesses" ;
+lin germanic_A = mkAMost "germanic" "germanicly" ;
+lin germanite_N = mkN "germanite" "germanites" ;
+lin germanium_N = mkN "germanium" "germaniums" ;
+lin germfree_A = mkAMost "germfree" "germfreely" ;
+lin germicide_N = mkN "germicide" "germicides" ;
+lin germinal_A = mkAMost "germinal" "germinally" ;
+lin germinate_V = mkV "germinate" "germinated" "germinated" ;
+lin germination_N = mkN "germination" "germinations" ;
+lin germy_A = mkA "germy" "germier" "germiest" "germily" ;
+lin gerontocracy_N = mkN "gerontocracy" "gerontocracies" ;
+lin gerontologist_N = mkN "gerontologist" "gerontologists" ;
+lin gerontology_N = mkN "gerontology" "gerontologies" ;
+lin gerrymander_N = mkN "gerrymander" "gerrymanders" ;
+lin gerrymander_V = mkV "gerrymander" "gerrymandered" "gerrymandered" ;
+lin gerund_N = mkN "gerund" "gerunds" ;
+lin gerundial_A = mkAMost "gerundial" "gerundially" ;
+lin gesneria_N = mkN "gesneria" "gesnerias" ;
+lin gesneriad_N = mkN "gesneriad" "gesneriads" ;
+lin gesso_N = mkN "gesso" "gessoes" ;
+lin gestalt_N = mkN "gestalt" "gestalts" ;
+lin gestapo_N = mkN "gestapo" "gestapos" ;
+lin gestation_N = mkN "gestation" "gestations" ;
+lin gestational_A = mkAMost "gestational" "gestationally" ;
+lin gesticulate_V = mkV "gesticulate" "gesticulated" "gesticulated" ;
+lin gesticulation_N = mkN "gesticulation" "gesticulations" ;
+lin gestural_A = mkAMost "gestural" "gesturally" ;
+lin gesture_N = mkN "gesture" "gestures" ;
+lin gesture_V = mkV "gesture" "gestured" "gestured" ;
+lin get_N = mkN "get" "gets" ;
+lin get_at_able_A = mkAMost "get-at-able" "get-at-ably" ;
+lin get_getted_V = mkV "get" "getted" "getted" ;
+lin get_got_V = mkV "get" "got" "gotten" ;
+lin get_together_N = mkN "get-together" "get-togethers" ;
+lin get_up_N = mkN "get-up" "get-ups" ;
+lin getaway_N = mkN "getaway" "getaways" ;
+lin gettable_A = mkAMost "gettable" "gettably" ;
+lin geum_N = mkN "geum" "geums" ;
+lin geyser_N = mkN "geyser" "geysers" ;
+lin ghanaian_A = mkAMost "ghanaian" "ghanaianly" ;
+lin ghanaian_N = mkN "ghanaian" "ghanaians" ;
+lin gharry_N = mkN "gharry" "gharries" ;
+lin ghastliness_N = mkN "ghastliness" "ghastlinesses" ;
+lin ghastly_A = mkA "ghastly" "ghastlier" "ghastliest" "ghastlily" ;
+lin ghat_N = mkN "ghat" "ghats" ;
+lin ghatti_N = mkN "ghatti" "ghattis" ;
+lin ghee_N = mkN "ghee" "ghees" ;
+lin gherkin_N = mkN "gherkin" "gherkins" ;
+lin ghetto_N = mkN "ghetto" "ghettos" ;
+lin ghillie_N = mkN "ghillie" "ghillies" ;
+lin ghost_N = mkN "ghost" "ghosts" ;
+lin ghost_V = mkV "ghost" "ghosted" "ghosted" ;
+lin ghost_writer_N = mkN "ghost-writer" "ghost-writers" ;
+lin ghostliness_N = mkN "ghostliness" "ghostlinesses" ;
+lin ghostly_A = mkAMost "ghostly" "ghostlily" ;
+lin ghostwriter_N = mkN "ghostwriter" "ghostwriters" ;
+lin ghoul_N = mkN "ghoul" "ghouls" ;
+lin ghoulish_A = mkAMost "ghoulish" "ghoulishly" ;
+lin ghrelin_N = mkN "ghrelin" "ghrelins" ;
+lin gi_N = mkN "gi" "gis" ;
+lin giant_N = mkN "giant" "giants" ;
+lin giantess_N = mkN "giantess" "giantesses" ;
+lin giantism_N = mkN "giantism" "giantisms" ;
+lin giardia_N = mkN "giardia" "giardias" ;
+lin giardiasis_N = mkN "giardiasis" "giardiasises" ;
+lin gib_N = mkN "gib" "gibs" ;
+lin gibber_V = mkV "gibber" "gibbered" "gibbered" ;
+lin gibberellin_N = mkN "gibberellin" "gibberellins" ;
+lin gibberish_N = mkN "gibberish" "gibberishes" ;
+lin gibbet_N = mkN "gibbet" "gibbets" ;
+lin gibbet_V = mkV "gibbet" "gibbeted" "gibbeted" ;
+lin gibbon_N = mkN "gibbon" "gibbons" ;
+lin gibbous_A = mkAMost "gibbous" "gibbously" ;
+lin gibbsite_N = mkN "gibbsite" "gibbsites" ;
+lin gibe_N = mkN "gibe" "gibes" ;
+lin gibe_V = mkV "gibe" "gibed" "gibed" ;
+lin gibibit_N = mkN "gibibit" "gibibits" ;
+lin gibingly_Adv = mkAdv "gibingly" ;
+lin giblet_N = mkN "giblet" "giblets" ;
+lin gibraltarian_A = mkAMost "gibraltarian" "gibraltarianly" ;
+lin gibraltarian_N = mkN "gibraltarian" "gibraltarians" ;
+lin giddiness_N = mkN "giddiness" "giddinesses" ;
+lin giddy_A = mkA "giddy" "giddier" "giddiest" "giddily" ;
+lin gidgee_N = mkN "gidgee" "gidgees" ;
+lin gift_N = mkN "gift" "gifts" ;
+lin gift_V = mkV "gift" "gifted" "gifted" ;
+lin gig_N = mkN "gig" "gigs" ;
+lin gigabit_N = mkN "gigabit" "gigabits" ;
+lin gigabyte_N = mkN "gigabyte" "gigabytes" ;
+lin gigahertz_N = mkN "gigahertz" "gigahertzes" ;
+lin gigantic_A = mkAMost "gigantic" "giganticly" ;
+lin gigantism_N = mkN "gigantism" "gigantisms" ;
+lin giggle_N = mkN "giggle" "giggles" ;
+lin giggle_V = mkV "giggle" "giggled" "giggled" ;
+lin gigolo_N = mkN "gigolo" "gigolos" ;
+lin gilbert_N = mkN "gilbert" "gilberts" ;
+lin gilbertian_A = mkAMost "gilbertian" "gilbertianly" ;
+lin gild_N = mkN "gild" "gilds" ;
+lin gild_V = mkV "gild" "gilded" "gilded" ;
+lin gilder_N = mkN "gilder" "gilders" ;
+lin gildhall_N = mkN "gildhall" "gildhalls" ;
+lin gilding_N = mkN "gilding" "gildings" ;
+lin gill_N = mkN "gill" "gills" ;
+lin gillie_N = mkN "gillie" "gillies" ;
+lin gilt_N = mkN "gilt" "gilts" ;
+lin gilt_edged_A = mkAMost "gilt-edged" "gilt-edgedly" ;
+lin gimbal_N = mkN "gimbal" "gimbals" ;
+lin gimbaled_A = mkAMost "gimbaled" "gimbaledly" ;
+lin gimcrack_A = mkAMost "gimcrack" "gimcrackly" ;
+lin gimel_N = mkN "gimel" "gimels" ;
+lin gimlet_N = mkN "gimlet" "gimlets" ;
+lin gimmick_N = mkN "gimmick" "gimmicks" ;
+lin gimmickry_N = mkN "gimmickry" "gimmickries" ;
+lin gin_N = mkN "gin" "gins" ;
+lin gin_V = mkV "gin" "ginned" "ginned" ;
+lin ginger_A = mkAMost "ginger" "gingerly" ;
+lin ginger_N = mkN "ginger" "gingers" ;
+lin ginger_V = mkV "ginger" "gingered" "gingered" ;
+lin gingerbread_N = mkN "gingerbread" "gingerbreads" ;
+lin gingerly_A = mkAMost "gingerly" "gingerlily" ;
+lin gingerol_N = mkN "gingerol" "gingerols" ;
+lin gingersnap_N = mkN "gingersnap" "gingersnaps" ;
+lin gingery_A = mkAMost "gingery" "gingerily" ;
+lin gingham_N = mkN "gingham" "ginghams" ;
+lin gingiva_N = mkN "gingiva" "gingivas" ;
+lin gingival_A = mkAMost "gingival" "gingivally" ;
+lin gingivitis_N = mkN "gingivitis" "gingivitises" ;
+lin gingko_N = mkN "gingko" "gingkos" ;
+lin ginkgo_N = mkN "ginkgo" "ginkgoes" ;
+lin ginseng_N = mkN "ginseng" "ginsengs" ;
+lin gipsy_N = mkN "gipsy" "gipsies" ;
+lin gipsywort_N = mkN "gipsywort" "gipsyworts" ;
+lin giraffe_N = mkN "giraffe" "giraffes" ;
+lin girandole_N = mkN "girandole" "girandoles" ;
+lin gird_V = mkV "gird" "girded" "girded" ;
+lin girder_N = mkN "girder" "girders" ;
+lin girdle_N = mkN "girdle" "girdles" ;
+lin girdle_V = mkV "girdle" "girdled" "girdled" ;
+lin girl_N = mkN "girl" "girls" ;
+lin girlfriend_N = mkN "girlfriend" "girlfriends" ;
+lin girlhood_N = mkN "girlhood" "girlhoods" ;
+lin girlish_A = mkAMost "girlish" "girlishly" ;
+lin girlishness_N = mkN "girlishness" "girlishnesses" ;
+lin giro_N = mkN "giro" "giroes" ;
+lin girth_N = mkN "girth" "girths" ;
+lin gist_N = mkN "gist" "gists" ;
+lin gitana_N = mkN "gitana" "gitanas" ;
+lin gitano_N = mkN "gitano" "gitanoes" ;
+lin give_N = mkN "give" "gives" ;
+lin give_gave_V = mkV "give" "gave" "given" ;
+lin give_gived_V = mkV "give" "gived" "gived" ;
+lin giveaway_N = mkN "giveaway" "giveaways" ;
+lin given_N = mkN "given" "givens" ;
+lin givenness_N = mkN "givenness" "givennesses" ;
+lin giver_N = mkN "giver" "givers" ;
+lin giveth_V = mkV "giveth" "givethed" "givethed" ;
+lin giving_N = mkN "giving" "givings" ;
+lin gizzard_N = mkN "gizzard" "gizzards" ;
+lin glabella_N = mkN "glabella" "glabellas" ;
+lin glabellar_A = mkAMost "glabellar" "glabellarly" ;
+lin glabrescent_A = mkAMost "glabrescent" "glabrescently" ;
+lin glabrous_A = mkAMost "glabrous" "glabrously" ;
+lin glacial_A = mkAMost "glacial" "glacially" ;
+lin glaciated_A = mkAMost "glaciated" "glaciatedly" ;
+lin glaciation_N = mkN "glaciation" "glaciations" ;
+lin glacier_N = mkN "glacier" "glaciers" ;
+lin glacé_A = mkAMost "glacé" "glacély" ;
+lin glad_A = mkA "glad" "gladder" "gladdest" "gladly" ;
+lin gladden_V = mkV "gladden" "gladdened" "gladdened" ;
+lin glade_N = mkN "glade" "glades" ;
+lin gladiator_N = mkN "gladiator" "gladiators" ;
+lin gladiatorial_A = mkAMost "gladiatorial" "gladiatorially" ;
+lin gladiolus_N = mkN "gladiolus" "gladioluses" ;
+lin gladness_N = mkN "gladness" "gladnesses" ;
+lin gladsome_A = mkAMost "gladsome" "gladsomely" ;
+lin glamor_N = mkN "glamor" "glamors" ;
+lin glamorization_N = mkN "glamorization" "glamorizations" ;
+lin glamorize_V = mkV "glamorize" "glamorized" "glamorized" ;
+lin glamorous_A = mkAMost "glamorous" "glamorously" ;
+lin glamour_N = mkN "glamour" "glamours" ;
+lin glance_N = mkN "glance" "glances" ;
+lin glance_V = mkV "glance" "glanced" "glanced" ;
+lin gland_N = mkN "gland" "glands" ;
+lin glanders_N = mkN "glanders" "glanderses" ;
+lin glandular_A = mkAMost "glandular" "glandularly" ;
+lin glans_N = mkN "glans" "glanses" ;
+lin glare_N = mkN "glare" "glares" ;
+lin glare_V = mkV "glare" "glared" "glared" ;
+lin glaring_A = mkAMost "glaring" "glaringly" ;
+lin glasnost_N = mkN "glasnost" "glasnosts" ;
+lin glass_N = mkN "glass" "glasses" ;
+lin glass_V = mkV "glass" "glassed" "glassed" ;
+lin glass_blower_N = mkN "glass-blower" "glass-blowers" ;
+lin glass_cutter_N = mkN "glass-cutter" "glass-cutters" ;
+lin glass_wool_N = mkN "glass-wool" "glass-wools" ;
+lin glassblower_N = mkN "glassblower" "glassblowers" ;
+lin glassful_N = mkN "glassful" "glassfuls" ;
+lin glasshouse_N = mkN "glasshouse" "glasshouses" ;
+lin glassmaker_N = mkN "glassmaker" "glassmakers" ;
+lin glassware_N = mkN "glassware" "glasswares" ;
+lin glassworks_N = mkN "glassworks" "glassworks" ;
+lin glasswort_N = mkN "glasswort" "glassworts" ;
+lin glassy_A = mkA "glassy" "glassier" "glassiest" "glassily" ;
+lin glaswegian_A = mkAMost "glaswegian" "glaswegianly" ;
+lin glaswegian_N = mkN "glaswegian" "glaswegians" ;
+lin glaucoma_N = mkN "glaucoma" "glaucomas" ;
+lin glauconite_N = mkN "glauconite" "glauconites" ;
+lin glaucous_A = mkAMost "glaucous" "glaucously" ;
+lin glaze_N = mkN "glaze" "glazes" ;
+lin glaze_V = mkV "glaze" "glazed" "glazed" ;
+lin glazier_N = mkN "glazier" "glaziers" ;
+lin gleam_N = mkN "gleam" "gleams" ;
+lin gleam_V = mkV "gleam" "gleamed" "gleamed" ;
+lin glean_V = mkV "glean" "gleaned" "gleaned" ;
+lin gleaner_N = mkN "gleaner" "gleaners" ;
+lin gleba_N = mkN "gleba" "glebas" ;
+lin glebe_N = mkN "glebe" "glebes" ;
+lin glee_N = mkN "glee" "glees" ;
+lin gleeful_A = mkAMost "gleeful" "gleefully" ;
+lin gleet_N = mkN "gleet" "gleets" ;
+lin glen_N = mkN "glen" "glens" ;
+lin glengarry_N = mkN "glengarry" "glengarries" ;
+lin glial_A = mkA "glial" "glialer" "glialest" "glially" ;
+lin glib_A = mkA "glib" "glibber" "glibbest" "glibly" ;
+lin glibness_N = mkN "glibness" "glibnesses" ;
+lin glide_N = mkN "glide" "glides" ;
+lin glide_V = mkV "glide" "glided" "glided" ;
+lin glider_N = mkN "glider" "gliders" ;
+lin gliding_N = mkN "gliding" "glidings" ;
+lin glimmer_N = mkN "glimmer" "glimmers" ;
+lin glimmer_V = mkV "glimmer" "glimmered" "glimmered" ;
+lin glimmery_A = mkAMost "glimmery" "glimmerily" ;
+lin glimpse_N = mkN "glimpse" "glimpses" ;
+lin glimpse_V = mkV "glimpse" "glimpsed" "glimpsed" ;
+lin glint_N = mkN "glint" "glints" ;
+lin glint_V = mkV "glint" "glinted" "glinted" ;
+lin glioblastoma_N = mkN "glioblastoma" "glioblastomas" ;
+lin glioma_N = mkN "glioma" "gliomas" ;
+lin glipizide_N = mkN "glipizide" "glipizides" ;
+lin gliricidia_N = mkN "gliricidia" "gliricidias" ;
+lin glissade_N = mkN "glissade" "glissades" ;
+lin glissade_V = mkV "glissade" "glissaded" "glissaded" ;
+lin glissando_A = mkAMost "glissando" "glissandoly" ;
+lin glissando_Adv = mkAdv "glissando" ;
+lin glissando_N = mkN "glissando" "glissandoes" ;
+lin glisten_V = mkV "glisten" "glistened" "glistened" ;
+lin glister_N = mkN "glister" "glisters" ;
+lin glister_V = mkV "glister" "glistered" "glistered" ;
+lin glitter_N = mkN "glitter" "glitters" ;
+lin glitter_V = mkV "glitter" "glittered" "glittered" ;
+lin gloaming_N = mkN "gloaming" "IRREG" ;
+lin gloat_N = mkN "gloat" "gloats" ;
+lin gloat_V = mkV "gloat" "gloated" "gloated" ;
+lin gloatingly_Adv = mkAdv "gloatingly" ;
+lin global_A = mkAMost "global" "globally" ;
+lin globalisation_N = mkN "globalisation" "globalisations" ;
+lin globalization_N = mkN "globalization" "globalizations" ;
+lin globe_N = mkN "globe" "globes" ;
+lin globeflower_N = mkN "globeflower" "globeflowers" ;
+lin globetrot_V = mkV "globetrot" "globetrotted" "globetrotted" ;
+lin globetrotter_N = mkN "globetrotter" "globetrotters" ;
+lin globigerina_N = mkN "globigerina" "globigerinas" ;
+lin globin_N = mkN "globin" "globins" ;
+lin globular_A = mkAMost "globular" "globularly" ;
+lin globule_N = mkN "globule" "globules" ;
+lin globulin_N = mkN "globulin" "globulins" ;
+lin glochidium_N = mkN "glochidium" "glochidiums" ;
+lin glockenspiel_N = mkN "glockenspiel" "glockenspiels" ;
+lin glogg_N = mkN "glogg" "gloggs" ;
+lin glomerular_A = mkAMost "glomerular" "glomerularly" ;
+lin glomerule_N = mkN "glomerule" "glomerules" ;
+lin glomerulonephritis_N = mkN "glomerulonephritis" "glomerulonephritises" ;
+lin glomerulus_N = mkN "glomerulus" "glomeruluses" ;
+lin gloom_N = mkN "gloom" "glooms" ;
+lin gloominess_N = mkN "gloominess" "gloominesses" ;
+lin glooming_A = mkAMost "glooming" "gloomingly" ;
+lin gloomy_A = mkA "gloomy" "gloomier" "gloomiest" "gloomily" ;
+lin glop_N = mkN "glop" "glops" ;
+lin glorification_N = mkN "glorification" "glorifications" ;
+lin glorify_V = mkV "glorify" "glorified" "glorified" ;
+lin gloriosa_N = mkN "gloriosa" "gloriosas" ;
+lin glorious_A = mkAMost "glorious" "gloriously" ;
+lin glory_N = mkN "glory" "glories" ;
+lin glory_V = mkV "glory" "gloried" "gloried" ;
+lin glory_hole_N = mkN "glory-hole" "glory-holes" ;
+lin gloss_N = mkN "gloss" "glosses" ;
+lin gloss_V = mkV "gloss" "glossed" "glossed" ;
+lin glossalgia_N = mkN "glossalgia" "glossalgias" ;
+lin glossarist_N = mkN "glossarist" "glossarists" ;
+lin glossary_N = mkN "glossary" "glossaries" ;
+lin glossiness_N = mkN "glossiness" "glossinesses" ;
+lin glossitis_N = mkN "glossitis" "glossitises" ;
+lin glossolalia_N = mkN "glossolalia" "glossolalias" ;
+lin glossopharyngeal_A = mkAMost "glossopharyngeal" "glossopharyngeally" ;
+lin glossoptosis_N = mkN "glossoptosis" "glossoptosises" ;
+lin glossy_A = mkA "glossy" "glossier" "glossiest" "glossily" ;
+lin glossy_N = mkN "glossy" "glossies" ;
+lin glottal_A = mkAMost "glottal" "glottally" ;
+lin glottis_N = mkN "glottis" "glottises" ;
+lin glottochronological_A = mkAMost "glottochronological" "glottochronologically" ;
+lin glottochronology_N = mkN "glottochronology" "glottochronologies" ;
+lin glove_N = mkN "glove" "gloves" ;
+lin glove_compartment_N = mkN "glove-compartment" "glove-compartments" ;
+lin gloved_A = mkAMost "gloved" "glovedly" ;
+lin gloveless_A = mkAMost "gloveless" "glovelessly" ;
+lin glow_N = mkN "glow" "IRREG" ;
+lin glow_V = mkV "glow" "glowed" "glowed" ;
+lin glow_worm_N = mkN "glow-worm" "glow-worms" ;
+lin glower_V = mkV "glower" "glowered" "glowered" ;
+lin gloweringly_Adv = mkAdv "gloweringly" ;
+lin glowingly_Adv = mkAdv "glowingly" ;
+lin glowworm_N = mkN "glowworm" "glowworms" ;
+lin gloxinia_N = mkN "gloxinia" "gloxinias" ;
+lin glucagon_N = mkN "glucagon" "glucagons" ;
+lin glucocorticoid_N = mkN "glucocorticoid" "glucocorticoids" ;
+lin glucosamine_N = mkN "glucosamine" "glucosamines" ;
+lin glucose_N = mkN "glucose" "glucoses" ;
+lin glucoside_N = mkN "glucoside" "glucosides" ;
+lin glucosuria_N = mkN "glucosuria" "glucosurias" ;
+lin glue_IRREG_V = mkV "glue" "IRREG" "IRREG" ;
+lin glue_N = mkN "glue" "glues" ;
+lin glue_glued_V = mkV "glue" "glued" "glued" ;
+lin glued_A = mkA "glued" "gluedder" "glueddest" "gluedly" ;
+lin gluey_A = mkAMost "gluey" "glueily" ;
+lin glum_A = mkA "glum" "glummer" "glummest" "glumly" ;
+lin glume_N = mkN "glume" "glumes" ;
+lin glumness_N = mkN "glumness" "glumnesses" ;
+lin gluon_N = mkN "gluon" "gluons" ;
+lin glut_N = mkN "glut" "gluts" ;
+lin glut_V = mkV "glut" "glutted" "glutted" ;
+lin glutamate_N = mkN "glutamate" "glutamates" ;
+lin glutamine_N = mkN "glutamine" "glutamines" ;
+lin gluteal_A = mkAMost "gluteal" "gluteally" ;
+lin glutelin_N = mkN "glutelin" "glutelins" ;
+lin gluten_N = mkN "gluten" "glutens" ;
+lin glutethimide_N = mkN "glutethimide" "glutethimides" ;
+lin gluteus_N = mkN "gluteus" "gluteuses" ;
+lin glutinous_A = mkAMost "glutinous" "glutinously" ;
+lin glutton_N = mkN "glutton" "gluttons" ;
+lin gluttonous_A = mkAMost "gluttonous" "gluttonously" ;
+lin gluttony_N = mkN "gluttony" "gluttonies" ;
+lin glyburide_N = mkN "glyburide" "glyburides" ;
+lin glyceraldehyde_N = mkN "glyceraldehyde" "glyceraldehydes" ;
+lin glyceride_N = mkN "glyceride" "glycerides" ;
+lin glycerine_N = mkN "glycerine" "glycerines" ;
+lin glycerite_N = mkN "glycerite" "glycerites" ;
+lin glycerogelatin_N = mkN "glycerogelatin" "glycerogelatins" ;
+lin glycerol_N = mkN "glycerol" "glycerols" ;
+lin glyceryl_N = mkN "glyceryl" "glyceryls" ;
+lin glycine_N = mkN "glycine" "glycines" ;
+lin glycogen_N = mkN "glycogen" "glycogens" ;
+lin glycogenesis_N = mkN "glycogenesis" "glycogenesises" ;
+lin glycogenic_A = mkAMost "glycogenic" "glycogenicly" ;
+lin glycolysis_N = mkN "glycolysis" "glycolysises" ;
+lin glycoprotein_N = mkN "glycoprotein" "glycoproteins" ;
+lin glycoside_N = mkN "glycoside" "glycosides" ;
+lin glycosuria_N = mkN "glycosuria" "glycosurias" ;
+lin glyph_N = mkN "glyph" "glyphs" ;
+lin glyptics_N = mkN "glyptics" "glypticses" ;
+lin glyptography_N = mkN "glyptography" "glyptographies" ;
+lin gnarled_A = mkAMost "gnarled" "gnarledly" ;
+lin gnash_V = mkV "gnash" "gnashed" "gnashed" ;
+lin gnat_N = mkN "gnat" "gnats" ;
+lin gnatcatcher_N = mkN "gnatcatcher" "gnatcatchers" ;
+lin gnathion_N = mkN "gnathion" "gnathions" ;
+lin gnathostome_N = mkN "gnathostome" "gnathostomes" ;
+lin gnaw_V = mkV "gnaw" "gnawed" "gnawed" ;
+lin gneiss_N = mkN "gneiss" "gneisses" ;
+lin gnetum_N = mkN "gnetum" "gnetums" ;
+lin gnocchi_N = mkN "gnocchi" "gnocchis" ;
+lin gnome_N = mkN "gnome" "gnomes" ;
+lin gnomic_A = mkAMost "gnomic" "gnomicly" ;
+lin gnomish_A = mkAMost "gnomish" "gnomishly" ;
+lin gnomon_N = mkN "gnomon" "gnomons" ;
+lin gnosis_N = mkN "gnosis" "gnosises" ;
+lin gnostic_A = mkAMost "gnostic" "gnosticly" ;
+lin gnu_N = mkN "gnu" "gnus" ;
+lin go_A = mkA "go" "goer" "goest" "goly" ;
+lin go_N = mkN "go" "gi" ;
+lin go_ahead_N = mkN "go-ahead" "go-aheads" ;
+lin go_as_you_please_A = mkAMost "go-as-you-please" "go-as-you-pleasely" ;
+lin go_between_N = mkN "go-between" "go-betweens" ;
+lin go_by_N = mkN "go-by" "IRREG" ;
+lin go_cart_N = mkN "go-cart" "go-carts" ;
+lin go_getter_N = mkN "go-getter" "go-getters" ;
+lin go_goed_V = mkV "go" "goed" "goed" ;
+lin go_kart_N = mkN "go-kart" "go-karts" ;
+lin go_slow_N = mkN "go-slow" "go-slows" ;
+lin go_to_meeting_A = mkAMost "go-to-meeting" "go-to-meetingly" ;
+lin go_went_V = mkV "go" "went" "gone" ;
+lin goad_N = mkN "goad" "goads" ;
+lin goad_V = mkV "goad" "goaded" "goaded" ;
+lin goal_N = mkN "goal" "goals" ;
+lin goal_kick_N = mkN "goal-kick" "goal-kicks" ;
+lin goal_line_N = mkN "goal-line" "goal-lines" ;
+lin goalie_N = mkN "goalie" "goalies" ;
+lin goalkeeper_N = mkN "goalkeeper" "goalkeepers" ;
+lin goalless_A = mkAMost "goalless" "goallessly" ;
+lin goalmouth_N = mkN "goalmouth" "goalmouths" ;
+lin goalpost_N = mkN "goalpost" "goalposts" ;
+lin goat_N = mkN "goat" "goats" ;
+lin goatee_N = mkN "goatee" "goatees" ;
+lin goateed_A = mkAMost "goateed" "goateedly" ;
+lin goatfish_N = mkN "goatfish" "goatfishes" ;
+lin goatherd_N = mkN "goatherd" "goatherds" ;
+lin goatsfoot_N = mkN "goatsfoot" "goatsfoots" ;
+lin goatskin_N = mkN "goatskin" "goatskins" ;
+lin goatsucker_N = mkN "goatsucker" "goatsuckers" ;
+lin gob_N = mkN "gob" "gobs" ;
+lin gobbet_N = mkN "gobbet" "gobbets" ;
+lin gobble_N = mkN "gobble" "gobbles" ;
+lin gobble_V = mkV "gobble" "gobbled" "gobbled" ;
+lin gobbledygook_N = mkN "gobbledygook" "gobbledygooks" ;
+lin gobbler_N = mkN "gobbler" "gobblers" ;
+lin goblet_N = mkN "goblet" "goblets" ;
+lin goblin_N = mkN "goblin" "goblins" ;
+lin gobsmacked_A = mkAMost "gobsmacked" "gobsmackedly" ;
+lin goby_N = mkN "goby" "gobies" ;
+lin god_N = mkN "god" "gods" ;
+lin god_damn_A = mkAMost "god-damn" "god-damnly" ;
+lin god_damned_A = mkAMost "god-damned" "god-damnedly" ;
+lin godchild_N = mkN "godchild" "godchildren" ;
+lin goddam_A = mkAMost "goddam" "goddamly" ;
+lin goddam_Adv = mkAdv "goddam" ;
+lin goddaughter_N = mkN "goddaughter" "goddaughters" ;
+lin goddess_N = mkN "goddess" "goddesses" ;
+lin godfather_N = mkN "godfather" "godfathers" ;
+lin godfearing_A = mkAMost "godfearing" "godfearingly" ;
+lin godforsaken_A = mkAMost "godforsaken" "godforsakenly" ;
+lin godhead_N = mkN "godhead" "godheads" ;
+lin godless_A = mkAMost "godless" "godlessly" ;
+lin godlessness_N = mkN "godlessness" "godlessnesses" ;
+lin godlike_A = mkAMost "godlike" "godlikely" ;
+lin godliness_N = mkN "godliness" "godlinesses" ;
+lin godly_A = mkA "godly" "godlier" "godliest" "godlily" ;
+lin godmother_N = mkN "godmother" "godmothers" ;
+lin godown_N = mkN "godown" "godowns" ;
+lin godparent_N = mkN "godparent" "godparents" ;
+lin godsend_N = mkN "godsend" "godsends" ;
+lin godson_N = mkN "godson" "godsons" ;
+lin godspeed_N = mkN "godspeed" "godspeeds" ;
+lin godwit_N = mkN "godwit" "godwits" ;
+lin goethite_N = mkN "goethite" "goethites" ;
+lin gofer_N = mkN "gofer" "gofers" ;
+lin goffer_N = mkN "goffer" "goffers" ;
+lin goggle_V = mkV "goggle" "goggled" "goggled" ;
+lin goggle_box_N = mkN "goggle-box" "goggle-boxes" ;
+lin goggle_eyed_A = mkAMost "goggle-eyed" "goggle-eyedly" ;
+lin goggles_N = mkN "goggles" "goggleses" ;
+lin going_N = mkN "going" "goings" ;
+lin going_over_N = mkN "going-over" "going-overs" ;
+lin goiter_N = mkN "goiter" "goiters" ;
+lin goitre_N = mkN "goitre" "goitres" ;
+lin goitrogen_N = mkN "goitrogen" "goitrogens" ;
+lin gold_A = mkA "gold" "golder" "goldest" "goldly" ;
+lin gold_N = mkN "gold" "golds" ;
+lin gold_beater_N = mkN "gold-beater" "gold-beaters" ;
+lin gold_digger_N = mkN "gold-digger" "gold-diggers" ;
+lin gold_dust_N = mkN "gold-dust" "gold-dusts" ;
+lin gold_foil_N = mkN "gold-foil" "gold-foils" ;
+lin gold_leaf_N = mkN "gold-leaf" "gold-leafs" ;
+lin gold_plate_N = mkN "gold-plate" "gold-plates" ;
+lin gold_rush_N = mkN "gold-rush" "gold-rushes" ;
+lin goldbeater_N = mkN "goldbeater" "goldbeaters" ;
+lin goldbrick_N = mkN "goldbrick" "goldbricks" ;
+lin goldcrest_N = mkN "goldcrest" "goldcrests" ;
+lin golden_A = mkAMost "golden" "goldenly" ;
+lin goldenbush_N = mkN "goldenbush" "goldenbushes" ;
+lin goldeneye_N = mkN "goldeneye" "goldeneyes" ;
+lin goldenrod_N = mkN "goldenrod" "goldenrods" ;
+lin goldenseal_N = mkN "goldenseal" "goldenseals" ;
+lin goldfield_N = mkN "goldfield" "goldfields" ;
+lin goldfields_N = mkN "goldfields" "goldfieldses" ;
+lin goldfinch_N = mkN "goldfinch" "goldfinches" ;
+lin goldfish_N = mkN "goldfish" "goldfish" ;
+lin goldilocks_N = mkN "goldilocks" "goldilockses" ;
+lin goldmine_N = mkN "goldmine" "goldmines" ;
+lin goldsmith_N = mkN "goldsmith" "goldsmiths" ;
+lin goldstone_N = mkN "goldstone" "goldstones" ;
+lin goldthread_N = mkN "goldthread" "goldthreads" ;
+lin golem_N = mkN "golem" "golems" ;
+lin golf_N = mkN "golf" "golfs" ;
+lin golf_V = mkV "golf" "golfed" "golfed" ;
+lin golf_ball_N = mkN "golf-ball" "golf-balls" ;
+lin golf_club_N = mkN "golf-club" "golf-clubs" ;
+lin golf_course_N = mkN "golf-course" "golf-courses" ;
+lin golf_links_N = mkN "golf-links" "golf-links" ;
+lin golfcart_N = mkN "golfcart" "golfcarts" ;
+lin golfer_N = mkN "golfer" "golfers" ;
+lin golfing_N = mkN "golfing" "golfings" ;
+lin goliard_N = mkN "goliard" "goliards" ;
+lin goliath_N = mkN "goliath" "goliaths" ;
+lin golliwog_N = mkN "golliwog" "golliwogs" ;
+lin golosh_N = mkN "golosh" "goloshes" ;
+lin gomphothere_N = mkN "gomphothere" "gomphotheres" ;
+lin gonad_N = mkN "gonad" "gonads" ;
+lin gonadal_A = mkAMost "gonadal" "gonadally" ;
+lin gonadotropic_A = mkAMost "gonadotropic" "gonadotropicly" ;
+lin gonadotropin_N = mkN "gonadotropin" "gonadotropins" ;
+lin gondola_N = mkN "gondola" "gondolas" ;
+lin gondolier_N = mkN "gondolier" "gondoliers" ;
+lin goner_N = mkN "goner" "goners" ;
+lin gong_N = mkN "gong" "gongs" ;
+lin gong_V = mkV "gong" "gonged" "gonged" ;
+lin gonif_N = mkN "gonif" "gonifs" ;
+lin goniometer_N = mkN "goniometer" "goniometers" ;
+lin gonion_N = mkN "gonion" "gonions" ;
+lin gonioscopy_N = mkN "gonioscopy" "gonioscopies" ;
+lin gonococcus_N = mkN "gonococcus" "gonococcuses" ;
+lin gonorrhea_N = mkN "gonorrhea" "gonorrheas" ;
+lin gonorrhoea_N = mkN "gonorrhoea" "gonorrhoeas" ;
+lin goo_N = mkN "goo" "goos" ;
+lin good_A = mkA "good" "better" "best" "well" ;
+lin good_N = mkN "good" "goods" ;
+lin good_fellowship_N = mkN "good-fellowship" "good-fellowships" ;
+lin good_for_naught_A = mkAMost "good-for-naught" "good-for-naughtly" ;
+lin good_for_naught_N = mkN "good-for-naught" "good-for-naughts" ;
+lin good_for_nothing_A = mkAMost "good-for-nothing" "good-for-nothingly" ;
+lin good_for_nothing_N = mkN "good-for-nothing" "good-for-nothings" ;
+lin good_humoured_A = mkAMost "good-humoured" "good-humouredly" ;
+lin good_looking_A = mkAMost "good-looking" "good-lookingly" ;
+lin good_natured_A = mkAMost "good-natured" "good-naturedly" ;
+lin good_neighbourliness_N = mkN "good-neighbourliness" "good-neighbourlinesses" ;
+lin good_tempered_A = mkAMost "good-tempered" "good-temperedly" ;
+lin good_time_A = mkAMost "good-time" "good-timely" ;
+lin goodish_A = mkAMost "goodish" "goodishly" ;
+lin goodly_A = mkA "goodly" "goodlier" "goodliest" "goodlily" ;
+lin goodness_N = mkN "goodness" "goodnesses" ;
+lin goodwill_N = mkN "goodwill" "goodwills" ;
+lin goody_N = mkN "goody" "goodies" ;
+lin goody_goody_A = mkAMost "goody-goody" "goody-goodily" ;
+lin goody_goody_N = mkN "goody-goody" "goody-goodies" ;
+lin gooey_A = mkA "gooey" "gooeyyer" "gooeyyest" "gooeily" ;
+lin goof_N = mkN "goof" "goofs" ;
+lin goof_V = mkV "goof" "goofed" "goofed" ;
+lin goofy_A = mkA "goofy" "goofier" "goofiest" "goofily" ;
+lin googly_N = mkN "googly" "googlies" ;
+lin googol_N = mkN "googol" "googols" ;
+lin googolplex_N = mkN "googolplex" "googolplexes" ;
+lin gook_N = mkN "gook" "gooks" ;
+lin goon_N = mkN "goon" "goons" ;
+lin goosander_N = mkN "goosander" "goosanders" ;
+lin goose_N = mkN "goose" "IRREG" ;
+lin goose_flesh_N = mkN "goose-flesh" "goose-fleshes" ;
+lin goose_step_N = mkN "goose-step" "goose-steps" ;
+lin gooseberry_N = mkN "gooseberry" "gooseberries" ;
+lin goosefish_N = mkN "goosefish" "goosefishes" ;
+lin goosefoot_N = mkN "goosefoot" "goosefoots" ;
+lin gooseneck_N = mkN "gooseneck" "goosenecks" ;
+lin gopher_N = mkN "gopher" "gophers" ;
+lin goral_N = mkN "goral" "gorals" ;
+lin gordian_A = mkAMost "gordian" "gordianly" ;
+lin gore_N = mkN "gore" "gores" ;
+lin gore_V = mkV "gore" "gored" "gored" ;
+lin gorge_N = mkN "gorge" "gorges" ;
+lin gorge_V = mkV "gorge" "gorged" "gorged" ;
+lin gorgeous_A = mkAMost "gorgeous" "gorgeously" ;
+lin gorgerin_N = mkN "gorgerin" "gorgerins" ;
+lin gorget_N = mkN "gorget" "gorgets" ;
+lin gorgon_N = mkN "gorgon" "gorgons" ;
+lin gorgonian_N = mkN "gorgonian" "gorgonians" ;
+lin gorgonzola_N = mkN "gorgonzola" "gorgonzolas" ;
+lin gorilla_N = mkN "gorilla" "gorillas" ;
+lin gormandize_V = mkV "gormandize" "gormandized" "gormandized" ;
+lin gormless_A = mkAMost "gormless" "gormlessly" ;
+lin gorse_N = mkN "gorse" "gorses" ;
+lin gory_A = mkA "gory" "gorier" "goriest" "gorily" ;
+lin goshawk_N = mkN "goshawk" "goshawks" ;
+lin gosling_N = mkN "gosling" "goslings" ;
+lin gospel_N = mkN "gospel" "gospels" ;
+lin gossamer_N = mkN "gossamer" "gossamers" ;
+lin gossip_N = mkN "gossip" "gossips" ;
+lin gossip_V = mkV "gossip" "gossiped" "gossiped" ;
+lin gossiping_N = mkN "gossiping" "gossipings" ;
+lin goth_N = mkN "goth" "goths" ;
+lin gothic_A = mkAMost "gothic" "gothicly" ;
+lin gothic_N = mkN "gothic" "gothics" ;
+lin gouache_N = mkN "gouache" "gouaches" ;
+lin gouge_N = mkN "gouge" "gouges" ;
+lin gouge_V = mkV "gouge" "gouged" "gouged" ;
+lin gouger_N = mkN "gouger" "gougers" ;
+lin goulash_N = mkN "goulash" "goulashes" ;
+lin gourd_N = mkN "gourd" "gourds" ;
+lin gourde_N = mkN "gourde" "gourdes" ;
+lin gourmand_N = mkN "gourmand" "gourmands" ;
+lin gourmandism_N = mkN "gourmandism" "gourmandisms" ;
+lin gourmet_N = mkN "gourmet" "gourmets" ;
+lin gout_N = mkN "gout" "gouts" ;
+lin gouty_A = mkA "gouty" "goutier" "goutiest" "goutily" ;
+lin govern_V = mkV "govern" "governed" "governed" ;
+lin governance_N = mkN "governance" "governances" ;
+lin governed_N = mkN "governed" "governeds" ;
+lin governess_N = mkN "governess" "governesses" ;
+lin government_N = mkN "government" "governments" ;
+lin governmental_A = mkAMost "governmental" "governmentally" ;
+lin governor_N = mkN "governor" "governors" ;
+lin governor_general_N = mkN "governor-general" "governor-generals" ;
+lin governorship_N = mkN "governorship" "governorships" ;
+lin govt_N = mkN "govt" "govts" ;
+lin gown_N = mkN "gown" "gowns" ;
+lin gown_V = mkV "gown" "gowned" "gowned" ;
+lin gp_N = mkN "gp" "gp's" ;
+lin grab_N = mkN "grab" "grabs" ;
+lin grab_V = mkV "grab" "grabbed" "grabbed" ;
+lin grabber_N = mkN "grabber" "grabbers" ;
+lin grace_N = mkN "grace" "graces" ;
+lin grace_V = mkV "grace" "graced" "graced" ;
+lin graceful_A = mkAMost "graceful" "gracefully" ;
+lin gracefulness_N = mkN "gracefulness" "gracefulnesses" ;
+lin graceless_A = mkAMost "graceless" "gracelessly" ;
+lin gracelessness_N = mkN "gracelessness" "gracelessnesses" ;
+lin gracilariid_N = mkN "gracilariid" "gracilariids" ;
+lin gracile_A = mkAMost "gracile" "gracilely" ;
+lin gracious_A = mkAMost "gracious" "graciously" ;
+lin graciousness_N = mkN "graciousness" "graciousnesses" ;
+lin grackle_N = mkN "grackle" "grackles" ;
+lin grad_N = mkN "grad" "grads" ;
+lin gradable_A = mkAMost "gradable" "gradably" ;
+lin gradation_N = mkN "gradation" "gradations" ;
+lin gradational_A = mkAMost "gradational" "gradationally" ;
+lin grade_N = mkN "grade" "grades" ;
+lin grade_V = mkV "grade" "graded" "graded" ;
+lin grader_N = mkN "grader" "graders" ;
+lin gradient_N = mkN "gradient" "gradients" ;
+lin grading_N = mkN "grading" "gradings" ;
+lin gradual_A = mkAMost "gradual" "gradually" ;
+lin gradual_N = mkN "gradual" "graduals" ;
+lin graduality_N = mkN "graduality" "gradualities" ;
+lin gradualness_N = mkN "gradualness" "gradualnesses" ;
+lin graduate_N = mkN "graduate" "graduates" ;
+lin graduate_V = mkV "graduate" "graduated" "graduated" ;
+lin graduation_N = mkN "graduation" "graduations" ;
+lin graffito_N = mkN "graffito" "graffiti" ;
+lin graft_N = mkN "graft" "grafts" ;
+lin graft_V = mkV "graft" "grafted" "grafted" ;
+lin grail_N = mkN "grail" "grails" ;
+lin grain_N = mkN "grain" "grains" ;
+lin grained_A = mkAMost "grained" "grainedly" ;
+lin grainfield_N = mkN "grainfield" "grainfields" ;
+lin graining_N = mkN "graining" "grainings" ;
+lin gram_N = mkN "gram" "grams" ;
+lin grama_N = mkN "grama" "gramas" ;
+lin gramicidin_N = mkN "gramicidin" "gramicidins" ;
+lin grammar_N = mkN "grammar" "grammars" ;
+lin grammarian_N = mkN "grammarian" "grammarians" ;
+lin grammatical_A = mkAMost "grammatical" "grammatically" ;
+lin gramme_N = mkN "gramme" "grammes" ;
+lin gramophone_N = mkN "gramophone" "gramophones" ;
+lin grampus_N = mkN "grampus" "grampuses" ;
+lin granadilla_N = mkN "granadilla" "granadillas" ;
+lin granary_N = mkN "granary" "granaries" ;
+lin grand_A = mkA "grand" "grander" "grandest" "grandly" ;
+lin grand_prix_N = mkN "grand prix" "grand prices" ;
+lin grandad_N = mkN "grandad" "grandads" ;
+lin grandaunt_N = mkN "grandaunt" "grandaunts" ;
+lin grandchild_N = mkN "grandchild" "grandchildren" ;
+lin granddad_N = mkN "granddad" "granddads" ;
+lin granddaughter_N = mkN "granddaughter" "granddaughters" ;
+lin grandee_N = mkN "grandee" "grandees" ;
+lin grandeur_N = mkN "grandeur" "grandeurs" ;
+lin grandfather_N = mkN "grandfather" "grandfathers" ;
+lin grandiloquence_N = mkN "grandiloquence" "grandiloquences" ;
+lin grandiloquent_A = mkAMost "grandiloquent" "grandiloquently" ;
+lin grandiose_A = mkAMost "grandiose" "grandiosely" ;
+lin grandiosity_N = mkN "grandiosity" "grandiosities" ;
+lin grandma_N = mkN "grandma" "grandmas" ;
+lin grandmaster_N = mkN "grandmaster" "grandmasters" ;
+lin grandmother_N = mkN "grandmother" "grandmothers" ;
+lin grandnephew_N = mkN "grandnephew" "grandnephews" ;
+lin grandniece_N = mkN "grandniece" "grandnieces" ;
+lin grandpa_N = mkN "grandpa" "grandpas" ;
+lin grandparent_N = mkN "grandparent" "grandparents" ;
+lin grandson_N = mkN "grandson" "grandsons" ;
+lin grandstand_N = mkN "grandstand" "grandstands" ;
+lin grandstander_N = mkN "grandstander" "grandstanders" ;
+lin granduncle_N = mkN "granduncle" "granduncles" ;
+lin grange_N = mkN "grange" "granges" ;
+lin granite_N = mkN "granite" "granites" ;
+lin graniteware_N = mkN "graniteware" "granitewares" ;
+lin granitic_A = mkAMost "granitic" "graniticly" ;
+lin grannie_N = mkN "grannie" "grannies" ;
+lin granny_N = mkN "granny" "grannies" ;
+lin granola_N = mkN "granola" "granolas" ;
+lin grant_N = mkN "grant" "grants" ;
+lin grant_V = mkV "grant" "granted" "granted" ;
+lin grantee_N = mkN "grantee" "grantees" ;
+lin granter_N = mkN "granter" "granters" ;
+lin grantor_N = mkN "grantor" "grantors" ;
+lin granular_A = mkAMost "granular" "granularly" ;
+lin granularity_N = mkN "granularity" "granularities" ;
+lin granulate_V = mkV "granulate" "granulated" "granulated" ;
+lin granulation_N = mkN "granulation" "granulations" ;
+lin granule_N = mkN "granule" "granules" ;
+lin granuliferous_A = mkAMost "granuliferous" "granuliferously" ;
+lin granulocyte_N = mkN "granulocyte" "granulocytes" ;
+lin granulocytic_A = mkAMost "granulocytic" "granulocyticly" ;
+lin granuloma_N = mkN "granuloma" "granulomas" ;
+lin granulomatous_A = mkAMost "granulomatous" "granulomatously" ;
+lin grape_N = mkN "grape" "grapes" ;
+lin grape_sugar_N = mkN "grape-sugar" "grape-sugars" ;
+lin grapefruit_N = mkN "grapefruit" "grapefruit" ;
+lin grapelike_A = mkAMost "grapelike" "grapelikely" ;
+lin grapeshot_N = mkN "grapeshot" "grapeshots" ;
+lin grapevine_N = mkN "grapevine" "grapevines" ;
+lin grapey_A = mkAMost "grapey" "grapeily" ;
+lin graph_N = mkN "graph" "graphs" ;
+lin graphic_A = mkAMost "graphic" "graphicly" ;
+lin graphic_N = mkN "graphic" "graphics" ;
+lin graphical_A = mkAMost "graphical" "graphically" ;
+lin graphics_N = mkN "graphics" "graphics" ;
+lin graphite_N = mkN "graphite" "graphites" ;
+lin graphologist_N = mkN "graphologist" "graphologists" ;
+lin graphology_N = mkN "graphology" "graphologies" ;
+lin grapnel_N = mkN "grapnel" "grapnels" ;
+lin grappa_N = mkN "grappa" "grappas" ;
+lin grapple_V = mkV "grapple" "grappled" "grappled" ;
+lin grappling_iron_N = mkN "grappling-iron" "grappling-irons" ;
+lin grasp_N = mkN "grasp" "grasps" ;
+lin grasp_V = mkV "grasp" "grasped" "grasped" ;
+lin grasping_N = mkN "grasping" "graspings" ;
+lin grass_N = mkN "grass" "grasses" ;
+lin grass_V = mkV "grass" "grassed" "grassed" ;
+lin grassfinch_N = mkN "grassfinch" "grassfinches" ;
+lin grassfire_N = mkN "grassfire" "grassfires" ;
+lin grasshopper_N = mkN "grasshopper" "grasshoppers" ;
+lin grassland_N = mkN "grassland" "grasslands" ;
+lin grassless_A = mkAMost "grassless" "grasslessly" ;
+lin grasslike_A = mkAMost "grasslike" "grasslikely" ;
+lin grassroots_A = mkAMost "grassroots" "grassrootsly" ;
+lin grassy_A = mkA "grassy" "grassier" "grassiest" "grassily" ;
+lin grate_N = mkN "grate" "grates" ;
+lin grate_V = mkV "grate" "grated" "grated" ;
+lin grateful_A = mkAMost "grateful" "gratefully" ;
+lin gratefulness_N = mkN "gratefulness" "gratefulnesses" ;
+lin grater_N = mkN "grater" "graters" ;
+lin gratification_N = mkN "gratification" "gratifications" ;
+lin gratify_V = mkV "gratify" "gratified" "gratified" ;
+lin gratifying_A = mkAMost "gratifying" "gratifyingly" ;
+lin grating_N = mkN "grating" "gratings" ;
+lin gratingly_Adv = mkAdv "gratingly" ;
+lin gratis_A = mkAMost "gratis" "gratisly" ;
+lin gratis_Adv = mkAdv "gratis" ;
+lin gratitude_N = mkN "gratitude" "gratitudes" ;
+lin gratuitous_A = mkAMost "gratuitous" "gratuitously" ;
+lin gratuity_N = mkN "gratuity" "gratuities" ;
+lin grave_A = mkA "grave" "graver" "gravest" "gravely" ;
+lin grave_N = mkN "grave" "graves" ;
+lin grave_V = mkV "grave" "IRREG" "IRREG" ;
+lin gravedigger_N = mkN "gravedigger" "gravediggers" ;
+lin gravel_N = mkN "gravel" "gravels" ;
+lin gravel_V = mkV "gravel" "gravelled" "gravelled" ;
+lin gravelly_A = mkAMost "gravelly" "gravellily" ;
+lin gravelweed_N = mkN "gravelweed" "gravelweeds" ;
+lin graven_A = mkAMost "graven" "gravenly" ;
+lin graveness_N = mkN "graveness" "gravenesses" ;
+lin graver_N = mkN "graver" "gravers" ;
+lin graverobber_N = mkN "graverobber" "graverobbers" ;
+lin gravestone_N = mkN "gravestone" "gravestones" ;
+lin graveyard_N = mkN "graveyard" "graveyards" ;
+lin gravida_N = mkN "gravida" "gravidas" ;
+lin gravidity_N = mkN "gravidity" "gravidities" ;
+lin gravimeter_N = mkN "gravimeter" "gravimeters" ;
+lin graving_dock_N = mkN "graving dock" "graving docks" ;
+lin gravitate_V = mkV "gravitate" "gravitated" "gravitated" ;
+lin gravitation_N = mkN "gravitation" "gravitations" ;
+lin gravitational_A = mkAMost "gravitational" "gravitationally" ;
+lin graviton_N = mkN "graviton" "gravitons" ;
+lin gravity_N = mkN "gravity" "gravities" ;
+lin gravure_N = mkN "gravure" "gravures" ;
+lin gravy_N = mkN "gravy" "gravies" ;
+lin gravy_boat_N = mkN "gravy-boat" "gravy-boats" ;
+lin gray_A = mkA "gray" "grayer" "grayest" "graily" ;
+lin gray_N = mkN "gray" "grays" ;
+lin gray_V = mkV "gray" "grayed" "grayed" ;
+lin grayly_Adv = mkAdv "grayly" ;
+lin graze_N = mkN "graze" "grazes" ;
+lin graze_V = mkV "graze" "grazed" "grazed" ;
+lin grazier_N = mkN "grazier" "graziers" ;
+lin grazing_N = mkN "grazing" "grazings" ;
+lin grazing_land_N = mkN "grazing-land" "grazing-lands" ;
+lin grease_N = mkN "grease" "greases" ;
+lin grease_V = mkV "grease" "greased" "greased" ;
+lin grease_gun_N = mkN "grease-gun" "grease-guns" ;
+lin greasepaint_N = mkN "greasepaint" "greasepaints" ;
+lin greaseproof_A = mkAMost "greaseproof" "greaseproofly" ;
+lin greaser_N = mkN "greaser" "greasers" ;
+lin greasewood_N = mkN "greasewood" "greasewoods" ;
+lin greasiness_N = mkN "greasiness" "greasinesses" ;
+lin greasy_A = mkA "greasy" "greasier" "greasiest" "greasily" ;
+lin great_A = mkA "great" "greater" "greatest" "greatly" ;
+lin great_N = mkN "great" "greats" ;
+lin greatcoat_N = mkN "greatcoat" "greatcoats" ;
+lin greater_A = mkAMost "greater" "greaterly" ;
+lin greatest_A = mkAMost "greatest" "greatestly" ;
+lin greathearted_A = mkAMost "greathearted" "greatheartedly" ;
+lin greatness_N = mkN "greatness" "greatnesses" ;
+lin greave_N = mkN "greave" "greaves" ;
+lin greaves_N = mkN "greaves" "greaveses" ;
+lin grebe_N = mkN "grebe" "grebes" ;
+lin grecian_A = mkAMost "grecian" "grecianly" ;
+lin greed_N = mkN "greed" "greeds" ;
+lin greediness_N = mkN "greediness" "greedinesses" ;
+lin greedy_A = mkA "greedy" "greedier" "greediest" "greedily" ;
+lin green_A = mkA "green" "greener" "greenest" "greenly" ;
+lin green_N = mkN "green" "greens" ;
+lin greenback_N = mkN "greenback" "greenbacks" ;
+lin greenbelt_N = mkN "greenbelt" "greenbelts" ;
+lin greenbottle_N = mkN "greenbottle" "greenbottles" ;
+lin greenery_N = mkN "greenery" "greeneries" ;
+lin greeneye_N = mkN "greeneye" "greeneyes" ;
+lin greeneyed_A = mkAMost "greeneyed" "greeneyedly" ;
+lin greenfly_N = mkN "greenfly" "greenflies" ;
+lin greengage_N = mkN "greengage" "greengages" ;
+lin greengrocer_N = mkN "greengrocer" "greengrocers" ;
+lin greengrocery_N = mkN "greengrocery" "greengroceries" ;
+lin greenhorn_N = mkN "greenhorn" "greenhorns" ;
+lin greenhouse_A = mkAMost "greenhouse" "greenhousely" ;
+lin greenhouse_N = mkN "greenhouse" "greenhouses" ;
+lin greenish_A = mkAMost "greenish" "greenishly" ;
+lin greenishness_N = mkN "greenishness" "greenishnesses" ;
+lin greenling_N = mkN "greenling" "greenlings" ;
+lin greenmail_N = mkN "greenmail" "greenmails" ;
+lin greenness_N = mkN "greenness" "greennesses" ;
+lin greenockite_N = mkN "greenockite" "greenockites" ;
+lin greenroom_N = mkN "greenroom" "greenrooms" ;
+lin greens_N = mkN "greens" "greenses" ;
+lin greensand_N = mkN "greensand" "greensands" ;
+lin greenshank_N = mkN "greenshank" "greenshanks" ;
+lin greenside_A = mkAMost "greenside" "greensidely" ;
+lin greenskeeper_N = mkN "greenskeeper" "greenskeepers" ;
+lin greensward_N = mkN "greensward" "greenswards" ;
+lin greenwing_N = mkN "greenwing" "greenwings" ;
+lin greenwood_N = mkN "greenwood" "greenwoods" ;
+lin greet_V = mkV "greet" "greeted" "greeted" ;
+lin greeter_N = mkN "greeter" "greeters" ;
+lin greeting_N = mkN "greeting" "greetings" ;
+lin gregarine_N = mkN "gregarine" "gregarines" ;
+lin gregarious_A = mkAMost "gregarious" "gregariously" ;
+lin gregariousness_N = mkN "gregariousness" "gregariousnesses" ;
+lin gregorian_A = mkAMost "gregorian" "gregorianly" ;
+lin greisen_N = mkN "greisen" "greisens" ;
+lin gremlin_N = mkN "gremlin" "gremlins" ;
+lin grenade_N = mkN "grenade" "grenades" ;
+lin grenadian_A = mkAMost "grenadian" "grenadianly" ;
+lin grenadian_N = mkN "grenadian" "grenadians" ;
+lin grenadier_N = mkN "grenadier" "grenadiers" ;
+lin grenadine_N = mkN "grenadine" "grenadines" ;
+lin grevillea_N = mkN "grevillea" "grevilleas" ;
+lin grey_A = mkA "grey" "greyer" "greyest" "greily" ;
+lin grey_N = mkN "grey" "greys" ;
+lin grey_V = mkV "grey" "greyed" "greyed" ;
+lin grey_headed_A = mkAMost "grey-headed" "grey-headedly" ;
+lin greyback_N = mkN "greyback" "greybacks" ;
+lin greybeard_N = mkN "greybeard" "greybeards" ;
+lin greyhen_N = mkN "greyhen" "greyhens" ;
+lin greyhound_N = mkN "greyhound" "greyhounds" ;
+lin greyish_A = mkAMost "greyish" "greyishly" ;
+lin greylag_N = mkN "greylag" "greylags" ;
+lin grid_N = mkN "grid" "grids" ;
+lin griddle_N = mkN "griddle" "griddles" ;
+lin gridiron_N = mkN "gridiron" "gridirons" ;
+lin gridlock_N = mkN "gridlock" "gridlocks" ;
+lin grief_N = mkN "grief" "griefs" ;
+lin grievance_N = mkN "grievance" "grievances" ;
+lin grieve_V = mkV "grieve" "grieved" "grieved" ;
+lin grievous_A = mkAMost "grievous" "grievously" ;
+lin griffin_N = mkN "griffin" "griffins" ;
+lin griffon_N = mkN "griffon" "griffons" ;
+lin grigri_N = mkN "grigri" "grigris" ;
+lin grill_N = mkN "grill" "grills" ;
+lin grill_V = mkV "grill" "grilled" "grilled" ;
+lin grille_N = mkN "grille" "grilles" ;
+lin grillroom_N = mkN "grillroom" "grillrooms" ;
+lin grim_A = mkA "grim" "grimmer" "grimmest" "grimly" ;
+lin grimace_N = mkN "grimace" "grimaces" ;
+lin grimace_V = mkV "grimace" "grimaced" "grimaced" ;
+lin grime_N = mkN "grime" "grimes" ;
+lin grime_V = mkV "grime" "grimed" "grimed" ;
+lin griminess_N = mkN "griminess" "griminesses" ;
+lin grimness_N = mkN "grimness" "grimnesses" ;
+lin grimoire_N = mkN "grimoire" "grimoires" ;
+lin grimy_A = mkA "grimy" "grimier" "grimiest" "grimily" ;
+lin grin_N = mkN "grin" "grins" ;
+lin grin_V = mkV "grin" "grinned" "grinned" ;
+lin grind_N = mkN "grind" "grinds" ;
+lin grind_V = mkV "grind" "ground" "ground" ;
+lin grinder_N = mkN "grinder" "grinders" ;
+lin grinding_N = mkN "grinding" "grindings" ;
+lin grindstone_N = mkN "grindstone" "grindstones" ;
+lin gringo_N = mkN "gringo" "gringoes" ;
+lin grinner_N = mkN "grinner" "grinners" ;
+lin griot_N = mkN "griot" "griots" ;
+lin grip_N = mkN "grip" "grips" ;
+lin grip_V = mkV "grip" "gripped" "gripped" ;
+lin gripe_N = mkN "gripe" "gripes" ;
+lin grippe_N = mkN "grippe" "grippes" ;
+lin gripsack_N = mkN "gripsack" "gripsacks" ;
+lin grisaille_N = mkN "grisaille" "grisailles" ;
+lin griseofulvin_N = mkN "griseofulvin" "griseofulvins" ;
+lin grisly_A = mkAMost "grisly" "grislily" ;
+lin grison_N = mkN "grison" "grisons" ;
+lin grissino_N = mkN "grissino" "grissinoes" ;
+lin grist_N = mkN "grist" "grists" ;
+lin gristle_N = mkN "gristle" "gristles" ;
+lin gristmill_N = mkN "gristmill" "gristmills" ;
+lin grit_N = mkN "grit" "grits" ;
+lin grit_V = mkV "grit" "gritted" "gritted" ;
+lin grits_N = mkN "grits" "grits" ;
+lin gritty_A = mkA "gritty" "grittier" "grittiest" "grittily" ;
+lin grivet_N = mkN "grivet" "grivets" ;
+lin grizzle_N = mkN "grizzle" "grizzles" ;
+lin grizzle_V = mkV "grizzle" "grizzled" "grizzled" ;
+lin grizzled_A = mkAMost "grizzled" "grizzledly" ;
+lin grizzly_N = mkN "grizzly" "grizzlies" ;
+lin groan_N = mkN "groan" "groans" ;
+lin groan_V = mkV "groan" "groaned" "groaned" ;
+lin groaner_N = mkN "groaner" "groaners" ;
+lin groat_N = mkN "groat" "groats" ;
+lin groats_N = mkN "groats" "groatses" ;
+lin grocer_N = mkN "grocer" "grocers" ;
+lin grocery_N = mkN "grocery" "groceries" ;
+lin groenendael_N = mkN "groenendael" "groenendaels" ;
+lin grog_N = mkN "grog" "grogs" ;
+lin grogginess_N = mkN "grogginess" "grogginesses" ;
+lin groggy_A = mkA "groggy" "groggier" "groggiest" "groggily" ;
+lin grogram_N = mkN "grogram" "grograms" ;
+lin groin_N = mkN "groin" "groins" ;
+lin groin_V = mkV "groin" "groined" "groined" ;
+lin gromwell_N = mkN "gromwell" "gromwells" ;
+lin groom_N = mkN "groom" "grooms" ;
+lin groom_V = mkV "groom" "groomed" "groomed" ;
+lin groomsman_N = mkN "groomsman" "groomsmans" ;
+lin groove_N = mkN "groove" "grooves" ;
+lin groove_V = mkV "groove" "grooved" "grooved" ;
+lin groover_N = mkN "groover" "groovers" ;
+lin grooving_N = mkN "grooving" "groovings" ;
+lin groovy_A = mkA "groovy" "groovier" "grooviest" "groovily" ;
+lin grope_N = mkN "grope" "gropes" ;
+lin grope_V = mkV "grope" "groped" "groped" ;
+lin gropingly_Adv = mkAdv "gropingly" ;
+lin grosbeak_N = mkN "grosbeak" "grosbeaks" ;
+lin groschen_N = mkN "groschen" "groschens" ;
+lin grosgrain_N = mkN "grosgrain" "grosgrains" ;
+lin gross_A = mkAMost "gross" "grossly" ;
+lin gross_N = mkN "gross" "gross" ;
+lin gross_V = mkV "gross" "grossed" "grossed" ;
+lin grossness_N = mkN "grossness" "grossnesses" ;
+lin grosz_N = mkN "grosz" "groszes" ;
+lin grot_N = mkN "grot" "grots" ;
+lin grotesque_A = mkAMost "grotesque" "grotesquely" ;
+lin grotesque_N = mkN "grotesque" "grotesques" ;
+lin grotesqueness_N = mkN "grotesqueness" "grotesquenesses" ;
+lin grotto_N = mkN "grotto" "grottos" ;
+lin grotty_A = mkA "grotty" "grottier" "grottiest" "grottily" ;
+lin grouch_N = mkN "grouch" "grouches" ;
+lin grouch_V = mkV "grouch" "grouched" "grouched" ;
+lin grouchy_A = mkA "grouchy" "grouchier" "grouchiest" "grouchily" ;
+lin ground_N = mkN "ground" "grounds" ;
+lin ground_V = mkV "ground" "grounded" "grounded" ;
+lin ground_bait_N = mkN "ground-bait" "ground-baits" ;
+lin ground_fish_N = mkN "ground-fish" "ground-fish" ;
+lin ground_plan_N = mkN "ground-plan" "ground-plans" ;
+lin ground_rent_N = mkN "ground-rent" "ground-rents" ;
+lin groundbreaking_N = mkN "groundbreaking" "groundbreakings" ;
+lin groundcover_N = mkN "groundcover" "groundcovers" ;
+lin grounder_N = mkN "grounder" "grounders" ;
+lin groundfish_N = mkN "groundfish" "groundfishes" ;
+lin groundhog_N = mkN "groundhog" "groundhogs" ;
+lin grounding_N = mkN "grounding" "groundings" ;
+lin groundless_A = mkAMost "groundless" "groundlessly" ;
+lin groundlessness_N = mkN "groundlessness" "groundlessnesses" ;
+lin groundling_N = mkN "groundling" "groundlings" ;
+lin groundmass_N = mkN "groundmass" "groundmasses" ;
+lin groundnut_N = mkN "groundnut" "groundnuts" ;
+lin grounds_N = mkN "grounds" "groundses" ;
+lin groundsel_N = mkN "groundsel" "groundsels" ;
+lin groundsheet_N = mkN "groundsheet" "groundsheets" ;
+lin groundsman_N = mkN "groundsman" "groundsmen" ;
+lin groundspeed_N = mkN "groundspeed" "groundspeeds" ;
+lin groundwork_N = mkN "groundwork" "groundworks" ;
+lin group_N = mkN "group" "groups" ;
+lin group_V = mkV "group" "grouped" "grouped" ;
+lin grouper_N = mkN "grouper" "groupers" ;
+lin groupie_N = mkN "groupie" "groupies" ;
+lin grouping_N = mkN "grouping" "groupings" ;
+lin groupthink_N = mkN "groupthink" "groupthinks" ;
+lin groupware_N = mkN "groupware" "groupwares" ;
+lin grouse_N = mkN "grouse" "grouse" ;
+lin grouse_V = mkV "grouse" "groused" "groused" ;
+lin grouseberry_N = mkN "grouseberry" "grouseberries" ;
+lin grout_N = mkN "grout" "grouts" ;
+lin grove_N = mkN "grove" "groves" ;
+lin grovel_V = mkV "grovel" "grovelled" "grovelled" ;
+lin groveller_N = mkN "groveller" "grovellers" ;
+lin grow_V = mkV "grow" "grew" "grown" ;
+lin grower_N = mkN "grower" "growers" ;
+lin growing_N = mkN "growing" "growings" ;
+lin growl_N = mkN "growl" "growls" ;
+lin growl_V = mkV "growl" "growled" "growled" ;
+lin growler_N = mkN "growler" "growlers" ;
+lin growling_N = mkN "growling" "growlings" ;
+lin growlingly_Adv = mkAdv "growlingly" ;
+lin grown_up_A = mkAMost "grown-up" "grown-uply" ;
+lin grown_up_N = mkN "grown-up" "grown-ups" ;
+lin growth_N = mkN "growth" "growths" ;
+lin groyne_N = mkN "groyne" "groynes" ;
+lin grub_N = mkN "grub" "grubs" ;
+lin grub_V = mkV "grub" "grubbed" "grubbed" ;
+lin grubbiness_N = mkN "grubbiness" "grubbinesses" ;
+lin grubby_A = mkA "grubby" "grubbier" "grubbiest" "grubbily" ;
+lin grubby_N = mkN "grubby" "grubbies" ;
+lin grubstake_N = mkN "grubstake" "grubstakes" ;
+lin grudge_N = mkN "grudge" "grudges" ;
+lin grudge_V = mkV "grudge" "grudged" "grudged" ;
+lin grudging_A = mkAMost "grudging" "grudgingly" ;
+lin gruel_N = mkN "gruel" "gruels" ;
+lin gruelling_A = mkAMost "gruelling" "gruellingly" ;
+lin gruesome_A = mkAMost "gruesome" "gruesomely" ;
+lin gruesomeness_N = mkN "gruesomeness" "gruesomenesses" ;
+lin gruff_A = mkA "gruff" "gruffer" "gruffest" "gruffly" ;
+lin gruffness_N = mkN "gruffness" "gruffnesses" ;
+lin grugru_N = mkN "grugru" "grugrus" ;
+lin grumble_N = mkN "grumble" "grumbles" ;
+lin grumble_V = mkV "grumble" "grumbled" "grumbled" ;
+lin grumbler_N = mkN "grumbler" "grumblers" ;
+lin grume_N = mkN "grume" "grumes" ;
+lin grumpiness_N = mkN "grumpiness" "grumpinesses" ;
+lin grumpy_A = mkA "grumpy" "grumpier" "grumpiest" "grumpily" ;
+lin grundyism_N = mkN "grundyism" "grundyisms" ;
+lin grunt_N = mkN "grunt" "grunts" ;
+lin grunt_V = mkV "grunt" "grunted" "grunted" ;
+lin grunter_N = mkN "grunter" "grunters" ;
+lin gryphon_N = mkN "gryphon" "gryphons" ;
+lin guacamole_N = mkN "guacamole" "guacamoles" ;
+lin guaiacum_N = mkN "guaiacum" "guaiacums" ;
+lin guama_N = mkN "guama" "guamas" ;
+lin guan_N = mkN "guan" "guans" ;
+lin guanabenz_N = mkN "guanabenz" "guanabenzes" ;
+lin guanaco_N = mkN "guanaco" "guanacoes" ;
+lin guanine_N = mkN "guanine" "guanines" ;
+lin guano_N = mkN "guano" "guanos" ;
+lin guar_N = mkN "guar" "guars" ;
+lin guarani_N = mkN "guarani" "guaranis" ;
+lin guarantee_N = mkN "guarantee" "guarantees" ;
+lin guarantee_V = mkV "guarantee" "guaranteed" "guaranteed" ;
+lin guarantor_N = mkN "guarantor" "guarantors" ;
+lin guaranty_N = mkN "guaranty" "guaranties" ;
+lin guard_N = mkN "guard" "guards" ;
+lin guard_V = mkV "guard" "guarded" "guarded" ;
+lin guard_boat_N = mkN "guard-boat" "guard-boats" ;
+lin guardhouse_N = mkN "guardhouse" "guardhouses" ;
+lin guardian_N = mkN "guardian" "guardians" ;
+lin guardianship_N = mkN "guardianship" "guardianships" ;
+lin guardrail_N = mkN "guardrail" "guardrails" ;
+lin guardroom_N = mkN "guardroom" "guardrooms" ;
+lin guardship_N = mkN "guardship" "guardships" ;
+lin guardsman_N = mkN "guardsman" "guardsmen" ;
+lin guatemalan_A = mkAMost "guatemalan" "guatemalanly" ;
+lin guatemalan_N = mkN "guatemalan" "guatemalans" ;
+lin guava_N = mkN "guava" "guavas" ;
+lin guayule_N = mkN "guayule" "guayules" ;
+lin gubernatorial_A = mkAMost "gubernatorial" "gubernatorially" ;
+lin gudgeon_N = mkN "gudgeon" "gudgeons" ;
+lin guelder_rose_N = mkN "guelder rose" "guelder roses" ;
+lin guenon_N = mkN "guenon" "guenons" ;
+lin guerdon_N = mkN "guerdon" "guerdons" ;
+lin guereza_N = mkN "guereza" "guerezas" ;
+lin gueridon_N = mkN "gueridon" "gueridons" ;
+lin guerilla_N = mkN "guerilla" "guerillas" ;
+lin guerrilla_N = mkN "guerrilla" "guerrillas" ;
+lin guess_N = mkN "guess" "guesses" ;
+lin guess_V = mkV "guess" "guessed" "guessed" ;
+lin guesser_N = mkN "guesser" "guessers" ;
+lin guesstimate_N = mkN "guesstimate" "guesstimates" ;
+lin guesswork_N = mkN "guesswork" "guessworks" ;
+lin guest_N = mkN "guest" "guests" ;
+lin guest_night_N = mkN "guest-night" "guest-nights" ;
+lin guesthouse_N = mkN "guesthouse" "guesthouses" ;
+lin guestroom_N = mkN "guestroom" "guestrooms" ;
+lin guffaw_N = mkN "guffaw" "guffaws" ;
+lin guffaw_V = mkV "guffaw" "guffawed" "guffawed" ;
+lin guidance_N = mkN "guidance" "guidances" ;
+lin guide_N = mkN "guide" "guides" ;
+lin guide_V = mkV "guide" "guided" "guided" ;
+lin guidebook_N = mkN "guidebook" "guidebooks" ;
+lin guideline_N = mkN "guideline" "guidelines" ;
+lin guidepost_N = mkN "guidepost" "guideposts" ;
+lin guiding_A = mkAMost "guiding" "guidingly" ;
+lin guild_N = mkN "guild" "guilds" ;
+lin guild_hall_N = mkN "guild-hall" "guild-halls" ;
+lin guilder_N = mkN "guilder" "guilders" ;
+lin guildhall_N = mkN "guildhall" "guildhalls" ;
+lin guile_N = mkN "guile" "guiles" ;
+lin guileful_A = mkAMost "guileful" "guilefully" ;
+lin guileless_A = mkAMost "guileless" "guilelessly" ;
+lin guillemot_N = mkN "guillemot" "guillemots" ;
+lin guilloche_N = mkN "guilloche" "guilloches" ;
+lin guillotine_N = mkN "guillotine" "guillotines" ;
+lin guillotine_V = mkV "guillotine" "guillotined" "guillotined" ;
+lin guilt_N = mkN "guilt" "guilts" ;
+lin guiltiness_N = mkN "guiltiness" "guiltinesses" ;
+lin guiltless_A = mkAMost "guiltless" "guiltlessly" ;
+lin guilty_A = mkA "guilty" "guiltier" "guiltiest" "guiltily" ;
+lin guimpe_N = mkN "guimpe" "guimpes" ;
+lin guinea_N = mkN "guinea" "guineas" ;
+lin guinea_fowl_N = mkN "guinea-fowl" "guinea-fowl" ;
+lin guinea_pig_N = mkN "guinea-pig" "guinea-pigs" ;
+lin guinean_A = mkAMost "guinean" "guineanly" ;
+lin guinean_N = mkN "guinean" "guineans" ;
+lin guinness_N = mkN "guinness" "guinnesses" ;
+lin guise_N = mkN "guise" "guises" ;
+lin guitar_N = mkN "guitar" "guitars" ;
+lin guitarfish_N = mkN "guitarfish" "guitarfishes" ;
+lin guitarist_N = mkN "guitarist" "guitarists" ;
+lin gulag_N = mkN "gulag" "gulags" ;
+lin gulch_N = mkN "gulch" "gulches" ;
+lin gulden_N = mkN "gulden" "guldens" ;
+lin gulf_N = mkN "gulf" "gulfs" ;
+lin gulfweed_N = mkN "gulfweed" "gulfweeds" ;
+lin gull_N = mkN "gull" "gulls" ;
+lin gull_V = mkV "gull" "gulled" "gulled" ;
+lin gullet_N = mkN "gullet" "gullets" ;
+lin gullibility_N = mkN "gullibility" "gullibilities" ;
+lin gullible_A = mkAMost "gullible" "gullibly" ;
+lin gully_N = mkN "gully" "gullies" ;
+lin gulp_N = mkN "gulp" "gulps" ;
+lin gulp_V = mkV "gulp" "gulped" "gulped" ;
+lin gulper_N = mkN "gulper" "gulpers" ;
+lin gulping_N = mkN "gulping" "gulpings" ;
+lin gum_N = mkN "gum" "gums" ;
+lin gum_V = mkV "gum" "gummed" "gummed" ;
+lin gumbo_N = mkN "gumbo" "gumbos" ;
+lin gumboil_N = mkN "gumboil" "gumboils" ;
+lin gumboot_N = mkN "gumboot" "gumboots" ;
+lin gumdrop_N = mkN "gumdrop" "gumdrops" ;
+lin gumma_N = mkN "gumma" "gummas" ;
+lin gummite_N = mkN "gummite" "gummites" ;
+lin gummosis_N = mkN "gummosis" "gummosises" ;
+lin gummy_A = mkA "gummy" "gummier" "gummiest" "gummily" ;
+lin gumption_N = mkN "gumption" "gumptions" ;
+lin gumshoe_N = mkN "gumshoe" "gumshoes" ;
+lin gumweed_N = mkN "gumweed" "gumweeds" ;
+lin gumwood_N = mkN "gumwood" "gumwoods" ;
+lin gun_N = mkN "gun" "guns" ;
+lin gun_V = mkV "gun" "gunned" "gunned" ;
+lin gun_carriage_N = mkN "gun-carriage" "gun-carriages" ;
+lin gunboat_N = mkN "gunboat" "gunboats" ;
+lin guncotton_N = mkN "guncotton" "guncottons" ;
+lin gundog_N = mkN "gundog" "gundogs" ;
+lin gunfight_N = mkN "gunfight" "gunfights" ;
+lin gunfire_N = mkN "gunfire" "gunfires" ;
+lin gunflint_N = mkN "gunflint" "gunflints" ;
+lin gunite_N = mkN "gunite" "gunites" ;
+lin gunlock_N = mkN "gunlock" "gunlocks" ;
+lin gunman_N = mkN "gunman" "gunmen" ;
+lin gunmetal_N = mkN "gunmetal" "gunmetals" ;
+lin gunnel_N = mkN "gunnel" "gunnels" ;
+lin gunner_N = mkN "gunner" "gunners" ;
+lin gunnery_N = mkN "gunnery" "gunneries" ;
+lin gunny_N = mkN "gunny" "gunnies" ;
+lin gunnysack_N = mkN "gunnysack" "gunnysacks" ;
+lin gunplay_N = mkN "gunplay" "gunplays" ;
+lin gunpoint_N = mkN "gunpoint" "IRREG" ;
+lin gunpowder_N = mkN "gunpowder" "gunpowders" ;
+lin gunroom_N = mkN "gunroom" "gunrooms" ;
+lin gunrunner_N = mkN "gunrunner" "gunrunners" ;
+lin gunrunning_N = mkN "gunrunning" "gunrunnings" ;
+lin gunshot_N = mkN "gunshot" "gunshots" ;
+lin gunsight_N = mkN "gunsight" "gunsights" ;
+lin gunsmith_N = mkN "gunsmith" "gunsmiths" ;
+lin gunwale_N = mkN "gunwale" "gunwales" ;
+lin guppy_N = mkN "guppy" "guppies" ;
+lin gurgle_N = mkN "gurgle" "gurgles" ;
+lin gurgle_V = mkV "gurgle" "gurgled" "gurgled" ;
+lin gurkha_N = mkN "gurkha" "gurkhas" ;
+lin gurnard_N = mkN "gurnard" "gurnards" ;
+lin gurney_N = mkN "gurney" "gurneys" ;
+lin guru_N = mkN "guru" "gurus" ;
+lin gush_N = mkN "gush" "gushes" ;
+lin gush_V = mkV "gush" "gushed" "gushed" ;
+lin gusher_N = mkN "gusher" "gushers" ;
+lin gushingly_Adv = mkAdv "gushingly" ;
+lin gusset_N = mkN "gusset" "gussets" ;
+lin gusseted_A = mkAMost "gusseted" "gussetedly" ;
+lin gussy_V = mkV "gussy" "gussied" "gussied" ;
+lin gust_N = mkN "gust" "gusts" ;
+lin gustation_N = mkN "gustation" "gustations" ;
+lin gustatory_A = mkAMost "gustatory" "gustatorily" ;
+lin gusto_N = mkN "gusto" "gustoes" ;
+lin gusty_A = mkA "gusty" "gustier" "gustiest" "gustily" ;
+lin gut_N = mkN "gut" "guts" ;
+lin gut_V = mkV "gut" "gutted" "gutted" ;
+lin gutless_A = mkAMost "gutless" "gutlessly" ;
+lin gutlessness_N = mkN "gutlessness" "gutlessnesses" ;
+lin gutsiness_N = mkN "gutsiness" "gutsinesses" ;
+lin gutsy_A = mkA "gutsy" "gutsier" "gutsiest" "gutsily" ;
+lin gutta_percha_N = mkN "gutta-percha" "gutta-perchas" ;
+lin gutter_N = mkN "gutter" "gutters" ;
+lin gutter_V = mkV "gutter" "guttered" "guttered" ;
+lin guttersnipe_N = mkN "guttersnipe" "guttersnipes" ;
+lin guttural_A = mkAMost "guttural" "gutturally" ;
+lin guttural_N = mkN "guttural" "gutturals" ;
+lin guvnor_N = mkN "guvnor" "guvnors" ;
+lin guy_N = mkN "guy" "guys" ;
+lin guy_V = mkV "guy" "guyed" "guyed" ;
+lin guyanese_A = mkAMost "guyanese" "guyanesely" ;
+lin guyanese_N = mkN "guyanese" "guyanese" ;
+lin guyot_N = mkN "guyot" "guyots" ;
+lin guzzle_V = mkV "guzzle" "guzzled" "guzzled" ;
+lin guzzler_N = mkN "guzzler" "guzzlers" ;
+lin gybe_V = mkV "gybe" "gybed" "gybed" ;
+lin gym_N = mkN "gym" "gyms" ;
+lin gymkhana_N = mkN "gymkhana" "gymkhanas" ;
+lin gymnasium_N = mkN "gymnasium" "gymnasiums" ;
+lin gymnast_N = mkN "gymnast" "gymnasts" ;
+lin gymnastic_A = mkAMost "gymnastic" "gymnasticly" ;
+lin gymnastics_N = mkN "gymnastics" "gymnastics" ;
+lin gymnosophical_A = mkAMost "gymnosophical" "gymnosophically" ;
+lin gymnosophist_N = mkN "gymnosophist" "gymnosophists" ;
+lin gymnosophy_N = mkN "gymnosophy" "gymnosophies" ;
+lin gymnosperm_N = mkN "gymnosperm" "gymnosperms" ;
+lin gymnospermous_A = mkAMost "gymnospermous" "gymnospermously" ;
+lin gymslip_N = mkN "gymslip" "gymslips" ;
+lin gynaecological_A = mkAMost "gynaecological" "gynaecologically" ;
+lin gynaecologist_N = mkN "gynaecologist" "gynaecologists" ;
+lin gynaecology_N = mkN "gynaecology" "gynaecologies" ;
+lin gynandromorphic_A = mkAMost "gynandromorphic" "gynandromorphicly" ;
+lin gynecocracy_N = mkN "gynecocracy" "gynecocracies" ;
+lin gynecological_A = mkAMost "gynecological" "gynecologically" ;
+lin gynecologist_N = mkN "gynecologist" "gynecologists" ;
+lin gynecology_N = mkN "gynecology" "gynecologies" ;
+lin gynecomastia_N = mkN "gynecomastia" "gynecomastias" ;
+lin gyneolatry_N = mkN "gyneolatry" "gyneolatries" ;
+lin gynobase_N = mkN "gynobase" "gynobases" ;
+lin gynoecium_N = mkN "gynoecium" "gynoeciums" ;
+lin gynogenesis_N = mkN "gynogenesis" "gynogenesises" ;
+lin gynophobia_N = mkN "gynophobia" "gynophobias" ;
+lin gynophore_N = mkN "gynophore" "gynophores" ;
+lin gynostegium_N = mkN "gynostegium" "gynostegiums" ;
+lin gyp_N = mkN "gyp" "gyps" ;
+lin gyp_V = mkV "gyp" "gypped" "gypped" ;
+lin gypsum_N = mkN "gypsum" "gypsums" ;
+lin gypsy_N = mkN "gypsy" "gypsies" ;
+lin gyral_A = mkAMost "gyral" "gyrally" ;
+lin gyrate_V = mkV "gyrate" "gyrated" "gyrated" ;
+lin gyration_N = mkN "gyration" "gyrations" ;
+lin gyrfalcon_N = mkN "gyrfalcon" "gyrfalcons" ;
+lin gyro_N = mkN "gyro" "gyros" ;
+lin gyrocompass_N = mkN "gyrocompass" "gyrocompasses" ;
+lin gyromitra_N = mkN "gyromitra" "gyromitras" ;
+lin gyroscope_N = mkN "gyroscope" "gyroscopes" ;
+lin gyroscopic_A = mkAMost "gyroscopic" "gyroscopicly" ;
+lin gyrostabilizer_N = mkN "gyrostabilizer" "gyrostabilizers" ;
+lin gyrus_N = mkN "gyrus" "gyruses" ;
+lin gâteau_N = mkN "gâteau" "gâteaus" ;
+lin h'm_V = mkV "h'm" "h'mmed" "h'mmed" ;
+lin h_bomb_N = mkN "h-bomb" "h-bombs" ;
+lin ha'p'orth_N = mkN "ha'p'orth" "ha'p'orths" ;
+lin ha'penny_N = mkN "ha'penny" "ha'pennies" ;
+lin habanera_N = mkN "habanera" "habaneras" ;
+lin habeas_corpus_N = mkN "habeas corpus" "habeas corpuses" ;
+lin haberdasher_N = mkN "haberdasher" "haberdashers" ;
+lin haberdashery_N = mkN "haberdashery" "haberdasheries" ;
+lin habergeon_N = mkN "habergeon" "habergeons" ;
+lin habit_N = mkN "habit" "habits" ;
+lin habitability_N = mkN "habitability" "habitabilities" ;
+lin habitable_A = mkAMost "habitable" "habitably" ;
+lin habitat_N = mkN "habitat" "habitats" ;
+lin habitation_N = mkN "habitation" "habitations" ;
+lin habited_A = mkAMost "habited" "habitedly" ;
+lin habitual_A = mkAMost "habitual" "habitually" ;
+lin habituate_V = mkV "habituate" "habituated" "habituated" ;
+lin habituation_N = mkN "habituation" "habituations" ;
+lin habitude_N = mkN "habitude" "habitudes" ;
+lin habitus_N = mkN "habitus" "habituses" ;
+lin habitué_N = mkN "habitué" "habitués" ;
+lin hacek_N = mkN "hacek" "haceks" ;
+lin hacienda_N = mkN "hacienda" "haciendas" ;
+lin hack_N = mkN "hack" "hacks" ;
+lin hack_V = mkV "hack" "hacked" "hacked" ;
+lin hackberry_N = mkN "hackberry" "hackberries" ;
+lin hacker_N = mkN "hacker" "hackers" ;
+lin hackle_N = mkN "hackle" "hackles" ;
+lin hackney_N = mkN "hackney" "hackneys" ;
+lin hackneyed_A = mkAMost "hackneyed" "hackneyedly" ;
+lin hacksaw_N = mkN "hacksaw" "hacksaws" ;
+lin hackwork_N = mkN "hackwork" "hackworks" ;
+lin hadal_A = mkAMost "hadal" "hadally" ;
+lin haddock_N = mkN "haddock" "haddock" ;
+lin hadji_N = mkN "hadji" "hadjis" ;
+lin hadron_N = mkN "hadron" "hadrons" ;
+lin hadrosaur_N = mkN "hadrosaur" "hadrosaurs" ;
+lin haematite_N = mkN "haematite" "haematites" ;
+lin haemoglobin_N = mkN "haemoglobin" "haemoglobins" ;
+lin haemophilia_N = mkN "haemophilia" "haemophilias" ;
+lin haemophiliac_N = mkN "haemophiliac" "haemophiliacs" ;
+lin haemophilic_A = mkAMost "haemophilic" "haemophilicly" ;
+lin haemoproteid_N = mkN "haemoproteid" "haemoproteids" ;
+lin haemorrhage_N = mkN "haemorrhage" "haemorrhages" ;
+lin haemosporidian_N = mkN "haemosporidian" "haemosporidians" ;
+lin hafnium_N = mkN "hafnium" "hafniums" ;
+lin haft_N = mkN "haft" "hafts" ;
+lin hag_N = mkN "hag" "hags" ;
+lin hag_ridden_A = mkAMost "hag-ridden" "hag-riddenly" ;
+lin hagberry_N = mkN "hagberry" "hagberries" ;
+lin hagfish_N = mkN "hagfish" "hagfishes" ;
+lin haggard_A = mkAMost "haggard" "haggardly" ;
+lin haggis_N = mkN "haggis" "haggises" ;
+lin haggle_N = mkN "haggle" "haggles" ;
+lin haggle_V = mkV "haggle" "haggled" "haggled" ;
+lin haggler_N = mkN "haggler" "hagglers" ;
+lin hagiographer_N = mkN "hagiographer" "hagiographers" ;
+lin hagiography_N = mkN "hagiography" "hagiographies" ;
+lin hagiolatry_N = mkN "hagiolatry" "hagiolatries" ;
+lin hagiology_N = mkN "hagiology" "hagiologies" ;
+lin haha_N = mkN "haha" "hahas" ;
+lin haik_N = mkN "haik" "haiks" ;
+lin haiku_N = mkN "haiku" "haikus" ;
+lin hail_N = mkN "hail" "hails" ;
+lin hail_V = mkV "hail" "hailed" "hailed" ;
+lin hailstone_N = mkN "hailstone" "hailstones" ;
+lin hailstorm_N = mkN "hailstorm" "hailstorms" ;
+lin hair's_breadth_N = mkN "hair's-breadth" "hair's-breadths" ;
+lin hair_N = mkN "hair" "hairs" ;
+lin hair_breadth_N = mkN "hair-breadth" "hair-breadths" ;
+lin hair_dye_N = mkN "hair-dye" "hair-dyes" ;
+lin hair_oil_N = mkN "hair-oil" "hair-oils" ;
+lin hair_raising_A = mkAMost "hair-raising" "hair-raisingly" ;
+lin hair_shirt_N = mkN "hair-shirt" "hair-shirts" ;
+lin hair_slide_N = mkN "hair-slide" "hair-slides" ;
+lin hair_trigger_N = mkN "hair-trigger" "hair-triggers" ;
+lin hairball_N = mkN "hairball" "hairballs" ;
+lin hairbrush_N = mkN "hairbrush" "hairbrushes" ;
+lin haircloth_N = mkN "haircloth" "haircloths" ;
+lin haircut_N = mkN "haircut" "haircuts" ;
+lin hairdo_N = mkN "hairdo" "hairdos" ;
+lin hairdresser_N = mkN "hairdresser" "hairdressers" ;
+lin hairdressing_N = mkN "hairdressing" "hairdressings" ;
+lin hairiness_N = mkN "hairiness" "hairinesses" ;
+lin hairless_A = mkAMost "hairless" "hairlessly" ;
+lin hairlessness_N = mkN "hairlessness" "hairlessnesses" ;
+lin hairlike_A = mkAMost "hairlike" "hairlikely" ;
+lin hairline_N = mkN "hairline" "hairlines" ;
+lin hairnet_N = mkN "hairnet" "hairnets" ;
+lin hairpiece_N = mkN "hairpiece" "hairpieces" ;
+lin hairpin_N = mkN "hairpin" "hairpins" ;
+lin hairsplitter_N = mkN "hairsplitter" "hairsplitters" ;
+lin hairsplitting_A = mkAMost "hairsplitting" "hairsplittingly" ;
+lin hairsplitting_N = mkN "hairsplitting" "hairsplittings" ;
+lin hairspring_N = mkN "hairspring" "hairsprings" ;
+lin hairstreak_N = mkN "hairstreak" "hairstreaks" ;
+lin hairstyle_N = mkN "hairstyle" "hairstyles" ;
+lin hairstylist_N = mkN "hairstylist" "hairstylists" ;
+lin hairweaving_N = mkN "hairweaving" "hairweavings" ;
+lin hairy_A = mkA "hairy" "hairier" "hairiest" "hairily" ;
+lin haitian_A = mkAMost "haitian" "haitianly" ;
+lin haitian_N = mkN "haitian" "haitians" ;
+lin hajj_N = mkN "hajj" "hajjs" ;
+lin hajji_N = mkN "hajji" "hajjis" ;
+lin hake_N = mkN "hake" "hake" ;
+lin hakim_N = mkN "hakim" "hakims" ;
+lin halal_A = mkAMost "halal" "halally" ;
+lin halal_N = mkN "halal" "halals" ;
+lin halberd_N = mkN "halberd" "halberds" ;
+lin halberdier_N = mkN "halberdier" "halberdiers" ;
+lin halcyon_A = mkAMost "halcyon" "halcyonly" ;
+lin halcyon_N = mkN "halcyon" "halcyons" ;
+lin hale_A = mkAMost "hale" "halely" ;
+lin haler_N = mkN "haler" "halers" ;
+lin half_A = mkA "half" "halfer" "halfest" "halfly" ;
+lin half_Adv = mkAdv "half" ;
+lin half_N = mkN "half" "halves" ;
+lin half_baked_A = mkAMost "half-baked" "half-bakedly" ;
+lin half_blood_N = mkN "half-blood" "half-bloods" ;
+lin half_breed_N = mkN "half-breed" "half-breeds" ;
+lin half_brother_N = mkN "half-brother" "half-brothers" ;
+lin half_caste_N = mkN "half-caste" "half-castes" ;
+lin half_crazed_A = mkAMost "half-crazed" "half-crazedly" ;
+lin half_crown_N = mkN "half-crown" "half-crowns" ;
+lin half_hardy_A = mkAMost "half-hardy" "half-hardily" ;
+lin half_hearted_A = mkAMost "half-hearted" "half-heartedly" ;
+lin half_holiday_N = mkN "half-holiday" "half-holidays" ;
+lin half_hour_N = mkN "half-hour" "half-hours" ;
+lin half_hourly_A = mkAMost "half-hourly" "half-hourlily" ;
+lin half_hourly_Adv = mkAdv "half-hourly" ;
+lin half_length_A = mkAMost "half-length" "half-lengthly" ;
+lin half_pay_N = mkN "half-pay" "half-pays" ;
+lin half_price_Adv = mkAdv "half-price" ;
+lin half_seas_over_A = mkAMost "half-seas-over" "half-seas-overly" ;
+lin half_sister_N = mkN "half-sister" "half-sisters" ;
+lin half_size_A = mkAMost "half-size" "half-sizely" ;
+lin half_timbered_A = mkAMost "half-timbered" "half-timberedly" ;
+lin half_time_N = mkN "half-time" "half-times" ;
+lin half_track_N = mkN "half-track" "half-tracks" ;
+lin half_tracked_A = mkAMost "half-tracked" "half-trackedly" ;
+lin half_truth_N = mkN "half-truth" "half-truths" ;
+lin half_volley_N = mkN "half-volley" "half-volleys" ;
+lin half_yearly_A = mkAMost "half-yearly" "half-yearlily" ;
+lin half_yearly_Adv = mkAdv "half-yearly" ;
+lin halfback_N = mkN "halfback" "halfbacks" ;
+lin halfbeak_N = mkN "halfbeak" "halfbeaks" ;
+lin halfhearted_A = mkAMost "halfhearted" "halfheartedly" ;
+lin halfpenny_N = mkN "halfpenny" "halfpennies" ;
+lin halfpennyworth_N = mkN "halfpennyworth" "halfpennyworths" ;
+lin halftime_N = mkN "halftime" "halftimes" ;
+lin halftone_N = mkN "halftone" "halftones" ;
+lin halfway_A = mkAMost "halfway" "halfwaily" ;
+lin halfway_Adv = mkAdv "halfway" ;
+lin halfwit_N = mkN "halfwit" "halfwits" ;
+lin halfwitted_A = mkAMost "halfwitted" "halfwittedly" ;
+lin halibut_N = mkN "halibut" "halibut" ;
+lin halide_N = mkN "halide" "halides" ;
+lin halite_N = mkN "halite" "halites" ;
+lin halitosis_N = mkN "halitosis" "halitosises" ;
+lin halitus_N = mkN "halitus" "halituses" ;
+lin hall_N = mkN "hall" "halls" ;
+lin hall_stand_N = mkN "hall-stand" "hall-stands" ;
+lin hallelujah_N = mkN "hallelujah" "hallelujahs" ;
+lin halliard_N = mkN "halliard" "halliards" ;
+lin hallmark_N = mkN "hallmark" "hallmarks" ;
+lin halloo_N = mkN "halloo" "halloos" ;
+lin halloo_V = mkV "halloo" "hallooed" "hallooed" ;
+lin hallow_N = mkN "hallow" "hallows" ;
+lin hallow_V = mkV "hallow" "hallowed" "hallowed" ;
+lin hallowe'en_N = mkN "hallowe'en" "hallowe'ens" ;
+lin hallstand_N = mkN "hallstand" "hallstands" ;
+lin hallucination_N = mkN "hallucination" "hallucinations" ;
+lin hallucinatory_A = mkAMost "hallucinatory" "hallucinatorily" ;
+lin hallucinogen_N = mkN "hallucinogen" "hallucinogens" ;
+lin hallucinogenic_A = mkAMost "hallucinogenic" "hallucinogenicly" ;
+lin hallucinosis_N = mkN "hallucinosis" "hallucinosises" ;
+lin hallway_N = mkN "hallway" "hallways" ;
+lin halma_N = mkN "halma" "halmas" ;
+lin halo_N = mkN "halo" "halos" ;
+lin halobacteria_N = mkN "halobacteria" "halobacterias" ;
+lin halocarbon_N = mkN "halocarbon" "halocarbons" ;
+lin haloform_N = mkN "haloform" "haloforms" ;
+lin halogen_N = mkN "halogen" "halogens" ;
+lin halogeton_N = mkN "halogeton" "halogetons" ;
+lin halon_N = mkN "halon" "halons" ;
+lin haloperidol_N = mkN "haloperidol" "haloperidols" ;
+lin halophile_N = mkN "halophile" "halophiles" ;
+lin halophyte_N = mkN "halophyte" "halophytes" ;
+lin halothane_N = mkN "halothane" "halothanes" ;
+lin halt_A = mkAMost "halt" "haltly" ;
+lin halt_N = mkN "halt" "halts" ;
+lin halt_V = mkV "halt" "halted" "halted" ;
+lin halter_N = mkN "halter" "halters" ;
+lin haltingly_Adv = mkAdv "haltingly" ;
+lin halve_V = mkV "halve" "halved" "halved" ;
+lin halyard_N = mkN "halyard" "halyards" ;
+lin ham_N = mkN "ham" "hams" ;
+lin ham_V = mkV "ham" "hammed" "hammed" ;
+lin ham_fisted_A = mkAMost "ham-fisted" "ham-fistedly" ;
+lin ham_handed_A = mkAMost "ham-handed" "ham-handedly" ;
+lin hamadryad_N = mkN "hamadryad" "hamadryads" ;
+lin hamartoma_N = mkN "hamartoma" "hamartomas" ;
+lin hamate_N = mkN "hamate" "hamates" ;
+lin hamburger_N = mkN "hamburger" "hamburgers" ;
+lin hame_N = mkN "hame" "hames" ;
+lin hamelia_N = mkN "hamelia" "hamelias" ;
+lin hamlet_N = mkN "hamlet" "hamlets" ;
+lin hammer_N = mkN "hammer" "hammers" ;
+lin hammer_V = mkV "hammer" "hammered" "hammered" ;
+lin hammerhead_N = mkN "hammerhead" "hammerheads" ;
+lin hammerlock_N = mkN "hammerlock" "hammerlocks" ;
+lin hammertoe_N = mkN "hammertoe" "hammertoes" ;
+lin hamming_N = mkN "hamming" "hammings" ;
+lin hammock_N = mkN "hammock" "hammocks" ;
+lin hammy_A = mkA "hammy" "hammier" "hammiest" "hammily" ;
+lin hamper_N = mkN "hamper" "hampers" ;
+lin hamper_V = mkV "hamper" "hampered" "hampered" ;
+lin hamster_N = mkN "hamster" "hamsters" ;
+lin hamstring_N = mkN "hamstring" "hamstrings" ;
+lin hamstring_V = mkV "hamstring" "hamstrung" "hamstrung" ;
+lin hand_N = mkN "hand" "hands" ;
+lin hand_V = mkV "hand" "handed" "handed" ;
+lin hand_barrow_N = mkN "hand-barrow" "hand-barrows" ;
+lin hand_carry_V = mkV "hand-carry" "hand-carried" "hand-carried" ;
+lin hand_grenade_N = mkN "hand-grenade" "hand-grenades" ;
+lin hand_luggage_N = mkN "hand-luggage" "hand-luggages" ;
+lin hand_me_down_N = mkN "hand-me-down" "hand-me-downs" ;
+lin hand_organ_N = mkN "hand-organ" "hand-organs" ;
+lin hand_out_N = mkN "hand-out" "hand-outs" ;
+lin hand_picked_A = mkAMost "hand-picked" "hand-pickedly" ;
+lin handbag_N = mkN "handbag" "handbags" ;
+lin handball_N = mkN "handball" "handballs" ;
+lin handbarrow_N = mkN "handbarrow" "handbarrows" ;
+lin handbell_N = mkN "handbell" "handbells" ;
+lin handbill_N = mkN "handbill" "handbills" ;
+lin handbook_N = mkN "handbook" "handbooks" ;
+lin handbow_N = mkN "handbow" "handbows" ;
+lin handbrake_N = mkN "handbrake" "handbrakes" ;
+lin handbreadth_N = mkN "handbreadth" "handbreadths" ;
+lin handcar_N = mkN "handcar" "handcars" ;
+lin handcart_N = mkN "handcart" "handcarts" ;
+lin handclap_N = mkN "handclap" "handclaps" ;
+lin handcuff_N = mkN "handcuff" "handcuffs" ;
+lin handcuff_V = mkV "handcuff" "handcuffed" "handcuffed" ;
+lin handedness_N = mkN "handedness" "handednesses" ;
+lin handful_N = mkN "handful" "handfuls" ;
+lin handhold_N = mkN "handhold" "handholds" ;
+lin handicap_N = mkN "handicap" "handicaps" ;
+lin handicap_V = mkV "handicap" "handicapped" "handicapped" ;
+lin handicraft_N = mkN "handicraft" "handicrafts" ;
+lin handiness_N = mkN "handiness" "handinesses" ;
+lin handiwork_N = mkN "handiwork" "handiworks" ;
+lin handkerchief_N = mkN "handkerchief" "handkerchiefs" ;
+lin handle_N = mkN "handle" "handles" ;
+lin handle_V = mkV "handle" "handled" "handled" ;
+lin handlebar_N = mkN "handlebar" "handlebars" ;
+lin handleless_A = mkAMost "handleless" "handlelessly" ;
+lin handler_N = mkN "handler" "handlers" ;
+lin handless_A = mkAMost "handless" "handlessly" ;
+lin handline_N = mkN "handline" "handlines" ;
+lin handling_N = mkN "handling" "handlings" ;
+lin handloom_N = mkN "handloom" "handlooms" ;
+lin handmade_A = mkAMost "handmade" "handmadely" ;
+lin handmaid_N = mkN "handmaid" "handmaids" ;
+lin handoff_N = mkN "handoff" "handoffs" ;
+lin handout_N = mkN "handout" "handouts" ;
+lin handover_N = mkN "handover" "handovers" ;
+lin handrail_N = mkN "handrail" "handrails" ;
+lin handrest_N = mkN "handrest" "handrests" ;
+lin hands_N = mkN "hands" "handses" ;
+lin handsaw_N = mkN "handsaw" "handsaws" ;
+lin handset_N = mkN "handset" "handsets" ;
+lin handsewn_A = mkAMost "handsewn" "handsewnly" ;
+lin handshake_N = mkN "handshake" "handshakes" ;
+lin handshaking_N = mkN "handshaking" "handshakings" ;
+lin handsome_A = mkAMost "handsome" "handsomely" ;
+lin handsomeness_N = mkN "handsomeness" "handsomenesses" ;
+lin handspike_N = mkN "handspike" "handspikes" ;
+lin handspring_N = mkN "handspring" "handsprings" ;
+lin handstamp_N = mkN "handstamp" "handstamps" ;
+lin handstand_N = mkN "handstand" "handstands" ;
+lin handwear_N = mkN "handwear" "handwears" ;
+lin handwheel_N = mkN "handwheel" "handwheels" ;
+lin handwork_N = mkN "handwork" "handworks" ;
+lin handwriting_N = mkN "handwriting" "handwritings" ;
+lin handwritten_A = mkAMost "handwritten" "handwrittenly" ;
+lin handy_A = mkA "handy" "handier" "handiest" "handily" ;
+lin handyman_N = mkN "handyman" "handymen" ;
+lin hang_N = mkN "hang" "hangs" ;
+lin hang_hanged_V = mkV "hang" "hanged" "hanged" ;
+lin hang_hung_V = mkV "hang" "hung" "hung" ;
+lin hang_up_N = mkN "hang-up" "hang-ups" ;
+lin hangar_N = mkN "hangar" "hangars" ;
+lin hangdog_A = mkAMost "hangdog" "hangdogly" ;
+lin hanger_N = mkN "hanger" "hangers" ;
+lin hanger_on_N = mkN "hanger-on" "hangers-on" ;
+lin hanging_N = mkN "hanging" "hangings" ;
+lin hangman_N = mkN "hangman" "hangmen" ;
+lin hangnail_N = mkN "hangnail" "hangnails" ;
+lin hangover_N = mkN "hangover" "hangovers" ;
+lin hank_N = mkN "hank" "hanks" ;
+lin hanker_V = mkV "hanker" "hankered" "hankered" ;
+lin hankering_N = mkN "hankering" "hankerings" ;
+lin hanky_N = mkN "hanky" "hankies" ;
+lin hanky_panky_N = mkN "hanky-panky" "hanky-pankies" ;
+lin hansard_N = mkN "hansard" "hansards" ;
+lin hansom_N = mkN "hansom" "hansoms" ;
+lin hao_N = mkN "hao" "haoes" ;
+lin hap_N = mkN "hap" "haps" ;
+lin hap_V = mkV "hap" "happed" "happed" ;
+lin haphazard_A = mkAMost "haphazard" "haphazardly" ;
+lin haphazard_Adv = mkAdv "haphazard" ;
+lin hapless_A = mkAMost "hapless" "haplessly" ;
+lin haploid_A = mkAMost "haploid" "haploidly" ;
+lin haploid_N = mkN "haploid" "haploids" ;
+lin haploidy_N = mkN "haploidy" "haploidies" ;
+lin haplosporidian_N = mkN "haplosporidian" "haplosporidians" ;
+lin haplotype_N = mkN "haplotype" "haplotypes" ;
+lin haply_Adv = mkAdv "haply" ;
+lin happen_V = mkV "happen" "happened" "happened" ;
+lin happening_N = mkN "happening" "happenings" ;
+lin happiness_N = mkN "happiness" "happinesses" ;
+lin happy_A = mkA "happy" "happier" "happiest" "happily" ;
+lin happy_go_lucky_A = mkAMost "happy-go-lucky" "happy-go-luckily" ;
+lin haptic_A = mkAMost "haptic" "hapticly" ;
+lin haptoglobin_N = mkN "haptoglobin" "haptoglobins" ;
+lin hara_kiri_N = mkN "hara-kiri" "hara-kiris" ;
+lin harakiri_N = mkN "harakiri" "harakiris" ;
+lin harangue_N = mkN "harangue" "harangues" ;
+lin harangue_V = mkV "harangue" "harangued" "harangued" ;
+lin haranguer_N = mkN "haranguer" "haranguers" ;
+lin harass_V = mkV "harass" "harassed" "harassed" ;
+lin harasser_N = mkN "harasser" "harassers" ;
+lin harassment_N = mkN "harassment" "harassments" ;
+lin harbinger_N = mkN "harbinger" "harbingers" ;
+lin harbour_N = mkN "harbour" "harbours" ;
+lin harbour_V = mkV "harbour" "harboured" "harboured" ;
+lin harbourage_N = mkN "harbourage" "harbourages" ;
+lin hard_A = mkA "hard" "harder" "hardest" "hardly" ;
+lin hard_Adv = mkAdv "hard" ;
+lin hard_baked_A = mkAMost "hard-baked" "hard-bakedly" ;
+lin hard_bitten_A = mkAMost "hard-bitten" "hard-bittenly" ;
+lin hard_boiled_A = mkAMost "hard-boiled" "hard-boiledly" ;
+lin hard_headed_A = mkAMost "hard-headed" "hard-headedly" ;
+lin hardback_N = mkN "hardback" "hardbacks" ;
+lin hardbacked_A = mkAMost "hardbacked" "hardbackedly" ;
+lin hardbake_N = mkN "hardbake" "hardbakes" ;
+lin hardball_N = mkN "hardball" "hardballs" ;
+lin hardboard_N = mkN "hardboard" "hardboards" ;
+lin hardbound_A = mkAMost "hardbound" "hardboundly" ;
+lin hardcover_N = mkN "hardcover" "hardcovers" ;
+lin hardcovered_A = mkAMost "hardcovered" "hardcoveredly" ;
+lin harden_V = mkV "harden" "hardened" "hardened" ;
+lin hardening_N = mkN "hardening" "hardenings" ;
+lin hardheaded_A = mkAMost "hardheaded" "hardheadedly" ;
+lin hardhearted_A = mkAMost "hardhearted" "hardheartedly" ;
+lin hardhitting_A = mkAMost "hardhitting" "hardhittingly" ;
+lin hardihood_N = mkN "hardihood" "hardihoods" ;
+lin hardiness_N = mkN "hardiness" "hardinesses" ;
+lin hardinggrass_N = mkN "hardinggrass" "hardinggrasses" ;
+lin hardliner_N = mkN "hardliner" "hardliners" ;
+lin hardness_N = mkN "hardness" "hardnesses" ;
+lin hardscrabble_A = mkAMost "hardscrabble" "hardscrabbly" ;
+lin hardship_N = mkN "hardship" "hardships" ;
+lin hardtack_N = mkN "hardtack" "hardtacks" ;
+lin hardtop_N = mkN "hardtop" "hardtops" ;
+lin hardware_N = mkN "hardware" "hardwares" ;
+lin hardwood_N = mkN "hardwood" "hardwoods" ;
+lin hardworking_A = mkAMost "hardworking" "hardworkingly" ;
+lin hardy_A = mkA "hardy" "hardier" "hardiest" "hardily" ;
+lin hare_N = mkN "hare" "hares" ;
+lin hare_V = mkV "hare" "hared" "hared" ;
+lin harebell_N = mkN "harebell" "harebells" ;
+lin harebrained_A = mkAMost "harebrained" "harebrainedly" ;
+lin harelip_N = mkN "harelip" "harelips" ;
+lin harem_N = mkN "harem" "harems" ;
+lin haricot_N = mkN "haricot" "haricots" ;
+lin hark_V = mkV "hark" "harked" "harked" ;
+lin harlequin_N = mkN "harlequin" "harlequins" ;
+lin harlequinade_N = mkN "harlequinade" "harlequinades" ;
+lin harlot_N = mkN "harlot" "harlots" ;
+lin harm_N = mkN "harm" "harms" ;
+lin harm_V = mkV "harm" "harmed" "harmed" ;
+lin harmattan_N = mkN "harmattan" "harmattans" ;
+lin harmful_A = mkAMost "harmful" "harmfully" ;
+lin harmfulness_N = mkN "harmfulness" "harmfulnesses" ;
+lin harmless_A = mkAMost "harmless" "harmlessly" ;
+lin harmonic_A = mkAMost "harmonic" "harmonicly" ;
+lin harmonic_N = mkN "harmonic" "harmonics" ;
+lin harmonica_N = mkN "harmonica" "harmonicas" ;
+lin harmonically_Adv = mkAdv "harmonically" ;
+lin harmonics_N = mkN "harmonics" "harmonicses" ;
+lin harmonious_A = mkAMost "harmonious" "harmoniously" ;
+lin harmonium_N = mkN "harmonium" "harmoniums" ;
+lin harmonizable_A = mkAMost "harmonizable" "harmonizably" ;
+lin harmonization_N = mkN "harmonization" "harmonizations" ;
+lin harmonize_V = mkV "harmonize" "harmonized" "harmonized" ;
+lin harmonizer_N = mkN "harmonizer" "harmonizers" ;
+lin harmony_N = mkN "harmony" "harmonies" ;
+lin harness_N = mkN "harness" "harnesses" ;
+lin harness_V = mkV "harness" "harnessed" "harnessed" ;
+lin harp_N = mkN "harp" "harps" ;
+lin harp_V = mkV "harp" "harped" "harped" ;
+lin harper_N = mkN "harper" "harpers" ;
+lin harpist_N = mkN "harpist" "harpists" ;
+lin harpoon_N = mkN "harpoon" "harpoons" ;
+lin harpoon_V = mkV "harpoon" "harpooned" "harpooned" ;
+lin harpooner_N = mkN "harpooner" "harpooners" ;
+lin harpsichord_N = mkN "harpsichord" "harpsichords" ;
+lin harpsichordist_N = mkN "harpsichordist" "harpsichordists" ;
+lin harpulla_N = mkN "harpulla" "harpullas" ;
+lin harpullia_N = mkN "harpullia" "harpullias" ;
+lin harpy_N = mkN "harpy" "harpies" ;
+lin harridan_N = mkN "harridan" "harridans" ;
+lin harrier_N = mkN "harrier" "harriers" ;
+lin harrow_N = mkN "harrow" "harrows" ;
+lin harrow_V = mkV "harrow" "harrowed" "harrowed" ;
+lin harry_V = mkV "harry" "harried" "harried" ;
+lin harsh_A = mkA "harsh" "harsher" "harshest" "harshly" ;
+lin harshness_N = mkN "harshness" "harshnesses" ;
+lin hart_N = mkN "hart" "harts" ;
+lin hartebeest_N = mkN "hartebeest" "hartebeests" ;
+lin harum_scarum_A = mkAMost "harum-scarum" "harum-scarumly" ;
+lin harum_scarum_N = mkN "harum-scarum" "harum-scarums" ;
+lin harvest_N = mkN "harvest" "harvests" ;
+lin harvest_V = mkV "harvest" "harvested" "harvested" ;
+lin harvester_N = mkN "harvester" "harvesters" ;
+lin harvestfish_N = mkN "harvestfish" "harvestfishes" ;
+lin harvestman_N = mkN "harvestman" "harvestmen" ;
+lin has_been_N = mkN "has-been" "has-beens" ;
+lin hash_N = mkN "hash" "hashes" ;
+lin hash_V = mkV "hash" "hashed" "hashed" ;
+lin hashish_N = mkN "hashish" "hashishes" ;
+lin haslet_N = mkN "haslet" "haslets" ;
+lin hasp_N = mkN "hasp" "hasps" ;
+lin hassium_N = mkN "hassium" "hassiums" ;
+lin hassle_N = mkN "hassle" "hassles" ;
+lin hassle_V = mkV "hassle" "hassled" "hassled" ;
+lin hassock_N = mkN "hassock" "hassocks" ;
+lin hastate_A = mkAMost "hastate" "hastately" ;
+lin haste_N = mkN "haste" "hastes" ;
+lin hasten_V = mkV "hasten" "hastened" "hastened" ;
+lin hastiness_N = mkN "hastiness" "hastinesses" ;
+lin hasty_A = mkA "hasty" "hastier" "hastiest" "hastily" ;
+lin hat_N = mkN "hat" "hats" ;
+lin hatband_N = mkN "hatband" "hatbands" ;
+lin hatbox_N = mkN "hatbox" "hatboxes" ;
+lin hatch_N = mkN "hatch" "hatches" ;
+lin hatch_V = mkV "hatch" "hatched" "hatched" ;
+lin hatchback_N = mkN "hatchback" "hatchbacks" ;
+lin hatchel_N = mkN "hatchel" "hatchels" ;
+lin hatchery_N = mkN "hatchery" "hatcheries" ;
+lin hatchet_N = mkN "hatchet" "hatchets" ;
+lin hatching_N = mkN "hatching" "hatchings" ;
+lin hatchling_N = mkN "hatchling" "hatchlings" ;
+lin hatchway_N = mkN "hatchway" "hatchways" ;
+lin hate_N = mkN "hate" "hates" ;
+lin hate_V = mkV "hate" "hated" "hated" ;
+lin hateful_A = mkAMost "hateful" "hatefully" ;
+lin hatefulness_N = mkN "hatefulness" "hatefulnesses" ;
+lin hatemonger_N = mkN "hatemonger" "hatemongers" ;
+lin hater_N = mkN "hater" "haters" ;
+lin hatful_N = mkN "hatful" "hatfuls" ;
+lin hatless_A = mkAMost "hatless" "hatlessly" ;
+lin hatmaker_N = mkN "hatmaker" "hatmakers" ;
+lin hatpin_N = mkN "hatpin" "hatpins" ;
+lin hatred_N = mkN "hatred" "hatreds" ;
+lin hatted_A = mkAMost "hatted" "hattedly" ;
+lin hatter_N = mkN "hatter" "hatters" ;
+lin hauberk_N = mkN "hauberk" "hauberks" ;
+lin haughtiness_N = mkN "haughtiness" "haughtinesses" ;
+lin haughty_A = mkA "haughty" "haughtier" "haughtiest" "haughtily" ;
+lin haul_N = mkN "haul" "hauls" ;
+lin haul_V = mkV "haul" "hauled" "hauled" ;
+lin haulage_N = mkN "haulage" "haulages" ;
+lin hauler_N = mkN "hauler" "haulers" ;
+lin haulier_N = mkN "haulier" "hauliers" ;
+lin hauling_N = mkN "hauling" "haulings" ;
+lin haulm_N = mkN "haulm" "haulms" ;
+lin haunch_N = mkN "haunch" "haunches" ;
+lin haunt_N = mkN "haunt" "haunts" ;
+lin haunt_V = mkV "haunt" "haunted" "haunted" ;
+lin haunting_A = mkAMost "haunting" "hauntingly" ;
+lin hausmannite_N = mkN "hausmannite" "hausmannites" ;
+lin haustorium_N = mkN "haustorium" "haustoriums" ;
+lin hautboy_N = mkN "hautboy" "hautboys" ;
+lin hauteur_N = mkN "hauteur" "hauteurs" ;
+lin havana_N = mkN "havana" "havanas" ;
+lin have_V = mkV "have" "had" "had" ;
+lin havelock_N = mkN "havelock" "havelocks" ;
+lin haven_N = mkN "haven" "havens" ;
+lin haversack_N = mkN "haversack" "haversacks" ;
+lin havoc_N = mkN "havoc" "havocs" ;
+lin haw_N = mkN "haw" "haws" ;
+lin haw_V = mkV "haw" "hawed" "hawed" ;
+lin haw_haw_N = mkN "haw-haw" "haw-haws" ;
+lin hawala_N = mkN "hawala" "hawalas" ;
+lin hawfinch_N = mkN "hawfinch" "hawfinches" ;
+lin hawk_N = mkN "hawk" "hawks" ;
+lin hawk_V = mkV "hawk" "hawked" "hawked" ;
+lin hawk_eyed_A = mkAMost "hawk-eyed" "hawk-eyedly" ;
+lin hawkbit_N = mkN "hawkbit" "hawkbits" ;
+lin hawker_N = mkN "hawker" "hawkers" ;
+lin hawkishness_N = mkN "hawkishness" "hawkishnesses" ;
+lin hawkmoth_N = mkN "hawkmoth" "hawkmoths" ;
+lin hawkweed_N = mkN "hawkweed" "hawkweeds" ;
+lin hawse_N = mkN "hawse" "hawses" ;
+lin hawser_N = mkN "hawser" "hawsers" ;
+lin hawthorn_N = mkN "hawthorn" "hawthorns" ;
+lin hay_N = mkN "hay" "hays" ;
+lin haycock_N = mkN "haycock" "haycocks" ;
+lin hayfield_N = mkN "hayfield" "hayfields" ;
+lin hayfork_N = mkN "hayfork" "hayforks" ;
+lin haying_N = mkN "haying" "hayings" ;
+lin hayloft_N = mkN "hayloft" "haylofts" ;
+lin haymaker_N = mkN "haymaker" "haymakers" ;
+lin haymaking_N = mkN "haymaking" "haymakings" ;
+lin haymow_N = mkN "haymow" "haymows" ;
+lin hayrack_N = mkN "hayrack" "hayracks" ;
+lin hayrick_N = mkN "hayrick" "hayricks" ;
+lin haystack_N = mkN "haystack" "haystacks" ;
+lin haywire_A = mkAMost "haywire" "haywirely" ;
+lin haywire_N = mkN "haywire" "haywires" ;
+lin hazard_N = mkN "hazard" "hazards" ;
+lin hazard_V = mkV "hazard" "hazarded" "hazarded" ;
+lin hazardous_A = mkAMost "hazardous" "hazardously" ;
+lin hazardousness_N = mkN "hazardousness" "hazardousnesses" ;
+lin haze_N = mkN "haze" "hazes" ;
+lin haze_V = mkV "haze" "hazed" "hazed" ;
+lin hazel_A = mkAMost "hazel" "hazelly" ;
+lin hazel_N = mkN "hazel" "hazels" ;
+lin hazelnut_N = mkN "hazelnut" "hazelnuts" ;
+lin haziness_N = mkN "haziness" "hazinesses" ;
+lin hazy_A = mkA "hazy" "hazier" "haziest" "hazily" ;
+lin he_goat_N = mkN "he-goat" "he-goats" ;
+lin he_man_N = mkN "he-man" "he-men" ;
+lin head_N = mkN "head" "heads" ;
+lin head_V = mkV "head" "headed" "headed" ;
+lin head_hunter_N = mkN "head-hunter" "head-hunters" ;
+lin head_on_A = mkAMost "head-on" "head-only" ;
+lin head_on_Adv = mkAdv "head-on" ;
+lin headache_N = mkN "headache" "headaches" ;
+lin headband_N = mkN "headband" "headbands" ;
+lin headboard_N = mkN "headboard" "headboards" ;
+lin headcheese_N = mkN "headcheese" "headcheeses" ;
+lin headdress_N = mkN "headdress" "headdresses" ;
+lin header_N = mkN "header" "headers" ;
+lin headfast_N = mkN "headfast" "headfasts" ;
+lin headfirst_A = mkAMost "headfirst" "headfirstly" ;
+lin headful_N = mkN "headful" "headfuls" ;
+lin headgear_N = mkN "headgear" "headgears" ;
+lin headhunter_N = mkN "headhunter" "headhunters" ;
+lin heading_N = mkN "heading" "headings" ;
+lin headlamp_N = mkN "headlamp" "headlamps" ;
+lin headland_N = mkN "headland" "headlands" ;
+lin headless_A = mkAMost "headless" "headlessly" ;
+lin headlight_N = mkN "headlight" "headlights" ;
+lin headlike_A = mkAMost "headlike" "headlikely" ;
+lin headline_N = mkN "headline" "headlines" ;
+lin headliner_N = mkN "headliner" "headliners" ;
+lin headlinese_N = mkN "headlinese" "headlineses" ;
+lin headlock_N = mkN "headlock" "headlocks" ;
+lin headlong_A = mkAMost "headlong" "headlongly" ;
+lin headlong_Adv = mkAdv "headlong" ;
+lin headman_N = mkN "headman" "headmen" ;
+lin headmaster_N = mkN "headmaster" "headmasters" ;
+lin headmastership_N = mkN "headmastership" "headmasterships" ;
+lin headmistress_N = mkN "headmistress" "headmistresses" ;
+lin headmistressship_N = mkN "headmistressship" "headmistressships" ;
+lin headpiece_N = mkN "headpiece" "headpieces" ;
+lin headpin_N = mkN "headpin" "headpins" ;
+lin headquarter_N = mkN "headquarter" "headquarters" ;
+lin headrace_N = mkN "headrace" "headraces" ;
+lin headrest_N = mkN "headrest" "headrests" ;
+lin headroom_N = mkN "headroom" "headrooms" ;
+lin headsail_N = mkN "headsail" "headsails" ;
+lin headscarf_N = mkN "headscarf" "headscarfs" ;
+lin headset_N = mkN "headset" "headsets" ;
+lin headshake_N = mkN "headshake" "headshakes" ;
+lin headship_N = mkN "headship" "headships" ;
+lin headshot_N = mkN "headshot" "headshots" ;
+lin headsman_N = mkN "headsman" "headsmans" ;
+lin headspace_N = mkN "headspace" "headspaces" ;
+lin headstall_N = mkN "headstall" "headstalls" ;
+lin headstand_N = mkN "headstand" "headstands" ;
+lin headstock_N = mkN "headstock" "headstocks" ;
+lin headstone_N = mkN "headstone" "headstones" ;
+lin headstream_N = mkN "headstream" "headstreams" ;
+lin headstrong_A = mkAMost "headstrong" "headstrongly" ;
+lin headwater_N = mkN "headwater" "headwaters" ;
+lin headway_N = mkN "headway" "headways" ;
+lin headwind_N = mkN "headwind" "headwinds" ;
+lin headword_N = mkN "headword" "headwords" ;
+lin heady_A = mkA "heady" "headier" "headiest" "headily" ;
+lin heal_V = mkV "heal" "healed" "healed" ;
+lin healer_N = mkN "healer" "healers" ;
+lin healing_N = mkN "healing" "healings" ;
+lin health_N = mkN "health" "healths" ;
+lin healthcare_N = mkN "healthcare" "healthcares" ;
+lin healthful_A = mkAMost "healthful" "healthfully" ;
+lin healthfulness_N = mkN "healthfulness" "healthfulnesses" ;
+lin healthy_A = mkA "healthy" "healthier" "healthiest" "healthily" ;
+lin heap_N = mkN "heap" "heaps" ;
+lin heap_V = mkV "heap" "heaped" "heaped" ;
+lin heaps_Adv = mkAdv "heaps" ;
+lin hear_V = mkV "hear" "heard" "heard" ;
+lin hearer_N = mkN "hearer" "hearers" ;
+lin hearing_N = mkN "hearing" "hearings" ;
+lin hearing_aid_N = mkN "hearing-aid" "hearing-aids" ;
+lin hearken_V = mkV "hearken" "hearkened" "hearkened" ;
+lin hearsay_A = mkAMost "hearsay" "hearsaily" ;
+lin hearsay_N = mkN "hearsay" "hearsays" ;
+lin hearse_N = mkN "hearse" "hearses" ;
+lin heart's_ease_N = mkN "heart's-ease" "heart's-eases" ;
+lin heart_N = mkN "heart" "hearts" ;
+lin heart_disease_N = mkN "heart-disease" "heart-diseases" ;
+lin heart_failure_N = mkN "heart-failure" "heart-failures" ;
+lin heart_rending_A = mkAMost "heart-rending" "heart-rendingly" ;
+lin heartache_N = mkN "heartache" "heartaches" ;
+lin heartbeat_N = mkN "heartbeat" "heartbeats" ;
+lin heartbreak_N = mkN "heartbreak" "heartbreaks" ;
+lin heartbreaker_N = mkN "heartbreaker" "heartbreakers" ;
+lin heartbreaking_A = mkAMost "heartbreaking" "heartbreakingly" ;
+lin heartbroken_A = mkAMost "heartbroken" "heartbrokenly" ;
+lin heartburn_N = mkN "heartburn" "heartburns" ;
+lin heartburning_N = mkN "heartburning" "heartburnings" ;
+lin hearted_A = mkAMost "hearted" "heartedly" ;
+lin hearten_V = mkV "hearten" "heartened" "heartened" ;
+lin heartening_A = mkAMost "heartening" "hearteningly" ;
+lin heartfelt_A = mkAMost "heartfelt" "heartfeltly" ;
+lin hearth_N = mkN "hearth" "hearths" ;
+lin hearthrug_N = mkN "hearthrug" "hearthrugs" ;
+lin hearthstone_N = mkN "hearthstone" "hearthstones" ;
+lin heartiness_N = mkN "heartiness" "heartinesses" ;
+lin heartland_N = mkN "heartland" "heartlands" ;
+lin heartleaf_N = mkN "heartleaf" "heartleafs" ;
+lin heartless_A = mkAMost "heartless" "heartlessly" ;
+lin heartlessness_N = mkN "heartlessness" "heartlessnesses" ;
+lin heartrot_N = mkN "heartrot" "heartrots" ;
+lin hearts_N = mkN "hearts" "heartses" ;
+lin heartseed_N = mkN "heartseed" "heartseeds" ;
+lin heartsick_A = mkAMost "heartsick" "heartsickly" ;
+lin heartstrings_N = mkN "heartstrings" "heartstringses" ;
+lin heartthrob_N = mkN "heartthrob" "heartthrobs" ;
+lin heartwarming_A = mkAMost "heartwarming" "heartwarmingly" ;
+lin heartwood_N = mkN "heartwood" "heartwoods" ;
+lin hearty_A = mkA "hearty" "heartier" "heartiest" "heartily" ;
+lin heat_N = mkN "heat" "heats" ;
+lin heat_V = mkV "heat" "heated" "heated" ;
+lin heat_flash_N = mkN "heat-flash" "heat-flashes" ;
+lin heatable_A = mkAMost "heatable" "heatably" ;
+lin heated_A = mkAMost "heated" "heatedly" ;
+lin heater_N = mkN "heater" "heaters" ;
+lin heath_N = mkN "heath" "heaths" ;
+lin heathen_A = mkAMost "heathen" "heathenly" ;
+lin heathen_N = mkN "heathen" "heathens" ;
+lin heathenish_A = mkAMost "heathenish" "heathenishly" ;
+lin heather_N = mkN "heather" "heathers" ;
+lin heather_mixture_N = mkN "heather-mixture" "heather-mixtures" ;
+lin heathlike_A = mkAMost "heathlike" "heathlikely" ;
+lin heating_N = mkN "heating" "heatings" ;
+lin heatless_A = mkAMost "heatless" "heatlessly" ;
+lin heatspot_N = mkN "heatspot" "heatspots" ;
+lin heatstroke_N = mkN "heatstroke" "heatstrokes" ;
+lin heatwave_N = mkN "heatwave" "heatwaves" ;
+lin heaume_N = mkN "heaume" "heaumes" ;
+lin heave_N = mkN "heave" "heaves" ;
+lin heave_V = mkV "heave" "heaved" "heaved" ;
+lin heaven_N = mkN "heaven" "heavens" ;
+lin heavenly_A = mkAMost "heavenly" "heavenlily" ;
+lin heavensent_A = mkAMost "heavensent" "heavensently" ;
+lin heavenward_A = mkAMost "heavenward" "heavenwardly" ;
+lin heavenward_Adv = mkAdv "heavenward" ;
+lin heavenwards_A = mkAMost "heavenwards" "heavenwardsly" ;
+lin heavenwards_Adv = mkAdv "heavenwards" ;
+lin heaver_N = mkN "heaver" "heavers" ;
+lin heaves_N = mkN "heaves" "heaveses" ;
+lin heaviness_N = mkN "heaviness" "heavinesses" ;
+lin heavy_A = mkA "heavy" "heavier" "heaviest" "heavily" ;
+lin heavy_Adv = mkAdv "heavy" ;
+lin heavy_N = mkN "heavy" "heavies" ;
+lin heavy_handed_A = mkAMost "heavy-handed" "heavy-handedly" ;
+lin heavy_hearted_A = mkAMost "heavy-hearted" "heavy-heartedly" ;
+lin heavy_laden_A = mkAMost "heavy-laden" "heavy-ladenly" ;
+lin heavyhearted_A = mkAMost "heavyhearted" "heavyheartedly" ;
+lin heavyheartedness_N = mkN "heavyheartedness" "heavyheartednesses" ;
+lin heavyweight_N = mkN "heavyweight" "heavyweights" ;
+lin hebdomadal_A = mkAMost "hebdomadal" "hebdomadally" ;
+lin hebephrenia_N = mkN "hebephrenia" "hebephrenias" ;
+lin hebephrenic_A = mkAMost "hebephrenic" "hebephrenicly" ;
+lin hebetude_N = mkN "hebetude" "hebetudes" ;
+lin hebraic_A = mkAMost "hebraic" "hebraicly" ;
+lin hebrew_A = mkAMost "hebrew" "hebrewly" ;
+lin hebrew_N = mkN "hebrew" "hebrews" ;
+lin hecatomb_N = mkN "hecatomb" "hecatombs" ;
+lin heck_N = mkN "heck" "hecks" ;
+lin heckelphone_N = mkN "heckelphone" "heckelphones" ;
+lin heckle_V = mkV "heckle" "heckled" "heckled" ;
+lin heckler_N = mkN "heckler" "hecklers" ;
+lin heckling_N = mkN "heckling" "hecklings" ;
+lin hectare_N = mkN "hectare" "hectares" ;
+lin hectic_A = mkAMost "hectic" "hecticly" ;
+lin hectogram_N = mkN "hectogram" "hectograms" ;
+lin hectograph_N = mkN "hectograph" "hectographs" ;
+lin hectoliter_N = mkN "hectoliter" "hectoliters" ;
+lin hectometer_N = mkN "hectometer" "hectometers" ;
+lin hector_V = mkV "hector" "hectored" "hectored" ;
+lin hedge_N = mkN "hedge" "hedges" ;
+lin hedge_V = mkV "hedge" "hedged" "hedged" ;
+lin hedge_sparrow_N = mkN "hedge-sparrow" "hedge-sparrows" ;
+lin hedgehog_N = mkN "hedgehog" "hedgehogs" ;
+lin hedgehop_V = mkV "hedgehop" "hedgehopped" "hedgehopped" ;
+lin hedger_N = mkN "hedger" "hedgers" ;
+lin hedgerow_N = mkN "hedgerow" "hedgerows" ;
+lin hedonic_A = mkAMost "hedonic" "hedonicly" ;
+lin hedonism_N = mkN "hedonism" "hedonisms" ;
+lin hedonist_N = mkN "hedonist" "hedonists" ;
+lin hedonistic_A = mkAMost "hedonistic" "hedonisticly" ;
+lin heed_N = mkN "heed" "heeds" ;
+lin heed_V = mkV "heed" "heeded" "heeded" ;
+lin heedful_A = mkAMost "heedful" "heedfully" ;
+lin heedless_A = mkAMost "heedless" "heedlessly" ;
+lin heedlessness_N = mkN "heedlessness" "heedlessnesses" ;
+lin heehaw_N = mkN "heehaw" "heehaws" ;
+lin heel_N = mkN "heel" "heels" ;
+lin heel_V = mkV "heel" "heeled" "heeled" ;
+lin heelbone_N = mkN "heelbone" "heelbones" ;
+lin heft_N = mkN "heft" "hefts" ;
+lin hefty_A = mkA "hefty" "heftier" "heftiest" "heftily" ;
+lin hegari_N = mkN "hegari" "hegaris" ;
+lin hegemon_N = mkN "hegemon" "hegemons" ;
+lin hegemony_N = mkN "hegemony" "hegemonies" ;
+lin hegira_N = mkN "hegira" "hegiras" ;
+lin heifer_N = mkN "heifer" "heifers" ;
+lin height_N = mkN "height" "heights" ;
+lin heighten_V = mkV "heighten" "heightened" "heightened" ;
+lin heinous_A = mkAMost "heinous" "heinously" ;
+lin heinousness_N = mkN "heinousness" "heinousnesses" ;
+lin heir_N = mkN "heir" "heirs" ;
+lin heiress_N = mkN "heiress" "heiresses" ;
+lin heirloom_N = mkN "heirloom" "heirlooms" ;
+lin heist_N = mkN "heist" "heists" ;
+lin hejira_N = mkN "hejira" "hejiras" ;
+lin heliacal_A = mkAMost "heliacal" "heliacally" ;
+lin helianthemum_N = mkN "helianthemum" "helianthemums" ;
+lin helicon_N = mkN "helicon" "helicons" ;
+lin helicopter_N = mkN "helicopter" "helicopters" ;
+lin heliocentric_A = mkAMost "heliocentric" "heliocentricly" ;
+lin heliogram_N = mkN "heliogram" "heliograms" ;
+lin heliograph_N = mkN "heliograph" "heliographs" ;
+lin heliograph_V = mkV "heliograph" "heliographed" "heliographed" ;
+lin heliolatry_N = mkN "heliolatry" "heliolatries" ;
+lin heliometer_N = mkN "heliometer" "heliometers" ;
+lin heliopause_N = mkN "heliopause" "heliopauses" ;
+lin heliophila_N = mkN "heliophila" "heliophilas" ;
+lin heliopsis_N = mkN "heliopsis" "heliopsises" ;
+lin heliosphere_N = mkN "heliosphere" "heliospheres" ;
+lin heliotherapy_N = mkN "heliotherapy" "heliotherapies" ;
+lin heliotrope_N = mkN "heliotrope" "heliotropes" ;
+lin heliotropism_N = mkN "heliotropism" "heliotropisms" ;
+lin heliozoan_N = mkN "heliozoan" "heliozoans" ;
+lin heliport_N = mkN "heliport" "heliports" ;
+lin helium_N = mkN "helium" "heliums" ;
+lin helix_N = mkN "helix" "helixes" ;
+lin hell_N = mkN "hell" "hells" ;
+lin hellbender_N = mkN "hellbender" "hellbenders" ;
+lin hellcat_N = mkN "hellcat" "hellcats" ;
+lin hellebore_N = mkN "hellebore" "hellebores" ;
+lin helleborine_N = mkN "helleborine" "helleborines" ;
+lin hellene_N = mkN "hellene" "hellenes" ;
+lin hellenic_A = mkAMost "hellenic" "hellenicly" ;
+lin hellfire_N = mkN "hellfire" "hellfires" ;
+lin hellgrammiate_N = mkN "hellgrammiate" "hellgrammiates" ;
+lin hellhound_N = mkN "hellhound" "hellhounds" ;
+lin hellion_N = mkN "hellion" "hellions" ;
+lin hellish_A = mkAMost "hellish" "hellishly" ;
+lin helm_N = mkN "helm" "helms" ;
+lin helmet_N = mkN "helmet" "helmets" ;
+lin helmeted_A = mkAMost "helmeted" "helmetedly" ;
+lin helmetflower_N = mkN "helmetflower" "helmetflowers" ;
+lin helminth_N = mkN "helminth" "helminths" ;
+lin helminthiasis_N = mkN "helminthiasis" "helminthiasises" ;
+lin helmsman_N = mkN "helmsman" "helmsmen" ;
+lin helot_N = mkN "helot" "helots" ;
+lin help_N = mkN "help" "helps" ;
+lin help_V = mkV "help" "helped" "helped" ;
+lin helper_N = mkN "helper" "helpers" ;
+lin helpful_A = mkAMost "helpful" "helpfully" ;
+lin helpfulness_N = mkN "helpfulness" "helpfulnesses" ;
+lin helping_N = mkN "helping" "helpings" ;
+lin helpless_A = mkAMost "helpless" "helplessly" ;
+lin helplessness_N = mkN "helplessness" "helplessnesses" ;
+lin helpmate_N = mkN "helpmate" "helpmates" ;
+lin helpmeet_N = mkN "helpmeet" "helpmeets" ;
+lin helter_skelter_Adv = mkAdv "helter-skelter" ;
+lin helter_skelter_N = mkN "helter-skelter" "helter-skelters" ;
+lin helve_N = mkN "helve" "helves" ;
+lin helvella_N = mkN "helvella" "helvellas" ;
+lin hem_N = mkN "hem" "hems" ;
+lin hem_V = mkV "hem" "hemmed" "hemmed" ;
+lin hemagglutination_N = mkN "hemagglutination" "hemagglutinations" ;
+lin hemal_A = mkAMost "hemal" "hemally" ;
+lin hemangioma_N = mkN "hemangioma" "hemangiomas" ;
+lin hematemesis_N = mkN "hematemesis" "hematemesises" ;
+lin hematinic_N = mkN "hematinic" "hematinics" ;
+lin hematite_N = mkN "hematite" "hematites" ;
+lin hematocele_N = mkN "hematocele" "hematoceles" ;
+lin hematochezia_N = mkN "hematochezia" "hematochezias" ;
+lin hematochrome_N = mkN "hematochrome" "hematochromes" ;
+lin hematocolpometra_N = mkN "hematocolpometra" "hematocolpometras" ;
+lin hematocolpos_N = mkN "hematocolpos" "hematocolposes" ;
+lin hematocrit_N = mkN "hematocrit" "hematocrits" ;
+lin hematocytopenia_N = mkN "hematocytopenia" "hematocytopenias" ;
+lin hematocyturia_N = mkN "hematocyturia" "hematocyturias" ;
+lin hematologic_A = mkAMost "hematologic" "hematologicly" ;
+lin hematologist_N = mkN "hematologist" "hematologists" ;
+lin hematology_N = mkN "hematology" "hematologies" ;
+lin hematoma_N = mkN "hematoma" "hematomas" ;
+lin hematopoiesis_N = mkN "hematopoiesis" "hematopoiesises" ;
+lin hematopoietic_A = mkAMost "hematopoietic" "hematopoieticly" ;
+lin hematuria_N = mkN "hematuria" "hematurias" ;
+lin heme_N = mkN "heme" "hemes" ;
+lin hemeralopia_N = mkN "hemeralopia" "hemeralopias" ;
+lin hemiacetal_N = mkN "hemiacetal" "hemiacetals" ;
+lin hemianopia_N = mkN "hemianopia" "hemianopias" ;
+lin hemic_A = mkAMost "hemic" "hemicly" ;
+lin hemiepiphyte_N = mkN "hemiepiphyte" "hemiepiphytes" ;
+lin hemimetabolous_A = mkAMost "hemimetabolous" "hemimetabolously" ;
+lin hemimetamorphosis_N = mkN "hemimetamorphosis" "hemimetamorphosises" ;
+lin hemimorphite_N = mkN "hemimorphite" "hemimorphites" ;
+lin hemin_N = mkN "hemin" "hemins" ;
+lin hemiparasite_N = mkN "hemiparasite" "hemiparasites" ;
+lin hemiparasitic_A = mkAMost "hemiparasitic" "hemiparasiticly" ;
+lin hemiplegia_N = mkN "hemiplegia" "hemiplegias" ;
+lin hemiplegic_N = mkN "hemiplegic" "hemiplegics" ;
+lin hemisphere_N = mkN "hemisphere" "hemispheres" ;
+lin hemispheric_A = mkAMost "hemispheric" "hemisphericly" ;
+lin hemispherical_A = mkAMost "hemispherical" "hemispherically" ;
+lin hemline_N = mkN "hemline" "hemlines" ;
+lin hemlock_N = mkN "hemlock" "hemlocks" ;
+lin hemming_stitch_N = mkN "hemming-stitch" "hemming-stitches" ;
+lin hemochromatosis_N = mkN "hemochromatosis" "hemochromatosises" ;
+lin hemodialysis_N = mkN "hemodialysis" "hemodialysises" ;
+lin hemodynamic_A = mkAMost "hemodynamic" "hemodynamicly" ;
+lin hemodynamics_N = mkN "hemodynamics" "hemodynamicses" ;
+lin hemoglobin_N = mkN "hemoglobin" "hemoglobins" ;
+lin hemoglobinemia_N = mkN "hemoglobinemia" "hemoglobinemias" ;
+lin hemoglobinopathy_N = mkN "hemoglobinopathy" "hemoglobinopathies" ;
+lin hemoglobinuria_N = mkN "hemoglobinuria" "hemoglobinurias" ;
+lin hemolysin_N = mkN "hemolysin" "hemolysins" ;
+lin hemolysis_N = mkN "hemolysis" "hemolysises" ;
+lin hemolytic_A = mkAMost "hemolytic" "hemolyticly" ;
+lin hemophilia_N = mkN "hemophilia" "hemophilias" ;
+lin hemophiliac_N = mkN "hemophiliac" "hemophiliacs" ;
+lin hemoprotein_N = mkN "hemoprotein" "hemoproteins" ;
+lin hemoptysis_N = mkN "hemoptysis" "hemoptysises" ;
+lin hemorrhage_N = mkN "hemorrhage" "hemorrhages" ;
+lin hemorrhage_V = mkV "hemorrhage" "hemorrhaged" "hemorrhaged" ;
+lin hemorrhagic_A = mkAMost "hemorrhagic" "hemorrhagicly" ;
+lin hemorrhoid_N = mkN "hemorrhoid" "hemorrhoids" ;
+lin hemorrhoidectomy_N = mkN "hemorrhoidectomy" "hemorrhoidectomies" ;
+lin hemosiderin_N = mkN "hemosiderin" "hemosiderins" ;
+lin hemosiderosis_N = mkN "hemosiderosis" "hemosiderosises" ;
+lin hemostasis_N = mkN "hemostasis" "hemostasises" ;
+lin hemostat_N = mkN "hemostat" "hemostats" ;
+lin hemothorax_N = mkN "hemothorax" "hemothoraxes" ;
+lin hemp_N = mkN "hemp" "hemps" ;
+lin hempen_A = mkAMost "hempen" "hempenly" ;
+lin hemstitch_N = mkN "hemstitch" "hemstitches" ;
+lin hemstitch_V = mkV "hemstitch" "hemstitched" "hemstitched" ;
+lin hen_N = mkN "hen" "hens" ;
+lin hen_party_N = mkN "hen-party" "hen-parties" ;
+lin henbane_N = mkN "henbane" "henbanes" ;
+lin henbit_N = mkN "henbit" "henbits" ;
+lin hence_Adv = mkAdv "hence" ;
+lin henceforth_Adv = mkAdv "henceforth" ;
+lin henceforward_Adv = mkAdv "henceforward" ;
+lin henchman_N = mkN "henchman" "henchmen" ;
+lin hencoop_N = mkN "hencoop" "hencoops" ;
+lin hendiadys_N = mkN "hendiadys" "hendiadyses" ;
+lin henhouse_N = mkN "henhouse" "henhouses" ;
+lin henna_N = mkN "henna" "hennas" ;
+lin hennaed_A = mkAMost "hennaed" "hennaedly" ;
+lin henpecked_A = mkAMost "henpecked" "henpeckedly" ;
+lin henroost_N = mkN "henroost" "henroosts" ;
+lin henry_N = mkN "henry" "henries" ;
+lin hep_A = mkAMost "hep" "heply" ;
+lin hepadnavirus_N = mkN "hepadnavirus" "hepadnaviruses" ;
+lin heparin_N = mkN "heparin" "heparins" ;
+lin hepatic_A = mkAMost "hepatic" "hepaticly" ;
+lin hepatica_N = mkN "hepatica" "hepaticas" ;
+lin hepatitis_N = mkN "hepatitis" "hepatitises" ;
+lin hepatoma_N = mkN "hepatoma" "hepatomas" ;
+lin hepatomegaly_N = mkN "hepatomegaly" "hepatomegalies" ;
+lin hepatotoxic_A = mkAMost "hepatotoxic" "hepatotoxicly" ;
+lin hepatotoxin_N = mkN "hepatotoxin" "hepatotoxins" ;
+lin heptagon_N = mkN "heptagon" "heptagons" ;
+lin heptane_N = mkN "heptane" "heptanes" ;
+lin herald_N = mkN "herald" "heralds" ;
+lin herald_V = mkV "herald" "heralded" "heralded" ;
+lin heraldic_A = mkAMost "heraldic" "heraldicly" ;
+lin heraldry_N = mkN "heraldry" "heraldries" ;
+lin herb_N = mkN "herb" "herbs" ;
+lin herbaceous_A = mkAMost "herbaceous" "herbaceously" ;
+lin herbage_N = mkN "herbage" "herbages" ;
+lin herbal_A = mkAMost "herbal" "herbally" ;
+lin herbalist_N = mkN "herbalist" "herbalists" ;
+lin herbarium_N = mkN "herbarium" "herbariums" ;
+lin herbicide_N = mkN "herbicide" "herbicides" ;
+lin herbivore_N = mkN "herbivore" "herbivores" ;
+lin herbivorous_A = mkAMost "herbivorous" "herbivorously" ;
+lin herculean_A = mkAMost "herculean" "herculeanly" ;
+lin herd_N = mkN "herd" "herds" ;
+lin herd_V = mkV "herd" "herded" "herded" ;
+lin herder_N = mkN "herder" "herders" ;
+lin herdsman_N = mkN "herdsman" "herdsmen" ;
+lin here_Adv = mkAdv "here" ;
+lin hereabout_Adv = mkAdv "hereabout" ;
+lin hereabouts_Adv = mkAdv "hereabouts" ;
+lin hereafter_Adv = mkAdv "hereafter" ;
+lin hereafter_N = mkN "hereafter" "IRREG" ;
+lin hereby_Adv = mkAdv "hereby" ;
+lin hereditament_N = mkN "hereditament" "hereditaments" ;
+lin hereditarianism_N = mkN "hereditarianism" "hereditarianisms" ;
+lin hereditary_A = mkAMost "hereditary" "hereditarily" ;
+lin heredity_N = mkN "heredity" "heredities" ;
+lin herein_Adv = mkAdv "herein" ;
+lin hereinafter_Adv = mkAdv "hereinafter" ;
+lin hereinbefore_Adv = mkAdv "hereinbefore" ;
+lin hereness_N = mkN "hereness" "herenesses" ;
+lin hereof_Adv = mkAdv "hereof" ;
+lin heresy_N = mkN "heresy" "heresies" ;
+lin heretic_N = mkN "heretic" "heretics" ;
+lin heretical_A = mkAMost "heretical" "heretically" ;
+lin hereto_Adv = mkAdv "hereto" ;
+lin heretofore_Adv = mkAdv "heretofore" ;
+lin hereunder_Adv = mkAdv "hereunder" ;
+lin hereupon_Adv = mkAdv "hereupon" ;
+lin herewith_Adv = mkAdv "herewith" ;
+lin heritable_A = mkAMost "heritable" "heritably" ;
+lin heritage_N = mkN "heritage" "IRREG" ;
+lin herm_N = mkN "herm" "herms" ;
+lin hermaphrodite_N = mkN "hermaphrodite" "hermaphrodites" ;
+lin hermaphroditic_A = mkAMost "hermaphroditic" "hermaphroditicly" ;
+lin hermaphroditism_N = mkN "hermaphroditism" "hermaphroditisms" ;
+lin hermeneutic_A = mkAMost "hermeneutic" "hermeneuticly" ;
+lin hermeneutics_N = mkN "hermeneutics" "hermeneuticses" ;
+lin hermetic_A = mkAMost "hermetic" "hermeticly" ;
+lin hermetically_Adv = mkAdv "hermetically" ;
+lin hermit_N = mkN "hermit" "hermits" ;
+lin hermitage_N = mkN "hermitage" "hermitages" ;
+lin hernia_N = mkN "hernia" "hernias" ;
+lin hero_N = mkN "hero" "heroes" ;
+lin heroic_A = mkAMost "heroic" "heroicly" ;
+lin heroically_Adv = mkAdv "heroically" ;
+lin heroics_N = mkN "heroics" "heroics" ;
+lin heroin_N = mkN "heroin" "heroins" ;
+lin heroine_N = mkN "heroine" "heroines" ;
+lin heroism_N = mkN "heroism" "heroisms" ;
+lin heron_N = mkN "heron" "herons" ;
+lin heronry_N = mkN "heronry" "heronries" ;
+lin herpangia_N = mkN "herpangia" "herpangias" ;
+lin herpes_N = mkN "herpes" "herpeses" ;
+lin herpetologist_N = mkN "herpetologist" "herpetologists" ;
+lin herpetology_N = mkN "herpetology" "herpetologies" ;
+lin herr_N = mkN "herr" "IRREG" ;
+lin herrerasaur_N = mkN "herrerasaur" "herrerasaurs" ;
+lin herring_N = mkN "herring" "herring" ;
+lin herringbone_N = mkN "herringbone" "herringbones" ;
+lin hertz_N = mkN "hertz" "hertz" ;
+lin hertzian_A = mkAMost "hertzian" "hertzianly" ;
+lin hesitance_N = mkN "hesitance" "IRREG" ;
+lin hesitancy_N = mkN "hesitancy" "hesitancies" ;
+lin hesitant_A = mkAMost "hesitant" "hesitantly" ;
+lin hesitate_V = mkV "hesitate" "hesitated" "hesitated" ;
+lin hesitatingly_Adv = mkAdv "hesitatingly" ;
+lin hesitation_N = mkN "hesitation" "hesitations" ;
+lin hessian_N = mkN "hessian" "hessians" ;
+lin het_up_A = mkAMost "het-up" "het-uply" ;
+lin heterocercal_A = mkAMost "heterocercal" "heterocercally" ;
+lin heterocyclic_A = mkAMost "heterocyclic" "heterocyclicly" ;
+lin heterodactyl_A = mkAMost "heterodactyl" "heterodactylly" ;
+lin heterodox_A = mkAMost "heterodox" "heterodoxly" ;
+lin heterodoxy_N = mkN "heterodoxy" "heterodoxies" ;
+lin heterodyne_A = mkAMost "heterodyne" "heterodynely" ;
+lin heteroecious_A = mkAMost "heteroecious" "heteroeciously" ;
+lin heterogeneity_N = mkN "heterogeneity" "heterogeneities" ;
+lin heterogeneous_A = mkAMost "heterogeneous" "heterogeneously" ;
+lin heterogenous_A = mkAMost "heterogenous" "heterogenously" ;
+lin heterograft_N = mkN "heterograft" "heterografts" ;
+lin heteroicous_A = mkAMost "heteroicous" "heteroicously" ;
+lin heterologous_A = mkAMost "heterologous" "heterologously" ;
+lin heterology_N = mkN "heterology" "heterologies" ;
+lin heterometabolism_N = mkN "heterometabolism" "heterometabolisms" ;
+lin heterometabolous_A = mkAMost "heterometabolous" "heterometabolously" ;
+lin heteronym_N = mkN "heteronym" "heteronyms" ;
+lin heteroploid_N = mkN "heteroploid" "heteroploids" ;
+lin heteroploidy_N = mkN "heteroploidy" "heteroploidies" ;
+lin heterosexism_N = mkN "heterosexism" "heterosexisms" ;
+lin heterosexual_A = mkAMost "heterosexual" "heterosexually" ;
+lin heterosexual_N = mkN "heterosexual" "heterosexuals" ;
+lin heterosexuality_N = mkN "heterosexuality" "heterosexualities" ;
+lin heterosis_N = mkN "heterosis" "heterosises" ;
+lin heterosporous_A = mkAMost "heterosporous" "heterosporously" ;
+lin heterospory_N = mkN "heterospory" "heterospories" ;
+lin heterostracan_N = mkN "heterostracan" "heterostracans" ;
+lin heterotroph_N = mkN "heterotroph" "heterotrophs" ;
+lin heterotrophic_A = mkAMost "heterotrophic" "heterotrophicly" ;
+lin heterozygosity_N = mkN "heterozygosity" "heterozygosities" ;
+lin heterozygote_N = mkN "heterozygote" "heterozygotes" ;
+lin heterozygous_A = mkAMost "heterozygous" "heterozygously" ;
+lin heth_N = mkN "heth" "heths" ;
+lin heulandite_N = mkN "heulandite" "heulandites" ;
+lin heuristic_A = mkAMost "heuristic" "heuristicly" ;
+lin heuristic_N = mkN "heuristic" "heuristics" ;
+lin heuristics_N = mkN "heuristics" "heuristics" ;
+lin hew_V = mkV "hew" "hewed" "hewed" ;
+lin hewer_N = mkN "hewer" "hewers" ;
+lin hewn_A = mkA "hewn" "hewner" "hewnest" "hewnly" ;
+lin hex_N = mkN "hex" "hexes" ;
+lin hexachlorophene_N = mkN "hexachlorophene" "hexachlorophenes" ;
+lin hexadecimal_A = mkAMost "hexadecimal" "hexadecimally" ;
+lin hexagon_N = mkN "hexagon" "hexagons" ;
+lin hexagonal_A = mkAMost "hexagonal" "hexagonally" ;
+lin hexagram_N = mkN "hexagram" "hexagrams" ;
+lin hexahedron_N = mkN "hexahedron" "hexahedrons" ;
+lin hexameter_N = mkN "hexameter" "hexameters" ;
+lin hexane_N = mkN "hexane" "hexanes" ;
+lin hexangular_A = mkAMost "hexangular" "hexangularly" ;
+lin hexapod_N = mkN "hexapod" "hexapods" ;
+lin hexed_A = mkAMost "hexed" "hexedly" ;
+lin hexestrol_N = mkN "hexestrol" "hexestrols" ;
+lin hexose_N = mkN "hexose" "hexoses" ;
+lin heyday_N = mkN "heyday" "IRREG" ;
+lin hi_fi_A = mkAMost "hi-fi" "hi-fily" ;
+lin hi_fi_N = mkN "hi-fi" "hi-fis" ;
+lin hiatus_N = mkN "hiatus" "hiatuses" ;
+lin hibachi_N = mkN "hibachi" "hibachis" ;
+lin hibernate_V = mkV "hibernate" "hibernated" "hibernated" ;
+lin hibernation_N = mkN "hibernation" "hibernations" ;
+lin hibiscus_N = mkN "hibiscus" "hibiscuses" ;
+lin hiccough_N = mkN "hiccough" "hiccoughs" ;
+lin hiccough_V = mkV "hiccough" "hiccoughed" "hiccoughed" ;
+lin hiccup_N = mkN "hiccup" "hiccups" ;
+lin hiccup_V = mkV "hiccup" "hiccupped" "hiccupped" ;
+lin hick_A = mkAMost "hick" "hickly" ;
+lin hick_N = mkN "hick" "hicks" ;
+lin hickey_N = mkN "hickey" "hickeys" ;
+lin hickory_N = mkN "hickory" "hickories" ;
+lin hiddenite_N = mkN "hiddenite" "hiddenites" ;
+lin hiddenness_N = mkN "hiddenness" "hiddennesses" ;
+lin hide_N = mkN "hide" "hides" ;
+lin hide_V = mkV "hide" "hid" "hidden" ;
+lin hide_and_seek_N = mkN "hide-and-seek" "hide-and-seeks" ;
+lin hide_out_N = mkN "hide-out" "hide-outs" ;
+lin hideaway_N = mkN "hideaway" "hideaways" ;
+lin hidebound_A = mkAMost "hidebound" "hideboundly" ;
+lin hideous_A = mkAMost "hideous" "hideously" ;
+lin hideousness_N = mkN "hideousness" "hideousnesses" ;
+lin hideout_N = mkN "hideout" "hideouts" ;
+lin hiding_N = mkN "hiding" "hidings" ;
+lin hiding_place_N = mkN "hiding-place" "hiding-places" ;
+lin hidrotic_A = mkAMost "hidrotic" "hidroticly" ;
+lin hie_V = mkV "hie" "IRREG" "IRREG" ;
+lin hierarch_N = mkN "hierarch" "hierarches" ;
+lin hierarchic_A = mkAMost "hierarchic" "hierarchicly" ;
+lin hierarchical_A = mkAMost "hierarchical" "hierarchically" ;
+lin hierarchy_N = mkN "hierarchy" "hierarchies" ;
+lin hieratic_A = mkAMost "hieratic" "hieraticly" ;
+lin hieratic_N = mkN "hieratic" "hieratics" ;
+lin hierocracy_N = mkN "hierocracy" "hierocracies" ;
+lin hieroglyph_N = mkN "hieroglyph" "hieroglyphs" ;
+lin hieroglyphic_A = mkAMost "hieroglyphic" "hieroglyphicly" ;
+lin hieroglyphically_Adv = mkAdv "hieroglyphically" ;
+lin hieroglyphics_N = mkN "hieroglyphics" "hieroglyphics" ;
+lin higgledy_piggledy_A = mkAMost "higgledy-piggledy" "higgledy-piggledily" ;
+lin higgledy_piggledy_Adv = mkAdv "higgledy-piggledy" ;
+lin high_A = mkA "high" "higher" "highest" "highly" ;
+lin high_Adv = mkAdv "high" ;
+lin high_N = mkN "high" "highs" ;
+lin high_class_A = mkAMost "high-class" "high-classly" ;
+lin high_falutin_A = mkAMost "high-falutin" "high-falutinly" ;
+lin high_fidelity_A = mkAMost "high-fidelity" "high-fidelitily" ;
+lin high_fidelity_N = mkN "high-fidelity" "high-fidelities" ;
+lin high_frequency_N = mkN "high-frequency" "high-frequencies" ;
+lin high_grade_A = mkAMost "high-grade" "high-gradely" ;
+lin high_handed_A = mkAMost "high-handed" "high-handedly" ;
+lin high_keyed_A = mkAMost "high-keyed" "high-keyedly" ;
+lin high_level_A = mkAMost "high-level" "high-levelly" ;
+lin high_minded_A = mkAMost "high-minded" "high-mindedly" ;
+lin high_mindedness_N = mkN "high-mindedness" "high-mindednesses" ;
+lin high_necked_A = mkAMost "high-necked" "high-neckedly" ;
+lin high_octane_A = mkAMost "high-octane" "high-octanely" ;
+lin high_pitched_A = mkAMost "high-pitched" "high-pitchedly" ;
+lin high_powered_A = mkAMost "high-powered" "high-poweredly" ;
+lin high_pressure_N = mkN "high-pressure" "high-pressures" ;
+lin high_priced_A = mkAMost "high-priced" "high-pricedly" ;
+lin high_principled_A = mkAMost "high-principled" "high-principledly" ;
+lin high_ranking_A = mkAMost "high-ranking" "high-rankingly" ;
+lin high_rise_A = mkAMost "high-rise" "high-risely" ;
+lin high_sounding_A = mkAMost "high-sounding" "high-soundingly" ;
+lin high_speed_A = mkAMost "high-speed" "high-speedly" ;
+lin high_spirited_A = mkAMost "high-spirited" "high-spiritedly" ;
+lin high_tension_A = mkAMost "high-tension" "high-tensionly" ;
+lin high_toned_A = mkAMost "high-toned" "high-tonedly" ;
+lin high_up_N = mkN "high-up" "high-ups" ;
+lin highball_N = mkN "highball" "highballs" ;
+lin highbinder_N = mkN "highbinder" "highbinders" ;
+lin highboard_N = mkN "highboard" "highboards" ;
+lin highborn_A = mkAMost "highborn" "highbornly" ;
+lin highboy_N = mkN "highboy" "highboys" ;
+lin highbrow_A = mkAMost "highbrow" "highbrowly" ;
+lin highbrow_N = mkN "highbrow" "highbrows" ;
+lin highchair_N = mkN "highchair" "highchairs" ;
+lin highflier_N = mkN "highflier" "highfliers" ;
+lin highflown_A = mkAMost "highflown" "highflownly" ;
+lin highflyer_N = mkN "highflyer" "highflyers" ;
+lin highflying_A = mkAMost "highflying" "highflyingly" ;
+lin highjack_N = mkN "highjack" "highjacks" ;
+lin highjack_V = mkV "highjack" "highjacked" "highjacked" ;
+lin highjacker_N = mkN "highjacker" "highjackers" ;
+lin highjacking_N = mkN "highjacking" "highjackings" ;
+lin highland_N = mkN "highland" "highlands" ;
+lin highlander_N = mkN "highlander" "highlanders" ;
+lin highlight_N = mkN "highlight" "highlights" ;
+lin highlight_V = mkV "highlight" "highlighted" "highlighted" ;
+lin highlighter_N = mkN "highlighter" "highlighters" ;
+lin highness_N = mkN "highness" "highnesses" ;
+lin highroad_N = mkN "highroad" "highroads" ;
+lin highway_N = mkN "highway" "highways" ;
+lin highwayman_N = mkN "highwayman" "highwaymen" ;
+lin hijab_N = mkN "hijab" "hijabs" ;
+lin hijack_N = mkN "hijack" "hijacks" ;
+lin hijack_V = mkV "hijack" "hijacked" "hijacked" ;
+lin hijacker_N = mkN "hijacker" "hijackers" ;
+lin hike_N = mkN "hike" "hikes" ;
+lin hike_V = mkV "hike" "hiked" "hiked" ;
+lin hiker_N = mkN "hiker" "hikers" ;
+lin hilar_A = mkAMost "hilar" "hilarly" ;
+lin hilarious_A = mkAMost "hilarious" "hilariously" ;
+lin hilarity_N = mkN "hilarity" "hilarities" ;
+lin hill_N = mkN "hill" "hills" ;
+lin hill_billy_N = mkN "hill-billy" "hill-billies" ;
+lin hillbilly_N = mkN "hillbilly" "hillbillies" ;
+lin hilliness_N = mkN "hilliness" "hillinesses" ;
+lin hillock_N = mkN "hillock" "hillocks" ;
+lin hillside_N = mkN "hillside" "hillsides" ;
+lin hilltop_N = mkN "hilltop" "hilltops" ;
+lin hilly_A = mkA "hilly" "hillier" "hilliest" "hillily" ;
+lin hilt_N = mkN "hilt" "hilts" ;
+lin hilum_N = mkN "hilum" "hilums" ;
+lin hilus_N = mkN "hilus" "hiluses" ;
+lin hin_N = mkN "hin" "hins" ;
+lin hind_A = mkAMost "hind" "hindly" ;
+lin hind_N = mkN "hind" "hinds" ;
+lin hindbrain_N = mkN "hindbrain" "hindbrains" ;
+lin hinder_V = mkV "hinder" "hindered" "hindered" ;
+lin hindfoot_N = mkN "hindfoot" "hindfoots" ;
+lin hindgut_N = mkN "hindgut" "hindguts" ;
+lin hindi_A = mkAMost "hindi" "hindily" ;
+lin hindi_N = mkN "hindi" "hindis" ;
+lin hindmost_A = mkAMost "hindmost" "hindmostly" ;
+lin hindquarter_N = mkN "hindquarter" "hindquarters" ;
+lin hindquarters_N = mkN "hindquarters" "hindquarterses" ;
+lin hindrance_N = mkN "hindrance" "hindrances" ;
+lin hindshank_N = mkN "hindshank" "hindshanks" ;
+lin hindsight_N = mkN "hindsight" "hindsights" ;
+lin hindu_A = mkAMost "hindu" "hinduly" ;
+lin hindu_N = mkN "hindu" "hindus" ;
+lin hinduism_N = mkN "hinduism" "hinduisms" ;
+lin hindustani_A = mkAMost "hindustani" "hindustanily" ;
+lin hindustani_N = mkN "hindustani" "hindustanis" ;
+lin hinge_N = mkN "hinge" "hinges" ;
+lin hinge_V = mkV "hinge" "hinged" "hinged" ;
+lin hinny_N = mkN "hinny" "hinnies" ;
+lin hint_N = mkN "hint" "hints" ;
+lin hint_V = mkV "hint" "hinted" "hinted" ;
+lin hinterland_N = mkN "hinterland" "hinterlands" ;
+lin hip_A = mkAMost "hip" "hiply" ;
+lin hip_N = mkN "hip" "hips" ;
+lin hip_bath_N = mkN "hip-bath" "hip-baths" ;
+lin hip_flask_N = mkN "hip-flask" "hip-flasks" ;
+lin hip_pocket_N = mkN "hip-pocket" "hip-pockets" ;
+lin hipbone_N = mkN "hipbone" "hipbones" ;
+lin hipflask_N = mkN "hipflask" "hipflasks" ;
+lin hiplength_A = mkAMost "hiplength" "hiplengthly" ;
+lin hipless_A = mkAMost "hipless" "hiplessly" ;
+lin hipline_N = mkN "hipline" "hiplines" ;
+lin hippeastrum_N = mkN "hippeastrum" "hippeastrums" ;
+lin hipped_A = mkAMost "hipped" "hippedly" ;
+lin hippie_N = mkN "hippie" "hippies" ;
+lin hippo_N = mkN "hippo" "hippos" ;
+lin hippocampus_N = mkN "hippocampus" "hippocampuses" ;
+lin hippocratic_A = mkAMost "hippocratic" "hippocraticly" ;
+lin hippodrome_N = mkN "hippodrome" "hippodromes" ;
+lin hippopotamus_N = mkN "hippopotamus" "hippopotamuses" ;
+lin hippy_N = mkN "hippy" "hippies" ;
+lin hircine_A = mkAMost "hircine" "hircinely" ;
+lin hire_N = mkN "hire" "hires" ;
+lin hire_V = mkV "hire" "hired" "hired" ;
+lin hireling_N = mkN "hireling" "hirelings" ;
+lin hirsute_A = mkAMost "hirsute" "hirsutely" ;
+lin hirsuteness_N = mkN "hirsuteness" "hirsutenesses" ;
+lin hispid_A = mkAMost "hispid" "hispidly" ;
+lin hiss_N = mkN "hiss" "hisses" ;
+lin hiss_V = mkV "hiss" "hissed" "hissed" ;
+lin hisser_N = mkN "hisser" "hissers" ;
+lin histaminase_N = mkN "histaminase" "histaminases" ;
+lin histamine_N = mkN "histamine" "histamines" ;
+lin histidine_N = mkN "histidine" "histidines" ;
+lin histiocyte_N = mkN "histiocyte" "histiocytes" ;
+lin histiocytosis_N = mkN "histiocytosis" "histiocytosises" ;
+lin histocompatibility_N = mkN "histocompatibility" "histocompatibilities" ;
+lin histogram_N = mkN "histogram" "histograms" ;
+lin histoincompatibility_N = mkN "histoincompatibility" "histoincompatibilities" ;
+lin histological_A = mkAMost "histological" "histologically" ;
+lin histologist_N = mkN "histologist" "histologists" ;
+lin histology_N = mkN "histology" "histologies" ;
+lin histone_N = mkN "histone" "histones" ;
+lin historian_N = mkN "historian" "historians" ;
+lin historic_A = mkAMost "historic" "historicly" ;
+lin historical_A = mkAMost "historical" "historically" ;
+lin historicalness_N = mkN "historicalness" "historicalnesses" ;
+lin historicism_N = mkN "historicism" "historicisms" ;
+lin historicize_V = mkV "historicize" "historicized" "historicized" ;
+lin historiography_N = mkN "historiography" "historiographies" ;
+lin history_N = mkN "history" "histories" ;
+lin histrionic_A = mkAMost "histrionic" "histrionicly" ;
+lin histrionics_N = mkN "histrionics" "histrionics" ;
+lin hit_N = mkN "hit" "hits" ;
+lin hit_V = mkV "hit" "hit" "hit" ;
+lin hit_and_run_A = mkAMost "hit-and-run" "hit-and-runly" ;
+lin hitch_N = mkN "hitch" "hitches" ;
+lin hitch_V = mkV "hitch" "hitched" "hitched" ;
+lin hitchhike_V = mkV "hitchhike" "hitchhiked" "hitchhiked" ;
+lin hitchhiker_N = mkN "hitchhiker" "hitchhikers" ;
+lin hitchrack_N = mkN "hitchrack" "hitchracks" ;
+lin hither_Adv = mkAdv "hither" ;
+lin hitherto_Adv = mkAdv "hitherto" ;
+lin hitless_A = mkAMost "hitless" "hitlessly" ;
+lin hitter_N = mkN "hitter" "hitters" ;
+lin hive_N = mkN "hive" "hives" ;
+lin hive_V = mkV "hive" "hived" "hived" ;
+lin hoar_A = mkAMost "hoar" "hoarly" ;
+lin hoard_N = mkN "hoard" "hoards" ;
+lin hoard_V = mkV "hoard" "hoarded" "hoarded" ;
+lin hoarder_N = mkN "hoarder" "hoarders" ;
+lin hoarding_N = mkN "hoarding" "hoardings" ;
+lin hoarfrost_N = mkN "hoarfrost" "hoarfrosts" ;
+lin hoariness_N = mkN "hoariness" "hoarinesses" ;
+lin hoarse_A = mkA "hoarse" "hoarser" "hoarsest" "hoarsely" ;
+lin hoarseness_N = mkN "hoarseness" "hoarsenesses" ;
+lin hoary_A = mkA "hoary" "hoarier" "hoariest" "hoarily" ;
+lin hoatzin_N = mkN "hoatzin" "hoatzins" ;
+lin hoax_N = mkN "hoax" "hoaxes" ;
+lin hoax_V = mkV "hoax" "hoaxed" "hoaxed" ;
+lin hoaxer_N = mkN "hoaxer" "hoaxers" ;
+lin hob_N = mkN "hob" "hobs" ;
+lin hobbit_N = mkN "hobbit" "hobbits" ;
+lin hobble_N = mkN "hobble" "hobbles" ;
+lin hobble_V = mkV "hobble" "hobbled" "hobbled" ;
+lin hobble_skirt_N = mkN "hobble-skirt" "hobble-skirts" ;
+lin hobbledehoy_N = mkN "hobbledehoy" "hobbledehoys" ;
+lin hobbler_N = mkN "hobbler" "hobblers" ;
+lin hobby_N = mkN "hobby" "hobbies" ;
+lin hobbyhorse_N = mkN "hobbyhorse" "hobbyhorses" ;
+lin hobbyism_N = mkN "hobbyism" "hobbyisms" ;
+lin hobbyist_N = mkN "hobbyist" "hobbyists" ;
+lin hobgoblin_N = mkN "hobgoblin" "hobgoblins" ;
+lin hobnail_N = mkN "hobnail" "hobnails" ;
+lin hobnailed_A = mkAMost "hobnailed" "hobnailedly" ;
+lin hobnob_V = mkV "hobnob" "hobnobbed" "hobnobbed" ;
+lin hobo_N = mkN "hobo" "hobos" ;
+lin hock_N = mkN "hock" "hocks" ;
+lin hock_V = mkV "hock" "hocked" "hocked" ;
+lin hockey_N = mkN "hockey" "hockeys" ;
+lin hocus_pocus_N = mkN "hocus-pocus" "hocus-pocuses" ;
+lin hod_N = mkN "hod" "hods" ;
+lin hodgepodge_N = mkN "hodgepodge" "hodgepodges" ;
+lin hodoscope_N = mkN "hodoscope" "hodoscopes" ;
+lin hoe_N = mkN "hoe" "hoes" ;
+lin hoe_V = mkV "hoe" "IRREG" "IRREG" ;
+lin hoecake_N = mkN "hoecake" "hoecakes" ;
+lin hog_N = mkN "hog" "hogs" ;
+lin hog_V = mkV "hog" "hogged" "hogged" ;
+lin hogan_N = mkN "hogan" "hogans" ;
+lin hogback_N = mkN "hogback" "hogbacks" ;
+lin hogchoker_N = mkN "hogchoker" "hogchokers" ;
+lin hogfish_N = mkN "hogfish" "hogfishes" ;
+lin hoggish_A = mkAMost "hoggish" "hoggishly" ;
+lin hogmanay_N = mkN "hogmanay" "hogmanays" ;
+lin hogshead_N = mkN "hogshead" "hogsheads" ;
+lin hogwash_N = mkN "hogwash" "hogwashes" ;
+lin hoist_N = mkN "hoist" "hoists" ;
+lin hoist_V = mkV "hoist" "hoisted" "hoisted" ;
+lin hoister_N = mkN "hoister" "hoisters" ;
+lin hoity_toity_A = mkAMost "hoity-toity" "hoity-toitily" ;
+lin hold_N = mkN "hold" "holds" ;
+lin hold_V = mkV "hold" "held" "held" ;
+lin hold_up_N = mkN "hold-up" "hold-ups" ;
+lin holdall_N = mkN "holdall" "holdalls" ;
+lin holder_N = mkN "holder" "holders" ;
+lin holding_N = mkN "holding" "holdings" ;
+lin holdout_N = mkN "holdout" "holdouts" ;
+lin holdover_N = mkN "holdover" "holdovers" ;
+lin holdup_N = mkN "holdup" "holdups" ;
+lin hole_N = mkN "hole" "holes" ;
+lin hole_V = mkV "hole" "holed" "holed" ;
+lin hole_and_corner_A = mkAMost "hole-and-corner" "hole-and-cornerly" ;
+lin holey_A = mkAMost "holey" "holeily" ;
+lin holiday_N = mkN "holiday" "holidays" ;
+lin holiday_V = mkV "holiday" "holidayed" "holidayed" ;
+lin holiday_maker_N = mkN "holiday-maker" "holiday-makers" ;
+lin holiness_N = mkN "holiness" "holinesses" ;
+lin holism_N = mkN "holism" "holisms" ;
+lin holistic_A = mkAMost "holistic" "holisticly" ;
+lin hollandaise_N = mkN "hollandaise" "hollandaises" ;
+lin hollander_A = mkAMost "hollander" "hollanderly" ;
+lin hollander_N = mkN "hollander" "hollanders" ;
+lin holler_V = mkV "holler" "hollered" "hollered" ;
+lin holloa_N = mkN "holloa" "holloas" ;
+lin hollow_A = mkAMost "hollow" "hollowly" ;
+lin hollow_N = mkN "hollow" "hollows" ;
+lin hollow_V = mkV "hollow" "hollowed" "hollowed" ;
+lin hollowness_N = mkN "hollowness" "hollownesses" ;
+lin hollowware_N = mkN "hollowware" "hollowwares" ;
+lin holly_N = mkN "holly" "hollies" ;
+lin hollyhock_N = mkN "hollyhock" "hollyhocks" ;
+lin holm_oak_N = mkN "holm-oak" "holm-oaks" ;
+lin holmium_N = mkN "holmium" "holmiums" ;
+lin holocaust_N = mkN "holocaust" "holocausts" ;
+lin holocephalan_N = mkN "holocephalan" "holocephalans" ;
+lin hologram_N = mkN "hologram" "holograms" ;
+lin holograph_N = mkN "holograph" "holographs" ;
+lin holographic_A = mkAMost "holographic" "holographicly" ;
+lin holography_N = mkN "holography" "holographies" ;
+lin holometabola_N = mkN "holometabola" "holometabolas" ;
+lin holometabolic_A = mkAMost "holometabolic" "holometabolicly" ;
+lin holometabolism_N = mkN "holometabolism" "holometabolisms" ;
+lin holonym_N = mkN "holonym" "holonyms" ;
+lin holonymy_N = mkN "holonymy" "holonymies" ;
+lin holophyte_N = mkN "holophyte" "holophytes" ;
+lin holophytic_A = mkAMost "holophytic" "holophyticly" ;
+lin holozoic_A = mkAMost "holozoic" "holozoicly" ;
+lin holster_N = mkN "holster" "holsters" ;
+lin holy_A = mkA "holy" "holier" "holiest" "holily" ;
+lin holy_N = mkN "holy" "holies" ;
+lin holystone_N = mkN "holystone" "holystones" ;
+lin holystone_V = mkV "holystone" "holystoned" "holystoned" ;
+lin homage_N = mkN "homage" "homages" ;
+lin home_A = mkA "home" "homer" "homest" "homely" ;
+lin home_Adv = mkAdv "home" ;
+lin home_N = mkN "home" "homes" ;
+lin home_V = mkV "home" "homed" "homed" ;
+lin home_baked_A = mkAMost "home-baked" "home-bakedly" ;
+lin home_brewed_A = mkAMost "home-brewed" "home-brewedly" ;
+lin home_cured_A = mkAMost "home-cured" "home-curedly" ;
+lin home_farm_N = mkN "home-farm" "home-farms" ;
+lin home_grown_A = mkAMost "home-grown" "home-grownly" ;
+lin home_made_A = mkAMost "home-made" "home-madely" ;
+lin homebound_A = mkAMost "homebound" "homeboundly" ;
+lin homebound_N = mkN "homebound" "homebounds" ;
+lin homeboy_N = mkN "homeboy" "homeboys" ;
+lin homebuilder_N = mkN "homebuilder" "homebuilders" ;
+lin homecoming_N = mkN "homecoming" "homecomings" ;
+lin homefolk_N = mkN "homefolk" "homefolks" ;
+lin homegirl_N = mkN "homegirl" "homegirls" ;
+lin homegrown_A = mkAMost "homegrown" "homegrownly" ;
+lin homeland_N = mkN "homeland" "homelands" ;
+lin homeless_A = mkAMost "homeless" "homelessly" ;
+lin homeless_N = mkN "homeless" "homelesses" ;
+lin homelessness_N = mkN "homelessness" "homelessnesses" ;
+lin homelike_A = mkAMost "homelike" "homelikely" ;
+lin homeliness_N = mkN "homeliness" "homelinesses" ;
+lin homely_A = mkA "homely" "homelier" "homeliest" "homelily" ;
+lin homemade_A = mkAMost "homemade" "homemadely" ;
+lin homemaking_N = mkN "homemaking" "homemakings" ;
+lin homeobox_N = mkN "homeobox" "homeoboxes" ;
+lin homeopath_N = mkN "homeopath" "homeopaths" ;
+lin homeopathic_A = mkAMost "homeopathic" "homeopathicly" ;
+lin homeopathy_N = mkN "homeopathy" "homeopathies" ;
+lin homeostasis_N = mkN "homeostasis" "homeostasises" ;
+lin homeostatic_A = mkAMost "homeostatic" "homeostaticly" ;
+lin homeostatically_Adv = mkAdv "homeostatically" ;
+lin homeotherm_N = mkN "homeotherm" "homeotherms" ;
+lin homeowner_N = mkN "homeowner" "homeowners" ;
+lin homer_N = mkN "homer" "homers" ;
+lin homer_V = mkV "homer" "homered" "homered" ;
+lin homeric_A = mkAMost "homeric" "homericly" ;
+lin homesick_A = mkAMost "homesick" "homesickly" ;
+lin homesickness_N = mkN "homesickness" "homesicknesses" ;
+lin homespun_A = mkAMost "homespun" "homespunly" ;
+lin homespun_N = mkN "homespun" "homespuns" ;
+lin homestead_N = mkN "homestead" "homesteads" ;
+lin homestretch_N = mkN "homestretch" "homestretches" ;
+lin hometown_N = mkN "hometown" "hometowns" ;
+lin homeward_A = mkAMost "homeward" "homewardly" ;
+lin homeward_Adv = mkAdv "homeward" ;
+lin homewards_Adv = mkAdv "homewards" ;
+lin homework_N = mkN "homework" "homeworks" ;
+lin homey_A = mkAMost "homey" "homeily" ;
+lin homicidal_A = mkAMost "homicidal" "homicidally" ;
+lin homicide_N = mkN "homicide" "homicides" ;
+lin homiletic_A = mkAMost "homiletic" "homileticly" ;
+lin homiletics_N = mkN "homiletics" "homiletics" ;
+lin homily_N = mkN "homily" "homilies" ;
+lin hominal_A = mkAMost "hominal" "hominally" ;
+lin homing_A = mkAMost "homing" "homingly" ;
+lin hominian_A = mkAMost "hominian" "hominianly" ;
+lin hominid_N = mkN "hominid" "hominids" ;
+lin hominine_A = mkAMost "hominine" "homininely" ;
+lin hominoid_N = mkN "hominoid" "hominoids" ;
+lin hominy_N = mkN "hominy" "hominies" ;
+lin homo_N = mkN "homo" "homos" ;
+lin homo_sapiens_N = mkN "homo sapiens" "IRREG" ;
+lin homocercal_A = mkAMost "homocercal" "homocercally" ;
+lin homocyclic_A = mkAMost "homocyclic" "homocyclicly" ;
+lin homoeopath_N = mkN "homoeopath" "homoeopaths" ;
+lin homoeopathy_N = mkN "homoeopathy" "homoeopathies" ;
+lin homoerotic_A = mkAMost "homoerotic" "homoeroticly" ;
+lin homogenate_N = mkN "homogenate" "homogenates" ;
+lin homogeneity_N = mkN "homogeneity" "homogeneities" ;
+lin homogeneous_A = mkAMost "homogeneous" "homogeneously" ;
+lin homogenization_N = mkN "homogenization" "homogenizations" ;
+lin homogenize_V = mkV "homogenize" "homogenized" "homogenized" ;
+lin homogeny_N = mkN "homogeny" "homogenies" ;
+lin homograft_N = mkN "homograft" "homografts" ;
+lin homograph_N = mkN "homograph" "homographs" ;
+lin homoiothermic_A = mkAMost "homoiothermic" "homoiothermicly" ;
+lin homologic_A = mkAMost "homologic" "homologicly" ;
+lin homologous_A = mkAMost "homologous" "homologously" ;
+lin homology_N = mkN "homology" "homologies" ;
+lin homomorphism_N = mkN "homomorphism" "homomorphisms" ;
+lin homonym_N = mkN "homonym" "homonyms" ;
+lin homonymic_A = mkAMost "homonymic" "homonymicly" ;
+lin homonymy_N = mkN "homonymy" "homonymies" ;
+lin homophobe_N = mkN "homophobe" "homophobes" ;
+lin homophobia_N = mkN "homophobia" "homophobias" ;
+lin homophobic_A = mkAMost "homophobic" "homophobicly" ;
+lin homophone_N = mkN "homophone" "homophones" ;
+lin homophonic_A = mkAMost "homophonic" "homophonicly" ;
+lin homophonous_A = mkAMost "homophonous" "homophonously" ;
+lin homophony_N = mkN "homophony" "homophonies" ;
+lin homosexual_A = mkAMost "homosexual" "homosexually" ;
+lin homosexual_N = mkN "homosexual" "homosexuals" ;
+lin homosexuality_N = mkN "homosexuality" "homosexualities" ;
+lin homosporous_A = mkAMost "homosporous" "homosporously" ;
+lin homospory_N = mkN "homospory" "homospories" ;
+lin homostylous_A = mkAMost "homostylous" "homostylously" ;
+lin homozygosity_N = mkN "homozygosity" "homozygosities" ;
+lin homozygote_N = mkN "homozygote" "homozygotes" ;
+lin homozygous_A = mkAMost "homozygous" "homozygously" ;
+lin homunculus_N = mkN "homunculus" "homunculuses" ;
+lin honduran_A = mkAMost "honduran" "honduranly" ;
+lin honduran_N = mkN "honduran" "hondurans" ;
+lin hone_N = mkN "hone" "hones" ;
+lin hone_V = mkV "hone" "honed" "honed" ;
+lin honest_A = mkAMost "honest" "honestly" ;
+lin honesty_N = mkN "honesty" "honesties" ;
+lin honey_A = mkAMost "honey" "honeily" ;
+lin honey_N = mkN "honey" "honeys" ;
+lin honeybee_N = mkN "honeybee" "honeybees" ;
+lin honeycomb_N = mkN "honeycomb" "honeycombs" ;
+lin honeycomb_V = mkV "honeycomb" "honeycombed" "honeycombed" ;
+lin honeycreeper_N = mkN "honeycreeper" "honeycreepers" ;
+lin honeydew_N = mkN "honeydew" "honeydews" ;
+lin honeyed_A = mkAMost "honeyed" "honeyedly" ;
+lin honeyflower_N = mkN "honeyflower" "honeyflowers" ;
+lin honeylike_A = mkAMost "honeylike" "honeylikely" ;
+lin honeymoon_N = mkN "honeymoon" "honeymoons" ;
+lin honeymoon_V = mkV "honeymoon" "honeymooned" "honeymooned" ;
+lin honeypot_N = mkN "honeypot" "honeypots" ;
+lin honeysuckle_N = mkN "honeysuckle" "honeysuckles" ;
+lin honk_N = mkN "honk" "honks" ;
+lin honk_V = mkV "honk" "honked" "honked" ;
+lin honker_N = mkN "honker" "honkers" ;
+lin honkytonk_N = mkN "honkytonk" "honkytonks" ;
+lin honor_N = mkN "honor" "honors" ;
+lin honor_V = mkV "honor" "honorred" "honorred" ;
+lin honorable_A = mkAMost "honorable" "honorably" ;
+lin honorableness_N = mkN "honorableness" "honorablenesses" ;
+lin honorarium_N = mkN "honorarium" "honorariums" ;
+lin honorary_A = mkAMost "honorary" "honorarily" ;
+lin honoree_N = mkN "honoree" "honorees" ;
+lin honorific_A = mkAMost "honorific" "honorificly" ;
+lin honorific_N = mkN "honorific" "honorifics" ;
+lin honoring_N = mkN "honoring" "honorings" ;
+lin honour_N = mkN "honour" "honours" ;
+lin honour_V = mkV "honour" "honoured" "honoured" ;
+lin honourable_A = mkAMost "honourable" "honourably" ;
+lin honourableness_N = mkN "honourableness" "honourablenesses" ;
+lin hooch_N = mkN "hooch" "hooches" ;
+lin hood_N = mkN "hood" "hoods" ;
+lin hood_V = mkV "hood" "hooded" "hooded" ;
+lin hoodlum_N = mkN "hoodlum" "hoodlums" ;
+lin hoodoo_N = mkN "hoodoo" "hoodoos" ;
+lin hoodoo_V = mkV "hoodoo" "hoodooed" "hoodooed" ;
+lin hoodwink_V = mkV "hoodwink" "hoodwinked" "hoodwinked" ;
+lin hooey_N = mkN "hooey" "hooeys" ;
+lin hoof_N = mkN "hoof" "hoofs" ;
+lin hoofer_N = mkN "hoofer" "hoofers" ;
+lin hooflike_A = mkAMost "hooflike" "hooflikely" ;
+lin hoofprint_N = mkN "hoofprint" "hoofprints" ;
+lin hook_N = mkN "hook" "hooks" ;
+lin hook_V = mkV "hook" "hooked" "hooked" ;
+lin hook_nosed_A = mkAMost "hook-nosed" "hook-nosedly" ;
+lin hook_up_N = mkN "hook-up" "hook-ups" ;
+lin hookah_N = mkN "hookah" "hookahs" ;
+lin hooker_N = mkN "hooker" "hookers" ;
+lin hooklike_A = mkAMost "hooklike" "hooklikely" ;
+lin hooks_N = mkN "hooks" "hookses" ;
+lin hookup_N = mkN "hookup" "hookups" ;
+lin hookworm_N = mkN "hookworm" "hookworms" ;
+lin hooky_N = mkN "hooky" "IRREG" ;
+lin hooligan_N = mkN "hooligan" "hooligans" ;
+lin hooliganism_N = mkN "hooliganism" "hooliganisms" ;
+lin hoon_V = mkV "hoon" "hooned" "hooned" ;
+lin hoop_N = mkN "hoop" "hoops" ;
+lin hoop_V = mkV "hoop" "hooped" "hooped" ;
+lin hoop_la_N = mkN "hoop-la" "hoop-las" ;
+lin hoopla_N = mkN "hoopla" "hooplas" ;
+lin hoopoe_N = mkN "hoopoe" "hoopoes" ;
+lin hoopskirt_N = mkN "hoopskirt" "hoopskirts" ;
+lin hoosegow_N = mkN "hoosegow" "hoosegows" ;
+lin hoot_N = mkN "hoot" "hoots" ;
+lin hoot_V = mkV "hoot" "hooted" "hooted" ;
+lin hooter_N = mkN "hooter" "hooters" ;
+lin hoover_N = mkN "hoover" "hoovers" ;
+lin hoover_V = mkV "hoover" "hoovered" "hoovered" ;
+lin hop_N = mkN "hop" "hops" ;
+lin hop_V = mkV "hop" "hopped" "hopped" ;
+lin hop_field_N = mkN "hop-field" "hop-fields" ;
+lin hop_garden_N = mkN "hop-garden" "hop-gardens" ;
+lin hop_picker_N = mkN "hop-picker" "hop-pickers" ;
+lin hop_pole_N = mkN "hop-pole" "hop-poles" ;
+lin hope_N = mkN "hope" "hopes" ;
+lin hope_V = mkV "hope" "hoped" "hoped" ;
+lin hopeful_A = mkAMost "hopeful" "hopefully" ;
+lin hopefulness_N = mkN "hopefulness" "hopefulnesses" ;
+lin hopeless_A = mkAMost "hopeless" "hopelessly" ;
+lin hopelessness_N = mkN "hopelessness" "hopelessnesses" ;
+lin hoper_N = mkN "hoper" "hopers" ;
+lin hopped_up_A = mkAMost "hopped-up" "hopped-uply" ;
+lin hopper_N = mkN "hopper" "hoppers" ;
+lin hopsacking_N = mkN "hopsacking" "hopsackings" ;
+lin hopscotch_N = mkN "hopscotch" "hopscotches" ;
+lin hopscotch_V = mkV "hopscotch" "hopscotched" "hopscotched" ;
+lin horary_A = mkAMost "horary" "horarily" ;
+lin horde_N = mkN "horde" "hordes" ;
+lin horehound_N = mkN "horehound" "horehounds" ;
+lin horizon_N = mkN "horizon" "horizons" ;
+lin horizontal_A = mkAMost "horizontal" "horizontally" ;
+lin horizontal_N = mkN "horizontal" "horizontals" ;
+lin horizontality_N = mkN "horizontality" "horizontalities" ;
+lin hormonal_A = mkAMost "hormonal" "hormonally" ;
+lin hormone_N = mkN "hormone" "hormones" ;
+lin horn_N = mkN "horn" "horns" ;
+lin horn_V = mkV "horn" "horned" "horned" ;
+lin horn_rimmed_A = mkAMost "horn-rimmed" "horn-rimmedly" ;
+lin hornbeam_N = mkN "hornbeam" "hornbeams" ;
+lin hornbill_N = mkN "hornbill" "hornbills" ;
+lin hornblende_N = mkN "hornblende" "hornblendes" ;
+lin hornbook_N = mkN "hornbook" "hornbooks" ;
+lin horned_A = mkAMost "horned" "hornedly" ;
+lin hornet_N = mkN "hornet" "hornets" ;
+lin hornfels_N = mkN "hornfels" "hornfelses" ;
+lin horniness_N = mkN "horniness" "horninesses" ;
+lin hornist_N = mkN "hornist" "hornists" ;
+lin hornless_A = mkAMost "hornless" "hornlessly" ;
+lin hornlike_A = mkAMost "hornlike" "hornlikely" ;
+lin hornpipe_N = mkN "hornpipe" "hornpipes" ;
+lin hornwort_N = mkN "hornwort" "hornworts" ;
+lin horny_A = mkA "horny" "hornier" "horniest" "hornily" ;
+lin horology_N = mkN "horology" "horologies" ;
+lin horoscope_N = mkN "horoscope" "horoscopes" ;
+lin horoscopy_N = mkN "horoscopy" "horoscopies" ;
+lin horrible_A = mkAMost "horrible" "horribly" ;
+lin horrid_A = mkAMost "horrid" "horridly" ;
+lin horridness_N = mkN "horridness" "horridnesses" ;
+lin horrific_A = mkAMost "horrific" "horrificly" ;
+lin horrify_V = mkV "horrify" "horrified" "horrified" ;
+lin horrifyingly_Adv = mkAdv "horrifyingly" ;
+lin horror_N = mkN "horror" "horrors" ;
+lin horror_stricken_A = mkAMost "horror-stricken" "horror-strickenly" ;
+lin horror_struck_A = mkAMost "horror-struck" "horror-struckly" ;
+lin hors_de_combat_A = mkAMost "hors de combat" "hors de combatly" ;
+lin horse_N = mkN "horse" "horses" ;
+lin horse_V = mkV "horse" "horsed" "horsed" ;
+lin horse_chestnut_N = mkN "horse-chestnut" "horse-chestnuts" ;
+lin horse_laugh_N = mkN "horse-laugh" "horse-laughs" ;
+lin horse_pond_N = mkN "horse-pond" "horse-ponds" ;
+lin horse_sense_N = mkN "horse-sense" "horse-senses" ;
+lin horseback_Adv = mkAdv "horseback" ;
+lin horseback_N = mkN "horseback" "horsebacks" ;
+lin horsebox_N = mkN "horsebox" "horseboxes" ;
+lin horsecar_N = mkN "horsecar" "horsecars" ;
+lin horsecloth_N = mkN "horsecloth" "horsecloths" ;
+lin horseflesh_N = mkN "horseflesh" "horsefleshes" ;
+lin horsefly_N = mkN "horsefly" "horseflies" ;
+lin horsehair_N = mkN "horsehair" "horsehairs" ;
+lin horsehide_N = mkN "horsehide" "horsehides" ;
+lin horseleech_N = mkN "horseleech" "horseleeches" ;
+lin horseman_N = mkN "horseman" "horsemen" ;
+lin horsemanship_N = mkN "horsemanship" "horsemanships" ;
+lin horsemeat_N = mkN "horsemeat" "horsemeats" ;
+lin horsemint_N = mkN "horsemint" "horsemints" ;
+lin horseplay_N = mkN "horseplay" "horseplays" ;
+lin horsepond_N = mkN "horsepond" "horseponds" ;
+lin horsepower_N = mkN "horsepower" "horsepower" ;
+lin horserace_N = mkN "horserace" "horseraces" ;
+lin horseracing_N = mkN "horseracing" "horseracings" ;
+lin horseradish_N = mkN "horseradish" "horseradishes" ;
+lin horseshoe_N = mkN "horseshoe" "horseshoes" ;
+lin horseshow_N = mkN "horseshow" "horseshows" ;
+lin horsetail_N = mkN "horsetail" "horsetails" ;
+lin horseweed_N = mkN "horseweed" "horseweeds" ;
+lin horsewhip_N = mkN "horsewhip" "horsewhips" ;
+lin horsewhip_V = mkV "horsewhip" "horsewhipped" "horsewhipped" ;
+lin horsewhipping_N = mkN "horsewhipping" "horsewhippings" ;
+lin horsewoman_N = mkN "horsewoman" "horsewomen" ;
+lin horst_N = mkN "horst" "horsts" ;
+lin horsy_A = mkAMost "horsy" "horsily" ;
+lin hortative_A = mkAMost "hortative" "hortatively" ;
+lin hortensia_N = mkN "hortensia" "hortensias" ;
+lin horticultural_A = mkAMost "horticultural" "horticulturally" ;
+lin horticulture_N = mkN "horticulture" "horticultures" ;
+lin horticulturist_N = mkN "horticulturist" "horticulturists" ;
+lin hosanna_N = mkN "hosanna" "hosannas" ;
+lin hose_N = mkN "hose" "hoses" ;
+lin hose_V = mkV "hose" "hosed" "hosed" ;
+lin hosepipe_N = mkN "hosepipe" "hosepipes" ;
+lin hosier_N = mkN "hosier" "hosiers" ;
+lin hosiery_N = mkN "hosiery" "hosieries" ;
+lin hospice_N = mkN "hospice" "hospices" ;
+lin hospitable_A = mkAMost "hospitable" "hospitably" ;
+lin hospitableness_N = mkN "hospitableness" "hospitablenesses" ;
+lin hospital_N = mkN "hospital" "hospitals" ;
+lin hospitality_N = mkN "hospitality" "hospitalities" ;
+lin hospitalization_N = mkN "hospitalization" "hospitalizations" ;
+lin hospitalize_V = mkV "hospitalize" "hospitalized" "hospitalized" ;
+lin host_N = mkN "host" "hosts" ;
+lin host_V = mkV "host" "hosted" "hosted" ;
+lin hostage_N = mkN "hostage" "hostages" ;
+lin hostel_N = mkN "hostel" "hostels" ;
+lin hosteller_N = mkN "hosteller" "hostellers" ;
+lin hostelry_N = mkN "hostelry" "hostelries" ;
+lin hostess_N = mkN "hostess" "hostesses" ;
+lin hostile_A = mkAMost "hostile" "hostilely" ;
+lin hostile_N = mkN "hostile" "hostiles" ;
+lin hostilities_N = mkN "hostilities" "hostilitieses" ;
+lin hostility_N = mkN "hostility" "hostilities" ;
+lin hot_A = mkA "hot" "hotter" "hottest" "hotly" ;
+lin hot_V = mkV "hot" "hotted" "hotted" ;
+lin hot_blooded_A = mkAMost "hot-blooded" "hot-bloodedly" ;
+lin hot_headed_A = mkAMost "hot-headed" "hot-headedly" ;
+lin hot_tempered_A = mkAMost "hot-tempered" "hot-temperedly" ;
+lin hot_water_bottle_N = mkN "hot-water-bottle" "hot-water-bottles" ;
+lin hotbed_N = mkN "hotbed" "hotbeds" ;
+lin hotbox_N = mkN "hotbox" "hotboxes" ;
+lin hotchpotch_N = mkN "hotchpotch" "hotchpotches" ;
+lin hotdog_N = mkN "hotdog" "hotdogs" ;
+lin hotel_N = mkN "hotel" "hotels" ;
+lin hotelier_N = mkN "hotelier" "hoteliers" ;
+lin hotfoot_Adv = mkAdv "hotfoot" ;
+lin hotfoot_N = mkN "hotfoot" "hotfoots" ;
+lin hotfoot_V = mkV "hotfoot" "hotfooted" "hotfooted" ;
+lin hothead_N = mkN "hothead" "hotheads" ;
+lin hotheaded_A = mkAMost "hotheaded" "hotheadedly" ;
+lin hothouse_N = mkN "hothouse" "hothouses" ;
+lin hotness_N = mkN "hotness" "hotnesses" ;
+lin hotplate_N = mkN "hotplate" "hotplates" ;
+lin hotspur_N = mkN "hotspur" "hotspurs" ;
+lin hottish_A = mkAMost "hottish" "hottishly" ;
+lin hound_N = mkN "hound" "hounds" ;
+lin hound_V = mkV "hound" "hounded" "hounded" ;
+lin hour_N = mkN "hour" "hours" ;
+lin hourglass_N = mkN "hourglass" "hourglasses" ;
+lin houri_N = mkN "houri" "houris" ;
+lin hourlong_A = mkAMost "hourlong" "hourlongly" ;
+lin hourly_A = mkAMost "hourly" "hourlily" ;
+lin hourly_Adv = mkAdv "hourly" ;
+lin hours_N = mkN "hours" "hourses" ;
+lin house_N = mkN "house" "houses" ;
+lin house_V = mkV "house" "housed" "housed" ;
+lin house_party_N = mkN "house-party" "house-parties" ;
+lin house_warming_N = mkN "house-warming" "house-warmings" ;
+lin houseboat_N = mkN "houseboat" "houseboats" ;
+lin housebound_A = mkAMost "housebound" "houseboundly" ;
+lin housebreaker_N = mkN "housebreaker" "housebreakers" ;
+lin housebreaking_N = mkN "housebreaking" "housebreakings" ;
+lin housebroken_A = mkAMost "housebroken" "housebrokenly" ;
+lin housecleaning_N = mkN "housecleaning" "housecleanings" ;
+lin housecoat_N = mkN "housecoat" "housecoats" ;
+lin housecraft_N = mkN "housecraft" "housecrafts" ;
+lin housedog_N = mkN "housedog" "housedogs" ;
+lin housefather_N = mkN "housefather" "housefathers" ;
+lin housefly_N = mkN "housefly" "houseflies" ;
+lin houseful_N = mkN "houseful" "housefuls" ;
+lin household_N = mkN "household" "households" ;
+lin householder_N = mkN "householder" "householders" ;
+lin housekeeper_N = mkN "housekeeper" "housekeepers" ;
+lin houselights_N = mkN "houselights" "houselightses" ;
+lin housemaid_N = mkN "housemaid" "housemaids" ;
+lin houseman_N = mkN "houseman" "housemen" ;
+lin housemaster_N = mkN "housemaster" "housemasters" ;
+lin housemate_N = mkN "housemate" "housemates" ;
+lin housemother_N = mkN "housemother" "housemothers" ;
+lin houseplant_N = mkN "houseplant" "houseplants" ;
+lin houseproud_A = mkAMost "houseproud" "houseproudly" ;
+lin houseroom_N = mkN "houseroom" "houserooms" ;
+lin housetop_N = mkN "housetop" "housetops" ;
+lin housetrained_A = mkAMost "housetrained" "housetrainedly" ;
+lin housewarming_N = mkN "housewarming" "housewarmings" ;
+lin housewife_N = mkN "housewife" "housewives" ;
+lin housewifely_A = mkAMost "housewifely" "housewifelily" ;
+lin housewifery_N = mkN "housewifery" "housewiferies" ;
+lin housework_N = mkN "housework" "houseworks" ;
+lin housewrecker_N = mkN "housewrecker" "housewreckers" ;
+lin housing_N = mkN "housing" "housings" ;
+lin hovea_N = mkN "hovea" "hoveas" ;
+lin hovel_N = mkN "hovel" "hovels" ;
+lin hover_V = mkV "hover" "hovered" "hovered" ;
+lin hovercraft_N = mkN "hovercraft" "hovercraft" ;
+lin how_d'ye_do_N = mkN "how-d'ye-do" "how-d'ye-dos" ;
+lin howdah_N = mkN "howdah" "howdahs" ;
+lin however_Adv = mkAdv "however" ;
+lin howitzer_N = mkN "howitzer" "howitzers" ;
+lin howl_N = mkN "howl" "howls" ;
+lin howl_V = mkV "howl" "howled" "howled" ;
+lin howler_N = mkN "howler" "howlers" ;
+lin hoya_N = mkN "hoya" "hoyas" ;
+lin hoyden_N = mkN "hoyden" "hoydens" ;
+lin hoydenish_A = mkAMost "hoydenish" "hoydenishly" ;
+lin hoydenism_N = mkN "hoydenism" "hoydenisms" ;
+lin hp_N = mkN "hp" "hps" ;
+lin hryvnia_N = mkN "hryvnia" "hryvnias" ;
+lin huarache_N = mkN "huarache" "huaraches" ;
+lin hub_N = mkN "hub" "hubs" ;
+lin hubble_bubble_N = mkN "hubble-bubble" "hubble-bubbles" ;
+lin hubbub_N = mkN "hubbub" "hubbubs" ;
+lin hubby_N = mkN "hubby" "hubbies" ;
+lin hubcap_N = mkN "hubcap" "hubcaps" ;
+lin hubris_N = mkN "hubris" "hubrises" ;
+lin huck_N = mkN "huck" "hucks" ;
+lin huckaback_N = mkN "huckaback" "huckabacks" ;
+lin huckleberry_N = mkN "huckleberry" "huckleberries" ;
+lin huckster_N = mkN "huckster" "hucksters" ;
+lin huddle_N = mkN "huddle" "huddles" ;
+lin huddle_V = mkV "huddle" "huddled" "huddled" ;
+lin huddler_N = mkN "huddler" "huddlers" ;
+lin hudud_N = mkN "hudud" "hududs" ;
+lin hue_N = mkN "hue" "hues" ;
+lin hued_A = mkAMost "hued" "huedly" ;
+lin hueless_A = mkAMost "hueless" "huelessly" ;
+lin huff_N = mkN "huff" "huffs" ;
+lin huff_V = mkV "huff" "huffed" "huffed" ;
+lin huffiness_N = mkN "huffiness" "huffinesses" ;
+lin huffish_A = mkAMost "huffish" "huffishly" ;
+lin huffy_A = mkA "huffy" "huffier" "huffiest" "huffily" ;
+lin hug_N = mkN "hug" "hugs" ;
+lin hug_V = mkV "hug" "hugged" "hugged" ;
+lin huge_A = mkAMost "huge" "hugely" ;
+lin hugger_N = mkN "hugger" "huggers" ;
+lin hugger_mugger_A = mkAMost "hugger-mugger" "hugger-muggerly" ;
+lin hugger_mugger_Adv = mkAdv "hugger-mugger" ;
+lin hugger_mugger_N = mkN "hugger-mugger" "IRREG" ;
+lin huguenot_N = mkN "huguenot" "huguenots" ;
+lin huisache_N = mkN "huisache" "huisaches" ;
+lin huitre_N = mkN "huitre" "huitres" ;
+lin hula_N = mkN "hula" "hulas" ;
+lin hulk_N = mkN "hulk" "hulks" ;
+lin hulking_A = mkAMost "hulking" "hulkingly" ;
+lin hull_N = mkN "hull" "hulls" ;
+lin hull_V = mkV "hull" "hulled" "hulled" ;
+lin hullabaloo_N = mkN "hullabaloo" "hullabaloos" ;
+lin hum_N = mkN "hum" "hums" ;
+lin hum_V = mkV "hum" "hummed" "hummed" ;
+lin human_A = mkAMost "human" "humanly" ;
+lin human_N = mkN "human" "humans" ;
+lin humane_A = mkAMost "humane" "humanely" ;
+lin humaneness_N = mkN "humaneness" "humanenesses" ;
+lin humanism_N = mkN "humanism" "humanisms" ;
+lin humanist_A = mkAMost "humanist" "humanistly" ;
+lin humanist_N = mkN "humanist" "humanists" ;
+lin humanistic_A = mkAMost "humanistic" "humanisticly" ;
+lin humanitarian_A = mkAMost "humanitarian" "humanitarianly" ;
+lin humanitarian_N = mkN "humanitarian" "humanitarians" ;
+lin humanitarianism_N = mkN "humanitarianism" "humanitarianisms" ;
+lin humanity_N = mkN "humanity" "humanities" ;
+lin humanization_N = mkN "humanization" "humanizations" ;
+lin humanize_V = mkV "humanize" "humanized" "humanized" ;
+lin humankind_N = mkN "humankind" "humankinds" ;
+lin humanness_N = mkN "humanness" "humannesses" ;
+lin humate_N = mkN "humate" "humates" ;
+lin humble_A = mkA "humble" "humbler" "humblest" "humbly" ;
+lin humble_V = mkV "humble" "humbled" "humbled" ;
+lin humbleness_N = mkN "humbleness" "humblenesses" ;
+lin humbug_N = mkN "humbug" "humbugs" ;
+lin humbug_V = mkV "humbug" "humbugged" "humbugged" ;
+lin humdinger_N = mkN "humdinger" "humdingers" ;
+lin humdrum_A = mkAMost "humdrum" "humdrumly" ;
+lin humectant_N = mkN "humectant" "humectants" ;
+lin humerus_N = mkN "humerus" "humeruses" ;
+lin humic_A = mkAMost "humic" "humicly" ;
+lin humid_A = mkAMost "humid" "humidly" ;
+lin humidify_V = mkV "humidify" "humidified" "humidified" ;
+lin humidity_N = mkN "humidity" "humidities" ;
+lin humification_N = mkN "humification" "humifications" ;
+lin humified_A = mkAMost "humified" "humifiedly" ;
+lin humiliate_V = mkV "humiliate" "humiliated" "humiliated" ;
+lin humiliatingly_Adv = mkAdv "humiliatingly" ;
+lin humiliation_N = mkN "humiliation" "humiliations" ;
+lin humility_N = mkN "humility" "humilities" ;
+lin humin_N = mkN "humin" "humins" ;
+lin hummer_N = mkN "hummer" "hummers" ;
+lin humming_N = mkN "humming" "hummings" ;
+lin humming_top_N = mkN "humming-top" "humming-tops" ;
+lin hummingbird_N = mkN "hummingbird" "hummingbirds" ;
+lin hummock_N = mkN "hummock" "hummocks" ;
+lin hummus_N = mkN "hummus" "hummuses" ;
+lin humongous_A = mkAMost "humongous" "humongously" ;
+lin humor_N = mkN "humor" "humors" ;
+lin humoral_A = mkAMost "humoral" "humorally" ;
+lin humorist_N = mkN "humorist" "humorists" ;
+lin humorless_A = mkAMost "humorless" "humorlessly" ;
+lin humorous_A = mkAMost "humorous" "humorously" ;
+lin humour_N = mkN "humour" "humours" ;
+lin humour_V = mkV "humour" "humoured" "humoured" ;
+lin humourist_N = mkN "humourist" "humourists" ;
+lin humourless_A = mkAMost "humourless" "humourlessly" ;
+lin hump_N = mkN "hump" "humps" ;
+lin hump_V = mkV "hump" "humped" "humped" ;
+lin humpback_N = mkN "humpback" "humpbacks" ;
+lin humpbacked_A = mkAMost "humpbacked" "humpbackedly" ;
+lin humus_N = mkN "humus" "humuses" ;
+lin hun_N = mkN "hun" "huns" ;
+lin hunch_N = mkN "hunch" "hunches" ;
+lin hunch_V = mkV "hunch" "hunched" "hunched" ;
+lin hunchback_A = mkAMost "hunchback" "hunchbackly" ;
+lin hunchback_N = mkN "hunchback" "hunchbacks" ;
+lin hunchbacked_A = mkAMost "hunchbacked" "hunchbackedly" ;
+lin hundredfold_Adv = mkAdv "hundredfold" ;
+lin hundredweight_N = mkN "hundredweight" "hundredweights" ;
+lin hung_V = mkV "hung" "hunged" "hunged" ;
+lin hunger_N = mkN "hunger" "hungers" ;
+lin hunger_V = mkV "hunger" "hungered" "hungered" ;
+lin hunger_march_N = mkN "hunger-march" "hunger-marches" ;
+lin hunger_marcher_N = mkN "hunger-marcher" "hunger-marchers" ;
+lin hungry_A = mkA "hungry" "hungrier" "hungriest" "hungrily" ;
+lin hunk_N = mkN "hunk" "hunks" ;
+lin hunker_V = mkV "hunker" "hunkered" "hunkered" ;
+lin hunt_N = mkN "hunt" "hunts" ;
+lin hunt_V = mkV "hunt" "hunted" "hunted" ;
+lin hunter_N = mkN "hunter" "hunters" ;
+lin hunting_N = mkN "hunting" "huntings" ;
+lin hunting_crop_N = mkN "hunting-crop" "hunting-crops" ;
+lin huntress_N = mkN "huntress" "huntresses" ;
+lin huntsman_N = mkN "huntsman" "huntsmen" ;
+lin hurdle_N = mkN "hurdle" "hurdles" ;
+lin hurdle_V = mkV "hurdle" "hurdled" "hurdled" ;
+lin hurdler_N = mkN "hurdler" "hurdlers" ;
+lin hurdles_N = mkN "hurdles" "hurdleses" ;
+lin hurdy_gurdy_N = mkN "hurdy-gurdy" "hurdy-gurdies" ;
+lin hurl_N = mkN "hurl" "hurls" ;
+lin hurl_V = mkV "hurl" "hurled" "hurled" ;
+lin hurling_N = mkN "hurling" "hurlings" ;
+lin hurly_burly_N = mkN "hurly-burly" "hurly-burlies" ;
+lin hurrah_N = mkN "hurrah" "hurrahs" ;
+lin hurrah_V = mkV "hurrah" "hurrahed" "hurrahed" ;
+lin hurricane_N = mkN "hurricane" "hurricanes" ;
+lin hurried_A = mkAMost "hurried" "hurriedly" ;
+lin hurry_N = mkN "hurry" "hurries" ;
+lin hurry_V = mkV "hurry" "hurried" "hurried" ;
+lin hurt_N = mkN "hurt" "hurts" ;
+lin hurt_V = mkV "hurt" "hurt" "hurt" ;
+lin hurtful_A = mkAMost "hurtful" "hurtfully" ;
+lin hurtle_V = mkV "hurtle" "hurtled" "hurtled" ;
+lin husband_N = mkN "husband" "husbands" ;
+lin husband_V = mkV "husband" "husbanded" "husbanded" ;
+lin husbandly_A = mkAMost "husbandly" "husbandlily" ;
+lin husbandman_N = mkN "husbandman" "husbandmen" ;
+lin husbandry_N = mkN "husbandry" "husbandries" ;
+lin hush_N = mkN "hush" "hushes" ;
+lin hush_V = mkV "hush" "hushed" "hushed" ;
+lin hush_hush_A = mkAMost "hush-hush" "hush-hushly" ;
+lin hush_money_N = mkN "hush-money" "hush-moneys" ;
+lin husk_N = mkN "husk" "husks" ;
+lin husk_V = mkV "husk" "husked" "husked" ;
+lin huskiness_N = mkN "huskiness" "huskinesses" ;
+lin husky_A = mkA "husky" "huskier" "huskiest" "huskily" ;
+lin husky_N = mkN "husky" "huskies" ;
+lin hussar_N = mkN "hussar" "hussars" ;
+lin hussy_N = mkN "hussy" "hussies" ;
+lin hustings_N = mkN "hustings" "hustingses" ;
+lin hustle_N = mkN "hustle" "IRREG" ;
+lin hustle_V = mkV "hustle" "hustled" "hustled" ;
+lin hustler_N = mkN "hustler" "hustlers" ;
+lin hut_N = mkN "hut" "huts" ;
+lin hutch_N = mkN "hutch" "hutches" ;
+lin hutment_N = mkN "hutment" "hutments" ;
+lin hutted_A = mkAMost "hutted" "huttedly" ;
+lin hyacinth_N = mkN "hyacinth" "hyacinths" ;
+lin hyaena_N = mkN "hyaena" "hyaenas" ;
+lin hyaline_A = mkAMost "hyaline" "hyalinely" ;
+lin hyaline_N = mkN "hyaline" "hyalines" ;
+lin hyalinization_N = mkN "hyalinization" "hyalinizations" ;
+lin hyaloplasm_N = mkN "hyaloplasm" "hyaloplasms" ;
+lin hyaloplasmic_A = mkAMost "hyaloplasmic" "hyaloplasmicly" ;
+lin hyaluronidase_N = mkN "hyaluronidase" "hyaluronidases" ;
+lin hybrid_A = mkAMost "hybrid" "hybridly" ;
+lin hybrid_N = mkN "hybrid" "hybrids" ;
+lin hybridization_N = mkN "hybridization" "hybridizations" ;
+lin hybridize_V = mkV "hybridize" "hybridized" "hybridized" ;
+lin hybridoma_N = mkN "hybridoma" "hybridomas" ;
+lin hydantoin_N = mkN "hydantoin" "hydantoins" ;
+lin hydathode_N = mkN "hydathode" "hydathodes" ;
+lin hydatid_N = mkN "hydatid" "hydatids" ;
+lin hydra_N = mkN "hydra" "hydras" ;
+lin hydralazine_N = mkN "hydralazine" "hydralazines" ;
+lin hydramnios_N = mkN "hydramnios" "hydramnioses" ;
+lin hydrangea_N = mkN "hydrangea" "hydrangeas" ;
+lin hydrant_N = mkN "hydrant" "hydrants" ;
+lin hydrarthrosis_N = mkN "hydrarthrosis" "hydrarthrosises" ;
+lin hydrate_N = mkN "hydrate" "hydrates" ;
+lin hydrate_V = mkV "hydrate" "hydrated" "hydrated" ;
+lin hydration_N = mkN "hydration" "hydrations" ;
+lin hydraulic_A = mkAMost "hydraulic" "hydraulicly" ;
+lin hydraulically_Adv = mkAdv "hydraulically" ;
+lin hydraulics_N = mkN "hydraulics" "hydraulics" ;
+lin hydrazine_N = mkN "hydrazine" "hydrazines" ;
+lin hydrazoite_N = mkN "hydrazoite" "hydrazoites" ;
+lin hydremia_N = mkN "hydremia" "hydremias" ;
+lin hydric_A = mkAMost "hydric" "hydricly" ;
+lin hydride_N = mkN "hydride" "hydrides" ;
+lin hydrilla_N = mkN "hydrilla" "hydrillas" ;
+lin hydrocarbon_N = mkN "hydrocarbon" "hydrocarbons" ;
+lin hydrocele_N = mkN "hydrocele" "hydroceles" ;
+lin hydrocephalic_A = mkAMost "hydrocephalic" "hydrocephalicly" ;
+lin hydrocephalus_N = mkN "hydrocephalus" "hydrocephaluses" ;
+lin hydrochloric_A = mkAMost "hydrochloric" "hydrochloricly" ;
+lin hydrochloride_N = mkN "hydrochloride" "hydrochlorides" ;
+lin hydrochlorofluorocarbon_N = mkN "hydrochlorofluorocarbon" "hydrochlorofluorocarbons" ;
+lin hydrochlorothiazide_N = mkN "hydrochlorothiazide" "hydrochlorothiazides" ;
+lin hydrocolloid_N = mkN "hydrocolloid" "hydrocolloids" ;
+lin hydrocortisone_N = mkN "hydrocortisone" "hydrocortisones" ;
+lin hydrocracking_N = mkN "hydrocracking" "hydrocrackings" ;
+lin hydrodynamic_A = mkAMost "hydrodynamic" "hydrodynamicly" ;
+lin hydrodynamics_N = mkN "hydrodynamics" "hydrodynamicses" ;
+lin hydroelectric_A = mkAMost "hydroelectric" "hydroelectricly" ;
+lin hydroelectricity_N = mkN "hydroelectricity" "hydroelectricities" ;
+lin hydroflumethiazide_N = mkN "hydroflumethiazide" "hydroflumethiazides" ;
+lin hydrofluorocarbon_N = mkN "hydrofluorocarbon" "hydrofluorocarbons" ;
+lin hydrofoil_N = mkN "hydrofoil" "hydrofoils" ;
+lin hydrogel_N = mkN "hydrogel" "hydrogels" ;
+lin hydrogen_N = mkN "hydrogen" "hydrogens" ;
+lin hydrogenation_N = mkN "hydrogenation" "hydrogenations" ;
+lin hydrographic_A = mkAMost "hydrographic" "hydrographicly" ;
+lin hydrography_N = mkN "hydrography" "hydrographies" ;
+lin hydrokinetic_A = mkAMost "hydrokinetic" "hydrokineticly" ;
+lin hydrologist_N = mkN "hydrologist" "hydrologists" ;
+lin hydrology_N = mkN "hydrology" "hydrologies" ;
+lin hydrolysate_N = mkN "hydrolysate" "hydrolysates" ;
+lin hydrolysis_N = mkN "hydrolysis" "hydrolysises" ;
+lin hydrolyzable_A = mkAMost "hydrolyzable" "hydrolyzably" ;
+lin hydromancer_N = mkN "hydromancer" "hydromancers" ;
+lin hydromancy_N = mkN "hydromancy" "hydromancies" ;
+lin hydromel_N = mkN "hydromel" "hydromels" ;
+lin hydrometer_N = mkN "hydrometer" "hydrometers" ;
+lin hydrometric_A = mkAMost "hydrometric" "hydrometricly" ;
+lin hydrometry_N = mkN "hydrometry" "hydrometries" ;
+lin hydronephrosis_N = mkN "hydronephrosis" "hydronephrosises" ;
+lin hydropathic_A = mkAMost "hydropathic" "hydropathicly" ;
+lin hydropathy_N = mkN "hydropathy" "hydropathies" ;
+lin hydrophilic_A = mkAMost "hydrophilic" "hydrophilicly" ;
+lin hydrophobia_N = mkN "hydrophobia" "hydrophobias" ;
+lin hydrophobic_A = mkAMost "hydrophobic" "hydrophobicly" ;
+lin hydrophobicity_N = mkN "hydrophobicity" "hydrophobicities" ;
+lin hydrophytic_A = mkAMost "hydrophytic" "hydrophyticly" ;
+lin hydroplane_N = mkN "hydroplane" "hydroplanes" ;
+lin hydroponics_N = mkN "hydroponics" "hydroponics" ;
+lin hydrosphere_N = mkN "hydrosphere" "hydrospheres" ;
+lin hydrostatic_A = mkAMost "hydrostatic" "hydrostaticly" ;
+lin hydrostatics_N = mkN "hydrostatics" "hydrostaticses" ;
+lin hydrothorax_N = mkN "hydrothorax" "hydrothoraxes" ;
+lin hydrous_A = mkAMost "hydrous" "hydrously" ;
+lin hydroxide_N = mkN "hydroxide" "hydroxides" ;
+lin hydroxy_A = mkAMost "hydroxy" "hydroxily" ;
+lin hydroxychloroquine_N = mkN "hydroxychloroquine" "hydroxychloroquines" ;
+lin hydroxyl_N = mkN "hydroxyl" "hydroxyls" ;
+lin hydroxymethyl_N = mkN "hydroxymethyl" "hydroxymethyls" ;
+lin hydroxyproline_N = mkN "hydroxyproline" "hydroxyprolines" ;
+lin hydrozoan_N = mkN "hydrozoan" "hydrozoans" ;
+lin hyena_N = mkN "hyena" "hyenas" ;
+lin hygiene_N = mkN "hygiene" "hygienes" ;
+lin hygienic_A = mkAMost "hygienic" "hygienicly" ;
+lin hygienically_Adv = mkAdv "hygienically" ;
+lin hygienist_N = mkN "hygienist" "hygienists" ;
+lin hygrodeik_N = mkN "hygrodeik" "hygrodeiks" ;
+lin hygrometer_N = mkN "hygrometer" "hygrometers" ;
+lin hygrophyte_N = mkN "hygrophyte" "hygrophytes" ;
+lin hygrophytic_A = mkAMost "hygrophytic" "hygrophyticly" ;
+lin hygroscope_N = mkN "hygroscope" "hygroscopes" ;
+lin hygroscopic_A = mkAMost "hygroscopic" "hygroscopicly" ;
+lin hymen_N = mkN "hymen" "hymens" ;
+lin hymenal_A = mkAMost "hymenal" "hymenally" ;
+lin hymeneal_A = mkAMost "hymeneal" "hymeneally" ;
+lin hymeneal_N = mkN "hymeneal" "hymeneals" ;
+lin hymenium_N = mkN "hymenium" "hymeniums" ;
+lin hymenopterous_A = mkAMost "hymenopterous" "hymenopterously" ;
+lin hymn_N = mkN "hymn" "hymns" ;
+lin hymn_V = mkV "hymn" "hymned" "hymned" ;
+lin hymnal_N = mkN "hymnal" "hymnals" ;
+lin hyoid_A = mkAMost "hyoid" "hyoidly" ;
+lin hyoid_N = mkN "hyoid" "hyoids" ;
+lin hyoscyamine_N = mkN "hyoscyamine" "hyoscyamines" ;
+lin hypaethral_A = mkAMost "hypaethral" "hypaethrally" ;
+lin hypallage_N = mkN "hypallage" "hypallages" ;
+lin hypanthium_N = mkN "hypanthium" "hypanthiums" ;
+lin hype_V = mkV "hype" "hyped" "hyped" ;
+lin hyperacidity_N = mkN "hyperacidity" "hyperacidities" ;
+lin hyperactive_A = mkAMost "hyperactive" "hyperactively" ;
+lin hyperactivity_N = mkN "hyperactivity" "hyperactivities" ;
+lin hyperacusis_N = mkN "hyperacusis" "hyperacusises" ;
+lin hyperbaton_N = mkN "hyperbaton" "hyperbatons" ;
+lin hyperbetalipoproteinemia_N = mkN "hyperbetalipoproteinemia" "hyperbetalipoproteinemias" ;
+lin hyperbilirubinemia_N = mkN "hyperbilirubinemia" "hyperbilirubinemias" ;
+lin hyperbola_N = mkN "hyperbola" "hyperbolas" ;
+lin hyperbole_N = mkN "hyperbole" "hyperboles" ;
+lin hyperbolic_A = mkAMost "hyperbolic" "hyperbolicly" ;
+lin hyperbolically_Adv = mkAdv "hyperbolically" ;
+lin hyperboloid_N = mkN "hyperboloid" "hyperboloids" ;
+lin hyperboloidal_A = mkAMost "hyperboloidal" "hyperboloidally" ;
+lin hypercalcemia_N = mkN "hypercalcemia" "hypercalcemias" ;
+lin hypercalciuria_N = mkN "hypercalciuria" "hypercalciurias" ;
+lin hypercapnia_N = mkN "hypercapnia" "hypercapnias" ;
+lin hypercatalectic_A = mkAMost "hypercatalectic" "hypercatalecticly" ;
+lin hypercatalectic_N = mkN "hypercatalectic" "hypercatalectics" ;
+lin hypercellularity_N = mkN "hypercellularity" "hypercellularities" ;
+lin hypercholesterolemia_N = mkN "hypercholesterolemia" "hypercholesterolemias" ;
+lin hypercoaster_N = mkN "hypercoaster" "hypercoasters" ;
+lin hypercritical_A = mkAMost "hypercritical" "hypercritically" ;
+lin hyperemesis_N = mkN "hyperemesis" "hyperemesises" ;
+lin hyperemia_N = mkN "hyperemia" "hyperemias" ;
+lin hyperemic_A = mkAMost "hyperemic" "hyperemicly" ;
+lin hyperextension_N = mkN "hyperextension" "hyperextensions" ;
+lin hyperfine_A = mkAMost "hyperfine" "hyperfinely" ;
+lin hyperglycemia_N = mkN "hyperglycemia" "hyperglycemias" ;
+lin hyperhidrosis_N = mkN "hyperhidrosis" "hyperhidrosises" ;
+lin hypericism_N = mkN "hypericism" "hypericisms" ;
+lin hyperinflation_N = mkN "hyperinflation" "hyperinflations" ;
+lin hyperkalemia_N = mkN "hyperkalemia" "hyperkalemias" ;
+lin hyperlink_N = mkN "hyperlink" "hyperlinks" ;
+lin hyperlipoproteinemia_N = mkN "hyperlipoproteinemia" "hyperlipoproteinemias" ;
+lin hypermarket_N = mkN "hypermarket" "hypermarkets" ;
+lin hypermastigote_N = mkN "hypermastigote" "hypermastigotes" ;
+lin hypermedia_N = mkN "hypermedia" "hypermedias" ;
+lin hypermotility_N = mkN "hypermotility" "hypermotilities" ;
+lin hypernatremia_N = mkN "hypernatremia" "hypernatremias" ;
+lin hypernym_N = mkN "hypernym" "hypernyms" ;
+lin hypernymy_N = mkN "hypernymy" "hypernymies" ;
+lin hyperon_N = mkN "hyperon" "hyperons" ;
+lin hyperope_N = mkN "hyperope" "hyperopes" ;
+lin hyperopia_N = mkN "hyperopia" "hyperopias" ;
+lin hyperopic_A = mkAMost "hyperopic" "hyperopicly" ;
+lin hyperparathyroidism_N = mkN "hyperparathyroidism" "hyperparathyroidisms" ;
+lin hyperpigmentation_N = mkN "hyperpigmentation" "hyperpigmentations" ;
+lin hyperpituitarism_N = mkN "hyperpituitarism" "hyperpituitarisms" ;
+lin hyperplasia_N = mkN "hyperplasia" "hyperplasias" ;
+lin hyperpnea_N = mkN "hyperpnea" "hyperpneas" ;
+lin hyperpyrexia_N = mkN "hyperpyrexia" "hyperpyrexias" ;
+lin hypersecretion_N = mkN "hypersecretion" "hypersecretions" ;
+lin hypersensitive_A = mkAMost "hypersensitive" "hypersensitively" ;
+lin hypersensitivity_N = mkN "hypersensitivity" "hypersensitivities" ;
+lin hypersomnia_N = mkN "hypersomnia" "hypersomnias" ;
+lin hypersplenism_N = mkN "hypersplenism" "hypersplenisms" ;
+lin hypertensive_A = mkAMost "hypertensive" "hypertensively" ;
+lin hypertensive_N = mkN "hypertensive" "hypertensives" ;
+lin hypertext_N = mkN "hypertext" "hypertexts" ;
+lin hyperthermal_A = mkAMost "hyperthermal" "hyperthermally" ;
+lin hyperthermia_N = mkN "hyperthermia" "hyperthermias" ;
+lin hyperthyroidism_N = mkN "hyperthyroidism" "hyperthyroidisms" ;
+lin hypertonia_N = mkN "hypertonia" "hypertonias" ;
+lin hypertonic_A = mkAMost "hypertonic" "hypertonicly" ;
+lin hypertonicity_N = mkN "hypertonicity" "hypertonicities" ;
+lin hypertrophied_A = mkAMost "hypertrophied" "hypertrophiedly" ;
+lin hypertrophy_N = mkN "hypertrophy" "hypertrophies" ;
+lin hypervelocity_N = mkN "hypervelocity" "hypervelocities" ;
+lin hyperventilation_N = mkN "hyperventilation" "hyperventilations" ;
+lin hypervitaminosis_N = mkN "hypervitaminosis" "hypervitaminosises" ;
+lin hypervolemia_N = mkN "hypervolemia" "hypervolemias" ;
+lin hypha_N = mkN "hypha" "hyphas" ;
+lin hyphema_N = mkN "hyphema" "hyphemas" ;
+lin hyphen_N = mkN "hyphen" "hyphens" ;
+lin hyphen_V = mkV "hyphen" "hyphened" "hyphened" ;
+lin hyphenate_V = mkV "hyphenate" "hyphenated" "hyphenated" ;
+lin hyphenation_N = mkN "hyphenation" "hyphenations" ;
+lin hypnagogue_N = mkN "hypnagogue" "hypnagogues" ;
+lin hypnoanalysis_N = mkN "hypnoanalysis" "hypnoanalysises" ;
+lin hypnogenesis_N = mkN "hypnogenesis" "hypnogenesises" ;
+lin hypnoid_A = mkAMost "hypnoid" "hypnoidly" ;
+lin hypnophobia_N = mkN "hypnophobia" "hypnophobias" ;
+lin hypnosis_N = mkN "hypnosis" "hypnoses" ;
+lin hypnotherapy_N = mkN "hypnotherapy" "hypnotherapies" ;
+lin hypnotic_A = mkAMost "hypnotic" "hypnoticly" ;
+lin hypnotically_Adv = mkAdv "hypnotically" ;
+lin hypnotism_N = mkN "hypnotism" "hypnotisms" ;
+lin hypnotist_N = mkN "hypnotist" "hypnotists" ;
+lin hypnotize_V = mkV "hypnotize" "hypnotized" "hypnotized" ;
+lin hypo_N = mkN "hypo" "hypoes" ;
+lin hypoactive_A = mkAMost "hypoactive" "hypoactively" ;
+lin hypobasidium_N = mkN "hypobasidium" "hypobasidiums" ;
+lin hypobetalipoproteinemia_N = mkN "hypobetalipoproteinemia" "hypobetalipoproteinemias" ;
+lin hypocalcemia_N = mkN "hypocalcemia" "hypocalcemias" ;
+lin hypocapnia_N = mkN "hypocapnia" "hypocapnias" ;
+lin hypocellularity_N = mkN "hypocellularity" "hypocellularities" ;
+lin hypochlorite_N = mkN "hypochlorite" "hypochlorites" ;
+lin hypochondria_N = mkN "hypochondria" "hypochondrias" ;
+lin hypochondriac_A = mkAMost "hypochondriac" "hypochondriacly" ;
+lin hypochondriac_N = mkN "hypochondriac" "hypochondriacs" ;
+lin hypochondriacal_A = mkAMost "hypochondriacal" "hypochondriacally" ;
+lin hypochondrium_N = mkN "hypochondrium" "hypochondriums" ;
+lin hypocrisy_N = mkN "hypocrisy" "hypocrisies" ;
+lin hypocrite_N = mkN "hypocrite" "hypocrites" ;
+lin hypocritical_A = mkAMost "hypocritical" "hypocritically" ;
+lin hypocycloid_N = mkN "hypocycloid" "hypocycloids" ;
+lin hypodermal_A = mkAMost "hypodermal" "hypodermally" ;
+lin hypodermic_A = mkAMost "hypodermic" "hypodermicly" ;
+lin hypodermic_N = mkN "hypodermic" "hypodermics" ;
+lin hypodermis_N = mkN "hypodermis" "hypodermises" ;
+lin hypoesthesia_N = mkN "hypoesthesia" "hypoesthesias" ;
+lin hypogammaglobulinemia_N = mkN "hypogammaglobulinemia" "hypogammaglobulinemias" ;
+lin hypoglossal_N = mkN "hypoglossal" "hypoglossals" ;
+lin hypoglycemia_N = mkN "hypoglycemia" "hypoglycemias" ;
+lin hypoglycemic_A = mkAMost "hypoglycemic" "hypoglycemicly" ;
+lin hypogonadism_N = mkN "hypogonadism" "hypogonadisms" ;
+lin hypokalemia_N = mkN "hypokalemia" "hypokalemias" ;
+lin hypolipoproteinemia_N = mkN "hypolipoproteinemia" "hypolipoproteinemias" ;
+lin hyponatremia_N = mkN "hyponatremia" "hyponatremias" ;
+lin hyponym_N = mkN "hyponym" "hyponyms" ;
+lin hyponymy_N = mkN "hyponymy" "hyponymies" ;
+lin hypoparathyroidism_N = mkN "hypoparathyroidism" "hypoparathyroidisms" ;
+lin hypophyseal_A = mkAMost "hypophyseal" "hypophyseally" ;
+lin hypophysectomized_A = mkAMost "hypophysectomized" "hypophysectomizedly" ;
+lin hypophysectomy_N = mkN "hypophysectomy" "hypophysectomies" ;
+lin hypopigmentation_N = mkN "hypopigmentation" "hypopigmentations" ;
+lin hypoplasia_N = mkN "hypoplasia" "hypoplasias" ;
+lin hypopnea_N = mkN "hypopnea" "hypopneas" ;
+lin hypoproteinemia_N = mkN "hypoproteinemia" "hypoproteinemias" ;
+lin hyposmia_N = mkN "hyposmia" "hyposmias" ;
+lin hypospadias_N = mkN "hypospadias" "hypospadiases" ;
+lin hypostasis_N = mkN "hypostasis" "hypostasises" ;
+lin hypostatization_N = mkN "hypostatization" "hypostatizations" ;
+lin hypotension_N = mkN "hypotension" "hypotensions" ;
+lin hypotensive_A = mkAMost "hypotensive" "hypotensively" ;
+lin hypotensive_N = mkN "hypotensive" "hypotensives" ;
+lin hypotenuse_N = mkN "hypotenuse" "hypotenuses" ;
+lin hypothalamic_A = mkAMost "hypothalamic" "hypothalamicly" ;
+lin hypothalamically_Adv = mkAdv "hypothalamically" ;
+lin hypothalamus_N = mkN "hypothalamus" "hypothalamuses" ;
+lin hypothecate_V = mkV "hypothecate" "hypothecated" "hypothecated" ;
+lin hypothermia_N = mkN "hypothermia" "hypothermias" ;
+lin hypothermic_A = mkAMost "hypothermic" "hypothermicly" ;
+lin hypothesis_N = mkN "hypothesis" "hypotheses" ;
+lin hypothesize_V = mkV "hypothesize" "hypothesized" "hypothesized" ;
+lin hypothetical_A = mkAMost "hypothetical" "hypothetically" ;
+lin hypothetical_N = mkN "hypothetical" "hypotheticals" ;
+lin hypothrombinemia_N = mkN "hypothrombinemia" "hypothrombinemias" ;
+lin hypothyroidism_N = mkN "hypothyroidism" "hypothyroidisms" ;
+lin hypotonia_N = mkN "hypotonia" "hypotonias" ;
+lin hypotonic_A = mkAMost "hypotonic" "hypotonicly" ;
+lin hypotonicity_N = mkN "hypotonicity" "hypotonicities" ;
+lin hypovolemia_N = mkN "hypovolemia" "hypovolemias" ;
+lin hypovolemic_A = mkAMost "hypovolemic" "hypovolemicly" ;
+lin hypoxia_N = mkN "hypoxia" "hypoxias" ;
+lin hypozeugma_N = mkN "hypozeugma" "hypozeugmas" ;
+lin hypozeuxis_N = mkN "hypozeuxis" "hypozeuxises" ;
+lin hypsography_N = mkN "hypsography" "hypsographies" ;
+lin hypsometer_N = mkN "hypsometer" "hypsometers" ;
+lin hypsometry_N = mkN "hypsometry" "hypsometries" ;
+lin hyrax_N = mkN "hyrax" "hyraxes" ;
+lin hyson_N = mkN "hyson" "hysons" ;
+lin hyssop_N = mkN "hyssop" "hyssops" ;
+lin hysterectomy_N = mkN "hysterectomy" "hysterectomies" ;
+lin hysteresis_N = mkN "hysteresis" "hysteresises" ;
+lin hysteria_N = mkN "hysteria" "hysterias" ;
+lin hysteric_A = mkAMost "hysteric" "hystericly" ;
+lin hysteric_N = mkN "hysteric" "hysterics" ;
+lin hysterical_A = mkAMost "hysterical" "hysterically" ;
+lin hysterics_N = mkN "hysterics" "hysterics" ;
+lin hysterocatalepsy_N = mkN "hysterocatalepsy" "hysterocatalepsies" ;
+lin hysterosalpingogram_N = mkN "hysterosalpingogram" "hysterosalpingograms" ;
+lin hysteroscopy_N = mkN "hysteroscopy" "hysteroscopies" ;
+lin hysterotomy_N = mkN "hysterotomy" "hysterotomies" ;
+lin iPod_N = mkN "iPod" "iPods" ;
+lin iamb_N = mkN "iamb" "iambs" ;
+lin iambic_A = mkAMost "iambic" "iambicly" ;
+lin iambic_N = mkN "iambic" "iambics" ;
+lin iambics_N = mkN "iambics" "iambics" ;
+lin iambus_N = mkN "iambus" "iambuses" ;
+lin iatrogenic_A = mkAMost "iatrogenic" "iatrogenicly" ;
+lin iba_N = mkN "iba" "ibas" ;
+lin ibex_N = mkN "ibex" "ibexes" ;
+lin ibidem_Adv = mkAdv "ibidem" ;
+lin ibis_N = mkN "ibis" "ibises" ;
+lin ibuprofen_N = mkN "ibuprofen" "ibuprofens" ;
+lin icbm_N = mkN "icbm" "icbms" ;
+lin ice_N = mkN "ice" "ices" ;
+lin ice_V = mkV "ice" "iced" "iced" ;
+lin ice_axe_N = mkN "ice-axe" "ice-axes" ;
+lin ice_cream_N = mkN "ice-cream" "ice-creams" ;
+lin ice_lolly_N = mkN "ice-lolly" "ice-lollies" ;
+lin ice_show_N = mkN "ice-show" "ice-shows" ;
+lin ice_skate_N = mkN "ice-skate" "ice-skates" ;
+lin ice_skate_V = mkV "ice-skate" "ice-skated" "ice-skated" ;
+lin ice_skating_N = mkN "ice-skating" "ice-skatings" ;
+lin ice_tray_N = mkN "ice-tray" "ice-trays" ;
+lin iceberg_N = mkN "iceberg" "icebergs" ;
+lin iceboat_N = mkN "iceboat" "iceboats" ;
+lin icebound_A = mkAMost "icebound" "iceboundly" ;
+lin icebox_N = mkN "icebox" "iceboxes" ;
+lin icebreaker_N = mkN "icebreaker" "icebreakers" ;
+lin icecap_N = mkN "icecap" "icecaps" ;
+lin icecube_N = mkN "icecube" "icecubes" ;
+lin icefall_N = mkN "icefall" "icefalls" ;
+lin icefield_N = mkN "icefield" "icefields" ;
+lin icefloe_N = mkN "icefloe" "icefloes" ;
+lin icefree_A = mkAMost "icefree" "icefreely" ;
+lin icehouse_N = mkN "icehouse" "icehouses" ;
+lin icelander_A = mkAMost "icelander" "icelanderly" ;
+lin icelander_N = mkN "icelander" "icelanders" ;
+lin icelandic_A = mkAMost "icelandic" "icelandicly" ;
+lin icelandic_N = mkN "icelandic" "icelandics" ;
+lin iceman_N = mkN "iceman" "icemen" ;
+lin icepack_N = mkN "icepack" "icepacks" ;
+lin icepick_N = mkN "icepick" "icepicks" ;
+lin icerink_N = mkN "icerink" "icerinks" ;
+lin icetray_N = mkN "icetray" "icetrays" ;
+lin ichneumon_N = mkN "ichneumon" "ichneumons" ;
+lin ichneumon_fly_N = mkN "ichneumon-fly" "ichneumon-flies" ;
+lin ichor_N = mkN "ichor" "ichors" ;
+lin ichorous_A = mkAMost "ichorous" "ichorously" ;
+lin ichthyolatry_N = mkN "ichthyolatry" "ichthyolatries" ;
+lin ichthyologist_N = mkN "ichthyologist" "ichthyologists" ;
+lin ichthyology_N = mkN "ichthyology" "ichthyologies" ;
+lin ichthyosaur_N = mkN "ichthyosaur" "ichthyosaurs" ;
+lin ichthyosaurus_N = mkN "ichthyosaurus" "ichthyosauruses" ;
+lin ichthyosis_N = mkN "ichthyosis" "ichthyosises" ;
+lin icicle_N = mkN "icicle" "icicles" ;
+lin icing_N = mkN "icing" "icings" ;
+lin icky_A = mkA "icky" "ickier" "ickiest" "ickily" ;
+lin icon_N = mkN "icon" "icons" ;
+lin iconic_A = mkAMost "iconic" "iconicly" ;
+lin iconoclasm_N = mkN "iconoclasm" "iconoclasms" ;
+lin iconoclast_N = mkN "iconoclast" "iconoclasts" ;
+lin iconoclastic_A = mkAMost "iconoclastic" "iconoclasticly" ;
+lin iconography_N = mkN "iconography" "iconographies" ;
+lin iconolatry_N = mkN "iconolatry" "iconolatries" ;
+lin iconology_N = mkN "iconology" "iconologies" ;
+lin iconoscope_N = mkN "iconoscope" "iconoscopes" ;
+lin icosahedral_A = mkAMost "icosahedral" "icosahedrally" ;
+lin icosahedron_N = mkN "icosahedron" "icosahedrons" ;
+lin ictal_A = mkAMost "ictal" "ictally" ;
+lin icterogenic_A = mkAMost "icterogenic" "icterogenicly" ;
+lin ictodosaur_N = mkN "ictodosaur" "ictodosaurs" ;
+lin icy_A = mkA "icy" "icier" "iciest" "icily" ;
+lin id_N = mkN "id" "IRREG" ;
+lin idea_N = mkN "idea" "ideas" ;
+lin ideal_A = mkAMost "ideal" "ideally" ;
+lin ideal_N = mkN "ideal" "ideals" ;
+lin idealism_N = mkN "idealism" "idealisms" ;
+lin idealist_N = mkN "idealist" "idealists" ;
+lin idealistic_A = mkAMost "idealistic" "idealisticly" ;
+lin ideality_N = mkN "ideality" "idealities" ;
+lin idealization_N = mkN "idealization" "idealizations" ;
+lin idealize_V = mkV "idealize" "idealized" "idealized" ;
+lin ideation_N = mkN "ideation" "ideations" ;
+lin idempotent_A = mkAMost "idempotent" "idempotently" ;
+lin identical_A = mkAMost "identical" "identically" ;
+lin identifiable_A = mkAMost "identifiable" "identifiably" ;
+lin identification_N = mkN "identification" "identifications" ;
+lin identifier_N = mkN "identifier" "identifiers" ;
+lin identify_V = mkV "identify" "identified" "identified" ;
+lin identikit_N = mkN "identikit" "identikits" ;
+lin identity_N = mkN "identity" "identities" ;
+lin ideogram_N = mkN "ideogram" "ideograms" ;
+lin ideograph_N = mkN "ideograph" "ideographs" ;
+lin ideographic_A = mkAMost "ideographic" "ideographicly" ;
+lin ideographically_Adv = mkAdv "ideographically" ;
+lin ideography_N = mkN "ideography" "ideographies" ;
+lin ideological_A = mkAMost "ideological" "ideologically" ;
+lin ideologist_N = mkN "ideologist" "ideologists" ;
+lin ideology_N = mkN "ideology" "ideologies" ;
+lin ides_N = mkN "ides" "ideses" ;
+lin idesia_N = mkN "idesia" "idesias" ;
+lin idiocy_N = mkN "idiocy" "idiocies" ;
+lin idiographic_A = mkAMost "idiographic" "idiographicly" ;
+lin idiolatry_N = mkN "idiolatry" "idiolatries" ;
+lin idiolect_N = mkN "idiolect" "idiolects" ;
+lin idiom_N = mkN "idiom" "idioms" ;
+lin idiomatic_A = mkAMost "idiomatic" "idiomaticly" ;
+lin idiomatically_Adv = mkAdv "idiomatically" ;
+lin idiopathic_A = mkAMost "idiopathic" "idiopathicly" ;
+lin idiosyncrasy_N = mkN "idiosyncrasy" "idiosyncrasies" ;
+lin idiosyncratic_A = mkAMost "idiosyncratic" "idiosyncraticly" ;
+lin idiot_N = mkN "idiot" "idiots" ;
+lin idiotic_A = mkAMost "idiotic" "idioticly" ;
+lin idiotically_Adv = mkAdv "idiotically" ;
+lin idle_A = mkA "idle" "idler" "idlest" "idlely" ;
+lin idle_N = mkN "idle" "idles" ;
+lin idle_V = mkV "idle" "idled" "idled" ;
+lin idleness_N = mkN "idleness" "idlenesses" ;
+lin idler_N = mkN "idler" "idlers" ;
+lin idly_Adv = mkAdv "idly" ;
+lin idol_N = mkN "idol" "idols" ;
+lin idolater_N = mkN "idolater" "idolaters" ;
+lin idolatress_N = mkN "idolatress" "idolatresses" ;
+lin idolatrous_A = mkAMost "idolatrous" "idolatrously" ;
+lin idolatry_N = mkN "idolatry" "idolatries" ;
+lin idolization_N = mkN "idolization" "idolizations" ;
+lin idolize_V = mkV "idolize" "idolized" "idolized" ;
+lin idolizer_N = mkN "idolizer" "idolizers" ;
+lin idyll_N = mkN "idyll" "idylls" ;
+lin idyllic_A = mkAMost "idyllic" "idyllicly" ;
+lin idyllically_Adv = mkAdv "idyllically" ;
+lin igloo_N = mkN "igloo" "igloos" ;
+lin igneous_A = mkAMost "igneous" "igneously" ;
+lin ignescent_A = mkAMost "ignescent" "ignescently" ;
+lin ignis_fatuus_N = mkN "ignis fatuus" "ignis fatui" ;
+lin ignite_V = mkV "ignite" "ignited" "ignited" ;
+lin igniter_N = mkN "igniter" "igniters" ;
+lin ignition_N = mkN "ignition" "ignitions" ;
+lin ignoble_A = mkAMost "ignoble" "ignobly" ;
+lin ignobleness_N = mkN "ignobleness" "ignoblenesses" ;
+lin ignominious_A = mkAMost "ignominious" "ignominiously" ;
+lin ignominy_N = mkN "ignominy" "ignominies" ;
+lin ignoramus_N = mkN "ignoramus" "ignoramuses" ;
+lin ignorance_N = mkN "ignorance" "ignorances" ;
+lin ignorant_A = mkAMost "ignorant" "ignorantly" ;
+lin ignorantness_N = mkN "ignorantness" "ignorantnesses" ;
+lin ignore_V = mkV "ignore" "ignored" "ignored" ;
+lin iguana_N = mkN "iguana" "iguanas" ;
+lin iguanid_N = mkN "iguanid" "iguanids" ;
+lin iguanodon_N = mkN "iguanodon" "iguanodons" ;
+lin ijtihad_N = mkN "ijtihad" "ijtihads" ;
+lin ikon_N = mkN "ikon" "ikons" ;
+lin ilama_N = mkN "ilama" "ilamas" ;
+lin ileitis_N = mkN "ileitis" "ileitises" ;
+lin ileostomy_N = mkN "ileostomy" "ileostomies" ;
+lin ileum_N = mkN "ileum" "ileums" ;
+lin ilex_N = mkN "ilex" "ilexes" ;
+lin iliac_A = mkAMost "iliac" "iliacly" ;
+lin ilium_N = mkN "ilium" "iliums" ;
+lin ilk_N = mkN "ilk" "ilks" ;
+lin ill_A = mkAMost "ill" "illy" ;
+lin ill_Adv = mkAdv "ill" ;
+lin ill_N = mkN "ill" "ills" ;
+lin ill_advised_A = mkAMost "ill-advised" "ill-advisedly" ;
+lin ill_affected_A = mkAMost "ill-affected" "ill-affectedly" ;
+lin ill_bred_A = mkAMost "ill-bred" "ill-bredly" ;
+lin ill_breeding_N = mkN "ill-breeding" "ill-breedings" ;
+lin ill_disposed_A = mkAMost "ill-disposed" "ill-disposedly" ;
+lin ill_fated_A = mkAMost "ill-fated" "ill-fatedly" ;
+lin ill_favoured_A = mkAMost "ill-favoured" "ill-favouredly" ;
+lin ill_gotten_A = mkAMost "ill-gotten" "ill-gottenly" ;
+lin ill_judged_A = mkAMost "ill-judged" "ill-judgedly" ;
+lin ill_mannered_A = mkAMost "ill-mannered" "ill-manneredly" ;
+lin ill_natured_A = mkAMost "ill-natured" "ill-naturedly" ;
+lin ill_omened_A = mkAMost "ill-omened" "ill-omenedly" ;
+lin ill_starred_A = mkAMost "ill-starred" "ill-starredly" ;
+lin ill_timed_A = mkAMost "ill-timed" "ill-timedly" ;
+lin ill_treat_V = mkV "ill-treat" "ill-treated" "ill-treated" ;
+lin ill_treatment_N = mkN "ill-treatment" "ill-treatments" ;
+lin ill_usage_N = mkN "ill-usage" "ill-usages" ;
+lin ill_use_V = mkV "ill-use" "ill-used" "ill-used" ;
+lin illative_A = mkAMost "illative" "illatively" ;
+lin illegal_A = mkAMost "illegal" "illegally" ;
+lin illegality_N = mkN "illegality" "illegalities" ;
+lin illegibility_N = mkN "illegibility" "illegibilities" ;
+lin illegible_A = mkAMost "illegible" "illegibly" ;
+lin illegitimacy_N = mkN "illegitimacy" "illegitimacies" ;
+lin illegitimate_A = mkAMost "illegitimate" "illegitimately" ;
+lin illegitimate_N = mkN "illegitimate" "illegitimate" ;
+lin illiberal_A = mkAMost "illiberal" "illiberally" ;
+lin illiberality_N = mkN "illiberality" "illiberalities" ;
+lin illicit_A = mkAMost "illicit" "illicitly" ;
+lin illicitness_N = mkN "illicitness" "illicitnesses" ;
+lin illimitable_A = mkAMost "illimitable" "illimitably" ;
+lin illiteracy_N = mkN "illiteracy" "illiteracies" ;
+lin illiterate_A = mkAMost "illiterate" "illiterately" ;
+lin illiterate_N = mkN "illiterate" "illiterates" ;
+lin illness_N = mkN "illness" "illnesses" ;
+lin illogical_A = mkAMost "illogical" "illogically" ;
+lin illogicality_N = mkN "illogicality" "illogicalities" ;
+lin illogicalness_N = mkN "illogicalness" "illogicalnesses" ;
+lin illume_V = mkV "illume" "illumed" "illumed" ;
+lin illuminance_N = mkN "illuminance" "illuminances" ;
+lin illuminant_N = mkN "illuminant" "illuminants" ;
+lin illuminate_V = mkV "illuminate" "illuminated" "illuminated" ;
+lin illumination_N = mkN "illumination" "illuminations" ;
+lin illumine_V = mkV "illumine" "illumined" "illumined" ;
+lin illusion_N = mkN "illusion" "illusions" ;
+lin illusional_A = mkAMost "illusional" "illusionally" ;
+lin illusionist_N = mkN "illusionist" "illusionists" ;
+lin illusive_A = mkAMost "illusive" "illusively" ;
+lin illusory_A = mkAMost "illusory" "illusorily" ;
+lin illustrate_V = mkV "illustrate" "illustrated" "illustrated" ;
+lin illustration_N = mkN "illustration" "illustrations" ;
+lin illustrative_A = mkAMost "illustrative" "illustratively" ;
+lin illustrator_N = mkN "illustrator" "illustrators" ;
+lin illustrious_A = mkAMost "illustrious" "illustriously" ;
+lin ilmenite_N = mkN "ilmenite" "ilmenites" ;
+lin ilo_N = mkN "ilo" "iloes" ;
+lin image_N = mkN "image" "images" ;
+lin image_V = mkV "image" "imaged" "imaged" ;
+lin imagery_N = mkN "imagery" "imageries" ;
+lin imaginable_A = mkAMost "imaginable" "imaginably" ;
+lin imaginary_A = mkAMost "imaginary" "imaginarily" ;
+lin imagination_N = mkN "imagination" "imaginations" ;
+lin imaginative_A = mkAMost "imaginative" "imaginatively" ;
+lin imagine_V = mkV "imagine" "imagined" "imagined" ;
+lin imaging_N = mkN "imaging" "imagings" ;
+lin imagism_N = mkN "imagism" "imagisms" ;
+lin imago_N = mkN "imago" "imagoes" ;
+lin imam_N = mkN "imam" "imams" ;
+lin imaret_N = mkN "imaret" "imarets" ;
+lin imbalance_N = mkN "imbalance" "imbalances" ;
+lin imbecile_A = mkAMost "imbecile" "imbecilely" ;
+lin imbecile_N = mkN "imbecile" "imbeciles" ;
+lin imbecility_N = mkN "imbecility" "imbecilities" ;
+lin imbed_V = mkV "imbed" "imbedded" "imbedded" ;
+lin imbibe_V = mkV "imbibe" "imbibed" "imbibed" ;
+lin imbibition_N = mkN "imbibition" "imbibitions" ;
+lin imbricate_A = mkAMost "imbricate" "imbricately" ;
+lin imbrication_N = mkN "imbrication" "imbrications" ;
+lin imbroglio_N = mkN "imbroglio" "imbroglios" ;
+lin imbue_V = mkV "imbue" "imbued" "imbued" ;
+lin imf_N = mkN "imf" "imfs" ;
+lin imidazole_N = mkN "imidazole" "imidazoles" ;
+lin imide_N = mkN "imide" "imides" ;
+lin imipramine_N = mkN "imipramine" "imipramines" ;
+lin imitate_V = mkV "imitate" "imitated" "imitated" ;
+lin imitation_N = mkN "imitation" "imitations" ;
+lin imitative_A = mkAMost "imitative" "imitatively" ;
+lin imitator_N = mkN "imitator" "imitators" ;
+lin immaculate_A = mkAMost "immaculate" "immaculately" ;
+lin immanence_N = mkN "immanence" "immanences" ;
+lin immanent_A = mkAMost "immanent" "immanently" ;
+lin immaterial_A = mkAMost "immaterial" "immaterially" ;
+lin immateriality_N = mkN "immateriality" "immaterialities" ;
+lin immature_A = mkAMost "immature" "immaturely" ;
+lin immaturity_N = mkN "immaturity" "immaturities" ;
+lin immeasurable_A = mkAMost "immeasurable" "immeasurably" ;
+lin immediacy_N = mkN "immediacy" "immediacies" ;
+lin immediate_A = mkAMost "immediate" "immediately" ;
+lin immemorial_A = mkAMost "immemorial" "immemorially" ;
+lin immense_A = mkAMost "immense" "immensely" ;
+lin immensity_N = mkN "immensity" "immensities" ;
+lin immerse_V = mkV "immerse" "immersed" "immersed" ;
+lin immersion_N = mkN "immersion" "immersions" ;
+lin immigrant_N = mkN "immigrant" "immigrants" ;
+lin immigrate_V = mkV "immigrate" "immigrated" "immigrated" ;
+lin immigration_N = mkN "immigration" "immigrations" ;
+lin imminence_N = mkN "imminence" "imminences" ;
+lin imminent_A = mkAMost "imminent" "imminently" ;
+lin immiscible_A = mkAMost "immiscible" "immiscibly" ;
+lin immobile_A = mkAMost "immobile" "immobilely" ;
+lin immobility_N = mkN "immobility" "immobilities" ;
+lin immobilization_N = mkN "immobilization" "immobilizations" ;
+lin immobilize_V = mkV "immobilize" "immobilized" "immobilized" ;
+lin immoderate_A = mkAMost "immoderate" "immoderately" ;
+lin immoderation_N = mkN "immoderation" "immoderations" ;
+lin immodest_A = mkAMost "immodest" "immodestly" ;
+lin immodesty_N = mkN "immodesty" "immodesties" ;
+lin immolate_V = mkV "immolate" "immolated" "immolated" ;
+lin immolation_N = mkN "immolation" "immolations" ;
+lin immoral_A = mkAMost "immoral" "immorally" ;
+lin immorality_N = mkN "immorality" "immoralities" ;
+lin immortal_A = mkAMost "immortal" "immortally" ;
+lin immortal_N = mkN "immortal" "immortals" ;
+lin immortality_N = mkN "immortality" "immortalities" ;
+lin immortalize_V = mkV "immortalize" "immortalized" "immortalized" ;
+lin immortelle_N = mkN "immortelle" "immortelles" ;
+lin immotility_N = mkN "immotility" "immotilities" ;
+lin immovability_N = mkN "immovability" "immovabilities" ;
+lin immovable_A = mkAMost "immovable" "immovably" ;
+lin immune_A = mkAMost "immune" "immunely" ;
+lin immune_N = mkN "immune" "immunes" ;
+lin immunity_N = mkN "immunity" "immunities" ;
+lin immunization_N = mkN "immunization" "immunizations" ;
+lin immunize_V = mkV "immunize" "immunized" "immunized" ;
+lin immunoassay_N = mkN "immunoassay" "immunoassays" ;
+lin immunochemical_A = mkAMost "immunochemical" "immunochemically" ;
+lin immunochemistry_N = mkN "immunochemistry" "immunochemistries" ;
+lin immunocompetence_N = mkN "immunocompetence" "immunocompetences" ;
+lin immunocompetent_A = mkAMost "immunocompetent" "immunocompetently" ;
+lin immunocompromised_A = mkAMost "immunocompromised" "immunocompromisedly" ;
+lin immunodeficiency_N = mkN "immunodeficiency" "immunodeficiencies" ;
+lin immunodeficient_A = mkAMost "immunodeficient" "immunodeficiently" ;
+lin immunoelectrophoresis_N = mkN "immunoelectrophoresis" "immunoelectrophoresises" ;
+lin immunofluorescence_N = mkN "immunofluorescence" "immunofluorescences" ;
+lin immunogen_N = mkN "immunogen" "immunogens" ;
+lin immunogenic_A = mkAMost "immunogenic" "immunogenicly" ;
+lin immunogenicity_N = mkN "immunogenicity" "immunogenicities" ;
+lin immunoglobulin_N = mkN "immunoglobulin" "immunoglobulins" ;
+lin immunohistochemistry_N = mkN "immunohistochemistry" "immunohistochemistries" ;
+lin immunological_A = mkAMost "immunological" "immunologically" ;
+lin immunologist_N = mkN "immunologist" "immunologists" ;
+lin immunology_N = mkN "immunology" "immunologies" ;
+lin immunopathology_N = mkN "immunopathology" "immunopathologies" ;
+lin immunosuppressant_N = mkN "immunosuppressant" "immunosuppressants" ;
+lin immunosuppressed_A = mkAMost "immunosuppressed" "immunosuppressedly" ;
+lin immunosuppression_N = mkN "immunosuppression" "immunosuppressions" ;
+lin immunosuppressive_A = mkAMost "immunosuppressive" "immunosuppressively" ;
+lin immunotherapeutic_A = mkAMost "immunotherapeutic" "immunotherapeuticly" ;
+lin immunotherapy_N = mkN "immunotherapy" "immunotherapies" ;
+lin immure_V = mkV "immure" "immured" "immured" ;
+lin immutability_N = mkN "immutability" "immutabilities" ;
+lin immutable_A = mkAMost "immutable" "immutably" ;
+lin imp_N = mkN "imp" "imps" ;
+lin impact_N = mkN "impact" "impacts" ;
+lin impact_V = mkV "impact" "impacted" "impacted" ;
+lin impaction_N = mkN "impaction" "impactions" ;
+lin impair_V = mkV "impair" "impaired" "impaired" ;
+lin impairer_N = mkN "impairer" "impairers" ;
+lin impairment_N = mkN "impairment" "impairments" ;
+lin impala_N = mkN "impala" "impalas" ;
+lin impale_V = mkV "impale" "impaled" "impaled" ;
+lin impalement_N = mkN "impalement" "impalements" ;
+lin impalpable_A = mkAMost "impalpable" "impalpably" ;
+lin impanel_V = mkV "impanel" "impanelled" "impanelled" ;
+lin impart_V = mkV "impart" "imparted" "imparted" ;
+lin impartial_A = mkAMost "impartial" "impartially" ;
+lin impartiality_N = mkN "impartiality" "impartialities" ;
+lin impassable_A = mkAMost "impassable" "impassably" ;
+lin impasse_N = mkN "impasse" "impasses" ;
+lin impassioned_A = mkAMost "impassioned" "impassionedly" ;
+lin impassive_A = mkAMost "impassive" "impassively" ;
+lin impassiveness_N = mkN "impassiveness" "impassivenesses" ;
+lin impassivity_N = mkN "impassivity" "impassivities" ;
+lin impasto_N = mkN "impasto" "impastoes" ;
+lin impatience_N = mkN "impatience" "impatiences" ;
+lin impatient_A = mkAMost "impatient" "impatiently" ;
+lin impeach_V = mkV "impeach" "impeached" "impeached" ;
+lin impeachability_N = mkN "impeachability" "impeachabilities" ;
+lin impeachment_N = mkN "impeachment" "impeachments" ;
+lin impeccability_N = mkN "impeccability" "impeccabilities" ;
+lin impeccable_A = mkAMost "impeccable" "impeccably" ;
+lin impeccant_A = mkAMost "impeccant" "impeccantly" ;
+lin impecunious_A = mkAMost "impecunious" "impecuniously" ;
+lin impecuniousness_N = mkN "impecuniousness" "impecuniousnesses" ;
+lin impede_V = mkV "impede" "impeded" "impeded" ;
+lin impediment_N = mkN "impediment" "impediments" ;
+lin impedimenta_N = mkN "impedimenta" "impedimentas" ;
+lin impel_V = mkV "impel" "impelled" "impelled" ;
+lin impellent_A = mkAMost "impellent" "impellently" ;
+lin impeller_N = mkN "impeller" "impellers" ;
+lin impelling_A = mkAMost "impelling" "impellingly" ;
+lin impend_V = mkV "impend" "impended" "impended" ;
+lin impenetrability_N = mkN "impenetrability" "impenetrabilities" ;
+lin impenetrable_A = mkAMost "impenetrable" "impenetrably" ;
+lin impenitence_N = mkN "impenitence" "impenitences" ;
+lin impenitent_A = mkAMost "impenitent" "impenitently" ;
+lin imperative_A = mkAMost "imperative" "imperatively" ;
+lin imperative_N = mkN "imperative" "imperatives" ;
+lin imperativeness_N = mkN "imperativeness" "imperativenesses" ;
+lin imperceptibility_N = mkN "imperceptibility" "imperceptibilities" ;
+lin imperceptible_A = mkAMost "imperceptible" "imperceptibly" ;
+lin imperfect_A = mkAMost "imperfect" "imperfectly" ;
+lin imperfect_N = mkN "imperfect" "IRREG" ;
+lin imperfectibility_N = mkN "imperfectibility" "imperfectibilities" ;
+lin imperfectible_A = mkAMost "imperfectible" "imperfectibly" ;
+lin imperfection_N = mkN "imperfection" "imperfections" ;
+lin imperfective_N = mkN "imperfective" "imperfectives" ;
+lin imperforate_A = mkAMost "imperforate" "imperforately" ;
+lin imperial_A = mkAMost "imperial" "imperially" ;
+lin imperial_N = mkN "imperial" "imperials" ;
+lin imperialism_N = mkN "imperialism" "imperialisms" ;
+lin imperialist_N = mkN "imperialist" "imperialists" ;
+lin imperialistic_A = mkAMost "imperialistic" "imperialisticly" ;
+lin imperil_V = mkV "imperil" "imperilled" "imperilled" ;
+lin imperile_V = mkV "imperile" "imperiled" "imperiled" ;
+lin imperious_A = mkAMost "imperious" "imperiously" ;
+lin imperiousness_N = mkN "imperiousness" "imperiousnesses" ;
+lin imperishability_N = mkN "imperishability" "imperishabilities" ;
+lin imperishable_A = mkAMost "imperishable" "imperishably" ;
+lin imperium_N = mkN "imperium" "imperiums" ;
+lin impermanence_N = mkN "impermanence" "impermanences" ;
+lin impermanent_A = mkAMost "impermanent" "impermanently" ;
+lin impermeability_N = mkN "impermeability" "impermeabilities" ;
+lin impermeable_A = mkAMost "impermeable" "impermeably" ;
+lin impermissibility_N = mkN "impermissibility" "impermissibilities" ;
+lin impermissible_A = mkAMost "impermissible" "impermissibly" ;
+lin impersonal_A = mkAMost "impersonal" "impersonally" ;
+lin impersonate_V = mkV "impersonate" "impersonated" "impersonated" ;
+lin impersonation_N = mkN "impersonation" "impersonations" ;
+lin impersonator_N = mkN "impersonator" "impersonators" ;
+lin impertinence_N = mkN "impertinence" "impertinences" ;
+lin impertinent_A = mkAMost "impertinent" "impertinently" ;
+lin imperturbability_N = mkN "imperturbability" "imperturbabilities" ;
+lin imperturbable_A = mkAMost "imperturbable" "imperturbably" ;
+lin impervious_A = mkAMost "impervious" "imperviously" ;
+lin impetiginous_A = mkAMost "impetiginous" "impetiginously" ;
+lin impetigo_N = mkN "impetigo" "impetigoes" ;
+lin impetuosity_N = mkN "impetuosity" "impetuosities" ;
+lin impetuous_A = mkAMost "impetuous" "impetuously" ;
+lin impetuousness_N = mkN "impetuousness" "impetuousnesses" ;
+lin impetus_N = mkN "impetus" "impeti" ;
+lin impiety_N = mkN "impiety" "impieties" ;
+lin impinge_V = mkV "impinge" "impinged" "impinged" ;
+lin impingement_N = mkN "impingement" "impingements" ;
+lin impious_A = mkAMost "impious" "impiously" ;
+lin impish_A = mkAMost "impish" "impishly" ;
+lin impishness_N = mkN "impishness" "impishnesses" ;
+lin implacable_A = mkAMost "implacable" "implacably" ;
+lin implant_N = mkN "implant" "implants" ;
+lin implant_V = mkV "implant" "implanted" "implanted" ;
+lin implantation_N = mkN "implantation" "implantations" ;
+lin implausibility_N = mkN "implausibility" "implausibilities" ;
+lin implausible_A = mkAMost "implausible" "implausibly" ;
+lin implement_N = mkN "implement" "implements" ;
+lin implement_V = mkV "implement" "implemented" "implemented" ;
+lin implemental_A = mkAMost "implemental" "implementally" ;
+lin implementation_N = mkN "implementation" "implementations" ;
+lin implicate_V = mkV "implicate" "implicated" "implicated" ;
+lin implication_N = mkN "implication" "implications" ;
+lin implicational_A = mkAMost "implicational" "implicationally" ;
+lin implicative_A = mkAMost "implicative" "implicatively" ;
+lin implicit_A = mkAMost "implicit" "implicitly" ;
+lin implicitness_N = mkN "implicitness" "implicitnesses" ;
+lin implore_V = mkV "implore" "implored" "implored" ;
+lin imploringly_Adv = mkAdv "imploringly" ;
+lin implosion_N = mkN "implosion" "implosions" ;
+lin imply_V = mkV "imply" "implied" "implied" ;
+lin impolite_A = mkAMost "impolite" "impolitely" ;
+lin impoliteness_N = mkN "impoliteness" "impolitenesses" ;
+lin impolitic_A = mkAMost "impolitic" "impoliticly" ;
+lin imponderable_A = mkAMost "imponderable" "imponderably" ;
+lin imponderable_N = mkN "imponderable" "imponderables" ;
+lin import_N = mkN "import" "imports" ;
+lin import_V = mkV "import" "imported" "imported" ;
+lin importance_N = mkN "importance" "importances" ;
+lin important_A = mkAMost "important" "importantly" ;
+lin importation_N = mkN "importation" "importations" ;
+lin importer_N = mkN "importer" "importers" ;
+lin importing_N = mkN "importing" "importings" ;
+lin importunate_A = mkAMost "importunate" "importunately" ;
+lin importune_V = mkV "importune" "importuned" "importuned" ;
+lin importunity_N = mkN "importunity" "importunities" ;
+lin impose_V = mkV "impose" "imposed" "imposed" ;
+lin imposition_N = mkN "imposition" "impositions" ;
+lin impossibility_N = mkN "impossibility" "impossibilities" ;
+lin impossible_A = mkAMost "impossible" "impossibly" ;
+lin impossible_N = mkN "impossible" "impossibles" ;
+lin imposter_N = mkN "imposter" "imposters" ;
+lin impostor_N = mkN "impostor" "impostors" ;
+lin imposture_N = mkN "imposture" "impostures" ;
+lin impotence_N = mkN "impotence" "impotences" ;
+lin impotent_A = mkAMost "impotent" "impotently" ;
+lin impound_V = mkV "impound" "impounded" "impounded" ;
+lin impoundment_N = mkN "impoundment" "impoundments" ;
+lin impoverish_V = mkV "impoverish" "impoverished" "impoverished" ;
+lin impoverishment_N = mkN "impoverishment" "impoverishments" ;
+lin impracticability_N = mkN "impracticability" "impracticabilities" ;
+lin impracticable_A = mkAMost "impracticable" "impracticably" ;
+lin impracticableness_N = mkN "impracticableness" "impracticablenesses" ;
+lin impractical_A = mkAMost "impractical" "impractically" ;
+lin impracticality_N = mkN "impracticality" "impracticalities" ;
+lin imprecate_V = mkV "imprecate" "imprecated" "imprecated" ;
+lin imprecation_N = mkN "imprecation" "imprecations" ;
+lin imprecise_A = mkAMost "imprecise" "imprecisely" ;
+lin impreciseness_N = mkN "impreciseness" "imprecisenesses" ;
+lin imprecision_N = mkN "imprecision" "imprecisions" ;
+lin impregnability_N = mkN "impregnability" "impregnabilities" ;
+lin impregnable_A = mkAMost "impregnable" "impregnably" ;
+lin impregnate_V = mkV "impregnate" "impregnated" "impregnated" ;
+lin impregnation_N = mkN "impregnation" "impregnations" ;
+lin impresario_N = mkN "impresario" "impresarios" ;
+lin impress_N = mkN "impress" "impresses" ;
+lin impress_V = mkV "impress" "impressed" "impressed" ;
+lin impression_N = mkN "impression" "impressions" ;
+lin impressionable_A = mkAMost "impressionable" "impressionably" ;
+lin impressionism_N = mkN "impressionism" "impressionisms" ;
+lin impressionist_A = mkAMost "impressionist" "impressionistly" ;
+lin impressionist_N = mkN "impressionist" "impressionists" ;
+lin impressionistic_A = mkAMost "impressionistic" "impressionisticly" ;
+lin impressive_A = mkAMost "impressive" "impressively" ;
+lin impressiveness_N = mkN "impressiveness" "impressivenesses" ;
+lin imprimatur_N = mkN "imprimatur" "imprimaturs" ;
+lin imprint_N = mkN "imprint" "imprints" ;
+lin imprint_V = mkV "imprint" "imprinted" "imprinted" ;
+lin imprinting_N = mkN "imprinting" "imprintings" ;
+lin imprison_V = mkV "imprison" "imprisoned" "imprisoned" ;
+lin imprisonment_N = mkN "imprisonment" "imprisonments" ;
+lin improbability_N = mkN "improbability" "improbabilities" ;
+lin improbable_A = mkAMost "improbable" "improbably" ;
+lin impromptu_A = mkAMost "impromptu" "impromptuly" ;
+lin impromptu_Adv = mkAdv "impromptu" ;
+lin impromptu_N = mkN "impromptu" "impromptus" ;
+lin improper_A = mkAMost "improper" "improperly" ;
+lin impropriety_N = mkN "impropriety" "improprieties" ;
+lin improvable_A = mkAMost "improvable" "improvably" ;
+lin improve_V = mkV "improve" "improved" "improved" ;
+lin improvement_N = mkN "improvement" "improvements" ;
+lin improver_N = mkN "improver" "improvers" ;
+lin improvidence_N = mkN "improvidence" "improvidences" ;
+lin improvident_A = mkAMost "improvident" "improvidently" ;
+lin improvisation_N = mkN "improvisation" "improvisations" ;
+lin improvise_V = mkV "improvise" "improvised" "improvised" ;
+lin imprudence_N = mkN "imprudence" "imprudences" ;
+lin imprudent_A = mkAMost "imprudent" "imprudently" ;
+lin impudence_N = mkN "impudence" "impudences" ;
+lin impudent_A = mkAMost "impudent" "impudently" ;
+lin impugn_V = mkV "impugn" "impugned" "impugned" ;
+lin impugnable_A = mkAMost "impugnable" "impugnably" ;
+lin impuissant_A = mkAMost "impuissant" "impuissantly" ;
+lin impulse_N = mkN "impulse" "impulses" ;
+lin impulse_buy_V = mkV "impulse-buy" "impulse-bought" "impulse-bought" ;
+lin impulsion_N = mkN "impulsion" "impulsions" ;
+lin impulsive_A = mkAMost "impulsive" "impulsively" ;
+lin impulsiveness_N = mkN "impulsiveness" "impulsivenesses" ;
+lin impunity_N = mkN "impunity" "impunities" ;
+lin impure_A = mkAMost "impure" "impurely" ;
+lin impurity_N = mkN "impurity" "impurities" ;
+lin imputation_N = mkN "imputation" "imputations" ;
+lin impute_V = mkV "impute" "imputed" "imputed" ;
+lin imputrescible_A = mkAMost "imputrescible" "imputrescibly" ;
+lin in_A = mkA "in" "inner" "innest" "inly" ;
+lin in_Adv = mkAdv "in" ;
+lin in_N = mkN "in" "ins" ;
+lin in_Prep = mkPrep "in" ;
+lin in_accordance_with_Prep = mkPrep "in accordance with" ;
+lin in_addition_Adv = mkAdv "in addition" ;
+lin in_addition_to_Prep = mkPrep "in addition to" ;
+lin in_case_of_Prep = mkPrep "in case of" ;
+lin in_chief_A = mkAMost "in-chief" "in-chiefly" ;
+lin in_fighting_N = mkN "in-fighting" "in-fightings" ;
+lin in_front_of_Prep = mkPrep "in front of" ;
+lin in_general_Adv = mkAdv "in general" ;
+lin in_lieu_of_Prep = mkPrep "in lieu of" ;
+lin in_loco_parentis_Adv = mkAdv "in loco parentis" ;
+lin in_order_to_Prep = mkPrep "in order to" ;
+lin in_particular_Adv = mkAdv "in particular" ;
+lin in_patient_N = mkN "in-patient" "in-patients" ;
+lin in_place_of_Prep = mkPrep "in place of" ;
+lin in_point_of_Prep = mkPrep "in point of" ;
+lin in_re_Prep = mkPrep "in re" ;
+lin in_service_A = mkAMost "in-service" "in-servicely" ;
+lin in_situ_Adv = mkAdv "in situ" ;
+lin in_spite_of_Prep = mkPrep "in spite of" ;
+lin in_toto_Adv = mkAdv "in toto" ;
+lin in_tray_N = mkN "in-tray" "in-trays" ;
+lin inability_N = mkN "inability" "inabilities" ;
+lin inaccessibility_N = mkN "inaccessibility" "inaccessibilities" ;
+lin inaccessible_A = mkAMost "inaccessible" "inaccessibly" ;
+lin inaccuracy_N = mkN "inaccuracy" "inaccuracies" ;
+lin inaccurate_A = mkAMost "inaccurate" "inaccurately" ;
+lin inaction_N = mkN "inaction" "inactions" ;
+lin inactivate_V = mkV "inactivate" "inactivated" "inactivated" ;
+lin inactivation_N = mkN "inactivation" "inactivations" ;
+lin inactive_A = mkAMost "inactive" "inactively" ;
+lin inactiveness_N = mkN "inactiveness" "inactivenesses" ;
+lin inactivity_N = mkN "inactivity" "inactivities" ;
+lin inadequacy_N = mkN "inadequacy" "inadequacies" ;
+lin inadequate_A = mkAMost "inadequate" "inadequately" ;
+lin inadmissibility_N = mkN "inadmissibility" "inadmissibilities" ;
+lin inadmissible_A = mkAMost "inadmissible" "inadmissibly" ;
+lin inadvertence_N = mkN "inadvertence" "inadvertences" ;
+lin inadvertent_A = mkAMost "inadvertent" "inadvertently" ;
+lin inadvisability_N = mkN "inadvisability" "inadvisabilities" ;
+lin inadvisable_A = mkAMost "inadvisable" "inadvisably" ;
+lin inaesthetic_A = mkAMost "inaesthetic" "inaestheticly" ;
+lin inalienable_A = mkAMost "inalienable" "inalienably" ;
+lin inamorata_N = mkN "inamorata" "inamoratas" ;
+lin inamorato_N = mkN "inamorato" "inamoratoes" ;
+lin inane_A = mkAMost "inane" "inanely" ;
+lin inanimate_A = mkAMost "inanimate" "inanimately" ;
+lin inanimateness_N = mkN "inanimateness" "inanimatenesses" ;
+lin inanition_N = mkN "inanition" "inanitions" ;
+lin inanity_N = mkN "inanity" "inanities" ;
+lin inapplicability_N = mkN "inapplicability" "inapplicabilities" ;
+lin inapplicable_A = mkAMost "inapplicable" "inapplicably" ;
+lin inapposite_A = mkAMost "inapposite" "inappositely" ;
+lin inappreciable_A = mkAMost "inappreciable" "inappreciably" ;
+lin inappropriate_A = mkAMost "inappropriate" "inappropriately" ;
+lin inappropriateness_N = mkN "inappropriateness" "inappropriatenesses" ;
+lin inapt_A = mkAMost "inapt" "inaptly" ;
+lin inaptitude_N = mkN "inaptitude" "inaptitudes" ;
+lin inaptness_N = mkN "inaptness" "inaptnesses" ;
+lin inarguable_A = mkAMost "inarguable" "inarguably" ;
+lin inarticulate_A = mkAMost "inarticulate" "inarticulately" ;
+lin inartistic_A = mkAMost "inartistic" "inartisticly" ;
+lin inasmuch_as_Adv = mkAdv "inasmuch as" ;
+lin inattention_N = mkN "inattention" "inattentions" ;
+lin inattentive_A = mkAMost "inattentive" "inattentively" ;
+lin inattentiveness_N = mkN "inattentiveness" "inattentivenesses" ;
+lin inaudibility_N = mkN "inaudibility" "inaudibilities" ;
+lin inaudible_A = mkAMost "inaudible" "inaudibly" ;
+lin inaugural_A = mkAMost "inaugural" "inaugurally" ;
+lin inaugural_N = mkN "inaugural" "inaugurals" ;
+lin inaugurate_V = mkV "inaugurate" "inaugurated" "inaugurated" ;
+lin inauguration_N = mkN "inauguration" "inaugurations" ;
+lin inauspicious_A = mkAMost "inauspicious" "inauspiciously" ;
+lin inauspiciousness_N = mkN "inauspiciousness" "inauspiciousnesses" ;
+lin inauthentic_A = mkAMost "inauthentic" "inauthenticly" ;
+lin inboard_A = mkAMost "inboard" "inboardly" ;
+lin inborn_A = mkAMost "inborn" "inbornly" ;
+lin inbound_A = mkAMost "inbound" "inboundly" ;
+lin inbred_A = mkAMost "inbred" "inbredly" ;
+lin inbreeding_N = mkN "inbreeding" "inbreedings" ;
+lin inbuilt_A = mkAMost "inbuilt" "inbuiltly" ;
+lin incalculable_A = mkAMost "incalculable" "incalculably" ;
+lin incandescence_N = mkN "incandescence" "incandescences" ;
+lin incandescent_A = mkAMost "incandescent" "incandescently" ;
+lin incantation_N = mkN "incantation" "incantations" ;
+lin incapability_N = mkN "incapability" "incapabilities" ;
+lin incapable_A = mkAMost "incapable" "incapably" ;
+lin incapacitate_V = mkV "incapacitate" "incapacitated" "incapacitated" ;
+lin incapacity_N = mkN "incapacity" "incapacities" ;
+lin incarcerate_V = mkV "incarcerate" "incarcerated" "incarcerated" ;
+lin incarceration_N = mkN "incarceration" "incarcerations" ;
+lin incarnate_A = mkAMost "incarnate" "incarnately" ;
+lin incarnate_V = mkV "incarnate" "incarnated" "incarnated" ;
+lin incarnation_N = mkN "incarnation" "incarnations" ;
+lin incaution_N = mkN "incaution" "incautions" ;
+lin incautious_A = mkAMost "incautious" "incautiously" ;
+lin incendiarism_N = mkN "incendiarism" "incendiarisms" ;
+lin incendiary_A = mkAMost "incendiary" "incendiarily" ;
+lin incendiary_N = mkN "incendiary" "incendiaries" ;
+lin incense_N = mkN "incense" "incenses" ;
+lin incense_V = mkV "incense" "incensed" "incensed" ;
+lin incentive_N = mkN "incentive" "incentives" ;
+lin inception_N = mkN "inception" "inceptions" ;
+lin incertitude_N = mkN "incertitude" "incertitudes" ;
+lin incessant_A = mkAMost "incessant" "incessantly" ;
+lin incest_N = mkN "incest" "incests" ;
+lin incestuous_A = mkAMost "incestuous" "incestuously" ;
+lin inch_N = mkN "inch" "inches" ;
+lin inch_V = mkV "inch" "inched" "inched" ;
+lin inchoate_A = mkAMost "inchoate" "inchoately" ;
+lin inchoative_A = mkAMost "inchoative" "inchoatively" ;
+lin inchoative_N = mkN "inchoative" "inchoatives" ;
+lin incidence_N = mkN "incidence" "incidences" ;
+lin incident_A = mkAMost "incident" "incidently" ;
+lin incident_N = mkN "incident" "incidents" ;
+lin incidental_A = mkAMost "incidental" "incidentally" ;
+lin incidental_N = mkN "incidental" "incidentals" ;
+lin incinerate_V = mkV "incinerate" "incinerated" "incinerated" ;
+lin incineration_N = mkN "incineration" "incinerations" ;
+lin incinerator_N = mkN "incinerator" "incinerators" ;
+lin incipiency_N = mkN "incipiency" "incipiencies" ;
+lin incipient_A = mkAMost "incipient" "incipiently" ;
+lin incise_V = mkV "incise" "incised" "incised" ;
+lin incision_N = mkN "incision" "incisions" ;
+lin incisive_A = mkAMost "incisive" "incisively" ;
+lin incisiveness_N = mkN "incisiveness" "incisivenesses" ;
+lin incisor_N = mkN "incisor" "incisors" ;
+lin incisure_N = mkN "incisure" "incisures" ;
+lin incitation_N = mkN "incitation" "incitations" ;
+lin incite_V = mkV "incite" "incited" "incited" ;
+lin incitement_N = mkN "incitement" "incitements" ;
+lin incivility_N = mkN "incivility" "incivilities" ;
+lin inclemency_N = mkN "inclemency" "inclemencies" ;
+lin inclement_A = mkAMost "inclement" "inclemently" ;
+lin inclination_N = mkN "inclination" "inclinations" ;
+lin incline_N = mkN "incline" "inclines" ;
+lin incline_V = mkV "incline" "inclined" "inclined" ;
+lin inclinometer_N = mkN "inclinometer" "inclinometers" ;
+lin inclose_V = mkV "inclose" "inclosed" "inclosed" ;
+lin inclosure_N = mkN "inclosure" "inclosures" ;
+lin include_V = mkV "include" "included" "included" ;
+lin inclusion_N = mkN "inclusion" "inclusions" ;
+lin inclusive_A = mkAMost "inclusive" "inclusively" ;
+lin incognito_A = mkAMost "incognito" "incognitoly" ;
+lin incognito_Adv = mkAdv "incognito" ;
+lin incognizable_A = mkAMost "incognizable" "incognizably" ;
+lin incognizance_N = mkN "incognizance" "incognizances" ;
+lin incoherence_N = mkN "incoherence" "incoherences" ;
+lin incoherent_A = mkAMost "incoherent" "incoherently" ;
+lin incombustible_A = mkAMost "incombustible" "incombustibly" ;
+lin income_N = mkN "income" "incomes" ;
+lin income_tax_N = mkN "income-tax" "income-taxes" ;
+lin incoming_A = mkAMost "incoming" "incomingly" ;
+lin incommensurable_A = mkAMost "incommensurable" "incommensurably" ;
+lin incommensurate_A = mkAMost "incommensurate" "incommensurately" ;
+lin incommode_V = mkV "incommode" "incommoded" "incommoded" ;
+lin incommodious_A = mkAMost "incommodious" "incommodiously" ;
+lin incommunicado_A = mkAMost "incommunicado" "incommunicadoly" ;
+lin incommutability_N = mkN "incommutability" "incommutabilities" ;
+lin incommutable_A = mkAMost "incommutable" "incommutably" ;
+lin incomparable_A = mkAMost "incomparable" "incomparably" ;
+lin incompatibility_N = mkN "incompatibility" "incompatibilities" ;
+lin incompatible_A = mkAMost "incompatible" "incompatibly" ;
+lin incompetence_N = mkN "incompetence" "incompetences" ;
+lin incompetency_N = mkN "incompetency" "incompetencies" ;
+lin incompetent_A = mkAMost "incompetent" "incompetently" ;
+lin incompetent_N = mkN "incompetent" "incompetents" ;
+lin incomplete_A = mkAMost "incomplete" "incompletely" ;
+lin incompleteness_N = mkN "incompleteness" "incompletenesses" ;
+lin incomprehensibility_N = mkN "incomprehensibility" "incomprehensibilities" ;
+lin incomprehensible_A = mkAMost "incomprehensible" "incomprehensibly" ;
+lin incomprehension_N = mkN "incomprehension" "incomprehensions" ;
+lin incompressibility_N = mkN "incompressibility" "incompressibilities" ;
+lin incompressible_A = mkAMost "incompressible" "incompressibly" ;
+lin incomputable_A = mkAMost "incomputable" "incomputably" ;
+lin inconceivability_N = mkN "inconceivability" "inconceivabilities" ;
+lin inconceivable_A = mkAMost "inconceivable" "inconceivably" ;
+lin inconclusive_A = mkAMost "inconclusive" "inconclusively" ;
+lin inconclusiveness_N = mkN "inconclusiveness" "inconclusivenesses" ;
+lin incongruent_A = mkAMost "incongruent" "incongruently" ;
+lin incongruity_N = mkN "incongruity" "incongruities" ;
+lin incongruous_A = mkAMost "incongruous" "incongruously" ;
+lin inconsequence_N = mkN "inconsequence" "inconsequences" ;
+lin inconsequent_A = mkAMost "inconsequent" "inconsequently" ;
+lin inconsequential_A = mkAMost "inconsequential" "inconsequentially" ;
+lin inconsiderable_A = mkAMost "inconsiderable" "inconsiderably" ;
+lin inconsiderate_A = mkAMost "inconsiderate" "inconsiderately" ;
+lin inconsideration_N = mkN "inconsideration" "inconsiderations" ;
+lin inconsistency_N = mkN "inconsistency" "inconsistencies" ;
+lin inconsistent_A = mkAMost "inconsistent" "inconsistently" ;
+lin inconsolable_A = mkAMost "inconsolable" "inconsolably" ;
+lin inconspicuous_A = mkAMost "inconspicuous" "inconspicuously" ;
+lin inconspicuousness_N = mkN "inconspicuousness" "inconspicuousnesses" ;
+lin inconstancy_N = mkN "inconstancy" "inconstancies" ;
+lin inconstant_A = mkAMost "inconstant" "inconstantly" ;
+lin incontestable_A = mkAMost "incontestable" "incontestably" ;
+lin incontinence_N = mkN "incontinence" "incontinences" ;
+lin incontinent_A = mkAMost "incontinent" "incontinently" ;
+lin incontrovertibility_N = mkN "incontrovertibility" "incontrovertibilities" ;
+lin incontrovertible_A = mkAMost "incontrovertible" "incontrovertibly" ;
+lin inconvenience_N = mkN "inconvenience" "inconveniences" ;
+lin inconvenience_V = mkV "inconvenience" "inconvenienced" "inconvenienced" ;
+lin inconvenient_A = mkAMost "inconvenient" "inconveniently" ;
+lin inconvertibility_N = mkN "inconvertibility" "inconvertibilities" ;
+lin inconvertible_A = mkAMost "inconvertible" "inconvertibly" ;
+lin incoordination_N = mkN "incoordination" "incoordinations" ;
+lin incorporate_A = mkAMost "incorporate" "incorporately" ;
+lin incorporate_V = mkV "incorporate" "incorporated" "incorporated" ;
+lin incorporation_N = mkN "incorporation" "incorporations" ;
+lin incorporative_A = mkAMost "incorporative" "incorporatively" ;
+lin incorporeal_A = mkAMost "incorporeal" "incorporeally" ;
+lin incorrect_A = mkAMost "incorrect" "incorrectly" ;
+lin incorrectness_N = mkN "incorrectness" "incorrectnesses" ;
+lin incorrigible_A = mkAMost "incorrigible" "incorrigibly" ;
+lin incorrupt_A = mkAMost "incorrupt" "incorruptly" ;
+lin incorruptibility_N = mkN "incorruptibility" "incorruptibilities" ;
+lin incorruptible_A = mkAMost "incorruptible" "incorruptibly" ;
+lin incorruptness_N = mkN "incorruptness" "incorruptnesses" ;
+lin increase_N = mkN "increase" "increases" ;
+lin increase_V = mkV "increase" "increased" "increased" ;
+lin increasingly_Adv = mkAdv "increasingly" ;
+lin incredibility_N = mkN "incredibility" "incredibilities" ;
+lin incredible_A = mkAMost "incredible" "incredibly" ;
+lin incredulity_N = mkN "incredulity" "incredulities" ;
+lin incredulous_A = mkAMost "incredulous" "incredulously" ;
+lin increment_N = mkN "increment" "increments" ;
+lin incremental_A = mkAMost "incremental" "incrementally" ;
+lin incriminate_V = mkV "incriminate" "incriminated" "incriminated" ;
+lin incriminatingly_Adv = mkAdv "incriminatingly" ;
+lin incrimination_N = mkN "incrimination" "incriminations" ;
+lin incrustation_N = mkN "incrustation" "incrustations" ;
+lin incubate_V = mkV "incubate" "incubated" "incubated" ;
+lin incubation_N = mkN "incubation" "incubations" ;
+lin incubator_N = mkN "incubator" "incubators" ;
+lin incubus_N = mkN "incubus" "incubuses" ;
+lin inculcate_V = mkV "inculcate" "inculcated" "inculcated" ;
+lin inculcation_N = mkN "inculcation" "inculcations" ;
+lin inculpate_V = mkV "inculpate" "inculpated" "inculpated" ;
+lin inculpatory_A = mkAMost "inculpatory" "inculpatorily" ;
+lin incumbency_N = mkN "incumbency" "incumbencies" ;
+lin incumbent_A = mkAMost "incumbent" "incumbently" ;
+lin incumbent_N = mkN "incumbent" "incumbents" ;
+lin incur_V = mkV "incur" "incurred" "incurred" ;
+lin incurability_N = mkN "incurability" "incurabilities" ;
+lin incurable_A = mkAMost "incurable" "incurably" ;
+lin incurable_N = mkN "incurable" "incurables" ;
+lin incurious_A = mkAMost "incurious" "incuriously" ;
+lin incurrence_N = mkN "incurrence" "incurrences" ;
+lin incurring_N = mkN "incurring" "incurrings" ;
+lin incursion_N = mkN "incursion" "incursions" ;
+lin incursive_A = mkAMost "incursive" "incursively" ;
+lin incurvate_A = mkAMost "incurvate" "incurvately" ;
+lin incurvation_N = mkN "incurvation" "incurvations" ;
+lin incurved_A = mkAMost "incurved" "incurvedly" ;
+lin incus_N = mkN "incus" "incuses" ;
+lin indaba_N = mkN "indaba" "indabas" ;
+lin indapamide_N = mkN "indapamide" "indapamides" ;
+lin indebted_A = mkAMost "indebted" "indebtedly" ;
+lin indebtedness_N = mkN "indebtedness" "indebtednesses" ;
+lin indecency_N = mkN "indecency" "indecencies" ;
+lin indecent_A = mkAMost "indecent" "indecently" ;
+lin indecipherable_A = mkAMost "indecipherable" "indecipherably" ;
+lin indecision_N = mkN "indecision" "indecisions" ;
+lin indecisive_A = mkAMost "indecisive" "indecisively" ;
+lin indecisiveness_N = mkN "indecisiveness" "indecisivenesses" ;
+lin indecorous_A = mkAMost "indecorous" "indecorously" ;
+lin indecorum_N = mkN "indecorum" "indecorums" ;
+lin indeed_Adv = mkAdv "indeed" ;
+lin indefatigability_N = mkN "indefatigability" "indefatigabilities" ;
+lin indefatigable_A = mkAMost "indefatigable" "indefatigably" ;
+lin indefeasible_A = mkAMost "indefeasible" "indefeasibly" ;
+lin indefensible_A = mkAMost "indefensible" "indefensibly" ;
+lin indefinable_A = mkAMost "indefinable" "indefinably" ;
+lin indefinite_A = mkAMost "indefinite" "indefinitely" ;
+lin indefiniteness_N = mkN "indefiniteness" "indefinitenesses" ;
+lin indehiscent_A = mkAMost "indehiscent" "indehiscently" ;
+lin indelible_A = mkAMost "indelible" "indelibly" ;
+lin indelicacy_N = mkN "indelicacy" "indelicacies" ;
+lin indelicate_A = mkAMost "indelicate" "indelicately" ;
+lin indemnification_N = mkN "indemnification" "indemnifications" ;
+lin indemnify_V = mkV "indemnify" "indemnified" "indemnified" ;
+lin indemnity_N = mkN "indemnity" "indemnities" ;
+lin indene_N = mkN "indene" "indenes" ;
+lin indent_N = mkN "indent" "indents" ;
+lin indent_V = mkV "indent" "indented" "indented" ;
+lin indentation_N = mkN "indentation" "indentations" ;
+lin indenture_N = mkN "indenture" "indentures" ;
+lin indenture_V = mkV "indenture" "indentured" "indentured" ;
+lin independence_N = mkN "independence" "independences" ;
+lin independent_A = mkAMost "independent" "independently" ;
+lin independent_N = mkN "independent" "independents" ;
+lin indescribable_A = mkAMost "indescribable" "indescribably" ;
+lin indestructibility_N = mkN "indestructibility" "indestructibilities" ;
+lin indestructible_A = mkAMost "indestructible" "indestructibly" ;
+lin indeterminable_A = mkAMost "indeterminable" "indeterminably" ;
+lin indeterminacy_N = mkN "indeterminacy" "indeterminacies" ;
+lin indeterminate_A = mkAMost "indeterminate" "indeterminately" ;
+lin index_N = mkN "index" "indexes" ;
+lin index_V = mkV "index" "indexed" "indexed" ;
+lin indexation_N = mkN "indexation" "indexations" ;
+lin indexer_N = mkN "indexer" "indexers" ;
+lin indexical_A = mkAMost "indexical" "indexically" ;
+lin indexing_N = mkN "indexing" "indexings" ;
+lin indexless_A = mkAMost "indexless" "indexlessly" ;
+lin india_rubber_N = mkN "india-rubber" "india-rubbers" ;
+lin indiaman_N = mkN "indiaman" "indiamen" ;
+lin indicate_V = mkV "indicate" "indicated" "indicated" ;
+lin indication_N = mkN "indication" "indications" ;
+lin indicative_A = mkAMost "indicative" "indicatively" ;
+lin indicator_N = mkN "indicator" "indicators" ;
+lin indict_V = mkV "indict" "indicted" "indicted" ;
+lin indictable_A = mkAMost "indictable" "indictably" ;
+lin indiction_N = mkN "indiction" "indictions" ;
+lin indictment_N = mkN "indictment" "indictments" ;
+lin indie_A = mkAMost "indie" "indiely" ;
+lin indie_N = mkN "indie" "indies" ;
+lin indifference_N = mkN "indifference" "indifferences" ;
+lin indifferent_A = mkAMost "indifferent" "indifferently" ;
+lin indigence_N = mkN "indigence" "indigences" ;
+lin indigenous_A = mkAMost "indigenous" "indigenously" ;
+lin indigenousness_N = mkN "indigenousness" "indigenousnesses" ;
+lin indigent_A = mkAMost "indigent" "indigently" ;
+lin indigestibility_N = mkN "indigestibility" "indigestibilities" ;
+lin indigestible_A = mkAMost "indigestible" "indigestibly" ;
+lin indigestion_N = mkN "indigestion" "indigestions" ;
+lin indignant_A = mkAMost "indignant" "indignantly" ;
+lin indignation_N = mkN "indignation" "indignations" ;
+lin indignity_N = mkN "indignity" "indignities" ;
+lin indigo_A = mkAMost "indigo" "indigoly" ;
+lin indigo_N = mkN "indigo" "indigoes" ;
+lin indinavir_N = mkN "indinavir" "indinavirs" ;
+lin indirect_A = mkAMost "indirect" "indirectly" ;
+lin indirection_N = mkN "indirection" "indirections" ;
+lin indirectness_N = mkN "indirectness" "indirectnesses" ;
+lin indiscernible_A = mkAMost "indiscernible" "indiscernibly" ;
+lin indiscipline_N = mkN "indiscipline" "indisciplines" ;
+lin indiscreet_A = mkAMost "indiscreet" "indiscreetly" ;
+lin indiscrete_A = mkAMost "indiscrete" "indiscretely" ;
+lin indiscretion_N = mkN "indiscretion" "indiscretions" ;
+lin indiscriminate_A = mkAMost "indiscriminate" "indiscriminately" ;
+lin indispensability_N = mkN "indispensability" "indispensabilities" ;
+lin indispensable_A = mkAMost "indispensable" "indispensably" ;
+lin indisposed_A = mkAMost "indisposed" "indisposedly" ;
+lin indisposition_N = mkN "indisposition" "indispositions" ;
+lin indisputability_N = mkN "indisputability" "indisputabilities" ;
+lin indisputable_A = mkAMost "indisputable" "indisputably" ;
+lin indissoluble_A = mkAMost "indissoluble" "indissolubly" ;
+lin indistinct_A = mkAMost "indistinct" "indistinctly" ;
+lin indistinctness_N = mkN "indistinctness" "indistinctnesses" ;
+lin indistinguishable_A = mkAMost "indistinguishable" "indistinguishably" ;
+lin indite_V = mkV "indite" "indited" "indited" ;
+lin indium_N = mkN "indium" "indiums" ;
+lin individual_A = mkAMost "individual" "individually" ;
+lin individual_N = mkN "individual" "individuals" ;
+lin individualism_N = mkN "individualism" "individualisms" ;
+lin individualist_A = mkAMost "individualist" "individualistly" ;
+lin individualist_N = mkN "individualist" "individualists" ;
+lin individualistic_A = mkAMost "individualistic" "individualisticly" ;
+lin individualistically_Adv = mkAdv "individualistically" ;
+lin individuality_N = mkN "individuality" "individualities" ;
+lin individualization_N = mkN "individualization" "individualizations" ;
+lin individualize_V = mkV "individualize" "individualized" "individualized" ;
+lin indivisible_A = mkAMost "indivisible" "indivisibly" ;
+lin indo_european_A = mkAMost "indo-european" "indo-europeanly" ;
+lin indocile_A = mkAMost "indocile" "indocilely" ;
+lin indoctrinate_V = mkV "indoctrinate" "indoctrinated" "indoctrinated" ;
+lin indoctrination_N = mkN "indoctrination" "indoctrinations" ;
+lin indolence_N = mkN "indolence" "indolences" ;
+lin indolent_A = mkAMost "indolent" "indolently" ;
+lin indomethacin_N = mkN "indomethacin" "indomethacins" ;
+lin indomitability_N = mkN "indomitability" "indomitabilities" ;
+lin indomitable_A = mkAMost "indomitable" "indomitably" ;
+lin indonesian_A = mkAMost "indonesian" "indonesianly" ;
+lin indonesian_N = mkN "indonesian" "indonesians" ;
+lin indoor_A = mkAMost "indoor" "indoorly" ;
+lin indoors_Adv = mkAdv "indoors" ;
+lin indorse_V = mkV "indorse" "indorsed" "indorsed" ;
+lin indrawn_A = mkAMost "indrawn" "indrawnly" ;
+lin indri_N = mkN "indri" "indris" ;
+lin indubitable_A = mkAMost "indubitable" "indubitably" ;
+lin induce_V = mkV "induce" "induced" "induced" ;
+lin inducement_N = mkN "inducement" "inducements" ;
+lin inducer_N = mkN "inducer" "inducers" ;
+lin induct_V = mkV "induct" "inducted" "inducted" ;
+lin inductee_N = mkN "inductee" "inductees" ;
+lin induction_N = mkN "induction" "inductions" ;
+lin inductive_A = mkAMost "inductive" "inductively" ;
+lin inductor_N = mkN "inductor" "inductors" ;
+lin indue_V = mkV "indue" "indued" "indued" ;
+lin indulge_V = mkV "indulge" "indulged" "indulged" ;
+lin indulgence_N = mkN "indulgence" "indulgences" ;
+lin indulgent_A = mkAMost "indulgent" "indulgently" ;
+lin indumentum_N = mkN "indumentum" "indumentums" ;
+lin indusial_A = mkAMost "indusial" "indusially" ;
+lin indusium_N = mkN "indusium" "indusiums" ;
+lin industrial_A = mkAMost "industrial" "industrially" ;
+lin industrialisation_N = mkN "industrialisation" "industrialisations" ;
+lin industrialism_N = mkN "industrialism" "industrialisms" ;
+lin industrialist_N = mkN "industrialist" "industrialists" ;
+lin industrialization_N = mkN "industrialization" "industrializations" ;
+lin industrialize_V = mkV "industrialize" "industrialized" "industrialized" ;
+lin industrious_A = mkAMost "industrious" "industriously" ;
+lin industry_N = mkN "industry" "industries" ;
+lin indweller_N = mkN "indweller" "indwellers" ;
+lin indwelling_A = mkAMost "indwelling" "indwellingly" ;
+lin inebriate_A = mkAMost "inebriate" "inebriately" ;
+lin inebriate_N = mkN "inebriate" "inebriates" ;
+lin inebriate_V = mkV "inebriate" "inebriated" "inebriated" ;
+lin inebriation_N = mkN "inebriation" "inebriations" ;
+lin inebriety_N = mkN "inebriety" "inebrieties" ;
+lin inedible_A = mkAMost "inedible" "inedibly" ;
+lin ineffable_A = mkAMost "ineffable" "ineffably" ;
+lin ineffective_A = mkAMost "ineffective" "ineffectively" ;
+lin ineffectiveness_N = mkN "ineffectiveness" "ineffectivenesses" ;
+lin ineffectual_A = mkAMost "ineffectual" "ineffectually" ;
+lin ineffectuality_N = mkN "ineffectuality" "ineffectualities" ;
+lin inefficacious_A = mkAMost "inefficacious" "inefficaciously" ;
+lin inefficacy_N = mkN "inefficacy" "inefficacies" ;
+lin inefficiency_N = mkN "inefficiency" "inefficiencies" ;
+lin inefficient_A = mkAMost "inefficient" "inefficiently" ;
+lin inelaborate_A = mkAMost "inelaborate" "inelaborately" ;
+lin inelastic_A = mkAMost "inelastic" "inelasticly" ;
+lin inelasticity_N = mkN "inelasticity" "inelasticities" ;
+lin inelegance_N = mkN "inelegance" "inelegances" ;
+lin inelegant_A = mkAMost "inelegant" "inelegantly" ;
+lin ineligibility_N = mkN "ineligibility" "ineligibilities" ;
+lin ineligible_A = mkAMost "ineligible" "ineligibly" ;
+lin ineloquently_Adv = mkAdv "ineloquently" ;
+lin ineluctability_N = mkN "ineluctability" "ineluctabilities" ;
+lin ineluctable_A = mkAMost "ineluctable" "ineluctably" ;
+lin inept_A = mkAMost "inept" "ineptly" ;
+lin ineptitude_N = mkN "ineptitude" "ineptitudes" ;
+lin inequality_N = mkN "inequality" "inequalities" ;
+lin inequitable_A = mkAMost "inequitable" "inequitably" ;
+lin inequity_N = mkN "inequity" "inequities" ;
+lin ineradicable_A = mkAMost "ineradicable" "ineradicably" ;
+lin inerrable_A = mkAMost "inerrable" "inerrably" ;
+lin inerrancy_N = mkN "inerrancy" "inerrancies" ;
+lin inert_A = mkAMost "inert" "inertly" ;
+lin inertia_N = mkN "inertia" "inertias" ;
+lin inertial_A = mkAMost "inertial" "inertially" ;
+lin inertness_N = mkN "inertness" "inertnesses" ;
+lin inescapable_A = mkAMost "inescapable" "inescapably" ;
+lin inessential_A = mkAMost "inessential" "inessentially" ;
+lin inessential_N = mkN "inessential" "inessentials" ;
+lin inessentiality_N = mkN "inessentiality" "inessentialities" ;
+lin inestimable_A = mkAMost "inestimable" "inestimably" ;
+lin inevitability_N = mkN "inevitability" "inevitabilities" ;
+lin inevitable_A = mkAMost "inevitable" "inevitably" ;
+lin inevitable_N = mkN "inevitable" "inevitables" ;
+lin inexact_A = mkAMost "inexact" "inexactly" ;
+lin inexactitude_N = mkN "inexactitude" "inexactitudes" ;
+lin inexactness_N = mkN "inexactness" "inexactnesses" ;
+lin inexcusable_A = mkAMost "inexcusable" "inexcusably" ;
+lin inexhaustible_A = mkAMost "inexhaustible" "inexhaustibly" ;
+lin inexorable_A = mkAMost "inexorable" "inexorably" ;
+lin inexpedience_N = mkN "inexpedience" "inexpediences" ;
+lin inexpediency_N = mkN "inexpediency" "inexpediencies" ;
+lin inexpedient_A = mkAMost "inexpedient" "inexpediently" ;
+lin inexpensive_A = mkAMost "inexpensive" "inexpensively" ;
+lin inexpensiveness_N = mkN "inexpensiveness" "inexpensivenesses" ;
+lin inexperience_N = mkN "inexperience" "inexperiences" ;
+lin inexperienced_A = mkAMost "inexperienced" "inexperiencedly" ;
+lin inexpert_A = mkAMost "inexpert" "inexpertly" ;
+lin inexpiable_A = mkAMost "inexpiable" "inexpiably" ;
+lin inexplicable_A = mkAMost "inexplicable" "inexplicably" ;
+lin inexplicitness_N = mkN "inexplicitness" "inexplicitnesses" ;
+lin inexpressible_A = mkAMost "inexpressible" "inexpressibly" ;
+lin inexpressive_A = mkAMost "inexpressive" "inexpressively" ;
+lin inexpungible_A = mkAMost "inexpungible" "inexpungibly" ;
+lin inexterminable_A = mkAMost "inexterminable" "inexterminably" ;
+lin inextinguishable_A = mkAMost "inextinguishable" "inextinguishably" ;
+lin inextricable_A = mkAMost "inextricable" "inextricably" ;
+lin infallibility_N = mkN "infallibility" "infallibilities" ;
+lin infallible_A = mkAMost "infallible" "infallibly" ;
+lin infamous_A = mkAMost "infamous" "infamously" ;
+lin infamy_N = mkN "infamy" "infamies" ;
+lin infancy_N = mkN "infancy" "infancies" ;
+lin infant_N = mkN "infant" "infants" ;
+lin infanticide_N = mkN "infanticide" "infanticides" ;
+lin infantile_A = mkAMost "infantile" "infantilely" ;
+lin infantilism_N = mkN "infantilism" "infantilisms" ;
+lin infantry_N = mkN "infantry" "infantries" ;
+lin infantryman_N = mkN "infantryman" "infantrymen" ;
+lin infarct_N = mkN "infarct" "infarcts" ;
+lin infatuate_V = mkV "infatuate" "infatuated" "infatuated" ;
+lin infatuation_N = mkN "infatuation" "infatuations" ;
+lin infeasibility_N = mkN "infeasibility" "infeasibilities" ;
+lin infect_V = mkV "infect" "infected" "infected" ;
+lin infection_N = mkN "infection" "infections" ;
+lin infectious_A = mkAMost "infectious" "infectiously" ;
+lin infective_A = mkAMost "infective" "infectively" ;
+lin infelicitous_A = mkAMost "infelicitous" "infelicitously" ;
+lin infelicity_N = mkN "infelicity" "infelicities" ;
+lin infer_V = mkV "infer" "inferred" "inferred" ;
+lin inference_N = mkN "inference" "inferences" ;
+lin inferential_A = mkAMost "inferential" "inferentially" ;
+lin inferior_A = mkAMost "inferior" "inferiorly" ;
+lin inferior_N = mkN "inferior" "inferiors" ;
+lin inferiority_N = mkN "inferiority" "inferiorities" ;
+lin infernal_A = mkAMost "infernal" "infernally" ;
+lin infernal_N = mkN "infernal" "infernals" ;
+lin inferno_N = mkN "inferno" "infernos" ;
+lin infertile_A = mkAMost "infertile" "infertilely" ;
+lin infertility_N = mkN "infertility" "infertilities" ;
+lin infest_V = mkV "infest" "infested" "infested" ;
+lin infestation_N = mkN "infestation" "infestations" ;
+lin infidel_N = mkN "infidel" "infidels" ;
+lin infidelity_N = mkN "infidelity" "infidelities" ;
+lin infield_N = mkN "infield" "infields" ;
+lin infielder_N = mkN "infielder" "infielders" ;
+lin infiltrate_V = mkV "infiltrate" "infiltrated" "infiltrated" ;
+lin infiltration_N = mkN "infiltration" "infiltrations" ;
+lin infiltrator_N = mkN "infiltrator" "infiltrators" ;
+lin infinite_A = mkAMost "infinite" "infinitely" ;
+lin infiniteness_N = mkN "infiniteness" "infinitenesses" ;
+lin infinitesimal_A = mkAMost "infinitesimal" "infinitesimally" ;
+lin infinitesimal_N = mkN "infinitesimal" "infinitesimals" ;
+lin infinitival_A = mkAMost "infinitival" "infinitivally" ;
+lin infinitive_A = mkAMost "infinitive" "infinitively" ;
+lin infinitive_N = mkN "infinitive" "infinitives" ;
+lin infinitude_N = mkN "infinitude" "infinitudes" ;
+lin infinity_N = mkN "infinity" "infinities" ;
+lin infirm_A = mkAMost "infirm" "infirmly" ;
+lin infirmary_N = mkN "infirmary" "infirmaries" ;
+lin infirmity_N = mkN "infirmity" "infirmities" ;
+lin infix_N = mkN "infix" "infixes" ;
+lin inflame_V = mkV "inflame" "inflamed" "inflamed" ;
+lin inflammable_A = mkAMost "inflammable" "inflammably" ;
+lin inflammation_N = mkN "inflammation" "inflammations" ;
+lin inflammatory_A = mkAMost "inflammatory" "inflammatorily" ;
+lin inflatable_A = mkAMost "inflatable" "inflatably" ;
+lin inflate_V = mkV "inflate" "inflated" "inflated" ;
+lin inflater_N = mkN "inflater" "inflaters" ;
+lin inflation_N = mkN "inflation" "inflations" ;
+lin inflationary_A = mkAMost "inflationary" "inflationarily" ;
+lin inflect_V = mkV "inflect" "inflected" "inflected" ;
+lin inflection_N = mkN "inflection" "inflections" ;
+lin inflectional_A = mkAMost "inflectional" "inflectionally" ;
+lin inflexibility_N = mkN "inflexibility" "inflexibilities" ;
+lin inflexible_A = mkAMost "inflexible" "inflexibly" ;
+lin inflexion_N = mkN "inflexion" "inflexions" ;
+lin inflict_V = mkV "inflict" "inflicted" "inflicted" ;
+lin infliction_N = mkN "infliction" "inflictions" ;
+lin infliximab_N = mkN "infliximab" "infliximabs" ;
+lin inflorescence_N = mkN "inflorescence" "inflorescences" ;
+lin inflow_N = mkN "inflow" "inflows" ;
+lin inflowing_A = mkAMost "inflowing" "inflowingly" ;
+lin influence_N = mkN "influence" "influences" ;
+lin influence_V = mkV "influence" "influenced" "influenced" ;
+lin influential_A = mkAMost "influential" "influentially" ;
+lin influenza_N = mkN "influenza" "influenzas" ;
+lin influx_N = mkN "influx" "influxes" ;
+lin info_N = mkN "info" "infoes" ;
+lin infomercial_N = mkN "infomercial" "infomercials" ;
+lin inform_V = mkV "inform" "informed" "informed" ;
+lin informal_A = mkAMost "informal" "informally" ;
+lin informality_N = mkN "informality" "informalities" ;
+lin informant_N = mkN "informant" "informants" ;
+lin information_N = mkN "information" "informations" ;
+lin informational_A = mkAMost "informational" "informationally" ;
+lin informative_A = mkAMost "informative" "informatively" ;
+lin informer_N = mkN "informer" "informers" ;
+lin informing_N = mkN "informing" "informings" ;
+lin infra_Adv = mkAdv "infra" ;
+lin infra_dig_A = mkAMost "infra dig" "infra digly" ;
+lin infra_red_A = mkAMost "infra-red" "infra-redly" ;
+lin infraction_N = mkN "infraction" "infractions" ;
+lin infrahuman_A = mkAMost "infrahuman" "infrahumanly" ;
+lin infrangible_A = mkAMost "infrangible" "infrangibly" ;
+lin infrared_A = mkAMost "infrared" "infraredly" ;
+lin infrared_N = mkN "infrared" "infrareds" ;
+lin infrasonic_A = mkAMost "infrasonic" "infrasonicly" ;
+lin infrastructure_N = mkN "infrastructure" "infrastructures" ;
+lin infrequency_N = mkN "infrequency" "infrequencies" ;
+lin infrequent_A = mkAMost "infrequent" "infrequently" ;
+lin infringe_V = mkV "infringe" "infringed" "infringed" ;
+lin infringement_N = mkN "infringement" "infringements" ;
+lin infructescence_N = mkN "infructescence" "infructescences" ;
+lin infundibulum_N = mkN "infundibulum" "infundibulums" ;
+lin infuriate_V = mkV "infuriate" "infuriated" "infuriated" ;
+lin infuriation_N = mkN "infuriation" "infuriations" ;
+lin infuse_V = mkV "infuse" "infused" "infused" ;
+lin infusion_N = mkN "infusion" "infusions" ;
+lin infusorian_N = mkN "infusorian" "infusorians" ;
+lin inga_N = mkN "inga" "ingas" ;
+lin ingathering_N = mkN "ingathering" "ingatherings" ;
+lin ingenious_A = mkAMost "ingenious" "ingeniously" ;
+lin ingenuity_N = mkN "ingenuity" "ingenuities" ;
+lin ingenuous_A = mkAMost "ingenuous" "ingenuously" ;
+lin ingenuousness_N = mkN "ingenuousness" "ingenuousnesses" ;
+lin ingest_V = mkV "ingest" "ingested" "ingested" ;
+lin ingesta_N = mkN "ingesta" "ingestas" ;
+lin ingle_nook_N = mkN "ingle-nook" "ingle-nooks" ;
+lin inglorious_A = mkAMost "inglorious" "ingloriously" ;
+lin ingoing_A = mkAMost "ingoing" "ingoingly" ;
+lin ingot_N = mkN "ingot" "ingots" ;
+lin ingraft_V = mkV "ingraft" "ingrafted" "ingrafted" ;
+lin ingrained_A = mkAMost "ingrained" "ingrainedly" ;
+lin ingrate_N = mkN "ingrate" "ingrates" ;
+lin ingratiate_V = mkV "ingratiate" "ingratiated" "ingratiated" ;
+lin ingratiating_A = mkAMost "ingratiating" "ingratiatingly" ;
+lin ingratiation_N = mkN "ingratiation" "ingratiations" ;
+lin ingratitude_N = mkN "ingratitude" "ingratitudes" ;
+lin ingredient_N = mkN "ingredient" "ingredients" ;
+lin ingress_N = mkN "ingress" "ingresses" ;
+lin ingrowing_A = mkAMost "ingrowing" "ingrowingly" ;
+lin ingrowth_N = mkN "ingrowth" "ingrowths" ;
+lin inguinal_A = mkAMost "inguinal" "inguinally" ;
+lin ingénue_N = mkN "ingénue" "ingénues" ;
+lin inhabit_V = mkV "inhabit" "inhabited" "inhabited" ;
+lin inhabitable_A = mkAMost "inhabitable" "inhabitably" ;
+lin inhabitancy_N = mkN "inhabitancy" "inhabitancies" ;
+lin inhabitant_N = mkN "inhabitant" "inhabitants" ;
+lin inhalant_A = mkAMost "inhalant" "inhalantly" ;
+lin inhalant_N = mkN "inhalant" "inhalants" ;
+lin inhalation_N = mkN "inhalation" "inhalations" ;
+lin inhale_V = mkV "inhale" "inhaled" "inhaled" ;
+lin inhaler_N = mkN "inhaler" "inhalers" ;
+lin inharmonious_A = mkAMost "inharmonious" "inharmoniously" ;
+lin inherence_N = mkN "inherence" "inherences" ;
+lin inherent_A = mkAMost "inherent" "inherently" ;
+lin inherit_V = mkV "inherit" "inherited" "inherited" ;
+lin inheritable_A = mkAMost "inheritable" "inheritably" ;
+lin inheritance_N = mkN "inheritance" "inheritances" ;
+lin inheritor_N = mkN "inheritor" "inheritors" ;
+lin inhibit_V = mkV "inhibit" "inhibited" "inhibited" ;
+lin inhibition_N = mkN "inhibition" "inhibitions" ;
+lin inhibitor_N = mkN "inhibitor" "inhibitors" ;
+lin inhibitory_A = mkAMost "inhibitory" "inhibitorily" ;
+lin inhomogeneity_N = mkN "inhomogeneity" "inhomogeneities" ;
+lin inhomogeneous_A = mkAMost "inhomogeneous" "inhomogeneously" ;
+lin inhospitable_A = mkAMost "inhospitable" "inhospitably" ;
+lin inhospitableness_N = mkN "inhospitableness" "inhospitablenesses" ;
+lin inhospitality_N = mkN "inhospitality" "inhospitalities" ;
+lin inhuman_A = mkAMost "inhuman" "inhumanly" ;
+lin inhumane_A = mkAMost "inhumane" "inhumanely" ;
+lin inhumaneness_N = mkN "inhumaneness" "inhumanenesses" ;
+lin inhumanity_N = mkN "inhumanity" "inhumanities" ;
+lin inimical_A = mkAMost "inimical" "inimically" ;
+lin inimitable_A = mkAMost "inimitable" "inimitably" ;
+lin inion_N = mkN "inion" "inions" ;
+lin iniquitous_A = mkAMost "iniquitous" "iniquitously" ;
+lin iniquity_N = mkN "iniquity" "iniquities" ;
+lin initial_A = mkAMost "initial" "initially" ;
+lin initial_N = mkN "initial" "initials" ;
+lin initial_V = mkV "initial" "initialled" "initialled" ;
+lin initiate_A = mkAMost "initiate" "initiately" ;
+lin initiate_N = mkN "initiate" "initiates" ;
+lin initiate_V = mkV "initiate" "initiated" "initiated" ;
+lin initiation_N = mkN "initiation" "initiations" ;
+lin initiative_N = mkN "initiative" "initiatives" ;
+lin inject_V = mkV "inject" "injected" "injected" ;
+lin injectable_A = mkAMost "injectable" "injectably" ;
+lin injection_N = mkN "injection" "injections" ;
+lin injector_N = mkN "injector" "injectors" ;
+lin injudicious_A = mkAMost "injudicious" "injudiciously" ;
+lin injudiciousness_N = mkN "injudiciousness" "injudiciousnesses" ;
+lin injunction_N = mkN "injunction" "injunctions" ;
+lin injure_V = mkV "injure" "injured" "injured" ;
+lin injurious_A = mkAMost "injurious" "injuriously" ;
+lin injury_N = mkN "injury" "injuries" ;
+lin injustice_N = mkN "injustice" "injustices" ;
+lin ink_N = mkN "ink" "inks" ;
+lin ink_V = mkV "ink" "inked" "inked" ;
+lin ink_bottle_N = mkN "ink-bottle" "ink-bottles" ;
+lin ink_pad_N = mkN "ink-pad" "ink-pads" ;
+lin ink_pot_N = mkN "ink-pot" "ink-pots" ;
+lin inkberry_N = mkN "inkberry" "inkberries" ;
+lin inkblot_N = mkN "inkblot" "inkblots" ;
+lin inkle_N = mkN "inkle" "inkles" ;
+lin inkling_N = mkN "inkling" "inklings" ;
+lin inkstand_N = mkN "inkstand" "inkstands" ;
+lin inkwell_N = mkN "inkwell" "inkwells" ;
+lin inky_A = mkA "inky" "inkier" "inkiest" "inkily" ;
+lin inland_A = mkAMost "inland" "inlandly" ;
+lin inland_Adv = mkAdv "inland" ;
+lin inlay_N = mkN "inlay" "inlays" ;
+lin inlay_V = mkV "inlay" "inlaid" "inlaid" ;
+lin inlet_N = mkN "inlet" "inlets" ;
+lin inmate_N = mkN "inmate" "inmates" ;
+lin inmost_A = mkAMost "inmost" "inmostly" ;
+lin inn_N = mkN "inn" "inns" ;
+lin innate_A = mkAMost "innate" "innately" ;
+lin innateness_N = mkN "innateness" "innatenesses" ;
+lin inner_A = mkAMost "inner" "innerly" ;
+lin innermost_A = mkAMost "innermost" "innermostly" ;
+lin innervation_N = mkN "innervation" "innervations" ;
+lin inning_N = mkN "inning" "innings" ;
+lin innings_N = mkN "innings" "innings" ;
+lin innkeeper_N = mkN "innkeeper" "innkeepers" ;
+lin innocence_N = mkN "innocence" "innocences" ;
+lin innocency_N = mkN "innocency" "innocencies" ;
+lin innocent_A = mkAMost "innocent" "innocently" ;
+lin innocent_N = mkN "innocent" "innocents" ;
+lin innocuous_A = mkAMost "innocuous" "innocuously" ;
+lin innovate_V = mkV "innovate" "innovated" "innovated" ;
+lin innovation_N = mkN "innovation" "innovations" ;
+lin innovative_A = mkAMost "innovative" "innovatively" ;
+lin innovativeness_N = mkN "innovativeness" "innovativenesses" ;
+lin innovator_N = mkN "innovator" "innovators" ;
+lin innoxious_A = mkAMost "innoxious" "innoxiously" ;
+lin innuendo_N = mkN "innuendo" "innuendoes" ;
+lin innumerable_A = mkAMost "innumerable" "innumerably" ;
+lin innumerableness_N = mkN "innumerableness" "innumerablenesses" ;
+lin innumerate_A = mkAMost "innumerate" "innumerately" ;
+lin inoculant_N = mkN "inoculant" "inoculants" ;
+lin inoculate_V = mkV "inoculate" "inoculated" "inoculated" ;
+lin inoculating_N = mkN "inoculating" "inoculatings" ;
+lin inoculation_N = mkN "inoculation" "inoculations" ;
+lin inoculator_N = mkN "inoculator" "inoculators" ;
+lin inoffensive_A = mkAMost "inoffensive" "inoffensively" ;
+lin inoperable_A = mkAMost "inoperable" "inoperably" ;
+lin inoperative_A = mkAMost "inoperative" "inoperatively" ;
+lin inopportune_A = mkAMost "inopportune" "inopportunely" ;
+lin inopportuneness_N = mkN "inopportuneness" "inopportunenesses" ;
+lin inordinate_A = mkAMost "inordinate" "inordinately" ;
+lin inorganic_A = mkAMost "inorganic" "inorganicly" ;
+lin inorganically_Adv = mkAdv "inorganically" ;
+lin inosine_N = mkN "inosine" "inosines" ;
+lin inositol_N = mkN "inositol" "inositols" ;
+lin inpatient_N = mkN "inpatient" "inpatients" ;
+lin inpouring_A = mkAMost "inpouring" "inpouringly" ;
+lin inpouring_N = mkN "inpouring" "inpourings" ;
+lin input_N = mkN "input" "inputs" ;
+lin inquest_N = mkN "inquest" "inquests" ;
+lin inquietude_N = mkN "inquietude" "inquietudes" ;
+lin inquire_V = mkV "inquire" "inquired" "inquired" ;
+lin inquirer_N = mkN "inquirer" "inquirers" ;
+lin inquiringly_Adv = mkAdv "inquiringly" ;
+lin inquiry_N = mkN "inquiry" "inquiries" ;
+lin inquisition_N = mkN "inquisition" "inquisitions" ;
+lin inquisitive_A = mkAMost "inquisitive" "inquisitively" ;
+lin inquisitiveness_N = mkN "inquisitiveness" "inquisitivenesses" ;
+lin inquisitor_N = mkN "inquisitor" "inquisitors" ;
+lin inquisitorial_A = mkAMost "inquisitorial" "inquisitorially" ;
+lin inquisitory_A = mkAMost "inquisitory" "inquisitorily" ;
+lin inroad_N = mkN "inroad" "inroads" ;
+lin inrush_N = mkN "inrush" "inrushes" ;
+lin insalubrious_A = mkAMost "insalubrious" "insalubriously" ;
+lin insalubrity_N = mkN "insalubrity" "insalubrities" ;
+lin insane_A = mkAMost "insane" "insanely" ;
+lin insanitary_A = mkAMost "insanitary" "insanitarily" ;
+lin insanity_N = mkN "insanity" "insanities" ;
+lin insatiable_A = mkAMost "insatiable" "insatiably" ;
+lin insatiate_A = mkAMost "insatiate" "insatiately" ;
+lin inscribe_V = mkV "inscribe" "inscribed" "inscribed" ;
+lin inscription_N = mkN "inscription" "inscriptions" ;
+lin inscriptive_A = mkAMost "inscriptive" "inscriptively" ;
+lin inscrutability_N = mkN "inscrutability" "inscrutabilities" ;
+lin inscrutable_A = mkAMost "inscrutable" "inscrutably" ;
+lin insect_N = mkN "insect" "insects" ;
+lin insect_powder_N = mkN "insect-powder" "insect-powders" ;
+lin insectan_A = mkAMost "insectan" "insectanly" ;
+lin insecticidal_A = mkAMost "insecticidal" "insecticidally" ;
+lin insecticide_N = mkN "insecticide" "insecticides" ;
+lin insectifuge_N = mkN "insectifuge" "insectifuges" ;
+lin insectivore_N = mkN "insectivore" "insectivores" ;
+lin insectivorous_A = mkAMost "insectivorous" "insectivorously" ;
+lin insecure_A = mkAMost "insecure" "insecurely" ;
+lin insecureness_N = mkN "insecureness" "insecurenesses" ;
+lin insecurity_N = mkN "insecurity" "insecurities" ;
+lin inseminate_V = mkV "inseminate" "inseminated" "inseminated" ;
+lin insemination_N = mkN "insemination" "inseminations" ;
+lin insensate_A = mkAMost "insensate" "insensately" ;
+lin insensibility_N = mkN "insensibility" "insensibilities" ;
+lin insensible_A = mkAMost "insensible" "insensibly" ;
+lin insensitive_A = mkAMost "insensitive" "insensitively" ;
+lin insensitivity_N = mkN "insensitivity" "insensitivities" ;
+lin insentience_N = mkN "insentience" "insentiences" ;
+lin insentient_A = mkAMost "insentient" "insentiently" ;
+lin inseparable_A = mkAMost "inseparable" "inseparably" ;
+lin insert_N = mkN "insert" "inserts" ;
+lin insert_V = mkV "insert" "inserted" "inserted" ;
+lin insertion_N = mkN "insertion" "insertions" ;
+lin inset_N = mkN "inset" "insets" ;
+lin inset_V = mkV "inset" "inset" "inset" ;
+lin inshore_A = mkAMost "inshore" "inshorely" ;
+lin inshore_Adv = mkAdv "inshore" ;
+lin inside_A = mkAMost "inside" "insidely" ;
+lin inside_Adv = mkAdv "inside" ;
+lin inside_N = mkN "inside" "insides" ;
+lin inside_Prep = mkPrep "inside" ;
+lin inside_of_Prep = mkPrep "inside of" ;
+lin insider_N = mkN "insider" "insiders" ;
+lin insidious_A = mkAMost "insidious" "insidiously" ;
+lin insidiousness_N = mkN "insidiousness" "insidiousnesses" ;
+lin insight_N = mkN "insight" "insights" ;
+lin insightful_A = mkAMost "insightful" "insightfully" ;
+lin insightfulness_N = mkN "insightfulness" "insightfulnesses" ;
+lin insignia_N = mkN "insignia" "insignias" ;
+lin insignificance_N = mkN "insignificance" "insignificances" ;
+lin insignificant_A = mkAMost "insignificant" "insignificantly" ;
+lin insincere_A = mkAMost "insincere" "insincerely" ;
+lin insincerity_N = mkN "insincerity" "insincerities" ;
+lin insinuate_V = mkV "insinuate" "insinuated" "insinuated" ;
+lin insinuatingly_Adv = mkAdv "insinuatingly" ;
+lin insinuation_N = mkN "insinuation" "insinuations" ;
+lin insipid_A = mkAMost "insipid" "insipidly" ;
+lin insipidity_N = mkN "insipidity" "insipidities" ;
+lin insipidness_N = mkN "insipidness" "insipidnesses" ;
+lin insist_V = mkV "insist" "insisted" "insisted" ;
+lin insistence_N = mkN "insistence" "insistences" ;
+lin insistent_A = mkAMost "insistent" "insistently" ;
+lin insofar_Adv = mkAdv "insofar" ;
+lin insolation_N = mkN "insolation" "insolations" ;
+lin insole_N = mkN "insole" "insoles" ;
+lin insolence_N = mkN "insolence" "insolences" ;
+lin insolent_A = mkAMost "insolent" "insolently" ;
+lin insolubility_N = mkN "insolubility" "insolubilities" ;
+lin insoluble_A = mkAMost "insoluble" "insolubly" ;
+lin insolvable_A = mkAMost "insolvable" "insolvably" ;
+lin insolvency_N = mkN "insolvency" "insolvencies" ;
+lin insolvent_A = mkAMost "insolvent" "insolvently" ;
+lin insolvent_N = mkN "insolvent" "insolvents" ;
+lin insomnia_N = mkN "insomnia" "insomnias" ;
+lin insomniac_A = mkAMost "insomniac" "insomniacly" ;
+lin insomniac_N = mkN "insomniac" "insomniacs" ;
+lin insomuch_Adv = mkAdv "insomuch" ;
+lin insouciance_N = mkN "insouciance" "insouciances" ;
+lin insouciant_A = mkAMost "insouciant" "insouciantly" ;
+lin inspan_V = mkV "inspan" "inspanned" "inspanned" ;
+lin inspect_V = mkV "inspect" "inspected" "inspected" ;
+lin inspection_N = mkN "inspection" "inspections" ;
+lin inspector_N = mkN "inspector" "inspectors" ;
+lin inspectorate_N = mkN "inspectorate" "inspectorates" ;
+lin inspectorship_N = mkN "inspectorship" "inspectorships" ;
+lin inspiration_N = mkN "inspiration" "inspirations" ;
+lin inspirational_A = mkAMost "inspirational" "inspirationally" ;
+lin inspiratory_A = mkAMost "inspiratory" "inspiratorily" ;
+lin inspire_V = mkV "inspire" "inspired" "inspired" ;
+lin inspiring_A = mkAMost "inspiring" "inspiringly" ;
+lin inspissation_N = mkN "inspissation" "inspissations" ;
+lin instability_N = mkN "instability" "instabilities" ;
+lin install_V = mkV "install" "installed" "installed" ;
+lin installation_N = mkN "installation" "installations" ;
+lin installment_N = mkN "installment" "installments" ;
+lin instalment_N = mkN "instalment" "instalments" ;
+lin instance_N = mkN "instance" "instances" ;
+lin instance_V = mkV "instance" "instanced" "instanced" ;
+lin instant_A = mkAMost "instant" "instantly" ;
+lin instant_N = mkN "instant" "instants" ;
+lin instantaneous_A = mkAMost "instantaneous" "instantaneously" ;
+lin instantiation_N = mkN "instantiation" "instantiations" ;
+lin instar_N = mkN "instar" "instars" ;
+lin instead_Adv = mkAdv "instead" ;
+lin instead_of_Prep = mkPrep "instead of" ;
+lin instep_N = mkN "instep" "insteps" ;
+lin instigate_V = mkV "instigate" "instigated" "instigated" ;
+lin instigation_N = mkN "instigation" "instigations" ;
+lin instigator_N = mkN "instigator" "instigators" ;
+lin instil_V = mkV "instil" "instilled" "instilled" ;
+lin instillation_N = mkN "instillation" "instillations" ;
+lin instillator_N = mkN "instillator" "instillators" ;
+lin instinct_A = mkAMost "instinct" "instinctly" ;
+lin instinct_N = mkN "instinct" "instincts" ;
+lin instinctive_A = mkAMost "instinctive" "instinctively" ;
+lin institute_N = mkN "institute" "institutes" ;
+lin institute_V = mkV "institute" "instituted" "instituted" ;
+lin institution_N = mkN "institution" "institutions" ;
+lin institutional_A = mkAMost "institutional" "institutionally" ;
+lin institutionalisation_N = mkN "institutionalisation" "institutionalisations" ;
+lin institutionalization_N = mkN "institutionalization" "institutionalizations" ;
+lin institutionalize_V = mkV "institutionalize" "institutionalized" "institutionalized" ;
+lin instroke_N = mkN "instroke" "instrokes" ;
+lin instruct_V = mkV "instruct" "instructed" "instructed" ;
+lin instruction_N = mkN "instruction" "instructions" ;
+lin instructional_A = mkAMost "instructional" "instructionally" ;
+lin instructive_A = mkAMost "instructive" "instructively" ;
+lin instructor_N = mkN "instructor" "instructors" ;
+lin instructorship_N = mkN "instructorship" "instructorships" ;
+lin instructress_N = mkN "instructress" "instructresses" ;
+lin instrument_N = mkN "instrument" "instruments" ;
+lin instrumental_A = mkAMost "instrumental" "instrumentally" ;
+lin instrumentalism_N = mkN "instrumentalism" "instrumentalisms" ;
+lin instrumentalist_N = mkN "instrumentalist" "instrumentalists" ;
+lin instrumentality_N = mkN "instrumentality" "instrumentalities" ;
+lin instrumentation_N = mkN "instrumentation" "instrumentations" ;
+lin insubordinate_A = mkAMost "insubordinate" "insubordinately" ;
+lin insubordination_N = mkN "insubordination" "insubordinations" ;
+lin insubstantial_A = mkAMost "insubstantial" "insubstantially" ;
+lin insubstantiality_N = mkN "insubstantiality" "insubstantialities" ;
+lin insufferable_A = mkAMost "insufferable" "insufferably" ;
+lin insufficiency_N = mkN "insufficiency" "insufficiencies" ;
+lin insufficient_A = mkAMost "insufficient" "insufficiently" ;
+lin insufflation_N = mkN "insufflation" "insufflations" ;
+lin insular_A = mkAMost "insular" "insularly" ;
+lin insularism_N = mkN "insularism" "insularisms" ;
+lin insularity_N = mkN "insularity" "insularities" ;
+lin insulate_V = mkV "insulate" "insulated" "insulated" ;
+lin insulation_N = mkN "insulation" "insulations" ;
+lin insulator_N = mkN "insulator" "insulators" ;
+lin insulin_N = mkN "insulin" "insulins" ;
+lin insult_N = mkN "insult" "insults" ;
+lin insult_V = mkV "insult" "insulted" "insulted" ;
+lin insulting_A = mkAMost "insulting" "insultingly" ;
+lin insuperable_A = mkAMost "insuperable" "insuperably" ;
+lin insupportable_A = mkAMost "insupportable" "insupportably" ;
+lin insurability_N = mkN "insurability" "insurabilities" ;
+lin insurable_A = mkAMost "insurable" "insurably" ;
+lin insurance_N = mkN "insurance" "insurances" ;
+lin insure_V = mkV "insure" "insured" "insured" ;
+lin insured_N = mkN "insured" "insureds" ;
+lin insurgency_N = mkN "insurgency" "insurgencies" ;
+lin insurgent_A = mkAMost "insurgent" "insurgently" ;
+lin insurgent_N = mkN "insurgent" "insurgents" ;
+lin insurmountable_A = mkAMost "insurmountable" "insurmountably" ;
+lin insurrection_N = mkN "insurrection" "insurrections" ;
+lin insurrectional_A = mkAMost "insurrectional" "insurrectionally" ;
+lin insurrectionism_N = mkN "insurrectionism" "insurrectionisms" ;
+lin intact_A = mkAMost "intact" "intactly" ;
+lin intactness_N = mkN "intactness" "intactnesses" ;
+lin intaglio_N = mkN "intaglio" "intaglios" ;
+lin intake_N = mkN "intake" "intakes" ;
+lin intangibility_N = mkN "intangibility" "intangibilities" ;
+lin intangible_A = mkAMost "intangible" "intangibly" ;
+lin intangible_N = mkN "intangible" "intangibles" ;
+lin intangibles_N = mkN "intangibles" "intangibless" ;
+lin integer_N = mkN "integer" "integers" ;
+lin integral_A = mkAMost "integral" "integrally" ;
+lin integral_N = mkN "integral" "integrals" ;
+lin integrate_V = mkV "integrate" "integrated" "integrated" ;
+lin integration_N = mkN "integration" "integrations" ;
+lin integrative_A = mkAMost "integrative" "integratively" ;
+lin integrator_N = mkN "integrator" "integrators" ;
+lin integrity_N = mkN "integrity" "integrities" ;
+lin integument_N = mkN "integument" "integuments" ;
+lin integumentary_A = mkAMost "integumentary" "integumentarily" ;
+lin intellect_N = mkN "intellect" "intellects" ;
+lin intellectual_A = mkAMost "intellectual" "intellectually" ;
+lin intellectual_N = mkN "intellectual" "intellectuals" ;
+lin intellectualization_N = mkN "intellectualization" "intellectualizations" ;
+lin intelligence_N = mkN "intelligence" "intelligences" ;
+lin intelligent_A = mkAMost "intelligent" "intelligently" ;
+lin intelligentsia_N = mkN "intelligentsia" "intelligentsias" ;
+lin intelligibility_N = mkN "intelligibility" "intelligibilities" ;
+lin intelligible_A = mkAMost "intelligible" "intelligibly" ;
+lin intemperance_N = mkN "intemperance" "intemperances" ;
+lin intemperate_A = mkAMost "intemperate" "intemperately" ;
+lin intend_V = mkV "intend" "intended" "intended" ;
+lin intense_A = mkAMost "intense" "intensely" ;
+lin intensification_N = mkN "intensification" "intensifications" ;
+lin intensifier_N = mkN "intensifier" "intensifiers" ;
+lin intensify_V = mkV "intensify" "intensified" "intensified" ;
+lin intension_N = mkN "intension" "intensions" ;
+lin intensional_A = mkAMost "intensional" "intensionally" ;
+lin intensity_N = mkN "intensity" "intensities" ;
+lin intensive_A = mkAMost "intensive" "intensively" ;
+lin intent_A = mkAMost "intent" "intently" ;
+lin intent_N = mkN "intent" "intents" ;
+lin intention_N = mkN "intention" "intentions" ;
+lin intentional_A = mkAMost "intentional" "intentionally" ;
+lin intentionality_N = mkN "intentionality" "intentionalities" ;
+lin intentness_N = mkN "intentness" "intentnesses" ;
+lin inter_V = mkV "inter" "interred" "interred" ;
+lin inter_alia_Adv = mkAdv "inter alia" ;
+lin interact_V = mkV "interact" "interacted" "interacted" ;
+lin interaction_N = mkN "interaction" "interactions" ;
+lin interactional_A = mkAMost "interactional" "interactionally" ;
+lin interactive_A = mkAMost "interactive" "interactively" ;
+lin interbreed_V = mkV "interbreed" "interbred" "interbred" ;
+lin intercalary_A = mkAMost "intercalary" "intercalarily" ;
+lin intercede_V = mkV "intercede" "interceded" "interceded" ;
+lin intercellular_A = mkAMost "intercellular" "intercellularly" ;
+lin intercept_N = mkN "intercept" "intercepts" ;
+lin intercept_V = mkV "intercept" "intercepted" "intercepted" ;
+lin interception_N = mkN "interception" "interceptions" ;
+lin interceptor_N = mkN "interceptor" "interceptors" ;
+lin intercession_N = mkN "intercession" "intercessions" ;
+lin interchange_N = mkN "interchange" "interchanges" ;
+lin interchange_V = mkV "interchange" "interchanged" "interchanged" ;
+lin interchangeable_A = mkAMost "interchangeable" "interchangeably" ;
+lin interchurch_A = mkAMost "interchurch" "interchurchly" ;
+lin intercollegiate_A = mkAMost "intercollegiate" "intercollegiately" ;
+lin intercom_N = mkN "intercom" "intercoms" ;
+lin intercommunicate_V = mkV "intercommunicate" "intercommunicated" "intercommunicated" ;
+lin intercommunication_N = mkN "intercommunication" "intercommunications" ;
+lin intercommunion_N = mkN "intercommunion" "intercommunions" ;
+lin interconnect_V = mkV "interconnect" "interconnected" "interconnected" ;
+lin interconnectedness_N = mkN "interconnectedness" "interconnectednesses" ;
+lin interconnection_N = mkN "interconnection" "interconnections" ;
+lin intercontinental_A = mkAMost "intercontinental" "intercontinentally" ;
+lin intercostal_A = mkAMost "intercostal" "intercostally" ;
+lin intercostal_N = mkN "intercostal" "intercostals" ;
+lin intercourse_N = mkN "intercourse" "intercourses" ;
+lin interdenominational_A = mkAMost "interdenominational" "interdenominationally" ;
+lin interdepartmental_A = mkAMost "interdepartmental" "interdepartmentally" ;
+lin interdepartmental_Adv = mkAdv "interdepartmental" ;
+lin interdependence_N = mkN "interdependence" "interdependences" ;
+lin interdependent_A = mkAMost "interdependent" "interdependently" ;
+lin interdict_N = mkN "interdict" "interdicts" ;
+lin interdict_V = mkV "interdict" "interdicted" "interdicted" ;
+lin interdiction_N = mkN "interdiction" "interdictions" ;
+lin interdisciplinary_A = mkAMost "interdisciplinary" "interdisciplinarily" ;
+lin interest_N = mkN "interest" "interests" ;
+lin interest_V = mkV "interest" "interested" "interested" ;
+lin interested_A = mkAMost "interested" "interestedly" ;
+lin interestedness_N = mkN "interestedness" "interestednesses" ;
+lin interesting_A = mkAMost "interesting" "interestingly" ;
+lin interface_N = mkN "interface" "interfaces" ;
+lin interfacial_A = mkAMost "interfacial" "interfacially" ;
+lin interfaith_A = mkAMost "interfaith" "interfaithly" ;
+lin interfere_V = mkV "interfere" "interfered" "interfered" ;
+lin interference_N = mkN "interference" "interferences" ;
+lin interferometer_N = mkN "interferometer" "interferometers" ;
+lin interferon_N = mkN "interferon" "interferons" ;
+lin intergalactic_A = mkAMost "intergalactic" "intergalacticly" ;
+lin interim_A = mkAMost "interim" "interimly" ;
+lin interim_N = mkN "interim" "interims" ;
+lin interior_A = mkAMost "interior" "interiorly" ;
+lin interior_N = mkN "interior" "interiors" ;
+lin interject_V = mkV "interject" "interjected" "interjected" ;
+lin interjection_N = mkN "interjection" "interjections" ;
+lin interlace_V = mkV "interlace" "interlaced" "interlaced" ;
+lin interlard_V = mkV "interlard" "interlarded" "interlarded" ;
+lin interlayer_N = mkN "interlayer" "interlayers" ;
+lin interleaf_N = mkN "interleaf" "interleafs" ;
+lin interleave_V = mkV "interleave" "interleaved" "interleaved" ;
+lin interleukin_N = mkN "interleukin" "interleukins" ;
+lin interlinear_A = mkAMost "interlinear" "interlinearly" ;
+lin interlink_V = mkV "interlink" "interlinked" "interlinked" ;
+lin interlobular_A = mkAMost "interlobular" "interlobularly" ;
+lin interlock_N = mkN "interlock" "interlocks" ;
+lin interlock_V = mkV "interlock" "interlocked" "interlocked" ;
+lin interlocutor_N = mkN "interlocutor" "interlocutors" ;
+lin interlocutory_A = mkAMost "interlocutory" "interlocutorily" ;
+lin interloper_N = mkN "interloper" "interlopers" ;
+lin interlude_N = mkN "interlude" "interludes" ;
+lin intermarriage_N = mkN "intermarriage" "intermarriages" ;
+lin intermarry_V = mkV "intermarry" "intermarried" "intermarried" ;
+lin intermediary_N = mkN "intermediary" "intermediaries" ;
+lin intermediate_A = mkAMost "intermediate" "intermediately" ;
+lin intermediate_N = mkN "intermediate" "intermediates" ;
+lin interment_N = mkN "interment" "interments" ;
+lin intermezzo_N = mkN "intermezzo" "intermezzos" ;
+lin interminable_A = mkAMost "interminable" "interminably" ;
+lin intermingle_V = mkV "intermingle" "intermingled" "intermingled" ;
+lin intermission_N = mkN "intermission" "intermissions" ;
+lin intermittence_N = mkN "intermittence" "intermittences" ;
+lin intermittent_A = mkAMost "intermittent" "intermittently" ;
+lin intermix_V = mkV "intermix" "intermixed" "intermixed" ;
+lin intermixture_N = mkN "intermixture" "intermixtures" ;
+lin intermolecular_A = mkAMost "intermolecular" "intermolecularly" ;
+lin intermural_A = mkAMost "intermural" "intermurally" ;
+lin intern_N = mkN "intern" "interns" ;
+lin intern_V = mkV "intern" "interned" "interned" ;
+lin internal_A = mkAMost "internal" "internally" ;
+lin internalization_N = mkN "internalization" "internalizations" ;
+lin internalize_V = mkV "internalize" "internalized" "internalized" ;
+lin international_A = mkAMost "international" "internationally" ;
+lin international_N = mkN "international" "internationals" ;
+lin internationale_N = mkN "internationale" "internationales" ;
+lin internationalism_N = mkN "internationalism" "internationalisms" ;
+lin internationalist_A = mkAMost "internationalist" "internationalistly" ;
+lin internationalist_N = mkN "internationalist" "internationalists" ;
+lin internationality_N = mkN "internationality" "internationalities" ;
+lin internationalization_N = mkN "internationalization" "internationalizations" ;
+lin internationalize_V = mkV "internationalize" "internationalized" "internationalized" ;
+lin interne_N = mkN "interne" "internes" ;
+lin internecine_A = mkAMost "internecine" "internecinely" ;
+lin internee_N = mkN "internee" "internees" ;
+lin internet_N = mkN "internet" "internets" ;
+lin internist_N = mkN "internist" "internists" ;
+lin internment_N = mkN "internment" "internments" ;
+lin internode_N = mkN "internode" "internodes" ;
+lin internship_N = mkN "internship" "internships" ;
+lin internuncio_N = mkN "internuncio" "internuncios" ;
+lin interoception_N = mkN "interoception" "interoceptions" ;
+lin interoceptive_A = mkAMost "interoceptive" "interoceptively" ;
+lin interoceptor_N = mkN "interoceptor" "interoceptors" ;
+lin interoperability_N = mkN "interoperability" "interoperabilities" ;
+lin interoperable_A = mkAMost "interoperable" "interoperably" ;
+lin interpellate_V = mkV "interpellate" "interpellated" "interpellated" ;
+lin interpellation_N = mkN "interpellation" "interpellations" ;
+lin interpenetration_N = mkN "interpenetration" "interpenetrations" ;
+lin interpersonal_A = mkAMost "interpersonal" "interpersonally" ;
+lin interphone_N = mkN "interphone" "interphones" ;
+lin interplanetary_A = mkAMost "interplanetary" "interplanetarily" ;
+lin interplay_N = mkN "interplay" "interplays" ;
+lin interpolate_V = mkV "interpolate" "interpolated" "interpolated" ;
+lin interpolation_N = mkN "interpolation" "interpolations" ;
+lin interpose_V = mkV "interpose" "interposed" "interposed" ;
+lin interposition_N = mkN "interposition" "interpositions" ;
+lin interpret_V = mkV "interpret" "interpreted" "interpreted" ;
+lin interpretation_N = mkN "interpretation" "interpretations" ;
+lin interpretative_A = mkAMost "interpretative" "interpretatively" ;
+lin interpreter_N = mkN "interpreter" "interpreters" ;
+lin interracial_A = mkAMost "interracial" "interracially" ;
+lin interreflection_N = mkN "interreflection" "interreflections" ;
+lin interregnum_N = mkN "interregnum" "interregnums" ;
+lin interrelate_V = mkV "interrelate" "interrelated" "interrelated" ;
+lin interrelation_N = mkN "interrelation" "interrelations" ;
+lin interrelationship_N = mkN "interrelationship" "interrelationships" ;
+lin interrogate_V = mkV "interrogate" "interrogated" "interrogated" ;
+lin interrogation_N = mkN "interrogation" "interrogations" ;
+lin interrogative_A = mkAMost "interrogative" "interrogatively" ;
+lin interrogative_N = mkN "interrogative" "interrogatives" ;
+lin interrogator_N = mkN "interrogator" "interrogators" ;
+lin interrogatory_A = mkAMost "interrogatory" "interrogatorily" ;
+lin interrupt_N = mkN "interrupt" "interrupts" ;
+lin interrupt_V = mkV "interrupt" "interrupted" "interrupted" ;
+lin interrupter_N = mkN "interrupter" "interrupters" ;
+lin interruption_N = mkN "interruption" "interruptions" ;
+lin interscholastic_A = mkAMost "interscholastic" "interscholasticly" ;
+lin intersect_V = mkV "intersect" "intersected" "intersected" ;
+lin intersection_N = mkN "intersection" "intersections" ;
+lin intersexual_A = mkAMost "intersexual" "intersexually" ;
+lin interspecies_A = mkAMost "interspecies" "interspeciesly" ;
+lin intersperse_V = mkV "intersperse" "interspersed" "interspersed" ;
+lin interspersion_N = mkN "interspersion" "interspersions" ;
+lin interstate_A = mkAMost "interstate" "interstately" ;
+lin interstate_N = mkN "interstate" "interstates" ;
+lin interstellar_A = mkAMost "interstellar" "interstellarly" ;
+lin interstice_N = mkN "interstice" "interstices" ;
+lin interstitial_A = mkAMost "interstitial" "interstitially" ;
+lin intertidal_A = mkAMost "intertidal" "intertidally" ;
+lin intertribal_A = mkAMost "intertribal" "intertribally" ;
+lin intertrigo_N = mkN "intertrigo" "intertrigoes" ;
+lin intertwine_V = mkV "intertwine" "intertwined" "intertwined" ;
+lin interval_N = mkN "interval" "intervals" ;
+lin intervene_V = mkV "intervene" "intervened" "intervened" ;
+lin intervenor_N = mkN "intervenor" "intervenors" ;
+lin intervention_N = mkN "intervention" "interventions" ;
+lin intervertebral_A = mkAMost "intervertebral" "intervertebrally" ;
+lin interview_N = mkN "interview" "interviews" ;
+lin interview_V = mkV "interview" "interviewed" "interviewed" ;
+lin interviewee_N = mkN "interviewee" "interviewees" ;
+lin interviewer_N = mkN "interviewer" "interviewers" ;
+lin interweave_interweaved_interweaved_V = mkV "interweave" "interweaved" "interweaved" ;
+lin interweave_interweaved_interwoven_V = mkV "interweave" "interweaved" "interwoven" ;
+lin interweave_interwove_interweaved_V = mkV "interweave" "interwove" "interweaved" ;
+lin interweave_interwove_interwoven_V = mkV "interweave" "interwove" "interwoven" ;
+lin intestacy_N = mkN "intestacy" "intestacies" ;
+lin intestate_A = mkAMost "intestate" "intestately" ;
+lin intestinal_A = mkAMost "intestinal" "intestinally" ;
+lin intestine_N = mkN "intestine" "intestines" ;
+lin inti_N = mkN "inti" "intis" ;
+lin intifada_N = mkN "intifada" "intifadas" ;
+lin intima_N = mkN "intima" "intimas" ;
+lin intimacy_N = mkN "intimacy" "intimacies" ;
+lin intimal_A = mkAMost "intimal" "intimally" ;
+lin intimate_A = mkAMost "intimate" "intimately" ;
+lin intimate_N = mkN "intimate" "intimates" ;
+lin intimate_V = mkV "intimate" "intimated" "intimated" ;
+lin intimation_N = mkN "intimation" "intimations" ;
+lin intimidate_V = mkV "intimidate" "intimidated" "intimidated" ;
+lin intimidation_N = mkN "intimidation" "intimidations" ;
+lin into_Prep = mkPrep "into" ;
+lin intolerable_A = mkAMost "intolerable" "intolerably" ;
+lin intolerance_N = mkN "intolerance" "intolerances" ;
+lin intolerant_A = mkAMost "intolerant" "intolerantly" ;
+lin intonation_N = mkN "intonation" "intonations" ;
+lin intone_V = mkV "intone" "intoned" "intoned" ;
+lin intoxicant_A = mkAMost "intoxicant" "intoxicantly" ;
+lin intoxicant_N = mkN "intoxicant" "intoxicants" ;
+lin intoxicate_V = mkV "intoxicate" "intoxicated" "intoxicated" ;
+lin intoxication_N = mkN "intoxication" "intoxications" ;
+lin intra_uterine_A = mkAMost "intra-uterine" "intra-uterinely" ;
+lin intracellular_A = mkAMost "intracellular" "intracellularly" ;
+lin intracerebral_A = mkAMost "intracerebral" "intracerebrally" ;
+lin intracranial_A = mkAMost "intracranial" "intracranially" ;
+lin intractability_N = mkN "intractability" "intractabilities" ;
+lin intractable_A = mkAMost "intractable" "intractably" ;
+lin intradepartmental_A = mkAMost "intradepartmental" "intradepartmentally" ;
+lin intradermal_A = mkAMost "intradermal" "intradermally" ;
+lin intrados_N = mkN "intrados" "intradoses" ;
+lin intralinguistic_A = mkAMost "intralinguistic" "intralinguisticly" ;
+lin intralobular_A = mkAMost "intralobular" "intralobularly" ;
+lin intramolecular_A = mkAMost "intramolecular" "intramolecularly" ;
+lin intramural_A = mkAMost "intramural" "intramurally" ;
+lin intramuscular_A = mkAMost "intramuscular" "intramuscularly" ;
+lin intranet_N = mkN "intranet" "intranets" ;
+lin intransigence_N = mkN "intransigence" "intransigences" ;
+lin intransigency_N = mkN "intransigency" "intransigencies" ;
+lin intransigent_A = mkAMost "intransigent" "intransigently" ;
+lin intransitive_A = mkAMost "intransitive" "intransitively" ;
+lin intransitivity_N = mkN "intransitivity" "intransitivities" ;
+lin intrapulmonary_A = mkAMost "intrapulmonary" "intrapulmonarily" ;
+lin intrasentential_A = mkAMost "intrasentential" "intrasententially" ;
+lin intraspecies_A = mkAMost "intraspecies" "intraspeciesly" ;
+lin intrastate_A = mkAMost "intrastate" "intrastately" ;
+lin intrauterine_A = mkAMost "intrauterine" "intrauterinely" ;
+lin intravasation_N = mkN "intravasation" "intravasations" ;
+lin intravenous_A = mkAMost "intravenous" "intravenously" ;
+lin intraventricular_A = mkAMost "intraventricular" "intraventricularly" ;
+lin intrench_V = mkV "intrench" "intrenched" "intrenched" ;
+lin intrepid_A = mkAMost "intrepid" "intrepidly" ;
+lin intrepidity_N = mkN "intrepidity" "intrepidities" ;
+lin intricacy_N = mkN "intricacy" "intricacies" ;
+lin intricate_A = mkAMost "intricate" "intricately" ;
+lin intrigue_N = mkN "intrigue" "intrigues" ;
+lin intrigue_V = mkV "intrigue" "intrigued" "intrigued" ;
+lin intrinsic_A = mkAMost "intrinsic" "intrinsicly" ;
+lin intrinsically_Adv = mkAdv "intrinsically" ;
+lin intro_N = mkN "intro" "intri" ;
+lin introduce_V = mkV "introduce" "introduced" "introduced" ;
+lin introduction_N = mkN "introduction" "introductions" ;
+lin introductory_A = mkAMost "introductory" "introductorily" ;
+lin introit_N = mkN "introit" "introits" ;
+lin introitus_N = mkN "introitus" "introituses" ;
+lin introject_N = mkN "introject" "introjects" ;
+lin introjected_A = mkAMost "introjected" "introjectedly" ;
+lin introjection_N = mkN "introjection" "introjections" ;
+lin intron_N = mkN "intron" "introns" ;
+lin introspect_V = mkV "introspect" "introspected" "introspected" ;
+lin introspection_N = mkN "introspection" "introspections" ;
+lin introspective_A = mkAMost "introspective" "introspectively" ;
+lin introspectiveness_N = mkN "introspectiveness" "introspectivenesses" ;
+lin introuvable_A = mkAMost "introuvable" "introuvably" ;
+lin introversion_N = mkN "introversion" "introversions" ;
+lin introversive_A = mkAMost "introversive" "introversively" ;
+lin introvert_N = mkN "introvert" "introverts" ;
+lin introvert_V = mkV "introvert" "introverted" "introverted" ;
+lin introvertish_A = mkAMost "introvertish" "introvertishly" ;
+lin intrude_V = mkV "intrude" "intruded" "intruded" ;
+lin intruder_N = mkN "intruder" "intruders" ;
+lin intrusion_N = mkN "intrusion" "intrusions" ;
+lin intrusive_A = mkAMost "intrusive" "intrusively" ;
+lin intrusiveness_N = mkN "intrusiveness" "intrusivenesses" ;
+lin intrust_V = mkV "intrust" "intrusted" "intrusted" ;
+lin intuit_V = mkV "intuit" "intuited" "intuited" ;
+lin intuition_N = mkN "intuition" "intuitions" ;
+lin intuitionism_N = mkN "intuitionism" "intuitionisms" ;
+lin intuitionist_A = mkAMost "intuitionist" "intuitionistly" ;
+lin intuitive_A = mkAMost "intuitive" "intuitively" ;
+lin intumescence_N = mkN "intumescence" "intumescences" ;
+lin intussusception_N = mkN "intussusception" "intussusceptions" ;
+lin inula_N = mkN "inula" "inulas" ;
+lin inulin_N = mkN "inulin" "inulins" ;
+lin inundate_V = mkV "inundate" "inundated" "inundated" ;
+lin inundation_N = mkN "inundation" "inundations" ;
+lin inure_V = mkV "inure" "inured" "inured" ;
+lin inutile_A = mkAMost "inutile" "inutilely" ;
+lin inutility_N = mkN "inutility" "inutilities" ;
+lin invade_V = mkV "invade" "invaded" "invaded" ;
+lin invader_N = mkN "invader" "invaders" ;
+lin invagination_N = mkN "invagination" "invaginations" ;
+lin invalid_A = mkAMost "invalid" "invalidly" ;
+lin invalid_N = mkN "invalid" "invalids" ;
+lin invalid_V = mkV "invalid" "invalided" "invalided" ;
+lin invalidate_V = mkV "invalidate" "invalidated" "invalidated" ;
+lin invalidation_N = mkN "invalidation" "invalidations" ;
+lin invalidator_N = mkN "invalidator" "invalidators" ;
+lin invalidism_N = mkN "invalidism" "invalidisms" ;
+lin invalidity_N = mkN "invalidity" "invalidities" ;
+lin invaluable_A = mkAMost "invaluable" "invaluably" ;
+lin invaluableness_N = mkN "invaluableness" "invaluablenesses" ;
+lin invariability_N = mkN "invariability" "invariabilities" ;
+lin invariable_A = mkAMost "invariable" "invariably" ;
+lin invariance_N = mkN "invariance" "invariances" ;
+lin invariant_A = mkAMost "invariant" "invariantly" ;
+lin invariant_N = mkN "invariant" "invariants" ;
+lin invasion_N = mkN "invasion" "invasions" ;
+lin invasive_A = mkAMost "invasive" "invasively" ;
+lin invective_N = mkN "invective" "invectives" ;
+lin inveigh_V = mkV "inveigh" "inveighed" "inveighed" ;
+lin inveigle_V = mkV "inveigle" "inveigled" "inveigled" ;
+lin invent_V = mkV "invent" "invented" "invented" ;
+lin invention_N = mkN "invention" "inventions" ;
+lin inventive_A = mkAMost "inventive" "inventively" ;
+lin inventiveness_N = mkN "inventiveness" "inventivenesses" ;
+lin inventor_N = mkN "inventor" "inventors" ;
+lin inventory_N = mkN "inventory" "inventories" ;
+lin inverse_A = mkAMost "inverse" "inversely" ;
+lin inverse_N = mkN "inverse" "inverses" ;
+lin inversion_N = mkN "inversion" "inversions" ;
+lin invert_V = mkV "invert" "inverted" "inverted" ;
+lin invertase_N = mkN "invertase" "invertases" ;
+lin invertebrate_A = mkAMost "invertebrate" "invertebrately" ;
+lin invertebrate_N = mkN "invertebrate" "invertebrates" ;
+lin inverter_N = mkN "inverter" "inverters" ;
+lin invertible_A = mkAMost "invertible" "invertibly" ;
+lin invest_V = mkV "invest" "invested" "invested" ;
+lin investigate_V = mkV "investigate" "investigated" "investigated" ;
+lin investigation_N = mkN "investigation" "investigations" ;
+lin investigator_N = mkN "investigator" "investigators" ;
+lin investing_N = mkN "investing" "investings" ;
+lin investiture_N = mkN "investiture" "investitures" ;
+lin investment_N = mkN "investment" "investments" ;
+lin investor_N = mkN "investor" "investors" ;
+lin inveterate_A = mkAMost "inveterate" "inveterately" ;
+lin invidious_A = mkAMost "invidious" "invidiously" ;
+lin invigilate_V = mkV "invigilate" "invigilated" "invigilated" ;
+lin invigilation_N = mkN "invigilation" "invigilations" ;
+lin invigilator_N = mkN "invigilator" "invigilators" ;
+lin invigorate_V = mkV "invigorate" "invigorated" "invigorated" ;
+lin invigorating_A = mkAMost "invigorating" "invigoratingly" ;
+lin invincibility_N = mkN "invincibility" "invincibilities" ;
+lin invincible_A = mkAMost "invincible" "invincibly" ;
+lin inviolable_A = mkAMost "inviolable" "inviolably" ;
+lin inviolate_A = mkAMost "inviolate" "inviolately" ;
+lin invisibility_N = mkN "invisibility" "invisibilities" ;
+lin invisible_A = mkAMost "invisible" "invisibly" ;
+lin invitation_N = mkN "invitation" "invitations" ;
+lin invitational_A = mkAMost "invitational" "invitationally" ;
+lin invitatory_A = mkAMost "invitatory" "invitatorily" ;
+lin invite_N = mkN "invite" "invites" ;
+lin invite_V = mkV "invite" "invited" "invited" ;
+lin invocation_N = mkN "invocation" "invocations" ;
+lin invoice_N = mkN "invoice" "invoices" ;
+lin invoice_V = mkV "invoice" "invoiced" "invoiced" ;
+lin invoke_V = mkV "invoke" "invoked" "invoked" ;
+lin involucrate_A = mkAMost "involucrate" "involucrately" ;
+lin involucre_N = mkN "involucre" "involucres" ;
+lin involuntary_A = mkAMost "involuntary" "involuntarily" ;
+lin involute_A = mkAMost "involute" "involutely" ;
+lin involution_N = mkN "involution" "involutions" ;
+lin involve_V = mkV "involve" "involved" "involved" ;
+lin involvement_N = mkN "involvement" "involvements" ;
+lin invulnerability_N = mkN "invulnerability" "invulnerabilities" ;
+lin invulnerable_A = mkAMost "invulnerable" "invulnerably" ;
+lin inward_A = mkAMost "inward" "inwardly" ;
+lin inward_Adv = mkAdv "inward" ;
+lin inwardness_N = mkN "inwardness" "inwardnesses" ;
+lin inwards_Adv = mkAdv "inwards" ;
+lin inwrought_A = mkAMost "inwrought" "inwroughtly" ;
+lin iodide_N = mkN "iodide" "iodides" ;
+lin iodinated_A = mkAMost "iodinated" "iodinatedly" ;
+lin iodinating_A = mkAMost "iodinating" "iodinatingly" ;
+lin iodination_N = mkN "iodination" "iodinations" ;
+lin iodine_N = mkN "iodine" "iodines" ;
+lin iodochlorhydroxyquin_N = mkN "iodochlorhydroxyquin" "iodochlorhydroxyquins" ;
+lin iodocompound_N = mkN "iodocompound" "iodocompounds" ;
+lin iodoform_N = mkN "iodoform" "iodoforms" ;
+lin iodoprotein_N = mkN "iodoprotein" "iodoproteins" ;
+lin iodopsin_N = mkN "iodopsin" "iodopsins" ;
+lin iodothyronine_N = mkN "iodothyronine" "iodothyronines" ;
+lin iodotyrosine_N = mkN "iodotyrosine" "iodotyrosines" ;
+lin ion_N = mkN "ion" "ions" ;
+lin ionic_A = mkAMost "ionic" "ionicly" ;
+lin ionization_N = mkN "ionization" "ionizations" ;
+lin ionize_V = mkV "ionize" "ionized" "ionized" ;
+lin ionosphere_N = mkN "ionosphere" "ionospheres" ;
+lin iontophoresis_N = mkN "iontophoresis" "iontophoresises" ;
+lin iota_N = mkN "iota" "iotas" ;
+lin ipecac_N = mkN "ipecac" "ipecacs" ;
+lin iproclozide_N = mkN "iproclozide" "iproclozides" ;
+lin ipse_dixit_N = mkN "ipse dixit" "ipse dixits" ;
+lin ipsilateral_A = mkAMost "ipsilateral" "ipsilaterally" ;
+lin ipso_facto_Adv = mkAdv "ipso facto" ;
+lin iq_N = mkN "iq" "iqs" ;
+lin ira_N = mkN "ira" "iras" ;
+lin iraqi_A = mkAMost "iraqi" "iraqily" ;
+lin iraqi_N = mkN "iraqi" "iraqis" ;
+lin irascibility_N = mkN "irascibility" "irascibilities" ;
+lin irascible_A = mkAMost "irascible" "irascibly" ;
+lin irate_A = mkAMost "irate" "irately" ;
+lin ire_N = mkN "ire" "ires" ;
+lin ireful_A = mkAMost "ireful" "irefully" ;
+lin irenic_A = mkAMost "irenic" "irenicly" ;
+lin iridaceous_A = mkAMost "iridaceous" "iridaceously" ;
+lin iridectomy_N = mkN "iridectomy" "iridectomies" ;
+lin iridescence_N = mkN "iridescence" "iridescences" ;
+lin iridescent_A = mkAMost "iridescent" "iridescently" ;
+lin iridic_A = mkAMost "iridic" "iridicly" ;
+lin iridium_N = mkN "iridium" "iridiums" ;
+lin iridocyclitis_N = mkN "iridocyclitis" "iridocyclitises" ;
+lin iridokeratitis_N = mkN "iridokeratitis" "iridokeratitises" ;
+lin iridoncus_N = mkN "iridoncus" "iridoncuses" ;
+lin iridotomy_N = mkN "iridotomy" "iridotomies" ;
+lin iris_N = mkN "iris" "irises" ;
+lin irishman_N = mkN "irishman" "irishmen" ;
+lin irishwoman_N = mkN "irishwoman" "irishwomen" ;
+lin iritic_A = mkAMost "iritic" "iriticly" ;
+lin iritis_N = mkN "iritis" "iritises" ;
+lin irk_V = mkV "irk" "irked" "irked" ;
+lin irksome_A = mkAMost "irksome" "irksomely" ;
+lin iron_N = mkN "iron" "irons" ;
+lin iron_foundry_N = mkN "iron-foundry" "iron-foundries" ;
+lin iron_grey_A = mkAMost "iron-grey" "iron-greily" ;
+lin iron_grey_N = mkN "iron-grey" "iron-greys" ;
+lin iron_ironed_V = mkV "iron" "ironed" "ironed" ;
+lin iron_ironned_V = mkV "iron" "ironned" "ironned" ;
+lin ironclad_A = mkAMost "ironclad" "ironcladly" ;
+lin ironclad_N = mkN "ironclad" "ironclads" ;
+lin ironic_A = mkAMost "ironic" "ironicly" ;
+lin ironical_A = mkAMost "ironical" "ironically" ;
+lin ironing_N = mkN "ironing" "ironings" ;
+lin ironing_board_N = mkN "ironing-board" "ironing-boards" ;
+lin ironlike_A = mkAMost "ironlike" "ironlikely" ;
+lin ironmonger_N = mkN "ironmonger" "ironmongers" ;
+lin ironmongery_N = mkN "ironmongery" "ironmongeries" ;
+lin ironmould_N = mkN "ironmould" "ironmoulds" ;
+lin irons_N = mkN "irons" "ironses" ;
+lin ironshod_A = mkAMost "ironshod" "ironshodly" ;
+lin ironside_N = mkN "ironside" "ironsides" ;
+lin ironware_N = mkN "ironware" "ironwares" ;
+lin ironweed_N = mkN "ironweed" "ironweeds" ;
+lin ironwood_N = mkN "ironwood" "ironwoods" ;
+lin ironwork_N = mkN "ironwork" "ironworks" ;
+lin ironworker_N = mkN "ironworker" "ironworkers" ;
+lin ironworks_N = mkN "ironworks" "ironworks" ;
+lin irony_N = mkN "irony" "ironies" ;
+lin irradiate_V = mkV "irradiate" "irradiated" "irradiated" ;
+lin irradiation_N = mkN "irradiation" "irradiations" ;
+lin irrational_A = mkAMost "irrational" "irrationally" ;
+lin irrationality_N = mkN "irrationality" "irrationalities" ;
+lin irreclaimable_A = mkAMost "irreclaimable" "irreclaimably" ;
+lin irreconcilable_A = mkAMost "irreconcilable" "irreconcilably" ;
+lin irrecoverable_A = mkAMost "irrecoverable" "irrecoverably" ;
+lin irredeemable_A = mkAMost "irredeemable" "irredeemably" ;
+lin irredenta_N = mkN "irredenta" "irredentas" ;
+lin irredentism_N = mkN "irredentism" "irredentisms" ;
+lin irredentist_N = mkN "irredentist" "irredentists" ;
+lin irreducible_A = mkAMost "irreducible" "irreducibly" ;
+lin irrefutable_A = mkAMost "irrefutable" "irrefutably" ;
+lin irregardless_Adv = mkAdv "irregardless" ;
+lin irregular_A = mkAMost "irregular" "irregularly" ;
+lin irregular_N = mkN "irregular" "irregulars" ;
+lin irregularity_N = mkN "irregularity" "irregularities" ;
+lin irrelevance_N = mkN "irrelevance" "irrelevances" ;
+lin irrelevancy_N = mkN "irrelevancy" "irrelevancies" ;
+lin irrelevant_A = mkAMost "irrelevant" "irrelevantly" ;
+lin irreligionist_N = mkN "irreligionist" "irreligionists" ;
+lin irreligious_A = mkAMost "irreligious" "irreligiously" ;
+lin irreligiousness_N = mkN "irreligiousness" "irreligiousnesses" ;
+lin irremediable_A = mkAMost "irremediable" "irremediably" ;
+lin irremovable_A = mkAMost "irremovable" "irremovably" ;
+lin irreparable_A = mkAMost "irreparable" "irreparably" ;
+lin irreplaceable_A = mkAMost "irreplaceable" "irreplaceably" ;
+lin irreplaceableness_N = mkN "irreplaceableness" "irreplaceablenesses" ;
+lin irrepressibility_N = mkN "irrepressibility" "irrepressibilities" ;
+lin irrepressible_A = mkAMost "irrepressible" "irrepressibly" ;
+lin irreproachable_A = mkAMost "irreproachable" "irreproachably" ;
+lin irreproducibility_N = mkN "irreproducibility" "irreproducibilities" ;
+lin irresistibility_N = mkN "irresistibility" "irresistibilities" ;
+lin irresistible_A = mkAMost "irresistible" "irresistibly" ;
+lin irresolute_A = mkAMost "irresolute" "irresolutely" ;
+lin irresoluteness_N = mkN "irresoluteness" "irresolutenesses" ;
+lin irresolution_N = mkN "irresolution" "irresolutions" ;
+lin irrespective_A = mkAMost "irrespective" "irrespectively" ;
+lin irresponsibility_N = mkN "irresponsibility" "irresponsibilities" ;
+lin irresponsible_A = mkAMost "irresponsible" "irresponsibly" ;
+lin irretrievable_A = mkAMost "irretrievable" "irretrievably" ;
+lin irreverence_N = mkN "irreverence" "irreverences" ;
+lin irreverent_A = mkAMost "irreverent" "irreverently" ;
+lin irreversibility_N = mkN "irreversibility" "irreversibilities" ;
+lin irreversible_A = mkAMost "irreversible" "irreversibly" ;
+lin irrevocable_A = mkAMost "irrevocable" "irrevocably" ;
+lin irridentism_N = mkN "irridentism" "irridentisms" ;
+lin irrigate_V = mkV "irrigate" "irrigated" "irrigated" ;
+lin irrigation_N = mkN "irrigation" "irrigations" ;
+lin irritability_N = mkN "irritability" "irritabilities" ;
+lin irritable_A = mkAMost "irritable" "irritably" ;
+lin irritant_A = mkAMost "irritant" "irritantly" ;
+lin irritant_N = mkN "irritant" "irritants" ;
+lin irritate_V = mkV "irritate" "irritated" "irritated" ;
+lin irritating_A = mkAMost "irritating" "irritatingly" ;
+lin irritation_N = mkN "irritation" "irritations" ;
+lin irruption_N = mkN "irruption" "irruptions" ;
+lin irruptive_A = mkAMost "irruptive" "irruptively" ;
+lin ischemia_N = mkN "ischemia" "ischemias" ;
+lin ischemic_A = mkAMost "ischemic" "ischemicly" ;
+lin ischium_N = mkN "ischium" "ischiums" ;
+lin isentropic_A = mkAMost "isentropic" "isentropicly" ;
+lin isinglass_N = mkN "isinglass" "isinglasses" ;
+lin island_N = mkN "island" "islands" ;
+lin islander_N = mkN "islander" "islanders" ;
+lin isle_N = mkN "isle" "isles" ;
+lin islet_N = mkN "islet" "islets" ;
+lin ism_N = mkN "ism" "isms" ;
+lin isoagglutination_N = mkN "isoagglutination" "isoagglutinations" ;
+lin isoagglutinin_N = mkN "isoagglutinin" "isoagglutinins" ;
+lin isoagglutinogen_N = mkN "isoagglutinogen" "isoagglutinogens" ;
+lin isoantibody_N = mkN "isoantibody" "isoantibodies" ;
+lin isobar_N = mkN "isobar" "isobars" ;
+lin isobutylene_N = mkN "isobutylene" "isobutylenes" ;
+lin isocarboxazid_N = mkN "isocarboxazid" "isocarboxazids" ;
+lin isochronal_A = mkAMost "isochronal" "isochronally" ;
+lin isochrone_N = mkN "isochrone" "isochrones" ;
+lin isoclinal_A = mkAMost "isoclinal" "isoclinally" ;
+lin isocyanate_N = mkN "isocyanate" "isocyanates" ;
+lin isoflurane_N = mkN "isoflurane" "isofluranes" ;
+lin isogamete_N = mkN "isogamete" "isogametes" ;
+lin isogamy_N = mkN "isogamy" "isogamies" ;
+lin isogon_N = mkN "isogon" "isogons" ;
+lin isogonic_A = mkAMost "isogonic" "isogonicly" ;
+lin isogram_N = mkN "isogram" "isograms" ;
+lin isohel_N = mkN "isohel" "isohels" ;
+lin isolable_A = mkAMost "isolable" "isolably" ;
+lin isolate_V = mkV "isolate" "isolated" "isolated" ;
+lin isolation_N = mkN "isolation" "isolations" ;
+lin isolationism_N = mkN "isolationism" "isolationisms" ;
+lin isolationist_A = mkAMost "isolationist" "isolationistly" ;
+lin isolationist_N = mkN "isolationist" "isolationists" ;
+lin isoleucine_N = mkN "isoleucine" "isoleucines" ;
+lin isomer_N = mkN "isomer" "isomers" ;
+lin isomerase_N = mkN "isomerase" "isomerases" ;
+lin isomeric_A = mkAMost "isomeric" "isomericly" ;
+lin isomerism_N = mkN "isomerism" "isomerisms" ;
+lin isomerization_N = mkN "isomerization" "isomerizations" ;
+lin isometric_A = mkAMost "isometric" "isometricly" ;
+lin isometrics_N = mkN "isometrics" "isometricses" ;
+lin isometropia_N = mkN "isometropia" "isometropias" ;
+lin isometry_N = mkN "isometry" "isometries" ;
+lin isomorphism_N = mkN "isomorphism" "isomorphisms" ;
+lin isomorphous_A = mkAMost "isomorphous" "isomorphously" ;
+lin isoniazid_N = mkN "isoniazid" "isoniazids" ;
+lin isopod_N = mkN "isopod" "isopods" ;
+lin isoproterenol_N = mkN "isoproterenol" "isoproterenols" ;
+lin isopteran_A = mkAMost "isopteran" "isopteranly" ;
+lin isosceles_A = mkAMost "isosceles" "isoscelesly" ;
+lin isosorbide_N = mkN "isosorbide" "isosorbides" ;
+lin isostasy_N = mkN "isostasy" "isostasies" ;
+lin isotherm_N = mkN "isotherm" "isotherms" ;
+lin isothermal_A = mkAMost "isothermal" "isothermally" ;
+lin isothermic_A = mkAMost "isothermic" "isothermicly" ;
+lin isothiocyanate_N = mkN "isothiocyanate" "isothiocyanates" ;
+lin isotonic_A = mkAMost "isotonic" "isotonicly" ;
+lin isotope_N = mkN "isotope" "isotopes" ;
+lin isotopic_A = mkAMost "isotopic" "isotopicly" ;
+lin isotropic_A = mkAMost "isotropic" "isotropicly" ;
+lin isotropically_Adv = mkAdv "isotropically" ;
+lin isotropy_N = mkN "isotropy" "isotropies" ;
+lin israeli_A = mkAMost "israeli" "israelily" ;
+lin israeli_N = mkN "israeli" "israelis" ;
+lin issue_N = mkN "issue" "issues" ;
+lin issue_V = mkV "issue" "issued" "issued" ;
+lin issuer_N = mkN "issuer" "issuers" ;
+lin isthmian_A = mkAMost "isthmian" "isthmianly" ;
+lin isthmus_N = mkN "isthmus" "isthmuses" ;
+lin italic_A = mkAMost "italic" "italicly" ;
+lin italic_N = mkN "italic" "italics" ;
+lin italicize_V = mkV "italicize" "italicized" "italicized" ;
+lin itch_N = mkN "itch" "itches" ;
+lin itch_V = mkV "itch" "itched" "itched" ;
+lin itchy_A = mkA "itchy" "itchier" "itchiest" "itchily" ;
+lin item_Adv = mkAdv "item" ;
+lin item_N = mkN "item" "items" ;
+lin itemize_V = mkV "itemize" "itemized" "itemized" ;
+lin iterate_V = mkV "iterate" "iterated" "iterated" ;
+lin iteration_N = mkN "iteration" "iterations" ;
+lin iterative_A = mkAMost "iterative" "iteratively" ;
+lin iterative_N = mkN "iterative" "iteratives" ;
+lin itinerant_A = mkAMost "itinerant" "itinerantly" ;
+lin itinerant_N = mkN "itinerant" "itinerants" ;
+lin itinerary_N = mkN "itinerary" "itineraries" ;
+lin itineration_N = mkN "itineration" "itinerations" ;
+lin itraconazole_N = mkN "itraconazole" "itraconazoles" ;
+lin itv_N = mkN "itv" "itvs" ;
+lin iud_N = mkN "iud" "iuds" ;
+lin ivied_A = mkAMost "ivied" "iviedly" ;
+lin ivory_N = mkN "ivory" "ivories" ;
+lin ivorybill_N = mkN "ivorybill" "ivorybills" ;
+lin ivy_N = mkN "ivy" "ivies" ;
+lin izar_N = mkN "izar" "izars" ;
+lin jab_N = mkN "jab" "jabs" ;
+lin jab_V = mkV "jab" "jabbed" "jabbed" ;
+lin jabber_N = mkN "jabber" "jabbers" ;
+lin jabber_V = mkV "jabber" "jabbered" "jabbered" ;
+lin jabberer_N = mkN "jabberer" "jabberers" ;
+lin jabberwocky_N = mkN "jabberwocky" "jabberwockies" ;
+lin jabiru_N = mkN "jabiru" "jabirus" ;
+lin jabot_N = mkN "jabot" "jabots" ;
+lin jaboticaba_N = mkN "jaboticaba" "jaboticabas" ;
+lin jacamar_N = mkN "jacamar" "jacamars" ;
+lin jack_N = mkN "jack" "jacks" ;
+lin jack_V = mkV "jack" "jacked" "jacked" ;
+lin jack_in_the_box_N = mkN "jack-in-the-box" "jack-in-the-boxes" ;
+lin jack_knife_N = mkN "jack-knife" "jack-knives" ;
+lin jack_knife_V = mkV "jack-knife" "jack-knifed" "jack-knifed" ;
+lin jack_o'_lantern_N = mkN "jack-o'-lantern" "jack-o'-lanterns" ;
+lin jack_plane_N = mkN "jack-plane" "jack-planes" ;
+lin jackal_N = mkN "jackal" "jackals" ;
+lin jackanapes_N = mkN "jackanapes" "IRREG" ;
+lin jackass_N = mkN "jackass" "jackasses" ;
+lin jackboot_N = mkN "jackboot" "jackboots" ;
+lin jackdaw_N = mkN "jackdaw" "jackdaws" ;
+lin jacket_N = mkN "jacket" "jackets" ;
+lin jackfruit_N = mkN "jackfruit" "jackfruits" ;
+lin jackknife_N = mkN "jackknife" "jackknifes" ;
+lin jacklight_N = mkN "jacklight" "jacklights" ;
+lin jackpot_N = mkN "jackpot" "jackpots" ;
+lin jackrabbit_N = mkN "jackrabbit" "jackrabbits" ;
+lin jacks_N = mkN "jacks" "jackses" ;
+lin jackscrew_N = mkN "jackscrew" "jackscrews" ;
+lin jacksmelt_N = mkN "jacksmelt" "jacksmelts" ;
+lin jacksnipe_N = mkN "jacksnipe" "jacksnipes" ;
+lin jackstraw_N = mkN "jackstraw" "jackstraws" ;
+lin jackstraws_N = mkN "jackstraws" "jackstrawses" ;
+lin jacobean_A = mkAMost "jacobean" "jacobeanly" ;
+lin jacobin_A = mkAMost "jacobin" "jacobinly" ;
+lin jacobin_N = mkN "jacobin" "jacobins" ;
+lin jacobinism_N = mkN "jacobinism" "jacobinisms" ;
+lin jacobite_N = mkN "jacobite" "jacobites" ;
+lin jaconet_N = mkN "jaconet" "jaconets" ;
+lin jacquard_N = mkN "jacquard" "jacquards" ;
+lin jactitation_N = mkN "jactitation" "jactitations" ;
+lin jade_A = mkA "jade" "jader" "jadest" "jadely" ;
+lin jade_N = mkN "jade" "jades" ;
+lin jaded_A = mkAMost "jaded" "jadedly" ;
+lin jadeite_N = mkN "jadeite" "jadeites" ;
+lin jaeger_N = mkN "jaeger" "jaegers" ;
+lin jag_N = mkN "jag" "jags" ;
+lin jag_V = mkV "jag" "jagged" "jagged" ;
+lin jaggedness_N = mkN "jaggedness" "jaggednesses" ;
+lin jaggery_N = mkN "jaggery" "jaggeries" ;
+lin jaggy_A = mkA "jaggy" "jaggier" "jaggiest" "jaggily" ;
+lin jaguar_N = mkN "jaguar" "jaguars" ;
+lin jaguarundi_N = mkN "jaguarundi" "jaguarundis" ;
+lin jail_N = mkN "jail" "jails" ;
+lin jail_V = mkV "jail" "jailed" "jailed" ;
+lin jailer_N = mkN "jailer" "jailers" ;
+lin jailor_N = mkN "jailor" "jailors" ;
+lin jakes_N = mkN "jakes" "IRREG" ;
+lin jalapeno_N = mkN "jalapeno" "jalapenoes" ;
+lin jalopy_N = mkN "jalopy" "jalopies" ;
+lin jalousie_N = mkN "jalousie" "jalousies" ;
+lin jam_N = mkN "jam" "jams" ;
+lin jam_V = mkV "jam" "jammed" "jammed" ;
+lin jamaican_A = mkAMost "jamaican" "jamaicanly" ;
+lin jamaican_N = mkN "jamaican" "jamaicans" ;
+lin jamb_N = mkN "jamb" "jambs" ;
+lin jambalaya_N = mkN "jambalaya" "jambalayas" ;
+lin jamboree_N = mkN "jamboree" "jamborees" ;
+lin jamjar_N = mkN "jamjar" "jamjars" ;
+lin jammer_N = mkN "jammer" "jammers" ;
+lin jamming_N = mkN "jamming" "jammings" ;
+lin jampack_V = mkV "jampack" "jampacked" "jampacked" ;
+lin jampan_N = mkN "jampan" "jampans" ;
+lin jampot_N = mkN "jampot" "jampots" ;
+lin jangle_N = mkN "jangle" "jangles" ;
+lin jangle_V = mkV "jangle" "jangled" "jangled" ;
+lin janissary_N = mkN "janissary" "janissaries" ;
+lin janitor_N = mkN "janitor" "janitors" ;
+lin japan_N = mkN "japan" "japans" ;
+lin japan_V = mkV "japan" "japanned" "japanned" ;
+lin jape_N = mkN "jape" "japes" ;
+lin japonica_N = mkN "japonica" "japonicas" ;
+lin jar_N = mkN "jar" "jars" ;
+lin jar_V = mkV "jar" "jarred" "jarred" ;
+lin jarful_N = mkN "jarful" "jarfuls" ;
+lin jargon_N = mkN "jargon" "jargons" ;
+lin jargoon_N = mkN "jargoon" "jargoons" ;
+lin jarringly_Adv = mkAdv "jarringly" ;
+lin jasmine_N = mkN "jasmine" "jasmines" ;
+lin jasper_N = mkN "jasper" "jaspers" ;
+lin jassid_N = mkN "jassid" "jassids" ;
+lin jati_N = mkN "jati" "jatis" ;
+lin jaundice_N = mkN "jaundice" "jaundices" ;
+lin jaundice_V = mkV "jaundice" "jaundiced" "jaundiced" ;
+lin jaunt_N = mkN "jaunt" "jaunts" ;
+lin jaunt_V = mkV "jaunt" "jaunted" "jaunted" ;
+lin jauntiness_N = mkN "jauntiness" "jauntinesses" ;
+lin jaunting_car_N = mkN "jaunting-car" "jaunting-cars" ;
+lin jaunty_A = mkA "jaunty" "jauntier" "jauntiest" "jauntily" ;
+lin javanese_A = mkAMost "javanese" "javanesely" ;
+lin javanese_N = mkN "javanese" "javanese" ;
+lin javelin_N = mkN "javelin" "javelins" ;
+lin jaw_N = mkN "jaw" "jaws" ;
+lin jaw_V = mkV "jaw" "jawed" "jawed" ;
+lin jawan_N = mkN "jawan" "jawans" ;
+lin jawbone_N = mkN "jawbone" "jawbones" ;
+lin jawbreaker_N = mkN "jawbreaker" "jawbreakers" ;
+lin jawed_A = mkAMost "jawed" "jawedly" ;
+lin jawfish_N = mkN "jawfish" "jawfishes" ;
+lin jawless_A = mkAMost "jawless" "jawlessly" ;
+lin jay_N = mkN "jay" "jays" ;
+lin jaywalk_V = mkV "jaywalk" "jaywalked" "jaywalked" ;
+lin jaywalker_N = mkN "jaywalker" "jaywalkers" ;
+lin jazz_N = mkN "jazz" "jazzes" ;
+lin jazz_V = mkV "jazz" "jazzed" "jazzed" ;
+lin jazzy_A = mkA "jazzy" "jazzier" "jazziest" "jazzily" ;
+lin jealous_A = mkAMost "jealous" "jealously" ;
+lin jealousy_N = mkN "jealousy" "jealousies" ;
+lin jean_N = mkN "jean" "jeans" ;
+lin jeep_N = mkN "jeep" "jeeps" ;
+lin jeer_N = mkN "jeer" "jeers" ;
+lin jeer_V = mkV "jeer" "jeered" "jeered" ;
+lin jeeringly_Adv = mkAdv "jeeringly" ;
+lin jejune_A = mkAMost "jejune" "jejunely" ;
+lin jejuneness_N = mkN "jejuneness" "jejunenesses" ;
+lin jejunitis_N = mkN "jejunitis" "jejunitises" ;
+lin jejunity_N = mkN "jejunity" "jejunities" ;
+lin jejunoileitis_N = mkN "jejunoileitis" "jejunoileitises" ;
+lin jejunostomy_N = mkN "jejunostomy" "jejunostomies" ;
+lin jejunum_N = mkN "jejunum" "jejunums" ;
+lin jell_V = mkV "jell" "jelled" "jelled" ;
+lin jellaba_N = mkN "jellaba" "jellabas" ;
+lin jello_N = mkN "jello" "jelloes" ;
+lin jelly_N = mkN "jelly" "jellies" ;
+lin jelly_V = mkV "jelly" "jellied" "jellied" ;
+lin jellyfish_N = mkN "jellyfish" "jellyfish" ;
+lin jellyroll_N = mkN "jellyroll" "jellyrolls" ;
+lin jemmy_N = mkN "jemmy" "jemmies" ;
+lin jennet_N = mkN "jennet" "jennets" ;
+lin jenny_N = mkN "jenny" "jennies" ;
+lin jeopardize_V = mkV "jeopardize" "jeopardized" "jeopardized" ;
+lin jeopardy_N = mkN "jeopardy" "jeopardies" ;
+lin jerboa_N = mkN "jerboa" "jerboas" ;
+lin jeremiad_N = mkN "jeremiad" "jeremiads" ;
+lin jerk_N = mkN "jerk" "jerks" ;
+lin jerk_V = mkV "jerk" "jerked" "jerked" ;
+lin jerkin_N = mkN "jerkin" "jerkins" ;
+lin jerkiness_N = mkN "jerkiness" "jerkinesses" ;
+lin jerkwater_A = mkAMost "jerkwater" "jerkwaterly" ;
+lin jerky_A = mkA "jerky" "jerkier" "jerkiest" "jerkily" ;
+lin jerky_N = mkN "jerky" "jerkies" ;
+lin jeroboam_N = mkN "jeroboam" "jeroboams" ;
+lin jerry_N = mkN "jerry" "jerries" ;
+lin jerry_builder_N = mkN "jerry-builder" "jerry-builders" ;
+lin jerry_building_N = mkN "jerry-building" "jerry-buildings" ;
+lin jerry_built_A = mkAMost "jerry-built" "jerry-builtly" ;
+lin jersey_N = mkN "jersey" "jerseys" ;
+lin jest_N = mkN "jest" "jests" ;
+lin jest_V = mkV "jest" "jested" "jested" ;
+lin jester_N = mkN "jester" "jesters" ;
+lin jesuit_N = mkN "jesuit" "jesuits" ;
+lin jesuitical_A = mkAMost "jesuitical" "jesuitically" ;
+lin jet_N = mkN "jet" "jets" ;
+lin jet_V = mkV "jet" "jetted" "jetted" ;
+lin jet_black_A = mkAMost "jet-black" "jet-blackly" ;
+lin jet_propelled_A = mkAMost "jet-propelled" "jet-propelledly" ;
+lin jetliner_N = mkN "jetliner" "jetliners" ;
+lin jetsam_N = mkN "jetsam" "jetsams" ;
+lin jettison_V = mkV "jettison" "jettisoned" "jettisoned" ;
+lin jetty_N = mkN "jetty" "jetties" ;
+lin jewel_N = mkN "jewel" "jewels" ;
+lin jewel_V = mkV "jewel" "jewelled" "jewelled" ;
+lin jeweler_N = mkN "jeweler" "jewelers" ;
+lin jeweller_N = mkN "jeweller" "jewellers" ;
+lin jewellery_N = mkN "jewellery" "jewelleries" ;
+lin jewelry_N = mkN "jewelry" "jewelries" ;
+lin jewelweed_N = mkN "jewelweed" "jewelweeds" ;
+lin jewess_N = mkN "jewess" "jewesses" ;
+lin jewfish_N = mkN "jewfish" "jewfishes" ;
+lin jewish_A = mkAMost "jewish" "jewishly" ;
+lin jezebel_N = mkN "jezebel" "jezebels" ;
+lin jiao_N = mkN "jiao" "jiaoes" ;
+lin jib_N = mkN "jib" "jibs" ;
+lin jib_V = mkV "jib" "jibbed" "jibbed" ;
+lin jib_boom_N = mkN "jib-boom" "jib-booms" ;
+lin jibboom_N = mkN "jibboom" "jibbooms" ;
+lin jibe_N = mkN "jibe" "jibes" ;
+lin jibe_V = mkV "jibe" "jibed" "jibed" ;
+lin jiffy_N = mkN "jiffy" "jiffies" ;
+lin jig_N = mkN "jig" "jigs" ;
+lin jig_V = mkV "jig" "jigged" "jigged" ;
+lin jigger_N = mkN "jigger" "jiggers" ;
+lin jiggered_A = mkAMost "jiggered" "jiggeredly" ;
+lin jiggermast_N = mkN "jiggermast" "jiggermasts" ;
+lin jiggery_pokery_N = mkN "jiggery-pokery" "jiggery-pokeries" ;
+lin jiggle_N = mkN "jiggle" "jiggles" ;
+lin jiggle_V = mkV "jiggle" "jiggled" "jiggled" ;
+lin jigsaw_N = mkN "jigsaw" "jigsaws" ;
+lin jihad_N = mkN "jihad" "jihads" ;
+lin jihadi_A = mkAMost "jihadi" "jihadily" ;
+lin jilt_N = mkN "jilt" "jilts" ;
+lin jilt_V = mkV "jilt" "jilted" "jilted" ;
+lin jim_crow_N = mkN "jim crow" "IRREG" ;
+lin jimdandy_N = mkN "jimdandy" "jimdandies" ;
+lin jimmies_N = mkN "jimmies" "jimmieses" ;
+lin jimmy_N = mkN "jimmy" "jimmies" ;
+lin jimsonweed_N = mkN "jimsonweed" "jimsonweeds" ;
+lin jingle_N = mkN "jingle" "jingles" ;
+lin jingle_V = mkV "jingle" "jingled" "jingled" ;
+lin jingo_N = mkN "jingo" "jingoes" ;
+lin jingoism_N = mkN "jingoism" "jingoisms" ;
+lin jingoist_N = mkN "jingoist" "jingoists" ;
+lin jingoistic_A = mkAMost "jingoistic" "jingoisticly" ;
+lin jinks_N = mkN "jinks" "jinkses" ;
+lin jinn_N = mkN "jinn" "jinns" ;
+lin jinrikisha_N = mkN "jinrikisha" "jinrikishas" ;
+lin jinx_N = mkN "jinx" "jinxes" ;
+lin jiqui_N = mkN "jiqui" "jiquis" ;
+lin jird_N = mkN "jird" "jirds" ;
+lin jitney_N = mkN "jitney" "jitneys" ;
+lin jitter_N = mkN "jitter" "jitters" ;
+lin jitterbug_N = mkN "jitterbug" "jitterbugs" ;
+lin jitteriness_N = mkN "jitteriness" "jitterinesses" ;
+lin jittering_A = mkAMost "jittering" "jitteringly" ;
+lin jitters_N = mkN "jitters" "jitterses" ;
+lin jittery_A = mkAMost "jittery" "jitterily" ;
+lin jive_N = mkN "jive" "jives" ;
+lin jive_V = mkV "jive" "jived" "jived" ;
+lin job_N = mkN "job" "jobs" ;
+lin job_V = mkV "job" "jobbed" "jobbed" ;
+lin jobber_N = mkN "jobber" "jobbers" ;
+lin jobbery_N = mkN "jobbery" "jobberies" ;
+lin jobcentre_N = mkN "jobcentre" "jobcentres" ;
+lin jobholder_N = mkN "jobholder" "jobholders" ;
+lin jockey_N = mkN "jockey" "jockeys" ;
+lin jockey_V = mkV "jockey" "jockeyed" "jockeyed" ;
+lin jocose_A = mkAMost "jocose" "jocosely" ;
+lin jocoseness_N = mkN "jocoseness" "jocosenesses" ;
+lin jocosity_N = mkN "jocosity" "jocosities" ;
+lin jocular_A = mkAMost "jocular" "jocularly" ;
+lin jocularity_N = mkN "jocularity" "jocularities" ;
+lin jocund_A = mkAMost "jocund" "jocundly" ;
+lin jocundity_N = mkN "jocundity" "jocundities" ;
+lin jodhpur_N = mkN "jodhpur" "jodhpurs" ;
+lin jodhpurs_N = mkN "jodhpurs" "jodhpurses" ;
+lin jog_N = mkN "jog" "jogs" ;
+lin jog_V = mkV "jog" "jogged" "jogged" ;
+lin jog_trot_N = mkN "jog-trot" "jog-trots" ;
+lin jogger_N = mkN "jogger" "joggers" ;
+lin jogging_N = mkN "jogging" "joggings" ;
+lin joggle_N = mkN "joggle" "joggles" ;
+lin joggle_V = mkV "joggle" "joggled" "joggled" ;
+lin john_bull_N = mkN "john bull" "IRREG" ;
+lin johnnycake_N = mkN "johnnycake" "johnnycakes" ;
+lin joie_de_vivre_N = mkN "joie de vivre" "joie de vivres" ;
+lin join_N = mkN "join" "joins" ;
+lin join_V = mkV "join" "joined" "joined" ;
+lin joiner_N = mkN "joiner" "joiners" ;
+lin joinery_N = mkN "joinery" "joineries" ;
+lin joining_N = mkN "joining" "joinings" ;
+lin joint_A = mkAMost "joint" "jointly" ;
+lin joint_N = mkN "joint" "joints" ;
+lin joint_V = mkV "joint" "jointed" "jointed" ;
+lin jointer_N = mkN "jointer" "jointers" ;
+lin jointure_N = mkN "jointure" "jointures" ;
+lin joist_N = mkN "joist" "joists" ;
+lin joke_N = mkN "joke" "jokes" ;
+lin joke_V = mkV "joke" "joked" "joked" ;
+lin joker_N = mkN "joker" "jokers" ;
+lin jokingly_Adv = mkAdv "jokingly" ;
+lin jollification_N = mkN "jollification" "jollifications" ;
+lin jollity_N = mkN "jollity" "jollities" ;
+lin jolly_A = mkA "jolly" "jollier" "jolliest" "jollily" ;
+lin jolly_Adv = mkAdv "jolly" ;
+lin jolly_N = mkN "jolly" "jollies" ;
+lin jolly_V = mkV "jolly" "jollied" "jollied" ;
+lin jollyboat_N = mkN "jollyboat" "jollyboats" ;
+lin jolt_N = mkN "jolt" "jolts" ;
+lin jolt_V = mkV "jolt" "jolted" "jolted" ;
+lin jolty_A = mkA "jolty" "joltier" "joltiest" "joltily" ;
+lin jonah_N = mkN "jonah" "jonahs" ;
+lin jonquil_N = mkN "jonquil" "jonquils" ;
+lin jorum_N = mkN "jorum" "jorums" ;
+lin joss_N = mkN "joss" "josses" ;
+lin joss_house_N = mkN "joss-house" "joss-houses" ;
+lin joss_stick_N = mkN "joss-stick" "joss-sticks" ;
+lin jostle_N = mkN "jostle" "jostles" ;
+lin jostle_V = mkV "jostle" "jostled" "jostled" ;
+lin jot_N = mkN "jot" "jots" ;
+lin jot_V = mkV "jot" "jotted" "jotted" ;
+lin jotter_N = mkN "jotter" "jotters" ;
+lin jotting_N = mkN "jotting" "jottings" ;
+lin joule_N = mkN "joule" "joules" ;
+lin journal_N = mkN "journal" "journals" ;
+lin journalese_N = mkN "journalese" "journaleses" ;
+lin journalism_N = mkN "journalism" "journalisms" ;
+lin journalist_N = mkN "journalist" "journalists" ;
+lin journalistic_A = mkAMost "journalistic" "journalisticly" ;
+lin journalistically_Adv = mkAdv "journalistically" ;
+lin journey_N = mkN "journey" "journeys" ;
+lin journey_V = mkV "journey" "journeyed" "journeyed" ;
+lin journeyman_N = mkN "journeyman" "journeymen" ;
+lin joust_N = mkN "joust" "jousts" ;
+lin joust_V = mkV "joust" "jousted" "jousted" ;
+lin jovial_A = mkAMost "jovial" "jovially" ;
+lin joviality_N = mkN "joviality" "jovialities" ;
+lin jowl_N = mkN "jowl" "jowls" ;
+lin jowly_A = mkA "jowly" "jowlier" "jowliest" "jowlily" ;
+lin joy_N = mkN "joy" "joys" ;
+lin joy_V = mkV "joy" "joyed" "joyed" ;
+lin joy_ride_N = mkN "joy-ride" "joy-rides" ;
+lin joy_stick_N = mkN "joy-stick" "joy-sticks" ;
+lin joyful_A = mkAMost "joyful" "joyfully" ;
+lin joyfulness_N = mkN "joyfulness" "joyfulnesses" ;
+lin joyless_A = mkAMost "joyless" "joylessly" ;
+lin joylessness_N = mkN "joylessness" "joylessnesses" ;
+lin joyous_A = mkAMost "joyous" "joyously" ;
+lin joyousness_N = mkN "joyousness" "joyousnesses" ;
+lin joyride_N = mkN "joyride" "joyrides" ;
+lin joystick_N = mkN "joystick" "joysticks" ;
+lin jp_N = mkN "jp" "jps" ;
+lin ju_jitsu_N = mkN "ju-jitsu" "ju-jitsus" ;
+lin jubilant_A = mkAMost "jubilant" "jubilantly" ;
+lin jubilation_N = mkN "jubilation" "jubilations" ;
+lin jubilee_N = mkN "jubilee" "jubilees" ;
+lin judaic_A = mkAMost "judaic" "judaicly" ;
+lin judaism_N = mkN "judaism" "judaisms" ;
+lin judas_N = mkN "judas" "judases" ;
+lin judder_V = mkV "judder" "juddered" "juddered" ;
+lin judge_N = mkN "judge" "judges" ;
+lin judge_V = mkV "judge" "judged" "judged" ;
+lin judgement_N = mkN "judgement" "judgements" ;
+lin judgeship_N = mkN "judgeship" "judgeships" ;
+lin judgment_N = mkN "judgment" "judgments" ;
+lin judgmental_A = mkAMost "judgmental" "judgmentally" ;
+lin judicable_A = mkAMost "judicable" "judicably" ;
+lin judicature_N = mkN "judicature" "judicatures" ;
+lin judicial_A = mkAMost "judicial" "judicially" ;
+lin judiciary_N = mkN "judiciary" "judiciaries" ;
+lin judicious_A = mkAMost "judicious" "judiciously" ;
+lin judiciousness_N = mkN "judiciousness" "judiciousnesses" ;
+lin judo_N = mkN "judo" "judoes" ;
+lin jug_N = mkN "jug" "jugs" ;
+lin jug_V = mkV "jug" "jugged" "jugged" ;
+lin jugale_N = mkN "jugale" "jugales" ;
+lin jugful_N = mkN "jugful" "jugfuls" ;
+lin juggernaut_N = mkN "juggernaut" "juggernauts" ;
+lin juggle_N = mkN "juggle" "juggles" ;
+lin juggle_V = mkV "juggle" "juggled" "juggled" ;
+lin juggler_N = mkN "juggler" "jugglers" ;
+lin jugglery_N = mkN "jugglery" "juggleries" ;
+lin jugular_A = mkAMost "jugular" "jugularly" ;
+lin jugular_N = mkN "jugular" "jugulars" ;
+lin juice_N = mkN "juice" "juices" ;
+lin juice_V = mkV "juice" "juiced" "juiced" ;
+lin juiceless_A = mkAMost "juiceless" "juicelessly" ;
+lin juiciness_N = mkN "juiciness" "juicinesses" ;
+lin juicy_A = mkA "juicy" "juicier" "juiciest" "juicily" ;
+lin juju_N = mkN "juju" "jujus" ;
+lin jujube_N = mkN "jujube" "jujubes" ;
+lin jujutsu_N = mkN "jujutsu" "jujutsus" ;
+lin juke_N = mkN "juke" "jukes" ;
+lin jukebox_N = mkN "jukebox" "jukeboxes" ;
+lin julep_N = mkN "julep" "juleps" ;
+lin julian_A = mkAMost "julian" "julianly" ;
+lin julienne_N = mkN "julienne" "juliennes" ;
+lin jumble_N = mkN "jumble" "jumbles" ;
+lin jumble_V = mkV "jumble" "jumbled" "jumbled" ;
+lin jumble_sale_N = mkN "jumble-sale" "jumble-sales" ;
+lin jumbo_A = mkAMost "jumbo" "jumboly" ;
+lin jumbojet_N = mkN "jumbojet" "jumbojets" ;
+lin jumentous_A = mkAMost "jumentous" "jumentously" ;
+lin jump_N = mkN "jump" "jumps" ;
+lin jump_V = mkV "jump" "jumped" "jumped" ;
+lin jumped_up_A = mkAMost "jumped-up" "jumped-uply" ;
+lin jumper_N = mkN "jumper" "jumpers" ;
+lin jumpiness_N = mkN "jumpiness" "jumpinesses" ;
+lin jumping_N = mkN "jumping" "jumpings" ;
+lin jumpstart_N = mkN "jumpstart" "jumpstarts" ;
+lin jumpy_A = mkA "jumpy" "jumpier" "jumpiest" "jumpily" ;
+lin junco_N = mkN "junco" "juncoes" ;
+lin junction_N = mkN "junction" "junctions" ;
+lin juncture_N = mkN "juncture" "junctures" ;
+lin jungle_N = mkN "jungle" "jungles" ;
+lin jungly_A = mkA "jungly" "junglier" "jungliest" "junglily" ;
+lin junior_A = mkAMost "junior" "juniorly" ;
+lin junior_N = mkN "junior" "juniors" ;
+lin juniper_N = mkN "juniper" "junipers" ;
+lin junk_N = mkN "junk" "junks" ;
+lin junk_V = mkV "junk" "junked" "junked" ;
+lin junk_shop_N = mkN "junk-shop" "junk-shops" ;
+lin junket_N = mkN "junket" "junkets" ;
+lin junket_V = mkV "junket" "junketed" "junketed" ;
+lin junketing_N = mkN "junketing" "junketings" ;
+lin junkie_N = mkN "junkie" "junkies" ;
+lin junky_N = mkN "junky" "junkies" ;
+lin junkyard_N = mkN "junkyard" "junkyards" ;
+lin junoesque_A = mkAMost "junoesque" "junoesquely" ;
+lin junta_N = mkN "junta" "juntas" ;
+lin jupati_N = mkN "jupati" "jupatis" ;
+lin jural_A = mkAMost "jural" "jurally" ;
+lin juridical_A = mkAMost "juridical" "juridically" ;
+lin jurisdiction_N = mkN "jurisdiction" "jurisdictions" ;
+lin jurisdictional_A = mkAMost "jurisdictional" "jurisdictionally" ;
+lin jurisprudence_N = mkN "jurisprudence" "jurisprudences" ;
+lin jurisprudential_A = mkAMost "jurisprudential" "jurisprudentially" ;
+lin jurist_N = mkN "jurist" "jurists" ;
+lin juror_N = mkN "juror" "jurors" ;
+lin jury_N = mkN "jury" "juries" ;
+lin jury_box_N = mkN "jury-box" "jury-boxes" ;
+lin jury_mast_N = mkN "jury-mast" "jury-masts" ;
+lin jury_rigge_V = mkV "jury-rigge" "jury-rigged" "jury-rigged" ;
+lin juryman_N = mkN "juryman" "jurymen" ;
+lin just_A = mkA "just" "juster" "justest" "justly" ;
+lin just_Adv = mkAdv "just" ;
+lin justice_N = mkN "justice" "justices" ;
+lin justiciar_N = mkN "justiciar" "justiciars" ;
+lin justiciary_N = mkN "justiciary" "justiciaries" ;
+lin justifiable_A = mkAMost "justifiable" "justifiably" ;
+lin justification_N = mkN "justification" "justifications" ;
+lin justificative_A = mkAMost "justificative" "justificatively" ;
+lin justify_V = mkV "justify" "justified" "justified" ;
+lin justness_N = mkN "justness" "justnesses" ;
+lin jut_V = mkV "jut" "jutted" "jutted" ;
+lin jute_N = mkN "jute" "jutes" ;
+lin juvenescence_N = mkN "juvenescence" "juvenescences" ;
+lin juvenile_A = mkAMost "juvenile" "juvenilely" ;
+lin juvenile_N = mkN "juvenile" "juveniles" ;
+lin juxtapose_V = mkV "juxtapose" "juxtaposed" "juxtaposed" ;
+lin juxtaposition_N = mkN "juxtaposition" "juxtapositions" ;
+lin kabbalism_N = mkN "kabbalism" "kabbalisms" ;
+lin kabob_N = mkN "kabob" "kabobs" ;
+lin kachina_N = mkN "kachina" "kachinas" ;
+lin kaffir_N = mkN "kaffir" "kaffirs" ;
+lin kaffiyeh_N = mkN "kaffiyeh" "kaffiyehs" ;
+lin kafkaesque_A = mkAMost "kafkaesque" "kafkaesquely" ;
+lin kahikatea_N = mkN "kahikatea" "kahikateas" ;
+lin kail_N = mkN "kail" "kails" ;
+lin kainite_N = mkN "kainite" "kainites" ;
+lin kaiser_N = mkN "kaiser" "kaisers" ;
+lin kakemono_N = mkN "kakemono" "kakemonos" ;
+lin kaki_N = mkN "kaki" "kakis" ;
+lin kalansuwa_N = mkN "kalansuwa" "kalansuwas" ;
+lin kale_N = mkN "kale" "kales" ;
+lin kaleidoscope_N = mkN "kaleidoscope" "kaleidoscopes" ;
+lin kaleidoscopic_A = mkAMost "kaleidoscopic" "kaleidoscopicly" ;
+lin kalemia_N = mkN "kalemia" "kalemias" ;
+lin kaliuresis_N = mkN "kaliuresis" "kaliuresises" ;
+lin kalmia_N = mkN "kalmia" "kalmias" ;
+lin kalumpang_N = mkN "kalumpang" "kalumpangs" ;
+lin kameez_N = mkN "kameez" "kameezes" ;
+lin kamikaze_N = mkN "kamikaze" "kamikazes" ;
+lin kampong_N = mkN "kampong" "kampongs" ;
+lin kampuchean_A = mkAMost "kampuchean" "kampucheanly" ;
+lin kampuchean_N = mkN "kampuchean" "kampucheans" ;
+lin kanamycin_N = mkN "kanamycin" "kanamycins" ;
+lin kanchil_N = mkN "kanchil" "kanchils" ;
+lin kangaroo_N = mkN "kangaroo" "kangaroos" ;
+lin kanzu_N = mkN "kanzu" "kanzus" ;
+lin kaoliang_N = mkN "kaoliang" "kaoliangs" ;
+lin kaolin_N = mkN "kaolin" "kaolins" ;
+lin kaolinite_N = mkN "kaolinite" "kaolinites" ;
+lin kaon_N = mkN "kaon" "kaons" ;
+lin kapeika_N = mkN "kapeika" "kapeikas" ;
+lin kaph_N = mkN "kaph" "kaphs" ;
+lin kapok_N = mkN "kapok" "kapoks" ;
+lin kappa_N = mkN "kappa" "kappas" ;
+lin kapuka_N = mkN "kapuka" "kapukas" ;
+lin kaput_A = mkAMost "kaput" "kaputly" ;
+lin karaoke_N = mkN "karaoke" "karaokes" ;
+lin karat_N = mkN "karat" "karats" ;
+lin karate_N = mkN "karate" "karates" ;
+lin karma_N = mkN "karma" "karmas" ;
+lin karyokinesis_N = mkN "karyokinesis" "karyokinesises" ;
+lin karyokinetic_A = mkAMost "karyokinetic" "karyokineticly" ;
+lin karyolymph_N = mkN "karyolymph" "karyolymphs" ;
+lin karyolysis_N = mkN "karyolysis" "karyolysises" ;
+lin karyotype_N = mkN "karyotype" "karyotypes" ;
+lin kasbah_N = mkN "kasbah" "kasbahs" ;
+lin kasha_N = mkN "kasha" "kashas" ;
+lin kashmiri_A = mkAMost "kashmiri" "kashmirily" ;
+lin kashmiri_N = mkN "kashmiri" "kashmiris" ;
+lin kat_N = mkN "kat" "kats" ;
+lin katabatic_A = mkAMost "katabatic" "katabaticly" ;
+lin katamorphism_N = mkN "katamorphism" "katamorphisms" ;
+lin katharobe_N = mkN "katharobe" "katharobes" ;
+lin katharobic_A = mkAMost "katharobic" "katharobicly" ;
+lin katharometer_N = mkN "katharometer" "katharometers" ;
+lin katydid_N = mkN "katydid" "katydids" ;
+lin kauri_N = mkN "kauri" "kauris" ;
+lin kava_N = mkN "kava" "kavas" ;
+lin kawaka_N = mkN "kawaka" "kawakas" ;
+lin kayak_N = mkN "kayak" "kayaks" ;
+lin kazoo_N = mkN "kazoo" "kazoos" ;
+lin kea_N = mkN "kea" "keas" ;
+lin kebab_N = mkN "kebab" "kebabs" ;
+lin kedgeree_N = mkN "kedgeree" "kedgerees" ;
+lin keel_N = mkN "keel" "keels" ;
+lin keel_V = mkV "keel" "keeled" "keeled" ;
+lin keelboat_N = mkN "keelboat" "keelboats" ;
+lin keelson_N = mkN "keelson" "keelsons" ;
+lin keen_A = mkA "keen" "keener" "keenest" "keenly" ;
+lin keen_N = mkN "keen" "keens" ;
+lin keen_V = mkV "keen" "keened" "keened" ;
+lin keenness_N = mkN "keenness" "keennesses" ;
+lin keep_N = mkN "keep" "keeps" ;
+lin keep_keeped_V = mkV "keep" "keeped" "keeped" ;
+lin keep_kept_V = mkV "keep" "kept" "kept" ;
+lin keeper_N = mkN "keeper" "keepers" ;
+lin keeping_N = mkN "keeping" "keepings" ;
+lin keepsake_N = mkN "keepsake" "keepsakes" ;
+lin keeshond_N = mkN "keeshond" "keeshonds" ;
+lin keg_N = mkN "keg" "kegs" ;
+lin keloid_N = mkN "keloid" "keloids" ;
+lin kelp_N = mkN "kelp" "kelps" ;
+lin kelpie_N = mkN "kelpie" "kelpies" ;
+lin kelpy_N = mkN "kelpy" "kelpies" ;
+lin kelt_N = mkN "kelt" "kelts" ;
+lin kelvin_N = mkN "kelvin" "kelvins" ;
+lin kempt_A = mkA "kempt" "kempter" "kemptest" "kemptly" ;
+lin ken_N = mkN "ken" "kens" ;
+lin ken_V = mkV "ken" "kenned" "kenned" ;
+lin kenaf_N = mkN "kenaf" "kenafs" ;
+lin kennel_N = mkN "kennel" "kennels" ;
+lin kennel_V = mkV "kennel" "kennelled" "kennelled" ;
+lin kenning_N = mkN "kenning" "kennings" ;
+lin kenyan_A = mkAMost "kenyan" "kenyanly" ;
+lin kenyan_N = mkN "kenyan" "kenyans" ;
+lin kepi_N = mkN "kepi" "kepis" ;
+lin keratalgia_N = mkN "keratalgia" "keratalgias" ;
+lin keratectasia_N = mkN "keratectasia" "keratectasias" ;
+lin keratin_N = mkN "keratin" "keratins" ;
+lin keratinization_N = mkN "keratinization" "keratinizations" ;
+lin keratitis_N = mkN "keratitis" "keratitises" ;
+lin keratoacanthoma_N = mkN "keratoacanthoma" "keratoacanthomas" ;
+lin keratocele_N = mkN "keratocele" "keratoceles" ;
+lin keratoconjunctivitis_N = mkN "keratoconjunctivitis" "keratoconjunctivitises" ;
+lin keratoconus_N = mkN "keratoconus" "keratoconuses" ;
+lin keratoderma_N = mkN "keratoderma" "keratodermas" ;
+lin keratohyalin_N = mkN "keratohyalin" "keratohyalins" ;
+lin keratoiritis_N = mkN "keratoiritis" "keratoiritises" ;
+lin keratomalacia_N = mkN "keratomalacia" "keratomalacias" ;
+lin keratomycosis_N = mkN "keratomycosis" "keratomycosises" ;
+lin keratonosis_N = mkN "keratonosis" "keratonosises" ;
+lin keratonosus_N = mkN "keratonosus" "keratonosuses" ;
+lin keratoplasty_N = mkN "keratoplasty" "keratoplasties" ;
+lin keratoscleritis_N = mkN "keratoscleritis" "keratoscleritises" ;
+lin keratoscope_N = mkN "keratoscope" "keratoscopes" ;
+lin keratoscopy_N = mkN "keratoscopy" "keratoscopies" ;
+lin keratosis_N = mkN "keratosis" "keratosises" ;
+lin keratotomy_N = mkN "keratotomy" "keratotomies" ;
+lin kerb_N = mkN "kerb" "kerbs" ;
+lin kerbstone_N = mkN "kerbstone" "kerbstones" ;
+lin kerchief_N = mkN "kerchief" "kerchiefs" ;
+lin kerion_N = mkN "kerion" "kerions" ;
+lin kern_N = mkN "kern" "kerns" ;
+lin kernel_N = mkN "kernel" "kernels" ;
+lin kernicterus_N = mkN "kernicterus" "kernicteruses" ;
+lin kernite_N = mkN "kernite" "kernites" ;
+lin kerosene_N = mkN "kerosene" "kerosenes" ;
+lin kerygma_N = mkN "kerygma" "kerygmas" ;
+lin kestrel_N = mkN "kestrel" "kestrels" ;
+lin ketamine_N = mkN "ketamine" "ketamines" ;
+lin ketch_N = mkN "ketch" "ketches" ;
+lin ketchup_N = mkN "ketchup" "ketchups" ;
+lin keteleeria_N = mkN "keteleeria" "keteleerias" ;
+lin ketembilla_N = mkN "ketembilla" "ketembillas" ;
+lin ketoacidosis_N = mkN "ketoacidosis" "ketoacidosises" ;
+lin ketohexose_N = mkN "ketohexose" "ketohexoses" ;
+lin ketone_N = mkN "ketone" "ketones" ;
+lin ketonemia_N = mkN "ketonemia" "ketonemias" ;
+lin ketonuria_N = mkN "ketonuria" "ketonurias" ;
+lin ketoprofen_N = mkN "ketoprofen" "ketoprofens" ;
+lin ketorolac_N = mkN "ketorolac" "ketorolacs" ;
+lin ketose_N = mkN "ketose" "ketoses" ;
+lin ketosteroid_N = mkN "ketosteroid" "ketosteroids" ;
+lin kettle_N = mkN "kettle" "kettles" ;
+lin kettledrum_N = mkN "kettledrum" "kettledrums" ;
+lin keurboom_N = mkN "keurboom" "keurbooms" ;
+lin key_A = mkA "key" "keier" "keiest" "keily" ;
+lin key_N = mkN "key" "keys" ;
+lin key_V = mkV "key" "keyed" "keyed" ;
+lin keyboard_N = mkN "keyboard" "keyboards" ;
+lin keyboardist_N = mkN "keyboardist" "keyboardists" ;
+lin keycard_N = mkN "keycard" "keycards" ;
+lin keyhole_N = mkN "keyhole" "keyholes" ;
+lin keyless_A = mkAMost "keyless" "keylessly" ;
+lin keynote_N = mkN "keynote" "keynotes" ;
+lin keyring_N = mkN "keyring" "keyrings" ;
+lin keystone_N = mkN "keystone" "keystones" ;
+lin keystroke_N = mkN "keystroke" "keystrokes" ;
+lin keyword_N = mkN "keyword" "keywords" ;
+lin kg_N = mkN "kg" "kg" ;
+lin kgb_N = mkN "kgb" "kgbs" ;
+lin khadi_N = mkN "khadi" "khadis" ;
+lin khaki_A = mkAMost "khaki" "khakily" ;
+lin khaki_N = mkN "khaki" "khakis" ;
+lin khakis_N = mkN "khakis" "khakises" ;
+lin khalka_N = mkN "khalka" "khalkas" ;
+lin khamsin_N = mkN "khamsin" "khamsins" ;
+lin khan_N = mkN "khan" "khans" ;
+lin khanate_N = mkN "khanate" "khanates" ;
+lin khimar_N = mkN "khimar" "khimars" ;
+lin khmer_N = mkN "khmer" "khmers" ;
+lin khoum_N = mkN "khoum" "khoums" ;
+lin khukuri_N = mkN "khukuri" "khukuris" ;
+lin kiang_N = mkN "kiang" "kiangs" ;
+lin kibble_N = mkN "kibble" "kibbles" ;
+lin kibbutz_N = mkN "kibbutz" "IRREG" ;
+lin kibbutznik_N = mkN "kibbutznik" "kibbutzniks" ;
+lin kibe_N = mkN "kibe" "kibes" ;
+lin kibibit_N = mkN "kibibit" "kibibits" ;
+lin kibitzer_N = mkN "kibitzer" "kibitzers" ;
+lin kick_N = mkN "kick" "kicks" ;
+lin kick_V = mkV "kick" "kicked" "kicked" ;
+lin kick_start_N = mkN "kick-start" "kick-starts" ;
+lin kick_starter_N = mkN "kick-starter" "kick-starters" ;
+lin kickback_N = mkN "kickback" "kickbacks" ;
+lin kicker_N = mkN "kicker" "kickers" ;
+lin kickoff_N = mkN "kickoff" "kickoffs" ;
+lin kicksorter_N = mkN "kicksorter" "kicksorters" ;
+lin kickstand_N = mkN "kickstand" "kickstands" ;
+lin kid_N = mkN "kid" "kids" ;
+lin kid_V = mkV "kid" "kidded" "kidded" ;
+lin kiddy_N = mkN "kiddy" "kiddies" ;
+lin kidnap_V = mkV "kidnap" "kidnapped" "kidnapped" ;
+lin kidnapper_N = mkN "kidnapper" "kidnappers" ;
+lin kidnapping_N = mkN "kidnapping" "kidnappings" ;
+lin kidney_N = mkN "kidney" "kidneys" ;
+lin kidney_bean_N = mkN "kidney-bean" "kidney-beans" ;
+lin kieserite_N = mkN "kieserite" "kieserites" ;
+lin kike_N = mkN "kike" "kikes" ;
+lin kilderkin_N = mkN "kilderkin" "kilderkins" ;
+lin kill_N = mkN "kill" "IRREG" ;
+lin kill_V = mkV "kill" "killed" "killed" ;
+lin killable_A = mkAMost "killable" "killably" ;
+lin killdeer_N = mkN "killdeer" "killdeers" ;
+lin killer_N = mkN "killer" "killers" ;
+lin killifish_N = mkN "killifish" "killifishes" ;
+lin killing_N = mkN "killing" "killings" ;
+lin killingly_Adv = mkAdv "killingly" ;
+lin killjoy_N = mkN "killjoy" "killjoys" ;
+lin kiln_N = mkN "kiln" "kilns" ;
+lin kilo_N = mkN "kilo" "kilos" ;
+lin kilobit_N = mkN "kilobit" "kilobits" ;
+lin kilobyte_N = mkN "kilobyte" "kilobytes" ;
+lin kilocycle_N = mkN "kilocycle" "kilocycles" ;
+lin kilogram_N = mkN "kilogram" "kilograms" ;
+lin kilogramme_N = mkN "kilogramme" "kilogrammes" ;
+lin kilohertz_N = mkN "kilohertz" "kilohertzes" ;
+lin kiloliter_N = mkN "kiloliter" "kiloliters" ;
+lin kilolitre_N = mkN "kilolitre" "kilolitres" ;
+lin kilometer_N = mkN "kilometer" "kilometers" ;
+lin kilometre_N = mkN "kilometre" "kilometres" ;
+lin kiloton_N = mkN "kiloton" "kilotons" ;
+lin kilovolt_N = mkN "kilovolt" "kilovolts" ;
+lin kilowatt_N = mkN "kilowatt" "kilowatts" ;
+lin kilt_N = mkN "kilt" "kilts" ;
+lin kilter_N = mkN "kilter" "kilters" ;
+lin kimberlite_N = mkN "kimberlite" "kimberlites" ;
+lin kimono_N = mkN "kimono" "kimonos" ;
+lin kin_N = mkN "kin" "kins" ;
+lin kina_N = mkN "kina" "kinas" ;
+lin kinanesthesia_N = mkN "kinanesthesia" "kinanesthesias" ;
+lin kinase_N = mkN "kinase" "kinases" ;
+lin kind_A = mkA "kind" "kinder" "kindest" "kindly" ;
+lin kind_N = mkN "kind" "kinds" ;
+lin kind_hearted_A = mkAMost "kind-hearted" "kind-heartedly" ;
+lin kinda_Adv = mkAdv "kinda" ;
+lin kindergarten_N = mkN "kindergarten" "kindergartens" ;
+lin kindhearted_A = mkAMost "kindhearted" "kindheartedly" ;
+lin kindheartedness_N = mkN "kindheartedness" "kindheartednesses" ;
+lin kindle_V = mkV "kindle" "kindled" "kindled" ;
+lin kindliness_N = mkN "kindliness" "kindlinesses" ;
+lin kindling_N = mkN "kindling" "kindlings" ;
+lin kindly_A = mkA "kindly" "kindlier" "kindliest" "kindlily" ;
+lin kindness_N = mkN "kindness" "kindnesses" ;
+lin kindred_A = mkAMost "kindred" "kindredly" ;
+lin kindred_N = mkN "kindred" "kindreds" ;
+lin kinematics_N = mkN "kinematics" "kinematicses" ;
+lin kinescope_N = mkN "kinescope" "kinescopes" ;
+lin kinesiology_N = mkN "kinesiology" "kinesiologies" ;
+lin kinesis_N = mkN "kinesis" "kinesises" ;
+lin kinesthesia_N = mkN "kinesthesia" "kinesthesias" ;
+lin kinesthesis_N = mkN "kinesthesis" "kinesthesises" ;
+lin kinesthetic_A = mkAMost "kinesthetic" "kinestheticly" ;
+lin kinesthetically_Adv = mkAdv "kinesthetically" ;
+lin kinetic_A = mkAMost "kinetic" "kineticly" ;
+lin kinetics_N = mkN "kinetics" "kinetics" ;
+lin king_N = mkN "king" "kings" ;
+lin king_size_A = mkAMost "king-size" "king-sizely" ;
+lin king_sized_A = mkAMost "king-sized" "king-sizedly" ;
+lin kingbird_N = mkN "kingbird" "kingbirds" ;
+lin kingbolt_N = mkN "kingbolt" "kingbolts" ;
+lin kingcup_N = mkN "kingcup" "kingcups" ;
+lin kingdom_N = mkN "kingdom" "kingdoms" ;
+lin kingfish_N = mkN "kingfish" "kingfishes" ;
+lin kingfisher_N = mkN "kingfisher" "kingfishers" ;
+lin kinglet_N = mkN "kinglet" "kinglets" ;
+lin kinglike_A = mkAMost "kinglike" "kinglikely" ;
+lin kingly_A = mkAMost "kingly" "kinglily" ;
+lin kingmaker_N = mkN "kingmaker" "kingmakers" ;
+lin kingpin_N = mkN "kingpin" "kingpins" ;
+lin kingship_N = mkN "kingship" "kingships" ;
+lin kingwood_N = mkN "kingwood" "kingwoods" ;
+lin kinin_N = mkN "kinin" "kinins" ;
+lin kink_N = mkN "kink" "kinks" ;
+lin kink_V = mkV "kink" "kinked" "kinked" ;
+lin kinkajou_N = mkN "kinkajou" "kinkajous" ;
+lin kinky_A = mkA "kinky" "kinkier" "kinkiest" "kinkily" ;
+lin kino_N = mkN "kino" "kinoes" ;
+lin kinship_N = mkN "kinship" "kinships" ;
+lin kinsman_N = mkN "kinsman" "kinsmen" ;
+lin kinswoman_N = mkN "kinswoman" "kinswomen" ;
+lin kiosk_N = mkN "kiosk" "kiosks" ;
+lin kip_N = mkN "kip" "kips" ;
+lin kip_V = mkV "kip" "kipped" "kipped" ;
+lin kipper_N = mkN "kipper" "kippers" ;
+lin kirk_N = mkN "kirk" "kirks" ;
+lin kirpan_N = mkN "kirpan" "kirpans" ;
+lin kirsch_N = mkN "kirsch" "kirsches" ;
+lin kirtle_N = mkN "kirtle" "kirtles" ;
+lin kishke_N = mkN "kishke" "kishkes" ;
+lin kismet_N = mkN "kismet" "kismets" ;
+lin kiss_N = mkN "kiss" "kisses" ;
+lin kiss_V = mkV "kiss" "kissed" "kissed" ;
+lin kisser_N = mkN "kisser" "kissers" ;
+lin kit_N = mkN "kit" "kits" ;
+lin kit_V = mkV "kit" "kitted" "kitted" ;
+lin kitbag_N = mkN "kitbag" "kitbags" ;
+lin kitchen_N = mkN "kitchen" "kitchens" ;
+lin kitchenette_N = mkN "kitchenette" "kitchenettes" ;
+lin kitchenware_N = mkN "kitchenware" "kitchenwares" ;
+lin kite_N = mkN "kite" "kites" ;
+lin kite_balloon_N = mkN "kite-balloon" "kite-balloons" ;
+lin kith_N = mkN "kith" "kiths" ;
+lin kitsch_A = mkAMost "kitsch" "kitschly" ;
+lin kitsch_N = mkN "kitsch" "kitsches" ;
+lin kittee_N = mkN "kittee" "kittees" ;
+lin kitten_N = mkN "kitten" "kittens" ;
+lin kittenish_A = mkAMost "kittenish" "kittenishly" ;
+lin kittiwake_N = mkN "kittiwake" "kittiwakes" ;
+lin kitty_N = mkN "kitty" "kitties" ;
+lin kiwi_N = mkN "kiwi" "kiwis" ;
+lin klavern_N = mkN "klavern" "klaverns" ;
+lin klaxon_N = mkN "klaxon" "klaxons" ;
+lin klebsiella_N = mkN "klebsiella" "klebsiellas" ;
+lin kleenex_N = mkN "kleenex" "kleenexes" ;
+lin kleptomania_N = mkN "kleptomania" "kleptomanias" ;
+lin kleptomaniac_N = mkN "kleptomaniac" "kleptomaniacs" ;
+lin klondike_N = mkN "klondike" "klondikes" ;
+lin kludge_N = mkN "kludge" "kludges" ;
+lin klutz_N = mkN "klutz" "klutzes" ;
+lin klystron_N = mkN "klystron" "klystrons" ;
+lin km_N = mkN "km" "km" ;
+lin knack_N = mkN "knack" "knacks" ;
+lin knacker_N = mkN "knacker" "knackers" ;
+lin knackered_A = mkAMost "knackered" "knackeredly" ;
+lin knackwurst_N = mkN "knackwurst" "knackwursts" ;
+lin knap_V = mkV "knap" "knapped" "knapped" ;
+lin knapsack_N = mkN "knapsack" "knapsacks" ;
+lin knapweed_N = mkN "knapweed" "knapweeds" ;
+lin knave_N = mkN "knave" "knaves" ;
+lin knavery_N = mkN "knavery" "knaveries" ;
+lin knavish_A = mkAMost "knavish" "knavishly" ;
+lin knawel_N = mkN "knawel" "knawels" ;
+lin knead_V = mkV "knead" "kneaded" "kneaded" ;
+lin knee_N = mkN "knee" "knees" ;
+lin knee_deep_A = mkAMost "knee-deep" "knee-deeply" ;
+lin knee_deep_Adv = mkAdv "knee-deep" ;
+lin knee_high_A = mkAMost "knee-high" "knee-highly" ;
+lin knee_high_Adv = mkAdv "knee-high" ;
+lin kneecap_N = mkN "kneecap" "kneecaps" ;
+lin kneel_N = mkN "kneel" "kneels" ;
+lin kneel_V = mkV "kneel" "kneeled" "kneeled" ;
+lin kneeler_N = mkN "kneeler" "kneelers" ;
+lin knell_N = mkN "knell" "IRREG" ;
+lin knesset_N = mkN "knesset" "knessets" ;
+lin knick_knack_N = mkN "knick-knack" "knick-knacks" ;
+lin knickknack_N = mkN "knickknack" "knickknacks" ;
+lin knife_N = mkN "knife" "knives" ;
+lin knife_V = mkV "knife" "knifed" "knifed" ;
+lin knife_edge_N = mkN "knife-edge" "knife-edges" ;
+lin knifelike_A = mkAMost "knifelike" "knifelikely" ;
+lin knight_N = mkN "knight" "knights" ;
+lin knight_V = mkV "knight" "knighted" "knighted" ;
+lin knight_errant_N = mkN "knight-errant" "knights-errant" ;
+lin knighthood_N = mkN "knighthood" "knighthoods" ;
+lin knightly_A = mkAMost "knightly" "knightlily" ;
+lin kniphofia_N = mkN "kniphofia" "kniphofias" ;
+lin knish_N = mkN "knish" "knishes" ;
+lin knit_N = mkN "knit" "knits" ;
+lin knit_V = mkV "knit" "knitted" "knitted" ;
+lin knitter_N = mkN "knitter" "knitters" ;
+lin knitting_N = mkN "knitting" "knittings" ;
+lin knitting_machine_N = mkN "knitting-machine" "knitting-machines" ;
+lin knitting_needle_N = mkN "knitting-needle" "knitting-needles" ;
+lin knitwear_N = mkN "knitwear" "knitwears" ;
+lin knob_N = mkN "knob" "knobs" ;
+lin knobble_N = mkN "knobble" "knobbles" ;
+lin knobbly_A = mkA "knobbly" "knobblier" "knobbliest" "knobblily" ;
+lin knobby_A = mkA "knobby" "knobbier" "knobbiest" "knobbily" ;
+lin knobkerrie_N = mkN "knobkerrie" "knobkerries" ;
+lin knock_N = mkN "knock" "knocks" ;
+lin knock_V = mkV "knock" "knocked" "knocked" ;
+lin knock_kneed_A = mkAMost "knock-kneed" "knock-kneedly" ;
+lin knock_on_N = mkN "knock-on" "knock-ons" ;
+lin knockabout_A = mkAMost "knockabout" "knockaboutly" ;
+lin knockabout_N = mkN "knockabout" "knockabouts" ;
+lin knockdown_A = mkAMost "knockdown" "knockdownly" ;
+lin knockdown_N = mkN "knockdown" "knockdowns" ;
+lin knocker_N = mkN "knocker" "knockers" ;
+lin knockoff_N = mkN "knockoff" "knockoffs" ;
+lin knockout_A = mkAMost "knockout" "knockoutly" ;
+lin knockout_N = mkN "knockout" "knockouts" ;
+lin knoll_N = mkN "knoll" "knolls" ;
+lin knot_N = mkN "knot" "knots" ;
+lin knot_V = mkV "knot" "knotted" "knotted" ;
+lin knotgrass_N = mkN "knotgrass" "knotgrasses" ;
+lin knothole_N = mkN "knothole" "knotholes" ;
+lin knotty_A = mkA "knotty" "knottier" "knottiest" "knottily" ;
+lin knout_N = mkN "knout" "knouts" ;
+lin know_N = mkN "know" "knows" ;
+lin know_V = mkV "know" "knew" "known" ;
+lin know_all_N = mkN "know-all" "know-alls" ;
+lin know_how_N = mkN "know-how" "know-hows" ;
+lin knowable_A = mkAMost "knowable" "knowably" ;
+lin knower_N = mkN "knower" "knowers" ;
+lin knowing_N = mkN "knowing" "knowings" ;
+lin knowingness_N = mkN "knowingness" "knowingnesses" ;
+lin knowledge_N = mkN "knowledge" "knowledges" ;
+lin knowledgeability_N = mkN "knowledgeability" "knowledgeabilities" ;
+lin knowledgeable_A = mkAMost "knowledgeable" "knowledgeably" ;
+lin knuckle_N = mkN "knuckle" "knuckles" ;
+lin knuckle_V = mkV "knuckle" "knuckled" "knuckled" ;
+lin knuckleball_N = mkN "knuckleball" "knuckleballs" ;
+lin ko_N = mkN "ko" "koes" ;
+lin koala_N = mkN "koala" "koalas" ;
+lin koan_N = mkN "koan" "koans" ;
+lin kob_N = mkN "kob" "kobs" ;
+lin kobo_N = mkN "kobo" "kobos" ;
+lin kohl_N = mkN "kohl" "kohls" ;
+lin kohleria_N = mkN "kohleria" "kohlerias" ;
+lin kohlrabi_N = mkN "kohlrabi" "kohlrabis" ;
+lin koinonia_N = mkN "koinonia" "koinonias" ;
+lin kola_N = mkN "kola" "kolas" ;
+lin kola_nut_N = mkN "kola-nut" "kola-nuts" ;
+lin kolkhoz_N = mkN "kolkhoz" "kolkhozes" ;
+lin kolkhoznik_N = mkN "kolkhoznik" "kolkhozniks" ;
+lin komondor_N = mkN "komondor" "komondors" ;
+lin konini_N = mkN "konini" "koninis" ;
+lin kook_N = mkN "kook" "kooks" ;
+lin kookaburra_N = mkN "kookaburra" "kookaburras" ;
+lin kopeck_N = mkN "kopeck" "kopecks" ;
+lin kopek_N = mkN "kopek" "kopeks" ;
+lin kopiyka_N = mkN "kopiyka" "kopiykas" ;
+lin kopje_N = mkN "kopje" "kopjes" ;
+lin koppie_N = mkN "koppie" "koppies" ;
+lin koran_N = mkN "koran" "korans" ;
+lin koranic_A = mkAMost "koranic" "koranicly" ;
+lin korean_A = mkAMost "korean" "koreanly" ;
+lin korean_N = mkN "korean" "koreans" ;
+lin koruna_N = mkN "koruna" "korunas" ;
+lin kos_N = mkN "kos" "koses" ;
+lin kosher_A = mkAMost "kosher" "kosherly" ;
+lin kosher_N = mkN "kosher" "koshers" ;
+lin koto_N = mkN "koto" "kotoes" ;
+lin kotow_N = mkN "kotow" "kotows" ;
+lin kotow_V = mkV "kotow" "kotowed" "kotowed" ;
+lin koumiss_N = mkN "koumiss" "koumisses" ;
+lin kowhai_N = mkN "kowhai" "kowhais" ;
+lin kowtow_N = mkN "kowtow" "kowtows" ;
+lin kowtow_V = mkV "kowtow" "kowtowed" "kowtowed" ;
+lin kraal_N = mkN "kraal" "kraals" ;
+lin kraft_N = mkN "kraft" "krafts" ;
+lin krait_N = mkN "krait" "kraits" ;
+lin kraurosis_N = mkN "kraurosis" "kraurosises" ;
+lin kremlin_N = mkN "kremlin" "kremlins" ;
+lin krigia_N = mkN "krigia" "krigias" ;
+lin krill_N = mkN "krill" "krills" ;
+lin kris_N = mkN "kris" "krises" ;
+lin krona_N = mkN "krona" "kronae" ;
+lin krone_N = mkN "krone" "IRREG" ;
+lin kroon_N = mkN "kroon" "kroons" ;
+lin krubi_N = mkN "krubi" "krubis" ;
+lin krummhorn_N = mkN "krummhorn" "krummhorns" ;
+lin krypton_N = mkN "krypton" "kryptons" ;
+lin kudos_N = mkN "kudos" "kudoses" ;
+lin kudu_N = mkN "kudu" "kudus" ;
+lin kudzu_N = mkN "kudzu" "kudzus" ;
+lin kumis_N = mkN "kumis" "kumises" ;
+lin kumquat_N = mkN "kumquat" "kumquats" ;
+lin kung_fu_N = mkN "kung fu" "kung fus" ;
+lin kunzite_N = mkN "kunzite" "kunzites" ;
+lin kurrajong_N = mkN "kurrajong" "kurrajongs" ;
+lin kurta_N = mkN "kurta" "kurtas" ;
+lin kuru_N = mkN "kuru" "kurus" ;
+lin kurus_N = mkN "kurus" "kuruses" ;
+lin kuvasz_N = mkN "kuvasz" "kuvaszes" ;
+lin kuwaiti_A = mkAMost "kuwaiti" "kuwaitily" ;
+lin kuwaiti_N = mkN "kuwaiti" "kuwaitis" ;
+lin kvass_N = mkN "kvass" "kvasses" ;
+lin kvetch_N = mkN "kvetch" "kvetches" ;
+lin kw_N = mkN "kw" "kw" ;
+lin kwacha_N = mkN "kwacha" "kwacha" ;
+lin kwanza_N = mkN "kwanza" "kwanzas" ;
+lin kwashiorkor_N = mkN "kwashiorkor" "kwashiorkors" ;
+lin kwela_N = mkN "kwela" "kwelas" ;
+lin kyanite_N = mkN "kyanite" "kyanites" ;
+lin kyat_N = mkN "kyat" "kyats" ;
+lin kylie_N = mkN "kylie" "kylies" ;
+lin kylix_N = mkN "kylix" "kylixes" ;
+lin kymograph_N = mkN "kymograph" "kymographs" ;
+lin kyphosis_N = mkN "kyphosis" "kyphosises" ;
+lin kümmel_N = mkN "kümmel" "kümmels" ;
+lin l_plate_N = mkN "l-plate" "l-plates" ;
+lin la_N = mkN "la" "lae" ;
+lin la_di_da_A = mkAMost "la-di-da" "la-di-daly" ;
+lin laager_N = mkN "laager" "laagers" ;
+lin lab_N = mkN "lab" "labs" ;
+lin labdanum_N = mkN "labdanum" "labdanums" ;
+lin label_N = mkN "label" "labels" ;
+lin label_labeled_V = mkV "label" "labeled" "labeled" ;
+lin label_labelled_V = mkV "label" "labelled" "labelled" ;
+lin labeled_A = mkAMost "labeled" "labeledly" ;
+lin labetalol_N = mkN "labetalol" "labetalols" ;
+lin labial_A = mkAMost "labial" "labially" ;
+lin labiate_A = mkAMost "labiate" "labiately" ;
+lin labile_A = mkAMost "labile" "labilely" ;
+lin labium_N = mkN "labium" "labiums" ;
+lin labor_N = mkN "labor" "labors" ;
+lin labor_V = mkV "labor" "labored" "labored" ;
+lin laboratory_N = mkN "laboratory" "laboratories" ;
+lin labored_A = mkAMost "labored" "laboredly" ;
+lin laborer_N = mkN "laborer" "laborers" ;
+lin laborious_A = mkAMost "laborious" "laboriously" ;
+lin laboriousness_N = mkN "laboriousness" "laboriousnesses" ;
+lin laborsaving_A = mkAMost "laborsaving" "laborsavingly" ;
+lin labour_N = mkN "labour" "labours" ;
+lin labour_V = mkV "labour" "laboured" "laboured" ;
+lin labour_saving_A = mkAMost "labour-saving" "labour-savingly" ;
+lin labourer_N = mkN "labourer" "labourers" ;
+lin labourite_N = mkN "labourite" "labourites" ;
+lin laburnum_N = mkN "laburnum" "laburnums" ;
+lin labyrinth_N = mkN "labyrinth" "labyrinths" ;
+lin labyrinthine_A = mkAMost "labyrinthine" "labyrinthinely" ;
+lin labyrinthitis_N = mkN "labyrinthitis" "labyrinthitises" ;
+lin labyrinthodont_N = mkN "labyrinthodont" "labyrinthodonts" ;
+lin lac_N = mkN "lac" "lacs" ;
+lin lace_N = mkN "lace" "laces" ;
+lin lace_V = mkV "lace" "laced" "laced" ;
+lin lacebark_N = mkN "lacebark" "lacebarks" ;
+lin lacer_N = mkN "lacer" "lacers" ;
+lin lacerate_A = mkAMost "lacerate" "lacerately" ;
+lin lacerate_V = mkV "lacerate" "lacerated" "lacerated" ;
+lin laceration_N = mkN "laceration" "lacerations" ;
+lin lacewing_N = mkN "lacewing" "lacewings" ;
+lin lacework_N = mkN "lacework" "laceworks" ;
+lin lachrymal_A = mkAMost "lachrymal" "lachrymally" ;
+lin lachrymose_A = mkAMost "lachrymose" "lachrymosely" ;
+lin lacing_N = mkN "lacing" "lacings" ;
+lin lack_N = mkN "lack" "lacks" ;
+lin lack_V = mkV "lack" "lacked" "lacked" ;
+lin lack_lustre_A = mkAMost "lack-lustre" "lack-lustrely" ;
+lin lackadaisical_A = mkAMost "lackadaisical" "lackadaisically" ;
+lin lackey_N = mkN "lackey" "lackeys" ;
+lin lackluster_A = mkAMost "lackluster" "lacklusterly" ;
+lin laconic_A = mkAMost "laconic" "laconicly" ;
+lin laconically_Adv = mkAdv "laconically" ;
+lin laconicism_N = mkN "laconicism" "laconicisms" ;
+lin laconism_N = mkN "laconism" "laconisms" ;
+lin lacquer_N = mkN "lacquer" "lacquers" ;
+lin lacquer_V = mkV "lacquer" "lacquered" "lacquered" ;
+lin lacquerware_N = mkN "lacquerware" "lacquerwares" ;
+lin lacrimal_A = mkAMost "lacrimal" "lacrimally" ;
+lin lacrimation_N = mkN "lacrimation" "lacrimations" ;
+lin lacrimatory_A = mkAMost "lacrimatory" "lacrimatorily" ;
+lin lacrosse_N = mkN "lacrosse" "lacrosses" ;
+lin lactalbumin_N = mkN "lactalbumin" "lactalbumins" ;
+lin lactase_N = mkN "lactase" "lactases" ;
+lin lactate_N = mkN "lactate" "lactates" ;
+lin lactation_N = mkN "lactation" "lactations" ;
+lin lacteal_A = mkAMost "lacteal" "lacteally" ;
+lin lacteal_N = mkN "lacteal" "lacteals" ;
+lin lactic_A = mkAMost "lactic" "lacticly" ;
+lin lactifuge_N = mkN "lactifuge" "lactifuges" ;
+lin lactobacillus_N = mkN "lactobacillus" "lactobacilluses" ;
+lin lactogen_N = mkN "lactogen" "lactogens" ;
+lin lactogenic_A = mkAMost "lactogenic" "lactogenicly" ;
+lin lactose_N = mkN "lactose" "lactoses" ;
+lin lactosuria_N = mkN "lactosuria" "lactosurias" ;
+lin lacuna_N = mkN "lacuna" "lacunas" ;
+lin lacustrine_A = mkAMost "lacustrine" "lacustrinely" ;
+lin lacy_A = mkA "lacy" "lacier" "laciest" "lacily" ;
+lin lad_N = mkN "lad" "lads" ;
+lin ladder_N = mkN "ladder" "ladders" ;
+lin ladder_V = mkV "ladder" "laddered" "laddered" ;
+lin ladder_proof_A = mkAMost "ladder-proof" "ladder-proofly" ;
+lin laddie_N = mkN "laddie" "laddies" ;
+lin lade_V = mkV "lade" "IRREG" "IRREG" ;
+lin laden_A = mkAMost "laden" "ladenly" ;
+lin lading_N = mkN "lading" "ladings" ;
+lin ladle_N = mkN "ladle" "ladles" ;
+lin ladle_V = mkV "ladle" "ladled" "ladled" ;
+lin lady's_maid_N = mkN "lady's-maid" "lady's-maids" ;
+lin lady_N = mkN "lady" "ladies" ;
+lin lady_chapel_N = mkN "lady-chapel" "lady-chapels" ;
+lin lady_in_waiting_N = mkN "lady-in-waiting" "ladies-in-waiting" ;
+lin lady_killer_N = mkN "lady-killer" "lady-killers" ;
+lin ladybird_N = mkN "ladybird" "ladybirds" ;
+lin ladybug_N = mkN "ladybug" "ladybugs" ;
+lin ladyfinger_N = mkN "ladyfinger" "ladyfingers" ;
+lin ladyfish_N = mkN "ladyfish" "ladyfishes" ;
+lin ladylike_A = mkAMost "ladylike" "ladylikely" ;
+lin ladylikeness_N = mkN "ladylikeness" "ladylikenesses" ;
+lin ladylove_N = mkN "ladylove" "ladyloves" ;
+lin ladyship_N = mkN "ladyship" "ladyships" ;
+lin laelia_N = mkN "laelia" "laelias" ;
+lin laetrile_N = mkN "laetrile" "laetriles" ;
+lin lag_N = mkN "lag" "lags" ;
+lin lag_V = mkV "lag" "lagged" "lagged" ;
+lin lagan_N = mkN "lagan" "lagans" ;
+lin lager_N = mkN "lager" "lagers" ;
+lin lagerphone_N = mkN "lagerphone" "lagerphones" ;
+lin laggard_N = mkN "laggard" "laggards" ;
+lin lagging_N = mkN "lagging" "laggings" ;
+lin lagniappe_N = mkN "lagniappe" "lagniappes" ;
+lin lagomorph_N = mkN "lagomorph" "lagomorphs" ;
+lin lagoon_N = mkN "lagoon" "lagoons" ;
+lin lagophthalmos_N = mkN "lagophthalmos" "lagophthalmoses" ;
+lin lahar_N = mkN "lahar" "lahars" ;
+lin laic_A = mkAMost "laic" "laicly" ;
+lin laicize_V = mkV "laicize" "laicized" "laicized" ;
+lin lair_N = mkN "lair" "lairs" ;
+lin laird_N = mkN "laird" "lairds" ;
+lin laissez_faire_N = mkN "laissez-faire" "laissez-faires" ;
+lin laity_N = mkN "laity" "laities" ;
+lin lake_N = mkN "lake" "lakes" ;
+lin lakefront_N = mkN "lakefront" "lakefronts" ;
+lin lakeside_N = mkN "lakeside" "lakesides" ;
+lin lakh_N = mkN "lakh" "lakhs" ;
+lin lallation_N = mkN "lallation" "lallations" ;
+lin lally_N = mkN "lally" "lallies" ;
+lin lam_V = mkV "lam" "lammed" "lammed" ;
+lin lama_N = mkN "lama" "lamas" ;
+lin lamasery_N = mkN "lamasery" "lamaseries" ;
+lin lamb_N = mkN "lamb" "lambs" ;
+lin lamb_V = mkV "lamb" "lambed" "lambed" ;
+lin lambaste_V = mkV "lambaste" "lambasted" "lambasted" ;
+lin lambda_N = mkN "lambda" "lambdas" ;
+lin lambdacism_N = mkN "lambdacism" "lambdacisms" ;
+lin lambency_N = mkN "lambency" "lambencies" ;
+lin lambent_A = mkAMost "lambent" "lambently" ;
+lin lambert_N = mkN "lambert" "lamberts" ;
+lin lambkin_N = mkN "lambkin" "lambkins" ;
+lin lamblike_A = mkAMost "lamblike" "lamblikely" ;
+lin lambrequin_N = mkN "lambrequin" "lambrequins" ;
+lin lambskin_N = mkN "lambskin" "lambskins" ;
+lin lame_A = mkA "lame" "lamer" "lamest" "lamely" ;
+lin lame_V = mkV "lame" "lamed" "lamed" ;
+lin lamedh_N = mkN "lamedh" "lamedhs" ;
+lin lamella_N = mkN "lamella" "lamellas" ;
+lin lamellibranch_A = mkAMost "lamellibranch" "lamellibranchly" ;
+lin lameness_N = mkN "lameness" "lamenesses" ;
+lin lament_N = mkN "lament" "laments" ;
+lin lament_V = mkV "lament" "lamented" "lamented" ;
+lin lamentable_A = mkAMost "lamentable" "lamentably" ;
+lin lamentation_N = mkN "lamentation" "lamentations" ;
+lin lamina_N = mkN "lamina" "laminas" ;
+lin laminar_A = mkAMost "laminar" "laminarly" ;
+lin laminate_N = mkN "laminate" "laminates" ;
+lin laminate_V = mkV "laminate" "laminated" "laminated" ;
+lin lamination_N = mkN "lamination" "laminations" ;
+lin laminator_N = mkN "laminator" "laminators" ;
+lin laminectomy_N = mkN "laminectomy" "laminectomies" ;
+lin laminitis_N = mkN "laminitis" "laminitises" ;
+lin lamivudine_N = mkN "lamivudine" "lamivudines" ;
+lin lammas_N = mkN "lammas" "lammases" ;
+lin lamp_N = mkN "lamp" "lamps" ;
+lin lamp_black_N = mkN "lamp-black" "lamp-blacks" ;
+lin lamplight_N = mkN "lamplight" "lamplights" ;
+lin lamplighter_N = mkN "lamplighter" "lamplighters" ;
+lin lamplit_A = mkAMost "lamplit" "lamplitly" ;
+lin lampoon_N = mkN "lampoon" "lampoons" ;
+lin lampoon_V = mkV "lampoon" "lampooned" "lampooned" ;
+lin lamppost_N = mkN "lamppost" "lampposts" ;
+lin lamprey_N = mkN "lamprey" "lampreys" ;
+lin lampshade_N = mkN "lampshade" "lampshades" ;
+lin lamé_N = mkN "lamé" "lamés" ;
+lin lanai_N = mkN "lanai" "lanais" ;
+lin lanate_A = mkAMost "lanate" "lanately" ;
+lin lancastrian_A = mkAMost "lancastrian" "lancastrianly" ;
+lin lancastrian_N = mkN "lancastrian" "lancastrians" ;
+lin lance_N = mkN "lance" "lances" ;
+lin lance_V = mkV "lance" "lanced" "lanced" ;
+lin lance_corporal_N = mkN "lance-corporal" "lance-corporals" ;
+lin lancelet_N = mkN "lancelet" "lancelets" ;
+lin lanceolate_A = mkAMost "lanceolate" "lanceolately" ;
+lin lancer_N = mkN "lancer" "lancers" ;
+lin lancers_N = mkN "lancers" "lancerses" ;
+lin lancet_N = mkN "lancet" "lancets" ;
+lin lancetfish_N = mkN "lancetfish" "lancetfishes" ;
+lin lancewood_N = mkN "lancewood" "lancewoods" ;
+lin land_N = mkN "land" "lands" ;
+lin land_V = mkV "land" "landed" "landed" ;
+lin land_agent_N = mkN "land-agent" "land-agents" ;
+lin landau_N = mkN "landau" "landaus" ;
+lin lander_N = mkN "lander" "landers" ;
+lin landfall_N = mkN "landfall" "landfalls" ;
+lin landfill_N = mkN "landfill" "landfills" ;
+lin landgrave_N = mkN "landgrave" "landgraves" ;
+lin landholder_N = mkN "landholder" "landholders" ;
+lin landholding_N = mkN "landholding" "landholdings" ;
+lin landing_N = mkN "landing" "landings" ;
+lin landing_craft_N = mkN "landing-craft" "landing-craft" ;
+lin landing_field_N = mkN "landing-field" "landing-fields" ;
+lin landing_gear_N = mkN "landing-gear" "landing-gears" ;
+lin landing_net_N = mkN "landing-net" "landing-nets" ;
+lin landing_party_N = mkN "landing-party" "landing-parties" ;
+lin landing_place_N = mkN "landing-place" "landing-places" ;
+lin landing_stage_N = mkN "landing-stage" "landing-stages" ;
+lin landing_strip_N = mkN "landing-strip" "landing-strips" ;
+lin landlady_N = mkN "landlady" "landladies" ;
+lin landler_N = mkN "landler" "landlers" ;
+lin landless_A = mkAMost "landless" "landlessly" ;
+lin landlocked_A = mkAMost "landlocked" "landlockedly" ;
+lin landlord_N = mkN "landlord" "landlords" ;
+lin landlubber_N = mkN "landlubber" "landlubbers" ;
+lin landmark_N = mkN "landmark" "landmarks" ;
+lin landmass_N = mkN "landmass" "landmasses" ;
+lin landmine_N = mkN "landmine" "landmines" ;
+lin landowner_N = mkN "landowner" "landowners" ;
+lin landrover_N = mkN "landrover" "landrovers" ;
+lin landscape_N = mkN "landscape" "landscapes" ;
+lin landscape_V = mkV "landscape" "landscaped" "landscaped" ;
+lin landscaping_N = mkN "landscaping" "landscapings" ;
+lin landscapist_N = mkN "landscapist" "landscapists" ;
+lin landside_N = mkN "landside" "landsides" ;
+lin landslide_N = mkN "landslide" "landslides" ;
+lin landslip_N = mkN "landslip" "landslips" ;
+lin landsman_N = mkN "landsman" "landsmen" ;
+lin landward_Adv = mkAdv "landward" ;
+lin lane_N = mkN "lane" "lanes" ;
+lin langbeinite_N = mkN "langbeinite" "langbeinites" ;
+lin langlaufer_N = mkN "langlaufer" "langlaufers" ;
+lin langley_N = mkN "langley" "langleys" ;
+lin langsyne_Adv = mkAdv "langsyne" ;
+lin langsyne_N = mkN "langsyne" "langsynes" ;
+lin language_N = mkN "language" "languages" ;
+lin languid_A = mkAMost "languid" "languidly" ;
+lin languish_V = mkV "languish" "languished" "languished" ;
+lin languisher_N = mkN "languisher" "languishers" ;
+lin languor_N = mkN "languor" "languors" ;
+lin languorous_A = mkAMost "languorous" "languorously" ;
+lin langur_N = mkN "langur" "langurs" ;
+lin lank_A = mkAMost "lank" "lankly" ;
+lin lankiness_N = mkN "lankiness" "lankinesses" ;
+lin lanky_A = mkA "lanky" "lankier" "lankiest" "lankily" ;
+lin lanolin_N = mkN "lanolin" "lanolins" ;
+lin lanseh_N = mkN "lanseh" "lansehs" ;
+lin lansoprazole_N = mkN "lansoprazole" "lansoprazoles" ;
+lin lantana_N = mkN "lantana" "lantanas" ;
+lin lantern_N = mkN "lantern" "lanterns" ;
+lin lantern_jawed_A = mkAMost "lantern-jawed" "lantern-jawedly" ;
+lin lanternfish_N = mkN "lanternfish" "lanternfishes" ;
+lin lanthanum_N = mkN "lanthanum" "lanthanums" ;
+lin lanugo_N = mkN "lanugo" "lanugoes" ;
+lin lanyard_N = mkN "lanyard" "lanyards" ;
+lin lao_N = mkN "lao" "laoes" ;
+lin laotian_A = mkAMost "laotian" "laotianly" ;
+lin laotian_N = mkN "laotian" "laotians" ;
+lin lap_N = mkN "lap" "laps" ;
+lin lap_V = mkV "lap" "lapped" "lapped" ;
+lin lap_dog_N = mkN "lap-dog" "lap-dogs" ;
+lin laparocele_N = mkN "laparocele" "laparoceles" ;
+lin laparoscope_N = mkN "laparoscope" "laparoscopes" ;
+lin laparoscopy_N = mkN "laparoscopy" "laparoscopies" ;
+lin laparotomy_N = mkN "laparotomy" "laparotomies" ;
+lin lapboard_N = mkN "lapboard" "lapboards" ;
+lin lapdog_N = mkN "lapdog" "lapdogs" ;
+lin lapel_N = mkN "lapel" "lapels" ;
+lin lapful_N = mkN "lapful" "lapfuls" ;
+lin lapidarian_A = mkAMost "lapidarian" "lapidarianly" ;
+lin lapidary_A = mkAMost "lapidary" "lapidarily" ;
+lin lapidary_N = mkN "lapidary" "lapidaries" ;
+lin lapin_N = mkN "lapin" "lapins" ;
+lin lapis_lazuli_N = mkN "lapis lazuli" "lapis lazulis" ;
+lin lappet_N = mkN "lappet" "lappets" ;
+lin lapse_N = mkN "lapse" "lapses" ;
+lin lapse_V = mkV "lapse" "lapsed" "lapsed" ;
+lin lapsed_A = mkAMost "lapsed" "lapsedly" ;
+lin laptop_N = mkN "laptop" "laptops" ;
+lin lapwing_N = mkN "lapwing" "lapwings" ;
+lin larboard_A = mkAMost "larboard" "larboardly" ;
+lin larboard_N = mkN "larboard" "larboards" ;
+lin larcenist_N = mkN "larcenist" "larcenists" ;
+lin larceny_N = mkN "larceny" "larcenies" ;
+lin larch_N = mkN "larch" "larches" ;
+lin lard_N = mkN "lard" "lards" ;
+lin lard_V = mkV "lard" "larded" "larded" ;
+lin larder_N = mkN "larder" "larders" ;
+lin large_A = mkA "large" "larger" "largest" "largely" ;
+lin large_Adv = mkAdv "large" ;
+lin large_N = mkN "large" "larges" ;
+lin large_V = mkV "large" "larged" "larged" ;
+lin large_scale_A = mkAMost "large-scale" "large-scalely" ;
+lin largemouth_N = mkN "largemouth" "largemouths" ;
+lin largeness_N = mkN "largeness" "largenesses" ;
+lin largess_N = mkN "largess" "largesses" ;
+lin largesse_N = mkN "largesse" "largesses" ;
+lin larghetto_A = mkAMost "larghetto" "larghettoly" ;
+lin larghetto_N = mkN "larghetto" "larghettoes" ;
+lin larghissimo_A = mkAMost "larghissimo" "larghissimoly" ;
+lin largish_A = mkAMost "largish" "largishly" ;
+lin largo_A = mkA "largo" "largoer" "largoest" "largoly" ;
+lin largo_Adv = mkAdv "largo" ;
+lin largo_N = mkN "largo" "largos" ;
+lin lari_N = mkN "lari" "laris" ;
+lin lariat_N = mkN "lariat" "lariats" ;
+lin larid_N = mkN "larid" "larids" ;
+lin lark_N = mkN "lark" "larks" ;
+lin lark_V = mkV "lark" "larked" "larked" ;
+lin larkspur_N = mkN "larkspur" "larkspurs" ;
+lin larn_V = mkV "larn" "larned" "larned" ;
+lin larva_N = mkN "larva" "larvae" ;
+lin larvacean_N = mkN "larvacean" "larvaceans" ;
+lin larvacide_N = mkN "larvacide" "larvacides" ;
+lin larval_A = mkAMost "larval" "larvally" ;
+lin larvicide_N = mkN "larvicide" "larvicides" ;
+lin laryngeal_A = mkAMost "laryngeal" "laryngeally" ;
+lin laryngectomy_N = mkN "laryngectomy" "laryngectomies" ;
+lin laryngismus_N = mkN "laryngismus" "laryngismuses" ;
+lin laryngitis_N = mkN "laryngitis" "laryngitises" ;
+lin laryngopharyngeal_A = mkAMost "laryngopharyngeal" "laryngopharyngeally" ;
+lin laryngopharyngitis_N = mkN "laryngopharyngitis" "laryngopharyngitises" ;
+lin laryngopharynx_N = mkN "laryngopharynx" "laryngopharynxes" ;
+lin laryngoscope_N = mkN "laryngoscope" "laryngoscopes" ;
+lin laryngospasm_N = mkN "laryngospasm" "laryngospasms" ;
+lin laryngostenosis_N = mkN "laryngostenosis" "laryngostenosises" ;
+lin laryngotracheobronchitis_N = mkN "laryngotracheobronchitis" "laryngotracheobronchitises" ;
+lin larynx_N = mkN "larynx" "larynxes" ;
+lin lasagna_N = mkN "lasagna" "lasagnas" ;
+lin lascar_N = mkN "lascar" "lascars" ;
+lin lascivious_A = mkAMost "lascivious" "lasciviously" ;
+lin lasciviousness_N = mkN "lasciviousness" "lasciviousnesses" ;
+lin laser_N = mkN "laser" "lasers" ;
+lin lash_N = mkN "lash" "lashes" ;
+lin lash_V = mkV "lash" "lashed" "lashed" ;
+lin lash_up_N = mkN "lash-up" "lash-ups" ;
+lin lasher_N = mkN "lasher" "lashers" ;
+lin lashing_N = mkN "lashing" "lashings" ;
+lin lasiocampid_N = mkN "lasiocampid" "lasiocampids" ;
+lin lass_N = mkN "lass" "lasses" ;
+lin lassie_N = mkN "lassie" "lassies" ;
+lin lassitude_N = mkN "lassitude" "lassitudes" ;
+lin lasso_N = mkN "lasso" "lassos" ;
+lin lasso_V = mkV "lasso" "lassoed" "lassoed" ;
+lin last_A = mkA "last" "laster" "lastest" "last" ;
+lin last_N = mkN "last" "lasts" ;
+lin last_V = mkV "last" "lasted" "lasted" ;
+lin lasting_A = mkAMost "lasting" "lastingly" ;
+lin lastingness_N = mkN "lastingness" "lastingnesses" ;
+lin lat_N = mkN "lat" "lats" ;
+lin latakia_N = mkN "latakia" "latakias" ;
+lin latanier_N = mkN "latanier" "lataniers" ;
+lin latch_N = mkN "latch" "latches" ;
+lin latch_V = mkV "latch" "latched" "latched" ;
+lin latchet_N = mkN "latchet" "latchets" ;
+lin latchkey_N = mkN "latchkey" "latchkeys" ;
+lin latchstring_N = mkN "latchstring" "latchstrings" ;
+lin late_A = mkA "late" "later" "latest" "lately" ;
+lin late_Adv = mkAdv "late" ;
+lin latecomer_N = mkN "latecomer" "latecomers" ;
+lin lateen_A = mkAMost "lateen" "lateenly" ;
+lin lateen_N = mkN "lateen" "lateens" ;
+lin latency_N = mkN "latency" "latencies" ;
+lin lateness_N = mkN "lateness" "latenesses" ;
+lin latent_A = mkAMost "latent" "latently" ;
+lin later_Adv = mkAdv "later" ;
+lin lateral_A = mkAMost "lateral" "laterally" ;
+lin laterality_N = mkN "laterality" "lateralities" ;
+lin lateralization_N = mkN "lateralization" "lateralizations" ;
+lin laterite_N = mkN "laterite" "laterites" ;
+lin latest_A = mkAMost "latest" "latestly" ;
+lin latest_N = mkN "latest" "latests" ;
+lin latex_N = mkN "latex" "latexes" ;
+lin lath_N = mkN "lath" "laths" ;
+lin lathe_N = mkN "lathe" "lathes" ;
+lin lather_N = mkN "lather" "lathers" ;
+lin lather_V = mkV "lather" "lathered" "lathered" ;
+lin lathery_A = mkAMost "lathery" "latherily" ;
+lin lathi_N = mkN "lathi" "lathis" ;
+lin laticifer_N = mkN "laticifer" "laticifers" ;
+lin latin_A = mkAMost "latin" "latinly" ;
+lin latin_N = mkN "latin" "latins" ;
+lin latinate_A = mkAMost "latinate" "latinately" ;
+lin latinist_N = mkN "latinist" "latinists" ;
+lin latinize_V = mkV "latinize" "latinized" "latinized" ;
+lin latish_A = mkAMost "latish" "latishly" ;
+lin latitude_N = mkN "latitude" "latitudes" ;
+lin latitudes_N = mkN "latitudes" "latitudess" ;
+lin latitudinal_A = mkAMost "latitudinal" "latitudinally" ;
+lin latitudinarian_A = mkAMost "latitudinarian" "latitudinarianly" ;
+lin latitudinarian_N = mkN "latitudinarian" "latitudinarians" ;
+lin latrine_N = mkN "latrine" "latrines" ;
+lin lats_N = mkN "lats" "latses" ;
+lin latten_N = mkN "latten" "lattens" ;
+lin latter_A = mkAMost "latter" "latterly" ;
+lin latter_N = mkN "latter" "latters" ;
+lin latter_day_A = mkAMost "latter-day" "latter-daily" ;
+lin lattice_N = mkN "lattice" "lattices" ;
+lin latticed_A = mkAMost "latticed" "latticedly" ;
+lin laud_V = mkV "laud" "lauded" "lauded" ;
+lin laudable_A = mkAMost "laudable" "laudably" ;
+lin laudanum_N = mkN "laudanum" "laudanums" ;
+lin laudator_N = mkN "laudator" "laudators" ;
+lin laudatory_A = mkAMost "laudatory" "laudatorily" ;
+lin laugh_N = mkN "laugh" "laughs" ;
+lin laugh_V = mkV "laugh" "laughed" "laughed" ;
+lin laughable_A = mkAMost "laughable" "laughably" ;
+lin laugher_N = mkN "laugher" "laughers" ;
+lin laughing_A = mkAMost "laughing" "laughingly" ;
+lin laughing_gas_N = mkN "laughing-gas" "laughing-gases" ;
+lin laughing_stock_N = mkN "laughing-stock" "laughing-stocks" ;
+lin laughter_N = mkN "laughter" "laughters" ;
+lin launch_N = mkN "launch" "launches" ;
+lin launch_V = mkV "launch" "launched" "launched" ;
+lin launcher_N = mkN "launcher" "launchers" ;
+lin launching_N = mkN "launching" "launchings" ;
+lin launching_pad_N = mkN "launching-pad" "launching-pads" ;
+lin launching_site_N = mkN "launching-site" "launching-sites" ;
+lin launder_V = mkV "launder" "laundered" "laundered" ;
+lin launderette_N = mkN "launderette" "launderettes" ;
+lin laundering_N = mkN "laundering" "launderings" ;
+lin laundress_N = mkN "laundress" "laundresses" ;
+lin laundry_N = mkN "laundry" "laundries" ;
+lin laundryman_N = mkN "laundryman" "laundrymen" ;
+lin laundrywoman_N = mkN "laundrywoman" "laundrywomen" ;
+lin laureate_A = mkAMost "laureate" "laureately" ;
+lin laureate_N = mkN "laureate" "laureates" ;
+lin laurel_N = mkN "laurel" "laurels" ;
+lin laureled_A = mkAMost "laureled" "laureledly" ;
+lin laurelled_A = mkAMost "laurelled" "laurelledly" ;
+lin laurelwood_N = mkN "laurelwood" "laurelwoods" ;
+lin lav_N = mkN "lav" "lavs" ;
+lin lava_N = mkN "lava" "lavas" ;
+lin lavage_N = mkN "lavage" "lavages" ;
+lin lavalava_N = mkN "lavalava" "lavalavas" ;
+lin lavaliere_N = mkN "lavaliere" "lavalieres" ;
+lin lavatory_N = mkN "lavatory" "lavatories" ;
+lin lave_V = mkV "lave" "laved" "laved" ;
+lin lavender_A = mkAMost "lavender" "lavenderly" ;
+lin lavender_N = mkN "lavender" "lavenders" ;
+lin laver_N = mkN "laver" "lavers" ;
+lin lavish_A = mkAMost "lavish" "lavishly" ;
+lin lavish_V = mkV "lavish" "lavished" "lavished" ;
+lin lavishness_N = mkN "lavishness" "lavishnesses" ;
+lin law_N = mkN "law" "laws" ;
+lin law_abiding_A = mkAMost "law-abiding" "law-abidingly" ;
+lin law_officer_N = mkN "law-officer" "law-officers" ;
+lin lawbreaker_N = mkN "lawbreaker" "lawbreakers" ;
+lin lawful_A = mkAMost "lawful" "lawfully" ;
+lin lawfulness_N = mkN "lawfulness" "lawfulnesses" ;
+lin lawgiver_N = mkN "lawgiver" "lawgivers" ;
+lin lawless_A = mkAMost "lawless" "lawlessly" ;
+lin lawlessness_N = mkN "lawlessness" "lawlessnesses" ;
+lin lawmaker_N = mkN "lawmaker" "lawmakers" ;
+lin lawmaking_N = mkN "lawmaking" "lawmakings" ;
+lin lawman_N = mkN "lawman" "lawmen" ;
+lin lawn_N = mkN "lawn" "lawns" ;
+lin lawn_mower_N = mkN "lawn-mower" "lawn-mowers" ;
+lin lawrencium_N = mkN "lawrencium" "lawrenciums" ;
+lin lawsuit_N = mkN "lawsuit" "lawsuits" ;
+lin lawyer_N = mkN "lawyer" "lawyers" ;
+lin lawyerbush_N = mkN "lawyerbush" "lawyerbushes" ;
+lin lax_A = mkAMost "lax" "laxly" ;
+lin laxative_A = mkAMost "laxative" "laxatively" ;
+lin laxative_N = mkN "laxative" "laxatives" ;
+lin laxity_N = mkN "laxity" "laxities" ;
+lin laxness_N = mkN "laxness" "laxnesses" ;
+lin lay_A = mkAMost "lay" "laily" ;
+lin lay_N = mkN "lay" "lays" ;
+lin lay_figure_N = mkN "lay figure" "lay figures" ;
+lin lay_laid_V = mkV "lay" "laid" "laid" ;
+lin lay_layed_V = mkV "lay" "layed" "layed" ;
+lin lay_off_N = mkN "lay-off" "lay-offs" ;
+lin lay_out_N = mkN "lay-out" "lay-outs" ;
+lin layabout_N = mkN "layabout" "layabouts" ;
+lin layby_N = mkN "layby" "laybys" ;
+lin layer_N = mkN "layer" "layers" ;
+lin layer_V = mkV "layer" "layered" "layered" ;
+lin layer_cake_N = mkN "layer-cake" "layer-cakes" ;
+lin layette_N = mkN "layette" "layettes" ;
+lin laying_N = mkN "laying" "layings" ;
+lin layman_N = mkN "layman" "laymen" ;
+lin layoff_N = mkN "layoff" "layoffs" ;
+lin layout_N = mkN "layout" "layouts" ;
+lin layover_N = mkN "layover" "layovers" ;
+lin lazar_N = mkN "lazar" "lazars" ;
+lin lazaret_N = mkN "lazaret" "lazarets" ;
+lin lazarette_N = mkN "lazarette" "lazarettes" ;
+lin lazaretto_N = mkN "lazaretto" "lazarettos" ;
+lin lazarus_N = mkN "lazarus" "lazari" ;
+lin laze_V = mkV "laze" "lazed" "lazed" ;
+lin laziness_N = mkN "laziness" "lazinesses" ;
+lin lazy_A = mkA "lazy" "lazier" "laziest" "lazily" ;
+lin lazybones_N = mkN "lazybones" "IRREG" ;
+lin lb_N = mkN "lb" "lbs" ;
+lin lea_N = mkN "lea" "leas" ;
+lin leach_N = mkN "leach" "leaches" ;
+lin leach_V = mkV "leach" "leached" "leached" ;
+lin lead_N = mkN "lead" "leads" ;
+lin lead_in_N = mkN "lead-in" "lead-ins" ;
+lin lead_leaded_V = mkV "lead" "leaded" "leaded" ;
+lin lead_led_V = mkV "lead" "led" "led" ;
+lin lead_ore_N = mkN "lead-ore" "lead-ores" ;
+lin leaded_A = mkAMost "leaded" "leadedly" ;
+lin leaden_A = mkAMost "leaden" "leadenly" ;
+lin leader_N = mkN "leader" "leaders" ;
+lin leaderless_A = mkAMost "leaderless" "leaderlessly" ;
+lin leadership_N = mkN "leadership" "leaderships" ;
+lin leading_N = mkN "leading" "leadings" ;
+lin leading_rein_N = mkN "leading-rein" "leading-reins" ;
+lin leadplant_N = mkN "leadplant" "leadplants" ;
+lin leadwort_N = mkN "leadwort" "leadworts" ;
+lin leaf_N = mkN "leaf" "leaves" ;
+lin leaf_V = mkV "leaf" "leafed" "leafed" ;
+lin leaf_bud_N = mkN "leaf-bud" "leaf-buds" ;
+lin leaf_mould_N = mkN "leaf-mould" "leaf-moulds" ;
+lin leafed_A = mkAMost "leafed" "leafedly" ;
+lin leafhopper_N = mkN "leafhopper" "leafhoppers" ;
+lin leafless_A = mkAMost "leafless" "leaflessly" ;
+lin leaflet_N = mkN "leaflet" "leaflets" ;
+lin leaflike_A = mkAMost "leaflike" "leaflikely" ;
+lin leafy_A = mkA "leafy" "leafier" "leafiest" "leafily" ;
+lin league_N = mkN "league" "leagues" ;
+lin league_V = mkV "league" "leagued" "leagued" ;
+lin leak_N = mkN "leak" "leaks" ;
+lin leak_V = mkV "leak" "leaked" "leaked" ;
+lin leakage_N = mkN "leakage" "leakages" ;
+lin leaker_N = mkN "leaker" "leakers" ;
+lin leakiness_N = mkN "leakiness" "leakinesses" ;
+lin leakproof_A = mkAMost "leakproof" "leakproofly" ;
+lin leaky_A = mkA "leaky" "leakier" "leakiest" "leakily" ;
+lin leal_A = mkAMost "leal" "leally" ;
+lin lean_A = mkA "lean" "leaner" "leanest" "leanly" ;
+lin lean_N = mkN "lean" "leans" ;
+lin lean_V = mkV "lean" "leaned" "leaned" ;
+lin lean_to_N = mkN "lean-to" "lean-tos" ;
+lin leaner_N = mkN "leaner" "leaners" ;
+lin leaning_N = mkN "leaning" "leanings" ;
+lin leanness_N = mkN "leanness" "leannesses" ;
+lin leap_N = mkN "leap" "leaps" ;
+lin leap_leaped_leaped_V = mkV "leap" "leaped" "leaped" ;
+lin leap_leaped_lept_V = mkV "leap" "leaped" "lept" ;
+lin leap_lept_leaped_V = mkV "leap" "lept" "leaped" ;
+lin leap_lept_lept_V = mkV "leap" "lept" "lept" ;
+lin leap_year_N = mkN "leap-year" "leap-years" ;
+lin leapfrog_N = mkN "leapfrog" "leapfrogs" ;
+lin leapfrog_V = mkV "leapfrog" "leapfrogged" "leapfrogged" ;
+lin learn_V = mkV "learn" "learned" "learned" ;
+lin learner_N = mkN "learner" "learners" ;
+lin learning_N = mkN "learning" "learnings" ;
+lin lease_N = mkN "lease" "leases" ;
+lin lease_V = mkV "lease" "leased" "leased" ;
+lin lease_lend_N = mkN "lease-lend" "lease-lends" ;
+lin leasehold_A = mkAMost "leasehold" "leaseholdly" ;
+lin leasehold_N = mkN "leasehold" "leaseholds" ;
+lin leaseholder_N = mkN "leaseholder" "leaseholders" ;
+lin leash_N = mkN "leash" "leashes" ;
+lin least_Adv = mkAdv "least" ;
+lin least_N = mkN "least" "IRREG" ;
+lin leastways_Adv = mkAdv "leastways" ;
+lin leastwise_Adv = mkAdv "leastwise" ;
+lin leather_N = mkN "leather" "leathers" ;
+lin leather_jacket_N = mkN "leather-jacket" "leather-jackets" ;
+lin leatherette_N = mkN "leatherette" "leatherettes" ;
+lin leatherjacket_N = mkN "leatherjacket" "leatherjackets" ;
+lin leatherleaf_N = mkN "leatherleaf" "leatherleafs" ;
+lin leatherneck_N = mkN "leatherneck" "leathernecks" ;
+lin leatherwood_N = mkN "leatherwood" "leatherwoods" ;
+lin leatherwork_N = mkN "leatherwork" "leatherworks" ;
+lin leathery_A = mkAMost "leathery" "leatherily" ;
+lin leave_N = mkN "leave" "leaves" ;
+lin leave_leaved_V = mkV "leave" "leaved" "leaved" ;
+lin leave_left_V = mkV "leave" "left" "left" ;
+lin leave_taking_N = mkN "leave-taking" "leave-takings" ;
+lin leaven_N = mkN "leaven" "leavens" ;
+lin leaven_V = mkV "leaven" "leavened" "leavened" ;
+lin lecanopteris_N = mkN "lecanopteris" "lecanopterises" ;
+lin lecanora_N = mkN "lecanora" "lecanoras" ;
+lin lecher_N = mkN "lecher" "lechers" ;
+lin lecherous_A = mkAMost "lecherous" "lecherously" ;
+lin lecherousness_N = mkN "lecherousness" "lecherousnesses" ;
+lin lechery_N = mkN "lechery" "lecheries" ;
+lin lechwe_N = mkN "lechwe" "lechwes" ;
+lin lecithin_N = mkN "lecithin" "lecithins" ;
+lin lectern_N = mkN "lectern" "lecterns" ;
+lin lectin_N = mkN "lectin" "lectins" ;
+lin lector_N = mkN "lector" "lectors" ;
+lin lecture_N = mkN "lecture" "lectures" ;
+lin lecture_V = mkV "lecture" "lectured" "lectured" ;
+lin lecturer_N = mkN "lecturer" "lecturers" ;
+lin lectureship_N = mkN "lectureship" "lectureships" ;
+lin lederhosen_N = mkN "lederhosen" "lederhosens" ;
+lin ledge_N = mkN "ledge" "ledges" ;
+lin ledger_N = mkN "ledger" "ledgers" ;
+lin lee_N = mkN "lee" "lees" ;
+lin leech_N = mkN "leech" "leeches" ;
+lin leek_N = mkN "leek" "leeks" ;
+lin leer_N = mkN "leer" "leers" ;
+lin leer_V = mkV "leer" "leered" "leered" ;
+lin leery_A = mkA "leery" "leerier" "leeriest" "leerily" ;
+lin lees_N = mkN "lees" "leeses" ;
+lin leeward_A = mkAMost "leeward" "leewardly" ;
+lin leeward_Adv = mkAdv "leeward" ;
+lin leeward_N = mkN "leeward" "leewards" ;
+lin leeway_N = mkN "leeway" "leeways" ;
+lin leflunomide_N = mkN "leflunomide" "leflunomides" ;
+lin left_A = mkA "left" "lefter" "leftest" "left" ;
+lin left_N = mkN "left" "lefts" ;
+lin left_hand_A = mkAMost "left-hand" "left-handly" ;
+lin left_handed_A = mkAMost "left-handed" "left-handedly" ;
+lin left_of_Prep = mkPrep "left of" ;
+lin left_wing_N = mkN "left-wing" "left-wings" ;
+lin left_winger_N = mkN "left-winger" "left-wingers" ;
+lin leftish_A = mkAMost "leftish" "leftishly" ;
+lin leftism_N = mkN "leftism" "leftisms" ;
+lin leftist_A = mkAMost "leftist" "leftistly" ;
+lin leftist_N = mkN "leftist" "leftists" ;
+lin leftmost_A = mkAMost "leftmost" "leftmostly" ;
+lin leftover_A = mkAMost "leftover" "leftoverly" ;
+lin leftover_N = mkN "leftover" "leftovers" ;
+lin leftovers_N = mkN "leftovers" "leftoverses" ;
+lin leg_N = mkN "leg" "legs" ;
+lin leg_pull_N = mkN "leg-pull" "leg-pulls" ;
+lin leg_pulling_N = mkN "leg-pulling" "leg-pullings" ;
+lin legacy_N = mkN "legacy" "legacies" ;
+lin legal_A = mkAMost "legal" "legally" ;
+lin legalese_N = mkN "legalese" "legaleses" ;
+lin legalisation_N = mkN "legalisation" "legalisations" ;
+lin legalism_N = mkN "legalism" "legalisms" ;
+lin legalistic_A = mkAMost "legalistic" "legalisticly" ;
+lin legality_N = mkN "legality" "legalities" ;
+lin legalization_N = mkN "legalization" "legalizations" ;
+lin legalize_V = mkV "legalize" "legalized" "legalized" ;
+lin legate_N = mkN "legate" "legates" ;
+lin legatee_N = mkN "legatee" "legatees" ;
+lin legation_N = mkN "legation" "legations" ;
+lin legato_A = mkAMost "legato" "legatoly" ;
+lin legato_Adv = mkAdv "legato" ;
+lin legend_N = mkN "legend" "legends" ;
+lin legendary_A = mkAMost "legendary" "legendarily" ;
+lin leger_line_N = mkN "leger line" "leger lines" ;
+lin legerdemain_N = mkN "legerdemain" "legerdemains" ;
+lin legged_A = mkAMost "legged" "leggedly" ;
+lin legging_N = mkN "legging" "leggings" ;
+lin leggy_A = mkAMost "leggy" "leggily" ;
+lin leghorn_N = mkN "leghorn" "leghorns" ;
+lin legibility_N = mkN "legibility" "legibilities" ;
+lin legible_A = mkAMost "legible" "legibly" ;
+lin legion_N = mkN "legion" "legions" ;
+lin legionary_N = mkN "legionary" "legionaries" ;
+lin legionnaire_N = mkN "legionnaire" "legionnaires" ;
+lin legislate_V = mkV "legislate" "legislated" "legislated" ;
+lin legislation_N = mkN "legislation" "legislations" ;
+lin legislative_A = mkAMost "legislative" "legislatively" ;
+lin legislator_N = mkN "legislator" "legislators" ;
+lin legislatorship_N = mkN "legislatorship" "legislatorships" ;
+lin legislature_N = mkN "legislature" "legislatures" ;
+lin legitimacy_N = mkN "legitimacy" "legitimacies" ;
+lin legitimate_A = mkAMost "legitimate" "legitimately" ;
+lin legitimation_N = mkN "legitimation" "legitimations" ;
+lin legitimatize_V = mkV "legitimatize" "legitimatized" "legitimatized" ;
+lin legitimize_V = mkV "legitimize" "legitimized" "legitimized" ;
+lin legless_A = mkAMost "legless" "leglessly" ;
+lin leglike_A = mkAMost "leglike" "leglikely" ;
+lin legs_N = mkN "legs" "legses" ;
+lin legume_N = mkN "legume" "legumes" ;
+lin leguminous_A = mkAMost "leguminous" "leguminously" ;
+lin lei_N = mkN "lei" "leis" ;
+lin leiomyoma_N = mkN "leiomyoma" "leiomyomas" ;
+lin leiomyosarcoma_N = mkN "leiomyosarcoma" "leiomyosarcomas" ;
+lin leishmaniasis_N = mkN "leishmaniasis" "leishmaniasises" ;
+lin leister_N = mkN "leister" "leisters" ;
+lin leisure_N = mkN "leisure" "leisures" ;
+lin leisured_A = mkAMost "leisured" "leisuredly" ;
+lin leisureliness_N = mkN "leisureliness" "leisurelinesses" ;
+lin leisurely_A = mkAMost "leisurely" "leisurelily" ;
+lin leisurely_Adv = mkAdv "leisurely" ;
+lin leitmotiv_N = mkN "leitmotiv" "leitmotivs" ;
+lin lek_N = mkN "lek" "leks" ;
+lin lekvar_N = mkN "lekvar" "lekvars" ;
+lin lemma_N = mkN "lemma" "lemmas" ;
+lin lemming_N = mkN "lemming" "lemmings" ;
+lin lemniscus_N = mkN "lemniscus" "lemniscuses" ;
+lin lemon_N = mkN "lemon" "lemons" ;
+lin lemonade_N = mkN "lemonade" "lemonades" ;
+lin lemongrass_N = mkN "lemongrass" "lemongrasses" ;
+lin lemonwood_N = mkN "lemonwood" "lemonwoods" ;
+lin lemony_A = mkAMost "lemony" "lemonily" ;
+lin lempira_N = mkN "lempira" "lempiras" ;
+lin lemur_N = mkN "lemur" "lemurs" ;
+lin lend_lended_V = mkV "lend" "lended" "lended" ;
+lin lend_lent_V = mkV "lend" "lent" "lent" ;
+lin lendable_A = mkAMost "lendable" "lendably" ;
+lin lender_N = mkN "lender" "lenders" ;
+lin lending_N = mkN "lending" "lendings" ;
+lin lending_library_N = mkN "lending-library" "lending-libraries" ;
+lin length_N = mkN "length" "lengths" ;
+lin lengthen_V = mkV "lengthen" "lengthened" "lengthened" ;
+lin lengthiness_N = mkN "lengthiness" "lengthinesses" ;
+lin lengthways_A = mkAMost "lengthways" "lengthwaysly" ;
+lin lengthways_Adv = mkAdv "lengthways" ;
+lin lengthwise_A = mkAMost "lengthwise" "lengthwisely" ;
+lin lengthwise_Adv = mkAdv "lengthwise" ;
+lin lengthy_A = mkA "lengthy" "lengthier" "lengthiest" "lengthily" ;
+lin lenience_N = mkN "lenience" "leniences" ;
+lin leniency_N = mkN "leniency" "leniencies" ;
+lin lenient_A = mkAMost "lenient" "leniently" ;
+lin lenitive_N = mkN "lenitive" "lenitives" ;
+lin lenity_N = mkN "lenity" "lenities" ;
+lin lens_N = mkN "lens" "lenses" ;
+lin lent_N = mkN "lent" "lents" ;
+lin lenten_A = mkAMost "lenten" "lentenly" ;
+lin lentic_A = mkAMost "lentic" "lenticly" ;
+lin lenticel_N = mkN "lenticel" "lenticels" ;
+lin lentil_N = mkN "lentil" "lentils" ;
+lin lentissimo_A = mkAMost "lentissimo" "lentissimoly" ;
+lin lento_A = mkAMost "lento" "lentoly" ;
+lin lento_Adv = mkAdv "lento" ;
+lin leone_N = mkN "leone" "leones" ;
+lin leonine_A = mkAMost "leonine" "leoninely" ;
+lin leopard_N = mkN "leopard" "leopards" ;
+lin leopardess_N = mkN "leopardess" "leopardesses" ;
+lin leotard_N = mkN "leotard" "leotards" ;
+lin leper_N = mkN "leper" "lepers" ;
+lin lepidobotrys_N = mkN "lepidobotrys" "lepidobotryses" ;
+lin lepidocrocite_N = mkN "lepidocrocite" "lepidocrocites" ;
+lin lepidolite_N = mkN "lepidolite" "lepidolites" ;
+lin lepidomelane_N = mkN "lepidomelane" "lepidomelanes" ;
+lin lepidophobia_N = mkN "lepidophobia" "lepidophobias" ;
+lin lepidopterist_N = mkN "lepidopterist" "lepidopterists" ;
+lin lepidopterology_N = mkN "lepidopterology" "lepidopterologies" ;
+lin lepidote_A = mkAMost "lepidote" "lepidotely" ;
+lin lepiota_N = mkN "lepiota" "lepiotas" ;
+lin leporid_N = mkN "leporid" "leporids" ;
+lin leprechaun_N = mkN "leprechaun" "leprechauns" ;
+lin leprosy_N = mkN "leprosy" "leprosies" ;
+lin leprous_A = mkAMost "leprous" "leprously" ;
+lin leptocephalus_N = mkN "leptocephalus" "leptocephaluses" ;
+lin leptomeninges_N = mkN "leptomeninges" "leptomeningeses" ;
+lin leptomeningitis_N = mkN "leptomeningitis" "leptomeningitises" ;
+lin lepton_N = mkN "lepton" "leptons" ;
+lin leptorrhine_A = mkAMost "leptorrhine" "leptorrhinely" ;
+lin leptospira_N = mkN "leptospira" "leptospiras" ;
+lin leptosporangiate_A = mkAMost "leptosporangiate" "leptosporangiately" ;
+lin leptosporangium_N = mkN "leptosporangium" "leptosporangiums" ;
+lin leptotene_N = mkN "leptotene" "leptotenes" ;
+lin leresis_N = mkN "leresis" "leresises" ;
+lin lerot_N = mkN "lerot" "lerots" ;
+lin lesbian_A = mkAMost "lesbian" "lesbianly" ;
+lin lesbian_N = mkN "lesbian" "lesbians" ;
+lin lesbianism_N = mkN "lesbianism" "lesbianisms" ;
+lin lese_majesty_N = mkN "lese majesty" "lese majesties" ;
+lin lesion_N = mkN "lesion" "lesions" ;
+lin less_A = mkA "less" "lesser" "lessest" "lessly" ;
+lin less_Adv = mkAdv "less" ;
+lin lessee_N = mkN "lessee" "lessees" ;
+lin lessen_V = mkV "lessen" "lessened" "lessened" ;
+lin lesser_A = mkAMost "lesser" "lesserly" ;
+lin lesson_N = mkN "lesson" "lessons" ;
+lin lessor_N = mkN "lessor" "lessors" ;
+lin lest_Prep = mkPrep "lest" ;
+lin let_N = mkN "let" "lets" ;
+lin let_V = mkV "let" "let" "let" ;
+lin let_down_N = mkN "let-down" "let-downs" ;
+lin let_up_N = mkN "let-up" "let-ups" ;
+lin lethal_A = mkAMost "lethal" "lethally" ;
+lin lethargic_A = mkAMost "lethargic" "lethargicly" ;
+lin lethargically_Adv = mkAdv "lethargically" ;
+lin lethargy_N = mkN "lethargy" "lethargies" ;
+lin letter_N = mkN "letter" "letters" ;
+lin letter_box_N = mkN "letter-box" "letter-boxes" ;
+lin letter_card_N = mkN "letter-card" "letter-cards" ;
+lin letter_case_N = mkN "letter-case" "letter-cases" ;
+lin lettercard_N = mkN "lettercard" "lettercards" ;
+lin lettered_A = mkAMost "lettered" "letteredly" ;
+lin letterer_N = mkN "letterer" "letterers" ;
+lin letterhead_N = mkN "letterhead" "letterheads" ;
+lin lettering_N = mkN "lettering" "letterings" ;
+lin letterman_N = mkN "letterman" "lettermans" ;
+lin letterpress_N = mkN "letterpress" "letterpresses" ;
+lin letters_N = mkN "letters" "letterses" ;
+lin letting_N = mkN "letting" "lettings" ;
+lin lettuce_N = mkN "lettuce" "lettuces" ;
+lin letup_N = mkN "letup" "letups" ;
+lin leu_N = mkN "leu" "leus" ;
+lin leucine_N = mkN "leucine" "leucines" ;
+lin leucocyte_N = mkN "leucocyte" "leucocytes" ;
+lin leucocytozoan_N = mkN "leucocytozoan" "leucocytozoans" ;
+lin leucothoe_N = mkN "leucothoe" "leucothoes" ;
+lin leukaemia_N = mkN "leukaemia" "leukaemias" ;
+lin leukemia_N = mkN "leukemia" "leukemias" ;
+lin leukocyte_N = mkN "leukocyte" "leukocytes" ;
+lin leukocytosis_N = mkN "leukocytosis" "leukocytosises" ;
+lin leukoderma_N = mkN "leukoderma" "leukodermas" ;
+lin leukoencephalitis_N = mkN "leukoencephalitis" "leukoencephalitises" ;
+lin leukoma_N = mkN "leukoma" "leukomas" ;
+lin leukopenia_N = mkN "leukopenia" "leukopenias" ;
+lin leukorrhea_N = mkN "leukorrhea" "leukorrheas" ;
+lin lev_N = mkN "lev" "levs" ;
+lin levallorphan_N = mkN "levallorphan" "levallorphans" ;
+lin levant_V = mkV "levant" "levanted" "levanted" ;
+lin levanter_N = mkN "levanter" "levanters" ;
+lin levantine_A = mkAMost "levantine" "levantinely" ;
+lin levantine_N = mkN "levantine" "levantines" ;
+lin levator_N = mkN "levator" "levators" ;
+lin levee_N = mkN "levee" "levees" ;
+lin level_A = mkAMost "level" "levelly" ;
+lin level_N = mkN "level" "levels" ;
+lin level_headed_A = mkAMost "level-headed" "level-headedly" ;
+lin level_leveled_V = mkV "level" "leveled" "leveled" ;
+lin level_levelled_V = mkV "level" "levelled" "levelled" ;
+lin leveler_N = mkN "leveler" "levelers" ;
+lin leveller_N = mkN "leveller" "levellers" ;
+lin lever_N = mkN "lever" "levers" ;
+lin lever_V = mkV "lever" "levered" "levered" ;
+lin leverage_N = mkN "leverage" "leverages" ;
+lin leveret_N = mkN "leveret" "leverets" ;
+lin leviathan_N = mkN "leviathan" "leviathans" ;
+lin levirate_N = mkN "levirate" "levirates" ;
+lin levitate_V = mkV "levitate" "levitated" "levitated" ;
+lin levitation_N = mkN "levitation" "levitations" ;
+lin levity_N = mkN "levity" "levities" ;
+lin levorotary_A = mkAMost "levorotary" "levorotarily" ;
+lin levorotation_N = mkN "levorotation" "levorotations" ;
+lin levy_N = mkN "levy" "levies" ;
+lin levy_V = mkV "levy" "levied" "levied" ;
+lin lewd_A = mkA "lewd" "lewder" "lewdest" "lewdly" ;
+lin lewdness_N = mkN "lewdness" "lewdnesses" ;
+lin lexeme_N = mkN "lexeme" "lexemes" ;
+lin lexical_A = mkAMost "lexical" "lexically" ;
+lin lexicalization_N = mkN "lexicalization" "lexicalizations" ;
+lin lexicalized_A = mkAMost "lexicalized" "lexicalizedly" ;
+lin lexicographer_N = mkN "lexicographer" "lexicographers" ;
+lin lexicographic_A = mkAMost "lexicographic" "lexicographicly" ;
+lin lexicography_N = mkN "lexicography" "lexicographies" ;
+lin lexicology_N = mkN "lexicology" "lexicologies" ;
+lin lexicon_N = mkN "lexicon" "lexicons" ;
+lin lexicostatistic_A = mkAMost "lexicostatistic" "lexicostatisticly" ;
+lin lexicostatistics_N = mkN "lexicostatistics" "lexicostatisticses" ;
+lin lexis_N = mkN "lexis" "lexises" ;
+lin ley_N = mkN "ley" "leys" ;
+lin li_N = mkN "li" "lis" ;
+lin liabilities_N = mkN "liabilities" "liabilitieses" ;
+lin liability_N = mkN "liability" "liabilities" ;
+lin liable_A = mkAMost "liable" "liably" ;
+lin liaise_V = mkV "liaise" "liaised" "liaised" ;
+lin liaison_N = mkN "liaison" "liaisons" ;
+lin liana_N = mkN "liana" "lianas" ;
+lin liar_N = mkN "liar" "liars" ;
+lin lib_N = mkN "lib" "IRREG" ;
+lin libation_N = mkN "libation" "libations" ;
+lin libel_N = mkN "libel" "libels" ;
+lin libel_V = mkV "libel" "libelled" "libelled" ;
+lin libellous_A = mkAMost "libellous" "libellously" ;
+lin liberal_A = mkAMost "liberal" "liberally" ;
+lin liberal_N = mkN "liberal" "liberals" ;
+lin liberalisation_N = mkN "liberalisation" "liberalisations" ;
+lin liberalism_N = mkN "liberalism" "liberalisms" ;
+lin liberalistic_A = mkAMost "liberalistic" "liberalisticly" ;
+lin liberality_N = mkN "liberality" "liberalities" ;
+lin liberalization_N = mkN "liberalization" "liberalizations" ;
+lin liberalize_V = mkV "liberalize" "liberalized" "liberalized" ;
+lin liberate_V = mkV "liberate" "liberated" "liberated" ;
+lin liberation_N = mkN "liberation" "liberations" ;
+lin liberator_N = mkN "liberator" "liberators" ;
+lin liberian_A = mkAMost "liberian" "liberianly" ;
+lin liberian_N = mkN "liberian" "liberians" ;
+lin libertarian_N = mkN "libertarian" "libertarians" ;
+lin libertarianism_N = mkN "libertarianism" "libertarianisms" ;
+lin libertine_N = mkN "libertine" "libertines" ;
+lin liberty_N = mkN "liberty" "liberties" ;
+lin libidinal_A = mkAMost "libidinal" "libidinally" ;
+lin libidinous_A = mkAMost "libidinous" "libidinously" ;
+lin libido_N = mkN "libido" "libidos" ;
+lin librarian_N = mkN "librarian" "librarians" ;
+lin librarianship_N = mkN "librarianship" "librarianships" ;
+lin library_N = mkN "library" "libraries" ;
+lin libration_N = mkN "libration" "librations" ;
+lin librettist_N = mkN "librettist" "librettists" ;
+lin libretto_N = mkN "libretto" "librettos" ;
+lin libyan_A = mkAMost "libyan" "libyanly" ;
+lin libyan_N = mkN "libyan" "libyans" ;
+lin licence_N = mkN "licence" "licences" ;
+lin licence_V = mkV "licence" "licenced" "licenced" ;
+lin license_N = mkN "license" "licenses" ;
+lin license_V = mkV "license" "licensed" "licensed" ;
+lin licensee_N = mkN "licensee" "licensees" ;
+lin licenser_N = mkN "licenser" "licensers" ;
+lin licentiate_N = mkN "licentiate" "licentiates" ;
+lin licentious_A = mkAMost "licentious" "licentiously" ;
+lin licentiousness_N = mkN "licentiousness" "licentiousnesses" ;
+lin lichee_N = mkN "lichee" "lichees" ;
+lin lichen_N = mkN "lichen" "lichens" ;
+lin lichgate_N = mkN "lichgate" "lichgates" ;
+lin lichi_N = mkN "lichi" "lichis" ;
+lin licit_A = mkAMost "licit" "licitly" ;
+lin licitness_N = mkN "licitness" "licitnesses" ;
+lin lick_N = mkN "lick" "licks" ;
+lin lick_V = mkV "lick" "licked" "licked" ;
+lin licking_N = mkN "licking" "IRREG" ;
+lin licorice_N = mkN "licorice" "licorices" ;
+lin lid_N = mkN "lid" "lids" ;
+lin lidar_N = mkN "lidar" "lidars" ;
+lin lidded_A = mkAMost "lidded" "liddedly" ;
+lin lidless_A = mkAMost "lidless" "lidlessly" ;
+lin lido_N = mkN "lido" "lidos" ;
+lin lie_N = mkN "lie" "lies" ;
+lin lie_abed_N = mkN "lie-abed" "lie-abeds" ;
+lin lie_detector_N = mkN "lie-detector" "lie-detectors" ;
+lin lie_in_N = mkN "lie-in" "lie-ins" ;
+lin lie_lay_V = mkV "lie" "lay" "lain" ;
+lin lie_lied_V = mkV "lie" "lied" "lied" ;
+lin liebfraumilch_N = mkN "liebfraumilch" "liebfraumilches" ;
+lin liechtensteiner_A = mkAMost "liechtensteiner" "liechtensteinerly" ;
+lin liechtensteiner_N = mkN "liechtensteiner" "liechtensteiners" ;
+lin lied_N = mkN "lied" "IRREG" ;
+lin lieder_singer_N = mkN "lieder-singer" "lieder-singers" ;
+lin lief_Adv = mkAdv "lief" ;
+lin liege_A = mkAMost "liege" "liegely" ;
+lin liege_N = mkN "liege" "lieges" ;
+lin liegeman_N = mkN "liegeman" "liegemen" ;
+lin lien_N = mkN "lien" "liens" ;
+lin lieu_N = mkN "lieu" "lieus" ;
+lin lieutenancy_N = mkN "lieutenancy" "lieutenancies" ;
+lin lieutenant_N = mkN "lieutenant" "lieutenants" ;
+lin life_N = mkN "life" "lives" ;
+lin life_buoy_N = mkN "life-buoy" "life-buoys" ;
+lin life_giving_A = mkAMost "life-giving" "life-givingly" ;
+lin life_jacket_N = mkN "life-jacket" "life-jackets" ;
+lin life_office_N = mkN "life-office" "life-offices" ;
+lin life_preserver_N = mkN "life-preserver" "life-preservers" ;
+lin life_raft_N = mkN "life-raft" "life-rafts" ;
+lin life_saver_N = mkN "life-saver" "life-savers" ;
+lin life_size_A = mkAMost "life-size" "life-sizely" ;
+lin life_sized_A = mkAMost "life-sized" "life-sizedly" ;
+lin life_span_N = mkN "life-span" "life-spans" ;
+lin life_work_N = mkN "life-work" "life-works" ;
+lin lifebelt_N = mkN "lifebelt" "lifebelts" ;
+lin lifeblood_N = mkN "lifeblood" "lifebloods" ;
+lin lifeboat_N = mkN "lifeboat" "lifeboats" ;
+lin lifebuoy_N = mkN "lifebuoy" "lifebuoys" ;
+lin lifeguard_N = mkN "lifeguard" "lifeguards" ;
+lin lifeless_A = mkAMost "lifeless" "lifelessly" ;
+lin lifelike_A = mkAMost "lifelike" "lifelikely" ;
+lin lifeline_N = mkN "lifeline" "lifelines" ;
+lin lifelong_A = mkAMost "lifelong" "lifelongly" ;
+lin lifer_N = mkN "lifer" "lifers" ;
+lin lifesaving_N = mkN "lifesaving" "lifesavings" ;
+lin lifetime_N = mkN "lifetime" "lifetimes" ;
+lin lifework_N = mkN "lifework" "lifeworks" ;
+lin lift_N = mkN "lift" "lifts" ;
+lin lift_V = mkV "lift" "lifted" "lifted" ;
+lin lift_off_N = mkN "lift-off" "lift-offs" ;
+lin liftman_N = mkN "liftman" "liftmen" ;
+lin liftoff_N = mkN "liftoff" "liftoffs" ;
+lin ligament_N = mkN "ligament" "ligaments" ;
+lin ligand_N = mkN "ligand" "ligands" ;
+lin ligation_N = mkN "ligation" "ligations" ;
+lin ligature_N = mkN "ligature" "ligatures" ;
+lin liger_N = mkN "liger" "ligers" ;
+lin light_A = mkA "light" "lighter" "lightest" "lightly" ;
+lin light_Adv = mkAdv "light" ;
+lin light_N = mkN "light" "lights" ;
+lin light_armed_A = mkAMost "light-armed" "light-armedly" ;
+lin light_coloured_A = mkAMost "light-coloured" "light-colouredly" ;
+lin light_fingered_A = mkAMost "light-fingered" "light-fingeredly" ;
+lin light_handed_A = mkAMost "light-handed" "light-handedly" ;
+lin light_headed_A = mkAMost "light-headed" "light-headedly" ;
+lin light_headedness_N = mkN "light-headedness" "light-headednesses" ;
+lin light_hearted_A = mkAMost "light-hearted" "light-heartedly" ;
+lin light_heartedness_N = mkN "light-heartedness" "light-heartednesses" ;
+lin light_heavyweight_N = mkN "light-heavyweight" "light-heavyweights" ;
+lin light_lighted_V = mkV "light" "lighted" "lighted" ;
+lin light_lit_V = mkV "light" "lit" "lighted" ;
+lin light_minded_A = mkAMost "light-minded" "light-mindedly" ;
+lin light_mindedness_N = mkN "light-mindedness" "light-mindednesses" ;
+lin light_o'_love_N = mkN "light-o'-love" "light-o'-loves" ;
+lin lighten_lightened_V = mkV "lighten" "lightened" "lightened" ;
+lin lighten_lightenned_V = mkV "lighten" "lightenned" "lightenned" ;
+lin lightening_N = mkN "lightening" "lightenings" ;
+lin lighter_N = mkN "lighter" "lighters" ;
+lin lighter_V = mkV "lighter" "lightered" "lightered" ;
+lin lighterage_N = mkN "lighterage" "lighterages" ;
+lin lighterman_N = mkN "lighterman" "lightermans" ;
+lin lightheadedness_N = mkN "lightheadedness" "lightheadednesses" ;
+lin lighthouse_N = mkN "lighthouse" "lighthouses" ;
+lin lighting_N = mkN "lighting" "lightings" ;
+lin lighting_up_A = mkAMost "lighting-up" "lighting-uply" ;
+lin lightless_A = mkAMost "lightless" "lightlessly" ;
+lin lightness_N = mkN "lightness" "lightnesses" ;
+lin lightning_N = mkN "lightning" "lightnings" ;
+lin lightning_conductor_N = mkN "lightning-conductor" "lightning-conductors" ;
+lin lightning_rod_N = mkN "lightning-rod" "lightning-rods" ;
+lin lightproof_A = mkAMost "lightproof" "lightproofly" ;
+lin lightship_N = mkN "lightship" "lightships" ;
+lin lightsome_A = mkAMost "lightsome" "lightsomely" ;
+lin lightsomeness_N = mkN "lightsomeness" "lightsomenesses" ;
+lin lightweight_A = mkAMost "lightweight" "lightweightly" ;
+lin lightweight_N = mkN "lightweight" "lightweights" ;
+lin lightwood_N = mkN "lightwood" "lightwoods" ;
+lin ligne_N = mkN "ligne" "lignes" ;
+lin ligneous_A = mkAMost "ligneous" "ligneously" ;
+lin lignin_N = mkN "lignin" "lignins" ;
+lin lignite_N = mkN "lignite" "lignites" ;
+lin lignosae_N = mkN "lignosae" "lignosaes" ;
+lin lignum_N = mkN "lignum" "lignums" ;
+lin ligule_N = mkN "ligule" "ligules" ;
+lin likable_A = mkAMost "likable" "likably" ;
+lin like_A = mkAMost "like" "likely" ;
+lin like_Adv = mkAdv "like" ;
+lin like_N = mkN "like" "likes" ;
+lin like_Prep = mkPrep "like" ;
+lin like_V = mkV "like" "liked" "liked" ;
+lin like_minded_A = mkAMost "like-minded" "like-mindedly" ;
+lin likeable_A = mkAMost "likeable" "likeably" ;
+lin likelihood_N = mkN "likelihood" "likelihoods" ;
+lin likely_A = mkA "likely" "likelier" "likeliest" "likelily" ;
+lin liken_V = mkV "liken" "likened" "likened" ;
+lin likeness_N = mkN "likeness" "likenesses" ;
+lin likening_N = mkN "likening" "likenings" ;
+lin likewise_Adv = mkAdv "likewise" ;
+lin liking_N = mkN "liking" "likings" ;
+lin likuta_N = mkN "likuta" "likutas" ;
+lin lilac_N = mkN "lilac" "lilacs" ;
+lin lilangeni_N = mkN "lilangeni" "lilangenis" ;
+lin liliaceous_A = mkAMost "liliaceous" "liliaceously" ;
+lin lilliputian_A = mkAMost "lilliputian" "lilliputianly" ;
+lin lilliputian_N = mkN "lilliputian" "lilliputians" ;
+lin lilt_N = mkN "lilt" "lilts" ;
+lin lilt_V = mkV "lilt" "lilted" "lilted" ;
+lin lily_N = mkN "lily" "lilies" ;
+lin lily_livered_A = mkAMost "lily-livered" "lily-liveredly" ;
+lin lily_white_A = mkAMost "lily-white" "lily-whitely" ;
+lin lilyturf_N = mkN "lilyturf" "lilyturfs" ;
+lin limacine_A = mkAMost "limacine" "limacinely" ;
+lin liman_N = mkN "liman" "limans" ;
+lin limb_N = mkN "limb" "limbs" ;
+lin limbed_A = mkAMost "limbed" "limbedly" ;
+lin limber_A = mkAMost "limber" "limberly" ;
+lin limber_N = mkN "limber" "limbers" ;
+lin limber_V = mkV "limber" "limbered" "limbered" ;
+lin limbers_N = mkN "limbers" "limberses" ;
+lin limbic_A = mkAMost "limbic" "limbicly" ;
+lin limbless_A = mkAMost "limbless" "limblessly" ;
+lin limbo_N = mkN "limbo" "limbos" ;
+lin limbus_N = mkN "limbus" "limbuses" ;
+lin lime_N = mkN "lime" "limes" ;
+lin lime_V = mkV "lime" "limed" "limed" ;
+lin lime_tree_N = mkN "lime-tree" "lime-trees" ;
+lin limeade_N = mkN "limeade" "limeades" ;
+lin limejuice_N = mkN "limejuice" "limejuices" ;
+lin limekiln_N = mkN "limekiln" "limekilns" ;
+lin limelight_N = mkN "limelight" "limelights" ;
+lin limerick_N = mkN "limerick" "limericks" ;
+lin limestone_N = mkN "limestone" "limestones" ;
+lin limewater_N = mkN "limewater" "limewaters" ;
+lin limey_N = mkN "limey" "limeys" ;
+lin limit_N = mkN "limit" "limits" ;
+lin limit_V = mkV "limit" "limited" "limited" ;
+lin limitation_N = mkN "limitation" "limitations" ;
+lin limitedly_Adv = mkAdv "limitedly" ;
+lin limiter_N = mkN "limiter" "limiters" ;
+lin limiting_A = mkAMost "limiting" "limitingly" ;
+lin limitless_A = mkAMost "limitless" "limitlessly" ;
+lin limn_V = mkV "limn" "limned" "limned" ;
+lin limnological_A = mkAMost "limnological" "limnologically" ;
+lin limnologist_N = mkN "limnologist" "limnologists" ;
+lin limnology_N = mkN "limnology" "limnologies" ;
+lin limonene_N = mkN "limonene" "limonenes" ;
+lin limonite_N = mkN "limonite" "limonites" ;
+lin limousine_N = mkN "limousine" "limousines" ;
+lin limp_A = mkAMost "limp" "limply" ;
+lin limp_N = mkN "limp" "limps" ;
+lin limp_V = mkV "limp" "limped" "limped" ;
+lin limpa_N = mkN "limpa" "limpas" ;
+lin limpet_N = mkN "limpet" "limpets" ;
+lin limpid_A = mkAMost "limpid" "limpidly" ;
+lin limpidity_N = mkN "limpidity" "limpidities" ;
+lin limpkin_N = mkN "limpkin" "limpkins" ;
+lin limpness_N = mkN "limpness" "limpnesses" ;
+lin linage_N = mkN "linage" "linages" ;
+lin linalool_N = mkN "linalool" "linalools" ;
+lin linchpin_N = mkN "linchpin" "linchpins" ;
+lin lincomycin_N = mkN "lincomycin" "lincomycins" ;
+lin lindane_N = mkN "lindane" "lindanes" ;
+lin linden_N = mkN "linden" "lindens" ;
+lin linden_tree_N = mkN "linden-tree" "linden-trees" ;
+lin lindy_N = mkN "lindy" "lindies" ;
+lin line_N = mkN "line" "lines" ;
+lin line_V = mkV "line" "lined" "lined" ;
+lin line_shooter_N = mkN "line-shooter" "line-shooters" ;
+lin line_shooting_N = mkN "line-shooting" "line-shootings" ;
+lin line_up_N = mkN "line-up" "line-ups" ;
+lin lineage_N = mkN "lineage" "lineages" ;
+lin lineal_A = mkAMost "lineal" "lineally" ;
+lin lineament_N = mkN "lineament" "lineaments" ;
+lin linear_A = mkAMost "linear" "linearly" ;
+lin lineation_N = mkN "lineation" "lineations" ;
+lin linebacker_N = mkN "linebacker" "linebackers" ;
+lin linecut_N = mkN "linecut" "linecuts" ;
+lin linelike_A = mkAMost "linelike" "linelikely" ;
+lin lineman_N = mkN "lineman" "linemen" ;
+lin linen_N = mkN "linen" "linens" ;
+lin linen_draper_N = mkN "linen-draper" "linen-drapers" ;
+lin linendraper_N = mkN "linendraper" "linendrapers" ;
+lin liner_N = mkN "liner" "liners" ;
+lin liner_train_N = mkN "liner-train" "liner-trains" ;
+lin linesman_N = mkN "linesman" "linesmen" ;
+lin lineup_N = mkN "lineup" "lineups" ;
+lin ling_N = mkN "ling" "lings" ;
+lin lingam_N = mkN "lingam" "lingams" ;
+lin lingcod_N = mkN "lingcod" "lingcods" ;
+lin linger_V = mkV "linger" "lingered" "lingered" ;
+lin lingerer_N = mkN "lingerer" "lingerers" ;
+lin lingerie_N = mkN "lingerie" "lingeries" ;
+lin lingeringly_Adv = mkAdv "lingeringly" ;
+lin lingo_N = mkN "lingo" "lingoes" ;
+lin lingonberry_N = mkN "lingonberry" "lingonberries" ;
+lin lingua_franca_N = mkN "lingua franca" "lingua francae" ;
+lin lingual_A = mkAMost "lingual" "lingually" ;
+lin lingual_N = mkN "lingual" "linguals" ;
+lin linguica_N = mkN "linguica" "linguicas" ;
+lin linguine_N = mkN "linguine" "linguines" ;
+lin linguist_N = mkN "linguist" "linguists" ;
+lin linguistic_A = mkAMost "linguistic" "linguisticly" ;
+lin linguistically_Adv = mkAdv "linguistically" ;
+lin linguistics_N = mkN "linguistics" "linguistics" ;
+lin lingulate_A = mkAMost "lingulate" "lingulately" ;
+lin liniment_N = mkN "liniment" "liniments" ;
+lin linin_N = mkN "linin" "linins" ;
+lin lining_N = mkN "lining" "linings" ;
+lin link_N = mkN "link" "links" ;
+lin link_V = mkV "link" "linked" "linked" ;
+lin link_up_N = mkN "link-up" "link-ups" ;
+lin linkage_N = mkN "linkage" "linkages" ;
+lin linkboy_N = mkN "linkboy" "linkboys" ;
+lin linkman_N = mkN "linkman" "linkmen" ;
+lin links_N = mkN "links" "links" ;
+lin linnet_N = mkN "linnet" "linnets" ;
+lin lino_N = mkN "lino" "linoes" ;
+lin linocut_N = mkN "linocut" "linocuts" ;
+lin linoleum_N = mkN "linoleum" "linoleums" ;
+lin linotype_N = mkN "linotype" "linotypes" ;
+lin linseed_N = mkN "linseed" "linseeds" ;
+lin linsey_woolsey_N = mkN "linsey-woolsey" "linsey-woolseys" ;
+lin linstock_N = mkN "linstock" "linstocks" ;
+lin lint_N = mkN "lint" "lints" ;
+lin lintel_N = mkN "lintel" "lintels" ;
+lin linuron_N = mkN "linuron" "linurons" ;
+lin lion_N = mkN "lion" "lions" ;
+lin lion_hearted_A = mkAMost "lion-hearted" "lion-heartedly" ;
+lin lion_hunter_N = mkN "lion-hunter" "lion-hunters" ;
+lin lioness_N = mkN "lioness" "lionesses" ;
+lin lionet_N = mkN "lionet" "lionets" ;
+lin lionfish_N = mkN "lionfish" "lionfishes" ;
+lin lionhearted_A = mkAMost "lionhearted" "lionheartedly" ;
+lin lionize_V = mkV "lionize" "lionized" "lionized" ;
+lin lip_N = mkN "lip" "lips" ;
+lin lip_read_V = mkV "lip-read" "lip-read" "lip-read" ;
+lin lip_reading_N = mkN "lip-reading" "lip-readings" ;
+lin liparis_N = mkN "liparis" "liparises" ;
+lin lipase_N = mkN "lipase" "lipases" ;
+lin lipectomy_N = mkN "lipectomy" "lipectomies" ;
+lin lipemia_N = mkN "lipemia" "lipemias" ;
+lin lipid_N = mkN "lipid" "lipids" ;
+lin lipidosis_N = mkN "lipidosis" "lipidosises" ;
+lin lipless_A = mkAMost "lipless" "liplessly" ;
+lin lipogram_N = mkN "lipogram" "lipograms" ;
+lin lipoma_N = mkN "lipoma" "lipomas" ;
+lin lipomatosis_N = mkN "lipomatosis" "lipomatosises" ;
+lin lipophilic_A = mkAMost "lipophilic" "lipophilicly" ;
+lin lipoprotein_N = mkN "lipoprotein" "lipoproteins" ;
+lin liposarcoma_N = mkN "liposarcoma" "liposarcomas" ;
+lin liposome_N = mkN "liposome" "liposomes" ;
+lin liposuction_N = mkN "liposuction" "liposuctions" ;
+lin lipped_A = mkAMost "lipped" "lippedly" ;
+lin lipreading_N = mkN "lipreading" "lipreadings" ;
+lin lipstick_N = mkN "lipstick" "lipsticks" ;
+lin liquefaction_N = mkN "liquefaction" "liquefactions" ;
+lin liquefiable_A = mkAMost "liquefiable" "liquefiably" ;
+lin liquefy_V = mkV "liquefy" "liquefied" "liquefied" ;
+lin liquescent_A = mkAMost "liquescent" "liquescently" ;
+lin liqueur_N = mkN "liqueur" "liqueurs" ;
+lin liquid_A = mkAMost "liquid" "liquidly" ;
+lin liquid_N = mkN "liquid" "liquids" ;
+lin liquidambar_N = mkN "liquidambar" "liquidambars" ;
+lin liquidate_V = mkV "liquidate" "liquidated" "liquidated" ;
+lin liquidation_N = mkN "liquidation" "liquidations" ;
+lin liquidator_N = mkN "liquidator" "liquidators" ;
+lin liquidity_N = mkN "liquidity" "liquidities" ;
+lin liquidize_V = mkV "liquidize" "liquidized" "liquidized" ;
+lin liquidizer_N = mkN "liquidizer" "liquidizers" ;
+lin liquor_N = mkN "liquor" "liquors" ;
+lin liquorice_N = mkN "liquorice" "liquorices" ;
+lin lira_N = mkN "lira" "liras" ;
+lin lisinopril_N = mkN "lisinopril" "lisinoprils" ;
+lin lisle_N = mkN "lisle" "lisles" ;
+lin lisp_N = mkN "lisp" "lisps" ;
+lin lisp_V = mkV "lisp" "lisped" "lisped" ;
+lin lisper_N = mkN "lisper" "lispers" ;
+lin lispingly_Adv = mkAdv "lispingly" ;
+lin lissom_A = mkAMost "lissom" "lissomly" ;
+lin lissome_A = mkAMost "lissome" "lissomely" ;
+lin lissomeness_N = mkN "lissomeness" "lissomenesses" ;
+lin lissomness_N = mkN "lissomness" "lissomnesses" ;
+lin list_N = mkN "list" "lists" ;
+lin list_V = mkV "list" "listed" "listed" ;
+lin list_price_N = mkN "list-price" "list-prices" ;
+lin listen_listened_V = mkV "listen" "listened" "listened" ;
+lin listen_listenned_V = mkV "listen" "listenned" "listenned" ;
+lin listener_N = mkN "listener" "listeners" ;
+lin listening_N = mkN "listening" "listenings" ;
+lin lister_N = mkN "lister" "listers" ;
+lin listeria_N = mkN "listeria" "listerias" ;
+lin listeriosis_N = mkN "listeriosis" "listeriosises" ;
+lin listing_N = mkN "listing" "listings" ;
+lin listless_A = mkAMost "listless" "listlessly" ;
+lin listlessness_N = mkN "listlessness" "listlessnesses" ;
+lin lit_V = mkV "lit" "lit" "lit" ;
+lin litany_N = mkN "litany" "litanies" ;
+lin litas_N = mkN "litas" "litases" ;
+lin litchee_N = mkN "litchee" "litchees" ;
+lin litchi_N = mkN "litchi" "litchis" ;
+lin literacy_N = mkN "literacy" "literacies" ;
+lin literal_A = mkAMost "literal" "literally" ;
+lin literal_N = mkN "literal" "literals" ;
+lin literalism_N = mkN "literalism" "literalisms" ;
+lin literalness_N = mkN "literalness" "literalnesses" ;
+lin literary_A = mkAMost "literary" "literarily" ;
+lin literate_A = mkAMost "literate" "literately" ;
+lin literate_N = mkN "literate" "literates" ;
+lin literati_N = mkN "literati" "literatis" ;
+lin literatim_Adv = mkAdv "literatim" ;
+lin literature_N = mkN "literature" "literatures" ;
+lin lithe_A = mkAMost "lithe" "lithely" ;
+lin lithiasis_N = mkN "lithiasis" "lithiasises" ;
+lin lithic_A = mkAMost "lithic" "lithicly" ;
+lin lithium_N = mkN "lithium" "lithiums" ;
+lin lithograph_N = mkN "lithograph" "lithographs" ;
+lin lithograph_V = mkV "lithograph" "lithographed" "lithographed" ;
+lin lithographer_N = mkN "lithographer" "lithographers" ;
+lin lithographic_A = mkAMost "lithographic" "lithographicly" ;
+lin lithography_N = mkN "lithography" "lithographies" ;
+lin lithomancer_N = mkN "lithomancer" "lithomancers" ;
+lin lithomancy_N = mkN "lithomancy" "lithomancies" ;
+lin lithomantic_A = mkAMost "lithomantic" "lithomanticly" ;
+lin lithophyte_N = mkN "lithophyte" "lithophytes" ;
+lin lithophytic_A = mkAMost "lithophytic" "lithophyticly" ;
+lin lithops_N = mkN "lithops" "lithopses" ;
+lin lithosphere_N = mkN "lithosphere" "lithospheres" ;
+lin lithotomy_N = mkN "lithotomy" "lithotomies" ;
+lin lithuresis_N = mkN "lithuresis" "lithuresises" ;
+lin litigant_N = mkN "litigant" "litigants" ;
+lin litigate_V = mkV "litigate" "litigated" "litigated" ;
+lin litigation_N = mkN "litigation" "litigations" ;
+lin litigious_A = mkAMost "litigious" "litigiously" ;
+lin litigiousness_N = mkN "litigiousness" "litigiousnesses" ;
+lin litmus_N = mkN "litmus" "litmuses" ;
+lin litmus_paper_N = mkN "litmus-paper" "litmus-papers" ;
+lin litotes_N = mkN "litotes" "litotes" ;
+lin litre_N = mkN "litre" "litres" ;
+lin litter_N = mkN "litter" "litters" ;
+lin litter_V = mkV "litter" "littered" "littered" ;
+lin litter_basket_N = mkN "litter-basket" "litter-baskets" ;
+lin litter_lout_N = mkN "litter-lout" "litter-louts" ;
+lin litterbin_N = mkN "litterbin" "litterbins" ;
+lin litterer_N = mkN "litterer" "litterers" ;
+lin little_N = mkN "little" "littles" ;
+lin little_less_A = mkA "little" "less" "least" "little" ;
+lin little_lesser_A = mkA "little" "lesser" "least" "little" ;
+lin little_littler_A = mkA "little" "littler" "littlest" "little" ;
+lin littleneck_N = mkN "littleneck" "littlenecks" ;
+lin littleness_N = mkN "littleness" "littlenesses" ;
+lin littoral_A = mkAMost "littoral" "littorally" ;
+lin littoral_N = mkN "littoral" "littorals" ;
+lin liturgical_A = mkAMost "liturgical" "liturgically" ;
+lin liturgics_N = mkN "liturgics" "liturgicses" ;
+lin liturgist_N = mkN "liturgist" "liturgists" ;
+lin liturgy_N = mkN "liturgy" "liturgies" ;
+lin livable_A = mkAMost "livable" "livably" ;
+lin live_A = mkAMost "live" "lively" ;
+lin live_Adv = mkAdv "live" ;
+lin live_V = mkV "live" "lived" "lived" ;
+lin live_birth_N = mkN "live-birth" "live-births" ;
+lin liveable_A = mkAMost "liveable" "liveably" ;
+lin liveborn_A = mkAMost "liveborn" "livebornly" ;
+lin livedo_N = mkN "livedo" "livedoes" ;
+lin livelihood_N = mkN "livelihood" "livelihoods" ;
+lin liveliness_N = mkN "liveliness" "livelinesses" ;
+lin livelong_A = mkAMost "livelong" "livelongly" ;
+lin lively_A = mkA "lively" "livelier" "liveliest" "livelily" ;
+lin liven_V = mkV "liven" "livened" "livened" ;
+lin liver_N = mkN "liver" "livers" ;
+lin liveried_A = mkAMost "liveried" "liveriedly" ;
+lin liverish_A = mkAMost "liverish" "liverishly" ;
+lin liverpudlian_A = mkAMost "liverpudlian" "liverpudlianly" ;
+lin liverpudlian_N = mkN "liverpudlian" "liverpudlians" ;
+lin liverwort_N = mkN "liverwort" "liverworts" ;
+lin liverwurst_N = mkN "liverwurst" "liverwursts" ;
+lin livery_A = mkAMost "livery" "liverily" ;
+lin livery_N = mkN "livery" "liveries" ;
+lin liveryman_N = mkN "liveryman" "liverymen" ;
+lin livestock_N = mkN "livestock" "livestocks" ;
+lin livid_A = mkAMost "livid" "lividly" ;
+lin lividity_N = mkN "lividity" "lividities" ;
+lin lividness_N = mkN "lividness" "lividnesses" ;
+lin living_A = mkAMost "living" "livingly" ;
+lin living_N = mkN "living" "livings" ;
+lin living_room_N = mkN "living-room" "living-rooms" ;
+lin living_space_N = mkN "living-space" "living-spaces" ;
+lin liza_N = mkN "liza" "lizas" ;
+lin lizard_N = mkN "lizard" "lizards" ;
+lin lizardfish_N = mkN "lizardfish" "lizardfishes" ;
+lin llama_N = mkN "llama" "llamas" ;
+lin llano_N = mkN "llano" "llanoes" ;
+lin llb_N = mkN "llb" "llbs" ;
+lin loach_N = mkN "loach" "loaches" ;
+lin load_N = mkN "load" "loads" ;
+lin load_V = mkV "load" "loaded" "loaded" ;
+lin load_line_N = mkN "load-line" "load-lines" ;
+lin load_shedding_N = mkN "load-shedding" "load-sheddings" ;
+lin loader_N = mkN "loader" "loaders" ;
+lin loading_N = mkN "loading" "loadings" ;
+lin loadstar_N = mkN "loadstar" "loadstars" ;
+lin loadstone_N = mkN "loadstone" "loadstones" ;
+lin loaf_N = mkN "loaf" "loaves" ;
+lin loaf_V = mkV "loaf" "loafed" "loafed" ;
+lin loaf_sugar_N = mkN "loaf-sugar" "loaf-sugars" ;
+lin loafer_N = mkN "loafer" "loafers" ;
+lin loam_N = mkN "loam" "loams" ;
+lin loamless_A = mkAMost "loamless" "loamlessly" ;
+lin loamy_A = mkA "loamy" "loamier" "loamiest" "loamily" ;
+lin loan_N = mkN "loan" "loans" ;
+lin loan_V = mkV "loan" "loaned" "loaned" ;
+lin loan_collection_N = mkN "loan-collection" "loan-collections" ;
+lin loan_office_N = mkN "loan-office" "loan-offices" ;
+lin loanblend_N = mkN "loanblend" "loanblends" ;
+lin loaner_N = mkN "loaner" "loaners" ;
+lin loanword_N = mkN "loanword" "loanwords" ;
+lin loasa_N = mkN "loasa" "loasas" ;
+lin loath_A = mkAMost "loath" "loathly" ;
+lin loathe_V = mkV "loathe" "loathed" "loathed" ;
+lin loathing_N = mkN "loathing" "loathings" ;
+lin loathly_A = mkA "loathly" "loathlier" "loathliest" "loathlily" ;
+lin loathsome_A = mkAMost "loathsome" "loathsomely" ;
+lin loathsomeness_N = mkN "loathsomeness" "loathsomenesses" ;
+lin lob_N = mkN "lob" "lobs" ;
+lin lob_V = mkV "lob" "lobbed" "lobbed" ;
+lin lobar_A = mkAMost "lobar" "lobarly" ;
+lin lobate_A = mkAMost "lobate" "lobately" ;
+lin lobby_N = mkN "lobby" "lobbies" ;
+lin lobby_V = mkV "lobby" "lobbied" "lobbied" ;
+lin lobbyism_N = mkN "lobbyism" "lobbyisms" ;
+lin lobbyist_N = mkN "lobbyist" "lobbyists" ;
+lin lobe_N = mkN "lobe" "lobes" ;
+lin lobectomy_N = mkN "lobectomy" "lobectomies" ;
+lin lobed_A = mkAMost "lobed" "lobedly" ;
+lin lobelia_N = mkN "lobelia" "lobelias" ;
+lin lobeliaceous_A = mkAMost "lobeliaceous" "lobeliaceously" ;
+lin loblolly_N = mkN "loblolly" "loblollies" ;
+lin lobotomy_N = mkN "lobotomy" "lobotomies" ;
+lin lobscouse_N = mkN "lobscouse" "lobscouses" ;
+lin lobster_N = mkN "lobster" "lobsters" ;
+lin lobster_pot_N = mkN "lobster-pot" "lobster-pots" ;
+lin lobsterman_N = mkN "lobsterman" "lobstermen" ;
+lin lobular_A = mkAMost "lobular" "lobularly" ;
+lin lobularity_N = mkN "lobularity" "lobularities" ;
+lin lobule_N = mkN "lobule" "lobules" ;
+lin local_A = mkAMost "local" "locally" ;
+lin local_N = mkN "local" "locals" ;
+lin locale_N = mkN "locale" "locales" ;
+lin localism_N = mkN "localism" "localisms" ;
+lin locality_N = mkN "locality" "localities" ;
+lin localization_N = mkN "localization" "localizations" ;
+lin localize_V = mkV "localize" "localized" "localized" ;
+lin locate_V = mkV "locate" "located" "located" ;
+lin location_N = mkN "location" "locations" ;
+lin locator_N = mkN "locator" "locators" ;
+lin loch_N = mkN "loch" "lochs" ;
+lin lochia_N = mkN "lochia" "lochias" ;
+lin lock_N = mkN "lock" "locks" ;
+lin lock_V = mkV "lock" "locked" "locked" ;
+lin lock_gate_N = mkN "lock-gate" "lock-gates" ;
+lin lock_keeper_N = mkN "lock-keeper" "lock-keepers" ;
+lin lockage_N = mkN "lockage" "lockages" ;
+lin lockdown_N = mkN "lockdown" "lockdowns" ;
+lin locker_N = mkN "locker" "lockers" ;
+lin locket_N = mkN "locket" "lockets" ;
+lin locking_N = mkN "locking" "lockings" ;
+lin lockjaw_N = mkN "lockjaw" "lockjaws" ;
+lin lockmaster_N = mkN "lockmaster" "lockmasters" ;
+lin locknut_N = mkN "locknut" "locknuts" ;
+lin lockout_N = mkN "lockout" "lockouts" ;
+lin lockring_N = mkN "lockring" "lockrings" ;
+lin locksmith_N = mkN "locksmith" "locksmiths" ;
+lin lockstep_N = mkN "lockstep" "locksteps" ;
+lin lockstitch_N = mkN "lockstitch" "lockstitches" ;
+lin lockup_A = mkAMost "lockup" "lockuply" ;
+lin lockup_N = mkN "lockup" "lockups" ;
+lin loco_A = mkAMost "loco" "locoly" ;
+lin locomotion_N = mkN "locomotion" "locomotions" ;
+lin locomotive_A = mkAMost "locomotive" "locomotively" ;
+lin locomotive_N = mkN "locomotive" "locomotives" ;
+lin locoweed_N = mkN "locoweed" "locoweeds" ;
+lin locule_N = mkN "locule" "locules" ;
+lin locum_N = mkN "locum" "locums" ;
+lin locum_tenens_N = mkN "locum tenens" "IRREG" ;
+lin locus_N = mkN "locus" "loci" ;
+lin locus_classicus_N = mkN "locus classicus" "locus classici" ;
+lin locust_N = mkN "locust" "locusts" ;
+lin locust_tree_N = mkN "locust-tree" "locust-trees" ;
+lin locution_N = mkN "locution" "locutions" ;
+lin lode_N = mkN "lode" "lodes" ;
+lin lodestar_N = mkN "lodestar" "lodestars" ;
+lin lodestone_N = mkN "lodestone" "lodestones" ;
+lin lodge_N = mkN "lodge" "lodges" ;
+lin lodge_V = mkV "lodge" "lodged" "lodged" ;
+lin lodgement_N = mkN "lodgement" "lodgements" ;
+lin lodger_N = mkN "lodger" "lodgers" ;
+lin lodging_N = mkN "lodging" "lodgings" ;
+lin lodging_house_N = mkN "lodging-house" "lodging-houses" ;
+lin lodgment_N = mkN "lodgment" "lodgments" ;
+lin loess_N = mkN "loess" "loesses" ;
+lin loft_N = mkN "loft" "lofts" ;
+lin loft_V = mkV "loft" "lofted" "lofted" ;
+lin loftiness_N = mkN "loftiness" "loftinesses" ;
+lin lofty_A = mkA "lofty" "loftier" "loftiest" "loftily" ;
+lin log_N = mkN "log" "logs" ;
+lin log_V = mkV "log" "logged" "logged" ;
+lin log_cabin_N = mkN "log-cabin" "log-cabins" ;
+lin log_jam_N = mkN "log-jam" "log-jams" ;
+lin log_rolling_N = mkN "log-rolling" "log-rollings" ;
+lin loganberry_N = mkN "loganberry" "loganberries" ;
+lin logarithm_N = mkN "logarithm" "logarithms" ;
+lin logarithmic_A = mkAMost "logarithmic" "logarithmicly" ;
+lin logarithmically_Adv = mkAdv "logarithmically" ;
+lin logbook_N = mkN "logbook" "logbooks" ;
+lin loge_N = mkN "loge" "loges" ;
+lin loggerhead_N = mkN "loggerhead" "loggerheads" ;
+lin loggerheads_N = mkN "loggerheads" "loggerheadses" ;
+lin loggia_N = mkN "loggia" "loggias" ;
+lin logging_N = mkN "logging" "loggings" ;
+lin logic_N = mkN "logic" "logics" ;
+lin logical_A = mkAMost "logical" "logically" ;
+lin logicality_N = mkN "logicality" "logicalities" ;
+lin logician_N = mkN "logician" "logicians" ;
+lin logicism_N = mkN "logicism" "logicisms" ;
+lin loginess_N = mkN "loginess" "loginesses" ;
+lin logion_N = mkN "logion" "logions" ;
+lin logistic_A = mkAMost "logistic" "logisticly" ;
+lin logistics_N = mkN "logistics" "logistics" ;
+lin logjam_N = mkN "logjam" "logjams" ;
+lin logo_N = mkN "logo" "logoes" ;
+lin logogram_N = mkN "logogram" "logograms" ;
+lin logogrammatic_A = mkAMost "logogrammatic" "logogrammaticly" ;
+lin logogrammatically_Adv = mkAdv "logogrammatically" ;
+lin logomach_N = mkN "logomach" "logomaches" ;
+lin logomachy_N = mkN "logomachy" "logomachies" ;
+lin logorrhea_N = mkN "logorrhea" "logorrheas" ;
+lin logrolling_N = mkN "logrolling" "logrollings" ;
+lin logwood_N = mkN "logwood" "logwoods" ;
+lin loin_N = mkN "loin" "loins" ;
+lin loincloth_N = mkN "loincloth" "loincloths" ;
+lin loins_N = mkN "loins" "loinses" ;
+lin loir_N = mkN "loir" "loirs" ;
+lin loiter_V = mkV "loiter" "loitered" "loitered" ;
+lin loiterer_N = mkN "loiterer" "loiterers" ;
+lin loligo_N = mkN "loligo" "loligoes" ;
+lin loll_V = mkV "loll" "lolled" "lolled" ;
+lin lollipop_N = mkN "lollipop" "lollipops" ;
+lin lolly_N = mkN "lolly" "lollies" ;
+lin lomatia_N = mkN "lomatia" "lomatias" ;
+lin loment_N = mkN "loment" "loments" ;
+lin lomustine_N = mkN "lomustine" "lomustines" ;
+lin londoner_N = mkN "londoner" "londoners" ;
+lin lone_A = mkAMost "lone" "lonely" ;
+lin loneliness_N = mkN "loneliness" "lonelinesses" ;
+lin lonely_A = mkA "lonely" "lonelier" "loneliest" "lonelily" ;
+lin loner_N = mkN "loner" "loners" ;
+lin lonesome_A = mkAMost "lonesome" "lonesomely" ;
+lin long_A = mkA "long" "longer" "longest" "long" ;
+lin long_N = mkN "long" "longs" ;
+lin long_V = mkV "long" "longed" "longed" ;
+lin long_distance_A = mkAMost "long-distance" "long-distancely" ;
+lin long_drawn_out_A = mkAMost "long-drawn-out" "long-drawn-outly" ;
+lin long_haired_A = mkAMost "long-haired" "long-hairedly" ;
+lin long_headed_A = mkAMost "long-headed" "long-headedly" ;
+lin long_lived_A = mkAMost "long-lived" "long-livedly" ;
+lin long_play_A = mkAMost "long-play" "long-plaily" ;
+lin long_playing_A = mkAMost "long-playing" "long-playingly" ;
+lin long_range_A = mkAMost "long-range" "long-rangely" ;
+lin long_sighted_A = mkAMost "long-sighted" "long-sightedly" ;
+lin long_standing_A = mkAMost "long-standing" "long-standingly" ;
+lin long_suffering_A = mkAMost "long-suffering" "long-sufferingly" ;
+lin long_term_A = mkAMost "long-term" "long-termly" ;
+lin long_time_A = mkAMost "long-time" "long-timely" ;
+lin long_winded_A = mkAMost "long-winded" "long-windedly" ;
+lin long_windedness_N = mkN "long-windedness" "long-windednesses" ;
+lin longan_N = mkN "longan" "longans" ;
+lin longanberry_N = mkN "longanberry" "longanberries" ;
+lin longboat_N = mkN "longboat" "longboats" ;
+lin longbow_N = mkN "longbow" "longbows" ;
+lin longbowman_N = mkN "longbowman" "longbowmen" ;
+lin longer_Adv = mkAdv "longer" ;
+lin longer_N = mkN "longer" "longers" ;
+lin longest_Adv = mkAdv "longest" ;
+lin longevity_N = mkN "longevity" "longevities" ;
+lin longhand_A = mkAMost "longhand" "longhandly" ;
+lin longhand_N = mkN "longhand" "longhands" ;
+lin longhorn_N = mkN "longhorn" "longhorns" ;
+lin longing_N = mkN "longing" "longings" ;
+lin longingly_Adv = mkAdv "longingly" ;
+lin longish_A = mkAMost "longish" "longishly" ;
+lin longitude_N = mkN "longitude" "longitudes" ;
+lin longitudinal_A = mkAMost "longitudinal" "longitudinally" ;
+lin longness_N = mkN "longness" "longnesses" ;
+lin longshoreman_N = mkN "longshoreman" "longshoremen" ;
+lin longshot_N = mkN "longshot" "longshots" ;
+lin longstanding_A = mkAMost "longstanding" "longstandingly" ;
+lin longueur_N = mkN "longueur" "longueurs" ;
+lin longways_Adv = mkAdv "longways" ;
+lin longways_N = mkN "longways" "longwayses" ;
+lin longwise_Adv = mkAdv "longwise" ;
+lin longwool_N = mkN "longwool" "longwools" ;
+lin loo_N = mkN "loo" "loos" ;
+lin loofa_N = mkN "loofa" "loofas" ;
+lin loofah_N = mkN "loofah" "loofahs" ;
+lin look_N = mkN "look" "looks" ;
+lin look_V = mkV "look" "looked" "looked" ;
+lin look_over_N = mkN "look-over" "look-overs" ;
+lin lookdown_N = mkN "lookdown" "lookdowns" ;
+lin looker_N = mkN "looker" "lookers" ;
+lin looker_on_N = mkN "looker-on" "looker-a" ;
+lin looking_N = mkN "looking" "lookings" ;
+lin looking_glass_N = mkN "looking-glass" "looking-glasses" ;
+lin lookout_N = mkN "lookout" "lookouts" ;
+lin loom_N = mkN "loom" "looms" ;
+lin loom_V = mkV "loom" "loomed" "loomed" ;
+lin loon_N = mkN "loon" "loons" ;
+lin loony_A = mkA "loony" "loonier" "looniest" "loonily" ;
+lin loony_N = mkN "loony" "loonies" ;
+lin loonybin_N = mkN "loonybin" "loonybins" ;
+lin loop_N = mkN "loop" "loops" ;
+lin loop_V = mkV "loop" "looped" "looped" ;
+lin loop_line_N = mkN "loop-line" "loop-lines" ;
+lin loophole_N = mkN "loophole" "loopholes" ;
+lin loopy_A = mkAMost "loopy" "loopily" ;
+lin loose_A = mkA "loose" "looser" "loosest" "loosely" ;
+lin loose_Adv = mkAdv "loose" ;
+lin loose_V = mkV "loose" "loosed" "loosed" ;
+lin loose_leaf_A = mkAMost "loose-leaf" "loose-leafly" ;
+lin looseleaf_A = mkAMost "looseleaf" "looseleafly" ;
+lin loosen_loosened_V = mkV "loosen" "loosened" "loosened" ;
+lin loosen_loosenned_V = mkV "loosen" "loosenned" "loosenned" ;
+lin looseness_N = mkN "looseness" "loosenesses" ;
+lin loosening_N = mkN "loosening" "loosenings" ;
+lin loosestrife_N = mkN "loosestrife" "loosestrifes" ;
+lin loot_N = mkN "loot" "loots" ;
+lin loot_V = mkV "loot" "looted" "looted" ;
+lin looter_N = mkN "looter" "looters" ;
+lin looting_N = mkN "looting" "lootings" ;
+lin lop_V = mkV "lop" "lopped" "lopped" ;
+lin lop_eared_A = mkAMost "lop-eared" "lop-earedly" ;
+lin lope_N = mkN "lope" "IRREG" ;
+lin lope_V = mkV "lope" "loped" "loped" ;
+lin lopsided_A = mkAMost "lopsided" "lopsidedly" ;
+lin lopsidedness_N = mkN "lopsidedness" "lopsidednesses" ;
+lin loquacious_A = mkAMost "loquacious" "loquaciously" ;
+lin loquaciousness_N = mkN "loquaciousness" "loquaciousnesses" ;
+lin loquacity_N = mkN "loquacity" "loquacities" ;
+lin loquat_N = mkN "loquat" "loquats" ;
+lin lorazepam_N = mkN "lorazepam" "lorazepams" ;
+lin lorchel_N = mkN "lorchel" "lorchels" ;
+lin lord_N = mkN "lord" "lords" ;
+lin lord_V = mkV "lord" "lorded" "lorded" ;
+lin lordless_A = mkAMost "lordless" "lordlessly" ;
+lin lordliness_N = mkN "lordliness" "lordlinesses" ;
+lin lordly_A = mkA "lordly" "lordlier" "lordliest" "lordlily" ;
+lin lordolatry_N = mkN "lordolatry" "lordolatries" ;
+lin lordosis_N = mkN "lordosis" "lordosises" ;
+lin lordship_N = mkN "lordship" "lordships" ;
+lin lore_N = mkN "lore" "lores" ;
+lin lorgnette_N = mkN "lorgnette" "lorgnettes" ;
+lin lorica_N = mkN "lorica" "loricas" ;
+lin lorikeet_N = mkN "lorikeet" "lorikeets" ;
+lin lorn_A = mkAMost "lorn" "lornly" ;
+lin lorry_N = mkN "lorry" "lorries" ;
+lin lory_N = mkN "lory" "lories" ;
+lin lose_losed_V = mkV "lose" "losed" "losed" ;
+lin lose_lost_V = mkV "lose" "lost" "lost" ;
+lin loser_N = mkN "loser" "losers" ;
+lin losings_N = mkN "losings" "losingses" ;
+lin loss_N = mkN "loss" "losses" ;
+lin loss_leader_N = mkN "loss-leader" "loss-leaders" ;
+lin lossless_A = mkAMost "lossless" "losslessly" ;
+lin lossy_A = mkA "lossy" "lossier" "lossiest" "lossily" ;
+lin lot_N = mkN "lot" "lots" ;
+lin lota_N = mkN "lota" "lotas" ;
+lin loth_A = mkAMost "loth" "lothly" ;
+lin loti_N = mkN "loti" "lotis" ;
+lin lotic_A = mkAMost "lotic" "loticly" ;
+lin lotion_N = mkN "lotion" "lotions" ;
+lin lottery_N = mkN "lottery" "lotteries" ;
+lin lotto_N = mkN "lotto" "lottoes" ;
+lin lotus_N = mkN "lotus" "lotuses" ;
+lin lotus_eater_N = mkN "lotus-eater" "lotus-eaters" ;
+lin lotusland_N = mkN "lotusland" "lotuslands" ;
+lin louche_A = mkA "louche" "loucher" "louchest" "louchely" ;
+lin loud_A = mkA "loud" "louder" "loudest" "loudly" ;
+lin loud_Adv = mkAdv "loud" ;
+lin loud_hailer_N = mkN "loud-hailer" "loud-hailers" ;
+lin loudmouth_N = mkN "loudmouth" "loudmouths" ;
+lin loudness_N = mkN "loudness" "loudnesses" ;
+lin loudspeaker_N = mkN "loudspeaker" "loudspeakers" ;
+lin lough_N = mkN "lough" "loughs" ;
+lin lounge_N = mkN "lounge" "lounges" ;
+lin lounge_V = mkV "lounge" "lounged" "lounged" ;
+lin lounge_chair_N = mkN "lounge-chair" "lounge-chairs" ;
+lin lounge_lizard_N = mkN "lounge-lizard" "lounge-lizards" ;
+lin lounge_suit_N = mkN "lounge-suit" "lounge-suits" ;
+lin lounger_N = mkN "lounger" "loungers" ;
+lin loungewear_N = mkN "loungewear" "loungewears" ;
+lin loupe_N = mkN "loupe" "loupes" ;
+lin lour_V = mkV "lour" "loured" "loured" ;
+lin louringly_Adv = mkAdv "louringly" ;
+lin louse_N = mkN "louse" "lice" ;
+lin lousy_A = mkA "lousy" "lousier" "lousiest" "lousily" ;
+lin lout_N = mkN "lout" "louts" ;
+lin loutish_A = mkAMost "loutish" "loutishly" ;
+lin louvar_N = mkN "louvar" "louvars" ;
+lin louver_N = mkN "louver" "louvers" ;
+lin louvered_A = mkAMost "louvered" "louveredly" ;
+lin louvre_N = mkN "louvre" "louvres" ;
+lin lovable_A = mkAMost "lovable" "lovably" ;
+lin lovage_N = mkN "lovage" "lovages" ;
+lin lovastatin_N = mkN "lovastatin" "lovastatins" ;
+lin love_N = mkN "love" "loves" ;
+lin love_V = mkV "love" "loved" "loved" ;
+lin love_affair_N = mkN "love-affair" "love-affairs" ;
+lin love_child_N = mkN "love-child" "love-children" ;
+lin love_feast_N = mkN "love-feast" "love-feasts" ;
+lin love_knot_N = mkN "love-knot" "love-knots" ;
+lin love_letter_N = mkN "love-letter" "love-letters" ;
+lin love_match_N = mkN "love-match" "love-matches" ;
+lin love_philtre_N = mkN "love-philtre" "love-philtres" ;
+lin love_potion_N = mkN "love-potion" "love-potions" ;
+lin love_seat_N = mkN "love-seat" "love-seats" ;
+lin love_song_N = mkN "love-song" "love-songs" ;
+lin love_story_N = mkN "love-story" "love-stories" ;
+lin love_token_N = mkN "love-token" "love-tokens" ;
+lin lovebird_N = mkN "lovebird" "lovebirds" ;
+lin loveless_A = mkAMost "loveless" "lovelessly" ;
+lin loveliness_N = mkN "loveliness" "lovelinesses" ;
+lin lovelorn_A = mkAMost "lovelorn" "lovelornly" ;
+lin lovely_A = mkA "lovely" "lovelier" "loveliest" "lovelily" ;
+lin lovemaking_N = mkN "lovemaking" "lovemakings" ;
+lin lover_N = mkN "lover" "lovers" ;
+lin loverlike_A = mkAMost "loverlike" "loverlikely" ;
+lin lovesick_A = mkAMost "lovesick" "lovesickly" ;
+lin lovesickness_N = mkN "lovesickness" "lovesicknesses" ;
+lin loving_A = mkAMost "loving" "lovingly" ;
+lin loving_cup_N = mkN "loving-cup" "loving-cups" ;
+lin loving_kindness_N = mkN "loving-kindness" "loving-kindnesses" ;
+lin lovingness_N = mkN "lovingness" "lovingnesses" ;
+lin low_A = mkA "low" "lower" "lowest" "lowly" ;
+lin low_Adv = mkAdv "low" ;
+lin low_N = mkN "low" "lows" ;
+lin low_V = mkV "low" "lowed" "lowed" ;
+lin low_down_A = mkAMost "low-down" "low-downly" ;
+lin low_keyed_A = mkAMost "low-keyed" "low-keyedly" ;
+lin low_pitched_A = mkAMost "low-pitched" "low-pitchedly" ;
+lin low_relief_N = mkN "low-relief" "low-reliefs" ;
+lin low_spirited_A = mkAMost "low-spirited" "low-spiritedly" ;
+lin lowborn_A = mkAMost "lowborn" "lowbornly" ;
+lin lowboy_N = mkN "lowboy" "lowboys" ;
+lin lowbred_A = mkAMost "lowbred" "lowbredly" ;
+lin lowbrow_A = mkAMost "lowbrow" "lowbrowly" ;
+lin lowbrow_N = mkN "lowbrow" "lowbrows" ;
+lin lower_Adv = mkAdv "lower" ;
+lin lower_V = mkV "lower" "lowered" "lowered" ;
+lin lowercase_A = mkAMost "lowercase" "lowercasely" ;
+lin lowerclassman_N = mkN "lowerclassman" "lowerclassmen" ;
+lin lowering_N = mkN "lowering" "lowerings" ;
+lin loweringly_Adv = mkAdv "loweringly" ;
+lin lowermost_A = mkAMost "lowermost" "lowermostly" ;
+lin lowest_Adv = mkAdv "lowest" ;
+lin lowland_A = mkAMost "lowland" "lowlandly" ;
+lin lowland_N = mkN "lowland" "lowlands" ;
+lin lowlander_N = mkN "lowlander" "lowlanders" ;
+lin lowliness_N = mkN "lowliness" "lowlinesses" ;
+lin lowly_A = mkA "lowly" "lowlier" "lowliest" "lowlily" ;
+lin lowness_N = mkN "lowness" "lownesses" ;
+lin lowset_A = mkAMost "lowset" "lowsetly" ;
+lin lox_N = mkN "lox" "loxes" ;
+lin loxapine_N = mkN "loxapine" "loxapines" ;
+lin loyal_A = mkA "loyal" "loyaller" "loyallest" "loyally" ;
+lin loyalist_N = mkN "loyalist" "loyalists" ;
+lin loyalty_N = mkN "loyalty" "loyalties" ;
+lin lozenge_N = mkN "lozenge" "lozenges" ;
+lin lp_N = mkN "lp" "lps" ;
+lin lsd_N = mkN "lsd" "lsds" ;
+lin luau_N = mkN "luau" "luaus" ;
+lin lubber_N = mkN "lubber" "lubbers" ;
+lin lubberly_A = mkAMost "lubberly" "lubberlily" ;
+lin lubricant_N = mkN "lubricant" "lubricants" ;
+lin lubricate_V = mkV "lubricate" "lubricated" "lubricated" ;
+lin lubrication_N = mkN "lubrication" "lubrications" ;
+lin lubricious_A = mkAMost "lubricious" "lubriciously" ;
+lin lucent_A = mkAMost "lucent" "lucently" ;
+lin lucerne_N = mkN "lucerne" "lucernes" ;
+lin lucid_A = mkAMost "lucid" "lucidly" ;
+lin lucidity_N = mkN "lucidity" "lucidities" ;
+lin lucifer_N = mkN "lucifer" "lucifers" ;
+lin luciferin_N = mkN "luciferin" "luciferins" ;
+lin lucifugous_A = mkAMost "lucifugous" "lucifugously" ;
+lin luck_N = mkN "luck" "lucks" ;
+lin luck_V = mkV "luck" "lucked" "lucked" ;
+lin luckless_A = mkAMost "luckless" "lucklessly" ;
+lin lucky_A = mkA "lucky" "luckier" "luckiest" "luckily" ;
+lin lucrative_A = mkAMost "lucrative" "lucratively" ;
+lin lucre_N = mkN "lucre" "lucres" ;
+lin lucubration_N = mkN "lucubration" "lucubrations" ;
+lin luddite_N = mkN "luddite" "luddites" ;
+lin ludicrous_A = mkAMost "ludicrous" "ludicrously" ;
+lin ludo_N = mkN "ludo" "ludoes" ;
+lin luff_N = mkN "luff" "luffs" ;
+lin luff_V = mkV "luff" "luffed" "luffed" ;
+lin luffa_N = mkN "luffa" "luffas" ;
+lin lug_N = mkN "lug" "lugs" ;
+lin lug_V = mkV "lug" "lugged" "lugged" ;
+lin luge_N = mkN "luge" "luges" ;
+lin luger_N = mkN "luger" "lugers" ;
+lin luggage_N = mkN "luggage" "luggages" ;
+lin luggage_carrier_N = mkN "luggage-carrier" "luggage-carriers" ;
+lin luggage_rack_N = mkN "luggage-rack" "luggage-racks" ;
+lin luggage_van_N = mkN "luggage-van" "luggage-vans" ;
+lin lugger_N = mkN "lugger" "luggers" ;
+lin luging_N = mkN "luging" "lugings" ;
+lin lugsail_N = mkN "lugsail" "lugsails" ;
+lin lugubrious_A = mkAMost "lugubrious" "lugubriously" ;
+lin lugubriousness_N = mkN "lugubriousness" "lugubriousnesses" ;
+lin lugworm_N = mkN "lugworm" "lugworms" ;
+lin lukewarm_A = mkAMost "lukewarm" "lukewarmly" ;
+lin lukewarmness_N = mkN "lukewarmness" "lukewarmnesses" ;
+lin lull_N = mkN "lull" "lulls" ;
+lin lull_V = mkV "lull" "lulled" "lulled" ;
+lin lullaby_N = mkN "lullaby" "lullabies" ;
+lin lumbago_N = mkN "lumbago" "lumbagoes" ;
+lin lumbar_A = mkAMost "lumbar" "lumbarly" ;
+lin lumber_N = mkN "lumber" "lumbers" ;
+lin lumber_V = mkV "lumber" "lumbered" "lumbered" ;
+lin lumber_mill_N = mkN "lumber-mill" "lumber-mills" ;
+lin lumbering_N = mkN "lumbering" "lumberings" ;
+lin lumberjack_N = mkN "lumberjack" "lumberjacks" ;
+lin lumberman_N = mkN "lumberman" "lumbermen" ;
+lin lumbermill_N = mkN "lumbermill" "lumbermills" ;
+lin lumberroom_N = mkN "lumberroom" "lumberrooms" ;
+lin lumberyard_N = mkN "lumberyard" "lumberyards" ;
+lin lumbosacral_A = mkAMost "lumbosacral" "lumbosacrally" ;
+lin lumen_N = mkN "lumen" "lumens" ;
+lin luminary_N = mkN "luminary" "luminaries" ;
+lin luminescence_N = mkN "luminescence" "luminescences" ;
+lin luminescent_A = mkAMost "luminescent" "luminescently" ;
+lin luminism_N = mkN "luminism" "luminisms" ;
+lin luminosity_N = mkN "luminosity" "luminosities" ;
+lin luminous_A = mkAMost "luminous" "luminously" ;
+lin lumma_N = mkN "lumma" "lummas" ;
+lin lump_N = mkN "lump" "lumps" ;
+lin lump_V = mkV "lump" "lumped" "lumped" ;
+lin lumpectomy_N = mkN "lumpectomy" "lumpectomies" ;
+lin lumpenproletariat_N = mkN "lumpenproletariat" "lumpenproletariats" ;
+lin lumper_N = mkN "lumper" "lumpers" ;
+lin lumpfish_N = mkN "lumpfish" "lumpfishes" ;
+lin lumpish_A = mkAMost "lumpish" "lumpishly" ;
+lin lumpsucker_N = mkN "lumpsucker" "lumpsuckers" ;
+lin lumpy_A = mkA "lumpy" "lumpier" "lumpiest" "lumpily" ;
+lin lunacy_N = mkN "lunacy" "lunacies" ;
+lin lunar_A = mkAMost "lunar" "lunarly" ;
+lin lunatic_A = mkAMost "lunatic" "lunaticly" ;
+lin lunatic_N = mkN "lunatic" "lunatics" ;
+lin lunch_N = mkN "lunch" "lunches" ;
+lin lunch_V = mkV "lunch" "lunched" "lunched" ;
+lin luncheon_N = mkN "luncheon" "luncheons" ;
+lin luncher_N = mkN "luncher" "lunchers" ;
+lin lunching_N = mkN "lunching" "lunchings" ;
+lin lunchroom_N = mkN "lunchroom" "lunchrooms" ;
+lin lunchtime_N = mkN "lunchtime" "lunchtimes" ;
+lin lunette_N = mkN "lunette" "lunettes" ;
+lin lung_N = mkN "lung" "lungs" ;
+lin lung_power_N = mkN "lung-power" "lung-powers" ;
+lin lunge_N = mkN "lunge" "lunges" ;
+lin lunge_V = mkV "lunge" "lunged" "lunged" ;
+lin lunger_N = mkN "lunger" "lungers" ;
+lin lungfish_N = mkN "lungfish" "lungfishes" ;
+lin lungi_N = mkN "lungi" "lungis" ;
+lin lunisolar_A = mkAMost "lunisolar" "lunisolarly" ;
+lin lunula_N = mkN "lunula" "lunulas" ;
+lin lupin_N = mkN "lupin" "lupins" ;
+lin lupine_A = mkAMost "lupine" "lupinely" ;
+lin lupine_N = mkN "lupine" "lupines" ;
+lin lupus_N = mkN "lupus" "lupuses" ;
+lin lurch_N = mkN "lurch" "lurches" ;
+lin lurch_V = mkV "lurch" "lurched" "lurched" ;
+lin lurcher_N = mkN "lurcher" "lurchers" ;
+lin lure_N = mkN "lure" "lures" ;
+lin lure_V = mkV "lure" "lured" "lured" ;
+lin lurid_A = mkAMost "lurid" "luridly" ;
+lin luridness_N = mkN "luridness" "luridnesses" ;
+lin lurk_V = mkV "lurk" "lurked" "lurked" ;
+lin lurker_N = mkN "lurker" "lurkers" ;
+lin lurking_place_N = mkN "lurking-place" "lurking-places" ;
+lin luscious_A = mkAMost "luscious" "lusciously" ;
+lin lusciousness_N = mkN "lusciousness" "lusciousnesses" ;
+lin lush_A = mkA "lush" "lusher" "lushest" "lushly" ;
+lin lush_N = mkN "lush" "lushes" ;
+lin lust_N = mkN "lust" "lusts" ;
+lin lust_V = mkV "lust" "lusted" "lusted" ;
+lin luster_N = mkN "luster" "lusters" ;
+lin lusterware_N = mkN "lusterware" "lusterwares" ;
+lin lustful_A = mkAMost "lustful" "lustfully" ;
+lin lustre_N = mkN "lustre" "lustres" ;
+lin lustrous_A = mkAMost "lustrous" "lustrously" ;
+lin lustrum_N = mkN "lustrum" "lustrums" ;
+lin lusty_A = mkA "lusty" "lustier" "lustiest" "lustily" ;
+lin lutanist_N = mkN "lutanist" "lutanists" ;
+lin lute_N = mkN "lute" "lutes" ;
+lin luteal_A = mkAMost "luteal" "luteally" ;
+lin lutefisk_N = mkN "lutefisk" "lutefisks" ;
+lin lutenist_N = mkN "lutenist" "lutenists" ;
+lin lutetium_N = mkN "lutetium" "lutetiums" ;
+lin lutheran_A = mkAMost "lutheran" "lutheranly" ;
+lin lutheran_N = mkN "lutheran" "lutherans" ;
+lin luthier_N = mkN "luthier" "luthiers" ;
+lin lutist_N = mkN "lutist" "lutists" ;
+lin lux_N = mkN "lux" "luxes" ;
+lin luxation_N = mkN "luxation" "luxations" ;
+lin luxe_A = mkAMost "luxe" "luxely" ;
+lin luxemburger_A = mkAMost "luxemburger" "luxemburgerly" ;
+lin luxemburger_N = mkN "luxemburger" "luxemburgers" ;
+lin luxuriance_N = mkN "luxuriance" "luxuriances" ;
+lin luxuriant_A = mkAMost "luxuriant" "luxuriantly" ;
+lin luxuriate_V = mkV "luxuriate" "luxuriated" "luxuriated" ;
+lin luxuriation_N = mkN "luxuriation" "luxuriations" ;
+lin luxurious_A = mkAMost "luxurious" "luxuriously" ;
+lin luxury_N = mkN "luxury" "luxuries" ;
+lin lwei_N = mkN "lwei" "lweis" ;
+lin lycaenid_N = mkN "lycaenid" "lycaenids" ;
+lin lycanthropy_N = mkN "lycanthropy" "lycanthropies" ;
+lin lyceum_N = mkN "lyceum" "lyceums" ;
+lin lychee_N = mkN "lychee" "lychees" ;
+lin lychgate_N = mkN "lychgate" "lychgates" ;
+lin lychnis_N = mkN "lychnis" "lychnises" ;
+lin lycopene_N = mkN "lycopene" "lycopenes" ;
+lin lycée_N = mkN "lycée" "lycées" ;
+lin lye_N = mkN "lye" "lyes" ;
+lin lygaeid_N = mkN "lygaeid" "lygaeids" ;
+lin lying_N = mkN "lying" "lyings" ;
+lin lying_in_A = mkAMost "lying-in" "lying-inly" ;
+lin lymantriid_N = mkN "lymantriid" "lymantriids" ;
+lin lymph_N = mkN "lymph" "lymphs" ;
+lin lymphadenitis_N = mkN "lymphadenitis" "lymphadenitises" ;
+lin lymphadenoma_N = mkN "lymphadenoma" "lymphadenomas" ;
+lin lymphadenopathy_N = mkN "lymphadenopathy" "lymphadenopathies" ;
+lin lymphangiectasia_N = mkN "lymphangiectasia" "lymphangiectasias" ;
+lin lymphangiogram_N = mkN "lymphangiogram" "lymphangiograms" ;
+lin lymphangiography_N = mkN "lymphangiography" "lymphangiographies" ;
+lin lymphangioma_N = mkN "lymphangioma" "lymphangiomas" ;
+lin lymphangitis_N = mkN "lymphangitis" "lymphangitises" ;
+lin lymphatic_A = mkAMost "lymphatic" "lymphaticly" ;
+lin lymphedema_N = mkN "lymphedema" "lymphedemas" ;
+lin lymphoblast_N = mkN "lymphoblast" "lymphoblasts" ;
+lin lymphocyte_N = mkN "lymphocyte" "lymphocytes" ;
+lin lymphocytic_A = mkAMost "lymphocytic" "lymphocyticly" ;
+lin lymphocytopenia_N = mkN "lymphocytopenia" "lymphocytopenias" ;
+lin lymphocytosis_N = mkN "lymphocytosis" "lymphocytosises" ;
+lin lymphogranuloma_N = mkN "lymphogranuloma" "lymphogranulomas" ;
+lin lymphoid_A = mkAMost "lymphoid" "lymphoidly" ;
+lin lymphokine_N = mkN "lymphokine" "lymphokines" ;
+lin lymphoma_N = mkN "lymphoma" "lymphomas" ;
+lin lymphopoiesis_N = mkN "lymphopoiesis" "lymphopoiesises" ;
+lin lymphuria_N = mkN "lymphuria" "lymphurias" ;
+lin lynch_N = mkN "lynch" "lynches" ;
+lin lynch_V = mkV "lynch" "lynched" "lynched" ;
+lin lynching_N = mkN "lynching" "lynchings" ;
+lin lynchpin_N = mkN "lynchpin" "lynchpins" ;
+lin lynx_N = mkN "lynx" "lynxes" ;
+lin lynx_eyed_A = mkAMost "lynx-eyed" "lynx-eyedly" ;
+lin lyonnaise_A = mkAMost "lyonnaise" "lyonnaisely" ;
+lin lyophilized_A = mkAMost "lyophilized" "lyophilizedly" ;
+lin lypressin_N = mkN "lypressin" "lypressins" ;
+lin lyrate_A = mkAMost "lyrate" "lyrately" ;
+lin lyre_N = mkN "lyre" "lyres" ;
+lin lyre_bird_N = mkN "lyre-bird" "lyre-birds" ;
+lin lyrebird_N = mkN "lyrebird" "lyrebirds" ;
+lin lyric_A = mkAMost "lyric" "lyricly" ;
+lin lyric_N = mkN "lyric" "lyrics" ;
+lin lyrical_A = mkAMost "lyrical" "lyrically" ;
+lin lyricality_N = mkN "lyricality" "lyricalities" ;
+lin lyricism_N = mkN "lyricism" "lyricisms" ;
+lin lyricist_N = mkN "lyricist" "lyricists" ;
+lin lysin_N = mkN "lysin" "lysins" ;
+lin lysine_N = mkN "lysine" "lysines" ;
+lin lysinemia_N = mkN "lysinemia" "lysinemias" ;
+lin lysis_N = mkN "lysis" "lysises" ;
+lin lysogenic_A = mkAMost "lysogenic" "lysogenicly" ;
+lin lysogenization_N = mkN "lysogenization" "lysogenizations" ;
+lin lysogeny_N = mkN "lysogeny" "lysogenies" ;
+lin lysol_N = mkN "lysol" "lysols" ;
+lin lysosome_N = mkN "lysosome" "lysosomes" ;
+lin lysozyme_N = mkN "lysozyme" "lysozymes" ;
+lin lyssavirus_N = mkN "lyssavirus" "lyssaviruses" ;
+lin ma'am_N = mkN "ma'am" "IRREG" ;
+lin ma_N = mkN "ma" "mas" ;
+lin maar_N = mkN "maar" "maars" ;
+lin mac_N = mkN "mac" "macs" ;
+lin macabre_A = mkAMost "macabre" "macabrely" ;
+lin macadam_N = mkN "macadam" "macadams" ;
+lin macadamia_N = mkN "macadamia" "macadamias" ;
+lin macadamize_V = mkV "macadamize" "macadamized" "macadamized" ;
+lin macaque_N = mkN "macaque" "macaques" ;
+lin macaroni_N = mkN "macaroni" "macaronis" ;
+lin macaronic_A = mkAMost "macaronic" "macaronicly" ;
+lin macaroon_N = mkN "macaroon" "macaroons" ;
+lin macaw_N = mkN "macaw" "macaws" ;
+lin mace_N = mkN "mace" "maces" ;
+lin mace_bearer_N = mkN "mace-bearer" "mace-bearers" ;
+lin macebearer_N = mkN "macebearer" "macebearers" ;
+lin macedoine_N = mkN "macedoine" "macedoines" ;
+lin macerate_V = mkV "macerate" "macerated" "macerated" ;
+lin maceration_N = mkN "maceration" "macerations" ;
+lin macerative_A = mkAMost "macerative" "maceratively" ;
+lin machete_N = mkN "machete" "machetes" ;
+lin machiavellian_A = mkAMost "machiavellian" "machiavellianly" ;
+lin machicolation_N = mkN "machicolation" "machicolations" ;
+lin machination_N = mkN "machination" "machinations" ;
+lin machine_N = mkN "machine" "machines" ;
+lin machine_V = mkV "machine" "machined" "machined" ;
+lin machine_gun_N = mkN "machine-gun" "machine-guns" ;
+lin machine_made_A = mkAMost "machine-made" "machine-madely" ;
+lin machinery_N = mkN "machinery" "machineries" ;
+lin machinist_N = mkN "machinist" "machinists" ;
+lin machismo_N = mkN "machismo" "machismoes" ;
+lin machmeter_N = mkN "machmeter" "machmeters" ;
+lin macho_N = mkN "macho" "machoes" ;
+lin macintosh_N = mkN "macintosh" "macintoshes" ;
+lin mackerel_N = mkN "mackerel" "mackerel" ;
+lin mackinaw_N = mkN "mackinaw" "mackinaws" ;
+lin mackintosh_N = mkN "mackintosh" "mackintoshes" ;
+lin mackle_N = mkN "mackle" "mackles" ;
+lin macon_N = mkN "macon" "macons" ;
+lin macrame_N = mkN "macrame" "macrames" ;
+lin macrencephalic_A = mkAMost "macrencephalic" "macrencephalicly" ;
+lin macrencephaly_N = mkN "macrencephaly" "macrencephalies" ;
+lin macro_A = mkA "macro" "macroer" "macroest" "macroly" ;
+lin macro_N = mkN "macro" "macroes" ;
+lin macrobiotic_A = mkAMost "macrobiotic" "macrobioticly" ;
+lin macrobiotics_N = mkN "macrobiotics" "macrobioticses" ;
+lin macrocephalic_A = mkAMost "macrocephalic" "macrocephalicly" ;
+lin macrocephaly_N = mkN "macrocephaly" "macrocephalies" ;
+lin macrocosm_N = mkN "macrocosm" "macrocosms" ;
+lin macrocosmic_A = mkAMost "macrocosmic" "macrocosmicly" ;
+lin macrocytosis_N = mkN "macrocytosis" "macrocytosises" ;
+lin macroeconomic_A = mkAMost "macroeconomic" "macroeconomicly" ;
+lin macroeconomics_N = mkN "macroeconomics" "macroeconomicses" ;
+lin macroeconomist_N = mkN "macroeconomist" "macroeconomists" ;
+lin macroevolution_N = mkN "macroevolution" "macroevolutions" ;
+lin macroglossia_N = mkN "macroglossia" "macroglossias" ;
+lin macromolecular_A = mkAMost "macromolecular" "macromolecularly" ;
+lin macromolecule_N = mkN "macromolecule" "macromolecules" ;
+lin macron_N = mkN "macron" "macrons" ;
+lin macrophage_N = mkN "macrophage" "macrophages" ;
+lin macroscopic_A = mkAMost "macroscopic" "macroscopicly" ;
+lin macroscopically_Adv = mkAdv "macroscopically" ;
+lin macrotus_N = mkN "macrotus" "macrotuses" ;
+lin macrozamia_N = mkN "macrozamia" "macrozamias" ;
+lin macula_N = mkN "macula" "maculas" ;
+lin maculate_A = mkAMost "maculate" "maculately" ;
+lin macule_N = mkN "macule" "macules" ;
+lin macumba_N = mkN "macumba" "macumbas" ;
+lin macushla_N = mkN "macushla" "macushlas" ;
+lin mad_A = mkA "mad" "madder" "maddest" "madly" ;
+lin madagascan_A = mkAMost "madagascan" "madagascanly" ;
+lin madagascan_N = mkN "madagascan" "madagascans" ;
+lin madam_N = mkN "madam" "madams" ;
+lin madame_N = mkN "madame" "madames" ;
+lin madcap_N = mkN "madcap" "madcaps" ;
+lin madden_V = mkV "madden" "maddened" "maddened" ;
+lin madder_N = mkN "madder" "madders" ;
+lin madderwort_N = mkN "madderwort" "madderworts" ;
+lin madeira_N = mkN "madeira" "madeiras" ;
+lin mademoiselle_N = mkN "mademoiselle" "mademoiselles" ;
+lin madhouse_N = mkN "madhouse" "madhouses" ;
+lin madman_N = mkN "madman" "madmen" ;
+lin madness_N = mkN "madness" "madnesses" ;
+lin madonna_N = mkN "madonna" "madonnas" ;
+lin madras_N = mkN "madras" "madrases" ;
+lin madrasa_N = mkN "madrasa" "madrasas" ;
+lin madrigal_N = mkN "madrigal" "madrigals" ;
+lin madrigalist_N = mkN "madrigalist" "madrigalists" ;
+lin madrilene_N = mkN "madrilene" "madrilenes" ;
+lin madrona_N = mkN "madrona" "madronas" ;
+lin madwoman_N = mkN "madwoman" "madwomen" ;
+lin maelstrom_N = mkN "maelstrom" "maelstroms" ;
+lin maenad_N = mkN "maenad" "maenads" ;
+lin maestro_N = mkN "maestro" "maestros" ;
+lin maffick_V = mkV "maffick" "mafficked" "mafficked" ;
+lin mafia_N = mkN "mafia" "mafias" ;
+lin mafioso_N = mkN "mafioso" "mafiosoes" ;
+lin mag_N = mkN "mag" "mags" ;
+lin magazine_N = mkN "magazine" "magazines" ;
+lin magdalen_N = mkN "magdalen" "magdalens" ;
+lin magenta_A = mkAMost "magenta" "magentaly" ;
+lin magenta_N = mkN "magenta" "magentas" ;
+lin maggot_N = mkN "maggot" "maggots" ;
+lin maggoty_A = mkAMost "maggoty" "maggotily" ;
+lin magic_A = mkAMost "magic" "magicly" ;
+lin magic_N = mkN "magic" "magics" ;
+lin magic_V = mkV "magic" "magiced" "magiced" ;
+lin magical_A = mkAMost "magical" "magically" ;
+lin magician_N = mkN "magician" "magicians" ;
+lin magisterial_A = mkAMost "magisterial" "magisterially" ;
+lin magistracy_N = mkN "magistracy" "magistracies" ;
+lin magistrate_N = mkN "magistrate" "magistrates" ;
+lin magma_N = mkN "magma" "magmas" ;
+lin magnanimity_N = mkN "magnanimity" "magnanimities" ;
+lin magnanimous_A = mkAMost "magnanimous" "magnanimously" ;
+lin magnate_N = mkN "magnate" "magnates" ;
+lin magnesia_N = mkN "magnesia" "magnesias" ;
+lin magnesite_N = mkN "magnesite" "magnesites" ;
+lin magnesium_N = mkN "magnesium" "magnesiums" ;
+lin magnet_N = mkN "magnet" "magnets" ;
+lin magnetic_A = mkAMost "magnetic" "magneticly" ;
+lin magnetically_Adv = mkAdv "magnetically" ;
+lin magnetism_N = mkN "magnetism" "magnetisms" ;
+lin magnetite_N = mkN "magnetite" "magnetites" ;
+lin magnetization_N = mkN "magnetization" "magnetizations" ;
+lin magnetize_V = mkV "magnetize" "magnetized" "magnetized" ;
+lin magneto_N = mkN "magneto" "magnetos" ;
+lin magnetograph_N = mkN "magnetograph" "magnetographs" ;
+lin magnetohydrodynamics_N = mkN "magnetohydrodynamics" "magnetohydrodynamicses" ;
+lin magnetometer_N = mkN "magnetometer" "magnetometers" ;
+lin magneton_N = mkN "magneton" "magnetons" ;
+lin magnetosphere_N = mkN "magnetosphere" "magnetospheres" ;
+lin magnetron_N = mkN "magnetron" "magnetrons" ;
+lin magnificat_N = mkN "magnificat" "magnificats" ;
+lin magnification_N = mkN "magnification" "magnifications" ;
+lin magnificence_N = mkN "magnificence" "magnificences" ;
+lin magnificent_A = mkAMost "magnificent" "magnificently" ;
+lin magnifico_N = mkN "magnifico" "magnificoes" ;
+lin magnifier_N = mkN "magnifier" "magnifiers" ;
+lin magnify_V = mkV "magnify" "magnified" "magnified" ;
+lin magniloquence_N = mkN "magniloquence" "magniloquences" ;
+lin magniloquent_A = mkAMost "magniloquent" "magniloquently" ;
+lin magnitude_N = mkN "magnitude" "magnitudes" ;
+lin magnolia_N = mkN "magnolia" "magnolias" ;
+lin magnum_N = mkN "magnum" "magnums" ;
+lin magnum_opus_N = mkN "magnum opus" "magnum opi" ;
+lin magpie_N = mkN "magpie" "magpies" ;
+lin maguey_N = mkN "maguey" "magueys" ;
+lin magus_N = mkN "magus" "maguses" ;
+lin maharaja_N = mkN "maharaja" "maharajas" ;
+lin maharajah_N = mkN "maharajah" "maharajahs" ;
+lin maharanee_N = mkN "maharanee" "maharanees" ;
+lin maharani_N = mkN "maharani" "maharanis" ;
+lin mahatma_N = mkN "mahatma" "mahatmas" ;
+lin mahjong_N = mkN "mahjong" "mahjongs" ;
+lin mahoe_N = mkN "mahoe" "mahoes" ;
+lin mahogany_N = mkN "mahogany" "mahoganies" ;
+lin mahout_N = mkN "mahout" "mahouts" ;
+lin mahuang_N = mkN "mahuang" "mahuangs" ;
+lin maid_N = mkN "maid" "maids" ;
+lin maiden_A = mkAMost "maiden" "maidenly" ;
+lin maiden_N = mkN "maiden" "maidens" ;
+lin maidenhair_N = mkN "maidenhair" "maidenhairs" ;
+lin maidenhead_N = mkN "maidenhead" "maidenheads" ;
+lin maidenhood_N = mkN "maidenhood" "maidenhoods" ;
+lin maidenlike_A = mkAMost "maidenlike" "maidenlikely" ;
+lin maidenliness_N = mkN "maidenliness" "maidenlinesses" ;
+lin maidenly_A = mkAMost "maidenly" "maidenlily" ;
+lin maidservant_N = mkN "maidservant" "maidservants" ;
+lin maigre_N = mkN "maigre" "maigres" ;
+lin mail_N = mkN "mail" "mails" ;
+lin mail_V = mkV "mail" "mailed" "mailed" ;
+lin mail_train_N = mkN "mail-train" "mail-trains" ;
+lin mailbag_N = mkN "mailbag" "mailbags" ;
+lin mailboat_N = mkN "mailboat" "mailboats" ;
+lin mailbox_N = mkN "mailbox" "mailboxes" ;
+lin maildrop_N = mkN "maildrop" "maildrops" ;
+lin mailer_N = mkN "mailer" "mailers" ;
+lin mailing_N = mkN "mailing" "mailings" ;
+lin mailing_card_N = mkN "mailing-card" "mailing-cards" ;
+lin mailing_list_N = mkN "mailing-list" "mailing-lists" ;
+lin maillot_N = mkN "maillot" "maillots" ;
+lin mailman_N = mkN "mailman" "mailmen" ;
+lin mailsorter_N = mkN "mailsorter" "mailsorters" ;
+lin maim_V = mkV "maim" "maimed" "maimed" ;
+lin main_A = mkAMost "main" "mainly" ;
+lin main_N = mkN "main" "mains" ;
+lin mainframe_N = mkN "mainframe" "mainframes" ;
+lin mainland_N = mkN "mainland" "mainlands" ;
+lin mainmast_N = mkN "mainmast" "mainmasts" ;
+lin mainsail_N = mkN "mainsail" "mainsails" ;
+lin mainspring_N = mkN "mainspring" "mainsprings" ;
+lin mainstay_N = mkN "mainstay" "mainstays" ;
+lin mainstream_N = mkN "mainstream" "mainstreams" ;
+lin mainstreamed_A = mkAMost "mainstreamed" "mainstreamedly" ;
+lin maintain_V = mkV "maintain" "maintained" "maintained" ;
+lin maintainable_A = mkAMost "maintainable" "maintainably" ;
+lin maintenance_N = mkN "maintenance" "maintenances" ;
+lin maisonette_N = mkN "maisonette" "maisonettes" ;
+lin maisonnette_N = mkN "maisonnette" "maisonnettes" ;
+lin maize_N = mkN "maize" "maizes" ;
+lin majestic_A = mkAMost "majestic" "majesticly" ;
+lin majestically_Adv = mkAdv "majestically" ;
+lin majesty_N = mkN "majesty" "majesties" ;
+lin majolica_N = mkN "majolica" "majolicas" ;
+lin major_A = mkAMost "major" "majorly" ;
+lin major_N = mkN "major" "majors" ;
+lin major_V = mkV "major" "majored" "majored" ;
+lin major_domo_N = mkN "major-domo" "major-domos" ;
+lin major_general_N = mkN "major-general" "major-generals" ;
+lin majority_N = mkN "majority" "majorities" ;
+lin majuscular_A = mkAMost "majuscular" "majuscularly" ;
+lin majuscule_A = mkAMost "majuscule" "majusculely" ;
+lin make_N = mkN "make" "makes" ;
+lin make_V = mkV "make" "made" "made" ;
+lin make_believe_N = mkN "make-believe" "make-believes" ;
+lin make_up_N = mkN "make-up" "make-ups" ;
+lin makeover_N = mkN "makeover" "makeovers" ;
+lin maker_N = mkN "maker" "makers" ;
+lin makeready_N = mkN "makeready" "makereadies" ;
+lin makeshift_N = mkN "makeshift" "makeshifts" ;
+lin makeup_N = mkN "makeup" "makeups" ;
+lin makeweight_N = mkN "makeweight" "makeweights" ;
+lin making_N = mkN "making" "makings" ;
+lin mako_N = mkN "mako" "makoes" ;
+lin makomako_N = mkN "makomako" "makomakoes" ;
+lin malabsorption_N = mkN "malabsorption" "malabsorptions" ;
+lin malacca_N = mkN "malacca" "malaccas" ;
+lin malachite_N = mkN "malachite" "malachites" ;
+lin malacia_N = mkN "malacia" "malacias" ;
+lin malacologist_N = mkN "malacologist" "malacologists" ;
+lin malacology_N = mkN "malacology" "malacologies" ;
+lin maladaptive_A = mkAMost "maladaptive" "maladaptively" ;
+lin maladjusted_A = mkAMost "maladjusted" "maladjustedly" ;
+lin maladjustive_A = mkAMost "maladjustive" "maladjustively" ;
+lin maladjustment_N = mkN "maladjustment" "maladjustments" ;
+lin maladroit_A = mkAMost "maladroit" "maladroitly" ;
+lin maladroitness_N = mkN "maladroitness" "maladroitnesses" ;
+lin malady_N = mkN "malady" "maladies" ;
+lin malahini_N = mkN "malahini" "malahinis" ;
+lin malaise_N = mkN "malaise" "malaises" ;
+lin malamute_N = mkN "malamute" "malamutes" ;
+lin malapropism_N = mkN "malapropism" "malapropisms" ;
+lin malapropos_A = mkAMost "malapropos" "malaproposly" ;
+lin malapropos_Adv = mkAdv "malapropos" ;
+lin malaria_N = mkN "malaria" "malarias" ;
+lin malarial_A = mkAMost "malarial" "malarially" ;
+lin malawian_A = mkAMost "malawian" "malawianly" ;
+lin malawian_N = mkN "malawian" "malawians" ;
+lin malay_A = mkAMost "malay" "malaily" ;
+lin malay_N = mkN "malay" "malays" ;
+lin malayan_A = mkAMost "malayan" "malayanly" ;
+lin malayan_N = mkN "malayan" "malayans" ;
+lin malaysian_A = mkAMost "malaysian" "malaysianly" ;
+lin malaysian_N = mkN "malaysian" "malaysians" ;
+lin malcontent_A = mkAMost "malcontent" "malcontently" ;
+lin malcontent_N = mkN "malcontent" "malcontents" ;
+lin male_A = mkAMost "male" "malely" ;
+lin male_N = mkN "male" "males" ;
+lin maleate_N = mkN "maleate" "maleates" ;
+lin maleberry_N = mkN "maleberry" "maleberries" ;
+lin malediction_N = mkN "malediction" "maledictions" ;
+lin malefactor_N = mkN "malefactor" "malefactors" ;
+lin malefic_A = mkAMost "malefic" "maleficly" ;
+lin maleficence_N = mkN "maleficence" "maleficences" ;
+lin maleficent_A = mkAMost "maleficent" "maleficently" ;
+lin maleness_N = mkN "maleness" "malenesses" ;
+lin maleo_N = mkN "maleo" "maleoes" ;
+lin malevolence_N = mkN "malevolence" "malevolences" ;
+lin malevolent_A = mkAMost "malevolent" "malevolently" ;
+lin malfeasance_N = mkN "malfeasance" "malfeasances" ;
+lin malfeasant_N = mkN "malfeasant" "malfeasants" ;
+lin malformation_N = mkN "malformation" "malformations" ;
+lin malformed_A = mkAMost "malformed" "malformedly" ;
+lin malfunction_N = mkN "malfunction" "malfunctions" ;
+lin malfunction_V = mkV "malfunction" "malfunctioned" "malfunctioned" ;
+lin malian_A = mkAMost "malian" "malianly" ;
+lin malian_N = mkN "malian" "malians" ;
+lin malice_N = mkN "malice" "malices" ;
+lin malicious_A = mkAMost "malicious" "maliciously" ;
+lin malign_A = mkAMost "malign" "malignly" ;
+lin malign_V = mkV "malign" "maligned" "maligned" ;
+lin malignancy_N = mkN "malignancy" "malignancies" ;
+lin malignant_A = mkAMost "malignant" "malignantly" ;
+lin malignity_N = mkN "malignity" "malignities" ;
+lin malik_N = mkN "malik" "maliks" ;
+lin malinger_V = mkV "malinger" "malingered" "malingered" ;
+lin malingerer_N = mkN "malingerer" "malingerers" ;
+lin malingering_N = mkN "malingering" "malingerings" ;
+lin malinois_N = mkN "malinois" "malinoises" ;
+lin mallard_N = mkN "mallard" "mallards" ;
+lin malleability_N = mkN "malleability" "malleabilities" ;
+lin malleable_A = mkAMost "malleable" "malleably" ;
+lin mallee_N = mkN "mallee" "mallees" ;
+lin mallet_N = mkN "mallet" "mallets" ;
+lin malleus_N = mkN "malleus" "malleuses" ;
+lin mallow_N = mkN "mallow" "mallows" ;
+lin malmsey_N = mkN "malmsey" "malmseys" ;
+lin malnourished_A = mkAMost "malnourished" "malnourishedly" ;
+lin malnutrition_N = mkN "malnutrition" "malnutritions" ;
+lin malocclusion_N = mkN "malocclusion" "malocclusions" ;
+lin malodor_N = mkN "malodor" "malodors" ;
+lin malodorous_A = mkAMost "malodorous" "malodorously" ;
+lin malodorousness_N = mkN "malodorousness" "malodorousnesses" ;
+lin malope_N = mkN "malope" "malopes" ;
+lin malposed_A = mkAMost "malposed" "malposedly" ;
+lin malposition_N = mkN "malposition" "malpositions" ;
+lin malpractice_N = mkN "malpractice" "malpractices" ;
+lin malt_N = mkN "malt" "malts" ;
+lin malt_V = mkV "malt" "malted" "malted" ;
+lin malted_N = mkN "malted" "malteds" ;
+lin maltese_A = mkAMost "maltese" "maltesely" ;
+lin maltese_N = mkN "maltese" "maltese" ;
+lin maltha_N = mkN "maltha" "malthas" ;
+lin malthusian_A = mkAMost "malthusian" "malthusianly" ;
+lin maltose_N = mkN "maltose" "maltoses" ;
+lin maltreat_V = mkV "maltreat" "maltreated" "maltreated" ;
+lin maltreatment_N = mkN "maltreatment" "maltreatments" ;
+lin maltster_N = mkN "maltster" "maltsters" ;
+lin malvasia_N = mkN "malvasia" "malvasias" ;
+lin malversation_N = mkN "malversation" "malversations" ;
+lin mama_N = mkN "mama" "mamas" ;
+lin mamba_N = mkN "mamba" "mambas" ;
+lin mambo_N = mkN "mambo" "mamboes" ;
+lin mamey_N = mkN "mamey" "mameys" ;
+lin mamma_N = mkN "mamma" "mammas" ;
+lin mammal_N = mkN "mammal" "mammals" ;
+lin mammalian_A = mkAMost "mammalian" "mammalianly" ;
+lin mammalogist_N = mkN "mammalogist" "mammalogists" ;
+lin mammalogy_N = mkN "mammalogy" "mammalogies" ;
+lin mammary_A = mkAMost "mammary" "mammarily" ;
+lin mammillaria_N = mkN "mammillaria" "mammillarias" ;
+lin mammogram_N = mkN "mammogram" "mammograms" ;
+lin mammography_N = mkN "mammography" "mammographies" ;
+lin mammon_N = mkN "mammon" "mammons" ;
+lin mammoth_N = mkN "mammoth" "mammoths" ;
+lin mammothermography_N = mkN "mammothermography" "mammothermographies" ;
+lin mammy_N = mkN "mammy" "mammies" ;
+lin mamo_N = mkN "mamo" "mamoes" ;
+lin man_N = mkN "man" "men" ;
+lin man_V = mkV "man" "manned" "manned" ;
+lin man_at_arms_N = mkN "man-at-arms" "men*-at-arms" ;
+lin man_eater_N = mkN "man-eater" "man-eaters" ;
+lin man_hour_N = mkN "man-hour" "man-hours" ;
+lin man_of_war_N = mkN "man-of-war" "men*-of-war" ;
+lin man_sized_A = mkAMost "man-sized" "man-sizedly" ;
+lin manacle_N = mkN "manacle" "manacles" ;
+lin manacle_V = mkV "manacle" "manacled" "manacled" ;
+lin manage_V = mkV "manage" "managed" "managed" ;
+lin manageability_N = mkN "manageability" "manageabilities" ;
+lin manageable_A = mkAMost "manageable" "manageably" ;
+lin management_N = mkN "management" "managements" ;
+lin manager_N = mkN "manager" "managers" ;
+lin manageress_N = mkN "manageress" "manageresses" ;
+lin managerial_A = mkAMost "managerial" "managerially" ;
+lin managership_N = mkN "managership" "managerships" ;
+lin manakin_N = mkN "manakin" "manakins" ;
+lin manana_N = mkN "manana" "mananas" ;
+lin manat_N = mkN "manat" "manats" ;
+lin manatee_N = mkN "manatee" "manatees" ;
+lin mancunian_A = mkAMost "mancunian" "mancunianly" ;
+lin mancunian_N = mkN "mancunian" "mancunians" ;
+lin mandala_N = mkN "mandala" "mandalas" ;
+lin mandamus_N = mkN "mandamus" "mandamuses" ;
+lin mandarin_N = mkN "mandarin" "mandarins" ;
+lin mandatary_N = mkN "mandatary" "mandataries" ;
+lin mandate_N = mkN "mandate" "mandates" ;
+lin mandate_V = mkV "mandate" "mandated" "mandated" ;
+lin mandator_N = mkN "mandator" "mandators" ;
+lin mandatory_A = mkAMost "mandatory" "mandatorily" ;
+lin mandatory_N = mkN "mandatory" "mandatories" ;
+lin mandible_N = mkN "mandible" "mandibles" ;
+lin mandibular_A = mkAMost "mandibular" "mandibularly" ;
+lin mandibulate_A = mkAMost "mandibulate" "mandibulately" ;
+lin mandibulofacial_A = mkAMost "mandibulofacial" "mandibulofacially" ;
+lin mandola_N = mkN "mandola" "mandolas" ;
+lin mandolin_N = mkN "mandolin" "mandolins" ;
+lin mandragora_N = mkN "mandragora" "mandragoras" ;
+lin mandrake_N = mkN "mandrake" "mandrakes" ;
+lin mandrill_N = mkN "mandrill" "mandrills" ;
+lin mane_N = mkN "mane" "manes" ;
+lin maneuver_N = mkN "maneuver" "maneuvers" ;
+lin maneuver_V = mkV "maneuver" "maneuvered" "maneuvered" ;
+lin maneuverability_N = mkN "maneuverability" "maneuverabilities" ;
+lin maneuverable_A = mkAMost "maneuverable" "maneuverably" ;
+lin maneuverer_N = mkN "maneuverer" "maneuverers" ;
+lin manful_A = mkAMost "manful" "manfully" ;
+lin manfulness_N = mkN "manfulness" "manfulnesses" ;
+lin mangabey_N = mkN "mangabey" "mangabeys" ;
+lin manganate_N = mkN "manganate" "manganates" ;
+lin manganese_N = mkN "manganese" "manganeses" ;
+lin manganite_N = mkN "manganite" "manganites" ;
+lin mange_N = mkN "mange" "manges" ;
+lin mangel_wurzel_N = mkN "mangel-wurzel" "mangel-wurzels" ;
+lin manger_N = mkN "manger" "mangers" ;
+lin mangle_N = mkN "mangle" "mangles" ;
+lin mangle_V = mkV "mangle" "mangled" "mangled" ;
+lin manglietia_N = mkN "manglietia" "manglietias" ;
+lin mango_N = mkN "mango" "mangos" ;
+lin mangosteen_N = mkN "mangosteen" "mangosteens" ;
+lin mangrove_N = mkN "mangrove" "mangroves" ;
+lin mangy_A = mkA "mangy" "mangier" "mangiest" "mangily" ;
+lin manhandle_V = mkV "manhandle" "manhandled" "manhandled" ;
+lin manhole_N = mkN "manhole" "manholes" ;
+lin manhood_N = mkN "manhood" "manhoods" ;
+lin manhunt_N = mkN "manhunt" "manhunts" ;
+lin mania_N = mkN "mania" "manias" ;
+lin maniac_N = mkN "maniac" "maniacs" ;
+lin maniacal_A = mkAMost "maniacal" "maniacally" ;
+lin manic_depressive_A = mkAMost "manic-depressive" "manic-depressively" ;
+lin manic_depressive_N = mkN "manic-depressive" "manic-depressives" ;
+lin maniclike_A = mkAMost "maniclike" "maniclikely" ;
+lin manicotti_N = mkN "manicotti" "manicottis" ;
+lin manicure_N = mkN "manicure" "manicures" ;
+lin manicure_V = mkV "manicure" "manicured" "manicured" ;
+lin manicurist_N = mkN "manicurist" "manicurists" ;
+lin manifest_A = mkAMost "manifest" "manifestly" ;
+lin manifest_N = mkN "manifest" "manifests" ;
+lin manifest_V = mkV "manifest" "manifested" "manifested" ;
+lin manifestation_N = mkN "manifestation" "manifestations" ;
+lin manifesto_N = mkN "manifesto" "manifestos" ;
+lin manifold_A = mkAMost "manifold" "manifoldly" ;
+lin manifold_N = mkN "manifold" "manifolds" ;
+lin manifold_V = mkV "manifold" "manifolded" "manifolded" ;
+lin manikin_N = mkN "manikin" "manikins" ;
+lin manila_N = mkN "manila" "manilas" ;
+lin manilla_N = mkN "manilla" "manillas" ;
+lin manipulability_N = mkN "manipulability" "manipulabilities" ;
+lin manipulate_V = mkV "manipulate" "manipulated" "manipulated" ;
+lin manipulation_N = mkN "manipulation" "manipulations" ;
+lin manipulative_A = mkAMost "manipulative" "manipulatively" ;
+lin manipulator_N = mkN "manipulator" "manipulators" ;
+lin maniraptor_N = mkN "maniraptor" "maniraptors" ;
+lin mankind_N = mkN "mankind" "mankinds" ;
+lin manky_A = mkA "manky" "mankier" "mankiest" "mankily" ;
+lin manlike_A = mkAMost "manlike" "manlikely" ;
+lin manliness_N = mkN "manliness" "manlinesses" ;
+lin manly_A = mkA "manly" "manlier" "manliest" "manlily" ;
+lin manna_N = mkN "manna" "mannas" ;
+lin mannequin_N = mkN "mannequin" "mannequins" ;
+lin manner_N = mkN "manner" "manners" ;
+lin mannered_A = mkAMost "mannered" "manneredly" ;
+lin mannerism_N = mkN "mannerism" "mannerisms" ;
+lin mannerly_A = mkAMost "mannerly" "mannerlily" ;
+lin manners_N = mkN "manners" "mannerses" ;
+lin mannish_A = mkAMost "mannish" "mannishly" ;
+lin mannitol_N = mkN "mannitol" "mannitols" ;
+lin manoeuvrability_N = mkN "manoeuvrability" "manoeuvrabilities" ;
+lin manoeuvrable_A = mkAMost "manoeuvrable" "manoeuvrably" ;
+lin manoeuvre_N = mkN "manoeuvre" "manoeuvres" ;
+lin manoeuvre_V = mkV "manoeuvre" "manoeuvred" "manoeuvred" ;
+lin manoeuvrer_N = mkN "manoeuvrer" "manoeuvrers" ;
+lin manometer_N = mkN "manometer" "manometers" ;
+lin manor_N = mkN "manor" "manors" ;
+lin manor_house_N = mkN "manor-house" "manor-houses" ;
+lin manorial_A = mkAMost "manorial" "manorially" ;
+lin manpower_N = mkN "manpower" "manpowers" ;
+lin manque_A = mkAMost "manque" "manquely" ;
+lin mansard_A = mkAMost "mansard" "mansardly" ;
+lin mansard_N = mkN "mansard" "mansards" ;
+lin manse_N = mkN "manse" "manses" ;
+lin manservant_N = mkN "manservant" "manservants" ;
+lin mansion_N = mkN "mansion" "mansions" ;
+lin manslaughter_N = mkN "manslaughter" "manslaughters" ;
+lin manta_N = mkN "manta" "mantas" ;
+lin mantel_N = mkN "mantel" "mantels" ;
+lin mantelet_N = mkN "mantelet" "mantelets" ;
+lin mantelpiece_N = mkN "mantelpiece" "mantelpieces" ;
+lin manticore_N = mkN "manticore" "manticores" ;
+lin mantilla_N = mkN "mantilla" "mantillas" ;
+lin mantis_N = mkN "mantis" "mantises" ;
+lin mantispid_N = mkN "mantispid" "mantispids" ;
+lin mantissa_N = mkN "mantissa" "mantissas" ;
+lin mantle_N = mkN "mantle" "mantles" ;
+lin mantle_V = mkV "mantle" "mantled" "mantled" ;
+lin mantra_N = mkN "mantra" "mantras" ;
+lin mantrap_N = mkN "mantrap" "mantraps" ;
+lin mantua_N = mkN "mantua" "mantuas" ;
+lin manual_A = mkAMost "manual" "manually" ;
+lin manual_N = mkN "manual" "manuals" ;
+lin manubrium_N = mkN "manubrium" "manubriums" ;
+lin manufacture_N = mkN "manufacture" "manufactures" ;
+lin manufacture_V = mkV "manufacture" "manufactured" "manufactured" ;
+lin manufacturer_N = mkN "manufacturer" "manufacturers" ;
+lin manul_N = mkN "manul" "manuls" ;
+lin manumission_N = mkN "manumission" "manumissions" ;
+lin manumit_V = mkV "manumit" "manumitted" "manumitted" ;
+lin manure_N = mkN "manure" "manures" ;
+lin manure_V = mkV "manure" "manured" "manured" ;
+lin manuscript_N = mkN "manuscript" "manuscripts" ;
+lin manx_A = mkAMost "manx" "manxly" ;
+lin manx_N = mkN "manx" "manxes" ;
+lin many_A = mkA "many" "manier" "maniest" "manily" ;
+lin many_sided_A = mkAMost "many-sided" "many-sidedly" ;
+lin manzanita_N = mkN "manzanita" "manzanitas" ;
+lin maoism_N = mkN "maoism" "maoisms" ;
+lin maoist_N = mkN "maoist" "maoists" ;
+lin maori_N = mkN "maori" "maoris" ;
+lin map_N = mkN "map" "maps" ;
+lin map_V = mkV "map" "mapped" "mapped" ;
+lin map_reader_N = mkN "map-reader" "map-readers" ;
+lin mapinguari_N = mkN "mapinguari" "mapinguaris" ;
+lin maple_N = mkN "maple" "maples" ;
+lin maple_leaf_N = mkN "maple-leaf" "maple-leaves" ;
+lin maplelike_A = mkAMost "maplelike" "maplelikely" ;
+lin mapmaking_N = mkN "mapmaking" "mapmakings" ;
+lin mapping_N = mkN "mapping" "mappings" ;
+lin maquiladora_N = mkN "maquiladora" "maquiladoras" ;
+lin maquis_N = mkN "maquis" "maques" ;
+lin mar_V = mkV "mar" "marred" "marred" ;
+lin mara_N = mkN "mara" "maras" ;
+lin marabou_N = mkN "marabou" "marabous" ;
+lin maraca_N = mkN "maraca" "maracas" ;
+lin marang_N = mkN "marang" "marangs" ;
+lin maranta_N = mkN "maranta" "marantas" ;
+lin marasca_N = mkN "marasca" "marascas" ;
+lin maraschino_N = mkN "maraschino" "maraschinos" ;
+lin marasmus_N = mkN "marasmus" "marasmuses" ;
+lin marathon_N = mkN "marathon" "marathons" ;
+lin marathoner_N = mkN "marathoner" "marathoners" ;
+lin maraud_V = mkV "maraud" "marauded" "marauded" ;
+lin marauder_N = mkN "marauder" "marauders" ;
+lin marble_N = mkN "marble" "marbles" ;
+lin marbled_A = mkAMost "marbled" "marbledly" ;
+lin marbleization_N = mkN "marbleization" "marbleizations" ;
+lin marbles_N = mkN "marbles" "marbleses" ;
+lin marblewood_N = mkN "marblewood" "marblewoods" ;
+lin marbling_N = mkN "marbling" "marblings" ;
+lin marc_N = mkN "marc" "marcs" ;
+lin marcel_N = mkN "marcel" "marcels" ;
+lin march_V = mkV "march" "marched" "marched" ;
+lin marcher_N = mkN "marcher" "marchers" ;
+lin marchioness_N = mkN "marchioness" "marchionesses" ;
+lin mardi_gras_N = mkN "mardi gras" "mardi gras" ;
+lin mare_N = mkN "mare" "mares" ;
+lin margarin_N = mkN "margarin" "margarins" ;
+lin margarine_N = mkN "margarine" "margarines" ;
+lin margarita_N = mkN "margarita" "margaritas" ;
+lin margate_N = mkN "margate" "margates" ;
+lin margay_N = mkN "margay" "margays" ;
+lin marge_N = mkN "marge" "marges" ;
+lin margin_N = mkN "margin" "margins" ;
+lin marginal_A = mkAMost "marginal" "marginally" ;
+lin marginalia_N = mkN "marginalia" "marginalias" ;
+lin marginalisation_N = mkN "marginalisation" "marginalisations" ;
+lin marginality_N = mkN "marginality" "marginalities" ;
+lin marginalization_N = mkN "marginalization" "marginalizations" ;
+lin marginalize_V = mkV "marginalize" "marginalized" "marginalized" ;
+lin margrave_N = mkN "margrave" "margraves" ;
+lin marguerite_N = mkN "marguerite" "marguerites" ;
+lin mariachi_N = mkN "mariachi" "mariachis" ;
+lin marigold_N = mkN "marigold" "marigolds" ;
+lin marihuana_N = mkN "marihuana" "marihuanas" ;
+lin marijuana_N = mkN "marijuana" "marijuanas" ;
+lin marimba_N = mkN "marimba" "marimbas" ;
+lin marina_N = mkN "marina" "marinas" ;
+lin marinade_N = mkN "marinade" "marinades" ;
+lin marinade_V = mkV "marinade" "marinaded" "marinaded" ;
+lin marinara_N = mkN "marinara" "marinaras" ;
+lin marinate_V = mkV "marinate" "marinated" "marinated" ;
+lin marine_A = mkAMost "marine" "marinely" ;
+lin marine_N = mkN "marine" "marines" ;
+lin mariner_N = mkN "mariner" "mariners" ;
+lin marionette_N = mkN "marionette" "marionettes" ;
+lin mariposa_N = mkN "mariposa" "mariposas" ;
+lin marital_A = mkAMost "marital" "maritally" ;
+lin mariticide_N = mkN "mariticide" "mariticides" ;
+lin maritime_A = mkAMost "maritime" "maritimely" ;
+lin marjoram_N = mkN "marjoram" "marjorams" ;
+lin mark_N = mkN "mark" "marks" ;
+lin mark_V = mkV "mark" "marked" "marked" ;
+lin mark_up_N = mkN "mark-up" "mark-ups" ;
+lin marke_V = mkV "marke" "marked" "marked" ;
+lin marked_A = mkAMost "marked" "markedly" ;
+lin marker_N = mkN "marker" "markers" ;
+lin market_N = mkN "market" "markets" ;
+lin market_V = mkV "market" "marketed" "marketed" ;
+lin market_cross_N = mkN "market-cross" "market-crosses" ;
+lin market_day_N = mkN "market-day" "market-days" ;
+lin market_garden_N = mkN "market-garden" "market-gardens" ;
+lin market_gardening_N = mkN "market-gardening" "market-gardenings" ;
+lin market_square_N = mkN "market-square" "market-squares" ;
+lin market_town_N = mkN "market-town" "market-towns" ;
+lin marketable_A = mkAMost "marketable" "marketably" ;
+lin marketing_N = mkN "marketing" "marketings" ;
+lin marketplace_N = mkN "marketplace" "marketplaces" ;
+lin markhor_N = mkN "markhor" "markhors" ;
+lin marking_N = mkN "marking" "markings" ;
+lin marking_ink_N = mkN "marking-ink" "marking-inks" ;
+lin marking_inks_N = mkN "marking-inks" "marking-inkss" ;
+lin markka_N = mkN "markka" "markkas" ;
+lin marksman_N = mkN "marksman" "marksmen" ;
+lin marksmanship_N = mkN "marksmanship" "marksmanships" ;
+lin markup_N = mkN "markup" "markups" ;
+lin marl_N = mkN "marl" "marls" ;
+lin marlberry_N = mkN "marlberry" "marlberries" ;
+lin marlin_N = mkN "marlin" "marlins" ;
+lin marline_N = mkN "marline" "marlines" ;
+lin marlinespike_N = mkN "marlinespike" "marlinespikes" ;
+lin marlite_N = mkN "marlite" "marlites" ;
+lin marly_A = mkA "marly" "marlier" "marliest" "marlily" ;
+lin marmalade_N = mkN "marmalade" "marmalades" ;
+lin marmite_N = mkN "marmite" "marmites" ;
+lin marmoreal_A = mkAMost "marmoreal" "marmoreally" ;
+lin marmorean_A = mkAMost "marmorean" "marmoreanly" ;
+lin marmoset_N = mkN "marmoset" "marmosets" ;
+lin marmot_N = mkN "marmot" "marmots" ;
+lin marocain_N = mkN "marocain" "marocains" ;
+lin maroon_A = mkAMost "maroon" "maroonly" ;
+lin maroon_N = mkN "maroon" "maroons" ;
+lin maroon_V = mkV "maroon" "marooned" "marooned" ;
+lin marque_N = mkN "marque" "marques" ;
+lin marquee_N = mkN "marquee" "marquees" ;
+lin marquess_N = mkN "marquess" "marquesses" ;
+lin marquetry_N = mkN "marquetry" "marquetries" ;
+lin marquis_N = mkN "marquis" "marquises" ;
+lin marriage_N = mkN "marriage" "marriages" ;
+lin marriageability_N = mkN "marriageability" "marriageabilities" ;
+lin marriageable_A = mkAMost "marriageable" "marriageably" ;
+lin married_N = mkN "married" "marrieds" ;
+lin marrow_N = mkN "marrow" "marrows" ;
+lin marrowbone_N = mkN "marrowbone" "marrowbones" ;
+lin marry_V = mkV "marry" "married" "married" ;
+lin marsala_N = mkN "marsala" "marsalas" ;
+lin marseillaise_N = mkN "marseillaise" "marseillaises" ;
+lin marseille_N = mkN "marseille" "marseilles" ;
+lin marsh_N = mkN "marsh" "marshes" ;
+lin marshal_N = mkN "marshal" "marshals" ;
+lin marshal_V = mkV "marshal" "marshalled" "marshalled" ;
+lin marshalling_yard_N = mkN "marshalling-yard" "marshalling-yards" ;
+lin marshalship_N = mkN "marshalship" "marshalships" ;
+lin marshmallow_N = mkN "marshmallow" "marshmallows" ;
+lin marshy_A = mkA "marshy" "marshier" "marshiest" "marshily" ;
+lin marsupial_A = mkAMost "marsupial" "marsupially" ;
+lin marsupial_N = mkN "marsupial" "marsupials" ;
+lin marsupium_N = mkN "marsupium" "marsupiums" ;
+lin mart_N = mkN "mart" "marts" ;
+lin marten_N = mkN "marten" "martens" ;
+lin martensite_N = mkN "martensite" "martensites" ;
+lin martial_A = mkAMost "martial" "martially" ;
+lin martian_A = mkAMost "martian" "martianly" ;
+lin martian_N = mkN "martian" "martians" ;
+lin martin_N = mkN "martin" "martins" ;
+lin martinet_N = mkN "martinet" "martinets" ;
+lin martingale_N = mkN "martingale" "martingales" ;
+lin martini_N = mkN "martini" "martinis" ;
+lin martynia_N = mkN "martynia" "martynias" ;
+lin martyr_N = mkN "martyr" "martyrs" ;
+lin martyr_V = mkV "martyr" "martyred" "martyred" ;
+lin martyrdom_N = mkN "martyrdom" "martyrdoms" ;
+lin marumi_N = mkN "marumi" "marumis" ;
+lin marupa_N = mkN "marupa" "marupas" ;
+lin marvel_N = mkN "marvel" "marvels" ;
+lin marvel_V = mkV "marvel" "marvelled" "marvelled" ;
+lin marvellous_A = mkAMost "marvellous" "marvellously" ;
+lin marvelous_A = mkAMost "marvelous" "marvelously" ;
+lin marxism_N = mkN "marxism" "marxisms" ;
+lin marxist_N = mkN "marxist" "marxists" ;
+lin marzipan_N = mkN "marzipan" "marzipans" ;
+lin mascara_N = mkN "mascara" "mascaras" ;
+lin mascarpone_N = mkN "mascarpone" "mascarpones" ;
+lin mascot_N = mkN "mascot" "mascots" ;
+lin masculine_A = mkAMost "masculine" "masculinely" ;
+lin masculine_N = mkN "masculine" "masculines" ;
+lin masculinity_N = mkN "masculinity" "masculinities" ;
+lin masculinization_N = mkN "masculinization" "masculinizations" ;
+lin masdevallia_N = mkN "masdevallia" "masdevallias" ;
+lin maser_N = mkN "maser" "masers" ;
+lin mash_N = mkN "mash" "mashes" ;
+lin mash_V = mkV "mash" "mashed" "mashed" ;
+lin masher_N = mkN "masher" "mashers" ;
+lin mashie_N = mkN "mashie" "mashies" ;
+lin masjid_N = mkN "masjid" "masjids" ;
+lin mask_N = mkN "mask" "masks" ;
+lin mask_V = mkV "mask" "masked" "masked" ;
+lin masking_N = mkN "masking" "maskings" ;
+lin masochism_N = mkN "masochism" "masochisms" ;
+lin masochist_N = mkN "masochist" "masochists" ;
+lin masochistic_A = mkAMost "masochistic" "masochisticly" ;
+lin masochistically_Adv = mkAdv "masochistically" ;
+lin mason_N = mkN "mason" "masons" ;
+lin masonic_A = mkAMost "masonic" "masonicly" ;
+lin masonry_N = mkN "masonry" "masonries" ;
+lin masque_N = mkN "masque" "masques" ;
+lin masquerade_N = mkN "masquerade" "masquerades" ;
+lin masquerade_V = mkV "masquerade" "masqueraded" "masqueraded" ;
+lin masquerader_N = mkN "masquerader" "masqueraders" ;
+lin mass_N = mkN "mass" "masses" ;
+lin mass_V = mkV "mass" "massed" "massed" ;
+lin mass_produce_V = mkV "mass-produce" "mass-produced" "mass-produced" ;
+lin massacre_N = mkN "massacre" "massacres" ;
+lin massacre_V = mkV "massacre" "massacred" "massacred" ;
+lin massage_N = mkN "massage" "massages" ;
+lin massage_V = mkV "massage" "massaged" "massaged" ;
+lin massager_N = mkN "massager" "massagers" ;
+lin massasauga_N = mkN "massasauga" "massasaugas" ;
+lin masse_N = mkN "masse" "masses" ;
+lin masseter_N = mkN "masseter" "masseters" ;
+lin masseur_N = mkN "masseur" "masseurs" ;
+lin masseuse_N = mkN "masseuse" "masseuses" ;
+lin massicot_N = mkN "massicot" "massicots" ;
+lin massif_N = mkN "massif" "massifs" ;
+lin massive_A = mkAMost "massive" "massively" ;
+lin massiveness_N = mkN "massiveness" "massivenesses" ;
+lin massy_A = mkA "massy" "massier" "massiest" "massily" ;
+lin mast_N = mkN "mast" "masts" ;
+lin mastaba_N = mkN "mastaba" "mastabas" ;
+lin mastalgia_N = mkN "mastalgia" "mastalgias" ;
+lin mastectomy_N = mkN "mastectomy" "mastectomies" ;
+lin masted_A = mkAMost "masted" "mastedly" ;
+lin master_N = mkN "master" "masters" ;
+lin master_V = mkV "master" "mastered" "mastered" ;
+lin master_at_arms_N = mkN "master-at-arms" "masters-at-arms" ;
+lin master_key_N = mkN "master-key" "master-keys" ;
+lin masterful_A = mkAMost "masterful" "masterfully" ;
+lin mastering_N = mkN "mastering" "masterings" ;
+lin masterless_A = mkAMost "masterless" "masterlessly" ;
+lin masterly_A = mkAMost "masterly" "masterlily" ;
+lin mastermind_N = mkN "mastermind" "masterminds" ;
+lin mastermind_V = mkV "mastermind" "masterminded" "masterminded" ;
+lin masterpiece_N = mkN "masterpiece" "masterpieces" ;
+lin mastership_N = mkN "mastership" "masterships" ;
+lin masterstroke_N = mkN "masterstroke" "masterstrokes" ;
+lin mastery_N = mkN "mastery" "masteries" ;
+lin masthead_N = mkN "masthead" "mastheads" ;
+lin mastic_N = mkN "mastic" "mastics" ;
+lin masticate_V = mkV "masticate" "masticated" "masticated" ;
+lin mastication_N = mkN "mastication" "mastications" ;
+lin mastiff_N = mkN "mastiff" "mastiffs" ;
+lin mastitis_N = mkN "mastitis" "mastitises" ;
+lin mastodon_N = mkN "mastodon" "mastodons" ;
+lin mastoid_A = mkAMost "mastoid" "mastoidly" ;
+lin mastoid_N = mkN "mastoid" "mastoids" ;
+lin mastoidale_N = mkN "mastoidale" "mastoidales" ;
+lin mastoidectomy_N = mkN "mastoidectomy" "mastoidectomies" ;
+lin mastoiditis_N = mkN "mastoiditis" "mastoiditises" ;
+lin mastopathy_N = mkN "mastopathy" "mastopathies" ;
+lin mastopexy_N = mkN "mastopexy" "mastopexies" ;
+lin masturbate_V = mkV "masturbate" "masturbated" "masturbated" ;
+lin masturbation_N = mkN "masturbation" "masturbations" ;
+lin masturbator_N = mkN "masturbator" "masturbators" ;
+lin mat_A = mkAMost "mat" "matly" ;
+lin mat_N = mkN "mat" "mats" ;
+lin mat_V = mkV "mat" "matted" "matted" ;
+lin matador_N = mkN "matador" "matadors" ;
+lin matai_N = mkN "matai" "matais" ;
+lin match_N = mkN "match" "matches" ;
+lin match_V = mkV "match" "matched" "matched" ;
+lin match_point_N = mkN "match-point" "match-points" ;
+lin matchboard_N = mkN "matchboard" "matchboards" ;
+lin matchbook_N = mkN "matchbook" "matchbooks" ;
+lin matchbox_N = mkN "matchbox" "matchboxes" ;
+lin matchet_N = mkN "matchet" "matchets" ;
+lin matchless_A = mkAMost "matchless" "matchlessly" ;
+lin matchlock_N = mkN "matchlock" "matchlocks" ;
+lin matchmaker_N = mkN "matchmaker" "matchmakers" ;
+lin matchmaking_N = mkN "matchmaking" "matchmakings" ;
+lin matchstick_N = mkN "matchstick" "matchsticks" ;
+lin matchweed_N = mkN "matchweed" "matchweeds" ;
+lin matchwood_N = mkN "matchwood" "matchwoods" ;
+lin mate_N = mkN "mate" "mates" ;
+lin mate_V = mkV "mate" "mated" "mated" ;
+lin mateless_A = mkAMost "mateless" "matelessly" ;
+lin matelote_N = mkN "matelote" "matelotes" ;
+lin mater_N = mkN "mater" "maters" ;
+lin material_A = mkAMost "material" "materially" ;
+lin material_N = mkN "material" "materials" ;
+lin materialism_N = mkN "materialism" "materialisms" ;
+lin materialist_N = mkN "materialist" "materialists" ;
+lin materialistic_A = mkAMost "materialistic" "materialisticly" ;
+lin materialistically_Adv = mkAdv "materialistically" ;
+lin materiality_N = mkN "materiality" "materialities" ;
+lin materialization_N = mkN "materialization" "materializations" ;
+lin materialize_V = mkV "materialize" "materialized" "materialized" ;
+lin materiel_N = mkN "materiel" "materiels" ;
+lin maternal_A = mkAMost "maternal" "maternally" ;
+lin maternalism_N = mkN "maternalism" "maternalisms" ;
+lin maternalistic_A = mkAMost "maternalistic" "maternalisticly" ;
+lin maternity_N = mkN "maternity" "maternities" ;
+lin matey_A = mkAMost "matey" "mateily" ;
+lin mathematical_A = mkAMost "mathematical" "mathematically" ;
+lin mathematician_N = mkN "mathematician" "mathematicians" ;
+lin mathematics_N = mkN "mathematics" "mathematics" ;
+lin maths_N = mkN "maths" "maths" ;
+lin matins_N = mkN "matins" "matinses" ;
+lin matinée_N = mkN "matinée" "matinées" ;
+lin matriarch_N = mkN "matriarch" "matriarchs" ;
+lin matriarchal_A = mkAMost "matriarchal" "matriarchally" ;
+lin matriarchic_A = mkAMost "matriarchic" "matriarchicly" ;
+lin matriarchy_N = mkN "matriarchy" "matriarchies" ;
+lin matric_N = mkN "matric" "matrics" ;
+lin matricentric_A = mkAMost "matricentric" "matricentricly" ;
+lin matricide_N = mkN "matricide" "matricides" ;
+lin matriculate_N = mkN "matriculate" "matriculates" ;
+lin matriculate_V = mkV "matriculate" "matriculated" "matriculated" ;
+lin matriculation_N = mkN "matriculation" "matriculations" ;
+lin matrilineage_N = mkN "matrilineage" "matrilineages" ;
+lin matrilineal_A = mkAMost "matrilineal" "matrilineally" ;
+lin matrimonial_A = mkAMost "matrimonial" "matrimonially" ;
+lin matrimony_N = mkN "matrimony" "matrimonies" ;
+lin matrix_N = mkN "matrix" "matrixes" ;
+lin matron_N = mkN "matron" "matrons" ;
+lin matronly_A = mkAMost "matronly" "matronlily" ;
+lin matronymic_N = mkN "matronymic" "matronymics" ;
+lin matsyendra_N = mkN "matsyendra" "matsyendras" ;
+lin matt_A = mkAMost "matt" "mattly" ;
+lin matte_N = mkN "matte" "mattes" ;
+lin matter_N = mkN "matter" "matters" ;
+lin matter_V = mkV "matter" "mattered" "mattered" ;
+lin matter_of_course_A = mkAMost "matter-of-course" "matter-of-coursely" ;
+lin matter_of_fact_A = mkAMost "matter-of-fact" "matter-of-factly" ;
+lin matting_N = mkN "matting" "mattings" ;
+lin mattock_N = mkN "mattock" "mattocks" ;
+lin mattress_N = mkN "mattress" "mattresses" ;
+lin maturate_V = mkV "maturate" "maturated" "maturated" ;
+lin maturation_N = mkN "maturation" "maturations" ;
+lin maturational_A = mkAMost "maturational" "maturationally" ;
+lin mature_A = mkAMost "mature" "maturely" ;
+lin mature_V = mkV "mature" "matured" "matured" ;
+lin maturity_N = mkN "maturity" "maturities" ;
+lin matutinal_A = mkAMost "matutinal" "matutinally" ;
+lin matzo_N = mkN "matzo" "matzoes" ;
+lin maté_N = mkN "maté" "matés" ;
+lin maudlin_A = mkAMost "maudlin" "maudlinly" ;
+lin maul_N = mkN "maul" "mauls" ;
+lin maul_V = mkV "maul" "mauled" "mauled" ;
+lin mauler_N = mkN "mauler" "maulers" ;
+lin maulstick_N = mkN "maulstick" "maulsticks" ;
+lin maund_N = mkN "maund" "maunds" ;
+lin maunder_V = mkV "maunder" "maundered" "maundered" ;
+lin maundy_thursday_N = mkN "maundy thursday" "maundy thursdays" ;
+lin mauritanian_A = mkAMost "mauritanian" "mauritanianly" ;
+lin mauritanian_N = mkN "mauritanian" "mauritanians" ;
+lin mauritian_A = mkAMost "mauritian" "mauritianly" ;
+lin mauritian_N = mkN "mauritian" "mauritians" ;
+lin mausoleum_N = mkN "mausoleum" "mausoleums" ;
+lin mauve_A = mkAMost "mauve" "mauvely" ;
+lin mauve_N = mkN "mauve" "mauves" ;
+lin maverick_N = mkN "maverick" "mavericks" ;
+lin mavis_N = mkN "mavis" "mavises" ;
+lin maw_N = mkN "maw" "maws" ;
+lin mawkish_A = mkAMost "mawkish" "mawkishly" ;
+lin mawkishness_N = mkN "mawkishness" "mawkishnesses" ;
+lin max_N = mkN "max" "maxes" ;
+lin max_V = mkV "max" "maxed" "maxed" ;
+lin maxi_A = mkA "maxi" "maxier" "maxiest" "maxily" ;
+lin maxi_N = mkN "maxi" "maxis" ;
+lin maxillaria_N = mkN "maxillaria" "maxillarias" ;
+lin maxillary_A = mkAMost "maxillary" "maxillarily" ;
+lin maxillodental_A = mkAMost "maxillodental" "maxillodentally" ;
+lin maxillofacial_A = mkAMost "maxillofacial" "maxillofacially" ;
+lin maxillomandibular_A = mkAMost "maxillomandibular" "maxillomandibularly" ;
+lin maxim_N = mkN "maxim" "maxims" ;
+lin maximal_A = mkAMost "maximal" "maximally" ;
+lin maximization_N = mkN "maximization" "maximizations" ;
+lin maximize_V = mkV "maximize" "maximized" "maximized" ;
+lin maximizing_A = mkAMost "maximizing" "maximizingly" ;
+lin maximum_A = mkAMost "maximum" "maximumly" ;
+lin maximum_N = mkN "maximum" "maximums" ;
+lin maxwell_N = mkN "maxwell" "maxwells" ;
+lin may_beetle_N = mkN "may-beetle" "may-beetles" ;
+lin may_bug_N = mkN "may-bug" "may-bugs" ;
+lin mayapple_N = mkN "mayapple" "mayapples" ;
+lin maybe_Adv = mkAdv "maybe" ;
+lin mayday_N = mkN "mayday" "maydays" ;
+lin mayeng_N = mkN "mayeng" "mayengs" ;
+lin mayfly_N = mkN "mayfly" "mayflies" ;
+lin mayhaw_N = mkN "mayhaw" "mayhaws" ;
+lin mayhem_N = mkN "mayhem" "mayhems" ;
+lin mayonnaise_N = mkN "mayonnaise" "mayonnaises" ;
+lin mayor_N = mkN "mayor" "mayors" ;
+lin mayoral_A = mkAMost "mayoral" "mayorally" ;
+lin mayoralty_N = mkN "mayoralty" "mayoralties" ;
+lin mayoress_N = mkN "mayoress" "mayoresses" ;
+lin maypole_N = mkN "maypole" "maypoles" ;
+lin maypop_N = mkN "maypop" "maypops" ;
+lin mayweed_N = mkN "mayweed" "mayweeds" ;
+lin maze_N = mkN "maze" "mazes" ;
+lin mazed_A = mkAMost "mazed" "mazedly" ;
+lin mazer_N = mkN "mazer" "mazers" ;
+lin mazurka_N = mkN "mazurka" "mazurkas" ;
+lin mb_N = mkN "mb" "mbs" ;
+lin mc_N = mkN "mc" "mcs" ;
+lin mcc_N = mkN "mcc" "mccs" ;
+lin mccarthyism_N = mkN "mccarthyism" "mccarthyisms" ;
+lin md_N = mkN "md" "mds" ;
+lin mead_N = mkN "mead" "meads" ;
+lin meadow_N = mkN "meadow" "meadows" ;
+lin meadowgrass_N = mkN "meadowgrass" "meadowgrasses" ;
+lin meadowlark_N = mkN "meadowlark" "meadowlarks" ;
+lin meager_A = mkAMost "meager" "meagerly" ;
+lin meagerness_N = mkN "meagerness" "meagernesses" ;
+lin meagre_A = mkAMost "meagre" "meagrely" ;
+lin meagreness_N = mkN "meagreness" "meagrenesses" ;
+lin meal_N = mkN "meal" "meals" ;
+lin mealie_N = mkN "mealie" "mealies" ;
+lin mealtime_N = mkN "mealtime" "mealtimes" ;
+lin mealworm_N = mkN "mealworm" "mealworms" ;
+lin mealy_A = mkA "mealy" "mealier" "mealiest" "mealily" ;
+lin mealy_bug_N = mkN "mealy-bug" "mealy-bugs" ;
+lin mealy_mouthed_A = mkAMost "mealy-mouthed" "mealy-mouthedly" ;
+lin mealybug_N = mkN "mealybug" "mealybugs" ;
+lin mealymouthed_A = mkAMost "mealymouthed" "mealymouthedly" ;
+lin mean_A = mkA "mean" "meaner" "meanest" "meanly" ;
+lin mean_N = mkN "mean" "means" ;
+lin mean_V = mkV "mean" "meant" "meant" ;
+lin meander_N = mkN "meander" "meanders" ;
+lin meander_V = mkV "meander" "meandered" "meandered" ;
+lin meanderingly_Adv = mkAdv "meanderingly" ;
+lin meanie_N = mkN "meanie" "meanies" ;
+lin meaning_N = mkN "meaning" "meanings" ;
+lin meaningful_A = mkAMost "meaningful" "meaningfully" ;
+lin meaningfulness_N = mkN "meaningfulness" "meaningfulnesses" ;
+lin meaningless_A = mkAMost "meaningless" "meaninglessly" ;
+lin meaninglessness_N = mkN "meaninglessness" "meaninglessnesses" ;
+lin meanness_N = mkN "meanness" "meannesses" ;
+lin means_N = mkN "means" "meanses" ;
+lin meanspiritedly_Adv = mkAdv "meanspiritedly" ;
+lin meantime_Adv = mkAdv "meantime" ;
+lin meantime_N = mkN "meantime" "meantimes" ;
+lin meanwhile_Adv = mkAdv "meanwhile" ;
+lin meany_N = mkN "meany" "meanies" ;
+lin measles_N = mkN "measles" "measles" ;
+lin measly_A = mkAMost "measly" "measlily" ;
+lin measurable_A = mkAMost "measurable" "measurably" ;
+lin measure_N = mkN "measure" "measures" ;
+lin measure_V = mkV "measure" "measured" "measured" ;
+lin measuredly_Adv = mkAdv "measuredly" ;
+lin measureless_A = mkAMost "measureless" "measurelessly" ;
+lin measurement_N = mkN "measurement" "measurements" ;
+lin measurer_N = mkN "measurer" "measurers" ;
+lin meat_N = mkN "meat" "meats" ;
+lin meat_safe_N = mkN "meat-safe" "meat-safes" ;
+lin meatball_N = mkN "meatball" "meatballs" ;
+lin meatless_A = mkAMost "meatless" "meatlessly" ;
+lin meatpacking_N = mkN "meatpacking" "meatpackings" ;
+lin meatus_N = mkN "meatus" "meatuses" ;
+lin meaty_A = mkA "meaty" "meatier" "meatiest" "meatily" ;
+lin mebendazole_N = mkN "mebendazole" "mebendazoles" ;
+lin mebibit_N = mkN "mebibit" "mebibits" ;
+lin mecca_N = mkN "mecca" "meccas" ;
+lin mechanic_A = mkAMost "mechanic" "mechanicly" ;
+lin mechanic_N = mkN "mechanic" "mechanics" ;
+lin mechanical_A = mkAMost "mechanical" "mechanically" ;
+lin mechanics_N = mkN "mechanics" "mechanics" ;
+lin mechanism_N = mkN "mechanism" "mechanisms" ;
+lin mechanist_N = mkN "mechanist" "mechanists" ;
+lin mechanistic_A = mkAMost "mechanistic" "mechanisticly" ;
+lin mechanistically_Adv = mkAdv "mechanistically" ;
+lin mechanization_N = mkN "mechanization" "mechanizations" ;
+lin mechanize_V = mkV "mechanize" "mechanized" "mechanized" ;
+lin meclizine_N = mkN "meclizine" "meclizines" ;
+lin meclofenamate_N = mkN "meclofenamate" "meclofenamates" ;
+lin meconium_N = mkN "meconium" "meconiums" ;
+lin mecopteran_N = mkN "mecopteran" "mecopterans" ;
+lin mecopterous_A = mkAMost "mecopterous" "mecopterously" ;
+lin med_N = mkN "med" "meds" ;
+lin medal_N = mkN "medal" "medals" ;
+lin medalist_N = mkN "medalist" "medalists" ;
+lin medallion_N = mkN "medallion" "medallions" ;
+lin medallist_N = mkN "medallist" "medallists" ;
+lin meddle_V = mkV "meddle" "meddled" "meddled" ;
+lin meddler_N = mkN "meddler" "meddlers" ;
+lin meddlesome_A = mkAMost "meddlesome" "meddlesomely" ;
+lin meddling_N = mkN "meddling" "meddlings" ;
+lin media_N = mkN "media" "medias" ;
+lin mediacy_N = mkN "mediacy" "mediacies" ;
+lin mediaeval_A = mkAMost "mediaeval" "mediaevally" ;
+lin medial_A = mkAMost "medial" "medially" ;
+lin median_A = mkAMost "median" "medianly" ;
+lin median_N = mkN "median" "medians" ;
+lin mediant_N = mkN "mediant" "mediants" ;
+lin mediastinum_N = mkN "mediastinum" "mediastinums" ;
+lin mediate_A = mkAMost "mediate" "mediately" ;
+lin mediate_V = mkV "mediate" "mediated" "mediated" ;
+lin mediation_N = mkN "mediation" "mediations" ;
+lin mediator_N = mkN "mediator" "mediators" ;
+lin mediatorial_A = mkAMost "mediatorial" "mediatorially" ;
+lin mediatory_A = mkAMost "mediatory" "mediatorily" ;
+lin mediatrix_N = mkN "mediatrix" "mediatrixes" ;
+lin medic_N = mkN "medic" "medics" ;
+lin medical_A = mkAMost "medical" "medically" ;
+lin medical_N = mkN "medical" "medicals" ;
+lin medicament_N = mkN "medicament" "medicaments" ;
+lin medicare_N = mkN "medicare" "medicares" ;
+lin medicate_V = mkV "medicate" "medicated" "medicated" ;
+lin medication_N = mkN "medication" "medications" ;
+lin medicative_A = mkAMost "medicative" "medicatively" ;
+lin medicinal_A = mkAMost "medicinal" "medicinally" ;
+lin medicine_N = mkN "medicine" "medicines" ;
+lin medicine_ball_N = mkN "medicine-ball" "medicine-balls" ;
+lin medicine_chest_N = mkN "medicine-chest" "medicine-chests" ;
+lin medicine_man_N = mkN "medicine-man" "medicine-men" ;
+lin medico_N = mkN "medico" "medicos" ;
+lin medicolegal_A = mkAMost "medicolegal" "medicolegally" ;
+lin medieval_A = mkAMost "medieval" "medievally" ;
+lin medina_N = mkN "medina" "medinas" ;
+lin mediocre_A = mkAMost "mediocre" "mediocrely" ;
+lin mediocrity_N = mkN "mediocrity" "mediocrities" ;
+lin meditate_V = mkV "meditate" "meditated" "meditated" ;
+lin meditation_N = mkN "meditation" "meditations" ;
+lin meditative_A = mkAMost "meditative" "meditatively" ;
+lin mediterranean_A = mkAMost "mediterranean" "mediterraneanly" ;
+lin medium_A = mkAMost "medium" "mediumly" ;
+lin medium_N = mkN "medium" "mediums" ;
+lin medium_grade_A = mkAMost "medium-grade" "medium-gradely" ;
+lin medlar_N = mkN "medlar" "medlars" ;
+lin medley_N = mkN "medley" "medleys" ;
+lin medroxyprogesterone_N = mkN "medroxyprogesterone" "medroxyprogesterones" ;
+lin medulla_N = mkN "medulla" "medullas" ;
+lin medullary_A = mkAMost "medullary" "medullarily" ;
+lin medusa_N = mkN "medusa" "medusas" ;
+lin medusoid_A = mkAMost "medusoid" "medusoidly" ;
+lin meed_N = mkN "meed" "meeds" ;
+lin meek_A = mkA "meek" "meeker" "meekest" "meekly" ;
+lin meekness_N = mkN "meekness" "meeknesses" ;
+lin meerkat_N = mkN "meerkat" "meerkats" ;
+lin meerschaum_N = mkN "meerschaum" "meerschaums" ;
+lin meet_A = mkAMost "meet" "meetly" ;
+lin meet_N = mkN "meet" "meets" ;
+lin meet_meeted_V = mkV "meet" "meeted" "meeted" ;
+lin meet_met_V = mkV "meet" "met" "met" ;
+lin meeting_N = mkN "meeting" "meetings" ;
+lin meeting_house_N = mkN "meeting-house" "meeting-houses" ;
+lin meeting_place_N = mkN "meeting-place" "meeting-places" ;
+lin mefloquine_N = mkN "mefloquine" "mefloquines" ;
+lin megabit_N = mkN "megabit" "megabits" ;
+lin megabyte_N = mkN "megabyte" "megabytes" ;
+lin megacolon_N = mkN "megacolon" "megacolons" ;
+lin megacycle_N = mkN "megacycle" "megacycles" ;
+lin megadeath_N = mkN "megadeath" "megadeaths" ;
+lin megaflop_N = mkN "megaflop" "megaflops" ;
+lin megagametophyte_N = mkN "megagametophyte" "megagametophytes" ;
+lin megahertz_N = mkN "megahertz" "megahertzes" ;
+lin megakaryocyte_N = mkN "megakaryocyte" "megakaryocytes" ;
+lin megakaryocytic_A = mkAMost "megakaryocytic" "megakaryocyticly" ;
+lin megalith_N = mkN "megalith" "megaliths" ;
+lin megalithic_A = mkAMost "megalithic" "megalithicly" ;
+lin megaloblast_N = mkN "megaloblast" "megaloblasts" ;
+lin megaloblastic_A = mkAMost "megaloblastic" "megaloblasticly" ;
+lin megalocyte_N = mkN "megalocyte" "megalocytes" ;
+lin megalomania_N = mkN "megalomania" "megalomanias" ;
+lin megalomaniac_N = mkN "megalomaniac" "megalomaniacs" ;
+lin megalomaniacal_A = mkAMost "megalomaniacal" "megalomaniacally" ;
+lin megalopolis_N = mkN "megalopolis" "megalopolises" ;
+lin megalosaur_N = mkN "megalosaur" "megalosaurs" ;
+lin megaphone_N = mkN "megaphone" "megaphones" ;
+lin megapode_N = mkN "megapode" "megapodes" ;
+lin megascopic_A = mkAMost "megascopic" "megascopicly" ;
+lin megasporangium_N = mkN "megasporangium" "megasporangiums" ;
+lin megaspore_N = mkN "megaspore" "megaspores" ;
+lin megasporophyll_N = mkN "megasporophyll" "megasporophylls" ;
+lin megatherian_N = mkN "megatherian" "megatherians" ;
+lin megaton_N = mkN "megaton" "megatons" ;
+lin megawatt_N = mkN "megawatt" "megawatts" ;
+lin megestrol_N = mkN "megestrol" "megestrols" ;
+lin megillah_N = mkN "megillah" "megillahs" ;
+lin megilp_N = mkN "megilp" "megilps" ;
+lin megohm_N = mkN "megohm" "megohms" ;
+lin megrim_N = mkN "megrim" "megrims" ;
+lin meiosis_N = mkN "meiosis" "meiosises" ;
+lin meiotic_A = mkAMost "meiotic" "meioticly" ;
+lin meitnerium_N = mkN "meitnerium" "meitneriums" ;
+lin melagra_N = mkN "melagra" "melagras" ;
+lin melamine_N = mkN "melamine" "melamines" ;
+lin melancholia_N = mkN "melancholia" "melancholias" ;
+lin melancholic_A = mkAMost "melancholic" "melancholicly" ;
+lin melancholic_N = mkN "melancholic" "melancholics" ;
+lin melancholy_A = mkAMost "melancholy" "melancholily" ;
+lin melancholy_N = mkN "melancholy" "melancholies" ;
+lin melanin_N = mkN "melanin" "melanins" ;
+lin melanoblast_N = mkN "melanoblast" "melanoblasts" ;
+lin melanocyte_N = mkN "melanocyte" "melanocytes" ;
+lin melanoderma_N = mkN "melanoderma" "melanodermas" ;
+lin melanoma_N = mkN "melanoma" "melanomas" ;
+lin melanosis_N = mkN "melanosis" "melanosises" ;
+lin melatonin_N = mkN "melatonin" "melatonins" ;
+lin meld_V = mkV "meld" "melded" "melded" ;
+lin melena_N = mkN "melena" "melenas" ;
+lin melilotus_N = mkN "melilotus" "melilotuses" ;
+lin meliorate_V = mkV "meliorate" "meliorated" "meliorated" ;
+lin melioration_N = mkN "melioration" "meliorations" ;
+lin meliorism_N = mkN "meliorism" "meliorisms" ;
+lin mellifluous_A = mkAMost "mellifluous" "mellifluously" ;
+lin mellow_A = mkA "mellow" "mellower" "mellowest" "mellowly" ;
+lin mellow_V = mkV "mellow" "mellowed" "mellowed" ;
+lin mellowing_N = mkN "mellowing" "mellowings" ;
+lin mellowingly_Adv = mkAdv "mellowingly" ;
+lin mellowness_N = mkN "mellowness" "mellownesses" ;
+lin melodic_A = mkAMost "melodic" "melodicly" ;
+lin melodically_Adv = mkAdv "melodically" ;
+lin melodious_A = mkAMost "melodious" "melodiously" ;
+lin melodiousness_N = mkN "melodiousness" "melodiousnesses" ;
+lin melodrama_N = mkN "melodrama" "melodramas" ;
+lin melodramatic_A = mkAMost "melodramatic" "melodramaticly" ;
+lin melodramatically_Adv = mkAdv "melodramatically" ;
+lin melody_N = mkN "melody" "melodies" ;
+lin melon_N = mkN "melon" "melons" ;
+lin melosa_N = mkN "melosa" "melosas" ;
+lin melphalan_N = mkN "melphalan" "melphalans" ;
+lin melt_V = mkV "melt" "melted" "melted" ;
+lin meltable_A = mkAMost "meltable" "meltably" ;
+lin meltdown_N = mkN "meltdown" "meltdowns" ;
+lin melter_N = mkN "melter" "melters" ;
+lin melting_point_N = mkN "melting-point" "melting-points" ;
+lin melting_pot_N = mkN "melting-pot" "melting-pots" ;
+lin meltwater_N = mkN "meltwater" "meltwaters" ;
+lin mem_N = mkN "mem" "mems" ;
+lin member_N = mkN "member" "members" ;
+lin membered_A = mkAMost "membered" "memberedly" ;
+lin memberless_A = mkAMost "memberless" "memberlessly" ;
+lin membership_N = mkN "membership" "memberships" ;
+lin membrane_N = mkN "membrane" "membranes" ;
+lin membranous_A = mkAMost "membranous" "membranously" ;
+lin meme_N = mkN "meme" "memes" ;
+lin memento_N = mkN "memento" "mementos" ;
+lin memo_N = mkN "memo" "memos" ;
+lin memoir_N = mkN "memoir" "memoirs" ;
+lin memorabilia_N = mkN "memorabilia" "memorabilias" ;
+lin memorability_N = mkN "memorability" "memorabilities" ;
+lin memorable_A = mkAMost "memorable" "memorably" ;
+lin memorandum_N = mkN "memorandum" "memorandums" ;
+lin memorial_N = mkN "memorial" "memorials" ;
+lin memorialize_V = mkV "memorialize" "memorialized" "memorialized" ;
+lin memorization_N = mkN "memorization" "memorizations" ;
+lin memorize_V = mkV "memorize" "memorized" "memorized" ;
+lin memorizer_N = mkN "memorizer" "memorizers" ;
+lin memory_N = mkN "memory" "memories" ;
+lin memsahib_N = mkN "memsahib" "memsahibs" ;
+lin menace_N = mkN "menace" "menaces" ;
+lin menace_V = mkV "menace" "menaced" "menaced" ;
+lin menacingly_Adv = mkAdv "menacingly" ;
+lin menagerie_N = mkN "menagerie" "menageries" ;
+lin menarche_N = mkN "menarche" "menarches" ;
+lin mend_N = mkN "mend" "mends" ;
+lin mend_V = mkV "mend" "mended" "mended" ;
+lin mendacious_A = mkAMost "mendacious" "mendaciously" ;
+lin mendacity_N = mkN "mendacity" "mendacities" ;
+lin mendelevium_N = mkN "mendelevium" "mendeleviums" ;
+lin mendelian_A = mkAMost "mendelian" "mendelianly" ;
+lin mender_N = mkN "mender" "menders" ;
+lin mendicant_A = mkAMost "mendicant" "mendicantly" ;
+lin mendicant_N = mkN "mendicant" "mendicants" ;
+lin mending_N = mkN "mending" "mendings" ;
+lin menhaden_N = mkN "menhaden" "menhadens" ;
+lin menhir_N = mkN "menhir" "menhirs" ;
+lin menial_A = mkAMost "menial" "menially" ;
+lin menial_N = mkN "menial" "menials" ;
+lin meningeal_A = mkAMost "meningeal" "meningeally" ;
+lin meningioma_N = mkN "meningioma" "meningiomas" ;
+lin meningism_N = mkN "meningism" "meningisms" ;
+lin meningitis_N = mkN "meningitis" "meningitises" ;
+lin meningocele_N = mkN "meningocele" "meningoceles" ;
+lin meningoencephalitis_N = mkN "meningoencephalitis" "meningoencephalitises" ;
+lin meninx_N = mkN "meninx" "meninxes" ;
+lin meniscectomy_N = mkN "meniscectomy" "meniscectomies" ;
+lin meniscus_N = mkN "meniscus" "meniscuses" ;
+lin menopausal_A = mkAMost "menopausal" "menopausally" ;
+lin menopause_N = mkN "menopause" "menopauses" ;
+lin menorah_N = mkN "menorah" "menorahs" ;
+lin menorrhagia_N = mkN "menorrhagia" "menorrhagias" ;
+lin menorrhea_N = mkN "menorrhea" "menorrheas" ;
+lin mensal_A = mkAMost "mensal" "mensally" ;
+lin mensch_N = mkN "mensch" "mensches" ;
+lin menstrual_A = mkAMost "menstrual" "menstrually" ;
+lin menstruate_V = mkV "menstruate" "menstruated" "menstruated" ;
+lin menstruation_N = mkN "menstruation" "menstruations" ;
+lin menstruum_N = mkN "menstruum" "menstruums" ;
+lin mensurable_A = mkAMost "mensurable" "mensurably" ;
+lin mensural_A = mkAMost "mensural" "mensurally" ;
+lin mensuration_N = mkN "mensuration" "mensurations" ;
+lin mental_A = mkAMost "mental" "mentally" ;
+lin mentalism_N = mkN "mentalism" "mentalisms" ;
+lin mentality_N = mkN "mentality" "mentalities" ;
+lin menthol_N = mkN "menthol" "menthols" ;
+lin mentholated_A = mkAMost "mentholated" "mentholatedly" ;
+lin mention_N = mkN "mention" "mentions" ;
+lin mention_V = mkV "mention" "mentioned" "mentioned" ;
+lin mentioner_N = mkN "mentioner" "mentioners" ;
+lin mentor_N = mkN "mentor" "mentors" ;
+lin mentum_N = mkN "mentum" "mentums" ;
+lin menu_N = mkN "menu" "menus" ;
+lin meow_N = mkN "meow" "meows" ;
+lin meperidine_N = mkN "meperidine" "meperidines" ;
+lin mephenytoin_N = mkN "mephenytoin" "mephenytoins" ;
+lin mephistophelian_A = mkAMost "mephistophelian" "mephistophelianly" ;
+lin mephitis_N = mkN "mephitis" "mephitises" ;
+lin mephobarbital_N = mkN "mephobarbital" "mephobarbitals" ;
+lin meprobamate_N = mkN "meprobamate" "meprobamates" ;
+lin meralgia_N = mkN "meralgia" "meralgias" ;
+lin merbromine_N = mkN "merbromine" "merbromines" ;
+lin mercantile_A = mkAMost "mercantile" "mercantilely" ;
+lin mercantilism_N = mkN "mercantilism" "mercantilisms" ;
+lin mercaptopurine_N = mkN "mercaptopurine" "mercaptopurines" ;
+lin mercenary_A = mkAMost "mercenary" "mercenarily" ;
+lin mercenary_N = mkN "mercenary" "mercenaries" ;
+lin mercer_N = mkN "mercer" "mercers" ;
+lin mercerize_V = mkV "mercerize" "mercerized" "mercerized" ;
+lin merchandise_N = mkN "merchandise" "merchandises" ;
+lin merchant_N = mkN "merchant" "merchants" ;
+lin merchantability_N = mkN "merchantability" "merchantabilities" ;
+lin merchantman_N = mkN "merchantman" "merchantmen" ;
+lin merciful_A = mkAMost "merciful" "mercifully" ;
+lin mercifulness_N = mkN "mercifulness" "mercifulnesses" ;
+lin merciless_A = mkAMost "merciless" "mercilessly" ;
+lin mercilessness_N = mkN "mercilessness" "mercilessnesses" ;
+lin mercurial_A = mkAMost "mercurial" "mercurially" ;
+lin mercuric_A = mkAMost "mercuric" "mercuricly" ;
+lin mercury_N = mkN "mercury" "mercuries" ;
+lin mercy_N = mkN "mercy" "mercies" ;
+lin mere_A = mkAMost "mere" "merely" ;
+lin mere_N = mkN "mere" "meres" ;
+lin merestone_N = mkN "merestone" "merestones" ;
+lin meretricious_A = mkAMost "meretricious" "meretriciously" ;
+lin meretriciousness_N = mkN "meretriciousness" "meretriciousnesses" ;
+lin merganser_N = mkN "merganser" "mergansers" ;
+lin merge_V = mkV "merge" "merged" "merged" ;
+lin merger_N = mkN "merger" "mergers" ;
+lin merging_N = mkN "merging" "mergings" ;
+lin mericarp_N = mkN "mericarp" "mericarps" ;
+lin meridian_A = mkAMost "meridian" "meridianly" ;
+lin meridian_N = mkN "meridian" "meridians" ;
+lin meridional_A = mkAMost "meridional" "meridionally" ;
+lin meringue_N = mkN "meringue" "meringues" ;
+lin merino_N = mkN "merino" "merinoes" ;
+lin merino_sheep_N = mkN "merino-sheep" "merino-sheep" ;
+lin meristem_N = mkN "meristem" "meristems" ;
+lin merit_N = mkN "merit" "merits" ;
+lin merit_V = mkV "merit" "merited" "merited" ;
+lin meritocracy_N = mkN "meritocracy" "meritocracies" ;
+lin meritocratic_A = mkAMost "meritocratic" "meritocraticly" ;
+lin meritorious_A = mkAMost "meritorious" "meritoriously" ;
+lin merlon_N = mkN "merlon" "merlons" ;
+lin mermaid_N = mkN "mermaid" "mermaids" ;
+lin merman_N = mkN "merman" "mermen" ;
+lin meromelia_N = mkN "meromelia" "meromelias" ;
+lin meronym_N = mkN "meronym" "meronyms" ;
+lin meronymy_N = mkN "meronymy" "meronymies" ;
+lin merozoite_N = mkN "merozoite" "merozoites" ;
+lin merriment_N = mkN "merriment" "merriments" ;
+lin merry_A = mkA "merry" "merrier" "merriest" "merrily" ;
+lin merry_go_round_N = mkN "merry-go-round" "merry-go-rounds" ;
+lin merrymaker_N = mkN "merrymaker" "merrymakers" ;
+lin merrymaking_N = mkN "merrymaking" "merrymakings" ;
+lin mesa_N = mkN "mesa" "mesas" ;
+lin mescal_N = mkN "mescal" "mescals" ;
+lin mescaline_N = mkN "mescaline" "mescalines" ;
+lin meseems_Adv = mkAdv "meseems" ;
+lin mesenchyme_N = mkN "mesenchyme" "mesenchymes" ;
+lin mesenteric_A = mkAMost "mesenteric" "mesentericly" ;
+lin mesentery_N = mkN "mesentery" "mesenteries" ;
+lin mesh_N = mkN "mesh" "meshes" ;
+lin mesh_V = mkV "mesh" "meshed" "meshed" ;
+lin meshugaas_N = mkN "meshugaas" "meshugaases" ;
+lin meshugge_A = mkAMost "meshugge" "meshuggely" ;
+lin meshuggeneh_N = mkN "meshuggeneh" "meshuggenehs" ;
+lin mesial_A = mkAMost "mesial" "mesially" ;
+lin mesic_A = mkAMost "mesic" "mesicly" ;
+lin mesmeric_A = mkAMost "mesmeric" "mesmericly" ;
+lin mesmerism_N = mkN "mesmerism" "mesmerisms" ;
+lin mesmerist_N = mkN "mesmerist" "mesmerists" ;
+lin mesmerize_V = mkV "mesmerize" "mesmerized" "mesmerized" ;
+lin mesoblastic_A = mkAMost "mesoblastic" "mesoblasticly" ;
+lin mesocarp_N = mkN "mesocarp" "mesocarps" ;
+lin mesocolon_N = mkN "mesocolon" "mesocolons" ;
+lin mesoderm_N = mkN "mesoderm" "mesoderms" ;
+lin mesohippus_N = mkN "mesohippus" "mesohippuses" ;
+lin mesolithic_A = mkAMost "mesolithic" "mesolithicly" ;
+lin mesomorph_N = mkN "mesomorph" "mesomorphs" ;
+lin mesomorphic_A = mkAMost "mesomorphic" "mesomorphicly" ;
+lin meson_N = mkN "meson" "mesons" ;
+lin mesonic_A = mkAMost "mesonic" "mesonicly" ;
+lin mesophyte_N = mkN "mesophyte" "mesophytes" ;
+lin mesophytic_A = mkAMost "mesophytic" "mesophyticly" ;
+lin mesosphere_N = mkN "mesosphere" "mesospheres" ;
+lin mesothelioma_N = mkN "mesothelioma" "mesotheliomas" ;
+lin mesothelium_N = mkN "mesothelium" "mesotheliums" ;
+lin mesquite_N = mkN "mesquite" "mesquites" ;
+lin mess_N = mkN "mess" "messes" ;
+lin mess_V = mkV "mess" "messed" "messed" ;
+lin mess_jacket_N = mkN "mess-jacket" "mess-jackets" ;
+lin mess_up_N = mkN "mess-up" "mess-ups" ;
+lin message_N = mkN "message" "messages" ;
+lin messaging_N = mkN "messaging" "messagings" ;
+lin messenger_N = mkN "messenger" "messengers" ;
+lin messiah_N = mkN "messiah" "messiahs" ;
+lin messiahship_N = mkN "messiahship" "messiahships" ;
+lin messianic_A = mkAMost "messianic" "messianicly" ;
+lin messiness_N = mkN "messiness" "messinesses" ;
+lin messmate_N = mkN "messmate" "messmates" ;
+lin messuage_N = mkN "messuage" "messuages" ;
+lin messy_A = mkA "messy" "messier" "messiest" "messily" ;
+lin mestiza_N = mkN "mestiza" "mestizas" ;
+lin mestizo_N = mkN "mestizo" "mestizoes" ;
+lin mestranol_N = mkN "mestranol" "mestranols" ;
+lin met_V = mkV "met" "metted" "metted" ;
+lin metabolic_A = mkAMost "metabolic" "metabolicly" ;
+lin metabolically_Adv = mkAdv "metabolically" ;
+lin metabolism_N = mkN "metabolism" "metabolisms" ;
+lin metabolite_N = mkN "metabolite" "metabolites" ;
+lin metabolize_V = mkV "metabolize" "metabolized" "metabolized" ;
+lin metacarpal_A = mkAMost "metacarpal" "metacarpally" ;
+lin metacarpal_N = mkN "metacarpal" "metacarpals" ;
+lin metacarpus_N = mkN "metacarpus" "metacarpuses" ;
+lin metacenter_N = mkN "metacenter" "metacenters" ;
+lin metacentric_A = mkAMost "metacentric" "metacentricly" ;
+lin metadata_N = mkN "metadata" "metadatas" ;
+lin metagenesis_N = mkN "metagenesis" "metagenesises" ;
+lin metagrobolized_A = mkAMost "metagrobolized" "metagrobolizedly" ;
+lin metaknowledge_N = mkN "metaknowledge" "metaknowledges" ;
+lin metal_N = mkN "metal" "metals" ;
+lin metal_V = mkV "metal" "metalled" "metalled" ;
+lin metalanguage_N = mkN "metalanguage" "metalanguages" ;
+lin metalepsis_N = mkN "metalepsis" "metalepsises" ;
+lin metalhead_N = mkN "metalhead" "metalheads" ;
+lin metallic_A = mkAMost "metallic" "metallicly" ;
+lin metallic_N = mkN "metallic" "metallics" ;
+lin metallike_A = mkAMost "metallike" "metallikely" ;
+lin metalloid_A = mkAMost "metalloid" "metalloidly" ;
+lin metallurgical_A = mkAMost "metallurgical" "metallurgically" ;
+lin metallurgist_N = mkN "metallurgist" "metallurgists" ;
+lin metallurgy_N = mkN "metallurgy" "metallurgies" ;
+lin metalware_N = mkN "metalware" "metalwares" ;
+lin metalwork_N = mkN "metalwork" "metalworks" ;
+lin metalworker_N = mkN "metalworker" "metalworkers" ;
+lin metalworking_N = mkN "metalworking" "metalworkings" ;
+lin metamathematics_N = mkN "metamathematics" "metamathematicses" ;
+lin metamere_N = mkN "metamere" "metameres" ;
+lin metameric_A = mkAMost "metameric" "metamericly" ;
+lin metamorphic_A = mkAMost "metamorphic" "metamorphicly" ;
+lin metamorphism_N = mkN "metamorphism" "metamorphisms" ;
+lin metamorphopsia_N = mkN "metamorphopsia" "metamorphopsias" ;
+lin metamorphose_V = mkV "metamorphose" "metamorphosed" "metamorphosed" ;
+lin metamorphosis_N = mkN "metamorphosis" "metamorphoses" ;
+lin metamorphous_A = mkAMost "metamorphous" "metamorphously" ;
+lin metaphase_N = mkN "metaphase" "metaphases" ;
+lin metaphor_N = mkN "metaphor" "metaphors" ;
+lin metaphorical_A = mkAMost "metaphorical" "metaphorically" ;
+lin metaphysical_A = mkAMost "metaphysical" "metaphysically" ;
+lin metaphysics_N = mkN "metaphysics" "metaphysics" ;
+lin metaphysis_N = mkN "metaphysis" "metaphysises" ;
+lin metaproterenol_N = mkN "metaproterenol" "metaproterenols" ;
+lin metarule_N = mkN "metarule" "metarules" ;
+lin metasequoia_N = mkN "metasequoia" "metasequoias" ;
+lin metastability_N = mkN "metastability" "metastabilities" ;
+lin metastable_A = mkAMost "metastable" "metastably" ;
+lin metastasis_N = mkN "metastasis" "metastasises" ;
+lin metastatic_A = mkAMost "metastatic" "metastaticly" ;
+lin metatarsal_A = mkAMost "metatarsal" "metatarsally" ;
+lin metatarsal_N = mkN "metatarsal" "metatarsals" ;
+lin metatarsus_N = mkN "metatarsus" "metatarsuses" ;
+lin metatherian_N = mkN "metatherian" "metatherians" ;
+lin metathesis_N = mkN "metathesis" "metathesises" ;
+lin metazoan_N = mkN "metazoan" "metazoans" ;
+lin mete_V = mkV "mete" "meted" "meted" ;
+lin metempsychosis_N = mkN "metempsychosis" "metempsychosises" ;
+lin metencephalon_N = mkN "metencephalon" "metencephalons" ;
+lin meteor_N = mkN "meteor" "meteors" ;
+lin meteoric_A = mkAMost "meteoric" "meteoricly" ;
+lin meteorite_N = mkN "meteorite" "meteorites" ;
+lin meteoritic_A = mkAMost "meteoritic" "meteoriticly" ;
+lin meteoroid_N = mkN "meteoroid" "meteoroids" ;
+lin meteorologic_A = mkAMost "meteorologic" "meteorologicly" ;
+lin meteorological_A = mkAMost "meteorological" "meteorologically" ;
+lin meteorologist_N = mkN "meteorologist" "meteorologists" ;
+lin meteorology_N = mkN "meteorology" "meteorologies" ;
+lin meteortropism_N = mkN "meteortropism" "meteortropisms" ;
+lin meter_N = mkN "meter" "meters" ;
+lin meterstick_N = mkN "meterstick" "metersticks" ;
+lin metformin_N = mkN "metformin" "metformins" ;
+lin methacholine_N = mkN "methacholine" "methacholines" ;
+lin methadone_N = mkN "methadone" "methadones" ;
+lin methamphetamine_N = mkN "methamphetamine" "methamphetamines" ;
+lin methane_N = mkN "methane" "methanes" ;
+lin methanogen_N = mkN "methanogen" "methanogens" ;
+lin methanol_N = mkN "methanol" "methanols" ;
+lin methapyrilene_N = mkN "methapyrilene" "methapyrilenes" ;
+lin methaqualone_N = mkN "methaqualone" "methaqualones" ;
+lin metharbital_N = mkN "metharbital" "metharbitals" ;
+lin metheglin_N = mkN "metheglin" "metheglins" ;
+lin methenamine_N = mkN "methenamine" "methenamines" ;
+lin methicillin_N = mkN "methicillin" "methicillins" ;
+lin methinks_Adv = mkAdv "methinks" ;
+lin methionine_N = mkN "methionine" "methionines" ;
+lin methocarbamol_N = mkN "methocarbamol" "methocarbamols" ;
+lin method_N = mkN "method" "methods" ;
+lin methodical_A = mkAMost "methodical" "methodically" ;
+lin methodism_N = mkN "methodism" "methodisms" ;
+lin methodist_A = mkAMost "methodist" "methodistly" ;
+lin methodist_N = mkN "methodist" "methodists" ;
+lin methodological_A = mkAMost "methodological" "methodologically" ;
+lin methodology_N = mkN "methodology" "methodologies" ;
+lin methotrexate_N = mkN "methotrexate" "methotrexates" ;
+lin methought_Adv = mkAdv "methought" ;
+lin methyl_N = mkN "methyl" "methyls" ;
+lin methylated_A = mkAMost "methylated" "methylatedly" ;
+lin methyldopa_N = mkN "methyldopa" "methyldopas" ;
+lin methylenedioxymethamphetamine_N = mkN "methylenedioxymethamphetamine" "methylenedioxymethamphetamines" ;
+lin methylphenidate_N = mkN "methylphenidate" "methylphenidates" ;
+lin methyltestosterone_N = mkN "methyltestosterone" "methyltestosterones" ;
+lin metic_N = mkN "metic" "metics" ;
+lin metical_N = mkN "metical" "meticals" ;
+lin meticulous_A = mkAMost "meticulous" "meticulously" ;
+lin meticulousness_N = mkN "meticulousness" "meticulousnesses" ;
+lin metonym_N = mkN "metonym" "metonyms" ;
+lin metonymic_A = mkAMost "metonymic" "metonymicly" ;
+lin metonymically_Adv = mkAdv "metonymically" ;
+lin metonymy_N = mkN "metonymy" "metonymies" ;
+lin metopion_N = mkN "metopion" "metopions" ;
+lin metoprolol_N = mkN "metoprolol" "metoprolols" ;
+lin metralgia_N = mkN "metralgia" "metralgias" ;
+lin metre_N = mkN "metre" "metres" ;
+lin metric_A = mkAMost "metric" "metricly" ;
+lin metrical_A = mkAMost "metrical" "metrically" ;
+lin metrication_N = mkN "metrication" "metrications" ;
+lin metricize_V = mkV "metricize" "metricized" "metricized" ;
+lin metrification_N = mkN "metrification" "metrifications" ;
+lin metritis_N = mkN "metritis" "metritises" ;
+lin metro_N = mkN "metro" "metros" ;
+lin metrological_A = mkAMost "metrological" "metrologically" ;
+lin metrology_N = mkN "metrology" "metrologies" ;
+lin metronidazole_N = mkN "metronidazole" "metronidazoles" ;
+lin metronome_N = mkN "metronome" "metronomes" ;
+lin metropolis_N = mkN "metropolis" "metropolises" ;
+lin metropolitan_A = mkAMost "metropolitan" "metropolitanly" ;
+lin metropolitan_N = mkN "metropolitan" "metropolitans" ;
+lin metroptosis_N = mkN "metroptosis" "metroptosises" ;
+lin metrorrhagia_N = mkN "metrorrhagia" "metrorrhagias" ;
+lin mettle_N = mkN "mettle" "mettles" ;
+lin mettlesome_A = mkAMost "mettlesome" "mettlesomely" ;
+lin mettlesomeness_N = mkN "mettlesomeness" "mettlesomenesses" ;
+lin mew_N = mkN "mew" "mews" ;
+lin mew_V = mkV "mew" "mewed" "mewed" ;
+lin mews_N = mkN "mews" "mews" ;
+lin mexican_A = mkAMost "mexican" "mexicanly" ;
+lin mexican_N = mkN "mexican" "mexicans" ;
+lin mexiletine_N = mkN "mexiletine" "mexiletines" ;
+lin mezereon_N = mkN "mezereon" "mezereons" ;
+lin mezereum_N = mkN "mezereum" "mezereums" ;
+lin mezuzah_N = mkN "mezuzah" "mezuzahs" ;
+lin mezzanine_A = mkAMost "mezzanine" "mezzaninely" ;
+lin mezzanine_N = mkN "mezzanine" "mezzanines" ;
+lin mezzo_Adv = mkAdv "mezzo" ;
+lin mezzo_soprano_N = mkN "mezzo-soprano" "mezzo-sopranos" ;
+lin mezzotint_N = mkN "mezzotint" "mezzotints" ;
+lin mg_N = mkN "mg" "mg" ;
+lin mho_N = mkN "mho" "mhoes" ;
+lin mi_N = mkN "mi" "IRREG" ;
+lin miaou_N = mkN "miaou" "miaous" ;
+lin miaou_V = mkV "miaou" "miaoued" "miaoued" ;
+lin miaow_N = mkN "miaow" "miaows" ;
+lin miaow_V = mkV "miaow" "miaowed" "miaowed" ;
+lin miasma_N = mkN "miasma" "miasmas" ;
+lin miasmal_A = mkAMost "miasmal" "miasmally" ;
+lin miasmic_A = mkAMost "miasmic" "miasmicly" ;
+lin mica_N = mkN "mica" "micas" ;
+lin micaceous_A = mkAMost "micaceous" "micaceously" ;
+lin micelle_N = mkN "micelle" "micelles" ;
+lin michaelmas_N = mkN "michaelmas" "michaelmases" ;
+lin mickey_N = mkN "mickey" "IRREG" ;
+lin mickle_N = mkN "mickle" "IRREG" ;
+lin miconazole_N = mkN "miconazole" "miconazoles" ;
+lin micro_A = mkA "micro" "microer" "microest" "microly" ;
+lin micro_organism_N = mkN "micro-organism" "micro-organisms" ;
+lin microbalance_N = mkN "microbalance" "microbalances" ;
+lin microbe_N = mkN "microbe" "microbes" ;
+lin microbial_A = mkAMost "microbial" "microbially" ;
+lin microbiologist_N = mkN "microbiologist" "microbiologists" ;
+lin microbiology_N = mkN "microbiology" "microbiologies" ;
+lin microbrachia_N = mkN "microbrachia" "microbrachias" ;
+lin microbrewery_N = mkN "microbrewery" "microbreweries" ;
+lin microcephalic_A = mkAMost "microcephalic" "microcephalicly" ;
+lin microcephaly_N = mkN "microcephaly" "microcephalies" ;
+lin microcosm_N = mkN "microcosm" "microcosms" ;
+lin microcosmic_A = mkAMost "microcosmic" "microcosmicly" ;
+lin microcrystalline_A = mkAMost "microcrystalline" "microcrystallinely" ;
+lin microcyte_N = mkN "microcyte" "microcytes" ;
+lin microcytosis_N = mkN "microcytosis" "microcytosises" ;
+lin microdot_N = mkN "microdot" "microdots" ;
+lin microeconomic_A = mkAMost "microeconomic" "microeconomicly" ;
+lin microeconomics_N = mkN "microeconomics" "microeconomicses" ;
+lin microeconomist_N = mkN "microeconomist" "microeconomists" ;
+lin microelectronic_A = mkAMost "microelectronic" "microelectronicly" ;
+lin microelectronics_N = mkN "microelectronics" "microelectronics" ;
+lin microevolution_N = mkN "microevolution" "microevolutions" ;
+lin microfarad_N = mkN "microfarad" "microfarads" ;
+lin microfiche_N = mkN "microfiche" "microfiches" ;
+lin microfilm_N = mkN "microfilm" "microfilms" ;
+lin microfilm_V = mkV "microfilm" "microfilmed" "microfilmed" ;
+lin microflora_N = mkN "microflora" "microfloras" ;
+lin microfossil_N = mkN "microfossil" "microfossils" ;
+lin microgametophyte_N = mkN "microgametophyte" "microgametophytes" ;
+lin microgauss_N = mkN "microgauss" "microgausses" ;
+lin microglia_N = mkN "microglia" "microglias" ;
+lin microgliacyte_N = mkN "microgliacyte" "microgliacytes" ;
+lin microgram_N = mkN "microgram" "micrograms" ;
+lin micrometeoric_A = mkAMost "micrometeoric" "micrometeoricly" ;
+lin micrometeorite_N = mkN "micrometeorite" "micrometeorites" ;
+lin micrometeoritic_A = mkAMost "micrometeoritic" "micrometeoriticly" ;
+lin micrometer_N = mkN "micrometer" "micrometers" ;
+lin micrometry_N = mkN "micrometry" "micrometries" ;
+lin micron_N = mkN "micron" "microns" ;
+lin micronutrient_N = mkN "micronutrient" "micronutrients" ;
+lin microorganism_N = mkN "microorganism" "microorganisms" ;
+lin micropaleontology_N = mkN "micropaleontology" "micropaleontologies" ;
+lin micropenis_N = mkN "micropenis" "micropenises" ;
+lin microphage_N = mkN "microphage" "microphages" ;
+lin microphone_N = mkN "microphone" "microphones" ;
+lin microphoning_N = mkN "microphoning" "microphonings" ;
+lin microphotometer_N = mkN "microphotometer" "microphotometers" ;
+lin microprocessor_N = mkN "microprocessor" "microprocessors" ;
+lin micropylar_A = mkAMost "micropylar" "micropylarly" ;
+lin micropyle_N = mkN "micropyle" "micropyles" ;
+lin microradian_N = mkN "microradian" "microradians" ;
+lin microscope_N = mkN "microscope" "microscopes" ;
+lin microscopic_A = mkAMost "microscopic" "microscopicly" ;
+lin microscopical_A = mkAMost "microscopical" "microscopically" ;
+lin microscopist_N = mkN "microscopist" "microscopists" ;
+lin microscopy_N = mkN "microscopy" "microscopies" ;
+lin microsecond_N = mkN "microsecond" "microseconds" ;
+lin microsomal_A = mkAMost "microsomal" "microsomally" ;
+lin microsome_N = mkN "microsome" "microsomes" ;
+lin microsporangium_N = mkN "microsporangium" "microsporangiums" ;
+lin microspore_N = mkN "microspore" "microspores" ;
+lin microsporidian_N = mkN "microsporidian" "microsporidians" ;
+lin microsporophyll_N = mkN "microsporophyll" "microsporophylls" ;
+lin microsurgery_N = mkN "microsurgery" "microsurgeries" ;
+lin microtome_N = mkN "microtome" "microtomes" ;
+lin microtubule_N = mkN "microtubule" "microtubules" ;
+lin microvolt_N = mkN "microvolt" "microvolts" ;
+lin microwave_N = mkN "microwave" "microwaves" ;
+lin micturition_N = mkN "micturition" "micturitions" ;
+lin mid_A = mkAMost "mid" "midly" ;
+lin mid_Prep = mkPrep "mid" ;
+lin mid_off_N = mkN "mid-off" "mid-offs" ;
+lin mid_on_N = mkN "mid-on" "mid-ons" ;
+lin midafternoon_N = mkN "midafternoon" "midafternoons" ;
+lin midair_N = mkN "midair" "midairs" ;
+lin midazolam_N = mkN "midazolam" "midazolams" ;
+lin midbrain_N = mkN "midbrain" "midbrains" ;
+lin midday_N = mkN "midday" "middays" ;
+lin midden_N = mkN "midden" "middens" ;
+lin middle_A = mkA "middle" "middler" "middlest" "middlely" ;
+lin middle_N = mkN "middle" "middles" ;
+lin middle_aged_A = mkAMost "middle-aged" "middle-agedly" ;
+lin middle_class_A = mkAMost "middle-class" "middle-classly" ;
+lin middle_distance_A = mkAMost "middle-distance" "middle-distancely" ;
+lin middle_of_the_road_A = mkAMost "middle-of-the-road" "middle-of-the-roadly" ;
+lin middlebrow_N = mkN "middlebrow" "middlebrows" ;
+lin middleman_N = mkN "middleman" "middlemen" ;
+lin middlemost_A = mkAMost "middlemost" "middlemostly" ;
+lin middleweight_A = mkAMost "middleweight" "middleweightly" ;
+lin middleweight_N = mkN "middleweight" "middleweights" ;
+lin middling_A = mkAMost "middling" "middlingly" ;
+lin middling_Adv = mkAdv "middling" ;
+lin middling_N = mkN "middling" "middlings" ;
+lin middy_N = mkN "middy" "middies" ;
+lin midfield_N = mkN "midfield" "IRREG" ;
+lin midge_N = mkN "midge" "midges" ;
+lin midget_N = mkN "midget" "midgets" ;
+lin midgrass_N = mkN "midgrass" "midgrasses" ;
+lin midi_A = mkA "midi" "midier" "midiest" "midily" ;
+lin midinette_N = mkN "midinette" "midinettes" ;
+lin midiron_N = mkN "midiron" "midirons" ;
+lin midland_N = mkN "midland" "midlands" ;
+lin midmost_A = mkAMost "midmost" "midmostly" ;
+lin midmost_Adv = mkAdv "midmost" ;
+lin midnight_N = mkN "midnight" "midnights" ;
+lin midplane_N = mkN "midplane" "midplanes" ;
+lin midrib_N = mkN "midrib" "midribs" ;
+lin midriff_N = mkN "midriff" "midriffs" ;
+lin midshipman_N = mkN "midshipman" "midshipmen" ;
+lin midships_Adv = mkAdv "midships" ;
+lin midst_N = mkN "midst" "IRREG" ;
+lin midst_Prep = mkPrep "midst" ;
+lin midstream_N = mkN "midstream" "midstreams" ;
+lin midsummer_N = mkN "midsummer" "midsummers" ;
+lin midterm_N = mkN "midterm" "midterms" ;
+lin midway_A = mkAMost "midway" "midwaily" ;
+lin midway_Adv = mkAdv "midway" ;
+lin midway_N = mkN "midway" "midways" ;
+lin midweek_A = mkAMost "midweek" "midweekly" ;
+lin midweek_Adv = mkAdv "midweek" ;
+lin midweek_N = mkN "midweek" "midweeks" ;
+lin midweekly_A = mkAMost "midweekly" "midweeklily" ;
+lin midwestern_A = mkAMost "midwestern" "midwesternly" ;
+lin midwife_N = mkN "midwife" "midwives" ;
+lin midwifery_N = mkN "midwifery" "midwiferies" ;
+lin midwinter_N = mkN "midwinter" "midwinters" ;
+lin mien_N = mkN "mien" "miens" ;
+lin miff_V = mkV "miff" "miffed" "miffed" ;
+lin might_N = mkN "might" "mights" ;
+lin might_have_been_N = mkN "might-have-been" "might-have-beens" ;
+lin mighty_A = mkA "mighty" "mightier" "mightiest" "mightily" ;
+lin mighty_Adv = mkAdv "mighty" ;
+lin mignonette_N = mkN "mignonette" "mignonettes" ;
+lin migraine_N = mkN "migraine" "migraines" ;
+lin migrant_A = mkAMost "migrant" "migrantly" ;
+lin migrant_N = mkN "migrant" "migrants" ;
+lin migrate_V = mkV "migrate" "migrated" "migrated" ;
+lin migration_N = mkN "migration" "migrations" ;
+lin migrational_A = mkAMost "migrational" "migrationally" ;
+lin migrator_N = mkN "migrator" "migrators" ;
+lin migratory_A = mkAMost "migratory" "migratorily" ;
+lin mihrab_N = mkN "mihrab" "mihrabs" ;
+lin mikado_N = mkN "mikado" "mikados" ;
+lin mike_N = mkN "mike" "mikes" ;
+lin mikvah_N = mkN "mikvah" "mikvahs" ;
+lin mil_N = mkN "mil" "mils" ;
+lin milady_N = mkN "milady" "miladies" ;
+lin milage_N = mkN "milage" "milages" ;
+lin milch_A = mkAMost "milch" "milchly" ;
+lin mild_A = mkA "mild" "milder" "mildest" "mildly" ;
+lin mildew_N = mkN "mildew" "mildews" ;
+lin mildew_V = mkV "mildew" "mildewed" "mildewed" ;
+lin mildness_N = mkN "mildness" "mildnesses" ;
+lin mile_N = mkN "mile" "miles" ;
+lin mileage_N = mkN "mileage" "mileages" ;
+lin mileometer_N = mkN "mileometer" "mileometers" ;
+lin miler_N = mkN "miler" "milers" ;
+lin milestone_N = mkN "milestone" "milestones" ;
+lin milieu_N = mkN "milieu" "milieus" ;
+lin militainment_N = mkN "militainment" "militainments" ;
+lin militancy_N = mkN "militancy" "militancies" ;
+lin militant_A = mkAMost "militant" "militantly" ;
+lin militant_N = mkN "militant" "militants" ;
+lin militarism_N = mkN "militarism" "militarisms" ;
+lin militarist_N = mkN "militarist" "militarists" ;
+lin militaristic_A = mkAMost "militaristic" "militaristicly" ;
+lin militarized_A = mkAMost "militarized" "militarizedly" ;
+lin military_A = mkAMost "military" "militarily" ;
+lin military_N = mkN "military" "militaries" ;
+lin militate_V = mkV "militate" "militated" "militated" ;
+lin militia_N = mkN "militia" "militias" ;
+lin militiaman_N = mkN "militiaman" "militiamen" ;
+lin milk_N = mkN "milk" "milks" ;
+lin milk_V = mkV "milk" "milked" "milked" ;
+lin milk_churn_N = mkN "milk-churn" "milk-churns" ;
+lin milk_powder_N = mkN "milk-powder" "milk-powders" ;
+lin milk_shake_N = mkN "milk-shake" "milk-shakes" ;
+lin milk_tooth_N = mkN "milk-tooth" "milk-teeth" ;
+lin milk_white_A = mkAMost "milk-white" "milk-whitely" ;
+lin milkbar_N = mkN "milkbar" "milkbars" ;
+lin milkcap_N = mkN "milkcap" "milkcaps" ;
+lin milking_machine_N = mkN "milking-machine" "milking-machines" ;
+lin milkless_A = mkAMost "milkless" "milklessly" ;
+lin milkmaid_N = mkN "milkmaid" "milkmaids" ;
+lin milkman_N = mkN "milkman" "milkmen" ;
+lin milkshake_N = mkN "milkshake" "milkshakes" ;
+lin milksop_N = mkN "milksop" "milksops" ;
+lin milkweed_N = mkN "milkweed" "milkweeds" ;
+lin milkwort_N = mkN "milkwort" "milkworts" ;
+lin milky_A = mkA "milky" "milkier" "milkiest" "milkily" ;
+lin mill_N = mkN "mill" "mills" ;
+lin mill_V = mkV "mill" "milled" "milled" ;
+lin mill_dam_N = mkN "mill-dam" "mill-dams" ;
+lin mill_girl_N = mkN "mill-girl" "mill-girls" ;
+lin mill_hand_N = mkN "mill-hand" "mill-hands" ;
+lin millboard_N = mkN "millboard" "millboards" ;
+lin milldam_N = mkN "milldam" "milldams" ;
+lin millenarian_A = mkAMost "millenarian" "millenarianly" ;
+lin millenarian_N = mkN "millenarian" "millenarians" ;
+lin millenarianism_N = mkN "millenarianism" "millenarianisms" ;
+lin millenary_A = mkAMost "millenary" "millenarily" ;
+lin millenary_N = mkN "millenary" "millenaries" ;
+lin millennial_A = mkAMost "millennial" "millennially" ;
+lin millennium_N = mkN "millennium" "millennia" ;
+lin millepede_N = mkN "millepede" "millepedes" ;
+lin miller_N = mkN "miller" "millers" ;
+lin millerite_N = mkN "millerite" "millerites" ;
+lin millet_N = mkN "millet" "millets" ;
+lin millettia_N = mkN "millettia" "millettias" ;
+lin milliammeter_N = mkN "milliammeter" "milliammeters" ;
+lin milliampere_N = mkN "milliampere" "milliamperes" ;
+lin milliard_N = mkN "milliard" "milliards" ;
+lin millibar_N = mkN "millibar" "millibars" ;
+lin millicurie_N = mkN "millicurie" "millicuries" ;
+lin millidegree_N = mkN "millidegree" "millidegrees" ;
+lin milliequivalent_N = mkN "milliequivalent" "milliequivalents" ;
+lin millifarad_N = mkN "millifarad" "millifarads" ;
+lin milligram_N = mkN "milligram" "milligrams" ;
+lin millihenry_N = mkN "millihenry" "millihenries" ;
+lin milliliter_N = mkN "milliliter" "milliliters" ;
+lin millime_N = mkN "millime" "millimes" ;
+lin millimeter_N = mkN "millimeter" "millimeters" ;
+lin millimetre_N = mkN "millimetre" "millimetres" ;
+lin milline_N = mkN "milline" "millines" ;
+lin milliner_N = mkN "milliner" "milliners" ;
+lin millinery_N = mkN "millinery" "millineries" ;
+lin milling_N = mkN "milling" "millings" ;
+lin million_A = mkAMost "million" "millionly" ;
+lin million_N = mkN "million" "millions" ;
+lin millionaire_N = mkN "millionaire" "millionaires" ;
+lin millionairess_N = mkN "millionairess" "millionairesss" ;
+lin millionfold_Adv = mkAdv "millionfold" ;
+lin millionth_A = mkAMost "millionth" "millionthly" ;
+lin millionth_N = mkN "millionth" "millionths" ;
+lin millipede_N = mkN "millipede" "millipedes" ;
+lin milliradian_N = mkN "milliradian" "milliradians" ;
+lin millisecond_N = mkN "millisecond" "milliseconds" ;
+lin millivolt_N = mkN "millivolt" "millivolts" ;
+lin millivoltmeter_N = mkN "millivoltmeter" "millivoltmeters" ;
+lin milliwatt_N = mkN "milliwatt" "milliwatts" ;
+lin millpond_N = mkN "millpond" "millponds" ;
+lin millrace_N = mkN "millrace" "millraces" ;
+lin millstone_N = mkN "millstone" "millstones" ;
+lin millwheel_N = mkN "millwheel" "millwheels" ;
+lin millwork_N = mkN "millwork" "millworks" ;
+lin millwright_N = mkN "millwright" "millwrights" ;
+lin milo_N = mkN "milo" "miloes" ;
+lin milometer_N = mkN "milometer" "milometers" ;
+lin milord_N = mkN "milord" "milords" ;
+lin milt_N = mkN "milt" "milts" ;
+lin mime_N = mkN "mime" "mimes" ;
+lin mime_V = mkV "mime" "mimed" "mimed" ;
+lin mimeograph_N = mkN "mimeograph" "mimeographs" ;
+lin mimeograph_V = mkV "mimeograph" "mimeographed" "mimeographed" ;
+lin mimesis_N = mkN "mimesis" "mimesises" ;
+lin mimetic_A = mkAMost "mimetic" "mimeticly" ;
+lin mimic_A = mkAMost "mimic" "mimicly" ;
+lin mimic_N = mkN "mimic" "mimics" ;
+lin mimic_V = mkV "mimic" "IRREG" "IRREG" ;
+lin mimicry_N = mkN "mimicry" "mimicries" ;
+lin mimosa_N = mkN "mimosa" "mimosas" ;
+lin min_N = mkN "min" "mins" ;
+lin minaret_N = mkN "minaret" "minarets" ;
+lin minatory_A = mkAMost "minatory" "minatorily" ;
+lin mince_N = mkN "mince" "minces" ;
+lin mince_V = mkV "mince" "minced" "minced" ;
+lin mince_pie_N = mkN "mince-pie" "mince-pies" ;
+lin mincemeat_N = mkN "mincemeat" "mincemeats" ;
+lin mincer_N = mkN "mincer" "mincers" ;
+lin mincingly_Adv = mkAdv "mincingly" ;
+lin mind_N = mkN "mind" "minds" ;
+lin mind_V = mkV "mind" "minded" "minded" ;
+lin mind_bending_A = mkAMost "mind-bending" "mind-bendingly" ;
+lin mind_blowing_A = mkAMost "mind-blowing" "mind-blowingly" ;
+lin mind_boggling_A = mkAMost "mind-boggling" "mind-bogglingly" ;
+lin mind_reader_N = mkN "mind-reader" "mind-readers" ;
+lin minder_N = mkN "minder" "minders" ;
+lin mindful_A = mkAMost "mindful" "mindfully" ;
+lin mindfulness_N = mkN "mindfulness" "mindfulnesses" ;
+lin mindless_A = mkAMost "mindless" "mindlessly" ;
+lin mindlessness_N = mkN "mindlessness" "mindlessnesses" ;
+lin mine_A = mkAMost "mine" "minely" ;
+lin mine_N = mkN "mine" "mines" ;
+lin mine_V = mkV "mine" "mined" "mined" ;
+lin mine_detector_N = mkN "mine-detector" "mine-detectors" ;
+lin mine_disposal_N = mkN "mine-disposal" "mine-disposals" ;
+lin minefield_N = mkN "minefield" "minefields" ;
+lin minelayer_N = mkN "minelayer" "minelayers" ;
+lin minelaying_N = mkN "minelaying" "minelayings" ;
+lin miner_N = mkN "miner" "miners" ;
+lin mineral_A = mkAMost "mineral" "minerally" ;
+lin mineral_N = mkN "mineral" "minerals" ;
+lin mineralocorticoid_N = mkN "mineralocorticoid" "mineralocorticoids" ;
+lin mineralogist_N = mkN "mineralogist" "mineralogists" ;
+lin mineralogy_N = mkN "mineralogy" "mineralogies" ;
+lin mineshaft_N = mkN "mineshaft" "mineshafts" ;
+lin minestrone_N = mkN "minestrone" "minestrones" ;
+lin minesweeper_N = mkN "minesweeper" "minesweepers" ;
+lin minesweeping_N = mkN "minesweeping" "minesweepings" ;
+lin mineworker_N = mkN "mineworker" "mineworkers" ;
+lin minge_N = mkN "minge" "minges" ;
+lin mingle_V = mkV "mingle" "mingled" "mingled" ;
+lin mingling_N = mkN "mingling" "minglings" ;
+lin mingy_A = mkA "mingy" "mingier" "mingiest" "mingily" ;
+lin mini_A = mkA "mini" "minier" "miniest" "minily" ;
+lin miniature_A = mkAMost "miniature" "miniaturely" ;
+lin miniature_N = mkN "miniature" "miniatures" ;
+lin miniaturist_N = mkN "miniaturist" "miniaturists" ;
+lin miniaturization_N = mkN "miniaturization" "miniaturizations" ;
+lin miniaturize_V = mkV "miniaturize" "miniaturized" "miniaturized" ;
+lin minibar_N = mkN "minibar" "minibars" ;
+lin minibike_N = mkN "minibike" "minibikes" ;
+lin minibus_N = mkN "minibus" "minibuses" ;
+lin minicab_N = mkN "minicab" "minicabs" ;
+lin minicar_N = mkN "minicar" "minicars" ;
+lin minicomputer_N = mkN "minicomputer" "minicomputers" ;
+lin minim_N = mkN "minim" "minims" ;
+lin minimal_A = mkAMost "minimal" "minimally" ;
+lin minimalism_N = mkN "minimalism" "minimalisms" ;
+lin minimalist_A = mkAMost "minimalist" "minimalistly" ;
+lin minimalist_N = mkN "minimalist" "minimalists" ;
+lin minimization_N = mkN "minimization" "minimizations" ;
+lin minimize_V = mkV "minimize" "minimized" "minimized" ;
+lin minimum_A = mkAMost "minimum" "minimumly" ;
+lin minimum_N = mkN "minimum" "minimums" ;
+lin minimus_N = mkN "minimus" "minimuses" ;
+lin mining_N = mkN "mining" "minings" ;
+lin minion_N = mkN "minion" "minions" ;
+lin miniskirt_N = mkN "miniskirt" "miniskirts" ;
+lin minister_N = mkN "minister" "ministers" ;
+lin minister_V = mkV "minister" "ministered" "ministered" ;
+lin ministerial_A = mkAMost "ministerial" "ministerially" ;
+lin ministrant_A = mkAMost "ministrant" "ministrantly" ;
+lin ministrant_N = mkN "ministrant" "ministrants" ;
+lin ministration_N = mkN "ministration" "ministrations" ;
+lin ministry_N = mkN "ministry" "ministries" ;
+lin minisub_N = mkN "minisub" "minisubs" ;
+lin minivan_N = mkN "minivan" "minivans" ;
+lin miniver_N = mkN "miniver" "minivers" ;
+lin mink_N = mkN "mink" "minks" ;
+lin minniebush_N = mkN "minniebush" "minniebushes" ;
+lin minnow_N = mkN "minnow" "minnows" ;
+lin minocycline_N = mkN "minocycline" "minocyclines" ;
+lin minor_A = mkAMost "minor" "minorly" ;
+lin minor_N = mkN "minor" "minors" ;
+lin minority_N = mkN "minority" "minorities" ;
+lin minotaur_N = mkN "minotaur" "minotaurs" ;
+lin minoxidil_N = mkN "minoxidil" "minoxidils" ;
+lin minster_N = mkN "minster" "minsters" ;
+lin minstrel_N = mkN "minstrel" "minstrels" ;
+lin minstrelsy_N = mkN "minstrelsy" "minstrelsies" ;
+lin mint_N = mkN "mint" "mints" ;
+lin mint_V = mkV "mint" "minted" "minted" ;
+lin mintage_N = mkN "mintage" "mintages" ;
+lin mintmark_N = mkN "mintmark" "mintmarks" ;
+lin minty_A = mkA "minty" "mintier" "mintiest" "mintily" ;
+lin minuend_N = mkN "minuend" "minuends" ;
+lin minuet_N = mkN "minuet" "minuets" ;
+lin minus_A = mkAMost "minus" "minusly" ;
+lin minus_N = mkN "minus" "minuses" ;
+lin minus_Prep = mkPrep "minus" ;
+lin minuscule_A = mkAMost "minuscule" "minusculely" ;
+lin minuscule_N = mkN "minuscule" "minuscules" ;
+lin minute_A = mkA "minute" "minuter" "minutest" "minutely" ;
+lin minute_N = mkN "minute" "minutes" ;
+lin minute_V = mkV "minute" "minuted" "minuted" ;
+lin minute_book_N = mkN "minute-book" "minute-books" ;
+lin minute_gun_N = mkN "minute-gun" "minute-guns" ;
+lin minute_hand_N = mkN "minute-hand" "minute-hands" ;
+lin minuteman_N = mkN "minuteman" "minutemen" ;
+lin minuteness_N = mkN "minuteness" "minutenesses" ;
+lin minutes_N = mkN "minutes" "minuteses" ;
+lin minutia_N = mkN "minutia" "minutias" ;
+lin minx_N = mkN "minx" "minxes" ;
+lin minyan_N = mkN "minyan" "minyans" ;
+lin miotic_A = mkAMost "miotic" "mioticly" ;
+lin miracle_N = mkN "miracle" "miracles" ;
+lin miraculous_A = mkAMost "miraculous" "miraculously" ;
+lin mirage_N = mkN "mirage" "mirages" ;
+lin mire_N = mkN "mire" "mires" ;
+lin mire_V = mkV "mire" "mired" "mired" ;
+lin miro_N = mkN "miro" "miroes" ;
+lin mirror_N = mkN "mirror" "mirrors" ;
+lin mirror_V = mkV "mirror" "mirrored" "mirrored" ;
+lin mirrorlike_A = mkAMost "mirrorlike" "mirrorlikely" ;
+lin mirth_N = mkN "mirth" "mirths" ;
+lin mirthful_A = mkAMost "mirthful" "mirthfully" ;
+lin mirthless_A = mkAMost "mirthless" "mirthlessly" ;
+lin miry_A = mkA "miry" "mirier" "miriest" "mirily" ;
+lin misadventure_N = mkN "misadventure" "misadventures" ;
+lin misadvise_V = mkV "misadvise" "misadvised" "misadvised" ;
+lin misalignment_N = mkN "misalignment" "misalignments" ;
+lin misalliance_N = mkN "misalliance" "misalliances" ;
+lin misanthrope_N = mkN "misanthrope" "misanthropes" ;
+lin misanthropic_A = mkAMost "misanthropic" "misanthropicly" ;
+lin misanthropy_N = mkN "misanthropy" "misanthropies" ;
+lin misapplication_N = mkN "misapplication" "misapplications" ;
+lin misapply_V = mkV "misapply" "misapplied" "misapplied" ;
+lin misapprehend_V = mkV "misapprehend" "misapprehended" "misapprehended" ;
+lin misapprehension_N = mkN "misapprehension" "misapprehensions" ;
+lin misappropriate_V = mkV "misappropriate" "misappropriated" "misappropriated" ;
+lin misappropriation_N = mkN "misappropriation" "misappropriations" ;
+lin misbegotten_A = mkAMost "misbegotten" "misbegottenly" ;
+lin misbehave_V = mkV "misbehave" "misbehaved" "misbehaved" ;
+lin misbehavior_N = mkN "misbehavior" "misbehaviors" ;
+lin misbehaviour_N = mkN "misbehaviour" "misbehaviours" ;
+lin misbranded_A = mkAMost "misbranded" "misbrandedly" ;
+lin miscalculate_V = mkV "miscalculate" "miscalculated" "miscalculated" ;
+lin miscalculation_N = mkN "miscalculation" "miscalculations" ;
+lin miscall_V = mkV "miscall" "miscalled" "miscalled" ;
+lin miscarriage_N = mkN "miscarriage" "miscarriages" ;
+lin miscarry_V = mkV "miscarry" "miscarried" "miscarried" ;
+lin miscast_V = mkV "miscast" "miscast" "miscast" ;
+lin miscegenation_N = mkN "miscegenation" "miscegenations" ;
+lin miscellaneous_A = mkAMost "miscellaneous" "miscellaneously" ;
+lin miscellany_N = mkN "miscellany" "miscellanies" ;
+lin mischance_N = mkN "mischance" "mischances" ;
+lin mischief_N = mkN "mischief" "mischiefs" ;
+lin mischief_maker_N = mkN "mischief-maker" "mischief-makers" ;
+lin mischief_making_N = mkN "mischief-making" "mischief-makings" ;
+lin mischievous_A = mkAMost "mischievous" "mischievously" ;
+lin mischievousness_N = mkN "mischievousness" "mischievousnesses" ;
+lin miscible_A = mkAMost "miscible" "miscibly" ;
+lin misconceive_V = mkV "misconceive" "misconceived" "misconceived" ;
+lin misconception_N = mkN "misconception" "misconceptions" ;
+lin misconduct_N = mkN "misconduct" "misconducts" ;
+lin misconduct_V = mkV "misconduct" "misconducted" "misconducted" ;
+lin misconstrual_N = mkN "misconstrual" "misconstruals" ;
+lin misconstruction_N = mkN "misconstruction" "misconstructions" ;
+lin misconstrue_V = mkV "misconstrue" "misconstrued" "misconstrued" ;
+lin miscount_N = mkN "miscount" "miscounts" ;
+lin miscount_V = mkV "miscount" "miscounted" "miscounted" ;
+lin miscreant_N = mkN "miscreant" "miscreants" ;
+lin miscue_N = mkN "miscue" "miscues" ;
+lin misdate_V = mkV "misdate" "misdated" "misdated" ;
+lin misdeal_N = mkN "misdeal" "misdeals" ;
+lin misdeal_V = mkV "misdeal" "misdealt" "misdealt" ;
+lin misdeed_N = mkN "misdeed" "misdeeds" ;
+lin misdemeanor_N = mkN "misdemeanor" "misdemeanors" ;
+lin misdemeanour_N = mkN "misdemeanour" "misdemeanours" ;
+lin misdirect_V = mkV "misdirect" "misdirected" "misdirected" ;
+lin misdirection_N = mkN "misdirection" "misdirections" ;
+lin misdoing_N = mkN "misdoing" "misdoings" ;
+lin mise_en_scène_N = mkN "mise en scène" "mise en scènes" ;
+lin miser_N = mkN "miser" "misers" ;
+lin miserable_A = mkAMost "miserable" "miserably" ;
+lin miserliness_N = mkN "miserliness" "miserlinesses" ;
+lin miserly_A = mkAMost "miserly" "miserlily" ;
+lin misery_N = mkN "misery" "miseries" ;
+lin misfeasance_N = mkN "misfeasance" "misfeasances" ;
+lin misfire_N = mkN "misfire" "misfires" ;
+lin misfire_V = mkV "misfire" "misfired" "misfired" ;
+lin misfit_N = mkN "misfit" "misfits" ;
+lin misfortune_N = mkN "misfortune" "misfortunes" ;
+lin misgive_V = mkV "misgive" "misgave" "misgiven" ;
+lin misgiving_N = mkN "misgiving" "misgivings" ;
+lin misgovern_V = mkV "misgovern" "misgoverned" "misgoverned" ;
+lin misgovernment_N = mkN "misgovernment" "misgovernments" ;
+lin misguide_V = mkV "misguide" "misguided" "misguided" ;
+lin mishandle_V = mkV "mishandle" "mishandled" "mishandled" ;
+lin mishap_N = mkN "mishap" "mishaps" ;
+lin mishmash_N = mkN "mishmash" "mishmashes" ;
+lin mishpocha_N = mkN "mishpocha" "mishpochas" ;
+lin misinform_V = mkV "misinform" "misinformed" "misinformed" ;
+lin misinformation_N = mkN "misinformation" "misinformations" ;
+lin misinterpret_V = mkV "misinterpret" "misinterpreted" "misinterpreted" ;
+lin misinterpretation_N = mkN "misinterpretation" "misinterpretations" ;
+lin misjudge_V = mkV "misjudge" "misjudged" "misjudged" ;
+lin mislaid_A = mkAMost "mislaid" "mislaidly" ;
+lin mislay_V = mkV "mislay" "mislew" "mislain" ;
+lin mislead_V = mkV "mislead" "misled" "misled" ;
+lin misleader_N = mkN "misleader" "misleaders" ;
+lin mismanage_V = mkV "mismanage" "mismanaged" "mismanaged" ;
+lin mismanagement_N = mkN "mismanagement" "mismanagements" ;
+lin mismatch_N = mkN "mismatch" "mismatches" ;
+lin mismatched_A = mkAMost "mismatched" "mismatchedly" ;
+lin misname_V = mkV "misname" "misnamed" "misnamed" ;
+lin misnomer_N = mkN "misnomer" "misnomers" ;
+lin miso_N = mkN "miso" "misoes" ;
+lin misocainea_N = mkN "misocainea" "misocaineas" ;
+lin misogamist_N = mkN "misogamist" "misogamists" ;
+lin misogamy_N = mkN "misogamy" "misogamies" ;
+lin misogynic_A = mkAMost "misogynic" "misogynicly" ;
+lin misogynist_N = mkN "misogynist" "misogynists" ;
+lin misogynous_A = mkAMost "misogynous" "misogynously" ;
+lin misogyny_N = mkN "misogyny" "misogynies" ;
+lin misology_N = mkN "misology" "misologies" ;
+lin misoneism_N = mkN "misoneism" "misoneisms" ;
+lin misopedia_N = mkN "misopedia" "misopedias" ;
+lin misplace_V = mkV "misplace" "misplaced" "misplaced" ;
+lin misprint_N = mkN "misprint" "misprints" ;
+lin misprint_V = mkV "misprint" "misprinted" "misprinted" ;
+lin mispronounce_V = mkV "mispronounce" "mispronounced" "mispronounced" ;
+lin mispronunciation_N = mkN "mispronunciation" "mispronunciations" ;
+lin misquotation_N = mkN "misquotation" "misquotations" ;
+lin misquote_V = mkV "misquote" "misquoted" "misquoted" ;
+lin misread_V = mkV "misread" "misread" "misread" ;
+lin misreading_N = mkN "misreading" "misreadings" ;
+lin misrelated_A = mkAMost "misrelated" "misrelatedly" ;
+lin misrepresent_V = mkV "misrepresent" "misrepresented" "misrepresented" ;
+lin misrepresentation_N = mkN "misrepresentation" "misrepresentations" ;
+lin misrule_N = mkN "misrule" "misrules" ;
+lin miss_N = mkN "miss" "misses" ;
+lin miss_V = mkV "miss" "missed" "missed" ;
+lin missal_N = mkN "missal" "missals" ;
+lin misshapen_A = mkAMost "misshapen" "misshapenly" ;
+lin missile_N = mkN "missile" "missiles" ;
+lin mission_N = mkN "mission" "missions" ;
+lin missionary_A = mkAMost "missionary" "missionarily" ;
+lin missionary_N = mkN "missionary" "missionaries" ;
+lin missis_N = mkN "missis" "misses" ;
+lin missive_N = mkN "missive" "missives" ;
+lin misspell_V = mkV "misspell" "misspelled" "misspelled" ;
+lin misspelling_N = mkN "misspelling" "misspellings" ;
+lin misspend_V = mkV "misspend" "misspent" "misspent" ;
+lin misstate_V = mkV "misstate" "misstated" "misstated" ;
+lin misstatement_N = mkN "misstatement" "misstatements" ;
+lin missus_N = mkN "missus" "missi" ;
+lin missy_N = mkN "missy" "missies" ;
+lin mist_N = mkN "mist" "mists" ;
+lin mist_V = mkV "mist" "misted" "misted" ;
+lin mistake_N = mkN "mistake" "mistakes" ;
+lin mistake_V = mkV "mistake" "mistook" "mistaken" ;
+lin mistaken_A = mkAMost "mistaken" "mistakenly" ;
+lin mister_N = mkN "mister" "misters" ;
+lin mistflower_N = mkN "mistflower" "mistflowers" ;
+lin mistime_V = mkV "mistime" "mistimed" "mistimed" ;
+lin mistiness_N = mkN "mistiness" "mistinesses" ;
+lin mistletoe_N = mkN "mistletoe" "mistletoes" ;
+lin mistral_N = mkN "mistral" "mistrals" ;
+lin mistranslate_V = mkV "mistranslate" "mistranslated" "mistranslated" ;
+lin mistranslation_N = mkN "mistranslation" "mistranslations" ;
+lin mistreat_V = mkV "mistreat" "mistreated" "mistreated" ;
+lin mistreatment_N = mkN "mistreatment" "mistreatments" ;
+lin mistress_N = mkN "mistress" "mistresses" ;
+lin mistrial_N = mkN "mistrial" "mistrials" ;
+lin mistrust_N = mkN "mistrust" "mistrusts" ;
+lin mistrust_V = mkV "mistrust" "mistrusted" "mistrusted" ;
+lin mistrustful_A = mkAMost "mistrustful" "mistrustfully" ;
+lin misty_A = mkA "misty" "mistier" "mistiest" "mistily" ;
+lin misunderstand_V = mkV "misunderstand" "misunderstood" "misunderstood" ;
+lin misunderstanding_N = mkN "misunderstanding" "misunderstandings" ;
+lin misuse_N = mkN "misuse" "misuses" ;
+lin misuse_V = mkV "misuse" "misused" "misused" ;
+lin mite_N = mkN "mite" "mites" ;
+lin miter_N = mkN "miter" "miters" ;
+lin miterwort_N = mkN "miterwort" "miterworts" ;
+lin mithraic_A = mkAMost "mithraic" "mithraicly" ;
+lin mithramycin_N = mkN "mithramycin" "mithramycins" ;
+lin mitigable_A = mkAMost "mitigable" "mitigably" ;
+lin mitigate_V = mkV "mitigate" "mitigated" "mitigated" ;
+lin mitigation_N = mkN "mitigation" "mitigations" ;
+lin mitochondrion_N = mkN "mitochondrion" "mitochondrions" ;
+lin mitogen_N = mkN "mitogen" "mitogens" ;
+lin mitomycin_N = mkN "mitomycin" "mitomycins" ;
+lin mitosis_N = mkN "mitosis" "mitosises" ;
+lin mitotic_A = mkAMost "mitotic" "mitoticly" ;
+lin mitral_A = mkAMost "mitral" "mitrally" ;
+lin mitre_N = mkN "mitre" "mitres" ;
+lin mitre_joint_N = mkN "mitre-joint" "mitre-joints" ;
+lin mitt_N = mkN "mitt" "mitts" ;
+lin mittelschmerz_N = mkN "mittelschmerz" "mittelschmerzes" ;
+lin mitten_N = mkN "mitten" "mittens" ;
+lin mitzvah_N = mkN "mitzvah" "mitzvahs" ;
+lin mix_N = mkN "mix" "mixes" ;
+lin mix_V = mkV "mix" "mixed" "mixed" ;
+lin mix_up_N = mkN "mix-up" "mix-ups" ;
+lin mixed_up_A = mkAMost "mixed-up" "mixed-uply" ;
+lin mixer_N = mkN "mixer" "mixers" ;
+lin mixology_N = mkN "mixology" "mixologies" ;
+lin mixture_N = mkN "mixture" "mixtures" ;
+lin mizen_N = mkN "mizen" "mizens" ;
+lin mizzen_N = mkN "mizzen" "mizzens" ;
+lin mizzen_mast_N = mkN "mizzen-mast" "mizzen-masts" ;
+lin mizzenmast_N = mkN "mizzenmast" "mizzenmasts" ;
+lin mizzle_V = mkV "mizzle" "mizzled" "mizzled" ;
+lin ml_N = mkN "ml" "ml" ;
+lin mm_N = mkN "mm" "mm" ;
+lin mnemonic_A = mkAMost "mnemonic" "mnemonicly" ;
+lin mnemonic_N = mkN "mnemonic" "mnemonics" ;
+lin mnemonics_N = mkN "mnemonics" "mnemonics" ;
+lin mnemonist_N = mkN "mnemonist" "mnemonists" ;
+lin mo_N = mkN "mo" "mi" ;
+lin moa_N = mkN "moa" "moas" ;
+lin moan_N = mkN "moan" "moans" ;
+lin moan_V = mkV "moan" "moaned" "moaned" ;
+lin moat_N = mkN "moat" "moats" ;
+lin moated_A = mkAMost "moated" "moatedly" ;
+lin mob_N = mkN "mob" "mobs" ;
+lin mob_V = mkV "mob" "mobbed" "mobbed" ;
+lin mobbish_A = mkAMost "mobbish" "mobbishly" ;
+lin mobcap_N = mkN "mobcap" "mobcaps" ;
+lin mobile_A = mkAMost "mobile" "mobilely" ;
+lin mobile_N = mkN "mobile" "mobiles" ;
+lin mobilisation_N = mkN "mobilisation" "mobilisations" ;
+lin mobility_N = mkN "mobility" "mobilities" ;
+lin mobilization_N = mkN "mobilization" "mobilizations" ;
+lin mobilize_V = mkV "mobilize" "mobilized" "mobilized" ;
+lin mobocracy_N = mkN "mobocracy" "mobocracies" ;
+lin mobster_N = mkN "mobster" "mobsters" ;
+lin moccasin_N = mkN "moccasin" "moccasins" ;
+lin mocha_N = mkN "mocha" "mochas" ;
+lin mock_A = mkAMost "mock" "mockly" ;
+lin mock_N = mkN "mock" "mocks" ;
+lin mock_V = mkV "mock" "mocked" "mocked" ;
+lin mock_up_N = mkN "mock-up" "mock-ups" ;
+lin mocker_N = mkN "mocker" "mockers" ;
+lin mockernut_N = mkN "mockernut" "mockernuts" ;
+lin mockery_N = mkN "mockery" "mockeries" ;
+lin mockingbird_N = mkN "mockingbird" "mockingbirds" ;
+lin mockingly_Adv = mkAdv "mockingly" ;
+lin mod_A = mkAMost "mod" "modly" ;
+lin mod_N = mkN "mod" "mods" ;
+lin mod_con_N = mkN "mod con" "mod cons" ;
+lin modal_A = mkAMost "modal" "modally" ;
+lin modality_N = mkN "modality" "modalities" ;
+lin mode_N = mkN "mode" "modes" ;
+lin model_N = mkN "model" "models" ;
+lin model_modeled_V = mkV "model" "modeled" "modeled" ;
+lin model_modelled_V = mkV "model" "modelled" "modelled" ;
+lin modeler_N = mkN "modeler" "modelers" ;
+lin modeling_N = mkN "modeling" "modelings" ;
+lin modeller_N = mkN "modeller" "modellers" ;
+lin modelling_N = mkN "modelling" "modellings" ;
+lin modem_N = mkN "modem" "modems" ;
+lin moderate_A = mkAMost "moderate" "moderately" ;
+lin moderate_N = mkN "moderate" "moderates" ;
+lin moderate_V = mkV "moderate" "moderated" "moderated" ;
+lin moderation_N = mkN "moderation" "moderations" ;
+lin moderationism_N = mkN "moderationism" "moderationisms" ;
+lin moderationist_N = mkN "moderationist" "moderationists" ;
+lin moderato_A = mkAMost "moderato" "moderatoly" ;
+lin moderator_N = mkN "moderator" "moderators" ;
+lin moderatorship_N = mkN "moderatorship" "moderatorships" ;
+lin modern_A = mkAMost "modern" "modernly" ;
+lin modern_N = mkN "modern" "moderns" ;
+lin moderne_A = mkAMost "moderne" "modernely" ;
+lin modernisation_N = mkN "modernisation" "modernisations" ;
+lin modernism_N = mkN "modernism" "modernisms" ;
+lin modernist_N = mkN "modernist" "modernists" ;
+lin modernistic_A = mkAMost "modernistic" "modernisticly" ;
+lin modernity_N = mkN "modernity" "modernities" ;
+lin modernization_N = mkN "modernization" "modernizations" ;
+lin modernize_V = mkV "modernize" "modernized" "modernized" ;
+lin modest_A = mkAMost "modest" "modestly" ;
+lin modesty_N = mkN "modesty" "modesties" ;
+lin modicum_N = mkN "modicum" "modica" ;
+lin modifiable_A = mkAMost "modifiable" "modifiably" ;
+lin modification_N = mkN "modification" "modifications" ;
+lin modifier_N = mkN "modifier" "modifiers" ;
+lin modify_V = mkV "modify" "modified" "modified" ;
+lin modillion_N = mkN "modillion" "modillions" ;
+lin modiolus_N = mkN "modiolus" "modioluses" ;
+lin modish_A = mkAMost "modish" "modishly" ;
+lin modiste_N = mkN "modiste" "modistes" ;
+lin mods_N = mkN "mods" "modses" ;
+lin modular_A = mkAMost "modular" "modularly" ;
+lin modulate_V = mkV "modulate" "modulated" "modulated" ;
+lin modulation_N = mkN "modulation" "modulations" ;
+lin module_N = mkN "module" "modules" ;
+lin modulo_Prep = mkPrep "modulo" ;
+lin modulus_N = mkN "modulus" "moduluses" ;
+lin modus_operandi_N = mkN "modus operandi" "IRREG" ;
+lin modus_vivendi_N = mkN "modus vivendi" "IRREG" ;
+lin moggy_V = mkV "moggy" "moggied" "moggied" ;
+lin mogul_N = mkN "mogul" "moguls" ;
+lin mohair_N = mkN "mohair" "mohairs" ;
+lin mohammedan_N = mkN "mohammedan" "mohammedans" ;
+lin mohawk_N = mkN "mohawk" "mohawks" ;
+lin moiety_N = mkN "moiety" "moieties" ;
+lin moil_V = mkV "moil" "moiled" "moiled" ;
+lin moire_A = mkA "moire" "moirer" "moirest" "moirely" ;
+lin moire_N = mkN "moire" "moires" ;
+lin moist_A = mkAMost "moist" "moistly" ;
+lin moisten_V = mkV "moisten" "moistened" "moistened" ;
+lin moistening_N = mkN "moistening" "moistenings" ;
+lin moisture_N = mkN "moisture" "moistures" ;
+lin mojarra_N = mkN "mojarra" "mojarras" ;
+lin mojo_N = mkN "mojo" "mojoes" ;
+lin moke_N = mkN "moke" "mokes" ;
+lin moksa_N = mkN "moksa" "moksas" ;
+lin molal_A = mkAMost "molal" "molally" ;
+lin molality_N = mkN "molality" "molalities" ;
+lin molar_A = mkAMost "molar" "molarly" ;
+lin molar_N = mkN "molar" "molars" ;
+lin molarity_N = mkN "molarity" "molarities" ;
+lin molasses_N = mkN "molasses" "molasseses" ;
+lin mold_N = mkN "mold" "molds" ;
+lin mold_V = mkV "mold" "molded" "molded" ;
+lin moldboard_N = mkN "moldboard" "moldboards" ;
+lin molding_N = mkN "molding" "moldings" ;
+lin moldy_A = mkA "moldy" "moldier" "moldiest" "moldily" ;
+lin mole_N = mkN "mole" "moles" ;
+lin molecular_A = mkAMost "molecular" "molecularly" ;
+lin molecule_N = mkN "molecule" "molecules" ;
+lin molehill_N = mkN "molehill" "molehills" ;
+lin moleskin_N = mkN "moleskin" "moleskins" ;
+lin molest_V = mkV "molest" "molested" "molested" ;
+lin molestation_N = mkN "molestation" "molestations" ;
+lin molester_N = mkN "molester" "molesters" ;
+lin molindone_N = mkN "molindone" "molindones" ;
+lin moll_N = mkN "moll" "molls" ;
+lin mollie_N = mkN "mollie" "mollies" ;
+lin mollification_N = mkN "mollification" "mollifications" ;
+lin mollify_V = mkV "mollify" "mollified" "mollified" ;
+lin mollusc_N = mkN "mollusc" "molluscs" ;
+lin molluscum_N = mkN "molluscum" "molluscums" ;
+lin mollusk_N = mkN "mollusk" "mollusks" ;
+lin mollycoddle_N = mkN "mollycoddle" "mollycoddles" ;
+lin mollycoddle_V = mkV "mollycoddle" "mollycoddled" "mollycoddled" ;
+lin moloch_N = mkN "moloch" "moloches" ;
+lin molt_N = mkN "molt" "molts" ;
+lin molten_A = mkAMost "molten" "moltenly" ;
+lin molter_N = mkN "molter" "molters" ;
+lin molto_Adv = mkAdv "molto" ;
+lin molybdenite_N = mkN "molybdenite" "molybdenites" ;
+lin molybdenum_N = mkN "molybdenum" "molybdenums" ;
+lin mombin_N = mkN "mombin" "mombins" ;
+lin moment_N = mkN "moment" "moments" ;
+lin momentary_A = mkAMost "momentary" "momentarily" ;
+lin momentous_A = mkAMost "momentous" "momentously" ;
+lin momentousness_N = mkN "momentousness" "momentousnesses" ;
+lin momentum_N = mkN "momentum" "momentums" ;
+lin momism_N = mkN "momism" "momisms" ;
+lin monad_N = mkN "monad" "monads" ;
+lin monal_N = mkN "monal" "monals" ;
+lin monandrous_A = mkAMost "monandrous" "monandrously" ;
+lin monandry_N = mkN "monandry" "monandries" ;
+lin monarch_N = mkN "monarch" "monarchs" ;
+lin monarchal_A = mkAMost "monarchal" "monarchally" ;
+lin monarchic_A = mkAMost "monarchic" "monarchicly" ;
+lin monarchism_N = mkN "monarchism" "monarchisms" ;
+lin monarchist_N = mkN "monarchist" "monarchists" ;
+lin monarchy_N = mkN "monarchy" "monarchies" ;
+lin monarda_N = mkN "monarda" "monardas" ;
+lin monastery_N = mkN "monastery" "monasteries" ;
+lin monastic_A = mkAMost "monastic" "monasticly" ;
+lin monasticism_N = mkN "monasticism" "monasticisms" ;
+lin monatomic_A = mkAMost "monatomic" "monatomicly" ;
+lin monaural_A = mkAMost "monaural" "monaurally" ;
+lin monazite_N = mkN "monazite" "monazites" ;
+lin monegasque_A = mkAMost "monegasque" "monegasquely" ;
+lin monegasque_N = mkN "monegasque" "monegasques" ;
+lin moneran_A = mkAMost "moneran" "moneranly" ;
+lin moneran_N = mkN "moneran" "monerans" ;
+lin monestrous_A = mkAMost "monestrous" "monestrously" ;
+lin monetarism_N = mkN "monetarism" "monetarisms" ;
+lin monetarist_N = mkN "monetarist" "monetarists" ;
+lin monetary_A = mkAMost "monetary" "monetarily" ;
+lin monetization_N = mkN "monetization" "monetizations" ;
+lin monetize_V = mkV "monetize" "monetized" "monetized" ;
+lin money_N = mkN "money" "moneys" ;
+lin money_grubber_N = mkN "money-grubber" "money-grubbers" ;
+lin money_order_N = mkN "money-order" "money-orders" ;
+lin money_spinner_N = mkN "money-spinner" "money-spinners" ;
+lin moneybag_N = mkN "moneybag" "moneybags" ;
+lin moneybox_N = mkN "moneybox" "moneyboxes" ;
+lin moneychanger_N = mkN "moneychanger" "moneychangers" ;
+lin moneyed_A = mkAMost "moneyed" "moneyedly" ;
+lin moneygrubber_N = mkN "moneygrubber" "moneygrubbers" ;
+lin moneylender_N = mkN "moneylender" "moneylenders" ;
+lin moneyless_A = mkAMost "moneyless" "moneylessly" ;
+lin moneymaker_N = mkN "moneymaker" "moneymakers" ;
+lin moneymaking_N = mkN "moneymaking" "moneymakings" ;
+lin moneywort_N = mkN "moneywort" "moneyworts" ;
+lin monger_N = mkN "monger" "mongers" ;
+lin mongo_N = mkN "mongo" "mongoes" ;
+lin mongol_A = mkAMost "mongol" "mongolly" ;
+lin mongol_N = mkN "mongol" "mongols" ;
+lin mongolian_A = mkAMost "mongolian" "mongolianly" ;
+lin mongolian_N = mkN "mongolian" "mongolians" ;
+lin mongolism_N = mkN "mongolism" "mongolisms" ;
+lin mongoloid_A = mkAMost "mongoloid" "mongoloidly" ;
+lin mongoloid_N = mkN "mongoloid" "mongoloids" ;
+lin mongoose_N = mkN "mongoose" "mongooses" ;
+lin mongrel_A = mkAMost "mongrel" "mongrelly" ;
+lin mongrel_N = mkN "mongrel" "mongrels" ;
+lin monilia_N = mkN "monilia" "monilias" ;
+lin monism_N = mkN "monism" "monisms" ;
+lin monistic_A = mkAMost "monistic" "monisticly" ;
+lin monition_N = mkN "monition" "monitions" ;
+lin monitor_N = mkN "monitor" "monitors" ;
+lin monitor_V = mkV "monitor" "monitored" "monitored" ;
+lin monitoring_N = mkN "monitoring" "monitorings" ;
+lin monk_N = mkN "monk" "monks" ;
+lin monkey_N = mkN "monkey" "monkeys" ;
+lin monkey_V = mkV "monkey" "monkeyed" "monkeyed" ;
+lin monkey_jacket_N = mkN "monkey-jacket" "monkey-jackets" ;
+lin monkey_nut_N = mkN "monkey-nut" "monkey-nuts" ;
+lin monkey_puzzle_N = mkN "monkey-puzzle" "monkey-puzzles" ;
+lin monkey_wrench_N = mkN "monkey-wrench" "monkey-wrenches" ;
+lin monkfish_N = mkN "monkfish" "monkfishes" ;
+lin monkish_A = mkAMost "monkish" "monkishly" ;
+lin monkshood_N = mkN "monkshood" "monkshoods" ;
+lin mono_A = mkAMost "mono" "monoly" ;
+lin monoamine_N = mkN "monoamine" "monoamines" ;
+lin monoblast_N = mkN "monoblast" "monoblasts" ;
+lin monocarboxylic_A = mkAMost "monocarboxylic" "monocarboxylicly" ;
+lin monocarp_N = mkN "monocarp" "monocarps" ;
+lin monocarpic_A = mkAMost "monocarpic" "monocarpicly" ;
+lin monochromacy_N = mkN "monochromacy" "monochromacies" ;
+lin monochromat_N = mkN "monochromat" "monochromats" ;
+lin monochromatic_A = mkAMost "monochromatic" "monochromaticly" ;
+lin monochrome_A = mkAMost "monochrome" "monochromely" ;
+lin monochrome_N = mkN "monochrome" "monochromes" ;
+lin monocle_N = mkN "monocle" "monocles" ;
+lin monocled_A = mkAMost "monocled" "monocledly" ;
+lin monoclinal_A = mkAMost "monoclinal" "monoclinally" ;
+lin monocline_N = mkN "monocline" "monoclines" ;
+lin monoclinic_A = mkAMost "monoclinic" "monoclinicly" ;
+lin monoclinous_A = mkAMost "monoclinous" "monoclinously" ;
+lin monoclonal_A = mkAMost "monoclonal" "monoclonally" ;
+lin monocot_N = mkN "monocot" "monocots" ;
+lin monocotyledonous_A = mkAMost "monocotyledonous" "monocotyledonously" ;
+lin monoculture_N = mkN "monoculture" "monocultures" ;
+lin monocyte_N = mkN "monocyte" "monocytes" ;
+lin monocytosis_N = mkN "monocytosis" "monocytosises" ;
+lin monodic_A = mkAMost "monodic" "monodicly" ;
+lin monoecious_A = mkAMost "monoecious" "monoeciously" ;
+lin monogamist_N = mkN "monogamist" "monogamists" ;
+lin monogamous_A = mkAMost "monogamous" "monogamously" ;
+lin monogamy_N = mkN "monogamy" "monogamies" ;
+lin monogenesis_N = mkN "monogenesis" "monogenesises" ;
+lin monogenic_A = mkAMost "monogenic" "monogenicly" ;
+lin monogram_N = mkN "monogram" "monograms" ;
+lin monograph_N = mkN "monograph" "monographs" ;
+lin monogynous_A = mkAMost "monogynous" "monogynously" ;
+lin monogyny_N = mkN "monogyny" "monogynies" ;
+lin monohybrid_N = mkN "monohybrid" "monohybrids" ;
+lin monohydrate_N = mkN "monohydrate" "monohydrates" ;
+lin monolatry_N = mkN "monolatry" "monolatries" ;
+lin monolingual_A = mkAMost "monolingual" "monolingually" ;
+lin monolingual_N = mkN "monolingual" "monolinguals" ;
+lin monolith_N = mkN "monolith" "monoliths" ;
+lin monolithic_A = mkAMost "monolithic" "monolithicly" ;
+lin monologist_N = mkN "monologist" "monologists" ;
+lin monologue_N = mkN "monologue" "monologues" ;
+lin monomania_N = mkN "monomania" "monomanias" ;
+lin monomaniac_N = mkN "monomaniac" "monomaniacs" ;
+lin monomaniacal_A = mkAMost "monomaniacal" "monomaniacally" ;
+lin monomer_N = mkN "monomer" "monomers" ;
+lin monometallic_A = mkAMost "monometallic" "monometallicly" ;
+lin monomorphemic_A = mkAMost "monomorphemic" "monomorphemicly" ;
+lin mononeuropathy_N = mkN "mononeuropathy" "mononeuropathies" ;
+lin mononuclear_A = mkAMost "mononuclear" "mononuclearly" ;
+lin monophonic_A = mkAMost "monophonic" "monophonicly" ;
+lin monophony_N = mkN "monophony" "monophonies" ;
+lin monoplane_N = mkN "monoplane" "monoplanes" ;
+lin monoplegia_N = mkN "monoplegia" "monoplegias" ;
+lin monopolist_N = mkN "monopolist" "monopolists" ;
+lin monopolistic_A = mkAMost "monopolistic" "monopolisticly" ;
+lin monopolization_N = mkN "monopolization" "monopolizations" ;
+lin monopolize_V = mkV "monopolize" "monopolized" "monopolized" ;
+lin monopoly_N = mkN "monopoly" "monopolies" ;
+lin monopsony_N = mkN "monopsony" "monopsonies" ;
+lin monopteral_A = mkAMost "monopteral" "monopterally" ;
+lin monorail_N = mkN "monorail" "monorails" ;
+lin monorchism_N = mkN "monorchism" "monorchisms" ;
+lin monosaccharide_N = mkN "monosaccharide" "monosaccharides" ;
+lin monosemous_A = mkAMost "monosemous" "monosemously" ;
+lin monosemy_N = mkN "monosemy" "monosemies" ;
+lin monosomy_N = mkN "monosomy" "monosomies" ;
+lin monosyllabic_A = mkAMost "monosyllabic" "monosyllabicly" ;
+lin monosyllabically_Adv = mkAdv "monosyllabically" ;
+lin monosyllable_N = mkN "monosyllable" "monosyllables" ;
+lin monotheism_N = mkN "monotheism" "monotheisms" ;
+lin monotheist_N = mkN "monotheist" "monotheists" ;
+lin monotheistic_A = mkAMost "monotheistic" "monotheisticly" ;
+lin monotone_N = mkN "monotone" "monotones" ;
+lin monotonic_A = mkAMost "monotonic" "monotonicly" ;
+lin monotonous_A = mkAMost "monotonous" "monotonously" ;
+lin monotony_N = mkN "monotony" "monotonies" ;
+lin monotreme_N = mkN "monotreme" "monotremes" ;
+lin monotype_N = mkN "monotype" "monotypes" ;
+lin monotypic_A = mkAMost "monotypic" "monotypicly" ;
+lin monounsaturated_A = mkAMost "monounsaturated" "monounsaturatedly" ;
+lin monovalent_A = mkAMost "monovalent" "monovalently" ;
+lin monoxide_N = mkN "monoxide" "monoxides" ;
+lin monozygotic_A = mkAMost "monozygotic" "monozygoticly" ;
+lin mons_N = mkN "mons" "monses" ;
+lin monsieur_N = mkN "monsieur" "IRREG" ;
+lin monsignor_N = mkN "monsignor" "monsignors" ;
+lin monsoon_N = mkN "monsoon" "monsoons" ;
+lin monster_N = mkN "monster" "monsters" ;
+lin monstera_N = mkN "monstera" "monsteras" ;
+lin monstrance_N = mkN "monstrance" "monstrances" ;
+lin monstrosity_N = mkN "monstrosity" "monstrosities" ;
+lin monstrous_A = mkAMost "monstrous" "monstrously" ;
+lin montage_N = mkN "montage" "montages" ;
+lin montane_A = mkAMost "montane" "montanely" ;
+lin monte_N = mkN "monte" "montes" ;
+lin month_N = mkN "month" "months" ;
+lin monthlong_A = mkAMost "monthlong" "monthlongly" ;
+lin monthly_A = mkAMost "monthly" "monthlily" ;
+lin monthly_Adv = mkAdv "monthly" ;
+lin monthly_N = mkN "monthly" "monthlies" ;
+lin montserratian_A = mkAMost "montserratian" "montserratianly" ;
+lin montserratian_N = mkN "montserratian" "montserratians" ;
+lin monument_N = mkN "monument" "monuments" ;
+lin monumental_A = mkAMost "monumental" "monumentally" ;
+lin moo_N = mkN "moo" "moos" ;
+lin moo_V = mkV "moo" "mooed" "mooed" ;
+lin moo_cow_N = mkN "moo-cow" "moo-cows" ;
+lin mooch_V = mkV "mooch" "mooched" "mooched" ;
+lin moocher_N = mkN "moocher" "moochers" ;
+lin mood_N = mkN "mood" "moods" ;
+lin moodiness_N = mkN "moodiness" "moodinesses" ;
+lin moody_A = mkA "moody" "moodier" "moodiest" "moodily" ;
+lin moon_N = mkN "moon" "moons" ;
+lin moon_V = mkV "moon" "mooned" "mooned" ;
+lin moonbeam_N = mkN "moonbeam" "moonbeams" ;
+lin moonfish_N = mkN "moonfish" "moonfishes" ;
+lin moonflower_N = mkN "moonflower" "moonflowers" ;
+lin moonless_A = mkAMost "moonless" "moonlessly" ;
+lin moonlight_N = mkN "moonlight" "moonlights" ;
+lin moonlighter_N = mkN "moonlighter" "moonlighters" ;
+lin moonlike_A = mkAMost "moonlike" "moonlikely" ;
+lin moonlit_A = mkAMost "moonlit" "moonlitly" ;
+lin moonseed_N = mkN "moonseed" "moonseeds" ;
+lin moonshine_N = mkN "moonshine" "moonshines" ;
+lin moonstone_N = mkN "moonstone" "moonstones" ;
+lin moonstruck_A = mkAMost "moonstruck" "moonstruckly" ;
+lin moonwalk_N = mkN "moonwalk" "moonwalks" ;
+lin moonwort_N = mkN "moonwort" "moonworts" ;
+lin moony_A = mkA "moony" "moonier" "mooniest" "moonily" ;
+lin moor_N = mkN "moor" "moors" ;
+lin moor_V = mkV "moor" "moored" "moored" ;
+lin moorage_N = mkN "moorage" "moorages" ;
+lin moorcock_N = mkN "moorcock" "moorcocks" ;
+lin moorfowl_N = mkN "moorfowl" "moorfowls" ;
+lin moorgame_N = mkN "moorgame" "moorgame" ;
+lin moorhen_N = mkN "moorhen" "moorhens" ;
+lin mooring_N = mkN "mooring" "moorings" ;
+lin mooring_mast_N = mkN "mooring-mast" "mooring-masts" ;
+lin moorish_A = mkAMost "moorish" "moorishly" ;
+lin moorland_N = mkN "moorland" "moorlands" ;
+lin moose_N = mkN "moose" "moose" ;
+lin moosewood_N = mkN "moosewood" "moosewoods" ;
+lin moot_A = mkAMost "moot" "mootly" ;
+lin moot_N = mkN "moot" "moots" ;
+lin moot_V = mkV "moot" "mooted" "mooted" ;
+lin mop_N = mkN "mop" "mops" ;
+lin mop_V = mkV "mop" "mopped" "mopped" ;
+lin mope_N = mkN "mope" "mopes" ;
+lin mope_V = mkV "mope" "moped" "moped" ;
+lin moped_N = mkN "moped" "mopeds" ;
+lin mopper_N = mkN "mopper" "moppers" ;
+lin moppet_N = mkN "moppet" "moppets" ;
+lin moquette_N = mkN "moquette" "moquettes" ;
+lin moraceous_A = mkAMost "moraceous" "moraceously" ;
+lin moraine_N = mkN "moraine" "moraines" ;
+lin moral_A = mkAMost "moral" "morally" ;
+lin moral_N = mkN "moral" "morals" ;
+lin morale_N = mkN "morale" "morales" ;
+lin moralism_N = mkN "moralism" "moralisms" ;
+lin moralist_N = mkN "moralist" "moralists" ;
+lin moralistic_A = mkAMost "moralistic" "moralisticly" ;
+lin morality_N = mkN "morality" "moralities" ;
+lin moralization_N = mkN "moralization" "moralizations" ;
+lin moralize_V = mkV "moralize" "moralized" "moralized" ;
+lin moralizing_N = mkN "moralizing" "moralizings" ;
+lin morass_N = mkN "morass" "morasses" ;
+lin moratorium_N = mkN "moratorium" "moratoriums" ;
+lin moray_N = mkN "moray" "morays" ;
+lin morbid_A = mkAMost "morbid" "morbidly" ;
+lin morbidity_N = mkN "morbidity" "morbidities" ;
+lin morbidness_N = mkN "morbidness" "morbidnesses" ;
+lin morbilliform_A = mkAMost "morbilliform" "morbilliformly" ;
+lin morceau_N = mkN "morceau" "morceaus" ;
+lin mordacious_A = mkAMost "mordacious" "mordaciously" ;
+lin mordacity_N = mkN "mordacity" "mordacities" ;
+lin mordant_A = mkAMost "mordant" "mordantly" ;
+lin mordant_N = mkN "mordant" "mordants" ;
+lin more_Adv = mkAdv "more" ;
+lin more_N = mkN "more" "mores" ;
+lin moreen_N = mkN "moreen" "moreens" ;
+lin morel_N = mkN "morel" "morels" ;
+lin morello_N = mkN "morello" "morellos" ;
+lin moreover_Adv = mkAdv "moreover" ;
+lin mores_N = mkN "mores" "moreses" ;
+lin moresque_A = mkAMost "moresque" "moresquely" ;
+lin morganatic_A = mkAMost "morganatic" "morganaticly" ;
+lin morganite_N = mkN "morganite" "morganites" ;
+lin morgen_N = mkN "morgen" "morgens" ;
+lin morgue_N = mkN "morgue" "morgues" ;
+lin moribund_A = mkAMost "moribund" "moribundly" ;
+lin morion_N = mkN "morion" "morions" ;
+lin morn_N = mkN "morn" "morns" ;
+lin morning_N = mkN "morning" "mornings" ;
+lin morning_glory_N = mkN "morning-glory" "morning-glories" ;
+lin morning_room_N = mkN "morning-room" "morning-rooms" ;
+lin moroccan_A = mkAMost "moroccan" "moroccanly" ;
+lin moroccan_N = mkN "moroccan" "moroccans" ;
+lin morocco_N = mkN "morocco" "moroccoes" ;
+lin moron_N = mkN "moron" "morons" ;
+lin moronic_A = mkAMost "moronic" "moronicly" ;
+lin moronity_N = mkN "moronity" "moronities" ;
+lin morose_A = mkAMost "morose" "morosely" ;
+lin moroseness_N = mkN "moroseness" "morosenesses" ;
+lin morosoph_N = mkN "morosoph" "morosophs" ;
+lin morphallaxis_N = mkN "morphallaxis" "morphallaxises" ;
+lin morphea_N = mkN "morphea" "morpheas" ;
+lin morpheme_N = mkN "morpheme" "morphemes" ;
+lin morphemic_A = mkAMost "morphemic" "morphemicly" ;
+lin morphia_N = mkN "morphia" "morphias" ;
+lin morphine_N = mkN "morphine" "morphines" ;
+lin morphogenesis_N = mkN "morphogenesis" "morphogenesises" ;
+lin morphologic_A = mkAMost "morphologic" "morphologicly" ;
+lin morphological_A = mkAMost "morphological" "morphologically" ;
+lin morphology_N = mkN "morphology" "morphologies" ;
+lin morphophoneme_N = mkN "morphophoneme" "morphophonemes" ;
+lin morphophonemic_A = mkAMost "morphophonemic" "morphophonemicly" ;
+lin morphophonemics_N = mkN "morphophonemics" "morphophonemicses" ;
+lin morris_dance_N = mkN "morris dance" "morris dances" ;
+lin morrow_N = mkN "morrow" "morrows" ;
+lin morse_N = mkN "morse" "morses" ;
+lin morsel_N = mkN "morsel" "morsels" ;
+lin mortal_A = mkAMost "mortal" "mortally" ;
+lin mortal_N = mkN "mortal" "mortals" ;
+lin mortality_N = mkN "mortality" "mortalities" ;
+lin mortar_N = mkN "mortar" "mortars" ;
+lin mortar_V = mkV "mortar" "mortared" "mortared" ;
+lin mortarboard_N = mkN "mortarboard" "mortarboards" ;
+lin mortgage_N = mkN "mortgage" "mortgages" ;
+lin mortgage_V = mkV "mortgage" "mortgaged" "mortgaged" ;
+lin mortgagee_N = mkN "mortgagee" "mortgagees" ;
+lin mortgagor_N = mkN "mortgagor" "mortgagors" ;
+lin mortice_N = mkN "mortice" "mortices" ;
+lin mortice_V = mkV "mortice" "morticed" "morticed" ;
+lin mortician_N = mkN "mortician" "morticians" ;
+lin mortification_N = mkN "mortification" "mortifications" ;
+lin mortify_V = mkV "mortify" "mortified" "mortified" ;
+lin mortise_N = mkN "mortise" "mortises" ;
+lin mortise_V = mkV "mortise" "mortised" "mortised" ;
+lin mortmain_N = mkN "mortmain" "mortmains" ;
+lin mortuary_A = mkAMost "mortuary" "mortuarily" ;
+lin mortuary_N = mkN "mortuary" "mortuaries" ;
+lin morula_N = mkN "morula" "morulas" ;
+lin mosaic_A = mkAMost "mosaic" "mosaicly" ;
+lin mosaic_N = mkN "mosaic" "mosaics" ;
+lin mosaicism_N = mkN "mosaicism" "mosaicisms" ;
+lin moselle_N = mkN "moselle" "moselles" ;
+lin mosey_V = mkV "mosey" "moseyed" "moseyed" ;
+lin moshav_N = mkN "moshav" "moshavs" ;
+lin moslem_A = mkAMost "moslem" "moslemly" ;
+lin moslem_N = mkN "moslem" "moslems" ;
+lin mosque_N = mkN "mosque" "mosques" ;
+lin mosquito_N = mkN "mosquito" "mosquitoes" ;
+lin mosquito_craft_N = mkN "mosquito-craft" "mosquito-craft" ;
+lin mosquito_net_N = mkN "mosquito-net" "mosquito-nets" ;
+lin mosquitofish_N = mkN "mosquitofish" "mosquitofishes" ;
+lin moss_N = mkN "moss" "mosses" ;
+lin moss_grown_A = mkAMost "moss-grown" "moss-grownly" ;
+lin mossback_N = mkN "mossback" "mossbacks" ;
+lin mossy_A = mkA "mossy" "mossier" "mossiest" "mossily" ;
+lin most_Adv = mkAdv "most" ;
+lin mostaccioli_N = mkN "mostaccioli" "mostacciolis" ;
+lin mostly_Adv = mkAdv "mostly" ;
+lin mote_N = mkN "mote" "motes" ;
+lin motel_N = mkN "motel" "motels" ;
+lin motet_N = mkN "motet" "motets" ;
+lin moth_N = mkN "moth" "moths" ;
+lin moth_eaten_A = mkAMost "moth-eaten" "moth-eatenly" ;
+lin mothball_N = mkN "mothball" "mothballs" ;
+lin mother_N = mkN "mother" "mothers" ;
+lin mother_V = mkV "mother" "mothered" "mothered" ;
+lin mother_in_law_N = mkN "mother-in-law" "mothers-in-law" ;
+lin mother_of_pearl_N = mkN "mother-of-pearl" "mother-of-pearls" ;
+lin motherhood_N = mkN "motherhood" "motherhoods" ;
+lin motherland_N = mkN "motherland" "motherlands" ;
+lin motherless_A = mkAMost "motherless" "motherlessly" ;
+lin motherlike_A = mkAMost "motherlike" "motherlikely" ;
+lin motherliness_N = mkN "motherliness" "motherlinesses" ;
+lin motherly_A = mkAMost "motherly" "motherlily" ;
+lin motherwort_N = mkN "motherwort" "motherworts" ;
+lin mothproof_A = mkAMost "mothproof" "mothproofly" ;
+lin mothproof_V = mkV "mothproof" "mothproofed" "mothproofed" ;
+lin mothy_A = mkA "mothy" "mothier" "mothiest" "mothily" ;
+lin motif_N = mkN "motif" "motifs" ;
+lin motile_A = mkAMost "motile" "motilely" ;
+lin motile_N = mkN "motile" "motiles" ;
+lin motilin_N = mkN "motilin" "motilins" ;
+lin motility_N = mkN "motility" "motilities" ;
+lin motion_N = mkN "motion" "motions" ;
+lin motion_V = mkV "motion" "motioned" "motioned" ;
+lin motional_A = mkAMost "motional" "motionally" ;
+lin motionless_A = mkAMost "motionless" "motionlessly" ;
+lin motionlessness_N = mkN "motionlessness" "motionlessnesses" ;
+lin motivate_V = mkV "motivate" "motivated" "motivated" ;
+lin motivation_N = mkN "motivation" "motivations" ;
+lin motivational_A = mkAMost "motivational" "motivationally" ;
+lin motive_A = mkAMost "motive" "motively" ;
+lin motive_N = mkN "motive" "motives" ;
+lin motiveless_A = mkAMost "motiveless" "motivelessly" ;
+lin motley_A = mkAMost "motley" "motleily" ;
+lin motley_N = mkN "motley" "motleys" ;
+lin motmot_N = mkN "motmot" "motmots" ;
+lin motor_N = mkN "motor" "motors" ;
+lin motor_V = mkV "motor" "motored" "motored" ;
+lin motor_assisted_A = mkAMost "motor-assisted" "motor-assistedly" ;
+lin motorbike_N = mkN "motorbike" "motorbikes" ;
+lin motorboat_N = mkN "motorboat" "motorboats" ;
+lin motorcade_N = mkN "motorcade" "motorcades" ;
+lin motorcar_N = mkN "motorcar" "motorcars" ;
+lin motorcoach_N = mkN "motorcoach" "motorcoaches" ;
+lin motorcycle_N = mkN "motorcycle" "motorcycles" ;
+lin motorcycling_N = mkN "motorcycling" "motorcyclings" ;
+lin motorcyclist_N = mkN "motorcyclist" "motorcyclists" ;
+lin motoring_N = mkN "motoring" "motorings" ;
+lin motorist_N = mkN "motorist" "motorists" ;
+lin motorization_N = mkN "motorization" "motorizations" ;
+lin motorize_V = mkV "motorize" "motorized" "motorized" ;
+lin motorman_N = mkN "motorman" "motormen" ;
+lin motormouth_N = mkN "motormouth" "motormouths" ;
+lin motorway_N = mkN "motorway" "motorways" ;
+lin mottle_N = mkN "mottle" "mottles" ;
+lin mottle_V = mkV "mottle" "mottled" "mottled" ;
+lin mottling_N = mkN "mottling" "mottlings" ;
+lin motto_N = mkN "motto" "mottos" ;
+lin mouflon_N = mkN "mouflon" "mouflons" ;
+lin moujik_N = mkN "moujik" "moujiks" ;
+lin mould_N = mkN "mould" "moulds" ;
+lin mould_V = mkV "mould" "moulded" "moulded" ;
+lin moulder_V = mkV "moulder" "mouldered" "mouldered" ;
+lin moulding_N = mkN "moulding" "mouldings" ;
+lin mouldy_A = mkA "mouldy" "mouldier" "mouldiest" "mouldily" ;
+lin moult_N = mkN "moult" "moults" ;
+lin moult_V = mkV "moult" "moulted" "moulted" ;
+lin mound_N = mkN "mound" "mounds" ;
+lin mount_N = mkN "mount" "mounts" ;
+lin mount_V = mkV "mount" "mounted" "mounted" ;
+lin mountain_N = mkN "mountain" "mountains" ;
+lin mountaineer_N = mkN "mountaineer" "mountaineers" ;
+lin mountaineering_N = mkN "mountaineering" "mountaineerings" ;
+lin mountainous_A = mkAMost "mountainous" "mountainously" ;
+lin mountainside_N = mkN "mountainside" "mountainsides" ;
+lin mountebank_N = mkN "mountebank" "mountebanks" ;
+lin mounter_N = mkN "mounter" "mounters" ;
+lin mountie_N = mkN "mountie" "mounties" ;
+lin mounting_N = mkN "mounting" "mountings" ;
+lin mourn_V = mkV "mourn" "mourned" "mourned" ;
+lin mourner_N = mkN "mourner" "mourners" ;
+lin mournful_A = mkAMost "mournful" "mournfully" ;
+lin mournfulness_N = mkN "mournfulness" "mournfulnesses" ;
+lin mourning_N = mkN "mourning" "mournings" ;
+lin mourning_band_N = mkN "mourning-band" "mourning-bands" ;
+lin mourning_ring_N = mkN "mourning-ring" "mourning-rings" ;
+lin mouse_N = mkN "mouse" "mice" ;
+lin mouse_V = mkV "mouse" "moused" "moused" ;
+lin mousepad_N = mkN "mousepad" "mousepads" ;
+lin mouser_N = mkN "mouser" "mousers" ;
+lin mousetrap_N = mkN "mousetrap" "mousetraps" ;
+lin moussaka_N = mkN "moussaka" "moussakas" ;
+lin mousse_N = mkN "mousse" "mousses" ;
+lin moustache_N = mkN "moustache" "moustaches" ;
+lin mousy_A = mkA "mousy" "mousier" "mousiest" "mousily" ;
+lin mouth_N = mkN "mouth" "mouths" ;
+lin mouth_V = mkV "mouth" "mouthed" "mouthed" ;
+lin mouth_organ_N = mkN "mouth-organ" "mouth-organs" ;
+lin mouth_watering_A = mkAMost "mouth-watering" "mouth-wateringly" ;
+lin mouthbreeder_N = mkN "mouthbreeder" "mouthbreeders" ;
+lin mouthful_N = mkN "mouthful" "mouthfuls" ;
+lin mouthlike_A = mkAMost "mouthlike" "mouthlikely" ;
+lin mouthpart_N = mkN "mouthpart" "mouthparts" ;
+lin mouthpiece_N = mkN "mouthpiece" "mouthpieces" ;
+lin mouton_N = mkN "mouton" "moutons" ;
+lin movability_N = mkN "movability" "movabilities" ;
+lin movable_A = mkAMost "movable" "movably" ;
+lin move_N = mkN "move" "moves" ;
+lin move_V = mkV "move" "moved" "moved" ;
+lin movement_N = mkN "movement" "movements" ;
+lin mover_N = mkN "mover" "movers" ;
+lin movie_N = mkN "movie" "movies" ;
+lin moviegoer_N = mkN "moviegoer" "moviegoers" ;
+lin moviemaking_N = mkN "moviemaking" "moviemakings" ;
+lin movingly_Adv = mkAdv "movingly" ;
+lin mow_N = mkN "mow" "mows" ;
+lin mow_V = mkV "mow" "mowed" "mowed" ;
+lin mower_N = mkN "mower" "mowers" ;
+lin mown_A = mkA "mown" "mowner" "mownest" "mownly" ;
+lin mozambican_A = mkAMost "mozambican" "mozambicanly" ;
+lin mozambican_N = mkN "mozambican" "mozambicans" ;
+lin mozzarella_N = mkN "mozzarella" "mozzarellas" ;
+lin mp_N = mkN "mp" "mp's" ;
+lin mpg_N = mkN "mpg" "mpg" ;
+lin mph_N = mkN "mph" "mph" ;
+lin ms_N = mkN "ms" "mses" ;
+lin msasa_N = mkN "msasa" "msasas" ;
+lin msc_N = mkN "msc" "mscs" ;
+lin mu_N = mkN "mu" "mus" ;
+lin much_Adv = mkAdv "much" ;
+lin much_N = mkN "much" "IRREG" ;
+lin muchness_N = mkN "muchness" "muchnesses" ;
+lin muciferous_A = mkAMost "muciferous" "muciferously" ;
+lin mucilage_N = mkN "mucilage" "mucilages" ;
+lin mucin_N = mkN "mucin" "mucins" ;
+lin mucinoid_A = mkAMost "mucinoid" "mucinoidly" ;
+lin mucinous_A = mkAMost "mucinous" "mucinously" ;
+lin muck_N = mkN "muck" "mucks" ;
+lin muck_V = mkV "muck" "mucked" "mucked" ;
+lin muck_heap_N = mkN "muck-heap" "muck-heaps" ;
+lin muckle_N = mkN "muckle" "IRREG" ;
+lin muckraker_N = mkN "muckraker" "muckrakers" ;
+lin muckraking_N = mkN "muckraking" "muckrakings" ;
+lin mucky_A = mkA "mucky" "muckier" "muckiest" "muckily" ;
+lin mucocutaneous_A = mkAMost "mucocutaneous" "mucocutaneously" ;
+lin mucoid_A = mkAMost "mucoid" "mucoidly" ;
+lin mucoid_N = mkN "mucoid" "mucoids" ;
+lin mucopolysaccharide_N = mkN "mucopolysaccharide" "mucopolysaccharides" ;
+lin mucopolysaccharidosis_N = mkN "mucopolysaccharidosis" "mucopolysaccharidosises" ;
+lin mucopurulent_A = mkAMost "mucopurulent" "mucopurulently" ;
+lin mucor_N = mkN "mucor" "mucors" ;
+lin mucosal_A = mkAMost "mucosal" "mucosally" ;
+lin mucous_A = mkAMost "mucous" "mucously" ;
+lin mucuna_N = mkN "mucuna" "mucunas" ;
+lin mucus_N = mkN "mucus" "mucuses" ;
+lin mud_N = mkN "mud" "muds" ;
+lin mud_V = mkV "mud" "mudded" "mudded" ;
+lin mud_bath_N = mkN "mud-bath" "mud-baths" ;
+lin mudder_N = mkN "mudder" "mudders" ;
+lin muddle_N = mkN "muddle" "muddles" ;
+lin muddle_V = mkV "muddle" "muddled" "muddled" ;
+lin muddle_headed_A = mkAMost "muddle-headed" "muddle-headedly" ;
+lin muddy_A = mkA "muddy" "muddier" "muddiest" "muddily" ;
+lin muddy_V = mkV "muddy" "muddied" "muddied" ;
+lin mudguard_N = mkN "mudguard" "mudguards" ;
+lin mudhif_N = mkN "mudhif" "mudhifs" ;
+lin mudra_N = mkN "mudra" "mudras" ;
+lin mudskipper_N = mkN "mudskipper" "mudskippers" ;
+lin mudslide_N = mkN "mudslide" "mudslides" ;
+lin mudslinger_N = mkN "mudslinger" "mudslingers" ;
+lin muesli_N = mkN "muesli" "mueslis" ;
+lin muezzin_N = mkN "muezzin" "muezzins" ;
+lin muff_N = mkN "muff" "muffs" ;
+lin muff_V = mkV "muff" "muffed" "muffed" ;
+lin muffin_N = mkN "muffin" "muffins" ;
+lin muffin_man_N = mkN "muffin-man" "muffin-men" ;
+lin muffle_N = mkN "muffle" "muffles" ;
+lin muffle_V = mkV "muffle" "muffled" "muffled" ;
+lin muffler_N = mkN "muffler" "mufflers" ;
+lin mufti_N = mkN "mufti" "muftis" ;
+lin mug_N = mkN "mug" "mugs" ;
+lin mug_V = mkV "mug" "mugged" "mugged" ;
+lin muggee_N = mkN "muggee" "muggees" ;
+lin mugger_N = mkN "mugger" "muggers" ;
+lin mugginess_N = mkN "mugginess" "mugginesses" ;
+lin mugging_N = mkN "mugging" "muggings" ;
+lin muggins_N = mkN "muggins" "mugginses" ;
+lin muggy_A = mkA "muggy" "muggier" "muggiest" "muggily" ;
+lin mugwort_N = mkN "mugwort" "mugworts" ;
+lin mugwump_N = mkN "mugwump" "mugwumps" ;
+lin muhammadan_A = mkAMost "muhammadan" "muhammadanly" ;
+lin muhammadan_N = mkN "muhammadan" "muhammadans" ;
+lin muhammadanism_N = mkN "muhammadanism" "muhammadanisms" ;
+lin muishond_N = mkN "muishond" "muishonds" ;
+lin mujahid_N = mkN "mujahid" "mujahids" ;
+lin mujahidin_N = mkN "mujahidin" "mujahidins" ;
+lin mujtihad_N = mkN "mujtihad" "mujtihads" ;
+lin mukataa_N = mkN "mukataa" "mukataas" ;
+lin mulatto_N = mkN "mulatto" "mulattos" ;
+lin mulberry_N = mkN "mulberry" "mulberries" ;
+lin mulch_N = mkN "mulch" "mulches" ;
+lin mulch_V = mkV "mulch" "mulched" "mulched" ;
+lin mulct_V = mkV "mulct" "mulcted" "mulcted" ;
+lin mule_N = mkN "mule" "mules" ;
+lin mule_V = mkV "mule" "muled" "muled" ;
+lin muleteer_N = mkN "muleteer" "muleteers" ;
+lin mulish_A = mkAMost "mulish" "mulishly" ;
+lin mulishness_N = mkN "mulishness" "mulishnesses" ;
+lin mull_N = mkN "mull" "mulls" ;
+lin mull_V = mkV "mull" "mulled" "mulled" ;
+lin mullah_N = mkN "mullah" "mullahs" ;
+lin mullein_N = mkN "mullein" "mulleins" ;
+lin muller_N = mkN "muller" "mullers" ;
+lin mullet_N = mkN "mullet" "mullets" ;
+lin mulligatawny_N = mkN "mulligatawny" "mulligatawnies" ;
+lin mullion_N = mkN "mullion" "mullions" ;
+lin mullioned_A = mkAMost "mullioned" "mullionedly" ;
+lin mulloway_N = mkN "mulloway" "mulloways" ;
+lin multi_ethnicity_N = mkN "multi-ethnicity" "multi-ethnicities" ;
+lin multi_lingual_A = mkAMost "multi-lingual" "multi-lingually" ;
+lin multicellular_A = mkAMost "multicellular" "multicellularly" ;
+lin multicollinearity_N = mkN "multicollinearity" "multicollinearities" ;
+lin multicultural_A = mkAMost "multicultural" "multiculturally" ;
+lin multiculturalism_N = mkN "multiculturalism" "multiculturalisms" ;
+lin multidimensional_A = mkAMost "multidimensional" "multidimensionally" ;
+lin multiethnic_A = mkAMost "multiethnic" "multiethnicly" ;
+lin multifactorial_A = mkAMost "multifactorial" "multifactorially" ;
+lin multifarious_A = mkAMost "multifarious" "multifariously" ;
+lin multiflora_N = mkN "multiflora" "multifloras" ;
+lin multiform_A = mkAMost "multiform" "multiformly" ;
+lin multilane_A = mkAMost "multilane" "multilanely" ;
+lin multilateral_A = mkAMost "multilateral" "multilaterally" ;
+lin multilevel_A = mkAMost "multilevel" "multilevelly" ;
+lin multilingual_A = mkAMost "multilingual" "multilingually" ;
+lin multimedia_N = mkN "multimedia" "multimedias" ;
+lin multinational_A = mkAMost "multinational" "multinationally" ;
+lin multinucleate_A = mkAMost "multinucleate" "multinucleately" ;
+lin multiparous_A = mkAMost "multiparous" "multiparously" ;
+lin multipartite_A = mkAMost "multipartite" "multipartitely" ;
+lin multiphase_A = mkAMost "multiphase" "multiphasely" ;
+lin multiple_A = mkAMost "multiple" "multiplely" ;
+lin multiple_N = mkN "multiple" "multiples" ;
+lin multiplex_A = mkAMost "multiplex" "multiplexly" ;
+lin multiplex_N = mkN "multiplex" "multiplexes" ;
+lin multiplexer_N = mkN "multiplexer" "multiplexers" ;
+lin multiplicand_N = mkN "multiplicand" "multiplicands" ;
+lin multiplication_N = mkN "multiplication" "multiplications" ;
+lin multiplicative_A = mkAMost "multiplicative" "multiplicatively" ;
+lin multiplicity_N = mkN "multiplicity" "multiplicities" ;
+lin multiplier_N = mkN "multiplier" "multipliers" ;
+lin multiply_Adv = mkAdv "multiply" ;
+lin multiply_V = mkV "multiply" "multiplied" "multiplied" ;
+lin multipotent_A = mkAMost "multipotent" "multipotently" ;
+lin multiprocessing_N = mkN "multiprocessing" "multiprocessings" ;
+lin multiprocessor_N = mkN "multiprocessor" "multiprocessors" ;
+lin multiprogramming_N = mkN "multiprogramming" "multiprogrammings" ;
+lin multipurpose_A = mkAMost "multipurpose" "multipurposely" ;
+lin multiracial_A = mkAMost "multiracial" "multiracially" ;
+lin multistage_N = mkN "multistage" "multistages" ;
+lin multistory_A = mkAMost "multistory" "multistorily" ;
+lin multitude_N = mkN "multitude" "multitudes" ;
+lin multitudinous_A = mkAMost "multitudinous" "multitudinously" ;
+lin multitudinousness_N = mkN "multitudinousness" "multitudinousnesses" ;
+lin multivalent_A = mkAMost "multivalent" "multivalently" ;
+lin multivariate_A = mkAMost "multivariate" "multivariately" ;
+lin multiversity_N = mkN "multiversity" "multiversities" ;
+lin multivitamin_N = mkN "multivitamin" "multivitamins" ;
+lin multum_in_parvo_N = mkN "multum in parvo" "multum in parvoes" ;
+lin mum_A = mkAMost "mum" "mumly" ;
+lin mum_N = mkN "mum" "mums" ;
+lin mumble_N = mkN "mumble" "mumbles" ;
+lin mumble_V = mkV "mumble" "mumbled" "mumbled" ;
+lin mumbling_N = mkN "mumbling" "mumblings" ;
+lin mumbo_jumbo_N = mkN "mumbo-jumbo" "mumbo-jumboes" ;
+lin mummer_N = mkN "mummer" "mummers" ;
+lin mummery_N = mkN "mummery" "mummeries" ;
+lin mummichog_N = mkN "mummichog" "mummichogs" ;
+lin mummification_N = mkN "mummification" "mummifications" ;
+lin mummify_V = mkV "mummify" "mummified" "mummified" ;
+lin mummy_N = mkN "mummy" "mummies" ;
+lin mumps_N = mkN "mumps" "mumps" ;
+lin mumpsimus_N = mkN "mumpsimus" "mumpsimuses" ;
+lin munch_N = mkN "munch" "munches" ;
+lin munch_V = mkV "munch" "munched" "munched" ;
+lin muncher_N = mkN "muncher" "munchers" ;
+lin mundane_A = mkAMost "mundane" "mundanely" ;
+lin mung_N = mkN "mung" "mungs" ;
+lin municipal_A = mkAMost "municipal" "municipally" ;
+lin municipality_N = mkN "municipality" "municipalities" ;
+lin munificence_N = mkN "munificence" "munificences" ;
+lin munificent_A = mkAMost "munificent" "munificently" ;
+lin muniments_N = mkN "muniments" "munimentses" ;
+lin munition_N = mkN "munition" "munitions" ;
+lin munition_V = mkV "munition" "munitioned" "munitioned" ;
+lin munj_N = mkN "munj" "munjs" ;
+lin muntjac_N = mkN "muntjac" "muntjacs" ;
+lin muon_N = mkN "muon" "muons" ;
+lin mural_A = mkAMost "mural" "murally" ;
+lin mural_N = mkN "mural" "murals" ;
+lin muralist_N = mkN "muralist" "muralists" ;
+lin murder_N = mkN "murder" "murders" ;
+lin murder_V = mkV "murder" "murdered" "murdered" ;
+lin murderee_N = mkN "murderee" "murderees" ;
+lin murderer_N = mkN "murderer" "murderers" ;
+lin murderess_N = mkN "murderess" "murderesses" ;
+lin murderous_A = mkAMost "murderous" "murderously" ;
+lin murderousness_N = mkN "murderousness" "murderousnesses" ;
+lin murine_A = mkAMost "murine" "murinely" ;
+lin murine_N = mkN "murine" "murines" ;
+lin murk_N = mkN "murk" "murks" ;
+lin murky_A = mkA "murky" "murkier" "murkiest" "murkily" ;
+lin murmur_N = mkN "murmur" "murmurs" ;
+lin murmur_V = mkV "murmur" "murmured" "murmured" ;
+lin murmurous_A = mkAMost "murmurous" "murmurously" ;
+lin murphy_N = mkN "murphy" "murphies" ;
+lin murrain_N = mkN "murrain" "murrains" ;
+lin murre_N = mkN "murre" "murres" ;
+lin muscadine_N = mkN "muscadine" "muscadines" ;
+lin muscat_N = mkN "muscat" "muscats" ;
+lin muscatel_N = mkN "muscatel" "muscatels" ;
+lin muscle_N = mkN "muscle" "muscles" ;
+lin muscle_V = mkV "muscle" "muscled" "muscled" ;
+lin muscle_bound_A = mkAMost "muscle-bound" "muscle-boundly" ;
+lin muscleman_N = mkN "muscleman" "musclemen" ;
+lin muscovite_A = mkAMost "muscovite" "muscovitely" ;
+lin muscovite_N = mkN "muscovite" "muscovites" ;
+lin muscovy_N = mkN "muscovy" "muscovies" ;
+lin muscular_A = mkAMost "muscular" "muscularly" ;
+lin muscularity_N = mkN "muscularity" "muscularities" ;
+lin musculoskeletal_A = mkAMost "musculoskeletal" "musculoskeletally" ;
+lin muse_N = mkN "muse" "muses" ;
+lin muse_V = mkV "muse" "mused" "mused" ;
+lin muser_N = mkN "muser" "musers" ;
+lin musette_N = mkN "musette" "musettes" ;
+lin museum_N = mkN "museum" "museums" ;
+lin mush_N = mkN "mush" "mushes" ;
+lin musher_N = mkN "musher" "mushers" ;
+lin mushiness_N = mkN "mushiness" "mushinesses" ;
+lin mushroom_N = mkN "mushroom" "mushrooms" ;
+lin mushroom_V = mkV "mushroom" "mushroomed" "mushroomed" ;
+lin mushy_A = mkA "mushy" "mushier" "mushiest" "mushily" ;
+lin music_N = mkN "music" "musics" ;
+lin music_box_N = mkN "music-box" "music-boxes" ;
+lin music_hall_N = mkN "music-hall" "music-halls" ;
+lin music_stand_N = mkN "music-stand" "music-stands" ;
+lin music_stool_N = mkN "music-stool" "music-stools" ;
+lin musical_A = mkAMost "musical" "musically" ;
+lin musical_N = mkN "musical" "musicals" ;
+lin musical_box_N = mkN "musical-box" "musical-boxes" ;
+lin musicality_N = mkN "musicality" "musicalities" ;
+lin musician_N = mkN "musician" "musicians" ;
+lin musicianship_N = mkN "musicianship" "musicianships" ;
+lin musicological_A = mkAMost "musicological" "musicologically" ;
+lin musicologist_N = mkN "musicologist" "musicologists" ;
+lin musicology_N = mkN "musicology" "musicologies" ;
+lin musingly_Adv = mkAdv "musingly" ;
+lin musk_N = mkN "musk" "musks" ;
+lin musk_deer_N = mkN "musk-deer" "musk-deer" ;
+lin musk_rose_N = mkN "musk-rose" "musk-roses" ;
+lin muskellunge_N = mkN "muskellunge" "muskellunges" ;
+lin musket_N = mkN "musket" "muskets" ;
+lin musketeer_N = mkN "musketeer" "musketeers" ;
+lin musketry_N = mkN "musketry" "musketries" ;
+lin muskiness_N = mkN "muskiness" "muskinesses" ;
+lin muskmelon_N = mkN "muskmelon" "muskmelons" ;
+lin muskrat_N = mkN "muskrat" "muskrats" ;
+lin muskwood_N = mkN "muskwood" "muskwoods" ;
+lin musky_A = mkA "musky" "muskier" "muskiest" "muskily" ;
+lin muslin_N = mkN "muslin" "muslins" ;
+lin musnud_N = mkN "musnud" "musnuds" ;
+lin musophobia_N = mkN "musophobia" "musophobias" ;
+lin musquash_N = mkN "musquash" "musquashes" ;
+lin muss_N = mkN "muss" "musses" ;
+lin muss_V = mkV "muss" "mussed" "mussed" ;
+lin mussel_N = mkN "mussel" "mussels" ;
+lin must_N = mkN "must" "musts" ;
+lin mustache_N = mkN "mustache" "mustaches" ;
+lin mustachio_N = mkN "mustachio" "mustachios" ;
+lin mustachioed_A = mkAMost "mustachioed" "mustachioedly" ;
+lin mustang_N = mkN "mustang" "mustangs" ;
+lin mustard_N = mkN "mustard" "mustards" ;
+lin muster_N = mkN "muster" "musters" ;
+lin muster_V = mkV "muster" "mustered" "mustered" ;
+lin musth_N = mkN "musth" "musths" ;
+lin mustiness_N = mkN "mustiness" "mustinesses" ;
+lin musty_A = mkA "musty" "mustier" "mustiest" "mustily" ;
+lin mutability_N = mkN "mutability" "mutabilities" ;
+lin mutable_A = mkAMost "mutable" "mutably" ;
+lin mutafacient_A = mkAMost "mutafacient" "mutafaciently" ;
+lin mutagen_N = mkN "mutagen" "mutagens" ;
+lin mutagenesis_N = mkN "mutagenesis" "mutagenesises" ;
+lin mutagenic_A = mkAMost "mutagenic" "mutagenicly" ;
+lin mutant_A = mkAMost "mutant" "mutantly" ;
+lin mutant_N = mkN "mutant" "mutants" ;
+lin mutation_N = mkN "mutation" "mutations" ;
+lin mutational_A = mkAMost "mutational" "mutationally" ;
+lin mutatis_mutandis_Adv = mkAdv "mutatis mutandis" ;
+lin mutative_A = mkAMost "mutative" "mutatively" ;
+lin mutchkin_N = mkN "mutchkin" "mutchkins" ;
+lin mute_A = mkAMost "mute" "mutely" ;
+lin mute_N = mkN "mute" "mutes" ;
+lin mute_V = mkV "mute" "muted" "muted" ;
+lin muteness_N = mkN "muteness" "mutenesses" ;
+lin mutilate_V = mkV "mutilate" "mutilated" "mutilated" ;
+lin mutilation_N = mkN "mutilation" "mutilations" ;
+lin mutilator_N = mkN "mutilator" "mutilators" ;
+lin mutineer_N = mkN "mutineer" "mutineers" ;
+lin mutinous_A = mkAMost "mutinous" "mutinously" ;
+lin mutiny_N = mkN "mutiny" "mutinies" ;
+lin mutiny_V = mkV "mutiny" "mutinied" "mutinied" ;
+lin mutisia_N = mkN "mutisia" "mutisias" ;
+lin mutism_N = mkN "mutism" "mutisms" ;
+lin muton_N = mkN "muton" "mutons" ;
+lin mutt_N = mkN "mutt" "mutts" ;
+lin mutter_N = mkN "mutter" "mutters" ;
+lin mutter_V = mkV "mutter" "muttered" "muttered" ;
+lin mutterer_N = mkN "mutterer" "mutterers" ;
+lin mutton_N = mkN "mutton" "muttons" ;
+lin mutton_head_N = mkN "mutton-head" "mutton-heads" ;
+lin mutual_A = mkAMost "mutual" "mutually" ;
+lin mutuality_N = mkN "mutuality" "mutualities" ;
+lin muzhik_N = mkN "muzhik" "muzhiks" ;
+lin muzzle_N = mkN "muzzle" "muzzles" ;
+lin muzzle_V = mkV "muzzle" "muzzled" "muzzled" ;
+lin muzzle_velocity_N = mkN "muzzle-velocity" "muzzle-velocities" ;
+lin muzzler_N = mkN "muzzler" "muzzlers" ;
+lin muzzy_A = mkA "muzzy" "muzzier" "muzziest" "muzzily" ;
+lin myalgia_N = mkN "myalgia" "myalgias" ;
+lin myalgic_A = mkAMost "myalgic" "myalgicly" ;
+lin myasthenia_N = mkN "myasthenia" "myasthenias" ;
+lin mycelium_N = mkN "mycelium" "myceliums" ;
+lin mycobacteria_N = mkN "mycobacteria" "mycobacterias" ;
+lin mycologist_N = mkN "mycologist" "mycologists" ;
+lin mycology_N = mkN "mycology" "mycologies" ;
+lin mycomycin_N = mkN "mycomycin" "mycomycins" ;
+lin mycophagist_N = mkN "mycophagist" "mycophagists" ;
+lin mycophagy_N = mkN "mycophagy" "mycophagies" ;
+lin mycoplasma_N = mkN "mycoplasma" "mycoplasmas" ;
+lin mycotoxin_N = mkN "mycotoxin" "mycotoxins" ;
+lin mydriasis_N = mkN "mydriasis" "mydriasises" ;
+lin mydriatic_N = mkN "mydriatic" "mydriatics" ;
+lin myelatelia_N = mkN "myelatelia" "myelatelias" ;
+lin myelencephalon_N = mkN "myelencephalon" "myelencephalons" ;
+lin myelic_A = mkAMost "myelic" "myelicly" ;
+lin myelin_N = mkN "myelin" "myelins" ;
+lin myelinated_A = mkAMost "myelinated" "myelinatedly" ;
+lin myelinic_A = mkAMost "myelinic" "myelinicly" ;
+lin myelinization_N = mkN "myelinization" "myelinizations" ;
+lin myelitis_N = mkN "myelitis" "myelitises" ;
+lin myeloblast_N = mkN "myeloblast" "myeloblasts" ;
+lin myelocyte_N = mkN "myelocyte" "myelocytes" ;
+lin myelofibrosis_N = mkN "myelofibrosis" "myelofibrosises" ;
+lin myelogram_N = mkN "myelogram" "myelograms" ;
+lin myelography_N = mkN "myelography" "myelographies" ;
+lin myeloid_A = mkAMost "myeloid" "myeloidly" ;
+lin myeloma_N = mkN "myeloma" "myelomas" ;
+lin myelomeningocele_N = mkN "myelomeningocele" "myelomeningoceles" ;
+lin myiasis_N = mkN "myiasis" "myiasises" ;
+lin mylodon_N = mkN "mylodon" "mylodons" ;
+lin mylodontid_N = mkN "mylodontid" "mylodontids" ;
+lin myna_N = mkN "myna" "mynas" ;
+lin mynah_N = mkN "mynah" "mynahs" ;
+lin myocardial_A = mkAMost "myocardial" "myocardially" ;
+lin myocardium_N = mkN "myocardium" "myocardiums" ;
+lin myoclonus_N = mkN "myoclonus" "myoclonuses" ;
+lin myofibril_N = mkN "myofibril" "myofibrils" ;
+lin myoglobin_N = mkN "myoglobin" "myoglobins" ;
+lin myoglobinuria_N = mkN "myoglobinuria" "myoglobinurias" ;
+lin myogram_N = mkN "myogram" "myograms" ;
+lin myoid_A = mkAMost "myoid" "myoidly" ;
+lin myology_N = mkN "myology" "myologies" ;
+lin myoma_N = mkN "myoma" "myomas" ;
+lin myometritis_N = mkN "myometritis" "myometritises" ;
+lin myometrium_N = mkN "myometrium" "myometriums" ;
+lin myonecrosis_N = mkN "myonecrosis" "myonecrosises" ;
+lin myopathic_A = mkAMost "myopathic" "myopathicly" ;
+lin myopathy_N = mkN "myopathy" "myopathies" ;
+lin myope_N = mkN "myope" "myopes" ;
+lin myopia_N = mkN "myopia" "myopias" ;
+lin myopic_A = mkAMost "myopic" "myopicly" ;
+lin myosarcoma_N = mkN "myosarcoma" "myosarcomas" ;
+lin myosin_N = mkN "myosin" "myosins" ;
+lin myositis_N = mkN "myositis" "myositises" ;
+lin myotomy_N = mkN "myotomy" "myotomies" ;
+lin myotonia_N = mkN "myotonia" "myotonias" ;
+lin myotonic_A = mkAMost "myotonic" "myotonicly" ;
+lin myriad_A = mkAMost "myriad" "myriadly" ;
+lin myriad_N = mkN "myriad" "myriads" ;
+lin myriagram_N = mkN "myriagram" "myriagrams" ;
+lin myriameter_N = mkN "myriameter" "myriameters" ;
+lin myriapod_N = mkN "myriapod" "myriapods" ;
+lin myringectomy_N = mkN "myringectomy" "myringectomies" ;
+lin myringoplasty_N = mkN "myringoplasty" "myringoplasties" ;
+lin myringotomy_N = mkN "myringotomy" "myringotomies" ;
+lin myrmecophagous_A = mkAMost "myrmecophagous" "myrmecophagously" ;
+lin myrmecophile_N = mkN "myrmecophile" "myrmecophiles" ;
+lin myrmecophilous_A = mkAMost "myrmecophilous" "myrmecophilously" ;
+lin myrmecophyte_N = mkN "myrmecophyte" "myrmecophytes" ;
+lin myrmecophytic_A = mkAMost "myrmecophytic" "myrmecophyticly" ;
+lin myrmidon_N = mkN "myrmidon" "myrmidons" ;
+lin myrrh_N = mkN "myrrh" "myrrhs" ;
+lin myrtle_N = mkN "myrtle" "myrtles" ;
+lin mysophilia_N = mkN "mysophilia" "mysophilias" ;
+lin mysophobia_N = mkN "mysophobia" "mysophobias" ;
+lin mysophobic_A = mkAMost "mysophobic" "mysophobicly" ;
+lin mysterious_A = mkAMost "mysterious" "mysteriously" ;
+lin mystery_N = mkN "mystery" "mysteries" ;
+lin mystic_A = mkAMost "mystic" "mysticly" ;
+lin mystic_N = mkN "mystic" "mystics" ;
+lin mystical_A = mkAMost "mystical" "mystically" ;
+lin mysticism_N = mkN "mysticism" "mysticisms" ;
+lin mystification_N = mkN "mystification" "mystifications" ;
+lin mystify_V = mkV "mystify" "mystified" "mystified" ;
+lin mystique_N = mkN "mystique" "mystiques" ;
+lin myth_N = mkN "myth" "myths" ;
+lin mythic_A = mkAMost "mythic" "mythicly" ;
+lin mythical_A = mkAMost "mythical" "mythically" ;
+lin mythological_A = mkAMost "mythological" "mythologically" ;
+lin mythologist_N = mkN "mythologist" "mythologists" ;
+lin mythologization_N = mkN "mythologization" "mythologizations" ;
+lin mythology_N = mkN "mythology" "mythologies" ;
+lin myxedema_N = mkN "myxedema" "myxedemas" ;
+lin myxobacteria_N = mkN "myxobacteria" "myxobacterias" ;
+lin myxoma_N = mkN "myxoma" "myxomas" ;
+lin myxomatosis_N = mkN "myxomatosis" "myxomatosises" ;
+lin myxosporidian_N = mkN "myxosporidian" "myxosporidians" ;
+lin myxovirus_N = mkN "myxovirus" "myxoviruses" ;
+lin mélange_N = mkN "mélange" "mélanges" ;
+lin ménage_N = mkN "ménage" "ménages" ;
+lin mésalliance_N = mkN "mésalliance" "mésalliances" ;
+lin métier_N = mkN "métier" "métiers" ;
+lin mêlée_N = mkN "mêlée" "mêlées" ;
+lin naafi_N = mkN "naafi" "naafis" ;
+lin nab_V = mkV "nab" "nabbed" "nabbed" ;
+lin nabob_N = mkN "nabob" "nabobs" ;
+lin naboom_N = mkN "naboom" "nabooms" ;
+lin nabumetone_N = mkN "nabumetone" "nabumetones" ;
+lin nacelle_N = mkN "nacelle" "nacelles" ;
+lin nacho_N = mkN "nacho" "nachoes" ;
+lin nacre_N = mkN "nacre" "nacres" ;
+lin nacreous_A = mkAMost "nacreous" "nacreously" ;
+lin nadir_N = mkN "nadir" "nadirs" ;
+lin nadolol_N = mkN "nadolol" "nadolols" ;
+lin nafcillin_N = mkN "nafcillin" "nafcillins" ;
+lin naff_V = mkV "naff" "naffed" "naffed" ;
+lin nag_N = mkN "nag" "nags" ;
+lin nag_V = mkV "nag" "nagged" "nagged" ;
+lin nagami_N = mkN "nagami" "nagamis" ;
+lin nagger_N = mkN "nagger" "naggers" ;
+lin nagi_N = mkN "nagi" "nagis" ;
+lin naiad_N = mkN "naiad" "naiads" ;
+lin naiant_A = mkAMost "naiant" "naiantly" ;
+lin naif_N = mkN "naif" "naifs" ;
+lin nail_N = mkN "nail" "nails" ;
+lin nail_V = mkV "nail" "nailed" "nailed" ;
+lin nail_polish_N = mkN "nail-polish" "nail-polishes" ;
+lin nail_varnish_N = mkN "nail-varnish" "nail-varnishes" ;
+lin nailbrush_N = mkN "nailbrush" "nailbrushes" ;
+lin nailer_N = mkN "nailer" "nailers" ;
+lin nailfile_N = mkN "nailfile" "nailfiles" ;
+lin nailhead_N = mkN "nailhead" "nailheads" ;
+lin nainsook_N = mkN "nainsook" "nainsooks" ;
+lin naira_N = mkN "naira" "nairas" ;
+lin naive_DUMMY_A = mkAMost "naive" "naively" ;
+lin naive_naiver_A = mkA "naive" "naiver" "naivest" "naively" ;
+lin naivety_N = mkN "naivety" "naiveties" ;
+lin naiveté_N = mkN "naiveté" "naivetés" ;
+lin naked_A = mkAMost "naked" "nakedly" ;
+lin nakedness_N = mkN "nakedness" "nakednesses" ;
+lin nakedwood_N = mkN "nakedwood" "nakedwoods" ;
+lin nalorphine_N = mkN "nalorphine" "nalorphines" ;
+lin naloxone_N = mkN "naloxone" "naloxones" ;
+lin naltrexone_N = mkN "naltrexone" "naltrexones" ;
+lin namby_pamby_A = mkAMost "namby-pamby" "namby-pambily" ;
+lin namby_pamby_N = mkN "namby-pamby" "namby-pambies" ;
+lin name_N = mkN "name" "names" ;
+lin name_V = mkV "name" "named" "named" ;
+lin name_day_N = mkN "name-day" "name-days" ;
+lin name_drop_V = mkV "name-drop" "name-dropped" "name-dropped" ;
+lin name_dropping_N = mkN "name-dropping" "name-droppings" ;
+lin name_part_N = mkN "name-part" "name-parts" ;
+lin nameko_N = mkN "nameko" "namekoes" ;
+lin nameless_A = mkAMost "nameless" "namelessly" ;
+lin namely_Adv = mkAdv "namely" ;
+lin nameplate_N = mkN "nameplate" "nameplates" ;
+lin namer_N = mkN "namer" "namers" ;
+lin namesake_N = mkN "namesake" "namesakes" ;
+lin naming_N = mkN "naming" "namings" ;
+lin nan_N = mkN "nan" "nans" ;
+lin nandrolone_N = mkN "nandrolone" "nandrolones" ;
+lin nankeen_N = mkN "nankeen" "nankeens" ;
+lin nanny_N = mkN "nanny" "nannies" ;
+lin nanny_goat_N = mkN "nanny-goat" "nanny-goats" ;
+lin nanogram_N = mkN "nanogram" "nanograms" ;
+lin nanometer_N = mkN "nanometer" "nanometers" ;
+lin nanomia_N = mkN "nanomia" "nanomias" ;
+lin nanophthalmos_N = mkN "nanophthalmos" "nanophthalmoses" ;
+lin nanosecond_N = mkN "nanosecond" "nanoseconds" ;
+lin nanotechnology_N = mkN "nanotechnology" "nanotechnologies" ;
+lin nanovolt_N = mkN "nanovolt" "nanovolts" ;
+lin nap_N = mkN "nap" "naps" ;
+lin nap_V = mkV "nap" "napped" "napped" ;
+lin napalm_N = mkN "napalm" "napalms" ;
+lin nape_N = mkN "nape" "napes" ;
+lin napery_N = mkN "napery" "naperies" ;
+lin naphazoline_N = mkN "naphazoline" "naphazolines" ;
+lin naphtha_N = mkN "naphtha" "naphthas" ;
+lin naphthalene_N = mkN "naphthalene" "naphthalenes" ;
+lin naphthol_N = mkN "naphthol" "naphthols" ;
+lin napkin_N = mkN "napkin" "napkins" ;
+lin napkin_ring_N = mkN "napkin-ring" "napkin-rings" ;
+lin napoleon_N = mkN "napoleon" "napoleons" ;
+lin napoleonic_A = mkAMost "napoleonic" "napoleonicly" ;
+lin nappy_N = mkN "nappy" "nappies" ;
+lin naprapath_N = mkN "naprapath" "naprapaths" ;
+lin naprapathy_N = mkN "naprapathy" "naprapathies" ;
+lin naproxen_N = mkN "naproxen" "naproxens" ;
+lin napu_N = mkN "napu" "napus" ;
+lin naranjilla_N = mkN "naranjilla" "naranjillas" ;
+lin narc_N = mkN "narc" "narcs" ;
+lin narcissism_N = mkN "narcissism" "narcissisms" ;
+lin narcissist_N = mkN "narcissist" "narcissists" ;
+lin narcissus_N = mkN "narcissus" "narcissuses" ;
+lin narcolepsy_N = mkN "narcolepsy" "narcolepsies" ;
+lin narcoleptic_A = mkAMost "narcoleptic" "narcolepticly" ;
+lin narcoleptic_N = mkN "narcoleptic" "narcoleptics" ;
+lin narcosis_N = mkN "narcosis" "narcosises" ;
+lin narcoterrorism_N = mkN "narcoterrorism" "narcoterrorisms" ;
+lin narcotic_A = mkAMost "narcotic" "narcoticly" ;
+lin narcotic_N = mkN "narcotic" "narcotics" ;
+lin nard_N = mkN "nard" "nards" ;
+lin nardoo_N = mkN "nardoo" "nardoos" ;
+lin narial_A = mkAMost "narial" "narially" ;
+lin naris_N = mkN "naris" "narises" ;
+lin nark_N = mkN "nark" "narks" ;
+lin nark_V = mkV "nark" "narked" "narked" ;
+lin narrate_V = mkV "narrate" "narrated" "narrated" ;
+lin narration_N = mkN "narration" "narrations" ;
+lin narrative_A = mkAMost "narrative" "narratively" ;
+lin narrative_N = mkN "narrative" "narratives" ;
+lin narrator_N = mkN "narrator" "narrators" ;
+lin narrow_A = mkA "narrow" "narrower" "narrowest" "narrowly" ;
+lin narrow_N = mkN "narrow" "narrows" ;
+lin narrow_V = mkV "narrow" "narrowed" "narrowed" ;
+lin narrow_minded_A = mkAMost "narrow-minded" "narrow-mindedly" ;
+lin narrow_mindedness_N = mkN "narrow-mindedness" "narrow-mindednesses" ;
+lin narrowing_N = mkN "narrowing" "narrowings" ;
+lin narrowness_N = mkN "narrowness" "narrownesses" ;
+lin narthex_N = mkN "narthex" "narthexes" ;
+lin narwhal_N = mkN "narwhal" "narwhals" ;
+lin nasal_A = mkAMost "nasal" "nasally" ;
+lin nasal_N = mkN "nasal" "nasals" ;
+lin nasality_N = mkN "nasality" "nasalities" ;
+lin nasalization_N = mkN "nasalization" "nasalizations" ;
+lin nasalize_V = mkV "nasalize" "nasalized" "nasalized" ;
+lin nascent_A = mkAMost "nascent" "nascently" ;
+lin nasion_N = mkN "nasion" "nasions" ;
+lin nasopharyngeal_A = mkAMost "nasopharyngeal" "nasopharyngeally" ;
+lin nasopharynx_N = mkN "nasopharynx" "nasopharynxes" ;
+lin nastiness_N = mkN "nastiness" "nastinesses" ;
+lin nasturtium_N = mkN "nasturtium" "nasturtiums" ;
+lin nasty_A = mkA "nasty" "nastier" "nastiest" "nastily" ;
+lin natal_A = mkAMost "natal" "natally" ;
+lin nation_N = mkN "nation" "nations" ;
+lin national_A = mkAMost "national" "nationally" ;
+lin national_N = mkN "national" "nationals" ;
+lin nationalism_N = mkN "nationalism" "nationalisms" ;
+lin nationalist_A = mkAMost "nationalist" "nationalistly" ;
+lin nationalist_N = mkN "nationalist" "nationalists" ;
+lin nationalistic_A = mkAMost "nationalistic" "nationalisticly" ;
+lin nationality_N = mkN "nationality" "nationalities" ;
+lin nationalization_N = mkN "nationalization" "nationalizations" ;
+lin nationalize_V = mkV "nationalize" "nationalized" "nationalized" ;
+lin nationhood_N = mkN "nationhood" "nationhoods" ;
+lin nationwide_A = mkAMost "nationwide" "nationwidely" ;
+lin nationwide_Adv = mkAdv "nationwide" ;
+lin native_A = mkAMost "native" "natively" ;
+lin native_N = mkN "native" "natives" ;
+lin nativeness_N = mkN "nativeness" "nativenesses" ;
+lin nativism_N = mkN "nativism" "nativisms" ;
+lin nativist_A = mkAMost "nativist" "nativistly" ;
+lin nativist_N = mkN "nativist" "nativists" ;
+lin nativity_N = mkN "nativity" "nativities" ;
+lin natriuresis_N = mkN "natriuresis" "natriuresises" ;
+lin natriuretic_A = mkAMost "natriuretic" "natriureticly" ;
+lin natrolite_N = mkN "natrolite" "natrolites" ;
+lin natter_V = mkV "natter" "nattered" "nattered" ;
+lin natterjack_N = mkN "natterjack" "natterjacks" ;
+lin natty_A = mkA "natty" "nattier" "nattiest" "nattily" ;
+lin natural_A = mkAMost "natural" "naturally" ;
+lin natural_N = mkN "natural" "naturals" ;
+lin naturalism_N = mkN "naturalism" "naturalisms" ;
+lin naturalist_N = mkN "naturalist" "naturalists" ;
+lin naturalistic_A = mkAMost "naturalistic" "naturalisticly" ;
+lin naturalization_N = mkN "naturalization" "naturalizations" ;
+lin naturalize_V = mkV "naturalize" "naturalized" "naturalized" ;
+lin naturalness_N = mkN "naturalness" "naturalnesses" ;
+lin nature_N = mkN "nature" "natures" ;
+lin naturism_N = mkN "naturism" "naturisms" ;
+lin naturist_N = mkN "naturist" "naturists" ;
+lin naturistic_A = mkAMost "naturistic" "naturisticly" ;
+lin naturopath_N = mkN "naturopath" "naturopaths" ;
+lin naturopathy_N = mkN "naturopathy" "naturopathies" ;
+lin naught_N = mkN "naught" "naughts" ;
+lin naughtiness_N = mkN "naughtiness" "naughtinesses" ;
+lin naughty_A = mkA "naughty" "naughtier" "naughtiest" "naughtily" ;
+lin naumachy_N = mkN "naumachy" "naumachies" ;
+lin nauruan_A = mkAMost "nauruan" "nauruanly" ;
+lin nauruan_N = mkN "nauruan" "nauruans" ;
+lin nausea_N = mkN "nausea" "nauseas" ;
+lin nauseate_V = mkV "nauseate" "nauseated" "nauseated" ;
+lin nauseating_A = mkAMost "nauseating" "nauseatingly" ;
+lin nauseous_A = mkAMost "nauseous" "nauseously" ;
+lin nautch_N = mkN "nautch" "nautches" ;
+lin nautch_girl_N = mkN "nautch-girl" "nautch-girls" ;
+lin nautical_A = mkAMost "nautical" "nautically" ;
+lin nautilus_N = mkN "nautilus" "nautiluses" ;
+lin naval_A = mkAMost "naval" "navally" ;
+lin nave_N = mkN "nave" "naves" ;
+lin navel_N = mkN "navel" "navels" ;
+lin navicular_A = mkAMost "navicular" "navicularly" ;
+lin navigability_N = mkN "navigability" "navigabilities" ;
+lin navigable_A = mkAMost "navigable" "navigably" ;
+lin navigate_V = mkV "navigate" "navigated" "navigated" ;
+lin navigation_N = mkN "navigation" "navigations" ;
+lin navigational_A = mkAMost "navigational" "navigationally" ;
+lin navigator_N = mkN "navigator" "navigators" ;
+lin navvy_N = mkN "navvy" "navvies" ;
+lin navy_N = mkN "navy" "navies" ;
+lin nawab_N = mkN "nawab" "nawabs" ;
+lin nay_Adv = mkAdv "nay" ;
+lin nay_N = mkN "nay" "nays" ;
+lin naysay_V = mkV "naysay" "naysayed" "naysayed" ;
+lin naysayer_N = mkN "naysayer" "naysayers" ;
+lin naysaying_N = mkN "naysaying" "naysayings" ;
+lin nazi_A = mkAMost "nazi" "nazily" ;
+lin nazi_N = mkN "nazi" "nazis" ;
+lin nazism_N = mkN "nazism" "nazisms" ;
+lin naïve_A = mkAMost "naïve" "naïvely" ;
+lin nco_N = mkN "nco" "ncoes" ;
+lin ne'er_Adv = mkAdv "ne'er" ;
+lin ne'er_do_well_N = mkN "ne'er-do-well" "ne'er-do-wells" ;
+lin ne_plus_ultra_N = mkN "ne plus ultra" "ne plus ultrae" ;
+lin neanderthal_A = mkAMost "neanderthal" "neanderthally" ;
+lin neap_N = mkN "neap" "neaps" ;
+lin neap_tide_N = mkN "neap-tide" "neap-tides" ;
+lin neapolitan_A = mkAMost "neapolitan" "neapolitanly" ;
+lin neapolitan_N = mkN "neapolitan" "neapolitans" ;
+lin near_A = mkA "near" "nearer" "nearest" "nearly" ;
+lin near_Adv = mkAdv "near" ;
+lin near_Prep = mkPrep "near" ;
+lin near_V = mkV "near" "neared" "neared" ;
+lin near_sighted_A = mkAMost "near-sighted" "near-sightedly" ;
+lin near_to_Prep = mkPrep "near to" ;
+lin nearby_A = mkAMost "nearby" "nearbily" ;
+lin nearby_Adv = mkAdv "nearby" ;
+lin nearer_Adv = mkAdv "nearer" ;
+lin nearer_Prep = mkPrep "nearer" ;
+lin nearest_Adv = mkAdv "nearest" ;
+lin nearest_Prep = mkPrep "nearest" ;
+lin nearness_N = mkN "nearness" "nearnesses" ;
+lin nearside_N = mkN "nearside" "nearsides" ;
+lin nearsighted_A = mkAMost "nearsighted" "nearsightedly" ;
+lin neat_A = mkA "neat" "neater" "neatest" "neatly" ;
+lin neatness_N = mkN "neatness" "neatnesses" ;
+lin nebbish_N = mkN "nebbish" "nebbishes" ;
+lin nebuchadnezzar_N = mkN "nebuchadnezzar" "nebuchadnezzars" ;
+lin nebula_N = mkN "nebula" "nebulas" ;
+lin nebular_A = mkAMost "nebular" "nebularly" ;
+lin nebule_N = mkN "nebule" "nebules" ;
+lin nebulous_A = mkAMost "nebulous" "nebulously" ;
+lin necessary_A = mkAMost "necessary" "necessarily" ;
+lin necessary_N = mkN "necessary" "necessaries" ;
+lin necessitarian_N = mkN "necessitarian" "necessitarians" ;
+lin necessitate_V = mkV "necessitate" "necessitated" "necessitated" ;
+lin necessitous_A = mkAMost "necessitous" "necessitously" ;
+lin necessity_N = mkN "necessity" "necessities" ;
+lin neck_N = mkN "neck" "necks" ;
+lin neck_V = mkV "neck" "necked" "necked" ;
+lin neckband_N = mkN "neckband" "neckbands" ;
+lin neckcloth_N = mkN "neckcloth" "neckcloths" ;
+lin necked_A = mkAMost "necked" "neckedly" ;
+lin necker_N = mkN "necker" "neckers" ;
+lin neckerchief_N = mkN "neckerchief" "neckerchiefs" ;
+lin necklace_N = mkN "necklace" "necklaces" ;
+lin neckless_A = mkAMost "neckless" "necklessly" ;
+lin necklet_N = mkN "necklet" "necklets" ;
+lin necklike_A = mkAMost "necklike" "necklikely" ;
+lin neckline_N = mkN "neckline" "necklines" ;
+lin neckpiece_N = mkN "neckpiece" "neckpieces" ;
+lin necktie_N = mkN "necktie" "neckties" ;
+lin neckwear_N = mkN "neckwear" "neckwears" ;
+lin necrobiosis_N = mkN "necrobiosis" "necrobiosises" ;
+lin necrology_N = mkN "necrology" "necrologies" ;
+lin necrolysis_N = mkN "necrolysis" "necrolysises" ;
+lin necromancer_N = mkN "necromancer" "necromancers" ;
+lin necromancy_N = mkN "necromancy" "necromancies" ;
+lin necromantic_A = mkAMost "necromantic" "necromanticly" ;
+lin necrophagia_N = mkN "necrophagia" "necrophagias" ;
+lin necrophilia_N = mkN "necrophilia" "necrophilias" ;
+lin necropolis_N = mkN "necropolis" "necropolises" ;
+lin necrosis_N = mkN "necrosis" "necrosises" ;
+lin necrotic_A = mkAMost "necrotic" "necroticly" ;
+lin nectar_N = mkN "nectar" "nectars" ;
+lin nectariferous_A = mkAMost "nectariferous" "nectariferously" ;
+lin nectarine_N = mkN "nectarine" "nectarines" ;
+lin nectary_N = mkN "nectary" "nectaries" ;
+lin need_N = mkN "need" "needs" ;
+lin need_V = mkV "need" "needed" "needed" ;
+lin needful_A = mkAMost "needful" "needfully" ;
+lin neediness_N = mkN "neediness" "needinesses" ;
+lin needle_N = mkN "needle" "needles" ;
+lin needle_V = mkV "needle" "needled" "needled" ;
+lin needlebush_N = mkN "needlebush" "needlebushes" ;
+lin needlecraft_N = mkN "needlecraft" "needlecrafts" ;
+lin needlefish_N = mkN "needlefish" "needlefishes" ;
+lin needlepoint_N = mkN "needlepoint" "needlepoints" ;
+lin needless_A = mkAMost "needless" "needlessly" ;
+lin needlewoman_N = mkN "needlewoman" "needlewomen" ;
+lin needlewood_N = mkN "needlewood" "needlewoods" ;
+lin needlework_N = mkN "needlework" "needleworks" ;
+lin needleworker_N = mkN "needleworker" "needleworkers" ;
+lin needs_Adv = mkAdv "needs" ;
+lin needy_A = mkA "needy" "needier" "neediest" "needily" ;
+lin needy_N = mkN "needy" "needies" ;
+lin neem_N = mkN "neem" "neems" ;
+lin neencephalon_N = mkN "neencephalon" "neencephalons" ;
+lin nefarious_A = mkAMost "nefarious" "nefariously" ;
+lin nefariousness_N = mkN "nefariousness" "nefariousnesses" ;
+lin nefazodone_N = mkN "nefazodone" "nefazodones" ;
+lin negate_V = mkV "negate" "negated" "negated" ;
+lin negation_N = mkN "negation" "negations" ;
+lin negative_A = mkAMost "negative" "negatively" ;
+lin negative_N = mkN "negative" "negatives" ;
+lin negative_V = mkV "negative" "negatived" "negatived" ;
+lin negativist_N = mkN "negativist" "negativists" ;
+lin negativity_N = mkN "negativity" "negativities" ;
+lin neglect_N = mkN "neglect" "neglects" ;
+lin neglect_V = mkV "neglect" "neglected" "neglected" ;
+lin neglecter_N = mkN "neglecter" "neglecters" ;
+lin neglectful_A = mkAMost "neglectful" "neglectfully" ;
+lin neglectfulness_N = mkN "neglectfulness" "neglectfulnesses" ;
+lin negligee_N = mkN "negligee" "negligees" ;
+lin negligence_N = mkN "negligence" "negligences" ;
+lin negligent_A = mkAMost "negligent" "negligently" ;
+lin negligible_A = mkAMost "negligible" "negligibly" ;
+lin negotiable_A = mkAMost "negotiable" "negotiably" ;
+lin negotiate_V = mkV "negotiate" "negotiated" "negotiated" ;
+lin negotiation_N = mkN "negotiation" "negotiations" ;
+lin negotiator_N = mkN "negotiator" "negotiators" ;
+lin negotiatress_N = mkN "negotiatress" "negotiatresses" ;
+lin negress_N = mkN "negress" "negresses" ;
+lin negro_A = mkA "negro" "negroer" "negroest" "negroly" ;
+lin negro_N = mkN "negro" "negroes" ;
+lin negroid_A = mkAMost "negroid" "negroidly" ;
+lin negroid_N = mkN "negroid" "negroids" ;
+lin negus_N = mkN "negus" "neguses" ;
+lin neigh_N = mkN "neigh" "neighs" ;
+lin neigh_V = mkV "neigh" "neighed" "neighed" ;
+lin neighbor_N = mkN "neighbor" "neighbors" ;
+lin neighbor_V = mkV "neighbor" "neighbored" "neighbored" ;
+lin neighborhood_N = mkN "neighborhood" "neighborhoods" ;
+lin neighborliness_N = mkN "neighborliness" "neighborlinesses" ;
+lin neighborly_A = mkAMost "neighborly" "neighborlily" ;
+lin neighbour_N = mkN "neighbour" "neighbours" ;
+lin neighbour_V = mkV "neighbour" "neighboured" "neighboured" ;
+lin neighbourhood_N = mkN "neighbourhood" "neighbourhoods" ;
+lin neighbourliness_N = mkN "neighbourliness" "neighbourlinesses" ;
+lin neighbourly_A = mkAMost "neighbourly" "neighbourlily" ;
+lin neither_A = mkAMost "neither" "neitherly" ;
+lin neither_Adv = mkAdv "neither" ;
+lin neither_Prep = mkPrep "neither" ;
+lin nekton_N = mkN "nekton" "nektons" ;
+lin nelfinavir_N = mkN "nelfinavir" "nelfinavirs" ;
+lin nelly_N = mkN "nelly" "IRREG" ;
+lin nelson_N = mkN "nelson" "nelsons" ;
+lin nem_con_Adv = mkAdv "nem con" ;
+lin nematode_N = mkN "nematode" "nematodes" ;
+lin nemesis_N = mkN "nemesis" "nemeses" ;
+lin nemophila_N = mkN "nemophila" "nemophilas" ;
+lin neo_A = mkA "neo" "neoer" "neoest" "neoly" ;
+lin neoclassic_A = mkAMost "neoclassic" "neoclassicly" ;
+lin neoclassicism_N = mkN "neoclassicism" "neoclassicisms" ;
+lin neoclassicist_A = mkAMost "neoclassicist" "neoclassicistly" ;
+lin neoclassicist_N = mkN "neoclassicist" "neoclassicists" ;
+lin neocolonialism_N = mkN "neocolonialism" "neocolonialisms" ;
+lin neoconservatism_N = mkN "neoconservatism" "neoconservatisms" ;
+lin neoconservative_N = mkN "neoconservative" "neoconservatives" ;
+lin neocortical_A = mkAMost "neocortical" "neocortically" ;
+lin neodymium_N = mkN "neodymium" "neodymiums" ;
+lin neoexpressionism_N = mkN "neoexpressionism" "neoexpressionisms" ;
+lin neoliberal_A = mkAMost "neoliberal" "neoliberally" ;
+lin neoliberal_N = mkN "neoliberal" "neoliberals" ;
+lin neoliberalism_N = mkN "neoliberalism" "neoliberalisms" ;
+lin neolith_N = mkN "neolith" "neoliths" ;
+lin neolithic_A = mkAMost "neolithic" "neolithicly" ;
+lin neologism_N = mkN "neologism" "neologisms" ;
+lin neologist_N = mkN "neologist" "neologists" ;
+lin neomycin_N = mkN "neomycin" "neomycins" ;
+lin neon_N = mkN "neon" "neons" ;
+lin neonatal_A = mkAMost "neonatal" "neonatally" ;
+lin neonate_N = mkN "neonate" "neonates" ;
+lin neonatology_N = mkN "neonatology" "neonatologies" ;
+lin neopallium_N = mkN "neopallium" "neopalliums" ;
+lin neophobia_N = mkN "neophobia" "neophobias" ;
+lin neophyte_N = mkN "neophyte" "neophytes" ;
+lin neoplasia_N = mkN "neoplasia" "neoplasias" ;
+lin neoplasm_N = mkN "neoplasm" "neoplasms" ;
+lin neoplastic_A = mkAMost "neoplastic" "neoplasticly" ;
+lin neoprene_N = mkN "neoprene" "neoprenes" ;
+lin neoromanticism_N = mkN "neoromanticism" "neoromanticisms" ;
+lin neostigmine_N = mkN "neostigmine" "neostigmines" ;
+lin neotenic_A = mkAMost "neotenic" "neotenicly" ;
+lin neoteny_N = mkN "neoteny" "neotenies" ;
+lin neotony_N = mkN "neotony" "neotonies" ;
+lin nepalese_A = mkAMost "nepalese" "nepalesely" ;
+lin nepalese_N = mkN "nepalese" "nepalese" ;
+lin nepali_A = mkAMost "nepali" "nepalily" ;
+lin nepali_N = mkN "nepali" "nepalis" ;
+lin nepheline_N = mkN "nepheline" "nephelines" ;
+lin nephelinite_N = mkN "nephelinite" "nephelinites" ;
+lin nephew_N = mkN "nephew" "nephews" ;
+lin nephology_N = mkN "nephology" "nephologies" ;
+lin nephoscope_N = mkN "nephoscope" "nephoscopes" ;
+lin nephralgia_N = mkN "nephralgia" "nephralgias" ;
+lin nephrectomy_N = mkN "nephrectomy" "nephrectomies" ;
+lin nephrite_N = mkN "nephrite" "nephrites" ;
+lin nephritic_A = mkAMost "nephritic" "nephriticly" ;
+lin nephritis_N = mkN "nephritis" "nephritises" ;
+lin nephrocalcinosis_N = mkN "nephrocalcinosis" "nephrocalcinosises" ;
+lin nephrolithiasis_N = mkN "nephrolithiasis" "nephrolithiasises" ;
+lin nephrology_N = mkN "nephrology" "nephrologies" ;
+lin nephron_N = mkN "nephron" "nephrons" ;
+lin nephroptosis_N = mkN "nephroptosis" "nephroptosises" ;
+lin nephrosclerosis_N = mkN "nephrosclerosis" "nephrosclerosises" ;
+lin nephrotomy_N = mkN "nephrotomy" "nephrotomies" ;
+lin nephrotoxic_A = mkAMost "nephrotoxic" "nephrotoxicly" ;
+lin nephrotoxin_N = mkN "nephrotoxin" "nephrotoxins" ;
+lin nephthytis_N = mkN "nephthytis" "nephthytises" ;
+lin nepotism_N = mkN "nepotism" "nepotisms" ;
+lin nepotist_N = mkN "nepotist" "nepotists" ;
+lin neptunium_N = mkN "neptunium" "neptuniums" ;
+lin nerd_N = mkN "nerd" "nerds" ;
+lin nerd_V = mkV "nerd" "nerded" "nerded" ;
+lin nereid_N = mkN "nereid" "nereids" ;
+lin nerita_N = mkN "nerita" "neritas" ;
+lin neritic_A = mkAMost "neritic" "neriticly" ;
+lin neritid_N = mkN "neritid" "neritids" ;
+lin neritina_N = mkN "neritina" "neritinas" ;
+lin nerve_N = mkN "nerve" "nerves" ;
+lin nerve_V = mkV "nerve" "nerved" "nerved" ;
+lin nerve_cell_N = mkN "nerve-cell" "nerve-cells" ;
+lin nerve_centre_N = mkN "nerve-centre" "nerve-centres" ;
+lin nerve_racking_A = mkAMost "nerve-racking" "nerve-rackingly" ;
+lin nerveless_A = mkAMost "nerveless" "nervelessly" ;
+lin nerves_N = mkN "nerves" "nerveses" ;
+lin nervous_A = mkAMost "nervous" "nervously" ;
+lin nervousness_N = mkN "nervousness" "nervousnesses" ;
+lin nervy_A = mkAMost "nervy" "nervily" ;
+lin nescience_N = mkN "nescience" "nesciences" ;
+lin nescient_A = mkAMost "nescient" "nesciently" ;
+lin ness_N = mkN "ness" "nesses" ;
+lin nest_N = mkN "nest" "nests" ;
+lin nest_V = mkV "nest" "nested" "nested" ;
+lin nest_egg_N = mkN "nest-egg" "nest-eggs" ;
+lin nester_N = mkN "nester" "nesters" ;
+lin nestle_V = mkV "nestle" "nestled" "nestled" ;
+lin nestling_N = mkN "nestling" "nestlings" ;
+lin net_A = mkAMost "net" "netly" ;
+lin net_N = mkN "net" "nets" ;
+lin net_V = mkV "net" "netted" "netted" ;
+lin netball_N = mkN "netball" "netballs" ;
+lin nether_A = mkAMost "nether" "netherly" ;
+lin netherlander_N = mkN "netherlander" "netherlanders" ;
+lin nethermost_A = mkAMost "nethermost" "nethermostly" ;
+lin nett_A = mkAMost "nett" "nettly" ;
+lin nett_V = mkV "nett" "netted" "netted" ;
+lin netting_N = mkN "netting" "nettings" ;
+lin nettle_N = mkN "nettle" "nettles" ;
+lin nettle_V = mkV "nettle" "nettled" "nettled" ;
+lin nettlerash_N = mkN "nettlerash" "nettlerashes" ;
+lin network_N = mkN "network" "networks" ;
+lin networklike_A = mkAMost "networklike" "networklikely" ;
+lin neural_A = mkAMost "neural" "neurally" ;
+lin neuralgia_N = mkN "neuralgia" "neuralgias" ;
+lin neuralgic_A = mkAMost "neuralgic" "neuralgicly" ;
+lin neurasthenia_N = mkN "neurasthenia" "neurasthenias" ;
+lin neurasthenic_A = mkAMost "neurasthenic" "neurasthenicly" ;
+lin neurasthenic_N = mkN "neurasthenic" "neurasthenics" ;
+lin neurectomy_N = mkN "neurectomy" "neurectomies" ;
+lin neurinoma_N = mkN "neurinoma" "neurinomas" ;
+lin neuritis_N = mkN "neuritis" "neuritises" ;
+lin neuroanatomic_A = mkAMost "neuroanatomic" "neuroanatomicly" ;
+lin neuroanatomy_N = mkN "neuroanatomy" "neuroanatomies" ;
+lin neurobiological_A = mkAMost "neurobiological" "neurobiologically" ;
+lin neurobiological_Adv = mkAdv "neurobiological" ;
+lin neurobiologist_N = mkN "neurobiologist" "neurobiologists" ;
+lin neurobiology_N = mkN "neurobiology" "neurobiologies" ;
+lin neuroblast_N = mkN "neuroblast" "neuroblasts" ;
+lin neuroblastoma_N = mkN "neuroblastoma" "neuroblastomas" ;
+lin neurochemical_N = mkN "neurochemical" "neurochemicals" ;
+lin neurodermatitis_N = mkN "neurodermatitis" "neurodermatitises" ;
+lin neuroendocrine_A = mkAMost "neuroendocrine" "neuroendocrinely" ;
+lin neuroepithelioma_N = mkN "neuroepithelioma" "neuroepitheliomas" ;
+lin neuroepithelium_N = mkN "neuroepithelium" "neuroepitheliums" ;
+lin neuroethics_N = mkN "neuroethics" "neuroethicses" ;
+lin neurofibroma_N = mkN "neurofibroma" "neurofibromas" ;
+lin neurofibromatosis_N = mkN "neurofibromatosis" "neurofibromatosises" ;
+lin neurogenesis_N = mkN "neurogenesis" "neurogenesises" ;
+lin neurogenic_A = mkAMost "neurogenic" "neurogenicly" ;
+lin neuroglia_N = mkN "neuroglia" "neuroglias" ;
+lin neurogliacyte_N = mkN "neurogliacyte" "neurogliacytes" ;
+lin neuroglial_A = mkAMost "neuroglial" "neuroglially" ;
+lin neurohormone_N = mkN "neurohormone" "neurohormones" ;
+lin neurolemma_N = mkN "neurolemma" "neurolemmas" ;
+lin neurolinguist_N = mkN "neurolinguist" "neurolinguists" ;
+lin neurolinguistics_N = mkN "neurolinguistics" "neurolinguisticses" ;
+lin neurological_A = mkAMost "neurological" "neurologically" ;
+lin neurologist_N = mkN "neurologist" "neurologists" ;
+lin neurology_N = mkN "neurology" "neurologies" ;
+lin neuroma_N = mkN "neuroma" "neuromas" ;
+lin neuromatous_A = mkAMost "neuromatous" "neuromatously" ;
+lin neuromotor_A = mkAMost "neuromotor" "neuromotorly" ;
+lin neuromuscular_A = mkAMost "neuromuscular" "neuromuscularly" ;
+lin neuropathy_N = mkN "neuropathy" "neuropathies" ;
+lin neurophysiological_A = mkAMost "neurophysiological" "neurophysiologically" ;
+lin neurophysiology_N = mkN "neurophysiology" "neurophysiologies" ;
+lin neuropil_N = mkN "neuropil" "neuropils" ;
+lin neuroplasty_N = mkN "neuroplasty" "neuroplasties" ;
+lin neuropsychiatric_A = mkAMost "neuropsychiatric" "neuropsychiatricly" ;
+lin neuropsychiatry_N = mkN "neuropsychiatry" "neuropsychiatries" ;
+lin neuropsychological_A = mkAMost "neuropsychological" "neuropsychologically" ;
+lin neuropteron_N = mkN "neuropteron" "neuropterons" ;
+lin neurosarcoma_N = mkN "neurosarcoma" "neurosarcomas" ;
+lin neuroscience_N = mkN "neuroscience" "neurosciences" ;
+lin neuroscientist_N = mkN "neuroscientist" "neuroscientists" ;
+lin neurosis_N = mkN "neurosis" "neuroses" ;
+lin neurosurgeon_N = mkN "neurosurgeon" "neurosurgeons" ;
+lin neurosurgery_N = mkN "neurosurgery" "neurosurgeries" ;
+lin neurosyphilis_N = mkN "neurosyphilis" "neurosyphilises" ;
+lin neurotic_A = mkAMost "neurotic" "neuroticly" ;
+lin neurotic_N = mkN "neurotic" "neurotics" ;
+lin neurotically_Adv = mkAdv "neurotically" ;
+lin neurotoxic_A = mkAMost "neurotoxic" "neurotoxicly" ;
+lin neurotoxin_N = mkN "neurotoxin" "neurotoxins" ;
+lin neurotransmitter_N = mkN "neurotransmitter" "neurotransmitters" ;
+lin neurotropic_A = mkAMost "neurotropic" "neurotropicly" ;
+lin neurotropism_N = mkN "neurotropism" "neurotropisms" ;
+lin neuter_A = mkAMost "neuter" "neuterly" ;
+lin neuter_N = mkN "neuter" "neuters" ;
+lin neuter_V = mkV "neuter" "neutered" "neutered" ;
+lin neutering_N = mkN "neutering" "neuterings" ;
+lin neutral_A = mkAMost "neutral" "neutrally" ;
+lin neutral_N = mkN "neutral" "neutrals" ;
+lin neutralism_N = mkN "neutralism" "neutralisms" ;
+lin neutralist_N = mkN "neutralist" "neutralists" ;
+lin neutrality_N = mkN "neutrality" "neutralities" ;
+lin neutralization_N = mkN "neutralization" "neutralizations" ;
+lin neutralize_V = mkV "neutralize" "neutralized" "neutralized" ;
+lin neutrino_N = mkN "neutrino" "neutrinoes" ;
+lin neutron_N = mkN "neutron" "neutrons" ;
+lin neutropenia_N = mkN "neutropenia" "neutropenias" ;
+lin neutrophil_N = mkN "neutrophil" "neutrophils" ;
+lin neve_N = mkN "neve" "neves" ;
+lin never_Adv = mkAdv "never" ;
+lin nevermore_Adv = mkAdv "nevermore" ;
+lin nevertheless_Adv = mkAdv "nevertheless" ;
+lin nevirapine_N = mkN "nevirapine" "nevirapines" ;
+lin new_A = mkA "new" "newer" "newest" "newly" ;
+lin new_Adv = mkAdv "new" ;
+lin newborn_A = mkAMost "newborn" "newbornly" ;
+lin newcomer_N = mkN "newcomer" "newcomers" ;
+lin newel_N = mkN "newel" "newels" ;
+lin newfangled_A = mkAMost "newfangled" "newfangledly" ;
+lin newfound_A = mkAMost "newfound" "newfoundly" ;
+lin newlywed_N = mkN "newlywed" "newlyweds" ;
+lin newmarket_N = mkN "newmarket" "newmarkets" ;
+lin newness_N = mkN "newness" "newnesses" ;
+lin news_N = mkN "news" "newses" ;
+lin newsagent_N = mkN "newsagent" "newsagents" ;
+lin newsboy_N = mkN "newsboy" "newsboys" ;
+lin newscast_N = mkN "newscast" "newscasts" ;
+lin newscaster_N = mkN "newscaster" "newscasters" ;
+lin newsdealer_N = mkN "newsdealer" "newsdealers" ;
+lin newsflash_N = mkN "newsflash" "newsflashes" ;
+lin newsless_A = mkAMost "newsless" "newslessly" ;
+lin newsletter_N = mkN "newsletter" "newsletters" ;
+lin newsmonger_N = mkN "newsmonger" "newsmongers" ;
+lin newspaper_N = mkN "newspaper" "newspapers" ;
+lin newspapering_N = mkN "newspapering" "newspaperings" ;
+lin newspaperman_N = mkN "newspaperman" "newspapermen" ;
+lin newspeak_N = mkN "newspeak" "newspeaks" ;
+lin newsprint_N = mkN "newsprint" "newsprints" ;
+lin newsreader_N = mkN "newsreader" "newsreaders" ;
+lin newsreel_N = mkN "newsreel" "newsreels" ;
+lin newsroom_N = mkN "newsroom" "newsrooms" ;
+lin newssheet_N = mkN "newssheet" "newssheets" ;
+lin newsstand_N = mkN "newsstand" "newsstands" ;
+lin newsvendor_N = mkN "newsvendor" "newsvendors" ;
+lin newswoman_N = mkN "newswoman" "newswomans" ;
+lin newsworthiness_N = mkN "newsworthiness" "newsworthinesses" ;
+lin newsworthy_A = mkAMost "newsworthy" "newsworthily" ;
+lin newsy_A = mkA "newsy" "newsier" "newsiest" "newsily" ;
+lin newt_N = mkN "newt" "newts" ;
+lin newton_N = mkN "newton" "newtons" ;
+lin newtonian_A = mkAMost "newtonian" "newtonianly" ;
+lin newtonian_N = mkN "newtonian" "newtonians" ;
+lin next_A = mkAMost "next" "next" ;
+lin next_N = mkN "next" "next" ;
+lin next_Prep = mkPrep "next" ;
+lin next_to_Prep = mkPrep "next to" ;
+lin nexus_N = mkN "nexus" "nexuses" ;
+lin ngultrum_N = mkN "ngultrum" "ngultrums" ;
+lin ngwee_N = mkN "ngwee" "ngwees" ;
+lin nhs_N = mkN "nhs" "nhses" ;
+lin niacin_N = mkN "niacin" "niacins" ;
+lin nib_N = mkN "nib" "nibs" ;
+lin nibbed_A = mkAMost "nibbed" "nibbedly" ;
+lin nibble_N = mkN "nibble" "nibbles" ;
+lin nibble_V = mkV "nibble" "nibbled" "nibbled" ;
+lin nibbler_N = mkN "nibbler" "nibblers" ;
+lin niblick_N = mkN "niblick" "niblicks" ;
+lin nicad_N = mkN "nicad" "nicads" ;
+lin nicaraguan_A = mkAMost "nicaraguan" "nicaraguanly" ;
+lin nicaraguan_N = mkN "nicaraguan" "nicaraguans" ;
+lin nice_A = mkA "nice" "nicer" "nicest" "nicely" ;
+lin niceness_N = mkN "niceness" "nicenesses" ;
+lin nicety_N = mkN "nicety" "niceties" ;
+lin niche_N = mkN "niche" "niches" ;
+lin nick_N = mkN "nick" "nicks" ;
+lin nick_V = mkV "nick" "nicked" "nicked" ;
+lin nickel_N = mkN "nickel" "nickels" ;
+lin nickel_V = mkV "nickel" "nickelled" "nickelled" ;
+lin nicknack_N = mkN "nicknack" "nicknacks" ;
+lin nickname_N = mkN "nickname" "nicknames" ;
+lin nickname_V = mkV "nickname" "nicknamed" "nicknamed" ;
+lin nicotine_N = mkN "nicotine" "nicotines" ;
+lin nidicolous_A = mkAMost "nidicolous" "nidicolously" ;
+lin nidifugous_A = mkAMost "nidifugous" "nidifugously" ;
+lin nidus_N = mkN "nidus" "niduses" ;
+lin niece_N = mkN "niece" "nieces" ;
+lin nifedipine_N = mkN "nifedipine" "nifedipines" ;
+lin niff_N = mkN "niff" "niffs" ;
+lin niffy_A = mkA "niffy" "niffier" "niffiest" "niffily" ;
+lin nifty_A = mkA "nifty" "niftier" "niftiest" "niftily" ;
+lin nigella_N = mkN "nigella" "nigellas" ;
+lin nigerian_A = mkAMost "nigerian" "nigerianly" ;
+lin nigerian_N = mkN "nigerian" "nigerians" ;
+lin nigerien_A = mkAMost "nigerien" "nigerienly" ;
+lin nigerien_N = mkN "nigerien" "nigeriens" ;
+lin niggard_N = mkN "niggard" "niggards" ;
+lin niggardliness_N = mkN "niggardliness" "niggardlinesses" ;
+lin niggardly_A = mkAMost "niggardly" "niggardlily" ;
+lin nigger_N = mkN "nigger" "niggers" ;
+lin niggle_V = mkV "niggle" "niggled" "niggled" ;
+lin nigh_Adv = mkAdv "nigh" ;
+lin nigher_Adv = mkAdv "nigher" ;
+lin nighest_Adv = mkAdv "nighest" ;
+lin night_N = mkN "night" "nights" ;
+lin night_bell_N = mkN "night-bell" "night-bells" ;
+lin night_bird_N = mkN "night-bird" "night-birds" ;
+lin night_light_N = mkN "night-light" "night-lights" ;
+lin night_line_N = mkN "night-line" "night-lines" ;
+lin night_porter_N = mkN "night-porter" "night-porters" ;
+lin night_soil_N = mkN "night-soil" "night-soils" ;
+lin night_stop_N = mkN "night-stop" "night-stops" ;
+lin night_time_N = mkN "night-time" "night-times" ;
+lin night_watch_N = mkN "night-watch" "night-watches" ;
+lin night_watchman_N = mkN "night-watchman" "night-watchmen" ;
+lin nightcap_N = mkN "nightcap" "nightcaps" ;
+lin nightclub_N = mkN "nightclub" "nightclubs" ;
+lin nightdress_N = mkN "nightdress" "nightdresses" ;
+lin nightfall_N = mkN "nightfall" "nightfalls" ;
+lin nightgown_N = mkN "nightgown" "nightgowns" ;
+lin nighthawk_N = mkN "nighthawk" "nighthawks" ;
+lin nightie_N = mkN "nightie" "nighties" ;
+lin nightingale_N = mkN "nightingale" "nightingales" ;
+lin nightjar_N = mkN "nightjar" "nightjars" ;
+lin nightlife_N = mkN "nightlife" "nightlifes" ;
+lin nightlong_A = mkAMost "nightlong" "nightlongly" ;
+lin nightly_A = mkAMost "nightly" "nightlily" ;
+lin nightly_Adv = mkAdv "nightly" ;
+lin nightmare_N = mkN "nightmare" "nightmares" ;
+lin nightmarish_A = mkAMost "nightmarish" "nightmarishly" ;
+lin nightshade_N = mkN "nightshade" "nightshades" ;
+lin nightshirt_N = mkN "nightshirt" "nightshirts" ;
+lin nightwear_N = mkN "nightwear" "nightwears" ;
+lin nightwork_N = mkN "nightwork" "nightworks" ;
+lin nihil_N = mkN "nihil" "nihils" ;
+lin nihilism_N = mkN "nihilism" "nihilisms" ;
+lin nihilist_N = mkN "nihilist" "nihilists" ;
+lin nihilistic_A = mkAMost "nihilistic" "nihilisticly" ;
+lin nil_N = mkN "nil" "nils" ;
+lin nilgai_N = mkN "nilgai" "nilgais" ;
+lin nilotic_A = mkAMost "nilotic" "niloticly" ;
+lin nilpotent_A = mkAMost "nilpotent" "nilpotently" ;
+lin nim_N = mkN "nim" "nims" ;
+lin nimble_A = mkA "nimble" "nimbler" "nimblest" "nimbly" ;
+lin nimbleness_N = mkN "nimbleness" "nimblenesses" ;
+lin nimblewill_N = mkN "nimblewill" "nimblewills" ;
+lin nimbus_N = mkN "nimbus" "nimbuses" ;
+lin niminy_piminy_A = mkAMost "niminy-piminy" "niminy-piminily" ;
+lin nincompoop_N = mkN "nincompoop" "nincompoops" ;
+lin ninefold_A = mkAMost "ninefold" "ninefoldly" ;
+lin ninefold_Adv = mkAdv "ninefold" ;
+lin ninepence_N = mkN "ninepence" "ninepences" ;
+lin ninepenny_A = mkAMost "ninepenny" "ninepennily" ;
+lin ninepin_N = mkN "ninepin" "ninepins" ;
+lin ninepins_N = mkN "ninepins" "ninepins" ;
+lin ninja_N = mkN "ninja" "ninjas" ;
+lin ninjutsu_N = mkN "ninjutsu" "ninjutsus" ;
+lin ninny_N = mkN "ninny" "ninnies" ;
+lin ninon_N = mkN "ninon" "ninons" ;
+lin ninth_A = mkA "ninth" "ninther" "ninthest" "ninthly" ;
+lin ninth_N = mkN "ninth" "ninths" ;
+lin niobite_N = mkN "niobite" "niobites" ;
+lin niobium_N = mkN "niobium" "niobiums" ;
+lin nip_N = mkN "nip" "nips" ;
+lin nip_V = mkV "nip" "nipped" "nipped" ;
+lin nipa_N = mkN "nipa" "nipas" ;
+lin nipper_N = mkN "nipper" "nippers" ;
+lin nipple_N = mkN "nipple" "nipples" ;
+lin nipponese_A = mkAMost "nipponese" "nipponesely" ;
+lin nippy_A = mkA "nippy" "nippier" "nippiest" "nippily" ;
+lin niqaabi_N = mkN "niqaabi" "niqaabis" ;
+lin niqab_N = mkN "niqab" "niqabs" ;
+lin nirvana_N = mkN "nirvana" "nirvanas" ;
+lin nisi_A = mkAMost "nisi" "nisily" ;
+lin nit_N = mkN "nit" "nits" ;
+lin nitpicker_N = mkN "nitpicker" "nitpickers" ;
+lin nitrate_N = mkN "nitrate" "nitrates" ;
+lin nitrazepam_N = mkN "nitrazepam" "nitrazepams" ;
+lin nitre_N = mkN "nitre" "nitres" ;
+lin nitric_A = mkAMost "nitric" "nitricly" ;
+lin nitride_N = mkN "nitride" "nitrides" ;
+lin nitrification_N = mkN "nitrification" "nitrifications" ;
+lin nitrile_N = mkN "nitrile" "nitriles" ;
+lin nitrite_N = mkN "nitrite" "nitrites" ;
+lin nitrobacterium_N = mkN "nitrobacterium" "nitrobacteriums" ;
+lin nitrobenzene_N = mkN "nitrobenzene" "nitrobenzenes" ;
+lin nitrocalcite_N = mkN "nitrocalcite" "nitrocalcites" ;
+lin nitrochalk_N = mkN "nitrochalk" "nitrochalks" ;
+lin nitrochloromethane_N = mkN "nitrochloromethane" "nitrochloromethanes" ;
+lin nitrofuran_N = mkN "nitrofuran" "nitrofurans" ;
+lin nitrofurantoin_N = mkN "nitrofurantoin" "nitrofurantoins" ;
+lin nitrogen_N = mkN "nitrogen" "nitrogens" ;
+lin nitrogenase_N = mkN "nitrogenase" "nitrogenases" ;
+lin nitrogenous_A = mkAMost "nitrogenous" "nitrogenously" ;
+lin nitroglycerin_N = mkN "nitroglycerin" "nitroglycerins" ;
+lin nitroglycerine_N = mkN "nitroglycerine" "nitroglycerines" ;
+lin nitrosobacteria_N = mkN "nitrosobacteria" "nitrosobacterias" ;
+lin nitrous_A = mkAMost "nitrous" "nitrously" ;
+lin nitty_gritty_N = mkN "nitty-gritty" "nitty-gritties" ;
+lin nitwit_N = mkN "nitwit" "nitwits" ;
+lin nitwitted_A = mkAMost "nitwitted" "nitwittedly" ;
+lin nix_N = mkN "nix" "nixes" ;
+lin nix_V = mkV "nix" "nixed" "nixed" ;
+lin no_ball_N = mkN "no-ball" "no-balls" ;
+lin no_go_A = mkAMost "no-go" "no-goly" ;
+lin no_man's_land_N = mkN "no-man's-land" "no-man's-lands" ;
+lin nob_N = mkN "nob" "nobs" ;
+lin nobble_V = mkV "nobble" "nobbled" "nobbled" ;
+lin nobelium_N = mkN "nobelium" "nobeliums" ;
+lin nobility_N = mkN "nobility" "nobilities" ;
+lin noble_A = mkA "noble" "nobler" "noblest" "nobly" ;
+lin noble_N = mkN "noble" "nobles" ;
+lin noble_mindedness_N = mkN "noble-mindedness" "noble-mindednesses" ;
+lin nobleman_N = mkN "nobleman" "noblemen" ;
+lin noblesse_N = mkN "noblesse" "IRREG" ;
+lin noblesse_oblige_N = mkN "noblesse oblige" "noblesse obliges" ;
+lin nocent_A = mkAMost "nocent" "nocently" ;
+lin nociceptive_A = mkAMost "nociceptive" "nociceptively" ;
+lin noctambulist_N = mkN "noctambulist" "noctambulists" ;
+lin noctiluca_N = mkN "noctiluca" "noctilucas" ;
+lin noctilucent_A = mkAMost "noctilucent" "noctilucently" ;
+lin nocturia_N = mkN "nocturia" "nocturias" ;
+lin nocturnal_A = mkAMost "nocturnal" "nocturnally" ;
+lin nocturne_N = mkN "nocturne" "nocturnes" ;
+lin nod_N = mkN "nod" "nods" ;
+lin nod_V = mkV "nod" "nodded" "nodded" ;
+lin noddle_N = mkN "noddle" "noddles" ;
+lin node_N = mkN "node" "nodes" ;
+lin nodular_A = mkAMost "nodular" "nodularly" ;
+lin nodulated_A = mkAMost "nodulated" "nodulatedly" ;
+lin nodule_N = mkN "nodule" "nodules" ;
+lin nodulose_A = mkAMost "nodulose" "nodulosely" ;
+lin noel_N = mkN "noel" "noels" ;
+lin nog_N = mkN "nog" "nogs" ;
+lin noggin_N = mkN "noggin" "noggins" ;
+lin nogging_N = mkN "nogging" "noggings" ;
+lin nohow_Adv = mkAdv "nohow" ;
+lin noise_N = mkN "noise" "noises" ;
+lin noise_V = mkV "noise" "noised" "noised" ;
+lin noiseless_A = mkAMost "noiseless" "noiselessly" ;
+lin noiselessness_N = mkN "noiselessness" "noiselessnesses" ;
+lin noisemaker_N = mkN "noisemaker" "noisemakers" ;
+lin noisiness_N = mkN "noisiness" "noisinesses" ;
+lin noisome_A = mkAMost "noisome" "noisomely" ;
+lin noisy_A = mkA "noisy" "noisier" "noisiest" "noisily" ;
+lin nom_de_plume_N = mkN "nom de plume" "IRREG" ;
+lin noma_N = mkN "noma" "nomas" ;
+lin nomad_N = mkN "nomad" "nomads" ;
+lin nomadic_A = mkAMost "nomadic" "nomadicly" ;
+lin nombril_N = mkN "nombril" "nombrils" ;
+lin nomenclature_N = mkN "nomenclature" "nomenclatures" ;
+lin nomenklatura_N = mkN "nomenklatura" "nomenklaturas" ;
+lin nomia_N = mkN "nomia" "nomias" ;
+lin nominal_A = mkAMost "nominal" "nominally" ;
+lin nominalism_N = mkN "nominalism" "nominalisms" ;
+lin nominalist_N = mkN "nominalist" "nominalists" ;
+lin nominalistic_A = mkAMost "nominalistic" "nominalisticly" ;
+lin nominate_V = mkV "nominate" "nominated" "nominated" ;
+lin nomination_N = mkN "nomination" "nominations" ;
+lin nominative_A = mkAMost "nominative" "nominatively" ;
+lin nominative_N = mkN "nominative" "nominatives" ;
+lin nominator_N = mkN "nominator" "nominators" ;
+lin nominee_N = mkN "nominee" "nominees" ;
+lin nomogram_N = mkN "nomogram" "nomograms" ;
+lin nomothetic_A = mkAMost "nomothetic" "nomotheticly" ;
+lin non_compliance_N = mkN "non-compliance" "non-compliances" ;
+lin non_compos_mentis_A = mkAMost "non compos mentis" "non compos mentisly" ;
+lin non_contentious_A = mkAMost "non-contentious" "non-contentiously" ;
+lin non_interference_N = mkN "non-interference" "non-interferences" ;
+lin non_sequitur_N = mkN "non sequitur" "non sequiturs" ;
+lin non_skid_A = mkAMost "non-skid" "non-skidly" ;
+lin non_u_A = mkAMost "non-u" "non-uly" ;
+lin nonabsorbency_N = mkN "nonabsorbency" "nonabsorbencies" ;
+lin nonabsorbent_A = mkAMost "nonabsorbent" "nonabsorbently" ;
+lin nonacceptance_N = mkN "nonacceptance" "nonacceptances" ;
+lin nonaccomplishment_N = mkN "nonaccomplishment" "nonaccomplishments" ;
+lin nonaddictive_A = mkAMost "nonaddictive" "nonaddictively" ;
+lin nonadhesive_A = mkAMost "nonadhesive" "nonadhesively" ;
+lin nonadjacent_A = mkAMost "nonadjacent" "nonadjacently" ;
+lin nonadsorbent_A = mkAMost "nonadsorbent" "nonadsorbently" ;
+lin nonage_N = mkN "nonage" "nonages" ;
+lin nonagenarian_A = mkAMost "nonagenarian" "nonagenarianly" ;
+lin nonagenarian_N = mkN "nonagenarian" "nonagenarians" ;
+lin nonaggression_N = mkN "nonaggression" "nonaggressions" ;
+lin nonagon_N = mkN "nonagon" "nonagons" ;
+lin nonalcoholic_A = mkAMost "nonalcoholic" "nonalcoholicly" ;
+lin nonaligned_A = mkAMost "nonaligned" "nonalignedly" ;
+lin nonalignment_N = mkN "nonalignment" "nonalignments" ;
+lin nonallele_N = mkN "nonallele" "nonalleles" ;
+lin nonappearance_N = mkN "nonappearance" "nonappearances" ;
+lin nonappointive_A = mkAMost "nonappointive" "nonappointively" ;
+lin nonarbitrable_A = mkAMost "nonarbitrable" "nonarbitrably" ;
+lin nonarbitrary_A = mkAMost "nonarbitrary" "nonarbitrarily" ;
+lin nonarboreal_A = mkAMost "nonarboreal" "nonarboreally" ;
+lin nonassertive_A = mkAMost "nonassertive" "nonassertively" ;
+lin nonassociative_A = mkAMost "nonassociative" "nonassociatively" ;
+lin nonastringent_A = mkAMost "nonastringent" "nonastringently" ;
+lin nonattendance_N = mkN "nonattendance" "nonattendances" ;
+lin nonautonomous_A = mkAMost "nonautonomous" "nonautonomously" ;
+lin nonbearing_A = mkAMost "nonbearing" "nonbearingly" ;
+lin nonbeing_N = mkN "nonbeing" "nonbeings" ;
+lin nonbelligerent_A = mkAMost "nonbelligerent" "nonbelligerently" ;
+lin noncaloric_A = mkAMost "noncaloric" "noncaloricly" ;
+lin noncandidate_N = mkN "noncandidate" "noncandidates" ;
+lin noncarbonated_A = mkAMost "noncarbonated" "noncarbonatedly" ;
+lin noncausative_A = mkAMost "noncausative" "noncausatively" ;
+lin nonce_N = mkN "nonce" "nonces" ;
+lin nonce_word_N = mkN "nonce-word" "nonce-words" ;
+lin noncellular_A = mkAMost "noncellular" "noncellularly" ;
+lin nonchalance_N = mkN "nonchalance" "nonchalances" ;
+lin nonchalant_A = mkAMost "nonchalant" "nonchalantly" ;
+lin noncivilized_A = mkAMost "noncivilized" "noncivilizedly" ;
+lin nonclassical_A = mkAMost "nonclassical" "nonclassically" ;
+lin noncollapsible_A = mkAMost "noncollapsible" "noncollapsibly" ;
+lin noncolumned_A = mkAMost "noncolumned" "noncolumnedly" ;
+lin noncombatant_A = mkAMost "noncombatant" "noncombatantly" ;
+lin noncombatant_N = mkN "noncombatant" "noncombatants" ;
+lin noncombinative_A = mkAMost "noncombinative" "noncombinatively" ;
+lin noncombining_A = mkAMost "noncombining" "noncombiningly" ;
+lin noncombustible_A = mkAMost "noncombustible" "noncombustibly" ;
+lin noncommercial_A = mkAMost "noncommercial" "noncommercially" ;
+lin noncommissioned_A = mkAMost "noncommissioned" "noncommissionedly" ;
+lin noncommittal_A = mkAMost "noncommittal" "noncommittally" ;
+lin noncommunicable_A = mkAMost "noncommunicable" "noncommunicably" ;
+lin noncompetitive_A = mkAMost "noncompetitive" "noncompetitively" ;
+lin noncomprehensive_A = mkAMost "noncomprehensive" "noncomprehensively" ;
+lin nonconductive_A = mkAMost "nonconductive" "nonconductively" ;
+lin nonconductor_N = mkN "nonconductor" "nonconductors" ;
+lin nonconforming_A = mkAMost "nonconforming" "nonconformingly" ;
+lin nonconformism_N = mkN "nonconformism" "nonconformisms" ;
+lin nonconformist_A = mkAMost "nonconformist" "nonconformistly" ;
+lin nonconformist_N = mkN "nonconformist" "nonconformists" ;
+lin nonconformity_N = mkN "nonconformity" "nonconformities" ;
+lin nonconscious_A = mkAMost "nonconscious" "nonconsciously" ;
+lin noncontentious_A = mkAMost "noncontentious" "noncontentiously" ;
+lin nonconvergent_A = mkAMost "nonconvergent" "nonconvergently" ;
+lin noncritical_A = mkAMost "noncritical" "noncritically" ;
+lin noncrucial_A = mkAMost "noncrucial" "noncrucially" ;
+lin noncrystalline_A = mkAMost "noncrystalline" "noncrystallinely" ;
+lin noncurrent_A = mkAMost "noncurrent" "noncurrently" ;
+lin noncyclic_A = mkAMost "noncyclic" "noncyclicly" ;
+lin nondeductible_A = mkAMost "nondeductible" "nondeductibly" ;
+lin nondenominational_A = mkAMost "nondenominational" "nondenominationally" ;
+lin nondescript_A = mkAMost "nondescript" "nondescriptly" ;
+lin nondescript_N = mkN "nondescript" "nondescripts" ;
+lin nondevelopment_N = mkN "nondevelopment" "nondevelopments" ;
+lin nondigestible_A = mkAMost "nondigestible" "nondigestibly" ;
+lin nondisjunction_N = mkN "nondisjunction" "nondisjunctions" ;
+lin nondisposable_A = mkAMost "nondisposable" "nondisposably" ;
+lin nondriver_N = mkN "nondriver" "nondrivers" ;
+lin none_A = mkA "none" "noner" "nonest" "nonely" ;
+lin none_Adv = mkAdv "none" ;
+lin nonechoic_A = mkAMost "nonechoic" "nonechoicly" ;
+lin noneffervescent_A = mkAMost "noneffervescent" "noneffervescently" ;
+lin nonelective_A = mkAMost "nonelective" "nonelectively" ;
+lin nonentity_N = mkN "nonentity" "nonentities" ;
+lin nonenzymatic_A = mkAMost "nonenzymatic" "nonenzymaticly" ;
+lin nonequivalence_N = mkN "nonequivalence" "nonequivalences" ;
+lin nonequivalent_A = mkAMost "nonequivalent" "nonequivalently" ;
+lin nones_N = mkN "nones" "noneses" ;
+lin nonesuch_N = mkN "nonesuch" "IRREG" ;
+lin nonevent_N = mkN "nonevent" "nonevents" ;
+lin nonexempt_A = mkAMost "nonexempt" "nonexemptly" ;
+lin nonexistence_N = mkN "nonexistence" "nonexistences" ;
+lin nonexistent_A = mkAMost "nonexistent" "nonexistently" ;
+lin nonexploratory_A = mkAMost "nonexploratory" "nonexploratorily" ;
+lin nonexplosive_A = mkAMost "nonexplosive" "nonexplosively" ;
+lin nonextant_A = mkAMost "nonextant" "nonextantly" ;
+lin nonextensile_A = mkAMost "nonextensile" "nonextensilely" ;
+lin nonfat_A = mkAMost "nonfat" "nonfatly" ;
+lin nonfatal_A = mkAMost "nonfatal" "nonfatally" ;
+lin nonfeasance_N = mkN "nonfeasance" "nonfeasances" ;
+lin nonfiction_N = mkN "nonfiction" "nonfictions" ;
+lin nonfictional_A = mkAMost "nonfictional" "nonfictionally" ;
+lin nonfinancial_A = mkAMost "nonfinancial" "nonfinancially" ;
+lin nonfissile_A = mkAMost "nonfissile" "nonfissilely" ;
+lin nonfissionable_A = mkAMost "nonfissionable" "nonfissionably" ;
+lin nonflammable_A = mkAMost "nonflammable" "nonflammably" ;
+lin nonfunctional_A = mkAMost "nonfunctional" "nonfunctionally" ;
+lin nonglutinous_A = mkAMost "nonglutinous" "nonglutinously" ;
+lin nongranular_A = mkAMost "nongranular" "nongranularly" ;
+lin nongregarious_A = mkAMost "nongregarious" "nongregariously" ;
+lin nonhairy_A = mkAMost "nonhairy" "nonhairily" ;
+lin nonharmonic_A = mkAMost "nonharmonic" "nonharmonicly" ;
+lin nonhereditary_A = mkAMost "nonhereditary" "nonhereditarily" ;
+lin nonhierarchical_A = mkAMost "nonhierarchical" "nonhierarchically" ;
+lin nonhuman_A = mkAMost "nonhuman" "nonhumanly" ;
+lin nonimitative_A = mkAMost "nonimitative" "nonimitatively" ;
+lin nonindulgent_A = mkAMost "nonindulgent" "nonindulgently" ;
+lin nonindustrial_A = mkAMost "nonindustrial" "nonindustrially" ;
+lin noninfectious_A = mkAMost "noninfectious" "noninfectiously" ;
+lin noninflammatory_A = mkAMost "noninflammatory" "noninflammatorily" ;
+lin noninheritable_A = mkAMost "noninheritable" "noninheritably" ;
+lin noninstitutional_A = mkAMost "noninstitutional" "noninstitutionally" ;
+lin noninstitutionalized_A = mkAMost "noninstitutionalized" "noninstitutionalizedly" ;
+lin nonintegrated_A = mkAMost "nonintegrated" "nonintegratedly" ;
+lin nonintellectual_A = mkAMost "nonintellectual" "nonintellectually" ;
+lin noninterchangeable_A = mkAMost "noninterchangeable" "noninterchangeably" ;
+lin nonintervention_N = mkN "nonintervention" "noninterventions" ;
+lin noninvasive_A = mkAMost "noninvasive" "noninvasively" ;
+lin nonionic_A = mkAMost "nonionic" "nonionicly" ;
+lin nonionized_A = mkAMost "nonionized" "nonionizedly" ;
+lin nonjudgmental_A = mkAMost "nonjudgmental" "nonjudgmentally" ;
+lin nonkosher_A = mkAMost "nonkosher" "nonkosherly" ;
+lin nonlethal_A = mkAMost "nonlethal" "nonlethally" ;
+lin nonlexical_A = mkAMost "nonlexical" "nonlexically" ;
+lin nonlinear_A = mkAMost "nonlinear" "nonlinearly" ;
+lin nonlinguistic_A = mkAMost "nonlinguistic" "nonlinguisticly" ;
+lin nonmagnetic_A = mkAMost "nonmagnetic" "nonmagneticly" ;
+lin nonmandatory_A = mkAMost "nonmandatory" "nonmandatorily" ;
+lin nonmechanical_A = mkAMost "nonmechanical" "nonmechanically" ;
+lin nonmechanistic_A = mkAMost "nonmechanistic" "nonmechanisticly" ;
+lin nonmember_N = mkN "nonmember" "nonmembers" ;
+lin nonmetal_N = mkN "nonmetal" "nonmetals" ;
+lin nonmetallic_A = mkAMost "nonmetallic" "nonmetallicly" ;
+lin nonmetamorphic_A = mkAMost "nonmetamorphic" "nonmetamorphicly" ;
+lin nonmigratory_A = mkAMost "nonmigratory" "nonmigratorily" ;
+lin nonmodern_A = mkAMost "nonmodern" "nonmodernly" ;
+lin nonmonotonic_A = mkAMost "nonmonotonic" "nonmonotonicly" ;
+lin nonmoral_A = mkAMost "nonmoral" "nonmorally" ;
+lin nonmotile_A = mkAMost "nonmotile" "nonmotilely" ;
+lin nonmoving_A = mkAMost "nonmoving" "nonmovingly" ;
+lin nonnative_A = mkAMost "nonnative" "nonnatively" ;
+lin nonnatural_A = mkAMost "nonnatural" "nonnaturally" ;
+lin nonnegative_A = mkAMost "nonnegative" "nonnegatively" ;
+lin nonnomadic_A = mkAMost "nonnomadic" "nonnomadicly" ;
+lin nonnormative_A = mkAMost "nonnormative" "nonnormatively" ;
+lin nonobservance_N = mkN "nonobservance" "nonobservances" ;
+lin nonobservant_A = mkAMost "nonobservant" "nonobservantly" ;
+lin nonoccurrence_N = mkN "nonoccurrence" "nonoccurrences" ;
+lin nonopening_A = mkAMost "nonopening" "nonopeningly" ;
+lin nonoperational_A = mkAMost "nonoperational" "nonoperationally" ;
+lin nonoscillatory_A = mkAMost "nonoscillatory" "nonoscillatorily" ;
+lin nonparallel_A = mkAMost "nonparallel" "nonparallelly" ;
+lin nonparametric_A = mkAMost "nonparametric" "nonparametricly" ;
+lin nonpareil_A = mkAMost "nonpareil" "nonpareilly" ;
+lin nonpareil_N = mkN "nonpareil" "nonpareils" ;
+lin nonparticipant_N = mkN "nonparticipant" "nonparticipants" ;
+lin nonparticulate_A = mkAMost "nonparticulate" "nonparticulately" ;
+lin nonpartisan_A = mkAMost "nonpartisan" "nonpartisanly" ;
+lin nonpartisan_N = mkN "nonpartisan" "nonpartisans" ;
+lin nonpasserine_A = mkAMost "nonpasserine" "nonpasserinely" ;
+lin nonpayment_N = mkN "nonpayment" "nonpayments" ;
+lin nonperson_N = mkN "nonperson" "nonpersons" ;
+lin nonpersonal_A = mkAMost "nonpersonal" "nonpersonally" ;
+lin nonphotosynthetic_A = mkAMost "nonphotosynthetic" "nonphotosyntheticly" ;
+lin nonplus_nonplused_V = mkV "nonplus" "nonplused" "nonplused" ;
+lin nonplus_nonplussed_V = mkV "nonplus" "nonplussed" "nonplussed" ;
+lin nonpoisonous_A = mkAMost "nonpoisonous" "nonpoisonously" ;
+lin nonpolitical_A = mkAMost "nonpolitical" "nonpolitically" ;
+lin nonporous_A = mkAMost "nonporous" "nonporously" ;
+lin nonpregnant_A = mkAMost "nonpregnant" "nonpregnantly" ;
+lin nonprehensile_A = mkAMost "nonprehensile" "nonprehensilely" ;
+lin nonproductive_A = mkAMost "nonproductive" "nonproductively" ;
+lin nonprofessional_A = mkAMost "nonprofessional" "nonprofessionally" ;
+lin nonprofit_A = mkAMost "nonprofit" "nonprofitly" ;
+lin nonprognosticative_A = mkAMost "nonprognosticative" "nonprognosticatively" ;
+lin nonproliferation_N = mkN "nonproliferation" "nonproliferations" ;
+lin nonproprietary_A = mkAMost "nonproprietary" "nonproprietarily" ;
+lin nonpsychoactive_A = mkAMost "nonpsychoactive" "nonpsychoactively" ;
+lin nonpublic_A = mkAMost "nonpublic" "nonpublicly" ;
+lin nonpurulent_A = mkAMost "nonpurulent" "nonpurulently" ;
+lin nonracial_A = mkAMost "nonracial" "nonracially" ;
+lin nonradioactive_A = mkAMost "nonradioactive" "nonradioactively" ;
+lin nonrandom_A = mkAMost "nonrandom" "nonrandomly" ;
+lin nonrational_A = mkAMost "nonrational" "nonrationally" ;
+lin nonreader_N = mkN "nonreader" "nonreaders" ;
+lin nonreciprocal_A = mkAMost "nonreciprocal" "nonreciprocally" ;
+lin nonreciprocating_A = mkAMost "nonreciprocating" "nonreciprocatingly" ;
+lin nonrecreational_A = mkAMost "nonrecreational" "nonrecreationally" ;
+lin nonreflective_A = mkAMost "nonreflective" "nonreflectively" ;
+lin nonrepetitive_A = mkAMost "nonrepetitive" "nonrepetitively" ;
+lin nonrepresentational_A = mkAMost "nonrepresentational" "nonrepresentationally" ;
+lin nonrepresentative_A = mkAMost "nonrepresentative" "nonrepresentatively" ;
+lin nonresident_A = mkAMost "nonresident" "nonresidently" ;
+lin nonresident_N = mkN "nonresident" "nonresidents" ;
+lin nonresidential_A = mkAMost "nonresidential" "nonresidentially" ;
+lin nonresilient_A = mkAMost "nonresilient" "nonresiliently" ;
+lin nonresinous_A = mkAMost "nonresinous" "nonresinously" ;
+lin nonresistance_N = mkN "nonresistance" "nonresistances" ;
+lin nonresistant_A = mkAMost "nonresistant" "nonresistantly" ;
+lin nonrestrictive_A = mkAMost "nonrestrictive" "nonrestrictively" ;
+lin nonreticulate_A = mkAMost "nonreticulate" "nonreticulately" ;
+lin nonretractile_A = mkAMost "nonretractile" "nonretractilely" ;
+lin nonreturnable_A = mkAMost "nonreturnable" "nonreturnably" ;
+lin nonreversible_A = mkAMost "nonreversible" "nonreversibly" ;
+lin nonrhythmic_A = mkAMost "nonrhythmic" "nonrhythmicly" ;
+lin nonrigid_A = mkAMost "nonrigid" "nonrigidly" ;
+lin nonruminant_A = mkAMost "nonruminant" "nonruminantly" ;
+lin nonsectarian_A = mkAMost "nonsectarian" "nonsectarianly" ;
+lin nonsense_N = mkN "nonsense" "nonsenses" ;
+lin nonsensical_A = mkAMost "nonsensical" "nonsensically" ;
+lin nonsensitive_A = mkAMost "nonsensitive" "nonsensitively" ;
+lin nonsignificant_A = mkAMost "nonsignificant" "nonsignificantly" ;
+lin nonskid_A = mkAMost "nonskid" "nonskidly" ;
+lin nonslip_A = mkAMost "nonslip" "nonsliply" ;
+lin nonslippery_A = mkAMost "nonslippery" "nonslipperily" ;
+lin nonsmoker_N = mkN "nonsmoker" "nonsmokers" ;
+lin nonspatial_A = mkAMost "nonspatial" "nonspatially" ;
+lin nonspeaking_A = mkAMost "nonspeaking" "nonspeakingly" ;
+lin nonspecific_A = mkAMost "nonspecific" "nonspecificly" ;
+lin nonspecifically_Adv = mkAdv "nonspecifically" ;
+lin nonspherical_A = mkAMost "nonspherical" "nonspherically" ;
+lin nonstandard_A = mkAMost "nonstandard" "nonstandardly" ;
+lin nonstarter_N = mkN "nonstarter" "nonstarters" ;
+lin nonsteroid_N = mkN "nonsteroid" "nonsteroids" ;
+lin nonsteroidal_A = mkAMost "nonsteroidal" "nonsteroidally" ;
+lin nonstick_A = mkAMost "nonstick" "nonstickly" ;
+lin nonstop_A = mkAMost "nonstop" "nonstoply" ;
+lin nonstop_Adv = mkAdv "nonstop" ;
+lin nonstructural_A = mkAMost "nonstructural" "nonstructurally" ;
+lin nonsubmersible_A = mkAMost "nonsubmersible" "nonsubmersibly" ;
+lin nonsuch_N = mkN "nonsuch" "IRREG" ;
+lin nonsuppurative_A = mkAMost "nonsuppurative" "nonsuppuratively" ;
+lin nonsurgical_A = mkAMost "nonsurgical" "nonsurgically" ;
+lin nonsyllabic_A = mkAMost "nonsyllabic" "nonsyllabicly" ;
+lin nonsynchronous_A = mkAMost "nonsynchronous" "nonsynchronously" ;
+lin nonsynthetic_A = mkAMost "nonsynthetic" "nonsyntheticly" ;
+lin nontaxable_A = mkAMost "nontaxable" "nontaxably" ;
+lin nontechnical_A = mkAMost "nontechnical" "nontechnically" ;
+lin nontelescopic_A = mkAMost "nontelescopic" "nontelescopicly" ;
+lin nonterritorial_A = mkAMost "nonterritorial" "nonterritorially" ;
+lin nonthermal_A = mkAMost "nonthermal" "nonthermally" ;
+lin nontoxic_A = mkAMost "nontoxic" "nontoxicly" ;
+lin nontraditional_A = mkAMost "nontraditional" "nontraditionally" ;
+lin nontransferable_A = mkAMost "nontransferable" "nontransferably" ;
+lin nontranslational_A = mkAMost "nontranslational" "nontranslationally" ;
+lin nontricyclic_N = mkN "nontricyclic" "nontricyclics" ;
+lin nonturbulent_A = mkAMost "nonturbulent" "nonturbulently" ;
+lin nonuniformity_N = mkN "nonuniformity" "nonuniformities" ;
+lin nonunion_A = mkAMost "nonunion" "nonunionly" ;
+lin nonuple_A = mkAMost "nonuple" "nonuplely" ;
+lin nonvenomous_A = mkAMost "nonvenomous" "nonvenomously" ;
+lin nonverbal_A = mkAMost "nonverbal" "nonverbally" ;
+lin nonviable_A = mkAMost "nonviable" "nonviably" ;
+lin nonviolence_N = mkN "nonviolence" "nonviolences" ;
+lin nonviolent_A = mkAMost "nonviolent" "nonviolently" ;
+lin nonvisual_A = mkAMost "nonvisual" "nonvisually" ;
+lin nonvolatile_A = mkAMost "nonvolatile" "nonvolatilely" ;
+lin nonwashable_A = mkAMost "nonwashable" "nonwashably" ;
+lin nonwoody_A = mkAMost "nonwoody" "nonwoodily" ;
+lin nonworker_N = mkN "nonworker" "nonworkers" ;
+lin noodle_N = mkN "noodle" "noodles" ;
+lin nook_N = mkN "nook" "nooks" ;
+lin noon_N = mkN "noon" "noons" ;
+lin noonday_A = mkAMost "noonday" "noondaily" ;
+lin noontide_N = mkN "noontide" "noontides" ;
+lin noose_N = mkN "noose" "nooses" ;
+lin noose_V = mkV "noose" "noosed" "noosed" ;
+lin nopal_N = mkN "nopal" "nopals" ;
+lin nor'_east_Adv = mkAdv "nor'-east" ;
+lin nor'_east_N = mkN "nor'-east" "nor'-easts" ;
+lin nor'_nor'_east_Adv = mkAdv "nor'-nor'-east" ;
+lin nor'_nor'_east_N = mkN "nor'-nor'-east" "nor'-nor'-easts" ;
+lin nor'_nor'_west_Adv = mkAdv "nor'-nor'-west" ;
+lin nor'_nor'_west_N = mkN "nor'-nor'-west" "nor'-nor'-wests" ;
+lin nor'_west_Adv = mkAdv "nor'-west" ;
+lin nor'_west_N = mkN "nor'-west" "nor'-wests" ;
+lin noradrenaline_N = mkN "noradrenaline" "noradrenalines" ;
+lin nordic_A = mkAMost "nordic" "nordicly" ;
+lin nordic_N = mkN "nordic" "nordics" ;
+lin norethindrone_N = mkN "norethindrone" "norethindrones" ;
+lin norethynodrel_N = mkN "norethynodrel" "norethynodrels" ;
+lin norgestrel_N = mkN "norgestrel" "norgestrels" ;
+lin noria_N = mkN "noria" "norias" ;
+lin norm_N = mkN "norm" "norms" ;
+lin normal_A = mkAMost "normal" "normally" ;
+lin normal_N = mkN "normal" "normals" ;
+lin normalcy_N = mkN "normalcy" "normalcies" ;
+lin normalisation_N = mkN "normalisation" "normalisations" ;
+lin normality_N = mkN "normality" "normalities" ;
+lin normalization_N = mkN "normalization" "normalizations" ;
+lin normalize_V = mkV "normalize" "normalized" "normalized" ;
+lin normalizer_N = mkN "normalizer" "normalizers" ;
+lin norman_A = mkAMost "norman" "normanly" ;
+lin norman_N = mkN "norman" "normans" ;
+lin normative_A = mkAMost "normative" "normatively" ;
+lin normotensive_A = mkAMost "normotensive" "normotensively" ;
+lin normothermia_N = mkN "normothermia" "normothermias" ;
+lin norse_A = mkAMost "norse" "norsely" ;
+lin norse_N = mkN "norse" "norses" ;
+lin north_northeast_Adv = mkAdv "north-northeast" ;
+lin north_northeast_N = mkN "north-northeast" "north-northeasts" ;
+lin north_northwest_Adv = mkAdv "north-northwest" ;
+lin north_northwest_N = mkN "north-northwest" "north-northwests" ;
+lin northbound_A = mkAMost "northbound" "northboundly" ;
+lin northeast_Adv = mkAdv "northeast" ;
+lin northeast_N = mkN "northeast" "northeasts" ;
+lin northeaster_N = mkN "northeaster" "northeasters" ;
+lin northeasterly_A = mkAMost "northeasterly" "northeasterlily" ;
+lin northeastern_A = mkAMost "northeastern" "northeasternly" ;
+lin northeastward_A = mkAMost "northeastward" "northeastwardly" ;
+lin northeastward_Adv = mkAdv "northeastward" ;
+lin northerly_A = mkAMost "northerly" "northerlily" ;
+lin northerly_Adv = mkAdv "northerly" ;
+lin northerner_N = mkN "northerner" "northerners" ;
+lin northernmost_A = mkAMost "northernmost" "northernmostly" ;
+lin northernness_N = mkN "northernness" "northernnesses" ;
+lin northland_N = mkN "northland" "northlands" ;
+lin northman_N = mkN "northman" "northmen" ;
+lin northwards_Adv = mkAdv "northwards" ;
+lin northwest_Adv = mkAdv "northwest" ;
+lin northwest_N = mkN "northwest" "northwests" ;
+lin northwester_N = mkN "northwester" "northwesters" ;
+lin northwesterly_A = mkAMost "northwesterly" "northwesterlily" ;
+lin northwestern_A = mkAMost "northwestern" "northwesternly" ;
+lin northwestward_A = mkAMost "northwestward" "northwestwardly" ;
+lin northwestward_Adv = mkAdv "northwestward" ;
+lin nortriptyline_N = mkN "nortriptyline" "nortriptylines" ;
+lin norwegian_A = mkAMost "norwegian" "norwegianly" ;
+lin norwegian_N = mkN "norwegian" "norwegians" ;
+lin nose_N = mkN "nose" "noses" ;
+lin nose_V = mkV "nose" "nosed" "nosed" ;
+lin nose_flute_N = mkN "nose-flute" "nose-flutes" ;
+lin nose_wheel_N = mkN "nose-wheel" "nose-wheels" ;
+lin nosebag_N = mkN "nosebag" "nosebags" ;
+lin noseband_N = mkN "noseband" "nosebands" ;
+lin nosebleed_N = mkN "nosebleed" "nosebleeds" ;
+lin nosecone_N = mkN "nosecone" "nosecones" ;
+lin nosedive_N = mkN "nosedive" "nosedives" ;
+lin nosedive_V = mkV "nosedive" "nosedived" "nosedived" ;
+lin nosegay_N = mkN "nosegay" "nosegays" ;
+lin noseless_A = mkAMost "noseless" "noselessly" ;
+lin nosepiece_N = mkN "nosepiece" "nosepieces" ;
+lin nosering_N = mkN "nosering" "noserings" ;
+lin nosewheel_N = mkN "nosewheel" "nosewheels" ;
+lin nosey_A = mkAMost "nosey" "noseily" ;
+lin nosh_N = mkN "nosh" "noshes" ;
+lin nosh_V = mkV "nosh" "noshed" "noshed" ;
+lin nosh_up_N = mkN "nosh-up" "nosh-ups" ;
+lin nosher_N = mkN "nosher" "noshers" ;
+lin nosiness_N = mkN "nosiness" "nosinesses" ;
+lin nosocomial_A = mkAMost "nosocomial" "nosocomially" ;
+lin nosohusial_A = mkAMost "nosohusial" "nosohusially" ;
+lin nosology_N = mkN "nosology" "nosologies" ;
+lin nostalgia_N = mkN "nostalgia" "nostalgias" ;
+lin nostalgic_A = mkAMost "nostalgic" "nostalgicly" ;
+lin nostalgically_Adv = mkAdv "nostalgically" ;
+lin nostoc_N = mkN "nostoc" "nostocs" ;
+lin nostril_N = mkN "nostril" "nostrils" ;
+lin nostrum_N = mkN "nostrum" "nostrums" ;
+lin nosy_A = mkA "nosy" "nosier" "nosiest" "nosily" ;
+lin notability_N = mkN "notability" "notabilities" ;
+lin notable_A = mkAMost "notable" "notably" ;
+lin notable_N = mkN "notable" "notables" ;
+lin notary_N = mkN "notary" "notaries" ;
+lin notation_N = mkN "notation" "notations" ;
+lin notch_N = mkN "notch" "notches" ;
+lin notch_V = mkV "notch" "notched" "notched" ;
+lin note_N = mkN "note" "notes" ;
+lin note_V = mkV "note" "noted" "noted" ;
+lin notebook_N = mkN "notebook" "notebooks" ;
+lin notecase_N = mkN "notecase" "notecases" ;
+lin notepad_N = mkN "notepad" "notepads" ;
+lin notepaper_N = mkN "notepaper" "notepapers" ;
+lin noteworthy_A = mkAMost "noteworthy" "noteworthily" ;
+lin nothing_Adv = mkAdv "nothing" ;
+lin nothing_N = mkN "nothing" "nothings" ;
+lin nothingness_N = mkN "nothingness" "nothingnesses" ;
+lin nothings_N = mkN "nothings" "nothingses" ;
+lin nothosaur_N = mkN "nothosaur" "nothosaurs" ;
+lin notice_N = mkN "notice" "notices" ;
+lin notice_V = mkV "notice" "noticed" "noticed" ;
+lin notice_board_N = mkN "notice-board" "notice-boards" ;
+lin noticeable_A = mkAMost "noticeable" "noticeably" ;
+lin noticer_N = mkN "noticer" "noticers" ;
+lin notifiable_A = mkAMost "notifiable" "notifiably" ;
+lin notification_N = mkN "notification" "notifications" ;
+lin notify_V = mkV "notify" "notified" "notified" ;
+lin notion_N = mkN "notion" "notions" ;
+lin notional_A = mkAMost "notional" "notionally" ;
+lin notochord_N = mkN "notochord" "notochords" ;
+lin notoriety_N = mkN "notoriety" "notorieties" ;
+lin notorious_A = mkAMost "notorious" "notoriously" ;
+lin notornis_N = mkN "notornis" "notornises" ;
+lin notwithstanding_Adv = mkAdv "notwithstanding" ;
+lin notwithstanding_Prep = mkPrep "notwithstanding" ;
+lin nougat_N = mkN "nougat" "nougats" ;
+lin nought_N = mkN "nought" "noughts" ;
+lin noumenon_N = mkN "noumenon" "noumenons" ;
+lin noun_N = mkN "noun" "nouns" ;
+lin nourish_V = mkV "nourish" "nourished" "nourished" ;
+lin nourishment_N = mkN "nourishment" "nourishments" ;
+lin nous_N = mkN "nous" "nouses" ;
+lin nouveau_riche_N = mkN "nouveau riche" "IRREG" ;
+lin nova_N = mkN "nova" "novas" ;
+lin novation_N = mkN "novation" "novations" ;
+lin novel_A = mkAMost "novel" "novelly" ;
+lin novel_N = mkN "novel" "novels" ;
+lin novelette_N = mkN "novelette" "novelettes" ;
+lin novelist_N = mkN "novelist" "novelists" ;
+lin novelization_N = mkN "novelization" "novelizations" ;
+lin novelty_N = mkN "novelty" "novelties" ;
+lin novena_N = mkN "novena" "novenas" ;
+lin novice_N = mkN "novice" "novices" ;
+lin noviciate_N = mkN "noviciate" "noviciates" ;
+lin novillada_N = mkN "novillada" "novilladas" ;
+lin novillero_N = mkN "novillero" "novilleroes" ;
+lin novitiate_N = mkN "novitiate" "novitiates" ;
+lin novobiocin_N = mkN "novobiocin" "novobiocins" ;
+lin now_Adv = mkAdv "now" ;
+lin now_N = mkN "now" "nows" ;
+lin nowadays_Adv = mkAdv "nowadays" ;
+lin nowhere_Adv = mkAdv "nowhere" ;
+lin nowhere_N = mkN "nowhere" "nowheres" ;
+lin nowise_Adv = mkAdv "nowise" ;
+lin noxious_A = mkAMost "noxious" "noxiously" ;
+lin noxiousness_N = mkN "noxiousness" "noxiousnesses" ;
+lin nozzle_N = mkN "nozzle" "nozzles" ;
+lin nspcc_N = mkN "nspcc" "nspccs" ;
+lin nt_N = mkN "nt" "nts" ;
+lin nth_A = mkA "nth" "nther" "nthest" "nthly" ;
+lin nu_N = mkN "nu" "nus" ;
+lin nuance_N = mkN "nuance" "nuances" ;
+lin nub_N = mkN "nub" "nubs" ;
+lin nubbin_N = mkN "nubbin" "nubbins" ;
+lin nubile_A = mkAMost "nubile" "nubilely" ;
+lin nucellus_N = mkN "nucellus" "nucelluses" ;
+lin nuclear_A = mkAMost "nuclear" "nuclearly" ;
+lin nuclease_N = mkN "nuclease" "nucleases" ;
+lin nucleated_A = mkAMost "nucleated" "nucleatedly" ;
+lin nucleic_A = mkAMost "nucleic" "nucleicly" ;
+lin nucleolus_N = mkN "nucleolus" "nucleoluses" ;
+lin nucleon_N = mkN "nucleon" "nucleons" ;
+lin nucleoplasm_N = mkN "nucleoplasm" "nucleoplasms" ;
+lin nucleoprotein_N = mkN "nucleoprotein" "nucleoproteins" ;
+lin nucleoside_N = mkN "nucleoside" "nucleosides" ;
+lin nucleosynthesis_N = mkN "nucleosynthesis" "nucleosynthesises" ;
+lin nucleotide_N = mkN "nucleotide" "nucleotides" ;
+lin nucleus_N = mkN "nucleus" "nuclei" ;
+lin nude_A = mkAMost "nude" "nudely" ;
+lin nude_N = mkN "nude" "nudes" ;
+lin nudge_N = mkN "nudge" "nudges" ;
+lin nudge_V = mkV "nudge" "nudged" "nudged" ;
+lin nudger_N = mkN "nudger" "nudgers" ;
+lin nudism_N = mkN "nudism" "nudisms" ;
+lin nudist_N = mkN "nudist" "nudists" ;
+lin nudity_N = mkN "nudity" "nudities" ;
+lin nudnik_N = mkN "nudnik" "nudniks" ;
+lin nugatory_A = mkAMost "nugatory" "nugatorily" ;
+lin nugget_N = mkN "nugget" "nuggets" ;
+lin nuisance_N = mkN "nuisance" "nuisances" ;
+lin null_A = mkAMost "null" "nully" ;
+lin nullah_N = mkN "nullah" "nullahs" ;
+lin nullification_N = mkN "nullification" "nullifications" ;
+lin nullifier_N = mkN "nullifier" "nullifiers" ;
+lin nullify_V = mkV "nullify" "nullified" "nullified" ;
+lin nullipara_N = mkN "nullipara" "nulliparas" ;
+lin nullity_N = mkN "nullity" "nullities" ;
+lin numb_A = mkAMost "numb" "numbly" ;
+lin numb_V = mkV "numb" "numbed" "numbed" ;
+lin numbat_N = mkN "numbat" "numbats" ;
+lin number_N = mkN "number" "numbers" ;
+lin number_V = mkV "number" "numbered" "numbered" ;
+lin numberless_A = mkAMost "numberless" "numberlessly" ;
+lin numberplate_N = mkN "numberplate" "numberplates" ;
+lin numbing_A = mkAMost "numbing" "numbingly" ;
+lin numbness_N = mkN "numbness" "numbnesses" ;
+lin numdah_N = mkN "numdah" "numdahs" ;
+lin numen_N = mkN "numen" "numens" ;
+lin numerable_A = mkAMost "numerable" "numerably" ;
+lin numeracy_N = mkN "numeracy" "numeracies" ;
+lin numeral_A = mkAMost "numeral" "numerally" ;
+lin numeral_N = mkN "numeral" "numerals" ;
+lin numerate_A = mkAMost "numerate" "numerately" ;
+lin numeration_N = mkN "numeration" "numerations" ;
+lin numerator_N = mkN "numerator" "numerators" ;
+lin numeric_A = mkAMost "numeric" "numericly" ;
+lin numerical_A = mkAMost "numerical" "numerically" ;
+lin numerological_A = mkAMost "numerological" "numerologically" ;
+lin numerologist_N = mkN "numerologist" "numerologists" ;
+lin numerology_N = mkN "numerology" "numerologies" ;
+lin numerous_A = mkAMost "numerous" "numerously" ;
+lin numerousness_N = mkN "numerousness" "numerousnesses" ;
+lin numinous_A = mkAMost "numinous" "numinously" ;
+lin numismatics_N = mkN "numismatics" "numismatics" ;
+lin numismatist_N = mkN "numismatist" "numismatists" ;
+lin nummulite_N = mkN "nummulite" "nummulites" ;
+lin numskull_N = mkN "numskull" "numskulls" ;
+lin nun_N = mkN "nun" "nuns" ;
+lin nuncio_N = mkN "nuncio" "nuncios" ;
+lin nunnery_N = mkN "nunnery" "nunneries" ;
+lin nuptial_A = mkAMost "nuptial" "nuptially" ;
+lin nurse_N = mkN "nurse" "nurses" ;
+lin nurse_V = mkV "nurse" "nursed" "nursed" ;
+lin nurseling_N = mkN "nurseling" "nurselings" ;
+lin nursemaid_N = mkN "nursemaid" "nursemaids" ;
+lin nurser_N = mkN "nurser" "nursers" ;
+lin nursery_N = mkN "nursery" "nurseries" ;
+lin nurseryman_N = mkN "nurseryman" "nurserymen" ;
+lin nursing_N = mkN "nursing" "nursings" ;
+lin nursing_home_N = mkN "nursing-home" "nursing-homes" ;
+lin nursling_N = mkN "nursling" "nurslings" ;
+lin nurtural_A = mkAMost "nurtural" "nurturally" ;
+lin nurturance_N = mkN "nurturance" "nurturances" ;
+lin nurturant_A = mkAMost "nurturant" "nurturantly" ;
+lin nurture_N = mkN "nurture" "nurtures" ;
+lin nurture_V = mkV "nurture" "nurtured" "nurtured" ;
+lin nut_N = mkN "nut" "nuts" ;
+lin nut_V = mkV "nut" "nutted" "nutted" ;
+lin nut_brown_A = mkAMost "nut-brown" "nut-brownly" ;
+lin nut_butter_N = mkN "nut-butter" "nut-butters" ;
+lin nutation_N = mkN "nutation" "nutations" ;
+lin nutbrown_A = mkAMost "nutbrown" "nutbrownly" ;
+lin nutcracker_N = mkN "nutcracker" "nutcrackers" ;
+lin nutgrass_N = mkN "nutgrass" "nutgrasses" ;
+lin nuthatch_N = mkN "nuthatch" "nuthatches" ;
+lin nuthouse_N = mkN "nuthouse" "nuthouses" ;
+lin nutlet_N = mkN "nutlet" "nutlets" ;
+lin nutlike_A = mkAMost "nutlike" "nutlikely" ;
+lin nutmeg_N = mkN "nutmeg" "nutmegs" ;
+lin nutria_N = mkN "nutria" "nutrias" ;
+lin nutrient_A = mkAMost "nutrient" "nutriently" ;
+lin nutrient_N = mkN "nutrient" "nutrients" ;
+lin nutriment_N = mkN "nutriment" "nutriments" ;
+lin nutrition_N = mkN "nutrition" "nutritions" ;
+lin nutritional_A = mkAMost "nutritional" "nutritionally" ;
+lin nutritious_A = mkAMost "nutritious" "nutritiously" ;
+lin nutritiousness_N = mkN "nutritiousness" "nutritiousnesses" ;
+lin nutritive_A = mkAMost "nutritive" "nutritively" ;
+lin nuts_A = mkAMost "nuts" "nutsly" ;
+lin nutshell_N = mkN "nutshell" "nutshells" ;
+lin nutter_N = mkN "nutter" "nutters" ;
+lin nutty_A = mkA "nutty" "nuttier" "nuttiest" "nuttily" ;
+lin nuzzle_V = mkV "nuzzle" "nuzzled" "nuzzled" ;
+lin nyala_N = mkN "nyala" "nyalas" ;
+lin nybble_N = mkN "nybble" "nybbles" ;
+lin nyctalopia_N = mkN "nyctalopia" "nyctalopias" ;
+lin nyctophobia_N = mkN "nyctophobia" "nyctophobias" ;
+lin nylon_N = mkN "nylon" "nylons" ;
+lin nylons_N = mkN "nylons" "nylonses" ;
+lin nymph_N = mkN "nymph" "nymphs" ;
+lin nymphalid_N = mkN "nymphalid" "nymphalids" ;
+lin nymphet_N = mkN "nymphet" "nymphets" ;
+lin nympho_N = mkN "nympho" "nymphos" ;
+lin nympholepsy_N = mkN "nympholepsy" "nympholepsies" ;
+lin nympholept_N = mkN "nympholept" "nympholepts" ;
+lin nymphomania_N = mkN "nymphomania" "nymphomanias" ;
+lin nymphomaniac_A = mkAMost "nymphomaniac" "nymphomaniacly" ;
+lin nymphomaniac_N = mkN "nymphomaniac" "nymphomaniacs" ;
+lin nymphomaniacal_A = mkAMost "nymphomaniacal" "nymphomaniacally" ;
+lin nystagmus_N = mkN "nystagmus" "nystagmuses" ;
+lin nystatin_N = mkN "nystatin" "nystatins" ;
+lin née_A = mkAMost "née" "néely" ;
+lin négligé_N = mkN "négligé" "négligés" ;
+lin o'clock_Adv = mkAdv "o'clock" ;
+lin o'er_Adv = mkAdv "o'er" ;
+lin o_level_N = mkN "o-level" "o-levels" ;
+lin oaf_N = mkN "oaf" "oafs" ;
+lin oafish_A = mkAMost "oafish" "oafishly" ;
+lin oak_N = mkN "oak" "oaks" ;
+lin oak_apple_N = mkN "oak-apple" "oak-apples" ;
+lin oaken_A = mkAMost "oaken" "oakenly" ;
+lin oakum_N = mkN "oakum" "oakums" ;
+lin oar_N = mkN "oar" "oars" ;
+lin oarfish_N = mkN "oarfish" "oarfishes" ;
+lin oarsman_N = mkN "oarsman" "oarsmen" ;
+lin oarsmanship_N = mkN "oarsmanship" "oarsmanships" ;
+lin oarswoman_N = mkN "oarswoman" "oarswomen" ;
+lin oasis_N = mkN "oasis" "oases" ;
+lin oast_N = mkN "oast" "oasts" ;
+lin oasthouse_N = mkN "oasthouse" "oasthouses" ;
+lin oat_N = mkN "oat" "oats" ;
+lin oatcake_N = mkN "oatcake" "oatcakes" ;
+lin oaten_A = mkAMost "oaten" "oatenly" ;
+lin oath_N = mkN "oath" "oaths" ;
+lin oatmeal_N = mkN "oatmeal" "oatmeals" ;
+lin oau_N = mkN "oau" "oaus" ;
+lin obbligato_N = mkN "obbligato" "obbligatos" ;
+lin obduracy_N = mkN "obduracy" "obduracies" ;
+lin obdurate_A = mkAMost "obdurate" "obdurately" ;
+lin obeah_N = mkN "obeah" "obeahs" ;
+lin obeche_N = mkN "obeche" "obeches" ;
+lin obedience_N = mkN "obedience" "obediences" ;
+lin obedient_A = mkAMost "obedient" "obediently" ;
+lin obeisance_N = mkN "obeisance" "obeisances" ;
+lin obelion_N = mkN "obelion" "obelions" ;
+lin obelisk_N = mkN "obelisk" "obelisks" ;
+lin obese_A = mkAMost "obese" "obesely" ;
+lin obesity_N = mkN "obesity" "obesities" ;
+lin obey_V = mkV "obey" "obeyed" "obeyed" ;
+lin obfuscate_V = mkV "obfuscate" "obfuscated" "obfuscated" ;
+lin obfuscation_N = mkN "obfuscation" "obfuscations" ;
+lin obi_N = mkN "obi" "obis" ;
+lin obiism_N = mkN "obiism" "obiisms" ;
+lin obiter_dictum_N = mkN "obiter dictum" "obiter dicta" ;
+lin obituary_N = mkN "obituary" "obituaries" ;
+lin object_N = mkN "object" "objects" ;
+lin object_V = mkV "object" "objected" "objected" ;
+lin objectification_N = mkN "objectification" "objectifications" ;
+lin objection_N = mkN "objection" "objections" ;
+lin objectionable_A = mkAMost "objectionable" "objectionably" ;
+lin objective_A = mkAMost "objective" "objectively" ;
+lin objective_N = mkN "objective" "objectives" ;
+lin objectivity_N = mkN "objectivity" "objectivities" ;
+lin objector_N = mkN "objector" "objectors" ;
+lin objurgate_V = mkV "objurgate" "objurgated" "objurgated" ;
+lin objurgation_N = mkN "objurgation" "objurgations" ;
+lin oblanceolate_A = mkAMost "oblanceolate" "oblanceolately" ;
+lin oblate_A = mkAMost "oblate" "oblately" ;
+lin oblate_N = mkN "oblate" "oblates" ;
+lin oblateness_N = mkN "oblateness" "oblatenesses" ;
+lin oblation_N = mkN "oblation" "oblations" ;
+lin obligate_A = mkAMost "obligate" "obligately" ;
+lin obligate_V = mkV "obligate" "obligated" "obligated" ;
+lin obligation_N = mkN "obligation" "obligations" ;
+lin obligational_A = mkAMost "obligational" "obligationally" ;
+lin obligatory_A = mkAMost "obligatory" "obligatorily" ;
+lin oblige_V = mkV "oblige" "obliged" "obliged" ;
+lin obliger_N = mkN "obliger" "obligers" ;
+lin obliging_A = mkAMost "obliging" "obligingly" ;
+lin oblique_A = mkAMost "oblique" "obliquely" ;
+lin oblique_N = mkN "oblique" "obliques" ;
+lin obliqueness_N = mkN "obliqueness" "obliquenesses" ;
+lin obliquity_N = mkN "obliquity" "obliquities" ;
+lin obliterable_A = mkAMost "obliterable" "obliterably" ;
+lin obliterate_V = mkV "obliterate" "obliterated" "obliterated" ;
+lin obliteration_N = mkN "obliteration" "obliterations" ;
+lin obliterator_N = mkN "obliterator" "obliterators" ;
+lin oblivion_N = mkN "oblivion" "oblivions" ;
+lin oblivious_A = mkAMost "oblivious" "obliviously" ;
+lin obliviousness_N = mkN "obliviousness" "obliviousnesses" ;
+lin oblong_A = mkAMost "oblong" "oblongly" ;
+lin oblong_N = mkN "oblong" "oblongs" ;
+lin obloquy_N = mkN "obloquy" "obloquys" ;
+lin obnoxious_A = mkAMost "obnoxious" "obnoxiously" ;
+lin obnoxiousness_N = mkN "obnoxiousness" "obnoxiousnesses" ;
+lin oboe_N = mkN "oboe" "oboes" ;
+lin oboist_N = mkN "oboist" "oboists" ;
+lin obolus_N = mkN "obolus" "oboluses" ;
+lin obovate_A = mkAMost "obovate" "obovately" ;
+lin obscene_A = mkAMost "obscene" "obscenely" ;
+lin obscenity_N = mkN "obscenity" "obscenities" ;
+lin obscurantism_N = mkN "obscurantism" "obscurantisms" ;
+lin obscurantist_N = mkN "obscurantist" "obscurantists" ;
+lin obscure_A = mkAMost "obscure" "obscurely" ;
+lin obscure_V = mkV "obscure" "obscured" "obscured" ;
+lin obscureness_N = mkN "obscureness" "obscurenesses" ;
+lin obscurity_N = mkN "obscurity" "obscurities" ;
+lin obsequious_A = mkAMost "obsequious" "obsequiously" ;
+lin obsequiousness_N = mkN "obsequiousness" "obsequiousnesses" ;
+lin observable_A = mkAMost "observable" "observably" ;
+lin observance_N = mkN "observance" "observances" ;
+lin observant_A = mkAMost "observant" "observantly" ;
+lin observation_N = mkN "observation" "observations" ;
+lin observatory_N = mkN "observatory" "observatories" ;
+lin observe_V = mkV "observe" "observed" "observed" ;
+lin observer_N = mkN "observer" "observers" ;
+lin obsess_V = mkV "obsess" "obsessed" "obsessed" ;
+lin obsession_N = mkN "obsession" "obsessions" ;
+lin obsessional_A = mkAMost "obsessional" "obsessionally" ;
+lin obsessive_A = mkAMost "obsessive" "obsessively" ;
+lin obsessive_N = mkN "obsessive" "obsessives" ;
+lin obsessiveness_N = mkN "obsessiveness" "obsessivenesses" ;
+lin obsidian_N = mkN "obsidian" "obsidians" ;
+lin obsolescence_N = mkN "obsolescence" "obsolescences" ;
+lin obsolescent_A = mkAMost "obsolescent" "obsolescently" ;
+lin obsolete_A = mkAMost "obsolete" "obsoletely" ;
+lin obsoleteness_N = mkN "obsoleteness" "obsoletenesses" ;
+lin obstacle_N = mkN "obstacle" "obstacles" ;
+lin obstetric_A = mkAMost "obstetric" "obstetricly" ;
+lin obstetrical_A = mkAMost "obstetrical" "obstetrically" ;
+lin obstetrician_N = mkN "obstetrician" "obstetricians" ;
+lin obstetrics_N = mkN "obstetrics" "obstetrics" ;
+lin obstinacy_N = mkN "obstinacy" "obstinacies" ;
+lin obstinate_A = mkAMost "obstinate" "obstinately" ;
+lin obstipation_N = mkN "obstipation" "obstipations" ;
+lin obstreperous_A = mkAMost "obstreperous" "obstreperously" ;
+lin obstreperousness_N = mkN "obstreperousness" "obstreperousnesses" ;
+lin obstruct_V = mkV "obstruct" "obstructed" "obstructed" ;
+lin obstruction_N = mkN "obstruction" "obstructions" ;
+lin obstructionism_N = mkN "obstructionism" "obstructionisms" ;
+lin obstructionist_N = mkN "obstructionist" "obstructionists" ;
+lin obstructive_A = mkAMost "obstructive" "obstructively" ;
+lin obstruent_N = mkN "obstruent" "obstruents" ;
+lin obtain_V = mkV "obtain" "obtained" "obtained" ;
+lin obtainable_A = mkAMost "obtainable" "obtainably" ;
+lin obtainment_N = mkN "obtainment" "obtainments" ;
+lin obtrude_V = mkV "obtrude" "obtruded" "obtruded" ;
+lin obtrusive_A = mkAMost "obtrusive" "obtrusively" ;
+lin obtrusiveness_N = mkN "obtrusiveness" "obtrusivenesses" ;
+lin obturator_N = mkN "obturator" "obturators" ;
+lin obtuse_A = mkAMost "obtuse" "obtusely" ;
+lin obtuseness_N = mkN "obtuseness" "obtusenesses" ;
+lin obverse_N = mkN "obverse" "obverses" ;
+lin obviate_V = mkV "obviate" "obviated" "obviated" ;
+lin obviation_N = mkN "obviation" "obviations" ;
+lin obvious_A = mkAMost "obvious" "obviously" ;
+lin obviousness_N = mkN "obviousness" "obviousnesses" ;
+lin oca_N = mkN "oca" "ocas" ;
+lin ocarina_N = mkN "ocarina" "ocarinas" ;
+lin occasion_N = mkN "occasion" "occasions" ;
+lin occasion_V = mkV "occasion" "occasioned" "occasioned" ;
+lin occasional_A = mkAMost "occasional" "occasionally" ;
+lin occasions_N = mkN "occasions" "occasionses" ;
+lin occidental_A = mkAMost "occidental" "occidentally" ;
+lin occidental_N = mkN "occidental" "occidentals" ;
+lin occidentalism_N = mkN "occidentalism" "occidentalisms" ;
+lin occipital_A = mkAMost "occipital" "occipitally" ;
+lin occiput_N = mkN "occiput" "occiputs" ;
+lin occluded_A = mkAMost "occluded" "occludedly" ;
+lin occlusion_N = mkN "occlusion" "occlusions" ;
+lin occlusive_A = mkAMost "occlusive" "occlusively" ;
+lin occult_A = mkAMost "occult" "occultly" ;
+lin occult_N = mkN "occult" "IRREG" ;
+lin occultism_N = mkN "occultism" "occultisms" ;
+lin occultist_N = mkN "occultist" "occultists" ;
+lin occupancy_N = mkN "occupancy" "occupancies" ;
+lin occupant_N = mkN "occupant" "occupants" ;
+lin occupation_N = mkN "occupation" "occupations" ;
+lin occupational_A = mkAMost "occupational" "occupationally" ;
+lin occupier_N = mkN "occupier" "occupiers" ;
+lin occupy_V = mkV "occupy" "occupied" "occupied" ;
+lin occur_V = mkV "occur" "occurred" "occurred" ;
+lin occurr_V = mkV "occurr" "occurred" "occurred" ;
+lin occurrence_N = mkN "occurrence" "occurrences" ;
+lin occurrent_A = mkAMost "occurrent" "occurrently" ;
+lin ocean_N = mkN "ocean" "oceans" ;
+lin oceanfront_N = mkN "oceanfront" "oceanfronts" ;
+lin oceangoing_A = mkAMost "oceangoing" "oceangoingly" ;
+lin oceanic_A = mkAMost "oceanic" "oceanicly" ;
+lin oceanographer_N = mkN "oceanographer" "oceanographers" ;
+lin oceanography_N = mkN "oceanography" "oceanographies" ;
+lin ocellated_A = mkAMost "ocellated" "ocellatedly" ;
+lin ocelot_N = mkN "ocelot" "ocelots" ;
+lin ocher_A = mkAMost "ocher" "ocherly" ;
+lin ocher_N = mkN "ocher" "ochers" ;
+lin ochre_N = mkN "ochre" "ochres" ;
+lin ochronosis_N = mkN "ochronosis" "ochronosises" ;
+lin ocotillo_N = mkN "ocotillo" "ocotilloes" ;
+lin octagon_N = mkN "octagon" "octagons" ;
+lin octagonal_A = mkAMost "octagonal" "octagonally" ;
+lin octahedron_N = mkN "octahedron" "octahedrons" ;
+lin octal_A = mkAMost "octal" "octally" ;
+lin octameter_N = mkN "octameter" "octameters" ;
+lin octane_N = mkN "octane" "octanes" ;
+lin octangular_A = mkAMost "octangular" "octangularly" ;
+lin octant_N = mkN "octant" "octants" ;
+lin octave_N = mkN "octave" "octaves" ;
+lin octavo_N = mkN "octavo" "octavos" ;
+lin octet_N = mkN "octet" "octets" ;
+lin octette_N = mkN "octette" "octettes" ;
+lin octillion_N = mkN "octillion" "octillions" ;
+lin octogenarian_A = mkAMost "octogenarian" "octogenarianly" ;
+lin octogenarian_N = mkN "octogenarian" "octogenarians" ;
+lin octopod_N = mkN "octopod" "octopods" ;
+lin octopus_N = mkN "octopus" "octopuses" ;
+lin octoroon_N = mkN "octoroon" "octoroons" ;
+lin octosyllabic_A = mkAMost "octosyllabic" "octosyllabicly" ;
+lin octosyllable_N = mkN "octosyllable" "octosyllables" ;
+lin octroi_N = mkN "octroi" "octrois" ;
+lin octuple_A = mkAMost "octuple" "octuplely" ;
+lin ocular_A = mkAMost "ocular" "ocularly" ;
+lin oculism_N = mkN "oculism" "oculisms" ;
+lin oculist_N = mkN "oculist" "oculists" ;
+lin oculomotor_N = mkN "oculomotor" "oculomotors" ;
+lin odalisque_N = mkN "odalisque" "odalisques" ;
+lin odd_A = mkA "odd" "odder" "oddest" "oddly" ;
+lin odd_job_A = mkAMost "odd-job" "odd-jobly" ;
+lin oddish_A = mkAMost "oddish" "oddishly" ;
+lin oddity_N = mkN "oddity" "oddities" ;
+lin oddment_N = mkN "oddment" "oddments" ;
+lin oddness_N = mkN "oddness" "oddnesses" ;
+lin odds_N = mkN "odds" "odds" ;
+lin odds_on_A = mkAMost "odds-on" "odds-only" ;
+lin odds_on_Adv = mkAdv "odds-on" ;
+lin ode_N = mkN "ode" "odes" ;
+lin odious_A = mkAMost "odious" "odiously" ;
+lin odist_N = mkN "odist" "odists" ;
+lin odium_N = mkN "odium" "odiums" ;
+lin odometer_N = mkN "odometer" "odometers" ;
+lin odonate_N = mkN "odonate" "odonates" ;
+lin odontoglossum_N = mkN "odontoglossum" "odontoglossums" ;
+lin odoriferous_A = mkAMost "odoriferous" "odoriferously" ;
+lin odorless_A = mkAMost "odorless" "odorlessly" ;
+lin odorous_A = mkAMost "odorous" "odorously" ;
+lin odour_N = mkN "odour" "odours" ;
+lin odourless_A = mkAMost "odourless" "odourlessly" ;
+lin odynophagia_N = mkN "odynophagia" "odynophagias" ;
+lin odyssey_N = mkN "odyssey" "odysseys" ;
+lin oecd_N = mkN "oecd" "oecds" ;
+lin oecumenical_A = mkAMost "oecumenical" "oecumenically" ;
+lin oed_N = mkN "oed" "oeds" ;
+lin oenomel_N = mkN "oenomel" "oenomels" ;
+lin oersted_N = mkN "oersted" "oersteds" ;
+lin oesophagus_N = mkN "oesophagus" "oesophaguses" ;
+lin oeuvre_N = mkN "oeuvre" "oeuvres" ;
+lin of_Prep = mkPrep "of" ;
+lin of_course_Adv = mkAdv "of course" ;
+lin off_A = mkAMost "off" "offly" ;
+lin off_Adv = mkAdv "off" ;
+lin off_Prep = mkPrep "off" ;
+lin off_day_N = mkN "off-day" "off-days" ;
+lin off_licence_N = mkN "off-licence" "off-licences" ;
+lin off_peak_A = mkAMost "off-peak" "off-peakly" ;
+lin off_putting_A = mkAMost "off-putting" "off-puttingly" ;
+lin off_street_A = mkAMost "off-street" "off-streetly" ;
+lin off_white_A = mkAMost "off-white" "off-whitely" ;
+lin offal_N = mkN "offal" "offals" ;
+lin offbeat_A = mkAMost "offbeat" "offbeatly" ;
+lin offence_N = mkN "offence" "offences" ;
+lin offenceless_A = mkAMost "offenceless" "offencelessly" ;
+lin offend_V = mkV "offend" "offended" "offended" ;
+lin offender_N = mkN "offender" "offenders" ;
+lin offense_N = mkN "offense" "offenses" ;
+lin offenseless_A = mkAMost "offenseless" "offenselessly" ;
+lin offensive_A = mkAMost "offensive" "offensively" ;
+lin offensive_N = mkN "offensive" "offensives" ;
+lin offensiveness_N = mkN "offensiveness" "offensivenesses" ;
+lin offer_N = mkN "offer" "offers" ;
+lin offer_V = mkV "offer" "offered" "offered" ;
+lin offerer_N = mkN "offerer" "offerers" ;
+lin offering_N = mkN "offering" "offerings" ;
+lin offertory_N = mkN "offertory" "offertories" ;
+lin offhand_A = mkAMost "offhand" "offhandly" ;
+lin offhand_Adv = mkAdv "offhand" ;
+lin offhanded_A = mkAMost "offhanded" "offhandedly" ;
+lin offhanded_Adv = mkAdv "offhanded" ;
+lin offhandedly_A = mkAMost "offhandedly" "offhandedlily" ;
+lin office_N = mkN "office" "offices" ;
+lin office_bearer_N = mkN "office-bearer" "office-bearers" ;
+lin office_block_N = mkN "office-block" "office-blocks" ;
+lin office_boy_N = mkN "office-boy" "office-boys" ;
+lin office_holder_N = mkN "office-holder" "office-holders" ;
+lin officeholder_N = mkN "officeholder" "officeholders" ;
+lin officer_N = mkN "officer" "officers" ;
+lin official_A = mkAMost "official" "officially" ;
+lin official_N = mkN "official" "officials" ;
+lin officialdom_N = mkN "officialdom" "officialdoms" ;
+lin officialese_N = mkN "officialese" "officialeses" ;
+lin officiant_N = mkN "officiant" "officiants" ;
+lin officiate_V = mkV "officiate" "officiated" "officiated" ;
+lin officiation_N = mkN "officiation" "officiations" ;
+lin officious_A = mkAMost "officious" "officiously" ;
+lin officiousness_N = mkN "officiousness" "officiousnesses" ;
+lin offing_N = mkN "offing" "IRREG" ;
+lin offish_A = mkAMost "offish" "offishly" ;
+lin offprint_N = mkN "offprint" "offprints" ;
+lin offset_N = mkN "offset" "offsets" ;
+lin offset_V = mkV "offset" "offset" "offset" ;
+lin offshoot_N = mkN "offshoot" "offshoots" ;
+lin offshore_A = mkAMost "offshore" "offshorely" ;
+lin offshore_Adv = mkAdv "offshore" ;
+lin offside_A = mkAMost "offside" "offsidely" ;
+lin offside_Adv = mkAdv "offside" ;
+lin offside_N = mkN "offside" "offsides" ;
+lin offspring_N = mkN "offspring" "offspring" ;
+lin offstage_A = mkAMost "offstage" "offstagely" ;
+lin offstage_Adv = mkAdv "offstage" ;
+lin oft_Adv = mkAdv "oft" ;
+lin oft_times_Adv = mkAdv "oft-times" ;
+lin often_Adv = mkAdv "often" ;
+lin oftener_Adv = mkAdv "oftener" ;
+lin ogee_N = mkN "ogee" "ogees" ;
+lin ogle_V = mkV "ogle" "ogled" "ogled" ;
+lin ogler_N = mkN "ogler" "oglers" ;
+lin ogre_N = mkN "ogre" "ogres" ;
+lin ogreish_A = mkAMost "ogreish" "ogreishly" ;
+lin ogress_N = mkN "ogress" "ogresses" ;
+lin ohm_N = mkN "ohm" "ohms" ;
+lin ohmage_N = mkN "ohmage" "ohmages" ;
+lin ohmic_A = mkAMost "ohmic" "ohmicly" ;
+lin ohmmeter_N = mkN "ohmmeter" "ohmmeters" ;
+lin oil_N = mkN "oil" "oils" ;
+lin oil_V = mkV "oil" "oiled" "oiled" ;
+lin oil_bearing_A = mkAMost "oil-bearing" "oil-bearingly" ;
+lin oil_burner_N = mkN "oil-burner" "oil-burners" ;
+lin oil_cake_N = mkN "oil-cake" "oil-cakes" ;
+lin oil_painting_N = mkN "oil-painting" "oil-paintings" ;
+lin oil_palm_N = mkN "oil-palm" "oil-palms" ;
+lin oil_paper_N = mkN "oil-paper" "oil-papers" ;
+lin oil_rig_N = mkN "oil-rig" "oil-rigs" ;
+lin oil_silk_N = mkN "oil-silk" "oil-silks" ;
+lin oil_slick_N = mkN "oil-slick" "oil-slicks" ;
+lin oil_tanker_N = mkN "oil-tanker" "oil-tankers" ;
+lin oil_well_N = mkN "oil-well" "oil-wells" ;
+lin oilbird_N = mkN "oilbird" "oilbirds" ;
+lin oilcan_N = mkN "oilcan" "oilcans" ;
+lin oilcloth_N = mkN "oilcloth" "oilcloths" ;
+lin oiler_N = mkN "oiler" "oilers" ;
+lin oilfield_N = mkN "oilfield" "oilfields" ;
+lin oilfired_A = mkAMost "oilfired" "oilfiredly" ;
+lin oilfish_N = mkN "oilfish" "oilfishes" ;
+lin oiliness_N = mkN "oiliness" "oilinesses" ;
+lin oilman_N = mkN "oilman" "oilmen" ;
+lin oilpaper_N = mkN "oilpaper" "oilpapers" ;
+lin oilseed_N = mkN "oilseed" "oilseeds" ;
+lin oilskin_N = mkN "oilskin" "oilskins" ;
+lin oilstone_N = mkN "oilstone" "oilstones" ;
+lin oily_A = mkA "oily" "oilier" "oiliest" "oilily" ;
+lin ointment_N = mkN "ointment" "ointments" ;
+lin oka_N = mkN "oka" "okas" ;
+lin okapi_N = mkN "okapi" "okapis" ;
+lin okay_A = mkAMost "okay" "okaily" ;
+lin okay_Adv = mkAdv "okay" ;
+lin okay_V = mkV "okay" "okayed" "okayed" ;
+lin okra_N = mkN "okra" "okras" ;
+lin ola_N = mkN "ola" "olas" ;
+lin old_A = mkA "old" "older" "oldest" "oldly" ;
+lin old_N = mkN "old" "olds" ;
+lin old_fashioned_A = mkAMost "old-fashioned" "old-fashionedly" ;
+lin old_maidish_A = mkAMost "old-maidish" "old-maidishly" ;
+lin old_time_A = mkAMost "old-time" "old-timely" ;
+lin old_timer_N = mkN "old-timer" "old-timers" ;
+lin old_womanish_A = mkAMost "old-womanish" "old-womanishly" ;
+lin old_world_A = mkAMost "old-world" "old-worldly" ;
+lin olden_A = mkAMost "olden" "oldenly" ;
+lin oldie_N = mkN "oldie" "oldies" ;
+lin oldish_A = mkAMost "oldish" "oldishly" ;
+lin oldline_A = mkAMost "oldline" "oldlinely" ;
+lin oldness_N = mkN "oldness" "oldnesses" ;
+lin oldster_N = mkN "oldster" "oldsters" ;
+lin oleaceous_A = mkAMost "oleaceous" "oleaceously" ;
+lin oleaginous_A = mkAMost "oleaginous" "oleaginously" ;
+lin oleander_N = mkN "oleander" "oleanders" ;
+lin oleaster_N = mkN "oleaster" "oleasters" ;
+lin olecranon_N = mkN "olecranon" "olecranons" ;
+lin oleophilic_A = mkAMost "oleophilic" "oleophilicly" ;
+lin oleophobic_A = mkAMost "oleophobic" "oleophobicly" ;
+lin oleoresin_N = mkN "oleoresin" "oleoresins" ;
+lin olfactory_A = mkAMost "olfactory" "olfactorily" ;
+lin oligarch_N = mkN "oligarch" "oligarchs" ;
+lin oligarchic_A = mkAMost "oligarchic" "oligarchicly" ;
+lin oligarchy_N = mkN "oligarchy" "oligarchies" ;
+lin oligochaete_N = mkN "oligochaete" "oligochaetes" ;
+lin oligodactyly_N = mkN "oligodactyly" "oligodactylies" ;
+lin oligodendrocyte_N = mkN "oligodendrocyte" "oligodendrocytes" ;
+lin oligodendroglia_N = mkN "oligodendroglia" "oligodendroglias" ;
+lin oligodontia_N = mkN "oligodontia" "oligodontias" ;
+lin oligomenorrhea_N = mkN "oligomenorrhea" "oligomenorrheas" ;
+lin oligopoly_N = mkN "oligopoly" "oligopolies" ;
+lin oligosaccharide_N = mkN "oligosaccharide" "oligosaccharides" ;
+lin oligospermia_N = mkN "oligospermia" "oligospermias" ;
+lin oliguria_N = mkN "oliguria" "oligurias" ;
+lin olive_A = mkAMost "olive" "olively" ;
+lin olive_N = mkN "olive" "olives" ;
+lin olive_tree_N = mkN "olive-tree" "olive-trees" ;
+lin olivelike_A = mkAMost "olivelike" "olivelikely" ;
+lin olivenite_N = mkN "olivenite" "olivenites" ;
+lin olivine_N = mkN "olivine" "olivines" ;
+lin olm_N = mkN "olm" "olms" ;
+lin ology_N = mkN "ology" "ologies" ;
+lin olympiad_N = mkN "olympiad" "olympiads" ;
+lin olympian_A = mkAMost "olympian" "olympianly" ;
+lin olympian_N = mkN "olympian" "olympians" ;
+lin olympic_A = mkAMost "olympic" "olympicly" ;
+lin omani_A = mkAMost "omani" "omanily" ;
+lin omani_N = mkN "omani" "omanis" ;
+lin ombu_N = mkN "ombu" "ombus" ;
+lin ombudsman_N = mkN "ombudsman" "ombudsmen" ;
+lin omega_N = mkN "omega" "omegas" ;
+lin omelet_N = mkN "omelet" "omelets" ;
+lin omelette_N = mkN "omelette" "omelettes" ;
+lin omen_N = mkN "omen" "omens" ;
+lin omen_V = mkV "omen" "omened" "omened" ;
+lin omentum_N = mkN "omentum" "omentums" ;
+lin omeprazole_N = mkN "omeprazole" "omeprazoles" ;
+lin omerta_N = mkN "omerta" "omertas" ;
+lin omicron_N = mkN "omicron" "omicrons" ;
+lin ominous_A = mkAMost "ominous" "ominously" ;
+lin omissible_A = mkAMost "omissible" "omissibly" ;
+lin omission_N = mkN "omission" "omissions" ;
+lin omissive_A = mkAMost "omissive" "omissively" ;
+lin omit_V = mkV "omit" "omitted" "omitted" ;
+lin ommastrephes_N = mkN "ommastrephes" "ommastrepheses" ;
+lin ommatidium_N = mkN "ommatidium" "ommatidiums" ;
+lin omnibus_N = mkN "omnibus" "omnibuses" ;
+lin omnidirectional_A = mkAMost "omnidirectional" "omnidirectionally" ;
+lin omnifarious_A = mkAMost "omnifarious" "omnifariously" ;
+lin omnipotence_N = mkN "omnipotence" "omnipotences" ;
+lin omnipotent_A = mkAMost "omnipotent" "omnipotently" ;
+lin omnipresent_A = mkAMost "omnipresent" "omnipresently" ;
+lin omnirange_N = mkN "omnirange" "omniranges" ;
+lin omniscience_N = mkN "omniscience" "omnisciences" ;
+lin omniscient_A = mkAMost "omniscient" "omnisciently" ;
+lin omnivore_N = mkN "omnivore" "omnivores" ;
+lin omnivorous_A = mkAMost "omnivorous" "omnivorously" ;
+lin omophagia_N = mkN "omophagia" "omophagias" ;
+lin omphaloskepsis_N = mkN "omphaloskepsis" "omphaloskepsises" ;
+lin on_Adv = mkAdv "on" ;
+lin on_Prep = mkPrep "on" ;
+lin on_account_of_Prep = mkPrep "on account of" ;
+lin on_behalf_of_Prep = mkPrep "on behalf of" ;
+lin on_licence_N = mkN "on-licence" "on-licences" ;
+lin on_top_of_Prep = mkPrep "on top of" ;
+lin onager_N = mkN "onager" "onagers" ;
+lin once_Adv = mkAdv "once" ;
+lin once_Prep = mkPrep "once" ;
+lin onchocerciasis_N = mkN "onchocerciasis" "onchocerciasises" ;
+lin oncidium_N = mkN "oncidium" "oncidiums" ;
+lin oncogene_N = mkN "oncogene" "oncogenes" ;
+lin oncological_A = mkAMost "oncological" "oncologically" ;
+lin oncologist_N = mkN "oncologist" "oncologists" ;
+lin oncology_N = mkN "oncology" "oncologies" ;
+lin oncoming_A = mkAMost "oncoming" "oncomingly" ;
+lin oncoming_N = mkN "oncoming" "IRREG" ;
+lin one_armed_A = mkAMost "one-armed" "one-armedly" ;
+lin one_eyed_A = mkAMost "one-eyed" "one-eyedly" ;
+lin one_horse_A = mkAMost "one-horse" "one-horsely" ;
+lin one_idea'd_A = mkAMost "one-idea'd" "one-idea'dly" ;
+lin one_sided_A = mkAMost "one-sided" "one-sidedly" ;
+lin one_step_N = mkN "one-step" "one-steps" ;
+lin one_time_A = mkAMost "one-time" "one-timely" ;
+lin one_upmanship_N = mkN "one-upmanship" "one-upmanships" ;
+lin oneiric_A = mkAMost "oneiric" "oneiricly" ;
+lin oneiromancer_N = mkN "oneiromancer" "oneiromancers" ;
+lin oneiromancy_N = mkN "oneiromancy" "oneiromancies" ;
+lin oneness_N = mkN "oneness" "onenesses" ;
+lin onerous_A = mkAMost "onerous" "onerously" ;
+lin ongoing_A = mkAMost "ongoing" "ongoingly" ;
+lin onion_N = mkN "onion" "onions" ;
+lin onionskin_N = mkN "onionskin" "onionskins" ;
+lin onlooker_N = mkN "onlooker" "onlookers" ;
+lin only_Adv = mkAdv "only" ;
+lin onomancer_N = mkN "onomancer" "onomancers" ;
+lin onomancy_N = mkN "onomancy" "onomancies" ;
+lin onomastic_A = mkAMost "onomastic" "onomasticly" ;
+lin onomasticon_N = mkN "onomasticon" "onomasticons" ;
+lin onomastics_N = mkN "onomastics" "onomasticses" ;
+lin onomatomania_N = mkN "onomatomania" "onomatomanias" ;
+lin onomatopoeia_N = mkN "onomatopoeia" "onomatopoeias" ;
+lin onomatopoeic_A = mkAMost "onomatopoeic" "onomatopoeicly" ;
+lin onrush_N = mkN "onrush" "onrushes" ;
+lin onset_N = mkN "onset" "onsets" ;
+lin onshore_A = mkAMost "onshore" "onshorely" ;
+lin onshore_Adv = mkAdv "onshore" ;
+lin onside_A = mkAMost "onside" "onsidely" ;
+lin onslaught_N = mkN "onslaught" "onslaughts" ;
+lin onstage_A = mkAMost "onstage" "onstagely" ;
+lin onstage_Adv = mkAdv "onstage" ;
+lin onto_Prep = mkPrep "onto" ;
+lin ontogenetic_A = mkAMost "ontogenetic" "ontogeneticly" ;
+lin ontological_A = mkAMost "ontological" "ontologically" ;
+lin ontology_N = mkN "ontology" "ontologies" ;
+lin onus_N = mkN "onus" "oni" ;
+lin onward_A = mkAMost "onward" "onwardly" ;
+lin onward_Adv = mkAdv "onward" ;
+lin onwards_Adv = mkAdv "onwards" ;
+lin onycholysis_N = mkN "onycholysis" "onycholysises" ;
+lin onychophoran_N = mkN "onychophoran" "onychophorans" ;
+lin onychosis_N = mkN "onychosis" "onychosises" ;
+lin onymous_A = mkAMost "onymous" "onymously" ;
+lin onyx_N = mkN "onyx" "onyxes" ;
+lin oocyte_N = mkN "oocyte" "oocytes" ;
+lin oogenesis_N = mkN "oogenesis" "oogenesises" ;
+lin oology_N = mkN "oology" "oologies" ;
+lin oolong_N = mkN "oolong" "oolongs" ;
+lin oomph_N = mkN "oomph" "oomphs" ;
+lin oophorectomy_N = mkN "oophorectomy" "oophorectomies" ;
+lin oophoritis_N = mkN "oophoritis" "oophoritises" ;
+lin oophorosalpingectomy_N = mkN "oophorosalpingectomy" "oophorosalpingectomies" ;
+lin oosphere_N = mkN "oosphere" "oospheres" ;
+lin oospore_N = mkN "oospore" "oospores" ;
+lin ootid_N = mkN "ootid" "ootids" ;
+lin ooze_N = mkN "ooze" "oozes" ;
+lin ooze_V = mkV "ooze" "oozed" "oozed" ;
+lin oozy_A = mkA "oozy" "oozier" "ooziest" "oozily" ;
+lin op_art_N = mkN "op art" "op arts" ;
+lin opacification_N = mkN "opacification" "opacifications" ;
+lin opacity_N = mkN "opacity" "opacities" ;
+lin opah_N = mkN "opah" "opahs" ;
+lin opal_N = mkN "opal" "opals" ;
+lin opalescence_N = mkN "opalescence" "opalescences" ;
+lin opalescent_A = mkAMost "opalescent" "opalescently" ;
+lin opaque_A = mkAMost "opaque" "opaquely" ;
+lin opaqueness_N = mkN "opaqueness" "opaquenesses" ;
+lin open_A = mkAMost "open" "openly" ;
+lin open_N = mkN "open" "opens" ;
+lin open_air_A = mkAMost "open-air" "open-airly" ;
+lin open_ended_A = mkAMost "open-ended" "open-endedly" ;
+lin open_eyed_A = mkAMost "open-eyed" "open-eyedly" ;
+lin open_handed_A = mkAMost "open-handed" "open-handedly" ;
+lin open_hearted_A = mkAMost "open-hearted" "open-heartedly" ;
+lin open_minded_A = mkAMost "open-minded" "open-mindedly" ;
+lin open_mouthed_A = mkAMost "open-mouthed" "open-mouthedly" ;
+lin open_opened_V = mkV "open" "opened" "opened" ;
+lin open_openned_V = mkV "open" "openned" "openned" ;
+lin openbill_N = mkN "openbill" "openbills" ;
+lin opencast_A = mkAMost "opencast" "opencastly" ;
+lin opener_N = mkN "opener" "openers" ;
+lin openhearted_A = mkAMost "openhearted" "openheartedly" ;
+lin opening_N = mkN "opening" "openings" ;
+lin openness_N = mkN "openness" "opennesses" ;
+lin openwork_N = mkN "openwork" "openworks" ;
+lin opepe_N = mkN "opepe" "opepes" ;
+lin opera_N = mkN "opera" "operas" ;
+lin opera_cloak_N = mkN "opera-cloak" "opera-cloaks" ;
+lin opera_hat_N = mkN "opera-hat" "opera-hats" ;
+lin opera_house_N = mkN "opera-house" "opera-houses" ;
+lin operable_A = mkAMost "operable" "operably" ;
+lin operagoer_N = mkN "operagoer" "operagoers" ;
+lin operand_N = mkN "operand" "operands" ;
+lin operant_A = mkAMost "operant" "operantly" ;
+lin operate_V = mkV "operate" "operated" "operated" ;
+lin operatic_A = mkAMost "operatic" "operaticly" ;
+lin operating_table_N = mkN "operating-table" "operating-tables" ;
+lin operating_theatre_N = mkN "operating-theatre" "operating-theatres" ;
+lin operation_N = mkN "operation" "operations" ;
+lin operational_A = mkAMost "operational" "operationally" ;
+lin operationalism_N = mkN "operationalism" "operationalisms" ;
+lin operationalist_A = mkAMost "operationalist" "operationalistly" ;
+lin operations_N = mkN "operations" "operationses" ;
+lin operative_A = mkAMost "operative" "operatively" ;
+lin operative_N = mkN "operative" "operatives" ;
+lin operator_N = mkN "operator" "operators" ;
+lin operculate_A = mkAMost "operculate" "operculately" ;
+lin operculum_N = mkN "operculum" "operculums" ;
+lin operetta_N = mkN "operetta" "operettas" ;
+lin operon_N = mkN "operon" "operons" ;
+lin ophidism_N = mkN "ophidism" "ophidisms" ;
+lin ophiolatry_N = mkN "ophiolatry" "ophiolatries" ;
+lin ophryon_N = mkN "ophryon" "ophryons" ;
+lin ophthalmectomy_N = mkN "ophthalmectomy" "ophthalmectomies" ;
+lin ophthalmia_N = mkN "ophthalmia" "ophthalmias" ;
+lin ophthalmic_A = mkAMost "ophthalmic" "ophthalmicly" ;
+lin ophthalmologist_N = mkN "ophthalmologist" "ophthalmologists" ;
+lin ophthalmology_N = mkN "ophthalmology" "ophthalmologies" ;
+lin ophthalmoplegia_N = mkN "ophthalmoplegia" "ophthalmoplegias" ;
+lin ophthalmoscope_N = mkN "ophthalmoscope" "ophthalmoscopes" ;
+lin ophthalmoscopy_N = mkN "ophthalmoscopy" "ophthalmoscopies" ;
+lin opiate_N = mkN "opiate" "opiates" ;
+lin opine_V = mkV "opine" "opined" "opined" ;
+lin opinion_N = mkN "opinion" "opinions" ;
+lin opinionated_A = mkAMost "opinionated" "opinionatedly" ;
+lin opinionative_A = mkAMost "opinionative" "opinionatively" ;
+lin opisthognathous_A = mkAMost "opisthognathous" "opisthognathously" ;
+lin opisthorchiasis_N = mkN "opisthorchiasis" "opisthorchiasises" ;
+lin opisthotonos_N = mkN "opisthotonos" "opisthotonoses" ;
+lin opium_N = mkN "opium" "opiums" ;
+lin opium_den_N = mkN "opium-den" "opium-dens" ;
+lin opopanax_N = mkN "opopanax" "opopanaxes" ;
+lin opossum_N = mkN "opossum" "opossums" ;
+lin opponent_A = mkAMost "opponent" "opponently" ;
+lin opponent_N = mkN "opponent" "opponents" ;
+lin opportune_A = mkAMost "opportune" "opportunely" ;
+lin opportuneness_N = mkN "opportuneness" "opportunenesses" ;
+lin opportunism_N = mkN "opportunism" "opportunisms" ;
+lin opportunist_A = mkAMost "opportunist" "opportunistly" ;
+lin opportunist_N = mkN "opportunist" "opportunists" ;
+lin opportunity_N = mkN "opportunity" "opportunities" ;
+lin opposable_A = mkAMost "opposable" "opposably" ;
+lin oppose_V = mkV "oppose" "opposed" "opposed" ;
+lin opposite_A = mkAMost "opposite" "oppositely" ;
+lin opposite_N = mkN "opposite" "opposites" ;
+lin opposite_Prep = mkPrep "opposite" ;
+lin opposition_N = mkN "opposition" "oppositions" ;
+lin oppress_V = mkV "oppress" "oppressed" "oppressed" ;
+lin oppression_N = mkN "oppression" "oppressions" ;
+lin oppressive_A = mkAMost "oppressive" "oppressively" ;
+lin oppressor_N = mkN "oppressor" "oppressors" ;
+lin opprobrious_A = mkAMost "opprobrious" "opprobriously" ;
+lin opprobrium_N = mkN "opprobrium" "opprobriums" ;
+lin oppugn_V = mkV "oppugn" "oppugned" "oppugned" ;
+lin opsin_N = mkN "opsin" "opsins" ;
+lin opsonin_N = mkN "opsonin" "opsonins" ;
+lin opsonization_N = mkN "opsonization" "opsonizations" ;
+lin opt_V = mkV "opt" "opted" "opted" ;
+lin optative_A = mkAMost "optative" "optatively" ;
+lin optative_N = mkN "optative" "optatives" ;
+lin optic_A = mkAMost "optic" "opticly" ;
+lin optical_A = mkAMost "optical" "optically" ;
+lin optician_N = mkN "optician" "opticians" ;
+lin optics_N = mkN "optics" "optics" ;
+lin optimal_A = mkAMost "optimal" "optimally" ;
+lin optimisation_N = mkN "optimisation" "optimisations" ;
+lin optimism_N = mkN "optimism" "optimisms" ;
+lin optimist_N = mkN "optimist" "optimists" ;
+lin optimistic_A = mkAMost "optimistic" "optimisticly" ;
+lin optimistically_Adv = mkAdv "optimistically" ;
+lin optimization_N = mkN "optimization" "optimizations" ;
+lin optimum_A = mkAMost "optimum" "optimumly" ;
+lin optimum_N = mkN "optimum" "optimums" ;
+lin option_N = mkN "option" "options" ;
+lin optional_A = mkAMost "optional" "optionally" ;
+lin optometrist_N = mkN "optometrist" "optometrists" ;
+lin optometry_N = mkN "optometry" "optometries" ;
+lin opulence_N = mkN "opulence" "opulences" ;
+lin opulent_A = mkAMost "opulent" "opulently" ;
+lin opus_N = mkN "opus" "opi" ;
+lin orach_N = mkN "orach" "oraches" ;
+lin oracle_N = mkN "oracle" "oracles" ;
+lin oracular_A = mkAMost "oracular" "oracularly" ;
+lin orad_Adv = mkAdv "orad" ;
+lin oral_A = mkAMost "oral" "orally" ;
+lin oral_N = mkN "oral" "orals" ;
+lin orang_outan_N = mkN "orang-outan" "orang-outans" ;
+lin orang_outang_N = mkN "orang-outang" "orang-outangs" ;
+lin orang_utan_N = mkN "orang-utan" "orang-utans" ;
+lin orange_A = mkAMost "orange" "orangely" ;
+lin orange_N = mkN "orange" "oranges" ;
+lin orangeade_N = mkN "orangeade" "orangeades" ;
+lin orangeman_N = mkN "orangeman" "orangemen" ;
+lin orangery_N = mkN "orangery" "orangeries" ;
+lin orangewood_N = mkN "orangewood" "orangewoods" ;
+lin orangutan_N = mkN "orangutan" "orangutans" ;
+lin orate_V = mkV "orate" "orated" "orated" ;
+lin oration_N = mkN "oration" "orations" ;
+lin orator_N = mkN "orator" "orators" ;
+lin oratorical_A = mkAMost "oratorical" "oratorically" ;
+lin oratorio_N = mkN "oratorio" "oratorios" ;
+lin oratory_N = mkN "oratory" "oratories" ;
+lin orb_N = mkN "orb" "orbs" ;
+lin orbiculate_A = mkAMost "orbiculate" "orbiculately" ;
+lin orbit_N = mkN "orbit" "orbits" ;
+lin orbit_V = mkV "orbit" "orbited" "orbited" ;
+lin orbital_A = mkAMost "orbital" "orbitally" ;
+lin orbitale_N = mkN "orbitale" "orbitales" ;
+lin orchard_N = mkN "orchard" "orchards" ;
+lin orchestra_N = mkN "orchestra" "orchestras" ;
+lin orchestral_A = mkAMost "orchestral" "orchestrally" ;
+lin orchestrate_V = mkV "orchestrate" "orchestrated" "orchestrated" ;
+lin orchestration_N = mkN "orchestration" "orchestrations" ;
+lin orchestrator_N = mkN "orchestrator" "orchestrators" ;
+lin orchid_N = mkN "orchid" "orchids" ;
+lin orchidalgia_N = mkN "orchidalgia" "orchidalgias" ;
+lin orchidectomy_N = mkN "orchidectomy" "orchidectomies" ;
+lin orchil_N = mkN "orchil" "orchils" ;
+lin orchiopexy_N = mkN "orchiopexy" "orchiopexies" ;
+lin orchis_N = mkN "orchis" "orchises" ;
+lin orchitis_N = mkN "orchitis" "orchitises" ;
+lin orchotomy_N = mkN "orchotomy" "orchotomies" ;
+lin ordain_V = mkV "ordain" "ordained" "ordained" ;
+lin ordainer_N = mkN "ordainer" "ordainers" ;
+lin ordeal_N = mkN "ordeal" "ordeals" ;
+lin order_N = mkN "order" "orders" ;
+lin order_V = mkV "order" "ordered" "ordered" ;
+lin order_book_N = mkN "order-book" "order-books" ;
+lin order_form_N = mkN "order-form" "order-forms" ;
+lin order_paper_N = mkN "order-paper" "order-papers" ;
+lin orderer_N = mkN "orderer" "orderers" ;
+lin ordering_N = mkN "ordering" "orderings" ;
+lin orderliness_N = mkN "orderliness" "orderlinesses" ;
+lin orderly_A = mkAMost "orderly" "orderlily" ;
+lin orderly_N = mkN "orderly" "orderlies" ;
+lin ordinal_A = mkAMost "ordinal" "ordinally" ;
+lin ordinal_N = mkN "ordinal" "ordinals" ;
+lin ordinance_N = mkN "ordinance" "ordinances" ;
+lin ordinand_N = mkN "ordinand" "ordinands" ;
+lin ordinariness_N = mkN "ordinariness" "ordinarinesses" ;
+lin ordinary_A = mkAMost "ordinary" "ordinarily" ;
+lin ordinary_N = mkN "ordinary" "ordinaries" ;
+lin ordinate_N = mkN "ordinate" "ordinates" ;
+lin ordination_N = mkN "ordination" "ordinations" ;
+lin ordnance_N = mkN "ordnance" "ordnances" ;
+lin ordure_N = mkN "ordure" "ordures" ;
+lin ore_N = mkN "ore" "ores" ;
+lin oregano_N = mkN "oregano" "oreganoes" ;
+lin oreo_N = mkN "oreo" "oreoes" ;
+lin organ_N = mkN "organ" "organs" ;
+lin organ_blower_N = mkN "organ-blower" "organ-blowers" ;
+lin organ_grinder_N = mkN "organ-grinder" "organ-grinders" ;
+lin organ_loft_N = mkN "organ-loft" "organ-lofts" ;
+lin organdie_N = mkN "organdie" "organdies" ;
+lin organdy_N = mkN "organdy" "organdies" ;
+lin organelle_N = mkN "organelle" "organelles" ;
+lin organic_A = mkAMost "organic" "organicly" ;
+lin organic_N = mkN "organic" "organics" ;
+lin organically_Adv = mkAdv "organically" ;
+lin organicism_N = mkN "organicism" "organicisms" ;
+lin organicistic_A = mkAMost "organicistic" "organicisticly" ;
+lin organification_N = mkN "organification" "organifications" ;
+lin organisation_N = mkN "organisation" "organisations" ;
+lin organise_V = mkV "organise" "organised" "organised" ;
+lin organiser_N = mkN "organiser" "organisers" ;
+lin organism_N = mkN "organism" "organisms" ;
+lin organismal_A = mkAMost "organismal" "organismally" ;
+lin organist_N = mkN "organist" "organists" ;
+lin organization_N = mkN "organization" "organizations" ;
+lin organizational_A = mkAMost "organizational" "organizationally" ;
+lin organize_V = mkV "organize" "organized" "organized" ;
+lin organizer_N = mkN "organizer" "organizers" ;
+lin organon_N = mkN "organon" "organons" ;
+lin organophosphate_N = mkN "organophosphate" "organophosphates" ;
+lin organza_N = mkN "organza" "organzas" ;
+lin orgasm_N = mkN "orgasm" "orgasms" ;
+lin orgiastic_A = mkAMost "orgiastic" "orgiasticly" ;
+lin orgy_N = mkN "orgy" "orgies" ;
+lin oriel_N = mkN "oriel" "oriels" ;
+lin orient_A = mkAMost "orient" "oriently" ;
+lin orient_N = mkN "orient" "orients" ;
+lin orient_V = mkV "orient" "oriented" "oriented" ;
+lin oriental_A = mkAMost "oriental" "orientally" ;
+lin oriental_N = mkN "oriental" "orientals" ;
+lin orientalism_N = mkN "orientalism" "orientalisms" ;
+lin orientalist_N = mkN "orientalist" "orientalists" ;
+lin orientate_V = mkV "orientate" "orientated" "orientated" ;
+lin orientation_N = mkN "orientation" "orientations" ;
+lin orienting_A = mkAMost "orienting" "orientingly" ;
+lin orifice_N = mkN "orifice" "orifices" ;
+lin oriflamme_N = mkN "oriflamme" "oriflammes" ;
+lin origami_N = mkN "origami" "origamis" ;
+lin origanum_N = mkN "origanum" "origanums" ;
+lin origin_N = mkN "origin" "origins" ;
+lin original_A = mkAMost "original" "originally" ;
+lin original_N = mkN "original" "originals" ;
+lin originalism_N = mkN "originalism" "originalisms" ;
+lin originality_N = mkN "originality" "originalities" ;
+lin originate_V = mkV "originate" "originated" "originated" ;
+lin originator_N = mkN "originator" "originators" ;
+lin oriole_N = mkN "oriole" "orioles" ;
+lin orison_N = mkN "orison" "orisons" ;
+lin orlop_N = mkN "orlop" "orlops" ;
+lin ormer_N = mkN "ormer" "ormers" ;
+lin ormolu_N = mkN "ormolu" "ormolus" ;
+lin ornament_N = mkN "ornament" "ornaments" ;
+lin ornament_V = mkV "ornament" "ornamented" "ornamented" ;
+lin ornamental_A = mkAMost "ornamental" "ornamentally" ;
+lin ornamental_N = mkN "ornamental" "ornamentals" ;
+lin ornamentalism_N = mkN "ornamentalism" "ornamentalisms" ;
+lin ornamentation_N = mkN "ornamentation" "ornamentations" ;
+lin ornate_A = mkAMost "ornate" "ornately" ;
+lin ornateness_N = mkN "ornateness" "ornatenesses" ;
+lin ornery_A = mkAMost "ornery" "ornerily" ;
+lin ornithine_N = mkN "ornithine" "ornithines" ;
+lin ornithischian_N = mkN "ornithischian" "ornithischians" ;
+lin ornithological_A = mkAMost "ornithological" "ornithologically" ;
+lin ornithologist_N = mkN "ornithologist" "ornithologists" ;
+lin ornithology_N = mkN "ornithology" "ornithologies" ;
+lin ornithomimid_N = mkN "ornithomimid" "ornithomimids" ;
+lin ornithopod_N = mkN "ornithopod" "ornithopods" ;
+lin orogeny_N = mkN "orogeny" "orogenies" ;
+lin oroide_N = mkN "oroide" "oroides" ;
+lin orologist_N = mkN "orologist" "orologists" ;
+lin orology_N = mkN "orology" "orologies" ;
+lin oropharyngeal_A = mkAMost "oropharyngeal" "oropharyngeally" ;
+lin oropharynx_N = mkN "oropharynx" "oropharynxes" ;
+lin orotund_A = mkAMost "orotund" "orotundly" ;
+lin orphan_N = mkN "orphan" "orphans" ;
+lin orphan_V = mkV "orphan" "orphaned" "orphaned" ;
+lin orphanage_N = mkN "orphanage" "orphanages" ;
+lin orphenadrine_N = mkN "orphenadrine" "orphenadrines" ;
+lin orphrey_N = mkN "orphrey" "orphreys" ;
+lin orpiment_N = mkN "orpiment" "orpiments" ;
+lin orpine_N = mkN "orpine" "orpines" ;
+lin orrery_N = mkN "orrery" "orreries" ;
+lin orrisroot_N = mkN "orrisroot" "orrisroots" ;
+lin orthicon_N = mkN "orthicon" "orthicons" ;
+lin orthochorea_N = mkN "orthochorea" "orthochoreas" ;
+lin orthoclase_N = mkN "orthoclase" "orthoclases" ;
+lin orthodontic_A = mkAMost "orthodontic" "orthodonticly" ;
+lin orthodontics_N = mkN "orthodontics" "orthodontics" ;
+lin orthodontist_N = mkN "orthodontist" "orthodontists" ;
+lin orthodox_A = mkAMost "orthodox" "orthodoxly" ;
+lin orthodoxy_N = mkN "orthodoxy" "orthodoxies" ;
+lin orthoepist_N = mkN "orthoepist" "orthoepists" ;
+lin orthoepy_N = mkN "orthoepy" "orthoepies" ;
+lin orthogonal_A = mkAMost "orthogonal" "orthogonally" ;
+lin orthogonality_N = mkN "orthogonality" "orthogonalities" ;
+lin orthographic_A = mkAMost "orthographic" "orthographicly" ;
+lin orthography_N = mkN "orthography" "orthographies" ;
+lin orthomolecular_A = mkAMost "orthomolecular" "orthomolecularly" ;
+lin orthomyxovirus_N = mkN "orthomyxovirus" "orthomyxoviruses" ;
+lin orthopaedic_A = mkAMost "orthopaedic" "orthopaedicly" ;
+lin orthopaedics_N = mkN "orthopaedics" "orthopaedics" ;
+lin orthopedic_A = mkAMost "orthopedic" "orthopedicly" ;
+lin orthopedics_N = mkN "orthopedics" "orthopedics" ;
+lin orthopedist_N = mkN "orthopedist" "orthopedists" ;
+lin orthopnea_N = mkN "orthopnea" "orthopneas" ;
+lin orthopter_N = mkN "orthopter" "orthopters" ;
+lin orthoptic_A = mkAMost "orthoptic" "orthopticly" ;
+lin orthoptics_N = mkN "orthoptics" "orthopticses" ;
+lin orthoptist_N = mkN "orthoptist" "orthoptists" ;
+lin orthoscope_N = mkN "orthoscope" "orthoscopes" ;
+lin orthostatic_A = mkAMost "orthostatic" "orthostaticly" ;
+lin orthotropous_A = mkAMost "orthotropous" "orthotropously" ;
+lin ortolan_N = mkN "ortolan" "ortolans" ;
+lin ortygan_N = mkN "ortygan" "ortygans" ;
+lin oryx_N = mkN "oryx" "oryxes" ;
+lin orzo_N = mkN "orzo" "orzoes" ;
+lin os_N = mkN "os" "oses" ;
+lin oscar_N = mkN "oscar" "oscars" ;
+lin oscheocele_N = mkN "oscheocele" "oscheoceles" ;
+lin oscillate_V = mkV "oscillate" "oscillated" "oscillated" ;
+lin oscillation_N = mkN "oscillation" "oscillations" ;
+lin oscillator_N = mkN "oscillator" "oscillators" ;
+lin oscillatory_A = mkAMost "oscillatory" "oscillatorily" ;
+lin oscillogram_N = mkN "oscillogram" "oscillograms" ;
+lin oscillograph_N = mkN "oscillograph" "oscillographs" ;
+lin oscilloscope_N = mkN "oscilloscope" "oscilloscopes" ;
+lin oscine_A = mkAMost "oscine" "oscinely" ;
+lin oscine_N = mkN "oscine" "oscines" ;
+lin oscitancy_N = mkN "oscitancy" "oscitancies" ;
+lin osculation_N = mkN "osculation" "osculations" ;
+lin osier_N = mkN "osier" "osiers" ;
+lin osmiridium_N = mkN "osmiridium" "osmiridiums" ;
+lin osmium_N = mkN "osmium" "osmiums" ;
+lin osmoreceptor_N = mkN "osmoreceptor" "osmoreceptors" ;
+lin osmosis_N = mkN "osmosis" "osmosises" ;
+lin osmotic_A = mkAMost "osmotic" "osmoticly" ;
+lin osmotically_Adv = mkAdv "osmotically" ;
+lin osprey_N = mkN "osprey" "ospreys" ;
+lin osseous_A = mkAMost "osseous" "osseously" ;
+lin ossicle_N = mkN "ossicle" "ossicles" ;
+lin ossicular_A = mkAMost "ossicular" "ossicularly" ;
+lin ossiferous_A = mkAMost "ossiferous" "ossiferously" ;
+lin ossification_N = mkN "ossification" "ossifications" ;
+lin ossify_V = mkV "ossify" "ossified" "ossified" ;
+lin ossuary_N = mkN "ossuary" "ossuaries" ;
+lin osteal_A = mkAMost "osteal" "osteally" ;
+lin osteitis_N = mkN "osteitis" "osteitises" ;
+lin ostensible_A = mkAMost "ostensible" "ostensibly" ;
+lin ostensive_A = mkAMost "ostensive" "ostensively" ;
+lin ostentation_N = mkN "ostentation" "ostentations" ;
+lin ostentatious_A = mkAMost "ostentatious" "ostentatiously" ;
+lin osteoarthritis_N = mkN "osteoarthritis" "osteoarthritises" ;
+lin osteoblast_N = mkN "osteoblast" "osteoblasts" ;
+lin osteoblastoma_N = mkN "osteoblastoma" "osteoblastomas" ;
+lin osteochondroma_N = mkN "osteochondroma" "osteochondromas" ;
+lin osteoclasis_N = mkN "osteoclasis" "osteoclasises" ;
+lin osteoclast_N = mkN "osteoclast" "osteoclasts" ;
+lin osteocyte_N = mkN "osteocyte" "osteocytes" ;
+lin osteodystrophy_N = mkN "osteodystrophy" "osteodystrophies" ;
+lin osteologist_N = mkN "osteologist" "osteologists" ;
+lin osteology_N = mkN "osteology" "osteologies" ;
+lin osteolysis_N = mkN "osteolysis" "osteolysises" ;
+lin osteoma_N = mkN "osteoma" "osteomas" ;
+lin osteomalacia_N = mkN "osteomalacia" "osteomalacias" ;
+lin osteomyelitis_N = mkN "osteomyelitis" "osteomyelitises" ;
+lin osteopath_N = mkN "osteopath" "osteopaths" ;
+lin osteopathy_N = mkN "osteopathy" "osteopathies" ;
+lin osteopetrosis_N = mkN "osteopetrosis" "osteopetrosises" ;
+lin osteophyte_N = mkN "osteophyte" "osteophytes" ;
+lin osteoporosis_N = mkN "osteoporosis" "osteoporosises" ;
+lin osteosarcoma_N = mkN "osteosarcoma" "osteosarcomas" ;
+lin osteosclerosis_N = mkN "osteosclerosis" "osteosclerosises" ;
+lin osteostracan_N = mkN "osteostracan" "osteostracans" ;
+lin osteotomy_N = mkN "osteotomy" "osteotomies" ;
+lin ostinato_N = mkN "ostinato" "ostinatoes" ;
+lin ostiole_N = mkN "ostiole" "ostioles" ;
+lin ostler_N = mkN "ostler" "ostlers" ;
+lin ostomy_N = mkN "ostomy" "ostomies" ;
+lin ostracism_N = mkN "ostracism" "ostracisms" ;
+lin ostracize_V = mkV "ostracize" "ostracized" "ostracized" ;
+lin ostracoderm_N = mkN "ostracoderm" "ostracoderms" ;
+lin ostrich_N = mkN "ostrich" "ostriches" ;
+lin ot_N = mkN "ot" "ots" ;
+lin other_A = mkAMost "other" "otherly" ;
+lin other_Adv = mkAdv "other" ;
+lin other_N = mkN "other" "others" ;
+lin otherness_N = mkN "otherness" "othernesses" ;
+lin otherwise_A = mkAMost "otherwise" "otherwisely" ;
+lin otherwise_Adv = mkAdv "otherwise" ;
+lin otherworld_N = mkN "otherworld" "otherworlds" ;
+lin otherworldly_A = mkAMost "otherworldly" "otherworldlily" ;
+lin othonna_N = mkN "othonna" "othonnas" ;
+lin otic_A = mkAMost "otic" "oticly" ;
+lin otiose_A = mkAMost "otiose" "otiosely" ;
+lin otitis_N = mkN "otitis" "otitises" ;
+lin otology_N = mkN "otology" "otologies" ;
+lin otoplasty_N = mkN "otoplasty" "otoplasties" ;
+lin otorrhea_N = mkN "otorrhea" "otorrheas" ;
+lin otosclerosis_N = mkN "otosclerosis" "otosclerosises" ;
+lin otoscope_N = mkN "otoscope" "otoscopes" ;
+lin ototoxic_A = mkAMost "ototoxic" "ototoxicly" ;
+lin otter_N = mkN "otter" "otters" ;
+lin otterhound_N = mkN "otterhound" "otterhounds" ;
+lin ottoman_N = mkN "ottoman" "ottomans" ;
+lin oubliette_N = mkN "oubliette" "oubliettes" ;
+lin ouguiya_N = mkN "ouguiya" "ouguiyas" ;
+lin ouija_N = mkN "ouija" "ouijas" ;
+lin ouija_board_N = mkN "ouija-board" "ouija-boards" ;
+lin ounce_N = mkN "ounce" "ounces" ;
+lin oust_V = mkV "oust" "ousted" "ousted" ;
+lin ouster_N = mkN "ouster" "ousters" ;
+lin out_A = mkA "out" "outer" "outest" "outly" ;
+lin out_Adv = mkAdv "out" ;
+lin out_N = mkN "out" "outs" ;
+lin out_Prep = mkPrep "out" ;
+lin out_V = mkV "out" "outed" "outed" ;
+lin out_from_Prep = mkPrep "out from" ;
+lin out_herod_V = mkV "out-herod" "out-heroded" "out-heroded" ;
+lin out_of_Prep = mkPrep "out of" ;
+lin out_of_date_A = mkAMost "out-of-date" "out-of-dately" ;
+lin out_of_door_A = mkAMost "out-of-door" "out-of-doorly" ;
+lin out_of_doors_Adv = mkAdv "out-of-doors" ;
+lin out_of_the_way_A = mkAMost "out-of-the-way" "out-of-the-waily" ;
+lin out_of_the_way_Adv = mkAdv "out-of-the-way" ;
+lin out_of_work_A = mkAMost "out-of-work" "out-of-workly" ;
+lin out_trade_V = mkV "out-trade" "out-traded" "out-traded" ;
+lin out_tray_N = mkN "out-tray" "out-trays" ;
+lin outage_N = mkN "outage" "outages" ;
+lin outback_A = mkAMost "outback" "outbackly" ;
+lin outback_N = mkN "outback" "IRREG" ;
+lin outbalance_V = mkV "outbalance" "outbalanced" "outbalanced" ;
+lin outbid_outbade_outbid_V = mkV "outbid" "outbade" "outbid" ;
+lin outbid_outbade_outbidden_V = mkV "outbid" "outbade" "outbidden" ;
+lin outbid_outbid_outbid_V = mkV "outbid" "outbid" "outbid" ;
+lin outbid_outbid_outbidden_V = mkV "outbid" "outbid" "outbidden" ;
+lin outboard_A = mkAMost "outboard" "outboardly" ;
+lin outbound_A = mkAMost "outbound" "outboundly" ;
+lin outbrave_V = mkV "outbrave" "outbraved" "outbraved" ;
+lin outbreak_N = mkN "outbreak" "outbreaks" ;
+lin outbred_A = mkAMost "outbred" "outbredly" ;
+lin outbuilding_N = mkN "outbuilding" "outbuildings" ;
+lin outburst_N = mkN "outburst" "outbursts" ;
+lin outcast_A = mkAMost "outcast" "outcastly" ;
+lin outcast_N = mkN "outcast" "outcasts" ;
+lin outcaste_A = mkAMost "outcaste" "outcastely" ;
+lin outcaste_N = mkN "outcaste" "outcastes" ;
+lin outclass_V = mkV "outclass" "outclassed" "outclassed" ;
+lin outcome_N = mkN "outcome" "outcomes" ;
+lin outcrop_N = mkN "outcrop" "outcrops" ;
+lin outcry_N = mkN "outcry" "outcries" ;
+lin outdated_A = mkAMost "outdated" "outdatedly" ;
+lin outdistance_V = mkV "outdistance" "outdistanced" "outdistanced" ;
+lin outdo_V = mkV "outdo" "outdid" "outdone" ;
+lin outdoor_A = mkAMost "outdoor" "outdoorly" ;
+lin outdoors_Adv = mkAdv "outdoors" ;
+lin outdoors_N = mkN "outdoors" "outdoorses" ;
+lin outdoorsman_N = mkN "outdoorsman" "outdoorsmen" ;
+lin outdoorswoman_N = mkN "outdoorswoman" "outdoorswomen" ;
+lin outdoorsy_A = mkAMost "outdoorsy" "outdoorsily" ;
+lin outer_A = mkAMost "outer" "outerly" ;
+lin outercourse_N = mkN "outercourse" "outercourses" ;
+lin outermost_A = mkAMost "outermost" "outermostly" ;
+lin outerwear_N = mkN "outerwear" "outerwears" ;
+lin outface_V = mkV "outface" "outfaced" "outfaced" ;
+lin outfall_N = mkN "outfall" "outfalls" ;
+lin outfield_N = mkN "outfield" "outfields" ;
+lin outfielder_N = mkN "outfielder" "outfielders" ;
+lin outfight_V = mkV "outfight" "outfought" "outfought" ;
+lin outfit_N = mkN "outfit" "outfits" ;
+lin outfit_V = mkV "outfit" "outfitted" "outfitted" ;
+lin outfitter_N = mkN "outfitter" "outfitters" ;
+lin outfitting_N = mkN "outfitting" "outfittings" ;
+lin outflank_V = mkV "outflank" "outflanked" "outflanked" ;
+lin outflow_N = mkN "outflow" "outflows" ;
+lin outfly_V = mkV "outfly" "outflied" "outflied" ;
+lin outfox_V = mkV "outfox" "outfoxed" "outfoxed" ;
+lin outgain_V = mkV "outgain" "outgained" "outgained" ;
+lin outgo_N = mkN "outgo" "outgoes" ;
+lin outgo_V = mkV "outgo" "outwent" "outgone" ;
+lin outgrow_V = mkV "outgrow" "outgrew" "outgrown" ;
+lin outgrowth_N = mkN "outgrowth" "outgrowths" ;
+lin outhouse_N = mkN "outhouse" "outhouses" ;
+lin outing_N = mkN "outing" "outings" ;
+lin outlandish_A = mkAMost "outlandish" "outlandishly" ;
+lin outlandishness_N = mkN "outlandishness" "outlandishnesses" ;
+lin outlast_V = mkV "outlast" "outlasted" "outlasted" ;
+lin outlaw_N = mkN "outlaw" "outlaws" ;
+lin outlaw_V = mkV "outlaw" "outlawed" "outlawed" ;
+lin outlawry_N = mkN "outlawry" "outlawries" ;
+lin outlay_N = mkN "outlay" "outlays" ;
+lin outleap_V = mkV "outleap" "outleaped" "outleaped" ;
+lin outlet_N = mkN "outlet" "outlets" ;
+lin outlier_N = mkN "outlier" "outliers" ;
+lin outline_N = mkN "outline" "outlines" ;
+lin outline_V = mkV "outline" "outlined" "outlined" ;
+lin outlive_V = mkV "outlive" "outlived" "outlived" ;
+lin outlook_N = mkN "outlook" "outlooks" ;
+lin outlying_A = mkAMost "outlying" "outlyingly" ;
+lin outmanoeuvre_V = mkV "outmanoeuvre" "outmanoeuvred" "outmanoeuvred" ;
+lin outmarch_V = mkV "outmarch" "outmarched" "outmarched" ;
+lin outmatch_V = mkV "outmatch" "outmatched" "outmatched" ;
+lin outmoded_A = mkAMost "outmoded" "outmodedly" ;
+lin outmost_A = mkAMost "outmost" "outmostly" ;
+lin outnumber_V = mkV "outnumber" "outnumbered" "outnumbered" ;
+lin outpace_V = mkV "outpace" "outpaced" "outpaced" ;
+lin outpatient_N = mkN "outpatient" "outpatients" ;
+lin outperform_V = mkV "outperform" "outperformed" "outperformed" ;
+lin outplay_V = mkV "outplay" "outplayed" "outplayed" ;
+lin outpoint_V = mkV "outpoint" "outpointed" "outpointed" ;
+lin outport_N = mkN "outport" "outports" ;
+lin outpost_N = mkN "outpost" "outposts" ;
+lin outpouring_N = mkN "outpouring" "outpourings" ;
+lin output_N = mkN "output" "IRREG" ;
+lin outrage_N = mkN "outrage" "outrages" ;
+lin outrage_V = mkV "outrage" "outraged" "outraged" ;
+lin outrageous_A = mkAMost "outrageous" "outrageously" ;
+lin outrageousness_N = mkN "outrageousness" "outrageousnesses" ;
+lin outrange_V = mkV "outrange" "outranged" "outranged" ;
+lin outrank_V = mkV "outrank" "outranked" "outranked" ;
+lin outreach_N = mkN "outreach" "outreaches" ;
+lin outride_V = mkV "outride" "outrode" "outridden" ;
+lin outrider_N = mkN "outrider" "outriders" ;
+lin outrigged_A = mkAMost "outrigged" "outriggedly" ;
+lin outrigger_N = mkN "outrigger" "outriggers" ;
+lin outright_A = mkAMost "outright" "outrightly" ;
+lin outright_Adv = mkAdv "outright" ;
+lin outrival_V = mkV "outrival" "outrivalled" "outrivalled" ;
+lin outrun_V = mkV "outrun" "outran" "outrun" ;
+lin outré_A = mkAMost "outré" "outrély" ;
+lin outsail_V = mkV "outsail" "outsailed" "outsailed" ;
+lin outsell_V = mkV "outsell" "outselled" "outselled" ;
+lin outset_N = mkN "outset" "outsets" ;
+lin outshine_V = mkV "outshine" "outshone" "outshone" ;
+lin outside_A = mkAMost "outside" "outsidely" ;
+lin outside_Adv = mkAdv "outside" ;
+lin outside_N = mkN "outside" "outsides" ;
+lin outside_Prep = mkPrep "outside" ;
+lin outside_of_Prep = mkPrep "outside of" ;
+lin outsider_N = mkN "outsider" "outsiders" ;
+lin outsize_A = mkAMost "outsize" "outsizely" ;
+lin outsize_N = mkN "outsize" "outsizes" ;
+lin outskirt_N = mkN "outskirt" "outskirts" ;
+lin outskirts_N = mkN "outskirts" "outskirtses" ;
+lin outsmart_V = mkV "outsmart" "outsmarted" "outsmarted" ;
+lin outsole_N = mkN "outsole" "outsoles" ;
+lin outspan_V = mkV "outspan" "outspanned" "outspanned" ;
+lin outspoken_A = mkAMost "outspoken" "outspokenly" ;
+lin outspokenness_N = mkN "outspokenness" "outspokennesses" ;
+lin outspread_A = mkAMost "outspread" "outspreadly" ;
+lin outstanding_A = mkAMost "outstanding" "outstandingly" ;
+lin outstation_N = mkN "outstation" "outstations" ;
+lin outstay_V = mkV "outstay" "outstayed" "outstayed" ;
+lin outstretched_A = mkAMost "outstretched" "outstretchedly" ;
+lin outstrip_V = mkV "outstrip" "outstripped" "outstripped" ;
+lin outstroke_N = mkN "outstroke" "outstrokes" ;
+lin outtake_N = mkN "outtake" "outtakes" ;
+lin outthrust_N = mkN "outthrust" "outthrusts" ;
+lin outvie_V = mkV "outvie" "IRREG" "IRREG" ;
+lin outvote_V = mkV "outvote" "outvoted" "outvoted" ;
+lin outward_A = mkAMost "outward" "outwardly" ;
+lin outward_Adv = mkAdv "outward" ;
+lin outwardness_N = mkN "outwardness" "outwardnesses" ;
+lin outwards_Adv = mkAdv "outwards" ;
+lin outwear_V = mkV "outwear" "outwore" "outworn" ;
+lin outweigh_V = mkV "outweigh" "outweighed" "outweighed" ;
+lin outwit_V = mkV "outwit" "outwitted" "outwitted" ;
+lin outwith_Prep = mkPrep "outwith" ;
+lin outwork_N = mkN "outwork" "outworks" ;
+lin ouzel_N = mkN "ouzel" "ouzels" ;
+lin ouzo_N = mkN "ouzo" "ouzoes" ;
+lin oval_A = mkAMost "oval" "ovally" ;
+lin oval_N = mkN "oval" "ovals" ;
+lin ovarian_A = mkAMost "ovarian" "ovarianly" ;
+lin ovaritis_N = mkN "ovaritis" "ovaritises" ;
+lin ovary_N = mkN "ovary" "ovaries" ;
+lin ovate_A = mkAMost "ovate" "ovately" ;
+lin ovation_N = mkN "ovation" "ovations" ;
+lin oven_N = mkN "oven" "ovens" ;
+lin ovenbird_N = mkN "ovenbird" "ovenbirds" ;
+lin ovenware_N = mkN "ovenware" "ovenwares" ;
+lin over_Adv = mkAdv "over" ;
+lin over_N = mkN "over" "overs" ;
+lin over_Prep = mkPrep "over" ;
+lin over_abundance_N = mkN "over-abundance" "over-abundances" ;
+lin over_magazine_V = mkV "over-magazine" "over-magazined" "over-magazined" ;
+lin over_ripe_A = mkAMost "over-ripe" "over-ripely" ;
+lin overabundance_N = mkN "overabundance" "overabundances" ;
+lin overabundant_A = mkAMost "overabundant" "overabundantly" ;
+lin overachievement_N = mkN "overachievement" "overachievements" ;
+lin overachiever_N = mkN "overachiever" "overachievers" ;
+lin overact_V = mkV "overact" "overacted" "overacted" ;
+lin overactive_A = mkAMost "overactive" "overactively" ;
+lin overactivity_N = mkN "overactivity" "overactivities" ;
+lin overage_A = mkAMost "overage" "overagely" ;
+lin overage_N = mkN "overage" "overages" ;
+lin overall_A = mkAMost "overall" "overally" ;
+lin overall_N = mkN "overall" "overalls" ;
+lin overambitious_A = mkAMost "overambitious" "overambitiously" ;
+lin overanxiety_N = mkN "overanxiety" "overanxieties" ;
+lin overanxious_A = mkAMost "overanxious" "overanxiously" ;
+lin overarch_V = mkV "overarch" "overarched" "overarched" ;
+lin overarm_A = mkAMost "overarm" "overarmly" ;
+lin overarm_Adv = mkAdv "overarm" ;
+lin overawe_V = mkV "overawe" "overawed" "overawed" ;
+lin overbalance_V = mkV "overbalance" "overbalanced" "overbalanced" ;
+lin overbear_V = mkV "overbear" "overbore" "overborn" ;
+lin overbearing_A = mkAMost "overbearing" "overbearingly" ;
+lin overbid_N = mkN "overbid" "overbids" ;
+lin overbid_overbade_overbid_V = mkV "overbid" "overbade" "overbid" ;
+lin overbid_overbade_overbidden_V = mkV "overbid" "overbade" "overbidden" ;
+lin overbid_overbid_overbid_V = mkV "overbid" "overbid" "overbid" ;
+lin overbid_overbid_overbidden_V = mkV "overbid" "overbid" "overbidden" ;
+lin overbite_N = mkN "overbite" "overbites" ;
+lin overblown_A = mkAMost "overblown" "overblownly" ;
+lin overboard_Adv = mkAdv "overboard" ;
+lin overbold_A = mkAMost "overbold" "overboldly" ;
+lin overburden_N = mkN "overburden" "overburdens" ;
+lin overburden_V = mkV "overburden" "overburdened" "overburdened" ;
+lin overbusy_A = mkAMost "overbusy" "overbusily" ;
+lin overcall_V = mkV "overcall" "overcalled" "overcalled" ;
+lin overcapitalization_N = mkN "overcapitalization" "overcapitalizations" ;
+lin overcapitalize_V = mkV "overcapitalize" "overcapitalized" "overcapitalized" ;
+lin overcareful_A = mkAMost "overcareful" "overcarefully" ;
+lin overcast_A = mkAMost "overcast" "overcastly" ;
+lin overcast_N = mkN "overcast" "IRREG" ;
+lin overcautious_A = mkAMost "overcautious" "overcautiously" ;
+lin overcharge_N = mkN "overcharge" "overcharges" ;
+lin overcharge_V = mkV "overcharge" "overcharged" "overcharged" ;
+lin overclothe_V = mkV "overclothe" "overclothed" "overclothed" ;
+lin overcloud_V = mkV "overcloud" "overclouded" "overclouded" ;
+lin overcoat_N = mkN "overcoat" "overcoats" ;
+lin overcome_overcame_V = mkV "overcome" "overcame" "overcome" ;
+lin overcome_overcomed_V = mkV "overcome" "overcomed" "overcomed" ;
+lin overcommit_V = mkV "overcommit" "overcommitted" "overcommitted" ;
+lin overcompensation_N = mkN "overcompensation" "overcompensations" ;
+lin overconfidence_N = mkN "overconfidence" "overconfidences" ;
+lin overconfident_A = mkAMost "overconfident" "overconfidently" ;
+lin overcook_V = mkV "overcook" "overcooked" "overcooked" ;
+lin overcredulity_N = mkN "overcredulity" "overcredulities" ;
+lin overcredulous_A = mkAMost "overcredulous" "overcredulously" ;
+lin overcritical_A = mkAMost "overcritical" "overcritically" ;
+lin overcrop_V = mkV "overcrop" "overcropped" "overcropped" ;
+lin overcrowd_V = mkV "overcrowd" "overcrowded" "overcrowded" ;
+lin overcurious_A = mkAMost "overcurious" "overcuriously" ;
+lin overdelicate_A = mkAMost "overdelicate" "overdelicately" ;
+lin overdo_V = mkV "overdo" "overdid" "overdone" ;
+lin overdose_V = mkV "overdose" "overdosed" "overdosed" ;
+lin overdraft_N = mkN "overdraft" "overdrafts" ;
+lin overdraw_V = mkV "overdraw" "overdrew" "overdrawn" ;
+lin overdress_V = mkV "overdress" "overdressed" "overdressed" ;
+lin overdrive_N = mkN "overdrive" "overdrives" ;
+lin overdue_A = mkAMost "overdue" "overduely" ;
+lin overeager_A = mkAMost "overeager" "overeagerly" ;
+lin overeat_V = mkV "overeat" "overate" "overeaten" ;
+lin overemotional_A = mkAMost "overemotional" "overemotionally" ;
+lin overemphasis_N = mkN "overemphasis" "overemphasises" ;
+lin overemphasize_V = mkV "overemphasize" "overemphasized" "overemphasized" ;
+lin overenthusiastic_A = mkAMost "overenthusiastic" "overenthusiasticly" ;
+lin overestimate_N = mkN "overestimate" "overestimates" ;
+lin overestimate_V = mkV "overestimate" "overestimated" "overestimated" ;
+lin overexcited_A = mkAMost "overexcited" "overexcitedly" ;
+lin overexert_V = mkV "overexert" "overexerted" "overexerted" ;
+lin overexertion_N = mkN "overexertion" "overexertions" ;
+lin overexploitation_N = mkN "overexploitation" "overexploitations" ;
+lin overexpose_V = mkV "overexpose" "overexposed" "overexposed" ;
+lin overexposure_N = mkN "overexposure" "overexposures" ;
+lin overfamiliar_A = mkAMost "overfamiliar" "overfamiliarly" ;
+lin overfed_A = mkAMost "overfed" "overfedly" ;
+lin overfeed_V = mkV "overfeed" "overfeeded" "overfeeded" ;
+lin overfeeding_N = mkN "overfeeding" "overfeedings" ;
+lin overflight_N = mkN "overflight" "overflights" ;
+lin overflow_N = mkN "overflow" "overflows" ;
+lin overflow_V = mkV "overflow" "overflowed" "overflowed" ;
+lin overfly_V = mkV "overfly" "overflew" "overflown" ;
+lin overfond_A = mkAMost "overfond" "overfondly" ;
+lin overfull_A = mkAMost "overfull" "overfully" ;
+lin overgarment_N = mkN "overgarment" "overgarments" ;
+lin overgenerous_A = mkAMost "overgenerous" "overgenerously" ;
+lin overgreedy_A = mkAMost "overgreedy" "overgreedily" ;
+lin overgrown_A = mkAMost "overgrown" "overgrownly" ;
+lin overgrowth_N = mkN "overgrowth" "overgrowths" ;
+lin overhand_A = mkAMost "overhand" "overhandly" ;
+lin overhang_N = mkN "overhang" "overhangs" ;
+lin overhang_V = mkV "overhang" "overhung" "overhung" ;
+lin overhasty_A = mkAMost "overhasty" "overhastily" ;
+lin overhaul_N = mkN "overhaul" "overhauls" ;
+lin overhaul_V = mkV "overhaul" "overhauled" "overhauled" ;
+lin overhead_A = mkAMost "overhead" "overheadly" ;
+lin overhead_Adv = mkAdv "overhead" ;
+lin overhead_N = mkN "overhead" "overheads" ;
+lin overhear_V = mkV "overhear" "overheard" "overheard" ;
+lin overheat_V = mkV "overheat" "overheated" "overheated" ;
+lin overheating_N = mkN "overheating" "overheatings" ;
+lin overindulge_V = mkV "overindulge" "overindulged" "overindulged" ;
+lin overindulgence_N = mkN "overindulgence" "overindulgences" ;
+lin overindulgent_A = mkAMost "overindulgent" "overindulgently" ;
+lin overjealous_A = mkAMost "overjealous" "overjealously" ;
+lin overjoyed_A = mkAMost "overjoyed" "overjoyedly" ;
+lin overkill_N = mkN "overkill" "overkills" ;
+lin overladen_A = mkAMost "overladen" "overladenly" ;
+lin overland_A = mkAMost "overland" "overlandly" ;
+lin overlap_N = mkN "overlap" "overlaps" ;
+lin overlap_V = mkV "overlap" "overlapped" "overlapped" ;
+lin overlarge_A = mkAMost "overlarge" "overlargely" ;
+lin overlay_N = mkN "overlay" "overlays" ;
+lin overlay_V = mkV "overlay" "overlaid" "overlaid" ;
+lin overleaf_Adv = mkAdv "overleaf" ;
+lin overleap_V = mkV "overleap" "overleaped" "overleaped" ;
+lin overlie_V = mkV "overlie" "overlay" "overlain" ;
+lin overlip_N = mkN "overlip" "overlips" ;
+lin overload_N = mkN "overload" "overloads" ;
+lin overload_V = mkV "overload" "overloaded" "overloaded" ;
+lin overlook_N = mkN "overlook" "overlooks" ;
+lin overlook_V = mkV "overlook" "overlooked" "overlooked" ;
+lin overlord_N = mkN "overlord" "overlords" ;
+lin overlordship_N = mkN "overlordship" "overlordships" ;
+lin overly_Adv = mkAdv "overly" ;
+lin overmantel_N = mkN "overmantel" "overmantels" ;
+lin overmaster_V = mkV "overmaster" "overmastered" "overmastered" ;
+lin overmodest_A = mkAMost "overmodest" "overmodestly" ;
+lin overmuch_A = mkAMost "overmuch" "overmuchly" ;
+lin overmuch_Adv = mkAdv "overmuch" ;
+lin overnervous_A = mkAMost "overnervous" "overnervously" ;
+lin overnight_A = mkAMost "overnight" "overnightly" ;
+lin overnight_Adv = mkAdv "overnight" ;
+lin overnighter_N = mkN "overnighter" "overnighters" ;
+lin overpass_N = mkN "overpass" "overpasses" ;
+lin overpay_overpaid_V = mkV "overpay" "overpaid" "overpaid" ;
+lin overpay_overpayed_V = mkV "overpay" "overpayed" "overpayed" ;
+lin overpayment_N = mkN "overpayment" "overpayments" ;
+lin overplant_V = mkV "overplant" "overplanted" "overplanted" ;
+lin overplay_V = mkV "overplay" "overplayed" "overplayed" ;
+lin overplus_N = mkN "overplus" "overpluses" ;
+lin overpopulation_N = mkN "overpopulation" "overpopulations" ;
+lin overpower_V = mkV "overpower" "overpowered" "overpowered" ;
+lin overpowering_A = mkAMost "overpowering" "overpoweringly" ;
+lin overpraise_V = mkV "overpraise" "overpraised" "overpraised" ;
+lin overpressure_N = mkN "overpressure" "overpressures" ;
+lin overprice_V = mkV "overprice" "overpriced" "overpriced" ;
+lin overprint_N = mkN "overprint" "overprints" ;
+lin overprint_V = mkV "overprint" "overprinted" "overprinted" ;
+lin overproduce_V = mkV "overproduce" "overproduced" "overproduced" ;
+lin overproduction_N = mkN "overproduction" "overproductions" ;
+lin overprotective_A = mkAMost "overprotective" "overprotectively" ;
+lin overproud_A = mkAMost "overproud" "overproudly" ;
+lin overrate_V = mkV "overrate" "overrated" "overrated" ;
+lin overreach_V = mkV "overreach" "overreached" "overreached" ;
+lin overreaching_A = mkAMost "overreaching" "overreachingly" ;
+lin overreact_V = mkV "overreact" "overreacted" "overreacted" ;
+lin overreaction_N = mkN "overreaction" "overreactions" ;
+lin overrefined_A = mkAMost "overrefined" "overrefinedly" ;
+lin override_N = mkN "override" "overrides" ;
+lin override_V = mkV "override" "overrode" "overridden" ;
+lin overriding_A = mkAMost "overriding" "overridingly" ;
+lin overripe_A = mkAMost "overripe" "overripely" ;
+lin overrule_V = mkV "overrule" "overruled" "overruled" ;
+lin overrun_V = mkV "overrun" "overran" "overrun" ;
+lin oversea_A = mkAMost "oversea" "oversealy" ;
+lin oversea_Adv = mkAdv "oversea" ;
+lin overseas_A = mkAMost "overseas" "overseasly" ;
+lin overseas_Adv = mkAdv "overseas" ;
+lin oversee_V = mkV "oversee" "oversaw" "overseen" ;
+lin overseer_N = mkN "overseer" "overseers" ;
+lin oversell_V = mkV "oversell" "overselled" "overselled" ;
+lin oversensitive_A = mkAMost "oversensitive" "oversensitively" ;
+lin oversensitiveness_N = mkN "oversensitiveness" "oversensitivenesses" ;
+lin overserious_A = mkAMost "overserious" "overseriously" ;
+lin oversew_oversewed_V = mkV "oversew" "oversewed" "oversewed" ;
+lin oversew_oversewn_V = mkV "oversew" "oversewed" "oversewn" ;
+lin oversewn_A = mkAMost "oversewn" "oversewnly" ;
+lin oversexed_A = mkAMost "oversexed" "oversexedly" ;
+lin overshadow_V = mkV "overshadow" "overshadowed" "overshadowed" ;
+lin overshoe_N = mkN "overshoe" "overshoes" ;
+lin overshoot_N = mkN "overshoot" "overshoots" ;
+lin overshoot_V = mkV "overshoot" "overshot" "overshot" ;
+lin overside_Adv = mkAdv "overside" ;
+lin oversight_N = mkN "oversight" "oversights" ;
+lin oversimplification_N = mkN "oversimplification" "oversimplifications" ;
+lin oversimplify_V = mkV "oversimplify" "oversimplified" "oversimplified" ;
+lin oversize_A = mkAMost "oversize" "oversizely" ;
+lin overskirt_N = mkN "overskirt" "overskirts" ;
+lin oversleep_V = mkV "oversleep" "overslept" "overslept" ;
+lin oversolicitous_A = mkAMost "oversolicitous" "oversolicitously" ;
+lin overspend_V = mkV "overspend" "overspent" "overspent" ;
+lin overspill_N = mkN "overspill" "overspills" ;
+lin overstate_V = mkV "overstate" "overstated" "overstated" ;
+lin overstatement_N = mkN "overstatement" "overstatements" ;
+lin overstay_V = mkV "overstay" "overstayed" "overstayed" ;
+lin overstep_V = mkV "overstep" "overstepped" "overstepped" ;
+lin overstock_V = mkV "overstock" "overstocked" "overstocked" ;
+lin overstrain_N = mkN "overstrain" "overstrains" ;
+lin overstrain_V = mkV "overstrain" "overstrained" "overstrained" ;
+lin overstrung_A = mkAMost "overstrung" "overstrungly" ;
+lin overstuffed_A = mkAMost "overstuffed" "overstuffedly" ;
+lin oversubscribe_V = mkV "oversubscribe" "oversubscribed" "oversubscribed" ;
+lin oversuspicious_A = mkAMost "oversuspicious" "oversuspiciously" ;
+lin overt_A = mkAMost "overt" "overtly" ;
+lin overtake_V = mkV "overtake" "overtook" "overtaken" ;
+lin overtax_V = mkV "overtax" "overtaxed" "overtaxed" ;
+lin overthrow_N = mkN "overthrow" "overthrows" ;
+lin overthrow_V = mkV "overthrow" "overthrew" "overthrown" ;
+lin overthwart_Prep = mkPrep "overthwart" ;
+lin overtime_Adv = mkAdv "overtime" ;
+lin overtime_N = mkN "overtime" "overtimes" ;
+lin overtolerance_N = mkN "overtolerance" "overtolerances" ;
+lin overtone_N = mkN "overtone" "overtones" ;
+lin overtop_V = mkV "overtop" "overtopped" "overtopped" ;
+lin overtrump_V = mkV "overtrump" "overtrumped" "overtrumped" ;
+lin overture_N = mkN "overture" "overtures" ;
+lin overturn_N = mkN "overturn" "overturns" ;
+lin overturn_V = mkV "overturn" "overturned" "overturned" ;
+lin overvaliant_A = mkAMost "overvaliant" "overvaliantly" ;
+lin overvaluation_N = mkN "overvaluation" "overvaluations" ;
+lin overvalue_V = mkV "overvalue" "overvalued" "overvalued" ;
+lin overview_N = mkN "overview" "overviews" ;
+lin overweening_A = mkAMost "overweening" "overweeningly" ;
+lin overweight_A = mkAMost "overweight" "overweightly" ;
+lin overweight_N = mkN "overweight" "overweights" ;
+lin overweighted_A = mkAMost "overweighted" "overweightedly" ;
+lin overwhelm_V = mkV "overwhelm" "overwhelmed" "overwhelmed" ;
+lin overwhelmingly_Adv = mkAdv "overwhelmingly" ;
+lin overwork_N = mkN "overwork" "overworks" ;
+lin overwork_V = mkV "overwork" "overworked" "overworked" ;
+lin overwrought_A = mkAMost "overwrought" "overwroughtly" ;
+lin overzealous_A = mkAMost "overzealous" "overzealously" ;
+lin oviduct_N = mkN "oviduct" "oviducts" ;
+lin ovine_A = mkAMost "ovine" "ovinely" ;
+lin oviparous_A = mkAMost "oviparous" "oviparously" ;
+lin ovipositor_N = mkN "ovipositor" "ovipositors" ;
+lin oviraptorid_N = mkN "oviraptorid" "oviraptorids" ;
+lin ovoid_A = mkAMost "ovoid" "ovoidly" ;
+lin ovoid_N = mkN "ovoid" "ovoids" ;
+lin ovolo_N = mkN "ovolo" "ovoloes" ;
+lin ovotestis_N = mkN "ovotestis" "ovotestises" ;
+lin ovoviviparous_A = mkAMost "ovoviviparous" "ovoviviparously" ;
+lin ovular_A = mkAMost "ovular" "ovularly" ;
+lin ovulation_N = mkN "ovulation" "ovulations" ;
+lin ovule_N = mkN "ovule" "ovules" ;
+lin ovum_N = mkN "ovum" "ova" ;
+lin owe_V = mkV "owe" "owed" "owed" ;
+lin owing_to_Prep = mkPrep "owing to" ;
+lin owl_N = mkN "owl" "owls" ;
+lin owlet_N = mkN "owlet" "owlets" ;
+lin owlish_A = mkAMost "owlish" "owlishly" ;
+lin own_A = mkAMost "own" "ownly" ;
+lin own_V = mkV "own" "owned" "owned" ;
+lin owner_N = mkN "owner" "owners" ;
+lin owner_driven_A = mkAMost "owner-driven" "owner-drivenly" ;
+lin owner_driver_N = mkN "owner-driver" "owner-drivers" ;
+lin owner_occupied_A = mkAMost "owner-occupied" "owner-occupiedly" ;
+lin owner_occupier_N = mkN "owner-occupier" "owner-occupiers" ;
+lin ownerless_A = mkAMost "ownerless" "ownerlessly" ;
+lin ownership_N = mkN "ownership" "ownerships" ;
+lin ox_N = mkN "ox" "IRREG" ;
+lin oxacillin_N = mkN "oxacillin" "oxacillins" ;
+lin oxalacetate_N = mkN "oxalacetate" "oxalacetates" ;
+lin oxalate_N = mkN "oxalate" "oxalates" ;
+lin oxalis_N = mkN "oxalis" "oxalises" ;
+lin oxaprozin_N = mkN "oxaprozin" "oxaprozins" ;
+lin oxazepam_N = mkN "oxazepam" "oxazepams" ;
+lin oxbow_N = mkN "oxbow" "oxbows" ;
+lin oxcart_N = mkN "oxcart" "oxcarts" ;
+lin oxeye_N = mkN "oxeye" "oxeyes" ;
+lin oxeyed_A = mkAMost "oxeyed" "oxeyedly" ;
+lin oxford_N = mkN "oxford" "oxfords" ;
+lin oxidant_N = mkN "oxidant" "oxidants" ;
+lin oxidase_N = mkN "oxidase" "oxidases" ;
+lin oxidation_N = mkN "oxidation" "oxidations" ;
+lin oxidative_A = mkAMost "oxidative" "oxidatively" ;
+lin oxide_N = mkN "oxide" "oxides" ;
+lin oxidizable_A = mkAMost "oxidizable" "oxidizably" ;
+lin oxidization_N = mkN "oxidization" "oxidizations" ;
+lin oxidize_V = mkV "oxidize" "oxidized" "oxidized" ;
+lin oxidoreductase_N = mkN "oxidoreductase" "oxidoreductases" ;
+lin oxime_N = mkN "oxime" "oximes" ;
+lin oximeter_N = mkN "oximeter" "oximeters" ;
+lin oxlip_N = mkN "oxlip" "oxlips" ;
+lin oxonian_A = mkAMost "oxonian" "oxonianly" ;
+lin oxonian_N = mkN "oxonian" "oxonians" ;
+lin oxtail_N = mkN "oxtail" "oxtails" ;
+lin oxtant_N = mkN "oxtant" "oxtants" ;
+lin oxtongue_N = mkN "oxtongue" "oxtongues" ;
+lin oxyacetylene_A = mkAMost "oxyacetylene" "oxyacetylenely" ;
+lin oxyacetylene_N = mkN "oxyacetylene" "oxyacetylenes" ;
+lin oxyacid_N = mkN "oxyacid" "oxyacids" ;
+lin oxycephaly_N = mkN "oxycephaly" "oxycephalies" ;
+lin oxygen_N = mkN "oxygen" "oxygens" ;
+lin oxygenase_N = mkN "oxygenase" "oxygenases" ;
+lin oxygenate_V = mkV "oxygenate" "oxygenated" "oxygenated" ;
+lin oxygenation_N = mkN "oxygenation" "oxygenations" ;
+lin oxygenize_V = mkV "oxygenize" "oxygenized" "oxygenized" ;
+lin oxyhemoglobin_N = mkN "oxyhemoglobin" "oxyhemoglobins" ;
+lin oxymoron_N = mkN "oxymoron" "oxymorons" ;
+lin oxyopia_N = mkN "oxyopia" "oxyopias" ;
+lin oxyphenbutazone_N = mkN "oxyphenbutazone" "oxyphenbutazones" ;
+lin oxyphencyclimine_N = mkN "oxyphencyclimine" "oxyphencyclimines" ;
+lin oxytetracycline_N = mkN "oxytetracycline" "oxytetracyclines" ;
+lin oxytocic_N = mkN "oxytocic" "oxytocics" ;
+lin oxytocin_N = mkN "oxytocin" "oxytocins" ;
+lin oxytone_N = mkN "oxytone" "oxytones" ;
+lin oyabun_N = mkN "oyabun" "oyabuns" ;
+lin oyster_N = mkN "oyster" "oysters" ;
+lin oyster_bank_N = mkN "oyster-bank" "oyster-banks" ;
+lin oyster_bar_N = mkN "oyster-bar" "oyster-bars" ;
+lin oyster_bed_N = mkN "oyster-bed" "oyster-beds" ;
+lin oyster_catcher_N = mkN "oyster-catcher" "oyster-catchers" ;
+lin oystercatcher_N = mkN "oystercatcher" "oystercatchers" ;
+lin oz_N = mkN "oz" "oz" ;
+lin ozena_N = mkN "ozena" "ozenas" ;
+lin ozone_N = mkN "ozone" "ozones" ;
+lin ozonide_N = mkN "ozonide" "ozonides" ;
+lin pH_N = mkN "pH" "pHs" ;
+lin p_N = mkN "p" "pp" ;
+lin pa'anga_N = mkN "pa'anga" "pa'angas" ;
+lin pa_N = mkN "pa" "pas" ;
+lin pabulum_N = mkN "pabulum" "pabulums" ;
+lin paca_N = mkN "paca" "pacas" ;
+lin pace_N = mkN "pace" "paces" ;
+lin pace_Prep = mkPrep "pace" ;
+lin pace_V = mkV "pace" "paced" "paced" ;
+lin pacemaker_N = mkN "pacemaker" "pacemakers" ;
+lin pacer_N = mkN "pacer" "pacers" ;
+lin pacesetter_N = mkN "pacesetter" "pacesetters" ;
+lin pachinko_N = mkN "pachinko" "pachinkoes" ;
+lin pachisi_N = mkN "pachisi" "pachisis" ;
+lin pachuco_N = mkN "pachuco" "pachucoes" ;
+lin pachycephalosaur_N = mkN "pachycephalosaur" "pachycephalosaurs" ;
+lin pachycheilia_N = mkN "pachycheilia" "pachycheilias" ;
+lin pachyderm_N = mkN "pachyderm" "pachyderms" ;
+lin pachydermatous_A = mkAMost "pachydermatous" "pachydermatously" ;
+lin pachysandra_N = mkN "pachysandra" "pachysandras" ;
+lin pachytene_N = mkN "pachytene" "pachytenes" ;
+lin pacific_A = mkAMost "pacific" "pacificly" ;
+lin pacifically_Adv = mkAdv "pacifically" ;
+lin pacification_N = mkN "pacification" "pacifications" ;
+lin pacifier_N = mkN "pacifier" "pacifiers" ;
+lin pacifism_N = mkN "pacifism" "pacifisms" ;
+lin pacifist_N = mkN "pacifist" "pacifists" ;
+lin pacifistically_Adv = mkAdv "pacifistically" ;
+lin pacify_V = mkV "pacify" "pacified" "pacified" ;
+lin pacing_N = mkN "pacing" "pacings" ;
+lin pack_N = mkN "pack" "packs" ;
+lin pack_V = mkV "pack" "packed" "packed" ;
+lin pack_animal_N = mkN "pack-animal" "pack-animals" ;
+lin pack_saddle_N = mkN "pack-saddle" "pack-saddles" ;
+lin pack_thread_N = mkN "pack-thread" "pack-threads" ;
+lin packable_A = mkAMost "packable" "packably" ;
+lin package_N = mkN "package" "packages" ;
+lin package_V = mkV "package" "packaged" "packaged" ;
+lin packaging_N = mkN "packaging" "packagings" ;
+lin packer_N = mkN "packer" "packers" ;
+lin packet_N = mkN "packet" "packets" ;
+lin packet_boat_N = mkN "packet-boat" "packet-boats" ;
+lin packhorse_N = mkN "packhorse" "packhorses" ;
+lin packing_N = mkN "packing" "packings" ;
+lin packing_case_N = mkN "packing-case" "packing-cases" ;
+lin packing_needle_N = mkN "packing-needle" "packing-needles" ;
+lin packinghouse_N = mkN "packinghouse" "packinghouses" ;
+lin packrat_N = mkN "packrat" "packrats" ;
+lin packsaddle_N = mkN "packsaddle" "packsaddles" ;
+lin packthread_N = mkN "packthread" "packthreads" ;
+lin pact_N = mkN "pact" "pacts" ;
+lin pad_N = mkN "pad" "pads" ;
+lin pad_V = mkV "pad" "padded" "padded" ;
+lin padauk_N = mkN "padauk" "padauks" ;
+lin padding_N = mkN "padding" "paddings" ;
+lin paddle_N = mkN "paddle" "paddles" ;
+lin paddle_V = mkV "paddle" "paddled" "paddled" ;
+lin paddle_box_N = mkN "paddle-box" "paddle-boxes" ;
+lin paddle_steamer_N = mkN "paddle-steamer" "paddle-steamers" ;
+lin paddle_wheel_N = mkN "paddle-wheel" "paddle-wheels" ;
+lin paddlefish_N = mkN "paddlefish" "paddlefishes" ;
+lin paddlewheel_N = mkN "paddlewheel" "paddlewheels" ;
+lin paddock_N = mkN "paddock" "paddocks" ;
+lin paddy_N = mkN "paddy" "paddies" ;
+lin paddy_field_N = mkN "paddy-field" "paddy-fields" ;
+lin paddy_wagon_N = mkN "paddy-wagon" "paddy-wagons" ;
+lin pademelon_N = mkN "pademelon" "pademelons" ;
+lin padlock_N = mkN "padlock" "padlocks" ;
+lin padlock_V = mkV "padlock" "padlocked" "padlocked" ;
+lin padre_N = mkN "padre" "padres" ;
+lin padrone_N = mkN "padrone" "padrones" ;
+lin paean_N = mkN "paean" "paeans" ;
+lin paederasty_N = mkN "paederasty" "paederasties" ;
+lin paediatrics_N = mkN "paediatrics" "paediatrics" ;
+lin paella_N = mkN "paella" "paellas" ;
+lin paeony_N = mkN "paeony" "paeonies" ;
+lin pagan_A = mkAMost "pagan" "paganly" ;
+lin pagan_N = mkN "pagan" "pagans" ;
+lin paganism_N = mkN "paganism" "paganisms" ;
+lin page_N = mkN "page" "pages" ;
+lin page_V = mkV "page" "paged" "paged" ;
+lin pageant_N = mkN "pageant" "pageants" ;
+lin pageantry_N = mkN "pageantry" "pageantries" ;
+lin pageboy_N = mkN "pageboy" "pageboys" ;
+lin pagination_N = mkN "pagination" "paginations" ;
+lin paging_N = mkN "paging" "pagings" ;
+lin pagoda_N = mkN "pagoda" "pagodas" ;
+lin pahautea_N = mkN "pahautea" "pahauteas" ;
+lin pahoehoe_N = mkN "pahoehoe" "pahoehoes" ;
+lin pail_N = mkN "pail" "pails" ;
+lin pailful_N = mkN "pailful" "pailfuls" ;
+lin paillasse_N = mkN "paillasse" "paillasses" ;
+lin pailliasse_N = mkN "pailliasse" "pailliasses" ;
+lin pain_N = mkN "pain" "pains" ;
+lin pain_V = mkV "pain" "pained" "pained" ;
+lin painful_A = mkAMost "painful" "painfully" ;
+lin painfulness_N = mkN "painfulness" "painfulnesses" ;
+lin painkiller_N = mkN "painkiller" "painkillers" ;
+lin painless_A = mkAMost "painless" "painlessly" ;
+lin painstaking_A = mkAMost "painstaking" "painstakingly" ;
+lin paint_N = mkN "paint" "paints" ;
+lin paint_V = mkV "paint" "painted" "painted" ;
+lin paintable_A = mkAMost "paintable" "paintably" ;
+lin paintball_N = mkN "paintball" "paintballs" ;
+lin paintbox_N = mkN "paintbox" "paintboxes" ;
+lin paintbrush_N = mkN "paintbrush" "paintbrushes" ;
+lin painter_N = mkN "painter" "painters" ;
+lin painterly_A = mkAMost "painterly" "painterlily" ;
+lin painting_N = mkN "painting" "paintings" ;
+lin pair_N = mkN "pair" "pairs" ;
+lin pair_V = mkV "pair" "paired" "paired" ;
+lin pairing_N = mkN "pairing" "pairings" ;
+lin paisa_N = mkN "paisa" "paisas" ;
+lin paisley_N = mkN "paisley" "paisleys" ;
+lin pajama_N = mkN "pajama" "pajamas" ;
+lin pal_N = mkN "pal" "pals" ;
+lin pal_paled_V = mkV "pal" "paled" "paled" ;
+lin pal_palled_V = mkV "pal" "palled" "palled" ;
+lin palace_N = mkN "palace" "palaces" ;
+lin paladin_N = mkN "paladin" "paladins" ;
+lin palaeolithic_A = mkAMost "palaeolithic" "palaeolithicly" ;
+lin palaeontologist_N = mkN "palaeontologist" "palaeontologists" ;
+lin palaeontology_N = mkN "palaeontology" "palaeontologies" ;
+lin palankeen_N = mkN "palankeen" "palankeens" ;
+lin palanquin_N = mkN "palanquin" "palanquins" ;
+lin palatability_N = mkN "palatability" "palatabilities" ;
+lin palatable_A = mkAMost "palatable" "palatably" ;
+lin palatal_A = mkAMost "palatal" "palatally" ;
+lin palatal_N = mkN "palatal" "palatals" ;
+lin palate_N = mkN "palate" "palates" ;
+lin palatial_A = mkAMost "palatial" "palatially" ;
+lin palatinate_N = mkN "palatinate" "palatinates" ;
+lin palatine_A = mkAMost "palatine" "palatinely" ;
+lin palatine_N = mkN "palatine" "palatines" ;
+lin palatoglossal_A = mkAMost "palatoglossal" "palatoglossally" ;
+lin palatopharyngoplasty_N = mkN "palatopharyngoplasty" "palatopharyngoplasties" ;
+lin palaver_N = mkN "palaver" "palavers" ;
+lin palaver_V = mkV "palaver" "palavered" "palavered" ;
+lin pale_A = mkA "pale" "paler" "palest" "palely" ;
+lin pale_N = mkN "pale" "pales" ;
+lin pale_V = mkV "pale" "paled" "paled" ;
+lin paleencephalon_N = mkN "paleencephalon" "paleencephalons" ;
+lin paleface_N = mkN "paleface" "palefaces" ;
+lin paleness_N = mkN "paleness" "palenesses" ;
+lin paleoanthropological_A = mkAMost "paleoanthropological" "paleoanthropologically" ;
+lin paleoanthropology_N = mkN "paleoanthropology" "paleoanthropologies" ;
+lin paleobiology_N = mkN "paleobiology" "paleobiologies" ;
+lin paleobotany_N = mkN "paleobotany" "paleobotanies" ;
+lin paleocerebellum_N = mkN "paleocerebellum" "paleocerebellums" ;
+lin paleoclimatology_N = mkN "paleoclimatology" "paleoclimatologies" ;
+lin paleocortical_A = mkAMost "paleocortical" "paleocortically" ;
+lin paleodendrology_N = mkN "paleodendrology" "paleodendrologies" ;
+lin paleoecology_N = mkN "paleoecology" "paleoecologies" ;
+lin paleoethnography_N = mkN "paleoethnography" "paleoethnographies" ;
+lin paleogeography_N = mkN "paleogeography" "paleogeographies" ;
+lin paleogeology_N = mkN "paleogeology" "paleogeologies" ;
+lin paleographer_N = mkN "paleographer" "paleographers" ;
+lin paleography_N = mkN "paleography" "paleographies" ;
+lin paleolith_N = mkN "paleolith" "paleoliths" ;
+lin paleolithic_A = mkAMost "paleolithic" "paleolithicly" ;
+lin paleology_N = mkN "paleology" "paleologies" ;
+lin paleomammalogy_N = mkN "paleomammalogy" "paleomammalogies" ;
+lin paleontological_A = mkAMost "paleontological" "paleontologically" ;
+lin paleontologist_N = mkN "paleontologist" "paleontologists" ;
+lin paleontology_N = mkN "paleontology" "paleontologies" ;
+lin paleopathology_N = mkN "paleopathology" "paleopathologies" ;
+lin paleornithology_N = mkN "paleornithology" "paleornithologies" ;
+lin paleozoology_N = mkN "paleozoology" "paleozoologies" ;
+lin palestinian_A = mkAMost "palestinian" "palestinianly" ;
+lin palestinian_N = mkN "palestinian" "palestinians" ;
+lin palestra_N = mkN "palestra" "palestras" ;
+lin paletiology_N = mkN "paletiology" "paletiologies" ;
+lin palette_N = mkN "palette" "palettes" ;
+lin palette_knife_N = mkN "palette-knife" "palette-knives" ;
+lin palfrey_N = mkN "palfrey" "palfreys" ;
+lin palilalia_N = mkN "palilalia" "palilalias" ;
+lin palimony_N = mkN "palimony" "palimonies" ;
+lin palimpsest_N = mkN "palimpsest" "palimpsests" ;
+lin palindrome_N = mkN "palindrome" "palindromes" ;
+lin paling_N = mkN "paling" "palings" ;
+lin palingenesis_N = mkN "palingenesis" "palingenesises" ;
+lin palingenetic_A = mkAMost "palingenetic" "palingeneticly" ;
+lin palisade_N = mkN "palisade" "palisades" ;
+lin palisade_V = mkV "palisade" "palisaded" "palisaded" ;
+lin palish_A = mkAMost "palish" "palishly" ;
+lin pall_N = mkN "pall" "palls" ;
+lin pall_V = mkV "pall" "palled" "palled" ;
+lin palladium_N = mkN "palladium" "palladiums" ;
+lin pallasite_N = mkN "pallasite" "pallasites" ;
+lin pallbearer_N = mkN "pallbearer" "pallbearers" ;
+lin pallet_N = mkN "pallet" "pallets" ;
+lin pallette_N = mkN "pallette" "pallettes" ;
+lin palliasse_N = mkN "palliasse" "palliasses" ;
+lin palliate_V = mkV "palliate" "palliated" "palliated" ;
+lin palliation_N = mkN "palliation" "palliations" ;
+lin palliative_A = mkAMost "palliative" "palliatively" ;
+lin palliative_N = mkN "palliative" "palliatives" ;
+lin pallid_A = mkAMost "pallid" "pallidly" ;
+lin pallidness_N = mkN "pallidness" "pallidnesses" ;
+lin pallidum_N = mkN "pallidum" "pallidums" ;
+lin pallium_N = mkN "pallium" "palliums" ;
+lin pallone_N = mkN "pallone" "pallones" ;
+lin pallor_N = mkN "pallor" "pallors" ;
+lin pally_A = mkA "pally" "pallier" "palliest" "pallily" ;
+lin palm_N = mkN "palm" "palms" ;
+lin palm_V = mkV "palm" "palmed" "palmed" ;
+lin palm_oil_N = mkN "palm-oil" "palm-oils" ;
+lin palmar_A = mkAMost "palmar" "palmarly" ;
+lin palmate_A = mkAMost "palmate" "palmately" ;
+lin palmatifid_A = mkAMost "palmatifid" "palmatifidly" ;
+lin palmature_N = mkN "palmature" "palmatures" ;
+lin palmer_N = mkN "palmer" "palmers" ;
+lin palmetto_N = mkN "palmetto" "palmettos" ;
+lin palmist_N = mkN "palmist" "palmists" ;
+lin palmistry_N = mkN "palmistry" "palmistries" ;
+lin palmitin_N = mkN "palmitin" "palmitins" ;
+lin palmlike_A = mkAMost "palmlike" "palmlikely" ;
+lin palmy_A = mkA "palmy" "palmier" "palmiest" "palmily" ;
+lin palmyra_N = mkN "palmyra" "palmyras" ;
+lin palometa_N = mkN "palometa" "palometas" ;
+lin palomino_N = mkN "palomino" "palominoes" ;
+lin paloverde_N = mkN "paloverde" "paloverdes" ;
+lin palpable_A = mkAMost "palpable" "palpably" ;
+lin palpation_N = mkN "palpation" "palpations" ;
+lin palpatory_A = mkAMost "palpatory" "palpatorily" ;
+lin palpebrate_A = mkAMost "palpebrate" "palpebrately" ;
+lin palpebration_N = mkN "palpebration" "palpebrations" ;
+lin palpitant_A = mkAMost "palpitant" "palpitantly" ;
+lin palpitate_V = mkV "palpitate" "palpitated" "palpitated" ;
+lin palpitation_N = mkN "palpitation" "palpitations" ;
+lin palsy_N = mkN "palsy" "palsies" ;
+lin palsy_V = mkV "palsy" "palsied" "palsied" ;
+lin palter_V = mkV "palter" "paltered" "paltered" ;
+lin paltriness_N = mkN "paltriness" "paltrinesses" ;
+lin paltry_A = mkA "paltry" "paltrier" "paltriest" "paltrily" ;
+lin pampas_N = mkN "pampas" "pampases" ;
+lin pampas_grass_N = mkN "pampas-grass" "pampas-grasses" ;
+lin pamper_V = mkV "pamper" "pampered" "pampered" ;
+lin pamperer_N = mkN "pamperer" "pamperers" ;
+lin pamphlet_N = mkN "pamphlet" "pamphlets" ;
+lin pamphleteer_N = mkN "pamphleteer" "pamphleteers" ;
+lin pan_N = mkN "pan" "pans" ;
+lin pan_V = mkV "pan" "panned" "panned" ;
+lin panacea_N = mkN "panacea" "panaceas" ;
+lin panache_N = mkN "panache" "panaches" ;
+lin panama_N = mkN "panama" "panamas" ;
+lin panamanian_A = mkAMost "panamanian" "panamanianly" ;
+lin panamanian_N = mkN "panamanian" "panamanians" ;
+lin panatela_N = mkN "panatela" "panatelas" ;
+lin panatella_N = mkN "panatella" "panatellas" ;
+lin pancake_N = mkN "pancake" "pancakes" ;
+lin pancarditis_N = mkN "pancarditis" "pancarditises" ;
+lin panchayat_N = mkN "panchayat" "panchayats" ;
+lin panchromatic_A = mkAMost "panchromatic" "panchromaticly" ;
+lin pancreas_N = mkN "pancreas" "pancreases" ;
+lin pancreatectomy_N = mkN "pancreatectomy" "pancreatectomies" ;
+lin pancreatic_A = mkAMost "pancreatic" "pancreaticly" ;
+lin pancreatin_N = mkN "pancreatin" "pancreatins" ;
+lin pancreatitis_N = mkN "pancreatitis" "pancreatitises" ;
+lin pancytopenia_N = mkN "pancytopenia" "pancytopenias" ;
+lin panda_N = mkN "panda" "pandas" ;
+lin pandanus_N = mkN "pandanus" "pandanuses" ;
+lin pandemic_A = mkAMost "pandemic" "pandemicly" ;
+lin pandemic_N = mkN "pandemic" "pandemics" ;
+lin pandemonium_N = mkN "pandemonium" "pandemoniums" ;
+lin pander_N = mkN "pander" "panders" ;
+lin pander_V = mkV "pander" "pandered" "pandered" ;
+lin panderer_N = mkN "panderer" "panderers" ;
+lin pandiculation_N = mkN "pandiculation" "pandiculations" ;
+lin pandurate_A = mkAMost "pandurate" "pandurately" ;
+lin pane_N = mkN "pane" "panes" ;
+lin panegyric_N = mkN "panegyric" "panegyrics" ;
+lin panel_N = mkN "panel" "panels" ;
+lin panel_V = mkV "panel" "panelled" "panelled" ;
+lin paneled_A = mkAMost "paneled" "paneledly" ;
+lin paneling_N = mkN "paneling" "panelings" ;
+lin panelist_N = mkN "panelist" "panelists" ;
+lin panelling_N = mkN "panelling" "panellings" ;
+lin panencephalitis_N = mkN "panencephalitis" "panencephalitises" ;
+lin panfish_N = mkN "panfish" "panfishes" ;
+lin pang_N = mkN "pang" "pangs" ;
+lin panga_N = mkN "panga" "pangas" ;
+lin pangolin_N = mkN "pangolin" "pangolins" ;
+lin panhandle_N = mkN "panhandle" "panhandles" ;
+lin panhandle_V = mkV "panhandle" "panhandled" "panhandled" ;
+lin panhandler_N = mkN "panhandler" "panhandlers" ;
+lin panic_N = mkN "panic" "panics" ;
+lin panic_V = mkV "panic" "panicked" "panicked" ;
+lin panic_stricken_A = mkAMost "panic-stricken" "panic-strickenly" ;
+lin panicky_A = mkAMost "panicky" "panickily" ;
+lin panicle_N = mkN "panicle" "panicles" ;
+lin panicled_A = mkAMost "panicled" "panicledly" ;
+lin paniculate_A = mkAMost "paniculate" "paniculately" ;
+lin panjandrum_N = mkN "panjandrum" "panjandrums" ;
+lin pannier_N = mkN "pannier" "panniers" ;
+lin pannikin_N = mkN "pannikin" "pannikins" ;
+lin panoplied_A = mkAMost "panoplied" "panopliedly" ;
+lin panoply_N = mkN "panoply" "panoplies" ;
+lin panoptic_A = mkAMost "panoptic" "panopticly" ;
+lin panopticon_N = mkN "panopticon" "panopticons" ;
+lin panorama_N = mkN "panorama" "panoramas" ;
+lin panoramic_A = mkAMost "panoramic" "panoramicly" ;
+lin panpipe_N = mkN "panpipe" "panpipes" ;
+lin pansexual_N = mkN "pansexual" "pansexuals" ;
+lin pansinusitis_N = mkN "pansinusitis" "pansinusitises" ;
+lin pansy_N = mkN "pansy" "pansies" ;
+lin pant_N = mkN "pant" "pants" ;
+lin pant_V = mkV "pant" "panted" "panted" ;
+lin pantaloon_N = mkN "pantaloon" "pantaloons" ;
+lin pantechnicon_N = mkN "pantechnicon" "pantechnicons" ;
+lin pantheism_N = mkN "pantheism" "pantheisms" ;
+lin pantheist_A = mkAMost "pantheist" "pantheistly" ;
+lin pantheist_N = mkN "pantheist" "pantheists" ;
+lin pantheistic_A = mkAMost "pantheistic" "pantheisticly" ;
+lin pantheon_N = mkN "pantheon" "pantheons" ;
+lin panther_N = mkN "panther" "panthers" ;
+lin pantie_N = mkN "pantie" "panties" ;
+lin pantile_N = mkN "pantile" "pantiles" ;
+lin panting_N = mkN "panting" "pantings" ;
+lin pantingly_Adv = mkAdv "pantingly" ;
+lin panto_N = mkN "panto" "pantos" ;
+lin pantograph_N = mkN "pantograph" "pantographs" ;
+lin pantomime_N = mkN "pantomime" "pantomimes" ;
+lin pantropical_A = mkAMost "pantropical" "pantropically" ;
+lin pantry_N = mkN "pantry" "pantries" ;
+lin pantryman_N = mkN "pantryman" "pantrymen" ;
+lin panty_hose_N = mkN "panty-hose" "panty-hoses" ;
+lin pantyhose_N = mkN "pantyhose" "pantyhoses" ;
+lin panzer_A = mkAMost "panzer" "panzerly" ;
+lin panzer_N = mkN "panzer" "panzers" ;
+lin pap_N = mkN "pap" "paps" ;
+lin papa_N = mkN "papa" "papas" ;
+lin papacy_N = mkN "papacy" "papacies" ;
+lin papain_N = mkN "papain" "papains" ;
+lin papal_A = mkAMost "papal" "papally" ;
+lin paparazzo_N = mkN "paparazzo" "paparazzoes" ;
+lin papaverine_N = mkN "papaverine" "papaverines" ;
+lin papaw_N = mkN "papaw" "papaws" ;
+lin papaya_N = mkN "papaya" "papayas" ;
+lin paper_N = mkN "paper" "papers" ;
+lin paper_V = mkV "paper" "papered" "papered" ;
+lin paper_chase_N = mkN "paper-chase" "paper-chases" ;
+lin paperback_A = mkAMost "paperback" "paperbackly" ;
+lin paperback_N = mkN "paperback" "paperbacks" ;
+lin paperbacked_A = mkAMost "paperbacked" "paperbackedly" ;
+lin paperboard_N = mkN "paperboard" "paperboards" ;
+lin paperboy_N = mkN "paperboy" "paperboys" ;
+lin paperclip_N = mkN "paperclip" "paperclips" ;
+lin paperhanger_N = mkN "paperhanger" "paperhangers" ;
+lin papering_N = mkN "papering" "paperings" ;
+lin paperknife_N = mkN "paperknife" "paperknives" ;
+lin paperless_A = mkAMost "paperless" "paperlessly" ;
+lin papermaking_N = mkN "papermaking" "papermakings" ;
+lin papermill_N = mkN "papermill" "papermills" ;
+lin paperweight_N = mkN "paperweight" "paperweights" ;
+lin paperwork_N = mkN "paperwork" "paperworks" ;
+lin papery_A = mkAMost "papery" "paperily" ;
+lin papier_mâché_N = mkN "papier-mâché" "papier-mâchés" ;
+lin papilla_N = mkN "papilla" "papillas" ;
+lin papillary_A = mkAMost "papillary" "papillarily" ;
+lin papillate_A = mkAMost "papillate" "papillately" ;
+lin papilledema_N = mkN "papilledema" "papilledemas" ;
+lin papilliform_A = mkAMost "papilliform" "papilliformly" ;
+lin papilloma_N = mkN "papilloma" "papillomas" ;
+lin papillon_N = mkN "papillon" "papillons" ;
+lin papist_A = mkAMost "papist" "papistly" ;
+lin papist_N = mkN "papist" "papists" ;
+lin papoose_N = mkN "papoose" "papooses" ;
+lin papovavirus_N = mkN "papovavirus" "papovaviruses" ;
+lin pappose_A = mkAMost "pappose" "papposely" ;
+lin pappus_N = mkN "pappus" "pappuses" ;
+lin paprika_N = mkN "paprika" "paprikas" ;
+lin papuan_A = mkAMost "papuan" "papuanly" ;
+lin papuan_N = mkN "papuan" "papuans" ;
+lin papule_N = mkN "papule" "papules" ;
+lin papulovesicle_N = mkN "papulovesicle" "papulovesicles" ;
+lin papyrus_N = mkN "papyrus" "papyruses" ;
+lin par_N = mkN "par" "pars" ;
+lin par_V = mkV "par" "parred" "parred" ;
+lin par_excellence_Adv = mkAdv "par excellence" ;
+lin para_N = mkN "para" "paras" ;
+lin parable_N = mkN "parable" "parables" ;
+lin parabola_N = mkN "parabola" "parabolas" ;
+lin parabolic_A = mkAMost "parabolic" "parabolicly" ;
+lin parabolical_A = mkAMost "parabolical" "parabolically" ;
+lin paraboloid_N = mkN "paraboloid" "paraboloids" ;
+lin paraboloidal_A = mkAMost "paraboloidal" "paraboloidally" ;
+lin parachute_N = mkN "parachute" "parachutes" ;
+lin parachute_V = mkV "parachute" "parachuted" "parachuted" ;
+lin parachutist_N = mkN "parachutist" "parachutists" ;
+lin paracosm_N = mkN "paracosm" "paracosms" ;
+lin parade_N = mkN "parade" "parades" ;
+lin parade_V = mkV "parade" "paraded" "paraded" ;
+lin parade_ground_N = mkN "parade-ground" "parade-grounds" ;
+lin paradiddle_N = mkN "paradiddle" "paradiddles" ;
+lin paradigm_N = mkN "paradigm" "paradigms" ;
+lin paradigmatic_A = mkAMost "paradigmatic" "paradigmaticly" ;
+lin paradise_N = mkN "paradise" "paradises" ;
+lin paradisiac_A = mkAMost "paradisiac" "paradisiacly" ;
+lin paradisiacal_A = mkAMost "paradisiacal" "paradisiacally" ;
+lin paradox_N = mkN "paradox" "paradoxes" ;
+lin paradoxical_A = mkAMost "paradoxical" "paradoxically" ;
+lin paraffin_N = mkN "paraffin" "paraffins" ;
+lin parafovea_N = mkN "parafovea" "parafoveas" ;
+lin paragon_N = mkN "paragon" "paragons" ;
+lin paragonite_N = mkN "paragonite" "paragonites" ;
+lin paragraph_N = mkN "paragraph" "paragraphs" ;
+lin paragraph_V = mkV "paragraph" "paragraphed" "paragraphed" ;
+lin paragrapher_N = mkN "paragrapher" "paragraphers" ;
+lin paraguayan_A = mkAMost "paraguayan" "paraguayanly" ;
+lin paraguayan_N = mkN "paraguayan" "paraguayans" ;
+lin parakeet_N = mkN "parakeet" "parakeets" ;
+lin paralanguage_N = mkN "paralanguage" "paralanguages" ;
+lin paraldehyde_N = mkN "paraldehyde" "paraldehydes" ;
+lin paralegal_N = mkN "paralegal" "paralegals" ;
+lin paralepsis_N = mkN "paralepsis" "paralepsises" ;
+lin parallax_N = mkN "parallax" "parallaxes" ;
+lin parallel_A = mkAMost "parallel" "parallelly" ;
+lin parallel_N = mkN "parallel" "parallels" ;
+lin parallel_V = mkV "parallel" "parallelled" "parallelled" ;
+lin parallelepiped_N = mkN "parallelepiped" "parallelepipeds" ;
+lin parallelism_N = mkN "parallelism" "parallelisms" ;
+lin parallelogram_N = mkN "parallelogram" "parallelograms" ;
+lin paralogism_N = mkN "paralogism" "paralogisms" ;
+lin paralyse_V = mkV "paralyse" "paralysed" "paralysed" ;
+lin paralysis_N = mkN "paralysis" "paralysises" ;
+lin paralytic_A = mkAMost "paralytic" "paralyticly" ;
+lin paralytic_N = mkN "paralytic" "paralytics" ;
+lin paralyze_V = mkV "paralyze" "paralyzed" "paralyzed" ;
+lin paramagnet_N = mkN "paramagnet" "paramagnets" ;
+lin paramagnetic_A = mkAMost "paramagnetic" "paramagneticly" ;
+lin paramagnetism_N = mkN "paramagnetism" "paramagnetisms" ;
+lin paramecium_N = mkN "paramecium" "parameciums" ;
+lin paramedic_N = mkN "paramedic" "paramedics" ;
+lin paramedical_A = mkAMost "paramedical" "paramedically" ;
+lin parameter_N = mkN "parameter" "parameters" ;
+lin parametric_A = mkAMost "parametric" "parametricly" ;
+lin parametritis_N = mkN "parametritis" "parametritises" ;
+lin paramilitary_A = mkAMost "paramilitary" "paramilitarily" ;
+lin paramilitary_N = mkN "paramilitary" "paramilitaries" ;
+lin paramnesia_N = mkN "paramnesia" "paramnesias" ;
+lin paramount_A = mkAMost "paramount" "paramountly" ;
+lin paramountcy_N = mkN "paramountcy" "paramountcies" ;
+lin paramour_N = mkN "paramour" "paramours" ;
+lin paramyxovirus_N = mkN "paramyxovirus" "paramyxoviruses" ;
+lin paranasal_A = mkAMost "paranasal" "paranasally" ;
+lin parang_N = mkN "parang" "parangs" ;
+lin paranoia_N = mkN "paranoia" "paranoias" ;
+lin paranoiac_N = mkN "paranoiac" "paranoiacs" ;
+lin paranoid_A = mkAMost "paranoid" "paranoidly" ;
+lin paranoid_N = mkN "paranoid" "paranoids" ;
+lin paranormal_A = mkAMost "paranormal" "paranormally" ;
+lin paraparesis_N = mkN "paraparesis" "paraparesises" ;
+lin parapet_N = mkN "parapet" "parapets" ;
+lin paraph_N = mkN "paraph" "paraphs" ;
+lin paraphernalia_N = mkN "paraphernalia" "paraphernalias" ;
+lin paraphilia_N = mkN "paraphilia" "paraphilias" ;
+lin paraphrase_N = mkN "paraphrase" "paraphrases" ;
+lin paraphrase_V = mkV "paraphrase" "paraphrased" "paraphrased" ;
+lin paraphrastic_A = mkAMost "paraphrastic" "paraphrasticly" ;
+lin paraphysis_N = mkN "paraphysis" "paraphysises" ;
+lin paraplegia_N = mkN "paraplegia" "paraplegias" ;
+lin paraplegic_A = mkAMost "paraplegic" "paraplegicly" ;
+lin paraplegic_N = mkN "paraplegic" "paraplegics" ;
+lin parapodium_N = mkN "parapodium" "parapodiums" ;
+lin paraprofessional_N = mkN "paraprofessional" "paraprofessionals" ;
+lin parapsychological_A = mkAMost "parapsychological" "parapsychologically" ;
+lin parapsychologist_N = mkN "parapsychologist" "parapsychologists" ;
+lin paraquat_N = mkN "paraquat" "paraquats" ;
+lin parasail_N = mkN "parasail" "parasails" ;
+lin parasailing_N = mkN "parasailing" "parasailings" ;
+lin parasite_N = mkN "parasite" "parasites" ;
+lin parasitemia_N = mkN "parasitemia" "parasitemias" ;
+lin parasitic_A = mkAMost "parasitic" "parasiticly" ;
+lin parasitical_A = mkAMost "parasitical" "parasitically" ;
+lin parasitism_N = mkN "parasitism" "parasitisms" ;
+lin parasol_N = mkN "parasol" "parasols" ;
+lin parasympathetic_A = mkAMost "parasympathetic" "parasympatheticly" ;
+lin parasympathomimetic_A = mkAMost "parasympathomimetic" "parasympathomimeticly" ;
+lin parathion_N = mkN "parathion" "parathions" ;
+lin paratrooper_N = mkN "paratrooper" "paratroopers" ;
+lin paratroops_N = mkN "paratroops" "paratroopses" ;
+lin paratyphoid_N = mkN "paratyphoid" "paratyphoids" ;
+lin parboil_V = mkV "parboil" "parboiled" "parboiled" ;
+lin parcel_N = mkN "parcel" "parcels" ;
+lin parcel_parceled_V = mkV "parcel" "parceled" "parceled" ;
+lin parcel_parcelled_V = mkV "parcel" "parcelled" "parcelled" ;
+lin parcellation_N = mkN "parcellation" "parcellations" ;
+lin parch_V = mkV "parch" "parched" "parched" ;
+lin parchment_N = mkN "parchment" "parchments" ;
+lin pardon_N = mkN "pardon" "pardons" ;
+lin pardon_V = mkV "pardon" "pardoned" "pardoned" ;
+lin pardonable_A = mkAMost "pardonable" "pardonably" ;
+lin pardoner_N = mkN "pardoner" "pardoners" ;
+lin pare_V = mkV "pare" "pared" "pared" ;
+lin paregmenon_N = mkN "paregmenon" "paregmenons" ;
+lin paregoric_N = mkN "paregoric" "paregorics" ;
+lin parenchyma_N = mkN "parenchyma" "parenchymas" ;
+lin parent_N = mkN "parent" "parents" ;
+lin parentage_N = mkN "parentage" "parentages" ;
+lin parental_A = mkAMost "parental" "parentally" ;
+lin parented_A = mkAMost "parented" "parentedly" ;
+lin parenteral_A = mkAMost "parenteral" "parenterally" ;
+lin parenthesis_N = mkN "parenthesis" "parentheses" ;
+lin parenthetic_A = mkAMost "parenthetic" "parentheticly" ;
+lin parenthetical_A = mkAMost "parenthetical" "parenthetically" ;
+lin parenthood_N = mkN "parenthood" "parenthoods" ;
+lin parer_N = mkN "parer" "parers" ;
+lin paresis_N = mkN "paresis" "paresises" ;
+lin paresthesia_N = mkN "paresthesia" "paresthesias" ;
+lin paretic_N = mkN "paretic" "paretics" ;
+lin pareve_A = mkAMost "pareve" "parevely" ;
+lin parfait_N = mkN "parfait" "parfaits" ;
+lin parget_N = mkN "parget" "pargets" ;
+lin pargeting_N = mkN "pargeting" "pargetings" ;
+lin parhelic_A = mkAMost "parhelic" "parhelicly" ;
+lin parhelion_N = mkN "parhelion" "parhelions" ;
+lin pari_mutuel_N = mkN "pari-mutuel" "pari-mutuels" ;
+lin pari_passu_Adv = mkAdv "pari passu" ;
+lin pariah_N = mkN "pariah" "pariahs" ;
+lin pariah_dog_N = mkN "pariah-dog" "pariah-dogs" ;
+lin parietal_A = mkAMost "parietal" "parietally" ;
+lin parimutuel_N = mkN "parimutuel" "parimutuels" ;
+lin paring_N = mkN "paring" "parings" ;
+lin parish_N = mkN "parish" "parishes" ;
+lin parishioner_N = mkN "parishioner" "parishioners" ;
+lin parisian_A = mkAMost "parisian" "parisianly" ;
+lin parisian_N = mkN "parisian" "parisians" ;
+lin parisology_N = mkN "parisology" "parisologies" ;
+lin parity_N = mkN "parity" "parities" ;
+lin park_N = mkN "park" "parks" ;
+lin park_V = mkV "park" "parked" "parked" ;
+lin parka_N = mkN "parka" "parkas" ;
+lin parking_N = mkN "parking" "parkings" ;
+lin parkinson's_A = mkAMost "parkinson's" "parkinson'sly" ;
+lin parky_A = mkAMost "parky" "parkily" ;
+lin parlance_N = mkN "parlance" "parlances" ;
+lin parlay_N = mkN "parlay" "parlays" ;
+lin parley_N = mkN "parley" "parleys" ;
+lin parley_V = mkV "parley" "parleyed" "parleyed" ;
+lin parliament_N = mkN "parliament" "parliaments" ;
+lin parliamentarian_N = mkN "parliamentarian" "parliamentarians" ;
+lin parliamentary_A = mkAMost "parliamentary" "parliamentarily" ;
+lin parlor_N = mkN "parlor" "parlors" ;
+lin parlormaid_N = mkN "parlormaid" "parlormaids" ;
+lin parlour_N = mkN "parlour" "parlours" ;
+lin parlour_car_N = mkN "parlour-car" "parlour-cars" ;
+lin parlous_A = mkAMost "parlous" "parlously" ;
+lin parmesan_N = mkN "parmesan" "parmesans" ;
+lin parnassia_N = mkN "parnassia" "parnassias" ;
+lin parochial_A = mkAMost "parochial" "parochially" ;
+lin parochialism_N = mkN "parochialism" "parochialisms" ;
+lin parodist_N = mkN "parodist" "parodists" ;
+lin parody_N = mkN "parody" "parodies" ;
+lin parody_V = mkV "parody" "parodied" "parodied" ;
+lin paroicous_A = mkAMost "paroicous" "paroicously" ;
+lin parole_N = mkN "parole" "paroles" ;
+lin parole_V = mkV "parole" "paroled" "paroled" ;
+lin paronychia_N = mkN "paronychia" "paronychias" ;
+lin paroquet_N = mkN "paroquet" "paroquets" ;
+lin parotid_A = mkAMost "parotid" "parotidly" ;
+lin parotitis_N = mkN "parotitis" "parotitises" ;
+lin parous_A = mkAMost "parous" "parously" ;
+lin paroxetime_N = mkN "paroxetime" "paroxetimes" ;
+lin paroxysm_N = mkN "paroxysm" "paroxysms" ;
+lin paroxysmal_A = mkAMost "paroxysmal" "paroxysmally" ;
+lin paroxytone_N = mkN "paroxytone" "paroxytones" ;
+lin parquet_N = mkN "parquet" "parquets" ;
+lin parquetry_N = mkN "parquetry" "parquetries" ;
+lin parr_N = mkN "parr" "parrs" ;
+lin parricide_N = mkN "parricide" "parricides" ;
+lin parrot_N = mkN "parrot" "parrots" ;
+lin parrotfish_N = mkN "parrotfish" "parrotfishes" ;
+lin parrotlike_A = mkAMost "parrotlike" "parrotlikely" ;
+lin parry_N = mkN "parry" "parries" ;
+lin parry_V = mkV "parry" "parried" "parried" ;
+lin parse_V = mkV "parse" "parsed" "parsed" ;
+lin parsec_N = mkN "parsec" "parsecs" ;
+lin parsee_N = mkN "parsee" "parsees" ;
+lin parser_N = mkN "parser" "parsers" ;
+lin parsimonious_A = mkAMost "parsimonious" "parsimoniously" ;
+lin parsimony_N = mkN "parsimony" "parsimonies" ;
+lin parsley_N = mkN "parsley" "parsleys" ;
+lin parsnip_N = mkN "parsnip" "parsnips" ;
+lin parson_N = mkN "parson" "parsons" ;
+lin parsonage_N = mkN "parsonage" "parsonages" ;
+lin part_Adv = mkAdv "part" ;
+lin part_N = mkN "part" "parts" ;
+lin part_V = mkV "part" "parted" "parted" ;
+lin part_owner_N = mkN "part-owner" "part-owners" ;
+lin part_singing_N = mkN "part-singing" "part-singings" ;
+lin part_song_N = mkN "part-song" "part-songs" ;
+lin part_time_A = mkAMost "part-time" "part-timely" ;
+lin part_time_Adv = mkAdv "part-time" ;
+lin part_timer_N = mkN "part-timer" "part-timers" ;
+lin partake_V = mkV "partake" "partook" "partaken" ;
+lin partaker_N = mkN "partaker" "partakers" ;
+lin parterre_N = mkN "parterre" "parterres" ;
+lin parthenocarpy_N = mkN "parthenocarpy" "parthenocarpies" ;
+lin parthenogenesis_N = mkN "parthenogenesis" "parthenogenesises" ;
+lin parthenote_N = mkN "parthenote" "parthenotes" ;
+lin parthian_A = mkAMost "parthian" "parthianly" ;
+lin parti_coloured_A = mkAMost "parti-coloured" "parti-colouredly" ;
+lin partial_A = mkAMost "partial" "partially" ;
+lin partiality_N = mkN "partiality" "partialities" ;
+lin partialness_N = mkN "partialness" "partialnesses" ;
+lin partible_A = mkAMost "partible" "partibly" ;
+lin participant_N = mkN "participant" "participants" ;
+lin participate_V = mkV "participate" "participated" "participated" ;
+lin participation_N = mkN "participation" "participations" ;
+lin participatory_A = mkAMost "participatory" "participatorily" ;
+lin participial_A = mkAMost "participial" "participially" ;
+lin participle_N = mkN "participle" "participles" ;
+lin particle_N = mkN "particle" "particles" ;
+lin particular_A = mkAMost "particular" "particularly" ;
+lin particular_N = mkN "particular" "particulars" ;
+lin particularism_N = mkN "particularism" "particularisms" ;
+lin particularistic_A = mkAMost "particularistic" "particularisticly" ;
+lin particularity_N = mkN "particularity" "particularities" ;
+lin particularization_N = mkN "particularization" "particularizations" ;
+lin particularize_V = mkV "particularize" "particularized" "particularized" ;
+lin particulate_A = mkAMost "particulate" "particulately" ;
+lin particulate_N = mkN "particulate" "particulates" ;
+lin parting_N = mkN "parting" "partings" ;
+lin partisan_A = mkAMost "partisan" "partisanly" ;
+lin partisan_N = mkN "partisan" "partisans" ;
+lin partisanship_N = mkN "partisanship" "partisanships" ;
+lin partita_N = mkN "partita" "partitas" ;
+lin partition_N = mkN "partition" "partitions" ;
+lin partition_V = mkV "partition" "partitioned" "partitioned" ;
+lin partitionist_N = mkN "partitionist" "partitionists" ;
+lin partitive_A = mkAMost "partitive" "partitively" ;
+lin partitive_N = mkN "partitive" "partitives" ;
+lin partly_Adv = mkAdv "partly" ;
+lin partner_N = mkN "partner" "partners" ;
+lin partner_V = mkV "partner" "partnered" "partnered" ;
+lin partnership_N = mkN "partnership" "partnerships" ;
+lin partridge_N = mkN "partridge" "partridges" ;
+lin partridgeberry_N = mkN "partridgeberry" "partridgeberries" ;
+lin parts_N = mkN "parts" "partses" ;
+lin partsong_N = mkN "partsong" "partsongs" ;
+lin parturiency_N = mkN "parturiency" "parturiencies" ;
+lin parturient_A = mkAMost "parturient" "parturiently" ;
+lin parturition_N = mkN "parturition" "parturitions" ;
+lin party_N = mkN "party" "parties" ;
+lin party_spirit_N = mkN "party-spirit" "party-spirits" ;
+lin party_spirited_A = mkAMost "party-spirited" "party-spiritedly" ;
+lin party_wall_N = mkN "party-wall" "party-walls" ;
+lin partygoer_N = mkN "partygoer" "partygoers" ;
+lin parvenu_A = mkAMost "parvenu" "parvenuly" ;
+lin parvenu_N = mkN "parvenu" "parvenus" ;
+lin parvis_N = mkN "parvis" "parvises" ;
+lin parvovirus_N = mkN "parvovirus" "parvoviruses" ;
+lin pas_N = mkN "pas" "pases" ;
+lin pascal_N = mkN "pascal" "pascals" ;
+lin paschal_A = mkAMost "paschal" "paschally" ;
+lin pasha_N = mkN "pasha" "pashas" ;
+lin pashto_N = mkN "pashto" "pashtoes" ;
+lin pasqueflower_N = mkN "pasqueflower" "pasqueflowers" ;
+lin pass_N = mkN "pass" "passes" ;
+lin pass_V = mkV "pass" "passed" "passed" ;
+lin passable_A = mkAMost "passable" "passably" ;
+lin passage_N = mkN "passage" "passages" ;
+lin passageway_N = mkN "passageway" "passageways" ;
+lin passbook_N = mkN "passbook" "passbooks" ;
+lin passenger_N = mkN "passenger" "passengers" ;
+lin passepartout_N = mkN "passepartout" "passepartouts" ;
+lin passer_N = mkN "passer" "passers" ;
+lin passer_by_N = mkN "passer-by" "IRREG" ;
+lin passerby_N = mkN "passerby" "passerbies" ;
+lin passerine_A = mkAMost "passerine" "passerinely" ;
+lin passerine_N = mkN "passerine" "passerines" ;
+lin passim_Adv = mkAdv "passim" ;
+lin passing_Adv = mkAdv "passing" ;
+lin passing_N = mkN "passing" "passings" ;
+lin passing_out_A = mkAMost "passing-out" "passing-outly" ;
+lin passion_N = mkN "passion" "passions" ;
+lin passion_flower_N = mkN "passion-flower" "passion-flowers" ;
+lin passionate_A = mkAMost "passionate" "passionately" ;
+lin passionflower_N = mkN "passionflower" "passionflowers" ;
+lin passionless_A = mkAMost "passionless" "passionlessly" ;
+lin passive_A = mkAMost "passive" "passively" ;
+lin passive_N = mkN "passive" "passives" ;
+lin passiveness_N = mkN "passiveness" "passivenesses" ;
+lin passivity_N = mkN "passivity" "passivities" ;
+lin passkey_N = mkN "passkey" "passkeys" ;
+lin passover_N = mkN "passover" "passovers" ;
+lin passport_N = mkN "passport" "passports" ;
+lin password_N = mkN "password" "passwords" ;
+lin passé_A = mkAMost "passé" "passély" ;
+lin passée_A = mkAMost "passée" "passéely" ;
+lin past_A = mkAMost "past" "pastly" ;
+lin past_Adv = mkAdv "past" ;
+lin past_N = mkN "past" "pasts" ;
+lin past_Prep = mkPrep "past" ;
+lin pasta_N = mkN "pasta" "pastas" ;
+lin paste_N = mkN "paste" "pastes" ;
+lin paste_V = mkV "paste" "pasted" "pasted" ;
+lin paste_up_N = mkN "paste-up" "paste-ups" ;
+lin pasteboard_N = mkN "pasteboard" "pasteboards" ;
+lin pastel_A = mkAMost "pastel" "pastelly" ;
+lin pastel_N = mkN "pastel" "pastels" ;
+lin paster_N = mkN "paster" "pasters" ;
+lin pastern_N = mkN "pastern" "pasterns" ;
+lin pasteurization_N = mkN "pasteurization" "pasteurizations" ;
+lin pasteurize_V = mkV "pasteurize" "pasteurized" "pasteurized" ;
+lin pastiche_N = mkN "pastiche" "pastiches" ;
+lin pastille_N = mkN "pastille" "pastilles" ;
+lin pastime_N = mkN "pastime" "pastimes" ;
+lin pasting_N = mkN "pasting" "pastings" ;
+lin pastis_N = mkN "pastis" "pastises" ;
+lin pastness_N = mkN "pastness" "pastnesses" ;
+lin pastor_N = mkN "pastor" "pastors" ;
+lin pastoral_A = mkAMost "pastoral" "pastorally" ;
+lin pastoral_N = mkN "pastoral" "pastorals" ;
+lin pastorale_N = mkN "pastorale" "pastorales" ;
+lin pastorate_N = mkN "pastorate" "pastorates" ;
+lin pastorship_N = mkN "pastorship" "pastorships" ;
+lin pastrami_N = mkN "pastrami" "pastramis" ;
+lin pastry_N = mkN "pastry" "pastries" ;
+lin pastry_cook_N = mkN "pastry-cook" "pastry-cooks" ;
+lin pasturage_N = mkN "pasturage" "pasturages" ;
+lin pasture_N = mkN "pasture" "pastures" ;
+lin pasture_V = mkV "pasture" "pastured" "pastured" ;
+lin pasty_A = mkA "pasty" "pastier" "pastiest" "pastily" ;
+lin pasty_N = mkN "pasty" "pasties" ;
+lin pat_A = mkA "pat" "patter" "pattest" "patly" ;
+lin pat_Adv = mkAdv "pat" ;
+lin pat_N = mkN "pat" "pats" ;
+lin pat_V = mkV "pat" "patted" "patted" ;
+lin pataca_N = mkN "pataca" "patacas" ;
+lin patas_N = mkN "patas" "patases" ;
+lin patch_N = mkN "patch" "patches" ;
+lin patch_V = mkV "patch" "patched" "patched" ;
+lin patch_pocket_N = mkN "patch-pocket" "patch-pockets" ;
+lin patchcord_N = mkN "patchcord" "patchcords" ;
+lin patchiness_N = mkN "patchiness" "patchinesses" ;
+lin patching_N = mkN "patching" "patchings" ;
+lin patchouli_N = mkN "patchouli" "patchoulis" ;
+lin patchwork_N = mkN "patchwork" "patchworks" ;
+lin patchy_A = mkA "patchy" "patchier" "patchiest" "patchily" ;
+lin pate_N = mkN "pate" "pates" ;
+lin pate_de_foie_gras_N = mkN "pate de foie gras" "pate de foie grases" ;
+lin patella_N = mkN "patella" "patellas" ;
+lin patellar_A = mkAMost "patellar" "patellarly" ;
+lin patency_N = mkN "patency" "patencies" ;
+lin patent_A = mkAMost "patent" "patently" ;
+lin patent_N = mkN "patent" "patents" ;
+lin patent_V = mkV "patent" "patented" "patented" ;
+lin patentee_N = mkN "patentee" "patentees" ;
+lin pater_N = mkN "pater" "paters" ;
+lin paterfamilias_N = mkN "paterfamilias" "IRREG" ;
+lin paternal_A = mkAMost "paternal" "paternally" ;
+lin paternalism_N = mkN "paternalism" "paternalisms" ;
+lin paternalistic_A = mkAMost "paternalistic" "paternalisticly" ;
+lin paternity_N = mkN "paternity" "paternities" ;
+lin paternoster_N = mkN "paternoster" "paternosters" ;
+lin path_N = mkN "path" "paths" ;
+lin path_finder_N = mkN "path-finder" "path-finders" ;
+lin pathetic_A = mkAMost "pathetic" "patheticly" ;
+lin pathetically_Adv = mkAdv "pathetically" ;
+lin pathless_A = mkAMost "pathless" "pathlessly" ;
+lin pathogen_N = mkN "pathogen" "pathogens" ;
+lin pathogenesis_N = mkN "pathogenesis" "pathogenesises" ;
+lin pathogenically_Adv = mkAdv "pathogenically" ;
+lin pathological_A = mkAMost "pathological" "pathologically" ;
+lin pathologist_N = mkN "pathologist" "pathologists" ;
+lin pathology_N = mkN "pathology" "pathologies" ;
+lin pathos_N = mkN "pathos" "pathoses" ;
+lin pathway_N = mkN "pathway" "pathways" ;
+lin patience_N = mkN "patience" "patiences" ;
+lin patient_A = mkAMost "patient" "patiently" ;
+lin patient_N = mkN "patient" "patients" ;
+lin patina_N = mkN "patina" "patinas" ;
+lin patio_N = mkN "patio" "patios" ;
+lin patisserie_N = mkN "patisserie" "patisseries" ;
+lin patka_N = mkN "patka" "patkas" ;
+lin patois_N = mkN "patois" "patoes" ;
+lin patrial_N = mkN "patrial" "patrials" ;
+lin patriarch_N = mkN "patriarch" "patriarchs" ;
+lin patriarchal_A = mkAMost "patriarchal" "patriarchally" ;
+lin patriarchate_N = mkN "patriarchate" "patriarchates" ;
+lin patriarchic_A = mkAMost "patriarchic" "patriarchicly" ;
+lin patriarchy_N = mkN "patriarchy" "patriarchies" ;
+lin patricentric_A = mkAMost "patricentric" "patricentricly" ;
+lin patrician_A = mkAMost "patrician" "patricianly" ;
+lin patrician_N = mkN "patrician" "patricians" ;
+lin patricide_N = mkN "patricide" "patricides" ;
+lin patrilineage_N = mkN "patrilineage" "patrilineages" ;
+lin patrilineal_A = mkAMost "patrilineal" "patrilineally" ;
+lin patrimonial_A = mkAMost "patrimonial" "patrimonially" ;
+lin patrimony_N = mkN "patrimony" "patrimonies" ;
+lin patriot_N = mkN "patriot" "patriots" ;
+lin patriotic_A = mkAMost "patriotic" "patrioticly" ;
+lin patriotically_Adv = mkAdv "patriotically" ;
+lin patriotism_N = mkN "patriotism" "patriotisms" ;
+lin patristic_A = mkAMost "patristic" "patristicly" ;
+lin patristics_N = mkN "patristics" "patristicses" ;
+lin patrol_N = mkN "patrol" "patrols" ;
+lin patrol_V = mkV "patrol" "patrolled" "patrolled" ;
+lin patroller_N = mkN "patroller" "patrollers" ;
+lin patrolman_N = mkN "patrolman" "patrolmen" ;
+lin patron_N = mkN "patron" "patrons" ;
+lin patronage_N = mkN "patronage" "patronages" ;
+lin patroness_N = mkN "patroness" "patronesses" ;
+lin patronize_V = mkV "patronize" "patronized" "patronized" ;
+lin patronizing_A = mkAMost "patronizing" "patronizingly" ;
+lin patronymic_A = mkAMost "patronymic" "patronymicly" ;
+lin patronymic_N = mkN "patronymic" "patronymics" ;
+lin patten_N = mkN "patten" "pattens" ;
+lin patter_N = mkN "patter" "patters" ;
+lin patter_V = mkV "patter" "pattered" "pattered" ;
+lin pattern_N = mkN "pattern" "patterns" ;
+lin pattern_V = mkV "pattern" "patterned" "patterned" ;
+lin patternmaker_N = mkN "patternmaker" "patternmakers" ;
+lin patty_N = mkN "patty" "patties" ;
+lin patty_pan_N = mkN "patty-pan" "patty-pans" ;
+lin patzer_N = mkN "patzer" "patzers" ;
+lin paucity_N = mkN "paucity" "paucities" ;
+lin paunch_N = mkN "paunch" "paunches" ;
+lin paunchiness_N = mkN "paunchiness" "paunchinesses" ;
+lin paunchy_A = mkA "paunchy" "paunchier" "paunchiest" "paunchily" ;
+lin pauper_N = mkN "pauper" "paupers" ;
+lin pauperism_N = mkN "pauperism" "pauperisms" ;
+lin pauperization_N = mkN "pauperization" "pauperizations" ;
+lin pauperize_V = mkV "pauperize" "pauperized" "pauperized" ;
+lin pause_N = mkN "pause" "pauses" ;
+lin pause_V = mkV "pause" "paused" "paused" ;
+lin pavage_N = mkN "pavage" "pavages" ;
+lin pavane_N = mkN "pavane" "pavanes" ;
+lin pave_N = mkN "pave" "paves" ;
+lin pave_V = mkV "pave" "paved" "paved" ;
+lin pavement_N = mkN "pavement" "pavements" ;
+lin pavilion_N = mkN "pavilion" "pavilions" ;
+lin paving_N = mkN "paving" "pavings" ;
+lin paving_stone_N = mkN "paving-stone" "paving-stones" ;
+lin pavior_N = mkN "pavior" "paviors" ;
+lin pavis_N = mkN "pavis" "pavises" ;
+lin pavlova_N = mkN "pavlova" "pavlovas" ;
+lin pavonia_N = mkN "pavonia" "pavonias" ;
+lin paw_N = mkN "paw" "paws" ;
+lin paw_V = mkV "paw" "pawed" "pawed" ;
+lin pawer_N = mkN "pawer" "pawers" ;
+lin pawky_A = mkAMost "pawky" "pawkily" ;
+lin pawl_N = mkN "pawl" "pawls" ;
+lin pawn_N = mkN "pawn" "pawns" ;
+lin pawn_V = mkV "pawn" "pawned" "pawned" ;
+lin pawn_ticket_N = mkN "pawn-ticket" "pawn-tickets" ;
+lin pawnbroker_N = mkN "pawnbroker" "pawnbrokers" ;
+lin pawnshop_N = mkN "pawnshop" "pawnshops" ;
+lin pawpaw_N = mkN "pawpaw" "pawpaws" ;
+lin pax_N = mkN "pax" "paxes" ;
+lin pax_romana_N = mkN "pax romana" "pax romanae" ;
+lin pay_N = mkN "pay" "pays" ;
+lin pay_as_you_earn_N = mkN "pay-as-you-earn" "pay-as-you-earns" ;
+lin pay_claim_N = mkN "pay-claim" "pay-claims" ;
+lin pay_packet_N = mkN "pay-packet" "pay-packets" ;
+lin pay_paid_V = mkV "pay" "paid" "paid" ;
+lin pay_payed_V = mkV "pay" "payed" "payed" ;
+lin pay_station_N = mkN "pay-station" "pay-stations" ;
+lin payable_A = mkAMost "payable" "payably" ;
+lin payable_N = mkN "payable" "payables" ;
+lin payback_N = mkN "payback" "paybacks" ;
+lin paycheck_N = mkN "paycheck" "paychecks" ;
+lin payday_N = mkN "payday" "paydays" ;
+lin paydirt_N = mkN "paydirt" "paydirts" ;
+lin payee_N = mkN "payee" "payees" ;
+lin payer_N = mkN "payer" "payers" ;
+lin payload_N = mkN "payload" "payloads" ;
+lin paymaster_N = mkN "paymaster" "paymasters" ;
+lin payment_N = mkN "payment" "payments" ;
+lin paynim_N = mkN "paynim" "paynims" ;
+lin payoff_N = mkN "payoff" "payoffs" ;
+lin payola_N = mkN "payola" "payolas" ;
+lin payphone_N = mkN "payphone" "payphones" ;
+lin payroll_N = mkN "payroll" "payrolls" ;
+lin paysheet_N = mkN "paysheet" "paysheets" ;
+lin payslip_N = mkN "payslip" "payslips" ;
+lin pdsa_N = mkN "pdsa" "pdsas" ;
+lin pe_N = mkN "pe" "pes" ;
+lin pea_N = mkN "pea" "peas" ;
+lin pea_chick_N = mkN "pea-chick" "pea-chicks" ;
+lin pea_flour_N = mkN "pea-flour" "pea-flours" ;
+lin pea_green_A = mkAMost "pea-green" "pea-greenly" ;
+lin pea_green_N = mkN "pea-green" "pea-greens" ;
+lin pea_jacket_N = mkN "pea-jacket" "pea-jackets" ;
+lin pea_soup_N = mkN "pea-soup" "pea-soups" ;
+lin peace_N = mkN "peace" "peaces" ;
+lin peace_offering_N = mkN "peace-offering" "peace-offerings" ;
+lin peaceable_A = mkAMost "peaceable" "peaceably" ;
+lin peaceableness_N = mkN "peaceableness" "peaceablenesses" ;
+lin peaceful_A = mkAMost "peaceful" "peacefully" ;
+lin peacefulness_N = mkN "peacefulness" "peacefulnesses" ;
+lin peacekeeper_N = mkN "peacekeeper" "peacekeepers" ;
+lin peacekeeping_A = mkAMost "peacekeeping" "peacekeepingly" ;
+lin peacekeeping_N = mkN "peacekeeping" "peacekeepings" ;
+lin peacemaker_N = mkN "peacemaker" "peacemakers" ;
+lin peacetime_N = mkN "peacetime" "peacetimes" ;
+lin peach_N = mkN "peach" "peaches" ;
+lin peach_V = mkV "peach" "peached" "peached" ;
+lin peachick_N = mkN "peachick" "peachicks" ;
+lin peachy_A = mkA "peachy" "peachier" "peachiest" "peachily" ;
+lin peacock_N = mkN "peacock" "peacocks" ;
+lin peacock_blue_A = mkAMost "peacock-blue" "peacock-bluely" ;
+lin peacock_blue_N = mkN "peacock-blue" "peacock-blues" ;
+lin peafowl_N = mkN "peafowl" "peafowls" ;
+lin peahen_N = mkN "peahen" "peahens" ;
+lin peak_N = mkN "peak" "peaks" ;
+lin peak_V = mkV "peak" "peaked" "peaked" ;
+lin peaky_A = mkA "peaky" "peakier" "peakiest" "peakily" ;
+lin peal_N = mkN "peal" "peals" ;
+lin peal_V = mkV "peal" "pealed" "pealed" ;
+lin peanut_N = mkN "peanut" "peanuts" ;
+lin peanuts_N = mkN "peanuts" "peanutses" ;
+lin pear_N = mkN "pear" "pears" ;
+lin pearl_N = mkN "pearl" "pearls" ;
+lin pearl_V = mkV "pearl" "pearled" "pearled" ;
+lin pearl_barley_N = mkN "pearl-barley" "pearl-barleys" ;
+lin pearl_diver_N = mkN "pearl-diver" "pearl-divers" ;
+lin pearl_fishery_N = mkN "pearl-fishery" "pearl-fisheries" ;
+lin pearl_oyster_N = mkN "pearl-oyster" "pearl-oysters" ;
+lin pearl_sago_N = mkN "pearl-sago" "pearl-sagoes" ;
+lin pearlfish_N = mkN "pearlfish" "pearlfishes" ;
+lin pearlite_N = mkN "pearlite" "pearlites" ;
+lin pearlwort_N = mkN "pearlwort" "pearlworts" ;
+lin pearly_A = mkA "pearly" "pearlier" "pearliest" "pearlily" ;
+lin pearmain_N = mkN "pearmain" "pearmains" ;
+lin peasant_N = mkN "peasant" "peasants" ;
+lin peasanthood_N = mkN "peasanthood" "peasanthoods" ;
+lin peasantry_N = mkN "peasantry" "peasantries" ;
+lin pease_N = mkN "pease" "peases" ;
+lin pease_pudding_N = mkN "pease-pudding" "pease-puddings" ;
+lin peashooter_N = mkN "peashooter" "peashooters" ;
+lin peasouper_N = mkN "peasouper" "peasoupers" ;
+lin peat_N = mkN "peat" "peats" ;
+lin peaty_A = mkA "peaty" "peatier" "peatiest" "peatily" ;
+lin peavey_N = mkN "peavey" "peaveys" ;
+lin peba_N = mkN "peba" "pebas" ;
+lin pebble_N = mkN "pebble" "pebbles" ;
+lin pebbly_A = mkA "pebbly" "pebblier" "pebbliest" "pebblily" ;
+lin pebibit_N = mkN "pebibit" "pebibits" ;
+lin pecan_N = mkN "pecan" "pecans" ;
+lin peccable_A = mkAMost "peccable" "peccably" ;
+lin peccadillo_N = mkN "peccadillo" "peccadillos" ;
+lin peccary_N = mkN "peccary" "peccaries" ;
+lin peck_N = mkN "peck" "pecks" ;
+lin peck_V = mkV "peck" "pecked" "pecked" ;
+lin pecker_N = mkN "pecker" "peckers" ;
+lin peckish_A = mkAMost "peckish" "peckishly" ;
+lin pecopteris_N = mkN "pecopteris" "pecopterises" ;
+lin pectic_A = mkAMost "pectic" "pecticly" ;
+lin pectin_N = mkN "pectin" "pectins" ;
+lin pectinate_A = mkAMost "pectinate" "pectinately" ;
+lin pectineal_A = mkAMost "pectineal" "pectineally" ;
+lin pectoral_A = mkAMost "pectoral" "pectorally" ;
+lin pectoral_N = mkN "pectoral" "pectorals" ;
+lin peculate_V = mkV "peculate" "peculated" "peculated" ;
+lin peculation_N = mkN "peculation" "peculations" ;
+lin peculiar_A = mkAMost "peculiar" "peculiarly" ;
+lin peculiarity_N = mkN "peculiarity" "peculiarities" ;
+lin pecuniary_A = mkAMost "pecuniary" "pecuniarily" ;
+lin pedagogic_A = mkAMost "pedagogic" "pedagogicly" ;
+lin pedagogical_A = mkAMost "pedagogical" "pedagogically" ;
+lin pedagogue_N = mkN "pedagogue" "pedagogues" ;
+lin pedagogy_N = mkN "pedagogy" "pedagogies" ;
+lin pedal_A = mkAMost "pedal" "pedally" ;
+lin pedal_N = mkN "pedal" "pedals" ;
+lin pedal_V = mkV "pedal" "pedalled" "pedalled" ;
+lin pedaler_N = mkN "pedaler" "pedalers" ;
+lin pedant_N = mkN "pedant" "pedants" ;
+lin pedantic_A = mkAMost "pedantic" "pedanticly" ;
+lin pedantically_Adv = mkAdv "pedantically" ;
+lin pedantry_N = mkN "pedantry" "pedantries" ;
+lin pedate_A = mkAMost "pedate" "pedately" ;
+lin peddle_V = mkV "peddle" "peddled" "peddled" ;
+lin peddler_N = mkN "peddler" "peddlers" ;
+lin pederast_N = mkN "pederast" "pederasts" ;
+lin pederastic_A = mkAMost "pederastic" "pederasticly" ;
+lin pederasty_N = mkN "pederasty" "pederasties" ;
+lin pedestal_N = mkN "pedestal" "pedestals" ;
+lin pedestrian_A = mkAMost "pedestrian" "pedestrianly" ;
+lin pedestrian_N = mkN "pedestrian" "pedestrians" ;
+lin pediatric_A = mkAMost "pediatric" "pediatricly" ;
+lin pediatrician_N = mkN "pediatrician" "pediatricians" ;
+lin pediatrics_N = mkN "pediatrics" "pediatrics" ;
+lin pedicab_N = mkN "pedicab" "pedicabs" ;
+lin pedicel_N = mkN "pedicel" "pedicels" ;
+lin pediculicide_N = mkN "pediculicide" "pediculicides" ;
+lin pediculosis_N = mkN "pediculosis" "pediculosises" ;
+lin pedicure_N = mkN "pedicure" "pedicures" ;
+lin pedigree_N = mkN "pedigree" "pedigrees" ;
+lin pediment_N = mkN "pediment" "pediments" ;
+lin pedlar_N = mkN "pedlar" "pedlars" ;
+lin pedodontist_N = mkN "pedodontist" "pedodontists" ;
+lin pedometer_N = mkN "pedometer" "pedometers" ;
+lin pedophile_N = mkN "pedophile" "pedophiles" ;
+lin pedophilia_N = mkN "pedophilia" "pedophilias" ;
+lin peduncle_N = mkN "peduncle" "peduncles" ;
+lin pedunculate_A = mkAMost "pedunculate" "pedunculately" ;
+lin pee_N = mkN "pee" "pees" ;
+lin pee_V = mkV "pee" "peed" "peed" ;
+lin peeing_N = mkN "peeing" "peeings" ;
+lin peek_N = mkN "peek" "peeks" ;
+lin peek_V = mkV "peek" "peeked" "peeked" ;
+lin peek_a_boo_N = mkN "peek-a-boo" "peek-a-boos" ;
+lin peekaboo_N = mkN "peekaboo" "peekaboos" ;
+lin peel_N = mkN "peel" "peels" ;
+lin peel_V = mkV "peel" "peeled" "peeled" ;
+lin peeler_N = mkN "peeler" "peelers" ;
+lin peen_N = mkN "peen" "peens" ;
+lin peep_N = mkN "peep" "peeps" ;
+lin peep_V = mkV "peep" "peeped" "peeped" ;
+lin peeper_N = mkN "peeper" "peepers" ;
+lin peephole_N = mkN "peephole" "peepholes" ;
+lin peepshow_N = mkN "peepshow" "peepshows" ;
+lin peepul_N = mkN "peepul" "peepuls" ;
+lin peer_N = mkN "peer" "peers" ;
+lin peer_V = mkV "peer" "peered" "peered" ;
+lin peerage_N = mkN "peerage" "peerages" ;
+lin peeress_N = mkN "peeress" "peeresses" ;
+lin peerless_A = mkAMost "peerless" "peerlessly" ;
+lin peeve_N = mkN "peeve" "peeves" ;
+lin peeve_V = mkV "peeve" "peeved" "peeved" ;
+lin peevish_A = mkAMost "peevish" "peevishly" ;
+lin peevishness_N = mkN "peevishness" "peevishnesses" ;
+lin peewit_N = mkN "peewit" "peewits" ;
+lin peg_N = mkN "peg" "pegs" ;
+lin peg_V = mkV "peg" "pegged" "pegged" ;
+lin pegboard_N = mkN "pegboard" "pegboards" ;
+lin pegmatite_N = mkN "pegmatite" "pegmatites" ;
+lin peignoir_N = mkN "peignoir" "peignoirs" ;
+lin pejorative_A = mkAMost "pejorative" "pejoratively" ;
+lin peke_N = mkN "peke" "pekes" ;
+lin pekinese_N = mkN "pekinese" "pekinese" ;
+lin pekoe_N = mkN "pekoe" "pekoes" ;
+lin pelf_N = mkN "pelf" "pelfs" ;
+lin pelican_N = mkN "pelican" "pelicans" ;
+lin pelisse_N = mkN "pelisse" "pelisses" ;
+lin pell_mell_Adv = mkAdv "pell-mell" ;
+lin pellagra_N = mkN "pellagra" "pellagras" ;
+lin pellet_N = mkN "pellet" "pellets" ;
+lin pellicle_N = mkN "pellicle" "pellicles" ;
+lin pellitory_N = mkN "pellitory" "pellitories" ;
+lin pellucid_A = mkAMost "pellucid" "pellucidly" ;
+lin pellucidness_N = mkN "pellucidness" "pellucidnesses" ;
+lin pelmet_N = mkN "pelmet" "pelmets" ;
+lin pelota_N = mkN "pelota" "pelotas" ;
+lin pelt_N = mkN "pelt" "pelts" ;
+lin pelt_V = mkV "pelt" "pelted" "pelted" ;
+lin peltate_A = mkAMost "peltate" "peltately" ;
+lin pelter_N = mkN "pelter" "pelters" ;
+lin peludo_N = mkN "peludo" "peludoes" ;
+lin pelvic_A = mkAMost "pelvic" "pelvicly" ;
+lin pelvimeter_N = mkN "pelvimeter" "pelvimeters" ;
+lin pelvimetry_N = mkN "pelvimetry" "pelvimetries" ;
+lin pelvis_N = mkN "pelvis" "pelvises" ;
+lin pelycosaur_N = mkN "pelycosaur" "pelycosaurs" ;
+lin pemmican_N = mkN "pemmican" "pemmicans" ;
+lin pemphigous_A = mkAMost "pemphigous" "pemphigously" ;
+lin pemphigus_N = mkN "pemphigus" "pemphiguses" ;
+lin pen_N = mkN "pen" "pens" ;
+lin pen_V = mkV "pen" "penned" "penned" ;
+lin pen_and_ink_N = mkN "pen-and-ink" "pen-and-inks" ;
+lin pen_friend_N = mkN "pen-friend" "pen-friends" ;
+lin pen_name_N = mkN "pen-name" "pen-names" ;
+lin pen_pusher_N = mkN "pen-pusher" "pen-pushers" ;
+lin penal_A = mkAMost "penal" "penally" ;
+lin penalization_N = mkN "penalization" "penalizations" ;
+lin penalize_V = mkV "penalize" "penalized" "penalized" ;
+lin penalty_N = mkN "penalty" "penalties" ;
+lin penance_N = mkN "penance" "penances" ;
+lin penchant_N = mkN "penchant" "penchants" ;
+lin pencil_N = mkN "pencil" "pencils" ;
+lin pencil_penciled_V = mkV "pencil" "penciled" "penciled" ;
+lin pencil_pencilled_V = mkV "pencil" "pencilled" "pencilled" ;
+lin pend_V = mkV "pend" "pended" "pended" ;
+lin pendant_N = mkN "pendant" "pendants" ;
+lin pendent_A = mkAMost "pendent" "pendently" ;
+lin pending_Prep = mkPrep "pending" ;
+lin pendragon_N = mkN "pendragon" "pendragons" ;
+lin pendulous_A = mkAMost "pendulous" "pendulously" ;
+lin pendulum_N = mkN "pendulum" "pendulums" ;
+lin peneplain_N = mkN "peneplain" "peneplains" ;
+lin penetrability_N = mkN "penetrability" "penetrabilities" ;
+lin penetrable_A = mkAMost "penetrable" "penetrably" ;
+lin penetralia_N = mkN "penetralia" "penetralias" ;
+lin penetrate_V = mkV "penetrate" "penetrated" "penetrated" ;
+lin penetratingly_Adv = mkAdv "penetratingly" ;
+lin penetration_N = mkN "penetration" "penetrations" ;
+lin penetrative_A = mkAMost "penetrative" "penetratively" ;
+lin penetrator_N = mkN "penetrator" "penetrators" ;
+lin pengo_N = mkN "pengo" "pengoes" ;
+lin penguin_N = mkN "penguin" "penguins" ;
+lin penicillamine_N = mkN "penicillamine" "penicillamines" ;
+lin penicillin_N = mkN "penicillin" "penicillins" ;
+lin penicillinase_N = mkN "penicillinase" "penicillinases" ;
+lin penile_A = mkAMost "penile" "penilely" ;
+lin peninsula_N = mkN "peninsula" "peninsulas" ;
+lin peninsular_A = mkAMost "peninsular" "peninsularly" ;
+lin penis_N = mkN "penis" "penises" ;
+lin penitence_N = mkN "penitence" "penitences" ;
+lin penitent_A = mkAMost "penitent" "penitently" ;
+lin penitent_N = mkN "penitent" "penitents" ;
+lin penitential_A = mkAMost "penitential" "penitentially" ;
+lin penitentiary_A = mkAMost "penitentiary" "penitentiarily" ;
+lin penitentiary_N = mkN "penitentiary" "penitentiaries" ;
+lin penknife_N = mkN "penknife" "penknives" ;
+lin penlight_N = mkN "penlight" "penlights" ;
+lin penmanship_N = mkN "penmanship" "penmanships" ;
+lin penn'orth_N = mkN "penn'orth" "penn'orths" ;
+lin pennant_N = mkN "pennant" "pennants" ;
+lin pennate_A = mkAMost "pennate" "pennately" ;
+lin penne_N = mkN "penne" "pennes" ;
+lin penni_N = mkN "penni" "pennis" ;
+lin penniless_A = mkAMost "penniless" "pennilessly" ;
+lin pennon_N = mkN "pennon" "pennons" ;
+lin pennoncel_N = mkN "pennoncel" "pennoncels" ;
+lin penny_pence_N = mkN "penny" "pence" ;
+lin penny_pennies_N = mkN "penny" "pennies" ;
+lin pennycress_N = mkN "pennycress" "pennycresses" ;
+lin pennyroyal_N = mkN "pennyroyal" "pennyroyals" ;
+lin pennyweight_N = mkN "pennyweight" "pennyweights" ;
+lin pennywhistle_N = mkN "pennywhistle" "pennywhistles" ;
+lin pennyworth_N = mkN "pennyworth" "pennyworths" ;
+lin penologist_N = mkN "penologist" "penologists" ;
+lin penology_N = mkN "penology" "penologies" ;
+lin penpusher_N = mkN "penpusher" "penpushers" ;
+lin pension_N = mkN "pension" "pensions" ;
+lin pension_V = mkV "pension" "pensioned" "pensioned" ;
+lin pensionable_A = mkAMost "pensionable" "pensionably" ;
+lin pensioner_N = mkN "pensioner" "pensioners" ;
+lin pensive_A = mkAMost "pensive" "pensively" ;
+lin pensiveness_N = mkN "pensiveness" "pensivenesses" ;
+lin penstock_N = mkN "penstock" "penstocks" ;
+lin pent_A = mkA "pent" "penter" "pentest" "pently" ;
+lin pent_up_A = mkAMost "pent-up" "pent-uply" ;
+lin pentacle_N = mkN "pentacle" "pentacles" ;
+lin pentaerythritol_N = mkN "pentaerythritol" "pentaerythritols" ;
+lin pentagon_N = mkN "pentagon" "pentagons" ;
+lin pentagonal_A = mkAMost "pentagonal" "pentagonally" ;
+lin pentahedron_N = mkN "pentahedron" "pentahedrons" ;
+lin pentail_N = mkN "pentail" "pentails" ;
+lin pentamerous_A = mkAMost "pentamerous" "pentamerously" ;
+lin pentameter_N = mkN "pentameter" "pentameters" ;
+lin pentangular_A = mkAMost "pentangular" "pentangularly" ;
+lin pentasyllabic_A = mkAMost "pentasyllabic" "pentasyllabicly" ;
+lin pentateuch_N = mkN "pentateuch" "pentateuchs" ;
+lin pentathlete_N = mkN "pentathlete" "pentathletes" ;
+lin pentathlon_N = mkN "pentathlon" "pentathlons" ;
+lin pentatonic_A = mkAMost "pentatonic" "pentatonicly" ;
+lin pentavalent_A = mkAMost "pentavalent" "pentavalently" ;
+lin pentazocine_N = mkN "pentazocine" "pentazocines" ;
+lin pentecost_N = mkN "pentecost" "pentecosts" ;
+lin pentecostal_A = mkAMost "pentecostal" "pentecostally" ;
+lin pentecostalism_N = mkN "pentecostalism" "pentecostalisms" ;
+lin penthouse_N = mkN "penthouse" "penthouses" ;
+lin pentimento_N = mkN "pentimento" "pentimentoes" ;
+lin pentlandite_N = mkN "pentlandite" "pentlandites" ;
+lin pentode_N = mkN "pentode" "pentodes" ;
+lin pentose_N = mkN "pentose" "pentoses" ;
+lin pentoxide_N = mkN "pentoxide" "pentoxides" ;
+lin pentoxifylline_N = mkN "pentoxifylline" "pentoxifyllines" ;
+lin pentylenetetrazol_N = mkN "pentylenetetrazol" "pentylenetetrazols" ;
+lin penuche_N = mkN "penuche" "penuches" ;
+lin penult_N = mkN "penult" "penults" ;
+lin penultimate_A = mkAMost "penultimate" "penultimately" ;
+lin penultimate_N = mkN "penultimate" "penultimates" ;
+lin penumbra_N = mkN "penumbra" "penumbras" ;
+lin penumbral_A = mkAMost "penumbral" "penumbrally" ;
+lin penurious_A = mkAMost "penurious" "penuriously" ;
+lin penuriousness_N = mkN "penuriousness" "penuriousnesses" ;
+lin penury_N = mkN "penury" "penuries" ;
+lin peon_N = mkN "peon" "peons" ;
+lin peonage_N = mkN "peonage" "peonages" ;
+lin peony_N = mkN "peony" "peonies" ;
+lin people_V = mkV "people" "peopled" "peopled" ;
+lin people_people_N = mkN "people" "people" ;
+lin people_peoples_N = mkN "people" "peoples" ;
+lin peoples_N = mkN "peoples" "peopleses" ;
+lin pep_N = mkN "pep" "peps" ;
+lin pep_V = mkV "pep" "pepped" "pepped" ;
+lin peperomia_N = mkN "peperomia" "peperomias" ;
+lin peplos_N = mkN "peplos" "peploses" ;
+lin peplum_N = mkN "peplum" "peplums" ;
+lin pepper_N = mkN "pepper" "peppers" ;
+lin pepper_V = mkV "pepper" "peppered" "peppered" ;
+lin pepper_and_salt_N = mkN "pepper-and-salt" "pepper-and-salts" ;
+lin pepper_mill_N = mkN "pepper-mill" "pepper-mills" ;
+lin pepper_pot_N = mkN "pepper-pot" "pepper-pots" ;
+lin peppercorn_N = mkN "peppercorn" "peppercorns" ;
+lin peppermint_N = mkN "peppermint" "peppermints" ;
+lin pepperoni_N = mkN "pepperoni" "pepperonis" ;
+lin peppery_A = mkAMost "peppery" "pepperily" ;
+lin pepsin_N = mkN "pepsin" "pepsins" ;
+lin pepsinogen_N = mkN "pepsinogen" "pepsinogens" ;
+lin peptic_A = mkAMost "peptic" "pepticly" ;
+lin peptide_N = mkN "peptide" "peptides" ;
+lin peptization_N = mkN "peptization" "peptizations" ;
+lin peptone_N = mkN "peptone" "peptones" ;
+lin per_Prep = mkPrep "per" ;
+lin peradventure_Adv = mkAdv "peradventure" ;
+lin peradventure_N = mkN "peradventure" "peradventures" ;
+lin perambulate_V = mkV "perambulate" "perambulated" "perambulated" ;
+lin perambulation_N = mkN "perambulation" "perambulations" ;
+lin perambulator_N = mkN "perambulator" "perambulators" ;
+lin percale_N = mkN "percale" "percales" ;
+lin perceivable_A = mkAMost "perceivable" "perceivably" ;
+lin perceive_V = mkV "perceive" "perceived" "perceived" ;
+lin perceiver_N = mkN "perceiver" "perceivers" ;
+lin percent_N = mkN "percent" "percent" ;
+lin percentage_N = mkN "percentage" "percentages" ;
+lin percentile_N = mkN "percentile" "percentiles" ;
+lin percept_N = mkN "percept" "percepts" ;
+lin perceptibility_N = mkN "perceptibility" "perceptibilities" ;
+lin perceptible_A = mkAMost "perceptible" "perceptibly" ;
+lin perception_N = mkN "perception" "perceptions" ;
+lin perceptive_A = mkAMost "perceptive" "perceptively" ;
+lin perceptiveness_N = mkN "perceptiveness" "perceptivenesses" ;
+lin perceptual_A = mkAMost "perceptual" "perceptually" ;
+lin perch_N = mkN "perch" "perch" ;
+lin perch_V = mkV "perch" "perched" "perched" ;
+lin perchance_Adv = mkAdv "perchance" ;
+lin percher_N = mkN "percher" "perchers" ;
+lin perchlorate_N = mkN "perchlorate" "perchlorates" ;
+lin perchloride_N = mkN "perchloride" "perchlorides" ;
+lin percipient_A = mkAMost "percipient" "percipiently" ;
+lin percolate_N = mkN "percolate" "percolates" ;
+lin percolate_V = mkV "percolate" "percolated" "percolated" ;
+lin percolation_N = mkN "percolation" "percolations" ;
+lin percolator_N = mkN "percolator" "percolators" ;
+lin percussion_N = mkN "percussion" "percussions" ;
+lin percussionist_N = mkN "percussionist" "percussionists" ;
+lin percussive_A = mkAMost "percussive" "percussively" ;
+lin perdition_N = mkN "perdition" "perditions" ;
+lin perdurability_N = mkN "perdurability" "perdurabilities" ;
+lin peregrination_N = mkN "peregrination" "peregrinations" ;
+lin peregrine_N = mkN "peregrine" "peregrines" ;
+lin peremptory_A = mkAMost "peremptory" "peremptorily" ;
+lin perennation_N = mkN "perennation" "perennations" ;
+lin perennial_A = mkAMost "perennial" "perennially" ;
+lin perennial_N = mkN "perennial" "perennials" ;
+lin perestroika_N = mkN "perestroika" "perestroikas" ;
+lin perfect_A = mkAMost "perfect" "perfectly" ;
+lin perfect_V = mkV "perfect" "perfected" "perfected" ;
+lin perfecter_N = mkN "perfecter" "perfecters" ;
+lin perfectibility_N = mkN "perfectibility" "perfectibilities" ;
+lin perfectible_A = mkAMost "perfectible" "perfectibly" ;
+lin perfection_N = mkN "perfection" "perfections" ;
+lin perfectionism_N = mkN "perfectionism" "perfectionisms" ;
+lin perfectionist_N = mkN "perfectionist" "perfectionists" ;
+lin perfective_N = mkN "perfective" "perfectives" ;
+lin perfervid_A = mkAMost "perfervid" "perfervidly" ;
+lin perfidious_A = mkAMost "perfidious" "perfidiously" ;
+lin perfidiousness_N = mkN "perfidiousness" "perfidiousnesses" ;
+lin perfidy_N = mkN "perfidy" "perfidies" ;
+lin perfluorocarbon_N = mkN "perfluorocarbon" "perfluorocarbons" ;
+lin perfoliate_A = mkAMost "perfoliate" "perfoliately" ;
+lin perforate_V = mkV "perforate" "perforated" "perforated" ;
+lin perforation_N = mkN "perforation" "perforations" ;
+lin perforce_Adv = mkAdv "perforce" ;
+lin perform_V = mkV "perform" "performed" "performed" ;
+lin performance_N = mkN "performance" "performances" ;
+lin performer_N = mkN "performer" "performers" ;
+lin perfume_N = mkN "perfume" "perfumes" ;
+lin perfume_V = mkV "perfume" "perfumed" "perfumed" ;
+lin perfumer_N = mkN "perfumer" "perfumers" ;
+lin perfumery_N = mkN "perfumery" "perfumeries" ;
+lin perfunctory_A = mkAMost "perfunctory" "perfunctorily" ;
+lin perfusion_N = mkN "perfusion" "perfusions" ;
+lin pergola_N = mkN "pergola" "pergolas" ;
+lin perhaps_Adv = mkAdv "perhaps" ;
+lin peri_N = mkN "peri" "peris" ;
+lin perianal_A = mkAMost "perianal" "perianally" ;
+lin perianth_N = mkN "perianth" "perianths" ;
+lin periapsis_N = mkN "periapsis" "periapsises" ;
+lin periarteritis_N = mkN "periarteritis" "periarteritises" ;
+lin pericardial_A = mkAMost "pericardial" "pericardially" ;
+lin pericarditis_N = mkN "pericarditis" "pericarditises" ;
+lin pericardium_N = mkN "pericardium" "pericardiums" ;
+lin pericarp_N = mkN "pericarp" "pericarps" ;
+lin pericementoclasia_N = mkN "pericementoclasia" "pericementoclasias" ;
+lin periclase_N = mkN "periclase" "periclases" ;
+lin peridinian_N = mkN "peridinian" "peridinians" ;
+lin peridium_N = mkN "peridium" "peridiums" ;
+lin peridot_N = mkN "peridot" "peridots" ;
+lin peridotite_N = mkN "peridotite" "peridotites" ;
+lin perigee_N = mkN "perigee" "perigees" ;
+lin perigon_N = mkN "perigon" "perigons" ;
+lin perigonal_A = mkAMost "perigonal" "perigonally" ;
+lin perihelion_N = mkN "perihelion" "perihelions" ;
+lin perijove_N = mkN "perijove" "perijoves" ;
+lin peril_N = mkN "peril" "perils" ;
+lin peril_V = mkV "peril" "perilled" "perilled" ;
+lin perilous_A = mkAMost "perilous" "perilously" ;
+lin perilymph_N = mkN "perilymph" "perilymphs" ;
+lin perimeter_N = mkN "perimeter" "perimeters" ;
+lin perimysium_N = mkN "perimysium" "perimysiums" ;
+lin perinasal_A = mkAMost "perinasal" "perinasally" ;
+lin perinatal_A = mkAMost "perinatal" "perinatally" ;
+lin perinatologist_N = mkN "perinatologist" "perinatologists" ;
+lin perinatology_N = mkN "perinatology" "perinatologies" ;
+lin perineal_A = mkAMost "perineal" "perineally" ;
+lin perineotomy_N = mkN "perineotomy" "perineotomies" ;
+lin perineum_N = mkN "perineum" "perineums" ;
+lin perineurium_N = mkN "perineurium" "perineuriums" ;
+lin period_N = mkN "period" "periods" ;
+lin periodic_A = mkAMost "periodic" "periodicly" ;
+lin periodical_A = mkAMost "periodical" "periodically" ;
+lin periodical_N = mkN "periodical" "periodicals" ;
+lin periodontic_A = mkAMost "periodontic" "periodonticly" ;
+lin periodontics_N = mkN "periodontics" "periodonticses" ;
+lin periodontist_N = mkN "periodontist" "periodontists" ;
+lin periosteum_N = mkN "periosteum" "periosteums" ;
+lin peripatetic_A = mkAMost "peripatetic" "peripateticly" ;
+lin peripatetic_N = mkN "peripatetic" "peripatetics" ;
+lin peripeteia_N = mkN "peripeteia" "peripeteias" ;
+lin peripheral_A = mkAMost "peripheral" "peripherally" ;
+lin peripheral_N = mkN "peripheral" "peripherals" ;
+lin periphery_N = mkN "periphery" "peripheries" ;
+lin periphrasis_N = mkN "periphrasis" "periphrases" ;
+lin periphrastic_A = mkAMost "periphrastic" "periphrasticly" ;
+lin peripteral_A = mkAMost "peripteral" "peripterally" ;
+lin periscope_N = mkN "periscope" "periscopes" ;
+lin periselene_N = mkN "periselene" "periselenes" ;
+lin perish_V = mkV "perish" "perished" "perished" ;
+lin perishability_N = mkN "perishability" "perishabilities" ;
+lin perishable_A = mkAMost "perishable" "perishably" ;
+lin perishable_N = mkN "perishable" "perishables" ;
+lin perisher_N = mkN "perisher" "perishers" ;
+lin perisperm_N = mkN "perisperm" "perisperms" ;
+lin peristalsis_N = mkN "peristalsis" "peristalsises" ;
+lin peristome_N = mkN "peristome" "peristomes" ;
+lin peristylar_A = mkAMost "peristylar" "peristylarly" ;
+lin peristyle_N = mkN "peristyle" "peristyles" ;
+lin perithecium_N = mkN "perithecium" "peritheciums" ;
+lin perithelial_A = mkAMost "perithelial" "perithelially" ;
+lin perithelium_N = mkN "perithelium" "peritheliums" ;
+lin peritoneal_A = mkAMost "peritoneal" "peritoneally" ;
+lin peritoneum_N = mkN "peritoneum" "peritoneums" ;
+lin peritonitis_N = mkN "peritonitis" "peritonitises" ;
+lin peritrichous_A = mkAMost "peritrichous" "peritrichously" ;
+lin periwig_N = mkN "periwig" "periwigs" ;
+lin periwinkle_N = mkN "periwinkle" "periwinkles" ;
+lin perjure_V = mkV "perjure" "perjured" "perjured" ;
+lin perjurer_N = mkN "perjurer" "perjurers" ;
+lin perjury_N = mkN "perjury" "perjuries" ;
+lin perk_N = mkN "perk" "perks" ;
+lin perk_V = mkV "perk" "perked" "perked" ;
+lin perkiness_N = mkN "perkiness" "perkinesses" ;
+lin perky_A = mkA "perky" "perkier" "perkiest" "perkily" ;
+lin perm_N = mkN "perm" "perms" ;
+lin perm_V = mkV "perm" "permed" "permed" ;
+lin permafrost_N = mkN "permafrost" "permafrosts" ;
+lin permanence_N = mkN "permanence" "permanences" ;
+lin permanency_N = mkN "permanency" "permanencies" ;
+lin permanent_A = mkAMost "permanent" "permanently" ;
+lin permanganate_N = mkN "permanganate" "permanganates" ;
+lin permeability_N = mkN "permeability" "permeabilities" ;
+lin permeable_A = mkAMost "permeable" "permeably" ;
+lin permeant_A = mkAMost "permeant" "permeantly" ;
+lin permeate_V = mkV "permeate" "permeated" "permeated" ;
+lin permeation_N = mkN "permeation" "permeations" ;
+lin permissibility_N = mkN "permissibility" "permissibilities" ;
+lin permissible_A = mkAMost "permissible" "permissibly" ;
+lin permission_N = mkN "permission" "permissions" ;
+lin permissive_A = mkAMost "permissive" "permissively" ;
+lin permissiveness_N = mkN "permissiveness" "permissivenesses" ;
+lin permit_N = mkN "permit" "permits" ;
+lin permit_V = mkV "permit" "permitted" "permitted" ;
+lin permutability_N = mkN "permutability" "permutabilities" ;
+lin permutation_N = mkN "permutation" "permutations" ;
+lin permute_V = mkV "permute" "permuted" "permuted" ;
+lin pernicious_A = mkAMost "pernicious" "perniciously" ;
+lin perniciousness_N = mkN "perniciousness" "perniciousnesses" ;
+lin pernickety_A = mkAMost "pernickety" "pernicketily" ;
+lin peroneal_A = mkAMost "peroneal" "peroneally" ;
+lin peroneus_N = mkN "peroneus" "peroneuses" ;
+lin peroration_N = mkN "peroration" "perorations" ;
+lin peroxidase_N = mkN "peroxidase" "peroxidases" ;
+lin peroxide_N = mkN "peroxide" "peroxides" ;
+lin perpendicular_A = mkAMost "perpendicular" "perpendicularly" ;
+lin perpendicular_N = mkN "perpendicular" "perpendiculars" ;
+lin perpendicularity_N = mkN "perpendicularity" "perpendicularities" ;
+lin perpetrate_V = mkV "perpetrate" "perpetrated" "perpetrated" ;
+lin perpetration_N = mkN "perpetration" "perpetrations" ;
+lin perpetrator_N = mkN "perpetrator" "perpetrators" ;
+lin perpetual_A = mkAMost "perpetual" "perpetually" ;
+lin perpetuate_V = mkV "perpetuate" "perpetuated" "perpetuated" ;
+lin perpetuation_N = mkN "perpetuation" "perpetuations" ;
+lin perpetuity_N = mkN "perpetuity" "perpetuities" ;
+lin perphenazine_N = mkN "perphenazine" "perphenazines" ;
+lin perplex_V = mkV "perplex" "perplexed" "perplexed" ;
+lin perplexedly_Adv = mkAdv "perplexedly" ;
+lin perplexity_N = mkN "perplexity" "perplexities" ;
+lin perquisite_N = mkN "perquisite" "perquisites" ;
+lin perry_N = mkN "perry" "perries" ;
+lin persecute_V = mkV "persecute" "persecuted" "persecuted" ;
+lin persecution_N = mkN "persecution" "persecutions" ;
+lin persecutor_N = mkN "persecutor" "persecutors" ;
+lin perseverance_N = mkN "perseverance" "perseverances" ;
+lin perseveration_N = mkN "perseveration" "perseverations" ;
+lin persevere_V = mkV "persevere" "persevered" "persevered" ;
+lin perseveringly_Adv = mkAdv "perseveringly" ;
+lin persiflage_N = mkN "persiflage" "persiflages" ;
+lin persimmon_N = mkN "persimmon" "persimmons" ;
+lin persist_V = mkV "persist" "persisted" "persisted" ;
+lin persistence_N = mkN "persistence" "persistences" ;
+lin persistent_A = mkAMost "persistent" "persistently" ;
+lin person_N = mkN "person" "persons" ;
+lin persona_N = mkN "persona" "personas" ;
+lin persona_grata_N = mkN "persona grata" "persona gratae" ;
+lin persona_non_grata_N = mkN "persona non grata" "persona non gratae" ;
+lin personable_A = mkAMost "personable" "personably" ;
+lin personableness_N = mkN "personableness" "personablenesses" ;
+lin personage_N = mkN "personage" "personages" ;
+lin personal_A = mkAMost "personal" "personally" ;
+lin personal_N = mkN "personal" "personals" ;
+lin personality_N = mkN "personality" "personalities" ;
+lin personalize_V = mkV "personalize" "personalized" "personalized" ;
+lin personalty_N = mkN "personalty" "personalties" ;
+lin personate_V = mkV "personate" "personated" "personated" ;
+lin personation_N = mkN "personation" "personations" ;
+lin personhood_N = mkN "personhood" "personhoods" ;
+lin personification_N = mkN "personification" "personifications" ;
+lin personify_V = mkV "personify" "personified" "personified" ;
+lin personnel_N = mkN "personnel" "personnels" ;
+lin perspective_N = mkN "perspective" "perspectives" ;
+lin perspex_N = mkN "perspex" "perspexes" ;
+lin perspicacious_A = mkAMost "perspicacious" "perspicaciously" ;
+lin perspicacity_N = mkN "perspicacity" "perspicacities" ;
+lin perspicuity_N = mkN "perspicuity" "perspicuities" ;
+lin perspicuous_A = mkAMost "perspicuous" "perspicuously" ;
+lin perspicuousness_N = mkN "perspicuousness" "perspicuousnesses" ;
+lin perspiration_N = mkN "perspiration" "perspirations" ;
+lin perspire_V = mkV "perspire" "perspired" "perspired" ;
+lin perspirer_N = mkN "perspirer" "perspirers" ;
+lin persuadable_A = mkAMost "persuadable" "persuadably" ;
+lin persuade_V = mkV "persuade" "persuaded" "persuaded" ;
+lin persuader_N = mkN "persuader" "persuaders" ;
+lin persuasion_N = mkN "persuasion" "persuasions" ;
+lin persuasive_A = mkAMost "persuasive" "persuasively" ;
+lin persuasiveness_N = mkN "persuasiveness" "persuasivenesses" ;
+lin pert_A = mkAMost "pert" "pertly" ;
+lin pertain_V = mkV "pertain" "pertained" "pertained" ;
+lin pertainym_N = mkN "pertainym" "pertainyms" ;
+lin pertinacious_A = mkAMost "pertinacious" "pertinaciously" ;
+lin pertinacity_N = mkN "pertinacity" "pertinacities" ;
+lin pertinence_N = mkN "pertinence" "pertinences" ;
+lin pertinent_A = mkAMost "pertinent" "pertinently" ;
+lin pertness_N = mkN "pertness" "pertnesses" ;
+lin perturb_V = mkV "perturb" "perturbed" "perturbed" ;
+lin perturbation_N = mkN "perturbation" "perturbations" ;
+lin peruke_N = mkN "peruke" "perukes" ;
+lin peruked_A = mkAMost "peruked" "perukedly" ;
+lin perusal_N = mkN "perusal" "perusals" ;
+lin peruse_V = mkV "peruse" "perused" "perused" ;
+lin peruvian_A = mkAMost "peruvian" "peruvianly" ;
+lin peruvian_N = mkN "peruvian" "peruvians" ;
+lin pervade_V = mkV "pervade" "pervaded" "pervaded" ;
+lin pervaporation_N = mkN "pervaporation" "pervaporations" ;
+lin pervasion_N = mkN "pervasion" "pervasions" ;
+lin pervasive_A = mkAMost "pervasive" "pervasively" ;
+lin pervasiveness_N = mkN "pervasiveness" "pervasivenesses" ;
+lin perverse_A = mkAMost "perverse" "perversely" ;
+lin perverseness_N = mkN "perverseness" "perversenesses" ;
+lin perversion_N = mkN "perversion" "perversions" ;
+lin perversity_N = mkN "perversity" "perversities" ;
+lin pervert_N = mkN "pervert" "perverts" ;
+lin pervert_V = mkV "pervert" "perverted" "perverted" ;
+lin pervious_A = mkAMost "pervious" "perviously" ;
+lin pesantran_N = mkN "pesantran" "pesantrans" ;
+lin peseta_N = mkN "peseta" "pesetas" ;
+lin pesewa_N = mkN "pesewa" "pesewas" ;
+lin peshmerga_N = mkN "peshmerga" "peshmergas" ;
+lin pesky_A = mkA "pesky" "peskier" "peskiest" "peskily" ;
+lin peso_N = mkN "peso" "pesos" ;
+lin pessary_N = mkN "pessary" "pessaries" ;
+lin pessimal_A = mkAMost "pessimal" "pessimally" ;
+lin pessimism_N = mkN "pessimism" "pessimisms" ;
+lin pessimist_N = mkN "pessimist" "pessimists" ;
+lin pessimistic_A = mkAMost "pessimistic" "pessimisticly" ;
+lin pessimistically_Adv = mkAdv "pessimistically" ;
+lin pest_N = mkN "pest" "pests" ;
+lin pester_V = mkV "pester" "pestered" "pestered" ;
+lin pesthole_N = mkN "pesthole" "pestholes" ;
+lin pesticide_N = mkN "pesticide" "pesticides" ;
+lin pestiferous_A = mkAMost "pestiferous" "pestiferously" ;
+lin pestilence_N = mkN "pestilence" "pestilences" ;
+lin pestilent_A = mkAMost "pestilent" "pestilently" ;
+lin pestilential_A = mkAMost "pestilential" "pestilentially" ;
+lin pestle_N = mkN "pestle" "pestles" ;
+lin pestle_V = mkV "pestle" "pestled" "pestled" ;
+lin pesto_N = mkN "pesto" "pestoes" ;
+lin pet_N = mkN "pet" "pets" ;
+lin pet_V = mkV "pet" "petted" "petted" ;
+lin petabit_N = mkN "petabit" "petabits" ;
+lin petabyte_N = mkN "petabyte" "petabytes" ;
+lin petal_N = mkN "petal" "petals" ;
+lin petaled_A = mkAMost "petaled" "petaledly" ;
+lin petalled_A = mkAMost "petalled" "petalledly" ;
+lin petallike_A = mkAMost "petallike" "petallikely" ;
+lin petaloid_A = mkAMost "petaloid" "petaloidly" ;
+lin petalous_A = mkAMost "petalous" "petalously" ;
+lin petard_N = mkN "petard" "petards" ;
+lin petcock_N = mkN "petcock" "petcocks" ;
+lin petechia_N = mkN "petechia" "petechias" ;
+lin peter_V = mkV "peter" "petered" "petered" ;
+lin petfood_N = mkN "petfood" "petfoods" ;
+lin petiole_N = mkN "petiole" "petioles" ;
+lin petiolule_N = mkN "petiolule" "petiolules" ;
+lin petit_bourgeois_N = mkN "petit bourgeois" "petit bourgeoes" ;
+lin petite_A = mkAMost "petite" "petitely" ;
+lin petite_N = mkN "petite" "petites" ;
+lin petition_N = mkN "petition" "petitions" ;
+lin petition_V = mkV "petition" "petitioned" "petitioned" ;
+lin petitionary_A = mkAMost "petitionary" "petitionarily" ;
+lin petitioner_N = mkN "petitioner" "petitioners" ;
+lin petrel_N = mkN "petrel" "petrels" ;
+lin petrifaction_N = mkN "petrifaction" "petrifactions" ;
+lin petrify_V = mkV "petrify" "petrified" "petrified" ;
+lin petrissage_N = mkN "petrissage" "petrissages" ;
+lin petro_chemical_N = mkN "petro-chemical" "petro-chemicals" ;
+lin petrochemical_N = mkN "petrochemical" "petrochemicals" ;
+lin petroglyph_N = mkN "petroglyph" "petroglyphs" ;
+lin petrol_N = mkN "petrol" "petrols" ;
+lin petrolatum_N = mkN "petrolatum" "petrolatums" ;
+lin petroleum_N = mkN "petroleum" "petroleums" ;
+lin petrology_N = mkN "petrology" "petrologies" ;
+lin petrous_A = mkAMost "petrous" "petrously" ;
+lin petter_N = mkN "petter" "petters" ;
+lin petticoat_N = mkN "petticoat" "petticoats" ;
+lin petticoated_A = mkAMost "petticoated" "petticoatedly" ;
+lin pettifogging_A = mkAMost "pettifogging" "pettifoggingly" ;
+lin pettiness_N = mkN "pettiness" "pettinesses" ;
+lin pettish_A = mkAMost "pettish" "pettishly" ;
+lin pettishness_N = mkN "pettishness" "pettishnesses" ;
+lin petty_A = mkA "petty" "pettier" "pettiest" "pettily" ;
+lin petulance_N = mkN "petulance" "petulances" ;
+lin petulant_A = mkAMost "petulant" "petulantly" ;
+lin petunia_N = mkN "petunia" "petunias" ;
+lin pew_N = mkN "pew" "pews" ;
+lin pew_opener_N = mkN "pew-opener" "pew-openers" ;
+lin pewee_N = mkN "pewee" "pewees" ;
+lin pewit_N = mkN "pewit" "pewits" ;
+lin pewter_N = mkN "pewter" "pewters" ;
+lin peyote_N = mkN "peyote" "peyotes" ;
+lin pfannkuchen_N = mkN "pfannkuchen" "pfannkuchens" ;
+lin pfennig_N = mkN "pfennig" "pfennigs" ;
+lin phacoemulsification_N = mkN "phacoemulsification" "phacoemulsifications" ;
+lin phaeton_N = mkN "phaeton" "phaetons" ;
+lin phagocyte_N = mkN "phagocyte" "phagocytes" ;
+lin phagocytic_A = mkAMost "phagocytic" "phagocyticly" ;
+lin phagocytosis_N = mkN "phagocytosis" "phagocytosises" ;
+lin phaius_N = mkN "phaius" "phaiuses" ;
+lin phalangeal_A = mkAMost "phalangeal" "phalangeally" ;
+lin phalanger_N = mkN "phalanger" "phalangers" ;
+lin phalangitis_N = mkN "phalangitis" "phalangitises" ;
+lin phalanx_N = mkN "phalanx" "phalanxes" ;
+lin phalarope_N = mkN "phalarope" "phalaropes" ;
+lin phallic_A = mkAMost "phallic" "phallicly" ;
+lin phalloplasty_N = mkN "phalloplasty" "phalloplasties" ;
+lin phallus_N = mkN "phallus" "phalluses" ;
+lin phalsa_N = mkN "phalsa" "phalsas" ;
+lin phaneromania_N = mkN "phaneromania" "phaneromanias" ;
+lin phantasm_N = mkN "phantasm" "phantasms" ;
+lin phantasmagoria_N = mkN "phantasmagoria" "phantasmagorias" ;
+lin phantasmagoric_A = mkAMost "phantasmagoric" "phantasmagoricly" ;
+lin phantasmal_A = mkAMost "phantasmal" "phantasmally" ;
+lin phantasy_N = mkN "phantasy" "phantasies" ;
+lin phantom_A = mkAMost "phantom" "phantomly" ;
+lin phantom_N = mkN "phantom" "phantoms" ;
+lin pharaoh_N = mkN "pharaoh" "pharaohs" ;
+lin pharisaic_A = mkAMost "pharisaic" "pharisaicly" ;
+lin pharisaical_A = mkAMost "pharisaical" "pharisaically" ;
+lin pharisee_N = mkN "pharisee" "pharisees" ;
+lin pharmaceutical_A = mkAMost "pharmaceutical" "pharmaceutically" ;
+lin pharmaceutical_N = mkN "pharmaceutical" "pharmaceuticals" ;
+lin pharmacist_N = mkN "pharmacist" "pharmacists" ;
+lin pharmacogenetics_N = mkN "pharmacogenetics" "pharmacogeneticses" ;
+lin pharmacokinetics_N = mkN "pharmacokinetics" "pharmacokineticses" ;
+lin pharmacological_A = mkAMost "pharmacological" "pharmacologically" ;
+lin pharmacologist_N = mkN "pharmacologist" "pharmacologists" ;
+lin pharmacology_N = mkN "pharmacology" "pharmacologies" ;
+lin pharmacopoeia_N = mkN "pharmacopoeia" "pharmacopoeias" ;
+lin pharmacy_N = mkN "pharmacy" "pharmacies" ;
+lin pharos_N = mkN "pharos" "IRREG" ;
+lin pharyngeal_A = mkAMost "pharyngeal" "pharyngeally" ;
+lin pharyngitis_N = mkN "pharyngitis" "pharyngitises" ;
+lin pharynx_N = mkN "pharynx" "pharynxes" ;
+lin phase_N = mkN "phase" "phases" ;
+lin phase_V = mkV "phase" "phased" "phased" ;
+lin phasianid_N = mkN "phasianid" "phasianids" ;
+lin phasmid_N = mkN "phasmid" "phasmids" ;
+lin phd_N = mkN "phd" "phds" ;
+lin pheasant_N = mkN "pheasant" "pheasants" ;
+lin phellem_N = mkN "phellem" "phellems" ;
+lin phenacomys_N = mkN "phenacomys" "phenacomyses" ;
+lin phenazopyridine_N = mkN "phenazopyridine" "phenazopyridines" ;
+lin phencyclidine_N = mkN "phencyclidine" "phencyclidines" ;
+lin phenelzine_N = mkN "phenelzine" "phenelzines" ;
+lin pheniramine_N = mkN "pheniramine" "pheniramines" ;
+lin phenobarbitone_N = mkN "phenobarbitone" "phenobarbitones" ;
+lin phenol_N = mkN "phenol" "phenols" ;
+lin phenolphthalein_N = mkN "phenolphthalein" "phenolphthaleins" ;
+lin phenomenal_A = mkAMost "phenomenal" "phenomenally" ;
+lin phenomenology_N = mkN "phenomenology" "phenomenologies" ;
+lin phenomenon_N = mkN "phenomenon" "phenomena" ;
+lin phenothiazine_N = mkN "phenothiazine" "phenothiazines" ;
+lin phenotype_N = mkN "phenotype" "phenotypes" ;
+lin phenotypical_A = mkAMost "phenotypical" "phenotypically" ;
+lin phensuximide_N = mkN "phensuximide" "phensuximides" ;
+lin phentolamine_N = mkN "phentolamine" "phentolamines" ;
+lin phenylalanine_N = mkN "phenylalanine" "phenylalanines" ;
+lin phenylbutazone_N = mkN "phenylbutazone" "phenylbutazones" ;
+lin phenylephrine_N = mkN "phenylephrine" "phenylephrines" ;
+lin phenylketonuria_N = mkN "phenylketonuria" "phenylketonurias" ;
+lin phenylpropanolamine_N = mkN "phenylpropanolamine" "phenylpropanolamines" ;
+lin phenyltoloxamine_N = mkN "phenyltoloxamine" "phenyltoloxamines" ;
+lin pheochromocytoma_N = mkN "pheochromocytoma" "pheochromocytomas" ;
+lin pheromone_N = mkN "pheromone" "pheromones" ;
+lin phi_N = mkN "phi" "phis" ;
+lin phial_N = mkN "phial" "phials" ;
+lin philadelphus_N = mkN "philadelphus" "philadelphuses" ;
+lin philander_V = mkV "philander" "philandered" "philandered" ;
+lin philanderer_N = mkN "philanderer" "philanderers" ;
+lin philanthropic_A = mkAMost "philanthropic" "philanthropicly" ;
+lin philanthropically_Adv = mkAdv "philanthropically" ;
+lin philanthropist_N = mkN "philanthropist" "philanthropists" ;
+lin philanthropy_N = mkN "philanthropy" "philanthropies" ;
+lin philatelic_A = mkAMost "philatelic" "philatelicly" ;
+lin philatelically_Adv = mkAdv "philatelically" ;
+lin philatelist_N = mkN "philatelist" "philatelists" ;
+lin philately_N = mkN "philately" "philatelies" ;
+lin philharmonic_A = mkAMost "philharmonic" "philharmonicly" ;
+lin philhellene_A = mkAMost "philhellene" "philhellenely" ;
+lin philhellene_N = mkN "philhellene" "philhellenes" ;
+lin philhellenic_A = mkAMost "philhellenic" "philhellenicly" ;
+lin philhellenism_N = mkN "philhellenism" "philhellenisms" ;
+lin philistine_N = mkN "philistine" "philistines" ;
+lin philistinism_N = mkN "philistinism" "philistinisms" ;
+lin phillipsite_N = mkN "phillipsite" "phillipsites" ;
+lin philodendron_N = mkN "philodendron" "philodendrons" ;
+lin philogyny_N = mkN "philogyny" "philogynies" ;
+lin philological_A = mkAMost "philological" "philologically" ;
+lin philologist_N = mkN "philologist" "philologists" ;
+lin philology_N = mkN "philology" "philologies" ;
+lin philomath_N = mkN "philomath" "philomaths" ;
+lin philosopher_N = mkN "philosopher" "philosophers" ;
+lin philosophic_A = mkAMost "philosophic" "philosophicly" ;
+lin philosophical_A = mkAMost "philosophical" "philosophically" ;
+lin philosophize_V = mkV "philosophize" "philosophized" "philosophized" ;
+lin philosophizer_N = mkN "philosophizer" "philosophizers" ;
+lin philosophizing_N = mkN "philosophizing" "philosophizings" ;
+lin philosophy_N = mkN "philosophy" "philosophies" ;
+lin philter_N = mkN "philter" "philters" ;
+lin philtre_N = mkN "philtre" "philtres" ;
+lin phimosis_N = mkN "phimosis" "phimosises" ;
+lin phlebectomy_N = mkN "phlebectomy" "phlebectomies" ;
+lin phlebitis_N = mkN "phlebitis" "phlebitises" ;
+lin phlebothrombosis_N = mkN "phlebothrombosis" "phlebothrombosises" ;
+lin phlebotomist_N = mkN "phlebotomist" "phlebotomists" ;
+lin phlegm_N = mkN "phlegm" "phlegms" ;
+lin phlegmatic_A = mkAMost "phlegmatic" "phlegmaticly" ;
+lin phlegmatically_Adv = mkAdv "phlegmatically" ;
+lin phlegmy_A = mkA "phlegmy" "phlegmier" "phlegmiest" "phlegmily" ;
+lin phloem_N = mkN "phloem" "phloems" ;
+lin phlogiston_N = mkN "phlogiston" "phlogistons" ;
+lin phlogopite_N = mkN "phlogopite" "phlogopites" ;
+lin phlomis_N = mkN "phlomis" "phlomises" ;
+lin phlox_N = mkN "phlox" "phloxes" ;
+lin phobia_N = mkN "phobia" "phobias" ;
+lin phobic_A = mkAMost "phobic" "phobicly" ;
+lin phobophobia_N = mkN "phobophobia" "phobophobias" ;
+lin phocine_A = mkAMost "phocine" "phocinely" ;
+lin phocomelia_N = mkN "phocomelia" "phocomelias" ;
+lin phoebe_N = mkN "phoebe" "phoebes" ;
+lin phoenicophorium_N = mkN "phoenicophorium" "phoenicophoriums" ;
+lin phoenix_N = mkN "phoenix" "phoenixes" ;
+lin phon_N = mkN "phon" "phons" ;
+lin phone_N = mkN "phone" "phones" ;
+lin phone_V = mkV "phone" "phoned" "phoned" ;
+lin phone_in_N = mkN "phone-in" "phone-ins" ;
+lin phonebook_N = mkN "phonebook" "phonebooks" ;
+lin phonebooth_N = mkN "phonebooth" "phonebooths" ;
+lin phonecall_N = mkN "phonecall" "phonecalls" ;
+lin phoneme_N = mkN "phoneme" "phonemes" ;
+lin phonemic_A = mkAMost "phonemic" "phonemicly" ;
+lin phonemic_Adv = mkAdv "phonemic" ;
+lin phonemics_N = mkN "phonemics" "phonemics" ;
+lin phonetic_A = mkAMost "phonetic" "phoneticly" ;
+lin phonetically_Adv = mkAdv "phonetically" ;
+lin phonetician_N = mkN "phonetician" "phoneticians" ;
+lin phonetics_N = mkN "phonetics" "phonetics" ;
+lin phoney_A = mkAMost "phoney" "phoneily" ;
+lin phoney_N = mkN "phoney" "phoneys" ;
+lin phonic_A = mkAMost "phonic" "phonicly" ;
+lin phonics_N = mkN "phonics" "phonics" ;
+lin phonogram_N = mkN "phonogram" "phonograms" ;
+lin phonogramic_A = mkAMost "phonogramic" "phonogramicly" ;
+lin phonograph_N = mkN "phonograph" "phonographs" ;
+lin phonological_A = mkAMost "phonological" "phonologically" ;
+lin phonologist_N = mkN "phonologist" "phonologists" ;
+lin phonology_N = mkN "phonology" "phonologies" ;
+lin phonophobia_N = mkN "phonophobia" "phonophobias" ;
+lin phony_A = mkAMost "phony" "phonily" ;
+lin phony_N = mkN "phony" "phonies" ;
+lin phoronid_N = mkN "phoronid" "phoronids" ;
+lin phosgene_N = mkN "phosgene" "phosgenes" ;
+lin phosphatase_N = mkN "phosphatase" "phosphatases" ;
+lin phosphate_N = mkN "phosphate" "phosphates" ;
+lin phosphine_N = mkN "phosphine" "phosphines" ;
+lin phosphocreatine_N = mkN "phosphocreatine" "phosphocreatines" ;
+lin phospholipid_N = mkN "phospholipid" "phospholipids" ;
+lin phosphoprotein_N = mkN "phosphoprotein" "phosphoproteins" ;
+lin phosphor_N = mkN "phosphor" "phosphors" ;
+lin phosphorescence_N = mkN "phosphorescence" "phosphorescences" ;
+lin phosphorescent_A = mkAMost "phosphorescent" "phosphorescently" ;
+lin phosphoric_A = mkAMost "phosphoric" "phosphoricly" ;
+lin phosphorous_A = mkAMost "phosphorous" "phosphorously" ;
+lin phosphorus_N = mkN "phosphorus" "phosphoruses" ;
+lin phot_N = mkN "phot" "phots" ;
+lin photalgia_N = mkN "photalgia" "photalgias" ;
+lin photic_A = mkAMost "photic" "photicly" ;
+lin photo_N = mkN "photo" "photos" ;
+lin photocathode_N = mkN "photocathode" "photocathodes" ;
+lin photochemical_A = mkAMost "photochemical" "photochemically" ;
+lin photochemistry_N = mkN "photochemistry" "photochemistries" ;
+lin photocoagulation_N = mkN "photocoagulation" "photocoagulations" ;
+lin photocoagulator_N = mkN "photocoagulator" "photocoagulators" ;
+lin photoconductive_A = mkAMost "photoconductive" "photoconductively" ;
+lin photoconductivity_N = mkN "photoconductivity" "photoconductivities" ;
+lin photocopier_N = mkN "photocopier" "photocopiers" ;
+lin photocopy_N = mkN "photocopy" "photocopies" ;
+lin photocopy_V = mkV "photocopy" "photocopied" "photocopied" ;
+lin photoelectric_A = mkAMost "photoelectric" "photoelectricly" ;
+lin photoelectrically_Adv = mkAdv "photoelectrically" ;
+lin photoelectricity_N = mkN "photoelectricity" "photoelectricities" ;
+lin photoelectron_N = mkN "photoelectron" "photoelectrons" ;
+lin photoemission_N = mkN "photoemission" "photoemissions" ;
+lin photoemissive_A = mkAMost "photoemissive" "photoemissively" ;
+lin photoflash_N = mkN "photoflash" "photoflashes" ;
+lin photogenic_A = mkAMost "photogenic" "photogenicly" ;
+lin photograph_N = mkN "photograph" "photographs" ;
+lin photograph_V = mkV "photograph" "photographed" "photographed" ;
+lin photographer_N = mkN "photographer" "photographers" ;
+lin photographic_A = mkAMost "photographic" "photographicly" ;
+lin photographically_Adv = mkAdv "photographically" ;
+lin photography_N = mkN "photography" "photographies" ;
+lin photogravure_N = mkN "photogravure" "photogravures" ;
+lin photojournalism_N = mkN "photojournalism" "photojournalisms" ;
+lin photojournalist_N = mkN "photojournalist" "photojournalists" ;
+lin photolithograph_N = mkN "photolithograph" "photolithographs" ;
+lin photolithography_N = mkN "photolithography" "photolithographies" ;
+lin photomechanical_A = mkAMost "photomechanical" "photomechanically" ;
+lin photomechanics_N = mkN "photomechanics" "photomechanicses" ;
+lin photometer_N = mkN "photometer" "photometers" ;
+lin photometric_A = mkAMost "photometric" "photometricly" ;
+lin photometrically_Adv = mkAdv "photometrically" ;
+lin photometrist_N = mkN "photometrist" "photometrists" ;
+lin photometry_N = mkN "photometry" "photometries" ;
+lin photomicrograph_N = mkN "photomicrograph" "photomicrographs" ;
+lin photomontage_N = mkN "photomontage" "photomontages" ;
+lin photon_N = mkN "photon" "photons" ;
+lin photophobia_N = mkN "photophobia" "photophobias" ;
+lin photopigment_N = mkN "photopigment" "photopigments" ;
+lin photoretinitis_N = mkN "photoretinitis" "photoretinitises" ;
+lin photosensitivity_N = mkN "photosensitivity" "photosensitivities" ;
+lin photosensitize_V = mkV "photosensitize" "photosensitized" "photosensitized" ;
+lin photosphere_N = mkN "photosphere" "photospheres" ;
+lin photostat_N = mkN "photostat" "photostats" ;
+lin photostat_V = mkV "photostat" "photostatted" "photostatted" ;
+lin photosynthesis_N = mkN "photosynthesis" "photosynthesises" ;
+lin photosynthetic_A = mkAMost "photosynthetic" "photosyntheticly" ;
+lin phototherapy_N = mkN "phototherapy" "phototherapies" ;
+lin phototropism_N = mkN "phototropism" "phototropisms" ;
+lin photovoltaic_A = mkAMost "photovoltaic" "photovoltaicly" ;
+lin phragmocone_N = mkN "phragmocone" "phragmocones" ;
+lin phrasal_A = mkAMost "phrasal" "phrasally" ;
+lin phrase_N = mkN "phrase" "phrases" ;
+lin phrase_V = mkV "phrase" "phrased" "phrased" ;
+lin phrase_book_N = mkN "phrase-book" "phrase-books" ;
+lin phraseology_N = mkN "phraseology" "phraseologies" ;
+lin phrasing_N = mkN "phrasing" "phrasings" ;
+lin phreatic_A = mkAMost "phreatic" "phreaticly" ;
+lin phrenetic_A = mkAMost "phrenetic" "phreneticly" ;
+lin phrenic_A = mkAMost "phrenic" "phrenicly" ;
+lin phrenological_A = mkAMost "phrenological" "phrenologically" ;
+lin phrenologist_N = mkN "phrenologist" "phrenologists" ;
+lin phrenology_N = mkN "phrenology" "phrenologies" ;
+lin phrontistery_N = mkN "phrontistery" "phrontisteries" ;
+lin phthisis_N = mkN "phthisis" "phthisises" ;
+lin phut_Adv = mkAdv "phut" ;
+lin phycobilin_N = mkN "phycobilin" "phycobilins" ;
+lin phycocyanin_N = mkN "phycocyanin" "phycocyanins" ;
+lin phycoerythrin_N = mkN "phycoerythrin" "phycoerythrins" ;
+lin phycology_N = mkN "phycology" "phycologies" ;
+lin phycomycosis_N = mkN "phycomycosis" "phycomycosises" ;
+lin phylactery_N = mkN "phylactery" "phylacteries" ;
+lin phyle_N = mkN "phyle" "phyles" ;
+lin phylliform_A = mkAMost "phylliform" "phylliformly" ;
+lin phyllo_N = mkN "phyllo" "phylloes" ;
+lin phyllode_N = mkN "phyllode" "phyllodes" ;
+lin phyllodial_A = mkAMost "phyllodial" "phyllodially" ;
+lin phylogenetic_A = mkAMost "phylogenetic" "phylogeneticly" ;
+lin phylogenetically_Adv = mkAdv "phylogenetically" ;
+lin phylum_N = mkN "phylum" "phylums" ;
+lin physa_N = mkN "physa" "physas" ;
+lin physic_N = mkN "physic" "physics" ;
+lin physical_A = mkAMost "physical" "physically" ;
+lin physician_N = mkN "physician" "physicians" ;
+lin physicist_N = mkN "physicist" "physicists" ;
+lin physicochemical_A = mkAMost "physicochemical" "physicochemically" ;
+lin physics_N = mkN "physics" "physics" ;
+lin physiognomy_N = mkN "physiognomy" "physiognomies" ;
+lin physiologic_A = mkAMost "physiologic" "physiologicly" ;
+lin physiological_A = mkAMost "physiological" "physiologically" ;
+lin physiologist_N = mkN "physiologist" "physiologists" ;
+lin physiology_N = mkN "physiology" "physiologies" ;
+lin physiotherapeutic_A = mkAMost "physiotherapeutic" "physiotherapeuticly" ;
+lin physiotherapist_N = mkN "physiotherapist" "physiotherapists" ;
+lin physiotherapy_N = mkN "physiotherapy" "physiotherapies" ;
+lin physique_N = mkN "physique" "physiques" ;
+lin physostegia_N = mkN "physostegia" "physostegias" ;
+lin physostigmine_N = mkN "physostigmine" "physostigmines" ;
+lin phytelephas_N = mkN "phytelephas" "phytelephases" ;
+lin phytochemical_N = mkN "phytochemical" "phytochemicals" ;
+lin phytochemist_N = mkN "phytochemist" "phytochemists" ;
+lin phytochemistry_N = mkN "phytochemistry" "phytochemistries" ;
+lin phytohormone_N = mkN "phytohormone" "phytohormones" ;
+lin phytoplankton_N = mkN "phytoplankton" "phytoplanktons" ;
+lin phytotherapy_N = mkN "phytotherapy" "phytotherapies" ;
+lin pi_N = mkN "pi" "pis" ;
+lin pia_N = mkN "pia" "pias" ;
+lin piaffe_N = mkN "piaffe" "piaffes" ;
+lin pianism_N = mkN "pianism" "pianisms" ;
+lin pianissimo_A = mkAMost "pianissimo" "pianissimoly" ;
+lin pianissimo_Adv = mkAdv "pianissimo" ;
+lin pianist_N = mkN "pianist" "pianists" ;
+lin pianistic_A = mkAMost "pianistic" "pianisticly" ;
+lin piano_A = mkAMost "piano" "pianoly" ;
+lin piano_Adv = mkAdv "piano" ;
+lin piano_N = mkN "piano" "pianos" ;
+lin pianoforte_N = mkN "pianoforte" "pianofortes" ;
+lin pianola_N = mkN "pianola" "pianolas" ;
+lin piaster_N = mkN "piaster" "piasters" ;
+lin piastre_N = mkN "piastre" "piastres" ;
+lin piazza_N = mkN "piazza" "piazzas" ;
+lin pibroch_N = mkN "pibroch" "pibrochs" ;
+lin pica_N = mkN "pica" "pica" ;
+lin picador_N = mkN "picador" "picadors" ;
+lin picaresque_A = mkAMost "picaresque" "picaresquely" ;
+lin piccalilli_N = mkN "piccalilli" "piccalillis" ;
+lin piccaninny_N = mkN "piccaninny" "piccaninnies" ;
+lin piccolo_N = mkN "piccolo" "piccolos" ;
+lin pichi_N = mkN "pichi" "pichis" ;
+lin pichiciago_N = mkN "pichiciago" "pichiciagoes" ;
+lin pick_N = mkN "pick" "picks" ;
+lin pick_V = mkV "pick" "picked" "picked" ;
+lin pick_me_up_N = mkN "pick-me-up" "pick-me-ups" ;
+lin pick_up_N = mkN "pick-up" "pick-ups" ;
+lin pickaback_Adv = mkAdv "pickaback" ;
+lin pickaninny_N = mkN "pickaninny" "pickaninnies" ;
+lin pickaxe_N = mkN "pickaxe" "pickaxes" ;
+lin pickelhaube_N = mkN "pickelhaube" "pickelhaubes" ;
+lin picker_N = mkN "picker" "pickers" ;
+lin pickerel_N = mkN "pickerel" "pickerel" ;
+lin pickerelweed_N = mkN "pickerelweed" "pickerelweeds" ;
+lin picket_N = mkN "picket" "pickets" ;
+lin picket_V = mkV "picket" "picketed" "picketed" ;
+lin picking_N = mkN "picking" "pickings" ;
+lin pickings_N = mkN "pickings" "pickingses" ;
+lin pickle_N = mkN "pickle" "pickles" ;
+lin pickle_V = mkV "pickle" "pickled" "pickled" ;
+lin pickpocket_N = mkN "pickpocket" "pickpockets" ;
+lin pickup_N = mkN "pickup" "pickups" ;
+lin picnic_N = mkN "picnic" "picnics" ;
+lin picnic_V = mkV "picnic" "picnicked" "picnicked" ;
+lin picnicker_N = mkN "picnicker" "picnickers" ;
+lin picofarad_N = mkN "picofarad" "picofarads" ;
+lin picometer_N = mkN "picometer" "picometers" ;
+lin picornavirus_N = mkN "picornavirus" "picornaviruses" ;
+lin picosecond_N = mkN "picosecond" "picoseconds" ;
+lin picot_N = mkN "picot" "picots" ;
+lin picovolt_N = mkN "picovolt" "picovolts" ;
+lin picric_A = mkAMost "picric" "picricly" ;
+lin pictograph_N = mkN "pictograph" "pictographs" ;
+lin pictographic_A = mkAMost "pictographic" "pictographicly" ;
+lin pictorial_A = mkAMost "pictorial" "pictorially" ;
+lin pictorial_N = mkN "pictorial" "pictorials" ;
+lin picture_N = mkN "picture" "pictures" ;
+lin picture_V = mkV "picture" "pictured" "pictured" ;
+lin picture_book_N = mkN "picture-book" "picture-books" ;
+lin picture_card_N = mkN "picture-card" "picture-cards" ;
+lin picture_gallery_N = mkN "picture-gallery" "picture-galleries" ;
+lin picturesque_A = mkAMost "picturesque" "picturesquely" ;
+lin picturesqueness_N = mkN "picturesqueness" "picturesquenesses" ;
+lin picturing_N = mkN "picturing" "picturings" ;
+lin picul_N = mkN "picul" "piculs" ;
+lin piculet_N = mkN "piculet" "piculets" ;
+lin piddle_N = mkN "piddle" "piddles" ;
+lin piddle_V = mkV "piddle" "piddled" "piddled" ;
+lin piddock_N = mkN "piddock" "piddocks" ;
+lin pidgin_N = mkN "pidgin" "pidgins" ;
+lin pie_N = mkN "pie" "pies" ;
+lin pie_crust_N = mkN "pie-crust" "pie-crusts" ;
+lin piebald_A = mkAMost "piebald" "piebaldly" ;
+lin piece_N = mkN "piece" "pieces" ;
+lin piece_V = mkV "piece" "pieced" "pieced" ;
+lin piecemeal_A = mkAMost "piecemeal" "piecemeally" ;
+lin piecemeal_Adv = mkAdv "piecemeal" ;
+lin piecework_N = mkN "piecework" "pieceworks" ;
+lin pied_A = mkAMost "pied" "piedly" ;
+lin pied_à_terre_N = mkN "pied-à-terre" "pied-à-terres" ;
+lin piedmont_N = mkN "piedmont" "piedmonts" ;
+lin pieplant_N = mkN "pieplant" "pieplants" ;
+lin pier_N = mkN "pier" "piers" ;
+lin pier_glass_N = mkN "pier-glass" "pier-glasses" ;
+lin pierce_V = mkV "pierce" "pierced" "pierced" ;
+lin piercingly_Adv = mkAdv "piercingly" ;
+lin pierid_N = mkN "pierid" "pierids" ;
+lin pierrot_N = mkN "pierrot" "pierrots" ;
+lin pietistic_A = mkAMost "pietistic" "pietisticly" ;
+lin piety_N = mkN "piety" "pieties" ;
+lin pietà_N = mkN "pietà" "pietàs" ;
+lin piezoelectric_A = mkAMost "piezoelectric" "piezoelectricly" ;
+lin piezoelectricity_N = mkN "piezoelectricity" "piezoelectricities" ;
+lin piezometer_N = mkN "piezometer" "piezometers" ;
+lin piffle_N = mkN "piffle" "piffles" ;
+lin piffle_V = mkV "piffle" "piffled" "piffled" ;
+lin pig_N = mkN "pig" "pigs" ;
+lin pig_V = mkV "pig" "pigged" "pigged" ;
+lin pig_headed_A = mkAMost "pig-headed" "pig-headedly" ;
+lin pig_headedness_N = mkN "pig-headedness" "pig-headednesses" ;
+lin pig_iron_N = mkN "pig-iron" "pig-irons" ;
+lin pig_sticking_N = mkN "pig-sticking" "pig-stickings" ;
+lin pigboat_N = mkN "pigboat" "pigboats" ;
+lin pigeon_N = mkN "pigeon" "pigeons" ;
+lin pigeon_breasted_A = mkAMost "pigeon-breasted" "pigeon-breastedly" ;
+lin pigeon_toed_A = mkAMost "pigeon-toed" "pigeon-toedly" ;
+lin pigeonhole_N = mkN "pigeonhole" "pigeonholes" ;
+lin pigeonhole_V = mkV "pigeonhole" "pigeonholed" "pigeonholed" ;
+lin pigfish_N = mkN "pigfish" "pigfishes" ;
+lin piggery_N = mkN "piggery" "piggeries" ;
+lin piggish_A = mkAMost "piggish" "piggishly" ;
+lin piggishness_N = mkN "piggishness" "piggishnesses" ;
+lin piggy_A = mkA "piggy" "piggier" "piggiest" "piggily" ;
+lin piggy_N = mkN "piggy" "piggies" ;
+lin piggyback_Adv = mkAdv "piggyback" ;
+lin piggyback_N = mkN "piggyback" "piggybacks" ;
+lin piggyback_V = mkV "piggyback" "piggybacked" "piggybacked" ;
+lin piglet_N = mkN "piglet" "piglets" ;
+lin pigment_N = mkN "pigment" "pigments" ;
+lin pigmentation_N = mkN "pigmentation" "pigmentations" ;
+lin pigmy_N = mkN "pigmy" "pigmies" ;
+lin pignut_N = mkN "pignut" "pignuts" ;
+lin pigskin_N = mkN "pigskin" "pigskins" ;
+lin pigsticking_N = mkN "pigsticking" "pigstickings" ;
+lin pigsty_N = mkN "pigsty" "pigsties" ;
+lin pigswill_N = mkN "pigswill" "pigswills" ;
+lin pigtail_N = mkN "pigtail" "pigtails" ;
+lin pigwash_N = mkN "pigwash" "pigwashes" ;
+lin pigweed_N = mkN "pigweed" "pigweeds" ;
+lin pika_N = mkN "pika" "pikas" ;
+lin pike_N = mkN "pike" "pike" ;
+lin pikeblenny_N = mkN "pikeblenny" "pikeblennies" ;
+lin pikestaff_N = mkN "pikestaff" "pikestaffs" ;
+lin pilaf_N = mkN "pilaf" "pilafs" ;
+lin pilaff_N = mkN "pilaff" "pilaffs" ;
+lin pilar_A = mkAMost "pilar" "pilarly" ;
+lin pilaster_N = mkN "pilaster" "pilasters" ;
+lin pilau_N = mkN "pilau" "pilaus" ;
+lin pilchard_N = mkN "pilchard" "pilchards" ;
+lin pile_N = mkN "pile" "piles" ;
+lin pile_V = mkV "pile" "piled" "piled" ;
+lin pile_driver_N = mkN "pile-driver" "pile-drivers" ;
+lin pile_dwelling_N = mkN "pile-dwelling" "pile-dwellings" ;
+lin pile_up_N = mkN "pile-up" "pile-ups" ;
+lin piles_N = mkN "piles" "piles" ;
+lin pileup_N = mkN "pileup" "pileups" ;
+lin pilfer_V = mkV "pilfer" "pilfered" "pilfered" ;
+lin pilferage_N = mkN "pilferage" "pilferages" ;
+lin pilferer_N = mkN "pilferer" "pilferers" ;
+lin pilgrim_N = mkN "pilgrim" "pilgrims" ;
+lin pilgrimage_N = mkN "pilgrimage" "pilgrimages" ;
+lin pill_N = mkN "pill" "pills" ;
+lin pillage_N = mkN "pillage" "pillages" ;
+lin pillage_V = mkV "pillage" "pillaged" "pillaged" ;
+lin pillager_N = mkN "pillager" "pillagers" ;
+lin pillar_N = mkN "pillar" "pillars" ;
+lin pillar_box_N = mkN "pillar-box" "pillar-boxes" ;
+lin pillared_A = mkAMost "pillared" "pillaredly" ;
+lin pillbox_N = mkN "pillbox" "pillboxes" ;
+lin pillion_N = mkN "pillion" "pillions" ;
+lin pillory_N = mkN "pillory" "pillories" ;
+lin pillory_V = mkV "pillory" "pilloried" "pilloried" ;
+lin pillow_N = mkN "pillow" "pillows" ;
+lin pillow_V = mkV "pillow" "pillowed" "pillowed" ;
+lin pillow_fight_N = mkN "pillow-fight" "pillow-fights" ;
+lin pillowcase_N = mkN "pillowcase" "pillowcases" ;
+lin pillowslip_N = mkN "pillowslip" "pillowslips" ;
+lin pillwort_N = mkN "pillwort" "pillworts" ;
+lin pilocarpine_N = mkN "pilocarpine" "pilocarpines" ;
+lin pilosebaceous_A = mkAMost "pilosebaceous" "pilosebaceously" ;
+lin pilot_N = mkN "pilot" "pilots" ;
+lin pilot_V = mkV "pilot" "piloted" "piloted" ;
+lin pilot_boat_N = mkN "pilot-boat" "pilot-boats" ;
+lin pilot_burner_N = mkN "pilot-burner" "pilot-burners" ;
+lin pilot_cloth_N = mkN "pilot-cloth" "pilot-cloths" ;
+lin pilot_engine_N = mkN "pilot-engine" "pilot-engines" ;
+lin pilot_fish_N = mkN "pilot-fish" "pilot-fish" ;
+lin pilot_light_N = mkN "pilot-light" "pilot-lights" ;
+lin pilotfish_N = mkN "pilotfish" "pilotfishes" ;
+lin pilothouse_N = mkN "pilothouse" "pilothouses" ;
+lin piloting_N = mkN "piloting" "pilotings" ;
+lin pilotless_A = mkAMost "pilotless" "pilotlessly" ;
+lin pilous_A = mkAMost "pilous" "pilously" ;
+lin pilus_N = mkN "pilus" "piluses" ;
+lin pimento_N = mkN "pimento" "pimentos" ;
+lin pimozide_N = mkN "pimozide" "pimozides" ;
+lin pimp_N = mkN "pimp" "pimps" ;
+lin pimp_V = mkV "pimp" "pimped" "pimped" ;
+lin pimpernel_N = mkN "pimpernel" "pimpernels" ;
+lin pimple_N = mkN "pimple" "pimples" ;
+lin pimpled_A = mkAMost "pimpled" "pimpledly" ;
+lin pimply_A = mkA "pimply" "pimplier" "pimpliest" "pimplily" ;
+lin pin_N = mkN "pin" "pins" ;
+lin pin_V = mkV "pin" "pinned" "pinned" ;
+lin pin_money_N = mkN "pin-money" "pin-moneys" ;
+lin pin_point_V = mkV "pin-point" "pin-pointed" "pin-pointed" ;
+lin pin_table_N = mkN "pin-table" "pin-tables" ;
+lin pin_up_N = mkN "pin-up" "pin-ups" ;
+lin pinafore_N = mkN "pinafore" "pinafores" ;
+lin pinata_N = mkN "pinata" "pinatas" ;
+lin pinball_N = mkN "pinball" "pinballs" ;
+lin pince_nez_N = mkN "pince-nez" "pince-nez" ;
+lin pincer_N = mkN "pincer" "pincers" ;
+lin pinch_N = mkN "pinch" "pinches" ;
+lin pinch_V = mkV "pinch" "pinched" "pinched" ;
+lin pinchbeck_A = mkAMost "pinchbeck" "pinchbeckly" ;
+lin pinchbeck_N = mkN "pinchbeck" "pinchbecks" ;
+lin pinche_N = mkN "pinche" "pinches" ;
+lin pinchgut_N = mkN "pinchgut" "pinchguts" ;
+lin pincushion_N = mkN "pincushion" "pincushions" ;
+lin pindolol_N = mkN "pindolol" "pindolols" ;
+lin pine_N = mkN "pine" "pines" ;
+lin pine_V = mkV "pine" "pined" "pined" ;
+lin pineal_A = mkAMost "pineal" "pineally" ;
+lin pinealoma_N = mkN "pinealoma" "pinealomas" ;
+lin pineapple_N = mkN "pineapple" "pineapples" ;
+lin pinecone_N = mkN "pinecone" "pinecones" ;
+lin pinesap_N = mkN "pinesap" "pinesaps" ;
+lin pinetum_N = mkN "pinetum" "pinetums" ;
+lin pinfish_N = mkN "pinfish" "pinfishes" ;
+lin pinfold_N = mkN "pinfold" "pinfolds" ;
+lin ping_N = mkN "ping" "pings" ;
+lin ping_V = mkV "ping" "pinged" "pinged" ;
+lin pinger_N = mkN "pinger" "pingers" ;
+lin pingpong_N = mkN "pingpong" "pingpongs" ;
+lin pinguecula_N = mkN "pinguecula" "pingueculas" ;
+lin pinhead_N = mkN "pinhead" "pinheads" ;
+lin pinhole_N = mkN "pinhole" "pinholes" ;
+lin pining_N = mkN "pining" "pinings" ;
+lin pinion_N = mkN "pinion" "pinions" ;
+lin pinion_V = mkV "pinion" "pinioned" "pinioned" ;
+lin pinite_N = mkN "pinite" "pinites" ;
+lin pink_A = mkA "pink" "pinker" "pinkest" "pinkly" ;
+lin pink_N = mkN "pink" "pinks" ;
+lin pink_V = mkV "pink" "pinked" "pinked" ;
+lin pinkish_A = mkAMost "pinkish" "pinkishly" ;
+lin pinkness_N = mkN "pinkness" "pinknesses" ;
+lin pinko_N = mkN "pinko" "pinkoes" ;
+lin pinkroot_N = mkN "pinkroot" "pinkroots" ;
+lin pinna_N = mkN "pinna" "pinnas" ;
+lin pinnace_N = mkN "pinnace" "pinnaces" ;
+lin pinnacle_N = mkN "pinnacle" "pinnacles" ;
+lin pinnacle_V = mkV "pinnacle" "pinnacled" "pinnacled" ;
+lin pinnate_A = mkAMost "pinnate" "pinnately" ;
+lin pinnatifid_A = mkAMost "pinnatifid" "pinnatifidly" ;
+lin pinnatisect_A = mkAMost "pinnatisect" "pinnatisectly" ;
+lin pinner_N = mkN "pinner" "pinners" ;
+lin pinning_N = mkN "pinning" "pinnings" ;
+lin pinny_N = mkN "pinny" "pinnies" ;
+lin pinochle_N = mkN "pinochle" "pinochles" ;
+lin pinocytosis_N = mkN "pinocytosis" "pinocytosises" ;
+lin pinole_N = mkN "pinole" "pinoles" ;
+lin pinon_N = mkN "pinon" "pinons" ;
+lin pinpoint_N = mkN "pinpoint" "pinpoints" ;
+lin pinpoint_V = mkV "pinpoint" "pinpointed" "pinpointed" ;
+lin pinprick_N = mkN "pinprick" "pinpricks" ;
+lin pinscher_N = mkN "pinscher" "pinschers" ;
+lin pinstripe_A = mkAMost "pinstripe" "pinstripely" ;
+lin pinstripe_N = mkN "pinstripe" "pinstripes" ;
+lin pinstriped_A = mkAMost "pinstriped" "pinstripedly" ;
+lin pint_N = mkN "pint" "pints" ;
+lin pintail_N = mkN "pintail" "pintails" ;
+lin pintle_N = mkN "pintle" "pintles" ;
+lin pinto_N = mkN "pinto" "pintoes" ;
+lin pinwheel_N = mkN "pinwheel" "pinwheels" ;
+lin pinworm_N = mkN "pinworm" "pinworms" ;
+lin pion_N = mkN "pion" "pions" ;
+lin pioneer_N = mkN "pioneer" "pioneers" ;
+lin pioneer_V = mkV "pioneer" "pioneered" "pioneered" ;
+lin pious_A = mkAMost "pious" "piously" ;
+lin pip_N = mkN "pip" "pips" ;
+lin pip_V = mkV "pip" "pipped" "pipped" ;
+lin pipage_N = mkN "pipage" "pipages" ;
+lin pipal_N = mkN "pipal" "pipals" ;
+lin pipe_N = mkN "pipe" "pipes" ;
+lin pipe_V = mkV "pipe" "piped" "piped" ;
+lin pipe_organ_N = mkN "pipe-organ" "pipe-organs" ;
+lin pipe_rack_N = mkN "pipe-rack" "pipe-racks" ;
+lin pipeclay_N = mkN "pipeclay" "pipeclays" ;
+lin pipedream_N = mkN "pipedream" "pipedreams" ;
+lin pipefish_N = mkN "pipefish" "pipefishes" ;
+lin pipefitting_N = mkN "pipefitting" "pipefittings" ;
+lin pipeful_N = mkN "pipeful" "pipefuls" ;
+lin pipeline_N = mkN "pipeline" "pipelines" ;
+lin piper_N = mkN "piper" "pipers" ;
+lin piperacillin_N = mkN "piperacillin" "piperacillins" ;
+lin piperazine_N = mkN "piperazine" "piperazines" ;
+lin piperin_N = mkN "piperin" "piperins" ;
+lin piperocaine_N = mkN "piperocaine" "piperocaines" ;
+lin pipet_N = mkN "pipet" "pipets" ;
+lin pipette_N = mkN "pipette" "pipettes" ;
+lin pipework_N = mkN "pipework" "pipeworks" ;
+lin pipewort_N = mkN "pipewort" "pipeworts" ;
+lin piping_Adv = mkAdv "piping" ;
+lin piping_N = mkN "piping" "pipings" ;
+lin pipistrelle_N = mkN "pipistrelle" "pipistrelles" ;
+lin pipit_N = mkN "pipit" "pipits" ;
+lin pippin_N = mkN "pippin" "pippins" ;
+lin pipsissewa_N = mkN "pipsissewa" "pipsissewas" ;
+lin pipsqueak_N = mkN "pipsqueak" "pipsqueaks" ;
+lin piquancy_N = mkN "piquancy" "piquancies" ;
+lin piquant_A = mkAMost "piquant" "piquantly" ;
+lin pique_N = mkN "pique" "piques" ;
+lin pique_V = mkV "pique" "piqued" "piqued" ;
+lin piquet_N = mkN "piquet" "piquets" ;
+lin piracy_N = mkN "piracy" "piracies" ;
+lin piranha_N = mkN "piranha" "piranhas" ;
+lin pirate_N = mkN "pirate" "pirates" ;
+lin pirate_V = mkV "pirate" "pirated" "pirated" ;
+lin piratical_A = mkAMost "piratical" "piratically" ;
+lin pirogi_N = mkN "pirogi" "pirogis" ;
+lin piroplasm_N = mkN "piroplasm" "piroplasms" ;
+lin pirouette_N = mkN "pirouette" "pirouettes" ;
+lin pirouette_V = mkV "pirouette" "pirouetted" "pirouetted" ;
+lin piroxicam_N = mkN "piroxicam" "piroxicams" ;
+lin pis_aller_N = mkN "pis aller" "IRREG" ;
+lin pisanosaur_N = mkN "pisanosaur" "pisanosaurs" ;
+lin piscatorial_A = mkAMost "piscatorial" "piscatorially" ;
+lin piscine_A = mkAMost "piscine" "piscinely" ;
+lin piscivorous_A = mkAMost "piscivorous" "piscivorously" ;
+lin pisiform_N = mkN "pisiform" "pisiforms" ;
+lin piss_N = mkN "piss" "pisses" ;
+lin piss_V = mkV "piss" "pissed" "pissed" ;
+lin pisser_N = mkN "pisser" "pissers" ;
+lin pistachio_N = mkN "pistachio" "pistachios" ;
+lin piste_N = mkN "piste" "pistes" ;
+lin pistia_N = mkN "pistia" "pistias" ;
+lin pistil_N = mkN "pistil" "pistils" ;
+lin pistillate_A = mkAMost "pistillate" "pistillately" ;
+lin pistillode_N = mkN "pistillode" "pistillodes" ;
+lin pistol_N = mkN "pistol" "pistols" ;
+lin pistoleer_N = mkN "pistoleer" "pistoleers" ;
+lin piston_N = mkN "piston" "pistons" ;
+lin pit_N = mkN "pit" "pits" ;
+lin pit_V = mkV "pit" "pitted" "pitted" ;
+lin pit_a_pat_Adv = mkAdv "pit-a-pat" ;
+lin pit_prop_N = mkN "pit-prop" "pit-props" ;
+lin pita_N = mkN "pita" "pitas" ;
+lin pitahaya_N = mkN "pitahaya" "pitahayas" ;
+lin pitch_N = mkN "pitch" "pitches" ;
+lin pitch_V = mkV "pitch" "pitched" "pitched" ;
+lin pitch_black_A = mkAMost "pitch-black" "pitch-blackly" ;
+lin pitch_dark_A = mkAMost "pitch-dark" "pitch-darkly" ;
+lin pitchblende_N = mkN "pitchblende" "pitchblendes" ;
+lin pitcher_N = mkN "pitcher" "pitchers" ;
+lin pitchfork_N = mkN "pitchfork" "pitchforks" ;
+lin pitchfork_V = mkV "pitchfork" "pitchforked" "pitchforked" ;
+lin pitching_N = mkN "pitching" "pitchings" ;
+lin pitchman_N = mkN "pitchman" "pitchmen" ;
+lin pitchstone_N = mkN "pitchstone" "pitchstones" ;
+lin pitchy_A = mkA "pitchy" "pitchier" "pitchiest" "pitchily" ;
+lin piteous_A = mkAMost "piteous" "piteously" ;
+lin pitfall_N = mkN "pitfall" "pitfalls" ;
+lin pith_N = mkN "pith" "piths" ;
+lin pithead_N = mkN "pithead" "pitheads" ;
+lin pithy_A = mkA "pithy" "pithier" "pithiest" "pithily" ;
+lin pitiable_A = mkAMost "pitiable" "pitiably" ;
+lin pitiful_A = mkAMost "pitiful" "pitifully" ;
+lin pitiless_A = mkAMost "pitiless" "pitilessly" ;
+lin pitilessness_N = mkN "pitilessness" "pitilessnesses" ;
+lin pitman_N = mkN "pitman" "pitmen" ;
+lin piton_N = mkN "piton" "pitons" ;
+lin pitprop_N = mkN "pitprop" "pitprops" ;
+lin pitsaw_N = mkN "pitsaw" "pitsaws" ;
+lin pitta_N = mkN "pitta" "pittas" ;
+lin pittance_N = mkN "pittance" "pittances" ;
+lin pitter_patter_N = mkN "pitter-patter" "pitter-patters" ;
+lin pitting_N = mkN "pitting" "pittings" ;
+lin pituitary_A = mkAMost "pituitary" "pituitarily" ;
+lin pituitary_N = mkN "pituitary" "pituitaries" ;
+lin pity_N = mkN "pity" "pities" ;
+lin pity_V = mkV "pity" "pitied" "pitied" ;
+lin pitying_A = mkAMost "pitying" "pityingly" ;
+lin pityriasis_N = mkN "pityriasis" "pityriasises" ;
+lin pivot_N = mkN "pivot" "pivots" ;
+lin pivot_V = mkV "pivot" "pivoted" "pivoted" ;
+lin pivotal_A = mkAMost "pivotal" "pivotally" ;
+lin pixel_N = mkN "pixel" "pixels" ;
+lin pixie_N = mkN "pixie" "pixies" ;
+lin pixilated_A = mkAMost "pixilated" "pixilatedly" ;
+lin pixy_N = mkN "pixy" "pixies" ;
+lin pizza_N = mkN "pizza" "pizzas" ;
+lin pizzeria_N = mkN "pizzeria" "pizzerias" ;
+lin pizzicato_A = mkAMost "pizzicato" "pizzicatoly" ;
+lin pizzicato_Adv = mkAdv "pizzicato" ;
+lin pizzicato_N = mkN "pizzicato" "pizzicatoes" ;
+lin placable_A = mkAMost "placable" "placably" ;
+lin placard_N = mkN "placard" "placards" ;
+lin placard_V = mkV "placard" "placarded" "placarded" ;
+lin placate_V = mkV "placate" "placated" "placated" ;
+lin placatingly_Adv = mkAdv "placatingly" ;
+lin placation_N = mkN "placation" "placations" ;
+lin place_N = mkN "place" "places" ;
+lin place_V = mkV "place" "placed" "placed" ;
+lin place_bet_N = mkN "place-bet" "place-bets" ;
+lin place_name_N = mkN "place-name" "place-names" ;
+lin placebo_N = mkN "placebo" "placebos" ;
+lin placeholder_N = mkN "placeholder" "placeholders" ;
+lin placeman_N = mkN "placeman" "placemen" ;
+lin placement_N = mkN "placement" "placements" ;
+lin placenta_N = mkN "placenta" "placentas" ;
+lin placental_A = mkAMost "placental" "placentally" ;
+lin placental_N = mkN "placental" "placentals" ;
+lin placentation_N = mkN "placentation" "placentations" ;
+lin placer_N = mkN "placer" "placers" ;
+lin placeseeker_N = mkN "placeseeker" "placeseekers" ;
+lin placid_A = mkAMost "placid" "placidly" ;
+lin placidity_N = mkN "placidity" "placidities" ;
+lin placing_N = mkN "placing" "placings" ;
+lin placket_N = mkN "placket" "plackets" ;
+lin placoderm_N = mkN "placoderm" "placoderms" ;
+lin placoid_A = mkAMost "placoid" "placoidly" ;
+lin plage_N = mkN "plage" "IRREG" ;
+lin plagiarism_N = mkN "plagiarism" "plagiarisms" ;
+lin plagiarist_N = mkN "plagiarist" "plagiarists" ;
+lin plagiaristic_A = mkAMost "plagiaristic" "plagiaristicly" ;
+lin plagiarize_V = mkV "plagiarize" "plagiarized" "plagiarized" ;
+lin plagiocephaly_N = mkN "plagiocephaly" "plagiocephalies" ;
+lin plagioclase_N = mkN "plagioclase" "plagioclases" ;
+lin plagioclastic_A = mkAMost "plagioclastic" "plagioclasticly" ;
+lin plague_N = mkN "plague" "plagues" ;
+lin plague_V = mkV "plague" "plagued" "plagued" ;
+lin plague_spot_N = mkN "plague-spot" "plague-spots" ;
+lin plaguey_Adv = mkAdv "plaguey" ;
+lin plaguy_A = mkAMost "plaguy" "plaguily" ;
+lin plaice_N = mkN "plaice" "plaice" ;
+lin plaid_N = mkN "plaid" "plaids" ;
+lin plain_A = mkA "plain" "plainer" "plainest" "plainly" ;
+lin plain_Adv = mkAdv "plain" ;
+lin plain_N = mkN "plain" "plains" ;
+lin plain_V = mkV "plain" "plained" "plained" ;
+lin plain_spoken_A = mkAMost "plain-spoken" "plain-spokenly" ;
+lin plainclothesman_N = mkN "plainclothesman" "plainclothesmen" ;
+lin plainness_N = mkN "plainness" "plainnesses" ;
+lin plainsman_N = mkN "plainsman" "plainsmen" ;
+lin plainsong_N = mkN "plainsong" "plainsongs" ;
+lin plainspoken_A = mkAMost "plainspoken" "plainspokenly" ;
+lin plaint_N = mkN "plaint" "plaints" ;
+lin plaintiff_N = mkN "plaintiff" "plaintiffs" ;
+lin plaintive_A = mkAMost "plaintive" "plaintively" ;
+lin plaintiveness_N = mkN "plaintiveness" "plaintivenesses" ;
+lin plait_N = mkN "plait" "plaits" ;
+lin plait_V = mkV "plait" "plaited" "plaited" ;
+lin plaiter_N = mkN "plaiter" "plaiters" ;
+lin plan_N = mkN "plan" "plans" ;
+lin plan_V = mkV "plan" "planned" "planned" ;
+lin planar_A = mkAMost "planar" "planarly" ;
+lin planarian_N = mkN "planarian" "planarians" ;
+lin planate_A = mkAMost "planate" "planately" ;
+lin planation_N = mkN "planation" "planations" ;
+lin planchet_N = mkN "planchet" "planchets" ;
+lin planchette_N = mkN "planchette" "planchettes" ;
+lin plane_N = mkN "plane" "planes" ;
+lin plane_V = mkV "plane" "planed" "planed" ;
+lin plane_tree_N = mkN "plane-tree" "plane-trees" ;
+lin planet_N = mkN "planet" "planets" ;
+lin planetal_A = mkAMost "planetal" "planetally" ;
+lin planetarium_N = mkN "planetarium" "planetariums" ;
+lin planetary_A = mkAMost "planetary" "planetarily" ;
+lin planetesimal_N = mkN "planetesimal" "planetesimals" ;
+lin plangency_N = mkN "plangency" "plangencies" ;
+lin plangent_A = mkAMost "plangent" "plangently" ;
+lin plank_N = mkN "plank" "planks" ;
+lin plank_V = mkV "plank" "planked" "planked" ;
+lin plank_bed_N = mkN "plank-bed" "plank-beds" ;
+lin planking_N = mkN "planking" "plankings" ;
+lin plankton_N = mkN "plankton" "planktons" ;
+lin planktonic_A = mkAMost "planktonic" "planktonicly" ;
+lin planless_A = mkAMost "planless" "planlessly" ;
+lin planner_N = mkN "planner" "planners" ;
+lin planning_N = mkN "planning" "plannings" ;
+lin planoconcave_A = mkAMost "planoconcave" "planoconcavely" ;
+lin planoconvex_A = mkAMost "planoconvex" "planoconvexly" ;
+lin planographic_A = mkAMost "planographic" "planographicly" ;
+lin plant_N = mkN "plant" "plants" ;
+lin plant_V = mkV "plant" "planted" "planted" ;
+lin plant_louse_N = mkN "plant-louse" "plant-lice" ;
+lin plantain_N = mkN "plantain" "plantains" ;
+lin plantal_A = mkAMost "plantal" "plantally" ;
+lin plantar_A = mkAMost "plantar" "plantarly" ;
+lin plantation_N = mkN "plantation" "plantations" ;
+lin planter_N = mkN "planter" "planters" ;
+lin plantigrade_A = mkAMost "plantigrade" "plantigradely" ;
+lin planting_N = mkN "planting" "plantings" ;
+lin plantlet_N = mkN "plantlet" "plantlets" ;
+lin planula_N = mkN "planula" "planulas" ;
+lin plaque_N = mkN "plaque" "plaques" ;
+lin plash_N = mkN "plash" "IRREG" ;
+lin plash_V = mkV "plash" "plashed" "plashed" ;
+lin plasm_N = mkN "plasm" "plasms" ;
+lin plasma_N = mkN "plasma" "plasmas" ;
+lin plasmablast_N = mkN "plasmablast" "plasmablasts" ;
+lin plasmacytoma_N = mkN "plasmacytoma" "plasmacytomas" ;
+lin plasmapheresis_N = mkN "plasmapheresis" "plasmapheresises" ;
+lin plasmid_N = mkN "plasmid" "plasmids" ;
+lin plasmin_N = mkN "plasmin" "plasmins" ;
+lin plasminogen_N = mkN "plasminogen" "plasminogens" ;
+lin plasmodium_N = mkN "plasmodium" "plasmodiums" ;
+lin plaster_N = mkN "plaster" "plasters" ;
+lin plaster_V = mkV "plaster" "plastered" "plastered" ;
+lin plasterboard_N = mkN "plasterboard" "plasterboards" ;
+lin plasterer_N = mkN "plasterer" "plasterers" ;
+lin plastering_N = mkN "plastering" "plasterings" ;
+lin plastic_A = mkAMost "plastic" "plasticly" ;
+lin plastic_N = mkN "plastic" "plastics" ;
+lin plastic_bomb_N = mkN "plastic-bomb" "plastic-bombs" ;
+lin plastically_Adv = mkAdv "plastically" ;
+lin plasticine_N = mkN "plasticine" "plasticines" ;
+lin plasticity_N = mkN "plasticity" "plasticities" ;
+lin plasticizer_N = mkN "plasticizer" "plasticizers" ;
+lin plastics_N = mkN "plastics" "plastics" ;
+lin plastid_N = mkN "plastid" "plastids" ;
+lin plastination_N = mkN "plastination" "plastinations" ;
+lin plastron_N = mkN "plastron" "plastrons" ;
+lin plat_N = mkN "plat" "plats" ;
+lin plate_N = mkN "plate" "plates" ;
+lin plate_V = mkV "plate" "plated" "plated" ;
+lin plate_glass_N = mkN "plate-glass" "plate-glasses" ;
+lin plate_powder_N = mkN "plate-powder" "plate-powders" ;
+lin plate_rack_N = mkN "plate-rack" "plate-racks" ;
+lin plateau_N = mkN "plateau" "plateaus" ;
+lin plateful_N = mkN "plateful" "platefuls" ;
+lin platelayer_N = mkN "platelayer" "platelayers" ;
+lin platelet_N = mkN "platelet" "platelets" ;
+lin plateletpheresis_N = mkN "plateletpheresis" "plateletpheresises" ;
+lin platen_N = mkN "platen" "platens" ;
+lin plater_N = mkN "plater" "platers" ;
+lin platform_N = mkN "platform" "platforms" ;
+lin plating_N = mkN "plating" "platings" ;
+lin platinum_N = mkN "platinum" "platinums" ;
+lin platitude_N = mkN "platitude" "platitudes" ;
+lin platitudinarian_N = mkN "platitudinarian" "platitudinarians" ;
+lin platitudinous_A = mkAMost "platitudinous" "platitudinously" ;
+lin platonic_A = mkAMost "platonic" "platonicly" ;
+lin platoon_N = mkN "platoon" "platoons" ;
+lin platter_N = mkN "platter" "platters" ;
+lin platy_N = mkN "platy" "platies" ;
+lin platyctenean_N = mkN "platyctenean" "platycteneans" ;
+lin platypus_N = mkN "platypus" "platypuses" ;
+lin platyrrhine_A = mkAMost "platyrrhine" "platyrrhinely" ;
+lin platysma_N = mkN "platysma" "platysmas" ;
+lin plaudit_N = mkN "plaudit" "plaudits" ;
+lin plausibility_N = mkN "plausibility" "plausibilities" ;
+lin plausible_A = mkAMost "plausible" "plausibly" ;
+lin play_N = mkN "play" "plays" ;
+lin play_V = mkV "play" "played" "played" ;
+lin play_acting_N = mkN "play-acting" "play-actings" ;
+lin play_actor_N = mkN "play-actor" "play-actors" ;
+lin play_box_N = mkN "play-box" "play-boxes" ;
+lin play_off_N = mkN "play-off" "play-offs" ;
+lin play_reading_N = mkN "play-reading" "play-readings" ;
+lin playable_A = mkAMost "playable" "playably" ;
+lin playback_N = mkN "playback" "playbacks" ;
+lin playbill_N = mkN "playbill" "playbills" ;
+lin playbook_N = mkN "playbook" "playbooks" ;
+lin playbox_N = mkN "playbox" "playboxes" ;
+lin playboy_N = mkN "playboy" "playboys" ;
+lin player_N = mkN "player" "players" ;
+lin player_piano_N = mkN "player-piano" "player-pianos" ;
+lin playfellow_N = mkN "playfellow" "playfellows" ;
+lin playful_A = mkAMost "playful" "playfully" ;
+lin playfulness_N = mkN "playfulness" "playfulnesses" ;
+lin playgoer_N = mkN "playgoer" "playgoers" ;
+lin playground_N = mkN "playground" "playgrounds" ;
+lin playgroup_N = mkN "playgroup" "playgroups" ;
+lin playhouse_N = mkN "playhouse" "playhouses" ;
+lin playing_N = mkN "playing" "playings" ;
+lin playing_card_N = mkN "playing-card" "playing-cards" ;
+lin playing_field_N = mkN "playing-field" "playing-fields" ;
+lin playlet_N = mkN "playlet" "playlets" ;
+lin playlist_N = mkN "playlist" "playlists" ;
+lin playmaker_N = mkN "playmaker" "playmakers" ;
+lin playmate_N = mkN "playmate" "playmates" ;
+lin playoff_N = mkN "playoff" "playoffs" ;
+lin playpen_N = mkN "playpen" "playpens" ;
+lin playroom_N = mkN "playroom" "playrooms" ;
+lin playschool_N = mkN "playschool" "playschools" ;
+lin playsuit_N = mkN "playsuit" "playsuits" ;
+lin plaything_N = mkN "plaything" "playthings" ;
+lin playtime_N = mkN "playtime" "playtimes" ;
+lin playwright_N = mkN "playwright" "playwrights" ;
+lin plaza_N = mkN "plaza" "plazas" ;
+lin plea_N = mkN "plea" "pleas" ;
+lin pleach_V = mkV "pleach" "pleached" "pleached" ;
+lin plead_pleaded_V = mkV "plead" "pleaded" "pleaded" ;
+lin plead_pled_V = mkV "plead" "pled" "pled" ;
+lin pleading_N = mkN "pleading" "pleadings" ;
+lin pleadingly_Adv = mkAdv "pleadingly" ;
+lin pleasance_N = mkN "pleasance" "pleasances" ;
+lin pleasant_A = mkA "pleasant" "pleasanter" "pleasantest" "pleasantly" ;
+lin pleasantness_N = mkN "pleasantness" "pleasantnesses" ;
+lin pleasantry_N = mkN "pleasantry" "pleasantries" ;
+lin please_Adv = mkAdv "please" ;
+lin please_V = mkV "please" "pleased" "pleased" ;
+lin pleaser_N = mkN "pleaser" "pleasers" ;
+lin pleasing_N = mkN "pleasing" "pleasings" ;
+lin pleasingly_Adv = mkAdv "pleasingly" ;
+lin pleasingness_N = mkN "pleasingness" "pleasingnesses" ;
+lin pleasurable_A = mkAMost "pleasurable" "pleasurably" ;
+lin pleasure_N = mkN "pleasure" "pleasures" ;
+lin pleasure_boat_N = mkN "pleasure-boat" "pleasure-boats" ;
+lin pleasure_craft_N = mkN "pleasure-craft" "pleasure-crafts" ;
+lin pleasure_ground_N = mkN "pleasure-ground" "pleasure-grounds" ;
+lin pleat_N = mkN "pleat" "pleats" ;
+lin pleat_V = mkV "pleat" "pleated" "pleated" ;
+lin pleb_N = mkN "pleb" "plebs" ;
+lin plebeian_A = mkAMost "plebeian" "plebeianly" ;
+lin plebeian_N = mkN "plebeian" "plebeians" ;
+lin plebiscite_N = mkN "plebiscite" "plebiscites" ;
+lin plectognath_N = mkN "plectognath" "plectognaths" ;
+lin plectranthus_N = mkN "plectranthus" "plectranthuses" ;
+lin plectrum_N = mkN "plectrum" "plectrums" ;
+lin pledge_N = mkN "pledge" "pledges" ;
+lin pledge_V = mkV "pledge" "pledged" "pledged" ;
+lin pledgee_N = mkN "pledgee" "pledgees" ;
+lin pledger_N = mkN "pledger" "pledgers" ;
+lin plenary_A = mkAMost "plenary" "plenarily" ;
+lin plenipotentiary_N = mkN "plenipotentiary" "plenipotentiaries" ;
+lin plenitude_N = mkN "plenitude" "IRREG" ;
+lin plenteous_A = mkAMost "plenteous" "plenteously" ;
+lin plentiful_A = mkAMost "plentiful" "plentifully" ;
+lin plenty_Adv = mkAdv "plenty" ;
+lin plenty_N = mkN "plenty" "plenties" ;
+lin plenum_N = mkN "plenum" "plenums" ;
+lin pleochroic_A = mkAMost "pleochroic" "pleochroicly" ;
+lin pleochroism_N = mkN "pleochroism" "pleochroisms" ;
+lin pleomorphic_A = mkAMost "pleomorphic" "pleomorphicly" ;
+lin pleomorphism_N = mkN "pleomorphism" "pleomorphisms" ;
+lin pleonasm_N = mkN "pleonasm" "pleonasms" ;
+lin pleonastic_A = mkAMost "pleonastic" "pleonasticly" ;
+lin plesiosaur_N = mkN "plesiosaur" "plesiosaurs" ;
+lin plethora_N = mkN "plethora" "plethoras" ;
+lin plethysmograph_N = mkN "plethysmograph" "plethysmographs" ;
+lin pleura_N = mkN "pleura" "pleuras" ;
+lin pleural_A = mkAMost "pleural" "pleurally" ;
+lin pleurisy_N = mkN "pleurisy" "pleurisies" ;
+lin pleurocarp_N = mkN "pleurocarp" "pleurocarps" ;
+lin pleurocarpous_A = mkAMost "pleurocarpous" "pleurocarpously" ;
+lin pleurodont_N = mkN "pleurodont" "pleurodonts" ;
+lin pleurodynia_N = mkN "pleurodynia" "pleurodynias" ;
+lin pleuropneumonia_N = mkN "pleuropneumonia" "pleuropneumonias" ;
+lin pleurothallis_N = mkN "pleurothallis" "pleurothallises" ;
+lin pleximeter_N = mkN "pleximeter" "pleximeters" ;
+lin plexor_N = mkN "plexor" "plexors" ;
+lin plexus_N = mkN "plexus" "plexus" ;
+lin pliability_N = mkN "pliability" "pliabilities" ;
+lin pliable_A = mkAMost "pliable" "pliably" ;
+lin pliancy_N = mkN "pliancy" "pliancies" ;
+lin pliant_A = mkAMost "pliant" "pliantly" ;
+lin plication_N = mkN "plication" "plications" ;
+lin plier_N = mkN "plier" "pliers" ;
+lin pliers_N = mkN "pliers" "plierses" ;
+lin plight_N = mkN "plight" "plights" ;
+lin plight_V = mkV "plight" "plighted" "plighted" ;
+lin plimsoll_N = mkN "plimsoll" "plimsolls" ;
+lin plinth_N = mkN "plinth" "plinths" ;
+lin ploce_N = mkN "ploce" "ploces" ;
+lin plod_V = mkV "plod" "plodded" "plodded" ;
+lin plodder_N = mkN "plodder" "plodders" ;
+lin plodding_N = mkN "plodding" "ploddings" ;
+lin ploddingly_Adv = mkAdv "ploddingly" ;
+lin plonk_Adv = mkAdv "plonk" ;
+lin plonk_N = mkN "plonk" "plonks" ;
+lin plonk_V = mkV "plonk" "plonked" "plonked" ;
+lin plop_Adv = mkAdv "plop" ;
+lin plop_N = mkN "plop" "plops" ;
+lin plop_V = mkV "plop" "plopped" "plopped" ;
+lin plosion_N = mkN "plosion" "plosions" ;
+lin plosive_A = mkAMost "plosive" "plosively" ;
+lin plosive_N = mkN "plosive" "plosives" ;
+lin plot_N = mkN "plot" "plots" ;
+lin plot_V = mkV "plot" "plotted" "plotted" ;
+lin plotter_N = mkN "plotter" "plotters" ;
+lin plough_N = mkN "plough" "ploughs" ;
+lin plough_V = mkV "plough" "ploughed" "ploughed" ;
+lin ploughboy_N = mkN "ploughboy" "ploughboys" ;
+lin ploughman_N = mkN "ploughman" "ploughmen" ;
+lin ploughshare_N = mkN "ploughshare" "ploughshares" ;
+lin plover_N = mkN "plover" "plovers" ;
+lin plow_N = mkN "plow" "plows" ;
+lin plow_V = mkV "plow" "plowed" "plowed" ;
+lin plowboy_N = mkN "plowboy" "plowboys" ;
+lin plowing_N = mkN "plowing" "plowings" ;
+lin plowman_N = mkN "plowman" "plowmen" ;
+lin plowshare_N = mkN "plowshare" "plowshares" ;
+lin plowwright_N = mkN "plowwright" "plowwrights" ;
+lin ploy_N = mkN "ploy" "ploys" ;
+lin pluck_N = mkN "pluck" "plucks" ;
+lin pluck_V = mkV "pluck" "plucked" "plucked" ;
+lin plucky_A = mkA "plucky" "pluckier" "pluckiest" "pluckily" ;
+lin plug_N = mkN "plug" "plugs" ;
+lin plug_V = mkV "plug" "plugged" "plugged" ;
+lin plughole_N = mkN "plughole" "plugholes" ;
+lin plum_N = mkN "plum" "plums" ;
+lin plum_pudding_N = mkN "plum-pudding" "plum-puddings" ;
+lin plumage_N = mkN "plumage" "plumages" ;
+lin plumaged_A = mkAMost "plumaged" "plumagedly" ;
+lin plumate_A = mkAMost "plumate" "plumately" ;
+lin plumb_A = mkA "plumb" "plumber" "plumbest" "plumbly" ;
+lin plumb_Adv = mkAdv "plumb" ;
+lin plumb_N = mkN "plumb" "plumbs" ;
+lin plumb_V = mkV "plumb" "plumbed" "plumbed" ;
+lin plumbaginaceous_A = mkAMost "plumbaginaceous" "plumbaginaceously" ;
+lin plumbago_N = mkN "plumbago" "plumbagos" ;
+lin plumber_N = mkN "plumber" "plumbers" ;
+lin plumbic_A = mkAMost "plumbic" "plumbicly" ;
+lin plumbing_N = mkN "plumbing" "plumbings" ;
+lin plumcot_N = mkN "plumcot" "plumcots" ;
+lin plume_N = mkN "plume" "plumes" ;
+lin plume_V = mkV "plume" "plumed" "plumed" ;
+lin plumelike_A = mkAMost "plumelike" "plumelikely" ;
+lin plumlike_A = mkAMost "plumlike" "plumlikely" ;
+lin plummet_N = mkN "plummet" "plummets" ;
+lin plummet_V = mkV "plummet" "plummeted" "plummeted" ;
+lin plummy_A = mkA "plummy" "plummier" "plummiest" "plummily" ;
+lin plump_A = mkA "plump" "plumper" "plumpest" "plumply" ;
+lin plump_Adv = mkAdv "plump" ;
+lin plump_N = mkN "plump" "plumps" ;
+lin plump_V = mkV "plump" "plumped" "plumped" ;
+lin plumpness_N = mkN "plumpness" "plumpnesses" ;
+lin plumule_N = mkN "plumule" "plumules" ;
+lin plunder_N = mkN "plunder" "plunders" ;
+lin plunder_V = mkV "plunder" "plundered" "plundered" ;
+lin plunderage_N = mkN "plunderage" "plunderages" ;
+lin plunderer_N = mkN "plunderer" "plunderers" ;
+lin plundering_N = mkN "plundering" "plunderings" ;
+lin plunge_N = mkN "plunge" "plunges" ;
+lin plunge_V = mkV "plunge" "plunged" "plunged" ;
+lin plunger_N = mkN "plunger" "plungers" ;
+lin plunk_N = mkN "plunk" "plunks" ;
+lin pluperfect_A = mkAMost "pluperfect" "pluperfectly" ;
+lin pluperfect_N = mkN "pluperfect" "pluperfects" ;
+lin plural_A = mkAMost "plural" "plurally" ;
+lin plural_N = mkN "plural" "plurals" ;
+lin pluralism_N = mkN "pluralism" "pluralisms" ;
+lin pluralist_N = mkN "pluralist" "pluralists" ;
+lin pluralistic_A = mkAMost "pluralistic" "pluralisticly" ;
+lin plurality_N = mkN "plurality" "pluralities" ;
+lin pluralization_N = mkN "pluralization" "pluralizations" ;
+lin plus_A = mkAMost "plus" "plusly" ;
+lin plus_N = mkN "plus" "pluses" ;
+lin plush_A = mkA "plush" "plusher" "plushest" "plushly" ;
+lin plush_N = mkN "plush" "plushes" ;
+lin plushy_A = mkA "plushy" "plushier" "plushiest" "plushily" ;
+lin plutocracy_N = mkN "plutocracy" "plutocracies" ;
+lin plutocrat_N = mkN "plutocrat" "plutocrats" ;
+lin plutocratic_A = mkAMost "plutocratic" "plutocraticly" ;
+lin plutonium_N = mkN "plutonium" "plutoniums" ;
+lin ply_N = mkN "ply" "ply" ;
+lin ply_V = mkV "ply" "plied" "plied" ;
+lin plywood_N = mkN "plywood" "plywoods" ;
+lin pneumatic_A = mkAMost "pneumatic" "pneumaticly" ;
+lin pneumatically_Adv = mkAdv "pneumatically" ;
+lin pneumatics_N = mkN "pneumatics" "pneumaticses" ;
+lin pneumatophore_N = mkN "pneumatophore" "pneumatophores" ;
+lin pneumococcal_A = mkAMost "pneumococcal" "pneumococcally" ;
+lin pneumococcus_N = mkN "pneumococcus" "pneumococcuses" ;
+lin pneumoconiosis_N = mkN "pneumoconiosis" "pneumoconiosises" ;
+lin pneumocytosis_N = mkN "pneumocytosis" "pneumocytosises" ;
+lin pneumogastric_A = mkAMost "pneumogastric" "pneumogastricly" ;
+lin pneumonectomy_N = mkN "pneumonectomy" "pneumonectomies" ;
+lin pneumonia_N = mkN "pneumonia" "pneumonias" ;
+lin pneumonic_A = mkAMost "pneumonic" "pneumonicly" ;
+lin pneumonitis_N = mkN "pneumonitis" "pneumonitises" ;
+lin pneumothorax_N = mkN "pneumothorax" "pneumothoraxes" ;
+lin po_N = mkN "po" "poes" ;
+lin poach_V = mkV "poach" "poached" "poached" ;
+lin poacher_N = mkN "poacher" "poachers" ;
+lin poaching_N = mkN "poaching" "poachings" ;
+lin pochard_N = mkN "pochard" "pochards" ;
+lin pock_N = mkN "pock" "pocks" ;
+lin pocked_A = mkAMost "pocked" "pockedly" ;
+lin pocket_N = mkN "pocket" "pockets" ;
+lin pocket_V = mkV "pocket" "pocketed" "pocketed" ;
+lin pocket_book_N = mkN "pocket-book" "pocket-books" ;
+lin pocket_handkerchief_N = mkN "pocket-handkerchief" "pocket-handkerchiefs" ;
+lin pocket_knife_N = mkN "pocket-knife" "pocket-knives" ;
+lin pocket_money_N = mkN "pocket-money" "pocket-moneys" ;
+lin pocketbook_N = mkN "pocketbook" "pocketbooks" ;
+lin pocketcomb_N = mkN "pocketcomb" "pocketcombs" ;
+lin pocketful_N = mkN "pocketful" "pocketfuls" ;
+lin pocketknife_N = mkN "pocketknife" "pocketknifes" ;
+lin pockmark_N = mkN "pockmark" "pockmarks" ;
+lin pockmarked_A = mkAMost "pockmarked" "pockmarkedly" ;
+lin pod_N = mkN "pod" "pods" ;
+lin pod_V = mkV "pod" "podded" "podded" ;
+lin podalgia_N = mkN "podalgia" "podalgias" ;
+lin podetium_N = mkN "podetium" "podetiums" ;
+lin podgy_A = mkA "podgy" "podgier" "podgiest" "podgily" ;
+lin podiatry_N = mkN "podiatry" "podiatries" ;
+lin podium_N = mkN "podium" "podiums" ;
+lin podlike_A = mkAMost "podlike" "podlikely" ;
+lin podocarp_N = mkN "podocarp" "podocarps" ;
+lin podzol_N = mkN "podzol" "podzols" ;
+lin poem_N = mkN "poem" "poems" ;
+lin poesy_N = mkN "poesy" "poesies" ;
+lin poet_N = mkN "poet" "poets" ;
+lin poetess_N = mkN "poetess" "poetesses" ;
+lin poetic_A = mkAMost "poetic" "poeticly" ;
+lin poetical_A = mkAMost "poetical" "poetically" ;
+lin poetics_N = mkN "poetics" "poeticses" ;
+lin poetry_N = mkN "poetry" "poetries" ;
+lin pogge_N = mkN "pogge" "pogges" ;
+lin pogonia_N = mkN "pogonia" "pogonias" ;
+lin pogonion_N = mkN "pogonion" "pogonions" ;
+lin pogrom_N = mkN "pogrom" "pogroms" ;
+lin poi_N = mkN "poi" "pois" ;
+lin poignance_N = mkN "poignance" "poignances" ;
+lin poignancy_N = mkN "poignancy" "poignancies" ;
+lin poignant_A = mkAMost "poignant" "poignantly" ;
+lin poikilotherm_N = mkN "poikilotherm" "poikilotherms" ;
+lin poikilothermic_A = mkAMost "poikilothermic" "poikilothermicly" ;
+lin poilu_N = mkN "poilu" "poilus" ;
+lin poinsettia_N = mkN "poinsettia" "poinsettias" ;
+lin point_N = mkN "point" "points" ;
+lin point_V = mkV "point" "pointed" "pointed" ;
+lin point_blank_A = mkAMost "point-blank" "point-blankly" ;
+lin point_blank_Adv = mkAdv "point-blank" ;
+lin point_duty_N = mkN "point-duty" "point-duties" ;
+lin pointedly_Adv = mkAdv "pointedly" ;
+lin pointedness_N = mkN "pointedness" "pointednesses" ;
+lin pointer_N = mkN "pointer" "pointers" ;
+lin pointillism_N = mkN "pointillism" "pointillisms" ;
+lin pointillist_A = mkAMost "pointillist" "pointillistly" ;
+lin pointillist_N = mkN "pointillist" "pointillists" ;
+lin pointless_A = mkAMost "pointless" "pointlessly" ;
+lin pointsman_N = mkN "pointsman" "pointsmen" ;
+lin poise_N = mkN "poise" "poises" ;
+lin poise_V = mkV "poise" "poised" "poised" ;
+lin poison_N = mkN "poison" "poisons" ;
+lin poison_V = mkV "poison" "poisoned" "poisoned" ;
+lin poison_gas_N = mkN "poison-gas" "poison-gases" ;
+lin poison_ivy_N = mkN "poison-ivy" "poison-ivies" ;
+lin poisoner_N = mkN "poisoner" "poisoners" ;
+lin poisoning_N = mkN "poisoning" "poisonings" ;
+lin poisonous_A = mkAMost "poisonous" "poisonously" ;
+lin poke_N = mkN "poke" "pokes" ;
+lin poke_V = mkV "poke" "poked" "poked" ;
+lin poke_bonnet_N = mkN "poke-bonnet" "poke-bonnets" ;
+lin poker_N = mkN "poker" "pokers" ;
+lin poker_face_N = mkN "poker-face" "poker-faces" ;
+lin pokeweed_N = mkN "pokeweed" "pokeweeds" ;
+lin poky_A = mkA "poky" "pokier" "pokiest" "pokily" ;
+lin polack_N = mkN "polack" "polacks" ;
+lin polar_A = mkAMost "polar" "polarly" ;
+lin polarimeter_N = mkN "polarimeter" "polarimeters" ;
+lin polaris_N = mkN "polaris" "polares" ;
+lin polarity_N = mkN "polarity" "polarities" ;
+lin polarization_N = mkN "polarization" "polarizations" ;
+lin polarize_V = mkV "polarize" "polarized" "polarized" ;
+lin polarographic_A = mkAMost "polarographic" "polarographicly" ;
+lin polarography_N = mkN "polarography" "polarographies" ;
+lin polaroid_N = mkN "polaroid" "polaroids" ;
+lin polder_N = mkN "polder" "polders" ;
+lin pole_jumping_N = mkN "pole-jumping" "pole-jumpings" ;
+lin pole_star_N = mkN "pole-star" "pole-stars" ;
+lin pole_vault_N = mkN "pole-vault" "pole-vaults" ;
+lin poleax_N = mkN "poleax" "poleaxes" ;
+lin poleax_V = mkV "poleax" "poleaxed" "poleaxed" ;
+lin poleaxe_N = mkN "poleaxe" "poleaxes" ;
+lin poleaxe_V = mkV "poleaxe" "poleaxed" "poleaxed" ;
+lin polecat_N = mkN "polecat" "polecats" ;
+lin polemic_A = mkAMost "polemic" "polemicly" ;
+lin polemic_N = mkN "polemic" "polemics" ;
+lin polemically_Adv = mkAdv "polemically" ;
+lin polemicist_N = mkN "polemicist" "polemicists" ;
+lin polemics_N = mkN "polemics" "polemicses" ;
+lin polemoniaceous_A = mkAMost "polemoniaceous" "polemoniaceously" ;
+lin polemonium_N = mkN "polemonium" "polemoniums" ;
+lin polenta_N = mkN "polenta" "polentas" ;
+lin police_N = mkN "police" "police" ;
+lin police_V = mkV "police" "policed" "policed" ;
+lin police_office_N = mkN "police-office" "police-offices" ;
+lin police_officer_N = mkN "police-officer" "police-officers" ;
+lin police_station_N = mkN "police-station" "police-stations" ;
+lin policeman_N = mkN "policeman" "policemen" ;
+lin policewoman_N = mkN "policewoman" "policewomen" ;
+lin policy_N = mkN "policy" "policies" ;
+lin policyholder_N = mkN "policyholder" "policyholders" ;
+lin polio_N = mkN "polio" "polios" ;
+lin poliomyelitis_N = mkN "poliomyelitis" "poliomyelitises" ;
+lin poliosis_N = mkN "poliosis" "poliosises" ;
+lin poliovirus_N = mkN "poliovirus" "polioviruses" ;
+lin polish_N = mkN "polish" "polishes" ;
+lin polish_V = mkV "polish" "polished" "polished" ;
+lin polisher_N = mkN "polisher" "polishers" ;
+lin politburo_N = mkN "politburo" "politburos" ;
+lin polite_A = mkA "polite" "politer" "politest" "politely" ;
+lin politeness_N = mkN "politeness" "politenesses" ;
+lin politic_A = mkAMost "politic" "politicly" ;
+lin political_A = mkAMost "political" "politically" ;
+lin politician_N = mkN "politician" "politicians" ;
+lin politicize_V = mkV "politicize" "politicized" "politicized" ;
+lin politick_V = mkV "politick" "politicked" "politicked" ;
+lin politics_N = mkN "politics" "politics" ;
+lin polity_N = mkN "polity" "polities" ;
+lin polka_N = mkN "polka" "polkas" ;
+lin poll_N = mkN "poll" "polls" ;
+lin poll_V = mkV "poll" "polled" "polled" ;
+lin poll_tax_N = mkN "poll-tax" "poll-taxes" ;
+lin pollack_N = mkN "pollack" "pollacks" ;
+lin pollard_N = mkN "pollard" "pollards" ;
+lin pollard_V = mkV "pollard" "pollarded" "pollarded" ;
+lin pollen_N = mkN "pollen" "pollens" ;
+lin pollinate_V = mkV "pollinate" "pollinated" "pollinated" ;
+lin pollination_N = mkN "pollination" "pollinations" ;
+lin pollinator_N = mkN "pollinator" "pollinators" ;
+lin polling_booth_N = mkN "polling-booth" "polling-booths" ;
+lin polling_day_N = mkN "polling-day" "polling-days" ;
+lin polling_station_N = mkN "polling-station" "polling-stations" ;
+lin pollinium_N = mkN "pollinium" "polliniums" ;
+lin polls_N = mkN "polls" "pollses" ;
+lin pollster_N = mkN "pollster" "pollsters" ;
+lin pollucite_N = mkN "pollucite" "pollucites" ;
+lin pollutant_N = mkN "pollutant" "pollutants" ;
+lin pollute_V = mkV "pollute" "polluted" "polluted" ;
+lin polluter_N = mkN "polluter" "polluters" ;
+lin pollution_N = mkN "pollution" "pollutions" ;
+lin polo_N = mkN "polo" "poloes" ;
+lin polo_neck_A = mkAMost "polo-neck" "polo-neckly" ;
+lin polonaise_N = mkN "polonaise" "polonaises" ;
+lin polonium_N = mkN "polonium" "poloniums" ;
+lin polony_N = mkN "polony" "polonies" ;
+lin poltergeist_N = mkN "poltergeist" "poltergeists" ;
+lin poltroon_A = mkAMost "poltroon" "poltroonly" ;
+lin poltroon_N = mkN "poltroon" "poltroons" ;
+lin poltroonery_N = mkN "poltroonery" "poltrooneries" ;
+lin poly_N = mkN "poly" "polys" ;
+lin polyamide_N = mkN "polyamide" "polyamides" ;
+lin polyandrist_N = mkN "polyandrist" "polyandrists" ;
+lin polyandrous_A = mkAMost "polyandrous" "polyandrously" ;
+lin polyandry_N = mkN "polyandry" "polyandries" ;
+lin polyanthus_N = mkN "polyanthus" "polyanthuses" ;
+lin polyarteritis_N = mkN "polyarteritis" "polyarteritises" ;
+lin polyatomic_A = mkAMost "polyatomic" "polyatomicly" ;
+lin polybutylene_N = mkN "polybutylene" "polybutylenes" ;
+lin polychaete_N = mkN "polychaete" "polychaetes" ;
+lin polychromatic_A = mkAMost "polychromatic" "polychromaticly" ;
+lin polychrome_N = mkN "polychrome" "polychromes" ;
+lin polycrystalline_A = mkAMost "polycrystalline" "polycrystallinely" ;
+lin polycythemia_N = mkN "polycythemia" "polycythemias" ;
+lin polydactyl_A = mkAMost "polydactyl" "polydactylly" ;
+lin polydactyly_N = mkN "polydactyly" "polydactylies" ;
+lin polydipsia_N = mkN "polydipsia" "polydipsias" ;
+lin polyelectrolyte_N = mkN "polyelectrolyte" "polyelectrolytes" ;
+lin polyester_N = mkN "polyester" "polyesters" ;
+lin polyestrous_A = mkAMost "polyestrous" "polyestrously" ;
+lin polyethylene_N = mkN "polyethylene" "polyethylenes" ;
+lin polyfoam_N = mkN "polyfoam" "polyfoams" ;
+lin polygamist_N = mkN "polygamist" "polygamists" ;
+lin polygamous_A = mkAMost "polygamous" "polygamously" ;
+lin polygamy_N = mkN "polygamy" "polygamies" ;
+lin polygene_N = mkN "polygene" "polygenes" ;
+lin polygenic_A = mkAMost "polygenic" "polygenicly" ;
+lin polyglot_A = mkAMost "polyglot" "polyglotly" ;
+lin polyglot_N = mkN "polyglot" "polyglots" ;
+lin polygon_N = mkN "polygon" "polygons" ;
+lin polygonal_A = mkAMost "polygonal" "polygonally" ;
+lin polygraph_N = mkN "polygraph" "polygraphs" ;
+lin polygynist_N = mkN "polygynist" "polygynists" ;
+lin polygynous_A = mkAMost "polygynous" "polygynously" ;
+lin polygyny_N = mkN "polygyny" "polygynies" ;
+lin polyhedral_A = mkAMost "polyhedral" "polyhedrally" ;
+lin polyhedron_N = mkN "polyhedron" "polyhedrons" ;
+lin polymastigote_N = mkN "polymastigote" "polymastigotes" ;
+lin polymath_N = mkN "polymath" "polymaths" ;
+lin polymer_N = mkN "polymer" "polymers" ;
+lin polymerase_N = mkN "polymerase" "polymerases" ;
+lin polymeric_A = mkAMost "polymeric" "polymericly" ;
+lin polymerization_N = mkN "polymerization" "polymerizations" ;
+lin polymorph_N = mkN "polymorph" "polymorphs" ;
+lin polymorphemic_A = mkAMost "polymorphemic" "polymorphemicly" ;
+lin polymorphic_A = mkAMost "polymorphic" "polymorphicly" ;
+lin polymorphism_N = mkN "polymorphism" "polymorphisms" ;
+lin polymorphous_A = mkAMost "polymorphous" "polymorphously" ;
+lin polymyositis_N = mkN "polymyositis" "polymyositises" ;
+lin polymyxin_N = mkN "polymyxin" "polymyxins" ;
+lin polyneuritis_N = mkN "polyneuritis" "polyneuritises" ;
+lin polynomial_A = mkAMost "polynomial" "polynomially" ;
+lin polynomial_N = mkN "polynomial" "polynomials" ;
+lin polynya_N = mkN "polynya" "polynyas" ;
+lin polyoma_N = mkN "polyoma" "polyomas" ;
+lin polyp_N = mkN "polyp" "polyps" ;
+lin polypectomy_N = mkN "polypectomy" "polypectomies" ;
+lin polypeptide_N = mkN "polypeptide" "polypeptides" ;
+lin polypetalous_A = mkAMost "polypetalous" "polypetalously" ;
+lin polyphone_N = mkN "polyphone" "polyphones" ;
+lin polyphonic_A = mkAMost "polyphonic" "polyphonicly" ;
+lin polyphonically_Adv = mkAdv "polyphonically" ;
+lin polyphony_N = mkN "polyphony" "polyphonies" ;
+lin polyphosphate_N = mkN "polyphosphate" "polyphosphates" ;
+lin polyploid_A = mkAMost "polyploid" "polyploidly" ;
+lin polyploid_N = mkN "polyploid" "polyploids" ;
+lin polyploidy_N = mkN "polyploidy" "polyploidies" ;
+lin polypody_N = mkN "polypody" "polypodies" ;
+lin polypore_N = mkN "polypore" "polypores" ;
+lin polypropenonitrile_N = mkN "polypropenonitrile" "polypropenonitriles" ;
+lin polypropylene_N = mkN "polypropylene" "polypropylenes" ;
+lin polyptoton_N = mkN "polyptoton" "polyptotons" ;
+lin polypus_N = mkN "polypus" "polypuses" ;
+lin polysaccharide_N = mkN "polysaccharide" "polysaccharides" ;
+lin polysemant_N = mkN "polysemant" "polysemants" ;
+lin polysemous_A = mkAMost "polysemous" "polysemously" ;
+lin polysemy_N = mkN "polysemy" "polysemies" ;
+lin polysomy_N = mkN "polysomy" "polysomies" ;
+lin polystyrene_N = mkN "polystyrene" "polystyrenes" ;
+lin polysyllabic_A = mkAMost "polysyllabic" "polysyllabicly" ;
+lin polysyllabically_Adv = mkAdv "polysyllabically" ;
+lin polysyllable_N = mkN "polysyllable" "polysyllables" ;
+lin polysyndeton_N = mkN "polysyndeton" "polysyndetons" ;
+lin polytechnic_N = mkN "polytechnic" "polytechnics" ;
+lin polytheism_N = mkN "polytheism" "polytheisms" ;
+lin polytheist_N = mkN "polytheist" "polytheists" ;
+lin polytheistic_A = mkAMost "polytheistic" "polytheisticly" ;
+lin polythene_N = mkN "polythene" "polythenes" ;
+lin polytonal_A = mkAMost "polytonal" "polytonally" ;
+lin polytonality_N = mkN "polytonality" "polytonalities" ;
+lin polyunsaturated_A = mkAMost "polyunsaturated" "polyunsaturatedly" ;
+lin polyurethane_N = mkN "polyurethane" "polyurethanes" ;
+lin polyuria_N = mkN "polyuria" "polyurias" ;
+lin polyvalence_N = mkN "polyvalence" "polyvalences" ;
+lin polyvalent_A = mkAMost "polyvalent" "polyvalently" ;
+lin pom_N = mkN "pom" "poms" ;
+lin pomade_N = mkN "pomade" "pomades" ;
+lin pomade_V = mkV "pomade" "pomaded" "pomaded" ;
+lin pome_N = mkN "pome" "pomes" ;
+lin pomegranate_N = mkN "pomegranate" "pomegranates" ;
+lin pomelo_N = mkN "pomelo" "pomelos" ;
+lin pomfret_N = mkN "pomfret" "pomfrets" ;
+lin pommel_N = mkN "pommel" "pommels" ;
+lin pommel_V = mkV "pommel" "pommelled" "pommelled" ;
+lin pommy_N = mkN "pommy" "pommies" ;
+lin pomologist_N = mkN "pomologist" "pomologists" ;
+lin pomology_N = mkN "pomology" "pomologies" ;
+lin pomp_N = mkN "pomp" "pomps" ;
+lin pompadour_N = mkN "pompadour" "pompadours" ;
+lin pompano_N = mkN "pompano" "pompanoes" ;
+lin pompon_N = mkN "pompon" "pompons" ;
+lin pomposity_N = mkN "pomposity" "pomposities" ;
+lin pompous_A = mkAMost "pompous" "pompously" ;
+lin ponce_N = mkN "ponce" "ponces" ;
+lin poncho_N = mkN "poncho" "ponchos" ;
+lin pond_N = mkN "pond" "ponds" ;
+lin ponder_V = mkV "ponder" "pondered" "pondered" ;
+lin ponderable_A = mkAMost "ponderable" "ponderably" ;
+lin ponderosa_N = mkN "ponderosa" "ponderosas" ;
+lin ponderous_A = mkAMost "ponderous" "ponderously" ;
+lin ponderousness_N = mkN "ponderousness" "ponderousnesses" ;
+lin pondweed_N = mkN "pondweed" "pondweeds" ;
+lin pone_N = mkN "pone" "pones" ;
+lin pongee_N = mkN "pongee" "pongees" ;
+lin poniard_N = mkN "poniard" "poniards" ;
+lin poniard_V = mkV "poniard" "poniarded" "poniarded" ;
+lin pons_N = mkN "pons" "ponses" ;
+lin pontifex_N = mkN "pontifex" "pontifexes" ;
+lin pontiff_N = mkN "pontiff" "pontiffs" ;
+lin pontifical_A = mkAMost "pontifical" "pontifically" ;
+lin pontifical_N = mkN "pontifical" "pontificals" ;
+lin pontificate_N = mkN "pontificate" "pontificates" ;
+lin pontificate_V = mkV "pontificate" "pontificated" "pontificated" ;
+lin pontoon_N = mkN "pontoon" "pontoons" ;
+lin pony_N = mkN "pony" "ponies" ;
+lin pony_V = mkV "pony" "ponied" "ponied" ;
+lin pony_trekking_N = mkN "pony-trekking" "pony-trekkings" ;
+lin ponytail_N = mkN "ponytail" "ponytails" ;
+lin pooch_N = mkN "pooch" "pooches" ;
+lin pood_N = mkN "pood" "poods" ;
+lin poodle_N = mkN "poodle" "poodles" ;
+lin poof_N = mkN "poof" "poofs" ;
+lin pooh_pooh_V = mkV "pooh-pooh" "pooh-poohed" "pooh-poohed" ;
+lin pool_N = mkN "pool" "pools" ;
+lin pool_V = mkV "pool" "pooled" "pooled" ;
+lin pooler_N = mkN "pooler" "poolers" ;
+lin poolroom_N = mkN "poolroom" "poolrooms" ;
+lin poon_N = mkN "poon" "poons" ;
+lin poop_N = mkN "poop" "poops" ;
+lin poop_V = mkV "poop" "pooped" "pooped" ;
+lin poor_A = mkA "poor" "poorer" "poorest" "poorly" ;
+lin poor_box_N = mkN "poor-box" "poor-boxes" ;
+lin poor_rate_N = mkN "poor-rate" "poor-rates" ;
+lin poor_spirited_A = mkAMost "poor-spirited" "poor-spiritedly" ;
+lin poorhouse_N = mkN "poorhouse" "poorhouses" ;
+lin poorly_A = mkAMost "poorly" "poorlily" ;
+lin poorness_N = mkN "poorness" "poornesses" ;
+lin poorwill_N = mkN "poorwill" "poorwills" ;
+lin pootle_V = mkV "pootle" "pootled" "pootled" ;
+lin pop_A = mkAMost "pop" "poply" ;
+lin pop_Adv = mkAdv "pop" ;
+lin pop_N = mkN "pop" "pops" ;
+lin pop_V = mkV "pop" "popped" "popped" ;
+lin popcorn_N = mkN "popcorn" "popcorns" ;
+lin pope_N = mkN "pope" "popes" ;
+lin popery_N = mkN "popery" "poperies" ;
+lin popeyed_A = mkAMost "popeyed" "popeyedly" ;
+lin popgun_N = mkN "popgun" "popguns" ;
+lin popinjay_N = mkN "popinjay" "popinjays" ;
+lin popish_A = mkAMost "popish" "popishly" ;
+lin poplar_N = mkN "poplar" "poplars" ;
+lin poplin_N = mkN "poplin" "poplins" ;
+lin popliteal_A = mkAMost "popliteal" "popliteally" ;
+lin popover_N = mkN "popover" "popovers" ;
+lin poppa_N = mkN "poppa" "poppas" ;
+lin popper_N = mkN "popper" "poppers" ;
+lin poppet_N = mkN "poppet" "poppets" ;
+lin poppy_N = mkN "poppy" "poppies" ;
+lin poppycock_N = mkN "poppycock" "poppycocks" ;
+lin populace_N = mkN "populace" "populaces" ;
+lin popular_A = mkAMost "popular" "popularly" ;
+lin popularism_N = mkN "popularism" "popularisms" ;
+lin popularity_N = mkN "popularity" "popularities" ;
+lin popularization_N = mkN "popularization" "popularizations" ;
+lin popularize_V = mkV "popularize" "popularized" "popularized" ;
+lin popularizer_N = mkN "popularizer" "popularizers" ;
+lin populate_V = mkV "populate" "populated" "populated" ;
+lin population_N = mkN "population" "populations" ;
+lin populism_N = mkN "populism" "populisms" ;
+lin populist_N = mkN "populist" "populists" ;
+lin populous_A = mkAMost "populous" "populously" ;
+lin porbeagle_N = mkN "porbeagle" "porbeagles" ;
+lin porcelain_N = mkN "porcelain" "porcelains" ;
+lin porch_N = mkN "porch" "porches" ;
+lin porcine_A = mkAMost "porcine" "porcinely" ;
+lin porcupine_N = mkN "porcupine" "porcupines" ;
+lin porcupinefish_N = mkN "porcupinefish" "porcupinefishes" ;
+lin pore_N = mkN "pore" "pores" ;
+lin pore_V = mkV "pore" "pored" "pored" ;
+lin porgy_N = mkN "porgy" "porgies" ;
+lin pork_N = mkN "pork" "porks" ;
+lin pork_barrel_N = mkN "pork-barrel" "pork-barrels" ;
+lin pork_butcher_N = mkN "pork-butcher" "pork-butchers" ;
+lin porkchop_N = mkN "porkchop" "porkchops" ;
+lin porker_N = mkN "porker" "porkers" ;
+lin porkfish_N = mkN "porkfish" "porkfishes" ;
+lin porkholt_N = mkN "porkholt" "porkholts" ;
+lin porkpie_N = mkN "porkpie" "porkpies" ;
+lin porn_N = mkN "porn" "porns" ;
+lin pornographer_N = mkN "pornographer" "pornographers" ;
+lin pornographic_A = mkAMost "pornographic" "pornographicly" ;
+lin pornographically_Adv = mkAdv "pornographically" ;
+lin pornography_N = mkN "pornography" "pornographies" ;
+lin porose_A = mkAMost "porose" "porosely" ;
+lin porosity_N = mkN "porosity" "porosities" ;
+lin porous_A = mkAMost "porous" "porously" ;
+lin porousness_N = mkN "porousness" "porousnesses" ;
+lin porphyria_N = mkN "porphyria" "porphyrias" ;
+lin porphyrin_N = mkN "porphyrin" "porphyrins" ;
+lin porphyritic_A = mkAMost "porphyritic" "porphyriticly" ;
+lin porphyry_N = mkN "porphyry" "porphyries" ;
+lin porpoise_N = mkN "porpoise" "porpoises" ;
+lin porridge_N = mkN "porridge" "porridges" ;
+lin porringer_N = mkN "porringer" "porringers" ;
+lin port_A = mkA "port" "porter" "portest" "portly" ;
+lin port_N = mkN "port" "ports" ;
+lin port_V = mkV "port" "ported" "ported" ;
+lin portability_N = mkN "portability" "portabilities" ;
+lin portable_A = mkAMost "portable" "portably" ;
+lin portable_N = mkN "portable" "portables" ;
+lin portage_N = mkN "portage" "portages" ;
+lin portal_N = mkN "portal" "portals" ;
+lin portcullis_N = mkN "portcullis" "portcullises" ;
+lin porte_cochère_N = mkN "porte-cochère" "porte-cochères" ;
+lin portend_V = mkV "portend" "portended" "portended" ;
+lin portent_N = mkN "portent" "portents" ;
+lin portentous_A = mkAMost "portentous" "portentously" ;
+lin porter_N = mkN "porter" "porters" ;
+lin porterage_N = mkN "porterage" "porterages" ;
+lin porterhouse_N = mkN "porterhouse" "porterhouses" ;
+lin portfolio_N = mkN "portfolio" "portfolios" ;
+lin porthole_N = mkN "porthole" "portholes" ;
+lin portico_N = mkN "portico" "porticos" ;
+lin portion_N = mkN "portion" "portions" ;
+lin portion_V = mkV "portion" "portioned" "portioned" ;
+lin portière_N = mkN "portière" "portières" ;
+lin portly_A = mkAMost "portly" "portlily" ;
+lin portmanteau_N = mkN "portmanteau" "portmanteaus" ;
+lin portrait_N = mkN "portrait" "portraits" ;
+lin portraitist_N = mkN "portraitist" "portraitists" ;
+lin portraiture_N = mkN "portraiture" "portraitures" ;
+lin portray_V = mkV "portray" "portrayed" "portrayed" ;
+lin portrayal_N = mkN "portrayal" "portrayals" ;
+lin portulaca_N = mkN "portulaca" "portulacas" ;
+lin portwatcher_N = mkN "portwatcher" "portwatchers" ;
+lin pose_N = mkN "pose" "poses" ;
+lin pose_V = mkV "pose" "posed" "posed" ;
+lin poser_N = mkN "poser" "posers" ;
+lin poseur_N = mkN "poseur" "poseurs" ;
+lin poseuse_N = mkN "poseuse" "IRREG" ;
+lin posh_A = mkA "posh" "posher" "poshest" "poshly" ;
+lin posh_V = mkV "posh" "poshed" "poshed" ;
+lin posit_V = mkV "posit" "posited" "posited" ;
+lin position_N = mkN "position" "positions" ;
+lin position_V = mkV "position" "positioned" "positioned" ;
+lin positionable_A = mkAMost "positionable" "positionably" ;
+lin positional_A = mkAMost "positional" "positionally" ;
+lin positive_A = mkAMost "positive" "positively" ;
+lin positive_N = mkN "positive" "positives" ;
+lin positiveness_N = mkN "positiveness" "positivenesses" ;
+lin positivism_N = mkN "positivism" "positivisms" ;
+lin positivist_A = mkAMost "positivist" "positivistly" ;
+lin positivist_N = mkN "positivist" "positivists" ;
+lin positivity_N = mkN "positivity" "positivities" ;
+lin positron_N = mkN "positron" "positrons" ;
+lin posology_N = mkN "posology" "posologies" ;
+lin posse_N = mkN "posse" "posses" ;
+lin posseman_N = mkN "posseman" "possemans" ;
+lin possess_V = mkV "possess" "possessed" "possessed" ;
+lin possession_N = mkN "possession" "possessions" ;
+lin possessive_A = mkAMost "possessive" "possessively" ;
+lin possessiveness_N = mkN "possessiveness" "possessivenesses" ;
+lin possessor_N = mkN "possessor" "possessors" ;
+lin posset_N = mkN "posset" "possets" ;
+lin possibility_N = mkN "possibility" "possibilities" ;
+lin possible_A = mkAMost "possible" "possibly" ;
+lin possible_N = mkN "possible" "possibles" ;
+lin possum_N = mkN "possum" "possums" ;
+lin post_N = mkN "post" "posts" ;
+lin post_Prep = mkPrep "post" ;
+lin post_V = mkV "post" "posted" "posted" ;
+lin post_chaise_N = mkN "post-chaise" "post-chaises" ;
+lin post_free_A = mkAMost "post-free" "post-freely" ;
+lin post_free_Adv = mkAdv "post-free" ;
+lin post_haste_Adv = mkAdv "post-haste" ;
+lin post_horse_N = mkN "post-horse" "post-horses" ;
+lin post_meridiem_Adv = mkAdv "post meridiem" ;
+lin post_mortem_A = mkAMost "post-mortem" "post-mortemly" ;
+lin post_mortem_N = mkN "post-mortem" "post-mortems" ;
+lin post_paid_A = mkAMost "post-paid" "post-paidly" ;
+lin post_paid_Adv = mkAdv "post-paid" ;
+lin postage_N = mkN "postage" "postages" ;
+lin postage_stamp_N = mkN "postage-stamp" "postage-stamps" ;
+lin postal_A = mkAMost "postal" "postally" ;
+lin postbag_N = mkN "postbag" "postbags" ;
+lin postbiblical_A = mkAMost "postbiblical" "postbiblically" ;
+lin postbox_N = mkN "postbox" "postboxes" ;
+lin postcard_N = mkN "postcard" "postcards" ;
+lin postcode_N = mkN "postcode" "postcodes" ;
+lin postdate_V = mkV "postdate" "postdated" "postdated" ;
+lin postdiluvian_A = mkAMost "postdiluvian" "postdiluvianly" ;
+lin postdiluvian_N = mkN "postdiluvian" "postdiluvians" ;
+lin postdoc_N = mkN "postdoc" "postdocs" ;
+lin postdoctoral_A = mkAMost "postdoctoral" "postdoctorally" ;
+lin postdoctoral_N = mkN "postdoctoral" "postdoctorals" ;
+lin poste_restante_N = mkN "poste restante" "poste restantes" ;
+lin poster_N = mkN "poster" "posters" ;
+lin posterior_A = mkAMost "posterior" "posteriorly" ;
+lin posterior_N = mkN "posterior" "posteriors" ;
+lin posteriority_N = mkN "posteriority" "posteriorities" ;
+lin posterity_N = mkN "posterity" "posterities" ;
+lin postern_N = mkN "postern" "posterns" ;
+lin postexilic_A = mkAMost "postexilic" "postexilicly" ;
+lin postganglionic_A = mkAMost "postganglionic" "postganglionicly" ;
+lin postglacial_A = mkAMost "postglacial" "postglacially" ;
+lin postgraduate_A = mkAMost "postgraduate" "postgraduately" ;
+lin postgraduate_N = mkN "postgraduate" "postgraduates" ;
+lin posthitis_N = mkN "posthitis" "posthitises" ;
+lin posthole_N = mkN "posthole" "postholes" ;
+lin posthouse_N = mkN "posthouse" "posthouses" ;
+lin posthumous_A = mkAMost "posthumous" "posthumously" ;
+lin postictal_A = mkAMost "postictal" "postictally" ;
+lin postilion_N = mkN "postilion" "postilions" ;
+lin postillion_N = mkN "postillion" "postillions" ;
+lin postindustrial_A = mkAMost "postindustrial" "postindustrially" ;
+lin posting_N = mkN "posting" "postings" ;
+lin postlude_N = mkN "postlude" "postludes" ;
+lin postman_N = mkN "postman" "postmen" ;
+lin postmark_N = mkN "postmark" "postmarks" ;
+lin postmark_V = mkV "postmark" "postmarked" "postmarked" ;
+lin postmaster_N = mkN "postmaster" "postmasters" ;
+lin postmenopausal_A = mkAMost "postmenopausal" "postmenopausally" ;
+lin postmeridian_A = mkAMost "postmeridian" "postmeridianly" ;
+lin postmillennial_A = mkAMost "postmillennial" "postmillennially" ;
+lin postmistress_N = mkN "postmistress" "postmistresses" ;
+lin postmodernism_N = mkN "postmodernism" "postmodernisms" ;
+lin postmodernist_A = mkAMost "postmodernist" "postmodernistly" ;
+lin postmortem_A = mkAMost "postmortem" "postmortemly" ;
+lin postmortem_N = mkN "postmortem" "postmortems" ;
+lin postnatal_A = mkAMost "postnatal" "postnatally" ;
+lin postnuptial_A = mkAMost "postnuptial" "postnuptially" ;
+lin postoperative_A = mkAMost "postoperative" "postoperatively" ;
+lin postpaid_A = mkAMost "postpaid" "postpaidly" ;
+lin postpone_V = mkV "postpone" "postponed" "postponed" ;
+lin postponement_N = mkN "postponement" "postponements" ;
+lin postposition_N = mkN "postposition" "postpositions" ;
+lin postpositive_A = mkAMost "postpositive" "postpositively" ;
+lin postprandial_A = mkAMost "postprandial" "postprandially" ;
+lin postscript_N = mkN "postscript" "postscripts" ;
+lin postulant_N = mkN "postulant" "postulants" ;
+lin postulate_N = mkN "postulate" "postulates" ;
+lin postulate_V = mkV "postulate" "postulated" "postulated" ;
+lin postulation_N = mkN "postulation" "postulations" ;
+lin postulator_N = mkN "postulator" "postulators" ;
+lin postural_A = mkAMost "postural" "posturally" ;
+lin posture_N = mkN "posture" "postures" ;
+lin posture_V = mkV "posture" "postured" "postured" ;
+lin posturer_N = mkN "posturer" "posturers" ;
+lin posturing_N = mkN "posturing" "posturings" ;
+lin postwar_A = mkAMost "postwar" "postwarly" ;
+lin posy_N = mkN "posy" "posies" ;
+lin pot_N = mkN "pot" "pots" ;
+lin pot_V = mkV "pot" "potted" "potted" ;
+lin pot_shot_N = mkN "pot-shot" "pot-shots" ;
+lin pot_trained_A = mkAMost "pot-trained" "pot-trainedly" ;
+lin potable_A = mkAMost "potable" "potably" ;
+lin potage_N = mkN "potage" "potages" ;
+lin potash_N = mkN "potash" "potashes" ;
+lin potassium_N = mkN "potassium" "potassiums" ;
+lin potation_N = mkN "potation" "potations" ;
+lin potato_N = mkN "potato" "potatoes" ;
+lin potbellied_A = mkAMost "potbellied" "potbelliedly" ;
+lin potbelly_N = mkN "potbelly" "potbellies" ;
+lin potboiler_N = mkN "potboiler" "potboilers" ;
+lin potbound_A = mkAMost "potbound" "potboundly" ;
+lin potboy_N = mkN "potboy" "potboys" ;
+lin poteen_N = mkN "poteen" "poteens" ;
+lin potency_N = mkN "potency" "potencies" ;
+lin potent_A = mkAMost "potent" "potently" ;
+lin potentate_N = mkN "potentate" "potentates" ;
+lin potential_A = mkAMost "potential" "potentially" ;
+lin potential_N = mkN "potential" "potentials" ;
+lin potentiality_N = mkN "potentiality" "potentialities" ;
+lin potentiation_N = mkN "potentiation" "potentiations" ;
+lin potentiometer_N = mkN "potentiometer" "potentiometers" ;
+lin pothead_N = mkN "pothead" "potheads" ;
+lin pother_N = mkN "pother" "pothers" ;
+lin potherb_N = mkN "potherb" "potherbs" ;
+lin potholder_N = mkN "potholder" "potholders" ;
+lin pothole_N = mkN "pothole" "potholes" ;
+lin potholer_N = mkN "potholer" "potholers" ;
+lin pothook_N = mkN "pothook" "pothooks" ;
+lin pothos_N = mkN "pothos" "pothoses" ;
+lin pothouse_N = mkN "pothouse" "pothouses" ;
+lin pothunter_N = mkN "pothunter" "pothunters" ;
+lin potion_N = mkN "potion" "potions" ;
+lin potlatch_N = mkN "potlatch" "potlatches" ;
+lin potluck_N = mkN "potluck" "potlucks" ;
+lin potman_N = mkN "potman" "potmen" ;
+lin potoroo_N = mkN "potoroo" "potoroos" ;
+lin potpie_N = mkN "potpie" "potpies" ;
+lin potpourri_N = mkN "potpourri" "potpourris" ;
+lin potsherd_N = mkN "potsherd" "potsherds" ;
+lin potshot_N = mkN "potshot" "potshots" ;
+lin pottage_N = mkN "pottage" "pottages" ;
+lin potter_N = mkN "potter" "potters" ;
+lin potter_V = mkV "potter" "pottered" "pottered" ;
+lin potterer_N = mkN "potterer" "potterers" ;
+lin pottery_N = mkN "pottery" "potteries" ;
+lin pottle_N = mkN "pottle" "pottles" ;
+lin potto_N = mkN "potto" "pottoes" ;
+lin potty_A = mkA "potty" "pottier" "pottiest" "pottily" ;
+lin potty_N = mkN "potty" "potties" ;
+lin pouch_N = mkN "pouch" "pouches" ;
+lin pouch_V = mkV "pouch" "pouched" "pouched" ;
+lin pouf_N = mkN "pouf" "poufs" ;
+lin pouffe_N = mkN "pouffe" "pouffes" ;
+lin poulette_N = mkN "poulette" "poulettes" ;
+lin poulterer_N = mkN "poulterer" "poulterers" ;
+lin poultice_N = mkN "poultice" "poultices" ;
+lin poultice_V = mkV "poultice" "poulticed" "poulticed" ;
+lin poultry_N = mkN "poultry" "poultries" ;
+lin poultryman_N = mkN "poultryman" "poultrymen" ;
+lin pounce_N = mkN "pounce" "pounces" ;
+lin pounce_V = mkV "pounce" "pounced" "pounced" ;
+lin pound_N = mkN "pound" "pounds" ;
+lin pound_V = mkV "pound" "pounded" "pounded" ;
+lin poundage_N = mkN "poundage" "poundages" ;
+lin poundal_N = mkN "poundal" "poundals" ;
+lin pounder_N = mkN "pounder" "pounders" ;
+lin pounding_N = mkN "pounding" "poundings" ;
+lin pour_V = mkV "pour" "poured" "poured" ;
+lin pout_N = mkN "pout" "pouts" ;
+lin pout_V = mkV "pout" "pouted" "pouted" ;
+lin poutingly_Adv = mkAdv "poutingly" ;
+lin poverty_N = mkN "poverty" "poverties" ;
+lin poverty_stricken_A = mkAMost "poverty-stricken" "poverty-strickenly" ;
+lin pow_N = mkN "pow" "pows" ;
+lin powder_N = mkN "powder" "powders" ;
+lin powder_V = mkV "powder" "powdered" "powdered" ;
+lin powder_flask_N = mkN "powder-flask" "powder-flasks" ;
+lin powder_horn_N = mkN "powder-horn" "powder-horns" ;
+lin powder_magazine_N = mkN "powder-magazine" "powder-magazines" ;
+lin powder_puff_N = mkN "powder-puff" "powder-puffs" ;
+lin powder_room_N = mkN "powder-room" "powder-rooms" ;
+lin powderer_N = mkN "powderer" "powderers" ;
+lin powderpuff_N = mkN "powderpuff" "powderpuffs" ;
+lin powdery_A = mkAMost "powdery" "powderily" ;
+lin power_N = mkN "power" "powers" ;
+lin power_V = mkV "power" "powered" "powered" ;
+lin power_dive_N = mkN "power-dive" "power-dives" ;
+lin power_dive_V = mkV "power-dive" "power-dived" "power-dived" ;
+lin power_point_N = mkN "power-point" "power-points" ;
+lin power_station_N = mkN "power-station" "power-stations" ;
+lin powerboat_N = mkN "powerboat" "powerboats" ;
+lin powerful_A = mkAMost "powerful" "powerfully" ;
+lin powerhouse_N = mkN "powerhouse" "powerhouses" ;
+lin powerless_A = mkAMost "powerless" "powerlessly" ;
+lin powerlessness_N = mkN "powerlessness" "powerlessnesses" ;
+lin powwow_N = mkN "powwow" "powwows" ;
+lin powwow_V = mkV "powwow" "powwowed" "powwowed" ;
+lin pox_N = mkN "pox" "IRREG" ;
+lin poxvirus_N = mkN "poxvirus" "poxviruses" ;
+lin pr_N = mkN "pr" "prs" ;
+lin practicability_N = mkN "practicability" "practicabilities" ;
+lin practicable_A = mkAMost "practicable" "practicably" ;
+lin practical_A = mkAMost "practical" "practically" ;
+lin practicality_N = mkN "practicality" "practicalities" ;
+lin practice_N = mkN "practice" "practices" ;
+lin practice_V = mkV "practice" "practiced" "practiced" ;
+lin practician_N = mkN "practician" "practicians" ;
+lin practise_V = mkV "practise" "practised" "practised" ;
+lin practitioner_N = mkN "practitioner" "practitioners" ;
+lin praenomen_N = mkN "praenomen" "praenomens" ;
+lin praesidium_N = mkN "praesidium" "praesidiums" ;
+lin praetor_N = mkN "praetor" "praetors" ;
+lin praetorian_A = mkAMost "praetorian" "praetorianly" ;
+lin praetorium_N = mkN "praetorium" "praetoriums" ;
+lin praetorship_N = mkN "praetorship" "praetorships" ;
+lin pragmatic_A = mkAMost "pragmatic" "pragmaticly" ;
+lin pragmatically_Adv = mkAdv "pragmatically" ;
+lin pragmatics_N = mkN "pragmatics" "pragmaticses" ;
+lin pragmatism_N = mkN "pragmatism" "pragmatisms" ;
+lin pragmatist_N = mkN "pragmatist" "pragmatists" ;
+lin prairie_N = mkN "prairie" "prairies" ;
+lin praise_N = mkN "praise" "praises" ;
+lin praise_V = mkV "praise" "praised" "praised" ;
+lin praiseworthiness_N = mkN "praiseworthiness" "praiseworthinesses" ;
+lin praiseworthy_A = mkAMost "praiseworthy" "praiseworthily" ;
+lin praisworthiness_N = mkN "praisworthiness" "praisworthinesses" ;
+lin praline_N = mkN "praline" "pralines" ;
+lin pram_N = mkN "pram" "prams" ;
+lin prance_N = mkN "prance" "prances" ;
+lin prance_V = mkV "prance" "pranced" "pranced" ;
+lin prancer_N = mkN "prancer" "prancers" ;
+lin prandial_A = mkAMost "prandial" "prandially" ;
+lin prang_N = mkN "prang" "prangs" ;
+lin prank_N = mkN "prank" "pranks" ;
+lin prankishness_N = mkN "prankishness" "prankishnesses" ;
+lin prankster_N = mkN "prankster" "pranksters" ;
+lin praseodymium_N = mkN "praseodymium" "praseodymiums" ;
+lin prate_N = mkN "prate" "prates" ;
+lin prate_V = mkV "prate" "prated" "prated" ;
+lin pratfall_N = mkN "pratfall" "pratfalls" ;
+lin pratincole_N = mkN "pratincole" "pratincoles" ;
+lin prattle_N = mkN "prattle" "prattles" ;
+lin prattle_V = mkV "prattle" "prattled" "prattled" ;
+lin prattler_N = mkN "prattler" "prattlers" ;
+lin pravastatin_N = mkN "pravastatin" "pravastatins" ;
+lin prawn_N = mkN "prawn" "prawns" ;
+lin prawn_V = mkV "prawn" "prawned" "prawned" ;
+lin pray_V = mkV "pray" "prayed" "prayed" ;
+lin praya_N = mkN "praya" "prayas" ;
+lin prayer_N = mkN "prayer" "prayers" ;
+lin prayer_book_N = mkN "prayer-book" "prayer-books" ;
+lin prayer_mat_N = mkN "prayer-mat" "prayer-mats" ;
+lin prayer_meeting_N = mkN "prayer-meeting" "prayer-meetings" ;
+lin prayer_rug_N = mkN "prayer-rug" "prayer-rugs" ;
+lin prayer_wheel_N = mkN "prayer-wheel" "prayer-wheels" ;
+lin prayerful_A = mkAMost "prayerful" "prayerfully" ;
+lin prazosin_N = mkN "prazosin" "prazosins" ;
+lin pre_approve_V = mkV "pre-approve" "pre-approved" "pre-approved" ;
+lin pre_eminence_N = mkN "pre-eminence" "pre-eminences" ;
+lin pre_eminent_A = mkAMost "pre-eminent" "pre-eminently" ;
+lin pre_empt_V = mkV "pre-empt" "pre-empted" "pre-empted" ;
+lin pre_emption_N = mkN "pre-emption" "pre-emptions" ;
+lin pre_emptive_A = mkAMost "pre-emptive" "pre-emptively" ;
+lin pre_exist_V = mkV "pre-exist" "pre-existed" "pre-existed" ;
+lin pre_existence_N = mkN "pre-existence" "pre-existences" ;
+lin pre_existent_A = mkAMost "pre-existent" "pre-existently" ;
+lin pre_packaged_A = mkAMost "pre-packaged" "pre-packagedly" ;
+lin pre_raphaelite_A = mkAMost "pre-raphaelite" "pre-raphaelitely" ;
+lin pre_raphaelite_N = mkN "pre-raphaelite" "pre-raphaelites" ;
+lin pre_register_V = mkV "pre-register" "pre-registered" "pre-registered" ;
+lin pre_sign_V = mkV "pre-sign" "pre-signed" "pre-signed" ;
+lin pre_test_V = mkV "pre-test" "pre-tested" "pre-tested" ;
+lin preach_V = mkV "preach" "preached" "preached" ;
+lin preacher_N = mkN "preacher" "preachers" ;
+lin preachification_N = mkN "preachification" "preachifications" ;
+lin preachify_V = mkV "preachify" "preachified" "preachified" ;
+lin preachy_A = mkA "preachy" "preachier" "preachiest" "preachily" ;
+lin preamble_N = mkN "preamble" "preambles" ;
+lin preanal_A = mkAMost "preanal" "preanally" ;
+lin prearrange_V = mkV "prearrange" "prearranged" "prearranged" ;
+lin prearrangement_N = mkN "prearrangement" "prearrangements" ;
+lin prebend_N = mkN "prebend" "prebends" ;
+lin prebendary_N = mkN "prebendary" "prebendaries" ;
+lin precancerous_A = mkAMost "precancerous" "precancerously" ;
+lin precarious_A = mkAMost "precarious" "precariously" ;
+lin precariousness_N = mkN "precariousness" "precariousnesses" ;
+lin precast_A = mkAMost "precast" "precastly" ;
+lin precatory_A = mkAMost "precatory" "precatorily" ;
+lin precaution_N = mkN "precaution" "precautions" ;
+lin precautionary_A = mkAMost "precautionary" "precautionarily" ;
+lin precede_V = mkV "precede" "preceded" "preceded" ;
+lin precedence_N = mkN "precedence" "precedences" ;
+lin precedent_A = mkAMost "precedent" "precedently" ;
+lin precedent_N = mkN "precedent" "precedents" ;
+lin precedented_A = mkAMost "precedented" "precedentedly" ;
+lin precedential_A = mkAMost "precedential" "precedentially" ;
+lin preceding_A = mkAMost "preceding" "precedingly" ;
+lin precentor_N = mkN "precentor" "precentors" ;
+lin precentorship_N = mkN "precentorship" "precentorships" ;
+lin precept_N = mkN "precept" "precepts" ;
+lin preceptor_N = mkN "preceptor" "preceptors" ;
+lin preceptorship_N = mkN "preceptorship" "preceptorships" ;
+lin precession_N = mkN "precession" "precessions" ;
+lin prechlorination_N = mkN "prechlorination" "prechlorinations" ;
+lin precinct_N = mkN "precinct" "precincts" ;
+lin preciosity_N = mkN "preciosity" "preciosities" ;
+lin precious_A = mkAMost "precious" "preciously" ;
+lin precious_Adv = mkAdv "precious" ;
+lin preciousness_N = mkN "preciousness" "preciousnesses" ;
+lin precipice_N = mkN "precipice" "precipices" ;
+lin precipitant_N = mkN "precipitant" "precipitants" ;
+lin precipitate_A = mkAMost "precipitate" "precipitately" ;
+lin precipitate_N = mkN "precipitate" "precipitates" ;
+lin precipitate_V = mkV "precipitate" "precipitated" "precipitated" ;
+lin precipitation_N = mkN "precipitation" "precipitations" ;
+lin precipitator_N = mkN "precipitator" "precipitators" ;
+lin precipitin_N = mkN "precipitin" "precipitins" ;
+lin precipitous_A = mkAMost "precipitous" "precipitously" ;
+lin precise_A = mkAMost "precise" "precisely" ;
+lin preciseness_N = mkN "preciseness" "precisenesses" ;
+lin precision_N = mkN "precision" "precisions" ;
+lin preclinical_A = mkAMost "preclinical" "preclinically" ;
+lin preclude_V = mkV "preclude" "precluded" "precluded" ;
+lin preclusion_N = mkN "preclusion" "preclusions" ;
+lin preclusive_A = mkAMost "preclusive" "preclusively" ;
+lin precocial_A = mkAMost "precocial" "precocially" ;
+lin precocious_A = mkAMost "precocious" "precociously" ;
+lin precociousness_N = mkN "precociousness" "precociousnesses" ;
+lin precocity_N = mkN "precocity" "precocities" ;
+lin precognition_N = mkN "precognition" "precognitions" ;
+lin preconceive_V = mkV "preconceive" "preconceived" "preconceived" ;
+lin preconception_N = mkN "preconception" "preconceptions" ;
+lin preconcerted_A = mkAMost "preconcerted" "preconcertedly" ;
+lin precondition_N = mkN "precondition" "preconditions" ;
+lin preconditioned_A = mkAMost "preconditioned" "preconditionedly" ;
+lin precooked_A = mkAMost "precooked" "precookedly" ;
+lin precooled_A = mkAMost "precooled" "precooledly" ;
+lin precordial_A = mkAMost "precordial" "precordially" ;
+lin precordium_N = mkN "precordium" "precordiums" ;
+lin precursor_N = mkN "precursor" "precursors" ;
+lin precursory_A = mkAMost "precursory" "precursorily" ;
+lin predaceous_A = mkAMost "predaceous" "predaceously" ;
+lin predacious_A = mkAMost "predacious" "predaciously" ;
+lin predate_V = mkV "predate" "predated" "predated" ;
+lin predation_N = mkN "predation" "predations" ;
+lin predator_N = mkN "predator" "predators" ;
+lin predatory_A = mkAMost "predatory" "predatorily" ;
+lin predecease_V = mkV "predecease" "predeceased" "predeceased" ;
+lin predecessor_N = mkN "predecessor" "predecessors" ;
+lin predestinarian_A = mkAMost "predestinarian" "predestinarianly" ;
+lin predestinarianism_N = mkN "predestinarianism" "predestinarianisms" ;
+lin predestinate_A = mkAMost "predestinate" "predestinately" ;
+lin predestinate_V = mkV "predestinate" "predestinated" "predestinated" ;
+lin predestination_N = mkN "predestination" "predestinations" ;
+lin predestine_V = mkV "predestine" "predestined" "predestined" ;
+lin predetermination_N = mkN "predetermination" "predeterminations" ;
+lin predetermine_V = mkV "predetermine" "predetermined" "predetermined" ;
+lin predicament_N = mkN "predicament" "predicaments" ;
+lin predicate_N = mkN "predicate" "predicates" ;
+lin predicate_V = mkV "predicate" "predicated" "predicated" ;
+lin predicative_A = mkAMost "predicative" "predicatively" ;
+lin predicator_N = mkN "predicator" "predicators" ;
+lin predict_V = mkV "predict" "predicted" "predicted" ;
+lin predictability_N = mkN "predictability" "predictabilities" ;
+lin predictable_A = mkAMost "predictable" "predictably" ;
+lin prediction_N = mkN "prediction" "predictions" ;
+lin predictive_A = mkAMost "predictive" "predictively" ;
+lin predictor_N = mkN "predictor" "predictors" ;
+lin predigest_V = mkV "predigest" "predigested" "predigested" ;
+lin predilection_N = mkN "predilection" "predilections" ;
+lin predispose_V = mkV "predispose" "predisposed" "predisposed" ;
+lin predisposition_N = mkN "predisposition" "predispositions" ;
+lin prednisolone_N = mkN "prednisolone" "prednisolones" ;
+lin prednisone_N = mkN "prednisone" "prednisones" ;
+lin predominance_N = mkN "predominance" "predominances" ;
+lin predominant_A = mkAMost "predominant" "predominantly" ;
+lin predominate_V = mkV "predominate" "predominated" "predominated" ;
+lin predomination_N = mkN "predomination" "predominations" ;
+lin preeclampsia_N = mkN "preeclampsia" "preeclampsias" ;
+lin preemption_N = mkN "preemption" "preemptions" ;
+lin preemptive_A = mkAMost "preemptive" "preemptively" ;
+lin preemptor_N = mkN "preemptor" "preemptors" ;
+lin preen_V = mkV "preen" "preened" "preened" ;
+lin preexistence_N = mkN "preexistence" "preexistences" ;
+lin preexistent_A = mkAMost "preexistent" "preexistently" ;
+lin prefab_A = mkAMost "prefab" "prefably" ;
+lin prefab_N = mkN "prefab" "prefabs" ;
+lin prefabricate_V = mkV "prefabricate" "prefabricated" "prefabricated" ;
+lin prefabrication_N = mkN "prefabrication" "prefabrications" ;
+lin preface_N = mkN "preface" "prefaces" ;
+lin preface_V = mkV "preface" "prefaced" "prefaced" ;
+lin prefaded_A = mkAMost "prefaded" "prefadedly" ;
+lin prefatory_A = mkAMost "prefatory" "prefatorily" ;
+lin prefect_N = mkN "prefect" "prefects" ;
+lin prefectural_A = mkAMost "prefectural" "prefecturally" ;
+lin prefecture_N = mkN "prefecture" "prefectures" ;
+lin prefer_V = mkV "prefer" "preferred" "preferred" ;
+lin preferable_A = mkAMost "preferable" "preferably" ;
+lin preference_N = mkN "preference" "preferences" ;
+lin preferential_A = mkAMost "preferential" "preferentially" ;
+lin preferment_N = mkN "preferment" "preferments" ;
+lin prefiguration_N = mkN "prefiguration" "prefigurations" ;
+lin prefigure_V = mkV "prefigure" "prefigured" "prefigured" ;
+lin prefix_N = mkN "prefix" "prefixes" ;
+lin prefix_V = mkV "prefix" "prefixed" "prefixed" ;
+lin prefixation_N = mkN "prefixation" "prefixations" ;
+lin preformation_N = mkN "preformation" "preformations" ;
+lin prefrontal_A = mkAMost "prefrontal" "prefrontally" ;
+lin pregnancy_N = mkN "pregnancy" "pregnancies" ;
+lin pregnanediol_N = mkN "pregnanediol" "pregnanediols" ;
+lin pregnant_A = mkAMost "pregnant" "pregnantly" ;
+lin preheat_V = mkV "preheat" "preheated" "preheated" ;
+lin prehensile_A = mkAMost "prehensile" "prehensilely" ;
+lin prehensor_N = mkN "prehensor" "prehensors" ;
+lin prehistoric_A = mkAMost "prehistoric" "prehistoricly" ;
+lin prehistorical_A = mkAMost "prehistorical" "prehistorically" ;
+lin prehistory_N = mkN "prehistory" "prehistories" ;
+lin prejudge_V = mkV "prejudge" "prejudged" "prejudged" ;
+lin prejudgement_N = mkN "prejudgement" "prejudgements" ;
+lin prejudgment_N = mkN "prejudgment" "prejudgments" ;
+lin prejudice_N = mkN "prejudice" "prejudices" ;
+lin prejudice_V = mkV "prejudice" "prejudiced" "prejudiced" ;
+lin prejudicial_A = mkAMost "prejudicial" "prejudicially" ;
+lin prelacy_N = mkN "prelacy" "prelacies" ;
+lin prelapsarian_A = mkAMost "prelapsarian" "prelapsarianly" ;
+lin prelate_N = mkN "prelate" "prelates" ;
+lin prelim_N = mkN "prelim" "prelims" ;
+lin preliminary_A = mkAMost "preliminary" "preliminarily" ;
+lin preliminary_N = mkN "preliminary" "preliminaries" ;
+lin preliterate_A = mkAMost "preliterate" "preliterately" ;
+lin prelude_N = mkN "prelude" "preludes" ;
+lin prelude_V = mkV "prelude" "preluded" "preluded" ;
+lin premarital_A = mkAMost "premarital" "premaritally" ;
+lin premature_A = mkAMost "premature" "prematurely" ;
+lin prematureness_N = mkN "prematureness" "prematurenesses" ;
+lin premedical_A = mkAMost "premedical" "premedically" ;
+lin premeditate_V = mkV "premeditate" "premeditated" "premeditated" ;
+lin premeditation_N = mkN "premeditation" "premeditations" ;
+lin premenopausal_A = mkAMost "premenopausal" "premenopausally" ;
+lin premenstrual_A = mkAMost "premenstrual" "premenstrually" ;
+lin premier_A = mkAMost "premier" "premierly" ;
+lin premier_N = mkN "premier" "premiers" ;
+lin premiere_V = mkV "premiere" "premiered" "premiered" ;
+lin premiership_N = mkN "premiership" "premierships" ;
+lin premise_N = mkN "premise" "premises" ;
+lin premise_V = mkV "premise" "premised" "premised" ;
+lin premises_N = mkN "premises" "premiseses" ;
+lin premiss_N = mkN "premiss" "premisses" ;
+lin premiss_V = mkV "premiss" "premissed" "premissed" ;
+lin premium_A = mkAMost "premium" "premiumly" ;
+lin premium_N = mkN "premium" "premiums" ;
+lin première_N = mkN "première" "premières" ;
+lin premolar_N = mkN "premolar" "premolars" ;
+lin premonition_N = mkN "premonition" "premonitions" ;
+lin premonitory_A = mkAMost "premonitory" "premonitorily" ;
+lin prenatal_A = mkAMost "prenatal" "prenatally" ;
+lin prentice_N = mkN "prentice" "prentices" ;
+lin prenuptial_A = mkAMost "prenuptial" "prenuptially" ;
+lin preoccupancy_N = mkN "preoccupancy" "preoccupancies" ;
+lin preoccupation_N = mkN "preoccupation" "preoccupations" ;
+lin preoccupy_V = mkV "preoccupy" "preoccupied" "preoccupied" ;
+lin preoperative_A = mkAMost "preoperative" "preoperatively" ;
+lin preordain_V = mkV "preordain" "preordained" "preordained" ;
+lin prep_N = mkN "prep" "preps" ;
+lin prepackaged_A = mkAMost "prepackaged" "prepackagedly" ;
+lin prepacked_A = mkAMost "prepacked" "prepackedly" ;
+lin preparation_N = mkN "preparation" "preparations" ;
+lin preparatory_A = mkAMost "preparatory" "preparatorily" ;
+lin prepare_V = mkV "prepare" "prepared" "prepared" ;
+lin preparedness_N = mkN "preparedness" "preparednesses" ;
+lin prepay_V = mkV "prepay" "prepaid" "prepaid" ;
+lin prepayment_N = mkN "prepayment" "prepayments" ;
+lin preponderance_N = mkN "preponderance" "preponderances" ;
+lin preponderant_A = mkAMost "preponderant" "preponderantly" ;
+lin preponderate_V = mkV "preponderate" "preponderated" "preponderated" ;
+lin preposition_N = mkN "preposition" "prepositions" ;
+lin prepositional_A = mkAMost "prepositional" "prepositionally" ;
+lin prepossess_V = mkV "prepossess" "prepossessed" "prepossessed" ;
+lin prepossessing_A = mkAMost "prepossessing" "prepossessingly" ;
+lin prepossession_N = mkN "prepossession" "prepossessions" ;
+lin preposterous_A = mkAMost "preposterous" "preposterously" ;
+lin preprandial_A = mkAMost "preprandial" "preprandially" ;
+lin prepuberty_N = mkN "prepuberty" "prepuberties" ;
+lin prepubescent_A = mkAMost "prepubescent" "prepubescently" ;
+lin prepuce_N = mkN "prepuce" "prepuces" ;
+lin prepupal_A = mkAMost "prepupal" "prepupally" ;
+lin prerecord_V = mkV "prerecord" "prerecorded" "prerecorded" ;
+lin prerequisite_A = mkAMost "prerequisite" "prerequisitely" ;
+lin prerequisite_N = mkN "prerequisite" "prerequisites" ;
+lin prerogative_N = mkN "prerogative" "prerogatives" ;
+lin pres_N = mkN "pres" "preses" ;
+lin presage_N = mkN "presage" "presages" ;
+lin presage_V = mkV "presage" "presaged" "presaged" ;
+lin presbyope_N = mkN "presbyope" "presbyopes" ;
+lin presbyopia_N = mkN "presbyopia" "presbyopias" ;
+lin presbyter_N = mkN "presbyter" "presbyters" ;
+lin presbyterian_A = mkAMost "presbyterian" "presbyterianly" ;
+lin presbyterian_N = mkN "presbyterian" "presbyterians" ;
+lin presbyterianism_N = mkN "presbyterianism" "presbyterianisms" ;
+lin presbytery_N = mkN "presbytery" "presbyteries" ;
+lin preschool_N = mkN "preschool" "preschools" ;
+lin preschooler_N = mkN "preschooler" "preschoolers" ;
+lin prescience_N = mkN "prescience" "presciences" ;
+lin prescient_A = mkAMost "prescient" "presciently" ;
+lin prescribe_V = mkV "prescribe" "prescribed" "prescribed" ;
+lin prescript_N = mkN "prescript" "prescripts" ;
+lin prescription_N = mkN "prescription" "prescriptions" ;
+lin prescriptive_A = mkAMost "prescriptive" "prescriptively" ;
+lin prescriptivism_N = mkN "prescriptivism" "prescriptivisms" ;
+lin preseason_N = mkN "preseason" "preseasons" ;
+lin presence_N = mkN "presence" "presences" ;
+lin present_A = mkAMost "present" "presently" ;
+lin present_N = mkN "present" "presents" ;
+lin present_V = mkV "present" "presented" "presented" ;
+lin present_day_A = mkAMost "present-day" "present-daily" ;
+lin presentable_A = mkAMost "presentable" "presentably" ;
+lin presentation_N = mkN "presentation" "presentations" ;
+lin presentational_A = mkAMost "presentational" "presentationally" ;
+lin presenter_N = mkN "presenter" "presenters" ;
+lin presentiment_N = mkN "presentiment" "presentiments" ;
+lin presentism_N = mkN "presentism" "presentisms" ;
+lin presentist_N = mkN "presentist" "presentists" ;
+lin presentment_N = mkN "presentment" "presentments" ;
+lin presentness_N = mkN "presentness" "presentnesses" ;
+lin preservable_A = mkAMost "preservable" "preservably" ;
+lin preservation_N = mkN "preservation" "preservations" ;
+lin preservationist_N = mkN "preservationist" "preservationists" ;
+lin preservative_A = mkAMost "preservative" "preservatively" ;
+lin preservative_N = mkN "preservative" "preservatives" ;
+lin preserve_N = mkN "preserve" "preserves" ;
+lin preserve_V = mkV "preserve" "preserved" "preserved" ;
+lin preserver_N = mkN "preserver" "preservers" ;
+lin preset_A = mkAMost "preset" "presetly" ;
+lin preside_V = mkV "preside" "presided" "presided" ;
+lin presidency_N = mkN "presidency" "presidencies" ;
+lin president_N = mkN "president" "presidents" ;
+lin presidential_A = mkAMost "presidential" "presidentially" ;
+lin presidio_N = mkN "presidio" "presidios" ;
+lin presidium_N = mkN "presidium" "presidiums" ;
+lin presocratic_A = mkAMost "presocratic" "presocraticly" ;
+lin press_N = mkN "press" "presses" ;
+lin press_V = mkV "press" "pressed" "pressed" ;
+lin press_agency_N = mkN "press-agency" "press-agencies" ;
+lin press_agent_N = mkN "press-agent" "press-agents" ;
+lin press_box_N = mkN "press-box" "press-boxes" ;
+lin press_clipping_N = mkN "press-clipping" "press-clippings" ;
+lin press_cutting_N = mkN "press-cutting" "press-cuttings" ;
+lin press_gallery_N = mkN "press-gallery" "press-galleries" ;
+lin press_gang_N = mkN "press-gang" "press-gangs" ;
+lin press_lord_N = mkN "press-lord" "press-lords" ;
+lin press_photographer_N = mkN "press-photographer" "press-photographers" ;
+lin press_stud_N = mkN "press-stud" "press-studs" ;
+lin press_up_N = mkN "press-up" "press-ups" ;
+lin pressing_A = mkAMost "pressing" "pressingly" ;
+lin pressing_N = mkN "pressing" "pressings" ;
+lin pressman_N = mkN "pressman" "pressmen" ;
+lin pressmark_N = mkN "pressmark" "pressmarks" ;
+lin pressor_A = mkAMost "pressor" "pressorly" ;
+lin pressure_N = mkN "pressure" "pressures" ;
+lin pressure_V = mkV "pressure" "pressured" "pressured" ;
+lin pressure_cooker_N = mkN "pressure-cooker" "pressure-cookers" ;
+lin pressure_gauge_N = mkN "pressure-gauge" "pressure-gauges" ;
+lin pressurized_A = mkAMost "pressurized" "pressurizedly" ;
+lin prestidigitation_N = mkN "prestidigitation" "prestidigitations" ;
+lin prestidigitator_N = mkN "prestidigitator" "prestidigitators" ;
+lin prestige_N = mkN "prestige" "prestiges" ;
+lin prestigious_A = mkAMost "prestigious" "prestigiously" ;
+lin prestissimo_A = mkAMost "prestissimo" "prestissimoly" ;
+lin prestissimo_Adv = mkAdv "prestissimo" ;
+lin presto_A = mkAMost "presto" "prestoly" ;
+lin presto_Adv = mkAdv "presto" ;
+lin prestressed_A = mkAMost "prestressed" "prestressedly" ;
+lin presumable_A = mkAMost "presumable" "presumably" ;
+lin presume_V = mkV "presume" "presumed" "presumed" ;
+lin presumption_N = mkN "presumption" "presumptions" ;
+lin presumptive_A = mkAMost "presumptive" "presumptively" ;
+lin presumptuous_A = mkAMost "presumptuous" "presumptuously" ;
+lin presuppose_V = mkV "presuppose" "presupposed" "presupposed" ;
+lin presupposition_N = mkN "presupposition" "presuppositions" ;
+lin preteen_A = mkAMost "preteen" "preteenly" ;
+lin preteen_N = mkN "preteen" "preteens" ;
+lin pretence_N = mkN "pretence" "pretences" ;
+lin pretend_V = mkV "pretend" "pretended" "pretended" ;
+lin pretendedly_Adv = mkAdv "pretendedly" ;
+lin pretender_N = mkN "pretender" "pretenders" ;
+lin pretense_N = mkN "pretense" "pretenses" ;
+lin pretension_N = mkN "pretension" "pretensions" ;
+lin pretentious_A = mkAMost "pretentious" "pretentiously" ;
+lin pretentiousness_N = mkN "pretentiousness" "pretentiousnesses" ;
+lin preterist_N = mkN "preterist" "preterists" ;
+lin preterit_A = mkAMost "preterit" "preteritly" ;
+lin preterit_N = mkN "preterit" "preterits" ;
+lin preterite_A = mkAMost "preterite" "preteritely" ;
+lin preterite_N = mkN "preterite" "preterites" ;
+lin pretermission_N = mkN "pretermission" "pretermissions" ;
+lin preternatural_A = mkAMost "preternatural" "preternaturally" ;
+lin pretext_N = mkN "pretext" "pretexts" ;
+lin pretor_N = mkN "pretor" "pretors" ;
+lin pretrial_N = mkN "pretrial" "pretrials" ;
+lin prettify_V = mkV "prettify" "prettified" "prettified" ;
+lin prettily_Adv = mkAdv "prettily" ;
+lin prettiness_N = mkN "prettiness" "prettinesses" ;
+lin pretty_A = mkA "pretty" "prettier" "prettiest" "pretty" ;
+lin pretty_N = mkN "pretty" "pretties" ;
+lin pretty_pretty_A = mkAMost "pretty-pretty" "pretty-prettily" ;
+lin pretzel_N = mkN "pretzel" "pretzels" ;
+lin prevail_V = mkV "prevail" "prevailed" "prevailed" ;
+lin prevalence_N = mkN "prevalence" "prevalences" ;
+lin prevalent_A = mkAMost "prevalent" "prevalently" ;
+lin prevaricate_V = mkV "prevaricate" "prevaricated" "prevaricated" ;
+lin prevarication_N = mkN "prevarication" "prevarications" ;
+lin prevent_V = mkV "prevent" "prevented" "prevented" ;
+lin preventable_A = mkAMost "preventable" "preventably" ;
+lin preventative_N = mkN "preventative" "preventatives" ;
+lin prevention_N = mkN "prevention" "preventions" ;
+lin preventive_A = mkAMost "preventive" "preventively" ;
+lin preventive_N = mkN "preventive" "preventives" ;
+lin preview_N = mkN "preview" "previews" ;
+lin preview_V = mkV "preview" "previewed" "previewed" ;
+lin previous_A = mkAMost "previous" "previously" ;
+lin prevision_N = mkN "prevision" "previsions" ;
+lin prewar_A = mkAMost "prewar" "prewarly" ;
+lin prey_N = mkN "prey" "IRREG" ;
+lin prey_V = mkV "prey" "preyed" "preyed" ;
+lin priapic_A = mkAMost "priapic" "priapicly" ;
+lin priapism_N = mkN "priapism" "priapisms" ;
+lin price_N = mkN "price" "prices" ;
+lin price_V = mkV "price" "priced" "priced" ;
+lin price_control_N = mkN "price-control" "price-controls" ;
+lin price_controlled_A = mkAMost "price-controlled" "price-controlledly" ;
+lin priceless_A = mkAMost "priceless" "pricelessly" ;
+lin pricelist_N = mkN "pricelist" "pricelists" ;
+lin pricey_A = mkA "pricey" "priceyyer" "priceyyest" "priceily" ;
+lin pricing_N = mkN "pricing" "pricings" ;
+lin prick_N = mkN "prick" "pricks" ;
+lin prick_V = mkV "prick" "pricked" "pricked" ;
+lin pricker_N = mkN "pricker" "prickers" ;
+lin pricket_N = mkN "pricket" "prickets" ;
+lin pricking_N = mkN "pricking" "prickings" ;
+lin prickle_N = mkN "prickle" "prickles" ;
+lin prickle_V = mkV "prickle" "prickled" "prickled" ;
+lin prickleback_N = mkN "prickleback" "pricklebacks" ;
+lin prickliness_N = mkN "prickliness" "pricklinesses" ;
+lin prickling_N = mkN "prickling" "pricklings" ;
+lin prickly_A = mkA "prickly" "pricklier" "prickliest" "pricklily" ;
+lin pride_N = mkN "pride" "prides" ;
+lin pride_V = mkV "pride" "prided" "prided" ;
+lin prie_dieu_N = mkN "prie-dieu" "prie-dieus" ;
+lin priest_N = mkN "priest" "priests" ;
+lin priest_ridden_A = mkAMost "priest-ridden" "priest-riddenly" ;
+lin priestcraft_N = mkN "priestcraft" "priestcrafts" ;
+lin priestess_N = mkN "priestess" "priestesses" ;
+lin priesthood_N = mkN "priesthood" "priesthoods" ;
+lin priestlike_A = mkAMost "priestlike" "priestlikely" ;
+lin priestly_A = mkA "priestly" "priestlier" "priestliest" "priestlily" ;
+lin prig_N = mkN "prig" "prigs" ;
+lin priggish_A = mkAMost "priggish" "priggishly" ;
+lin priggishness_N = mkN "priggishness" "priggishnesses" ;
+lin prim_A = mkA "prim" "primmer" "primmest" "primly" ;
+lin prim_V = mkV "prim" "primmed" "primmed" ;
+lin prima_A = mkAMost "prima" "primaly" ;
+lin prima_ballerina_N = mkN "prima ballerina" "prima ballerinas" ;
+lin prima_donna_N = mkN "prima donna" "prima donnas" ;
+lin prima_facie_A = mkAMost "prima facie" "prima faciely" ;
+lin prima_facie_Adv = mkAdv "prima facie" ;
+lin primacy_N = mkN "primacy" "primacies" ;
+lin primaeval_A = mkAMost "primaeval" "primaevally" ;
+lin primal_A = mkAMost "primal" "primally" ;
+lin primality_N = mkN "primality" "primalities" ;
+lin primaquine_N = mkN "primaquine" "primaquines" ;
+lin primary_A = mkAMost "primary" "primarily" ;
+lin primary_N = mkN "primary" "primaries" ;
+lin primate_N = mkN "primate" "primates" ;
+lin primateship_N = mkN "primateship" "primateships" ;
+lin primatology_N = mkN "primatology" "primatologies" ;
+lin prime_A = mkAMost "prime" "primely" ;
+lin prime_N = mkN "prime" "primes" ;
+lin prime_V = mkV "prime" "primed" "primed" ;
+lin primer_N = mkN "primer" "primers" ;
+lin primeval_A = mkAMost "primeval" "primevally" ;
+lin primidone_N = mkN "primidone" "primidones" ;
+lin primigravida_N = mkN "primigravida" "primigravidas" ;
+lin priming_N = mkN "priming" "primings" ;
+lin primipara_N = mkN "primipara" "primiparas" ;
+lin primiparous_A = mkAMost "primiparous" "primiparously" ;
+lin primitive_A = mkAMost "primitive" "primitively" ;
+lin primitive_N = mkN "primitive" "primitives" ;
+lin primitiveness_N = mkN "primitiveness" "primitivenesses" ;
+lin primitivism_N = mkN "primitivism" "primitivisms" ;
+lin primness_N = mkN "primness" "primnesses" ;
+lin primo_A = mkA "primo" "primoer" "primoest" "primoly" ;
+lin primo_N = mkN "primo" "primoes" ;
+lin primogeniture_N = mkN "primogeniture" "primogenitures" ;
+lin primordial_A = mkAMost "primordial" "primordially" ;
+lin primordium_N = mkN "primordium" "primordiums" ;
+lin primp_V = mkV "primp" "primped" "primped" ;
+lin primping_N = mkN "primping" "primpings" ;
+lin primrose_N = mkN "primrose" "primroses" ;
+lin primula_N = mkN "primula" "primulas" ;
+lin primus_N = mkN "primus" "primuses" ;
+lin prince_N = mkN "prince" "princes" ;
+lin princedom_N = mkN "princedom" "princedoms" ;
+lin princeling_N = mkN "princeling" "princelings" ;
+lin princely_A = mkA "princely" "princelier" "princeliest" "princelily" ;
+lin princess_N = mkN "princess" "princesses" ;
+lin princewood_N = mkN "princewood" "princewoods" ;
+lin principal_A = mkAMost "principal" "principally" ;
+lin principal_N = mkN "principal" "principals" ;
+lin principality_N = mkN "principality" "principalities" ;
+lin principalship_N = mkN "principalship" "principalships" ;
+lin principle_N = mkN "principle" "principles" ;
+lin principled_A = mkAMost "principled" "principledly" ;
+lin prink_V = mkV "prink" "prinked" "prinked" ;
+lin print_N = mkN "print" "prints" ;
+lin print_V = mkV "print" "printed" "printed" ;
+lin print_seller_N = mkN "print-seller" "print-sellers" ;
+lin print_shop_N = mkN "print-shop" "print-shops" ;
+lin printable_A = mkAMost "printable" "printably" ;
+lin printer_N = mkN "printer" "printers" ;
+lin printing_N = mkN "printing" "printings" ;
+lin printing_ink_N = mkN "printing-ink" "printing-inks" ;
+lin printing_press_N = mkN "printing-press" "printing-presses" ;
+lin printmaker_N = mkN "printmaker" "printmakers" ;
+lin printmaking_N = mkN "printmaking" "printmakings" ;
+lin printout_N = mkN "printout" "printouts" ;
+lin prion_N = mkN "prion" "prions" ;
+lin prior_A = mkAMost "prior" "priorly" ;
+lin prior_N = mkN "prior" "priors" ;
+lin prior_to_Prep = mkPrep "prior to" ;
+lin prioress_N = mkN "prioress" "prioresses" ;
+lin priority_N = mkN "priority" "priorities" ;
+lin priorship_N = mkN "priorship" "priorships" ;
+lin priory_N = mkN "priory" "priories" ;
+lin prise_V = mkV "prise" "prised" "prised" ;
+lin prism_N = mkN "prism" "prisms" ;
+lin prismatic_A = mkAMost "prismatic" "prismaticly" ;
+lin prismatoid_N = mkN "prismatoid" "prismatoids" ;
+lin prismoid_N = mkN "prismoid" "prismoids" ;
+lin prison_N = mkN "prison" "prisons" ;
+lin prison_breaking_N = mkN "prison-breaking" "prison-breakings" ;
+lin prisoner_N = mkN "prisoner" "prisoners" ;
+lin prisonlike_A = mkAMost "prisonlike" "prisonlikely" ;
+lin pristine_A = mkAMost "pristine" "pristinely" ;
+lin privacy_N = mkN "privacy" "privacies" ;
+lin private_A = mkAMost "private" "privately" ;
+lin private_N = mkN "private" "privates" ;
+lin privateer_N = mkN "privateer" "privateers" ;
+lin privation_N = mkN "privation" "privations" ;
+lin privatisation_N = mkN "privatisation" "privatisations" ;
+lin privatization_N = mkN "privatization" "privatizations" ;
+lin privatize_V = mkV "privatize" "privatized" "privatized" ;
+lin privet_N = mkN "privet" "privets" ;
+lin privilege_N = mkN "privilege" "privileges" ;
+lin privileged_A = mkAMost "privileged" "privilegedly" ;
+lin privy_A = mkAMost "privy" "privily" ;
+lin privy_N = mkN "privy" "privies" ;
+lin prize_N = mkN "prize" "prizes" ;
+lin prize_V = mkV "prize" "prized" "prized" ;
+lin prize_fight_N = mkN "prize-fight" "prize-fights" ;
+lin prize_money_N = mkN "prize-money" "prize-moneys" ;
+lin prize_ring_N = mkN "prize-ring" "prize-rings" ;
+lin prizefight_N = mkN "prizefight" "prizefights" ;
+lin prizefighter_N = mkN "prizefighter" "prizefighters" ;
+lin pro_A = mkA "pro" "proer" "proest" "proly" ;
+lin pro_Adv = mkAdv "pro" ;
+lin pro_N = mkN "pro" "pros" ;
+lin pro_Prep = mkPrep "pro" ;
+lin pro_forma_A = mkAMost "pro forma" "pro formaly" ;
+lin pro_forma_Adv = mkAdv "pro forma" ;
+lin pro_rata_Adv = mkAdv "pro rata" ;
+lin pro_tem_Adv = mkAdv "pro tem" ;
+lin pro_tempore_Adv = mkAdv "pro tempore" ;
+lin proaccelerin_N = mkN "proaccelerin" "proaccelerins" ;
+lin proactive_A = mkAMost "proactive" "proactively" ;
+lin probabilism_N = mkN "probabilism" "probabilisms" ;
+lin probabilistic_A = mkAMost "probabilistic" "probabilisticly" ;
+lin probabilistically_Adv = mkAdv "probabilistically" ;
+lin probability_N = mkN "probability" "probabilities" ;
+lin probable_A = mkAMost "probable" "probably" ;
+lin probable_N = mkN "probable" "probables" ;
+lin probate_N = mkN "probate" "probates" ;
+lin probate_V = mkV "probate" "probated" "probated" ;
+lin probation_N = mkN "probation" "probations" ;
+lin probationary_A = mkAMost "probationary" "probationarily" ;
+lin probationer_N = mkN "probationer" "probationers" ;
+lin probative_A = mkAMost "probative" "probatively" ;
+lin probe_N = mkN "probe" "probes" ;
+lin probe_V = mkV "probe" "probed" "probed" ;
+lin probenecid_N = mkN "probenecid" "probenecids" ;
+lin probiotic_N = mkN "probiotic" "probiotics" ;
+lin probity_N = mkN "probity" "probities" ;
+lin problem_N = mkN "problem" "problems" ;
+lin problematic_A = mkAMost "problematic" "problematicly" ;
+lin problematically_Adv = mkAdv "problematically" ;
+lin proboscidean_N = mkN "proboscidean" "proboscideans" ;
+lin proboscis_N = mkN "proboscis" "proboscises" ;
+lin procaine_N = mkN "procaine" "procaines" ;
+lin procarbazine_N = mkN "procarbazine" "procarbazines" ;
+lin procedural_A = mkAMost "procedural" "procedurally" ;
+lin procedure_N = mkN "procedure" "procedures" ;
+lin proceed_V = mkV "proceed" "proceeded" "proceeded" ;
+lin proceeding_N = mkN "proceeding" "proceedings" ;
+lin process_N = mkN "process" "processes" ;
+lin process_V = mkV "process" "processed" "processed" ;
+lin process_server_N = mkN "process-server" "process-servers" ;
+lin processing_N = mkN "processing" "processings" ;
+lin procession_N = mkN "procession" "processions" ;
+lin processional_A = mkAMost "processional" "processionally" ;
+lin processional_N = mkN "processional" "processionals" ;
+lin processor_N = mkN "processor" "processors" ;
+lin prochlorperazine_N = mkN "prochlorperazine" "prochlorperazines" ;
+lin proclaim_V = mkV "proclaim" "proclaimed" "proclaimed" ;
+lin proclamation_N = mkN "proclamation" "proclamations" ;
+lin proclivity_N = mkN "proclivity" "proclivities" ;
+lin proconsul_N = mkN "proconsul" "proconsuls" ;
+lin proconsular_A = mkAMost "proconsular" "proconsularly" ;
+lin proconsulate_N = mkN "proconsulate" "proconsulates" ;
+lin proconsulship_N = mkN "proconsulship" "proconsulships" ;
+lin proconvertin_N = mkN "proconvertin" "proconvertins" ;
+lin procrastinate_V = mkV "procrastinate" "procrastinated" "procrastinated" ;
+lin procrastination_N = mkN "procrastination" "procrastinations" ;
+lin procrastinator_N = mkN "procrastinator" "procrastinators" ;
+lin procreate_V = mkV "procreate" "procreated" "procreated" ;
+lin procreation_N = mkN "procreation" "procreations" ;
+lin proctalgia_N = mkN "proctalgia" "proctalgias" ;
+lin proctitis_N = mkN "proctitis" "proctitises" ;
+lin proctologist_N = mkN "proctologist" "proctologists" ;
+lin proctology_N = mkN "proctology" "proctologies" ;
+lin proctoplasty_N = mkN "proctoplasty" "proctoplasties" ;
+lin proctor_N = mkN "proctor" "proctors" ;
+lin proctorship_N = mkN "proctorship" "proctorships" ;
+lin proctoscope_N = mkN "proctoscope" "proctoscopes" ;
+lin proctoscopy_N = mkN "proctoscopy" "proctoscopies" ;
+lin procumbent_A = mkAMost "procumbent" "procumbently" ;
+lin procurable_A = mkAMost "procurable" "procurably" ;
+lin procurator_N = mkN "procurator" "procurators" ;
+lin procure_V = mkV "procure" "procured" "procured" ;
+lin procurement_N = mkN "procurement" "procurements" ;
+lin procurer_N = mkN "procurer" "procurers" ;
+lin procuress_N = mkN "procuress" "procuresses" ;
+lin procyclidine_N = mkN "procyclidine" "procyclidines" ;
+lin procyonid_N = mkN "procyonid" "procyonids" ;
+lin prod_N = mkN "prod" "prods" ;
+lin prod_V = mkV "prod" "prodded" "prodded" ;
+lin prodigal_A = mkAMost "prodigal" "prodigally" ;
+lin prodigal_N = mkN "prodigal" "prodigals" ;
+lin prodigality_N = mkN "prodigality" "prodigalities" ;
+lin prodigious_A = mkAMost "prodigious" "prodigiously" ;
+lin prodigy_N = mkN "prodigy" "prodigies" ;
+lin prodromal_A = mkAMost "prodromal" "prodromally" ;
+lin prodrome_N = mkN "prodrome" "prodromes" ;
+lin produce_N = mkN "produce" "produces" ;
+lin produce_V = mkV "produce" "produced" "produced" ;
+lin producer_N = mkN "producer" "producers" ;
+lin product_N = mkN "product" "products" ;
+lin production_N = mkN "production" "productions" ;
+lin productive_A = mkAMost "productive" "productively" ;
+lin productiveness_N = mkN "productiveness" "productivenesses" ;
+lin productivity_N = mkN "productivity" "productivities" ;
+lin proenzyme_N = mkN "proenzyme" "proenzymes" ;
+lin profanation_N = mkN "profanation" "profanations" ;
+lin profanatory_A = mkAMost "profanatory" "profanatorily" ;
+lin profane_A = mkAMost "profane" "profanely" ;
+lin profane_V = mkV "profane" "profaned" "profaned" ;
+lin profaneness_N = mkN "profaneness" "profanenesses" ;
+lin profanity_N = mkN "profanity" "profanities" ;
+lin profess_V = mkV "profess" "professed" "professed" ;
+lin professedly_Adv = mkAdv "professedly" ;
+lin profession_N = mkN "profession" "professions" ;
+lin professional_A = mkAMost "professional" "professionally" ;
+lin professional_N = mkN "professional" "professionals" ;
+lin professionalism_N = mkN "professionalism" "professionalisms" ;
+lin professionalization_N = mkN "professionalization" "professionalizations" ;
+lin professor_N = mkN "professor" "professors" ;
+lin professorial_A = mkAMost "professorial" "professorially" ;
+lin professorship_N = mkN "professorship" "professorships" ;
+lin proffer_N = mkN "proffer" "proffers" ;
+lin proffer_V = mkV "proffer" "proffered" "proffered" ;
+lin proficiency_N = mkN "proficiency" "proficiencies" ;
+lin proficient_A = mkAMost "proficient" "proficiently" ;
+lin profile_N = mkN "profile" "profiles" ;
+lin profile_V = mkV "profile" "profiled" "profiled" ;
+lin profiling_N = mkN "profiling" "profilings" ;
+lin profit_N = mkN "profit" "profits" ;
+lin profit_V = mkV "profit" "profited" "profited" ;
+lin profit_margin_N = mkN "profit-margin" "profit-margins" ;
+lin profit_sharing_N = mkN "profit-sharing" "profit-sharings" ;
+lin profitable_A = mkAMost "profitable" "profitably" ;
+lin profitableness_N = mkN "profitableness" "profitablenesses" ;
+lin profiteer_N = mkN "profiteer" "profiteers" ;
+lin profiteer_V = mkV "profiteer" "profiteered" "profiteered" ;
+lin profiterole_N = mkN "profiterole" "profiteroles" ;
+lin profitless_A = mkAMost "profitless" "profitlessly" ;
+lin profligacy_N = mkN "profligacy" "profligacies" ;
+lin profligate_A = mkAMost "profligate" "profligately" ;
+lin profligate_N = mkN "profligate" "profligates" ;
+lin profound_A = mkAMost "profound" "profoundly" ;
+lin profoundness_N = mkN "profoundness" "profoundnesses" ;
+lin profundity_N = mkN "profundity" "profundities" ;
+lin profuse_A = mkAMost "profuse" "profusely" ;
+lin profuseness_N = mkN "profuseness" "profusenesses" ;
+lin profusion_N = mkN "profusion" "profusions" ;
+lin progenitor_N = mkN "progenitor" "progenitors" ;
+lin progeria_N = mkN "progeria" "progerias" ;
+lin progestational_A = mkAMost "progestational" "progestationally" ;
+lin progesterone_N = mkN "progesterone" "progesterones" ;
+lin progestin_N = mkN "progestin" "progestins" ;
+lin prognathism_N = mkN "prognathism" "prognathisms" ;
+lin prognathous_A = mkAMost "prognathous" "prognathously" ;
+lin prognosis_N = mkN "prognosis" "prognoses" ;
+lin prognostic_A = mkAMost "prognostic" "prognosticly" ;
+lin prognostic_N = mkN "prognostic" "prognostics" ;
+lin prognosticate_V = mkV "prognosticate" "prognosticated" "prognosticated" ;
+lin prognostication_N = mkN "prognostication" "prognostications" ;
+lin program_N = mkN "program" "programs" ;
+lin program_V = mkV "program" "programmed" "programmed" ;
+lin programma_N = mkN "programma" "programmas" ;
+lin programme_N = mkN "programme" "programmes" ;
+lin programme_V = mkV "programme" "programmed" "programmed" ;
+lin programmer_N = mkN "programmer" "programmers" ;
+lin programming_N = mkN "programming" "programmings" ;
+lin progress_N = mkN "progress" "progresses" ;
+lin progress_V = mkV "progress" "progressed" "progressed" ;
+lin progression_N = mkN "progression" "progressions" ;
+lin progressive_A = mkAMost "progressive" "progressively" ;
+lin progressive_N = mkN "progressive" "progressives" ;
+lin progressiveness_N = mkN "progressiveness" "progressivenesses" ;
+lin progressivism_N = mkN "progressivism" "progressivisms" ;
+lin progymnosperm_N = mkN "progymnosperm" "progymnosperms" ;
+lin prohibit_prohibited_V = mkV "prohibit" "prohibited" "prohibited" ;
+lin prohibit_prohibitted_V = mkV "prohibit" "prohibitted" "prohibitted" ;
+lin prohibition_N = mkN "prohibition" "prohibitions" ;
+lin prohibitionist_N = mkN "prohibitionist" "prohibitionists" ;
+lin prohibitive_A = mkAMost "prohibitive" "prohibitively" ;
+lin prohibitory_A = mkAMost "prohibitory" "prohibitorily" ;
+lin proinflammatory_A = mkAMost "proinflammatory" "proinflammatorily" ;
+lin project_N = mkN "project" "projects" ;
+lin project_V = mkV "project" "projected" "projected" ;
+lin projectile_A = mkAMost "projectile" "projectilely" ;
+lin projectile_N = mkN "projectile" "projectiles" ;
+lin projection_N = mkN "projection" "projections" ;
+lin projectionist_N = mkN "projectionist" "projectionists" ;
+lin projector_N = mkN "projector" "projectors" ;
+lin prokaryote_N = mkN "prokaryote" "prokaryotes" ;
+lin prokaryotic_A = mkAMost "prokaryotic" "prokaryoticly" ;
+lin prolactin_N = mkN "prolactin" "prolactins" ;
+lin prolamine_N = mkN "prolamine" "prolamines" ;
+lin prolapse_N = mkN "prolapse" "prolapses" ;
+lin prolapse_V = mkV "prolapse" "prolapsed" "prolapsed" ;
+lin prolate_A = mkAMost "prolate" "prolately" ;
+lin prole_N = mkN "prole" "proles" ;
+lin prolegomenon_N = mkN "prolegomenon" "prolegomenons" ;
+lin prolepsis_N = mkN "prolepsis" "prolepsises" ;
+lin proletarian_A = mkAMost "proletarian" "proletarianly" ;
+lin proletarian_N = mkN "proletarian" "proletarians" ;
+lin proletariat_N = mkN "proletariat" "proletariats" ;
+lin proliferate_V = mkV "proliferate" "proliferated" "proliferated" ;
+lin proliferation_N = mkN "proliferation" "proliferations" ;
+lin prolific_A = mkAMost "prolific" "prolificly" ;
+lin proline_N = mkN "proline" "prolines" ;
+lin prolix_A = mkAMost "prolix" "prolixly" ;
+lin prolixity_N = mkN "prolixity" "prolixities" ;
+lin prologue_N = mkN "prologue" "prologues" ;
+lin prolong_V = mkV "prolong" "prolonged" "prolonged" ;
+lin prolongation_N = mkN "prolongation" "prolongations" ;
+lin prolonge_N = mkN "prolonge" "prolonges" ;
+lin prolusory_A = mkAMost "prolusory" "prolusorily" ;
+lin prom_N = mkN "prom" "proms" ;
+lin promenade_N = mkN "promenade" "promenades" ;
+lin promenade_V = mkV "promenade" "promenaded" "promenaded" ;
+lin promethazine_N = mkN "promethazine" "promethazines" ;
+lin promethium_N = mkN "promethium" "promethiums" ;
+lin prominence_N = mkN "prominence" "prominences" ;
+lin prominent_A = mkAMost "prominent" "prominently" ;
+lin promiscuity_N = mkN "promiscuity" "promiscuities" ;
+lin promiscuous_A = mkAMost "promiscuous" "promiscuously" ;
+lin promise_N = mkN "promise" "promises" ;
+lin promise_V = mkV "promise" "promised" "promised" ;
+lin promisee_N = mkN "promisee" "promisees" ;
+lin promiser_N = mkN "promiser" "promisers" ;
+lin promisingly_Adv = mkAdv "promisingly" ;
+lin promissory_A = mkAMost "promissory" "promissorily" ;
+lin promontory_N = mkN "promontory" "promontories" ;
+lin promote_V = mkV "promote" "promoted" "promoted" ;
+lin promoter_N = mkN "promoter" "promoters" ;
+lin promotion_N = mkN "promotion" "promotions" ;
+lin promotional_A = mkAMost "promotional" "promotionally" ;
+lin promotive_A = mkAMost "promotive" "promotively" ;
+lin prompt_A = mkAMost "prompt" "promptly" ;
+lin prompt_N = mkN "prompt" "prompts" ;
+lin prompt_V = mkV "prompt" "prompted" "prompted" ;
+lin prompt_box_N = mkN "prompt-box" "prompt-boxes" ;
+lin prompt_copy_N = mkN "prompt-copy" "prompt-copies" ;
+lin promptbook_N = mkN "promptbook" "promptbooks" ;
+lin prompter_N = mkN "prompter" "prompters" ;
+lin prompting_N = mkN "prompting" "promptings" ;
+lin promptitude_N = mkN "promptitude" "promptitudes" ;
+lin promptness_N = mkN "promptness" "promptnesses" ;
+lin promulgate_V = mkV "promulgate" "promulgated" "promulgated" ;
+lin promulgation_N = mkN "promulgation" "promulgations" ;
+lin promulgator_N = mkN "promulgator" "promulgators" ;
+lin promycelium_N = mkN "promycelium" "promyceliums" ;
+lin pronation_N = mkN "pronation" "pronations" ;
+lin pronator_N = mkN "pronator" "pronators" ;
+lin prone_A = mkAMost "prone" "pronely" ;
+lin proneness_N = mkN "proneness" "pronenesses" ;
+lin prong_N = mkN "prong" "prongs" ;
+lin pronged_A = mkAMost "pronged" "prongedly" ;
+lin pronghorn_N = mkN "pronghorn" "pronghorns" ;
+lin pronominal_A = mkAMost "pronominal" "pronominally" ;
+lin pronoun_N = mkN "pronoun" "pronouns" ;
+lin pronounce_V = mkV "pronounce" "pronounced" "pronounced" ;
+lin pronounceable_A = mkAMost "pronounceable" "pronounceably" ;
+lin pronounced_A = mkAMost "pronounced" "pronouncedly" ;
+lin pronouncement_N = mkN "pronouncement" "pronouncements" ;
+lin pronto_Adv = mkAdv "pronto" ;
+lin pronucleus_N = mkN "pronucleus" "pronucleuses" ;
+lin pronunciamento_N = mkN "pronunciamento" "pronunciamentos" ;
+lin pronunciation_N = mkN "pronunciation" "pronunciations" ;
+lin proof_A = mkAMost "proof" "proofly" ;
+lin proof_N = mkN "proof" "proofs" ;
+lin proof_V = mkV "proof" "proofed" "proofed" ;
+lin proofread_V = mkV "proofread" "proofread" "proofread" ;
+lin proofreader_N = mkN "proofreader" "proofreaders" ;
+lin prop_N = mkN "prop" "props" ;
+lin prop_V = mkV "prop" "propped" "propped" ;
+lin propaedeutic_N = mkN "propaedeutic" "propaedeutics" ;
+lin propaganda_N = mkN "propaganda" "propagandas" ;
+lin propagandist_A = mkAMost "propagandist" "propagandistly" ;
+lin propagandist_N = mkN "propagandist" "propagandists" ;
+lin propagandize_V = mkV "propagandize" "propagandized" "propagandized" ;
+lin propagate_V = mkV "propagate" "propagated" "propagated" ;
+lin propagation_N = mkN "propagation" "propagations" ;
+lin propagative_A = mkAMost "propagative" "propagatively" ;
+lin propagator_N = mkN "propagator" "propagators" ;
+lin propanal_N = mkN "propanal" "propanals" ;
+lin propane_N = mkN "propane" "propanes" ;
+lin propanol_N = mkN "propanol" "propanols" ;
+lin propanolol_N = mkN "propanolol" "propanolols" ;
+lin proparoxytone_N = mkN "proparoxytone" "proparoxytones" ;
+lin propel_V = mkV "propel" "propelled" "propelled" ;
+lin propellant_A = mkAMost "propellant" "propellantly" ;
+lin propellant_N = mkN "propellant" "propellants" ;
+lin propellent_A = mkAMost "propellent" "propellently" ;
+lin propellent_N = mkN "propellent" "propellents" ;
+lin propeller_N = mkN "propeller" "propellers" ;
+lin propenal_N = mkN "propenal" "propenals" ;
+lin propenoate_N = mkN "propenoate" "propenoates" ;
+lin propenonitrile_N = mkN "propenonitrile" "propenonitriles" ;
+lin propensity_N = mkN "propensity" "propensities" ;
+lin proper_A = mkAMost "proper" "properly" ;
+lin propertied_A = mkAMost "propertied" "propertiedly" ;
+lin property_N = mkN "property" "properties" ;
+lin property_man_N = mkN "property-man" "property-men" ;
+lin property_master_N = mkN "property-master" "property-masters" ;
+lin propertyless_A = mkAMost "propertyless" "propertylessly" ;
+lin prophase_N = mkN "prophase" "prophases" ;
+lin prophecy_N = mkN "prophecy" "prophecies" ;
+lin prophesy_V = mkV "prophesy" "prophesied" "prophesied" ;
+lin prophet_N = mkN "prophet" "prophets" ;
+lin prophetess_N = mkN "prophetess" "prophetesses" ;
+lin prophetic_A = mkAMost "prophetic" "propheticly" ;
+lin prophetical_A = mkAMost "prophetical" "prophetically" ;
+lin prophylactic_A = mkAMost "prophylactic" "prophylacticly" ;
+lin prophylactic_N = mkN "prophylactic" "prophylactics" ;
+lin prophylaxis_N = mkN "prophylaxis" "prophylaxises" ;
+lin prophyll_N = mkN "prophyll" "prophylls" ;
+lin propinquity_N = mkN "propinquity" "propinquities" ;
+lin propitiate_V = mkV "propitiate" "propitiated" "propitiated" ;
+lin propitiation_N = mkN "propitiation" "propitiations" ;
+lin propitiative_A = mkAMost "propitiative" "propitiatively" ;
+lin propitiatory_A = mkAMost "propitiatory" "propitiatorily" ;
+lin propitious_A = mkAMost "propitious" "propitiously" ;
+lin propjet_N = mkN "propjet" "propjets" ;
+lin proponent_N = mkN "proponent" "proponents" ;
+lin proportion_N = mkN "proportion" "proportions" ;
+lin proportion_V = mkV "proportion" "proportioned" "proportioned" ;
+lin proportionable_A = mkAMost "proportionable" "proportionably" ;
+lin proportional_A = mkAMost "proportional" "proportionally" ;
+lin proportional_N = mkN "proportional" "proportionals" ;
+lin proportionality_N = mkN "proportionality" "proportionalities" ;
+lin proportionate_A = mkAMost "proportionate" "proportionately" ;
+lin proposal_N = mkN "proposal" "proposals" ;
+lin propose_V = mkV "propose" "proposed" "proposed" ;
+lin proposer_N = mkN "proposer" "proposers" ;
+lin proposition_N = mkN "proposition" "propositions" ;
+lin proposition_V = mkV "proposition" "propositioned" "propositioned" ;
+lin propositus_N = mkN "propositus" "proposituses" ;
+lin propound_V = mkV "propound" "propounded" "propounded" ;
+lin propoxyphene_N = mkN "propoxyphene" "propoxyphenes" ;
+lin proprietary_A = mkAMost "proprietary" "proprietarily" ;
+lin proprietor_N = mkN "proprietor" "proprietors" ;
+lin proprietorship_N = mkN "proprietorship" "proprietorships" ;
+lin proprietress_N = mkN "proprietress" "proprietresses" ;
+lin propriety_N = mkN "propriety" "proprieties" ;
+lin proprioception_N = mkN "proprioception" "proprioceptions" ;
+lin proprioceptive_A = mkAMost "proprioceptive" "proprioceptively" ;
+lin proprioceptor_N = mkN "proprioceptor" "proprioceptors" ;
+lin proprionamide_N = mkN "proprionamide" "proprionamides" ;
+lin props_N = mkN "props" "propses" ;
+lin propulsion_N = mkN "propulsion" "propulsions" ;
+lin propulsive_A = mkAMost "propulsive" "propulsively" ;
+lin propyl_N = mkN "propyl" "propyls" ;
+lin propylene_N = mkN "propylene" "propylenes" ;
+lin propylthiouracil_N = mkN "propylthiouracil" "propylthiouracils" ;
+lin proration_N = mkN "proration" "prorations" ;
+lin prorogation_N = mkN "prorogation" "prorogations" ;
+lin prorogue_V = mkV "prorogue" "prorogued" "prorogued" ;
+lin prosaic_A = mkAMost "prosaic" "prosaicly" ;
+lin prosaically_Adv = mkAdv "prosaically" ;
+lin proscenium_N = mkN "proscenium" "prosceniums" ;
+lin prosciutto_N = mkN "prosciutto" "prosciuttoes" ;
+lin proscribe_V = mkV "proscribe" "proscribed" "proscribed" ;
+lin proscription_N = mkN "proscription" "proscriptions" ;
+lin prose_N = mkN "prose" "proses" ;
+lin prosecute_V = mkV "prosecute" "prosecuted" "prosecuted" ;
+lin prosecution_N = mkN "prosecution" "prosecutions" ;
+lin prosecutor_N = mkN "prosecutor" "prosecutors" ;
+lin proselyte_N = mkN "proselyte" "proselytes" ;
+lin proselytism_N = mkN "proselytism" "proselytisms" ;
+lin proselytize_V = mkV "proselytize" "proselytized" "proselytized" ;
+lin prosimian_N = mkN "prosimian" "prosimians" ;
+lin prosiness_N = mkN "prosiness" "prosinesses" ;
+lin prosodic_A = mkAMost "prosodic" "prosodicly" ;
+lin prosody_N = mkN "prosody" "prosodies" ;
+lin prospect_N = mkN "prospect" "prospects" ;
+lin prospect_V = mkV "prospect" "prospected" "prospected" ;
+lin prospective_A = mkAMost "prospective" "prospectively" ;
+lin prospector_N = mkN "prospector" "prospectors" ;
+lin prospectus_N = mkN "prospectus" "prospectuses" ;
+lin prosper_V = mkV "prosper" "prospered" "prospered" ;
+lin prosperity_N = mkN "prosperity" "prosperities" ;
+lin prosperous_A = mkAMost "prosperous" "prosperously" ;
+lin prostaglandin_N = mkN "prostaglandin" "prostaglandins" ;
+lin prostate_A = mkAMost "prostate" "prostately" ;
+lin prostate_N = mkN "prostate" "prostates" ;
+lin prostatectomy_N = mkN "prostatectomy" "prostatectomies" ;
+lin prostatitis_N = mkN "prostatitis" "prostatitises" ;
+lin prosthesis_N = mkN "prosthesis" "prosthesises" ;
+lin prosthetic_A = mkAMost "prosthetic" "prostheticly" ;
+lin prosthetics_N = mkN "prosthetics" "prostheticses" ;
+lin prosthetist_N = mkN "prosthetist" "prosthetists" ;
+lin prosthion_N = mkN "prosthion" "prosthions" ;
+lin prosthodontic_A = mkAMost "prosthodontic" "prosthodonticly" ;
+lin prosthodontics_N = mkN "prosthodontics" "prosthodonticses" ;
+lin prosthodontist_N = mkN "prosthodontist" "prosthodontists" ;
+lin prostitute_N = mkN "prostitute" "prostitutes" ;
+lin prostitute_V = mkV "prostitute" "prostituted" "prostituted" ;
+lin prostitution_N = mkN "prostitution" "prostitutions" ;
+lin prostrate_A = mkAMost "prostrate" "prostrately" ;
+lin prostrate_V = mkV "prostrate" "prostrated" "prostrated" ;
+lin prostration_N = mkN "prostration" "prostrations" ;
+lin prostyle_A = mkAMost "prostyle" "prostylely" ;
+lin prosy_A = mkA "prosy" "prosier" "prosiest" "prosily" ;
+lin protactinium_N = mkN "protactinium" "protactiniums" ;
+lin protagonist_N = mkN "protagonist" "protagonists" ;
+lin protamine_N = mkN "protamine" "protamines" ;
+lin protanopia_N = mkN "protanopia" "protanopias" ;
+lin protanopic_A = mkAMost "protanopic" "protanopicly" ;
+lin protea_N = mkN "protea" "proteas" ;
+lin protean_A = mkAMost "protean" "proteanly" ;
+lin protease_N = mkN "protease" "proteases" ;
+lin protect_V = mkV "protect" "protected" "protected" ;
+lin protection_N = mkN "protection" "protections" ;
+lin protectionism_N = mkN "protectionism" "protectionisms" ;
+lin protectionist_N = mkN "protectionist" "protectionists" ;
+lin protective_A = mkAMost "protective" "protectively" ;
+lin protectiveness_N = mkN "protectiveness" "protectivenesses" ;
+lin protector_N = mkN "protector" "protectors" ;
+lin protectorate_N = mkN "protectorate" "protectorates" ;
+lin protectorship_N = mkN "protectorship" "protectorships" ;
+lin protein_N = mkN "protein" "proteins" ;
+lin proteinaceous_A = mkAMost "proteinaceous" "proteinaceously" ;
+lin proteolysis_N = mkN "proteolysis" "proteolysises" ;
+lin proteolytic_A = mkAMost "proteolytic" "proteolyticly" ;
+lin proteome_N = mkN "proteome" "proteomes" ;
+lin proteomics_N = mkN "proteomics" "proteomicses" ;
+lin proterozoic_A = mkAMost "proterozoic" "proterozoicly" ;
+lin protest_N = mkN "protest" "protests" ;
+lin protest_V = mkV "protest" "protested" "protested" ;
+lin protestant_A = mkAMost "protestant" "protestantly" ;
+lin protestant_N = mkN "protestant" "protestants" ;
+lin protestantism_N = mkN "protestantism" "protestantisms" ;
+lin protestation_N = mkN "protestation" "protestations" ;
+lin protester_N = mkN "protester" "protesters" ;
+lin protestingly_Adv = mkAdv "protestingly" ;
+lin prothalamion_N = mkN "prothalamion" "prothalamions" ;
+lin prothorax_N = mkN "prothorax" "prothoraxes" ;
+lin prothrombin_N = mkN "prothrombin" "prothrombins" ;
+lin prothrombinase_N = mkN "prothrombinase" "prothrombinases" ;
+lin protist_N = mkN "protist" "protists" ;
+lin protoarcheology_N = mkN "protoarcheology" "protoarcheologies" ;
+lin protoavis_N = mkN "protoavis" "protoavises" ;
+lin protoceratops_N = mkN "protoceratops" "protoceratopses" ;
+lin protocol_N = mkN "protocol" "protocols" ;
+lin protoctist_N = mkN "protoctist" "protoctists" ;
+lin protogeometric_A = mkAMost "protogeometric" "protogeometricly" ;
+lin protohippus_N = mkN "protohippus" "protohippuses" ;
+lin protohistory_N = mkN "protohistory" "protohistories" ;
+lin protology_N = mkN "protology" "protologies" ;
+lin proton_N = mkN "proton" "protons" ;
+lin protoplasm_N = mkN "protoplasm" "protoplasms" ;
+lin prototherian_N = mkN "prototherian" "prototherians" ;
+lin prototype_N = mkN "prototype" "prototypes" ;
+lin protozoal_A = mkAMost "protozoal" "protozoally" ;
+lin protozoan_N = mkN "protozoan" "protozoans" ;
+lin protozoological_A = mkAMost "protozoological" "protozoologically" ;
+lin protozoologist_N = mkN "protozoologist" "protozoologists" ;
+lin protozoology_N = mkN "protozoology" "protozoologies" ;
+lin protract_V = mkV "protract" "protracted" "protracted" ;
+lin protractile_A = mkAMost "protractile" "protractilely" ;
+lin protraction_N = mkN "protraction" "protractions" ;
+lin protractor_N = mkN "protractor" "protractors" ;
+lin protriptyline_N = mkN "protriptyline" "protriptylines" ;
+lin protrude_V = mkV "protrude" "protruded" "protruded" ;
+lin protrusile_A = mkAMost "protrusile" "protrusilely" ;
+lin protrusion_N = mkN "protrusion" "protrusions" ;
+lin protrusive_A = mkAMost "protrusive" "protrusively" ;
+lin protuberance_N = mkN "protuberance" "protuberances" ;
+lin protuberant_A = mkAMost "protuberant" "protuberantly" ;
+lin proturan_N = mkN "proturan" "proturans" ;
+lin protégé_N = mkN "protégé" "protégés" ;
+lin protégée_N = mkN "protégée" "protégées" ;
+lin proud_A = mkA "proud" "prouder" "proudest" "proudly" ;
+lin provable_A = mkAMost "provable" "provably" ;
+lin prove_V = mkV "prove" "proved" "proven" ;
+lin provenance_N = mkN "provenance" "provenances" ;
+lin provencal_A = mkAMost "provencal" "provencally" ;
+lin provender_N = mkN "provender" "provenders" ;
+lin proverb_N = mkN "proverb" "proverbs" ;
+lin proverbial_A = mkAMost "proverbial" "proverbially" ;
+lin provide_V = mkV "provide" "provided" "provided" ;
+lin providence_N = mkN "providence" "providences" ;
+lin provident_A = mkAMost "provident" "providently" ;
+lin providential_A = mkAMost "providential" "providentially" ;
+lin provider_N = mkN "provider" "providers" ;
+lin province_N = mkN "province" "provinces" ;
+lin provincial_A = mkAMost "provincial" "provincially" ;
+lin provincial_N = mkN "provincial" "provincials" ;
+lin provincialism_N = mkN "provincialism" "provincialisms" ;
+lin provirus_N = mkN "provirus" "proviruses" ;
+lin provision_N = mkN "provision" "provisions" ;
+lin provision_V = mkV "provision" "provisioned" "provisioned" ;
+lin provisional_A = mkAMost "provisional" "provisionally" ;
+lin proviso_N = mkN "proviso" "provisos" ;
+lin provisory_A = mkAMost "provisory" "provisorily" ;
+lin provitamin_N = mkN "provitamin" "provitamins" ;
+lin provocation_N = mkN "provocation" "provocations" ;
+lin provocative_A = mkAMost "provocative" "provocatively" ;
+lin provoke_V = mkV "provoke" "provoked" "provoked" ;
+lin provoking_A = mkAMost "provoking" "provokingly" ;
+lin provost_N = mkN "provost" "provosts" ;
+lin prow_N = mkN "prow" "prows" ;
+lin prowess_N = mkN "prowess" "prowesses" ;
+lin prowl_N = mkN "prowl" "prowls" ;
+lin prowl_V = mkV "prowl" "prowled" "prowled" ;
+lin prowler_N = mkN "prowler" "prowlers" ;
+lin prox_Adv = mkAdv "prox" ;
+lin proxemics_N = mkN "proxemics" "proxemicses" ;
+lin proximal_A = mkAMost "proximal" "proximally" ;
+lin proximate_A = mkAMost "proximate" "proximately" ;
+lin proximity_N = mkN "proximity" "proximities" ;
+lin proximo_A = mkAMost "proximo" "proximoly" ;
+lin proxy_N = mkN "proxy" "proxies" ;
+lin prude_N = mkN "prude" "prudes" ;
+lin prudence_N = mkN "prudence" "prudences" ;
+lin prudent_A = mkAMost "prudent" "prudently" ;
+lin prudential_A = mkAMost "prudential" "prudentially" ;
+lin prudery_N = mkN "prudery" "pruderies" ;
+lin prudish_A = mkAMost "prudish" "prudishly" ;
+lin prune_N = mkN "prune" "prunes" ;
+lin prune_V = mkV "prune" "pruned" "pruned" ;
+lin pruner_N = mkN "pruner" "pruners" ;
+lin pruning_N = mkN "pruning" "prunings" ;
+lin pruning_hook_N = mkN "pruning-hook" "pruning-hooks" ;
+lin pruning_knife_N = mkN "pruning-knife" "pruning-knives" ;
+lin pruning_saw_N = mkN "pruning-saw" "pruning-saws" ;
+lin pruno_N = mkN "pruno" "prunoes" ;
+lin prurience_N = mkN "prurience" "pruriences" ;
+lin pruriency_N = mkN "pruriency" "pruriencies" ;
+lin prurient_A = mkAMost "prurient" "pruriently" ;
+lin prurigo_N = mkN "prurigo" "prurigoes" ;
+lin pruritus_N = mkN "pruritus" "prurituses" ;
+lin prussic_A = mkAMost "prussic" "prussicly" ;
+lin pry_V = mkV "pry" "pried" "pried" ;
+lin pryingly_Adv = mkAdv "pryingly" ;
+lin précis_N = mkN "précis" "précis" ;
+lin précis_V = mkV "précis" "IRREG" "IRREG" ;
+lin psalm_N = mkN "psalm" "psalms" ;
+lin psalmist_N = mkN "psalmist" "psalmists" ;
+lin psalmody_N = mkN "psalmody" "psalmodies" ;
+lin psalter_N = mkN "psalter" "psalters" ;
+lin psalterium_N = mkN "psalterium" "psalteriums" ;
+lin psaltery_N = mkN "psaltery" "psalteries" ;
+lin psammoma_N = mkN "psammoma" "psammomas" ;
+lin psephologist_N = mkN "psephologist" "psephologists" ;
+lin psephology_N = mkN "psephology" "psephologies" ;
+lin pseud_N = mkN "pseud" "pseuds" ;
+lin pseudo_A = mkAMost "pseudo" "pseudoly" ;
+lin pseudo_N = mkN "pseudo" "pseudos" ;
+lin pseudobulb_N = mkN "pseudobulb" "pseudobulbs" ;
+lin pseudoephedrine_N = mkN "pseudoephedrine" "pseudoephedrines" ;
+lin pseudohallucination_N = mkN "pseudohallucination" "pseudohallucinations" ;
+lin pseudohermaphrodite_N = mkN "pseudohermaphrodite" "pseudohermaphrodites" ;
+lin pseudohermaphroditic_A = mkAMost "pseudohermaphroditic" "pseudohermaphroditicly" ;
+lin pseudohermaphroditism_N = mkN "pseudohermaphroditism" "pseudohermaphroditisms" ;
+lin pseudomonad_N = mkN "pseudomonad" "pseudomonads" ;
+lin pseudonym_N = mkN "pseudonym" "pseudonyms" ;
+lin pseudonymous_A = mkAMost "pseudonymous" "pseudonymously" ;
+lin pseudophloem_N = mkN "pseudophloem" "pseudophloems" ;
+lin pseudopod_N = mkN "pseudopod" "pseudopods" ;
+lin pseudoscience_N = mkN "pseudoscience" "pseudosciences" ;
+lin pseudoscientific_A = mkAMost "pseudoscientific" "pseudoscientificly" ;
+lin psi_N = mkN "psi" "psis" ;
+lin psilocybin_N = mkN "psilocybin" "psilocybins" ;
+lin psilomelane_N = mkN "psilomelane" "psilomelanes" ;
+lin psilophyte_N = mkN "psilophyte" "psilophytes" ;
+lin psilophyton_N = mkN "psilophyton" "psilophytons" ;
+lin psilosis_N = mkN "psilosis" "psilosises" ;
+lin psittacosaur_N = mkN "psittacosaur" "psittacosaurs" ;
+lin psittacosis_N = mkN "psittacosis" "psittacosises" ;
+lin psoas_N = mkN "psoas" "psoases" ;
+lin psocid_N = mkN "psocid" "psocids" ;
+lin psoriasis_N = mkN "psoriasis" "psoriasises" ;
+lin psych_V = mkV "psych" "psyched" "psyched" ;
+lin psyche_N = mkN "psyche" "psyches" ;
+lin psychedelia_N = mkN "psychedelia" "psychedelias" ;
+lin psychedelic_A = mkAMost "psychedelic" "psychedelicly" ;
+lin psychiatric_A = mkAMost "psychiatric" "psychiatricly" ;
+lin psychiatrist_N = mkN "psychiatrist" "psychiatrists" ;
+lin psychiatry_N = mkN "psychiatry" "psychiatries" ;
+lin psychic_A = mkAMost "psychic" "psychicly" ;
+lin psychic_N = mkN "psychic" "psychics" ;
+lin psychical_A = mkAMost "psychical" "psychically" ;
+lin psychoactive_A = mkAMost "psychoactive" "psychoactively" ;
+lin psychoanalyse_V = mkV "psychoanalyse" "psychoanalysed" "psychoanalysed" ;
+lin psychoanalysis_N = mkN "psychoanalysis" "psychoanalysises" ;
+lin psychoanalyst_N = mkN "psychoanalyst" "psychoanalysts" ;
+lin psychoanalytic_A = mkAMost "psychoanalytic" "psychoanalyticly" ;
+lin psychoanalytical_A = mkAMost "psychoanalytical" "psychoanalytically" ;
+lin psychoanalyze_V = mkV "psychoanalyze" "psychoanalyzed" "psychoanalyzed" ;
+lin psychobabble_N = mkN "psychobabble" "psychobabbles" ;
+lin psychodid_N = mkN "psychodid" "psychodids" ;
+lin psychodynamics_N = mkN "psychodynamics" "psychodynamicses" ;
+lin psychogenesis_N = mkN "psychogenesis" "psychogenesises" ;
+lin psychogenetic_A = mkAMost "psychogenetic" "psychogeneticly" ;
+lin psychogenic_A = mkAMost "psychogenic" "psychogenicly" ;
+lin psychokinetic_A = mkAMost "psychokinetic" "psychokineticly" ;
+lin psycholinguist_N = mkN "psycholinguist" "psycholinguists" ;
+lin psycholinguistic_A = mkAMost "psycholinguistic" "psycholinguisticly" ;
+lin psycholinguistics_N = mkN "psycholinguistics" "psycholinguisticses" ;
+lin psychological_A = mkAMost "psychological" "psychologically" ;
+lin psychologist_N = mkN "psychologist" "psychologists" ;
+lin psychology_N = mkN "psychology" "psychologies" ;
+lin psychometric_A = mkAMost "psychometric" "psychometricly" ;
+lin psychometry_N = mkN "psychometry" "psychometries" ;
+lin psychomotor_A = mkAMost "psychomotor" "psychomotorly" ;
+lin psychopath_N = mkN "psychopath" "psychopaths" ;
+lin psychopathic_A = mkAMost "psychopathic" "psychopathicly" ;
+lin psychopharmacological_A = mkAMost "psychopharmacological" "psychopharmacologically" ;
+lin psychopharmacology_N = mkN "psychopharmacology" "psychopharmacologies" ;
+lin psychophysicist_N = mkN "psychophysicist" "psychophysicists" ;
+lin psychophysics_N = mkN "psychophysics" "psychophysicses" ;
+lin psychopomp_N = mkN "psychopomp" "psychopomps" ;
+lin psychosexual_A = mkAMost "psychosexual" "psychosexually" ;
+lin psychosexuality_N = mkN "psychosexuality" "psychosexualities" ;
+lin psychosis_N = mkN "psychosis" "psychoses" ;
+lin psychosomatic_A = mkAMost "psychosomatic" "psychosomaticly" ;
+lin psychosurgery_N = mkN "psychosurgery" "psychosurgeries" ;
+lin psychotherapeutic_A = mkAMost "psychotherapeutic" "psychotherapeuticly" ;
+lin psychotherapist_N = mkN "psychotherapist" "psychotherapists" ;
+lin psychotherapy_N = mkN "psychotherapy" "psychotherapies" ;
+lin psychotic_A = mkAMost "psychotic" "psychoticly" ;
+lin psychotic_N = mkN "psychotic" "psychotics" ;
+lin psychrometer_N = mkN "psychrometer" "psychrometers" ;
+lin pt_N = mkN "pt" "pts" ;
+lin pta_N = mkN "pta" "ptas" ;
+lin ptarmigan_N = mkN "ptarmigan" "ptarmigans" ;
+lin pteridological_A = mkAMost "pteridological" "pteridologically" ;
+lin pteridologist_N = mkN "pteridologist" "pteridologists" ;
+lin pteridology_N = mkN "pteridology" "pteridologies" ;
+lin pteridophyte_N = mkN "pteridophyte" "pteridophytes" ;
+lin pterion_N = mkN "pterion" "pterions" ;
+lin pterodactyl_N = mkN "pterodactyl" "pterodactyls" ;
+lin pteropogon_N = mkN "pteropogon" "pteropogons" ;
+lin pterosaur_N = mkN "pterosaur" "pterosaurs" ;
+lin pterygium_N = mkN "pterygium" "pterygiums" ;
+lin ptomaine_N = mkN "ptomaine" "ptomaines" ;
+lin ptosis_N = mkN "ptosis" "ptosises" ;
+lin ptyalin_N = mkN "ptyalin" "ptyalins" ;
+lin ptyalism_N = mkN "ptyalism" "ptyalisms" ;
+lin ptyalith_N = mkN "ptyalith" "ptyaliths" ;
+lin pub_N = mkN "pub" "pubs" ;
+lin pub_crawl_N = mkN "pub-crawl" "pub-crawls" ;
+lin pub_crawl_V = mkV "pub-crawl" "pub-crawled" "pub-crawled" ;
+lin pubertal_A = mkAMost "pubertal" "pubertally" ;
+lin puberty_N = mkN "puberty" "puberties" ;
+lin pubes_N = mkN "pubes" "pubeses" ;
+lin pubescent_A = mkAMost "pubescent" "pubescently" ;
+lin pubic_A = mkAMost "pubic" "pubicly" ;
+lin pubis_N = mkN "pubis" "pubises" ;
+lin public_A = mkAMost "public" "publicly" ;
+lin public_N = mkN "public" "publics" ;
+lin public_spirited_A = mkAMost "public-spirited" "public-spiritedly" ;
+lin publican_N = mkN "publican" "publicans" ;
+lin publication_N = mkN "publication" "publications" ;
+lin publicist_N = mkN "publicist" "publicists" ;
+lin publicity_N = mkN "publicity" "publicities" ;
+lin publicize_V = mkV "publicize" "publicized" "publicized" ;
+lin publish_V = mkV "publish" "published" "published" ;
+lin publishable_A = mkAMost "publishable" "publishably" ;
+lin publisher_N = mkN "publisher" "publishers" ;
+lin publishing_A = mkAMost "publishing" "publishingly" ;
+lin puccoon_N = mkN "puccoon" "puccoons" ;
+lin puce_N = mkN "puce" "puces" ;
+lin puck_N = mkN "puck" "pucks" ;
+lin pucker_N = mkN "pucker" "puckers" ;
+lin pucker_V = mkV "pucker" "puckered" "puckered" ;
+lin puckish_A = mkAMost "puckish" "puckishly" ;
+lin pud_N = mkN "pud" "puds" ;
+lin pudden_N = mkN "pudden" "puddens" ;
+lin pudden_head_N = mkN "pudden-head" "pudden-heads" ;
+lin pudding_N = mkN "pudding" "puddings" ;
+lin pudding_face_N = mkN "pudding-face" "pudding-faces" ;
+lin puddingwife_N = mkN "puddingwife" "puddingwifes" ;
+lin puddle_N = mkN "puddle" "puddles" ;
+lin puddle_V = mkV "puddle" "puddled" "puddled" ;
+lin puddler_N = mkN "puddler" "puddlers" ;
+lin pudendal_A = mkAMost "pudendal" "pudendally" ;
+lin pudendum_N = mkN "pudendum" "pudendums" ;
+lin pudge_N = mkN "pudge" "pudges" ;
+lin pudgy_A = mkA "pudgy" "pudgier" "pudgiest" "pudgily" ;
+lin pueblo_N = mkN "pueblo" "pueblos" ;
+lin puerile_A = mkAMost "puerile" "puerilely" ;
+lin puerility_N = mkN "puerility" "puerilities" ;
+lin puerpera_N = mkN "puerpera" "puerperas" ;
+lin puerperal_A = mkAMost "puerperal" "puerperally" ;
+lin puerperium_N = mkN "puerperium" "puerperiums" ;
+lin puff_A = mkA "puff" "puffer" "puffest" "puffly" ;
+lin puff_N = mkN "puff" "puffs" ;
+lin puff_V = mkV "puff" "puffed" "puffed" ;
+lin puffball_N = mkN "puffball" "puffballs" ;
+lin puffbird_N = mkN "puffbird" "puffbirds" ;
+lin puffer_N = mkN "puffer" "puffers" ;
+lin puffery_N = mkN "puffery" "pufferies" ;
+lin puffin_N = mkN "puffin" "puffins" ;
+lin puffiness_N = mkN "puffiness" "puffinesses" ;
+lin puffing_N = mkN "puffing" "puffings" ;
+lin puffy_A = mkA "puffy" "puffier" "puffiest" "puffily" ;
+lin pug_N = mkN "pug" "pugs" ;
+lin pug_dog_N = mkN "pug-dog" "pug-dogs" ;
+lin pug_nose_A = mkAMost "pug-nose" "pug-nosely" ;
+lin pug_nose_N = mkN "pug-nose" "pug-noses" ;
+lin pug_nosed_A = mkAMost "pug-nosed" "pug-nosedly" ;
+lin pugilism_N = mkN "pugilism" "pugilisms" ;
+lin pugilist_N = mkN "pugilist" "pugilists" ;
+lin pugilistic_A = mkAMost "pugilistic" "pugilisticly" ;
+lin pugnacious_A = mkAMost "pugnacious" "pugnaciously" ;
+lin pugnacity_N = mkN "pugnacity" "pugnacities" ;
+lin puissance_N = mkN "puissance" "puissances" ;
+lin puissant_A = mkAMost "puissant" "puissantly" ;
+lin puka_N = mkN "puka" "pukas" ;
+lin puke_N = mkN "puke" "pukes" ;
+lin puke_V = mkV "puke" "puked" "puked" ;
+lin pukka_A = mkAMost "pukka" "pukkaly" ;
+lin puku_N = mkN "puku" "pukus" ;
+lin pul_N = mkN "pul" "puls" ;
+lin pula_N = mkN "pula" "pulas" ;
+lin pulasan_N = mkN "pulasan" "pulasans" ;
+lin pulchritude_N = mkN "pulchritude" "pulchritudes" ;
+lin pulchritudinous_A = mkAMost "pulchritudinous" "pulchritudinously" ;
+lin pule_V = mkV "pule" "puled" "puled" ;
+lin pull_N = mkN "pull" "pulls" ;
+lin pull_V = mkV "pull" "pulled" "pulled" ;
+lin pull_in_N = mkN "pull-in" "pull-ins" ;
+lin pull_off_N = mkN "pull-off" "pull-offs" ;
+lin pull_out_N = mkN "pull-out" "pull-outs" ;
+lin pull_through_N = mkN "pull-through" "pull-throughs" ;
+lin pull_up_N = mkN "pull-up" "pull-ups" ;
+lin pullback_N = mkN "pullback" "pullbacks" ;
+lin puller_N = mkN "puller" "pullers" ;
+lin pullet_N = mkN "pullet" "pullets" ;
+lin pulley_N = mkN "pulley" "pulleys" ;
+lin pulley_block_N = mkN "pulley-block" "pulley-blocks" ;
+lin pullman_N = mkN "pullman" "pullmans" ;
+lin pullover_N = mkN "pullover" "pullovers" ;
+lin pullulate_V = mkV "pullulate" "pullulated" "pullulated" ;
+lin pullulation_N = mkN "pullulation" "pullulations" ;
+lin pulmonary_A = mkAMost "pulmonary" "pulmonarily" ;
+lin pulp_N = mkN "pulp" "pulps" ;
+lin pulp_V = mkV "pulp" "pulped" "pulped" ;
+lin pulpit_N = mkN "pulpit" "pulpits" ;
+lin pulpwood_N = mkN "pulpwood" "pulpwoods" ;
+lin pulpy_A = mkA "pulpy" "pulpier" "pulpiest" "pulpily" ;
+lin pulque_N = mkN "pulque" "pulques" ;
+lin pulsar_N = mkN "pulsar" "pulsars" ;
+lin pulsate_V = mkV "pulsate" "pulsated" "pulsated" ;
+lin pulsation_N = mkN "pulsation" "pulsations" ;
+lin pulse_N = mkN "pulse" "pulses" ;
+lin pulse_V = mkV "pulse" "pulsed" "pulsed" ;
+lin pulverization_N = mkN "pulverization" "pulverizations" ;
+lin pulverize_V = mkV "pulverize" "pulverized" "pulverized" ;
+lin puma_N = mkN "puma" "pumas" ;
+lin pumice_N = mkN "pumice" "pumices" ;
+lin pumice_stone_N = mkN "pumice-stone" "pumice-stones" ;
+lin pummel_V = mkV "pummel" "pummelled" "pummelled" ;
+lin pump_N = mkN "pump" "pumps" ;
+lin pump_V = mkV "pump" "pumped" "pumped" ;
+lin pump_room_N = mkN "pump-room" "pump-rooms" ;
+lin pumpernickel_N = mkN "pumpernickel" "pumpernickels" ;
+lin pumpkin_N = mkN "pumpkin" "pumpkins" ;
+lin pumpkinseed_N = mkN "pumpkinseed" "pumpkinseeds" ;
+lin pun_N = mkN "pun" "puns" ;
+lin pun_V = mkV "pun" "punned" "punned" ;
+lin punch_N = mkN "punch" "punches" ;
+lin punch_V = mkV "punch" "punched" "punched" ;
+lin punch_drunk_A = mkAMost "punch-drunk" "punch-drunkly" ;
+lin punch_up_N = mkN "punch-up" "punch-ups" ;
+lin punchball_N = mkN "punchball" "punchballs" ;
+lin punchboard_N = mkN "punchboard" "punchboards" ;
+lin punchbowl_N = mkN "punchbowl" "punchbowls" ;
+lin puncher_N = mkN "puncher" "punchers" ;
+lin punching_ball_N = mkN "punching-ball" "punching-balls" ;
+lin punctilio_N = mkN "punctilio" "punctilios" ;
+lin punctilious_A = mkAMost "punctilious" "punctiliously" ;
+lin punctiliousness_N = mkN "punctiliousness" "punctiliousnesses" ;
+lin punctual_A = mkAMost "punctual" "punctually" ;
+lin punctuality_N = mkN "punctuality" "punctualities" ;
+lin punctuate_V = mkV "punctuate" "punctuated" "punctuated" ;
+lin punctuation_N = mkN "punctuation" "punctuations" ;
+lin punctum_N = mkN "punctum" "punctums" ;
+lin puncturable_A = mkAMost "puncturable" "puncturably" ;
+lin puncture_N = mkN "puncture" "punctures" ;
+lin puncture_V = mkV "puncture" "punctured" "punctured" ;
+lin punctureless_A = mkAMost "punctureless" "puncturelessly" ;
+lin pundit_N = mkN "pundit" "pundits" ;
+lin pung_N = mkN "pung" "pungs" ;
+lin pungapung_N = mkN "pungapung" "pungapungs" ;
+lin pungency_N = mkN "pungency" "pungencies" ;
+lin pungent_A = mkAMost "pungent" "pungently" ;
+lin punic_A = mkAMost "punic" "punicly" ;
+lin puniness_N = mkN "puniness" "puninesses" ;
+lin punish_V = mkV "punish" "punished" "punished" ;
+lin punishable_A = mkAMost "punishable" "punishably" ;
+lin punishing_A = mkAMost "punishing" "punishingly" ;
+lin punishment_N = mkN "punishment" "punishments" ;
+lin punitive_A = mkAMost "punitive" "punitively" ;
+lin punk_N = mkN "punk" "punks" ;
+lin punkah_N = mkN "punkah" "punkahs" ;
+lin punkie_N = mkN "punkie" "punkies" ;
+lin punks_N = mkN "punks" "punkses" ;
+lin punnet_N = mkN "punnet" "punnets" ;
+lin punster_N = mkN "punster" "punsters" ;
+lin punt_N = mkN "punt" "punts" ;
+lin punt_V = mkV "punt" "punted" "punted" ;
+lin punter_N = mkN "punter" "punters" ;
+lin puny_A = mkA "puny" "punier" "puniest" "punily" ;
+lin pup_N = mkN "pup" "pups" ;
+lin pupa_N = mkN "pupa" "pupas" ;
+lin pupal_A = mkAMost "pupal" "pupally" ;
+lin pupil_N = mkN "pupil" "pupils" ;
+lin pupillary_A = mkAMost "pupillary" "pupillarily" ;
+lin puppet_N = mkN "puppet" "puppets" ;
+lin puppeteer_N = mkN "puppeteer" "puppeteers" ;
+lin puppetry_N = mkN "puppetry" "puppetries" ;
+lin puppy_N = mkN "puppy" "puppies" ;
+lin puppyish_A = mkAMost "puppyish" "puppyishly" ;
+lin purblind_A = mkAMost "purblind" "purblindly" ;
+lin purchasable_A = mkAMost "purchasable" "purchasably" ;
+lin purchase_N = mkN "purchase" "purchases" ;
+lin purchase_V = mkV "purchase" "purchased" "purchased" ;
+lin purchaser_N = mkN "purchaser" "purchasers" ;
+lin purdah_N = mkN "purdah" "purdahs" ;
+lin pure_A = mkA "pure" "purer" "purest" "purely" ;
+lin purebred_A = mkAMost "purebred" "purebredly" ;
+lin pureness_N = mkN "pureness" "purenesses" ;
+lin purgation_N = mkN "purgation" "purgations" ;
+lin purgative_A = mkAMost "purgative" "purgatively" ;
+lin purgative_N = mkN "purgative" "purgatives" ;
+lin purgatorial_A = mkAMost "purgatorial" "purgatorially" ;
+lin purgatory_N = mkN "purgatory" "purgatories" ;
+lin purge_N = mkN "purge" "purges" ;
+lin purge_V = mkV "purge" "purged" "purged" ;
+lin purification_N = mkN "purification" "purifications" ;
+lin purifier_N = mkN "purifier" "purifiers" ;
+lin purify_V = mkV "purify" "purified" "purified" ;
+lin purifying_A = mkAMost "purifying" "purifyingly" ;
+lin purine_N = mkN "purine" "purines" ;
+lin purism_N = mkN "purism" "purisms" ;
+lin purist_N = mkN "purist" "purists" ;
+lin puritan_A = mkAMost "puritan" "puritanly" ;
+lin puritan_N = mkN "puritan" "puritans" ;
+lin puritanical_A = mkAMost "puritanical" "puritanically" ;
+lin puritanism_N = mkN "puritanism" "puritanisms" ;
+lin purity_N = mkN "purity" "purities" ;
+lin purl_N = mkN "purl" "purls" ;
+lin purl_V = mkV "purl" "purled" "purled" ;
+lin purloin_V = mkV "purloin" "purloined" "purloined" ;
+lin purloo_N = mkN "purloo" "purloos" ;
+lin purple_A = mkAMost "purple" "purplely" ;
+lin purple_N = mkN "purple" "purples" ;
+lin purplish_A = mkAMost "purplish" "purplishly" ;
+lin purport_N = mkN "purport" "purports" ;
+lin purport_V = mkV "purport" "purported" "purported" ;
+lin purportedly_Adv = mkAdv "purportedly" ;
+lin purpose_N = mkN "purpose" "purposes" ;
+lin purpose_V = mkV "purpose" "purposed" "purposed" ;
+lin purpose_built_A = mkAMost "purpose-built" "purpose-builtly" ;
+lin purposeful_A = mkAMost "purposeful" "purposefully" ;
+lin purposefulness_N = mkN "purposefulness" "purposefulnesses" ;
+lin purposeless_A = mkAMost "purposeless" "purposelessly" ;
+lin purposelessness_N = mkN "purposelessness" "purposelessnesses" ;
+lin purposely_Adv = mkAdv "purposely" ;
+lin purposive_A = mkAMost "purposive" "purposively" ;
+lin purpura_N = mkN "purpura" "purpuras" ;
+lin purr_N = mkN "purr" "purrs" ;
+lin purr_V = mkV "purr" "purred" "purred" ;
+lin purse_N = mkN "purse" "purses" ;
+lin purse_V = mkV "purse" "pursed" "pursed" ;
+lin purse_proud_A = mkAMost "purse-proud" "purse-proudly" ;
+lin purser_N = mkN "purser" "pursers" ;
+lin purslane_N = mkN "purslane" "purslanes" ;
+lin pursuance_N = mkN "pursuance" "pursuances" ;
+lin pursuant_A = mkAMost "pursuant" "pursuantly" ;
+lin pursuant_to_Prep = mkPrep "pursuant to" ;
+lin pursue_V = mkV "pursue" "pursued" "pursued" ;
+lin pursued_N = mkN "pursued" "pursueds" ;
+lin pursuer_N = mkN "pursuer" "pursuers" ;
+lin pursuit_N = mkN "pursuit" "pursuits" ;
+lin pursy_A = mkAMost "pursy" "pursily" ;
+lin purulence_N = mkN "purulence" "purulences" ;
+lin purulent_A = mkAMost "purulent" "purulently" ;
+lin purvey_V = mkV "purvey" "purveyed" "purveyed" ;
+lin purveyance_N = mkN "purveyance" "purveyances" ;
+lin purveyor_N = mkN "purveyor" "purveyors" ;
+lin purview_N = mkN "purview" "purviews" ;
+lin purée_N = mkN "purée" "purées" ;
+lin pus_N = mkN "pus" "puses" ;
+lin push_N = mkN "push" "pushes" ;
+lin push_V = mkV "push" "pushed" "pushed" ;
+lin push_bike_N = mkN "push-bike" "push-bikes" ;
+lin pushball_N = mkN "pushball" "pushballs" ;
+lin pushcart_N = mkN "pushcart" "pushcarts" ;
+lin pushchair_N = mkN "pushchair" "pushchairs" ;
+lin pusher_N = mkN "pusher" "pushers" ;
+lin pushful_A = mkAMost "pushful" "pushfully" ;
+lin pushover_N = mkN "pushover" "pushovers" ;
+lin pushup_N = mkN "pushup" "pushups" ;
+lin pusillanimity_N = mkN "pusillanimity" "pusillanimities" ;
+lin pusillanimous_A = mkAMost "pusillanimous" "pusillanimously" ;
+lin puss_N = mkN "puss" "IRREG" ;
+lin pussy_N = mkN "pussy" "pussies" ;
+lin pussycat_N = mkN "pussycat" "pussycats" ;
+lin pussyfoot_V = mkV "pussyfoot" "pussyfooted" "pussyfooted" ;
+lin pustule_N = mkN "pustule" "pustules" ;
+lin put_N = mkN "put" "puts" ;
+lin put_V = mkV "put" "put" "put" ;
+lin put_down_N = mkN "put-down" "put-downs" ;
+lin put_on_N = mkN "put-on" "put-ons" ;
+lin putamen_N = mkN "putamen" "putamens" ;
+lin putative_A = mkAMost "putative" "putatively" ;
+lin putdownable_A = mkAMost "putdownable" "putdownably" ;
+lin putoff_N = mkN "putoff" "putoffs" ;
+lin putout_N = mkN "putout" "putouts" ;
+lin putrefaction_N = mkN "putrefaction" "putrefactions" ;
+lin putrefactive_A = mkAMost "putrefactive" "putrefactively" ;
+lin putrefy_V = mkV "putrefy" "putrefied" "putrefied" ;
+lin putrescence_N = mkN "putrescence" "putrescences" ;
+lin putrescent_A = mkAMost "putrescent" "putrescently" ;
+lin putrescine_N = mkN "putrescine" "putrescines" ;
+lin putrid_A = mkAMost "putrid" "putridly" ;
+lin putridity_N = mkN "putridity" "putridities" ;
+lin putsch_N = mkN "putsch" "putsches" ;
+lin putt_N = mkN "putt" "putts" ;
+lin putt_V = mkV "putt" "putted" "putted" ;
+lin puttee_N = mkN "puttee" "puttees" ;
+lin putter_N = mkN "putter" "putters" ;
+lin putter_V = mkV "putter" "puttered" "puttered" ;
+lin putterer_N = mkN "putterer" "putterers" ;
+lin putting_green_N = mkN "putting-green" "putting-greens" ;
+lin putting_iron_N = mkN "putting-iron" "putting-irons" ;
+lin putty_N = mkN "putty" "putties" ;
+lin putty_V = mkV "putty" "puttied" "puttied" ;
+lin puttyroot_N = mkN "puttyroot" "puttyroots" ;
+lin putz_N = mkN "putz" "putzes" ;
+lin puzzle_N = mkN "puzzle" "puzzles" ;
+lin puzzle_V = mkV "puzzle" "puzzled" "puzzled" ;
+lin puzzlement_N = mkN "puzzlement" "puzzlements" ;
+lin puzzler_N = mkN "puzzler" "puzzlers" ;
+lin pya_N = mkN "pya" "pyas" ;
+lin pycnidium_N = mkN "pycnidium" "pycnidiums" ;
+lin pycnodysostosis_N = mkN "pycnodysostosis" "pycnodysostosises" ;
+lin pycnosis_N = mkN "pycnosis" "pycnosises" ;
+lin pyelitis_N = mkN "pyelitis" "pyelitises" ;
+lin pyelogram_N = mkN "pyelogram" "pyelograms" ;
+lin pyelography_N = mkN "pyelography" "pyelographies" ;
+lin pyelonephritis_N = mkN "pyelonephritis" "pyelonephritises" ;
+lin pyemia_N = mkN "pyemia" "pyemias" ;
+lin pyemic_A = mkAMost "pyemic" "pyemicly" ;
+lin pygmy_N = mkN "pygmy" "pygmies" ;
+lin pyinma_N = mkN "pyinma" "pyinmas" ;
+lin pyjama_A = mkAMost "pyjama" "pyjamaly" ;
+lin pyknotic_A = mkAMost "pyknotic" "pyknoticly" ;
+lin pylon_N = mkN "pylon" "pylons" ;
+lin pyloric_A = mkAMost "pyloric" "pyloricly" ;
+lin pylorus_N = mkN "pylorus" "pyloruses" ;
+lin pyocyanase_N = mkN "pyocyanase" "pyocyanases" ;
+lin pyocyanin_N = mkN "pyocyanin" "pyocyanins" ;
+lin pyogenic_A = mkAMost "pyogenic" "pyogenicly" ;
+lin pyorrhea_N = mkN "pyorrhea" "pyorrheas" ;
+lin pyorrhoea_N = mkN "pyorrhoea" "pyorrhoeas" ;
+lin pyralid_N = mkN "pyralid" "pyralids" ;
+lin pyramid_N = mkN "pyramid" "pyramids" ;
+lin pyramidal_A = mkAMost "pyramidal" "pyramidally" ;
+lin pyramidically_Adv = mkAdv "pyramidically" ;
+lin pyramiding_N = mkN "pyramiding" "pyramidings" ;
+lin pyre_N = mkN "pyre" "pyres" ;
+lin pyrectic_A = mkAMost "pyrectic" "pyrecticly" ;
+lin pyrene_N = mkN "pyrene" "pyrenes" ;
+lin pyrethrum_N = mkN "pyrethrum" "pyrethrums" ;
+lin pyretic_A = mkAMost "pyretic" "pyreticly" ;
+lin pyridine_N = mkN "pyridine" "pyridines" ;
+lin pyrilamine_N = mkN "pyrilamine" "pyrilamines" ;
+lin pyrimidine_N = mkN "pyrimidine" "pyrimidines" ;
+lin pyrite_N = mkN "pyrite" "pyrites" ;
+lin pyrites_N = mkN "pyrites" "pyriteses" ;
+lin pyrocellulose_N = mkN "pyrocellulose" "pyrocelluloses" ;
+lin pyrochemical_A = mkAMost "pyrochemical" "pyrochemically" ;
+lin pyroelectric_A = mkAMost "pyroelectric" "pyroelectricly" ;
+lin pyroelectricity_N = mkN "pyroelectricity" "pyroelectricities" ;
+lin pyrogallic_A = mkAMost "pyrogallic" "pyrogallicly" ;
+lin pyrogallol_N = mkN "pyrogallol" "pyrogallols" ;
+lin pyrogen_N = mkN "pyrogen" "pyrogens" ;
+lin pyrogenic_A = mkAMost "pyrogenic" "pyrogenicly" ;
+lin pyrograph_N = mkN "pyrograph" "pyrographs" ;
+lin pyrographer_N = mkN "pyrographer" "pyrographers" ;
+lin pyrographic_A = mkAMost "pyrographic" "pyrographicly" ;
+lin pyrography_N = mkN "pyrography" "pyrographies" ;
+lin pyrolatry_N = mkN "pyrolatry" "pyrolatries" ;
+lin pyroligneous_A = mkAMost "pyroligneous" "pyroligneously" ;
+lin pyrolusite_N = mkN "pyrolusite" "pyrolusites" ;
+lin pyrolysis_N = mkN "pyrolysis" "pyrolysises" ;
+lin pyrolytic_A = mkAMost "pyrolytic" "pyrolyticly" ;
+lin pyromancer_N = mkN "pyromancer" "pyromancers" ;
+lin pyromancy_N = mkN "pyromancy" "pyromancies" ;
+lin pyromania_N = mkN "pyromania" "pyromanias" ;
+lin pyromaniac_N = mkN "pyromaniac" "pyromaniacs" ;
+lin pyrometer_N = mkN "pyrometer" "pyrometers" ;
+lin pyromorphite_N = mkN "pyromorphite" "pyromorphites" ;
+lin pyrope_N = mkN "pyrope" "pyropes" ;
+lin pyrophobia_N = mkN "pyrophobia" "pyrophobias" ;
+lin pyrophosphate_N = mkN "pyrophosphate" "pyrophosphates" ;
+lin pyrophyllite_N = mkN "pyrophyllite" "pyrophyllites" ;
+lin pyrostat_N = mkN "pyrostat" "pyrostats" ;
+lin pyrotechnic_A = mkAMost "pyrotechnic" "pyrotechnicly" ;
+lin pyrotechnics_N = mkN "pyrotechnics" "pyrotechnicses" ;
+lin pyroxene_N = mkN "pyroxene" "pyroxenes" ;
+lin pyroxylin_N = mkN "pyroxylin" "pyroxylins" ;
+lin pyrrhic_A = mkAMost "pyrrhic" "pyrrhicly" ;
+lin pyrrhic_N = mkN "pyrrhic" "pyrrhics" ;
+lin pyrrhotite_N = mkN "pyrrhotite" "pyrrhotites" ;
+lin pyrrhuloxia_N = mkN "pyrrhuloxia" "pyrrhuloxias" ;
+lin pythium_N = mkN "pythium" "pythiums" ;
+lin python_N = mkN "python" "pythons" ;
+lin pythoness_N = mkN "pythoness" "pythonesses" ;
+lin pyuria_N = mkN "pyuria" "pyurias" ;
+lin pyx_N = mkN "pyx" "pyxes" ;
+lin pyxidium_N = mkN "pyxidium" "pyxidiums" ;
+lin pyxie_N = mkN "pyxie" "pyxies" ;
+lin pyxis_N = mkN "pyxis" "pyxises" ;
+lin pâté_N = mkN "pâté" "pâtés" ;
+lin qadi_N = mkN "qadi" "qadis" ;
+lin qatari_A = mkAMost "qatari" "qatarily" ;
+lin qatari_N = mkN "qatari" "qataris" ;
+lin qc_N = mkN "qc" "qcs" ;
+lin qepiq_N = mkN "qepiq" "qepiqs" ;
+lin qi_N = mkN "qi" "qis" ;
+lin qibla_N = mkN "qibla" "qiblas" ;
+lin qindarka_N = mkN "qindarka" "qindarkas" ;
+lin qoph_N = mkN "qoph" "qophs" ;
+lin qt_N = mkN "qt" "qt" ;
+lin qua_Prep = mkPrep "qua" ;
+lin quack_N = mkN "quack" "quacks" ;
+lin quack_V = mkV "quack" "quacked" "quacked" ;
+lin quack_quack_N = mkN "quack-quack" "quack-quacks" ;
+lin quackery_N = mkN "quackery" "quackeries" ;
+lin quad_N = mkN "quad" "quads" ;
+lin quadrangle_N = mkN "quadrangle" "quadrangles" ;
+lin quadrangular_A = mkAMost "quadrangular" "quadrangularly" ;
+lin quadrant_N = mkN "quadrant" "quadrants" ;
+lin quadrantanopia_N = mkN "quadrantanopia" "quadrantanopias" ;
+lin quadraphonic_A = mkAMost "quadraphonic" "quadraphonicly" ;
+lin quadraphony_N = mkN "quadraphony" "quadraphonies" ;
+lin quadrate_A = mkAMost "quadrate" "quadrately" ;
+lin quadrate_N = mkN "quadrate" "quadrates" ;
+lin quadratic_A = mkAMost "quadratic" "quadraticly" ;
+lin quadratic_N = mkN "quadratic" "quadratics" ;
+lin quadratics_N = mkN "quadratics" "quadraticses" ;
+lin quadrature_N = mkN "quadrature" "quadratures" ;
+lin quadrennium_N = mkN "quadrennium" "quadrenniums" ;
+lin quadric_N = mkN "quadric" "quadrics" ;
+lin quadriceps_N = mkN "quadriceps" "quadricepses" ;
+lin quadrilateral_A = mkAMost "quadrilateral" "quadrilaterally" ;
+lin quadrilateral_N = mkN "quadrilateral" "quadrilaterals" ;
+lin quadrille_N = mkN "quadrille" "quadrilles" ;
+lin quadrillion_N = mkN "quadrillion" "quadrillions" ;
+lin quadrillionth_A = mkAMost "quadrillionth" "quadrillionthly" ;
+lin quadripara_N = mkN "quadripara" "quadriparas" ;
+lin quadripartite_A = mkAMost "quadripartite" "quadripartitely" ;
+lin quadriplegia_N = mkN "quadriplegia" "quadriplegias" ;
+lin quadriplegic_N = mkN "quadriplegic" "quadriplegics" ;
+lin quadrivium_N = mkN "quadrivium" "quadriviums" ;
+lin quadroon_N = mkN "quadroon" "quadroons" ;
+lin quadrophonic_A = mkAMost "quadrophonic" "quadrophonicly" ;
+lin quadrophony_N = mkN "quadrophony" "quadrophonies" ;
+lin quadrumvirate_N = mkN "quadrumvirate" "quadrumvirates" ;
+lin quadruped_N = mkN "quadruped" "quadrupeds" ;
+lin quadrupedal_A = mkAMost "quadrupedal" "quadrupedally" ;
+lin quadruple_A = mkAMost "quadruple" "quadruplely" ;
+lin quadruple_N = mkN "quadruple" "quadruples" ;
+lin quadruple_V = mkV "quadruple" "quadrupled" "quadrupled" ;
+lin quadruplet_N = mkN "quadruplet" "quadruplets" ;
+lin quadruplicate_A = mkAMost "quadruplicate" "quadruplicately" ;
+lin quadruplicate_N = mkN "quadruplicate" "quadruplicates" ;
+lin quadruplicate_V = mkV "quadruplicate" "quadruplicated" "quadruplicated" ;
+lin quadrupling_N = mkN "quadrupling" "quadruplings" ;
+lin quaestor_N = mkN "quaestor" "quaestors" ;
+lin quaff_N = mkN "quaff" "quaffs" ;
+lin quaff_V = mkV "quaff" "quaffed" "quaffed" ;
+lin quaffer_N = mkN "quaffer" "quaffers" ;
+lin quagga_N = mkN "quagga" "quaggas" ;
+lin quagmire_N = mkN "quagmire" "quagmires" ;
+lin quahaug_N = mkN "quahaug" "quahaugs" ;
+lin quahog_N = mkN "quahog" "quahogs" ;
+lin quai_d'orsay_N = mkN "quai d'orsay" "IRREG" ;
+lin quail_N = mkN "quail" "quails" ;
+lin quail_V = mkV "quail" "quailed" "quailed" ;
+lin quaint_A = mkA "quaint" "quainter" "quaintest" "quaintly" ;
+lin quaintness_N = mkN "quaintness" "quaintnesses" ;
+lin quake_N = mkN "quake" "quakes" ;
+lin quake_V = mkV "quake" "quaked" "quaked" ;
+lin quaker_N = mkN "quaker" "quakers" ;
+lin qualification_N = mkN "qualification" "qualifications" ;
+lin qualifier_N = mkN "qualifier" "qualifiers" ;
+lin qualify_V = mkV "qualify" "qualified" "qualified" ;
+lin qualitative_A = mkAMost "qualitative" "qualitatively" ;
+lin quality_A = mkAMost "quality" "qualitily" ;
+lin quality_N = mkN "quality" "qualities" ;
+lin qualm_N = mkN "qualm" "qualms" ;
+lin quandary_N = mkN "quandary" "quandaries" ;
+lin quandong_N = mkN "quandong" "quandongs" ;
+lin quango_N = mkN "quango" "quangos" ;
+lin quantal_A = mkAMost "quantal" "quantally" ;
+lin quantic_N = mkN "quantic" "quantics" ;
+lin quantifiability_N = mkN "quantifiability" "quantifiabilities" ;
+lin quantifiable_A = mkAMost "quantifiable" "quantifiably" ;
+lin quantification_N = mkN "quantification" "quantifications" ;
+lin quantifier_N = mkN "quantifier" "quantifiers" ;
+lin quantify_V = mkV "quantify" "quantified" "quantified" ;
+lin quantitative_A = mkAMost "quantitative" "quantitatively" ;
+lin quantity_N = mkN "quantity" "quantities" ;
+lin quantization_N = mkN "quantization" "quantizations" ;
+lin quantum_N = mkN "quantum" "quanta" ;
+lin quarantine_N = mkN "quarantine" "quarantines" ;
+lin quarantine_V = mkV "quarantine" "quarantined" "quarantined" ;
+lin quark_N = mkN "quark" "quarks" ;
+lin quarrel_N = mkN "quarrel" "quarrels" ;
+lin quarrel_quarreled_V = mkV "quarrel" "quarreled" "quarreled" ;
+lin quarrel_quarrelled_V = mkV "quarrel" "quarrelled" "quarrelled" ;
+lin quarreler_N = mkN "quarreler" "quarrelers" ;
+lin quarrelsome_A = mkAMost "quarrelsome" "quarrelsomely" ;
+lin quarrelsomeness_N = mkN "quarrelsomeness" "quarrelsomenesses" ;
+lin quarry_N = mkN "quarry" "quarries" ;
+lin quarry_V = mkV "quarry" "quarried" "quarried" ;
+lin quarrying_N = mkN "quarrying" "quarryings" ;
+lin quarryman_N = mkN "quarryman" "quarrymen" ;
+lin quart_N = mkN "quart" "quarts" ;
+lin quartan_A = mkAMost "quartan" "quartanly" ;
+lin quartan_N = mkN "quartan" "quartans" ;
+lin quarter_N = mkN "quarter" "quarters" ;
+lin quarter_V = mkV "quarter" "quartered" "quartered" ;
+lin quarter_day_N = mkN "quarter-day" "quarter-days" ;
+lin quarter_deck_N = mkN "quarter-deck" "quarter-decks" ;
+lin quarter_plate_N = mkN "quarter-plate" "quarter-plates" ;
+lin quarterback_N = mkN "quarterback" "quarterbacks" ;
+lin quarterdeck_N = mkN "quarterdeck" "quarterdecks" ;
+lin quarterfinal_N = mkN "quarterfinal" "quarterfinals" ;
+lin quartering_N = mkN "quartering" "quarterings" ;
+lin quarterlight_N = mkN "quarterlight" "quarterlights" ;
+lin quarterly_A = mkAMost "quarterly" "quarterlily" ;
+lin quarterly_Adv = mkAdv "quarterly" ;
+lin quarterly_N = mkN "quarterly" "quarterlies" ;
+lin quartermaster_N = mkN "quartermaster" "quartermasters" ;
+lin quartermaster_general_N = mkN "quartermaster-general" "quartermaster-generals" ;
+lin quarterstaff_N = mkN "quarterstaff" "quarterstaffs" ;
+lin quartet_N = mkN "quartet" "quartets" ;
+lin quartile_N = mkN "quartile" "quartiles" ;
+lin quarto_N = mkN "quarto" "quartos" ;
+lin quartz_N = mkN "quartz" "quartzes" ;
+lin quartzite_N = mkN "quartzite" "quartzites" ;
+lin quartzose_A = mkAMost "quartzose" "quartzosely" ;
+lin quasar_N = mkN "quasar" "quasars" ;
+lin quash_V = mkV "quash" "quashed" "quashed" ;
+lin quasiparticle_N = mkN "quasiparticle" "quasiparticles" ;
+lin quassia_N = mkN "quassia" "quassias" ;
+lin quatercentenary_N = mkN "quatercentenary" "quatercentenaries" ;
+lin quatercentennial_N = mkN "quatercentennial" "quatercentennials" ;
+lin quaternate_A = mkAMost "quaternate" "quaternately" ;
+lin quatrain_N = mkN "quatrain" "quatrains" ;
+lin quattrocento_N = mkN "quattrocento" "quattrocentos" ;
+lin quaver_N = mkN "quaver" "quavers" ;
+lin quaver_V = mkV "quaver" "quavered" "quavered" ;
+lin quaveringly_Adv = mkAdv "quaveringly" ;
+lin quay_N = mkN "quay" "quays" ;
+lin queasiness_N = mkN "queasiness" "queasinesses" ;
+lin queasy_A = mkA "queasy" "queasier" "queasiest" "queasily" ;
+lin queen_N = mkN "queen" "queens" ;
+lin queen_V = mkV "queen" "queened" "queened" ;
+lin queenly_A = mkA "queenly" "queenlier" "queenliest" "queenlily" ;
+lin queer_A = mkA "queer" "queerer" "queerest" "queerly" ;
+lin queer_N = mkN "queer" "queers" ;
+lin queer_V = mkV "queer" "queered" "queered" ;
+lin queerness_N = mkN "queerness" "queernesses" ;
+lin quell_V = mkV "quell" "quelled" "quelled" ;
+lin quellung_N = mkN "quellung" "quellungs" ;
+lin quench_V = mkV "quench" "quenched" "quenched" ;
+lin quenchless_A = mkAMost "quenchless" "quenchlessly" ;
+lin quercitron_N = mkN "quercitron" "quercitrons" ;
+lin quern_N = mkN "quern" "querns" ;
+lin querulous_A = mkAMost "querulous" "querulously" ;
+lin querulousness_N = mkN "querulousness" "querulousnesses" ;
+lin query_N = mkN "query" "queries" ;
+lin query_V = mkV "query" "queried" "queried" ;
+lin quesadilla_N = mkN "quesadilla" "quesadillas" ;
+lin quest_N = mkN "quest" "quests" ;
+lin quest_V = mkV "quest" "quested" "quested" ;
+lin question_N = mkN "question" "questions" ;
+lin question_V = mkV "question" "questioned" "questioned" ;
+lin question_mark_N = mkN "question-mark" "question-marks" ;
+lin question_master_N = mkN "question-master" "question-masters" ;
+lin questionable_A = mkAMost "questionable" "questionably" ;
+lin questioner_N = mkN "questioner" "questioners" ;
+lin questioning_A = mkAMost "questioning" "questioningly" ;
+lin questioning_N = mkN "questioning" "questionings" ;
+lin questionnaire_N = mkN "questionnaire" "questionnaires" ;
+lin quetzal_N = mkN "quetzal" "quetzals" ;
+lin queue_N = mkN "queue" "queues" ;
+lin queue_V = mkV "queue" "queued" "queued" ;
+lin qui_vive_N = mkN "qui vive" "qui vives" ;
+lin quibble_N = mkN "quibble" "quibbles" ;
+lin quibble_V = mkV "quibble" "quibbled" "quibbled" ;
+lin quibbler_N = mkN "quibbler" "quibblers" ;
+lin quiche_N = mkN "quiche" "quiches" ;
+lin quick_A = mkA "quick" "quicker" "quickest" "quickly" ;
+lin quick_Adv = mkAdv "quick" ;
+lin quick_N = mkN "quick" "quicks" ;
+lin quick_change_A = mkAMost "quick-change" "quick-changely" ;
+lin quick_eared_A = mkAMost "quick-eared" "quick-earedly" ;
+lin quick_eyed_A = mkAMost "quick-eyed" "quick-eyedly" ;
+lin quick_freeze_V = mkV "quick-freeze" "quick-froze" "quick-frozen" ;
+lin quick_sighted_A = mkAMost "quick-sighted" "quick-sightedly" ;
+lin quick_tempered_A = mkAMost "quick-tempered" "quick-temperedly" ;
+lin quick_witted_A = mkAMost "quick-witted" "quick-wittedly" ;
+lin quicken_V = mkV "quicken" "quickened" "quickened" ;
+lin quickener_N = mkN "quickener" "quickeners" ;
+lin quickening_N = mkN "quickening" "quickenings" ;
+lin quicker_Adv = mkAdv "quicker" ;
+lin quickest_Adv = mkAdv "quickest" ;
+lin quickie_N = mkN "quickie" "quickies" ;
+lin quicklime_N = mkN "quicklime" "quicklimes" ;
+lin quickness_N = mkN "quickness" "quicknesses" ;
+lin quicksand_N = mkN "quicksand" "quicksands" ;
+lin quickset_A = mkAMost "quickset" "quicksetly" ;
+lin quickset_N = mkN "quickset" "quicksets" ;
+lin quicksilver_N = mkN "quicksilver" "quicksilvers" ;
+lin quickstep_N = mkN "quickstep" "quicksteps" ;
+lin quid_N = mkN "quid" "quid" ;
+lin quid_pro_quo_N = mkN "quid pro quo" "quid pro qui" ;
+lin quiddity_N = mkN "quiddity" "quiddities" ;
+lin quiescence_N = mkN "quiescence" "IRREG" ;
+lin quiescent_A = mkAMost "quiescent" "quiescently" ;
+lin quiet_A = mkA "quiet" "quieter" "quietest" "quietly" ;
+lin quiet_N = mkN "quiet" "quiets" ;
+lin quiet_quieted_V = mkV "quiet" "quieted" "quieted" ;
+lin quiet_quietted_V = mkV "quiet" "quietted" "quietted" ;
+lin quieten_quietened_V = mkV "quieten" "quietened" "quietened" ;
+lin quieten_quietenned_V = mkV "quieten" "quietenned" "quietenned" ;
+lin quietism_N = mkN "quietism" "quietisms" ;
+lin quietist_N = mkN "quietist" "quietists" ;
+lin quietness_N = mkN "quietness" "quietnesses" ;
+lin quietude_N = mkN "quietude" "IRREG" ;
+lin quietus_N = mkN "quietus" "quietuses" ;
+lin quiff_N = mkN "quiff" "quiffs" ;
+lin quill_N = mkN "quill" "quills" ;
+lin quill_feather_N = mkN "quill-feather" "quill-feathers" ;
+lin quillwort_N = mkN "quillwort" "quillworts" ;
+lin quilt_N = mkN "quilt" "quilts" ;
+lin quilt_V = mkV "quilt" "quilted" "quilted" ;
+lin quilting_N = mkN "quilting" "quiltings" ;
+lin quin_N = mkN "quin" "quins" ;
+lin quinacrine_N = mkN "quinacrine" "quinacrines" ;
+lin quince_N = mkN "quince" "quinces" ;
+lin quincentenary_A = mkAMost "quincentenary" "quincentenarily" ;
+lin quincentenary_N = mkN "quincentenary" "quincentenaries" ;
+lin quincentennial_A = mkAMost "quincentennial" "quincentennially" ;
+lin quincentennial_N = mkN "quincentennial" "quincentennials" ;
+lin quinidine_N = mkN "quinidine" "quinidines" ;
+lin quinine_N = mkN "quinine" "quinines" ;
+lin quinone_N = mkN "quinone" "quinones" ;
+lin quinquagesima_N = mkN "quinquagesima" "quinquagesimas" ;
+lin quinquefoliate_A = mkAMost "quinquefoliate" "quinquefoliately" ;
+lin quinquennium_N = mkN "quinquennium" "quinquenniums" ;
+lin quinsy_N = mkN "quinsy" "quinsies" ;
+lin quintal_N = mkN "quintal" "quintals" ;
+lin quintessence_N = mkN "quintessence" "quintessences" ;
+lin quintessential_A = mkAMost "quintessential" "quintessentially" ;
+lin quintet_N = mkN "quintet" "quintets" ;
+lin quintillion_N = mkN "quintillion" "quintillions" ;
+lin quintillionth_A = mkAMost "quintillionth" "quintillionthly" ;
+lin quintipara_N = mkN "quintipara" "quintiparas" ;
+lin quintuple_A = mkAMost "quintuple" "quintuplely" ;
+lin quintuplet_N = mkN "quintuplet" "quintuplets" ;
+lin quintupling_N = mkN "quintupling" "quintuplings" ;
+lin quip_N = mkN "quip" "quips" ;
+lin quip_V = mkV "quip" "quipped" "quipped" ;
+lin quipu_N = mkN "quipu" "quipus" ;
+lin quira_N = mkN "quira" "quiras" ;
+lin quire_N = mkN "quire" "quires" ;
+lin quirk_N = mkN "quirk" "quirks" ;
+lin quirt_N = mkN "quirt" "quirts" ;
+lin quisling_N = mkN "quisling" "quislings" ;
+lin quit_quit_V = mkV "quit" "quit" "quit" ;
+lin quit_quitted_V = mkV "quit" "quitted" "quitted" ;
+lin quitclaim_N = mkN "quitclaim" "quitclaims" ;
+lin quite_Adv = mkAdv "quite" ;
+lin quits_A = mkAMost "quits" "quitsly" ;
+lin quittance_N = mkN "quittance" "quittances" ;
+lin quitter_N = mkN "quitter" "quitters" ;
+lin quiver_N = mkN "quiver" "quivers" ;
+lin quiver_V = mkV "quiver" "quivered" "quivered" ;
+lin quixotic_A = mkAMost "quixotic" "quixoticly" ;
+lin quixotically_Adv = mkAdv "quixotically" ;
+lin quiz_N = mkN "quiz" "quizzes" ;
+lin quiz_V = mkV "quiz" "quizzed" "quizzed" ;
+lin quizmaster_N = mkN "quizmaster" "quizmasters" ;
+lin quizzical_A = mkAMost "quizzical" "quizzically" ;
+lin quodlibet_N = mkN "quodlibet" "quodlibets" ;
+lin quoin_N = mkN "quoin" "quoins" ;
+lin quoit_N = mkN "quoit" "quoits" ;
+lin quoits_N = mkN "quoits" "quoitses" ;
+lin quonset_N = mkN "quonset" "quonsets" ;
+lin quorum_N = mkN "quorum" "quorums" ;
+lin quot_V = mkV "quot" "quotted" "quotted" ;
+lin quota_N = mkN "quota" "quotas" ;
+lin quotability_N = mkN "quotability" "quotabilities" ;
+lin quotable_A = mkAMost "quotable" "quotably" ;
+lin quotation_N = mkN "quotation" "quotations" ;
+lin quote_N = mkN "quote" "quotes" ;
+lin quote_V = mkV "quote" "quoted" "quoted" ;
+lin quoter_N = mkN "quoter" "quoters" ;
+lin quotidian_A = mkAMost "quotidian" "quotidianly" ;
+lin quotient_N = mkN "quotient" "quotients" ;
+lin qurush_N = mkN "qurush" "qurushes" ;
+lin ra_N = mkN "ra" "ras" ;
+lin rabato_N = mkN "rabato" "rabatoes" ;
+lin rabbet_N = mkN "rabbet" "rabbets" ;
+lin rabbi_N = mkN "rabbi" "rabbis" ;
+lin rabbinate_N = mkN "rabbinate" "rabbinates" ;
+lin rabbinical_A = mkAMost "rabbinical" "rabbinically" ;
+lin rabbit_N = mkN "rabbit" "rabbits" ;
+lin rabbit_V = mkV "rabbit" "rabbited" "rabbited" ;
+lin rabbit_burrow_N = mkN "rabbit-burrow" "rabbit-burrows" ;
+lin rabbit_hole_N = mkN "rabbit-hole" "rabbit-holes" ;
+lin rabbit_hutch_N = mkN "rabbit-hutch" "rabbit-hutches" ;
+lin rabbit_punch_N = mkN "rabbit-punch" "rabbit-punches" ;
+lin rabbit_warren_N = mkN "rabbit-warren" "rabbit-warrens" ;
+lin rabbitfish_N = mkN "rabbitfish" "rabbitfishes" ;
+lin rabbitweed_N = mkN "rabbitweed" "rabbitweeds" ;
+lin rabbitwood_N = mkN "rabbitwood" "rabbitwoods" ;
+lin rabble_N = mkN "rabble" "rabbles" ;
+lin rabble_rousing_A = mkAMost "rabble-rousing" "rabble-rousingly" ;
+lin rabelaisian_A = mkAMost "rabelaisian" "rabelaisianly" ;
+lin rabid_A = mkAMost "rabid" "rabidly" ;
+lin rabies_N = mkN "rabies" "rabieses" ;
+lin raccoon_N = mkN "raccoon" "raccoons" ;
+lin race_N = mkN "race" "races" ;
+lin race_V = mkV "race" "raced" "raced" ;
+lin race_meeting_N = mkN "race-meeting" "race-meetings" ;
+lin raceabout_N = mkN "raceabout" "raceabouts" ;
+lin racecard_N = mkN "racecard" "racecards" ;
+lin racecourse_N = mkN "racecourse" "racecourses" ;
+lin racehorse_N = mkN "racehorse" "racehorses" ;
+lin raceme_N = mkN "raceme" "racemes" ;
+lin racemose_A = mkAMost "racemose" "racemosely" ;
+lin racer_N = mkN "racer" "racers" ;
+lin racerunner_N = mkN "racerunner" "racerunners" ;
+lin racetrack_N = mkN "racetrack" "racetracks" ;
+lin raceway_N = mkN "raceway" "raceways" ;
+lin rachis_N = mkN "rachis" "rachises" ;
+lin rachitis_N = mkN "rachitis" "rachitises" ;
+lin racial_A = mkAMost "racial" "racially" ;
+lin racialism_N = mkN "racialism" "racialisms" ;
+lin racialist_N = mkN "racialist" "racialists" ;
+lin raciness_N = mkN "raciness" "racinesses" ;
+lin racing_N = mkN "racing" "racings" ;
+lin racism_N = mkN "racism" "racisms" ;
+lin racist_A = mkAMost "racist" "racistly" ;
+lin racist_N = mkN "racist" "racists" ;
+lin rack_N = mkN "rack" "racks" ;
+lin rack_V = mkV "rack" "racked" "racked" ;
+lin rack_railway_N = mkN "rack-railway" "rack-railways" ;
+lin rack_rent_N = mkN "rack-rent" "rack-rents" ;
+lin racker_N = mkN "racker" "rackers" ;
+lin racket_N = mkN "racket" "rackets" ;
+lin racket_V = mkV "racket" "racketed" "racketed" ;
+lin racketeer_N = mkN "racketeer" "racketeers" ;
+lin racketeering_N = mkN "racketeering" "racketeerings" ;
+lin rackety_A = mkAMost "rackety" "racketily" ;
+lin raconteur_N = mkN "raconteur" "raconteurs" ;
+lin racoon_N = mkN "racoon" "racoons" ;
+lin racquet_N = mkN "racquet" "racquets" ;
+lin racquetball_N = mkN "racquetball" "racquetballs" ;
+lin racy_A = mkA "racy" "racier" "raciest" "racily" ;
+lin rad_N = mkN "rad" "rads" ;
+lin radar_N = mkN "radar" "radars" ;
+lin raddled_A = mkAMost "raddled" "raddledly" ;
+lin radial_A = mkAMost "radial" "radially" ;
+lin radial_N = mkN "radial" "radials" ;
+lin radian_N = mkN "radian" "radians" ;
+lin radiance_N = mkN "radiance" "radiances" ;
+lin radiant_A = mkAMost "radiant" "radiantly" ;
+lin radiate_A = mkAMost "radiate" "radiately" ;
+lin radiate_V = mkV "radiate" "radiated" "radiated" ;
+lin radiation_N = mkN "radiation" "radiations" ;
+lin radiator_N = mkN "radiator" "radiators" ;
+lin radical_A = mkAMost "radical" "radically" ;
+lin radical_N = mkN "radical" "radicals" ;
+lin radicalism_N = mkN "radicalism" "radicalisms" ;
+lin radicchio_N = mkN "radicchio" "radicchios" ;
+lin radicle_N = mkN "radicle" "radicles" ;
+lin radiculitis_N = mkN "radiculitis" "radiculitises" ;
+lin radio_A = mkAMost "radio" "radioly" ;
+lin radio_N = mkN "radio" "radios" ;
+lin radio_V = mkV "radio" "radioed" "radioed" ;
+lin radio_gramophone_N = mkN "radio-gramophone" "radio-gramophones" ;
+lin radio_location_N = mkN "radio-location" "radio-locations" ;
+lin radio_set_N = mkN "radio-set" "radio-sets" ;
+lin radio_telescope_N = mkN "radio-telescope" "radio-telescopes" ;
+lin radioactive_A = mkAMost "radioactive" "radioactively" ;
+lin radioactivity_N = mkN "radioactivity" "radioactivities" ;
+lin radiobiologist_N = mkN "radiobiologist" "radiobiologists" ;
+lin radiobiology_N = mkN "radiobiology" "radiobiologies" ;
+lin radiocarbon_N = mkN "radiocarbon" "radiocarbons" ;
+lin radiochemistry_N = mkN "radiochemistry" "radiochemistries" ;
+lin radiochlorine_N = mkN "radiochlorine" "radiochlorines" ;
+lin radiogram_N = mkN "radiogram" "radiograms" ;
+lin radiograph_N = mkN "radiograph" "radiographs" ;
+lin radiographer_N = mkN "radiographer" "radiographers" ;
+lin radiographic_A = mkAMost "radiographic" "radiographicly" ;
+lin radiography_N = mkN "radiography" "radiographies" ;
+lin radioimmunoassay_N = mkN "radioimmunoassay" "radioimmunoassays" ;
+lin radioisotope_N = mkN "radioisotope" "radioisotopes" ;
+lin radiolarian_N = mkN "radiolarian" "radiolarians" ;
+lin radiological_A = mkAMost "radiological" "radiologically" ;
+lin radiologist_N = mkN "radiologist" "radiologists" ;
+lin radiology_N = mkN "radiology" "radiologies" ;
+lin radiolucent_A = mkAMost "radiolucent" "radiolucently" ;
+lin radiolysis_N = mkN "radiolysis" "radiolysises" ;
+lin radiometer_N = mkN "radiometer" "radiometers" ;
+lin radiomicrometer_N = mkN "radiomicrometer" "radiomicrometers" ;
+lin radiopacity_N = mkN "radiopacity" "radiopacities" ;
+lin radiopaque_A = mkAMost "radiopaque" "radiopaquely" ;
+lin radiopharmaceutical_N = mkN "radiopharmaceutical" "radiopharmaceuticals" ;
+lin radiophotograph_N = mkN "radiophotograph" "radiophotographs" ;
+lin radiophotography_N = mkN "radiophotography" "radiophotographies" ;
+lin radioprotection_N = mkN "radioprotection" "radioprotections" ;
+lin radioscopy_N = mkN "radioscopy" "radioscopies" ;
+lin radiosensitive_A = mkAMost "radiosensitive" "radiosensitively" ;
+lin radiotelegraph_N = mkN "radiotelegraph" "radiotelegraphs" ;
+lin radiotelephone_N = mkN "radiotelephone" "radiotelephones" ;
+lin radiotelephonic_A = mkAMost "radiotelephonic" "radiotelephonicly" ;
+lin radiotherapist_N = mkN "radiotherapist" "radiotherapists" ;
+lin radiotherapy_N = mkN "radiotherapy" "radiotherapies" ;
+lin radish_N = mkN "radish" "radishes" ;
+lin radium_N = mkN "radium" "radiums" ;
+lin radius_N = mkN "radius" "radii" ;
+lin radome_N = mkN "radome" "radomes" ;
+lin radon_N = mkN "radon" "radons" ;
+lin raf_N = mkN "raf" "rafs" ;
+lin raffia_N = mkN "raffia" "raffias" ;
+lin raffinose_N = mkN "raffinose" "raffinoses" ;
+lin raffish_A = mkAMost "raffish" "raffishly" ;
+lin raffle_N = mkN "raffle" "raffles" ;
+lin raffle_V = mkV "raffle" "raffled" "raffled" ;
+lin raft_N = mkN "raft" "rafts" ;
+lin raft_V = mkV "raft" "rafted" "rafted" ;
+lin rafter_N = mkN "rafter" "rafters" ;
+lin raftered_A = mkAMost "raftered" "rafteredly" ;
+lin raftsman_N = mkN "raftsman" "raftsmen" ;
+lin rag_N = mkN "rag" "rags" ;
+lin rag_V = mkV "rag" "ragged" "ragged" ;
+lin rag_day_N = mkN "rag-day" "rag-days" ;
+lin ragamuffin_N = mkN "ragamuffin" "ragamuffins" ;
+lin ragbag_N = mkN "ragbag" "ragbags" ;
+lin rage_N = mkN "rage" "rages" ;
+lin rage_V = mkV "rage" "raged" "raged" ;
+lin raggedly_Adv = mkAdv "raggedly" ;
+lin raggedness_N = mkN "raggedness" "raggednesses" ;
+lin raglan_N = mkN "raglan" "raglans" ;
+lin ragout_N = mkN "ragout" "ragouts" ;
+lin ragpicker_N = mkN "ragpicker" "ragpickers" ;
+lin ragsorter_N = mkN "ragsorter" "ragsorters" ;
+lin ragtag_N = mkN "ragtag" "ragtags" ;
+lin ragtime_N = mkN "ragtime" "ragtimes" ;
+lin ragweed_N = mkN "ragweed" "ragweeds" ;
+lin ragwort_N = mkN "ragwort" "ragworts" ;
+lin raid_N = mkN "raid" "raids" ;
+lin raid_V = mkV "raid" "raided" "raided" ;
+lin raider_N = mkN "raider" "raiders" ;
+lin rail_N = mkN "rail" "rails" ;
+lin rail_V = mkV "rail" "railed" "railed" ;
+lin railbird_N = mkN "railbird" "railbirds" ;
+lin railcar_N = mkN "railcar" "railcars" ;
+lin railhead_N = mkN "railhead" "railheads" ;
+lin railing_N = mkN "railing" "railings" ;
+lin raillery_N = mkN "raillery" "railleries" ;
+lin railroad_N = mkN "railroad" "railroads" ;
+lin railroad_V = mkV "railroad" "railroaded" "railroaded" ;
+lin railway_N = mkN "railway" "railways" ;
+lin railwayman_N = mkN "railwayman" "railwaymen" ;
+lin raiment_N = mkN "raiment" "raiments" ;
+lin rain_N = mkN "rain" "rains" ;
+lin rain_V = mkV "rain" "rained" "rained" ;
+lin rain_gauge_N = mkN "rain-gauge" "rain-gauges" ;
+lin rainbow_N = mkN "rainbow" "rainbows" ;
+lin raincoat_N = mkN "raincoat" "raincoats" ;
+lin raindrop_N = mkN "raindrop" "raindrops" ;
+lin rainfall_N = mkN "rainfall" "rainfalls" ;
+lin rainless_A = mkAMost "rainless" "rainlessly" ;
+lin rainmaker_N = mkN "rainmaker" "rainmakers" ;
+lin rainmaking_N = mkN "rainmaking" "rainmakings" ;
+lin rainproof_A = mkAMost "rainproof" "rainproofly" ;
+lin rainstorm_N = mkN "rainstorm" "rainstorms" ;
+lin rainwater_N = mkN "rainwater" "rainwaters" ;
+lin rainy_A = mkA "rainy" "rainier" "rainiest" "rainily" ;
+lin raisable_A = mkAMost "raisable" "raisably" ;
+lin raise_N = mkN "raise" "raises" ;
+lin raise_V = mkV "raise" "raised" "raised" ;
+lin raiser_N = mkN "raiser" "raisers" ;
+lin raisin_N = mkN "raisin" "raisins" ;
+lin raising_A = mkAMost "raising" "raisingly" ;
+lin raising_N = mkN "raising" "raisings" ;
+lin raison_d'être_N = mkN "raison d'être" "IRREG" ;
+lin raita_N = mkN "raita" "raitas" ;
+lin raj_N = mkN "raj" "IRREG" ;
+lin raja_N = mkN "raja" "rajas" ;
+lin rajah_N = mkN "rajah" "rajahs" ;
+lin rajanya_N = mkN "rajanya" "rajanyas" ;
+lin rake_N = mkN "rake" "rakes" ;
+lin rake_V = mkV "rake" "raked" "raked" ;
+lin rake_off_N = mkN "rake-off" "rake-offs" ;
+lin rakish_A = mkAMost "rakish" "rakishly" ;
+lin rakishness_N = mkN "rakishness" "rakishnesses" ;
+lin rallentando_A = mkAMost "rallentando" "rallentandoly" ;
+lin rallentando_Adv = mkAdv "rallentando" ;
+lin rally_N = mkN "rally" "rallies" ;
+lin rally_V = mkV "rally" "rallied" "rallied" ;
+lin rallying_N = mkN "rallying" "rallyings" ;
+lin ram_N = mkN "ram" "rams" ;
+lin ram_V = mkV "ram" "rammed" "rammed" ;
+lin ramadan_N = mkN "ramadan" "ramadans" ;
+lin ramble_N = mkN "ramble" "rambles" ;
+lin ramble_V = mkV "ramble" "rambled" "rambled" ;
+lin rambler_N = mkN "rambler" "ramblers" ;
+lin rambunctious_A = mkAMost "rambunctious" "rambunctiously" ;
+lin rambutan_N = mkN "rambutan" "rambutans" ;
+lin ramekin_N = mkN "ramekin" "ramekins" ;
+lin ramie_N = mkN "ramie" "ramies" ;
+lin ramification_N = mkN "ramification" "ramifications" ;
+lin ramify_V = mkV "ramify" "ramified" "ramified" ;
+lin ramipril_N = mkN "ramipril" "ramiprils" ;
+lin ramjet_N = mkN "ramjet" "ramjets" ;
+lin rammer_N = mkN "rammer" "rammers" ;
+lin ramp_N = mkN "ramp" "ramps" ;
+lin ramp_V = mkV "ramp" "ramped" "ramped" ;
+lin rampage_N = mkN "rampage" "rampages" ;
+lin rampage_V = mkV "rampage" "rampaged" "rampaged" ;
+lin rampageous_A = mkAMost "rampageous" "rampageously" ;
+lin rampant_A = mkAMost "rampant" "rampantly" ;
+lin rampart_N = mkN "rampart" "ramparts" ;
+lin rampion_N = mkN "rampion" "rampions" ;
+lin ramrod_N = mkN "ramrod" "ramrods" ;
+lin ramshackle_A = mkAMost "ramshackle" "ramshacklely" ;
+lin ramus_N = mkN "ramus" "ramuses" ;
+lin ranch_N = mkN "ranch" "ranches" ;
+lin rancher_N = mkN "rancher" "ranchers" ;
+lin ranching_N = mkN "ranching" "ranchings" ;
+lin rancid_A = mkAMost "rancid" "rancidly" ;
+lin rancidity_N = mkN "rancidity" "rancidities" ;
+lin rancidness_N = mkN "rancidness" "rancidnesses" ;
+lin rancor_N = mkN "rancor" "rancors" ;
+lin rancorous_A = mkAMost "rancorous" "rancorously" ;
+lin rancour_N = mkN "rancour" "rancours" ;
+lin rand_N = mkN "rand" "rands" ;
+lin random_A = mkAMost "random" "randomly" ;
+lin random_N = mkN "random" "IRREG" ;
+lin randomization_N = mkN "randomization" "randomizations" ;
+lin randomized_A = mkAMost "randomized" "randomizedly" ;
+lin randomness_N = mkN "randomness" "randomnesses" ;
+lin randy_A = mkA "randy" "randier" "randiest" "randily" ;
+lin ranee_N = mkN "ranee" "ranees" ;
+lin rang_V = mkV "rang" "ranged" "ranged" ;
+lin range_N = mkN "range" "ranges" ;
+lin range_V = mkV "range" "ranged" "ranged" ;
+lin rangefinder_N = mkN "rangefinder" "rangefinders" ;
+lin rangeland_N = mkN "rangeland" "rangelands" ;
+lin ranger_N = mkN "ranger" "rangers" ;
+lin rangpur_N = mkN "rangpur" "rangpurs" ;
+lin rangy_A = mkA "rangy" "rangier" "rangiest" "rangily" ;
+lin rani_N = mkN "rani" "ranis" ;
+lin ranitidine_N = mkN "ranitidine" "ranitidines" ;
+lin rank_A = mkAMost "rank" "rankly" ;
+lin rank_N = mkN "rank" "ranks" ;
+lin rank_V = mkV "rank" "ranked" "ranked" ;
+lin ranker_N = mkN "ranker" "rankers" ;
+lin ranking_N = mkN "ranking" "rankings" ;
+lin rankle_V = mkV "rankle" "rankled" "rankled" ;
+lin rankness_N = mkN "rankness" "ranknesses" ;
+lin ransack_V = mkV "ransack" "ransacked" "ransacked" ;
+lin ransacking_N = mkN "ransacking" "ransackings" ;
+lin ransom_N = mkN "ransom" "ransoms" ;
+lin ransom_V = mkV "ransom" "ransomed" "ransomed" ;
+lin rant_N = mkN "rant" "rants" ;
+lin rant_V = mkV "rant" "ranted" "ranted" ;
+lin ranter_N = mkN "ranter" "ranters" ;
+lin ranula_N = mkN "ranula" "ranulas" ;
+lin rap_N = mkN "rap" "raps" ;
+lin rap_V = mkV "rap" "rapped" "rapped" ;
+lin rapacious_A = mkAMost "rapacious" "rapaciously" ;
+lin rapacity_N = mkN "rapacity" "rapacities" ;
+lin rape_N = mkN "rape" "rapes" ;
+lin rape_V = mkV "rape" "raped" "raped" ;
+lin raper_N = mkN "raper" "rapers" ;
+lin rapeseed_N = mkN "rapeseed" "rapeseeds" ;
+lin raphe_N = mkN "raphe" "raphes" ;
+lin rapid_A = mkAMost "rapid" "rapidly" ;
+lin rapid_N = mkN "rapid" "rapids" ;
+lin rapidity_N = mkN "rapidity" "rapidities" ;
+lin rapier_N = mkN "rapier" "rapiers" ;
+lin rapier_thrust_N = mkN "rapier-thrust" "rapier-thrusts" ;
+lin rapine_N = mkN "rapine" "rapines" ;
+lin rapist_N = mkN "rapist" "rapists" ;
+lin rappee_N = mkN "rappee" "rappees" ;
+lin rappel_N = mkN "rappel" "rappels" ;
+lin rapper_N = mkN "rapper" "rappers" ;
+lin rapport_N = mkN "rapport" "rapports" ;
+lin rapporteur_N = mkN "rapporteur" "rapporteurs" ;
+lin rapprochement_N = mkN "rapprochement" "rapprochements" ;
+lin rapscallion_N = mkN "rapscallion" "rapscallions" ;
+lin rapt_A = mkAMost "rapt" "raptly" ;
+lin raptorial_A = mkAMost "raptorial" "raptorially" ;
+lin rapture_N = mkN "rapture" "raptures" ;
+lin rapturous_A = mkAMost "rapturous" "rapturously" ;
+lin rare_A = mkA "rare" "rarer" "rarest" "rarely" ;
+lin rarebit_N = mkN "rarebit" "rarebits" ;
+lin rarefaction_N = mkN "rarefaction" "rarefactions" ;
+lin rarefy_V = mkV "rarefy" "rarefied" "rarefied" ;
+lin rareness_N = mkN "rareness" "rarenesses" ;
+lin raring_A = mkAMost "raring" "raringly" ;
+lin rariora_N = mkN "rariora" "rarioras" ;
+lin rarity_N = mkN "rarity" "rarities" ;
+lin rascal_N = mkN "rascal" "rascals" ;
+lin rascality_N = mkN "rascality" "rascalities" ;
+lin rascally_A = mkAMost "rascally" "rascallily" ;
+lin rase_V = mkV "rase" "rased" "rased" ;
+lin rash_A = mkA "rash" "rasher" "rashest" "rashly" ;
+lin rash_N = mkN "rash" "rashes" ;
+lin rasher_N = mkN "rasher" "rashers" ;
+lin rashness_N = mkN "rashness" "rashnesses" ;
+lin rasp_N = mkN "rasp" "rasps" ;
+lin rasp_V = mkV "rasp" "rasped" "rasped" ;
+lin raspberry_N = mkN "raspberry" "raspberries" ;
+lin raspingly_Adv = mkAdv "raspingly" ;
+lin raster_N = mkN "raster" "rasters" ;
+lin rat_N = mkN "rat" "rats" ;
+lin rat_V = mkV "rat" "ratted" "ratted" ;
+lin rat_a_tat_tat_N = mkN "rat-a-tat-tat" "rat-a-tat-tats" ;
+lin rat_tat_N = mkN "rat-tat" "rat-tats" ;
+lin ratability_N = mkN "ratability" "ratabilities" ;
+lin ratable_A = mkAMost "ratable" "ratably" ;
+lin ratables_N = mkN "ratables" "ratableses" ;
+lin ratafia_N = mkN "ratafia" "ratafias" ;
+lin ratan_N = mkN "ratan" "ratans" ;
+lin ratatouille_N = mkN "ratatouille" "ratatouilles" ;
+lin ratch_N = mkN "ratch" "ratches" ;
+lin ratchet_N = mkN "ratchet" "ratchets" ;
+lin ratchet_V = mkV "ratchet" "ratchetted" "ratchetted" ;
+lin rate_N = mkN "rate" "rates" ;
+lin rate_V = mkV "rate" "rated" "rated" ;
+lin rateability_N = mkN "rateability" "rateabilities" ;
+lin rateable_A = mkAMost "rateable" "rateably" ;
+lin ratel_N = mkN "ratel" "ratels" ;
+lin ratepayer_N = mkN "ratepayer" "ratepayers" ;
+lin rates_N = mkN "rates" "rateses" ;
+lin rather_Adv = mkAdv "rather" ;
+lin rather_than_Prep = mkPrep "rather than" ;
+lin rathole_N = mkN "rathole" "ratholes" ;
+lin rathskeller_N = mkN "rathskeller" "rathskellers" ;
+lin ratification_N = mkN "ratification" "ratifications" ;
+lin ratify_V = mkV "ratify" "ratified" "ratified" ;
+lin rating_N = mkN "rating" "ratings" ;
+lin ratio_N = mkN "ratio" "ratios" ;
+lin ratiocination_N = mkN "ratiocination" "ratiocinations" ;
+lin ratiocinative_A = mkAMost "ratiocinative" "ratiocinatively" ;
+lin ration_N = mkN "ration" "rations" ;
+lin ration_V = mkV "ration" "rationed" "rationed" ;
+lin rational_A = mkAMost "rational" "rationally" ;
+lin rationale_N = mkN "rationale" "rationales" ;
+lin rationalism_N = mkN "rationalism" "rationalisms" ;
+lin rationalist_A = mkAMost "rationalist" "rationalistly" ;
+lin rationalist_N = mkN "rationalist" "rationalists" ;
+lin rationalistic_A = mkAMost "rationalistic" "rationalisticly" ;
+lin rationality_N = mkN "rationality" "rationalities" ;
+lin rationalization_N = mkN "rationalization" "rationalizations" ;
+lin rationalize_V = mkV "rationalize" "rationalized" "rationalized" ;
+lin rationing_N = mkN "rationing" "rationings" ;
+lin ratite_N = mkN "ratite" "ratites" ;
+lin ratlike_A = mkAMost "ratlike" "ratlikely" ;
+lin ratlin_N = mkN "ratlin" "ratlins" ;
+lin ratline_N = mkN "ratline" "ratlines" ;
+lin rattan_N = mkN "rattan" "rattans" ;
+lin ratter_N = mkN "ratter" "ratters" ;
+lin rattle_N = mkN "rattle" "rattles" ;
+lin rattle_V = mkV "rattle" "rattled" "rattled" ;
+lin rattlebrained_A = mkAMost "rattlebrained" "rattlebrainedly" ;
+lin rattlepated_A = mkAMost "rattlepated" "rattlepatedly" ;
+lin rattler_N = mkN "rattler" "rattlers" ;
+lin rattlesnake_N = mkN "rattlesnake" "rattlesnakes" ;
+lin rattling_Adv = mkAdv "rattling" ;
+lin rattrap_N = mkN "rattrap" "rattraps" ;
+lin ratty_A = mkA "ratty" "rattier" "rattiest" "rattily" ;
+lin raucous_A = mkAMost "raucous" "raucously" ;
+lin raunchy_A = mkA "raunchy" "raunchier" "raunchiest" "raunchily" ;
+lin rauwolfia_N = mkN "rauwolfia" "rauwolfias" ;
+lin ravage_N = mkN "ravage" "ravages" ;
+lin ravage_V = mkV "ravage" "ravaged" "ravaged" ;
+lin ravaging_N = mkN "ravaging" "ravagings" ;
+lin rave_N = mkN "rave" "raves" ;
+lin rave_V = mkV "rave" "raved" "raved" ;
+lin rave_up_N = mkN "rave-up" "rave-ups" ;
+lin ravehook_N = mkN "ravehook" "ravehooks" ;
+lin ravel_V = mkV "ravel" "ravelled" "ravelled" ;
+lin raveling_N = mkN "raveling" "ravelings" ;
+lin raven_N = mkN "raven" "ravens" ;
+lin ravening_A = mkAMost "ravening" "raveningly" ;
+lin ravenous_A = mkAMost "ravenous" "ravenously" ;
+lin raver_N = mkN "raver" "ravers" ;
+lin ravigote_N = mkN "ravigote" "ravigotes" ;
+lin ravine_N = mkN "ravine" "ravines" ;
+lin raving_Adv = mkAdv "raving" ;
+lin raving_N = mkN "raving" "ravings" ;
+lin ravioli_N = mkN "ravioli" "raviolis" ;
+lin ravish_V = mkV "ravish" "ravished" "ravished" ;
+lin ravishing_A = mkAMost "ravishing" "ravishingly" ;
+lin ravishment_N = mkN "ravishment" "ravishments" ;
+lin raw_A = mkAMost "raw" "rawly" ;
+lin raw_N = mkN "raw" "IRREG" ;
+lin rawboned_A = mkAMost "rawboned" "rawbonedly" ;
+lin rawhide_A = mkAMost "rawhide" "rawhidely" ;
+lin rawhide_N = mkN "rawhide" "rawhides" ;
+lin rawness_N = mkN "rawness" "rawnesses" ;
+lin ray_N = mkN "ray" "rays" ;
+lin ray_V = mkV "ray" "rayed" "rayed" ;
+lin rayless_A = mkAMost "rayless" "raylessly" ;
+lin rayon_N = mkN "rayon" "rayons" ;
+lin razbliuto_N = mkN "razbliuto" "razbliutoes" ;
+lin raze_V = mkV "raze" "razed" "razed" ;
+lin razing_N = mkN "razing" "razings" ;
+lin razor_N = mkN "razor" "razors" ;
+lin razor_V = mkV "razor" "razored" "razored" ;
+lin razor_edge_N = mkN "razor-edge" "razor-edges" ;
+lin razorback_A = mkAMost "razorback" "razorbackly" ;
+lin razorback_N = mkN "razorback" "razorbacks" ;
+lin razorbacked_A = mkAMost "razorbacked" "razorbackedly" ;
+lin razorbill_N = mkN "razorbill" "razorbills" ;
+lin razorblade_N = mkN "razorblade" "razorblades" ;
+lin razzle_N = mkN "razzle" "IRREG" ;
+lin razzle_dazzle_N = mkN "razzle-dazzle" "IRREG" ;
+lin re_N = mkN "re" "IRREG" ;
+lin re_Prep = mkPrep "re" ;
+lin re_address_V = mkV "re-address" "re-addressed" "re-addressed" ;
+lin re_afforest_V = mkV "re-afforest" "re-afforested" "re-afforested" ;
+lin re_afforestation_N = mkN "re-afforestation" "re-afforestations" ;
+lin re_count_N = mkN "re-count" "re-counts" ;
+lin re_count_V = mkV "re-count" "re-counted" "re-counted" ;
+lin re_cover_V = mkV "re-cover" "re-covered" "re-covered" ;
+lin re_create_V = mkV "re-create" "re-created" "re-created" ;
+lin re_echo_N = mkN "re-echo" "re-echoes" ;
+lin re_echo_V = mkV "re-echo" "re-echoed" "re-echoed" ;
+lin re_elect_V = mkV "re-elect" "re-elected" "re-elected" ;
+lin re_emerge_V = mkV "re-emerge" "re-emerged" "re-emerged" ;
+lin re_emphasize_V = mkV "re-emphasize" "re-emphasized" "re-emphasized" ;
+lin re_enter_V = mkV "re-enter" "re-entered" "re-entered" ;
+lin re_entry_N = mkN "re-entry" "re-entries" ;
+lin re_establish_V = mkV "re-establish" "re-established" "re-established" ;
+lin re_evaluate_V = mkV "re-evaluate" "re-evaluated" "re-evaluated" ;
+lin re_examine_V = mkV "re-examine" "re-examined" "re-examined" ;
+lin re_form_V = mkV "re-form" "re-formed" "re-formed" ;
+lin re_formation_N = mkN "re-formation" "re-formations" ;
+lin re_join_V = mkV "re-join" "re-joined" "re-joined" ;
+lin re_supply_V = mkV "re-supply" "re-supplied" "re-supplied" ;
+lin reach_N = mkN "reach" "reaches" ;
+lin reach_V = mkV "reach" "reached" "reached" ;
+lin react_V = mkV "react" "reacted" "reacted" ;
+lin reactance_N = mkN "reactance" "reactances" ;
+lin reactant_N = mkN "reactant" "reactants" ;
+lin reaction_N = mkN "reaction" "reactions" ;
+lin reactionary_A = mkAMost "reactionary" "reactionarily" ;
+lin reactionary_N = mkN "reactionary" "reactionaries" ;
+lin reactionism_N = mkN "reactionism" "reactionisms" ;
+lin reactivate_V = mkV "reactivate" "reactivated" "reactivated" ;
+lin reactive_A = mkAMost "reactive" "reactively" ;
+lin reactivity_N = mkN "reactivity" "reactivities" ;
+lin reactor_N = mkN "reactor" "reactors" ;
+lin read_N = mkN "read" "IRREG" ;
+lin read_V = mkV "read" "read" "read" ;
+lin readability_N = mkN "readability" "readabilities" ;
+lin readable_A = mkAMost "readable" "readably" ;
+lin reader_N = mkN "reader" "readers" ;
+lin readership_N = mkN "readership" "readerships" ;
+lin readiness_N = mkN "readiness" "readinesses" ;
+lin reading_N = mkN "reading" "readings" ;
+lin reading_lamp_N = mkN "reading-lamp" "reading-lamps" ;
+lin reading_room_N = mkN "reading-room" "reading-rooms" ;
+lin readjust_V = mkV "readjust" "readjusted" "readjusted" ;
+lin readjustment_N = mkN "readjustment" "readjustments" ;
+lin readmission_N = mkN "readmission" "readmissions" ;
+lin readmit_V = mkV "readmit" "readmitted" "readmitted" ;
+lin readout_N = mkN "readout" "readouts" ;
+lin ready_A = mkA "ready" "readier" "readiest" "readily" ;
+lin ready_N = mkN "ready" "readies" ;
+lin ready_V = mkV "ready" "readied" "readied" ;
+lin ready_made_A = mkAMost "ready-made" "ready-madely" ;
+lin reaffiliation_N = mkN "reaffiliation" "reaffiliations" ;
+lin reaffirm_V = mkV "reaffirm" "reaffirmed" "reaffirmed" ;
+lin reagent_N = mkN "reagent" "reagents" ;
+lin reagin_N = mkN "reagin" "reagins" ;
+lin real_A = mkAMost "real" "really" ;
+lin real_N = mkN "real" "reals" ;
+lin realgar_N = mkN "realgar" "realgars" ;
+lin realign_V = mkV "realign" "realigned" "realigned" ;
+lin realism_N = mkN "realism" "realisms" ;
+lin realist_N = mkN "realist" "realists" ;
+lin realistic_A = mkAMost "realistic" "realisticly" ;
+lin realistically_Adv = mkAdv "realistically" ;
+lin reality_N = mkN "reality" "realities" ;
+lin realizable_A = mkAMost "realizable" "realizably" ;
+lin realization_N = mkN "realization" "realizations" ;
+lin realize_V = mkV "realize" "realized" "realized" ;
+lin reallocation_N = mkN "reallocation" "reallocations" ;
+lin reallotment_N = mkN "reallotment" "reallotments" ;
+lin realm_N = mkN "realm" "realms" ;
+lin realpolitik_N = mkN "realpolitik" "realpolitiks" ;
+lin realtor_N = mkN "realtor" "realtors" ;
+lin realty_N = mkN "realty" "realties" ;
+lin ream_N = mkN "ream" "reams" ;
+lin reamer_N = mkN "reamer" "reamers" ;
+lin reanimate_V = mkV "reanimate" "reanimated" "reanimated" ;
+lin reap_V = mkV "reap" "reaped" "reaped" ;
+lin reaper_N = mkN "reaper" "reapers" ;
+lin reaping_hook_N = mkN "reaping-hook" "reaping-hooks" ;
+lin reappear_V = mkV "reappear" "reappeared" "reappeared" ;
+lin reappearance_N = mkN "reappearance" "reappearances" ;
+lin reappoint_V = mkV "reappoint" "reappointed" "reappointed" ;
+lin reappraisal_N = mkN "reappraisal" "reappraisals" ;
+lin reappraise_V = mkV "reappraise" "reappraised" "reappraised" ;
+lin rear_N = mkN "rear" "rears" ;
+lin rear_V = mkV "rear" "reared" "reared" ;
+lin rear_admiral_N = mkN "rear-admiral" "rear-admirals" ;
+lin rearguard_N = mkN "rearguard" "rearguards" ;
+lin rearm_V = mkV "rearm" "rearmed" "rearmed" ;
+lin rearmament_N = mkN "rearmament" "rearmaments" ;
+lin rearmost_A = mkAMost "rearmost" "rearmostly" ;
+lin rearrange_V = mkV "rearrange" "rearranged" "rearranged" ;
+lin rearrangement_N = mkN "rearrangement" "rearrangements" ;
+lin rearward_A = mkAMost "rearward" "rearwardly" ;
+lin rearward_N = mkN "rearward" "rearwards" ;
+lin rearwards_Adv = mkAdv "rearwards" ;
+lin reason_N = mkN "reason" "reasons" ;
+lin reason_reasoned_V = mkV "reason" "reasoned" "reasoned" ;
+lin reason_reasonned_V = mkV "reason" "reasonned" "reasonned" ;
+lin reasonable_A = mkAMost "reasonable" "reasonably" ;
+lin reasonableness_N = mkN "reasonableness" "reasonablenesses" ;
+lin reasoner_N = mkN "reasoner" "reasoners" ;
+lin reasoning_N = mkN "reasoning" "reasonings" ;
+lin reasonless_A = mkAMost "reasonless" "reasonlessly" ;
+lin reassemble_V = mkV "reassemble" "reassembled" "reassembled" ;
+lin reassembly_N = mkN "reassembly" "reassemblies" ;
+lin reassert_V = mkV "reassert" "reasserted" "reasserted" ;
+lin reassertion_N = mkN "reassertion" "reassertions" ;
+lin reassess_V = mkV "reassess" "reassessed" "reassessed" ;
+lin reassessment_N = mkN "reassessment" "reassessments" ;
+lin reassign_V = mkV "reassign" "reassigned" "reassigned" ;
+lin reassignment_N = mkN "reassignment" "reassignments" ;
+lin reassume_V = mkV "reassume" "reassumed" "reassumed" ;
+lin reassurance_N = mkN "reassurance" "reassurances" ;
+lin reassure_V = mkV "reassure" "reassured" "reassured" ;
+lin reassuring_A = mkAMost "reassuring" "reassuringly" ;
+lin reattribute_V = mkV "reattribute" "reattributed" "reattributed" ;
+lin rebarbative_A = mkAMost "rebarbative" "rebarbatively" ;
+lin rebate_N = mkN "rebate" "rebates" ;
+lin rebel_N = mkN "rebel" "rebels" ;
+lin rebel_V = mkV "rebel" "rebelled" "rebelled" ;
+lin rebellion_N = mkN "rebellion" "rebellions" ;
+lin rebellious_A = mkAMost "rebellious" "rebelliously" ;
+lin rebelliousness_N = mkN "rebelliousness" "rebelliousnesses" ;
+lin rebind_V = mkV "rebind" "rebound" "rebound" ;
+lin rebirth_N = mkN "rebirth" "rebirths" ;
+lin reborn_A = mkAMost "reborn" "rebornly" ;
+lin rebound_N = mkN "rebound" "rebounds" ;
+lin rebound_V = mkV "rebound" "rebounded" "rebounded" ;
+lin reboxetine_N = mkN "reboxetine" "reboxetines" ;
+lin rebozo_N = mkN "rebozo" "rebozoes" ;
+lin rebroadcast_N = mkN "rebroadcast" "rebroadcasts" ;
+lin rebuff_N = mkN "rebuff" "rebuffs" ;
+lin rebuff_V = mkV "rebuff" "rebuffed" "rebuffed" ;
+lin rebuild_V = mkV "rebuild" "rebuilt" "rebuilt" ;
+lin rebuilding_N = mkN "rebuilding" "rebuildings" ;
+lin rebuke_N = mkN "rebuke" "rebukes" ;
+lin rebuke_V = mkV "rebuke" "rebuked" "rebuked" ;
+lin rebukingly_Adv = mkAdv "rebukingly" ;
+lin reburying_N = mkN "reburying" "reburyings" ;
+lin rebus_N = mkN "rebus" "rebuses" ;
+lin rebut_V = mkV "rebut" "rebutted" "rebutted" ;
+lin rebuttal_N = mkN "rebuttal" "rebuttals" ;
+lin rebutter_N = mkN "rebutter" "rebutters" ;
+lin recalcitrance_N = mkN "recalcitrance" "recalcitrances" ;
+lin recalcitrancy_N = mkN "recalcitrancy" "recalcitrancies" ;
+lin recalcitrant_A = mkAMost "recalcitrant" "recalcitrantly" ;
+lin recalculate_V = mkV "recalculate" "recalculated" "recalculated" ;
+lin recalculation_N = mkN "recalculation" "recalculations" ;
+lin recall_N = mkN "recall" "recalls" ;
+lin recall_V = mkV "recall" "recalled" "recalled" ;
+lin recant_V = mkV "recant" "recanted" "recanted" ;
+lin recantation_N = mkN "recantation" "recantations" ;
+lin recap_N = mkN "recap" "recaps" ;
+lin recap_V = mkV "recap" "recapped" "recapped" ;
+lin recapitulate_V = mkV "recapitulate" "recapitulated" "recapitulated" ;
+lin recapitulation_N = mkN "recapitulation" "recapitulations" ;
+lin recapture_N = mkN "recapture" "recaptures" ;
+lin recapture_V = mkV "recapture" "recaptured" "recaptured" ;
+lin recast_V = mkV "recast" "recast" "recast" ;
+lin recce_N = mkN "recce" "recces" ;
+lin recede_V = mkV "recede" "receded" "receded" ;
+lin receding_N = mkN "receding" "recedings" ;
+lin receipt_N = mkN "receipt" "receipts" ;
+lin receipt_V = mkV "receipt" "receipted" "receipted" ;
+lin receivable_A = mkAMost "receivable" "receivably" ;
+lin receivable_N = mkN "receivable" "receivables" ;
+lin receive_V = mkV "receive" "received" "received" ;
+lin receiver_N = mkN "receiver" "receivers" ;
+lin receivership_N = mkN "receivership" "receiverships" ;
+lin receiving_set_N = mkN "receiving-set" "receiving-sets" ;
+lin recency_N = mkN "recency" "recencies" ;
+lin recent_A = mkAMost "recent" "recently" ;
+lin recentralize_V = mkV "recentralize" "recentralized" "recentralized" ;
+lin receptacle_N = mkN "receptacle" "receptacles" ;
+lin reception_N = mkN "reception" "receptions" ;
+lin reception_desk_N = mkN "reception-desk" "reception-desks" ;
+lin receptionist_N = mkN "receptionist" "receptionists" ;
+lin receptive_A = mkAMost "receptive" "receptively" ;
+lin receptiveness_N = mkN "receptiveness" "receptivenesses" ;
+lin receptivity_N = mkN "receptivity" "receptivities" ;
+lin receptor_N = mkN "receptor" "receptors" ;
+lin recess_N = mkN "recess" "recesses" ;
+lin recess_V = mkV "recess" "recessed" "recessed" ;
+lin recession_N = mkN "recession" "recessions" ;
+lin recessional_A = mkAMost "recessional" "recessionally" ;
+lin recessional_N = mkN "recessional" "recessionals" ;
+lin recessionary_A = mkAMost "recessionary" "recessionarily" ;
+lin recessive_A = mkAMost "recessive" "recessively" ;
+lin rechargeable_A = mkAMost "rechargeable" "rechargeably" ;
+lin recherché_A = mkAMost "recherché" "recherchély" ;
+lin recidivism_N = mkN "recidivism" "recidivisms" ;
+lin recidivist_N = mkN "recidivist" "recidivists" ;
+lin recipe_N = mkN "recipe" "recipes" ;
+lin recipient_N = mkN "recipient" "recipients" ;
+lin reciprocal_A = mkAMost "reciprocal" "reciprocally" ;
+lin reciprocal_N = mkN "reciprocal" "reciprocals" ;
+lin reciprocality_N = mkN "reciprocality" "reciprocalities" ;
+lin reciprocate_V = mkV "reciprocate" "reciprocated" "reciprocated" ;
+lin reciprocation_N = mkN "reciprocation" "reciprocations" ;
+lin reciprocative_A = mkAMost "reciprocative" "reciprocatively" ;
+lin reciprocity_N = mkN "reciprocity" "reciprocities" ;
+lin recirculation_N = mkN "recirculation" "recirculations" ;
+lin recission_N = mkN "recission" "recissions" ;
+lin recital_N = mkN "recital" "recitals" ;
+lin recitalist_N = mkN "recitalist" "recitalists" ;
+lin recitation_N = mkN "recitation" "recitations" ;
+lin recitative_N = mkN "recitative" "recitatives" ;
+lin recite_V = mkV "recite" "recited" "recited" ;
+lin reciter_N = mkN "reciter" "reciters" ;
+lin reckless_A = mkAMost "reckless" "recklessly" ;
+lin recklessness_N = mkN "recklessness" "recklessnesses" ;
+lin reckon_reckoned_V = mkV "reckon" "reckoned" "reckoned" ;
+lin reckon_reckonned_V = mkV "reckon" "reckonned" "reckonned" ;
+lin reckoner_N = mkN "reckoner" "reckoners" ;
+lin reckoning_N = mkN "reckoning" "reckonings" ;
+lin reclaim_V = mkV "reclaim" "reclaimed" "reclaimed" ;
+lin reclaimable_A = mkAMost "reclaimable" "reclaimably" ;
+lin reclamation_N = mkN "reclamation" "reclamations" ;
+lin reclassification_N = mkN "reclassification" "reclassifications" ;
+lin reclassify_V = mkV "reclassify" "reclassified" "reclassified" ;
+lin recline_V = mkV "recline" "reclined" "reclined" ;
+lin recliner_N = mkN "recliner" "recliners" ;
+lin reclining_N = mkN "reclining" "reclinings" ;
+lin recluse_A = mkAMost "recluse" "reclusely" ;
+lin recluse_N = mkN "recluse" "recluses" ;
+lin reclusiveness_N = mkN "reclusiveness" "reclusivenesses" ;
+lin recoding_N = mkN "recoding" "recodings" ;
+lin recognition_N = mkN "recognition" "recognitions" ;
+lin recognizable_A = mkAMost "recognizable" "recognizably" ;
+lin recognizance_N = mkN "recognizance" "recognizances" ;
+lin recognize_V = mkV "recognize" "recognized" "recognized" ;
+lin recoil_N = mkN "recoil" "recoils" ;
+lin recoil_V = mkV "recoil" "recoiled" "recoiled" ;
+lin recoilless_A = mkAMost "recoilless" "recoillessly" ;
+lin recollect_V = mkV "recollect" "recollected" "recollected" ;
+lin recollection_N = mkN "recollection" "recollections" ;
+lin recombinant_A = mkAMost "recombinant" "recombinantly" ;
+lin recombinant_N = mkN "recombinant" "recombinants" ;
+lin recombination_N = mkN "recombination" "recombinations" ;
+lin recommend_V = mkV "recommend" "recommended" "recommended" ;
+lin recommendation_N = mkN "recommendation" "recommendations" ;
+lin recommit_V = mkV "recommit" "recommitted" "recommitted" ;
+lin recompense_N = mkN "recompense" "recompenses" ;
+lin recompense_V = mkV "recompense" "recompensed" "recompensed" ;
+lin reconcilable_A = mkAMost "reconcilable" "reconcilably" ;
+lin reconcile_V = mkV "reconcile" "reconciled" "reconciled" ;
+lin reconciliation_N = mkN "reconciliation" "reconciliations" ;
+lin recondite_A = mkAMost "recondite" "reconditely" ;
+lin reconditeness_N = mkN "reconditeness" "reconditenesses" ;
+lin recondition_V = mkV "recondition" "reconditioned" "reconditioned" ;
+lin reconfiguration_N = mkN "reconfiguration" "reconfigurations" ;
+lin reconnaissance_N = mkN "reconnaissance" "reconnaissances" ;
+lin reconnoitre_V = mkV "reconnoitre" "reconnoitred" "reconnoitred" ;
+lin reconsecrate_V = mkV "reconsecrate" "reconsecrated" "reconsecrated" ;
+lin reconsider_V = mkV "reconsider" "reconsidered" "reconsidered" ;
+lin reconsideration_N = mkN "reconsideration" "reconsiderations" ;
+lin reconstruct_V = mkV "reconstruct" "reconstructed" "reconstructed" ;
+lin reconstruction_N = mkN "reconstruction" "reconstructions" ;
+lin reconstructive_A = mkAMost "reconstructive" "reconstructively" ;
+lin reconvict_V = mkV "reconvict" "reconvicted" "reconvicted" ;
+lin record_N = mkN "record" "records" ;
+lin record_V = mkV "record" "recorded" "recorded" ;
+lin record_breaking_A = mkAMost "record-breaking" "record-breakingly" ;
+lin record_player_N = mkN "record-player" "record-players" ;
+lin recorder_N = mkN "recorder" "recorders" ;
+lin recording_N = mkN "recording" "recordings" ;
+lin recount_N = mkN "recount" "recounts" ;
+lin recount_V = mkV "recount" "recounted" "recounted" ;
+lin recoup_V = mkV "recoup" "recouped" "recouped" ;
+lin recourse_N = mkN "recourse" "recourses" ;
+lin recover_V = mkV "recover" "recovered" "recovered" ;
+lin recoverable_A = mkAMost "recoverable" "recoverably" ;
+lin recovery_N = mkN "recovery" "recoveries" ;
+lin recreant_A = mkAMost "recreant" "recreantly" ;
+lin recreant_N = mkN "recreant" "recreants" ;
+lin recreate_V = mkV "recreate" "recreated" "recreated" ;
+lin recreation_N = mkN "recreation" "recreations" ;
+lin recreational_A = mkAMost "recreational" "recreationally" ;
+lin recriminate_V = mkV "recriminate" "recriminated" "recriminated" ;
+lin recrimination_N = mkN "recrimination" "recriminations" ;
+lin recriminative_A = mkAMost "recriminative" "recriminatively" ;
+lin recriminatory_A = mkAMost "recriminatory" "recriminatorily" ;
+lin recrudescence_N = mkN "recrudescence" "recrudescences" ;
+lin recrudescent_A = mkAMost "recrudescent" "recrudescently" ;
+lin recruit_N = mkN "recruit" "recruits" ;
+lin recruit_V = mkV "recruit" "recruited" "recruited" ;
+lin recruiter_N = mkN "recruiter" "recruiters" ;
+lin recruitment_N = mkN "recruitment" "recruitments" ;
+lin rectal_A = mkAMost "rectal" "rectally" ;
+lin rectangle_N = mkN "rectangle" "rectangles" ;
+lin rectangular_A = mkAMost "rectangular" "rectangularly" ;
+lin rectangularity_N = mkN "rectangularity" "rectangularities" ;
+lin rectification_N = mkN "rectification" "rectifications" ;
+lin rectifier_N = mkN "rectifier" "rectifiers" ;
+lin rectify_V = mkV "rectify" "rectified" "rectified" ;
+lin rectilinear_A = mkAMost "rectilinear" "rectilinearly" ;
+lin rectitude_N = mkN "rectitude" "rectitudes" ;
+lin recto_N = mkN "recto" "rectos" ;
+lin rectocele_N = mkN "rectocele" "rectoceles" ;
+lin rector_N = mkN "rector" "rectors" ;
+lin rectorship_N = mkN "rectorship" "rectorships" ;
+lin rectory_N = mkN "rectory" "rectories" ;
+lin rectosigmoid_A = mkAMost "rectosigmoid" "rectosigmoidly" ;
+lin rectum_N = mkN "rectum" "rectums" ;
+lin rectus_N = mkN "rectus" "rectuses" ;
+lin recumbent_A = mkAMost "recumbent" "recumbently" ;
+lin recuperate_V = mkV "recuperate" "recuperated" "recuperated" ;
+lin recuperation_N = mkN "recuperation" "recuperations" ;
+lin recuperative_A = mkAMost "recuperative" "recuperatively" ;
+lin recur_V = mkV "recur" "recurred" "recurred" ;
+lin recurrence_N = mkN "recurrence" "recurrences" ;
+lin recurrent_A = mkAMost "recurrent" "recurrently" ;
+lin recursion_N = mkN "recursion" "recursions" ;
+lin recursive_A = mkAMost "recursive" "recursively" ;
+lin recurve_V = mkV "recurve" "recurved" "recurved" ;
+lin recusancy_N = mkN "recusancy" "recusancies" ;
+lin recusant_A = mkAMost "recusant" "recusantly" ;
+lin recusant_N = mkN "recusant" "recusants" ;
+lin recusation_N = mkN "recusation" "recusations" ;
+lin recycle_V = mkV "recycle" "recycled" "recycled" ;
+lin recycling_N = mkN "recycling" "recyclings" ;
+lin red_A = mkA "red" "redder" "reddest" "redly" ;
+lin red_N = mkN "red" "reds" ;
+lin red_hot_A = mkAMost "red-hot" "red-hotly" ;
+lin red_rimmed_A = mkAMost "red-rimmed" "red-rimmedly" ;
+lin redact_N = mkN "redact" "redacts" ;
+lin redact_V = mkV "redact" "redacted" "redacted" ;
+lin redaction_N = mkN "redaction" "redactions" ;
+lin redberry_N = mkN "redberry" "redberries" ;
+lin redbone_N = mkN "redbone" "redbones" ;
+lin redbreast_N = mkN "redbreast" "redbreasts" ;
+lin redbrick_A = mkAMost "redbrick" "redbrickly" ;
+lin redbud_N = mkN "redbud" "redbuds" ;
+lin redcap_N = mkN "redcap" "redcaps" ;
+lin redcoat_N = mkN "redcoat" "redcoats" ;
+lin redden_V = mkV "redden" "reddened" "reddened" ;
+lin reddish_A = mkAMost "reddish" "reddishly" ;
+lin redecorate_V = mkV "redecorate" "redecorated" "redecorated" ;
+lin rededication_N = mkN "rededication" "rededications" ;
+lin redeem_V = mkV "redeem" "redeemed" "redeemed" ;
+lin redeemable_A = mkAMost "redeemable" "redeemably" ;
+lin redeemer_N = mkN "redeemer" "redeemers" ;
+lin redefine_V = mkV "redefine" "redefined" "redefined" ;
+lin redefinition_N = mkN "redefinition" "redefinitions" ;
+lin redemption_N = mkN "redemption" "redemptions" ;
+lin redemptive_A = mkAMost "redemptive" "redemptively" ;
+lin redeploy_V = mkV "redeploy" "redeployed" "redeployed" ;
+lin redeployment_N = mkN "redeployment" "redeployments" ;
+lin redeposition_N = mkN "redeposition" "redepositions" ;
+lin redesign_V = mkV "redesign" "redesigned" "redesigned" ;
+lin redetermination_N = mkN "redetermination" "redeterminations" ;
+lin redevelop_V = mkV "redevelop" "redeveloped" "redeveloped" ;
+lin redevelopment_N = mkN "redevelopment" "redevelopments" ;
+lin redeye_N = mkN "redeye" "redeyes" ;
+lin redfish_N = mkN "redfish" "redfishes" ;
+lin redhead_N = mkN "redhead" "redheads" ;
+lin redheaded_A = mkAMost "redheaded" "redheadedly" ;
+lin redhorse_N = mkN "redhorse" "redhorses" ;
+lin rediffusion_N = mkN "rediffusion" "rediffusions" ;
+lin rediscover_V = mkV "rediscover" "rediscovered" "rediscovered" ;
+lin rediscovery_N = mkN "rediscovery" "rediscoveries" ;
+lin redisposition_N = mkN "redisposition" "redispositions" ;
+lin redistribute_V = mkV "redistribute" "redistributed" "redistributed" ;
+lin redistribution_N = mkN "redistribution" "redistributions" ;
+lin redline_V = mkV "redline" "redlined" "redlined" ;
+lin redneck_N = mkN "redneck" "rednecks" ;
+lin redness_N = mkN "redness" "rednesses" ;
+lin redo_V = mkV "redo" "redid" "redone" ;
+lin redolence_N = mkN "redolence" "redolences" ;
+lin redolent_A = mkAMost "redolent" "redolently" ;
+lin redouble_V = mkV "redouble" "redoubled" "redoubled" ;
+lin redoubt_N = mkN "redoubt" "redoubts" ;
+lin redoubtable_A = mkAMost "redoubtable" "redoubtably" ;
+lin redound_V = mkV "redound" "redounded" "redounded" ;
+lin redpoll_N = mkN "redpoll" "redpolls" ;
+lin redraft_N = mkN "redraft" "redrafts" ;
+lin redraw_V = mkV "redraw" "redrawed" "redrawed" ;
+lin redress_N = mkN "redress" "redresses" ;
+lin redress_V = mkV "redress" "redressed" "redressed" ;
+lin redshank_N = mkN "redshank" "redshanks" ;
+lin redskin_N = mkN "redskin" "redskins" ;
+lin redstart_N = mkN "redstart" "redstarts" ;
+lin redtail_N = mkN "redtail" "redtails" ;
+lin reduce_V = mkV "reduce" "reduced" "reduced" ;
+lin reducer_N = mkN "reducer" "reducers" ;
+lin reducible_A = mkAMost "reducible" "reducibly" ;
+lin reducing_N = mkN "reducing" "reducings" ;
+lin reductase_N = mkN "reductase" "reductases" ;
+lin reductio_ad_absurdum_N = mkN "reductio ad absurdum" "reductio ad absurda" ;
+lin reduction_N = mkN "reduction" "reductions" ;
+lin reductionism_N = mkN "reductionism" "reductionisms" ;
+lin reductionist_A = mkAMost "reductionist" "reductionistly" ;
+lin reductive_A = mkAMost "reductive" "reductively" ;
+lin redundance_N = mkN "redundance" "redundances" ;
+lin redundancy_N = mkN "redundancy" "redundancies" ;
+lin redundant_A = mkAMost "redundant" "redundantly" ;
+lin reduplicate_V = mkV "reduplicate" "reduplicated" "reduplicated" ;
+lin reduplication_N = mkN "reduplication" "reduplications" ;
+lin redwing_N = mkN "redwing" "redwings" ;
+lin redwood_N = mkN "redwood" "redwoods" ;
+lin reed_N = mkN "reed" "reeds" ;
+lin reedy_A = mkA "reedy" "reedier" "reediest" "reedily" ;
+lin reef_N = mkN "reef" "reefs" ;
+lin reef_V = mkV "reef" "reefed" "reefed" ;
+lin reef_knot_N = mkN "reef-knot" "reef-knots" ;
+lin reefer_N = mkN "reefer" "reefers" ;
+lin reefy_A = mkA "reefy" "reefier" "reefiest" "reefily" ;
+lin reek_N = mkN "reek" "reeks" ;
+lin reek_V = mkV "reek" "reeked" "reeked" ;
+lin reel_N = mkN "reel" "reels" ;
+lin reel_V = mkV "reel" "reeled" "reeled" ;
+lin reelection_N = mkN "reelection" "reelections" ;
+lin reeler_N = mkN "reeler" "reelers" ;
+lin reenactment_N = mkN "reenactment" "reenactments" ;
+lin reenactor_N = mkN "reenactor" "reenactors" ;
+lin reenlistment_N = mkN "reenlistment" "reenlistments" ;
+lin reentry_N = mkN "reentry" "reentries" ;
+lin reevaluation_N = mkN "reevaluation" "reevaluations" ;
+lin reeve_N = mkN "reeve" "reeves" ;
+lin reexamine_V = mkV "reexamine" "reexamined" "reexamined" ;
+lin ref_N = mkN "ref" "refs" ;
+lin reface_V = mkV "reface" "refaced" "refaced" ;
+lin refashion_N = mkN "refashion" "refashions" ;
+lin refashion_V = mkV "refashion" "refashioned" "refashioned" ;
+lin refection_N = mkN "refection" "refections" ;
+lin refectory_N = mkN "refectory" "refectories" ;
+lin refer_V = mkV "refer" "referred" "referred" ;
+lin referable_A = mkAMost "referable" "referably" ;
+lin referee_N = mkN "referee" "referees" ;
+lin referee_V = mkV "referee" "IRREG" "IRREG" ;
+lin reference_N = mkN "reference" "references" ;
+lin referenced_A = mkAMost "referenced" "referencedly" ;
+lin referendum_N = mkN "referendum" "referendums" ;
+lin referent_A = mkAMost "referent" "referently" ;
+lin referent_N = mkN "referent" "referents" ;
+lin referential_A = mkAMost "referential" "referentially" ;
+lin referral_N = mkN "referral" "referrals" ;
+lin refile_V = mkV "refile" "refiled" "refiled" ;
+lin refill_N = mkN "refill" "refills" ;
+lin refill_V = mkV "refill" "refilled" "refilled" ;
+lin refilling_N = mkN "refilling" "refillings" ;
+lin refinance_V = mkV "refinance" "refinanced" "refinanced" ;
+lin refine_V = mkV "refine" "refined" "refined" ;
+lin refinement_N = mkN "refinement" "refinements" ;
+lin refiner_N = mkN "refiner" "refiners" ;
+lin refinery_N = mkN "refinery" "refineries" ;
+lin refining_N = mkN "refining" "refinings" ;
+lin refinisher_N = mkN "refinisher" "refinishers" ;
+lin refit_N = mkN "refit" "refits" ;
+lin refit_V = mkV "refit" "refitted" "refitted" ;
+lin reflate_V = mkV "reflate" "reflated" "reflated" ;
+lin reflation_N = mkN "reflation" "reflations" ;
+lin reflect_V = mkV "reflect" "reflected" "reflected" ;
+lin reflection_N = mkN "reflection" "reflections" ;
+lin reflective_A = mkAMost "reflective" "reflectively" ;
+lin reflectiveness_N = mkN "reflectiveness" "reflectivenesses" ;
+lin reflectometer_N = mkN "reflectometer" "reflectometers" ;
+lin reflector_N = mkN "reflector" "reflectors" ;
+lin reflex_A = mkAMost "reflex" "reflexly" ;
+lin reflex_N = mkN "reflex" "reflexes" ;
+lin reflexed_A = mkAMost "reflexed" "reflexedly" ;
+lin reflexion_N = mkN "reflexion" "reflexions" ;
+lin reflexive_A = mkAMost "reflexive" "reflexively" ;
+lin reflexive_N = mkN "reflexive" "reflexives" ;
+lin reflexivity_N = mkN "reflexivity" "reflexivities" ;
+lin reflexology_N = mkN "reflexology" "reflexologies" ;
+lin refloat_V = mkV "refloat" "refloated" "refloated" ;
+lin reflux_N = mkN "reflux" "refluxes" ;
+lin refocus_V = mkV "refocus" "refocused" "refocused" ;
+lin refocusing_N = mkN "refocusing" "refocusings" ;
+lin reforest_V = mkV "reforest" "reforested" "reforested" ;
+lin reforestation_N = mkN "reforestation" "reforestations" ;
+lin reform_N = mkN "reform" "reforms" ;
+lin reform_V = mkV "reform" "reformed" "reformed" ;
+lin reformation_N = mkN "reformation" "reformations" ;
+lin reformative_A = mkAMost "reformative" "reformatively" ;
+lin reformatory_A = mkAMost "reformatory" "reformatorily" ;
+lin reformatory_N = mkN "reformatory" "reformatories" ;
+lin reformer_N = mkN "reformer" "reformers" ;
+lin reformism_N = mkN "reformism" "reformisms" ;
+lin reformulate_V = mkV "reformulate" "reformulated" "reformulated" ;
+lin refract_V = mkV "refract" "refracted" "refracted" ;
+lin refraction_N = mkN "refraction" "refractions" ;
+lin refractive_A = mkAMost "refractive" "refractively" ;
+lin refractivity_N = mkN "refractivity" "refractivities" ;
+lin refractometer_N = mkN "refractometer" "refractometers" ;
+lin refractoriness_N = mkN "refractoriness" "refractorinesses" ;
+lin refractory_A = mkAMost "refractory" "refractorily" ;
+lin refrain_N = mkN "refrain" "refrains" ;
+lin refrain_V = mkV "refrain" "refrained" "refrained" ;
+lin refresh_V = mkV "refresh" "refreshed" "refreshed" ;
+lin refresher_N = mkN "refresher" "refreshers" ;
+lin refreshing_A = mkAMost "refreshing" "refreshingly" ;
+lin refreshment_N = mkN "refreshment" "refreshments" ;
+lin refrigerant_A = mkAMost "refrigerant" "refrigerantly" ;
+lin refrigerant_N = mkN "refrigerant" "refrigerants" ;
+lin refrigerate_V = mkV "refrigerate" "refrigerated" "refrigerated" ;
+lin refrigeration_N = mkN "refrigeration" "refrigerations" ;
+lin refrigerator_N = mkN "refrigerator" "refrigerators" ;
+lin refuel_V = mkV "refuel" "refuelled" "refuelled" ;
+lin refuge_N = mkN "refuge" "refuges" ;
+lin refugee_N = mkN "refugee" "refugees" ;
+lin refulgence_N = mkN "refulgence" "refulgences" ;
+lin refulgent_A = mkAMost "refulgent" "refulgently" ;
+lin refund_N = mkN "refund" "refunds" ;
+lin refund_V = mkV "refund" "refunded" "refunded" ;
+lin refurbish_V = mkV "refurbish" "refurbished" "refurbished" ;
+lin refurnish_V = mkV "refurnish" "refurnished" "refurnished" ;
+lin refusal_N = mkN "refusal" "refusals" ;
+lin refuse_N = mkN "refuse" "refuses" ;
+lin refuse_V = mkV "refuse" "refused" "refused" ;
+lin refuse_collector_N = mkN "refuse-collector" "refuse-collectors" ;
+lin refutable_A = mkAMost "refutable" "refutably" ;
+lin refutation_N = mkN "refutation" "refutations" ;
+lin refute_V = mkV "refute" "refuted" "refuted" ;
+lin regain_V = mkV "regain" "regained" "regained" ;
+lin regal_A = mkAMost "regal" "regally" ;
+lin regale_V = mkV "regale" "regaled" "regaled" ;
+lin regalia_N = mkN "regalia" "regalias" ;
+lin regard_N = mkN "regard" "regards" ;
+lin regard_V = mkV "regard" "regarded" "regarded" ;
+lin regardful_A = mkAMost "regardful" "regardfully" ;
+lin regardless_A = mkAMost "regardless" "regardlessly" ;
+lin regardless_Adv = mkAdv "regardless" ;
+lin regardless_of_Prep = mkPrep "regardless of" ;
+lin regatta_N = mkN "regatta" "regattas" ;
+lin regency_N = mkN "regency" "regencies" ;
+lin regenerate_A = mkAMost "regenerate" "regenerately" ;
+lin regenerate_V = mkV "regenerate" "regenerated" "regenerated" ;
+lin regeneration_N = mkN "regeneration" "regenerations" ;
+lin regent_A = mkAMost "regent" "regently" ;
+lin regent_N = mkN "regent" "regents" ;
+lin reggae_N = mkN "reggae" "reggaes" ;
+lin regicide_N = mkN "regicide" "regicides" ;
+lin regime_N = mkN "regime" "regimes" ;
+lin regimen_N = mkN "regimen" "regimens" ;
+lin regiment_N = mkN "regiment" "regiments" ;
+lin regiment_V = mkV "regiment" "regimented" "regimented" ;
+lin regimental_A = mkAMost "regimental" "regimentally" ;
+lin regimentals_N = mkN "regimentals" "regimentalses" ;
+lin regimentation_N = mkN "regimentation" "regimentations" ;
+lin region_N = mkN "region" "regions" ;
+lin regional_A = mkAMost "regional" "regionally" ;
+lin regionalism_N = mkN "regionalism" "regionalisms" ;
+lin register_N = mkN "register" "registers" ;
+lin register_V = mkV "register" "registered" "registered" ;
+lin registrant_N = mkN "registrant" "registrants" ;
+lin registrar_N = mkN "registrar" "registrars" ;
+lin registration_N = mkN "registration" "registrations" ;
+lin registry_N = mkN "registry" "registries" ;
+lin regnant_A = mkAMost "regnant" "regnantly" ;
+lin regnellidium_N = mkN "regnellidium" "regnellidiums" ;
+lin regosol_N = mkN "regosol" "regosols" ;
+lin regress_N = mkN "regress" "regresses" ;
+lin regress_V = mkV "regress" "regressed" "regressed" ;
+lin regression_N = mkN "regression" "regressions" ;
+lin regressive_A = mkAMost "regressive" "regressively" ;
+lin regret_N = mkN "regret" "regrets" ;
+lin regret_V = mkV "regret" "regretted" "regretted" ;
+lin regretful_A = mkAMost "regretful" "regretfully" ;
+lin regrettable_A = mkAMost "regrettable" "regrettably" ;
+lin regroup_V = mkV "regroup" "regrouped" "regrouped" ;
+lin regular_A = mkAMost "regular" "regularly" ;
+lin regular_N = mkN "regular" "regulars" ;
+lin regularity_N = mkN "regularity" "regularities" ;
+lin regularization_N = mkN "regularization" "regularizations" ;
+lin regularize_V = mkV "regularize" "regularized" "regularized" ;
+lin regulate_V = mkV "regulate" "regulated" "regulated" ;
+lin regulation_A = mkAMost "regulation" "regulationly" ;
+lin regulation_N = mkN "regulation" "regulations" ;
+lin regulative_A = mkAMost "regulative" "regulatively" ;
+lin regulator_N = mkN "regulator" "regulators" ;
+lin regum_V = mkV "regum" "regummed" "regummed" ;
+lin regur_N = mkN "regur" "regurs" ;
+lin regurgitate_V = mkV "regurgitate" "regurgitated" "regurgitated" ;
+lin regurgitation_N = mkN "regurgitation" "regurgitations" ;
+lin rehabilitate_V = mkV "rehabilitate" "rehabilitated" "rehabilitated" ;
+lin rehabilitation_N = mkN "rehabilitation" "rehabilitations" ;
+lin rehabilitative_A = mkAMost "rehabilitative" "rehabilitatively" ;
+lin reharmonization_N = mkN "reharmonization" "reharmonizations" ;
+lin rehash_N = mkN "rehash" "rehashes" ;
+lin rehash_V = mkV "rehash" "rehashed" "rehashed" ;
+lin rehear_V = mkV "rehear" "reheard" "reheard" ;
+lin rehearing_N = mkN "rehearing" "rehearings" ;
+lin rehearsal_N = mkN "rehearsal" "rehearsals" ;
+lin rehearse_V = mkV "rehearse" "rehearsed" "rehearsed" ;
+lin rehouse_V = mkV "rehouse" "rehoused" "rehoused" ;
+lin reich_N = mkN "reich" "reichs" ;
+lin reign_N = mkN "reign" "reigns" ;
+lin reign_V = mkV "reign" "reigned" "reigned" ;
+lin reignite_V = mkV "reignite" "reignited" "reignited" ;
+lin reimburse_V = mkV "reimburse" "reimbursed" "reimbursed" ;
+lin reimbursement_N = mkN "reimbursement" "reimbursements" ;
+lin reimpose_V = mkV "reimpose" "reimposed" "reimposed" ;
+lin reimposition_N = mkN "reimposition" "reimpositions" ;
+lin rein_N = mkN "rein" "reins" ;
+lin rein_V = mkV "rein" "reined" "reined" ;
+lin reincarnate_A = mkAMost "reincarnate" "reincarnately" ;
+lin reincarnate_V = mkV "reincarnate" "reincarnated" "reincarnated" ;
+lin reincarnation_N = mkN "reincarnation" "reincarnations" ;
+lin reincarnationism_N = mkN "reincarnationism" "reincarnationisms" ;
+lin reindeer_N = mkN "reindeer" "reindeer" ;
+lin reindict_V = mkV "reindict" "reindicted" "reindicted" ;
+lin reinforce_V = mkV "reinforce" "reinforced" "reinforced" ;
+lin reinforcement_N = mkN "reinforcement" "reinforcements" ;
+lin reinstall_V = mkV "reinstall" "reinstalled" "reinstalled" ;
+lin reinstate_V = mkV "reinstate" "reinstated" "reinstated" ;
+lin reinstatement_N = mkN "reinstatement" "reinstatements" ;
+lin reinstitute_V = mkV "reinstitute" "reinstituted" "reinstituted" ;
+lin reinsurance_N = mkN "reinsurance" "reinsurances" ;
+lin reinsure_V = mkV "reinsure" "reinsured" "reinsured" ;
+lin reintegrate_V = mkV "reintegrate" "reintegrated" "reintegrated" ;
+lin reintegration_N = mkN "reintegration" "reintegrations" ;
+lin reinterpret_V = mkV "reinterpret" "reinterpreted" "reinterpreted" ;
+lin reinterpretation_N = mkN "reinterpretation" "reinterpretations" ;
+lin reintroduce_V = mkV "reintroduce" "reintroduced" "reintroduced" ;
+lin reintroduction_N = mkN "reintroduction" "reintroductions" ;
+lin reinvent_V = mkV "reinvent" "reinvented" "reinvented" ;
+lin reinvest_V = mkV "reinvest" "reinvested" "reinvested" ;
+lin reinvigorate_V = mkV "reinvigorate" "reinvigorated" "reinvigorated" ;
+lin reissue_N = mkN "reissue" "reissues" ;
+lin reissue_V = mkV "reissue" "reissued" "reissued" ;
+lin reiterate_V = mkV "reiterate" "reiterated" "reiterated" ;
+lin reiteration_N = mkN "reiteration" "reiterations" ;
+lin reject_N = mkN "reject" "rejects" ;
+lin reject_V = mkV "reject" "rejected" "rejected" ;
+lin rejection_N = mkN "rejection" "rejections" ;
+lin rejective_A = mkAMost "rejective" "rejectively" ;
+lin rejig_V = mkV "rejig" "rejigged" "rejigged" ;
+lin rejoice_V = mkV "rejoice" "rejoiced" "rejoiced" ;
+lin rejoicing_N = mkN "rejoicing" "rejoicings" ;
+lin rejoin_V = mkV "rejoin" "rejoined" "rejoined" ;
+lin rejoinder_N = mkN "rejoinder" "rejoinders" ;
+lin rejuvenate_V = mkV "rejuvenate" "rejuvenated" "rejuvenated" ;
+lin rejuvenation_N = mkN "rejuvenation" "rejuvenations" ;
+lin rekindle_V = mkV "rekindle" "rekindled" "rekindled" ;
+lin relapse_N = mkN "relapse" "relapses" ;
+lin relapse_V = mkV "relapse" "relapsed" "relapsed" ;
+lin relate_V = mkV "relate" "related" "related" ;
+lin relatedness_N = mkN "relatedness" "relatednesses" ;
+lin relation_N = mkN "relation" "relations" ;
+lin relational_A = mkAMost "relational" "relationally" ;
+lin relationship_N = mkN "relationship" "relationships" ;
+lin relative_A = mkAMost "relative" "relatively" ;
+lin relative_N = mkN "relative" "relatives" ;
+lin relativism_N = mkN "relativism" "relativisms" ;
+lin relativistic_A = mkAMost "relativistic" "relativisticly" ;
+lin relativistically_Adv = mkAdv "relativistically" ;
+lin relativity_N = mkN "relativity" "relativities" ;
+lin relatum_N = mkN "relatum" "relatums" ;
+lin relax_V = mkV "relax" "relaxed" "relaxed" ;
+lin relaxant_A = mkAMost "relaxant" "relaxantly" ;
+lin relaxant_N = mkN "relaxant" "relaxants" ;
+lin relaxation_N = mkN "relaxation" "relaxations" ;
+lin relaxer_N = mkN "relaxer" "relaxers" ;
+lin relaxin_N = mkN "relaxin" "relaxins" ;
+lin relay_N = mkN "relay" "relays" ;
+lin relay_V = mkV "relay" "relaid" "relaid" ;
+lin release_N = mkN "release" "releases" ;
+lin release_V = mkV "release" "released" "released" ;
+lin relegate_V = mkV "relegate" "relegated" "relegated" ;
+lin relegation_N = mkN "relegation" "relegations" ;
+lin relent_V = mkV "relent" "relented" "relented" ;
+lin relentless_A = mkAMost "relentless" "relentlessly" ;
+lin relentlessness_N = mkN "relentlessness" "relentlessnesses" ;
+lin relevance_N = mkN "relevance" "relevances" ;
+lin relevancy_N = mkN "relevancy" "relevancies" ;
+lin relevant_A = mkAMost "relevant" "relevantly" ;
+lin reliability_N = mkN "reliability" "reliabilities" ;
+lin reliable_A = mkAMost "reliable" "reliably" ;
+lin reliance_N = mkN "reliance" "reliances" ;
+lin reliant_A = mkAMost "reliant" "reliantly" ;
+lin relic_N = mkN "relic" "relics" ;
+lin relict_N = mkN "relict" "relicts" ;
+lin relief_N = mkN "relief" "reliefs" ;
+lin relieve_V = mkV "relieve" "relieved" "relieved" ;
+lin reliever_N = mkN "reliever" "relievers" ;
+lin religion_N = mkN "religion" "religions" ;
+lin religionism_N = mkN "religionism" "religionisms" ;
+lin religionist_N = mkN "religionist" "religionists" ;
+lin religiosity_N = mkN "religiosity" "religiosities" ;
+lin religious_A = mkAMost "religious" "religiously" ;
+lin religious_N = mkN "religious" "religious" ;
+lin religiousness_N = mkN "religiousness" "religiousnesses" ;
+lin reline_V = mkV "reline" "relined" "relined" ;
+lin relinquish_V = mkV "relinquish" "relinquished" "relinquished" ;
+lin relinquishment_N = mkN "relinquishment" "relinquishments" ;
+lin reliquary_N = mkN "reliquary" "reliquaries" ;
+lin relish_N = mkN "relish" "relishes" ;
+lin relish_V = mkV "relish" "relished" "relished" ;
+lin relistening_N = mkN "relistening" "relistenings" ;
+lin relive_V = mkV "relive" "relived" "relived" ;
+lin reliving_N = mkN "reliving" "relivings" ;
+lin relocate_V = mkV "relocate" "relocated" "relocated" ;
+lin relocation_N = mkN "relocation" "relocations" ;
+lin reluctance_N = mkN "reluctance" "reluctances" ;
+lin reluctant_A = mkAMost "reluctant" "reluctantly" ;
+lin reluctivity_N = mkN "reluctivity" "reluctivities" ;
+lin rely_V = mkV "rely" "relied" "relied" ;
+lin remain_V = mkV "remain" "remained" "remained" ;
+lin remainder_N = mkN "remainder" "remainders" ;
+lin remains_N = mkN "remains" "remainses" ;
+lin remake_N = mkN "remake" "remakes" ;
+lin remake_V = mkV "remake" "remade" "remade" ;
+lin remand_N = mkN "remand" "remands" ;
+lin remand_V = mkV "remand" "remanded" "remanded" ;
+lin remark_N = mkN "remark" "remarks" ;
+lin remark_V = mkV "remark" "remarked" "remarked" ;
+lin remarkable_A = mkAMost "remarkable" "remarkably" ;
+lin remarriage_N = mkN "remarriage" "remarriages" ;
+lin remarry_V = mkV "remarry" "remarried" "remarried" ;
+lin remediable_A = mkAMost "remediable" "remediably" ;
+lin remedial_A = mkAMost "remedial" "remedially" ;
+lin remedy_N = mkN "remedy" "remedies" ;
+lin remedy_V = mkV "remedy" "remedied" "remedied" ;
+lin remember_V = mkV "remember" "remembered" "remembered" ;
+lin remembrance_N = mkN "remembrance" "remembrances" ;
+lin remilitarization_N = mkN "remilitarization" "remilitarizations" ;
+lin remilitarize_V = mkV "remilitarize" "remilitarized" "remilitarized" ;
+lin remind_V = mkV "remind" "reminded" "reminded" ;
+lin reminder_N = mkN "reminder" "reminders" ;
+lin reminisce_V = mkV "reminisce" "reminisced" "reminisced" ;
+lin reminiscence_N = mkN "reminiscence" "reminiscences" ;
+lin reminiscent_A = mkAMost "reminiscent" "reminiscently" ;
+lin remise_N = mkN "remise" "remises" ;
+lin remiss_A = mkAMost "remiss" "remissly" ;
+lin remission_N = mkN "remission" "remissions" ;
+lin remissness_N = mkN "remissness" "remissnesses" ;
+lin remit_N = mkN "remit" "remits" ;
+lin remit_V = mkV "remit" "remitted" "remitted" ;
+lin remittance_N = mkN "remittance" "remittances" ;
+lin remittent_A = mkAMost "remittent" "remittently" ;
+lin remnant_N = mkN "remnant" "remnants" ;
+lin remodel_remodeled_V = mkV "remodel" "remodeled" "remodeled" ;
+lin remodel_remodelled_V = mkV "remodel" "remodelled" "remodelled" ;
+lin remonstrance_N = mkN "remonstrance" "remonstrances" ;
+lin remonstrate_V = mkV "remonstrate" "remonstrated" "remonstrated" ;
+lin remora_N = mkN "remora" "remoras" ;
+lin remorse_N = mkN "remorse" "remorses" ;
+lin remorseful_A = mkAMost "remorseful" "remorsefully" ;
+lin remorseless_A = mkAMost "remorseless" "remorselessly" ;
+lin remote_A = mkA "remote" "remoter" "remotest" "remotely" ;
+lin remoteness_N = mkN "remoteness" "remotenesses" ;
+lin remould_V = mkV "remould" "remoulded" "remoulded" ;
+lin remount_N = mkN "remount" "remounts" ;
+lin remount_V = mkV "remount" "remounted" "remounted" ;
+lin removable_A = mkAMost "removable" "removably" ;
+lin removal_N = mkN "removal" "removals" ;
+lin remove_N = mkN "remove" "removes" ;
+lin remove_V = mkV "remove" "removed" "removed" ;
+lin remover_N = mkN "remover" "removers" ;
+lin remuda_N = mkN "remuda" "remudas" ;
+lin remunerate_V = mkV "remunerate" "remunerated" "remunerated" ;
+lin remuneration_N = mkN "remuneration" "remunerations" ;
+lin remunerative_A = mkAMost "remunerative" "remuneratively" ;
+lin renaissance_N = mkN "renaissance" "renaissances" ;
+lin renal_A = mkAMost "renal" "renally" ;
+lin rename_V = mkV "rename" "renamed" "renamed" ;
+lin renascence_N = mkN "renascence" "renascences" ;
+lin renascent_A = mkAMost "renascent" "renascently" ;
+lin rend_V = mkV "rend" "IRREG" "IRREG" ;
+lin render_N = mkN "render" "renders" ;
+lin render_V = mkV "render" "rendered" "rendered" ;
+lin rendering_N = mkN "rendering" "renderings" ;
+lin rendezvous_N = mkN "rendezvous" "rendezvous" ;
+lin rendezvous_V = mkV "rendezvous" "IRREG" "IRREG" ;
+lin rendezvouse_V = mkV "rendezvouse" "rendezvoused" "rendezvoused" ;
+lin rending_A = mkAMost "rending" "rendingly" ;
+lin rendition_N = mkN "rendition" "renditions" ;
+lin renegade_N = mkN "renegade" "renegades" ;
+lin renegade_V = mkV "renegade" "renegaded" "renegaded" ;
+lin renege_V = mkV "renege" "reneged" "reneged" ;
+lin renegotiate_V = mkV "renegotiate" "renegotiated" "renegotiated" ;
+lin renegue_V = mkV "renegue" "renegued" "renegued" ;
+lin renew_V = mkV "renew" "renewed" "renewed" ;
+lin renewable_A = mkAMost "renewable" "renewably" ;
+lin renewal_N = mkN "renewal" "renewals" ;
+lin renewing_A = mkAMost "renewing" "renewingly" ;
+lin reniform_A = mkAMost "reniform" "reniformly" ;
+lin renin_N = mkN "renin" "renins" ;
+lin rennet_N = mkN "rennet" "rennets" ;
+lin rennin_N = mkN "rennin" "rennins" ;
+lin renounce_V = mkV "renounce" "renounced" "renounced" ;
+lin renovate_V = mkV "renovate" "renovated" "renovated" ;
+lin renovation_N = mkN "renovation" "renovations" ;
+lin renovator_N = mkN "renovator" "renovators" ;
+lin renown_N = mkN "renown" "renowns" ;
+lin renowned_A = mkAMost "renowned" "renownedly" ;
+lin rensselaerite_N = mkN "rensselaerite" "rensselaerites" ;
+lin rent_N = mkN "rent" "rents" ;
+lin rent_V = mkV "rent" "rented" "rented" ;
+lin rent_collector_N = mkN "rent-collector" "rent-collectors" ;
+lin rent_free_A = mkAMost "rent-free" "rent-freely" ;
+lin rent_free_Adv = mkAdv "rent-free" ;
+lin rent_rebate_N = mkN "rent-rebate" "rent-rebates" ;
+lin rent_roll_N = mkN "rent-roll" "rent-rolls" ;
+lin rentable_A = mkAMost "rentable" "rentably" ;
+lin rental_A = mkAMost "rental" "rentally" ;
+lin rental_N = mkN "rental" "rentals" ;
+lin renter_N = mkN "renter" "renters" ;
+lin rentier_N = mkN "rentier" "rentiers" ;
+lin renunciant_A = mkAMost "renunciant" "renunciantly" ;
+lin renunciation_N = mkN "renunciation" "renunciations" ;
+lin reoffer_V = mkV "reoffer" "reoffered" "reoffered" ;
+lin reopen_V = mkV "reopen" "reopened" "reopened" ;
+lin reorder_N = mkN "reorder" "reorders" ;
+lin reordering_N = mkN "reordering" "reorderings" ;
+lin reorganisation_N = mkN "reorganisation" "reorganisations" ;
+lin reorganization_N = mkN "reorganization" "reorganizations" ;
+lin reorganize_V = mkV "reorganize" "reorganized" "reorganized" ;
+lin reorient_V = mkV "reorient" "reoriented" "reoriented" ;
+lin reorientate_V = mkV "reorientate" "reorientated" "reorientated" ;
+lin reorientation_N = mkN "reorientation" "reorientations" ;
+lin reovirus_N = mkN "reovirus" "reoviruses" ;
+lin rep_N = mkN "rep" "reps" ;
+lin repackage_V = mkV "repackage" "repackaged" "repackaged" ;
+lin repaint_V = mkV "repaint" "repainted" "repainted" ;
+lin repair_N = mkN "repair" "repairs" ;
+lin repair_V = mkV "repair" "repaired" "repaired" ;
+lin repairable_A = mkAMost "repairable" "repairably" ;
+lin repairer_N = mkN "repairer" "repairers" ;
+lin repairman_N = mkN "repairman" "repairman" ;
+lin repand_A = mkAMost "repand" "repandly" ;
+lin reparable_A = mkAMost "reparable" "reparably" ;
+lin reparation_N = mkN "reparation" "reparations" ;
+lin repartee_N = mkN "repartee" "repartees" ;
+lin repass_V = mkV "repass" "repassed" "repassed" ;
+lin repast_N = mkN "repast" "repasts" ;
+lin repatriate_N = mkN "repatriate" "repatriates" ;
+lin repatriate_V = mkV "repatriate" "repatriated" "repatriated" ;
+lin repatriation_N = mkN "repatriation" "repatriations" ;
+lin repay_V = mkV "repay" "repaid" "repaid" ;
+lin repayable_A = mkAMost "repayable" "repayably" ;
+lin repayment_N = mkN "repayment" "repayments" ;
+lin repeal_N = mkN "repeal" "repeals" ;
+lin repeal_V = mkV "repeal" "repealed" "repealed" ;
+lin repeat_N = mkN "repeat" "repeats" ;
+lin repeat_V = mkV "repeat" "repeated" "repeated" ;
+lin repeatable_A = mkAMost "repeatable" "repeatably" ;
+lin repeatedly_Adv = mkAdv "repeatedly" ;
+lin repeater_N = mkN "repeater" "repeaters" ;
+lin repechage_N = mkN "repechage" "repechages" ;
+lin repel_V = mkV "repel" "repelled" "repelled" ;
+lin repellent_A = mkAMost "repellent" "repellently" ;
+lin repellent_N = mkN "repellent" "repellents" ;
+lin repent_V = mkV "repent" "repented" "repented" ;
+lin repentance_N = mkN "repentance" "repentances" ;
+lin repentant_A = mkAMost "repentant" "repentantly" ;
+lin repercussion_N = mkN "repercussion" "repercussions" ;
+lin repertoire_N = mkN "repertoire" "repertoires" ;
+lin repertory_N = mkN "repertory" "repertories" ;
+lin repetition_N = mkN "repetition" "repetitions" ;
+lin repetitious_A = mkAMost "repetitious" "repetitiously" ;
+lin repetitive_A = mkAMost "repetitive" "repetitively" ;
+lin repetitiveness_N = mkN "repetitiveness" "repetitivenesses" ;
+lin repine_V = mkV "repine" "repined" "repined" ;
+lin replace_V = mkV "replace" "replaced" "replaced" ;
+lin replaceability_N = mkN "replaceability" "replaceabilities" ;
+lin replaceable_A = mkAMost "replaceable" "replaceably" ;
+lin replacement_N = mkN "replacement" "replacements" ;
+lin replant_V = mkV "replant" "replanted" "replanted" ;
+lin replaster_V = mkV "replaster" "replastered" "replastered" ;
+lin replay_N = mkN "replay" "replays" ;
+lin replay_V = mkV "replay" "replayed" "replayed" ;
+lin replenish_V = mkV "replenish" "replenished" "replenished" ;
+lin replenishment_N = mkN "replenishment" "replenishments" ;
+lin replete_A = mkAMost "replete" "repletely" ;
+lin repletion_N = mkN "repletion" "repletions" ;
+lin replica_N = mkN "replica" "replicas" ;
+lin replicate_V = mkV "replicate" "replicated" "replicated" ;
+lin replication_N = mkN "replication" "replications" ;
+lin reply_N = mkN "reply" "replies" ;
+lin reply_V = mkV "reply" "replied" "replied" ;
+lin reply_paid_A = mkAMost "reply-paid" "reply-paidly" ;
+lin repoint_V = mkV "repoint" "repointed" "repointed" ;
+lin repond_V = mkV "repond" "reponded" "reponded" ;
+lin report_N = mkN "report" "reports" ;
+lin report_V = mkV "report" "reported" "reported" ;
+lin reportable_A = mkAMost "reportable" "reportably" ;
+lin reportage_N = mkN "reportage" "reportages" ;
+lin reportedly_Adv = mkAdv "reportedly" ;
+lin reporter_N = mkN "reporter" "reporters" ;
+lin repose_N = mkN "repose" "reposes" ;
+lin repose_V = mkV "repose" "reposed" "reposed" ;
+lin reposeful_A = mkAMost "reposeful" "reposefully" ;
+lin repositing_N = mkN "repositing" "repositings" ;
+lin reposition_V = mkV "reposition" "repositionned" "repositionned" ;
+lin repositioning_N = mkN "repositioning" "repositionings" ;
+lin repository_N = mkN "repository" "repositories" ;
+lin repossess_V = mkV "repossess" "repossessed" "repossessed" ;
+lin repossession_N = mkN "repossession" "repossessions" ;
+lin repot_V = mkV "repot" "repotted" "repotted" ;
+lin repp_N = mkN "repp" "repps" ;
+lin reprehend_V = mkV "reprehend" "reprehended" "reprehended" ;
+lin reprehensibility_N = mkN "reprehensibility" "reprehensibilities" ;
+lin reprehensible_A = mkAMost "reprehensible" "reprehensibly" ;
+lin represent_V = mkV "represent" "represented" "represented" ;
+lin representable_A = mkAMost "representable" "representably" ;
+lin representation_N = mkN "representation" "representations" ;
+lin representational_A = mkAMost "representational" "representationally" ;
+lin representative_A = mkAMost "representative" "representatively" ;
+lin representative_N = mkN "representative" "representatives" ;
+lin repress_V = mkV "repress" "repressed" "repressed" ;
+lin repression_N = mkN "repression" "repressions" ;
+lin repressive_A = mkAMost "repressive" "repressively" ;
+lin repressor_N = mkN "repressor" "repressors" ;
+lin reprieve_N = mkN "reprieve" "reprieves" ;
+lin reprieve_V = mkV "reprieve" "reprieved" "reprieved" ;
+lin reprimand_N = mkN "reprimand" "reprimands" ;
+lin reprimand_V = mkV "reprimand" "reprimanded" "reprimanded" ;
+lin reprint_N = mkN "reprint" "reprints" ;
+lin reprint_V = mkV "reprint" "reprinted" "reprinted" ;
+lin reprisal_N = mkN "reprisal" "reprisals" ;
+lin reproach_N = mkN "reproach" "reproaches" ;
+lin reproach_V = mkV "reproach" "reproached" "reproached" ;
+lin reproachful_A = mkAMost "reproachful" "reproachfully" ;
+lin reprobate_N = mkN "reprobate" "reprobates" ;
+lin reprobate_V = mkV "reprobate" "reprobated" "reprobated" ;
+lin reprobation_N = mkN "reprobation" "reprobations" ;
+lin reproduce_V = mkV "reproduce" "reproduced" "reproduced" ;
+lin reproducer_N = mkN "reproducer" "reproducers" ;
+lin reproducibility_N = mkN "reproducibility" "reproducibilities" ;
+lin reproducible_A = mkAMost "reproducible" "reproducibly" ;
+lin reproduction_N = mkN "reproduction" "reproductions" ;
+lin reproductive_A = mkAMost "reproductive" "reproductively" ;
+lin reproof_N = mkN "reproof" "reproofs" ;
+lin reproof_V = mkV "reproof" "reproofed" "reproofed" ;
+lin reprove_V = mkV "reprove" "reproved" "reproved" ;
+lin reprovingly_Adv = mkAdv "reprovingly" ;
+lin reps_N = mkN "reps" "repses" ;
+lin reptile_N = mkN "reptile" "reptiles" ;
+lin reptilian_A = mkAMost "reptilian" "reptilianly" ;
+lin reptilian_N = mkN "reptilian" "reptilians" ;
+lin republic_N = mkN "republic" "republics" ;
+lin republican_A = mkAMost "republican" "republicanly" ;
+lin republican_N = mkN "republican" "republicans" ;
+lin republicanism_N = mkN "republicanism" "republicanisms" ;
+lin republication_N = mkN "republication" "republications" ;
+lin repudiate_V = mkV "repudiate" "repudiated" "repudiated" ;
+lin repudiation_N = mkN "repudiation" "repudiations" ;
+lin repudiative_A = mkAMost "repudiative" "repudiatively" ;
+lin repugnance_N = mkN "repugnance" "repugnances" ;
+lin repugnant_A = mkAMost "repugnant" "repugnantly" ;
+lin repulse_N = mkN "repulse" "repulses" ;
+lin repulse_V = mkV "repulse" "repulsed" "repulsed" ;
+lin repulsion_N = mkN "repulsion" "repulsions" ;
+lin repulsive_A = mkAMost "repulsive" "repulsively" ;
+lin repurchase_V = mkV "repurchase" "repurchased" "repurchased" ;
+lin reputable_A = mkAMost "reputable" "reputably" ;
+lin reputation_N = mkN "reputation" "reputations" ;
+lin repute_N = mkN "repute" "reputes" ;
+lin repute_V = mkV "repute" "reputed" "reputed" ;
+lin reputedly_Adv = mkAdv "reputedly" ;
+lin request_N = mkN "request" "requests" ;
+lin request_V = mkV "request" "requested" "requested" ;
+lin requiem_N = mkN "requiem" "requiems" ;
+lin requiescat_N = mkN "requiescat" "requiescats" ;
+lin require_V = mkV "require" "required" "required" ;
+lin requirement_N = mkN "requirement" "requirements" ;
+lin requisite_A = mkAMost "requisite" "requisitely" ;
+lin requisite_N = mkN "requisite" "requisites" ;
+lin requisiteness_N = mkN "requisiteness" "requisitenesses" ;
+lin requisition_N = mkN "requisition" "requisitions" ;
+lin requisition_V = mkV "requisition" "requisitioned" "requisitioned" ;
+lin requital_N = mkN "requital" "requitals" ;
+lin requite_V = mkV "requite" "requited" "requited" ;
+lin reread_V = mkV "reread" "reread" "reread" ;
+lin rerebrace_N = mkN "rerebrace" "rerebraces" ;
+lin reredos_N = mkN "reredos" "reredoses" ;
+lin reroute_V = mkV "reroute" "rerouted" "rerouted" ;
+lin rerun_N = mkN "rerun" "reruns" ;
+lin rerun_V = mkV "rerun" "reran" "rerun" ;
+lin res_N = mkN "res" "reses" ;
+lin resale_N = mkN "resale" "resales" ;
+lin reschedule_V = mkV "reschedule" "rescheduled" "rescheduled" ;
+lin rescind_V = mkV "rescind" "rescinded" "rescinded" ;
+lin rescindable_A = mkAMost "rescindable" "rescindably" ;
+lin rescript_N = mkN "rescript" "rescripts" ;
+lin rescue_N = mkN "rescue" "rescues" ;
+lin rescue_V = mkV "rescue" "rescued" "rescued" ;
+lin rescuer_N = mkN "rescuer" "rescuers" ;
+lin research_N = mkN "research" "researches" ;
+lin research_V = mkV "research" "researched" "researched" ;
+lin researcher_N = mkN "researcher" "researchers" ;
+lin reseat_V = mkV "reseat" "reseated" "reseated" ;
+lin reseau_N = mkN "reseau" "reseaus" ;
+lin resection_N = mkN "resection" "resections" ;
+lin reseda_N = mkN "reseda" "resedas" ;
+lin reseed_V = mkV "reseed" "reseeded" "reseeded" ;
+lin resell_V = mkV "resell" "resold" "resold" ;
+lin resemblance_N = mkN "resemblance" "resemblances" ;
+lin resemble_V = mkV "resemble" "resembled" "resembled" ;
+lin resent_V = mkV "resent" "resented" "resented" ;
+lin resentful_A = mkAMost "resentful" "resentfully" ;
+lin resentment_N = mkN "resentment" "resentments" ;
+lin reserpine_N = mkN "reserpine" "reserpines" ;
+lin reservation_N = mkN "reservation" "reservations" ;
+lin reserve_N = mkN "reserve" "reserves" ;
+lin reserve_V = mkV "reserve" "reserved" "reserved" ;
+lin reservedly_Adv = mkAdv "reservedly" ;
+lin reservist_N = mkN "reservist" "reservists" ;
+lin reservoir_N = mkN "reservoir" "reservoirs" ;
+lin reset_N = mkN "reset" "resets" ;
+lin reset_reset_V = mkV "reset" "reset" "reset" ;
+lin reset_resetted_V = mkV "reset" "resetted" "resetted" ;
+lin resettle_V = mkV "resettle" "resettled" "resettled" ;
+lin resettlement_N = mkN "resettlement" "resettlements" ;
+lin resh_N = mkN "resh" "reshes" ;
+lin reshape_V = mkV "reshape" "reshaped" "reshaped" ;
+lin reshipment_N = mkN "reshipment" "reshipments" ;
+lin reshuffle_N = mkN "reshuffle" "reshuffles" ;
+lin reshuffle_V = mkV "reshuffle" "reshuffled" "reshuffled" ;
+lin reside_V = mkV "reside" "resided" "resided" ;
+lin residence_N = mkN "residence" "residences" ;
+lin residency_N = mkN "residency" "residencies" ;
+lin resident_A = mkAMost "resident" "residently" ;
+lin resident_N = mkN "resident" "residents" ;
+lin residential_A = mkAMost "residential" "residentially" ;
+lin residual_A = mkAMost "residual" "residually" ;
+lin residual_N = mkN "residual" "residuals" ;
+lin residuary_A = mkAMost "residuary" "residuarily" ;
+lin residue_N = mkN "residue" "residues" ;
+lin resign_V = mkV "resign" "resigned" "resigned" ;
+lin resignation_N = mkN "resignation" "resignations" ;
+lin resignedly_Adv = mkAdv "resignedly" ;
+lin resilience_N = mkN "resilience" "resiliences" ;
+lin resiliency_N = mkN "resiliency" "resiliencies" ;
+lin resilient_A = mkAMost "resilient" "resiliently" ;
+lin resin_N = mkN "resin" "resins" ;
+lin resinated_A = mkAMost "resinated" "resinatedly" ;
+lin resinlike_A = mkAMost "resinlike" "resinlikely" ;
+lin resinoid_N = mkN "resinoid" "resinoids" ;
+lin resinous_A = mkAMost "resinous" "resinously" ;
+lin resist_V = mkV "resist" "resisted" "resisted" ;
+lin resistance_N = mkN "resistance" "resistances" ;
+lin resistant_A = mkAMost "resistant" "resistantly" ;
+lin resister_N = mkN "resister" "resisters" ;
+lin resistible_A = mkAMost "resistible" "resistibly" ;
+lin resistive_A = mkAMost "resistive" "resistively" ;
+lin resistivity_N = mkN "resistivity" "resistivities" ;
+lin resistless_A = mkAMost "resistless" "resistlessly" ;
+lin resistor_N = mkN "resistor" "resistors" ;
+lin resold_V = mkV "resold" "resolded" "resolded" ;
+lin resole_V = mkV "resole" "resoled" "resoled" ;
+lin resolute_A = mkAMost "resolute" "resolutely" ;
+lin resoluteness_N = mkN "resoluteness" "resolutenesses" ;
+lin resolution_N = mkN "resolution" "resolutions" ;
+lin resolvable_A = mkAMost "resolvable" "resolvably" ;
+lin resolve_N = mkN "resolve" "resolves" ;
+lin resolve_V = mkV "resolve" "resolved" "resolved" ;
+lin resonance_N = mkN "resonance" "resonances" ;
+lin resonant_A = mkAMost "resonant" "resonantly" ;
+lin resonate_V = mkV "resonate" "resonated" "resonated" ;
+lin resonator_N = mkN "resonator" "resonators" ;
+lin resorcinol_N = mkN "resorcinol" "resorcinols" ;
+lin resorption_N = mkN "resorption" "resorptions" ;
+lin resort_N = mkN "resort" "resorts" ;
+lin resort_V = mkV "resort" "resorted" "resorted" ;
+lin resound_V = mkV "resound" "resounded" "resounded" ;
+lin resoundingly_Adv = mkAdv "resoundingly" ;
+lin resource_N = mkN "resource" "resources" ;
+lin resourceful_A = mkAMost "resourceful" "resourcefully" ;
+lin resourcefulness_N = mkN "resourcefulness" "resourcefulnesses" ;
+lin resourceless_A = mkAMost "resourceless" "resourcelessly" ;
+lin respect_N = mkN "respect" "respects" ;
+lin respect_V = mkV "respect" "respected" "respected" ;
+lin respectability_N = mkN "respectability" "respectabilities" ;
+lin respectable_A = mkAMost "respectable" "respectably" ;
+lin respecter_N = mkN "respecter" "respecters" ;
+lin respectful_A = mkAMost "respectful" "respectfully" ;
+lin respective_A = mkAMost "respective" "respectively" ;
+lin respects_N = mkN "respects" "respectses" ;
+lin respiration_N = mkN "respiration" "respirations" ;
+lin respirator_N = mkN "respirator" "respirators" ;
+lin respiratory_A = mkAMost "respiratory" "respiratorily" ;
+lin respire_V = mkV "respire" "respired" "respired" ;
+lin respite_N = mkN "respite" "respites" ;
+lin respite_V = mkV "respite" "respited" "respited" ;
+lin resplendence_N = mkN "resplendence" "resplendences" ;
+lin resplendency_N = mkN "resplendency" "resplendencies" ;
+lin resplendent_A = mkAMost "resplendent" "resplendently" ;
+lin respond_V = mkV "respond" "responded" "responded" ;
+lin respondent_N = mkN "respondent" "respondents" ;
+lin response_N = mkN "response" "responses" ;
+lin responsibility_N = mkN "responsibility" "responsibilities" ;
+lin responsible_A = mkAMost "responsible" "responsibly" ;
+lin responsive_A = mkAMost "responsive" "responsively" ;
+lin responsiveness_N = mkN "responsiveness" "responsivenesses" ;
+lin rest_N = mkN "rest" "rests" ;
+lin rest_V = mkV "rest" "rested" "rested" ;
+lin rest_cure_N = mkN "rest-cure" "rest-cures" ;
+lin rest_day_N = mkN "rest-day" "rest-days" ;
+lin rest_home_N = mkN "rest-home" "rest-homes" ;
+lin rest_house_N = mkN "rest-house" "rest-houses" ;
+lin restart_V = mkV "restart" "restarted" "restarted" ;
+lin restate_V = mkV "restate" "restated" "restated" ;
+lin restatement_N = mkN "restatement" "restatements" ;
+lin restaurant_N = mkN "restaurant" "restaurants" ;
+lin restauranteur_N = mkN "restauranteur" "restauranteurs" ;
+lin restaurateur_N = mkN "restaurateur" "restaurateurs" ;
+lin rester_N = mkN "rester" "resters" ;
+lin restful_A = mkAMost "restful" "restfully" ;
+lin restfulness_N = mkN "restfulness" "restfulnesses" ;
+lin restharrow_N = mkN "restharrow" "restharrows" ;
+lin restitution_N = mkN "restitution" "restitutions" ;
+lin restive_A = mkAMost "restive" "restively" ;
+lin restiveness_N = mkN "restiveness" "restivenesses" ;
+lin restless_A = mkAMost "restless" "restlessly" ;
+lin restlessness_N = mkN "restlessness" "restlessnesses" ;
+lin restock_V = mkV "restock" "restocked" "restocked" ;
+lin restoration_N = mkN "restoration" "restorations" ;
+lin restorative_A = mkAMost "restorative" "restoratively" ;
+lin restorative_N = mkN "restorative" "restoratives" ;
+lin restore_V = mkV "restore" "restored" "restored" ;
+lin restorer_N = mkN "restorer" "restorers" ;
+lin restrain_V = mkV "restrain" "restrained" "restrained" ;
+lin restrainer_N = mkN "restrainer" "restrainers" ;
+lin restraint_N = mkN "restraint" "restraints" ;
+lin restrict_V = mkV "restrict" "restricted" "restricted" ;
+lin restriction_N = mkN "restriction" "restrictions" ;
+lin restrictive_A = mkAMost "restrictive" "restrictively" ;
+lin restrictiveness_N = mkN "restrictiveness" "restrictivenesses" ;
+lin restructure_V = mkV "restructure" "restructured" "restructured" ;
+lin result_N = mkN "result" "results" ;
+lin result_V = mkV "result" "resulted" "resulted" ;
+lin resultant_A = mkAMost "resultant" "resultantly" ;
+lin resultant_N = mkN "resultant" "resultants" ;
+lin resume_V = mkV "resume" "resumed" "resumed" ;
+lin resumption_N = mkN "resumption" "resumptions" ;
+lin resurface_V = mkV "resurface" "resurfaced" "resurfaced" ;
+lin resurgence_N = mkN "resurgence" "resurgences" ;
+lin resurgent_A = mkAMost "resurgent" "resurgently" ;
+lin resurrect_V = mkV "resurrect" "resurrected" "resurrected" ;
+lin resurrection_N = mkN "resurrection" "resurrections" ;
+lin resurvey_N = mkN "resurvey" "resurveys" ;
+lin resuscitate_V = mkV "resuscitate" "resuscitated" "resuscitated" ;
+lin resuscitation_N = mkN "resuscitation" "resuscitations" ;
+lin resuscitator_N = mkN "resuscitator" "resuscitators" ;
+lin resuspension_N = mkN "resuspension" "resuspensions" ;
+lin ret_V = mkV "ret" "retted" "retted" ;
+lin retail_Adv = mkAdv "retail" ;
+lin retail_N = mkN "retail" "retails" ;
+lin retail_V = mkV "retail" "retailed" "retailed" ;
+lin retailer_N = mkN "retailer" "retailers" ;
+lin retailing_N = mkN "retailing" "retailings" ;
+lin retain_V = mkV "retain" "retained" "retained" ;
+lin retainer_N = mkN "retainer" "retainers" ;
+lin retake_N = mkN "retake" "retakes" ;
+lin retake_V = mkV "retake" "retook" "retaken" ;
+lin retaliate_V = mkV "retaliate" "retaliated" "retaliated" ;
+lin retaliation_N = mkN "retaliation" "retaliations" ;
+lin retaliative_A = mkAMost "retaliative" "retaliatively" ;
+lin retaliatory_A = mkAMost "retaliatory" "retaliatorily" ;
+lin retard_V = mkV "retard" "retarded" "retarded" ;
+lin retardant_N = mkN "retardant" "retardants" ;
+lin retardation_N = mkN "retardation" "retardations" ;
+lin retch_V = mkV "retch" "retched" "retched" ;
+lin retell_V = mkV "retell" "retold" "retold" ;
+lin retem_N = mkN "retem" "retems" ;
+lin retention_N = mkN "retention" "retentions" ;
+lin retentive_A = mkAMost "retentive" "retentively" ;
+lin retentiveness_N = mkN "retentiveness" "retentivenesses" ;
+lin rethink_N = mkN "rethink" "rethinks" ;
+lin rethink_V = mkV "rethink" "rethought" "rethought" ;
+lin reticence_N = mkN "reticence" "reticences" ;
+lin reticent_A = mkAMost "reticent" "reticently" ;
+lin reticle_N = mkN "reticle" "reticles" ;
+lin reticulate_A = mkAMost "reticulate" "reticulately" ;
+lin reticulate_V = mkV "reticulate" "reticulated" "reticulated" ;
+lin reticulation_N = mkN "reticulation" "reticulations" ;
+lin reticule_N = mkN "reticule" "reticules" ;
+lin reticulocyte_N = mkN "reticulocyte" "reticulocytes" ;
+lin reticulum_N = mkN "reticulum" "reticulums" ;
+lin retina_N = mkN "retina" "retinas" ;
+lin retinal_A = mkAMost "retinal" "retinally" ;
+lin retinene_N = mkN "retinene" "retinenes" ;
+lin retinitis_N = mkN "retinitis" "retinitises" ;
+lin retinoblastoma_N = mkN "retinoblastoma" "retinoblastomas" ;
+lin retinopathy_N = mkN "retinopathy" "retinopathies" ;
+lin retinue_N = mkN "retinue" "retinues" ;
+lin retire_N = mkN "retire" "IRREG" ;
+lin retire_V = mkV "retire" "retired" "retired" ;
+lin retiree_N = mkN "retiree" "retirees" ;
+lin retirement_N = mkN "retirement" "retirements" ;
+lin retool_V = mkV "retool" "retooled" "retooled" ;
+lin retort_N = mkN "retort" "retorts" ;
+lin retort_V = mkV "retort" "retorted" "retorted" ;
+lin retouch_V = mkV "retouch" "retouched" "retouched" ;
+lin retrace_V = mkV "retrace" "retraced" "retraced" ;
+lin retract_V = mkV "retract" "retracted" "retracted" ;
+lin retractable_A = mkAMost "retractable" "retractably" ;
+lin retractile_A = mkAMost "retractile" "retractilely" ;
+lin retraction_N = mkN "retraction" "retractions" ;
+lin retractor_N = mkN "retractor" "retractors" ;
+lin retraining_N = mkN "retraining" "retrainings" ;
+lin retral_A = mkAMost "retral" "retrally" ;
+lin retransmit_V = mkV "retransmit" "retransmitted" "retransmitted" ;
+lin retread_N = mkN "retread" "retreads" ;
+lin retread_V = mkV "retread" "retreaded" "retreaded" ;
+lin retreat_N = mkN "retreat" "retreats" ;
+lin retreat_V = mkV "retreat" "retreated" "retreated" ;
+lin retreatant_N = mkN "retreatant" "retreatants" ;
+lin retreated_N = mkN "retreated" "retreateds" ;
+lin retrench_V = mkV "retrench" "retrenched" "retrenched" ;
+lin retrenchment_N = mkN "retrenchment" "retrenchments" ;
+lin retrial_N = mkN "retrial" "retrials" ;
+lin retribution_N = mkN "retribution" "retributions" ;
+lin retributive_A = mkAMost "retributive" "retributively" ;
+lin retrievable_A = mkAMost "retrievable" "retrievably" ;
+lin retrieval_N = mkN "retrieval" "retrievals" ;
+lin retrieve_V = mkV "retrieve" "retrieved" "retrieved" ;
+lin retriever_N = mkN "retriever" "retrievers" ;
+lin retro_N = mkN "retro" "retroes" ;
+lin retroactive_A = mkAMost "retroactive" "retroactively" ;
+lin retrofit_N = mkN "retrofit" "retrofits" ;
+lin retrofit_V = mkV "retrofit" "retrofitted" "retrofitted" ;
+lin retroflection_N = mkN "retroflection" "retroflections" ;
+lin retroflex_A = mkAMost "retroflex" "retroflexly" ;
+lin retrograde_A = mkAMost "retrograde" "retrogradely" ;
+lin retrograde_V = mkV "retrograde" "retrograded" "retrograded" ;
+lin retrogress_V = mkV "retrogress" "retrogressed" "retrogressed" ;
+lin retrogression_N = mkN "retrogression" "retrogressions" ;
+lin retrogressive_A = mkAMost "retrogressive" "retrogressively" ;
+lin retronym_N = mkN "retronym" "retronyms" ;
+lin retrorocket_N = mkN "retrorocket" "retrorockets" ;
+lin retrorse_A = mkAMost "retrorse" "retrorsely" ;
+lin retrospect_N = mkN "retrospect" "retrospects" ;
+lin retrospection_N = mkN "retrospection" "retrospections" ;
+lin retrospective_A = mkAMost "retrospective" "retrospectively" ;
+lin retrospective_N = mkN "retrospective" "retrospectives" ;
+lin retroussé_A = mkAMost "retroussé" "retroussély" ;
+lin retroversion_N = mkN "retroversion" "retroversions" ;
+lin retrovirus_N = mkN "retrovirus" "retroviruses" ;
+lin retrovision_N = mkN "retrovision" "retrovisions" ;
+lin retsina_N = mkN "retsina" "retsinas" ;
+lin return_N = mkN "return" "returns" ;
+lin return_V = mkV "return" "returned" "returned" ;
+lin returnable_A = mkAMost "returnable" "returnably" ;
+lin reunification_N = mkN "reunification" "reunifications" ;
+lin reunion_N = mkN "reunion" "reunions" ;
+lin reunite_V = mkV "reunite" "reunited" "reunited" ;
+lin reuptake_N = mkN "reuptake" "reuptakes" ;
+lin rev_N = mkN "rev" "revs" ;
+lin rev_V = mkV "rev" "revved" "revved" ;
+lin revaluation_N = mkN "revaluation" "revaluations" ;
+lin revalue_V = mkV "revalue" "revalued" "revalued" ;
+lin revamp_V = mkV "revamp" "revamped" "revamped" ;
+lin reveal_V = mkV "reveal" "revealed" "revealed" ;
+lin revealing_A = mkAMost "revealing" "revealingly" ;
+lin reveille_N = mkN "reveille" "reveilles" ;
+lin revel_N = mkN "revel" "revels" ;
+lin revel_V = mkV "revel" "reveled" "reveled" ;
+lin revelation_N = mkN "revelation" "revelations" ;
+lin reveler_N = mkN "reveler" "revelers" ;
+lin reveller_N = mkN "reveller" "revellers" ;
+lin revelry_N = mkN "revelry" "revelries" ;
+lin revenant_A = mkAMost "revenant" "revenantly" ;
+lin revenant_N = mkN "revenant" "revenants" ;
+lin revenge_N = mkN "revenge" "revenges" ;
+lin revenge_V = mkV "revenge" "revenged" "revenged" ;
+lin revengeful_A = mkAMost "revengeful" "revengefully" ;
+lin revenue_N = mkN "revenue" "revenues" ;
+lin revenuer_N = mkN "revenuer" "revenuers" ;
+lin reverberant_A = mkAMost "reverberant" "reverberantly" ;
+lin reverberate_V = mkV "reverberate" "reverberated" "reverberated" ;
+lin reverberation_N = mkN "reverberation" "reverberations" ;
+lin revere_V = mkV "revere" "revered" "revered" ;
+lin reverence_N = mkN "reverence" "reverences" ;
+lin reverence_V = mkV "reverence" "reverenced" "reverenced" ;
+lin reverend_A = mkAMost "reverend" "reverendly" ;
+lin reverend_N = mkN "reverend" "reverends" ;
+lin reverent_A = mkAMost "reverent" "reverently" ;
+lin reverential_A = mkAMost "reverential" "reverentially" ;
+lin reverie_N = mkN "reverie" "reveries" ;
+lin revers_N = mkN "revers" "IRREG" ;
+lin reversal_N = mkN "reversal" "reversals" ;
+lin reverse_A = mkAMost "reverse" "reversely" ;
+lin reverse_N = mkN "reverse" "reverses" ;
+lin reverse_V = mkV "reverse" "reversed" "reversed" ;
+lin reversibility_N = mkN "reversibility" "reversibilities" ;
+lin reversible_A = mkAMost "reversible" "reversibly" ;
+lin reversible_N = mkN "reversible" "reversibles" ;
+lin reversion_N = mkN "reversion" "reversions" ;
+lin reversionary_A = mkAMost "reversionary" "reversionarily" ;
+lin reversioner_N = mkN "reversioner" "reversioners" ;
+lin revert_V = mkV "revert" "reverted" "reverted" ;
+lin revertible_A = mkAMost "revertible" "revertibly" ;
+lin revetment_N = mkN "revetment" "revetments" ;
+lin review_N = mkN "review" "reviews" ;
+lin review_V = mkV "review" "reviewed" "reviewed" ;
+lin reviewer_N = mkN "reviewer" "reviewers" ;
+lin revile_V = mkV "revile" "reviled" "reviled" ;
+lin revise_N = mkN "revise" "revises" ;
+lin revise_V = mkV "revise" "revised" "revised" ;
+lin reviser_N = mkN "reviser" "revisers" ;
+lin revision_N = mkN "revision" "revisions" ;
+lin revisionism_N = mkN "revisionism" "revisionisms" ;
+lin revisionist_N = mkN "revisionist" "revisionists" ;
+lin revisit_V = mkV "revisit" "revisited" "revisited" ;
+lin revitalization_N = mkN "revitalization" "revitalizations" ;
+lin revitalize_V = mkV "revitalize" "revitalized" "revitalized" ;
+lin revival_N = mkN "revival" "revivals" ;
+lin revivalism_N = mkN "revivalism" "revivalisms" ;
+lin revivalist_N = mkN "revivalist" "revivalists" ;
+lin revivalistic_A = mkAMost "revivalistic" "revivalisticly" ;
+lin revive_V = mkV "revive" "revived" "revived" ;
+lin revivify_V = mkV "revivify" "revivified" "revivified" ;
+lin revocable_A = mkAMost "revocable" "revocably" ;
+lin revocation_N = mkN "revocation" "revocations" ;
+lin revoke_N = mkN "revoke" "revokes" ;
+lin revoke_V = mkV "revoke" "revoked" "revoked" ;
+lin revolt_N = mkN "revolt" "revolts" ;
+lin revolt_V = mkV "revolt" "revolted" "revolted" ;
+lin revolution_N = mkN "revolution" "revolutions" ;
+lin revolutionary_A = mkAMost "revolutionary" "revolutionarily" ;
+lin revolutionary_N = mkN "revolutionary" "revolutionarys" ;
+lin revolutionism_N = mkN "revolutionism" "revolutionisms" ;
+lin revolutionist_N = mkN "revolutionist" "revolutionists" ;
+lin revolutionize_V = mkV "revolutionize" "revolutionized" "revolutionized" ;
+lin revolve_V = mkV "revolve" "revolved" "revolved" ;
+lin revolver_N = mkN "revolver" "revolvers" ;
+lin revue_N = mkN "revue" "revues" ;
+lin revulsion_N = mkN "revulsion" "revulsions" ;
+lin reward_N = mkN "reward" "rewards" ;
+lin reward_V = mkV "reward" "rewarded" "rewarded" ;
+lin rewardful_A = mkAMost "rewardful" "rewardfully" ;
+lin rewarding_A = mkAMost "rewarding" "rewardingly" ;
+lin rewire_V = mkV "rewire" "rewired" "rewired" ;
+lin reword_V = mkV "reword" "reworded" "reworded" ;
+lin rewording_N = mkN "rewording" "rewordings" ;
+lin rework_V = mkV "rework" "reworked" "reworked" ;
+lin rewrite_N = mkN "rewrite" "rewrites" ;
+lin rewrite_V = mkV "rewrite" "rewrote" "rewritten" ;
+lin rewriting_N = mkN "rewriting" "rewritings" ;
+lin rhabdomyoma_N = mkN "rhabdomyoma" "rhabdomyomas" ;
+lin rhabdomyosarcoma_N = mkN "rhabdomyosarcoma" "rhabdomyosarcomas" ;
+lin rhabdovirus_N = mkN "rhabdovirus" "rhabdoviruses" ;
+lin rhagades_N = mkN "rhagades" "rhagadeses" ;
+lin rhapsodize_V = mkV "rhapsodize" "rhapsodized" "rhapsodized" ;
+lin rhapsody_N = mkN "rhapsody" "rhapsodies" ;
+lin rhea_N = mkN "rhea" "rheas" ;
+lin rhenish_A = mkAMost "rhenish" "rhenishly" ;
+lin rhenium_N = mkN "rhenium" "rheniums" ;
+lin rheologic_A = mkAMost "rheologic" "rheologicly" ;
+lin rheology_N = mkN "rheology" "rheologies" ;
+lin rheometer_N = mkN "rheometer" "rheometers" ;
+lin rheostat_N = mkN "rheostat" "rheostats" ;
+lin rhesus_N = mkN "rhesus" "rhesuses" ;
+lin rhetoric_N = mkN "rhetoric" "rhetorics" ;
+lin rhetorical_A = mkAMost "rhetorical" "rhetorically" ;
+lin rhetorician_N = mkN "rhetorician" "rhetoricians" ;
+lin rheum_N = mkN "rheum" "rheums" ;
+lin rheumatic_A = mkAMost "rheumatic" "rheumaticly" ;
+lin rheumatic_N = mkN "rheumatic" "rheumatics" ;
+lin rheumatism_N = mkN "rheumatism" "rheumatisms" ;
+lin rheumatoid_A = mkAMost "rheumatoid" "rheumatoidly" ;
+lin rheumatologist_N = mkN "rheumatologist" "rheumatologists" ;
+lin rheumatology_N = mkN "rheumatology" "rheumatologies" ;
+lin rheumy_A = mkA "rheumy" "rheumier" "rheumiest" "rheumily" ;
+lin rhinal_A = mkAMost "rhinal" "rhinally" ;
+lin rhinencephalon_N = mkN "rhinencephalon" "rhinencephalons" ;
+lin rhinestone_N = mkN "rhinestone" "rhinestones" ;
+lin rhinion_N = mkN "rhinion" "rhinions" ;
+lin rhinitis_N = mkN "rhinitis" "rhinitises" ;
+lin rhino_N = mkN "rhino" "rhinos" ;
+lin rhinoceros_N = mkN "rhinoceros" "rhinoceros" ;
+lin rhinolaryngology_N = mkN "rhinolaryngology" "rhinolaryngologies" ;
+lin rhinopathy_N = mkN "rhinopathy" "rhinopathies" ;
+lin rhinophyma_N = mkN "rhinophyma" "rhinophymas" ;
+lin rhinorrhea_N = mkN "rhinorrhea" "rhinorrheas" ;
+lin rhinoscope_N = mkN "rhinoscope" "rhinoscopes" ;
+lin rhinoscopy_N = mkN "rhinoscopy" "rhinoscopies" ;
+lin rhinosporidiosis_N = mkN "rhinosporidiosis" "rhinosporidiosises" ;
+lin rhinostenosis_N = mkN "rhinostenosis" "rhinostenosises" ;
+lin rhinotomy_N = mkN "rhinotomy" "rhinotomies" ;
+lin rhinotracheitis_N = mkN "rhinotracheitis" "rhinotracheitises" ;
+lin rhinovirus_N = mkN "rhinovirus" "rhinoviruses" ;
+lin rhizoctinia_N = mkN "rhizoctinia" "rhizoctinias" ;
+lin rhizoid_N = mkN "rhizoid" "rhizoids" ;
+lin rhizoidal_A = mkAMost "rhizoidal" "rhizoidally" ;
+lin rhizomatous_A = mkAMost "rhizomatous" "rhizomatously" ;
+lin rhizome_N = mkN "rhizome" "rhizomes" ;
+lin rhizomorph_N = mkN "rhizomorph" "rhizomorphs" ;
+lin rhizopod_N = mkN "rhizopod" "rhizopods" ;
+lin rhizopus_N = mkN "rhizopus" "rhizopuses" ;
+lin rhizotomy_N = mkN "rhizotomy" "rhizotomies" ;
+lin rho_N = mkN "rho" "rhoes" ;
+lin rhodium_N = mkN "rhodium" "rhodiums" ;
+lin rhodochrosite_N = mkN "rhodochrosite" "rhodochrosites" ;
+lin rhododendron_N = mkN "rhododendron" "rhododendrons" ;
+lin rhodolite_N = mkN "rhodolite" "rhodolites" ;
+lin rhodonite_N = mkN "rhodonite" "rhodonites" ;
+lin rhomb_N = mkN "rhomb" "rhombs" ;
+lin rhombic_A = mkAMost "rhombic" "rhombicly" ;
+lin rhombohedral_A = mkAMost "rhombohedral" "rhombohedrally" ;
+lin rhombohedron_N = mkN "rhombohedron" "rhombohedrons" ;
+lin rhomboid_A = mkAMost "rhomboid" "rhomboidly" ;
+lin rhomboid_N = mkN "rhomboid" "rhomboids" ;
+lin rhombus_N = mkN "rhombus" "rhombuses" ;
+lin rhonchus_N = mkN "rhonchus" "rhonchuses" ;
+lin rhubarb_N = mkN "rhubarb" "rhubarbs" ;
+lin rhyme_N = mkN "rhyme" "rhymes" ;
+lin rhyme_V = mkV "rhyme" "rhymed" "rhymed" ;
+lin rhymer_N = mkN "rhymer" "rhymers" ;
+lin rhymester_N = mkN "rhymester" "rhymesters" ;
+lin rhyolite_N = mkN "rhyolite" "rhyolites" ;
+lin rhythm_N = mkN "rhythm" "rhythms" ;
+lin rhythmic_A = mkAMost "rhythmic" "rhythmicly" ;
+lin rhythmical_A = mkAMost "rhythmical" "rhythmically" ;
+lin rhythmicity_N = mkN "rhythmicity" "rhythmicities" ;
+lin rib_N = mkN "rib" "ribs" ;
+lin rib_V = mkV "rib" "ribbed" "ribbed" ;
+lin ribald_A = mkAMost "ribald" "ribaldly" ;
+lin ribald_N = mkN "ribald" "ribalds" ;
+lin ribaldry_N = mkN "ribaldry" "ribaldries" ;
+lin riband_N = mkN "riband" "ribands" ;
+lin ribavirin_N = mkN "ribavirin" "ribavirins" ;
+lin ribbing_N = mkN "ribbing" "ribbings" ;
+lin ribbon_N = mkN "ribbon" "ribbons" ;
+lin ribbonfish_N = mkN "ribbonfish" "ribbonfishes" ;
+lin ribbonlike_A = mkAMost "ribbonlike" "ribbonlikely" ;
+lin ribier_N = mkN "ribier" "ribiers" ;
+lin ribless_A = mkAMost "ribless" "riblessly" ;
+lin riblike_A = mkAMost "riblike" "riblikely" ;
+lin riboflavin_N = mkN "riboflavin" "riboflavins" ;
+lin ribonuclease_N = mkN "ribonuclease" "ribonucleases" ;
+lin ribose_N = mkN "ribose" "riboses" ;
+lin ribosome_N = mkN "ribosome" "ribosomes" ;
+lin rice_N = mkN "rice" "rices" ;
+lin rice_paper_N = mkN "rice-paper" "rice-papers" ;
+lin ricegrass_N = mkN "ricegrass" "ricegrasses" ;
+lin ricer_N = mkN "ricer" "ricers" ;
+lin rich_A = mkA "rich" "richer" "richest" "richly" ;
+lin richness_N = mkN "richness" "richnesses" ;
+lin richweed_N = mkN "richweed" "richweeds" ;
+lin ricin_N = mkN "ricin" "ricins" ;
+lin rick_N = mkN "rick" "ricks" ;
+lin rick_V = mkV "rick" "ricked" "ricked" ;
+lin rickets_N = mkN "rickets" "rickets" ;
+lin rickettsia_N = mkN "rickettsia" "rickettsias" ;
+lin rickettsial_A = mkAMost "rickettsial" "rickettsially" ;
+lin rickettsialpox_N = mkN "rickettsialpox" "rickettsialpoxes" ;
+lin rickety_A = mkAMost "rickety" "ricketily" ;
+lin rickey_N = mkN "rickey" "rickeys" ;
+lin rickrack_N = mkN "rickrack" "rickracks" ;
+lin rickshaw_N = mkN "rickshaw" "rickshaws" ;
+lin ricochet_N = mkN "ricochet" "ricochets" ;
+lin ricochet_V = mkV "ricochet" "ricocheted" "ricocheted" ;
+lin ricotta_N = mkN "ricotta" "ricottas" ;
+lin rictus_N = mkN "rictus" "rictuses" ;
+lin rid_rid_V = mkV "rid" "rid" "rid" ;
+lin rid_ridded_V = mkV "rid" "ridded" "ridded" ;
+lin riddance_N = mkN "riddance" "riddances" ;
+lin riddle_N = mkN "riddle" "riddles" ;
+lin riddle_V = mkV "riddle" "riddled" "riddled" ;
+lin ride_N = mkN "ride" "rides" ;
+lin ride_V = mkV "ride" "rode" "ridden" ;
+lin rider_N = mkN "rider" "riders" ;
+lin riderless_A = mkAMost "riderless" "riderlessly" ;
+lin ridge_N = mkN "ridge" "ridges" ;
+lin ridge_V = mkV "ridge" "ridged" "ridged" ;
+lin ridge_tile_N = mkN "ridge-tile" "ridge-tiles" ;
+lin ridgeling_N = mkN "ridgeling" "ridgelings" ;
+lin ridgepole_N = mkN "ridgepole" "ridgepoles" ;
+lin ridicule_N = mkN "ridicule" "ridicules" ;
+lin ridicule_V = mkV "ridicule" "ridiculed" "ridiculed" ;
+lin ridiculous_A = mkAMost "ridiculous" "ridiculously" ;
+lin riding_N = mkN "riding" "ridings" ;
+lin riding_habit_N = mkN "riding-habit" "riding-habits" ;
+lin riding_lamp_N = mkN "riding-lamp" "riding-lamps" ;
+lin riding_light_N = mkN "riding-light" "riding-lights" ;
+lin riding_master_N = mkN "riding-master" "riding-masters" ;
+lin riding_school_N = mkN "riding-school" "riding-schools" ;
+lin ridley_N = mkN "ridley" "ridleys" ;
+lin riel_N = mkN "riel" "riels" ;
+lin riesling_N = mkN "riesling" "rieslings" ;
+lin rifampin_N = mkN "rifampin" "rifampins" ;
+lin rife_A = mkAMost "rife" "rifely" ;
+lin riff_N = mkN "riff" "riffs" ;
+lin riff_raff_N = mkN "riff-raff" "riff-rafves" ;
+lin riffle_N = mkN "riffle" "riffles" ;
+lin riffle_V = mkV "riffle" "riffled" "riffled" ;
+lin rifle_N = mkN "rifle" "rifles" ;
+lin rifle_V = mkV "rifle" "rifled" "rifled" ;
+lin rifle_range_N = mkN "rifle-range" "rifle-ranges" ;
+lin rifle_shot_N = mkN "rifle-shot" "rifle-shots" ;
+lin riflebird_N = mkN "riflebird" "riflebirds" ;
+lin rifleman_N = mkN "rifleman" "riflemen" ;
+lin rift_N = mkN "rift" "rifts" ;
+lin rift_valley_N = mkN "rift-valley" "rift-valleys" ;
+lin rig_N = mkN "rig" "rigs" ;
+lin rig_V = mkV "rig" "rigged" "rigged" ;
+lin rigatoni_N = mkN "rigatoni" "rigatonis" ;
+lin rigg_V = mkV "rigg" "rigged" "rigged" ;
+lin rigger_N = mkN "rigger" "riggers" ;
+lin rigging_N = mkN "rigging" "riggings" ;
+lin right_A = mkAMost "right" "rightly" ;
+lin right_Adv = mkAdv "right" ;
+lin right_N = mkN "right" "rights" ;
+lin right_V = mkV "right" "righted" "righted" ;
+lin right_angled_A = mkAMost "right-angled" "right-angledly" ;
+lin right_down_A = mkAMost "right-down" "right-downly" ;
+lin right_down_Adv = mkAdv "right-down" ;
+lin right_hand_A = mkAMost "right-hand" "right-handly" ;
+lin right_handed_A = mkAMost "right-handed" "right-handedly" ;
+lin right_hander_N = mkN "right-hander" "right-handers" ;
+lin right_minded_A = mkAMost "right-minded" "right-mindedly" ;
+lin right_of_Prep = mkPrep "right of" ;
+lin right_turn_N = mkN "right-turn" "right-turns" ;
+lin right_wing_N = mkN "right-wing" "right-wings" ;
+lin right_winger_N = mkN "right-winger" "right-wingers" ;
+lin righteous_A = mkAMost "righteous" "righteously" ;
+lin righteousness_N = mkN "righteousness" "righteousnesses" ;
+lin rightful_A = mkAMost "rightful" "rightfully" ;
+lin rightfulness_N = mkN "rightfulness" "rightfulnesses" ;
+lin rightish_A = mkAMost "rightish" "rightishly" ;
+lin rightism_N = mkN "rightism" "rightisms" ;
+lin rightist_A = mkAMost "rightist" "rightistly" ;
+lin rightist_N = mkN "rightist" "rightists" ;
+lin rightmost_A = mkAMost "rightmost" "rightmostly" ;
+lin rightness_N = mkN "rightness" "rightnesses" ;
+lin rigid_A = mkAMost "rigid" "rigidly" ;
+lin rigidity_N = mkN "rigidity" "rigidities" ;
+lin rigmarole_N = mkN "rigmarole" "rigmaroles" ;
+lin rigor_mortis_N = mkN "rigor mortis" "rigor mortises" ;
+lin rigorous_A = mkAMost "rigorous" "rigorously" ;
+lin rigour_N = mkN "rigour" "rigours" ;
+lin rigout_N = mkN "rigout" "rigouts" ;
+lin rijsttaffel_N = mkN "rijsttaffel" "rijsttaffels" ;
+lin rile_V = mkV "rile" "riled" "riled" ;
+lin rill_N = mkN "rill" "rills" ;
+lin rim_N = mkN "rim" "rims" ;
+lin rim_V = mkV "rim" "rimmed" "rimmed" ;
+lin rima_N = mkN "rima" "rimas" ;
+lin rime_N = mkN "rime" "rimes" ;
+lin rime_V = mkV "rime" "rimed" "rimed" ;
+lin rimless_A = mkAMost "rimless" "rimlessly" ;
+lin rimose_A = mkAMost "rimose" "rimosely" ;
+lin rimu_N = mkN "rimu" "rimus" ;
+lin rind_N = mkN "rind" "rinds" ;
+lin rinderpest_N = mkN "rinderpest" "rinderpests" ;
+lin ring_N = mkN "ring" "rings" ;
+lin ring_armour_N = mkN "ring-armour" "ring-armours" ;
+lin ring_finger_N = mkN "ring-finger" "ring-fingers" ;
+lin ring_mail_N = mkN "ring-mail" "ring-mails" ;
+lin ring_rang_V = mkV "ring" "rang" "rung" ;
+lin ring_ringed_V = mkV "ring" "ringed" "ringed" ;
+lin ring_road_N = mkN "ring-road" "ring-roads" ;
+lin ringdove_N = mkN "ringdove" "ringdoves" ;
+lin ringer_N = mkN "ringer" "ringers" ;
+lin ringgit_N = mkN "ringgit" "ringgits" ;
+lin ringhals_N = mkN "ringhals" "ringhalses" ;
+lin ringing_N = mkN "ringing" "ringings" ;
+lin ringleader_N = mkN "ringleader" "ringleaders" ;
+lin ringlet_N = mkN "ringlet" "ringlets" ;
+lin ringleted_A = mkAMost "ringleted" "ringletedly" ;
+lin ringlike_A = mkAMost "ringlike" "ringlikely" ;
+lin ringmaster_N = mkN "ringmaster" "ringmasters" ;
+lin rings_N = mkN "rings" "ringses" ;
+lin ringside_N = mkN "ringside" "ringsides" ;
+lin ringtail_N = mkN "ringtail" "ringtails" ;
+lin ringworm_N = mkN "ringworm" "ringworms" ;
+lin rink_N = mkN "rink" "rinks" ;
+lin rinse_N = mkN "rinse" "rinses" ;
+lin rinse_V = mkV "rinse" "rinsed" "rinsed" ;
+lin riot_N = mkN "riot" "riots" ;
+lin riot_V = mkV "riot" "rioted" "rioted" ;
+lin rioter_N = mkN "rioter" "rioters" ;
+lin rioting_N = mkN "rioting" "riotings" ;
+lin riotous_A = mkAMost "riotous" "riotously" ;
+lin rip_N = mkN "rip" "rips" ;
+lin rip_V = mkV "rip" "ripped" "ripped" ;
+lin rip_off_N = mkN "rip-off" "rip-offs" ;
+lin rip_roaring_A = mkAMost "rip-roaring" "rip-roaringly" ;
+lin riparian_A = mkAMost "riparian" "riparianly" ;
+lin ripcord_N = mkN "ripcord" "ripcords" ;
+lin ripe_A = mkA "ripe" "riper" "ripest" "ripely" ;
+lin ripen_V = mkV "ripen" "ripened" "ripened" ;
+lin ripeness_N = mkN "ripeness" "ripenesses" ;
+lin ripening_N = mkN "ripening" "ripenings" ;
+lin riposte_N = mkN "riposte" "ripostes" ;
+lin riposte_V = mkV "riposte" "riposted" "riposted" ;
+lin ripper_N = mkN "ripper" "rippers" ;
+lin ripple_N = mkN "ripple" "ripples" ;
+lin ripple_V = mkV "ripple" "rippled" "rippled" ;
+lin ripsaw_N = mkN "ripsaw" "ripsaws" ;
+lin riptide_N = mkN "riptide" "riptides" ;
+lin rise_N = mkN "rise" "rises" ;
+lin rise_V = mkV "rise" "rose" "risen" ;
+lin riser_N = mkN "riser" "risers" ;
+lin risibility_N = mkN "risibility" "risibilities" ;
+lin risible_A = mkAMost "risible" "risibly" ;
+lin rising_N = mkN "rising" "risings" ;
+lin risk_N = mkN "risk" "risks" ;
+lin risk_V = mkV "risk" "risked" "risked" ;
+lin riskiness_N = mkN "riskiness" "riskinesses" ;
+lin risklessness_N = mkN "risklessness" "risklessnesses" ;
+lin risky_A = mkA "risky" "riskier" "riskiest" "riskily" ;
+lin risotto_N = mkN "risotto" "risottos" ;
+lin risqué_A = mkAMost "risqué" "risquély" ;
+lin rissole_N = mkN "rissole" "rissoles" ;
+lin rite_N = mkN "rite" "rites" ;
+lin ritonavir_N = mkN "ritonavir" "ritonavirs" ;
+lin ritual_A = mkAMost "ritual" "ritually" ;
+lin ritual_N = mkN "ritual" "rituals" ;
+lin ritualism_N = mkN "ritualism" "ritualisms" ;
+lin ritualist_N = mkN "ritualist" "ritualists" ;
+lin ritualistic_A = mkAMost "ritualistic" "ritualisticly" ;
+lin ritz_N = mkN "ritz" "ritzes" ;
+lin ritzy_A = mkAMost "ritzy" "ritzily" ;
+lin rival_N = mkN "rival" "rivals" ;
+lin rival_V = mkV "rival" "rivalled" "rivalled" ;
+lin rivalry_N = mkN "rivalry" "rivalries" ;
+lin rive_V = mkV "rive" "rived" "rived" ;
+lin river_N = mkN "river" "rivers" ;
+lin river_basin_N = mkN "river-basin" "river-basins" ;
+lin river_bed_N = mkN "river-bed" "river-beds" ;
+lin riverbank_N = mkN "riverbank" "riverbanks" ;
+lin riverbed_N = mkN "riverbed" "riverbeds" ;
+lin riverside_N = mkN "riverside" "riversides" ;
+lin rivet_N = mkN "rivet" "rivets" ;
+lin rivet_riveted_V = mkV "rivet" "riveted" "riveted" ;
+lin rivet_rivetted_V = mkV "rivet" "rivetted" "rivetted" ;
+lin riveter_N = mkN "riveter" "riveters" ;
+lin rivulet_N = mkN "rivulet" "rivulets" ;
+lin rivulus_N = mkN "rivulus" "rivuluses" ;
+lin rly_N = mkN "rly" "rlies" ;
+lin rm_N = mkN "rm" "rms" ;
+lin rn_N = mkN "rn" "rns" ;
+lin roach_N = mkN "roach" "roach" ;
+lin road_N = mkN "road" "roads" ;
+lin road_book_N = mkN "road-book" "road-books" ;
+lin road_hog_N = mkN "road-hog" "road-hogs" ;
+lin road_metal_N = mkN "road-metal" "road-metals" ;
+lin road_sense_N = mkN "road-sense" "road-senses" ;
+lin roadbed_N = mkN "roadbed" "roadbeds" ;
+lin roadblock_N = mkN "roadblock" "roadblocks" ;
+lin roadbook_N = mkN "roadbook" "roadbooks" ;
+lin roadhouse_N = mkN "roadhouse" "roadhouses" ;
+lin roadkill_N = mkN "roadkill" "roadkills" ;
+lin roadless_A = mkAMost "roadless" "roadlessly" ;
+lin roadman_N = mkN "roadman" "roadmen" ;
+lin roadmender_N = mkN "roadmender" "roadmenders" ;
+lin roadrunner_N = mkN "roadrunner" "roadrunners" ;
+lin roads_N = mkN "roads" "roadses" ;
+lin roadside_N = mkN "roadside" "roadsides" ;
+lin roadstead_N = mkN "roadstead" "roadsteads" ;
+lin roadster_N = mkN "roadster" "roadsters" ;
+lin roadway_N = mkN "roadway" "roadways" ;
+lin roadworthiness_N = mkN "roadworthiness" "roadworthinesses" ;
+lin roadworthy_A = mkAMost "roadworthy" "roadworthily" ;
+lin roam_V = mkV "roam" "roamed" "roamed" ;
+lin roan_A = mkAMost "roan" "roanly" ;
+lin roan_N = mkN "roan" "roans" ;
+lin roar_N = mkN "roar" "roars" ;
+lin roar_V = mkV "roar" "roared" "roared" ;
+lin roarer_N = mkN "roarer" "roarers" ;
+lin roaring_Adv = mkAdv "roaring" ;
+lin roast_A = mkAMost "roast" "roastly" ;
+lin roast_N = mkN "roast" "roasts" ;
+lin roast_V = mkV "roast" "roasted" "roasted" ;
+lin roaster_N = mkN "roaster" "roasters" ;
+lin roasting_N = mkN "roasting" "roastings" ;
+lin rob_V = mkV "rob" "robbed" "robbed" ;
+lin robalo_N = mkN "robalo" "robaloes" ;
+lin robber_N = mkN "robber" "robbers" ;
+lin robbery_N = mkN "robbery" "robberies" ;
+lin robe_N = mkN "robe" "robes" ;
+lin robe_V = mkV "robe" "robed" "robed" ;
+lin robin_N = mkN "robin" "robins" ;
+lin roble_N = mkN "roble" "robles" ;
+lin robot_N = mkN "robot" "robots" ;
+lin robotic_A = mkAMost "robotic" "roboticly" ;
+lin robotics_N = mkN "robotics" "roboticses" ;
+lin robust_A = mkAMost "robust" "robustly" ;
+lin robustness_N = mkN "robustness" "robustnesses" ;
+lin roc_N = mkN "roc" "rocs" ;
+lin roccella_N = mkN "roccella" "roccellas" ;
+lin rock_'n_roll_N = mkN "rock-'n-roll" "rock-'n-rolls" ;
+lin rock_N = mkN "rock" "rocks" ;
+lin rock_V = mkV "rock" "rocked" "rocked" ;
+lin rock_bottom_N = mkN "rock-bottom" "rock-bottoms" ;
+lin rock_cake_N = mkN "rock-cake" "rock-cakes" ;
+lin rock_climbing_N = mkN "rock-climbing" "rock-climbings" ;
+lin rock_crystal_N = mkN "rock-crystal" "rock-crystals" ;
+lin rock_garden_N = mkN "rock-garden" "rock-gardens" ;
+lin rock_plant_N = mkN "rock-plant" "rock-plants" ;
+lin rock_salmon_N = mkN "rock-salmon" "rock-salmon" ;
+lin rock_salt_N = mkN "rock-salt" "rock-salts" ;
+lin rockabilly_N = mkN "rockabilly" "rockabillies" ;
+lin rocker_N = mkN "rocker" "rockers" ;
+lin rockers_N = mkN "rockers" "rockerses" ;
+lin rockery_N = mkN "rockery" "rockeries" ;
+lin rocket_N = mkN "rocket" "rockets" ;
+lin rocket_V = mkV "rocket" "rocketed" "rocketed" ;
+lin rocket_base_N = mkN "rocket-base" "rocket-bases" ;
+lin rocket_range_N = mkN "rocket-range" "rocket-ranges" ;
+lin rocketry_N = mkN "rocketry" "rocketries" ;
+lin rockfish_N = mkN "rockfish" "rockfishes" ;
+lin rockiness_N = mkN "rockiness" "rockinesses" ;
+lin rocking_chair_N = mkN "rocking-chair" "rocking-chairs" ;
+lin rocking_horse_N = mkN "rocking-horse" "rocking-horses" ;
+lin rockrose_N = mkN "rockrose" "rockroses" ;
+lin rockslide_N = mkN "rockslide" "rockslides" ;
+lin rockweed_N = mkN "rockweed" "rockweeds" ;
+lin rocky_A = mkA "rocky" "rockier" "rockiest" "rockily" ;
+lin rococo_A = mkAMost "rococo" "rococoly" ;
+lin rococo_N = mkN "rococo" "rococoes" ;
+lin rod_N = mkN "rod" "rods" ;
+lin rodent_N = mkN "rodent" "rodents" ;
+lin rodeo_N = mkN "rodeo" "rodeos" ;
+lin rodomontade_N = mkN "rodomontade" "rodomontades" ;
+lin roe_N = mkN "roe" "roe" ;
+lin roebuck_N = mkN "roebuck" "roebucks" ;
+lin roentgen_N = mkN "roentgen" "roentgens" ;
+lin roentgenium_N = mkN "roentgenium" "roentgeniums" ;
+lin roentgenogram_N = mkN "roentgenogram" "roentgenograms" ;
+lin roentgenographic_A = mkAMost "roentgenographic" "roentgenographicly" ;
+lin roentgenography_N = mkN "roentgenography" "roentgenographies" ;
+lin rofecoxib_N = mkN "rofecoxib" "rofecoxibs" ;
+lin rogation_N = mkN "rogation" "rogations" ;
+lin rogue_N = mkN "rogue" "rogues" ;
+lin rogue_elephant_N = mkN "rogue-elephant" "rogue-elephants" ;
+lin roguery_N = mkN "roguery" "rogueries" ;
+lin roguish_A = mkAMost "roguish" "roguishly" ;
+lin roguishness_N = mkN "roguishness" "roguishnesses" ;
+lin roil_V = mkV "roil" "roiled" "roiled" ;
+lin roisterer_N = mkN "roisterer" "roisterers" ;
+lin role_N = mkN "role" "roles" ;
+lin roleplaying_N = mkN "roleplaying" "roleplayings" ;
+lin roll_N = mkN "roll" "rolls" ;
+lin roll_V = mkV "roll" "rolled" "rolled" ;
+lin roll_call_N = mkN "roll-call" "roll-calls" ;
+lin roll_on_N = mkN "roll-on" "roll-ons" ;
+lin rollback_N = mkN "rollback" "rollbacks" ;
+lin roller_N = mkN "roller" "rollers" ;
+lin roller_skate_N = mkN "roller-skate" "roller-skates" ;
+lin rollerblader_N = mkN "rollerblader" "rollerbladers" ;
+lin rollerblading_N = mkN "rollerblading" "rollerbladings" ;
+lin rollicking_A = mkAMost "rollicking" "rollickingly" ;
+lin rolling_N = mkN "rolling" "rollings" ;
+lin rolling_mill_N = mkN "rolling-mill" "rolling-mills" ;
+lin rolling_pin_N = mkN "rolling-pin" "rolling-pins" ;
+lin rolling_stock_N = mkN "rolling-stock" "rolling-stocks" ;
+lin rollmops_N = mkN "rollmops" "rollmopses" ;
+lin rollover_N = mkN "rollover" "rollovers" ;
+lin roly_poly_N = mkN "roly-poly" "roly-polies" ;
+lin romaic_A = mkAMost "romaic" "romaicly" ;
+lin romaic_N = mkN "romaic" "romaics" ;
+lin roman_A = mkAMost "roman" "romanly" ;
+lin roman_N = mkN "roman" "romans" ;
+lin romance_A = mkAMost "romance" "romancely" ;
+lin romance_N = mkN "romance" "romances" ;
+lin romance_V = mkV "romance" "romanced" "romanced" ;
+lin romanesque_N = mkN "romanesque" "romanesques" ;
+lin romantic_A = mkAMost "romantic" "romanticly" ;
+lin romantic_N = mkN "romantic" "romantics" ;
+lin romantically_Adv = mkAdv "romantically" ;
+lin romanticism_N = mkN "romanticism" "romanticisms" ;
+lin romanticist_N = mkN "romanticist" "romanticists" ;
+lin romanticize_V = mkV "romanticize" "romanticized" "romanticized" ;
+lin romany_A = mkAMost "romany" "romanily" ;
+lin romany_N = mkN "romany" "romanies" ;
+lin romish_A = mkAMost "romish" "romishly" ;
+lin romp_N = mkN "romp" "romps" ;
+lin romp_V = mkV "romp" "romped" "romped" ;
+lin romper_N = mkN "romper" "rompers" ;
+lin rondeau_N = mkN "rondeau" "rondeaus" ;
+lin rondel_N = mkN "rondel" "rondels" ;
+lin rondelet_N = mkN "rondelet" "rondelets" ;
+lin rondo_N = mkN "rondo" "rondos" ;
+lin roneo_N = mkN "roneo" "roneos" ;
+lin roneo_V = mkV "roneo" "roneoed" "roneoed" ;
+lin rood_N = mkN "rood" "roods" ;
+lin rood_tree_N = mkN "rood-tree" "rood-trees" ;
+lin roof_N = mkN "roof" "roofs" ;
+lin roof_V = mkV "roof" "roofed" "roofed" ;
+lin roof_garden_N = mkN "roof-garden" "roof-gardens" ;
+lin roof_tree_N = mkN "roof-tree" "roof-trees" ;
+lin roofer_N = mkN "roofer" "roofers" ;
+lin roofing_N = mkN "roofing" "roofings" ;
+lin roofless_A = mkAMost "roofless" "rooflessly" ;
+lin rooftop_N = mkN "rooftop" "rooftops" ;
+lin rooibos_N = mkN "rooibos" "rooiboses" ;
+lin rook_N = mkN "rook" "rooks" ;
+lin rook_V = mkV "rook" "rooked" "rooked" ;
+lin rookery_N = mkN "rookery" "rookeries" ;
+lin rookie_N = mkN "rookie" "rookies" ;
+lin room_N = mkN "room" "rooms" ;
+lin room_V = mkV "room" "roomed" "roomed" ;
+lin room_mate_N = mkN "room-mate" "room-mates" ;
+lin roomer_N = mkN "roomer" "roomers" ;
+lin roomette_N = mkN "roomette" "roomettes" ;
+lin roomful_N = mkN "roomful" "roomfuls" ;
+lin roommate_N = mkN "roommate" "roommates" ;
+lin roomy_A = mkA "roomy" "roomier" "roomiest" "roomily" ;
+lin roost_N = mkN "roost" "roosts" ;
+lin roost_V = mkV "roost" "roosted" "roosted" ;
+lin rooster_N = mkN "rooster" "roosters" ;
+lin root_N = mkN "root" "roots" ;
+lin root_V = mkV "root" "rooted" "rooted" ;
+lin rootage_N = mkN "rootage" "rootages" ;
+lin rootbound_A = mkAMost "rootbound" "rootboundly" ;
+lin rooting_N = mkN "rooting" "rootings" ;
+lin rootle_V = mkV "rootle" "rootled" "rootled" ;
+lin rootless_A = mkAMost "rootless" "rootlessly" ;
+lin rootlet_N = mkN "rootlet" "rootlets" ;
+lin roots_N = mkN "roots" "rootses" ;
+lin rootstock_N = mkN "rootstock" "rootstocks" ;
+lin rope_N = mkN "rope" "ropes" ;
+lin rope_V = mkV "rope" "roped" "roped" ;
+lin rope_dancer_N = mkN "rope-dancer" "rope-dancers" ;
+lin rope_ladder_N = mkN "rope-ladder" "rope-ladders" ;
+lin rope_yard_N = mkN "rope-yard" "rope-yards" ;
+lin rope_yarn_N = mkN "rope-yarn" "rope-yarns" ;
+lin ropemaker_N = mkN "ropemaker" "ropemakers" ;
+lin roper_N = mkN "roper" "ropers" ;
+lin ropewalk_N = mkN "ropewalk" "ropewalks" ;
+lin ropewalker_N = mkN "ropewalker" "ropewalkers" ;
+lin ropeway_N = mkN "ropeway" "ropeways" ;
+lin ropey_A = mkA "ropey" "ropeyyer" "ropeyyest" "ropeily" ;
+lin roping_N = mkN "roping" "ropings" ;
+lin ropy_A = mkA "ropy" "ropier" "ropiest" "ropily" ;
+lin roquefort_N = mkN "roquefort" "roqueforts" ;
+lin roridula_N = mkN "roridula" "roridulas" ;
+lin rorqual_N = mkN "rorqual" "rorquals" ;
+lin rosaceous_A = mkAMost "rosaceous" "rosaceously" ;
+lin rosary_N = mkN "rosary" "rosaries" ;
+lin rose_A = mkA "rose" "roser" "rosest" "rosely" ;
+lin rose_N = mkN "rose" "roses" ;
+lin rose_V = mkV "rose" "rosed" "rosed" ;
+lin rose_bed_N = mkN "rose-bed" "rose-beds" ;
+lin rose_leaf_N = mkN "rose-leaf" "rose-leaves" ;
+lin rose_red_A = mkAMost "rose-red" "rose-redly" ;
+lin rose_water_N = mkN "rose-water" "rose-waters" ;
+lin roseate_A = mkAMost "roseate" "roseately" ;
+lin rosebay_N = mkN "rosebay" "rosebays" ;
+lin rosebud_N = mkN "rosebud" "rosebuds" ;
+lin rosefish_N = mkN "rosefish" "rosefishes" ;
+lin roselle_N = mkN "roselle" "roselles" ;
+lin rosemaling_N = mkN "rosemaling" "rosemalings" ;
+lin rosemary_N = mkN "rosemary" "rosemaries" ;
+lin rosette_N = mkN "rosette" "rosettes" ;
+lin rosewood_N = mkN "rosewood" "rosewoods" ;
+lin rosilla_N = mkN "rosilla" "rosillas" ;
+lin rosin_N = mkN "rosin" "rosins" ;
+lin rosin_V = mkV "rosin" "rosinned" "rosinned" ;
+lin rosinweed_N = mkN "rosinweed" "rosinweeds" ;
+lin rosita_N = mkN "rosita" "rositas" ;
+lin roster_N = mkN "roster" "rosters" ;
+lin rostrate_A = mkAMost "rostrate" "rostrately" ;
+lin rostrum_N = mkN "rostrum" "rostrums" ;
+lin rosy_A = mkA "rosy" "rosier" "rosiest" "rosily" ;
+lin rot_N = mkN "rot" "rots" ;
+lin rot_V = mkV "rot" "rotted" "rotted" ;
+lin rota_N = mkN "rota" "rotas" ;
+lin rotarian_N = mkN "rotarian" "rotarians" ;
+lin rotary_A = mkAMost "rotary" "rotarily" ;
+lin rotary_N = mkN "rotary" "rotaries" ;
+lin rotatable_A = mkAMost "rotatable" "rotatably" ;
+lin rotate_V = mkV "rotate" "rotated" "rotated" ;
+lin rotation_N = mkN "rotation" "rotations" ;
+lin rotational_A = mkAMost "rotational" "rotationally" ;
+lin rotatory_A = mkAMost "rotatory" "rotatorily" ;
+lin rotavirus_N = mkN "rotavirus" "rotaviruses" ;
+lin rote_N = mkN "rote" "IRREG" ;
+lin rotenone_N = mkN "rotenone" "rotenones" ;
+lin rotgut_N = mkN "rotgut" "rotguts" ;
+lin rotifer_N = mkN "rotifer" "rotifers" ;
+lin rotisserie_N = mkN "rotisserie" "rotisseries" ;
+lin rotl_N = mkN "rotl" "rotls" ;
+lin rotogravure_N = mkN "rotogravure" "rotogravures" ;
+lin rotor_N = mkN "rotor" "rotors" ;
+lin rotten_A = mkAMost "rotten" "rottenly" ;
+lin rottenness_N = mkN "rottenness" "rottennesses" ;
+lin rottenstone_N = mkN "rottenstone" "rottenstones" ;
+lin rotter_N = mkN "rotter" "rotters" ;
+lin rotund_A = mkAMost "rotund" "rotundly" ;
+lin rotunda_N = mkN "rotunda" "rotundas" ;
+lin rotundity_N = mkN "rotundity" "rotundities" ;
+lin rouble_N = mkN "rouble" "roubles" ;
+lin rouge_N = mkN "rouge" "rouges" ;
+lin rouge_V = mkV "rouge" "rouged" "rouged" ;
+lin rough_A = mkA "rough" "rougher" "roughest" "roughly" ;
+lin rough_Adv = mkAdv "rough" ;
+lin rough_N = mkN "rough" "roughs" ;
+lin rough_V = mkV "rough" "roughed" "roughed" ;
+lin rough_and_tumble_A = mkAMost "rough-and-tumble" "rough-and-tumbly" ;
+lin rough_and_tumble_N = mkN "rough-and-tumble" "rough-and-tumbles" ;
+lin rough_dry_V = mkV "rough-dry" "rough-dried" "rough-dried" ;
+lin rough_hewn_A = mkAMost "rough-hewn" "rough-hewnly" ;
+lin rough_house_V = mkV "rough-house" "rough-housed" "rough-housed" ;
+lin rough_spoken_A = mkAMost "rough-spoken" "rough-spokenly" ;
+lin roughage_N = mkN "roughage" "roughages" ;
+lin roughcast_N = mkN "roughcast" "roughcasts" ;
+lin roughcast_V = mkV "roughcast" "roughcast" "roughcast" ;
+lin roughdried_A = mkAMost "roughdried" "roughdriedly" ;
+lin roughen_V = mkV "roughen" "roughened" "roughened" ;
+lin roughhewn_A = mkAMost "roughhewn" "roughhewnly" ;
+lin roughish_A = mkAMost "roughish" "roughishly" ;
+lin roughneck_N = mkN "roughneck" "roughnecks" ;
+lin roughness_N = mkN "roughness" "roughnesses" ;
+lin roughrider_N = mkN "roughrider" "roughriders" ;
+lin roughshod_A = mkAMost "roughshod" "roughshodly" ;
+lin roulade_N = mkN "roulade" "roulades" ;
+lin rouleau_N = mkN "rouleau" "rouleaus" ;
+lin roulette_N = mkN "roulette" "roulettes" ;
+lin round_A = mkA "round" "rounder" "roundest" "roundly" ;
+lin round_Adv = mkAdv "round" ;
+lin round_N = mkN "round" "rounds" ;
+lin round_Prep = mkPrep "round" ;
+lin round_V = mkV "round" "rounded" "rounded" ;
+lin round_arm_A = mkAMost "round-arm" "round-armly" ;
+lin round_arm_Adv = mkAdv "round-arm" ;
+lin round_backed_A = mkAMost "round-backed" "round-backedly" ;
+lin round_eyed_A = mkAMost "round-eyed" "round-eyedly" ;
+lin round_hand_N = mkN "round-hand" "round-hands" ;
+lin round_shot_N = mkN "round-shot" "round-shots" ;
+lin round_shouldered_A = mkAMost "round-shouldered" "round-shoulderedly" ;
+lin round_the_clock_A = mkAMost "round-the-clock" "round-the-clockly" ;
+lin round_the_clock_Adv = mkAdv "round-the-clock" ;
+lin roundabout_A = mkAMost "roundabout" "roundaboutly" ;
+lin roundabout_N = mkN "roundabout" "roundabouts" ;
+lin roundedness_N = mkN "roundedness" "roundednesses" ;
+lin roundel_N = mkN "roundel" "roundels" ;
+lin roundelay_N = mkN "roundelay" "roundelays" ;
+lin rounder_N = mkN "rounder" "rounders" ;
+lin rounders_N = mkN "rounders" "rounderses" ;
+lin roundhead_N = mkN "roundhead" "roundheads" ;
+lin roundhouse_N = mkN "roundhouse" "roundhouses" ;
+lin rounding_N = mkN "rounding" "roundings" ;
+lin roundish_A = mkAMost "roundish" "roundishly" ;
+lin roundness_N = mkN "roundness" "roundnesses" ;
+lin roundsman_N = mkN "roundsman" "roundsmen" ;
+lin roundup_N = mkN "roundup" "roundups" ;
+lin rouse_V = mkV "rouse" "roused" "roused" ;
+lin rout_N = mkN "rout" "routs" ;
+lin rout_V = mkV "rout" "routed" "routed" ;
+lin route_N = mkN "route" "routes" ;
+lin route_V = mkV "route" "routed" "routed" ;
+lin routemarch_N = mkN "routemarch" "routemarches" ;
+lin router_N = mkN "router" "routers" ;
+lin routine_A = mkAMost "routine" "routinely" ;
+lin routine_N = mkN "routine" "routines" ;
+lin roux_N = mkN "roux" "rouxes" ;
+lin roué_N = mkN "roué" "roués" ;
+lin rove_V = mkV "rove" "roved" "roved" ;
+lin rover_N = mkN "rover" "rovers" ;
+lin row_N = mkN "row" "rows" ;
+lin row_V = mkV "row" "rowed" "rowed" ;
+lin rowan_N = mkN "rowan" "rowans" ;
+lin rowan_berry_N = mkN "rowan-berry" "rowan-berries" ;
+lin rowan_tree_N = mkN "rowan-tree" "rowan-trees" ;
+lin rowanberry_N = mkN "rowanberry" "rowanberries" ;
+lin rowboat_N = mkN "rowboat" "rowboats" ;
+lin rowdiness_N = mkN "rowdiness" "rowdinesses" ;
+lin rowdy_A = mkA "rowdy" "rowdier" "rowdiest" "rowdily" ;
+lin rowdy_N = mkN "rowdy" "rowdies" ;
+lin rowdyism_N = mkN "rowdyism" "rowdyisms" ;
+lin rowel_N = mkN "rowel" "rowels" ;
+lin rower_N = mkN "rower" "rowers" ;
+lin rowing_N = mkN "rowing" "rowings" ;
+lin rowing_boat_N = mkN "rowing-boat" "rowing-boats" ;
+lin rowing_club_N = mkN "rowing-club" "rowing-clubs" ;
+lin rowlock_N = mkN "rowlock" "rowlocks" ;
+lin royal_A = mkAMost "royal" "royally" ;
+lin royal_N = mkN "royal" "royals" ;
+lin royalism_N = mkN "royalism" "royalisms" ;
+lin royalist_N = mkN "royalist" "royalists" ;
+lin royalty_N = mkN "royalty" "royalties" ;
+lin rpm_N = mkN "rpm" "rpm" ;
+lin rspca_N = mkN "rspca" "rspcas" ;
+lin rub_N = mkN "rub" "rubs" ;
+lin rub_V = mkV "rub" "rubbed" "rubbed" ;
+lin rub_a_dub_N = mkN "rub-a-dub" "rub-a-dubs" ;
+lin rub_down_N = mkN "rub-down" "rub-downs" ;
+lin rub_up_N = mkN "rub-up" "rub-ups" ;
+lin rubato_N = mkN "rubato" "rubatoes" ;
+lin rubber_A = mkAMost "rubber" "rubberly" ;
+lin rubber_N = mkN "rubber" "rubbers" ;
+lin rubber_V = mkV "rubber" "rubbered" "rubbered" ;
+lin rubber_necking_V = mkV "rubber-necking" "rubber-neckinged" "rubber-neckinged" ;
+lin rubber_stamp_V = mkV "rubber-stamp" "rubber-stamped" "rubber-stamped" ;
+lin rubberize_V = mkV "rubberize" "rubberized" "rubberized" ;
+lin rubberneck_N = mkN "rubberneck" "rubbernecks" ;
+lin rubberneck_V = mkV "rubberneck" "rubbernecked" "rubbernecked" ;
+lin rubbery_A = mkAMost "rubbery" "rubberily" ;
+lin rubbing_N = mkN "rubbing" "rubbings" ;
+lin rubbish_N = mkN "rubbish" "rubbishes" ;
+lin rubbish_V = mkV "rubbish" "rubbished" "rubbished" ;
+lin rubbishing_N = mkN "rubbishing" "rubbishings" ;
+lin rubbishy_A = mkAMost "rubbishy" "rubbishily" ;
+lin rubble_N = mkN "rubble" "rubbles" ;
+lin rubdown_N = mkN "rubdown" "rubdowns" ;
+lin rubefacient_N = mkN "rubefacient" "rubefacients" ;
+lin rubel_N = mkN "rubel" "rubels" ;
+lin rubicelle_N = mkN "rubicelle" "rubicelles" ;
+lin rubicon_N = mkN "rubicon" "rubicons" ;
+lin rubicund_A = mkAMost "rubicund" "rubicundly" ;
+lin rubidium_N = mkN "rubidium" "rubidiums" ;
+lin ruble_N = mkN "ruble" "rubles" ;
+lin rubric_N = mkN "rubric" "rubrics" ;
+lin ruby_A = mkAMost "ruby" "rubily" ;
+lin ruby_N = mkN "ruby" "rubies" ;
+lin ruck_N = mkN "ruck" "rucks" ;
+lin ruck_V = mkV "ruck" "rucked" "rucked" ;
+lin rucksack_N = mkN "rucksack" "rucksacks" ;
+lin ruckus_N = mkN "ruckus" "ruckuss" ;
+lin rudapithecus_N = mkN "rudapithecus" "rudapithecuses" ;
+lin rudd_N = mkN "rudd" "rudds" ;
+lin rudder_N = mkN "rudder" "rudders" ;
+lin rudderfish_N = mkN "rudderfish" "rudderfishes" ;
+lin rudderless_A = mkAMost "rudderless" "rudderlessly" ;
+lin rudderpost_N = mkN "rudderpost" "rudderposts" ;
+lin ruddiness_N = mkN "ruddiness" "ruddinesses" ;
+lin ruddle_N = mkN "ruddle" "ruddles" ;
+lin ruddle_V = mkV "ruddle" "ruddled" "ruddled" ;
+lin ruddy_A = mkA "ruddy" "ruddier" "ruddiest" "ruddily" ;
+lin rude_A = mkA "rude" "ruder" "rudest" "rudely" ;
+lin rudeness_N = mkN "rudeness" "rudenesses" ;
+lin rudiment_N = mkN "rudiment" "rudiments" ;
+lin rudimentary_A = mkAMost "rudimentary" "rudimentarily" ;
+lin rue_N = mkN "rue" "rues" ;
+lin rue_V = mkV "rue" "rued" "rued" ;
+lin rueful_A = mkAMost "rueful" "ruefully" ;
+lin ruff_N = mkN "ruff" "ruffs" ;
+lin ruff_V = mkV "ruff" "ruffed" "ruffed" ;
+lin ruffian_N = mkN "ruffian" "ruffians" ;
+lin ruffianism_N = mkN "ruffianism" "ruffianisms" ;
+lin ruffianly_A = mkAMost "ruffianly" "ruffianlily" ;
+lin ruffle_N = mkN "ruffle" "ruffles" ;
+lin ruffle_V = mkV "ruffle" "ruffled" "ruffled" ;
+lin rug_N = mkN "rug" "rugs" ;
+lin ruga_N = mkN "ruga" "rugas" ;
+lin rugby_N = mkN "rugby" "rugbies" ;
+lin rugged_A = mkAMost "rugged" "ruggedly" ;
+lin ruggedization_N = mkN "ruggedization" "ruggedizations" ;
+lin ruggedness_N = mkN "ruggedness" "ruggednesses" ;
+lin rugger_N = mkN "rugger" "ruggers" ;
+lin rugose_A = mkAMost "rugose" "rugosely" ;
+lin rugulah_N = mkN "rugulah" "rugulahs" ;
+lin ruin_N = mkN "ruin" "ruins" ;
+lin ruin_V = mkV "ruin" "ruined" "ruined" ;
+lin ruination_N = mkN "ruination" "ruinations" ;
+lin ruinous_A = mkAMost "ruinous" "ruinously" ;
+lin rule_N = mkN "rule" "rules" ;
+lin rule_V = mkV "rule" "ruled" "ruled" ;
+lin ruler_N = mkN "ruler" "rulers" ;
+lin rulership_N = mkN "rulership" "rulerships" ;
+lin ruling_N = mkN "ruling" "rulings" ;
+lin ruly_A = mkA "ruly" "rulier" "ruliest" "rulily" ;
+lin rum_N = mkN "rum" "rums" ;
+lin rum_runner_N = mkN "rum-runner" "rum-runners" ;
+lin rumba_N = mkN "rumba" "rumbas" ;
+lin rumble_N = mkN "rumble" "rumbles" ;
+lin rumble_V = mkV "rumble" "rumbled" "rumbled" ;
+lin rumbling_N = mkN "rumbling" "rumblings" ;
+lin rumbustious_A = mkAMost "rumbustious" "rumbustiously" ;
+lin rumen_N = mkN "rumen" "rumens" ;
+lin ruminant_A = mkAMost "ruminant" "ruminantly" ;
+lin ruminant_N = mkN "ruminant" "ruminants" ;
+lin ruminate_V = mkV "ruminate" "ruminated" "ruminated" ;
+lin rumination_N = mkN "rumination" "ruminations" ;
+lin ruminative_A = mkAMost "ruminative" "ruminatively" ;
+lin rummage_N = mkN "rummage" "rummages" ;
+lin rummage_V = mkV "rummage" "rummaged" "rummaged" ;
+lin rummer_N = mkN "rummer" "rummers" ;
+lin rummy_A = mkA "rummy" "rummyyer" "rummyyest" "rummily" ;
+lin rummy_N = mkN "rummy" "rummies" ;
+lin rumor_N = mkN "rumor" "rumors" ;
+lin rumor_V = mkV "rumor" "rumorred" "rumorred" ;
+lin rumour_N = mkN "rumour" "rumours" ;
+lin rumour_V = mkV "rumour" "rumoured" "rumoured" ;
+lin rumour_monger_N = mkN "rumour-monger" "rumour-mongers" ;
+lin rump_N = mkN "rump" "rumps" ;
+lin rump_steak_N = mkN "rump-steak" "rump-steaks" ;
+lin rumple_V = mkV "rumple" "rumpled" "rumpled" ;
+lin rumpus_N = mkN "rumpus" "rumpi" ;
+lin rumrunner_N = mkN "rumrunner" "rumrunners" ;
+lin run_N = mkN "run" "runs" ;
+lin run_of_the_mill_A = mkAMost "run-of-the-mill" "run-of-the-milly" ;
+lin run_off_N = mkN "run-off" "run-offs" ;
+lin run_ran_V = mkV "run" "ran" "run" ;
+lin run_runned_V = mkV "run" "runned" "runned" ;
+lin run_through_N = mkN "run-through" "run-throughs" ;
+lin run_up_N = mkN "run-up" "run-ups" ;
+lin runaway_A = mkAMost "runaway" "runawaily" ;
+lin runaway_N = mkN "runaway" "runaways" ;
+lin runcinate_A = mkAMost "runcinate" "runcinately" ;
+lin rundle_N = mkN "rundle" "rundles" ;
+lin rundown_A = mkAMost "rundown" "rundownly" ;
+lin rundown_N = mkN "rundown" "rundowns" ;
+lin rune_N = mkN "rune" "runes" ;
+lin rung_N = mkN "rung" "rungs" ;
+lin runic_A = mkAMost "runic" "runicly" ;
+lin runnel_N = mkN "runnel" "runnels" ;
+lin runner_N = mkN "runner" "runners" ;
+lin runner_up_N = mkN "runner-up" "IRREG" ;
+lin running_N = mkN "running" "runnings" ;
+lin running_board_N = mkN "running-board" "running-boards" ;
+lin runny_A = mkA "runny" "runnier" "runniest" "runnily" ;
+lin runoff_N = mkN "runoff" "runoffs" ;
+lin runproof_A = mkAMost "runproof" "runproofly" ;
+lin runt_N = mkN "runt" "runts" ;
+lin runup_N = mkN "runup" "runups" ;
+lin runway_N = mkN "runway" "runways" ;
+lin rupee_N = mkN "rupee" "rupees" ;
+lin rupestral_A = mkAMost "rupestral" "rupestrally" ;
+lin rupiah_N = mkN "rupiah" "rupiahs" ;
+lin rupture_N = mkN "rupture" "ruptures" ;
+lin rupture_V = mkV "rupture" "ruptured" "ruptured" ;
+lin rupturewort_N = mkN "rupturewort" "ruptureworts" ;
+lin rural_A = mkAMost "rural" "rurally" ;
+lin ruralism_N = mkN "ruralism" "ruralisms" ;
+lin ruralist_N = mkN "ruralist" "ruralists" ;
+lin rurality_N = mkN "rurality" "ruralities" ;
+lin ruritanian_A = mkAMost "ruritanian" "ruritanianly" ;
+lin ruse_N = mkN "ruse" "ruses" ;
+lin rush_N = mkN "rush" "rushes" ;
+lin rush_V = mkV "rush" "rushed" "rushed" ;
+lin rusher_N = mkN "rusher" "rushers" ;
+lin rushlight_N = mkN "rushlight" "rushlights" ;
+lin rushlike_A = mkAMost "rushlike" "rushlikely" ;
+lin rushy_A = mkA "rushy" "rushier" "rushiest" "rushily" ;
+lin rusk_N = mkN "rusk" "rusks" ;
+lin russet_A = mkAMost "russet" "russetly" ;
+lin russet_N = mkN "russet" "russets" ;
+lin rust_A = mkA "rust" "ruster" "rustest" "rustly" ;
+lin rust_N = mkN "rust" "rusts" ;
+lin rust_V = mkV "rust" "rusted" "rusted" ;
+lin rustic_A = mkAMost "rustic" "rusticly" ;
+lin rustic_N = mkN "rustic" "rustics" ;
+lin rusticate_V = mkV "rusticate" "rusticated" "rusticated" ;
+lin rustication_N = mkN "rustication" "rustications" ;
+lin rusticity_N = mkN "rusticity" "rusticities" ;
+lin rustiness_N = mkN "rustiness" "rustinesses" ;
+lin rustle_N = mkN "rustle" "rustles" ;
+lin rustle_V = mkV "rustle" "rustled" "rustled" ;
+lin rustler_N = mkN "rustler" "rustlers" ;
+lin rustless_A = mkAMost "rustless" "rustlessly" ;
+lin rustling_N = mkN "rustling" "rustlings" ;
+lin rustproof_A = mkAMost "rustproof" "rustproofly" ;
+lin rusty_A = mkA "rusty" "rustier" "rustiest" "rustily" ;
+lin rut_N = mkN "rut" "ruts" ;
+lin rut_V = mkV "rut" "rutted" "rutted" ;
+lin rutabaga_N = mkN "rutabaga" "rutabagas" ;
+lin ruthenium_N = mkN "ruthenium" "rutheniums" ;
+lin rutherford_N = mkN "rutherford" "rutherfords" ;
+lin rutherfordium_N = mkN "rutherfordium" "rutherfordiums" ;
+lin ruthless_A = mkAMost "ruthless" "ruthlessly" ;
+lin ruthlessness_N = mkN "ruthlessness" "ruthlessnesses" ;
+lin rutile_N = mkN "rutile" "rutiles" ;
+lin rwandan_A = mkAMost "rwandan" "rwandanly" ;
+lin rwandan_N = mkN "rwandan" "rwandans" ;
+lin rya_N = mkN "rya" "ryas" ;
+lin rydberg_N = mkN "rydberg" "rydbergs" ;
+lin rye_N = mkN "rye" "ryes" ;
+lin rye_bread_N = mkN "rye-bread" "rye-breads" ;
+lin réchauffé_N = mkN "réchauffé" "réchauffés" ;
+lin régime_N = mkN "régime" "régimes" ;
+lin résumé_N = mkN "résumé" "résumés" ;
+lin rôle_N = mkN "rôle" "rôles" ;
+lin röntgen_N = mkN "röntgen" "röntgens" ;
+lin sabahan_A = mkAMost "sabahan" "sabahanly" ;
+lin sabahan_N = mkN "sabahan" "sabahans" ;
+lin sabbat_N = mkN "sabbat" "sabbats" ;
+lin sabbatarian_A = mkAMost "sabbatarian" "sabbatarianly" ;
+lin sabbatarian_N = mkN "sabbatarian" "sabbatarians" ;
+lin sabbath_N = mkN "sabbath" "sabbaths" ;
+lin sabbatia_N = mkN "sabbatia" "sabbatias" ;
+lin sabbatical_A = mkAMost "sabbatical" "sabbatically" ;
+lin sabbatical_N = mkN "sabbatical" "sabbaticals" ;
+lin saber_N = mkN "saber" "sabers" ;
+lin sabicu_N = mkN "sabicu" "sabicus" ;
+lin sabin_N = mkN "sabin" "sabins" ;
+lin sable_A = mkAMost "sable" "sably" ;
+lin sable_N = mkN "sable" "sables" ;
+lin sabot_N = mkN "sabot" "sabots" ;
+lin sabotage_N = mkN "sabotage" "sabotages" ;
+lin sabotage_V = mkV "sabotage" "sabotaged" "sabotaged" ;
+lin saboteur_N = mkN "saboteur" "saboteurs" ;
+lin sabra_N = mkN "sabra" "sabras" ;
+lin sabre_N = mkN "sabre" "sabres" ;
+lin sabre_V = mkV "sabre" "sabred" "sabred" ;
+lin sabre_rattling_N = mkN "sabre-rattling" "sabre-rattlings" ;
+lin sabre_toothed_A = mkAMost "sabre-toothed" "sabre-toothedly" ;
+lin sac_N = mkN "sac" "sacs" ;
+lin saccade_N = mkN "saccade" "saccades" ;
+lin saccadic_A = mkAMost "saccadic" "saccadicly" ;
+lin saccharin_N = mkN "saccharin" "saccharins" ;
+lin saccharine_A = mkAMost "saccharine" "saccharinely" ;
+lin saccharinity_N = mkN "saccharinity" "saccharinities" ;
+lin sacculated_A = mkAMost "sacculated" "sacculatedly" ;
+lin saccule_N = mkN "saccule" "saccules" ;
+lin sacerdotal_A = mkAMost "sacerdotal" "sacerdotally" ;
+lin sacerdotalism_N = mkN "sacerdotalism" "sacerdotalisms" ;
+lin sachem_N = mkN "sachem" "sachems" ;
+lin sachet_N = mkN "sachet" "sachets" ;
+lin sack_N = mkN "sack" "sacks" ;
+lin sack_V = mkV "sack" "sacked" "sacked" ;
+lin sack_race_N = mkN "sack-race" "sack-races" ;
+lin sackbut_N = mkN "sackbut" "sackbuts" ;
+lin sackcloth_N = mkN "sackcloth" "sackcloths" ;
+lin sacking_N = mkN "sacking" "sackings" ;
+lin sacral_A = mkAMost "sacral" "sacrally" ;
+lin sacrament_N = mkN "sacrament" "sacraments" ;
+lin sacramental_A = mkAMost "sacramental" "sacramentally" ;
+lin sacred_A = mkAMost "sacred" "sacredly" ;
+lin sacredness_N = mkN "sacredness" "sacrednesses" ;
+lin sacrifice_N = mkN "sacrifice" "sacrifices" ;
+lin sacrifice_V = mkV "sacrifice" "sacrificed" "sacrificed" ;
+lin sacrificeable_A = mkAMost "sacrificeable" "sacrificeably" ;
+lin sacrificer_N = mkN "sacrificer" "sacrificers" ;
+lin sacrificial_A = mkAMost "sacrificial" "sacrificially" ;
+lin sacrilege_N = mkN "sacrilege" "sacrileges" ;
+lin sacrilegious_A = mkAMost "sacrilegious" "sacrilegiously" ;
+lin sacrilegiousness_N = mkN "sacrilegiousness" "sacrilegiousnesses" ;
+lin sacristan_N = mkN "sacristan" "sacristans" ;
+lin sacristy_N = mkN "sacristy" "sacristies" ;
+lin sacrosanct_A = mkAMost "sacrosanct" "sacrosanctly" ;
+lin sacrum_N = mkN "sacrum" "sacrums" ;
+lin sad_A = mkA "sad" "sadder" "saddest" "sadly" ;
+lin sadden_V = mkV "sadden" "saddened" "saddened" ;
+lin saddle_N = mkN "saddle" "saddles" ;
+lin saddle_V = mkV "saddle" "saddled" "saddled" ;
+lin saddle_sore_A = mkAMost "saddle-sore" "saddle-sorely" ;
+lin saddleback_N = mkN "saddleback" "saddlebacks" ;
+lin saddlebag_N = mkN "saddlebag" "saddlebags" ;
+lin saddlebill_N = mkN "saddlebill" "saddlebills" ;
+lin saddler_N = mkN "saddler" "saddlers" ;
+lin saddlery_N = mkN "saddlery" "saddleries" ;
+lin sadhe_N = mkN "sadhe" "sadhes" ;
+lin sadhu_N = mkN "sadhu" "sadhus" ;
+lin sadism_N = mkN "sadism" "sadisms" ;
+lin sadist_N = mkN "sadist" "sadists" ;
+lin sadistic_A = mkAMost "sadistic" "sadisticly" ;
+lin sadness_N = mkN "sadness" "sadnesses" ;
+lin sado_masochist_N = mkN "sado-masochist" "sado-masochists" ;
+lin sadomasochism_N = mkN "sadomasochism" "sadomasochisms" ;
+lin sadomasochist_N = mkN "sadomasochist" "sadomasochists" ;
+lin sadomasochistic_A = mkAMost "sadomasochistic" "sadomasochisticly" ;
+lin sae_N = mkN "sae" "saes" ;
+lin safari_N = mkN "safari" "safaris" ;
+lin safe_A = mkA "safe" "safer" "safest" "safely" ;
+lin safe_N = mkN "safe" "safes" ;
+lin safe_conduct_N = mkN "safe-conduct" "safe-conducts" ;
+lin safe_deposit_A = mkAMost "safe-deposit" "safe-depositly" ;
+lin safe_deposit_N = mkN "safe-deposit" "safe-deposits" ;
+lin safebreaker_N = mkN "safebreaker" "safebreakers" ;
+lin safecracker_N = mkN "safecracker" "safecrackers" ;
+lin safeguard_N = mkN "safeguard" "safeguards" ;
+lin safeguard_V = mkV "safeguard" "safeguarded" "safeguarded" ;
+lin safehold_N = mkN "safehold" "safeholds" ;
+lin safekeeping_N = mkN "safekeeping" "safekeepings" ;
+lin safeness_N = mkN "safeness" "safenesses" ;
+lin safety_N = mkN "safety" "safeties" ;
+lin safety_belt_N = mkN "safety-belt" "safety-belts" ;
+lin safety_bolt_N = mkN "safety-bolt" "safety-bolts" ;
+lin safety_catch_N = mkN "safety-catch" "safety-catches" ;
+lin safety_curtain_N = mkN "safety-curtain" "safety-curtains" ;
+lin safety_factor_N = mkN "safety-factor" "safety-factors" ;
+lin safety_lamp_N = mkN "safety-lamp" "safety-lamps" ;
+lin safety_lock_N = mkN "safety-lock" "safety-locks" ;
+lin safety_match_N = mkN "safety-match" "safety-matches" ;
+lin safety_pin_N = mkN "safety-pin" "safety-pins" ;
+lin safety_razor_N = mkN "safety-razor" "safety-razors" ;
+lin safety_valve_N = mkN "safety-valve" "safety-valves" ;
+lin safflower_N = mkN "safflower" "safflowers" ;
+lin saffron_N = mkN "saffron" "saffrons" ;
+lin safranine_N = mkN "safranine" "safranines" ;
+lin sag_N = mkN "sag" "sags" ;
+lin sag_V = mkV "sag" "sagged" "sagged" ;
+lin saga_N = mkN "saga" "sagas" ;
+lin sagacious_A = mkAMost "sagacious" "sagaciously" ;
+lin sagacity_N = mkN "sagacity" "sagacities" ;
+lin sage_A = mkAMost "sage" "sagely" ;
+lin sage_N = mkN "sage" "sages" ;
+lin sage_green_A = mkAMost "sage-green" "sage-greenly" ;
+lin sage_green_N = mkN "sage-green" "sage-greens" ;
+lin sagebrush_N = mkN "sagebrush" "sagebrushes" ;
+lin sagitta_N = mkN "sagitta" "sagittas" ;
+lin sagittal_A = mkAMost "sagittal" "sagittally" ;
+lin sagittate_A = mkAMost "sagittate" "sagittately" ;
+lin sago_N = mkN "sago" "sagoes" ;
+lin saguaro_N = mkN "saguaro" "saguaroes" ;
+lin sahib_N = mkN "sahib" "sahibs" ;
+lin saiga_N = mkN "saiga" "saigas" ;
+lin sail_N = mkN "sail" "sails" ;
+lin sail_V = mkV "sail" "sailed" "sailed" ;
+lin sailboat_N = mkN "sailboat" "sailboats" ;
+lin sailcloth_N = mkN "sailcloth" "sailcloths" ;
+lin sailfish_N = mkN "sailfish" "sailfishes" ;
+lin sailing_N = mkN "sailing" "sailings" ;
+lin sailing_boat_N = mkN "sailing-boat" "sailing-boats" ;
+lin sailing_master_N = mkN "sailing-master" "sailing-masters" ;
+lin sailing_ship_N = mkN "sailing-ship" "sailing-ships" ;
+lin sailing_vessel_N = mkN "sailing-vessel" "sailing-vessels" ;
+lin sailmaker_N = mkN "sailmaker" "sailmakers" ;
+lin sailor_N = mkN "sailor" "sailors" ;
+lin sainfoin_N = mkN "sainfoin" "sainfoins" ;
+lin saint's_day_N = mkN "saint's-day" "saint's-days" ;
+lin saint_N = mkN "saint" "saints" ;
+lin sainted_A = mkAMost "sainted" "saintedly" ;
+lin sainthood_N = mkN "sainthood" "sainthoods" ;
+lin saintlike_A = mkAMost "saintlike" "saintlikely" ;
+lin saintliness_N = mkN "saintliness" "saintlinesses" ;
+lin saintly_A = mkA "saintly" "saintlier" "saintliest" "saintlily" ;
+lin sake_N = mkN "sake" "sakes" ;
+lin saki_N = mkN "saki" "sakis" ;
+lin saké_N = mkN "saké" "sakés" ;
+lin sal_volatile_N = mkN "sal volatile" "sal volatiles" ;
+lin salaam_N = mkN "salaam" "salaams" ;
+lin salaam_V = mkV "salaam" "salaamed" "salaamed" ;
+lin salability_N = mkN "salability" "salabilities" ;
+lin salable_A = mkAMost "salable" "salably" ;
+lin salacious_A = mkAMost "salacious" "salaciously" ;
+lin salaciousness_N = mkN "salaciousness" "salaciousnesses" ;
+lin salacity_N = mkN "salacity" "salacities" ;
+lin salad_N = mkN "salad" "salads" ;
+lin salad_dressing_N = mkN "salad-dressing" "salad-dressings" ;
+lin salad_oil_N = mkN "salad-oil" "salad-oils" ;
+lin salai_N = mkN "salai" "salais" ;
+lin salal_N = mkN "salal" "salals" ;
+lin salamander_N = mkN "salamander" "salamanders" ;
+lin salamandriform_A = mkAMost "salamandriform" "salamandriformly" ;
+lin salami_N = mkN "salami" "salamis" ;
+lin salaried_A = mkAMost "salaried" "salariedly" ;
+lin salary_N = mkN "salary" "salaries" ;
+lin salat_N = mkN "salat" "salats" ;
+lin sale_N = mkN "sale" "sales" ;
+lin saleable_A = mkAMost "saleable" "saleably" ;
+lin saleroom_N = mkN "saleroom" "salerooms" ;
+lin salesclerk_N = mkN "salesclerk" "salesclerks" ;
+lin salesgirl_N = mkN "salesgirl" "salesgirls" ;
+lin salesman_N = mkN "salesman" "salesmen" ;
+lin salesmanship_N = mkN "salesmanship" "salesmanships" ;
+lin salesperson_N = mkN "salesperson" "salespersons" ;
+lin saleswoman_N = mkN "saleswoman" "saleswomen" ;
+lin salicylate_N = mkN "salicylate" "salicylates" ;
+lin salience_N = mkN "salience" "saliences" ;
+lin salient_A = mkAMost "salient" "saliently" ;
+lin salient_N = mkN "salient" "salients" ;
+lin saliferous_A = mkAMost "saliferous" "saliferously" ;
+lin saline_A = mkAMost "saline" "salinely" ;
+lin saline_N = mkN "saline" "salines" ;
+lin salinity_N = mkN "salinity" "salinities" ;
+lin salinometer_N = mkN "salinometer" "salinometers" ;
+lin saliva_N = mkN "saliva" "salivas" ;
+lin salivary_A = mkAMost "salivary" "salivarily" ;
+lin salivate_V = mkV "salivate" "salivated" "salivated" ;
+lin salivation_N = mkN "salivation" "salivations" ;
+lin sallet_N = mkN "sallet" "sallets" ;
+lin sallow_A = mkA "sallow" "sallower" "sallowest" "sallowly" ;
+lin sallow_N = mkN "sallow" "sallows" ;
+lin sallow_V = mkV "sallow" "sallowed" "sallowed" ;
+lin sallowness_N = mkN "sallowness" "sallownesses" ;
+lin sally_N = mkN "sally" "sallies" ;
+lin sally_V = mkV "sally" "sallied" "sallied" ;
+lin salmagundi_N = mkN "salmagundi" "salmagundis" ;
+lin salmi_N = mkN "salmi" "salmis" ;
+lin salmon_N = mkN "salmon" "salmon" ;
+lin salmonberry_N = mkN "salmonberry" "salmonberries" ;
+lin salmonella_N = mkN "salmonella" "salmonellas" ;
+lin salmonellosis_N = mkN "salmonellosis" "salmonellosises" ;
+lin salmonid_N = mkN "salmonid" "salmonids" ;
+lin salol_N = mkN "salol" "salols" ;
+lin salon_N = mkN "salon" "salons" ;
+lin saloon_N = mkN "saloon" "saloons" ;
+lin salp_N = mkN "salp" "salps" ;
+lin salpiglossis_N = mkN "salpiglossis" "salpiglossises" ;
+lin salpingectomy_N = mkN "salpingectomy" "salpingectomies" ;
+lin salpingitis_N = mkN "salpingitis" "salpingitises" ;
+lin salpinx_N = mkN "salpinx" "salpinxes" ;
+lin salsa_N = mkN "salsa" "salsas" ;
+lin salsify_N = mkN "salsify" "salsifies" ;
+lin salsilla_N = mkN "salsilla" "salsillas" ;
+lin salt_A = mkAMost "salt" "saltly" ;
+lin salt_N = mkN "salt" "salts" ;
+lin salt_V = mkV "salt" "salted" "salted" ;
+lin salt_cellar_N = mkN "salt-cellar" "salt-cellars" ;
+lin salt_lick_N = mkN "salt-lick" "salt-licks" ;
+lin saltation_N = mkN "saltation" "saltations" ;
+lin saltbox_N = mkN "saltbox" "saltboxes" ;
+lin saltbush_N = mkN "saltbush" "saltbushes" ;
+lin saltcellar_N = mkN "saltcellar" "saltcellars" ;
+lin salter_N = mkN "salter" "salters" ;
+lin saltine_N = mkN "saltine" "saltines" ;
+lin saltiness_N = mkN "saltiness" "saltinesses" ;
+lin salting_N = mkN "salting" "saltings" ;
+lin saltish_A = mkAMost "saltish" "saltishly" ;
+lin saltlike_A = mkAMost "saltlike" "saltlikely" ;
+lin saltpan_N = mkN "saltpan" "saltpans" ;
+lin saltpetre_N = mkN "saltpetre" "saltpetres" ;
+lin saltshaker_N = mkN "saltshaker" "saltshakers" ;
+lin saltwater_N = mkN "saltwater" "saltwaters" ;
+lin saltworks_N = mkN "saltworks" "saltworks" ;
+lin saltwort_N = mkN "saltwort" "saltworts" ;
+lin salty_A = mkA "salty" "saltier" "saltiest" "saltily" ;
+lin salubrious_A = mkAMost "salubrious" "salubriously" ;
+lin salubrity_N = mkN "salubrity" "salubrities" ;
+lin salutary_A = mkAMost "salutary" "salutarily" ;
+lin salutation_N = mkN "salutation" "salutations" ;
+lin salutatorian_N = mkN "salutatorian" "salutatorians" ;
+lin salute_N = mkN "salute" "salutes" ;
+lin salute_V = mkV "salute" "saluted" "saluted" ;
+lin salvadorean_A = mkAMost "salvadorean" "salvadoreanly" ;
+lin salvadorean_N = mkN "salvadorean" "salvadoreans" ;
+lin salvage_N = mkN "salvage" "salvages" ;
+lin salvage_V = mkV "salvage" "salvaged" "salvaged" ;
+lin salvageable_A = mkAMost "salvageable" "salvageably" ;
+lin salvager_N = mkN "salvager" "salvagers" ;
+lin salvation_N = mkN "salvation" "salvations" ;
+lin salve_N = mkN "salve" "salves" ;
+lin salve_V = mkV "salve" "salved" "salved" ;
+lin salver_N = mkN "salver" "salvers" ;
+lin salverform_A = mkAMost "salverform" "salverformly" ;
+lin salvia_N = mkN "salvia" "salvias" ;
+lin salvific_A = mkAMost "salvific" "salvificly" ;
+lin salvinorin_N = mkN "salvinorin" "salvinorins" ;
+lin salvo_N = mkN "salvo" "salvos" ;
+lin salwar_N = mkN "salwar" "salwars" ;
+lin samara_N = mkN "samara" "samaras" ;
+lin samaritan_N = mkN "samaritan" "samaritans" ;
+lin samarium_N = mkN "samarium" "samariums" ;
+lin samarskite_N = mkN "samarskite" "samarskites" ;
+lin samba_N = mkN "samba" "sambas" ;
+lin sambar_N = mkN "sambar" "sambars" ;
+lin sambuca_N = mkN "sambuca" "sambucas" ;
+lin same_A = mkAMost "same" "samely" ;
+lin same_Adv = mkAdv "same" ;
+lin samekh_N = mkN "samekh" "samekhs" ;
+lin sameness_N = mkN "sameness" "samenesses" ;
+lin samisen_N = mkN "samisen" "samisens" ;
+lin samite_N = mkN "samite" "samites" ;
+lin samizdat_N = mkN "samizdat" "samizdats" ;
+lin samoan_A = mkAMost "samoan" "samoanly" ;
+lin samoan_N = mkN "samoan" "samoans" ;
+lin samosa_N = mkN "samosa" "samosas" ;
+lin samovar_N = mkN "samovar" "samovars" ;
+lin sampan_N = mkN "sampan" "sampans" ;
+lin sample_N = mkN "sample" "samples" ;
+lin sample_V = mkV "sample" "sampled" "sampled" ;
+lin sampler_N = mkN "sampler" "samplers" ;
+lin sampling_N = mkN "sampling" "samplings" ;
+lin samsara_N = mkN "samsara" "samsaras" ;
+lin samurai_N = mkN "samurai" "samurai" ;
+lin san_marinese_A = mkAMost "san marinese" "san marinesely" ;
+lin san_marinese_N = mkN "san marinese" "san marinese" ;
+lin sanatorium_N = mkN "sanatorium" "sanatoriums" ;
+lin sanctification_N = mkN "sanctification" "sanctifications" ;
+lin sanctify_V = mkV "sanctify" "sanctified" "sanctified" ;
+lin sanctimonious_A = mkAMost "sanctimonious" "sanctimoniously" ;
+lin sanctimoniousness_N = mkN "sanctimoniousness" "sanctimoniousnesses" ;
+lin sanction_N = mkN "sanction" "sanctions" ;
+lin sanction_V = mkV "sanction" "sanctioned" "sanctioned" ;
+lin sanctionative_A = mkAMost "sanctionative" "sanctionatively" ;
+lin sanctity_N = mkN "sanctity" "sanctities" ;
+lin sanctuary_N = mkN "sanctuary" "sanctuaries" ;
+lin sanctum_N = mkN "sanctum" "sanctums" ;
+lin sand_N = mkN "sand" "sands" ;
+lin sand_V = mkV "sand" "sanded" "sanded" ;
+lin sand_bar_N = mkN "sand-bar" "sand-bars" ;
+lin sandal_N = mkN "sandal" "sandals" ;
+lin sandaled_A = mkAMost "sandaled" "sandaledly" ;
+lin sandalled_A = mkAMost "sandalled" "sandalledly" ;
+lin sandalwood_N = mkN "sandalwood" "sandalwoods" ;
+lin sandarac_N = mkN "sandarac" "sandaracs" ;
+lin sandbag_N = mkN "sandbag" "sandbags" ;
+lin sandbagger_N = mkN "sandbagger" "sandbaggers" ;
+lin sandbank_N = mkN "sandbank" "sandbanks" ;
+lin sandbar_N = mkN "sandbar" "sandbars" ;
+lin sandblast_N = mkN "sandblast" "sandblasts" ;
+lin sandblast_V = mkV "sandblast" "sandblasted" "sandblasted" ;
+lin sandblaster_N = mkN "sandblaster" "sandblasters" ;
+lin sandbox_N = mkN "sandbox" "sandboxes" ;
+lin sandboy_N = mkN "sandboy" "sandboys" ;
+lin sandbur_N = mkN "sandbur" "sandburs" ;
+lin sanderling_N = mkN "sanderling" "sanderlings" ;
+lin sandfish_N = mkN "sandfish" "sandfishes" ;
+lin sandfly_N = mkN "sandfly" "sandflies" ;
+lin sandglass_N = mkN "sandglass" "sandglasses" ;
+lin sandgrouse_N = mkN "sandgrouse" "sandgrouses" ;
+lin sandhi_N = mkN "sandhi" "sandhis" ;
+lin sandiness_N = mkN "sandiness" "sandinesses" ;
+lin sandlot_N = mkN "sandlot" "sandlots" ;
+lin sandman_N = mkN "sandman" "sandmen" ;
+lin sandpaper_N = mkN "sandpaper" "sandpapers" ;
+lin sandpaper_V = mkV "sandpaper" "sandpapered" "sandpapered" ;
+lin sandpapery_A = mkAMost "sandpapery" "sandpaperily" ;
+lin sandpiper_N = mkN "sandpiper" "sandpipers" ;
+lin sandpit_N = mkN "sandpit" "sandpits" ;
+lin sandstone_N = mkN "sandstone" "sandstones" ;
+lin sandstorm_N = mkN "sandstorm" "sandstorms" ;
+lin sandwich_N = mkN "sandwich" "sandwiches" ;
+lin sandwich_V = mkV "sandwich" "sandwiched" "sandwiched" ;
+lin sandwich_board_N = mkN "sandwich-board" "sandwich-boards" ;
+lin sandwichman_N = mkN "sandwichman" "sandwichmen" ;
+lin sandwort_N = mkN "sandwort" "sandworts" ;
+lin sandy_A = mkA "sandy" "sandier" "sandiest" "sandily" ;
+lin sane_A = mkA "sane" "saner" "sanest" "sanely" ;
+lin sang_froid_N = mkN "sang froid" "sang froids" ;
+lin sangapenum_N = mkN "sangapenum" "sangapenums" ;
+lin sangaree_N = mkN "sangaree" "sangarees" ;
+lin sango_N = mkN "sango" "sangoes" ;
+lin sangoma_N = mkN "sangoma" "sangomas" ;
+lin sanguinary_A = mkAMost "sanguinary" "sanguinarily" ;
+lin sanguine_A = mkAMost "sanguine" "sanguinely" ;
+lin sanguine_N = mkN "sanguine" "sanguines" ;
+lin sanguinity_N = mkN "sanguinity" "sanguinities" ;
+lin sanicle_N = mkN "sanicle" "sanicles" ;
+lin sanitariness_N = mkN "sanitariness" "sanitarinesses" ;
+lin sanitary_A = mkAMost "sanitary" "sanitarily" ;
+lin sanitation_N = mkN "sanitation" "sanitations" ;
+lin sanitize_V = mkV "sanitize" "sanitized" "sanitized" ;
+lin sanity_N = mkN "sanity" "sanities" ;
+lin sannup_N = mkN "sannup" "sannups" ;
+lin sannyasi_N = mkN "sannyasi" "sannyasis" ;
+lin sans_Prep = mkPrep "sans" ;
+lin sansevieria_N = mkN "sansevieria" "sansevierias" ;
+lin sanskrit_N = mkN "sanskrit" "sanskrits" ;
+lin santa_claus_N = mkN "santa claus" "santa clauses" ;
+lin santims_N = mkN "santims" "santimses" ;
+lin sap_N = mkN "sap" "saps" ;
+lin sap_V = mkV "sap" "sapped" "sapped" ;
+lin saphead_N = mkN "saphead" "sapheads" ;
+lin sapidity_N = mkN "sapidity" "sapidities" ;
+lin sapience_N = mkN "sapience" "sapiences" ;
+lin sapiens_A = mkAMost "sapiens" "sapiensly" ;
+lin sapient_A = mkAMost "sapient" "sapiently" ;
+lin sapiential_A = mkAMost "sapiential" "sapientially" ;
+lin sapless_A = mkAMost "sapless" "saplessly" ;
+lin sapling_N = mkN "sapling" "saplings" ;
+lin sapodilla_N = mkN "sapodilla" "sapodillas" ;
+lin saponaceous_A = mkAMost "saponaceous" "saponaceously" ;
+lin saponification_N = mkN "saponification" "saponifications" ;
+lin saponified_A = mkAMost "saponified" "saponifiedly" ;
+lin saponin_N = mkN "saponin" "saponins" ;
+lin sapote_N = mkN "sapote" "sapotes" ;
+lin sapper_N = mkN "sapper" "sappers" ;
+lin sapphic_A = mkAMost "sapphic" "sapphicly" ;
+lin sapphire_A = mkAMost "sapphire" "sapphirely" ;
+lin sapphire_N = mkN "sapphire" "sapphires" ;
+lin sapphirine_A = mkAMost "sapphirine" "sapphirinely" ;
+lin sapphirine_N = mkN "sapphirine" "sapphirines" ;
+lin sappy_A = mkA "sappy" "sappier" "sappiest" "sappily" ;
+lin sapremia_N = mkN "sapremia" "sapremias" ;
+lin saprobe_N = mkN "saprobe" "saprobes" ;
+lin saprobic_A = mkAMost "saprobic" "saprobicly" ;
+lin saprolite_N = mkN "saprolite" "saprolites" ;
+lin sapropel_N = mkN "sapropel" "sapropels" ;
+lin saprophagous_A = mkAMost "saprophagous" "saprophagously" ;
+lin saprophyte_N = mkN "saprophyte" "saprophytes" ;
+lin saprophytic_A = mkAMost "saprophytic" "saprophyticly" ;
+lin sapsago_N = mkN "sapsago" "sapsagoes" ;
+lin sapsucker_N = mkN "sapsucker" "sapsuckers" ;
+lin sapwood_N = mkN "sapwood" "sapwoods" ;
+lin saquinavir_N = mkN "saquinavir" "saquinavirs" ;
+lin saraband_N = mkN "saraband" "sarabands" ;
+lin saracen_N = mkN "saracen" "saracens" ;
+lin saran_N = mkN "saran" "sarans" ;
+lin sarawakian_A = mkAMost "sarawakian" "sarawakianly" ;
+lin sarawakian_N = mkN "sarawakian" "sarawakians" ;
+lin sarcasm_N = mkN "sarcasm" "sarcasms" ;
+lin sarcastic_A = mkAMost "sarcastic" "sarcasticly" ;
+lin sarcastically_Adv = mkAdv "sarcastically" ;
+lin sarcenet_N = mkN "sarcenet" "sarcenets" ;
+lin sarcodinian_N = mkN "sarcodinian" "sarcodinians" ;
+lin sarcoidosis_N = mkN "sarcoidosis" "sarcoidosises" ;
+lin sarcolemma_N = mkN "sarcolemma" "sarcolemmas" ;
+lin sarcolemmal_A = mkAMost "sarcolemmal" "sarcolemmally" ;
+lin sarcolemmic_A = mkAMost "sarcolemmic" "sarcolemmicly" ;
+lin sarcoma_N = mkN "sarcoma" "sarcomas" ;
+lin sarcomere_N = mkN "sarcomere" "sarcomeres" ;
+lin sarcophagus_N = mkN "sarcophagus" "sarcophagi" ;
+lin sarcoplasm_N = mkN "sarcoplasm" "sarcoplasms" ;
+lin sarcosine_N = mkN "sarcosine" "sarcosines" ;
+lin sarcosomal_A = mkAMost "sarcosomal" "sarcosomally" ;
+lin sarcosome_N = mkN "sarcosome" "sarcosomes" ;
+lin sarcosporidian_N = mkN "sarcosporidian" "sarcosporidians" ;
+lin sard_N = mkN "sard" "sards" ;
+lin sardine_N = mkN "sardine" "sardines" ;
+lin sardonic_A = mkAMost "sardonic" "sardonicly" ;
+lin sardonically_Adv = mkAdv "sardonically" ;
+lin sardonyx_N = mkN "sardonyx" "sardonyxes" ;
+lin sari_N = mkN "sari" "saris" ;
+lin sarin_N = mkN "sarin" "sarins" ;
+lin sarong_N = mkN "sarong" "sarongs" ;
+lin sarsaparilla_N = mkN "sarsaparilla" "sarsaparillas" ;
+lin sartorial_A = mkAMost "sartorial" "sartorially" ;
+lin sartorius_N = mkN "sartorius" "sartoriuses" ;
+lin sash_N = mkN "sash" "sashes" ;
+lin sash_cord_N = mkN "sash-cord" "sash-cords" ;
+lin sash_line_N = mkN "sash-line" "sash-lines" ;
+lin sashay_N = mkN "sashay" "sashays" ;
+lin sashimi_N = mkN "sashimi" "sashimis" ;
+lin saskatoon_N = mkN "saskatoon" "saskatoons" ;
+lin sass_N = mkN "sass" "sasses" ;
+lin sassaby_N = mkN "sassaby" "sassabies" ;
+lin sassafras_N = mkN "sassafras" "sassafrases" ;
+lin sassenach_N = mkN "sassenach" "sassenachs" ;
+lin sat_V = mkV "sat" "satted" "satted" ;
+lin satan_N = mkN "satan" "satans" ;
+lin satang_N = mkN "satang" "satangs" ;
+lin satanic_A = mkAMost "satanic" "satanicly" ;
+lin satanophobia_N = mkN "satanophobia" "satanophobias" ;
+lin satchel_N = mkN "satchel" "satchels" ;
+lin sate_V = mkV "sate" "sated" "sated" ;
+lin sateen_N = mkN "sateen" "sateens" ;
+lin satellite_A = mkAMost "satellite" "satellitely" ;
+lin satellite_N = mkN "satellite" "satellites" ;
+lin satiable_A = mkAMost "satiable" "satiably" ;
+lin satiate_A = mkAMost "satiate" "satiately" ;
+lin satiate_V = mkV "satiate" "satiated" "satiated" ;
+lin satiation_N = mkN "satiation" "satiations" ;
+lin satiety_N = mkN "satiety" "satieties" ;
+lin satin_A = mkAMost "satin" "satinly" ;
+lin satin_N = mkN "satin" "satins" ;
+lin satinet_N = mkN "satinet" "satinets" ;
+lin satinleaf_N = mkN "satinleaf" "satinleafs" ;
+lin satinwood_N = mkN "satinwood" "satinwoods" ;
+lin satiny_A = mkAMost "satiny" "satinily" ;
+lin satire_N = mkN "satire" "satires" ;
+lin satirical_A = mkAMost "satirical" "satirically" ;
+lin satirist_N = mkN "satirist" "satirists" ;
+lin satirize_V = mkV "satirize" "satirized" "satirized" ;
+lin satisfaction_N = mkN "satisfaction" "satisfactions" ;
+lin satisfactoriness_N = mkN "satisfactoriness" "satisfactorinesses" ;
+lin satisfactory_A = mkAMost "satisfactory" "satisfactorily" ;
+lin satisfied_A = mkAMost "satisfied" "satisfiedly" ;
+lin satisfier_N = mkN "satisfier" "satisfiers" ;
+lin satisfy_V = mkV "satisfy" "satisfied" "satisfied" ;
+lin satori_N = mkN "satori" "satoris" ;
+lin satrap_N = mkN "satrap" "satraps" ;
+lin satsuma_N = mkN "satsuma" "satsumas" ;
+lin saturate_V = mkV "saturate" "saturated" "saturated" ;
+lin saturation_N = mkN "saturation" "saturations" ;
+lin saturnalia_N = mkN "saturnalia" "saturnalias" ;
+lin saturniid_N = mkN "saturniid" "saturniids" ;
+lin saturnine_A = mkAMost "saturnine" "saturninely" ;
+lin satyr_N = mkN "satyr" "satyrs" ;
+lin satyriasis_N = mkN "satyriasis" "satyriasises" ;
+lin satyric_A = mkAMost "satyric" "satyricly" ;
+lin sauce_N = mkN "sauce" "sauces" ;
+lin sauce_V = mkV "sauce" "sauced" "sauced" ;
+lin sauce_boat_N = mkN "sauce-boat" "sauce-boats" ;
+lin saucepan_N = mkN "saucepan" "saucepans" ;
+lin saucepot_N = mkN "saucepot" "saucepots" ;
+lin saucer_N = mkN "saucer" "saucers" ;
+lin saucer_eyed_A = mkAMost "saucer-eyed" "saucer-eyedly" ;
+lin sauciness_N = mkN "sauciness" "saucinesses" ;
+lin saucy_A = mkA "saucy" "saucier" "sauciest" "saucily" ;
+lin saudi_arabian_A = mkAMost "saudi arabian" "saudi arabianly" ;
+lin saudi_arabian_N = mkN "saudi arabian" "saudi arabians" ;
+lin sauerbraten_N = mkN "sauerbraten" "sauerbratens" ;
+lin sauerkraut_N = mkN "sauerkraut" "sauerkrauts" ;
+lin sauna_N = mkN "sauna" "saunas" ;
+lin saunter_N = mkN "saunter" "saunters" ;
+lin saunter_V = mkV "saunter" "sauntered" "sauntered" ;
+lin saunterer_N = mkN "saunterer" "saunterers" ;
+lin saurian_A = mkAMost "saurian" "saurianly" ;
+lin saurian_N = mkN "saurian" "saurians" ;
+lin saurischian_N = mkN "saurischian" "saurischians" ;
+lin sauropod_N = mkN "sauropod" "sauropods" ;
+lin saury_N = mkN "saury" "sauries" ;
+lin sausage_N = mkN "sausage" "sausages" ;
+lin sausage_dog_N = mkN "sausage-dog" "sausage-dogs" ;
+lin sausage_meat_N = mkN "sausage-meat" "sausage-meats" ;
+lin sausage_roll_N = mkN "sausage-roll" "sausage-rolls" ;
+lin saute_N = mkN "saute" "sautes" ;
+lin sauté_A = mkAMost "sauté" "sautély" ;
+lin sauté_V = mkV "sauté" "sautéed" "sautéed" ;
+lin savage_A = mkAMost "savage" "savagely" ;
+lin savage_N = mkN "savage" "savages" ;
+lin savage_V = mkV "savage" "savaged" "savaged" ;
+lin savageness_N = mkN "savageness" "savagenesses" ;
+lin savagery_N = mkN "savagery" "savageries" ;
+lin savanna_N = mkN "savanna" "savannas" ;
+lin savannah_N = mkN "savannah" "savannahs" ;
+lin savant_N = mkN "savant" "savants" ;
+lin savarin_N = mkN "savarin" "savarins" ;
+lin save_N = mkN "save" "saves" ;
+lin save_V = mkV "save" "saved" "saved" ;
+lin saveloy_N = mkN "saveloy" "saveloys" ;
+lin saver_N = mkN "saver" "savers" ;
+lin saving_N = mkN "saving" "savings" ;
+lin savings_N = mkN "savings" "savingses" ;
+lin savings_bank_N = mkN "savings-bank" "savings-banks" ;
+lin savior_N = mkN "savior" "saviors" ;
+lin saviour_N = mkN "saviour" "saviours" ;
+lin savoir_faire_N = mkN "savoir-faire" "savoir-faires" ;
+lin savore_V = mkV "savore" "savored" "savored" ;
+lin savory_A = mkAMost "savory" "savorily" ;
+lin savory_N = mkN "savory" "savories" ;
+lin savour_N = mkN "savour" "savours" ;
+lin savour_V = mkV "savour" "savoured" "savoured" ;
+lin savoury_A = mkAMost "savoury" "savourily" ;
+lin savoury_N = mkN "savoury" "savouries" ;
+lin savoy_N = mkN "savoy" "savoys" ;
+lin savvy_N = mkN "savvy" "savvies" ;
+lin savvy_V = mkV "savvy" "IRREG" "IRREG" ;
+lin saw_N = mkN "saw" "saws" ;
+lin saw_pit_N = mkN "saw-pit" "saw-pits" ;
+lin saw_sawed_V = mkV "saw" "sawed" "sawed" ;
+lin saw_sawn_V = mkV "saw" "sawed" "sawn" ;
+lin sawdust_N = mkN "sawdust" "sawdusts" ;
+lin sawfish_N = mkN "sawfish" "sawfishes" ;
+lin sawfly_N = mkN "sawfly" "sawflies" ;
+lin sawhorse_N = mkN "sawhorse" "sawhorses" ;
+lin sawm_N = mkN "sawm" "sawms" ;
+lin sawmill_N = mkN "sawmill" "sawmills" ;
+lin sawpit_N = mkN "sawpit" "sawpits" ;
+lin sawtooth_N = mkN "sawtooth" "sawtooths" ;
+lin sawwort_N = mkN "sawwort" "sawworts" ;
+lin sawyer_N = mkN "sawyer" "sawyers" ;
+lin sax_N = mkN "sax" "saxes" ;
+lin saxhorn_N = mkN "saxhorn" "saxhorns" ;
+lin saxicolous_A = mkAMost "saxicolous" "saxicolously" ;
+lin saxifrage_N = mkN "saxifrage" "saxifrages" ;
+lin saxitoxin_N = mkN "saxitoxin" "saxitoxins" ;
+lin saxon_A = mkAMost "saxon" "saxonly" ;
+lin saxon_N = mkN "saxon" "saxons" ;
+lin saxophone_N = mkN "saxophone" "saxophones" ;
+lin saxophonist_N = mkN "saxophonist" "saxophonists" ;
+lin say_N = mkN "say" "IRREG" ;
+lin say_V = mkV "say" "said" "said" ;
+lin saying_N = mkN "saying" "sayings" ;
+lin scab_N = mkN "scab" "scabs" ;
+lin scabbard_N = mkN "scabbard" "scabbards" ;
+lin scabby_A = mkA "scabby" "scabbier" "scabbiest" "scabbily" ;
+lin scabicide_N = mkN "scabicide" "scabicides" ;
+lin scabies_N = mkN "scabies" "scabieses" ;
+lin scabious_N = mkN "scabious" "scabiouses" ;
+lin scablands_N = mkN "scablands" "scablandses" ;
+lin scabrous_A = mkAMost "scabrous" "scabrously" ;
+lin scad_N = mkN "scad" "scads" ;
+lin scaffold_N = mkN "scaffold" "scaffolds" ;
+lin scaffolding_N = mkN "scaffolding" "scaffoldings" ;
+lin scalability_N = mkN "scalability" "scalabilities" ;
+lin scalable_A = mkAMost "scalable" "scalably" ;
+lin scalage_N = mkN "scalage" "scalages" ;
+lin scalar_A = mkAMost "scalar" "scalarly" ;
+lin scalar_N = mkN "scalar" "scalars" ;
+lin scalawag_N = mkN "scalawag" "scalawags" ;
+lin scald_N = mkN "scald" "scalds" ;
+lin scald_V = mkV "scald" "scalded" "scalded" ;
+lin scale_N = mkN "scale" "scales" ;
+lin scale_V = mkV "scale" "scaled" "scaled" ;
+lin scaleless_A = mkAMost "scaleless" "scalelessly" ;
+lin scalelike_A = mkAMost "scalelike" "scalelikely" ;
+lin scalene_A = mkAMost "scalene" "scalenely" ;
+lin scalenus_N = mkN "scalenus" "scalenuses" ;
+lin scaler_N = mkN "scaler" "scalers" ;
+lin scalic_A = mkAMost "scalic" "scalicly" ;
+lin scaliness_N = mkN "scaliness" "scalinesses" ;
+lin scaling_N = mkN "scaling" "scalings" ;
+lin scaling_ladder_N = mkN "scaling-ladder" "scaling-ladders" ;
+lin scallop_N = mkN "scallop" "scallops" ;
+lin scallop_V = mkV "scallop" "scalloped" "scalloped" ;
+lin scallop_shell_N = mkN "scallop-shell" "scallop-shells" ;
+lin scallopine_N = mkN "scallopine" "scallopines" ;
+lin scallywag_N = mkN "scallywag" "scallywags" ;
+lin scalp_N = mkN "scalp" "scalps" ;
+lin scalp_V = mkV "scalp" "scalped" "scalped" ;
+lin scalpel_N = mkN "scalpel" "scalpels" ;
+lin scalper_N = mkN "scalper" "scalpers" ;
+lin scaly_A = mkA "scaly" "scalier" "scaliest" "scalily" ;
+lin scam_N = mkN "scam" "scams" ;
+lin scam_V = mkV "scam" "scammed" "scammed" ;
+lin scammony_N = mkN "scammony" "scammonies" ;
+lin scamp_N = mkN "scamp" "scamps" ;
+lin scamp_V = mkV "scamp" "scamped" "scamped" ;
+lin scamper_N = mkN "scamper" "scampers" ;
+lin scamper_V = mkV "scamper" "scampered" "scampered" ;
+lin scampi_N = mkN "scampi" "scampis" ;
+lin scan_N = mkN "scan" "scans" ;
+lin scan_V = mkV "scan" "scanned" "scanned" ;
+lin scandal_N = mkN "scandal" "scandals" ;
+lin scandalization_N = mkN "scandalization" "scandalizations" ;
+lin scandalize_V = mkV "scandalize" "scandalized" "scandalized" ;
+lin scandalmonger_N = mkN "scandalmonger" "scandalmongers" ;
+lin scandalmongering_A = mkAMost "scandalmongering" "scandalmongeringly" ;
+lin scandalmongering_N = mkN "scandalmongering" "scandalmongerings" ;
+lin scandalous_A = mkAMost "scandalous" "scandalously" ;
+lin scandalousness_N = mkN "scandalousness" "scandalousnesses" ;
+lin scandent_A = mkAMost "scandent" "scandently" ;
+lin scandium_N = mkN "scandium" "scandiums" ;
+lin scanner_N = mkN "scanner" "scanners" ;
+lin scanning_N = mkN "scanning" "scannings" ;
+lin scansion_N = mkN "scansion" "scansions" ;
+lin scant_A = mkAMost "scant" "scantly" ;
+lin scant_V = mkV "scant" "scanted" "scanted" ;
+lin scantiness_N = mkN "scantiness" "scantinesses" ;
+lin scantling_N = mkN "scantling" "scantlings" ;
+lin scanty_A = mkA "scanty" "scantier" "scantiest" "scantily" ;
+lin scape_N = mkN "scape" "scapes" ;
+lin scapegoat_N = mkN "scapegoat" "scapegoats" ;
+lin scapegrace_N = mkN "scapegrace" "scapegraces" ;
+lin scaphocephaly_N = mkN "scaphocephaly" "scaphocephalies" ;
+lin scaphopod_N = mkN "scaphopod" "scaphopods" ;
+lin scapose_A = mkAMost "scapose" "scaposely" ;
+lin scapula_N = mkN "scapula" "scapulas" ;
+lin scapular_A = mkAMost "scapular" "scapularly" ;
+lin scapular_N = mkN "scapular" "scapulars" ;
+lin scapulohumeral_A = mkAMost "scapulohumeral" "scapulohumerally" ;
+lin scar_N = mkN "scar" "scars" ;
+lin scar_V = mkV "scar" "scarred" "scarred" ;
+lin scarab_N = mkN "scarab" "scarabs" ;
+lin scarce_A = mkA "scarce" "scarcer" "scarcest" "scarcely" ;
+lin scarcity_N = mkN "scarcity" "scarcities" ;
+lin scare_N = mkN "scare" "scares" ;
+lin scare_V = mkV "scare" "scared" "scared" ;
+lin scarecrow_N = mkN "scarecrow" "scarecrows" ;
+lin scarecrowish_A = mkAMost "scarecrowish" "scarecrowishly" ;
+lin scaremonger_N = mkN "scaremonger" "scaremongers" ;
+lin scarf_N = mkN "scarf" "scarfs" ;
+lin scarf_V = mkV "scarf" "scarfed" "scarfed" ;
+lin scarf_pin_N = mkN "scarf-pin" "scarf-pins" ;
+lin scarify_V = mkV "scarify" "scarified" "scarified" ;
+lin scarlet_A = mkAMost "scarlet" "scarletly" ;
+lin scarlet_N = mkN "scarlet" "scarlets" ;
+lin scarp_N = mkN "scarp" "scarps" ;
+lin scarper_V = mkV "scarper" "scarpered" "scarpered" ;
+lin scary_A = mkA "scary" "scarier" "scariest" "scarily" ;
+lin scat_N = mkN "scat" "scats" ;
+lin scathing_A = mkAMost "scathing" "scathingly" ;
+lin scatological_A = mkAMost "scatological" "scatologically" ;
+lin scatology_N = mkN "scatology" "scatologies" ;
+lin scatophagy_N = mkN "scatophagy" "scatophagies" ;
+lin scatter_N = mkN "scatter" "scatters" ;
+lin scatter_V = mkV "scatter" "scattered" "scattered" ;
+lin scatterbrain_N = mkN "scatterbrain" "scatterbrains" ;
+lin scatterbrained_A = mkAMost "scatterbrained" "scatterbrainedly" ;
+lin scattering_N = mkN "scattering" "scatterings" ;
+lin scattershot_A = mkAMost "scattershot" "scattershotly" ;
+lin scatty_A = mkA "scatty" "scattier" "scattiest" "scattily" ;
+lin scaup_N = mkN "scaup" "scaups" ;
+lin scauper_N = mkN "scauper" "scaupers" ;
+lin scavenge_V = mkV "scavenge" "scavenged" "scavenged" ;
+lin scavenger_N = mkN "scavenger" "scavengers" ;
+lin scenario_N = mkN "scenario" "scenarios" ;
+lin scenarist_N = mkN "scenarist" "scenarists" ;
+lin scene_N = mkN "scene" "scenes" ;
+lin scene_painter_N = mkN "scene-painter" "scene-painters" ;
+lin scene_shifter_N = mkN "scene-shifter" "scene-shifters" ;
+lin scenery_N = mkN "scenery" "sceneries" ;
+lin sceneshifter_N = mkN "sceneshifter" "sceneshifters" ;
+lin scenic_A = mkAMost "scenic" "scenicly" ;
+lin scenically_Adv = mkAdv "scenically" ;
+lin scent_N = mkN "scent" "scents" ;
+lin scent_V = mkV "scent" "scented" "scented" ;
+lin scentless_A = mkAMost "scentless" "scentlessly" ;
+lin scepter_N = mkN "scepter" "scepters" ;
+lin sceptered_A = mkAMost "sceptered" "scepteredly" ;
+lin sceptic_N = mkN "sceptic" "sceptics" ;
+lin sceptical_A = mkAMost "sceptical" "sceptically" ;
+lin scepticism_N = mkN "scepticism" "scepticisms" ;
+lin sceptre_N = mkN "sceptre" "sceptres" ;
+lin sceptred_A = mkAMost "sceptred" "sceptredly" ;
+lin schedule_N = mkN "schedule" "schedules" ;
+lin schedule_V = mkV "schedule" "scheduled" "scheduled" ;
+lin scheduler_N = mkN "scheduler" "schedulers" ;
+lin scheduling_N = mkN "scheduling" "schedulings" ;
+lin scheelite_N = mkN "scheelite" "scheelites" ;
+lin schema_N = mkN "schema" "schemas" ;
+lin schematic_A = mkAMost "schematic" "schematicly" ;
+lin schematic_N = mkN "schematic" "schematics" ;
+lin schematically_Adv = mkAdv "schematically" ;
+lin schematization_N = mkN "schematization" "schematizations" ;
+lin scheme_N = mkN "scheme" "schemes" ;
+lin scheme_V = mkV "scheme" "schemed" "schemed" ;
+lin schemer_N = mkN "schemer" "schemers" ;
+lin schemozzle_N = mkN "schemozzle" "schemozzles" ;
+lin scherzo_N = mkN "scherzo" "scherzos" ;
+lin schilling_N = mkN "schilling" "schillings" ;
+lin schipperke_N = mkN "schipperke" "schipperkes" ;
+lin schism_N = mkN "schism" "schisms" ;
+lin schismatic_A = mkAMost "schismatic" "schismaticly" ;
+lin schismatically_Adv = mkAdv "schismatically" ;
+lin schist_N = mkN "schist" "schists" ;
+lin schistosome_N = mkN "schistosome" "schistosomes" ;
+lin schistosomiasis_N = mkN "schistosomiasis" "schistosomiasises" ;
+lin schizocarp_N = mkN "schizocarp" "schizocarps" ;
+lin schizogony_N = mkN "schizogony" "schizogonies" ;
+lin schizoid_A = mkAMost "schizoid" "schizoidly" ;
+lin schizopetalon_N = mkN "schizopetalon" "schizopetalons" ;
+lin schizophrenia_N = mkN "schizophrenia" "schizophrenias" ;
+lin schizophrenic_A = mkAMost "schizophrenic" "schizophrenicly" ;
+lin schizophrenic_N = mkN "schizophrenic" "schizophrenics" ;
+lin schizothymia_N = mkN "schizothymia" "schizothymias" ;
+lin schlemiel_N = mkN "schlemiel" "schlemiels" ;
+lin schlep_N = mkN "schlep" "schleps" ;
+lin schlepper_N = mkN "schlepper" "schleppers" ;
+lin schlimazel_N = mkN "schlimazel" "schlimazels" ;
+lin schlock_N = mkN "schlock" "schlocks" ;
+lin schlockmeister_N = mkN "schlockmeister" "schlockmeisters" ;
+lin schmaltz_N = mkN "schmaltz" "schmaltzes" ;
+lin schmaltzy_A = mkA "schmaltzy" "schmaltzier" "schmaltziest" "schmaltzily" ;
+lin schmalz_N = mkN "schmalz" "schmalzes" ;
+lin schmalzy_A = mkA "schmalzy" "schmalzier" "schmalziest" "schmalzily" ;
+lin schmeer_N = mkN "schmeer" "schmeers" ;
+lin schmuck_N = mkN "schmuck" "schmucks" ;
+lin schnapps_N = mkN "schnapps" "schnappses" ;
+lin schnauzer_N = mkN "schnauzer" "schnauzers" ;
+lin schnitzel_N = mkN "schnitzel" "schnitzels" ;
+lin schnook_N = mkN "schnook" "schnooks" ;
+lin schnorkel_N = mkN "schnorkel" "schnorkels" ;
+lin schnorrer_N = mkN "schnorrer" "schnorrers" ;
+lin scholar_N = mkN "scholar" "scholars" ;
+lin scholarly_A = mkAMost "scholarly" "scholarlily" ;
+lin scholarship_N = mkN "scholarship" "scholarships" ;
+lin scholastic_A = mkAMost "scholastic" "scholasticly" ;
+lin scholastically_Adv = mkAdv "scholastically" ;
+lin scholasticism_N = mkN "scholasticism" "scholasticisms" ;
+lin scholiast_N = mkN "scholiast" "scholiasts" ;
+lin scholium_N = mkN "scholium" "scholiums" ;
+lin school_N = mkN "school" "schools" ;
+lin school_V = mkV "school" "schooled" "schooled" ;
+lin school_board_N = mkN "school-board" "school-boards" ;
+lin schoolbag_N = mkN "schoolbag" "schoolbags" ;
+lin schoolbook_N = mkN "schoolbook" "schoolbooks" ;
+lin schoolboy_N = mkN "schoolboy" "schoolboys" ;
+lin schoolchild_N = mkN "schoolchild" "schoolchildren" ;
+lin schooldays_N = mkN "schooldays" "schooldayses" ;
+lin schoolfellow_N = mkN "schoolfellow" "schoolfellows" ;
+lin schoolfriend_N = mkN "schoolfriend" "schoolfriends" ;
+lin schoolgirl_N = mkN "schoolgirl" "schoolgirls" ;
+lin schoolhouse_N = mkN "schoolhouse" "schoolhouses" ;
+lin schooling_N = mkN "schooling" "schoolings" ;
+lin schoolman_N = mkN "schoolman" "schoolmen" ;
+lin schoolmarm_N = mkN "schoolmarm" "schoolmarms" ;
+lin schoolmaster_N = mkN "schoolmaster" "schoolmasters" ;
+lin schoolmate_N = mkN "schoolmate" "schoolmates" ;
+lin schoolmistress_N = mkN "schoolmistress" "schoolmistresses" ;
+lin schoolroom_N = mkN "schoolroom" "schoolrooms" ;
+lin schoolteacher_N = mkN "schoolteacher" "schoolteachers" ;
+lin schooltime_N = mkN "schooltime" "schooltimes" ;
+lin schoolwide_A = mkAMost "schoolwide" "schoolwidely" ;
+lin schoolyard_N = mkN "schoolyard" "schoolyards" ;
+lin schooner_N = mkN "schooner" "schooners" ;
+lin schorl_N = mkN "schorl" "schorls" ;
+lin schottische_N = mkN "schottische" "schottisches" ;
+lin schrod_N = mkN "schrod" "schrods" ;
+lin schwa_N = mkN "schwa" "schwas" ;
+lin sci_fi_N = mkN "sci fi" "sci fis" ;
+lin sciatic_A = mkAMost "sciatic" "sciaticly" ;
+lin sciatica_N = mkN "sciatica" "sciaticas" ;
+lin science_N = mkN "science" "sciences" ;
+lin scienter_Adv = mkAdv "scienter" ;
+lin scientific_A = mkAMost "scientific" "scientificly" ;
+lin scientifically_Adv = mkAdv "scientifically" ;
+lin scientist_N = mkN "scientist" "scientists" ;
+lin scilla_N = mkN "scilla" "scillas" ;
+lin scimitar_N = mkN "scimitar" "scimitars" ;
+lin scintilla_N = mkN "scintilla" "scintillas" ;
+lin scintillate_V = mkV "scintillate" "scintillated" "scintillated" ;
+lin scintillation_N = mkN "scintillation" "scintillations" ;
+lin sciolism_N = mkN "sciolism" "sciolisms" ;
+lin scion_N = mkN "scion" "scions" ;
+lin scission_N = mkN "scission" "scissions" ;
+lin scissors_N = mkN "scissors" "scissorses" ;
+lin scissortail_N = mkN "scissortail" "scissortails" ;
+lin sclaff_N = mkN "sclaff" "sclaffs" ;
+lin sclera_N = mkN "sclera" "scleras" ;
+lin scleredema_N = mkN "scleredema" "scleredemas" ;
+lin sclerite_N = mkN "sclerite" "sclerites" ;
+lin scleritis_N = mkN "scleritis" "scleritises" ;
+lin scleroderma_N = mkN "scleroderma" "sclerodermas" ;
+lin sclerometer_N = mkN "sclerometer" "sclerometers" ;
+lin scleroprotein_N = mkN "scleroprotein" "scleroproteins" ;
+lin sclerosis_N = mkN "sclerosis" "sclerosises" ;
+lin sclerotic_A = mkAMost "sclerotic" "scleroticly" ;
+lin sclerotinia_N = mkN "sclerotinia" "sclerotinias" ;
+lin sclerotium_N = mkN "sclerotium" "sclerotiums" ;
+lin sclerotomy_N = mkN "sclerotomy" "sclerotomies" ;
+lin scoff_N = mkN "scoff" "scoffs" ;
+lin scoff_V = mkV "scoff" "scoffed" "scoffed" ;
+lin scoffer_N = mkN "scoffer" "scoffers" ;
+lin scoffingly_Adv = mkAdv "scoffingly" ;
+lin scofflaw_N = mkN "scofflaw" "scofflaws" ;
+lin scold_N = mkN "scold" "scolds" ;
+lin scold_V = mkV "scold" "scolded" "scolded" ;
+lin scolding_N = mkN "scolding" "scoldings" ;
+lin scolion_N = mkN "scolion" "scolions" ;
+lin scoliosis_N = mkN "scoliosis" "scoliosises" ;
+lin scollop_N = mkN "scollop" "scollops" ;
+lin scollop_V = mkV "scollop" "scolloped" "scolloped" ;
+lin scolopendrium_N = mkN "scolopendrium" "scolopendriums" ;
+lin scombroid_N = mkN "scombroid" "scombroids" ;
+lin sconce_N = mkN "sconce" "sconces" ;
+lin scone_N = mkN "scone" "scones" ;
+lin scoop_N = mkN "scoop" "scoops" ;
+lin scoop_V = mkV "scoop" "scooped" "scooped" ;
+lin scoopful_N = mkN "scoopful" "scoopfuls" ;
+lin scoot_V = mkV "scoot" "scooted" "scooted" ;
+lin scooter_N = mkN "scooter" "scooters" ;
+lin scopal_A = mkAMost "scopal" "scopally" ;
+lin scope_N = mkN "scope" "scopes" ;
+lin scopolamine_N = mkN "scopolamine" "scopolamines" ;
+lin scorbutic_A = mkAMost "scorbutic" "scorbuticly" ;
+lin scorch_N = mkN "scorch" "scorches" ;
+lin scorch_V = mkV "scorch" "scorched" "scorched" ;
+lin scorcher_N = mkN "scorcher" "scorchers" ;
+lin scorching_Adv = mkAdv "scorching" ;
+lin score_N = mkN "score" "scores" ;
+lin score_V = mkV "score" "scored" "scored" ;
+lin scoreboard_N = mkN "scoreboard" "scoreboards" ;
+lin scorebook_N = mkN "scorebook" "scorebooks" ;
+lin scorecard_N = mkN "scorecard" "scorecards" ;
+lin scorekeeper_N = mkN "scorekeeper" "scorekeepers" ;
+lin scoreless_A = mkAMost "scoreless" "scorelessly" ;
+lin scorer_N = mkN "scorer" "scorers" ;
+lin scorn_N = mkN "scorn" "scorns" ;
+lin scorn_V = mkV "scorn" "scorned" "scorned" ;
+lin scornful_A = mkAMost "scornful" "scornfully" ;
+lin scorpaenid_N = mkN "scorpaenid" "scorpaenids" ;
+lin scorpaenoid_N = mkN "scorpaenoid" "scorpaenoids" ;
+lin scorpion_N = mkN "scorpion" "scorpions" ;
+lin scorpionfish_N = mkN "scorpionfish" "scorpionfishes" ;
+lin scorpionweed_N = mkN "scorpionweed" "scorpionweeds" ;
+lin scorzonera_N = mkN "scorzonera" "scorzoneras" ;
+lin scot_N = mkN "scot" "scots" ;
+lin scot_free_Adv = mkAdv "scot-free" ;
+lin scotch_A = mkAMost "scotch" "scotchly" ;
+lin scotch_N = mkN "scotch" "scotches" ;
+lin scotch_V = mkV "scotch" "scotched" "scotched" ;
+lin scotchman_N = mkN "scotchman" "scotchmen" ;
+lin scotchwoman_N = mkN "scotchwoman" "scotchwomen" ;
+lin scoter_N = mkN "scoter" "scoters" ;
+lin scotoma_N = mkN "scotoma" "scotomas" ;
+lin scotomatous_A = mkAMost "scotomatous" "scotomatously" ;
+lin scots_A = mkAMost "scots" "scotsly" ;
+lin scotsman_N = mkN "scotsman" "scotsmen" ;
+lin scotswoman_N = mkN "scotswoman" "scotswomen" ;
+lin scottish_A = mkAMost "scottish" "scottishly" ;
+lin scoundrel_N = mkN "scoundrel" "scoundrels" ;
+lin scoundrelly_A = mkAMost "scoundrelly" "scoundrellily" ;
+lin scour_N = mkN "scour" "scours" ;
+lin scour_V = mkV "scour" "scoured" "scoured" ;
+lin scourer_N = mkN "scourer" "scourers" ;
+lin scourge_N = mkN "scourge" "scourges" ;
+lin scourge_V = mkV "scourge" "scourged" "scourged" ;
+lin scouring_N = mkN "scouring" "scourings" ;
+lin scours_N = mkN "scours" "scourses" ;
+lin scout_N = mkN "scout" "scouts" ;
+lin scout_V = mkV "scout" "scouted" "scouted" ;
+lin scouting_N = mkN "scouting" "scoutings" ;
+lin scoutmaster_N = mkN "scoutmaster" "scoutmasters" ;
+lin scow_N = mkN "scow" "scows" ;
+lin scowl_N = mkN "scowl" "scowls" ;
+lin scowl_V = mkV "scowl" "scowled" "scowled" ;
+lin scrabble_N = mkN "scrabble" "scrabbles" ;
+lin scrabble_V = mkV "scrabble" "scrabbled" "scrabbled" ;
+lin scrabbly_A = mkA "scrabbly" "scrabblier" "scrabbliest" "scrabblily" ;
+lin scrag_N = mkN "scrag" "scrags" ;
+lin scrag_V = mkV "scrag" "scragged" "scragged" ;
+lin scrag_end_N = mkN "scrag-end" "scrag-ends" ;
+lin scraggly_A = mkA "scraggly" "scragglier" "scraggliest" "scragglily" ;
+lin scraggy_A = mkA "scraggy" "scraggier" "scraggiest" "scraggily" ;
+lin scram_V = mkV "scram" "scrammed" "scrammed" ;
+lin scramble_N = mkN "scramble" "scrambles" ;
+lin scramble_V = mkV "scramble" "scrambled" "scrambled" ;
+lin scrambler_N = mkN "scrambler" "scramblers" ;
+lin scrap_N = mkN "scrap" "scraps" ;
+lin scrap_V = mkV "scrap" "scrapped" "scrapped" ;
+lin scrap_iron_N = mkN "scrap-iron" "scrap-irons" ;
+lin scrapbook_N = mkN "scrapbook" "scrapbooks" ;
+lin scrape_N = mkN "scrape" "scrapes" ;
+lin scrape_V = mkV "scrape" "scraped" "scraped" ;
+lin scraper_N = mkN "scraper" "scrapers" ;
+lin scrapheap_N = mkN "scrapheap" "scrapheaps" ;
+lin scrapie_N = mkN "scrapie" "scrapies" ;
+lin scraping_N = mkN "scraping" "scrapings" ;
+lin scrappiness_N = mkN "scrappiness" "scrappinesses" ;
+lin scrapple_N = mkN "scrapple" "scrapples" ;
+lin scrappy_A = mkA "scrappy" "scrappier" "scrappiest" "scrappily" ;
+lin scratch_N = mkN "scratch" "scratches" ;
+lin scratch_V = mkV "scratch" "scratched" "scratched" ;
+lin scratch_pad_N = mkN "scratch-pad" "scratch-pads" ;
+lin scratch_race_N = mkN "scratch-race" "scratch-races" ;
+lin scratcher_N = mkN "scratcher" "scratchers" ;
+lin scratchpad_N = mkN "scratchpad" "scratchpads" ;
+lin scratchy_A = mkA "scratchy" "scratchier" "scratchiest" "scratchily" ;
+lin scrawl_N = mkN "scrawl" "scrawls" ;
+lin scrawl_V = mkV "scrawl" "scrawled" "scrawled" ;
+lin scrawler_N = mkN "scrawler" "scrawlers" ;
+lin scrawniness_N = mkN "scrawniness" "scrawninesses" ;
+lin scrawny_A = mkA "scrawny" "scrawnier" "scrawniest" "scrawnily" ;
+lin screaky_A = mkA "screaky" "screakier" "screakiest" "screakily" ;
+lin scream_N = mkN "scream" "screams" ;
+lin scream_V = mkV "scream" "screamed" "screamed" ;
+lin screamer_N = mkN "screamer" "screamers" ;
+lin screamingly_Adv = mkAdv "screamingly" ;
+lin scree_N = mkN "scree" "screes" ;
+lin screech_N = mkN "screech" "screeches" ;
+lin screech_V = mkV "screech" "screeched" "screeched" ;
+lin screech_owl_N = mkN "screech-owl" "screech-owls" ;
+lin screed_N = mkN "screed" "screeds" ;
+lin screen_N = mkN "screen" "screens" ;
+lin screen_V = mkV "screen" "screened" "screened" ;
+lin screener_N = mkN "screener" "screeners" ;
+lin screening_N = mkN "screening" "screenings" ;
+lin screenplay_N = mkN "screenplay" "screenplays" ;
+lin screenwriter_N = mkN "screenwriter" "screenwriters" ;
+lin screw_N = mkN "screw" "screws" ;
+lin screw_V = mkV "screw" "screwed" "screwed" ;
+lin screw_topped_A = mkAMost "screw-topped" "screw-toppedly" ;
+lin screwball_A = mkAMost "screwball" "screwbally" ;
+lin screwball_N = mkN "screwball" "screwballs" ;
+lin screwballer_N = mkN "screwballer" "screwballers" ;
+lin screwdriver_N = mkN "screwdriver" "screwdrivers" ;
+lin screwtop_N = mkN "screwtop" "screwtops" ;
+lin screwup_N = mkN "screwup" "screwups" ;
+lin screwy_A = mkA "screwy" "screwier" "screwiest" "screwily" ;
+lin scribble_N = mkN "scribble" "scribbles" ;
+lin scribble_V = mkV "scribble" "scribbled" "scribbled" ;
+lin scribbler_N = mkN "scribbler" "scribblers" ;
+lin scribbling_block_N = mkN "scribbling-block" "scribbling-blocks" ;
+lin scribe_N = mkN "scribe" "scribes" ;
+lin scriber_N = mkN "scriber" "scribers" ;
+lin scrim_N = mkN "scrim" "scrims" ;
+lin scrimmage_N = mkN "scrimmage" "scrimmages" ;
+lin scrimmage_V = mkV "scrimmage" "scrimmaged" "scrimmaged" ;
+lin scrimp_V = mkV "scrimp" "scrimped" "scrimped" ;
+lin scrimshank_V = mkV "scrimshank" "scrimshanked" "scrimshanked" ;
+lin scrimshanker_N = mkN "scrimshanker" "scrimshankers" ;
+lin scrimshaw_N = mkN "scrimshaw" "scrimshaws" ;
+lin scrimy_A = mkA "scrimy" "scrimier" "scrimiest" "scrimily" ;
+lin scrip_N = mkN "scrip" "scrips" ;
+lin script_N = mkN "script" "scripts" ;
+lin scripted_A = mkAMost "scripted" "scriptedly" ;
+lin scriptorium_N = mkN "scriptorium" "scriptoriums" ;
+lin scriptural_A = mkAMost "scriptural" "scripturally" ;
+lin scripture_N = mkN "scripture" "scriptures" ;
+lin scriptwriter_N = mkN "scriptwriter" "scriptwriters" ;
+lin scrivened_A = mkAMost "scrivened" "scrivenedly" ;
+lin scrivener_N = mkN "scrivener" "scriveners" ;
+lin scrod_N = mkN "scrod" "scrods" ;
+lin scrofula_N = mkN "scrofula" "scrofulas" ;
+lin scrofulous_A = mkAMost "scrofulous" "scrofulously" ;
+lin scroll_N = mkN "scroll" "scrolls" ;
+lin scrooge_N = mkN "scrooge" "scrooges" ;
+lin scrotal_A = mkAMost "scrotal" "scrotally" ;
+lin scrotum_N = mkN "scrotum" "scrotums" ;
+lin scrounge_V = mkV "scrounge" "scrounged" "scrounged" ;
+lin scrounger_N = mkN "scrounger" "scroungers" ;
+lin scrub_A = mkA "scrub" "scrubber" "scrubbest" "scrubly" ;
+lin scrub_N = mkN "scrub" "scrubs" ;
+lin scrub_V = mkV "scrub" "scrubbed" "scrubbed" ;
+lin scrubber_N = mkN "scrubber" "scrubbers" ;
+lin scrubbing_brush_N = mkN "scrubbing-brush" "scrubbing-brushes" ;
+lin scrubbird_N = mkN "scrubbird" "scrubbirds" ;
+lin scrubby_A = mkA "scrubby" "scrubbier" "scrubbiest" "scrubbily" ;
+lin scrubland_N = mkN "scrubland" "scrublands" ;
+lin scruff_N = mkN "scruff" "scruffs" ;
+lin scruffy_A = mkA "scruffy" "scruffier" "scruffiest" "scruffily" ;
+lin scrum_N = mkN "scrum" "scrums" ;
+lin scrummage_N = mkN "scrummage" "scrummages" ;
+lin scrumptious_A = mkAMost "scrumptious" "scrumptiously" ;
+lin scrumpy_N = mkN "scrumpy" "scrumpies" ;
+lin scrunch_N = mkN "scrunch" "scrunches" ;
+lin scrunch_V = mkV "scrunch" "scrunched" "scrunched" ;
+lin scruple_N = mkN "scruple" "scruples" ;
+lin scruple_V = mkV "scruple" "scrupled" "scrupled" ;
+lin scrupulous_A = mkAMost "scrupulous" "scrupulously" ;
+lin scrupulousness_N = mkN "scrupulousness" "scrupulousnesses" ;
+lin scrutineer_N = mkN "scrutineer" "scrutineers" ;
+lin scrutinize_V = mkV "scrutinize" "scrutinized" "scrutinized" ;
+lin scrutinizer_N = mkN "scrutinizer" "scrutinizers" ;
+lin scrutiny_N = mkN "scrutiny" "scrutinies" ;
+lin scud_N = mkN "scud" "scuds" ;
+lin scud_V = mkV "scud" "scudded" "scudded" ;
+lin scuff_N = mkN "scuff" "scuffs" ;
+lin scuff_V = mkV "scuff" "scuffed" "scuffed" ;
+lin scuffer_N = mkN "scuffer" "scuffers" ;
+lin scuffle_N = mkN "scuffle" "scuffles" ;
+lin scuffle_V = mkV "scuffle" "scuffled" "scuffled" ;
+lin scull_N = mkN "scull" "sculls" ;
+lin scull_V = mkV "scull" "sculled" "sculled" ;
+lin sculler_N = mkN "sculler" "scullers" ;
+lin scullery_N = mkN "scullery" "sculleries" ;
+lin sculling_N = mkN "sculling" "scullings" ;
+lin scullion_N = mkN "scullion" "scullions" ;
+lin sculpin_N = mkN "sculpin" "sculpins" ;
+lin sculpt_V = mkV "sculpt" "sculpted" "sculpted" ;
+lin sculptor_N = mkN "sculptor" "sculptors" ;
+lin sculptress_N = mkN "sculptress" "sculptresses" ;
+lin sculptural_A = mkAMost "sculptural" "sculpturally" ;
+lin sculpture_N = mkN "sculpture" "sculptures" ;
+lin sculpture_V = mkV "sculpture" "sculptured" "sculptured" ;
+lin scum_N = mkN "scum" "scums" ;
+lin scumble_N = mkN "scumble" "scumbles" ;
+lin scummy_A = mkA "scummy" "scummier" "scummiest" "scummily" ;
+lin scunner_N = mkN "scunner" "scunners" ;
+lin scup_N = mkN "scup" "scups" ;
+lin scupper_N = mkN "scupper" "scuppers" ;
+lin scupper_V = mkV "scupper" "scuppered" "scuppered" ;
+lin scuppernong_N = mkN "scuppernong" "scuppernongs" ;
+lin scurf_N = mkN "scurf" "scurfs" ;
+lin scurfy_A = mkA "scurfy" "scurfier" "scurfiest" "scurfily" ;
+lin scurrility_N = mkN "scurrility" "scurrilities" ;
+lin scurrilous_A = mkAMost "scurrilous" "scurrilously" ;
+lin scurry_N = mkN "scurry" "scurries" ;
+lin scurry_V = mkV "scurry" "scurried" "scurried" ;
+lin scurvy_A = mkAMost "scurvy" "scurvily" ;
+lin scurvy_N = mkN "scurvy" "scurvies" ;
+lin scut_N = mkN "scut" "scuts" ;
+lin scutcheon_N = mkN "scutcheon" "scutcheons" ;
+lin scute_N = mkN "scute" "scutes" ;
+lin scuttle_N = mkN "scuttle" "scuttles" ;
+lin scuttle_V = mkV "scuttle" "scuttled" "scuttled" ;
+lin scylla_N = mkN "scylla" "scyllas" ;
+lin scyphozoan_N = mkN "scyphozoan" "scyphozoans" ;
+lin scyphus_N = mkN "scyphus" "scyphuses" ;
+lin scythe_N = mkN "scythe" "scythes" ;
+lin scythe_V = mkV "scythe" "scythed" "scythed" ;
+lin sea_N = mkN "sea" "seas" ;
+lin sea_anemone_N = mkN "sea-anemone" "sea-anemones" ;
+lin sea_animal_N = mkN "sea-animal" "sea-animals" ;
+lin sea_bathing_N = mkN "sea-bathing" "sea-bathings" ;
+lin sea_boat_N = mkN "sea-boat" "sea-boats" ;
+lin sea_bream_N = mkN "sea-bream" "sea-bream" ;
+lin sea_breeze_N = mkN "sea-breeze" "sea-breezes" ;
+lin sea_coal_N = mkN "sea-coal" "sea-coals" ;
+lin sea_cow_N = mkN "sea-cow" "sea-cows" ;
+lin sea_dog_N = mkN "sea-dog" "sea-dogs" ;
+lin sea_fish_N = mkN "sea-fish" "sea-fish" ;
+lin sea_girt_A = mkAMost "sea-girt" "sea-girtly" ;
+lin sea_god_N = mkN "sea-god" "sea-gods" ;
+lin sea_green_A = mkAMost "sea-green" "sea-greenly" ;
+lin sea_green_N = mkN "sea-green" "sea-greens" ;
+lin sea_horse_N = mkN "sea-horse" "sea-horses" ;
+lin sea_level_N = mkN "sea-level" "IRREG" ;
+lin sea_lion_N = mkN "sea-lion" "sea-lions" ;
+lin sea_power_N = mkN "sea-power" "sea-powers" ;
+lin sea_rover_N = mkN "sea-rover" "sea-rovers" ;
+lin sea_snake_N = mkN "sea-snake" "sea-snakes" ;
+lin sea_urchin_N = mkN "sea-urchin" "sea-urchins" ;
+lin sea_wall_N = mkN "sea-wall" "sea-walls" ;
+lin sea_water_N = mkN "sea-water" "sea-waters" ;
+lin seabag_N = mkN "seabag" "seabags" ;
+lin seabed_N = mkN "seabed" "seabeds" ;
+lin seabird_N = mkN "seabird" "seabirds" ;
+lin seaboard_N = mkN "seaboard" "seaboards" ;
+lin seaborgium_N = mkN "seaborgium" "seaborgiums" ;
+lin seaborne_A = mkAMost "seaborne" "seabornely" ;
+lin seafarer_N = mkN "seafarer" "seafarers" ;
+lin seafaring_A = mkAMost "seafaring" "seafaringly" ;
+lin seafaring_N = mkN "seafaring" "seafarings" ;
+lin seafood_N = mkN "seafood" "seafoods" ;
+lin seafront_N = mkN "seafront" "seafronts" ;
+lin seagirt_A = mkAMost "seagirt" "seagirtly" ;
+lin seagoing_A = mkAMost "seagoing" "seagoingly" ;
+lin seagrass_N = mkN "seagrass" "seagrasses" ;
+lin seagull_N = mkN "seagull" "seagulls" ;
+lin seahorse_N = mkN "seahorse" "seahorses" ;
+lin seakale_N = mkN "seakale" "seakales" ;
+lin seal_N = mkN "seal" "seals" ;
+lin seal_V = mkV "seal" "sealed" "sealed" ;
+lin seal_ring_N = mkN "seal-ring" "seal-rings" ;
+lin sealant_N = mkN "sealant" "sealants" ;
+lin sealer_N = mkN "sealer" "sealers" ;
+lin sealing_wax_N = mkN "sealing-wax" "sealing-waxes" ;
+lin sealskin_N = mkN "sealskin" "sealskins" ;
+lin sealyham_N = mkN "sealyham" "sealyhams" ;
+lin seam_N = mkN "seam" "seams" ;
+lin seam_V = mkV "seam" "seamed" "seamed" ;
+lin seaman_N = mkN "seaman" "seamen" ;
+lin seamanlike_A = mkAMost "seamanlike" "seamanlikely" ;
+lin seamanship_N = mkN "seamanship" "seamanships" ;
+lin seamless_A = mkAMost "seamless" "seamlessly" ;
+lin seamount_N = mkN "seamount" "seamounts" ;
+lin seamstress_N = mkN "seamstress" "seamstresses" ;
+lin seamy_A = mkA "seamy" "seamier" "seamiest" "seamily" ;
+lin seaplane_N = mkN "seaplane" "seaplanes" ;
+lin seaport_N = mkN "seaport" "seaports" ;
+lin seaquake_N = mkN "seaquake" "seaquakes" ;
+lin sear_A = mkAMost "sear" "searly" ;
+lin sear_V = mkV "sear" "seared" "seared" ;
+lin search_N = mkN "search" "searches" ;
+lin search_V = mkV "search" "searched" "searched" ;
+lin search_party_N = mkN "search-party" "search-parties" ;
+lin search_warrant_N = mkN "search-warrant" "search-warrants" ;
+lin searcher_N = mkN "searcher" "searchers" ;
+lin searchingly_Adv = mkAdv "searchingly" ;
+lin searchlight_N = mkN "searchlight" "searchlights" ;
+lin searing_A = mkAMost "searing" "searingly" ;
+lin searing_iron_N = mkN "searing-iron" "searing-irons" ;
+lin seascape_N = mkN "seascape" "seascapes" ;
+lin seashell_N = mkN "seashell" "seashells" ;
+lin seashore_N = mkN "seashore" "seashores" ;
+lin seasick_A = mkAMost "seasick" "seasickly" ;
+lin seasickness_N = mkN "seasickness" "seasicknesses" ;
+lin seaside_N = mkN "seaside" "seasides" ;
+lin seasnail_N = mkN "seasnail" "seasnails" ;
+lin season_N = mkN "season" "seasons" ;
+lin season_V = mkV "season" "seasoned" "seasoned" ;
+lin season_ticket_N = mkN "season-ticket" "season-tickets" ;
+lin seasonable_A = mkAMost "seasonable" "seasonably" ;
+lin seasonableness_N = mkN "seasonableness" "seasonablenesses" ;
+lin seasonal_A = mkAMost "seasonal" "seasonally" ;
+lin seasoner_N = mkN "seasoner" "seasoners" ;
+lin seasoning_N = mkN "seasoning" "seasonings" ;
+lin seat_N = mkN "seat" "seats" ;
+lin seat_V = mkV "seat" "seated" "seated" ;
+lin seat_belt_N = mkN "seat-belt" "seat-belts" ;
+lin seating_N = mkN "seating" "seatings" ;
+lin seating_room_N = mkN "seating-room" "seating-rooms" ;
+lin seaward_A = mkAMost "seaward" "seawardly" ;
+lin seaward_Adv = mkAdv "seaward" ;
+lin seaward_N = mkN "seaward" "seawards" ;
+lin seawards_Adv = mkAdv "seawards" ;
+lin seawater_N = mkN "seawater" "seawaters" ;
+lin seaway_N = mkN "seaway" "seaways" ;
+lin seaweed_N = mkN "seaweed" "seaweeds" ;
+lin seaworthiness_N = mkN "seaworthiness" "seaworthinesses" ;
+lin seaworthy_A = mkAMost "seaworthy" "seaworthily" ;
+lin seborrhea_N = mkN "seborrhea" "seborrheas" ;
+lin sebum_N = mkN "sebum" "sebums" ;
+lin sec_A = mkA "sec" "secer" "secest" "secly" ;
+lin sec_N = mkN "sec" "secs" ;
+lin secant_N = mkN "secant" "secants" ;
+lin secateurs_N = mkN "secateurs" "secateurses" ;
+lin secede_V = mkV "secede" "seceded" "seceded" ;
+lin secession_N = mkN "secession" "secessions" ;
+lin secessionism_N = mkN "secessionism" "secessionisms" ;
+lin secessionist_N = mkN "secessionist" "secessionists" ;
+lin seckel_N = mkN "seckel" "seckels" ;
+lin seclude_V = mkV "seclude" "secluded" "secluded" ;
+lin seclusion_N = mkN "seclusion" "seclusions" ;
+lin second_N = mkN "second" "seconds" ;
+lin second_V = mkV "second" "seconded" "seconded" ;
+lin second_best_A = mkAMost "second-best" "second-bestly" ;
+lin second_best_Adv = mkAdv "second-best" ;
+lin second_best_N = mkN "second-best" "second-bests" ;
+lin second_class_A = mkAMost "second-class" "second-classly" ;
+lin second_class_Adv = mkAdv "second-class" ;
+lin second_class_N = mkN "second-class" "second-classes" ;
+lin second_guess_V = mkV "second-guess" "second-guessed" "second-guessed" ;
+lin second_hand_A = mkAMost "second-hand" "second-handly" ;
+lin second_hand_N = mkN "second-hand" "second-hands" ;
+lin second_rate_A = mkAMost "second-rate" "second-rately" ;
+lin second_rater_N = mkN "second-rater" "second-raters" ;
+lin second_sighted_A = mkAMost "second-sighted" "second-sightedly" ;
+lin secondary_A = mkAMost "secondary" "secondarily" ;
+lin secondary_N = mkN "secondary" "secondaries" ;
+lin seconder_N = mkN "seconder" "seconders" ;
+lin secondhand_A = mkAMost "secondhand" "secondhandly" ;
+lin secondhand_Adv = mkAdv "secondhand" ;
+lin secondment_N = mkN "secondment" "secondments" ;
+lin secondo_N = mkN "secondo" "secondoes" ;
+lin secrecy_N = mkN "secrecy" "secrecies" ;
+lin secret_A = mkAMost "secret" "secretly" ;
+lin secret_N = mkN "secret" "secrets" ;
+lin secretarial_A = mkAMost "secretarial" "secretarially" ;
+lin secretariat_N = mkN "secretariat" "secretariats" ;
+lin secretary_N = mkN "secretary" "secretaries" ;
+lin secretary_general_N = mkN "secretary-general" "secretary-generals" ;
+lin secretaryship_N = mkN "secretaryship" "secretaryships" ;
+lin secretase_N = mkN "secretase" "secretases" ;
+lin secrete_V = mkV "secrete" "secreted" "secreted" ;
+lin secretin_N = mkN "secretin" "secretins" ;
+lin secretion_N = mkN "secretion" "secretions" ;
+lin secretive_A = mkAMost "secretive" "secretively" ;
+lin secretiveness_N = mkN "secretiveness" "secretivenesses" ;
+lin secretory_A = mkAMost "secretory" "secretorily" ;
+lin sect_N = mkN "sect" "sects" ;
+lin sectarian_A = mkAMost "sectarian" "sectarianly" ;
+lin sectarian_N = mkN "sectarian" "sectarians" ;
+lin sectarianism_N = mkN "sectarianism" "sectarianisms" ;
+lin section_N = mkN "section" "sections" ;
+lin sectional_A = mkAMost "sectional" "sectionally" ;
+lin sectional_N = mkN "sectional" "sectionals" ;
+lin sectionalism_N = mkN "sectionalism" "sectionalisms" ;
+lin sector_N = mkN "sector" "sectors" ;
+lin sectorial_A = mkAMost "sectorial" "sectorially" ;
+lin secular_A = mkAMost "secular" "secularly" ;
+lin secularism_N = mkN "secularism" "secularisms" ;
+lin secularist_N = mkN "secularist" "secularists" ;
+lin secularization_N = mkN "secularization" "secularizations" ;
+lin secularize_V = mkV "secularize" "secularized" "secularized" ;
+lin secundigravida_N = mkN "secundigravida" "secundigravidas" ;
+lin secure_A = mkAMost "secure" "securely" ;
+lin secure_V = mkV "secure" "secured" "secured" ;
+lin secureness_N = mkN "secureness" "securenesses" ;
+lin security_N = mkN "security" "securities" ;
+lin sedan_N = mkN "sedan" "sedans" ;
+lin sedan_chair_N = mkN "sedan-chair" "sedan-chairs" ;
+lin sedate_A = mkAMost "sedate" "sedately" ;
+lin sedate_V = mkV "sedate" "sedated" "sedated" ;
+lin sedateness_N = mkN "sedateness" "sedatenesses" ;
+lin sedation_N = mkN "sedation" "sedations" ;
+lin sedative_A = mkAMost "sedative" "sedatively" ;
+lin sedative_N = mkN "sedative" "sedatives" ;
+lin sedentary_A = mkAMost "sedentary" "sedentarily" ;
+lin sedge_N = mkN "sedge" "sedges" ;
+lin sedgy_A = mkA "sedgy" "sedgier" "sedgiest" "sedgily" ;
+lin sediment_N = mkN "sediment" "sediments" ;
+lin sedimentary_A = mkAMost "sedimentary" "sedimentarily" ;
+lin sedition_N = mkN "sedition" "seditions" ;
+lin seditious_A = mkAMost "seditious" "seditiously" ;
+lin seduce_V = mkV "seduce" "seduced" "seduced" ;
+lin seducer_N = mkN "seducer" "seducers" ;
+lin seduction_N = mkN "seduction" "seductions" ;
+lin seductive_A = mkAMost "seductive" "seductively" ;
+lin seductress_N = mkN "seductress" "seductresses" ;
+lin sedulity_N = mkN "sedulity" "sedulities" ;
+lin sedulous_A = mkAMost "sedulous" "sedulously" ;
+lin sedum_N = mkN "sedum" "sedums" ;
+lin see_N = mkN "see" "sees" ;
+lin see_V = mkV "see" "saw" "seen" ;
+lin see_through_A = mkAMost "see-through" "see-throughly" ;
+lin seed_N = mkN "seed" "seeds" ;
+lin seed_V = mkV "seed" "seeded" "seeded" ;
+lin seed_corn_N = mkN "seed-corn" "seed-corns" ;
+lin seedbed_N = mkN "seedbed" "seedbeds" ;
+lin seedcake_N = mkN "seedcake" "seedcakes" ;
+lin seeder_N = mkN "seeder" "seeders" ;
+lin seediness_N = mkN "seediness" "seedinesses" ;
+lin seedless_A = mkAMost "seedless" "seedlessly" ;
+lin seedling_N = mkN "seedling" "seedlings" ;
+lin seedsman_N = mkN "seedsman" "seedsmen" ;
+lin seedtime_N = mkN "seedtime" "seedtimes" ;
+lin seedy_A = mkA "seedy" "seedier" "seediest" "seedily" ;
+lin seek_N = mkN "seek" "seeks" ;
+lin seek_seeked_V = mkV "seek" "seeked" "seeked" ;
+lin seek_sought_V = mkV "seek" "sought" "sought" ;
+lin seeker_N = mkN "seeker" "seekers" ;
+lin seeking_N = mkN "seeking" "seekings" ;
+lin seem_V = mkV "seem" "seemed" "seemed" ;
+lin seeming_A = mkAMost "seeming" "seemingly" ;
+lin seemliness_N = mkN "seemliness" "seemlinesses" ;
+lin seemly_A = mkA "seemly" "seemlier" "seemliest" "seemlily" ;
+lin seep_V = mkV "seep" "seeped" "seeped" ;
+lin seepage_N = mkN "seepage" "seepages" ;
+lin seer_N = mkN "seer" "seers" ;
+lin seersucker_N = mkN "seersucker" "seersuckers" ;
+lin seesaw_N = mkN "seesaw" "seesaws" ;
+lin seesaw_V = mkV "seesaw" "seesawed" "seesawed" ;
+lin seethe_V = mkV "seethe" "seethed" "seethed" ;
+lin segment_N = mkN "segment" "segments" ;
+lin segment_V = mkV "segment" "segmented" "segmented" ;
+lin segmental_A = mkAMost "segmental" "segmentally" ;
+lin segmentation_N = mkN "segmentation" "segmentations" ;
+lin segno_N = mkN "segno" "segnoes" ;
+lin segregate_N = mkN "segregate" "segregates" ;
+lin segregate_V = mkV "segregate" "segregated" "segregated" ;
+lin segregation_N = mkN "segregation" "segregations" ;
+lin segregationism_N = mkN "segregationism" "segregationisms" ;
+lin segregator_N = mkN "segregator" "segregators" ;
+lin segue_N = mkN "segue" "segues" ;
+lin seiche_N = mkN "seiche" "seiches" ;
+lin seidel_N = mkN "seidel" "seidels" ;
+lin seigneury_N = mkN "seigneury" "seigneuries" ;
+lin seignior_N = mkN "seignior" "seigniors" ;
+lin seigniorage_N = mkN "seigniorage" "seigniorages" ;
+lin seigniory_N = mkN "seigniory" "seigniories" ;
+lin seine_N = mkN "seine" "seines" ;
+lin seine_V = mkV "seine" "seined" "seined" ;
+lin seismic_A = mkAMost "seismic" "seismicly" ;
+lin seismogram_N = mkN "seismogram" "seismograms" ;
+lin seismograph_N = mkN "seismograph" "seismographs" ;
+lin seismography_N = mkN "seismography" "seismographies" ;
+lin seismological_A = mkAMost "seismological" "seismologically" ;
+lin seismologist_N = mkN "seismologist" "seismologists" ;
+lin seismology_N = mkN "seismology" "seismologies" ;
+lin seize_V = mkV "seize" "seized" "seized" ;
+lin seizing_N = mkN "seizing" "seizings" ;
+lin seizure_N = mkN "seizure" "seizures" ;
+lin seldom_Adv = mkAdv "seldom" ;
+lin select_A = mkAMost "select" "selectly" ;
+lin select_V = mkV "select" "selected" "selected" ;
+lin selection_N = mkN "selection" "selections" ;
+lin selective_A = mkAMost "selective" "selectively" ;
+lin selectivity_N = mkN "selectivity" "selectivities" ;
+lin selectman_N = mkN "selectman" "selectmen" ;
+lin selector_N = mkN "selector" "selectors" ;
+lin selectwoman_N = mkN "selectwoman" "selectwomen" ;
+lin selenium_N = mkN "selenium" "seleniums" ;
+lin selenology_N = mkN "selenology" "selenologies" ;
+lin self_A = mkA "self" "selfer" "selfest" "selfly" ;
+lin self_N = mkN "self" "selves" ;
+lin self_abasement_N = mkN "self-abasement" "self-abasements" ;
+lin self_abnegation_N = mkN "self-abnegation" "self-abnegations" ;
+lin self_absorbed_A = mkAMost "self-absorbed" "self-absorbedly" ;
+lin self_acting_A = mkAMost "self-acting" "self-actingly" ;
+lin self_activating_A = mkAMost "self-activating" "self-activatingly" ;
+lin self_addressed_A = mkAMost "self-addressed" "self-addressedly" ;
+lin self_appointed_A = mkAMost "self-appointed" "self-appointedly" ;
+lin self_assertion_N = mkN "self-assertion" "self-assertions" ;
+lin self_assertive_A = mkAMost "self-assertive" "self-assertively" ;
+lin self_assurance_N = mkN "self-assurance" "self-assurances" ;
+lin self_assured_A = mkAMost "self-assured" "self-assuredly" ;
+lin self_centred_A = mkAMost "self-centred" "self-centredly" ;
+lin self_collected_A = mkAMost "self-collected" "self-collectedly" ;
+lin self_coloured_A = mkAMost "self-coloured" "self-colouredly" ;
+lin self_command_N = mkN "self-command" "self-commands" ;
+lin self_communion_N = mkN "self-communion" "self-communions" ;
+lin self_complacency_N = mkN "self-complacency" "self-complacencies" ;
+lin self_confessed_A = mkAMost "self-confessed" "self-confessedly" ;
+lin self_confidence_N = mkN "self-confidence" "self-confidences" ;
+lin self_confident_A = mkAMost "self-confident" "self-confidently" ;
+lin self_conscious_A = mkAMost "self-conscious" "self-consciously" ;
+lin self_consciousness_N = mkN "self-consciousness" "self-consciousnesses" ;
+lin self_contained_A = mkAMost "self-contained" "self-containedly" ;
+lin self_control_N = mkN "self-control" "self-controls" ;
+lin self_defence_N = mkN "self-defence" "self-defences" ;
+lin self_denial_N = mkN "self-denial" "self-denials" ;
+lin self_denying_A = mkAMost "self-denying" "self-denyingly" ;
+lin self_destruct_V = mkV "self-destruct" "self-destructed" "self-destructed" ;
+lin self_determination_N = mkN "self-determination" "self-determinations" ;
+lin self_educated_A = mkAMost "self-educated" "self-educatedly" ;
+lin self_effacing_A = mkAMost "self-effacing" "self-effacingly" ;
+lin self_employed_A = mkAMost "self-employed" "self-employedly" ;
+lin self_esteem_N = mkN "self-esteem" "self-esteems" ;
+lin self_evident_A = mkAMost "self-evident" "self-evidently" ;
+lin self_examination_N = mkN "self-examination" "self-examinations" ;
+lin self_explanatory_A = mkAMost "self-explanatory" "self-explanatorily" ;
+lin self_help_N = mkN "self-help" "self-helps" ;
+lin self_importance_N = mkN "self-importance" "self-importances" ;
+lin self_important_A = mkAMost "self-important" "self-importantly" ;
+lin self_imposed_A = mkAMost "self-imposed" "self-imposedly" ;
+lin self_indulgence_N = mkN "self-indulgence" "self-indulgences" ;
+lin self_indulgent_A = mkAMost "self-indulgent" "self-indulgently" ;
+lin self_insure_V = mkV "self-insure" "self-insured" "self-insured" ;
+lin self_interest_N = mkN "self-interest" "self-interests" ;
+lin self_locking_A = mkAMost "self-locking" "self-lockingly" ;
+lin self_made_A = mkAMost "self-made" "self-madely" ;
+lin self_opinionated_A = mkAMost "self-opinionated" "self-opinionatedly" ;
+lin self_pity_N = mkN "self-pity" "self-pities" ;
+lin self_possessed_A = mkAMost "self-possessed" "self-possessedly" ;
+lin self_possession_N = mkN "self-possession" "self-possessions" ;
+lin self_preservation_N = mkN "self-preservation" "self-preservations" ;
+lin self_raising_A = mkAMost "self-raising" "self-raisingly" ;
+lin self_reliance_N = mkN "self-reliance" "self-reliances" ;
+lin self_reliant_A = mkAMost "self-reliant" "self-reliantly" ;
+lin self_respect_N = mkN "self-respect" "self-respects" ;
+lin self_respecting_A = mkAMost "self-respecting" "self-respectingly" ;
+lin self_righteous_A = mkAMost "self-righteous" "self-righteously" ;
+lin self_rule_N = mkN "self-rule" "self-rules" ;
+lin self_sacrifice_N = mkN "self-sacrifice" "self-sacrifices" ;
+lin self_sacrificing_A = mkAMost "self-sacrificing" "self-sacrificingly" ;
+lin self_same_A = mkAMost "self-same" "self-samely" ;
+lin self_sealing_A = mkAMost "self-sealing" "self-sealingly" ;
+lin self_seeker_N = mkN "self-seeker" "self-seekers" ;
+lin self_seeking_A = mkAMost "self-seeking" "self-seekingly" ;
+lin self_seeking_N = mkN "self-seeking" "self-seekings" ;
+lin self_service_N = mkN "self-service" "self-services" ;
+lin self_sown_A = mkAMost "self-sown" "self-sownly" ;
+lin self_starter_N = mkN "self-starter" "self-starters" ;
+lin self_styled_A = mkAMost "self-styled" "self-styledly" ;
+lin self_sufficiency_N = mkN "self-sufficiency" "self-sufficiencies" ;
+lin self_sufficient_A = mkAMost "self-sufficient" "self-sufficiently" ;
+lin self_sufficing_A = mkAMost "self-sufficing" "self-sufficingly" ;
+lin self_supporting_A = mkAMost "self-supporting" "self-supportingly" ;
+lin self_will_N = mkN "self-will" "self-wills" ;
+lin self_willed_A = mkAMost "self-willed" "self-willedly" ;
+lin self_winding_A = mkAMost "self-winding" "self-windingly" ;
+lin selfconsciously_Adv = mkAdv "selfconsciously" ;
+lin selfish_A = mkAMost "selfish" "selfishly" ;
+lin selfishness_N = mkN "selfishness" "selfishnesses" ;
+lin selflessness_N = mkN "selflessness" "selflessnesses" ;
+lin selfsameness_N = mkN "selfsameness" "selfsamenesses" ;
+lin sell_N = mkN "sell" "IRREG" ;
+lin sell_selled_V = mkV "sell" "selled" "selled" ;
+lin sell_sold_V = mkV "sell" "sold" "sold" ;
+lin seller_N = mkN "seller" "sellers" ;
+lin selling_N = mkN "selling" "sellings" ;
+lin selloff_N = mkN "selloff" "selloffs" ;
+lin sellout_N = mkN "sellout" "sellouts" ;
+lin selsyn_N = mkN "selsyn" "selsyns" ;
+lin seltzer_N = mkN "seltzer" "seltzers" ;
+lin selvage_N = mkN "selvage" "selvages" ;
+lin selvedge_N = mkN "selvedge" "selvedges" ;
+lin semantic_A = mkAMost "semantic" "semanticly" ;
+lin semantically_Adv = mkAdv "semantically" ;
+lin semanticist_N = mkN "semanticist" "semanticists" ;
+lin semantics_N = mkN "semantics" "semantics" ;
+lin semaphore_N = mkN "semaphore" "semaphores" ;
+lin semaphore_V = mkV "semaphore" "semaphored" "semaphored" ;
+lin semblance_N = mkN "semblance" "semblances" ;
+lin semen_N = mkN "semen" "semens" ;
+lin semester_N = mkN "semester" "semesters" ;
+lin semestral_A = mkAMost "semestral" "semestrally" ;
+lin semiabstract_A = mkAMost "semiabstract" "semiabstractly" ;
+lin semiannual_A = mkAMost "semiannual" "semiannually" ;
+lin semiaquatic_A = mkAMost "semiaquatic" "semiaquaticly" ;
+lin semiarid_A = mkAMost "semiarid" "semiaridly" ;
+lin semiautobiographical_A = mkAMost "semiautobiographical" "semiautobiographically" ;
+lin semiautomatic_A = mkAMost "semiautomatic" "semiautomaticly" ;
+lin semibreve_N = mkN "semibreve" "semibreves" ;
+lin semicentennial_A = mkAMost "semicentennial" "semicentennially" ;
+lin semicentennial_N = mkN "semicentennial" "semicentennials" ;
+lin semicircle_N = mkN "semicircle" "semicircles" ;
+lin semicircular_A = mkAMost "semicircular" "semicircularly" ;
+lin semicolon_N = mkN "semicolon" "semicolons" ;
+lin semicoma_N = mkN "semicoma" "semicomas" ;
+lin semicomatose_A = mkAMost "semicomatose" "semicomatosely" ;
+lin semiconducting_A = mkAMost "semiconducting" "semiconductingly" ;
+lin semiconductor_N = mkN "semiconductor" "semiconductors" ;
+lin semiconscious_A = mkAMost "semiconscious" "semiconsciously" ;
+lin semidark_A = mkAMost "semidark" "semidarkly" ;
+lin semidarkness_N = mkN "semidarkness" "semidarknesses" ;
+lin semidesert_N = mkN "semidesert" "semideserts" ;
+lin semidetached_A = mkAMost "semidetached" "semidetachedly" ;
+lin semidiameter_N = mkN "semidiameter" "semidiameters" ;
+lin semiempirical_A = mkAMost "semiempirical" "semiempirically" ;
+lin semifinal_N = mkN "semifinal" "semifinals" ;
+lin semifinalist_N = mkN "semifinalist" "semifinalists" ;
+lin semifluidity_N = mkN "semifluidity" "semifluidities" ;
+lin semiformal_A = mkAMost "semiformal" "semiformally" ;
+lin semigloss_N = mkN "semigloss" "semiglosses" ;
+lin semihard_A = mkAMost "semihard" "semihardly" ;
+lin semiliquid_A = mkAMost "semiliquid" "semiliquidly" ;
+lin semiliterate_A = mkAMost "semiliterate" "semiliterately" ;
+lin semimonthly_A = mkAMost "semimonthly" "semimonthlily" ;
+lin semimonthly_Adv = mkAdv "semimonthly" ;
+lin semimonthly_N = mkN "semimonthly" "semimonthlies" ;
+lin seminal_A = mkAMost "seminal" "seminally" ;
+lin seminar_N = mkN "seminar" "seminars" ;
+lin seminarian_N = mkN "seminarian" "seminarians" ;
+lin seminarist_N = mkN "seminarist" "seminarists" ;
+lin seminary_N = mkN "seminary" "seminaries" ;
+lin seminiferous_A = mkAMost "seminiferous" "seminiferously" ;
+lin seminoma_N = mkN "seminoma" "seminomas" ;
+lin seminude_A = mkAMost "seminude" "seminudely" ;
+lin semiofficial_A = mkAMost "semiofficial" "semiofficially" ;
+lin semiopaque_A = mkAMost "semiopaque" "semiopaquely" ;
+lin semiotic_A = mkAMost "semiotic" "semioticly" ;
+lin semiotics_N = mkN "semiotics" "semioticses" ;
+lin semiparasitic_A = mkAMost "semiparasitic" "semiparasiticly" ;
+lin semipermeable_A = mkAMost "semipermeable" "semipermeably" ;
+lin semipolitical_A = mkAMost "semipolitical" "semipolitically" ;
+lin semiprecious_A = mkAMost "semiprecious" "semipreciously" ;
+lin semiprivate_A = mkAMost "semiprivate" "semiprivately" ;
+lin semiprofessional_N = mkN "semiprofessional" "semiprofessionals" ;
+lin semipublic_A = mkAMost "semipublic" "semipublicly" ;
+lin semiquaver_N = mkN "semiquaver" "semiquavers" ;
+lin semirigid_A = mkAMost "semirigid" "semirigidly" ;
+lin semisolid_A = mkAMost "semisolid" "semisolidly" ;
+lin semite_A = mkAMost "semite" "semitely" ;
+lin semite_N = mkN "semite" "semites" ;
+lin semiterrestrial_A = mkAMost "semiterrestrial" "semiterrestrially" ;
+lin semitic_A = mkAMost "semitic" "semiticly" ;
+lin semitone_N = mkN "semitone" "semitones" ;
+lin semitrailer_N = mkN "semitrailer" "semitrailers" ;
+lin semitrance_N = mkN "semitrance" "semitrances" ;
+lin semitropical_A = mkAMost "semitropical" "semitropically" ;
+lin semivowel_N = mkN "semivowel" "semivowels" ;
+lin semiweekly_A = mkAMost "semiweekly" "semiweeklily" ;
+lin semiweekly_Adv = mkAdv "semiweekly" ;
+lin semiweekly_N = mkN "semiweekly" "semiweeklies" ;
+lin semolina_N = mkN "semolina" "semolinas" ;
+lin sempstress_N = mkN "sempstress" "sempstresses" ;
+lin sen_N = mkN "sen" "sens" ;
+lin senate_N = mkN "senate" "senates" ;
+lin senator_N = mkN "senator" "senators" ;
+lin senatorial_A = mkAMost "senatorial" "senatorially" ;
+lin senatorship_N = mkN "senatorship" "senatorships" ;
+lin send_V = mkV "send" "sent" "sent" ;
+lin send_up_N = mkN "send-up" "send-ups" ;
+lin sendee_N = mkN "sendee" "sendees" ;
+lin sender_N = mkN "sender" "senders" ;
+lin sending_N = mkN "sending" "sendings" ;
+lin sendoff_N = mkN "sendoff" "sendoffs" ;
+lin sene_N = mkN "sene" "senes" ;
+lin senega_N = mkN "senega" "senegas" ;
+lin senegalese_A = mkAMost "senegalese" "senegalesely" ;
+lin senegalese_N = mkN "senegalese" "senegalese" ;
+lin senescence_N = mkN "senescence" "senescences" ;
+lin senescent_A = mkAMost "senescent" "senescently" ;
+lin seneschal_N = mkN "seneschal" "seneschals" ;
+lin senile_A = mkAMost "senile" "senilely" ;
+lin senility_N = mkN "senility" "senilities" ;
+lin senior_A = mkAMost "senior" "seniorly" ;
+lin senior_N = mkN "senior" "seniors" ;
+lin seniority_N = mkN "seniority" "seniorities" ;
+lin seniti_N = mkN "seniti" "senitis" ;
+lin senna_N = mkN "senna" "sennas" ;
+lin sennit_N = mkN "sennit" "sennits" ;
+lin senora_N = mkN "senora" "senoras" ;
+lin senorita_N = mkN "senorita" "senoritas" ;
+lin sensate_A = mkAMost "sensate" "sensately" ;
+lin sensation_N = mkN "sensation" "sensations" ;
+lin sensational_A = mkAMost "sensational" "sensationally" ;
+lin sensationalism_N = mkN "sensationalism" "sensationalisms" ;
+lin sensationalist_N = mkN "sensationalist" "sensationalists" ;
+lin sense_N = mkN "sense" "senses" ;
+lin sense_V = mkV "sense" "sensed" "sensed" ;
+lin sense_organ_N = mkN "sense-organ" "sense-organs" ;
+lin senseless_A = mkAMost "senseless" "senselessly" ;
+lin senselessness_N = mkN "senselessness" "senselessnesses" ;
+lin sensibility_N = mkN "sensibility" "sensibilities" ;
+lin sensible_A = mkAMost "sensible" "sensibly" ;
+lin sensibleness_N = mkN "sensibleness" "sensiblenesses" ;
+lin sensing_N = mkN "sensing" "sensings" ;
+lin sensitive_A = mkAMost "sensitive" "sensitively" ;
+lin sensitivity_N = mkN "sensitivity" "sensitivities" ;
+lin sensitization_N = mkN "sensitization" "sensitizations" ;
+lin sensitize_V = mkV "sensitize" "sensitized" "sensitized" ;
+lin sensitizer_N = mkN "sensitizer" "sensitizers" ;
+lin sensitizing_A = mkAMost "sensitizing" "sensitizingly" ;
+lin sensitizing_N = mkN "sensitizing" "sensitizings" ;
+lin sensitometer_N = mkN "sensitometer" "sensitometers" ;
+lin sensorimotor_A = mkAMost "sensorimotor" "sensorimotorly" ;
+lin sensorineural_A = mkAMost "sensorineural" "sensorineurally" ;
+lin sensorium_N = mkN "sensorium" "sensoriums" ;
+lin sensory_A = mkAMost "sensory" "sensorily" ;
+lin sensual_A = mkAMost "sensual" "sensually" ;
+lin sensualism_N = mkN "sensualism" "sensualisms" ;
+lin sensualist_N = mkN "sensualist" "sensualists" ;
+lin sensuality_N = mkN "sensuality" "sensualities" ;
+lin sensuous_A = mkAMost "sensuous" "sensuously" ;
+lin sensuousness_N = mkN "sensuousness" "sensuousnesses" ;
+lin sent_N = mkN "sent" "sents" ;
+lin sente_N = mkN "sente" "sentes" ;
+lin sentence_N = mkN "sentence" "sentences" ;
+lin sentence_V = mkV "sentence" "sentenced" "sentenced" ;
+lin sentential_A = mkAMost "sentential" "sententially" ;
+lin sententious_A = mkAMost "sententious" "sententiously" ;
+lin sentience_N = mkN "sentience" "sentiences" ;
+lin sentient_A = mkAMost "sentient" "sentiently" ;
+lin sentiment_N = mkN "sentiment" "sentiments" ;
+lin sentimental_A = mkAMost "sentimental" "sentimentally" ;
+lin sentimentalism_N = mkN "sentimentalism" "sentimentalisms" ;
+lin sentimentalist_N = mkN "sentimentalist" "sentimentalists" ;
+lin sentimentality_N = mkN "sentimentality" "sentimentalities" ;
+lin sentimentalization_N = mkN "sentimentalization" "sentimentalizations" ;
+lin sentimentalize_V = mkV "sentimentalize" "sentimentalized" "sentimentalized" ;
+lin sentinel_N = mkN "sentinel" "sentinels" ;
+lin sentry_N = mkN "sentry" "sentries" ;
+lin sentry_box_N = mkN "sentry-box" "sentry-boxes" ;
+lin sentry_go_N = mkN "sentry-go" "sentry-gi" ;
+lin sepal_N = mkN "sepal" "sepals" ;
+lin sepaloid_A = mkAMost "sepaloid" "sepaloidly" ;
+lin separability_N = mkN "separability" "separabilities" ;
+lin separable_A = mkAMost "separable" "separably" ;
+lin separate_A = mkAMost "separate" "separately" ;
+lin separate_N = mkN "separate" "separates" ;
+lin separate_V = mkV "separate" "separated" "separated" ;
+lin separateness_N = mkN "separateness" "separatenesses" ;
+lin separation_N = mkN "separation" "separations" ;
+lin separationism_N = mkN "separationism" "separationisms" ;
+lin separatism_N = mkN "separatism" "separatisms" ;
+lin separatist_N = mkN "separatist" "separatists" ;
+lin separative_A = mkAMost "separative" "separatively" ;
+lin separator_N = mkN "separator" "separators" ;
+lin sepia_N = mkN "sepia" "sepias" ;
+lin sepsis_N = mkN "sepsis" "sepsises" ;
+lin septal_A = mkAMost "septal" "septally" ;
+lin septation_N = mkN "septation" "septations" ;
+lin septectomy_N = mkN "septectomy" "septectomies" ;
+lin septet_N = mkN "septet" "septets" ;
+lin septic_A = mkAMost "septic" "septicly" ;
+lin septicaemia_N = mkN "septicaemia" "septicaemias" ;
+lin septicemia_N = mkN "septicemia" "septicemias" ;
+lin septicemic_A = mkAMost "septicemic" "septicemicly" ;
+lin septillion_N = mkN "septillion" "septillions" ;
+lin septrional_A = mkAMost "septrional" "septrionally" ;
+lin septuagenarian_N = mkN "septuagenarian" "septuagenarians" ;
+lin septuagint_N = mkN "septuagint" "septuagints" ;
+lin septum_N = mkN "septum" "septums" ;
+lin septuple_A = mkAMost "septuple" "septuplely" ;
+lin sepulchral_A = mkAMost "sepulchral" "sepulchrally" ;
+lin sepulchre_N = mkN "sepulchre" "sepulchres" ;
+lin sepulture_N = mkN "sepulture" "sepultures" ;
+lin sequel_N = mkN "sequel" "sequels" ;
+lin sequela_N = mkN "sequela" "sequelas" ;
+lin sequella_N = mkN "sequella" "sequellas" ;
+lin sequence_N = mkN "sequence" "sequences" ;
+lin sequencer_N = mkN "sequencer" "sequencers" ;
+lin sequent_A = mkAMost "sequent" "sequently" ;
+lin sequential_A = mkAMost "sequential" "sequentially" ;
+lin sequester_V = mkV "sequester" "sequestered" "sequestered" ;
+lin sequestrate_V = mkV "sequestrate" "sequestrated" "sequestrated" ;
+lin sequestration_N = mkN "sequestration" "sequestrations" ;
+lin sequin_N = mkN "sequin" "sequins" ;
+lin sequoia_N = mkN "sequoia" "sequoias" ;
+lin seraglio_N = mkN "seraglio" "seraglios" ;
+lin serape_N = mkN "serape" "serapes" ;
+lin seraph_N = mkN "seraph" "seraphs" ;
+lin seraphic_A = mkAMost "seraphic" "seraphicly" ;
+lin serbo_croat_N = mkN "serbo-croat" "serbo-croats" ;
+lin sere_A = mkAMost "sere" "serely" ;
+lin serenade_N = mkN "serenade" "serenades" ;
+lin serenade_V = mkV "serenade" "serenaded" "serenaded" ;
+lin serendipitous_A = mkAMost "serendipitous" "serendipitously" ;
+lin serendipity_N = mkN "serendipity" "serendipities" ;
+lin serene_A = mkAMost "serene" "serenely" ;
+lin sereness_N = mkN "sereness" "serenesses" ;
+lin serenity_N = mkN "serenity" "serenities" ;
+lin serf_N = mkN "serf" "serfs" ;
+lin serfdom_N = mkN "serfdom" "serfdoms" ;
+lin serflike_A = mkAMost "serflike" "serflikely" ;
+lin serge_N = mkN "serge" "serges" ;
+lin sergeant_N = mkN "sergeant" "sergeants" ;
+lin sergeant_major_N = mkN "sergeant-major" "sergeant-majors" ;
+lin serger_N = mkN "serger" "sergers" ;
+lin serial_A = mkAMost "serial" "serially" ;
+lin serial_N = mkN "serial" "serials" ;
+lin serialism_N = mkN "serialism" "serialisms" ;
+lin serialization_N = mkN "serialization" "serializations" ;
+lin serialize_V = mkV "serialize" "serialized" "serialized" ;
+lin seriatim_Adv = mkAdv "seriatim" ;
+lin sericultural_A = mkAMost "sericultural" "sericulturally" ;
+lin sericulture_N = mkN "sericulture" "sericultures" ;
+lin sericulturist_N = mkN "sericulturist" "sericulturists" ;
+lin series_N = mkN "series" "series" ;
+lin serif_N = mkN "serif" "serifs" ;
+lin serigraphy_N = mkN "serigraphy" "serigraphies" ;
+lin serin_N = mkN "serin" "serins" ;
+lin serine_N = mkN "serine" "serines" ;
+lin seriocomedy_N = mkN "seriocomedy" "seriocomedies" ;
+lin seriocomic_A = mkAMost "seriocomic" "seriocomicly" ;
+lin serious_A = mkAMost "serious" "seriously" ;
+lin seriousness_N = mkN "seriousness" "seriousnesses" ;
+lin serjeant_N = mkN "serjeant" "serjeants" ;
+lin serjeant_at_arms_N = mkN "serjeant-at-arms" "serjeants-at-arms" ;
+lin sermon_N = mkN "sermon" "sermons" ;
+lin sermonize_V = mkV "sermonize" "sermonized" "sermonized" ;
+lin serologic_A = mkAMost "serologic" "serologicly" ;
+lin serologist_N = mkN "serologist" "serologists" ;
+lin serology_N = mkN "serology" "serologies" ;
+lin serotine_N = mkN "serotine" "serotines" ;
+lin serotonin_N = mkN "serotonin" "serotonins" ;
+lin serous_A = mkAMost "serous" "serously" ;
+lin serow_N = mkN "serow" "serows" ;
+lin serpent_N = mkN "serpent" "serpents" ;
+lin serpentine_A = mkAMost "serpentine" "serpentinely" ;
+lin serrate_A = mkAMost "serrate" "serrately" ;
+lin serrated_A = mkAMost "serrated" "serratedly" ;
+lin serration_N = mkN "serration" "serrations" ;
+lin serratus_N = mkN "serratus" "serratuses" ;
+lin serried_A = mkAMost "serried" "serriedly" ;
+lin serrulate_A = mkAMost "serrulate" "serrulately" ;
+lin sertraline_N = mkN "sertraline" "sertralines" ;
+lin sertularian_N = mkN "sertularian" "sertularians" ;
+lin serum_N = mkN "serum" "serums" ;
+lin serval_N = mkN "serval" "servals" ;
+lin servant_N = mkN "servant" "servants" ;
+lin serve_N = mkN "serve" "serves" ;
+lin serve_V = mkV "serve" "served" "served" ;
+lin server_N = mkN "server" "servers" ;
+lin service_N = mkN "service" "services" ;
+lin service_V = mkV "service" "serviced" "serviced" ;
+lin serviceability_N = mkN "serviceability" "serviceabilities" ;
+lin serviceable_A = mkAMost "serviceable" "serviceably" ;
+lin serviceman_N = mkN "serviceman" "servicemen" ;
+lin servicing_N = mkN "servicing" "servicings" ;
+lin serviette_N = mkN "serviette" "serviettes" ;
+lin servile_A = mkAMost "servile" "servilely" ;
+lin servility_N = mkN "servility" "servilities" ;
+lin serving_N = mkN "serving" "servings" ;
+lin servitor_N = mkN "servitor" "servitors" ;
+lin servitude_N = mkN "servitude" "servitudes" ;
+lin servo_N = mkN "servo" "servoes" ;
+lin servomechanical_A = mkAMost "servomechanical" "servomechanically" ;
+lin sesame_N = mkN "sesame" "sesames" ;
+lin sesbania_N = mkN "sesbania" "sesbanias" ;
+lin sesotho_N = mkN "sesotho" "sesothoes" ;
+lin sesquicentennial_N = mkN "sesquicentennial" "sesquicentennials" ;
+lin sesquipedalian_A = mkAMost "sesquipedalian" "sesquipedalianly" ;
+lin sesquipedalian_N = mkN "sesquipedalian" "sesquipedalians" ;
+lin sesquipedality_N = mkN "sesquipedality" "sesquipedalities" ;
+lin sessile_A = mkAMost "sessile" "sessilely" ;
+lin session_N = mkN "session" "sessions" ;
+lin sestet_N = mkN "sestet" "sestets" ;
+lin set_N = mkN "set" "sets" ;
+lin set_set_V = mkV "set" "set" "set" ;
+lin set_setted_V = mkV "set" "setted" "setted" ;
+lin set_square_N = mkN "set-square" "set-squares" ;
+lin set_to_N = mkN "set-to" "set-tos" ;
+lin set_up_N = mkN "set-up" "set-ups" ;
+lin seta_N = mkN "seta" "setas" ;
+lin setback_N = mkN "setback" "setbacks" ;
+lin setscrew_N = mkN "setscrew" "setscrews" ;
+lin setswana_N = mkN "setswana" "setswanas" ;
+lin sett_N = mkN "sett" "setts" ;
+lin settee_N = mkN "settee" "settees" ;
+lin setter_N = mkN "setter" "setters" ;
+lin setting_N = mkN "setting" "settings" ;
+lin settle_N = mkN "settle" "settles" ;
+lin settle_V = mkV "settle" "settled" "settled" ;
+lin settlement_N = mkN "settlement" "settlements" ;
+lin settler_N = mkN "settler" "settlers" ;
+lin settling_N = mkN "settling" "settlings" ;
+lin settlor_N = mkN "settlor" "settlors" ;
+lin setup_N = mkN "setup" "setups" ;
+lin sevenfold_A = mkAMost "sevenfold" "sevenfoldly" ;
+lin sevenfold_Adv = mkAdv "sevenfold" ;
+lin sever_V = mkV "sever" "severed" "severed" ;
+lin severally_Adv = mkAdv "severally" ;
+lin severalty_N = mkN "severalty" "severalties" ;
+lin severance_N = mkN "severance" "severances" ;
+lin severe_DUMMY_A = mkAMost "severe" "severely" ;
+lin severe_severer_A = mkA "severe" "severer" "severest" "severely" ;
+lin severity_N = mkN "severity" "severities" ;
+lin sew_sewed_V = mkV "sew" "sewed" "sewed" ;
+lin sew_sewn_V = mkV "sew" "sewed" "sewn" ;
+lin sewage_N = mkN "sewage" "sewages" ;
+lin sewage_farm_N = mkN "sewage-farm" "sewage-farms" ;
+lin sewage_works_N = mkN "sewage-works" "sewage-works" ;
+lin sewer_N = mkN "sewer" "sewers" ;
+lin sewer_gas_N = mkN "sewer-gas" "sewer-gases" ;
+lin sewer_rat_N = mkN "sewer-rat" "sewer-rats" ;
+lin sewerage_N = mkN "sewerage" "sewerages" ;
+lin sewing_N = mkN "sewing" "sewings" ;
+lin sewing_machine_N = mkN "sewing-machine" "sewing-machines" ;
+lin sex_N = mkN "sex" "sexes" ;
+lin sex_V = mkV "sex" "sexed" "sexed" ;
+lin sex_starved_A = mkAMost "sex-starved" "sex-starvedly" ;
+lin sexagenarian_A = mkAMost "sexagenarian" "sexagenarianly" ;
+lin sexagenarian_N = mkN "sexagenarian" "sexagenarians" ;
+lin sexagesimal_A = mkAMost "sexagesimal" "sexagesimally" ;
+lin sexcapade_N = mkN "sexcapade" "sexcapades" ;
+lin sexism_N = mkN "sexism" "sexisms" ;
+lin sexist_A = mkAMost "sexist" "sexistly" ;
+lin sexist_N = mkN "sexist" "sexists" ;
+lin sexless_A = mkAMost "sexless" "sexlessly" ;
+lin sexploitation_N = mkN "sexploitation" "sexploitations" ;
+lin sext_N = mkN "sext" "sexts" ;
+lin sextant_N = mkN "sextant" "sextants" ;
+lin sextet_N = mkN "sextet" "sextets" ;
+lin sextette_N = mkN "sextette" "sextettes" ;
+lin sextillion_N = mkN "sextillion" "sextillions" ;
+lin sexton_N = mkN "sexton" "sextons" ;
+lin sextuple_A = mkAMost "sextuple" "sextuplely" ;
+lin sexual_A = mkAMost "sexual" "sexually" ;
+lin sexuality_N = mkN "sexuality" "sexualities" ;
+lin sexy_A = mkA "sexy" "sexier" "sexiest" "sexily" ;
+lin seychellois_A = mkAMost "seychellois" "seychelloisly" ;
+lin seychellois_N = mkN "seychellois" "seychellois" ;
+lin señor_N = mkN "señor" "IRREG" ;
+lin sforzando_N = mkN "sforzando" "sforzandoes" ;
+lin sgraffito_N = mkN "sgraffito" "sgraffitoes" ;
+lin shabbiness_N = mkN "shabbiness" "shabbinesses" ;
+lin shabby_A = mkA "shabby" "shabbier" "shabbiest" "shabbily" ;
+lin shabby_genteel_A = mkAMost "shabby-genteel" "shabby-genteelly" ;
+lin shack_N = mkN "shack" "shacks" ;
+lin shack_V = mkV "shack" "shacked" "shacked" ;
+lin shackle_N = mkN "shackle" "shackles" ;
+lin shackle_V = mkV "shackle" "shackled" "shackled" ;
+lin shad_N = mkN "shad" "shad" ;
+lin shaddock_N = mkN "shaddock" "shaddocks" ;
+lin shade_N = mkN "shade" "shades" ;
+lin shade_V = mkV "shade" "shaded" "shaded" ;
+lin shade_tree_N = mkN "shade-tree" "shade-trees" ;
+lin shadiness_N = mkN "shadiness" "shadinesses" ;
+lin shading_N = mkN "shading" "shadings" ;
+lin shadow_N = mkN "shadow" "shadows" ;
+lin shadow_V = mkV "shadow" "shadowed" "shadowed" ;
+lin shadow_boxing_N = mkN "shadow-boxing" "shadow-boxings" ;
+lin shadowboxing_N = mkN "shadowboxing" "shadowboxings" ;
+lin shadowing_N = mkN "shadowing" "shadowings" ;
+lin shadowy_A = mkA "shadowy" "shadowier" "shadowiest" "shadowily" ;
+lin shady_A = mkA "shady" "shadier" "shadiest" "shadily" ;
+lin shaft_N = mkN "shaft" "shafts" ;
+lin shag_N = mkN "shag" "shags" ;
+lin shag_V = mkV "shag" "shagged" "shagged" ;
+lin shagbark_N = mkN "shagbark" "shagbarks" ;
+lin shagginess_N = mkN "shagginess" "shagginesses" ;
+lin shagging_N = mkN "shagging" "shaggings" ;
+lin shaggy_A = mkA "shaggy" "shaggier" "shaggiest" "shaggily" ;
+lin shaggymane_N = mkN "shaggymane" "shaggymanes" ;
+lin shah_N = mkN "shah" "shahs" ;
+lin shahadah_N = mkN "shahadah" "shahadahs" ;
+lin shaheed_N = mkN "shaheed" "shaheeds" ;
+lin shaitan_N = mkN "shaitan" "shaitans" ;
+lin shakable_A = mkAMost "shakable" "shakably" ;
+lin shake_N = mkN "shake" "shakes" ;
+lin shake_V = mkV "shake" "shook" "shaken" ;
+lin shake_up_N = mkN "shake-up" "shake-ups" ;
+lin shakedown_A = mkAMost "shakedown" "shakedownly" ;
+lin shakedown_N = mkN "shakedown" "shakedowns" ;
+lin shakeout_N = mkN "shakeout" "shakeouts" ;
+lin shaker_N = mkN "shaker" "shakers" ;
+lin shakespearian_A = mkAMost "shakespearian" "shakespearianly" ;
+lin shakiness_N = mkN "shakiness" "shakinesses" ;
+lin shaking_N = mkN "shaking" "shakings" ;
+lin shaky_A = mkA "shaky" "shakier" "shakiest" "shakily" ;
+lin shale_N = mkN "shale" "shales" ;
+lin shale_oil_N = mkN "shale-oil" "shale-oils" ;
+lin shallot_N = mkN "shallot" "shallots" ;
+lin shallow_A = mkA "shallow" "shallower" "shallowest" "shallowly" ;
+lin shallow_N = mkN "shallow" "shallows" ;
+lin shallow_V = mkV "shallow" "shallowed" "shallowed" ;
+lin shallowness_N = mkN "shallowness" "shallownesses" ;
+lin shallu_N = mkN "shallu" "shallus" ;
+lin sham_A = mkAMost "sham" "shamly" ;
+lin sham_N = mkN "sham" "IRREG" ;
+lin sham_V = mkV "sham" "shammed" "shammed" ;
+lin shaman_N = mkN "shaman" "shamans" ;
+lin shamanism_N = mkN "shamanism" "shamanisms" ;
+lin shamanist_A = mkAMost "shamanist" "shamanistly" ;
+lin shamble_N = mkN "shamble" "shambles" ;
+lin shamble_V = mkV "shamble" "shambled" "shambled" ;
+lin shambles_N = mkN "shambles" "IRREG" ;
+lin shambolic_A = mkAMost "shambolic" "shambolicly" ;
+lin shambolically_Adv = mkAdv "shambolically" ;
+lin shame_N = mkN "shame" "shames" ;
+lin shame_V = mkV "shame" "shamed" "shamed" ;
+lin shame_making_A = mkAMost "shame-making" "shame-makingly" ;
+lin shamefaced_A = mkAMost "shamefaced" "shamefacedly" ;
+lin shamefacedness_N = mkN "shamefacedness" "shamefacednesses" ;
+lin shameful_A = mkAMost "shameful" "shamefully" ;
+lin shamefulness_N = mkN "shamefulness" "shamefulnesses" ;
+lin shameless_A = mkAMost "shameless" "shamelessly" ;
+lin shamelessness_N = mkN "shamelessness" "shamelessnesses" ;
+lin shammy_N = mkN "shammy" "shammies" ;
+lin shampoo_N = mkN "shampoo" "shampoos" ;
+lin shampoo_V = mkV "shampoo" "shampooed" "shampooed" ;
+lin shamrock_N = mkN "shamrock" "shamrocks" ;
+lin shandy_N = mkN "shandy" "shandies" ;
+lin shandygaff_N = mkN "shandygaff" "shandygaffs" ;
+lin shanghai_V = mkV "shanghai" "shanghaied" "shanghaied" ;
+lin shanghaier_N = mkN "shanghaier" "shanghaiers" ;
+lin shank_N = mkN "shank" "shanks" ;
+lin shanny_N = mkN "shanny" "shannies" ;
+lin shantung_N = mkN "shantung" "shantungs" ;
+lin shanty_N = mkN "shanty" "shanties" ;
+lin shantytown_N = mkN "shantytown" "shantytowns" ;
+lin shape_N = mkN "shape" "shapes" ;
+lin shape_V = mkV "shape" "shaped" "shaped" ;
+lin shapeless_A = mkAMost "shapeless" "shapelessly" ;
+lin shapelessness_N = mkN "shapelessness" "shapelessnesses" ;
+lin shapely_A = mkA "shapely" "shapelier" "shapeliest" "shapelily" ;
+lin shaper_N = mkN "shaper" "shapers" ;
+lin shaping_N = mkN "shaping" "shapings" ;
+lin shard_N = mkN "shard" "shards" ;
+lin share_N = mkN "share" "shares" ;
+lin share_V = mkV "share" "shared" "shared" ;
+lin share_out_N = mkN "share-out" "share-outs" ;
+lin sharecropper_N = mkN "sharecropper" "sharecroppers" ;
+lin shareholder_N = mkN "shareholder" "shareholders" ;
+lin shareholding_N = mkN "shareholding" "shareholdings" ;
+lin shareware_N = mkN "shareware" "sharewares" ;
+lin shariah_N = mkN "shariah" "shariahs" ;
+lin sharing_N = mkN "sharing" "sharings" ;
+lin shark_N = mkN "shark" "sharks" ;
+lin sharkskin_N = mkN "sharkskin" "sharkskins" ;
+lin sharksucker_N = mkN "sharksucker" "sharksuckers" ;
+lin sharp_A = mkA "sharp" "sharper" "sharpest" "sharply" ;
+lin sharp_Adv = mkAdv "sharp" ;
+lin sharp_N = mkN "sharp" "sharps" ;
+lin sharp_eyed_A = mkAMost "sharp-eyed" "sharp-eyedly" ;
+lin sharp_set_A = mkAMost "sharp-set" "sharp-setly" ;
+lin sharp_sighted_A = mkAMost "sharp-sighted" "sharp-sightedly" ;
+lin sharp_witted_A = mkAMost "sharp-witted" "sharp-wittedly" ;
+lin sharpen_V = mkV "sharpen" "sharpened" "sharpened" ;
+lin sharpener_N = mkN "sharpener" "sharpeners" ;
+lin sharper_N = mkN "sharper" "sharpers" ;
+lin sharpie_N = mkN "sharpie" "sharpies" ;
+lin sharpness_N = mkN "sharpness" "sharpnesses" ;
+lin sharpshooter_N = mkN "sharpshooter" "sharpshooters" ;
+lin shatter_V = mkV "shatter" "shattered" "shattered" ;
+lin shatterproof_A = mkAMost "shatterproof" "shatterproofly" ;
+lin shave_N = mkN "shave" "shaves" ;
+lin shave_shaved_V = mkV "shave" "shaved" "shaved" ;
+lin shave_shaven_V = mkV "shave" "shaved" "shaven" ;
+lin shaven_A = mkAMost "shaven" "shavenly" ;
+lin shaver_N = mkN "shaver" "shavers" ;
+lin shavian_A = mkAMost "shavian" "shavianly" ;
+lin shavian_N = mkN "shavian" "shavians" ;
+lin shaving_brush_N = mkN "shaving-brush" "shaving-brushes" ;
+lin shawl_N = mkN "shawl" "shawls" ;
+lin shawm_N = mkN "shawm" "shawms" ;
+lin she_goat_N = mkN "she-goat" "she-goats" ;
+lin sheaf_N = mkN "sheaf" "sheaves" ;
+lin shear_N = mkN "shear" "shears" ;
+lin shear_V = mkV "shear" "sheared" "sheared" ;
+lin shearer_N = mkN "shearer" "shearers" ;
+lin shearing_N = mkN "shearing" "shearings" ;
+lin shears_N = mkN "shears" "shearses" ;
+lin shearwater_N = mkN "shearwater" "shearwaters" ;
+lin sheath_N = mkN "sheath" "sheaths" ;
+lin sheath_knife_N = mkN "sheath-knife" "sheath-knives" ;
+lin sheathe_V = mkV "sheathe" "sheathed" "sheathed" ;
+lin sheathing_N = mkN "sheathing" "sheathings" ;
+lin shebang_N = mkN "shebang" "IRREG" ;
+lin shebeen_N = mkN "shebeen" "shebeens" ;
+lin shed_N = mkN "shed" "sheds" ;
+lin shed_V = mkV "shed" "shed" "shed" ;
+lin shedder_N = mkN "shedder" "shedders" ;
+lin shedding_N = mkN "shedding" "sheddings" ;
+lin sheen_N = mkN "sheen" "sheens" ;
+lin sheep_N = mkN "sheep" "sheep" ;
+lin sheepdog_N = mkN "sheepdog" "sheepdogs" ;
+lin sheepfold_N = mkN "sheepfold" "sheepfolds" ;
+lin sheepherder_N = mkN "sheepherder" "sheepherders" ;
+lin sheepish_A = mkAMost "sheepish" "sheepishly" ;
+lin sheepishness_N = mkN "sheepishness" "sheepishnesses" ;
+lin sheeplike_A = mkAMost "sheeplike" "sheeplikely" ;
+lin sheepman_N = mkN "sheepman" "sheepmen" ;
+lin sheeprun_N = mkN "sheeprun" "sheepruns" ;
+lin sheepshank_N = mkN "sheepshank" "sheepshanks" ;
+lin sheepshead_N = mkN "sheepshead" "sheepsheads" ;
+lin sheepshearing_N = mkN "sheepshearing" "sheepshearings" ;
+lin sheepskin_N = mkN "sheepskin" "sheepskins" ;
+lin sheepwalk_N = mkN "sheepwalk" "sheepwalks" ;
+lin sheer_A = mkA "sheer" "sheerer" "sheerest" "sheerly" ;
+lin sheer_Adv = mkAdv "sheer" ;
+lin sheer_V = mkV "sheer" "sheered" "sheered" ;
+lin sheet_N = mkN "sheet" "sheets" ;
+lin sheet_anchor_N = mkN "sheet-anchor" "sheet-anchors" ;
+lin sheet_lightning_N = mkN "sheet-lightning" "sheet-lightnings" ;
+lin sheeting_N = mkN "sheeting" "sheetings" ;
+lin sheetlike_A = mkAMost "sheetlike" "sheetlikely" ;
+lin shegetz_N = mkN "shegetz" "shegetzes" ;
+lin sheik_N = mkN "sheik" "sheiks" ;
+lin sheika_N = mkN "sheika" "sheikas" ;
+lin sheikdom_N = mkN "sheikdom" "sheikdoms" ;
+lin sheikh_N = mkN "sheikh" "sheikhs" ;
+lin sheikhdom_N = mkN "sheikhdom" "sheikhdoms" ;
+lin shekel_N = mkN "shekel" "shekels" ;
+lin sheldrake_N = mkN "sheldrake" "sheldrakes" ;
+lin shelduck_N = mkN "shelduck" "shelducks" ;
+lin shelf_N = mkN "shelf" "shelves" ;
+lin shelfful_N = mkN "shelfful" "shelffuls" ;
+lin shelflike_A = mkAMost "shelflike" "shelflikely" ;
+lin shell_N = mkN "shell" "shells" ;
+lin shell_V = mkV "shell" "shelled" "shelled" ;
+lin shell_shock_N = mkN "shell-shock" "shell-shocks" ;
+lin shellac_N = mkN "shellac" "shellacs" ;
+lin shellac_V = mkV "shellac" "IRREG" "IRREG" ;
+lin sheller_N = mkN "sheller" "shellers" ;
+lin shellfire_N = mkN "shellfire" "shellfires" ;
+lin shellfish_N = mkN "shellfish" "shellfish" ;
+lin shellflower_N = mkN "shellflower" "shellflowers" ;
+lin shellproof_A = mkAMost "shellproof" "shellproofly" ;
+lin shelter_N = mkN "shelter" "shelters" ;
+lin shelter_V = mkV "shelter" "sheltered" "sheltered" ;
+lin shelve_V = mkV "shelve" "shelved" "shelved" ;
+lin shelver_N = mkN "shelver" "shelvers" ;
+lin shepherd_N = mkN "shepherd" "shepherds" ;
+lin shepherd_V = mkV "shepherd" "shepherded" "shepherded" ;
+lin shepherdess_N = mkN "shepherdess" "shepherdesses" ;
+lin sheraton_N = mkN "sheraton" "sheratons" ;
+lin sherbert_N = mkN "sherbert" "sherberts" ;
+lin sherbet_N = mkN "sherbet" "sherbets" ;
+lin sheriff_N = mkN "sheriff" "sheriffs" ;
+lin sherry_N = mkN "sherry" "sherries" ;
+lin shew_V = mkV "shew" "shewed" "shewed" ;
+lin shibboleth_N = mkN "shibboleth" "shibboleths" ;
+lin shield_N = mkN "shield" "shields" ;
+lin shield_V = mkV "shield" "shielded" "shielded" ;
+lin shielding_N = mkN "shielding" "shieldings" ;
+lin shift_N = mkN "shift" "shifts" ;
+lin shift_V = mkV "shift" "shifted" "shifted" ;
+lin shiftiness_N = mkN "shiftiness" "shiftinesses" ;
+lin shiftless_A = mkAMost "shiftless" "shiftlessly" ;
+lin shiftlessness_N = mkN "shiftlessness" "shiftlessnesses" ;
+lin shifty_A = mkA "shifty" "shiftier" "shiftiest" "shiftily" ;
+lin shigella_N = mkN "shigella" "shigellas" ;
+lin shigellosis_N = mkN "shigellosis" "shigellosises" ;
+lin shiitake_N = mkN "shiitake" "shiitakes" ;
+lin shiksa_N = mkN "shiksa" "shiksas" ;
+lin shill_N = mkN "shill" "shills" ;
+lin shillelagh_N = mkN "shillelagh" "shillelaghs" ;
+lin shilling_N = mkN "shilling" "shillings" ;
+lin shillyshally_N = mkN "shillyshally" "shillyshallies" ;
+lin shillyshally_V = mkV "shillyshally" "shillyshallied" "shillyshallied" ;
+lin shim_N = mkN "shim" "shims" ;
+lin shimmer_N = mkN "shimmer" "shimmers" ;
+lin shimmer_V = mkV "shimmer" "shimmered" "shimmered" ;
+lin shimmery_A = mkAMost "shimmery" "shimmerily" ;
+lin shimmy_N = mkN "shimmy" "shimmies" ;
+lin shin_N = mkN "shin" "shins" ;
+lin shin_V = mkV "shin" "shinned" "shinned" ;
+lin shinbone_N = mkN "shinbone" "shinbones" ;
+lin shindig_N = mkN "shindig" "shindigs" ;
+lin shindy_N = mkN "shindy" "shindies" ;
+lin shine_N = mkN "shine" "shines" ;
+lin shine_V = mkV "shine" "shone" "shone" ;
+lin shiner_N = mkN "shiner" "shiners" ;
+lin shingle_N = mkN "shingle" "shingles" ;
+lin shingle_V = mkV "shingle" "shingled" "shingled" ;
+lin shingler_N = mkN "shingler" "shinglers" ;
+lin shingles_N = mkN "shingles" "shingles" ;
+lin shingling_N = mkN "shingling" "shinglings" ;
+lin shingly_A = mkA "shingly" "shinglier" "shingliest" "shinglily" ;
+lin shinguard_N = mkN "shinguard" "shinguards" ;
+lin shininess_N = mkN "shininess" "shininesses" ;
+lin shining_N = mkN "shining" "shinings" ;
+lin shinny_N = mkN "shinny" "shinnies" ;
+lin shinplaster_N = mkN "shinplaster" "shinplasters" ;
+lin shiny_A = mkA "shiny" "shinier" "shiniest" "shinily" ;
+lin ship's_chandler_N = mkN "ship's-chandler" "ship's-chandlers" ;
+lin ship_N = mkN "ship" "ships" ;
+lin ship_V = mkV "ship" "shipped" "shipped" ;
+lin ship_breaker_N = mkN "ship-breaker" "ship-breakers" ;
+lin ship_canal_N = mkN "ship-canal" "ship-canals" ;
+lin shipboard_A = mkAMost "shipboard" "shipboardly" ;
+lin shipbroker_N = mkN "shipbroker" "shipbrokers" ;
+lin shipbuilder_N = mkN "shipbuilder" "shipbuilders" ;
+lin shipbuilding_N = mkN "shipbuilding" "shipbuildings" ;
+lin shipload_N = mkN "shipload" "shiploads" ;
+lin shipmate_N = mkN "shipmate" "shipmates" ;
+lin shipment_N = mkN "shipment" "shipments" ;
+lin shipowner_N = mkN "shipowner" "shipowners" ;
+lin shipper_N = mkN "shipper" "shippers" ;
+lin shipping_N = mkN "shipping" "shippings" ;
+lin shipping_agent_N = mkN "shipping-agent" "shipping-agents" ;
+lin shipping_office_N = mkN "shipping-office" "shipping-offices" ;
+lin shipshape_A = mkAMost "shipshape" "shipshapely" ;
+lin shipshape_Adv = mkAdv "shipshape" ;
+lin shipside_N = mkN "shipside" "shipsides" ;
+lin shipway_N = mkN "shipway" "shipways" ;
+lin shipworm_N = mkN "shipworm" "shipworms" ;
+lin shipwreck_N = mkN "shipwreck" "shipwrecks" ;
+lin shipwreck_V = mkV "shipwreck" "shipwrecked" "shipwrecked" ;
+lin shipwright_N = mkN "shipwright" "shipwrights" ;
+lin shipyard_N = mkN "shipyard" "shipyards" ;
+lin shire_N = mkN "shire" "shires" ;
+lin shirk_V = mkV "shirk" "shirked" "shirked" ;
+lin shirker_N = mkN "shirker" "shirkers" ;
+lin shirking_N = mkN "shirking" "shirkings" ;
+lin shirring_N = mkN "shirring" "shirrings" ;
+lin shirt_N = mkN "shirt" "shirts" ;
+lin shirt_front_N = mkN "shirt-front" "shirt-fronts" ;
+lin shirtdress_N = mkN "shirtdress" "shirtdresses" ;
+lin shirtfront_N = mkN "shirtfront" "shirtfronts" ;
+lin shirting_N = mkN "shirting" "shirtings" ;
+lin shirtmaker_N = mkN "shirtmaker" "shirtmakers" ;
+lin shirtsleeve_N = mkN "shirtsleeve" "shirtsleeves" ;
+lin shirtsleeves_N = mkN "shirtsleeves" "shirtsleeveses" ;
+lin shirttail_N = mkN "shirttail" "shirttails" ;
+lin shirtwaist_N = mkN "shirtwaist" "shirtwaists" ;
+lin shirtwaister_N = mkN "shirtwaister" "shirtwaisters" ;
+lin shirty_A = mkA "shirty" "shirtier" "shirtiest" "shirtily" ;
+lin shish_kebab_N = mkN "shish kebab" "shish kebabs" ;
+lin shit_N = mkN "shit" "shits" ;
+lin shit_V = mkV "shit" "shitted" "shitted" ;
+lin shitless_A = mkAMost "shitless" "shitlessly" ;
+lin shittah_N = mkN "shittah" "shittahs" ;
+lin shittimwood_N = mkN "shittimwood" "shittimwoods" ;
+lin shiv_N = mkN "shiv" "shivs" ;
+lin shiva_N = mkN "shiva" "shivas" ;
+lin shivaree_N = mkN "shivaree" "shivarees" ;
+lin shiver_N = mkN "shiver" "shivers" ;
+lin shiver_V = mkV "shiver" "shivered" "shivered" ;
+lin shivery_A = mkAMost "shivery" "shiverily" ;
+lin shmegegge_N = mkN "shmegegge" "shmegegges" ;
+lin shmooze_N = mkN "shmooze" "shmoozes" ;
+lin shoal_N = mkN "shoal" "shoals" ;
+lin shoal_V = mkV "shoal" "shoaled" "shoaled" ;
+lin shock_Adv = mkAdv "shock" ;
+lin shock_N = mkN "shock" "shocks" ;
+lin shock_V = mkV "shock" "shocked" "shocked" ;
+lin shock_brigade_N = mkN "shock-brigade" "shock-brigades" ;
+lin shock_headed_A = mkAMost "shock-headed" "shock-headedly" ;
+lin shock_worker_N = mkN "shock-worker" "shock-workers" ;
+lin shockable_A = mkAMost "shockable" "shockably" ;
+lin shocker_N = mkN "shocker" "shockers" ;
+lin shocking_A = mkAMost "shocking" "shockingly" ;
+lin shod_A = mkA "shod" "shodder" "shoddest" "shodly" ;
+lin shoddiness_N = mkN "shoddiness" "shoddinesses" ;
+lin shoddy_A = mkA "shoddy" "shoddier" "shoddiest" "shoddily" ;
+lin shoddy_N = mkN "shoddy" "shoddies" ;
+lin shoe_N = mkN "shoe" "shoes" ;
+lin shoe_leather_N = mkN "shoe-leather" "shoe-leathers" ;
+lin shoe_shod_V = mkV "shoe" "shoed" "shod" ;
+lin shoe_shoed_V = mkV "shoe" "shoed" "shoed" ;
+lin shoebill_N = mkN "shoebill" "shoebills" ;
+lin shoeblack_N = mkN "shoeblack" "shoeblacks" ;
+lin shoebox_N = mkN "shoebox" "shoeboxes" ;
+lin shoeful_N = mkN "shoeful" "shoefuls" ;
+lin shoehorn_N = mkN "shoehorn" "shoehorns" ;
+lin shoehorn_V = mkV "shoehorn" "shoehorned" "shoehorned" ;
+lin shoelace_N = mkN "shoelace" "shoelaces" ;
+lin shoemaker_N = mkN "shoemaker" "shoemakers" ;
+lin shoemaking_N = mkN "shoemaking" "shoemakings" ;
+lin shoeshine_N = mkN "shoeshine" "shoeshines" ;
+lin shoestring_N = mkN "shoestring" "shoestrings" ;
+lin shoetree_N = mkN "shoetree" "shoetrees" ;
+lin shofar_N = mkN "shofar" "shofars" ;
+lin shogi_N = mkN "shogi" "shogis" ;
+lin shogun_N = mkN "shogun" "shoguns" ;
+lin shoji_N = mkN "shoji" "shojis" ;
+lin shoo_V = mkV "shoo" "shooed" "shooed" ;
+lin shoofly_N = mkN "shoofly" "shooflies" ;
+lin shook_N = mkN "shook" "shooks" ;
+lin shoot_N = mkN "shoot" "shoots" ;
+lin shoot_V = mkV "shoot" "shot" "shot" ;
+lin shooter_N = mkN "shooter" "shooters" ;
+lin shooting_N = mkN "shooting" "shootings" ;
+lin shooting_box_N = mkN "shooting-box" "shooting-boxes" ;
+lin shooting_brake_N = mkN "shooting-brake" "shooting-brakes" ;
+lin shooting_gallery_N = mkN "shooting-gallery" "shooting-galleries" ;
+lin shooting_range_N = mkN "shooting-range" "shooting-ranges" ;
+lin shooting_stick_N = mkN "shooting-stick" "shooting-sticks" ;
+lin shop_N = mkN "shop" "shops" ;
+lin shop_V = mkV "shop" "shopped" "shopped" ;
+lin shop_assistant_N = mkN "shop-assistant" "shop-assistants" ;
+lin shop_bell_N = mkN "shop-bell" "shop-bells" ;
+lin shop_boy_N = mkN "shop-boy" "shop-boys" ;
+lin shop_front_N = mkN "shop-front" "shop-fronts" ;
+lin shop_girl_N = mkN "shop-girl" "shop-girls" ;
+lin shop_steward_N = mkN "shop-steward" "shop-stewards" ;
+lin shopaholic_N = mkN "shopaholic" "shopaholics" ;
+lin shopfront_N = mkN "shopfront" "shopfronts" ;
+lin shopkeeper_N = mkN "shopkeeper" "shopkeepers" ;
+lin shoplift_V = mkV "shoplift" "shoplifted" "shoplifted" ;
+lin shoplifter_N = mkN "shoplifter" "shoplifters" ;
+lin shoplifting_N = mkN "shoplifting" "shopliftings" ;
+lin shopper_N = mkN "shopper" "shoppers" ;
+lin shopping_N = mkN "shopping" "shoppings" ;
+lin shopsoiled_A = mkAMost "shopsoiled" "shopsoiledly" ;
+lin shopwalker_N = mkN "shopwalker" "shopwalkers" ;
+lin shopwindow_N = mkN "shopwindow" "shopwindows" ;
+lin shopworn_A = mkAMost "shopworn" "shopwornly" ;
+lin shore_N = mkN "shore" "shores" ;
+lin shore_V = mkV "shore" "shored" "shored" ;
+lin shorebird_N = mkN "shorebird" "shorebirds" ;
+lin shoreline_N = mkN "shoreline" "shorelines" ;
+lin shoring_N = mkN "shoring" "shorings" ;
+lin shorn_V = mkV "shorn" "shorned" "shorned" ;
+lin short_A = mkA "short" "shorter" "shortest" "shortly" ;
+lin short_Adv = mkAdv "short" ;
+lin short_N = mkN "short" "shorts" ;
+lin short_V = mkV "short" "shorted" "shorted" ;
+lin short_change_V = mkV "short-change" "short-changed" "short-changed" ;
+lin short_circuit_N = mkN "short-circuit" "short-circuits" ;
+lin short_circuit_V = mkV "short-circuit" "short-circuited" "short-circuited" ;
+lin short_dated_A = mkAMost "short-dated" "short-datedly" ;
+lin short_handed_A = mkAMost "short-handed" "short-handedly" ;
+lin short_lived_A = mkAMost "short-lived" "short-livedly" ;
+lin short_range_A = mkAMost "short-range" "short-rangely" ;
+lin short_sighted_A = mkAMost "short-sighted" "short-sightedly" ;
+lin short_tempered_A = mkAMost "short-tempered" "short-temperedly" ;
+lin short_term_A = mkAMost "short-term" "short-termly" ;
+lin short_winded_A = mkAMost "short-winded" "short-windedly" ;
+lin shortage_N = mkN "shortage" "shortages" ;
+lin shortbread_N = mkN "shortbread" "shortbreads" ;
+lin shortcake_N = mkN "shortcake" "shortcakes" ;
+lin shortcoming_N = mkN "shortcoming" "shortcomings" ;
+lin shortcut_N = mkN "shortcut" "shortcuts" ;
+lin shorten_V = mkV "shorten" "shortened" "shortened" ;
+lin shortener_N = mkN "shortener" "shorteners" ;
+lin shortening_N = mkN "shortening" "shortenings" ;
+lin shortfall_N = mkN "shortfall" "shortfalls" ;
+lin shortgrass_N = mkN "shortgrass" "shortgrasses" ;
+lin shorthand_A = mkAMost "shorthand" "shorthandly" ;
+lin shorthand_N = mkN "shorthand" "shorthands" ;
+lin shorthorn_N = mkN "shorthorn" "shorthorns" ;
+lin shortia_N = mkN "shortia" "shortias" ;
+lin shortish_A = mkAMost "shortish" "shortishly" ;
+lin shortlist_N = mkN "shortlist" "shortlists" ;
+lin shortlist_V = mkV "shortlist" "shortlisted" "shortlisted" ;
+lin shortness_N = mkN "shortness" "shortnesses" ;
+lin shortstop_N = mkN "shortstop" "shortstops" ;
+lin shot_N = mkN "shot" "shots" ;
+lin shot_V = mkV "shot" "shotted" "shotted" ;
+lin shot_put_N = mkN "shot-put" "shot-puts" ;
+lin shot_tower_N = mkN "shot-tower" "shot-towers" ;
+lin shotgun_N = mkN "shotgun" "shotguns" ;
+lin shoulder_N = mkN "shoulder" "shoulders" ;
+lin shoulder_V = mkV "shoulder" "shouldered" "shouldered" ;
+lin shoulder_blade_N = mkN "shoulder-blade" "shoulder-blades" ;
+lin shoulder_flash_N = mkN "shoulder-flash" "shoulder-flashes" ;
+lin shoulder_strap_N = mkN "shoulder-strap" "shoulder-straps" ;
+lin shout_N = mkN "shout" "shouts" ;
+lin shout_V = mkV "shout" "shouted" "shouted" ;
+lin shouting_N = mkN "shouting" "shoutings" ;
+lin shove_N = mkN "shove" "shoves" ;
+lin shove_V = mkV "shove" "shoved" "shoved" ;
+lin shove_ha'penny_N = mkN "shove-ha'penny" "shove-ha'pennies" ;
+lin shovel_N = mkN "shovel" "shovels" ;
+lin shovel_V = mkV "shovel" "shovelled" "shovelled" ;
+lin shovel_board_N = mkN "shovel-board" "shovel-boards" ;
+lin shoveler_N = mkN "shoveler" "shovelers" ;
+lin shovelful_N = mkN "shovelful" "shovelfuls" ;
+lin shovelhead_N = mkN "shovelhead" "shovelheads" ;
+lin show_N = mkN "show" "shows" ;
+lin show_business_N = mkN "show-business" "show-businesses" ;
+lin show_off_N = mkN "show-off" "show-offs" ;
+lin show_showed_V = mkV "show" "showed" "showed" ;
+lin show_shown_V = mkV "show" "showed" "shown" ;
+lin show_window_N = mkN "show-window" "show-windows" ;
+lin showbiz_N = mkN "showbiz" "showbizes" ;
+lin showboat_N = mkN "showboat" "showboats" ;
+lin showcase_N = mkN "showcase" "showcases" ;
+lin showdown_N = mkN "showdown" "showdowns" ;
+lin shower_N = mkN "shower" "showers" ;
+lin shower_V = mkV "shower" "showered" "showered" ;
+lin shower_bath_N = mkN "shower-bath" "shower-baths" ;
+lin showerhead_N = mkN "showerhead" "showerheads" ;
+lin showery_A = mkA "showery" "showerier" "showeriest" "showerily" ;
+lin showgirl_N = mkN "showgirl" "showgirls" ;
+lin showiness_N = mkN "showiness" "showinesses" ;
+lin showing_N = mkN "showing" "showings" ;
+lin showjumping_N = mkN "showjumping" "showjumpings" ;
+lin showman_N = mkN "showman" "showmen" ;
+lin showmanship_N = mkN "showmanship" "showmanships" ;
+lin showplace_N = mkN "showplace" "showplaces" ;
+lin showroom_N = mkN "showroom" "showrooms" ;
+lin showy_A = mkA "showy" "showier" "showiest" "showily" ;
+lin shrapnel_N = mkN "shrapnel" "shrapnels" ;
+lin shred_N = mkN "shred" "shreds" ;
+lin shred_V = mkV "shred" "shredded" "shredded" ;
+lin shredder_N = mkN "shredder" "shredders" ;
+lin shrew_N = mkN "shrew" "shrews" ;
+lin shrew_mouse_N = mkN "shrew-mouse" "shrew-mice" ;
+lin shrewd_A = mkA "shrewd" "shrewder" "shrewdest" "shrewdly" ;
+lin shrewdness_N = mkN "shrewdness" "shrewdnesses" ;
+lin shrewish_A = mkAMost "shrewish" "shrewishly" ;
+lin shrewishness_N = mkN "shrewishness" "shrewishnesses" ;
+lin shriek_N = mkN "shriek" "shrieks" ;
+lin shriek_V = mkV "shriek" "shrieked" "shrieked" ;
+lin shrift_N = mkN "shrift" "shrifts" ;
+lin shrike_N = mkN "shrike" "shrikes" ;
+lin shrill_A = mkA "shrill" "shriller" "shrillest" "shrilly" ;
+lin shrill_V = mkV "shrill" "shrilled" "shrilled" ;
+lin shrilling_N = mkN "shrilling" "shrillings" ;
+lin shrillness_N = mkN "shrillness" "shrillnesses" ;
+lin shrimp_N = mkN "shrimp" "shrimps" ;
+lin shrimp_V = mkV "shrimp" "shrimped" "shrimped" ;
+lin shrimper_N = mkN "shrimper" "shrimpers" ;
+lin shrimpfish_N = mkN "shrimpfish" "shrimpfishes" ;
+lin shrine_N = mkN "shrine" "shrines" ;
+lin shrine_V = mkV "shrine" "shrined" "shrined" ;
+lin shrink_N = mkN "shrink" "shrinks" ;
+lin shrink_V = mkV "shrink" "shrank" "shrunk" ;
+lin shrinkable_A = mkAMost "shrinkable" "shrinkably" ;
+lin shrinkage_N = mkN "shrinkage" "shrinkages" ;
+lin shrinking_N = mkN "shrinking" "shrinkings" ;
+lin shrive_V = mkV "shrive" "shrived" "shrived" ;
+lin shrivel_V = mkV "shrivel" "shrivelled" "shrivelled" ;
+lin shriveled_A = mkAMost "shriveled" "shriveledly" ;
+lin shroud_N = mkN "shroud" "shrouds" ;
+lin shroud_V = mkV "shroud" "shrouded" "shrouded" ;
+lin shrove_tuesday_N = mkN "shrove tuesday" "shrove tuesdays" ;
+lin shrub_N = mkN "shrub" "shrubs" ;
+lin shrubbery_N = mkN "shrubbery" "shrubberies" ;
+lin shrubby_A = mkA "shrubby" "shrubbier" "shrubbiest" "shrubbily" ;
+lin shrublet_N = mkN "shrublet" "shrublets" ;
+lin shrug_N = mkN "shrug" "shrugs" ;
+lin shrug_V = mkV "shrug" "shrugged" "shrugged" ;
+lin shtik_N = mkN "shtik" "shtiks" ;
+lin shtikl_N = mkN "shtikl" "shtikls" ;
+lin shuck_N = mkN "shuck" "shucks" ;
+lin shuck_V = mkV "shuck" "shucked" "shucked" ;
+lin shucks_N = mkN "shucks" "shuckses" ;
+lin shudder_N = mkN "shudder" "shudders" ;
+lin shudder_V = mkV "shudder" "shuddered" "shuddered" ;
+lin shudderingly_Adv = mkAdv "shudderingly" ;
+lin shuffle_N = mkN "shuffle" "shuffles" ;
+lin shuffle_V = mkV "shuffle" "shuffled" "shuffled" ;
+lin shuffleboard_N = mkN "shuffleboard" "shuffleboards" ;
+lin shuffler_N = mkN "shuffler" "shufflers" ;
+lin shufti_N = mkN "shufti" "shuftis" ;
+lin shun_V = mkV "shun" "shunned" "shunned" ;
+lin shunt_N = mkN "shunt" "shunts" ;
+lin shunt_V = mkV "shunt" "shunted" "shunted" ;
+lin shunter_N = mkN "shunter" "shunters" ;
+lin shush_V = mkV "shush" "shushed" "shushed" ;
+lin shut_shut_V = mkV "shut" "shut" "shut" ;
+lin shut_shutted_V = mkV "shut" "shutted" "shutted" ;
+lin shutdown_N = mkN "shutdown" "shutdowns" ;
+lin shuteye_N = mkN "shuteye" "shuteyes" ;
+lin shutout_N = mkN "shutout" "shutouts" ;
+lin shutter_N = mkN "shutter" "shutters" ;
+lin shutter_V = mkV "shutter" "shuttered" "shuttered" ;
+lin shutterbug_N = mkN "shutterbug" "shutterbugs" ;
+lin shutting_N = mkN "shutting" "shuttings" ;
+lin shuttle_N = mkN "shuttle" "shuttles" ;
+lin shuttle_V = mkV "shuttle" "shuttled" "shuttled" ;
+lin shuttlecock_N = mkN "shuttlecock" "shuttlecocks" ;
+lin shy_A = mkA "shy" "shyer" "shyest" "shily" ;
+lin shy_N = mkN "shy" "shies" ;
+lin shy_V = mkV "shy" "shied" "shied" ;
+lin shyly_Adv = mkAdv "shyly" ;
+lin shyness_N = mkN "shyness" "shynesses" ;
+lin shyster_N = mkN "shyster" "shysters" ;
+lin sial_N = mkN "sial" "sials" ;
+lin sialadenitis_N = mkN "sialadenitis" "sialadenitises" ;
+lin sialolith_N = mkN "sialolith" "sialoliths" ;
+lin siamang_N = mkN "siamang" "siamangs" ;
+lin siamese_A = mkAMost "siamese" "siamesely" ;
+lin siamese_N = mkN "siamese" "siamese" ;
+lin siberian_A = mkAMost "siberian" "siberianly" ;
+lin sibilant_A = mkAMost "sibilant" "sibilantly" ;
+lin sibilant_N = mkN "sibilant" "sibilants" ;
+lin sibilation_N = mkN "sibilation" "sibilations" ;
+lin sibling_N = mkN "sibling" "siblings" ;
+lin sibyl_N = mkN "sibyl" "sibyls" ;
+lin sibylline_A = mkAMost "sibylline" "sibyllinely" ;
+lin sic_Adv = mkAdv "sic" ;
+lin sicilian_A = mkAMost "sicilian" "sicilianly" ;
+lin sicilian_N = mkN "sicilian" "sicilians" ;
+lin sick_A = mkAMost "sick" "sickly" ;
+lin sick_N = mkN "sick" "sicks" ;
+lin sick_V = mkV "sick" "sicked" "sicked" ;
+lin sick_benefit_N = mkN "sick-benefit" "sick-benefits" ;
+lin sick_berth_N = mkN "sick-berth" "sick-berths" ;
+lin sick_headache_N = mkN "sick-headache" "sick-headaches" ;
+lin sick_leave_N = mkN "sick-leave" "sick-leaves" ;
+lin sick_list_N = mkN "sick-list" "sick-lists" ;
+lin sick_parade_N = mkN "sick-parade" "sick-parades" ;
+lin sick_pay_N = mkN "sick-pay" "sick-pays" ;
+lin sick_room_N = mkN "sick-room" "sick-rooms" ;
+lin sickbay_N = mkN "sickbay" "sickbays" ;
+lin sickbed_N = mkN "sickbed" "sickbeds" ;
+lin sicken_V = mkV "sicken" "sickened" "sickened" ;
+lin sickish_A = mkAMost "sickish" "sickishly" ;
+lin sickle_N = mkN "sickle" "sickles" ;
+lin sicklepod_N = mkN "sicklepod" "sicklepods" ;
+lin sickly_A = mkA "sickly" "sicklier" "sickliest" "sicklily" ;
+lin sickness_N = mkN "sickness" "sicknesses" ;
+lin sickroom_N = mkN "sickroom" "sickrooms" ;
+lin side_N = mkN "side" "sides" ;
+lin side_V = mkV "side" "sided" "sided" ;
+lin side_chapel_N = mkN "side-chapel" "side-chapels" ;
+lin side_dish_N = mkN "side-dish" "side-dishes" ;
+lin side_drum_N = mkN "side-drum" "side-drums" ;
+lin side_face_Adv = mkAdv "side-face" ;
+lin side_glance_N = mkN "side-glance" "side-glances" ;
+lin side_road_N = mkN "side-road" "side-roads" ;
+lin side_saddle_Adv = mkAdv "side-saddle" ;
+lin side_saddle_N = mkN "side-saddle" "side-saddles" ;
+lin side_slip_N = mkN "side-slip" "side-slips" ;
+lin side_slip_V = mkV "side-slip" "side-slipped" "side-slipped" ;
+lin side_splitting_A = mkAMost "side-splitting" "side-splittingly" ;
+lin side_stroke_N = mkN "side-stroke" "side-strokes" ;
+lin side_view_N = mkN "side-view" "side-views" ;
+lin sidearm_A = mkAMost "sidearm" "sidearmly" ;
+lin sidearm_Adv = mkAdv "sidearm" ;
+lin sidebar_N = mkN "sidebar" "sidebars" ;
+lin sideboard_N = mkN "sideboard" "sideboards" ;
+lin sideburn_N = mkN "sideburn" "sideburns" ;
+lin sidecar_N = mkN "sidecar" "sidecars" ;
+lin sidelight_N = mkN "sidelight" "sidelights" ;
+lin sideline_N = mkN "sideline" "sidelines" ;
+lin sideline_V = mkV "sideline" "sidelined" "sidelined" ;
+lin sidelong_A = mkAMost "sidelong" "sidelongly" ;
+lin sidelong_Adv = mkAdv "sidelong" ;
+lin sidereal_A = mkAMost "sidereal" "sidereally" ;
+lin siderite_N = mkN "siderite" "siderites" ;
+lin sideroblast_N = mkN "sideroblast" "sideroblasts" ;
+lin siderocyte_N = mkN "siderocyte" "siderocytes" ;
+lin sideropenia_N = mkN "sideropenia" "sideropenias" ;
+lin siderosis_N = mkN "siderosis" "siderosises" ;
+lin sidesaddle_Adv = mkAdv "sidesaddle" ;
+lin sidesaddle_N = mkN "sidesaddle" "sidesaddles" ;
+lin sideshow_N = mkN "sideshow" "sideshows" ;
+lin sidesman_N = mkN "sidesman" "sidesmen" ;
+lin sidestep_N = mkN "sidestep" "sidesteps" ;
+lin sidestep_V = mkV "sidestep" "sidestepped" "sidestepped" ;
+lin sidestroke_N = mkN "sidestroke" "sidestrokes" ;
+lin sideswipe_N = mkN "sideswipe" "sideswipes" ;
+lin sidetrack_N = mkN "sidetrack" "sidetracks" ;
+lin sidetrack_V = mkV "sidetrack" "sidetracked" "sidetracked" ;
+lin sidewalk_N = mkN "sidewalk" "sidewalks" ;
+lin sidewall_N = mkN "sidewall" "sidewalls" ;
+lin sideward_Adv = mkAdv "sideward" ;
+lin sidewards_Adv = mkAdv "sidewards" ;
+lin sideway_Adv = mkAdv "sideway" ;
+lin sideways_Adv = mkAdv "sideways" ;
+lin sidewinder_N = mkN "sidewinder" "sidewinders" ;
+lin siding_N = mkN "siding" "sidings" ;
+lin sidle_V = mkV "sidle" "sidled" "sidled" ;
+lin siege_N = mkN "siege" "sieges" ;
+lin sienna_N = mkN "sienna" "siennas" ;
+lin sierra_N = mkN "sierra" "sierras" ;
+lin sierra_leonian_A = mkAMost "sierra leonian" "sierra leonianly" ;
+lin sierra_leonian_N = mkN "sierra leonian" "sierra leonians" ;
+lin siesta_N = mkN "siesta" "siestas" ;
+lin sieve_N = mkN "sieve" "sieves" ;
+lin sieve_V = mkV "sieve" "sieved" "sieved" ;
+lin sift_V = mkV "sift" "sifted" "sifted" ;
+lin sifter_N = mkN "sifter" "sifters" ;
+lin sigeh_N = mkN "sigeh" "sigehs" ;
+lin sigh_N = mkN "sigh" "sighs" ;
+lin sigh_V = mkV "sigh" "sighed" "sighed" ;
+lin sight_N = mkN "sight" "sights" ;
+lin sight_V = mkV "sight" "sighted" "sighted" ;
+lin sighting_N = mkN "sighting" "sightings" ;
+lin sightless_A = mkAMost "sightless" "sightlessly" ;
+lin sightreader_N = mkN "sightreader" "sightreaders" ;
+lin sights_N = mkN "sights" "sightses" ;
+lin sightseeing_N = mkN "sightseeing" "sightseeings" ;
+lin sightseer_N = mkN "sightseer" "sightseers" ;
+lin sigma_N = mkN "sigma" "sigmas" ;
+lin sigmoid_A = mkAMost "sigmoid" "sigmoidly" ;
+lin sigmoidectomy_N = mkN "sigmoidectomy" "sigmoidectomies" ;
+lin sigmoidoscope_N = mkN "sigmoidoscope" "sigmoidoscopes" ;
+lin sigmoidoscopy_N = mkN "sigmoidoscopy" "sigmoidoscopies" ;
+lin sign_N = mkN "sign" "signs" ;
+lin sign_V = mkV "sign" "signed" "signed" ;
+lin sign_painter_N = mkN "sign-painter" "sign-painters" ;
+lin signage_N = mkN "signage" "signages" ;
+lin signal_A = mkAMost "signal" "signally" ;
+lin signal_N = mkN "signal" "signals" ;
+lin signal_V = mkV "signal" "signalled" "signalled" ;
+lin signal_box_N = mkN "signal-box" "signal-boxes" ;
+lin signale_V = mkV "signale" "signaled" "signaled" ;
+lin signaler_N = mkN "signaler" "signalers" ;
+lin signalization_N = mkN "signalization" "signalizations" ;
+lin signalize_V = mkV "signalize" "signalized" "signalized" ;
+lin signaller_N = mkN "signaller" "signallers" ;
+lin signalman_N = mkN "signalman" "signalmen" ;
+lin signatory_N = mkN "signatory" "signatories" ;
+lin signature_N = mkN "signature" "signatures" ;
+lin signboard_N = mkN "signboard" "signboards" ;
+lin signer_N = mkN "signer" "signers" ;
+lin signet_N = mkN "signet" "signets" ;
+lin signet_ring_N = mkN "signet-ring" "signet-rings" ;
+lin significance_N = mkN "significance" "significances" ;
+lin significant_A = mkAMost "significant" "significantly" ;
+lin signification_N = mkN "signification" "significations" ;
+lin significative_A = mkAMost "significative" "significatively" ;
+lin signify_V = mkV "signify" "signified" "signified" ;
+lin signor_N = mkN "signor" "signors" ;
+lin signora_N = mkN "signora" "signoras" ;
+lin signore_N = mkN "signore" "signores" ;
+lin signorina_N = mkN "signorina" "signorinas" ;
+lin signpost_N = mkN "signpost" "signposts" ;
+lin signpost_V = mkV "signpost" "signposted" "signposted" ;
+lin sikh_N = mkN "sikh" "sikhs" ;
+lin silage_N = mkN "silage" "silages" ;
+lin sild_N = mkN "sild" "silds" ;
+lin sildenafil_N = mkN "sildenafil" "sildenafils" ;
+lin silence_N = mkN "silence" "silences" ;
+lin silence_V = mkV "silence" "silenced" "silenced" ;
+lin silencer_N = mkN "silencer" "silencers" ;
+lin silene_N = mkN "silene" "silenes" ;
+lin silent_A = mkAMost "silent" "silently" ;
+lin silenus_N = mkN "silenus" "silenuses" ;
+lin silesia_N = mkN "silesia" "silesias" ;
+lin silex_N = mkN "silex" "silexes" ;
+lin silhouette_N = mkN "silhouette" "silhouettes" ;
+lin silhouette_V = mkV "silhouette" "silhouetted" "silhouetted" ;
+lin silica_N = mkN "silica" "silicas" ;
+lin silicate_N = mkN "silicate" "silicates" ;
+lin siliceous_A = mkAMost "siliceous" "siliceously" ;
+lin silicide_N = mkN "silicide" "silicides" ;
+lin silicle_N = mkN "silicle" "silicles" ;
+lin silicon_N = mkN "silicon" "silicons" ;
+lin silicone_N = mkN "silicone" "silicones" ;
+lin silicosis_N = mkN "silicosis" "silicosises" ;
+lin silique_N = mkN "silique" "siliques" ;
+lin silk_N = mkN "silk" "silks" ;
+lin silken_A = mkAMost "silken" "silkenly" ;
+lin silkiness_N = mkN "silkiness" "silkinesses" ;
+lin silks_N = mkN "silks" "silkses" ;
+lin silkscreen_N = mkN "silkscreen" "silkscreens" ;
+lin silkworm_N = mkN "silkworm" "silkworms" ;
+lin silky_A = mkA "silky" "silkier" "silkiest" "silkily" ;
+lin sill_N = mkN "sill" "sills" ;
+lin sillabub_N = mkN "sillabub" "sillabubs" ;
+lin silliness_N = mkN "silliness" "sillinesses" ;
+lin silly_A = mkA "silly" "sillier" "silliest" "sillily" ;
+lin silly_N = mkN "silly" "sillies" ;
+lin silo_N = mkN "silo" "silos" ;
+lin siloxane_N = mkN "siloxane" "siloxanes" ;
+lin silt_N = mkN "silt" "silts" ;
+lin silt_V = mkV "silt" "silted" "silted" ;
+lin siltstone_N = mkN "siltstone" "siltstones" ;
+lin silty_A = mkA "silty" "siltier" "siltiest" "siltily" ;
+lin silurid_N = mkN "silurid" "silurids" ;
+lin silva_N = mkN "silva" "silvas" ;
+lin silvan_A = mkAMost "silvan" "silvanly" ;
+lin silver_A = mkAMost "silver" "silverly" ;
+lin silver_N = mkN "silver" "silvers" ;
+lin silver_V = mkV "silver" "silvered" "silvered" ;
+lin silver_fish_N = mkN "silver-fish" "silver-fish" ;
+lin silverback_N = mkN "silverback" "silverbacks" ;
+lin silverberry_N = mkN "silverberry" "silverberries" ;
+lin silverfish_N = mkN "silverfish" "silverfishes" ;
+lin silvern_A = mkAMost "silvern" "silvernly" ;
+lin silverpoint_N = mkN "silverpoint" "silverpoints" ;
+lin silverrod_N = mkN "silverrod" "silverrods" ;
+lin silverside_N = mkN "silverside" "silversides" ;
+lin silversides_N = mkN "silversides" "silversideses" ;
+lin silversmith_N = mkN "silversmith" "silversmiths" ;
+lin silverspot_N = mkN "silverspot" "silverspots" ;
+lin silversword_N = mkN "silversword" "silverswords" ;
+lin silvervine_N = mkN "silvervine" "silvervines" ;
+lin silverware_N = mkN "silverware" "silverwares" ;
+lin silverweed_N = mkN "silverweed" "silverweeds" ;
+lin silverwork_N = mkN "silverwork" "silverworks" ;
+lin silvery_A = mkA "silvery" "silverier" "silveriest" "silverily" ;
+lin silvex_N = mkN "silvex" "silvexes" ;
+lin silviculture_N = mkN "silviculture" "silvicultures" ;
+lin sima_N = mkN "sima" "simas" ;
+lin simazine_N = mkN "simazine" "simazines" ;
+lin simian_A = mkAMost "simian" "simianly" ;
+lin simian_N = mkN "simian" "simians" ;
+lin similar_A = mkAMost "similar" "similarly" ;
+lin similarity_N = mkN "similarity" "similarities" ;
+lin simile_N = mkN "simile" "similes" ;
+lin similitude_N = mkN "similitude" "similitudes" ;
+lin simmer_N = mkN "simmer" "IRREG" ;
+lin simmer_V = mkV "simmer" "simmered" "simmered" ;
+lin simnel_N = mkN "simnel" "simnels" ;
+lin simony_N = mkN "simony" "simonies" ;
+lin simoom_N = mkN "simoom" "simooms" ;
+lin simoon_N = mkN "simoon" "simoons" ;
+lin simper_N = mkN "simper" "simpers" ;
+lin simper_V = mkV "simper" "simpered" "simpered" ;
+lin simperer_N = mkN "simperer" "simperers" ;
+lin simperingly_Adv = mkAdv "simperingly" ;
+lin simple_A = mkA "simple" "simpler" "simplest" "simply" ;
+lin simple_N = mkN "simple" "simples" ;
+lin simple_hearted_A = mkAMost "simple-hearted" "simple-heartedly" ;
+lin simple_minded_A = mkAMost "simple-minded" "simple-mindedly" ;
+lin simpleton_N = mkN "simpleton" "simpletons" ;
+lin simplex_A = mkAMost "simplex" "simplexly" ;
+lin simplicity_N = mkN "simplicity" "simplicities" ;
+lin simplification_N = mkN "simplification" "simplifications" ;
+lin simplify_V = mkV "simplify" "simplified" "simplified" ;
+lin simplistic_A = mkAMost "simplistic" "simplisticly" ;
+lin simulacrum_N = mkN "simulacrum" "simulacra" ;
+lin simulate_V = mkV "simulate" "simulated" "simulated" ;
+lin simulation_N = mkN "simulation" "simulations" ;
+lin simulator_N = mkN "simulator" "simulators" ;
+lin simulcast_N = mkN "simulcast" "simulcasts" ;
+lin simultaneity_N = mkN "simultaneity" "simultaneities" ;
+lin simultaneous_A = mkAMost "simultaneous" "simultaneously" ;
+lin simultaneousness_N = mkN "simultaneousness" "simultaneousnesses" ;
+lin simvastatin_N = mkN "simvastatin" "simvastatins" ;
+lin sin_N = mkN "sin" "sins" ;
+lin sin_V = mkV "sin" "sinned" "sinned" ;
+lin since_Adv = mkAdv "since" ;
+lin since_Prep = mkPrep "since" ;
+lin since_then_Adv = mkAdv "since then" ;
+lin sincere_A = mkAMost "sincere" "sincerely" ;
+lin sincerity_N = mkN "sincerity" "sincerities" ;
+lin sinciput_N = mkN "sinciput" "sinciputs" ;
+lin sine_N = mkN "sine" "sines" ;
+lin sine_die_Adv = mkAdv "sine die" ;
+lin sine_qua_non_N = mkN "sine qua non" "sine qua na" ;
+lin sinecure_N = mkN "sinecure" "sinecures" ;
+lin sinew_N = mkN "sinew" "sinews" ;
+lin sinewy_A = mkAMost "sinewy" "sinewily" ;
+lin sinful_A = mkAMost "sinful" "sinfully" ;
+lin sinfulness_N = mkN "sinfulness" "sinfulnesses" ;
+lin sing_V = mkV "sing" "sang" "sung" ;
+lin singable_A = mkAMost "singable" "singably" ;
+lin singalong_N = mkN "singalong" "singalongs" ;
+lin singe_N = mkN "singe" "singes" ;
+lin singe_V = mkV "singe" "IRREG" "IRREG" ;
+lin singer_N = mkN "singer" "singers" ;
+lin singhalese_A = mkAMost "singhalese" "singhalesely" ;
+lin singing_N = mkN "singing" "singings" ;
+lin single_A = mkAMost "single" "singlely" ;
+lin single_N = mkN "single" "singles" ;
+lin single_V = mkV "single" "singled" "singled" ;
+lin single_breasted_A = mkAMost "single-breasted" "single-breastedly" ;
+lin single_handed_A = mkAMost "single-handed" "single-handedly" ;
+lin single_handed_Adv = mkAdv "single-handed" ;
+lin single_minded_A = mkAMost "single-minded" "single-mindedly" ;
+lin single_spacing_N = mkN "single-spacing" "single-spacings" ;
+lin singleness_N = mkN "singleness" "singlenesses" ;
+lin singles_N = mkN "singles" "singleses" ;
+lin singlestick_N = mkN "singlestick" "singlesticks" ;
+lin singlet_N = mkN "singlet" "singlets" ;
+lin singleton_N = mkN "singleton" "singletons" ;
+lin singly_Adv = mkAdv "singly" ;
+lin singsong_N = mkN "singsong" "singsongs" ;
+lin singular_A = mkAMost "singular" "singularly" ;
+lin singular_N = mkN "singular" "singulars" ;
+lin singularity_N = mkN "singularity" "singularities" ;
+lin singularize_V = mkV "singularize" "singularized" "singularized" ;
+lin sinhala_N = mkN "sinhala" "sinhalas" ;
+lin sinhalese_A = mkAMost "sinhalese" "sinhalesely" ;
+lin sinhalese_N = mkN "sinhalese" "sinhalese" ;
+lin sinister_A = mkAMost "sinister" "sinisterly" ;
+lin sinistral_A = mkAMost "sinistral" "sinistrally" ;
+lin sinistrorse_A = mkAMost "sinistrorse" "sinistrorsely" ;
+lin sink_N = mkN "sink" "sinks" ;
+lin sink_V = mkV "sink" "sank" "sunk" ;
+lin sinkable_A = mkAMost "sinkable" "sinkably" ;
+lin sinker_N = mkN "sinker" "sinkers" ;
+lin sinkhole_N = mkN "sinkhole" "sinkholes" ;
+lin sinking_N = mkN "sinking" "sinkings" ;
+lin sinking_fund_N = mkN "sinking-fund" "sinking-funds" ;
+lin sinless_A = mkAMost "sinless" "sinlessly" ;
+lin sinlessness_N = mkN "sinlessness" "sinlessnesses" ;
+lin sinner_N = mkN "sinner" "sinners" ;
+lin sinologist_N = mkN "sinologist" "sinologists" ;
+lin sinology_N = mkN "sinology" "sinologies" ;
+lin sinopis_N = mkN "sinopis" "sinopises" ;
+lin sintered_A = mkAMost "sintered" "sinteredly" ;
+lin sinuate_A = mkAMost "sinuate" "sinuately" ;
+lin sinuosity_N = mkN "sinuosity" "sinuosities" ;
+lin sinuous_A = mkAMost "sinuous" "sinuously" ;
+lin sinus_N = mkN "sinus" "sinuses" ;
+lin sinusitis_N = mkN "sinusitis" "sinusitises" ;
+lin sinusoid_N = mkN "sinusoid" "sinusoids" ;
+lin sinusoidal_A = mkAMost "sinusoidal" "sinusoidally" ;
+lin sioux_N = mkN "sioux" "sioux" ;
+lin sip_N = mkN "sip" "sips" ;
+lin sip_V = mkV "sip" "sipped" "sipped" ;
+lin siphon_N = mkN "siphon" "siphons" ;
+lin siphon_V = mkV "siphon" "siphoned" "siphoned" ;
+lin siphone_V = mkV "siphone" "siphoned" "siphoned" ;
+lin siphonophore_N = mkN "siphonophore" "siphonophores" ;
+lin sipper_N = mkN "sipper" "sippers" ;
+lin sir_N = mkN "sir" "sirs" ;
+lin sir_roger_de_coverley_N = mkN "sir roger de coverley" "IRREG" ;
+lin sirdar_N = mkN "sirdar" "sirdars" ;
+lin sire_N = mkN "sire" "sires" ;
+lin sire_V = mkV "sire" "sired" "sired" ;
+lin siren_N = mkN "siren" "sirens" ;
+lin siris_N = mkN "siris" "sirises" ;
+lin sirloin_N = mkN "sirloin" "sirloins" ;
+lin sirocco_N = mkN "sirocco" "siroccos" ;
+lin sirrah_N = mkN "sirrah" "sirrahs" ;
+lin sirup_N = mkN "sirup" "sirups" ;
+lin sisal_N = mkN "sisal" "sisals" ;
+lin siskin_N = mkN "siskin" "siskins" ;
+lin sissified_A = mkAMost "sissified" "sissifiedly" ;
+lin sissoo_N = mkN "sissoo" "sissoos" ;
+lin sissy_N = mkN "sissy" "sissies" ;
+lin sister_N = mkN "sister" "sisters" ;
+lin sister_in_law_N = mkN "sister-in-law" "sisters-in-law" ;
+lin sisterhood_N = mkN "sisterhood" "sisterhoods" ;
+lin sisterly_A = mkAMost "sisterly" "sisterlily" ;
+lin siswati_N = mkN "siswati" "siswatis" ;
+lin sit_in_N = mkN "sit-in" "sit-ins" ;
+lin sit_sat_V = mkV "sit" "sat" "sat" ;
+lin sit_sitted_V = mkV "sit" "sitted" "sitted" ;
+lin sitar_N = mkN "sitar" "sitars" ;
+lin site_N = mkN "site" "sites" ;
+lin site_V = mkV "site" "sited" "sited" ;
+lin sitter_N = mkN "sitter" "sitters" ;
+lin sitting_N = mkN "sitting" "sittings" ;
+lin sitting_room_N = mkN "sitting-room" "sitting-rooms" ;
+lin situate_V = mkV "situate" "situated" "situated" ;
+lin situation_N = mkN "situation" "situations" ;
+lin six_footer_N = mkN "six-footer" "six-footers" ;
+lin six_shooter_N = mkN "six-shooter" "six-shooters" ;
+lin sixfold_A = mkAMost "sixfold" "sixfoldly" ;
+lin sixfold_Adv = mkAdv "sixfold" ;
+lin sixpence_N = mkN "sixpence" "sixpences" ;
+lin sixpenny_A = mkAMost "sixpenny" "sixpennily" ;
+lin sixth_former_N = mkN "sixth-former" "sixth-formers" ;
+lin sizable_A = mkAMost "sizable" "sizably" ;
+lin size_A = mkA "size" "sizer" "sizest" "sizely" ;
+lin size_N = mkN "size" "sizes" ;
+lin size_V = mkV "size" "sized" "sized" ;
+lin sizeable_A = mkAMost "sizeable" "sizeably" ;
+lin sizzle_N = mkN "sizzle" "sizzles" ;
+lin sizzle_V = mkV "sizzle" "sizzled" "sizzled" ;
+lin skank_N = mkN "skank" "skanks" ;
+lin skate_N = mkN "skate" "skates" ;
+lin skate_V = mkV "skate" "skated" "skated" ;
+lin skateboard_N = mkN "skateboard" "skateboards" ;
+lin skateboarder_N = mkN "skateboarder" "skateboarders" ;
+lin skateboarding_N = mkN "skateboarding" "skateboardings" ;
+lin skater_N = mkN "skater" "skaters" ;
+lin skating_N = mkN "skating" "skatings" ;
+lin skating_rink_N = mkN "skating-rink" "skating-rinks" ;
+lin skedaddle_N = mkN "skedaddle" "skedaddles" ;
+lin skedaddle_V = mkV "skedaddle" "skedaddled" "skedaddled" ;
+lin skeet_N = mkN "skeet" "skeets" ;
+lin skeg_N = mkN "skeg" "skegs" ;
+lin skein_N = mkN "skein" "skeins" ;
+lin skeletal_A = mkAMost "skeletal" "skeletally" ;
+lin skeleton_N = mkN "skeleton" "skeletons" ;
+lin skep_N = mkN "skep" "skeps" ;
+lin skepful_N = mkN "skepful" "skepfuls" ;
+lin skeptic_N = mkN "skeptic" "skeptics" ;
+lin skeptical_A = mkAMost "skeptical" "skeptically" ;
+lin skepticism_N = mkN "skepticism" "skepticisms" ;
+lin sketch_N = mkN "sketch" "sketches" ;
+lin sketch_V = mkV "sketch" "sketched" "sketched" ;
+lin sketch_block_N = mkN "sketch-block" "sketch-blocks" ;
+lin sketch_book_N = mkN "sketch-book" "sketch-books" ;
+lin sketch_map_N = mkN "sketch-map" "sketch-maps" ;
+lin sketchbook_N = mkN "sketchbook" "sketchbooks" ;
+lin sketcher_N = mkN "sketcher" "sketchers" ;
+lin sketchiness_N = mkN "sketchiness" "sketchinesses" ;
+lin sketchy_A = mkA "sketchy" "sketchier" "sketchiest" "sketchily" ;
+lin skew_A = mkAMost "skew" "skewly" ;
+lin skew_V = mkV "skew" "skewed" "skewed" ;
+lin skew_eyed_A = mkAMost "skew-eyed" "skew-eyedly" ;
+lin skewer_N = mkN "skewer" "skewers" ;
+lin skewer_V = mkV "skewer" "skewered" "skewered" ;
+lin ski_N = mkN "ski" "skis" ;
+lin ski_V = mkV "ski" "IRREG" "IRREG" ;
+lin ski_bob_N = mkN "ski-bob" "ski-bobs" ;
+lin ski_jump_N = mkN "ski-jump" "ski-jumps" ;
+lin ski_lift_N = mkN "ski-lift" "ski-lifts" ;
+lin ski_plane_N = mkN "ski-plane" "ski-planes" ;
+lin skibob_N = mkN "skibob" "skibobs" ;
+lin skid_N = mkN "skid" "skids" ;
+lin skid_V = mkV "skid" "skidded" "skidded" ;
+lin skidder_N = mkN "skidder" "skidders" ;
+lin skidpan_N = mkN "skidpan" "skidpans" ;
+lin skier_N = mkN "skier" "skiers" ;
+lin skiff_N = mkN "skiff" "skiffs" ;
+lin skiffle_N = mkN "skiffle" "skiffles" ;
+lin skiffle_group_N = mkN "skiffle-group" "skiffle-groups" ;
+lin skiing_N = mkN "skiing" "skiings" ;
+lin skilful_A = mkAMost "skilful" "skilfully" ;
+lin skill_N = mkN "skill" "skills" ;
+lin skilled_A = mkAMost "skilled" "skilledly" ;
+lin skillet_N = mkN "skillet" "skillets" ;
+lin skillfully_Adv = mkAdv "skillfully" ;
+lin skillfulness_N = mkN "skillfulness" "skillfulnesses" ;
+lin skilly_N = mkN "skilly" "skillies" ;
+lin skim_A = mkA "skim" "skimmer" "skimmest" "skimly" ;
+lin skim_N = mkN "skim" "skims" ;
+lin skim_V = mkV "skim" "skimmed" "skimmed" ;
+lin skimmed_milk_N = mkN "skimmed-milk" "skimmed-milks" ;
+lin skimmer_N = mkN "skimmer" "skimmers" ;
+lin skimming_N = mkN "skimming" "skimmings" ;
+lin skimp_V = mkV "skimp" "skimped" "skimped" ;
+lin skimpy_A = mkA "skimpy" "skimpier" "skimpiest" "skimpily" ;
+lin skin_N = mkN "skin" "skins" ;
+lin skin_V = mkV "skin" "skinned" "skinned" ;
+lin skin_deep_A = mkAMost "skin-deep" "skin-deeply" ;
+lin skin_diving_N = mkN "skin-diving" "skin-divings" ;
+lin skin_graft_N = mkN "skin-graft" "skin-grafts" ;
+lin skin_tight_A = mkAMost "skin-tight" "skin-tightly" ;
+lin skinflint_N = mkN "skinflint" "skinflints" ;
+lin skinful_N = mkN "skinful" "skinfuls" ;
+lin skinhead_N = mkN "skinhead" "skinheads" ;
+lin skinheads_N = mkN "skinheads" "skinheadses" ;
+lin skink_N = mkN "skink" "skinks" ;
+lin skinless_A = mkAMost "skinless" "skinlessly" ;
+lin skinner_N = mkN "skinner" "skinners" ;
+lin skinniness_N = mkN "skinniness" "skinninesses" ;
+lin skinny_A = mkA "skinny" "skinnier" "skinniest" "skinnily" ;
+lin skinny_N = mkN "skinny" "skinnies" ;
+lin skint_A = mkAMost "skint" "skintly" ;
+lin skintight_A = mkAMost "skintight" "skintightly" ;
+lin skip_N = mkN "skip" "skips" ;
+lin skip_V = mkV "skip" "skipped" "skipped" ;
+lin skipjack_N = mkN "skipjack" "skipjacks" ;
+lin skipper_N = mkN "skipper" "skippers" ;
+lin skipper_V = mkV "skipper" "skippered" "skippered" ;
+lin skipping_rope_N = mkN "skipping-rope" "skipping-ropes" ;
+lin skirl_N = mkN "skirl" "skirls" ;
+lin skirmish_N = mkN "skirmish" "skirmishes" ;
+lin skirmish_V = mkV "skirmish" "skirmished" "skirmished" ;
+lin skirmisher_N = mkN "skirmisher" "skirmishers" ;
+lin skirret_N = mkN "skirret" "skirrets" ;
+lin skirt_N = mkN "skirt" "skirts" ;
+lin skirt_V = mkV "skirt" "skirted" "skirted" ;
+lin skirting_board_N = mkN "skirting-board" "skirting-boards" ;
+lin skit_N = mkN "skit" "skits" ;
+lin skitter_V = mkV "skitter" "skittered" "skittered" ;
+lin skittish_A = mkAMost "skittish" "skittishly" ;
+lin skittishness_N = mkN "skittishness" "skittishnesses" ;
+lin skittle_N = mkN "skittle" "skittles" ;
+lin skittle_V = mkV "skittle" "skittled" "skittled" ;
+lin skittle_pin_N = mkN "skittle-pin" "skittle-pins" ;
+lin skittles_N = mkN "skittles" "skittles" ;
+lin skive_V = mkV "skive" "skived" "skived" ;
+lin skivvy_N = mkN "skivvy" "skivvies" ;
+lin skua_N = mkN "skua" "skuas" ;
+lin skulk_V = mkV "skulk" "skulked" "skulked" ;
+lin skulker_N = mkN "skulker" "skulkers" ;
+lin skull_N = mkN "skull" "skulls" ;
+lin skullcap_N = mkN "skullcap" "skullcaps" ;
+lin skullduggery_N = mkN "skullduggery" "IRREG" ;
+lin skulled_A = mkAMost "skulled" "skulledly" ;
+lin skunk_N = mkN "skunk" "skunks" ;
+lin skunkweed_N = mkN "skunkweed" "skunkweeds" ;
+lin sky_N = mkN "sky" "skies" ;
+lin sky_V = mkV "sky" "skied" "skied" ;
+lin sky_blue_A = mkAMost "sky-blue" "sky-bluely" ;
+lin sky_blue_N = mkN "sky-blue" "sky-blues" ;
+lin sky_high_Adv = mkAdv "sky-high" ;
+lin skybox_N = mkN "skybox" "skyboxes" ;
+lin skycap_N = mkN "skycap" "skycaps" ;
+lin skydiver_N = mkN "skydiver" "skydivers" ;
+lin skydiving_N = mkN "skydiving" "skydivings" ;
+lin skyhook_N = mkN "skyhook" "skyhooks" ;
+lin skylark_N = mkN "skylark" "skylarks" ;
+lin skylark_V = mkV "skylark" "skylarked" "skylarked" ;
+lin skylight_N = mkN "skylight" "skylights" ;
+lin skyline_N = mkN "skyline" "skylines" ;
+lin skyrocket_N = mkN "skyrocket" "skyrockets" ;
+lin skyrocket_V = mkV "skyrocket" "skyrocketed" "skyrocketed" ;
+lin skysail_N = mkN "skysail" "skysails" ;
+lin skyscraper_N = mkN "skyscraper" "skyscrapers" ;
+lin skywalk_N = mkN "skywalk" "skywalks" ;
+lin skyward_A = mkAMost "skyward" "skywardly" ;
+lin skyward_Adv = mkAdv "skyward" ;
+lin skywards_A = mkAMost "skywards" "skywardsly" ;
+lin skywards_Adv = mkAdv "skywards" ;
+lin skywriting_N = mkN "skywriting" "skywritings" ;
+lin slab_N = mkN "slab" "slabs" ;
+lin slack_A = mkA "slack" "slacker" "slackest" "slackly" ;
+lin slack_N = mkN "slack" "slacks" ;
+lin slack_V = mkV "slack" "slacked" "slacked" ;
+lin slacken_slackened_V = mkV "slacken" "slackened" "slackened" ;
+lin slacken_slackenned_V = mkV "slacken" "slackenned" "slackenned" ;
+lin slacker_N = mkN "slacker" "slackers" ;
+lin slackness_N = mkN "slackness" "slacknesses" ;
+lin slacks_N = mkN "slacks" "slackses" ;
+lin slag_N = mkN "slag" "slags" ;
+lin slag_V = mkV "slag" "slagged" "slagged" ;
+lin slag_heap_N = mkN "slag-heap" "slag-heaps" ;
+lin slagheap_N = mkN "slagheap" "slagheaps" ;
+lin slain_N = mkN "slain" "slains" ;
+lin slake_V = mkV "slake" "slaked" "slaked" ;
+lin slalom_N = mkN "slalom" "slaloms" ;
+lin slam_N = mkN "slam" "slams" ;
+lin slam_V = mkV "slam" "slammed" "slammed" ;
+lin slam_dunk_V = mkV "slam-dunk" "slam-dunked" "slam-dunked" ;
+lin slammer_N = mkN "slammer" "slammers" ;
+lin slander_N = mkN "slander" "slanders" ;
+lin slander_V = mkV "slander" "slandered" "slandered" ;
+lin slanderer_N = mkN "slanderer" "slanderers" ;
+lin slanderous_A = mkAMost "slanderous" "slanderously" ;
+lin slang_N = mkN "slang" "slangs" ;
+lin slang_V = mkV "slang" "slanged" "slanged" ;
+lin slanginess_N = mkN "slanginess" "slanginesses" ;
+lin slanguage_N = mkN "slanguage" "slanguages" ;
+lin slangy_A = mkA "slangy" "slangier" "slangiest" "slangily" ;
+lin slant_N = mkN "slant" "slants" ;
+lin slant_V = mkV "slant" "slanted" "slanted" ;
+lin slantingly_Adv = mkAdv "slantingly" ;
+lin slantwise_Adv = mkAdv "slantwise" ;
+lin slap_Adv = mkAdv "slap" ;
+lin slap_N = mkN "slap" "slaps" ;
+lin slap_V = mkV "slap" "slapped" "slapped" ;
+lin slap_bang_Adv = mkAdv "slap-bang" ;
+lin slap_happy_A = mkAMost "slap-happy" "slap-happily" ;
+lin slap_up_A = mkAMost "slap-up" "slap-uply" ;
+lin slapdash_A = mkAMost "slapdash" "slapdashly" ;
+lin slapdash_Adv = mkAdv "slapdash" ;
+lin slapper_N = mkN "slapper" "slappers" ;
+lin slapshot_N = mkN "slapshot" "slapshots" ;
+lin slapstick_A = mkAMost "slapstick" "slapstickly" ;
+lin slapstick_N = mkN "slapstick" "slapsticks" ;
+lin slash_N = mkN "slash" "slashes" ;
+lin slash_V = mkV "slash" "slashed" "slashed" ;
+lin slasher_N = mkN "slasher" "slashers" ;
+lin slat_N = mkN "slat" "slats" ;
+lin slate_N = mkN "slate" "slates" ;
+lin slate_V = mkV "slate" "slated" "slated" ;
+lin slate_club_N = mkN "slate-club" "slate-clubs" ;
+lin slate_pencil_N = mkN "slate-pencil" "slate-pencils" ;
+lin slating_N = mkN "slating" "slatings" ;
+lin slatted_A = mkAMost "slatted" "slattedly" ;
+lin slattern_N = mkN "slattern" "slatterns" ;
+lin slatternliness_N = mkN "slatternliness" "slatternlinesses" ;
+lin slatternly_A = mkAMost "slatternly" "slatternlily" ;
+lin slaty_A = mkA "slaty" "slatier" "slatiest" "slatily" ;
+lin slaughter_N = mkN "slaughter" "slaughters" ;
+lin slaughter_V = mkV "slaughter" "slaughtered" "slaughtered" ;
+lin slaughterer_N = mkN "slaughterer" "slaughterers" ;
+lin slaughterhouse_N = mkN "slaughterhouse" "slaughterhouses" ;
+lin slav_A = mkAMost "slav" "slavly" ;
+lin slav_N = mkN "slav" "slavs" ;
+lin slave_N = mkN "slave" "slaves" ;
+lin slave_V = mkV "slave" "slaved" "slaved" ;
+lin slave_driver_N = mkN "slave-driver" "slave-drivers" ;
+lin slave_trade_N = mkN "slave-trade" "slave-trades" ;
+lin slave_traffic_N = mkN "slave-traffic" "slave-traffics" ;
+lin slaveholder_N = mkN "slaveholder" "slaveholders" ;
+lin slaveholding_A = mkAMost "slaveholding" "slaveholdingly" ;
+lin slavelike_A = mkAMost "slavelike" "slavelikely" ;
+lin slaver_N = mkN "slaver" "slavers" ;
+lin slaver_V = mkV "slaver" "slavered" "slavered" ;
+lin slavery_N = mkN "slavery" "slaveries" ;
+lin slavey_N = mkN "slavey" "slaveys" ;
+lin slavish_A = mkAMost "slavish" "slavishly" ;
+lin slavonic_A = mkAMost "slavonic" "slavonicly" ;
+lin slaw_N = mkN "slaw" "slaws" ;
+lin slay_V = mkV "slay" "slew" "slain" ;
+lin slayer_N = mkN "slayer" "slayers" ;
+lin sleaziness_N = mkN "sleaziness" "sleazinesses" ;
+lin sleazy_A = mkA "sleazy" "sleazier" "sleaziest" "sleazily" ;
+lin sled_N = mkN "sled" "sleds" ;
+lin sledder_N = mkN "sledder" "sledders" ;
+lin sledding_N = mkN "sledding" "sleddings" ;
+lin sledge_N = mkN "sledge" "sledges" ;
+lin sledge_V = mkV "sledge" "sledged" "sledged" ;
+lin sledgehammer_N = mkN "sledgehammer" "sledgehammers" ;
+lin sleek_A = mkA "sleek" "sleeker" "sleekest" "sleekly" ;
+lin sleek_V = mkV "sleek" "sleeked" "sleeked" ;
+lin sleekness_N = mkN "sleekness" "sleeknesses" ;
+lin sleep_N = mkN "sleep" "sleeps" ;
+lin sleep_V = mkV "sleep" "slept" "slept" ;
+lin sleeper_N = mkN "sleeper" "sleepers" ;
+lin sleepiness_N = mkN "sleepiness" "sleepinesses" ;
+lin sleeping_N = mkN "sleeping" "sleepings" ;
+lin sleeping_bag_N = mkN "sleeping-bag" "sleeping-bags" ;
+lin sleeping_car_N = mkN "sleeping-car" "sleeping-cars" ;
+lin sleeping_draught_N = mkN "sleeping-draught" "sleeping-draughts" ;
+lin sleeping_pill_N = mkN "sleeping-pill" "sleeping-pills" ;
+lin sleeping_sickness_N = mkN "sleeping-sickness" "sleeping-sicknesses" ;
+lin sleepless_A = mkAMost "sleepless" "sleeplessly" ;
+lin sleeplessness_N = mkN "sleeplessness" "sleeplessnesses" ;
+lin sleepover_N = mkN "sleepover" "sleepovers" ;
+lin sleepwalker_N = mkN "sleepwalker" "sleepwalkers" ;
+lin sleepwalking_N = mkN "sleepwalking" "sleepwalkings" ;
+lin sleepy_A = mkA "sleepy" "sleepier" "sleepiest" "sleepily" ;
+lin sleepy_head_N = mkN "sleepy-head" "sleepy-heads" ;
+lin sleepyhead_N = mkN "sleepyhead" "sleepyheads" ;
+lin sleet_N = mkN "sleet" "sleets" ;
+lin sleet_V = mkV "sleet" "sleeted" "sleeted" ;
+lin sleety_A = mkA "sleety" "sleetier" "sleetiest" "sleetily" ;
+lin sleeve_N = mkN "sleeve" "sleeves" ;
+lin sleeved_A = mkAMost "sleeved" "sleevedly" ;
+lin sleeveless_A = mkAMost "sleeveless" "sleevelessly" ;
+lin sleigh_N = mkN "sleigh" "sleighs" ;
+lin sleigh_V = mkV "sleigh" "sleighed" "sleighed" ;
+lin sleigh_bell_N = mkN "sleigh-bell" "sleigh-bells" ;
+lin sleight_N = mkN "sleight" "sleights" ;
+lin slender_A = mkAMost "slender" "slenderly" ;
+lin slenderize_V = mkV "slenderize" "slenderized" "slenderized" ;
+lin slenderness_N = mkN "slenderness" "slendernesses" ;
+lin sleuth_N = mkN "sleuth" "sleuths" ;
+lin sleuth_hound_N = mkN "sleuth-hound" "sleuth-hounds" ;
+lin slew_V = mkV "slew" "slewed" "slewed" ;
+lin slice_N = mkN "slice" "slices" ;
+lin slice_V = mkV "slice" "sliced" "sliced" ;
+lin slicer_N = mkN "slicer" "slicers" ;
+lin slicing_N = mkN "slicing" "slicings" ;
+lin slick_A = mkA "slick" "slicker" "slickest" "slickly" ;
+lin slick_Adv = mkAdv "slick" ;
+lin slick_N = mkN "slick" "slicks" ;
+lin slicker_N = mkN "slicker" "slickers" ;
+lin slickness_N = mkN "slickness" "slicknesses" ;
+lin slide_N = mkN "slide" "slides" ;
+lin slide_V = mkV "slide" "slid" "slid" ;
+lin slide_rule_N = mkN "slide-rule" "slide-rules" ;
+lin slider_N = mkN "slider" "sliders" ;
+lin slight_A = mkA "slight" "slighter" "slightest" "slightly" ;
+lin slight_N = mkN "slight" "slights" ;
+lin slight_V = mkV "slight" "slighted" "slighted" ;
+lin slightingly_Adv = mkAdv "slightingly" ;
+lin slightness_N = mkN "slightness" "slightnesses" ;
+lin slim_A = mkA "slim" "slimmer" "slimmest" "slimly" ;
+lin slim_V = mkV "slim" "slimmed" "slimmed" ;
+lin slime_N = mkN "slime" "slimes" ;
+lin slimed_A = mkAMost "slimed" "slimedly" ;
+lin sliminess_N = mkN "sliminess" "sliminesses" ;
+lin slimness_N = mkN "slimness" "slimnesses" ;
+lin slimy_A = mkA "slimy" "slimier" "slimiest" "slimily" ;
+lin sling_N = mkN "sling" "slings" ;
+lin sling_V = mkV "sling" "slung" "slung" ;
+lin slingback_N = mkN "slingback" "slingbacks" ;
+lin slinger_N = mkN "slinger" "slingers" ;
+lin slinging_N = mkN "slinging" "slingings" ;
+lin slingshot_N = mkN "slingshot" "slingshots" ;
+lin slink_V = mkV "slink" "IRREG" "IRREG" ;
+lin slip_N = mkN "slip" "slips" ;
+lin slip_V = mkV "slip" "slipped" "slipped" ;
+lin slip_carriage_N = mkN "slip-carriage" "slip-carriages" ;
+lin slip_coach_N = mkN "slip-coach" "slip-coaches" ;
+lin slip_road_N = mkN "slip-road" "slip-roads" ;
+lin slip_up_N = mkN "slip-up" "slip-ups" ;
+lin slipcover_N = mkN "slipcover" "slipcovers" ;
+lin slipknot_N = mkN "slipknot" "slipknots" ;
+lin slipon_N = mkN "slipon" "slipons" ;
+lin slipover_N = mkN "slipover" "slipovers" ;
+lin slippage_N = mkN "slippage" "slippages" ;
+lin slipper_N = mkN "slipper" "slippers" ;
+lin slippered_A = mkAMost "slippered" "slipperedly" ;
+lin slipperiness_N = mkN "slipperiness" "slipperinesses" ;
+lin slippery_A = mkA "slippery" "slipperier" "slipperiest" "slipperily" ;
+lin slippy_A = mkAMost "slippy" "slippily" ;
+lin slipshod_A = mkAMost "slipshod" "slipshodly" ;
+lin slipstream_N = mkN "slipstream" "slipstreams" ;
+lin slipway_N = mkN "slipway" "slipways" ;
+lin slit_N = mkN "slit" "slits" ;
+lin slit_V = mkV "slit" "slit" "slit" ;
+lin slither_V = mkV "slither" "slithered" "slithered" ;
+lin slithery_A = mkAMost "slithery" "slitherily" ;
+lin sliver_N = mkN "sliver" "slivers" ;
+lin sliver_V = mkV "sliver" "slivered" "slivered" ;
+lin slivovitz_N = mkN "slivovitz" "slivovitzes" ;
+lin slob_N = mkN "slob" "slobs" ;
+lin slob_V = mkV "slob" "slobbed" "slobbed" ;
+lin slobber_N = mkN "slobber" "slobbers" ;
+lin slobber_V = mkV "slobber" "slobbered" "slobbered" ;
+lin sloe_N = mkN "sloe" "sloes" ;
+lin sloe_gin_N = mkN "sloe-gin" "sloe-gins" ;
+lin slog_V = mkV "slog" "slogged" "slogged" ;
+lin slogan_N = mkN "slogan" "slogans" ;
+lin sloganeer_N = mkN "sloganeer" "sloganeers" ;
+lin sloganeering_N = mkN "sloganeering" "sloganeerings" ;
+lin slogger_N = mkN "slogger" "sloggers" ;
+lin sloop_N = mkN "sloop" "sloops" ;
+lin slop_N = mkN "slop" "slops" ;
+lin slop_V = mkV "slop" "slopped" "slopped" ;
+lin slop_basin_N = mkN "slop-basin" "slop-basins" ;
+lin slop_pail_N = mkN "slop-pail" "slop-pails" ;
+lin slop_shop_N = mkN "slop-shop" "slop-shops" ;
+lin slope_N = mkN "slope" "slopes" ;
+lin slope_V = mkV "slope" "sloped" "sloped" ;
+lin slopingly_Adv = mkAdv "slopingly" ;
+lin sloppiness_N = mkN "sloppiness" "sloppinesses" ;
+lin sloppy_A = mkA "sloppy" "sloppier" "sloppiest" "sloppily" ;
+lin slops_N = mkN "slops" "slopses" ;
+lin slopseller_N = mkN "slopseller" "slopsellers" ;
+lin slopshop_N = mkN "slopshop" "slopshops" ;
+lin slosh_V = mkV "slosh" "sloshed" "sloshed" ;
+lin slot_N = mkN "slot" "slots" ;
+lin slot_V = mkV "slot" "slotted" "slotted" ;
+lin slot_machine_N = mkN "slot-machine" "slot-machines" ;
+lin sloth_N = mkN "sloth" "sloths" ;
+lin slothful_A = mkAMost "slothful" "slothfully" ;
+lin slouch_N = mkN "slouch" "slouches" ;
+lin slouch_V = mkV "slouch" "slouched" "slouched" ;
+lin slouch_hat_N = mkN "slouch-hat" "slouch-hats" ;
+lin sloucher_N = mkN "sloucher" "slouchers" ;
+lin slouchingly_Adv = mkAdv "slouchingly" ;
+lin slouchy_A = mkA "slouchy" "slouchier" "slouchiest" "slouchily" ;
+lin slough_N = mkN "slough" "sloughs" ;
+lin slough_V = mkV "slough" "sloughed" "sloughed" ;
+lin slovak_N = mkN "slovak" "slovaks" ;
+lin sloven_N = mkN "sloven" "slovens" ;
+lin slovenian_A = mkAMost "slovenian" "slovenianly" ;
+lin slovenian_N = mkN "slovenian" "slovenians" ;
+lin slovenliness_N = mkN "slovenliness" "slovenlinesses" ;
+lin slovenly_A = mkA "slovenly" "slovenlier" "slovenliest" "slovenlily" ;
+lin slow_A = mkA "slow" "slower" "slowest" "slowly" ;
+lin slow_Adv = mkAdv "slow" ;
+lin slow_V = mkV "slow" "slowed" "slowed" ;
+lin slow_worm_N = mkN "slow-worm" "slow-worms" ;
+lin slowcoach_N = mkN "slowcoach" "slowcoaches" ;
+lin slowdown_N = mkN "slowdown" "slowdowns" ;
+lin slower_Adv = mkAdv "slower" ;
+lin slowest_Adv = mkAdv "slowest" ;
+lin slowgoing_A = mkAMost "slowgoing" "slowgoingly" ;
+lin slowness_N = mkN "slowness" "slownesses" ;
+lin slub_N = mkN "slub" "slubs" ;
+lin sludge_N = mkN "sludge" "sludges" ;
+lin slug_N = mkN "slug" "slugs" ;
+lin slug_V = mkV "slug" "slugged" "slugged" ;
+lin sluggard_N = mkN "sluggard" "sluggards" ;
+lin slugger_N = mkN "slugger" "sluggers" ;
+lin sluggish_A = mkAMost "sluggish" "sluggishly" ;
+lin sluggishness_N = mkN "sluggishness" "sluggishnesses" ;
+lin sluice_N = mkN "sluice" "sluices" ;
+lin sluice_V = mkV "sluice" "sluiced" "sluiced" ;
+lin sluice_valve_N = mkN "sluice-valve" "sluice-valves" ;
+lin sluicegate_N = mkN "sluicegate" "sluicegates" ;
+lin slum_N = mkN "slum" "slums" ;
+lin slum_V = mkV "slum" "slummed" "slummed" ;
+lin slumber_N = mkN "slumber" "slumbers" ;
+lin slumber_V = mkV "slumber" "slumbered" "slumbered" ;
+lin slumberer_N = mkN "slumberer" "slumberers" ;
+lin slumberous_A = mkAMost "slumberous" "slumberously" ;
+lin slumgullion_N = mkN "slumgullion" "slumgullions" ;
+lin slummy_A = mkA "slummy" "slummier" "slummiest" "slummily" ;
+lin slump_N = mkN "slump" "slumps" ;
+lin slump_V = mkV "slump" "slumped" "slumped" ;
+lin slur_N = mkN "slur" "slurs" ;
+lin slur_V = mkV "slur" "slurred" "slurred" ;
+lin slurry_N = mkN "slurry" "slurries" ;
+lin slush_N = mkN "slush" "slushes" ;
+lin slushy_A = mkA "slushy" "slushier" "slushiest" "slushily" ;
+lin slut_N = mkN "slut" "sluts" ;
+lin sluttish_A = mkAMost "sluttish" "sluttishly" ;
+lin sly_A = mkA "sly" "slyer" "slyest" "slily" ;
+lin slyness_N = mkN "slyness" "slynesses" ;
+lin smack_Adv = mkAdv "smack" ;
+lin smack_N = mkN "smack" "smacks" ;
+lin smack_V = mkV "smack" "smacked" "smacked" ;
+lin smacker_N = mkN "smacker" "smackers" ;
+lin smacking_N = mkN "smacking" "smackings" ;
+lin small_A = mkA "small" "smaller" "smallest" "smally" ;
+lin small_Adv = mkAdv "small" ;
+lin small_N = mkN "small" "smalls" ;
+lin small_minded_A = mkAMost "small-minded" "small-mindedly" ;
+lin smaller_A = mkAMost "smaller" "smallerly" ;
+lin smallholder_N = mkN "smallholder" "smallholders" ;
+lin smallholding_N = mkN "smallholding" "smallholdings" ;
+lin smallish_A = mkAMost "smallish" "smallishly" ;
+lin smallmouth_N = mkN "smallmouth" "smallmouths" ;
+lin smallness_N = mkN "smallness" "smallnesses" ;
+lin smallpox_N = mkN "smallpox" "smallpoxes" ;
+lin smalltime_A = mkAMost "smalltime" "smalltimely" ;
+lin smaltite_N = mkN "smaltite" "smaltites" ;
+lin smarmy_A = mkAMost "smarmy" "smarmily" ;
+lin smart_A = mkA "smart" "smarter" "smartest" "smartly" ;
+lin smart_N = mkN "smart" "smarts" ;
+lin smart_V = mkV "smart" "smarted" "smarted" ;
+lin smarta_N = mkN "smarta" "smartas" ;
+lin smarten_V = mkV "smarten" "smartened" "smartened" ;
+lin smartness_N = mkN "smartness" "smartnesses" ;
+lin smash_Adv = mkAdv "smash" ;
+lin smash_N = mkN "smash" "smashes" ;
+lin smash_V = mkV "smash" "smashed" "smashed" ;
+lin smash_up_N = mkN "smash-up" "smash-ups" ;
+lin smasher_N = mkN "smasher" "smashers" ;
+lin smashing_N = mkN "smashing" "smashings" ;
+lin smattering_N = mkN "smattering" "smatterings" ;
+lin smear_N = mkN "smear" "smears" ;
+lin smear_V = mkV "smear" "smeared" "smeared" ;
+lin smear_word_N = mkN "smear-word" "smear-words" ;
+lin smegma_N = mkN "smegma" "smegmas" ;
+lin smell_N = mkN "smell" "smells" ;
+lin smell_V = mkV "smell" "smelled" "smelled" ;
+lin smelling_bottle_N = mkN "smelling-bottle" "smelling-bottles" ;
+lin smelly_A = mkA "smelly" "smellier" "smelliest" "smellily" ;
+lin smelt_N = mkN "smelt" "smelts" ;
+lin smelt_V = mkV "smelt" "smelted" "smelted" ;
+lin smelter_N = mkN "smelter" "smelters" ;
+lin smew_N = mkN "smew" "smews" ;
+lin smilax_N = mkN "smilax" "smilaxes" ;
+lin smile_N = mkN "smile" "smiles" ;
+lin smile_V = mkV "smile" "smiled" "smiled" ;
+lin smiler_N = mkN "smiler" "smilers" ;
+lin smiley_N = mkN "smiley" "smileys" ;
+lin smilingly_Adv = mkAdv "smilingly" ;
+lin smilo_N = mkN "smilo" "smiloes" ;
+lin smirch_N = mkN "smirch" "smirches" ;
+lin smirch_V = mkV "smirch" "smirched" "smirched" ;
+lin smirk_N = mkN "smirk" "smirks" ;
+lin smirk_V = mkV "smirk" "smirked" "smirked" ;
+lin smirker_N = mkN "smirker" "smirkers" ;
+lin smite_V = mkV "smite" "smote" "smitten" ;
+lin smith_N = mkN "smith" "smiths" ;
+lin smithereens_N = mkN "smithereens" "smithereenses" ;
+lin smithy_N = mkN "smithy" "smithies" ;
+lin smock_N = mkN "smock" "smocks" ;
+lin smocking_N = mkN "smocking" "smockings" ;
+lin smog_N = mkN "smog" "smogs" ;
+lin smoggy_A = mkA "smoggy" "smoggier" "smoggiest" "smoggily" ;
+lin smoke_N = mkN "smoke" "smokes" ;
+lin smoke_V = mkV "smoke" "smoked" "smoked" ;
+lin smoke_bomb_N = mkN "smoke-bomb" "smoke-bombs" ;
+lin smoke_cured_A = mkAMost "smoke-cured" "smoke-curedly" ;
+lin smoke_dried_A = mkAMost "smoke-dried" "smoke-driedly" ;
+lin smoke_screen_N = mkN "smoke-screen" "smoke-screens" ;
+lin smokehouse_N = mkN "smokehouse" "smokehouses" ;
+lin smokeless_A = mkAMost "smokeless" "smokelessly" ;
+lin smoker_N = mkN "smoker" "smokers" ;
+lin smokestack_N = mkN "smokestack" "smokestacks" ;
+lin smoking_N = mkN "smoking" "smokings" ;
+lin smoking_car_N = mkN "smoking-car" "smoking-cars" ;
+lin smoking_carriage_N = mkN "smoking-carriage" "smoking-carriages" ;
+lin smoking_compartment_N = mkN "smoking-compartment" "smoking-compartments" ;
+lin smoking_mixture_N = mkN "smoking-mixture" "smoking-mixtures" ;
+lin smoking_room_N = mkN "smoking-room" "smoking-rooms" ;
+lin smoky_A = mkA "smoky" "smokier" "smokiest" "smokily" ;
+lin smoldering_A = mkAMost "smoldering" "smolderingly" ;
+lin smooth_A = mkA "smooth" "smoother" "smoothest" "smoothly" ;
+lin smooth_N = mkN "smooth" "smooths" ;
+lin smooth_V = mkV "smooth" "smoothed" "smoothed" ;
+lin smooth_bore_A = mkAMost "smooth-bore" "smooth-borely" ;
+lin smooth_faced_A = mkAMost "smooth-faced" "smooth-facedly" ;
+lin smooth_spoken_A = mkAMost "smooth-spoken" "smooth-spokenly" ;
+lin smooth_tongued_A = mkAMost "smooth-tongued" "smooth-tonguedly" ;
+lin smoothbark_N = mkN "smoothbark" "smoothbarks" ;
+lin smoothbore_N = mkN "smoothbore" "smoothbores" ;
+lin smoothhound_N = mkN "smoothhound" "smoothhounds" ;
+lin smoothie_N = mkN "smoothie" "smoothies" ;
+lin smoothing_iron_N = mkN "smoothing-iron" "smoothing-irons" ;
+lin smoothing_plane_N = mkN "smoothing-plane" "smoothing-planes" ;
+lin smoothness_N = mkN "smoothness" "smoothnesses" ;
+lin smorgasbord_N = mkN "smorgasbord" "smorgasbords" ;
+lin smother_N = mkN "smother" "IRREG" ;
+lin smother_V = mkV "smother" "smothered" "smothered" ;
+lin smothering_A = mkAMost "smothering" "smotheringly" ;
+lin smoulder_N = mkN "smoulder" "smoulders" ;
+lin smoulder_V = mkV "smoulder" "smouldered" "smouldered" ;
+lin smudge_N = mkN "smudge" "smudges" ;
+lin smudge_V = mkV "smudge" "smudged" "smudged" ;
+lin smudgy_A = mkAMost "smudgy" "smudgily" ;
+lin smug_A = mkA "smug" "smugger" "smuggest" "smugly" ;
+lin smuggle_V = mkV "smuggle" "smuggled" "smuggled" ;
+lin smuggler_N = mkN "smuggler" "smugglers" ;
+lin smuggling_N = mkN "smuggling" "smugglings" ;
+lin smugness_N = mkN "smugness" "smugnesses" ;
+lin smut_N = mkN "smut" "smuts" ;
+lin smut_V = mkV "smut" "smutted" "smutted" ;
+lin smuttiness_N = mkN "smuttiness" "smuttinesses" ;
+lin smutty_A = mkA "smutty" "smuttier" "smuttiest" "smuttily" ;
+lin snack_N = mkN "snack" "snacks" ;
+lin snack_bar_N = mkN "snack-bar" "snack-bars" ;
+lin snack_counter_N = mkN "snack-counter" "snack-counters" ;
+lin snaffle_N = mkN "snaffle" "snaffles" ;
+lin snaffle_V = mkV "snaffle" "snaffled" "snaffled" ;
+lin snaffle_bit_N = mkN "snaffle-bit" "snaffle-bits" ;
+lin snafu_N = mkN "snafu" "snafus" ;
+lin snag_N = mkN "snag" "snags" ;
+lin snag_V = mkV "snag" "snagged" "snagged" ;
+lin snail_N = mkN "snail" "snails" ;
+lin snailfish_N = mkN "snailfish" "snailfishes" ;
+lin snailflower_N = mkN "snailflower" "snailflowers" ;
+lin snake_N = mkN "snake" "snakes" ;
+lin snake_V = mkV "snake" "snaked" "snaked" ;
+lin snake_charmer_N = mkN "snake-charmer" "snake-charmers" ;
+lin snakebird_N = mkN "snakebird" "snakebirds" ;
+lin snakebite_N = mkN "snakebite" "snakebites" ;
+lin snakeblenny_N = mkN "snakeblenny" "snakeblennies" ;
+lin snakefly_N = mkN "snakefly" "snakeflies" ;
+lin snakewood_N = mkN "snakewood" "snakewoods" ;
+lin snaky_A = mkA "snaky" "snakier" "snakiest" "snakily" ;
+lin snap_N = mkN "snap" "snaps" ;
+lin snap_V = mkV "snap" "snapped" "snapped" ;
+lin snap_fastener_N = mkN "snap-fastener" "snap-fasteners" ;
+lin snapdragon_N = mkN "snapdragon" "snapdragons" ;
+lin snapper_N = mkN "snapper" "snappers" ;
+lin snappish_A = mkAMost "snappish" "snappishly" ;
+lin snappishness_N = mkN "snappishness" "snappishnesses" ;
+lin snappy_A = mkA "snappy" "snappier" "snappiest" "snappily" ;
+lin snapshot_N = mkN "snapshot" "snapshots" ;
+lin snare_N = mkN "snare" "snares" ;
+lin snare_V = mkV "snare" "snared" "snared" ;
+lin snare_drum_N = mkN "snare-drum" "snare-drums" ;
+lin snarer_N = mkN "snarer" "snarers" ;
+lin snarl_N = mkN "snarl" "snarls" ;
+lin snarl_V = mkV "snarl" "snarled" "snarled" ;
+lin snarl_up_N = mkN "snarl-up" "snarl-ups" ;
+lin snatch_N = mkN "snatch" "snatches" ;
+lin snatch_V = mkV "snatch" "snatched" "snatched" ;
+lin snatcher_N = mkN "snatcher" "snatchers" ;
+lin snazzy_A = mkAMost "snazzy" "snazzily" ;
+lin sneak_N = mkN "sneak" "sneaks" ;
+lin sneak_V = mkV "sneak" "sneaked" "sneaked" ;
+lin sneak_thief_N = mkN "sneak-thief" "sneak-thieves" ;
+lin sneakingly_Adv = mkAdv "sneakingly" ;
+lin sneaky_A = mkA "sneaky" "sneakier" "sneakiest" "sneakily" ;
+lin sneer_N = mkN "sneer" "sneers" ;
+lin sneer_V = mkV "sneer" "sneered" "sneered" ;
+lin sneerer_N = mkN "sneerer" "sneerers" ;
+lin sneeringly_Adv = mkAdv "sneeringly" ;
+lin sneeze_N = mkN "sneeze" "sneezes" ;
+lin sneeze_V = mkV "sneeze" "sneezed" "sneezed" ;
+lin sneezer_N = mkN "sneezer" "sneezers" ;
+lin sneezeweed_N = mkN "sneezeweed" "sneezeweeds" ;
+lin sneezy_A = mkA "sneezy" "sneezier" "sneeziest" "sneezily" ;
+lin snick_N = mkN "snick" "snicks" ;
+lin snick_V = mkV "snick" "snicked" "snicked" ;
+lin snicker_N = mkN "snicker" "snickers" ;
+lin snicker_V = mkV "snicker" "snickered" "snickered" ;
+lin snide_A = mkAMost "snide" "snidely" ;
+lin sniff_N = mkN "sniff" "sniffs" ;
+lin sniff_V = mkV "sniff" "sniffed" "sniffed" ;
+lin sniffer_N = mkN "sniffer" "sniffers" ;
+lin sniffle_V = mkV "sniffle" "sniffled" "sniffled" ;
+lin sniffler_N = mkN "sniffler" "snifflers" ;
+lin sniffly_A = mkA "sniffly" "snifflier" "sniffliest" "snifflily" ;
+lin sniffy_A = mkA "sniffy" "sniffier" "sniffiest" "sniffily" ;
+lin snifter_N = mkN "snifter" "snifters" ;
+lin snigger_N = mkN "snigger" "sniggers" ;
+lin snigger_V = mkV "snigger" "sniggered" "sniggered" ;
+lin snip_N = mkN "snip" "snips" ;
+lin snip_V = mkV "snip" "snipped" "snipped" ;
+lin snipe_N = mkN "snipe" "snipe" ;
+lin snipe_V = mkV "snipe" "sniped" "sniped" ;
+lin snipefish_N = mkN "snipefish" "snipefishes" ;
+lin sniper_N = mkN "sniper" "snipers" ;
+lin snippet_N = mkN "snippet" "snippets" ;
+lin snipping_N = mkN "snipping" "snippings" ;
+lin snips_N = mkN "snips" "snipses" ;
+lin snit_N = mkN "snit" "snits" ;
+lin snitch_V = mkV "snitch" "snitched" "snitched" ;
+lin snivel_N = mkN "snivel" "snivels" ;
+lin snivel_V = mkV "snivel" "snivelled" "snivelled" ;
+lin sniveller_N = mkN "sniveller" "snivellers" ;
+lin snob_N = mkN "snob" "snobs" ;
+lin snobbery_N = mkN "snobbery" "snobberies" ;
+lin snobbish_A = mkAMost "snobbish" "snobbishly" ;
+lin snobbishness_N = mkN "snobbishness" "snobbishnesses" ;
+lin snog_V = mkV "snog" "snogged" "snogged" ;
+lin snogging_N = mkN "snogging" "snoggings" ;
+lin snood_N = mkN "snood" "snoods" ;
+lin snook_N = mkN "snook" "snooks" ;
+lin snooker_N = mkN "snooker" "snookers" ;
+lin snoop_N = mkN "snoop" "snoops" ;
+lin snoop_V = mkV "snoop" "snooped" "snooped" ;
+lin snooper_N = mkN "snooper" "snoopers" ;
+lin snootiness_N = mkN "snootiness" "snootinesses" ;
+lin snooty_A = mkA "snooty" "snootier" "snootiest" "snootily" ;
+lin snooze_N = mkN "snooze" "snoozes" ;
+lin snooze_V = mkV "snooze" "snoozed" "snoozed" ;
+lin snore_N = mkN "snore" "snores" ;
+lin snore_V = mkV "snore" "snored" "snored" ;
+lin snorer_N = mkN "snorer" "snorers" ;
+lin snorkel_N = mkN "snorkel" "snorkels" ;
+lin snorkeling_N = mkN "snorkeling" "snorkelings" ;
+lin snort_N = mkN "snort" "snorts" ;
+lin snort_V = mkV "snort" "snorted" "snorted" ;
+lin snorter_N = mkN "snorter" "snorters" ;
+lin snorty_A = mkA "snorty" "snortier" "snortiest" "snortily" ;
+lin snot_N = mkN "snot" "snots" ;
+lin snot_nosed_A = mkAMost "snot-nosed" "snot-nosedly" ;
+lin snotty_A = mkA "snotty" "snottier" "snottiest" "snottily" ;
+lin snout_N = mkN "snout" "snouts" ;
+lin snow_N = mkN "snow" "snows" ;
+lin snow_V = mkV "snow" "snowed" "snowed" ;
+lin snow_clad_A = mkAMost "snow-clad" "snow-cladly" ;
+lin snow_covered_A = mkAMost "snow-covered" "snow-coveredly" ;
+lin snow_line_N = mkN "snow-line" "snow-lines" ;
+lin snow_white_A = mkAMost "snow-white" "snow-whitely" ;
+lin snowball_N = mkN "snowball" "snowballs" ;
+lin snowball_V = mkV "snowball" "snowballed" "snowballed" ;
+lin snowbank_N = mkN "snowbank" "snowbanks" ;
+lin snowbell_N = mkN "snowbell" "snowbells" ;
+lin snowberry_N = mkN "snowberry" "snowberries" ;
+lin snowblind_A = mkAMost "snowblind" "snowblindly" ;
+lin snowblindness_N = mkN "snowblindness" "snowblindnesses" ;
+lin snowboard_N = mkN "snowboard" "snowboards" ;
+lin snowboarder_N = mkN "snowboarder" "snowboarders" ;
+lin snowboarding_N = mkN "snowboarding" "snowboardings" ;
+lin snowbound_A = mkAMost "snowbound" "snowboundly" ;
+lin snowcap_N = mkN "snowcap" "snowcaps" ;
+lin snowcapped_A = mkAMost "snowcapped" "snowcappedly" ;
+lin snowdrift_N = mkN "snowdrift" "snowdrifts" ;
+lin snowdrop_N = mkN "snowdrop" "snowdrops" ;
+lin snowfall_N = mkN "snowfall" "snowfalls" ;
+lin snowfield_N = mkN "snowfield" "snowfields" ;
+lin snowflake_N = mkN "snowflake" "snowflakes" ;
+lin snowman_N = mkN "snowman" "snowmen" ;
+lin snowmobile_N = mkN "snowmobile" "snowmobiles" ;
+lin snowplough_N = mkN "snowplough" "snowploughs" ;
+lin snowplow_N = mkN "snowplow" "snowplows" ;
+lin snowshoe_N = mkN "snowshoe" "snowshoes" ;
+lin snowstorm_N = mkN "snowstorm" "snowstorms" ;
+lin snowsuit_N = mkN "snowsuit" "snowsuits" ;
+lin snowy_A = mkA "snowy" "snowier" "snowiest" "snowily" ;
+lin snub_A = mkAMost "snub" "snubly" ;
+lin snub_N = mkN "snub" "snubs" ;
+lin snub_V = mkV "snub" "snubbed" "snubbed" ;
+lin snub_nosed_A = mkAMost "snub-nosed" "snub-nosedly" ;
+lin snuff_A = mkA "snuff" "snuffer" "snuffest" "snuffly" ;
+lin snuff_N = mkN "snuff" "snuffs" ;
+lin snuff_V = mkV "snuff" "snuffed" "snuffed" ;
+lin snuff_colour_A = mkAMost "snuff-colour" "snuff-colourly" ;
+lin snuff_colour_N = mkN "snuff-colour" "snuff-colours" ;
+lin snuff_coloured_A = mkAMost "snuff-coloured" "snuff-colouredly" ;
+lin snuffbox_N = mkN "snuffbox" "snuffboxes" ;
+lin snuffer_N = mkN "snuffer" "snuffers" ;
+lin snuffers_N = mkN "snuffers" "snufferses" ;
+lin snuffle_N = mkN "snuffle" "snuffles" ;
+lin snuffle_V = mkV "snuffle" "snuffled" "snuffled" ;
+lin snuffler_N = mkN "snuffler" "snufflers" ;
+lin snug_A = mkA "snug" "snugger" "snuggest" "snugly" ;
+lin snug_N = mkN "snug" "snugs" ;
+lin snuggery_N = mkN "snuggery" "snuggeries" ;
+lin snuggle_V = mkV "snuggle" "snuggled" "snuggled" ;
+lin snugness_N = mkN "snugness" "snugnesses" ;
+lin so_Adv = mkAdv "so" ;
+lin so_N = mkN "so" "si" ;
+lin so_and_so_N = mkN "so-and-so" "so-and-sos" ;
+lin so_called_A = mkAMost "so-called" "so-calledly" ;
+lin so_so_A = mkAMost "so-so" "so-soly" ;
+lin so_so_Adv = mkAdv "so-so" ;
+lin soak_N = mkN "soak" "soaks" ;
+lin soak_V = mkV "soak" "soaked" "soaked" ;
+lin soaker_N = mkN "soaker" "soakers" ;
+lin soaking_Adv = mkAdv "soaking" ;
+lin soap_N = mkN "soap" "soaps" ;
+lin soap_V = mkV "soap" "soaped" "soaped" ;
+lin soap_bubble_N = mkN "soap-bubble" "soap-bubbles" ;
+lin soap_opera_N = mkN "soap-opera" "soap-operas" ;
+lin soapberry_N = mkN "soapberry" "soapberries" ;
+lin soapbox_N = mkN "soapbox" "soapboxes" ;
+lin soapfish_N = mkN "soapfish" "soapfishes" ;
+lin soapiness_N = mkN "soapiness" "soapinesses" ;
+lin soapstone_N = mkN "soapstone" "soapstones" ;
+lin soapsuds_N = mkN "soapsuds" "soapsudses" ;
+lin soapweed_N = mkN "soapweed" "soapweeds" ;
+lin soapwort_N = mkN "soapwort" "soapworts" ;
+lin soapy_A = mkA "soapy" "soapier" "soapiest" "soapily" ;
+lin soar_N = mkN "soar" "soars" ;
+lin soar_V = mkV "soar" "soared" "soared" ;
+lin sob_N = mkN "sob" "sobs" ;
+lin sob_V = mkV "sob" "sobbed" "sobbed" ;
+lin sob_stuff_N = mkN "sob-stuff" "sob-stuffs" ;
+lin sobbingly_Adv = mkAdv "sobbingly" ;
+lin sober_A = mkAMost "sober" "soberly" ;
+lin sober_V = mkV "sober" "sobered" "sobered" ;
+lin sober_sides_N = mkN "sober-sides" "IRREG" ;
+lin soberness_N = mkN "soberness" "sobernesses" ;
+lin sobersided_A = mkAMost "sobersided" "sobersidedly" ;
+lin sobersides_N = mkN "sobersides" "sobersideses" ;
+lin sobralia_N = mkN "sobralia" "sobralias" ;
+lin sobriety_N = mkN "sobriety" "sobrieties" ;
+lin sobriquet_N = mkN "sobriquet" "sobriquets" ;
+lin soc_N = mkN "soc" "socs" ;
+lin socage_N = mkN "socage" "socages" ;
+lin soccer_N = mkN "soccer" "soccers" ;
+lin sociability_N = mkN "sociability" "sociabilities" ;
+lin sociable_A = mkAMost "sociable" "sociably" ;
+lin sociable_N = mkN "sociable" "sociables" ;
+lin social_A = mkAMost "social" "socially" ;
+lin social_N = mkN "social" "socials" ;
+lin social_work_N = mkN "social-work" "social-works" ;
+lin socialism_N = mkN "socialism" "socialisms" ;
+lin socialist_A = mkAMost "socialist" "socialistly" ;
+lin socialist_N = mkN "socialist" "socialists" ;
+lin socialistic_A = mkAMost "socialistic" "socialisticly" ;
+lin socialite_N = mkN "socialite" "socialites" ;
+lin sociality_N = mkN "sociality" "socialities" ;
+lin socialization_N = mkN "socialization" "socializations" ;
+lin socialize_V = mkV "socialize" "socialized" "socialized" ;
+lin socializer_N = mkN "socializer" "socializers" ;
+lin society_N = mkN "society" "societies" ;
+lin sociobiologic_A = mkAMost "sociobiologic" "sociobiologicly" ;
+lin sociobiologically_Adv = mkAdv "sociobiologically" ;
+lin sociobiologist_N = mkN "sociobiologist" "sociobiologists" ;
+lin sociobiology_N = mkN "sociobiology" "sociobiologies" ;
+lin sociocultural_A = mkAMost "sociocultural" "socioculturally" ;
+lin socioeconomic_A = mkAMost "socioeconomic" "socioeconomicly" ;
+lin socioeconomically_Adv = mkAdv "socioeconomically" ;
+lin sociolinguist_N = mkN "sociolinguist" "sociolinguists" ;
+lin sociolinguistic_A = mkAMost "sociolinguistic" "sociolinguisticly" ;
+lin sociolinguistically_Adv = mkAdv "sociolinguistically" ;
+lin sociolinguistics_N = mkN "sociolinguistics" "sociolinguisticses" ;
+lin sociological_A = mkAMost "sociological" "sociologically" ;
+lin sociologist_N = mkN "sociologist" "sociologists" ;
+lin sociology_N = mkN "sociology" "sociologies" ;
+lin sociometry_N = mkN "sociometry" "sociometries" ;
+lin sociopath_N = mkN "sociopath" "sociopaths" ;
+lin sociopathic_A = mkAMost "sociopathic" "sociopathicly" ;
+lin sock_Adv = mkAdv "sock" ;
+lin sock_N = mkN "sock" "socks" ;
+lin sock_V = mkV "sock" "socked" "socked" ;
+lin socket_N = mkN "socket" "sockets" ;
+lin sockeye_N = mkN "sockeye" "sockeyes" ;
+lin socle_N = mkN "socle" "socles" ;
+lin socratic_A = mkAMost "socratic" "socraticly" ;
+lin sod_N = mkN "sod" "sods" ;
+lin sod_V = mkV "sod" "sodded" "sodded" ;
+lin soda_N = mkN "soda" "sodas" ;
+lin soda_biscuit_N = mkN "soda-biscuit" "soda-biscuits" ;
+lin soda_cracker_N = mkN "soda-cracker" "soda-crackers" ;
+lin soda_fountain_N = mkN "soda-fountain" "soda-fountains" ;
+lin soda_water_N = mkN "soda-water" "soda-waters" ;
+lin sodalist_N = mkN "sodalist" "sodalists" ;
+lin sodalite_N = mkN "sodalite" "sodalites" ;
+lin sodden_A = mkAMost "sodden" "soddenly" ;
+lin sodium_N = mkN "sodium" "sodiums" ;
+lin sodoku_N = mkN "sodoku" "sodokus" ;
+lin sodom_N = mkN "sodom" "sodoms" ;
+lin sodomite_N = mkN "sodomite" "sodomites" ;
+lin sodomy_N = mkN "sodomy" "sodomies" ;
+lin sofa_N = mkN "sofa" "sofas" ;
+lin soffit_N = mkN "soffit" "soffits" ;
+lin soft_A = mkA "soft" "softer" "softest" "softly" ;
+lin soft_boiled_A = mkAMost "soft-boiled" "soft-boiledly" ;
+lin soft_footed_A = mkAMost "soft-footed" "soft-footedly" ;
+lin soft_headed_A = mkAMost "soft-headed" "soft-headedly" ;
+lin soft_hearted_A = mkAMost "soft-hearted" "soft-heartedly" ;
+lin soft_pedal_V = mkV "soft-pedal" "soft-pedalled" "soft-pedalled" ;
+lin soft_soap_V = mkV "soft-soap" "soft-soaped" "soft-soaped" ;
+lin soft_solder_N = mkN "soft-solder" "soft-solders" ;
+lin soft_solder_V = mkV "soft-solder" "soft-soldered" "soft-soldered" ;
+lin soft_spoken_A = mkAMost "soft-spoken" "soft-spokenly" ;
+lin soft_witted_A = mkAMost "soft-witted" "soft-wittedly" ;
+lin softball_N = mkN "softball" "softballs" ;
+lin soften_softened_V = mkV "soften" "softened" "softened" ;
+lin soften_softenned_V = mkV "soften" "softenned" "softenned" ;
+lin softener_N = mkN "softener" "softeners" ;
+lin softening_N = mkN "softening" "softenings" ;
+lin softhearted_A = mkAMost "softhearted" "softheartedly" ;
+lin softheartedness_N = mkN "softheartedness" "softheartednesses" ;
+lin softie_N = mkN "softie" "softies" ;
+lin softish_A = mkAMost "softish" "softishly" ;
+lin softland_V = mkV "softland" "softlanded" "softlanded" ;
+lin softness_N = mkN "softness" "softnesses" ;
+lin software_N = mkN "software" "softwares" ;
+lin softwood_N = mkN "softwood" "softwoods" ;
+lin softy_N = mkN "softy" "softies" ;
+lin sogginess_N = mkN "sogginess" "sogginesses" ;
+lin soggy_A = mkA "soggy" "soggier" "soggiest" "soggily" ;
+lin soh_N = mkN "soh" "IRREG" ;
+lin soignee_A = mkAMost "soignee" "soigneely" ;
+lin soigné_A = mkAMost "soigné" "soignély" ;
+lin soil_N = mkN "soil" "soils" ;
+lin soil_V = mkV "soil" "soiled" "soiled" ;
+lin soil_pipe_N = mkN "soil-pipe" "soil-pipes" ;
+lin soiling_N = mkN "soiling" "soilings" ;
+lin soirée_N = mkN "soirée" "soirées" ;
+lin sojourn_N = mkN "sojourn" "sojourns" ;
+lin sojourn_V = mkV "sojourn" "sojourned" "sojourned" ;
+lin sojourner_N = mkN "sojourner" "sojourners" ;
+lin sol_N = mkN "sol" "sols" ;
+lin sol_fa_N = mkN "sol-fa" "sol-fae" ;
+lin solace_N = mkN "solace" "solaces" ;
+lin solace_V = mkV "solace" "solaced" "solaced" ;
+lin solan_N = mkN "solan" "solans" ;
+lin solanaceous_A = mkAMost "solanaceous" "solanaceously" ;
+lin solar_A = mkAMost "solar" "solarly" ;
+lin solar_plexus_N = mkN "solar plexus" "solar plexi" ;
+lin solarium_N = mkN "solarium" "solaria" ;
+lin solarization_N = mkN "solarization" "solarizations" ;
+lin solder_N = mkN "solder" "solders" ;
+lin solder_V = mkV "solder" "soldered" "soldered" ;
+lin solderer_N = mkN "solderer" "solderers" ;
+lin soldering_iron_N = mkN "soldering-iron" "soldering-irons" ;
+lin soldier_N = mkN "soldier" "soldiers" ;
+lin soldier_V = mkV "soldier" "soldiered" "soldiered" ;
+lin soldierfish_N = mkN "soldierfish" "soldierfishes" ;
+lin soldiering_N = mkN "soldiering" "soldierings" ;
+lin soldierly_A = mkAMost "soldierly" "soldierlily" ;
+lin soldiery_N = mkN "soldiery" "IRREG" ;
+lin sole_A = mkAMost "sole" "solely" ;
+lin sole_N = mkN "sole" "soles" ;
+lin sole_V = mkV "sole" "soled" "soled" ;
+lin solecism_N = mkN "solecism" "solecisms" ;
+lin soleless_A = mkAMost "soleless" "solelessly" ;
+lin solemn_A = mkAMost "solemn" "solemnly" ;
+lin solemnity_N = mkN "solemnity" "solemnities" ;
+lin solemnization_N = mkN "solemnization" "solemnizations" ;
+lin solemnize_V = mkV "solemnize" "solemnized" "solemnized" ;
+lin solemnness_N = mkN "solemnness" "solemnnesses" ;
+lin solenogaster_N = mkN "solenogaster" "solenogasters" ;
+lin solenoid_N = mkN "solenoid" "solenoids" ;
+lin soleus_N = mkN "soleus" "soleuses" ;
+lin solfege_N = mkN "solfege" "solfeges" ;
+lin solferino_N = mkN "solferino" "solferinoes" ;
+lin solicit_V = mkV "solicit" "solicited" "solicited" ;
+lin solicitation_N = mkN "solicitation" "solicitations" ;
+lin solicitor_N = mkN "solicitor" "solicitors" ;
+lin solicitor_general_N = mkN "solicitor-general" "solicitor-generals" ;
+lin solicitorship_N = mkN "solicitorship" "solicitorships" ;
+lin solicitous_A = mkAMost "solicitous" "solicitously" ;
+lin solicitude_N = mkN "solicitude" "solicitudes" ;
+lin solid_A = mkAMost "solid" "solidly" ;
+lin solid_N = mkN "solid" "solids" ;
+lin solid_state_A = mkAMost "solid-state" "solid-stately" ;
+lin solidarity_N = mkN "solidarity" "solidarities" ;
+lin solidification_N = mkN "solidification" "solidifications" ;
+lin solidify_V = mkV "solidify" "solidified" "solidified" ;
+lin solidity_N = mkN "solidity" "solidities" ;
+lin solidness_N = mkN "solidness" "solidnesses" ;
+lin solidus_N = mkN "solidus" "soliduses" ;
+lin soliloquize_V = mkV "soliloquize" "soliloquized" "soliloquized" ;
+lin soliloquy_N = mkN "soliloquy" "soliloquies" ;
+lin solipsism_N = mkN "solipsism" "solipsisms" ;
+lin solitaire_N = mkN "solitaire" "solitaires" ;
+lin solitary_A = mkAMost "solitary" "solitarily" ;
+lin soliton_N = mkN "soliton" "solitons" ;
+lin solitude_N = mkN "solitude" "solitudes" ;
+lin solleret_N = mkN "solleret" "sollerets" ;
+lin solmization_N = mkN "solmization" "solmizations" ;
+lin solo_A = mkAMost "solo" "sololy" ;
+lin solo_N = mkN "solo" "solos" ;
+lin soloist_N = mkN "soloist" "soloists" ;
+lin solstice_N = mkN "solstice" "solstices" ;
+lin solubility_N = mkN "solubility" "solubilities" ;
+lin soluble_A = mkAMost "soluble" "solubly" ;
+lin solute_N = mkN "solute" "solutes" ;
+lin solution_N = mkN "solution" "solutions" ;
+lin solvability_N = mkN "solvability" "solvabilities" ;
+lin solvable_A = mkAMost "solvable" "solvably" ;
+lin solvate_N = mkN "solvate" "solvates" ;
+lin solvation_N = mkN "solvation" "solvations" ;
+lin solve_V = mkV "solve" "solved" "solved" ;
+lin solvency_N = mkN "solvency" "solvencies" ;
+lin solvent_A = mkAMost "solvent" "solvently" ;
+lin solvent_N = mkN "solvent" "solvents" ;
+lin som_N = mkN "som" "soms" ;
+lin soma_N = mkN "soma" "somas" ;
+lin soman_N = mkN "soman" "somans" ;
+lin somatic_A = mkAMost "somatic" "somaticly" ;
+lin somatogenic_A = mkAMost "somatogenic" "somatogenicly" ;
+lin somatosense_N = mkN "somatosense" "somatosenses" ;
+lin somatosensory_A = mkAMost "somatosensory" "somatosensorily" ;
+lin somatotropin_N = mkN "somatotropin" "somatotropins" ;
+lin somber_A = mkAMost "somber" "somberly" ;
+lin sombre_A = mkAMost "sombre" "sombrely" ;
+lin sombreness_N = mkN "sombreness" "sombrenesses" ;
+lin sombrero_N = mkN "sombrero" "sombreros" ;
+lin some_A = mkA "some" "somer" "somest" "somely" ;
+lin someday_Adv = mkAdv "someday" ;
+lin somehow_Adv = mkAdv "somehow" ;
+lin someplace_Adv = mkAdv "someplace" ;
+lin somersault_N = mkN "somersault" "somersaults" ;
+lin somersault_V = mkV "somersault" "somersaulted" "somersaulted" ;
+lin somesthesia_N = mkN "somesthesia" "somesthesias" ;
+lin sometime_Adv = mkAdv "sometime" ;
+lin sometimes_Adv = mkAdv "sometimes" ;
+lin someway_Adv = mkAdv "someway" ;
+lin somewhat_Adv = mkAdv "somewhat" ;
+lin somewhere_Adv = mkAdv "somewhere" ;
+lin somewhere_N = mkN "somewhere" "somewheres" ;
+lin sommelier_N = mkN "sommelier" "sommeliers" ;
+lin somnambulism_N = mkN "somnambulism" "somnambulisms" ;
+lin somnambulist_N = mkN "somnambulist" "somnambulists" ;
+lin somniloquist_N = mkN "somniloquist" "somniloquists" ;
+lin somnolence_N = mkN "somnolence" "somnolences" ;
+lin somnolent_A = mkAMost "somnolent" "somnolently" ;
+lin son_N = mkN "son" "sons" ;
+lin son_in_law_N = mkN "son-in-law" "sons-in-law" ;
+lin sonant_N = mkN "sonant" "sonants" ;
+lin sonar_N = mkN "sonar" "sonars" ;
+lin sonata_N = mkN "sonata" "sonatas" ;
+lin sonatina_N = mkN "sonatina" "sonatinas" ;
+lin sone_N = mkN "sone" "sones" ;
+lin song_N = mkN "song" "songs" ;
+lin songbird_N = mkN "songbird" "songbirds" ;
+lin songbook_N = mkN "songbook" "songbooks" ;
+lin songster_N = mkN "songster" "songsters" ;
+lin songstress_N = mkN "songstress" "songstresses" ;
+lin songwriter_N = mkN "songwriter" "songwriters" ;
+lin sonic_A = mkAMost "sonic" "sonicly" ;
+lin sonnet_N = mkN "sonnet" "sonnets" ;
+lin sonneteer_N = mkN "sonneteer" "sonneteers" ;
+lin sonny_N = mkN "sonny" "sonnies" ;
+lin sonogram_N = mkN "sonogram" "sonograms" ;
+lin sonograph_N = mkN "sonograph" "sonographs" ;
+lin sonography_N = mkN "sonography" "sonographies" ;
+lin sonority_N = mkN "sonority" "sonorities" ;
+lin sonorous_A = mkAMost "sonorous" "sonorously" ;
+lin sonsy_A = mkAMost "sonsy" "sonsily" ;
+lin soon_Adv = mkAdv "soon" ;
+lin sooner_Adv = mkAdv "sooner" ;
+lin soonest_Adv = mkAdv "soonest" ;
+lin soot_N = mkN "soot" "soots" ;
+lin soot_V = mkV "soot" "sooted" "sooted" ;
+lin sooth_N = mkN "sooth" "sooths" ;
+lin soothe_V = mkV "soothe" "soothed" "soothed" ;
+lin soothing_A = mkAMost "soothing" "soothingly" ;
+lin soothsayer_N = mkN "soothsayer" "soothsayers" ;
+lin sooty_A = mkA "sooty" "sootier" "sootiest" "sootily" ;
+lin sop_N = mkN "sop" "sops" ;
+lin sop_V = mkV "sop" "sopped" "sopped" ;
+lin sophism_N = mkN "sophism" "sophisms" ;
+lin sophist_N = mkN "sophist" "sophists" ;
+lin sophistic_A = mkAMost "sophistic" "sophisticly" ;
+lin sophisticate_N = mkN "sophisticate" "sophisticates" ;
+lin sophisticated_A = mkAMost "sophisticated" "sophisticatedly" ;
+lin sophistication_N = mkN "sophistication" "sophistications" ;
+lin sophistry_N = mkN "sophistry" "sophistries" ;
+lin sophomore_N = mkN "sophomore" "sophomores" ;
+lin soporific_A = mkAMost "soporific" "soporificly" ;
+lin soporific_N = mkN "soporific" "soporifics" ;
+lin sopping_A = mkAMost "sopping" "soppingly" ;
+lin sopping_Adv = mkAdv "sopping" ;
+lin soppy_A = mkA "soppy" "soppier" "soppiest" "soppily" ;
+lin sopranino_A = mkAMost "sopranino" "sopraninoly" ;
+lin soprano_A = mkAMost "soprano" "sopranoly" ;
+lin soprano_N = mkN "soprano" "sopranos" ;
+lin sorb_N = mkN "sorb" "sorbs" ;
+lin sorbate_N = mkN "sorbate" "sorbates" ;
+lin sorbent_N = mkN "sorbent" "sorbents" ;
+lin sorbet_N = mkN "sorbet" "sorbets" ;
+lin sorcerer_N = mkN "sorcerer" "sorcerers" ;
+lin sorceress_N = mkN "sorceress" "sorceresses" ;
+lin sorcery_N = mkN "sorcery" "sorceries" ;
+lin sordid_A = mkAMost "sordid" "sordidly" ;
+lin sordidness_N = mkN "sordidness" "sordidnesses" ;
+lin sore_A = mkAMost "sore" "sorely" ;
+lin sore_N = mkN "sore" "sores" ;
+lin sorehead_N = mkN "sorehead" "soreheads" ;
+lin soreness_N = mkN "soreness" "sorenesses" ;
+lin sorghum_N = mkN "sorghum" "sorghums" ;
+lin sorgo_N = mkN "sorgo" "sorgoes" ;
+lin sorority_N = mkN "sorority" "sororities" ;
+lin sorption_N = mkN "sorption" "sorptions" ;
+lin sorrel_A = mkAMost "sorrel" "sorrelly" ;
+lin sorrel_N = mkN "sorrel" "sorrels" ;
+lin sorrow_N = mkN "sorrow" "sorrows" ;
+lin sorrow_V = mkV "sorrow" "sorrowed" "sorrowed" ;
+lin sorrowful_A = mkAMost "sorrowful" "sorrowfully" ;
+lin sorry_A = mkA "sorry" "sorrier" "sorriest" "sorrily" ;
+lin sort_N = mkN "sort" "sorts" ;
+lin sort_V = mkV "sort" "sorted" "sorted" ;
+lin sorter_N = mkN "sorter" "sorters" ;
+lin sortie_N = mkN "sortie" "sorties" ;
+lin sorting_N = mkN "sorting" "sortings" ;
+lin sorus_N = mkN "sorus" "soruses" ;
+lin sos_N = mkN "sos" "soss" ;
+lin sot_N = mkN "sot" "sots" ;
+lin soteriological_A = mkAMost "soteriological" "soteriologically" ;
+lin soteriology_N = mkN "soteriology" "soteriologies" ;
+lin sotho_A = mkAMost "sotho" "sotholy" ;
+lin sotho_N = mkN "sotho" "sothos" ;
+lin sottish_A = mkAMost "sottish" "sottishly" ;
+lin sottishness_N = mkN "sottishness" "sottishnesses" ;
+lin sotto_voce_Adv = mkAdv "sotto voce" ;
+lin sou'_east_Adv = mkAdv "sou'-east" ;
+lin sou'_east_N = mkN "sou'-east" "sou'-easts" ;
+lin sou'_sou'_east_Adv = mkAdv "sou'-sou'-east" ;
+lin sou'_sou'_east_N = mkN "sou'-sou'-east" "sou'-sou'-easts" ;
+lin sou'_sou'_west_Adv = mkAdv "sou'-sou'-west" ;
+lin sou'_sou'_west_N = mkN "sou'-sou'-west" "sou'-sou'-wests" ;
+lin sou'_west_Adv = mkAdv "sou'-west" ;
+lin sou'_west_N = mkN "sou'-west" "sou'-wests" ;
+lin sou'_wester_N = mkN "sou'-wester" "sou'-westers" ;
+lin sou'wester_N = mkN "sou'wester" "sou'westers" ;
+lin sou_N = mkN "sou" "sous" ;
+lin souari_N = mkN "souari" "souaris" ;
+lin soubrette_N = mkN "soubrette" "soubrettes" ;
+lin soubriquet_N = mkN "soubriquet" "soubriquets" ;
+lin souchong_N = mkN "souchong" "souchongs" ;
+lin soufflé_N = mkN "soufflé" "soufflés" ;
+lin sough_V = mkV "sough" "soughed" "soughed" ;
+lin soughingly_Adv = mkAdv "soughingly" ;
+lin souk_N = mkN "souk" "souks" ;
+lin soul_N = mkN "soul" "souls" ;
+lin soul_destroying_A = mkAMost "soul-destroying" "soul-destroyingly" ;
+lin soul_stirring_A = mkAMost "soul-stirring" "soul-stirringly" ;
+lin soulful_A = mkAMost "soulful" "soulfully" ;
+lin soulless_A = mkAMost "soulless" "soullessly" ;
+lin sound_A = mkAMost "sound" "soundly" ;
+lin sound_Adv = mkAdv "sound" ;
+lin sound_N = mkN "sound" "sounds" ;
+lin sound_V = mkV "sound" "sounded" "sounded" ;
+lin sound_film_N = mkN "sound-film" "sound-films" ;
+lin sound_recording_N = mkN "sound-recording" "sound-recordings" ;
+lin sound_wave_N = mkN "sound-wave" "sound-waves" ;
+lin soundbox_N = mkN "soundbox" "soundboxes" ;
+lin sounder_N = mkN "sounder" "sounders" ;
+lin sounding_N = mkN "sounding" "soundings" ;
+lin sounding_board_N = mkN "sounding-board" "sounding-boards" ;
+lin soundless_A = mkAMost "soundless" "soundlessly" ;
+lin soundman_N = mkN "soundman" "soundmen" ;
+lin soundness_N = mkN "soundness" "soundnesses" ;
+lin soundproof_A = mkAMost "soundproof" "soundproofly" ;
+lin soundproof_V = mkV "soundproof" "soundproofed" "soundproofed" ;
+lin soundtrack_N = mkN "soundtrack" "soundtracks" ;
+lin soup_N = mkN "soup" "soups" ;
+lin soup_V = mkV "soup" "souped" "souped" ;
+lin soup_kitchen_N = mkN "soup-kitchen" "soup-kitchens" ;
+lin soupspoon_N = mkN "soupspoon" "soupspoons" ;
+lin soupy_A = mkA "soupy" "soupier" "soupiest" "soupily" ;
+lin soupçon_N = mkN "soupçon" "soupçons" ;
+lin sour_A = mkAMost "sour" "sourly" ;
+lin sour_N = mkN "sour" "sours" ;
+lin sour_V = mkV "sour" "soured" "soured" ;
+lin sourball_N = mkN "sourball" "sourballs" ;
+lin source_N = mkN "source" "sources" ;
+lin sourdine_N = mkN "sourdine" "sourdines" ;
+lin sourdough_N = mkN "sourdough" "sourdoughs" ;
+lin souring_N = mkN "souring" "sourings" ;
+lin sourness_N = mkN "sourness" "sournesses" ;
+lin sourpuss_N = mkN "sourpuss" "sourpusses" ;
+lin soursop_N = mkN "soursop" "soursops" ;
+lin souse_N = mkN "souse" "souses" ;
+lin souse_V = mkV "souse" "soused" "soused" ;
+lin soutache_N = mkN "soutache" "soutaches" ;
+lin soutane_N = mkN "soutane" "soutanes" ;
+lin south_southeast_Adv = mkAdv "south-southeast" ;
+lin south_southeast_N = mkN "south-southeast" "south-southeasts" ;
+lin south_southwest_Adv = mkAdv "south-southwest" ;
+lin south_southwest_N = mkN "south-southwest" "south-southwests" ;
+lin southbound_A = mkAMost "southbound" "southboundly" ;
+lin southeast_A = mkAMost "southeast" "southeastly" ;
+lin southeast_Adv = mkAdv "southeast" ;
+lin southeast_N = mkN "southeast" "southeasts" ;
+lin southeaster_N = mkN "southeaster" "southeasters" ;
+lin southeasterly_A = mkAMost "southeasterly" "southeasterlily" ;
+lin southeastern_A = mkAMost "southeastern" "southeasternly" ;
+lin southeastward_A = mkAMost "southeastward" "southeastwardly" ;
+lin southeastward_Adv = mkAdv "southeastward" ;
+lin southerly_A = mkAMost "southerly" "southerlily" ;
+lin southerly_Adv = mkAdv "southerly" ;
+lin southerner_N = mkN "southerner" "southerners" ;
+lin southernism_N = mkN "southernism" "southernisms" ;
+lin southernmost_A = mkAMost "southernmost" "southernmostly" ;
+lin southernness_N = mkN "southernness" "southernnesses" ;
+lin southernwood_N = mkN "southernwood" "southernwoods" ;
+lin southland_N = mkN "southland" "southlands" ;
+lin southpaw_N = mkN "southpaw" "southpaws" ;
+lin southward_Adv = mkAdv "southward" ;
+lin southwards_Adv = mkAdv "southwards" ;
+lin southwest_A = mkAMost "southwest" "southwestly" ;
+lin southwest_Adv = mkAdv "southwest" ;
+lin southwest_N = mkN "southwest" "southwests" ;
+lin southwester_N = mkN "southwester" "southwesters" ;
+lin southwesterly_A = mkAMost "southwesterly" "southwesterlily" ;
+lin southwestern_A = mkAMost "southwestern" "southwesternly" ;
+lin southwestward_A = mkAMost "southwestward" "southwestwardly" ;
+lin southwestward_Adv = mkAdv "southwestward" ;
+lin souvenir_N = mkN "souvenir" "souvenirs" ;
+lin souvlaki_N = mkN "souvlaki" "souvlakis" ;
+lin sovereign_A = mkAMost "sovereign" "sovereignly" ;
+lin sovereign_N = mkN "sovereign" "sovereigns" ;
+lin sovereignty_N = mkN "sovereignty" "sovereignties" ;
+lin sovietize_V = mkV "sovietize" "sovietized" "sovietized" ;
+lin sow_N = mkN "sow" "sows" ;
+lin sow_V = mkV "sow" "sowed" "sowed" ;
+lin sowbane_N = mkN "sowbane" "sowbanes" ;
+lin sowbelly_N = mkN "sowbelly" "sowbellies" ;
+lin sowbread_N = mkN "sowbread" "sowbreads" ;
+lin sower_N = mkN "sower" "sowers" ;
+lin soy_N = mkN "soy" "soys" ;
+lin soya_N = mkN "soya" "soyas" ;
+lin sozzled_A = mkAMost "sozzled" "sozzledly" ;
+lin spa_N = mkN "spa" "spas" ;
+lin space_N = mkN "space" "spaces" ;
+lin space_V = mkV "space" "spaced" "spaced" ;
+lin space_bar_N = mkN "space-bar" "space-bars" ;
+lin space_capsule_N = mkN "space-capsule" "space-capsules" ;
+lin space_heater_N = mkN "space-heater" "space-heaters" ;
+lin space_helmet_N = mkN "space-helmet" "space-helmets" ;
+lin space_rocket_N = mkN "space-rocket" "space-rockets" ;
+lin space_time_N = mkN "space-time" "space-times" ;
+lin space_vehicle_N = mkN "space-vehicle" "space-vehicles" ;
+lin spacecraft_N = mkN "spacecraft" "spacecraft" ;
+lin spaceflight_N = mkN "spaceflight" "spaceflights" ;
+lin spaceship_N = mkN "spaceship" "spaceships" ;
+lin spacesuit_N = mkN "spacesuit" "spacesuits" ;
+lin spacewalker_N = mkN "spacewalker" "spacewalkers" ;
+lin spaceward_Adv = mkAdv "spaceward" ;
+lin spacing_N = mkN "spacing" "spacings" ;
+lin spacious_A = mkAMost "spacious" "spaciously" ;
+lin spaciousness_N = mkN "spaciousness" "spaciousnesses" ;
+lin spackle_N = mkN "spackle" "spackles" ;
+lin spade_N = mkN "spade" "spades" ;
+lin spade_V = mkV "spade" "spaded" "spaded" ;
+lin spadefish_N = mkN "spadefish" "spadefishes" ;
+lin spadefoot_N = mkN "spadefoot" "spadefoots" ;
+lin spadeful_N = mkN "spadeful" "spadefuls" ;
+lin spadework_N = mkN "spadework" "spadeworks" ;
+lin spadix_N = mkN "spadix" "spadixes" ;
+lin spaff_V = mkV "spaff" "spaffed" "spaffed" ;
+lin spaghetti_N = mkN "spaghetti" "spaghettis" ;
+lin spaghettini_N = mkN "spaghettini" "spaghettinis" ;
+lin spall_N = mkN "spall" "spalls" ;
+lin spallation_N = mkN "spallation" "spallations" ;
+lin spam_N = mkN "spam" "spams" ;
+lin spammer_N = mkN "spammer" "spammers" ;
+lin span_N = mkN "span" "spans" ;
+lin span_V = mkV "span" "spanned" "spanned" ;
+lin spandex_N = mkN "spandex" "spandexes" ;
+lin spandrel_N = mkN "spandrel" "spandrels" ;
+lin spangle_N = mkN "spangle" "spangles" ;
+lin spangle_V = mkV "spangle" "spangled" "spangled" ;
+lin spaniard_N = mkN "spaniard" "spaniards" ;
+lin spaniel_N = mkN "spaniel" "spaniels" ;
+lin spank_N = mkN "spank" "spanks" ;
+lin spank_V = mkV "spank" "spanked" "spanked" ;
+lin spanker_N = mkN "spanker" "spankers" ;
+lin spanking_A = mkAMost "spanking" "spankingly" ;
+lin spanking_N = mkN "spanking" "spankings" ;
+lin spanner_N = mkN "spanner" "spanners" ;
+lin spar_N = mkN "spar" "spars" ;
+lin spar_V = mkV "spar" "sparred" "sparred" ;
+lin spare_A = mkAMost "spare" "sparely" ;
+lin spare_N = mkN "spare" "spares" ;
+lin spare_V = mkV "spare" "spared" "spared" ;
+lin spare_rib_N = mkN "spare-rib" "spare-ribs" ;
+lin spareness_N = mkN "spareness" "sparenesses" ;
+lin sparer_N = mkN "sparer" "sparers" ;
+lin sparerib_N = mkN "sparerib" "spareribs" ;
+lin spareribs_N = mkN "spareribs" "spareribses" ;
+lin sparid_N = mkN "sparid" "sparids" ;
+lin sparing_A = mkAMost "sparing" "sparingly" ;
+lin spark_N = mkN "spark" "sparks" ;
+lin spark_V = mkV "spark" "sparked" "sparked" ;
+lin spark_plug_N = mkN "spark-plug" "spark-plugs" ;
+lin sparking_plug_N = mkN "sparking-plug" "sparking-plugs" ;
+lin sparkle_N = mkN "sparkle" "sparkles" ;
+lin sparkle_V = mkV "sparkle" "sparkled" "sparkled" ;
+lin sparkler_N = mkN "sparkler" "sparklers" ;
+lin sparling_N = mkN "sparling" "sparlings" ;
+lin sparring_N = mkN "sparring" "sparrings" ;
+lin sparring_match_N = mkN "sparring-match" "sparring-matches" ;
+lin sparring_partner_N = mkN "sparring-partner" "sparring-partners" ;
+lin sparrow_N = mkN "sparrow" "sparrows" ;
+lin sparse_A = mkA "sparse" "sparser" "sparsest" "sparsely" ;
+lin sparseness_N = mkN "sparseness" "sparsenesses" ;
+lin sparsity_N = mkN "sparsity" "sparsities" ;
+lin spartan_A = mkAMost "spartan" "spartanly" ;
+lin spartan_N = mkN "spartan" "spartans" ;
+lin spasm_N = mkN "spasm" "spasms" ;
+lin spasmodic_A = mkAMost "spasmodic" "spasmodicly" ;
+lin spasmodically_Adv = mkAdv "spasmodically" ;
+lin spasmolysis_N = mkN "spasmolysis" "spasmolysises" ;
+lin spastic_A = mkAMost "spastic" "spasticly" ;
+lin spastic_N = mkN "spastic" "spastics" ;
+lin spasticity_N = mkN "spasticity" "spasticities" ;
+lin spat_N = mkN "spat" "spats" ;
+lin spat_V = mkV "spat" "spatted" "spatted" ;
+lin spatchcock_N = mkN "spatchcock" "spatchcocks" ;
+lin spatchcock_V = mkV "spatchcock" "spatchcocked" "spatchcocked" ;
+lin spate_N = mkN "spate" "spates" ;
+lin spathe_N = mkN "spathe" "spathes" ;
+lin spathiphyllum_N = mkN "spathiphyllum" "spathiphyllums" ;
+lin spatial_A = mkAMost "spatial" "spatially" ;
+lin spatiotemporal_A = mkAMost "spatiotemporal" "spatiotemporally" ;
+lin spatter_N = mkN "spatter" "spatters" ;
+lin spatter_V = mkV "spatter" "spattered" "spattered" ;
+lin spatterdock_N = mkN "spatterdock" "spatterdocks" ;
+lin spatula_N = mkN "spatula" "spatulas" ;
+lin spatulate_A = mkAMost "spatulate" "spatulately" ;
+lin spavin_N = mkN "spavin" "spavins" ;
+lin spavined_A = mkAMost "spavined" "spavinedly" ;
+lin spawn_N = mkN "spawn" "spawns" ;
+lin spawn_V = mkV "spawn" "spawned" "spawned" ;
+lin spawner_N = mkN "spawner" "spawners" ;
+lin spay_V = mkV "spay" "spayed" "spayed" ;
+lin spaying_N = mkN "spaying" "spayings" ;
+lin speak_V = mkV "speak" "spoke" "spoken" ;
+lin speakable_A = mkAMost "speakable" "speakably" ;
+lin speakeasy_N = mkN "speakeasy" "speakeasies" ;
+lin speaker_N = mkN "speaker" "speakers" ;
+lin speakerphone_N = mkN "speakerphone" "speakerphones" ;
+lin speakership_N = mkN "speakership" "speakerships" ;
+lin speaking_N = mkN "speaking" "speakings" ;
+lin speaking_trumpet_N = mkN "speaking-trumpet" "speaking-trumpets" ;
+lin speaking_tube_N = mkN "speaking-tube" "speaking-tubes" ;
+lin spear_N = mkN "spear" "spears" ;
+lin spear_V = mkV "spear" "speared" "speared" ;
+lin spearfish_N = mkN "spearfish" "spearfishes" ;
+lin spearhead_N = mkN "spearhead" "spearheads" ;
+lin spearhead_V = mkV "spearhead" "spearheaded" "spearheaded" ;
+lin spearmint_N = mkN "spearmint" "spearmints" ;
+lin spec_N = mkN "spec" "specs" ;
+lin special_A = mkAMost "special" "specially" ;
+lin special_N = mkN "special" "specials" ;
+lin specialism_N = mkN "specialism" "specialisms" ;
+lin specialist_N = mkN "specialist" "specialists" ;
+lin specialistic_A = mkAMost "specialistic" "specialisticly" ;
+lin speciality_N = mkN "speciality" "specialities" ;
+lin specialization_N = mkN "specialization" "specializations" ;
+lin specialize_V = mkV "specialize" "specialized" "specialized" ;
+lin specialty_N = mkN "specialty" "specialties" ;
+lin speciation_N = mkN "speciation" "speciations" ;
+lin specie_N = mkN "specie" "species" ;
+lin species_N = mkN "species" "species" ;
+lin specifiable_A = mkAMost "specifiable" "specifiably" ;
+lin specific_A = mkAMost "specific" "specifically" ;
+lin specific_N = mkN "specific" "specifics" ;
+lin specification_N = mkN "specification" "specifications" ;
+lin specificity_N = mkN "specificity" "specificities" ;
+lin specifier_N = mkN "specifier" "specifiers" ;
+lin specify_V = mkV "specify" "specified" "specified" ;
+lin specimen_N = mkN "specimen" "specimens" ;
+lin specious_A = mkAMost "specious" "speciously" ;
+lin speciousness_N = mkN "speciousness" "speciousnesses" ;
+lin speck_N = mkN "speck" "specks" ;
+lin specked_A = mkAMost "specked" "speckedly" ;
+lin speckle_N = mkN "speckle" "speckles" ;
+lin speckled_A = mkAMost "speckled" "speckledly" ;
+lin speckless_A = mkAMost "speckless" "specklessly" ;
+lin spectacle_N = mkN "spectacle" "spectacles" ;
+lin spectacled_A = mkAMost "spectacled" "spectacledly" ;
+lin spectacles_N = mkN "spectacles" "spectacleses" ;
+lin spectacular_A = mkAMost "spectacular" "spectacularly" ;
+lin spectacular_N = mkN "spectacular" "spectaculars" ;
+lin spectator_N = mkN "spectator" "spectators" ;
+lin spectinomycin_N = mkN "spectinomycin" "spectinomycins" ;
+lin spectral_A = mkAMost "spectral" "spectrally" ;
+lin spectre_N = mkN "spectre" "spectres" ;
+lin spectrogram_N = mkN "spectrogram" "spectrograms" ;
+lin spectrograph_N = mkN "spectrograph" "spectrographs" ;
+lin spectrographic_A = mkAMost "spectrographic" "spectrographicly" ;
+lin spectrographically_Adv = mkAdv "spectrographically" ;
+lin spectrometric_A = mkAMost "spectrometric" "spectrometricly" ;
+lin spectrophotometer_N = mkN "spectrophotometer" "spectrophotometers" ;
+lin spectroscope_N = mkN "spectroscope" "spectroscopes" ;
+lin spectroscopic_A = mkAMost "spectroscopic" "spectroscopicly" ;
+lin spectroscopy_N = mkN "spectroscopy" "spectroscopies" ;
+lin spectrum_N = mkN "spectrum" "spectra" ;
+lin speculate_V = mkV "speculate" "speculated" "speculated" ;
+lin speculation_N = mkN "speculation" "speculations" ;
+lin speculative_A = mkAMost "speculative" "speculatively" ;
+lin speculativeness_N = mkN "speculativeness" "speculativenesses" ;
+lin speculator_N = mkN "speculator" "speculators" ;
+lin speculum_N = mkN "speculum" "speculums" ;
+lin speech_N = mkN "speech" "speeches" ;
+lin speech_day_N = mkN "speech-day" "speech-days" ;
+lin speechify_V = mkV "speechify" "speechified" "speechified" ;
+lin speechless_A = mkAMost "speechless" "speechlessly" ;
+lin speechlessness_N = mkN "speechlessness" "speechlessnesses" ;
+lin speechwriter_N = mkN "speechwriter" "speechwriters" ;
+lin speed_N = mkN "speed" "speeds" ;
+lin speed_V = mkV "speed" "speeded" "speeded" ;
+lin speed_cop_N = mkN "speed-cop" "speed-cops" ;
+lin speed_indicator_N = mkN "speed-indicator" "speed-indicators" ;
+lin speed_limit_N = mkN "speed-limit" "speed-limits" ;
+lin speed_up_N = mkN "speed-up" "speed-ups" ;
+lin speedboat_N = mkN "speedboat" "speedboats" ;
+lin speeder_N = mkN "speeder" "speeders" ;
+lin speeding_N = mkN "speeding" "speedings" ;
+lin speedometer_N = mkN "speedometer" "speedometers" ;
+lin speedskater_N = mkN "speedskater" "speedskaters" ;
+lin speedway_N = mkN "speedway" "speedways" ;
+lin speedwell_N = mkN "speedwell" "speedwells" ;
+lin speedy_A = mkA "speedy" "speedier" "speediest" "speedily" ;
+lin spelaeologist_N = mkN "spelaeologist" "spelaeologists" ;
+lin spelaeology_N = mkN "spelaeology" "spelaeologies" ;
+lin speleologist_N = mkN "speleologist" "speleologists" ;
+lin speleology_N = mkN "speleology" "speleologies" ;
+lin spell_N = mkN "spell" "spells" ;
+lin spell_V = mkV "spell" "spelled" "spelled" ;
+lin spellbinder_N = mkN "spellbinder" "spellbinders" ;
+lin spellbound_A = mkAMost "spellbound" "spellboundly" ;
+lin speller_N = mkN "speller" "spellers" ;
+lin spelling_N = mkN "spelling" "spellings" ;
+lin spelt_N = mkN "spelt" "spelts" ;
+lin spelter_N = mkN "spelter" "spelters" ;
+lin spend_V = mkV "spend" "spent" "spent" ;
+lin spender_N = mkN "spender" "spenders" ;
+lin spending_N = mkN "spending" "spendings" ;
+lin spendthrift_N = mkN "spendthrift" "spendthrifts" ;
+lin sperm_N = mkN "sperm" "sperms" ;
+lin sperm_whale_N = mkN "sperm-whale" "sperm-whales" ;
+lin spermaceti_N = mkN "spermaceti" "spermacetis" ;
+lin spermatid_N = mkN "spermatid" "spermatids" ;
+lin spermatocele_N = mkN "spermatocele" "spermatoceles" ;
+lin spermatocyte_N = mkN "spermatocyte" "spermatocytes" ;
+lin spermatogenesis_N = mkN "spermatogenesis" "spermatogenesises" ;
+lin spermatophyte_N = mkN "spermatophyte" "spermatophytes" ;
+lin spermatozoon_N = mkN "spermatozoon" "spermatozoa" ;
+lin spermicidal_A = mkAMost "spermicidal" "spermicidally" ;
+lin spermicide_N = mkN "spermicide" "spermicides" ;
+lin spermous_A = mkAMost "spermous" "spermously" ;
+lin spew_V = mkV "spew" "spewed" "spewed" ;
+lin sphagnum_N = mkN "sphagnum" "sphagnums" ;
+lin sphenion_N = mkN "sphenion" "sphenions" ;
+lin sphere_N = mkN "sphere" "spheres" ;
+lin spherical_A = mkAMost "spherical" "spherically" ;
+lin sphericity_N = mkN "sphericity" "sphericities" ;
+lin spherocyte_N = mkN "spherocyte" "spherocytes" ;
+lin spheroid_N = mkN "spheroid" "spheroids" ;
+lin spherometer_N = mkN "spherometer" "spherometers" ;
+lin spherule_N = mkN "spherule" "spherules" ;
+lin sphincter_N = mkN "sphincter" "sphincters" ;
+lin sphingine_A = mkAMost "sphingine" "sphinginely" ;
+lin sphinx_N = mkN "sphinx" "sphinxes" ;
+lin sphygmomanometer_N = mkN "sphygmomanometer" "sphygmomanometers" ;
+lin spic_N = mkN "spic" "spics" ;
+lin spicate_A = mkAMost "spicate" "spicately" ;
+lin spiccato_N = mkN "spiccato" "spiccatoes" ;
+lin spice_N = mkN "spice" "spices" ;
+lin spice_V = mkV "spice" "spiced" "spiced" ;
+lin spicebush_N = mkN "spicebush" "spicebushes" ;
+lin spicemill_N = mkN "spicemill" "spicemills" ;
+lin spiciness_N = mkN "spiciness" "spicinesses" ;
+lin spick_A = mkAMost "spick" "spickly" ;
+lin spicule_N = mkN "spicule" "spicules" ;
+lin spicy_A = mkA "spicy" "spicier" "spiciest" "spicily" ;
+lin spider_N = mkN "spider" "spiders" ;
+lin spiderflower_N = mkN "spiderflower" "spiderflowers" ;
+lin spiderwort_N = mkN "spiderwort" "spiderworts" ;
+lin spidery_A = mkAMost "spidery" "spiderily" ;
+lin spiegeleisen_N = mkN "spiegeleisen" "spiegeleisens" ;
+lin spiel_N = mkN "spiel" "spiels" ;
+lin spiel_V = mkV "spiel" "spieled" "spieled" ;
+lin spiff_N = mkN "spiff" "spiffs" ;
+lin spiffing_A = mkAMost "spiffing" "spiffingly" ;
+lin spigot_N = mkN "spigot" "spigots" ;
+lin spike_N = mkN "spike" "spikes" ;
+lin spike_V = mkV "spike" "spiked" "spiked" ;
+lin spikelike_A = mkAMost "spikelike" "spikelikely" ;
+lin spikemoss_N = mkN "spikemoss" "spikemosses" ;
+lin spikenard_N = mkN "spikenard" "spikenards" ;
+lin spiky_A = mkA "spiky" "spikier" "spikiest" "spikily" ;
+lin spill_N = mkN "spill" "spills" ;
+lin spill_spilled_spilled_V = mkV "spill" "spilled" "spilled" ;
+lin spill_spilled_spilt_V = mkV "spill" "spilled" "spilt" ;
+lin spill_spilt_spilled_V = mkV "spill" "spilt" "spilled" ;
+lin spill_spilt_spilt_V = mkV "spill" "spilt" "spilt" ;
+lin spillage_N = mkN "spillage" "spillages" ;
+lin spillover_N = mkN "spillover" "spillovers" ;
+lin spillway_N = mkN "spillway" "spillways" ;
+lin spin_N = mkN "spin" "spins" ;
+lin spin_V = mkV "spin" "spun" "spun" ;
+lin spin_drier_N = mkN "spin-drier" "spin-driers" ;
+lin spin_dry_V = mkV "spin-dry" "spin-dried" "spin-dried" ;
+lin spin_off_N = mkN "spin-off" "spin-offs" ;
+lin spinach_N = mkN "spinach" "spinaches" ;
+lin spinal_A = mkAMost "spinal" "spinally" ;
+lin spindle_N = mkN "spindle" "spindles" ;
+lin spindle_berry_N = mkN "spindle-berry" "spindle-berries" ;
+lin spindle_legged_A = mkAMost "spindle-legged" "spindle-leggedly" ;
+lin spindle_shanked_A = mkAMost "spindle-shanked" "spindle-shankedly" ;
+lin spindle_shanks_N = mkN "spindle-shanks" "IRREG" ;
+lin spindle_tree_N = mkN "spindle-tree" "spindle-trees" ;
+lin spindlelegs_N = mkN "spindlelegs" "spindlelegses" ;
+lin spindly_A = mkA "spindly" "spindlier" "spindliest" "spindlily" ;
+lin spindrift_N = mkN "spindrift" "spindrifts" ;
+lin spine_N = mkN "spine" "spines" ;
+lin spinel_N = mkN "spinel" "spinels" ;
+lin spineless_A = mkAMost "spineless" "spinelessly" ;
+lin spinelessness_N = mkN "spinelessness" "spinelessnesses" ;
+lin spinet_N = mkN "spinet" "spinets" ;
+lin spinnability_N = mkN "spinnability" "spinnabilities" ;
+lin spinnable_A = mkAMost "spinnable" "spinnably" ;
+lin spinnaker_N = mkN "spinnaker" "spinnakers" ;
+lin spinnbarkeit_N = mkN "spinnbarkeit" "spinnbarkeits" ;
+lin spinner_N = mkN "spinner" "spinners" ;
+lin spinney_N = mkN "spinney" "spinneys" ;
+lin spinning_N = mkN "spinning" "spinnings" ;
+lin spinning_wheel_N = mkN "spinning-wheel" "spinning-wheels" ;
+lin spinoff_N = mkN "spinoff" "spinoffs" ;
+lin spinose_A = mkAMost "spinose" "spinosely" ;
+lin spinous_A = mkAMost "spinous" "spinously" ;
+lin spinster_N = mkN "spinster" "spinsters" ;
+lin spinsterhood_N = mkN "spinsterhood" "spinsterhoods" ;
+lin spiny_A = mkA "spiny" "spinier" "spiniest" "spinily" ;
+lin spiracle_N = mkN "spiracle" "spiracles" ;
+lin spiral_A = mkAMost "spiral" "spirally" ;
+lin spiral_N = mkN "spiral" "spirals" ;
+lin spiral_V = mkV "spiral" "spiralled" "spiralled" ;
+lin spire_N = mkN "spire" "spires" ;
+lin spirea_N = mkN "spirea" "spireas" ;
+lin spirillum_N = mkN "spirillum" "spirillums" ;
+lin spirit_N = mkN "spirit" "spirits" ;
+lin spirit_lamp_N = mkN "spirit-lamp" "spirit-lamps" ;
+lin spirit_level_N = mkN "spirit-level" "spirit-levels" ;
+lin spirit_rapper_N = mkN "spirit-rapper" "spirit-rappers" ;
+lin spirit_spirited_V = mkV "spirit" "spirited" "spirited" ;
+lin spirit_spiritted_V = mkV "spirit" "spiritted" "spiritted" ;
+lin spirit_stove_N = mkN "spirit-stove" "spirit-stoves" ;
+lin spiritedly_Adv = mkAdv "spiritedly" ;
+lin spiritless_A = mkAMost "spiritless" "spiritlessly" ;
+lin spiritual_A = mkAMost "spiritual" "spiritually" ;
+lin spiritual_N = mkN "spiritual" "spirituals" ;
+lin spiritualism_N = mkN "spiritualism" "spiritualisms" ;
+lin spiritualist_N = mkN "spiritualist" "spiritualists" ;
+lin spiritualistic_A = mkAMost "spiritualistic" "spiritualisticly" ;
+lin spirituality_N = mkN "spirituality" "spiritualities" ;
+lin spiritualization_N = mkN "spiritualization" "spiritualizations" ;
+lin spiritualize_V = mkV "spiritualize" "spiritualized" "spiritualized" ;
+lin spiritualty_N = mkN "spiritualty" "spiritualties" ;
+lin spirituous_A = mkAMost "spirituous" "spirituously" ;
+lin spirochete_N = mkN "spirochete" "spirochetes" ;
+lin spirogram_N = mkN "spirogram" "spirograms" ;
+lin spirograph_N = mkN "spirograph" "spirographs" ;
+lin spirogyra_N = mkN "spirogyra" "spirogyras" ;
+lin spirometer_N = mkN "spirometer" "spirometers" ;
+lin spirometry_N = mkN "spirometry" "spirometries" ;
+lin spironolactone_N = mkN "spironolactone" "spironolactones" ;
+lin spirt_N = mkN "spirt" "spirts" ;
+lin spirt_V = mkV "spirt" "spirted" "spirted" ;
+lin spirula_N = mkN "spirula" "spirulas" ;
+lin spit_N = mkN "spit" "spits" ;
+lin spit_spat_V = mkV "spit" "spat" "spit" ;
+lin spit_spit_V = mkV "spit" "spit" "spit" ;
+lin spitball_N = mkN "spitball" "spitballs" ;
+lin spite_N = mkN "spite" "spites" ;
+lin spite_V = mkV "spite" "spited" "spited" ;
+lin spiteful_A = mkAMost "spiteful" "spitefully" ;
+lin spitefulness_N = mkN "spitefulness" "spitefulnesses" ;
+lin spitfire_N = mkN "spitfire" "spitfires" ;
+lin spitter_N = mkN "spitter" "spitters" ;
+lin spitting_N = mkN "spitting" "spittings" ;
+lin spittle_N = mkN "spittle" "spittles" ;
+lin spittoon_N = mkN "spittoon" "spittoons" ;
+lin spitz_N = mkN "spitz" "spitzes" ;
+lin spiv_N = mkN "spiv" "spivs" ;
+lin splash_N = mkN "splash" "splashes" ;
+lin splash_V = mkV "splash" "splashed" "splashed" ;
+lin splashboard_N = mkN "splashboard" "splashboards" ;
+lin splashdown_N = mkN "splashdown" "splashdowns" ;
+lin splasher_N = mkN "splasher" "splashers" ;
+lin splashy_A = mkA "splashy" "splashier" "splashiest" "splashily" ;
+lin splat_N = mkN "splat" "splats" ;
+lin splay_A = mkAMost "splay" "splaily" ;
+lin splay_N = mkN "splay" "splays" ;
+lin splay_V = mkV "splay" "splayed" "splayed" ;
+lin splayfoot_N = mkN "splayfoot" "splayfeet" ;
+lin splayfooted_A = mkAMost "splayfooted" "splayfootedly" ;
+lin spleen_N = mkN "spleen" "spleens" ;
+lin spleenwort_N = mkN "spleenwort" "spleenworts" ;
+lin splendid_A = mkAMost "splendid" "splendidly" ;
+lin splendiferous_A = mkAMost "splendiferous" "splendiferously" ;
+lin splendour_N = mkN "splendour" "splendours" ;
+lin splenectomy_N = mkN "splenectomy" "splenectomies" ;
+lin splenetic_A = mkAMost "splenetic" "spleneticly" ;
+lin splenic_A = mkAMost "splenic" "splenicly" ;
+lin splenitis_N = mkN "splenitis" "splenitises" ;
+lin splenius_N = mkN "splenius" "spleniuses" ;
+lin splenomegaly_N = mkN "splenomegaly" "splenomegalies" ;
+lin splice_N = mkN "splice" "splices" ;
+lin splice_V = mkV "splice" "spliced" "spliced" ;
+lin splicer_N = mkN "splicer" "splicers" ;
+lin spline_N = mkN "spline" "splines" ;
+lin splint_N = mkN "splint" "splints" ;
+lin splinter_N = mkN "splinter" "splinters" ;
+lin splinter_V = mkV "splinter" "splintered" "splintered" ;
+lin splinter_proof_A = mkAMost "splinter-proof" "splinter-proofly" ;
+lin splintery_A = mkAMost "splintery" "splinterily" ;
+lin split_N = mkN "split" "splits" ;
+lin split_V = mkV "split" "split" "split" ;
+lin splitsville_N = mkN "splitsville" "splitsvilles" ;
+lin splitter_N = mkN "splitter" "splitters" ;
+lin splodge_N = mkN "splodge" "splodges" ;
+lin splosh_V = mkV "splosh" "sploshed" "sploshed" ;
+lin splotch_N = mkN "splotch" "splotches" ;
+lin splurge_N = mkN "splurge" "splurges" ;
+lin splurge_V = mkV "splurge" "splurged" "splurged" ;
+lin splutter_N = mkN "splutter" "splutters" ;
+lin splutter_V = mkV "splutter" "spluttered" "spluttered" ;
+lin spode_N = mkN "spode" "spodes" ;
+lin spodumene_N = mkN "spodumene" "spodumenes" ;
+lin spoil_N = mkN "spoil" "spoils" ;
+lin spoil_V = mkV "spoil" "spoiled" "spoiled" ;
+lin spoilage_N = mkN "spoilage" "spoilages" ;
+lin spoiler_N = mkN "spoiler" "spoilers" ;
+lin spoilsport_N = mkN "spoilsport" "spoilsports" ;
+lin spoke_N = mkN "spoke" "spokes" ;
+lin spokeshave_N = mkN "spokeshave" "spokeshaves" ;
+lin spokesman_N = mkN "spokesman" "spokesmen" ;
+lin spokesperson_N = mkN "spokesperson" "spokespersons" ;
+lin spokeswoman_N = mkN "spokeswoman" "spokeswomans" ;
+lin spoliation_N = mkN "spoliation" "spoliations" ;
+lin spondaic_A = mkAMost "spondaic" "spondaicly" ;
+lin spondee_N = mkN "spondee" "spondees" ;
+lin spondylarthritis_N = mkN "spondylarthritis" "spondylarthritises" ;
+lin spondylitis_N = mkN "spondylitis" "spondylitises" ;
+lin spondylolisthesis_N = mkN "spondylolisthesis" "spondylolisthesises" ;
+lin sponge_N = mkN "sponge" "sponges" ;
+lin sponge_V = mkV "sponge" "sponged" "sponged" ;
+lin sponge_cake_N = mkN "sponge-cake" "sponge-cakes" ;
+lin spongefly_N = mkN "spongefly" "spongeflies" ;
+lin sponger_N = mkN "sponger" "spongers" ;
+lin sponginess_N = mkN "sponginess" "sponginesses" ;
+lin spongioblast_N = mkN "spongioblast" "spongioblasts" ;
+lin spongy_A = mkA "spongy" "spongier" "spongiest" "spongily" ;
+lin sponsor_N = mkN "sponsor" "sponsors" ;
+lin sponsor_V = mkV "sponsor" "sponsored" "sponsored" ;
+lin sponsorship_N = mkN "sponsorship" "sponsorships" ;
+lin spontaneity_N = mkN "spontaneity" "spontaneities" ;
+lin spontaneous_A = mkAMost "spontaneous" "spontaneously" ;
+lin spontaneousness_N = mkN "spontaneousness" "spontaneousnesses" ;
+lin spoof_N = mkN "spoof" "spoofs" ;
+lin spoof_V = mkV "spoof" "spoofed" "spoofed" ;
+lin spook_N = mkN "spook" "spooks" ;
+lin spook_V = mkV "spook" "spooked" "spooked" ;
+lin spooky_A = mkA "spooky" "spookier" "spookiest" "spookily" ;
+lin spool_N = mkN "spool" "spools" ;
+lin spoon_N = mkN "spoon" "spoons" ;
+lin spoon_V = mkV "spoon" "spooned" "spooned" ;
+lin spoonbill_N = mkN "spoonbill" "spoonbills" ;
+lin spoonerism_N = mkN "spoonerism" "spoonerisms" ;
+lin spoonfeed_V = mkV "spoonfeed" "spoonfed" "spoonfed" ;
+lin spoonfeeding_N = mkN "spoonfeeding" "spoonfeedings" ;
+lin spoonful_N = mkN "spoonful" "spoonfuls" ;
+lin spoor_N = mkN "spoor" "spoors" ;
+lin sporadic_A = mkAMost "sporadic" "sporadicly" ;
+lin sporadically_Adv = mkAdv "sporadically" ;
+lin sporangiophore_N = mkN "sporangiophore" "sporangiophores" ;
+lin sporangium_N = mkN "sporangium" "sporangiums" ;
+lin spore_N = mkN "spore" "spores" ;
+lin sporocarp_N = mkN "sporocarp" "sporocarps" ;
+lin sporogenous_A = mkAMost "sporogenous" "sporogenously" ;
+lin sporophore_N = mkN "sporophore" "sporophores" ;
+lin sporophyll_N = mkN "sporophyll" "sporophylls" ;
+lin sporophyte_N = mkN "sporophyte" "sporophytes" ;
+lin sporotrichosis_N = mkN "sporotrichosis" "sporotrichosises" ;
+lin sporozoan_N = mkN "sporozoan" "sporozoans" ;
+lin sporozoite_N = mkN "sporozoite" "sporozoites" ;
+lin sporran_N = mkN "sporran" "sporrans" ;
+lin sport_N = mkN "sport" "sports" ;
+lin sport_V = mkV "sport" "sported" "sported" ;
+lin sportingly_Adv = mkAdv "sportingly" ;
+lin sportive_A = mkAMost "sportive" "sportively" ;
+lin sportiveness_N = mkN "sportiveness" "sportivenesses" ;
+lin sports_car_N = mkN "sports-car" "sports-cars" ;
+lin sports_coat_N = mkN "sports-coat" "sports-coats" ;
+lin sports_editor_N = mkN "sports-editor" "sports-editors" ;
+lin sports_jacket_N = mkN "sports-jacket" "sports-jackets" ;
+lin sportscast_N = mkN "sportscast" "sportscasts" ;
+lin sportsman_N = mkN "sportsman" "sportsmen" ;
+lin sportsmanlike_A = mkAMost "sportsmanlike" "sportsmanlikely" ;
+lin sportsmanship_N = mkN "sportsmanship" "sportsmanships" ;
+lin sportswear_N = mkN "sportswear" "sportswears" ;
+lin sporty_A = mkA "sporty" "sportier" "sportiest" "sportily" ;
+lin spot_N = mkN "spot" "spots" ;
+lin spot_V = mkV "spot" "spotted" "spotted" ;
+lin spotless_A = mkAMost "spotless" "spotlessly" ;
+lin spotlessness_N = mkN "spotlessness" "spotlessnesses" ;
+lin spotlight_N = mkN "spotlight" "spotlights" ;
+lin spotlight_V = mkV "spotlight" "spotlighted" "spotlighted" ;
+lin spotter_N = mkN "spotter" "spotters" ;
+lin spotty_A = mkA "spotty" "spottier" "spottiest" "spottily" ;
+lin spousal_A = mkAMost "spousal" "spousally" ;
+lin spouse_N = mkN "spouse" "spouses" ;
+lin spout_N = mkN "spout" "spouts" ;
+lin spout_V = mkV "spout" "spouted" "spouted" ;
+lin spouter_N = mkN "spouter" "spouters" ;
+lin sprachgefuhl_N = mkN "sprachgefuhl" "sprachgefuhls" ;
+lin sprag_N = mkN "sprag" "sprags" ;
+lin sprain_N = mkN "sprain" "sprains" ;
+lin sprain_V = mkV "sprain" "sprained" "sprained" ;
+lin sprat_N = mkN "sprat" "sprats" ;
+lin sprawl_N = mkN "sprawl" "sprawls" ;
+lin sprawl_V = mkV "sprawl" "sprawled" "sprawled" ;
+lin sprawler_N = mkN "sprawler" "sprawlers" ;
+lin sprawly_A = mkA "sprawly" "sprawlier" "sprawliest" "sprawlily" ;
+lin spray_N = mkN "spray" "sprays" ;
+lin spray_V = mkV "spray" "sprayed" "sprayed" ;
+lin spray_gun_N = mkN "spray-gun" "spray-guns" ;
+lin sprayer_N = mkN "sprayer" "sprayers" ;
+lin spraying_N = mkN "spraying" "sprayings" ;
+lin spread_N = mkN "spread" "spreads" ;
+lin spread_over_N = mkN "spread-over" "spread-overs" ;
+lin spread_spread_V = mkV "spread" "spread" "spread" ;
+lin spread_spreaded_V = mkV "spread" "spreaded" "spreaded" ;
+lin spreadeagle_N = mkN "spreadeagle" "spreadeagles" ;
+lin spreadeagle_V = mkV "spreadeagle" "spreadeagled" "spreadeagled" ;
+lin spreader_N = mkN "spreader" "spreaders" ;
+lin spreadsheet_N = mkN "spreadsheet" "spreadsheets" ;
+lin sprechgesang_N = mkN "sprechgesang" "sprechgesangs" ;
+lin spree_N = mkN "spree" "sprees" ;
+lin sprig_N = mkN "sprig" "sprigs" ;
+lin sprigged_A = mkAMost "sprigged" "spriggedly" ;
+lin sprightliness_N = mkN "sprightliness" "sprightlinesses" ;
+lin sprightly_A = mkA "sprightly" "sprightlier" "sprightliest" "sprightlily" ;
+lin spring_N = mkN "spring" "springs" ;
+lin spring_balance_N = mkN "spring-balance" "spring-balances" ;
+lin spring_clean_N = mkN "spring-clean" "spring-cleans" ;
+lin spring_clean_V = mkV "spring-clean" "spring-cleaned" "spring-cleaned" ;
+lin spring_cleaning_N = mkN "spring-cleaning" "spring-cleanings" ;
+lin spring_gun_N = mkN "spring-gun" "spring-guns" ;
+lin spring_mattress_N = mkN "spring-mattress" "spring-mattresses" ;
+lin spring_sprang_V = mkV "spring" "sprang" "sprung" ;
+lin spring_sprung_V = mkV "spring" "sprung" "sprung" ;
+lin springboard_N = mkN "springboard" "springboards" ;
+lin springbok_N = mkN "springbok" "springboks" ;
+lin springer_N = mkN "springer" "springers" ;
+lin springless_A = mkAMost "springless" "springlessly" ;
+lin springlike_A = mkAMost "springlike" "springlikely" ;
+lin springtide_N = mkN "springtide" "springtides" ;
+lin springtime_N = mkN "springtime" "springtimes" ;
+lin springy_A = mkA "springy" "springier" "springiest" "springily" ;
+lin sprinkle_N = mkN "sprinkle" "sprinkles" ;
+lin sprinkle_V = mkV "sprinkle" "sprinkled" "sprinkled" ;
+lin sprinkler_N = mkN "sprinkler" "sprinklers" ;
+lin sprinkling_N = mkN "sprinkling" "sprinklings" ;
+lin sprint_N = mkN "sprint" "sprints" ;
+lin sprint_V = mkV "sprint" "sprinted" "sprinted" ;
+lin sprinter_N = mkN "sprinter" "sprinters" ;
+lin sprit_N = mkN "sprit" "sprits" ;
+lin sprite_N = mkN "sprite" "sprites" ;
+lin sprites_N = mkN "sprites" "spriteses" ;
+lin spritsail_N = mkN "spritsail" "spritsails" ;
+lin spritz_N = mkN "spritz" "spritzes" ;
+lin spritzer_N = mkN "spritzer" "spritzers" ;
+lin sprocket_N = mkN "sprocket" "sprockets" ;
+lin sprocket_wheel_N = mkN "sprocket-wheel" "sprocket-wheels" ;
+lin sprog_N = mkN "sprog" "sprogs" ;
+lin sprout_N = mkN "sprout" "sprouts" ;
+lin sprout_V = mkV "sprout" "sprouted" "sprouted" ;
+lin spruce_A = mkAMost "spruce" "sprucely" ;
+lin spruce_N = mkN "spruce" "spruces" ;
+lin spruce_V = mkV "spruce" "spruced" "spruced" ;
+lin spruceness_N = mkN "spruceness" "sprucenesses" ;
+lin sprue_N = mkN "sprue" "sprues" ;
+lin spry_A = mkA "spry" "spryer" "spryest" "sprily" ;
+lin spud_N = mkN "spud" "spuds" ;
+lin spue_V = mkV "spue" "spued" "spued" ;
+lin spume_N = mkN "spume" "spumes" ;
+lin spunk_N = mkN "spunk" "spunks" ;
+lin spunky_A = mkA "spunky" "spunkier" "spunkiest" "spunkily" ;
+lin spur_N = mkN "spur" "spurs" ;
+lin spur_V = mkV "spur" "spurred" "spurred" ;
+lin spurge_N = mkN "spurge" "spurges" ;
+lin spurious_A = mkAMost "spurious" "spuriously" ;
+lin spuriousness_N = mkN "spuriousness" "spuriousnesses" ;
+lin spurn_V = mkV "spurn" "spurned" "spurned" ;
+lin spurner_N = mkN "spurner" "spurners" ;
+lin spurt_N = mkN "spurt" "spurts" ;
+lin spurt_V = mkV "spurt" "spurted" "spurted" ;
+lin sputnik_N = mkN "sputnik" "sputniks" ;
+lin sputter_N = mkN "sputter" "sputters" ;
+lin sputter_V = mkV "sputter" "sputtered" "sputtered" ;
+lin sputum_N = mkN "sputum" "sputums" ;
+lin spy_N = mkN "spy" "spies" ;
+lin spy_V = mkV "spy" "spied" "spied" ;
+lin spy_hole_N = mkN "spy-hole" "spy-holes" ;
+lin spyglass_N = mkN "spyglass" "spyglasses" ;
+lin spying_N = mkN "spying" "spyings" ;
+lin spymaster_N = mkN "spymaster" "spymasters" ;
+lin spyware_N = mkN "spyware" "spywares" ;
+lin squab_A = mkA "squab" "squabber" "squabbest" "squably" ;
+lin squab_N = mkN "squab" "squabs" ;
+lin squabble_N = mkN "squabble" "squabbles" ;
+lin squabble_V = mkV "squabble" "squabbled" "squabbled" ;
+lin squabbler_N = mkN "squabbler" "squabblers" ;
+lin squad_N = mkN "squad" "squads" ;
+lin squadron_N = mkN "squadron" "squadrons" ;
+lin squalid_A = mkAMost "squalid" "squalidly" ;
+lin squall_N = mkN "squall" "squalls" ;
+lin squall_V = mkV "squall" "squalled" "squalled" ;
+lin squally_A = mkAMost "squally" "squallily" ;
+lin squalor_N = mkN "squalor" "squalors" ;
+lin squama_N = mkN "squama" "squamas" ;
+lin squamule_N = mkN "squamule" "squamules" ;
+lin squamulose_A = mkAMost "squamulose" "squamulosely" ;
+lin squander_V = mkV "squander" "squandered" "squandered" ;
+lin squandering_N = mkN "squandering" "squanderings" ;
+lin squandermania_N = mkN "squandermania" "squandermanias" ;
+lin square_A = mkAMost "square" "squarely" ;
+lin square_Adv = mkAdv "square" ;
+lin square_N = mkN "square" "squares" ;
+lin square_V = mkV "square" "squared" "squared" ;
+lin square_bashing_N = mkN "square-bashing" "square-bashings" ;
+lin square_built_A = mkAMost "square-built" "square-builtly" ;
+lin square_rigged_A = mkAMost "square-rigged" "square-riggedly" ;
+lin square_shouldered_A = mkAMost "square-shouldered" "square-shoulderedly" ;
+lin square_toed_A = mkAMost "square-toed" "square-toedly" ;
+lin square_toes_N = mkN "square-toes" "IRREG" ;
+lin squareness_N = mkN "squareness" "squarenesses" ;
+lin squaretail_N = mkN "squaretail" "squaretails" ;
+lin squarish_A = mkAMost "squarish" "squarishly" ;
+lin squash_N = mkN "squash" "squash" ;
+lin squash_V = mkV "squash" "squashed" "squashed" ;
+lin squashy_A = mkA "squashy" "squashier" "squashiest" "squashily" ;
+lin squat_A = mkAMost "squat" "squatly" ;
+lin squat_N = mkN "squat" "squats" ;
+lin squat_V = mkV "squat" "squatted" "squatted" ;
+lin squatness_N = mkN "squatness" "squatnesses" ;
+lin squatter_N = mkN "squatter" "squatters" ;
+lin squaw_N = mkN "squaw" "squaws" ;
+lin squawbush_N = mkN "squawbush" "squawbushes" ;
+lin squawk_N = mkN "squawk" "squawks" ;
+lin squawk_V = mkV "squawk" "squawked" "squawked" ;
+lin squawker_N = mkN "squawker" "squawkers" ;
+lin squeak_N = mkN "squeak" "squeaks" ;
+lin squeak_V = mkV "squeak" "squeaked" "squeaked" ;
+lin squeaker_N = mkN "squeaker" "squeakers" ;
+lin squeaky_A = mkA "squeaky" "squeakier" "squeakiest" "squeakily" ;
+lin squeal_N = mkN "squeal" "squeals" ;
+lin squeal_V = mkV "squeal" "squealed" "squealed" ;
+lin squealer_N = mkN "squealer" "squealers" ;
+lin squeamish_A = mkAMost "squeamish" "squeamishly" ;
+lin squeamishness_N = mkN "squeamishness" "squeamishnesses" ;
+lin squeegee_N = mkN "squeegee" "squeegees" ;
+lin squeegee_V = mkV "squeegee" "IRREG" "IRREG" ;
+lin squeeze_N = mkN "squeeze" "squeezes" ;
+lin squeeze_V = mkV "squeeze" "squeezed" "squeezed" ;
+lin squeezer_N = mkN "squeezer" "squeezers" ;
+lin squelch_N = mkN "squelch" "squelches" ;
+lin squelch_V = mkV "squelch" "squelched" "squelched" ;
+lin squib_N = mkN "squib" "squibs" ;
+lin squid_N = mkN "squid" "squids" ;
+lin squiffy_A = mkAMost "squiffy" "squiffily" ;
+lin squiggle_N = mkN "squiggle" "squiggles" ;
+lin squiggly_A = mkA "squiggly" "squigglier" "squiggliest" "squigglily" ;
+lin squill_N = mkN "squill" "squills" ;
+lin squilla_N = mkN "squilla" "squillas" ;
+lin squinch_N = mkN "squinch" "squinches" ;
+lin squinched_A = mkAMost "squinched" "squinchedly" ;
+lin squint_N = mkN "squint" "squints" ;
+lin squint_V = mkV "squint" "squinted" "squinted" ;
+lin squint_eyed_A = mkAMost "squint-eyed" "squint-eyedly" ;
+lin squinter_N = mkN "squinter" "squinters" ;
+lin squinty_A = mkA "squinty" "squintier" "squintiest" "squintily" ;
+lin squire_N = mkN "squire" "squires" ;
+lin squire_V = mkV "squire" "squired" "squired" ;
+lin squirearchy_N = mkN "squirearchy" "squirearchies" ;
+lin squirm_N = mkN "squirm" "squirms" ;
+lin squirm_V = mkV "squirm" "squirmed" "squirmed" ;
+lin squirrel_N = mkN "squirrel" "squirrels" ;
+lin squirrelfish_N = mkN "squirrelfish" "squirrelfishes" ;
+lin squirt_N = mkN "squirt" "squirts" ;
+lin squirt_V = mkV "squirt" "squirted" "squirted" ;
+lin squish_N = mkN "squish" "squishes" ;
+lin sri_lankan_A = mkAMost "sri lankan" "sri lankanly" ;
+lin sri_lankan_N = mkN "sri lankan" "sri lankans" ;
+lin srn_N = mkN "srn" "srns" ;
+lin ss_N = mkN "ss" "sses" ;
+lin stab_N = mkN "stab" "stabs" ;
+lin stab_V = mkV "stab" "stabbed" "stabbed" ;
+lin stabber_N = mkN "stabber" "stabbers" ;
+lin stabile_A = mkAMost "stabile" "stabilely" ;
+lin stabile_N = mkN "stabile" "stabiles" ;
+lin stability_N = mkN "stability" "stabilities" ;
+lin stabilization_N = mkN "stabilization" "stabilizations" ;
+lin stabilize_V = mkV "stabilize" "stabilized" "stabilized" ;
+lin stabilizer_N = mkN "stabilizer" "stabilizers" ;
+lin stable_A = mkAMost "stable" "stably" ;
+lin stable_N = mkN "stable" "stables" ;
+lin stable_V = mkV "stable" "stabled" "stabled" ;
+lin stable_companion_N = mkN "stable-companion" "stable-companions" ;
+lin stableboy_N = mkN "stableboy" "stableboys" ;
+lin stableman_N = mkN "stableman" "stablemen" ;
+lin stablemate_N = mkN "stablemate" "stablemates" ;
+lin stabling_N = mkN "stabling" "stablings" ;
+lin staccato_A = mkAMost "staccato" "staccatoly" ;
+lin staccato_Adv = mkAdv "staccato" ;
+lin stachyose_N = mkN "stachyose" "stachyoses" ;
+lin stack_N = mkN "stack" "stacks" ;
+lin stack_V = mkV "stack" "stacked" "stacked" ;
+lin stacker_N = mkN "stacker" "stackers" ;
+lin stacks_N = mkN "stacks" "stackses" ;
+lin stackup_N = mkN "stackup" "stackups" ;
+lin stacte_N = mkN "stacte" "stactes" ;
+lin staddle_N = mkN "staddle" "staddles" ;
+lin stadium_N = mkN "stadium" "stadiums" ;
+lin staff_N = mkN "staff" "staffs" ;
+lin staff_V = mkV "staff" "staffed" "staffed" ;
+lin staff_office_N = mkN "staff-office" "staff-offices" ;
+lin stag_N = mkN "stag" "stags" ;
+lin stag_party_N = mkN "stag-party" "stag-parties" ;
+lin stage_N = mkN "stage" "stages" ;
+lin stage_V = mkV "stage" "staged" "staged" ;
+lin stage_struck_A = mkAMost "stage-struck" "stage-struckly" ;
+lin stage_whisper_N = mkN "stage-whisper" "stage-whispers" ;
+lin stagecoach_N = mkN "stagecoach" "stagecoaches" ;
+lin stagecraft_N = mkN "stagecraft" "stagecrafts" ;
+lin stagehand_N = mkN "stagehand" "stagehands" ;
+lin stager_N = mkN "stager" "stagers" ;
+lin stagflation_N = mkN "stagflation" "stagflations" ;
+lin stagflationary_A = mkAMost "stagflationary" "stagflationarily" ;
+lin stagger_N = mkN "stagger" "staggers" ;
+lin stagger_V = mkV "stagger" "staggered" "staggered" ;
+lin staggerbush_N = mkN "staggerbush" "staggerbushes" ;
+lin staggerer_N = mkN "staggerer" "staggerers" ;
+lin staggeringly_Adv = mkAdv "staggeringly" ;
+lin staggers_N = mkN "staggers" "staggerses" ;
+lin staghound_N = mkN "staghound" "staghounds" ;
+lin staginess_N = mkN "staginess" "staginesses" ;
+lin staging_N = mkN "staging" "stagings" ;
+lin stagnancy_N = mkN "stagnancy" "stagnancies" ;
+lin stagnant_A = mkAMost "stagnant" "stagnantly" ;
+lin stagnate_V = mkV "stagnate" "stagnated" "stagnated" ;
+lin stagnation_N = mkN "stagnation" "stagnations" ;
+lin stagy_A = mkAMost "stagy" "stagily" ;
+lin staid_A = mkAMost "staid" "staidly" ;
+lin staidness_N = mkN "staidness" "staidnesses" ;
+lin stain_N = mkN "stain" "stains" ;
+lin stain_V = mkV "stain" "stained" "stained" ;
+lin stainability_N = mkN "stainability" "stainabilities" ;
+lin stainable_A = mkAMost "stainable" "stainably" ;
+lin stainer_N = mkN "stainer" "stainers" ;
+lin staining_N = mkN "staining" "stainings" ;
+lin stainless_A = mkAMost "stainless" "stainlessly" ;
+lin stair_N = mkN "stair" "stairs" ;
+lin stair_carpet_N = mkN "stair-carpet" "stair-carpets" ;
+lin stair_rod_N = mkN "stair-rod" "stair-rods" ;
+lin staircase_N = mkN "staircase" "staircases" ;
+lin stairhead_N = mkN "stairhead" "stairheads" ;
+lin stairway_N = mkN "stairway" "stairways" ;
+lin stairwell_N = mkN "stairwell" "stairwells" ;
+lin stake_N = mkN "stake" "stakes" ;
+lin stake_V = mkV "stake" "staked" "staked" ;
+lin stake_holder_N = mkN "stake-holder" "stake-holders" ;
+lin stakeholder_N = mkN "stakeholder" "stakeholders" ;
+lin stakeout_N = mkN "stakeout" "stakeouts" ;
+lin stalactite_N = mkN "stalactite" "stalactites" ;
+lin stalagmite_N = mkN "stalagmite" "stalagmites" ;
+lin stale_A = mkA "stale" "staler" "stalest" "stalely" ;
+lin stale_V = mkV "stale" "staled" "staled" ;
+lin stalemate_N = mkN "stalemate" "stalemates" ;
+lin stalemate_V = mkV "stalemate" "stalemated" "stalemated" ;
+lin staleness_N = mkN "staleness" "stalenesses" ;
+lin stalk_N = mkN "stalk" "stalks" ;
+lin stalk_V = mkV "stalk" "stalked" "stalked" ;
+lin stalker_N = mkN "stalker" "stalkers" ;
+lin stalking_horse_N = mkN "stalking-horse" "stalking-horses" ;
+lin stall_N = mkN "stall" "stalls" ;
+lin stall_V = mkV "stall" "stalled" "stalled" ;
+lin stall_fed_A = mkAMost "stall-fed" "stall-fedly" ;
+lin stallion_N = mkN "stallion" "stallions" ;
+lin stalwart_A = mkAMost "stalwart" "stalwartly" ;
+lin stalwart_N = mkN "stalwart" "stalwarts" ;
+lin stamen_N = mkN "stamen" "stamens" ;
+lin stamina_N = mkN "stamina" "staminas" ;
+lin stammel_N = mkN "stammel" "stammels" ;
+lin stammer_N = mkN "stammer" "stammers" ;
+lin stammer_V = mkV "stammer" "stammered" "stammered" ;
+lin stammerer_N = mkN "stammerer" "stammerers" ;
+lin stammeringly_Adv = mkAdv "stammeringly" ;
+lin stamp_N = mkN "stamp" "stamps" ;
+lin stamp_V = mkV "stamp" "stamped" "stamped" ;
+lin stamp_album_N = mkN "stamp-album" "stamp-albums" ;
+lin stamp_collector_N = mkN "stamp-collector" "stamp-collectors" ;
+lin stamp_dealer_N = mkN "stamp-dealer" "stamp-dealers" ;
+lin stamp_duty_N = mkN "stamp-duty" "stamp-duties" ;
+lin stampede_N = mkN "stampede" "stampedes" ;
+lin stampede_V = mkV "stampede" "stampeded" "stampeded" ;
+lin stamper_N = mkN "stamper" "stampers" ;
+lin stamping_ground_N = mkN "stamping-ground" "stamping-grounds" ;
+lin stance_N = mkN "stance" "stances" ;
+lin stanch_V = mkV "stanch" "stanched" "stanched" ;
+lin stanchion_N = mkN "stanchion" "stanchions" ;
+lin stand_N = mkN "stand" "stands" ;
+lin stand_V = mkV "stand" "stood" "stood" ;
+lin stand_in_N = mkN "stand-in" "stand-ins" ;
+lin stand_to_N = mkN "stand-to" "stand-ti" ;
+lin stand_up_A = mkAMost "stand-up" "stand-uply" ;
+lin standard_A = mkAMost "standard" "standardly" ;
+lin standard_N = mkN "standard" "standards" ;
+lin standard_bearer_N = mkN "standard-bearer" "standard-bearers" ;
+lin standardization_N = mkN "standardization" "standardizations" ;
+lin standardize_V = mkV "standardize" "standardized" "standardized" ;
+lin standardizer_N = mkN "standardizer" "standardizers" ;
+lin standby_A = mkA "standby" "standbier" "standbiest" "standbily" ;
+lin standby_N = mkN "standby" "standbys" ;
+lin standdown_N = mkN "standdown" "standdowns" ;
+lin standee_N = mkN "standee" "standees" ;
+lin stander_N = mkN "stander" "standers" ;
+lin standing_N = mkN "standing" "standings" ;
+lin standoffish_A = mkAMost "standoffish" "standoffishly" ;
+lin standoffishness_N = mkN "standoffishness" "standoffishnesses" ;
+lin standpipe_N = mkN "standpipe" "standpipes" ;
+lin standpoint_N = mkN "standpoint" "standpoints" ;
+lin standstill_N = mkN "standstill" "standstills" ;
+lin stanhope_N = mkN "stanhope" "stanhopes" ;
+lin stanhopea_N = mkN "stanhopea" "stanhopeas" ;
+lin stannic_A = mkAMost "stannic" "stannicly" ;
+lin stannite_N = mkN "stannite" "stannites" ;
+lin stanza_N = mkN "stanza" "stanzas" ;
+lin stapedectomy_N = mkN "stapedectomy" "stapedectomies" ;
+lin stapelia_N = mkN "stapelia" "stapelias" ;
+lin stapes_N = mkN "stapes" "stapeses" ;
+lin staphylococcal_A = mkAMost "staphylococcal" "staphylococcally" ;
+lin staphylococcus_N = mkN "staphylococcus" "staphylococcuses" ;
+lin staple_A = mkA "staple" "stapler" "staplest" "staplely" ;
+lin staple_N = mkN "staple" "staples" ;
+lin staple_V = mkV "staple" "stapled" "stapled" ;
+lin stapler_N = mkN "stapler" "staplers" ;
+lin stapling_machine_N = mkN "stapling-machine" "stapling-machines" ;
+lin star_N = mkN "star" "stars" ;
+lin star_V = mkV "star" "starred" "starred" ;
+lin starboard_A = mkAMost "starboard" "starboardly" ;
+lin starboard_N = mkN "starboard" "starboards" ;
+lin starboard_V = mkV "starboard" "starboarded" "starboarded" ;
+lin starch_N = mkN "starch" "starches" ;
+lin starch_V = mkV "starch" "starched" "starched" ;
+lin starches_N = mkN "starches" "starcheses" ;
+lin starchless_A = mkAMost "starchless" "starchlessly" ;
+lin starchlike_A = mkAMost "starchlike" "starchlikely" ;
+lin starchy_A = mkA "starchy" "starchier" "starchiest" "starchily" ;
+lin stardom_N = mkN "stardom" "stardoms" ;
+lin stardust_N = mkN "stardust" "stardusts" ;
+lin stare_N = mkN "stare" "stares" ;
+lin stare_V = mkV "stare" "stared" "stared" ;
+lin starer_N = mkN "starer" "starers" ;
+lin starets_N = mkN "starets" "staretses" ;
+lin starfish_N = mkN "starfish" "starfish" ;
+lin starflower_N = mkN "starflower" "starflowers" ;
+lin stargazer_N = mkN "stargazer" "stargazers" ;
+lin stargazing_N = mkN "stargazing" "stargazings" ;
+lin staring_Adv = mkAdv "staring" ;
+lin stark_A = mkAMost "stark" "starkly" ;
+lin stark_Adv = mkAdv "stark" ;
+lin starkers_A = mkAMost "starkers" "starkersly" ;
+lin starkness_N = mkN "starkness" "starknesses" ;
+lin starless_A = mkAMost "starless" "starlessly" ;
+lin starlet_N = mkN "starlet" "starlets" ;
+lin starlight_N = mkN "starlight" "starlights" ;
+lin starlike_A = mkAMost "starlike" "starlikely" ;
+lin starling_N = mkN "starling" "starlings" ;
+lin starlit_A = mkAMost "starlit" "starlitly" ;
+lin starry_A = mkA "starry" "starrier" "starriest" "starrily" ;
+lin starry_eyed_A = mkAMost "starry-eyed" "starry-eyedly" ;
+lin starship_N = mkN "starship" "starships" ;
+lin start_N = mkN "start" "starts" ;
+lin start_V = mkV "start" "started" "started" ;
+lin starter_N = mkN "starter" "starters" ;
+lin starting_gate_N = mkN "starting-gate" "starting-gates" ;
+lin starting_point_N = mkN "starting-point" "starting-points" ;
+lin starting_post_N = mkN "starting-post" "starting-posts" ;
+lin startle_N = mkN "startle" "startles" ;
+lin startle_V = mkV "startle" "startled" "startled" ;
+lin startling_A = mkAMost "startling" "startlingly" ;
+lin startup_N = mkN "startup" "startups" ;
+lin starvation_N = mkN "starvation" "starvations" ;
+lin starve_V = mkV "starve" "starved" "starved" ;
+lin starveling_N = mkN "starveling" "starvelings" ;
+lin stash_V = mkV "stash" "stashed" "stashed" ;
+lin stasis_N = mkN "stasis" "stasises" ;
+lin state_N = mkN "state" "states" ;
+lin state_V = mkV "state" "stated" "stated" ;
+lin statecraft_N = mkN "statecraft" "statecrafts" ;
+lin statehood_N = mkN "statehood" "statehoods" ;
+lin statehouse_N = mkN "statehouse" "statehouses" ;
+lin stateless_A = mkAMost "stateless" "statelessly" ;
+lin stateliness_N = mkN "stateliness" "statelinesses" ;
+lin stately_A = mkA "stately" "statelier" "stateliest" "statelily" ;
+lin statement_N = mkN "statement" "statements" ;
+lin stater_N = mkN "stater" "staters" ;
+lin stateroom_N = mkN "stateroom" "staterooms" ;
+lin statesman_N = mkN "statesman" "statesmen" ;
+lin statesmanlike_A = mkAMost "statesmanlike" "statesmanlikely" ;
+lin statesmanship_N = mkN "statesmanship" "statesmanships" ;
+lin stateswoman_N = mkN "stateswoman" "stateswomen" ;
+lin statewide_A = mkAMost "statewide" "statewidely" ;
+lin static_A = mkAMost "static" "staticly" ;
+lin static_N = mkN "static" "statics" ;
+lin statically_Adv = mkAdv "statically" ;
+lin statics_N = mkN "statics" "statics" ;
+lin station_N = mkN "station" "stations" ;
+lin station_V = mkV "station" "stationed" "stationed" ;
+lin station_waggon_N = mkN "station-waggon" "station-waggons" ;
+lin stationariness_N = mkN "stationariness" "stationarinesses" ;
+lin stationary_A = mkAMost "stationary" "stationarily" ;
+lin stationer_N = mkN "stationer" "stationers" ;
+lin stationery_N = mkN "stationery" "stationeries" ;
+lin stationmaster_N = mkN "stationmaster" "stationmasters" ;
+lin statistic_N = mkN "statistic" "statistics" ;
+lin statistical_A = mkAMost "statistical" "statistically" ;
+lin statistician_N = mkN "statistician" "statisticians" ;
+lin statistics_N = mkN "statistics" "statistics" ;
+lin stative_A = mkAMost "stative" "statively" ;
+lin stator_N = mkN "stator" "stators" ;
+lin statuary_A = mkAMost "statuary" "statuarily" ;
+lin statuary_N = mkN "statuary" "statuaries" ;
+lin statue_N = mkN "statue" "statues" ;
+lin statuesque_A = mkAMost "statuesque" "statuesquely" ;
+lin statuette_N = mkN "statuette" "statuettes" ;
+lin stature_N = mkN "stature" "statures" ;
+lin status_N = mkN "status" "statuses" ;
+lin status_quo_N = mkN "status quo" "status qui" ;
+lin statute_N = mkN "statute" "statutes" ;
+lin statute_book_N = mkN "statute-book" "statute-books" ;
+lin statutory_A = mkAMost "statutory" "statutorily" ;
+lin staunch_A = mkAMost "staunch" "staunchly" ;
+lin staunch_V = mkV "staunch" "staunched" "staunched" ;
+lin staunchness_N = mkN "staunchness" "staunchnesses" ;
+lin staurikosaur_N = mkN "staurikosaur" "staurikosaurs" ;
+lin stave_N = mkN "stave" "staves" ;
+lin stave_V = mkV "stave" "staved" "staved" ;
+lin stay_N = mkN "stay" "stays" ;
+lin stay_V = mkV "stay" "stayed" "stayed" ;
+lin stay_at_home_N = mkN "stay-at-home" "stay-at-homes" ;
+lin stayer_N = mkN "stayer" "stayers" ;
+lin staysail_N = mkN "staysail" "staysails" ;
+lin stead_N = mkN "stead" "steads" ;
+lin steadfast_A = mkAMost "steadfast" "steadfastly" ;
+lin steadfastness_N = mkN "steadfastness" "steadfastnesses" ;
+lin steadiness_N = mkN "steadiness" "steadinesses" ;
+lin steady_A = mkA "steady" "steadier" "steadiest" "steadily" ;
+lin steady_Adv = mkAdv "steady" ;
+lin steady_N = mkN "steady" "steadies" ;
+lin steady_V = mkV "steady" "steadied" "steadied" ;
+lin steak_N = mkN "steak" "steaks" ;
+lin steakhouse_N = mkN "steakhouse" "steakhouses" ;
+lin steal_N = mkN "steal" "steals" ;
+lin steal_V = mkV "steal" "stole" "stolen" ;
+lin stealth_N = mkN "stealth" "stealths" ;
+lin stealthy_A = mkA "stealthy" "stealthier" "stealthiest" "stealthily" ;
+lin steam_N = mkN "steam" "steams" ;
+lin steam_V = mkV "steam" "steamed" "steamed" ;
+lin steam_boiler_N = mkN "steam-boiler" "steam-boilers" ;
+lin steam_coal_N = mkN "steam-coal" "steam-coals" ;
+lin steam_engine_N = mkN "steam-engine" "steam-engines" ;
+lin steam_heat_N = mkN "steam-heat" "steam-heats" ;
+lin steam_heat_V = mkV "steam-heat" "steam-heated" "steam-heated" ;
+lin steamboat_N = mkN "steamboat" "steamboats" ;
+lin steamer_N = mkN "steamer" "steamers" ;
+lin steamfitter_N = mkN "steamfitter" "steamfitters" ;
+lin steamroller_N = mkN "steamroller" "steamrollers" ;
+lin steamroller_V = mkV "steamroller" "steamrollered" "steamrollered" ;
+lin steamship_N = mkN "steamship" "steamships" ;
+lin steamy_A = mkA "steamy" "steamier" "steamiest" "steamily" ;
+lin stearic_A = mkAMost "stearic" "stearicly" ;
+lin stearin_N = mkN "stearin" "stearins" ;
+lin steatopygia_N = mkN "steatopygia" "steatopygias" ;
+lin steatorrhea_N = mkN "steatorrhea" "steatorrheas" ;
+lin steed_N = mkN "steed" "steeds" ;
+lin steel_N = mkN "steel" "steels" ;
+lin steel_V = mkV "steel" "steeled" "steeled" ;
+lin steel_clad_A = mkAMost "steel-clad" "steel-cladly" ;
+lin steel_plated_A = mkAMost "steel-plated" "steel-platedly" ;
+lin steelmaker_N = mkN "steelmaker" "steelmakers" ;
+lin steelworks_N = mkN "steelworks" "steelworks" ;
+lin steely_A = mkA "steely" "steelier" "steeliest" "steelily" ;
+lin steelyard_N = mkN "steelyard" "steelyards" ;
+lin steenbok_N = mkN "steenbok" "steenboks" ;
+lin steep_A = mkA "steep" "steeper" "steepest" "steeply" ;
+lin steep_N = mkN "steep" "steeps" ;
+lin steep_V = mkV "steep" "steeped" "steeped" ;
+lin steepen_V = mkV "steepen" "steepened" "steepened" ;
+lin steeper_N = mkN "steeper" "steepers" ;
+lin steepish_A = mkAMost "steepish" "steepishly" ;
+lin steeple_N = mkN "steeple" "steeples" ;
+lin steeplechase_N = mkN "steeplechase" "steeplechases" ;
+lin steeplechaser_N = mkN "steeplechaser" "steeplechasers" ;
+lin steeplejack_N = mkN "steeplejack" "steeplejacks" ;
+lin steepness_N = mkN "steepness" "steepnesses" ;
+lin steer_N = mkN "steer" "steers" ;
+lin steer_V = mkV "steer" "steered" "steered" ;
+lin steerable_A = mkAMost "steerable" "steerably" ;
+lin steerage_N = mkN "steerage" "steerages" ;
+lin steerageway_N = mkN "steerageway" "steerageways" ;
+lin steering_N = mkN "steering" "steerings" ;
+lin steering_gear_N = mkN "steering-gear" "steering-gears" ;
+lin steering_wheel_N = mkN "steering-wheel" "steering-wheels" ;
+lin steersman_N = mkN "steersman" "steersmen" ;
+lin stegosaur_N = mkN "stegosaur" "stegosaurs" ;
+lin stele_N = mkN "stele" "IRREG" ;
+lin stelis_N = mkN "stelis" "stelises" ;
+lin stellar_A = mkAMost "stellar" "stellarly" ;
+lin stem_N = mkN "stem" "stems" ;
+lin stem_V = mkV "stem" "stemmed" "stemmed" ;
+lin stemless_A = mkAMost "stemless" "stemlessly" ;
+lin stemma_N = mkN "stemma" "stemmas" ;
+lin stemmatic_A = mkAMost "stemmatic" "stemmaticly" ;
+lin stemmatology_N = mkN "stemmatology" "stemmatologies" ;
+lin stemmer_N = mkN "stemmer" "stemmers" ;
+lin stench_N = mkN "stench" "stenches" ;
+lin stencil_N = mkN "stencil" "stencils" ;
+lin stencil_V = mkV "stencil" "stencilled" "stencilled" ;
+lin stenograph_N = mkN "stenograph" "stenographs" ;
+lin stenographer_N = mkN "stenographer" "stenographers" ;
+lin stenographic_A = mkAMost "stenographic" "stenographicly" ;
+lin stenography_N = mkN "stenography" "stenographies" ;
+lin stenopterygius_N = mkN "stenopterygius" "stenopterygiuses" ;
+lin stenosed_A = mkAMost "stenosed" "stenosedly" ;
+lin stenosis_N = mkN "stenosis" "stenosises" ;
+lin stent_N = mkN "stent" "stents" ;
+lin stentor_N = mkN "stentor" "stentors" ;
+lin stentorian_A = mkAMost "stentorian" "stentorianly" ;
+lin step_N = mkN "step" "steps" ;
+lin step_V = mkV "step" "stepped" "stepped" ;
+lin stepbrother_N = mkN "stepbrother" "stepbrothers" ;
+lin stepchild_N = mkN "stepchild" "stepchildren" ;
+lin stepdaughter_N = mkN "stepdaughter" "stepdaughters" ;
+lin stepfather_N = mkN "stepfather" "stepfathers" ;
+lin stephanion_N = mkN "stephanion" "stephanions" ;
+lin stephanotis_N = mkN "stephanotis" "stephanotises" ;
+lin stepladder_N = mkN "stepladder" "stepladders" ;
+lin stepmother_N = mkN "stepmother" "stepmothers" ;
+lin stepparent_N = mkN "stepparent" "stepparents" ;
+lin steppe_N = mkN "steppe" "steppes" ;
+lin stepper_N = mkN "stepper" "steppers" ;
+lin stepping_stone_N = mkN "stepping-stone" "stepping-stones" ;
+lin steprelationship_N = mkN "steprelationship" "steprelationships" ;
+lin steps_N = mkN "steps" "stepses" ;
+lin stepsister_N = mkN "stepsister" "stepsisters" ;
+lin stepson_N = mkN "stepson" "stepsons" ;
+lin stepwise_Adv = mkAdv "stepwise" ;
+lin steradian_N = mkN "steradian" "steradians" ;
+lin sterculia_N = mkN "sterculia" "sterculias" ;
+lin stereo_N = mkN "stereo" "stereos" ;
+lin stereophonic_A = mkAMost "stereophonic" "stereophonicly" ;
+lin stereoscope_N = mkN "stereoscope" "stereoscopes" ;
+lin stereoscopic_A = mkAMost "stereoscopic" "stereoscopicly" ;
+lin stereotype_N = mkN "stereotype" "stereotypes" ;
+lin stereotype_V = mkV "stereotype" "stereotyped" "stereotyped" ;
+lin stereotypically_Adv = mkAdv "stereotypically" ;
+lin sterile_A = mkAMost "sterile" "sterilely" ;
+lin sterility_N = mkN "sterility" "sterilities" ;
+lin sterilization_N = mkN "sterilization" "sterilizations" ;
+lin sterilize_V = mkV "sterilize" "sterilized" "sterilized" ;
+lin sterling_A = mkAMost "sterling" "sterlingly" ;
+lin sterling_N = mkN "sterling" "sterlings" ;
+lin stern_A = mkA "stern" "sterner" "sternest" "sternly" ;
+lin stern_N = mkN "stern" "sterns" ;
+lin sternal_A = mkAMost "sternal" "sternally" ;
+lin sternness_N = mkN "sternness" "sternnesses" ;
+lin sternocleidomastoid_N = mkN "sternocleidomastoid" "sternocleidomastoids" ;
+lin sternpost_N = mkN "sternpost" "sternposts" ;
+lin sternum_N = mkN "sternum" "sternums" ;
+lin sternutator_N = mkN "sternutator" "sternutators" ;
+lin sternutatory_A = mkAMost "sternutatory" "sternutatorily" ;
+lin sternwheeler_N = mkN "sternwheeler" "sternwheelers" ;
+lin steroid_N = mkN "steroid" "steroids" ;
+lin steroidal_A = mkAMost "steroidal" "steroidally" ;
+lin sterol_N = mkN "sterol" "sterols" ;
+lin stertorous_A = mkAMost "stertorous" "stertorously" ;
+lin stethoscope_N = mkN "stethoscope" "stethoscopes" ;
+lin stetson_N = mkN "stetson" "stetsons" ;
+lin stevedore_N = mkN "stevedore" "stevedores" ;
+lin stevia_N = mkN "stevia" "stevias" ;
+lin stew_N = mkN "stew" "stews" ;
+lin stew_V = mkV "stew" "stewed" "stewed" ;
+lin steward_N = mkN "steward" "stewards" ;
+lin stewardess_N = mkN "stewardess" "stewardesses" ;
+lin stewardship_N = mkN "stewardship" "stewardships" ;
+lin stewing_N = mkN "stewing" "stewings" ;
+lin sthene_N = mkN "sthene" "sthenes" ;
+lin stibnite_N = mkN "stibnite" "stibnites" ;
+lin stick_N = mkN "stick" "sticks" ;
+lin stick_in_the_mud_A = mkAMost "stick-in-the-mud" "stick-in-the-mudly" ;
+lin stick_in_the_mud_N = mkN "stick-in-the-mud" "IRREG" ;
+lin stick_on_A = mkAMost "stick-on" "stick-only" ;
+lin stick_sticked_V = mkV "stick" "sticked" "sticked" ;
+lin stick_stuck_V = mkV "stick" "stuck" "stuck" ;
+lin stick_up_N = mkN "stick-up" "stick-ups" ;
+lin stickball_N = mkN "stickball" "stickballs" ;
+lin sticker_N = mkN "sticker" "stickers" ;
+lin stickiness_N = mkN "stickiness" "stickinesses" ;
+lin sticking_plaster_N = mkN "sticking-plaster" "sticking-plasters" ;
+lin stickleback_N = mkN "stickleback" "sticklebacks" ;
+lin stickler_N = mkN "stickler" "sticklers" ;
+lin stickpin_N = mkN "stickpin" "stickpins" ;
+lin sticktight_N = mkN "sticktight" "sticktights" ;
+lin stickweed_N = mkN "stickweed" "stickweeds" ;
+lin sticky_A = mkA "sticky" "stickier" "stickiest" "stickily" ;
+lin stiff_A = mkA "stiff" "stiffer" "stiffest" "stiffly" ;
+lin stiff_Adv = mkAdv "stiff" ;
+lin stiff_N = mkN "stiff" "stiffs" ;
+lin stiff_necked_A = mkAMost "stiff-necked" "stiff-neckedly" ;
+lin stiffen_stiffened_V = mkV "stiffen" "stiffened" "stiffened" ;
+lin stiffen_stiffenned_V = mkV "stiffen" "stiffenned" "stiffenned" ;
+lin stiffener_N = mkN "stiffener" "stiffeners" ;
+lin stiffening_N = mkN "stiffening" "stiffenings" ;
+lin stiffness_N = mkN "stiffness" "stiffnesses" ;
+lin stifle_N = mkN "stifle" "stifles" ;
+lin stifle_V = mkV "stifle" "stifled" "stifled" ;
+lin stifler_N = mkN "stifler" "stiflers" ;
+lin stigma_N = mkN "stigma" "stigmas" ;
+lin stigmata_N = mkN "stigmata" "stigmatas" ;
+lin stigmatic_A = mkAMost "stigmatic" "stigmaticly" ;
+lin stigmatic_N = mkN "stigmatic" "stigmatics" ;
+lin stigmatism_N = mkN "stigmatism" "stigmatisms" ;
+lin stigmatization_N = mkN "stigmatization" "stigmatizations" ;
+lin stigmatize_V = mkV "stigmatize" "stigmatized" "stigmatized" ;
+lin stile_N = mkN "stile" "stiles" ;
+lin stiletto_N = mkN "stiletto" "stilettos" ;
+lin still_A = mkA "still" "stiller" "stillest" "stilly" ;
+lin still_Adv = mkAdv "still" ;
+lin still_N = mkN "still" "stills" ;
+lin still_V = mkV "still" "stilled" "stilled" ;
+lin still_life_N = mkN "still-life" "still-lifes" ;
+lin still_room_N = mkN "still-room" "still-rooms" ;
+lin stillbirth_N = mkN "stillbirth" "stillbirths" ;
+lin stillborn_A = mkAMost "stillborn" "stillbornly" ;
+lin stillness_N = mkN "stillness" "stillnesses" ;
+lin stillroom_N = mkN "stillroom" "stillrooms" ;
+lin stilly_A = mkAMost "stilly" "stillily" ;
+lin stilt_N = mkN "stilt" "stilts" ;
+lin stilted_A = mkAMost "stilted" "stiltedly" ;
+lin stilton_N = mkN "stilton" "stiltons" ;
+lin stimulant_A = mkAMost "stimulant" "stimulantly" ;
+lin stimulant_N = mkN "stimulant" "stimulants" ;
+lin stimulate_V = mkV "stimulate" "stimulated" "stimulated" ;
+lin stimulating_A = mkAMost "stimulating" "stimulatingly" ;
+lin stimulation_N = mkN "stimulation" "stimulations" ;
+lin stimulative_A = mkAMost "stimulative" "stimulatively" ;
+lin stimulus_N = mkN "stimulus" "stimuli" ;
+lin sting_N = mkN "sting" "stings" ;
+lin sting_V = mkV "sting" "stung" "stung" ;
+lin stinger_N = mkN "stinger" "stingers" ;
+lin stinginess_N = mkN "stinginess" "stinginesses" ;
+lin stingless_A = mkAMost "stingless" "stinglessly" ;
+lin stingray_N = mkN "stingray" "stingrays" ;
+lin stingy_A = mkA "stingy" "stingier" "stingiest" "stingily" ;
+lin stink_N = mkN "stink" "stinks" ;
+lin stink_V = mkV "stink" "stank" "stunk" ;
+lin stinker_N = mkN "stinker" "stinkers" ;
+lin stinkhorn_N = mkN "stinkhorn" "stinkhorns" ;
+lin stint_N = mkN "stint" "stints" ;
+lin stint_V = mkV "stint" "stinted" "stinted" ;
+lin stinter_N = mkN "stinter" "stinters" ;
+lin stipe_N = mkN "stipe" "stipes" ;
+lin stipend_N = mkN "stipend" "stipends" ;
+lin stipendiary_A = mkAMost "stipendiary" "stipendiarily" ;
+lin stipendiary_N = mkN "stipendiary" "stipendiaries" ;
+lin stipple_V = mkV "stipple" "stippled" "stippled" ;
+lin stippler_N = mkN "stippler" "stipplers" ;
+lin stipulate_V = mkV "stipulate" "stipulated" "stipulated" ;
+lin stipulation_N = mkN "stipulation" "stipulations" ;
+lin stipule_N = mkN "stipule" "stipules" ;
+lin stir_N = mkN "stir" "stirs" ;
+lin stir_V = mkV "stir" "stirred" "stirred" ;
+lin stirk_N = mkN "stirk" "stirks" ;
+lin stirrer_N = mkN "stirrer" "stirrers" ;
+lin stirring_N = mkN "stirring" "stirrings" ;
+lin stirringly_Adv = mkAdv "stirringly" ;
+lin stirrup_N = mkN "stirrup" "stirrups" ;
+lin stirrup_cup_N = mkN "stirrup-cup" "stirrup-cups" ;
+lin stitch_N = mkN "stitch" "stitches" ;
+lin stitch_V = mkV "stitch" "stitched" "stitched" ;
+lin stitcher_N = mkN "stitcher" "stitchers" ;
+lin stitchwort_N = mkN "stitchwort" "stitchworts" ;
+lin stoat_N = mkN "stoat" "stoats" ;
+lin stob_N = mkN "stob" "stobs" ;
+lin stochastic_A = mkAMost "stochastic" "stochasticly" ;
+lin stochastically_Adv = mkAdv "stochastically" ;
+lin stock_A = mkA "stock" "stocker" "stockest" "stockly" ;
+lin stock_N = mkN "stock" "stocks" ;
+lin stock_V = mkV "stock" "stocked" "stocked" ;
+lin stock_cube_N = mkN "stock-cube" "stock-cubes" ;
+lin stock_farmer_N = mkN "stock-farmer" "stock-farmers" ;
+lin stock_in_trade_N = mkN "stock-in-trade" "stock-in-trades" ;
+lin stock_list_N = mkN "stock-list" "stock-lists" ;
+lin stock_still_Adv = mkAdv "stock-still" ;
+lin stockade_N = mkN "stockade" "stockades" ;
+lin stockade_V = mkV "stockade" "stockaded" "stockaded" ;
+lin stockbreeder_N = mkN "stockbreeder" "stockbreeders" ;
+lin stockbroker_N = mkN "stockbroker" "stockbrokers" ;
+lin stockcar_N = mkN "stockcar" "stockcars" ;
+lin stocker_N = mkN "stocker" "stockers" ;
+lin stockfish_N = mkN "stockfish" "stockfish" ;
+lin stockholder_N = mkN "stockholder" "stockholders" ;
+lin stockholding_N = mkN "stockholding" "stockholdings" ;
+lin stockinet_N = mkN "stockinet" "stockinets" ;
+lin stockinette_N = mkN "stockinette" "stockinettes" ;
+lin stocking_N = mkN "stocking" "stockings" ;
+lin stockinged_A = mkAMost "stockinged" "stockingedly" ;
+lin stockist_N = mkN "stockist" "stockists" ;
+lin stockjobber_N = mkN "stockjobber" "stockjobbers" ;
+lin stockman_N = mkN "stockman" "stockmans" ;
+lin stockpile_N = mkN "stockpile" "stockpiles" ;
+lin stockpile_V = mkV "stockpile" "stockpiled" "stockpiled" ;
+lin stockpiling_N = mkN "stockpiling" "stockpilings" ;
+lin stockpot_N = mkN "stockpot" "stockpots" ;
+lin stockroom_N = mkN "stockroom" "stockrooms" ;
+lin stocks_N = mkN "stocks" "stockses" ;
+lin stocktake_N = mkN "stocktake" "stocktakes" ;
+lin stocktaker_N = mkN "stocktaker" "stocktakers" ;
+lin stocktaking_N = mkN "stocktaking" "stocktakings" ;
+lin stocky_A = mkA "stocky" "stockier" "stockiest" "stockily" ;
+lin stockyard_N = mkN "stockyard" "stockyards" ;
+lin stodge_N = mkN "stodge" "stodges" ;
+lin stodginess_N = mkN "stodginess" "stodginesses" ;
+lin stodgy_A = mkA "stodgy" "stodgier" "stodgiest" "stodgily" ;
+lin stoep_N = mkN "stoep" "stoeps" ;
+lin stogy_N = mkN "stogy" "stogies" ;
+lin stoic_A = mkA "stoic" "stoicer" "stoicest" "stoicly" ;
+lin stoic_N = mkN "stoic" "stoics" ;
+lin stoical_A = mkAMost "stoical" "stoically" ;
+lin stoichiometric_A = mkAMost "stoichiometric" "stoichiometricly" ;
+lin stoichiometry_N = mkN "stoichiometry" "stoichiometries" ;
+lin stoicism_N = mkN "stoicism" "stoicisms" ;
+lin stoke_V = mkV "stoke" "stoked" "stoked" ;
+lin stokehold_N = mkN "stokehold" "stokeholds" ;
+lin stokehole_N = mkN "stokehole" "stokeholes" ;
+lin stoker_N = mkN "stoker" "stokers" ;
+lin stole_N = mkN "stole" "stoles" ;
+lin stolid_A = mkAMost "stolid" "stolidly" ;
+lin stolidity_N = mkN "stolidity" "stolidities" ;
+lin stolidness_N = mkN "stolidness" "stolidnesses" ;
+lin stolon_N = mkN "stolon" "stolons" ;
+lin stoloniferous_A = mkAMost "stoloniferous" "stoloniferously" ;
+lin stoma_N = mkN "stoma" "stomas" ;
+lin stomach_N = mkN "stomach" "stomachs" ;
+lin stomach_V = mkV "stomach" "stomached" "stomached" ;
+lin stomach_ache_N = mkN "stomach-ache" "stomach-aches" ;
+lin stomach_pump_N = mkN "stomach-pump" "stomach-pumps" ;
+lin stomachache_N = mkN "stomachache" "stomachaches" ;
+lin stomacher_N = mkN "stomacher" "stomachers" ;
+lin stomatal_A = mkAMost "stomatal" "stomatally" ;
+lin stomatitis_N = mkN "stomatitis" "stomatitises" ;
+lin stomatopod_N = mkN "stomatopod" "stomatopods" ;
+lin stomatous_A = mkAMost "stomatous" "stomatously" ;
+lin stomp_N = mkN "stomp" "stomps" ;
+lin stomp_V = mkV "stomp" "stomped" "stomped" ;
+lin stone_A = mkA "stone" "stoner" "stonest" "stonely" ;
+lin stone_N = mkN "stone" "stones" ;
+lin stone_V = mkV "stone" "stoned" "stoned" ;
+lin stone_blind_A = mkAMost "stone-blind" "stone-blindly" ;
+lin stone_cold_A = mkAMost "stone-cold" "stone-coldly" ;
+lin stone_dead_A = mkAMost "stone-dead" "stone-deadly" ;
+lin stone_deaf_A = mkAMost "stone-deaf" "stone-deafly" ;
+lin stone_fruit_N = mkN "stone-fruit" "stone-fruits" ;
+lin stone_pit_N = mkN "stone-pit" "stone-pits" ;
+lin stone_sober_A = mkAMost "stone-sober" "stone-soberly" ;
+lin stonebreaker_N = mkN "stonebreaker" "stonebreakers" ;
+lin stonechat_N = mkN "stonechat" "stonechats" ;
+lin stonecress_N = mkN "stonecress" "stonecresses" ;
+lin stonecrop_N = mkN "stonecrop" "stonecrops" ;
+lin stonecutter_N = mkN "stonecutter" "stonecutters" ;
+lin stonefish_N = mkN "stonefish" "stonefishes" ;
+lin stonefly_N = mkN "stonefly" "stoneflies" ;
+lin stoneless_A = mkAMost "stoneless" "stonelessly" ;
+lin stonemason_N = mkN "stonemason" "stonemasons" ;
+lin stoner_N = mkN "stoner" "stoners" ;
+lin stonewall_V = mkV "stonewall" "stonewalled" "stonewalled" ;
+lin stonewaller_N = mkN "stonewaller" "stonewallers" ;
+lin stonewalling_N = mkN "stonewalling" "stonewallings" ;
+lin stoneware_N = mkN "stoneware" "stonewares" ;
+lin stonework_N = mkN "stonework" "stoneworks" ;
+lin stonewort_N = mkN "stonewort" "stoneworts" ;
+lin stoning_N = mkN "stoning" "stonings" ;
+lin stony_A = mkA "stony" "stonier" "stoniest" "stonily" ;
+lin stony_broke_A = mkAMost "stony-broke" "stony-brokely" ;
+lin stooge_N = mkN "stooge" "stooges" ;
+lin stooge_V = mkV "stooge" "stooged" "stooged" ;
+lin stool_N = mkN "stool" "stools" ;
+lin stoop_N = mkN "stoop" "stoops" ;
+lin stoop_V = mkV "stoop" "stooped" "stooped" ;
+lin stooper_N = mkN "stooper" "stoopers" ;
+lin stop_N = mkN "stop" "stops" ;
+lin stop_V = mkV "stop" "stopped" "stopped" ;
+lin stopcock_N = mkN "stopcock" "stopcocks" ;
+lin stopgap_N = mkN "stopgap" "stopgaps" ;
+lin stoplight_N = mkN "stoplight" "stoplights" ;
+lin stopover_N = mkN "stopover" "stopovers" ;
+lin stoppable_A = mkAMost "stoppable" "stoppably" ;
+lin stoppage_N = mkN "stoppage" "stoppages" ;
+lin stopper_N = mkN "stopper" "stoppers" ;
+lin stoppered_A = mkAMost "stoppered" "stopperedly" ;
+lin stopping_N = mkN "stopping" "stoppings" ;
+lin stopwatch_N = mkN "stopwatch" "stopwatches" ;
+lin storage_N = mkN "storage" "storages" ;
+lin storax_N = mkN "storax" "storaxes" ;
+lin store_N = mkN "store" "stores" ;
+lin store_V = mkV "store" "stored" "stored" ;
+lin storehouse_N = mkN "storehouse" "storehouses" ;
+lin storeroom_N = mkN "storeroom" "storerooms" ;
+lin storey_N = mkN "storey" "storeys" ;
+lin storeyed_A = mkAMost "storeyed" "storeyedly" ;
+lin storied_A = mkAMost "storied" "storiedly" ;
+lin stork_N = mkN "stork" "storks" ;
+lin storksbill_N = mkN "storksbill" "storksbills" ;
+lin storm_N = mkN "storm" "storms" ;
+lin storm_V = mkV "storm" "stormed" "stormed" ;
+lin storm_beaten_A = mkAMost "storm-beaten" "storm-beatenly" ;
+lin storm_bound_A = mkAMost "storm-bound" "storm-boundly" ;
+lin storm_centre_N = mkN "storm-centre" "storm-centres" ;
+lin storm_cloud_N = mkN "storm-cloud" "storm-clouds" ;
+lin storm_cone_N = mkN "storm-cone" "storm-cones" ;
+lin storm_lantern_N = mkN "storm-lantern" "storm-lanterns" ;
+lin storm_signal_N = mkN "storm-signal" "storm-signals" ;
+lin storm_tossed_A = mkAMost "storm-tossed" "storm-tossedly" ;
+lin storm_trooper_N = mkN "storm-trooper" "storm-troopers" ;
+lin stormbound_A = mkAMost "stormbound" "stormboundly" ;
+lin storminess_N = mkN "storminess" "storminesses" ;
+lin stormproof_A = mkAMost "stormproof" "stormproofly" ;
+lin stormy_A = mkA "stormy" "stormier" "stormiest" "stormily" ;
+lin story_N = mkN "story" "stories" ;
+lin storybook_N = mkN "storybook" "storybooks" ;
+lin storyline_N = mkN "storyline" "storylines" ;
+lin storyteller_N = mkN "storyteller" "storytellers" ;
+lin stotinka_N = mkN "stotinka" "stotinkas" ;
+lin stoup_N = mkN "stoup" "stoups" ;
+lin stout_A = mkA "stout" "stouter" "stoutest" "stoutly" ;
+lin stout_N = mkN "stout" "stouts" ;
+lin stouthearted_A = mkAMost "stouthearted" "stoutheartedly" ;
+lin stoutheartedness_N = mkN "stoutheartedness" "stoutheartednesses" ;
+lin stoutness_N = mkN "stoutness" "stoutnesses" ;
+lin stove_N = mkN "stove" "stoves" ;
+lin stovepipe_N = mkN "stovepipe" "stovepipes" ;
+lin stovepiped_A = mkAMost "stovepiped" "stovepipedly" ;
+lin stovepiping_N = mkN "stovepiping" "stovepipings" ;
+lin stover_N = mkN "stover" "stovers" ;
+lin stow_V = mkV "stow" "stowed" "stowed" ;
+lin stowage_N = mkN "stowage" "stowages" ;
+lin stowaway_N = mkN "stowaway" "stowaways" ;
+lin strabismus_N = mkN "strabismus" "strabismuses" ;
+lin strabotomy_N = mkN "strabotomy" "strabotomies" ;
+lin straddle_N = mkN "straddle" "straddles" ;
+lin straddle_V = mkV "straddle" "straddled" "straddled" ;
+lin strafe_N = mkN "strafe" "strafes" ;
+lin strafe_V = mkV "strafe" "strafed" "strafed" ;
+lin strafer_N = mkN "strafer" "strafers" ;
+lin straggle_N = mkN "straggle" "straggles" ;
+lin straggle_V = mkV "straggle" "straggled" "straggled" ;
+lin straggler_N = mkN "straggler" "stragglers" ;
+lin straggly_A = mkA "straggly" "stragglier" "straggliest" "stragglily" ;
+lin straight_A = mkAMost "straight" "straightly" ;
+lin straight_Adv = mkAdv "straight" ;
+lin straight_N = mkN "straight" "straights" ;
+lin straightaway_N = mkN "straightaway" "straightaways" ;
+lin straightedge_N = mkN "straightedge" "straightedges" ;
+lin straighten_straightened_V = mkV "straighten" "straightened" "straightened" ;
+lin straighten_straightenned_V = mkV "straighten" "straightenned" "straightenned" ;
+lin straightener_N = mkN "straightener" "straighteners" ;
+lin straightforward_A = mkAMost "straightforward" "straightforwardly" ;
+lin straightness_N = mkN "straightness" "straightnesses" ;
+lin straightway_Adv = mkAdv "straightway" ;
+lin strain_N = mkN "strain" "strains" ;
+lin strain_V = mkV "strain" "strained" "strained" ;
+lin strainer_N = mkN "strainer" "strainers" ;
+lin strait_A = mkAMost "strait" "straitly" ;
+lin strait_N = mkN "strait" "straits" ;
+lin strait_laced_A = mkAMost "strait-laced" "strait-lacedly" ;
+lin straiten_V = mkV "straiten" "straitened" "straitened" ;
+lin straitjacket_N = mkN "straitjacket" "straitjackets" ;
+lin strand_N = mkN "strand" "strands" ;
+lin strand_V = mkV "strand" "stranded" "stranded" ;
+lin strange_A = mkA "strange" "stranger" "strangest" "strangely" ;
+lin strangeness_N = mkN "strangeness" "strangenesses" ;
+lin stranger_N = mkN "stranger" "strangers" ;
+lin strangle_V = mkV "strangle" "strangled" "strangled" ;
+lin stranglehold_N = mkN "stranglehold" "strangleholds" ;
+lin strangler_N = mkN "strangler" "stranglers" ;
+lin strangulation_N = mkN "strangulation" "strangulations" ;
+lin strap_N = mkN "strap" "straps" ;
+lin strap_V = mkV "strap" "strapped" "strapped" ;
+lin straphanger_N = mkN "straphanger" "straphangers" ;
+lin strapless_A = mkAMost "strapless" "straplessly" ;
+lin strapless_N = mkN "strapless" "straplesses" ;
+lin straplike_A = mkAMost "straplike" "straplikely" ;
+lin strappado_N = mkN "strappado" "strappadoes" ;
+lin strapping_A = mkAMost "strapping" "strappingly" ;
+lin strapping_N = mkN "strapping" "IRREG" ;
+lin stratagem_N = mkN "stratagem" "stratagems" ;
+lin strategic_A = mkAMost "strategic" "strategicly" ;
+lin strategical_A = mkAMost "strategical" "strategically" ;
+lin strategics_N = mkN "strategics" "strategics" ;
+lin strategist_N = mkN "strategist" "strategists" ;
+lin strategy_N = mkN "strategy" "strategies" ;
+lin stratification_N = mkN "stratification" "stratifications" ;
+lin stratify_V = mkV "stratify" "stratified" "stratified" ;
+lin stratigraphy_N = mkN "stratigraphy" "stratigraphies" ;
+lin stratosphere_N = mkN "stratosphere" "stratospheres" ;
+lin stratum_N = mkN "stratum" "strata" ;
+lin stratus_N = mkN "stratus" "stratuses" ;
+lin straw_A = mkA "straw" "strawer" "strawest" "strawly" ;
+lin straw_N = mkN "straw" "straws" ;
+lin straw_V = mkV "straw" "strawed" "strawed" ;
+lin straw_coloured_A = mkAMost "straw-coloured" "straw-colouredly" ;
+lin strawberry_N = mkN "strawberry" "strawberries" ;
+lin strawboard_N = mkN "strawboard" "strawboards" ;
+lin strawflower_N = mkN "strawflower" "strawflowers" ;
+lin strawworm_N = mkN "strawworm" "strawworms" ;
+lin stray_A = mkA "stray" "straier" "straiest" "straily" ;
+lin stray_N = mkN "stray" "strays" ;
+lin stray_V = mkV "stray" "strayed" "strayed" ;
+lin streak_N = mkN "streak" "streaks" ;
+lin streak_V = mkV "streak" "streaked" "streaked" ;
+lin streaker_N = mkN "streaker" "streakers" ;
+lin streaky_A = mkA "streaky" "streakier" "streakiest" "streakily" ;
+lin stream_N = mkN "stream" "streams" ;
+lin stream_V = mkV "stream" "streamed" "streamed" ;
+lin streambed_N = mkN "streambed" "streambeds" ;
+lin streamer_N = mkN "streamer" "streamers" ;
+lin streamlet_N = mkN "streamlet" "streamlets" ;
+lin streamline_V = mkV "streamline" "streamlined" "streamlined" ;
+lin streamliner_N = mkN "streamliner" "streamliners" ;
+lin street_N = mkN "street" "streets" ;
+lin street_girl_N = mkN "street-girl" "street-girls" ;
+lin street_urchin_N = mkN "street-urchin" "street-urchins" ;
+lin streetcar_N = mkN "streetcar" "streetcars" ;
+lin streetlight_N = mkN "streetlight" "streetlights" ;
+lin streetwalker_N = mkN "streetwalker" "streetwalkers" ;
+lin streetwise_A = mkAMost "streetwise" "streetwisely" ;
+lin strength_N = mkN "strength" "strengths" ;
+lin strengthen_V = mkV "strengthen" "strengthened" "strengthened" ;
+lin strengthener_N = mkN "strengthener" "strengtheners" ;
+lin strengthening_N = mkN "strengthening" "strengthenings" ;
+lin strenuous_A = mkAMost "strenuous" "strenuously" ;
+lin strenuousness_N = mkN "strenuousness" "strenuousnesses" ;
+lin streptobacillus_N = mkN "streptobacillus" "streptobacilluses" ;
+lin streptocarpus_N = mkN "streptocarpus" "streptocarpuses" ;
+lin streptococcal_A = mkAMost "streptococcal" "streptococcally" ;
+lin streptococcus_N = mkN "streptococcus" "streptococci" ;
+lin streptodornase_N = mkN "streptodornase" "streptodornases" ;
+lin streptokinase_N = mkN "streptokinase" "streptokinases" ;
+lin streptolysin_N = mkN "streptolysin" "streptolysins" ;
+lin streptomyces_N = mkN "streptomyces" "streptomyceses" ;
+lin streptomycin_N = mkN "streptomycin" "streptomycins" ;
+lin streptothricin_N = mkN "streptothricin" "streptothricins" ;
+lin stress_N = mkN "stress" "stresses" ;
+lin stress_V = mkV "stress" "stressed" "stressed" ;
+lin stress_mark_N = mkN "stress-mark" "stress-marks" ;
+lin stressor_N = mkN "stressor" "stressors" ;
+lin stretch_A = mkA "stretch" "stretcher" "stretchest" "stretchly" ;
+lin stretch_N = mkN "stretch" "stretches" ;
+lin stretch_V = mkV "stretch" "stretched" "stretched" ;
+lin stretchable_A = mkAMost "stretchable" "stretchably" ;
+lin stretcher_N = mkN "stretcher" "stretchers" ;
+lin stretcher_bearer_N = mkN "stretcher-bearer" "stretcher-bearers" ;
+lin stretcher_party_N = mkN "stretcher-party" "stretcher-parties" ;
+lin stretching_N = mkN "stretching" "stretchings" ;
+lin streusel_N = mkN "streusel" "streusels" ;
+lin strew_V = mkV "strew" "strewed" "strewed" ;
+lin stria_N = mkN "stria" "strias" ;
+lin striate_A = mkA "striate" "striater" "striatest" "striately" ;
+lin striated_A = mkAMost "striated" "striatedly" ;
+lin stricken_A = mkAMost "stricken" "strickenly" ;
+lin strickle_N = mkN "strickle" "strickles" ;
+lin strict_A = mkA "strict" "stricter" "strictest" "strictly" ;
+lin strictness_N = mkN "strictness" "strictnesses" ;
+lin stricture_N = mkN "stricture" "strictures" ;
+lin stride_N = mkN "stride" "strides" ;
+lin stride_V = mkV "stride" "strod" "stridden" ;
+lin strident_A = mkAMost "strident" "stridently" ;
+lin strider_N = mkN "strider" "striders" ;
+lin stridor_N = mkN "stridor" "stridors" ;
+lin stridulate_V = mkV "stridulate" "stridulated" "stridulated" ;
+lin stridulation_N = mkN "stridulation" "stridulations" ;
+lin strife_N = mkN "strife" "strifes" ;
+lin strike_N = mkN "strike" "strikes" ;
+lin strike_leader_N = mkN "strike-leader" "strike-leaders" ;
+lin strike_pay_N = mkN "strike-pay" "strike-pays" ;
+lin strike_striked_V = mkV "strike" "striked" "striked" ;
+lin strike_struck_V = mkV "strike" "struck" "struck" ;
+lin strikebound_A = mkAMost "strikebound" "strikeboundly" ;
+lin strikebreaker_N = mkN "strikebreaker" "strikebreakers" ;
+lin strikebreaking_N = mkN "strikebreaking" "strikebreakings" ;
+lin strikeout_N = mkN "strikeout" "strikeouts" ;
+lin striker_N = mkN "striker" "strikers" ;
+lin striking_A = mkAMost "striking" "strikingly" ;
+lin string_N = mkN "string" "strings" ;
+lin string_V = mkV "string" "strung" "strung" ;
+lin stringency_N = mkN "stringency" "stringencies" ;
+lin stringent_A = mkAMost "stringent" "stringently" ;
+lin stringer_N = mkN "stringer" "stringers" ;
+lin stringy_A = mkA "stringy" "stringier" "stringiest" "stringily" ;
+lin stringybark_N = mkN "stringybark" "stringybarks" ;
+lin strip_N = mkN "strip" "strips" ;
+lin strip_V = mkV "strip" "stripped" "stripped" ;
+lin strip_lighting_N = mkN "strip-lighting" "strip-lightings" ;
+lin strip_poker_N = mkN "strip-poker" "strip-pokers" ;
+lin strip_show_N = mkN "strip-show" "strip-shows" ;
+lin stripe_N = mkN "stripe" "stripes" ;
+lin striped_A = mkAMost "striped" "stripedly" ;
+lin striper_N = mkN "striper" "stripers" ;
+lin striping_N = mkN "striping" "stripings" ;
+lin stripling_N = mkN "stripling" "striplings" ;
+lin stripper_N = mkN "stripper" "strippers" ;
+lin striptease_N = mkN "striptease" "stripteases" ;
+lin stripy_A = mkA "stripy" "stripier" "stripiest" "stripily" ;
+lin strive_V = mkV "strive" "strove" "striven" ;
+lin striver_N = mkN "striver" "strivers" ;
+lin striving_N = mkN "striving" "strivings" ;
+lin stroboscope_N = mkN "stroboscope" "stroboscopes" ;
+lin stroke_N = mkN "stroke" "strokes" ;
+lin stroke_V = mkV "stroke" "stroked" "stroked" ;
+lin stroll_N = mkN "stroll" "strolls" ;
+lin stroll_V = mkV "stroll" "strolled" "strolled" ;
+lin stroller_N = mkN "stroller" "strollers" ;
+lin stroma_N = mkN "stroma" "stromas" ;
+lin strong_A = mkA "strong" "stronger" "strongest" "strongly" ;
+lin strong_arm_A = mkAMost "strong-arm" "strong-armly" ;
+lin strong_boned_A = mkAMost "strong-boned" "strong-bonedly" ;
+lin strong_minded_A = mkAMost "strong-minded" "strong-mindedly" ;
+lin strongbox_N = mkN "strongbox" "strongboxes" ;
+lin stronghold_N = mkN "stronghold" "strongholds" ;
+lin strongman_N = mkN "strongman" "strongmen" ;
+lin strongroom_N = mkN "strongroom" "strongrooms" ;
+lin strontianite_N = mkN "strontianite" "strontianites" ;
+lin strontium_N = mkN "strontium" "strontiums" ;
+lin strop_N = mkN "strop" "strops" ;
+lin strop_V = mkV "strop" "stropped" "stropped" ;
+lin strophanthin_N = mkN "strophanthin" "strophanthins" ;
+lin strophanthus_N = mkN "strophanthus" "strophanthuses" ;
+lin strophe_N = mkN "strophe" "strophes" ;
+lin stroppy_A = mkAMost "stroppy" "stroppily" ;
+lin structural_A = mkAMost "structural" "structurally" ;
+lin structuralism_N = mkN "structuralism" "structuralisms" ;
+lin structure_N = mkN "structure" "structures" ;
+lin structure_V = mkV "structure" "structured" "structured" ;
+lin strudel_N = mkN "strudel" "strudels" ;
+lin struggle_N = mkN "struggle" "struggles" ;
+lin struggle_V = mkV "struggle" "struggled" "struggled" ;
+lin struggler_N = mkN "struggler" "strugglers" ;
+lin strum_N = mkN "strum" "strums" ;
+lin strum_V = mkV "strum" "strummed" "strummed" ;
+lin strumpet_N = mkN "strumpet" "strumpets" ;
+lin strut_N = mkN "strut" "struts" ;
+lin strut_V = mkV "strut" "strutted" "strutted" ;
+lin struthiomimus_N = mkN "struthiomimus" "struthiomimuses" ;
+lin strychnine_N = mkN "strychnine" "strychnines" ;
+lin stub_N = mkN "stub" "stubs" ;
+lin stub_V = mkV "stub" "stubbed" "stubbed" ;
+lin stubble_N = mkN "stubble" "stubbles" ;
+lin stubbly_A = mkA "stubbly" "stubblier" "stubbliest" "stubblily" ;
+lin stubborn_A = mkAMost "stubborn" "stubbornly" ;
+lin stubbornness_N = mkN "stubbornness" "stubbornnesses" ;
+lin stubby_A = mkA "stubby" "stubbier" "stubbiest" "stubbily" ;
+lin stucco_N = mkN "stucco" "stuccos" ;
+lin stucco_V = mkV "stucco" "stuccoed" "stuccoed" ;
+lin stuck_V = mkV "stuck" "stucked" "stucked" ;
+lin stuck_up_A = mkAMost "stuck-up" "stuck-uply" ;
+lin stud_N = mkN "stud" "studs" ;
+lin stud_V = mkV "stud" "studded" "studded" ;
+lin stud_farm_N = mkN "stud-farm" "stud-farms" ;
+lin stud_mare_N = mkN "stud-mare" "stud-mares" ;
+lin studbook_N = mkN "studbook" "studbooks" ;
+lin student_N = mkN "student" "students" ;
+lin studentship_N = mkN "studentship" "studentships" ;
+lin studio_N = mkN "studio" "studios" ;
+lin studious_A = mkAMost "studious" "studiously" ;
+lin studiousness_N = mkN "studiousness" "studiousnesses" ;
+lin study_N = mkN "study" "studies" ;
+lin study_V = mkV "study" "studied" "studied" ;
+lin stuff_N = mkN "stuff" "stuffs" ;
+lin stuff_V = mkV "stuff" "stuffed" "stuffed" ;
+lin stuffer_N = mkN "stuffer" "stuffers" ;
+lin stuffiness_N = mkN "stuffiness" "stuffinesses" ;
+lin stuffing_N = mkN "stuffing" "stuffings" ;
+lin stuffy_A = mkA "stuffy" "stuffier" "stuffiest" "stuffily" ;
+lin stultification_N = mkN "stultification" "stultifications" ;
+lin stultify_V = mkV "stultify" "stultified" "stultified" ;
+lin stumble_N = mkN "stumble" "stumbles" ;
+lin stumble_V = mkV "stumble" "stumbled" "stumbled" ;
+lin stumblebum_N = mkN "stumblebum" "stumblebums" ;
+lin stumbler_N = mkN "stumbler" "stumblers" ;
+lin stumbling_block_N = mkN "stumbling-block" "stumbling-blocks" ;
+lin stump_N = mkN "stump" "stumps" ;
+lin stump_V = mkV "stump" "stumped" "stumped" ;
+lin stumper_N = mkN "stumper" "stumpers" ;
+lin stumping_N = mkN "stumping" "stumpings" ;
+lin stumpy_A = mkA "stumpy" "stumpier" "stumpiest" "stumpily" ;
+lin stun_V = mkV "stun" "stunned" "stunned" ;
+lin stunner_N = mkN "stunner" "stunners" ;
+lin stunning_A = mkAMost "stunning" "stunningly" ;
+lin stunt_N = mkN "stunt" "stunts" ;
+lin stunt_V = mkV "stunt" "stunted" "stunted" ;
+lin stupa_N = mkN "stupa" "stupas" ;
+lin stupefaction_N = mkN "stupefaction" "stupefactions" ;
+lin stupefy_V = mkV "stupefy" "stupefied" "stupefied" ;
+lin stupefying_A = mkAMost "stupefying" "stupefyingly" ;
+lin stupendous_A = mkAMost "stupendous" "stupendously" ;
+lin stupid_A = mkAMost "stupid" "stupidly" ;
+lin stupid_N = mkN "stupid" "IRREG" ;
+lin stupidity_N = mkN "stupidity" "stupidities" ;
+lin stupify_V = mkV "stupify" "stupified" "stupified" ;
+lin stupifying_A = mkAMost "stupifying" "stupifyingly" ;
+lin stupor_N = mkN "stupor" "stupors" ;
+lin sturdiness_N = mkN "sturdiness" "sturdinesses" ;
+lin sturdy_A = mkA "sturdy" "sturdier" "sturdiest" "sturdily" ;
+lin sturgeon_N = mkN "sturgeon" "sturgeons" ;
+lin stutter_N = mkN "stutter" "stutters" ;
+lin stutter_V = mkV "stutter" "stuttered" "stuttered" ;
+lin stutterer_N = mkN "stutterer" "stutterers" ;
+lin stutteringly_Adv = mkAdv "stutteringly" ;
+lin sty_N = mkN "sty" "sties" ;
+lin stye_N = mkN "stye" "styes" ;
+lin stygian_A = mkAMost "stygian" "stygianly" ;
+lin style_N = mkN "style" "styles" ;
+lin style_V = mkV "style" "styled" "styled" ;
+lin styleless_A = mkAMost "styleless" "stylelessly" ;
+lin stylet_N = mkN "stylet" "stylets" ;
+lin stylish_A = mkAMost "stylish" "stylishly" ;
+lin stylishness_N = mkN "stylishness" "stylishnesses" ;
+lin stylist_N = mkN "stylist" "stylists" ;
+lin stylistic_A = mkAMost "stylistic" "stylisticly" ;
+lin stylistically_Adv = mkAdv "stylistically" ;
+lin stylite_N = mkN "stylite" "stylites" ;
+lin stylization_N = mkN "stylization" "stylizations" ;
+lin stylize_V = mkV "stylize" "stylized" "stylized" ;
+lin stylopodium_N = mkN "stylopodium" "stylopodiums" ;
+lin stylus_N = mkN "stylus" "styluses" ;
+lin stymie_N = mkN "stymie" "stymies" ;
+lin stymie_V = mkV "stymie" "IRREG" "IRREG" ;
+lin stymy_V = mkV "stymy" "stymied" "stymied" ;
+lin styptic_A = mkAMost "styptic" "stypticly" ;
+lin styptic_N = mkN "styptic" "styptics" ;
+lin styracosaur_N = mkN "styracosaur" "styracosaurs" ;
+lin styrax_N = mkN "styrax" "styraxes" ;
+lin styrene_N = mkN "styrene" "styrenes" ;
+lin suasion_N = mkN "suasion" "suasions" ;
+lin suave_A = mkAMost "suave" "suavely" ;
+lin suavity_N = mkN "suavity" "suavities" ;
+lin sub_N = mkN "sub" "subs" ;
+lin sub_V = mkV "sub" "subbed" "subbed" ;
+lin sub_judice_A = mkAMost "sub judice" "sub judicely" ;
+lin sub_rosa_Adv = mkAdv "sub rosa" ;
+lin sub_underwrite_V = mkV "sub-underwrite" "sub-underwrited" "sub-underwrited" ;
+lin subacid_A = mkAMost "subacid" "subacidly" ;
+lin subacute_A = mkAMost "subacute" "subacutely" ;
+lin subaltern_N = mkN "subaltern" "subalterns" ;
+lin subaqueous_A = mkAMost "subaqueous" "subaqueously" ;
+lin subarctic_A = mkAMost "subarctic" "subarcticly" ;
+lin subartesian_A = mkAMost "subartesian" "subartesianly" ;
+lin subatomic_A = mkAMost "subatomic" "subatomicly" ;
+lin subbase_N = mkN "subbase" "subbases" ;
+lin subbing_N = mkN "subbing" "subbings" ;
+lin subclass_N = mkN "subclass" "subclasses" ;
+lin subclavian_A = mkAMost "subclavian" "subclavianly" ;
+lin subclinical_A = mkAMost "subclinical" "subclinically" ;
+lin subcommittee_N = mkN "subcommittee" "subcommittees" ;
+lin subcompact_N = mkN "subcompact" "subcompacts" ;
+lin subconscious_A = mkAMost "subconscious" "subconsciously" ;
+lin subconscious_N = mkN "subconscious" "subconscioi" ;
+lin subconsciousness_N = mkN "subconsciousness" "subconsciousnesses" ;
+lin subcontinent_N = mkN "subcontinent" "subcontinents" ;
+lin subcontract_N = mkN "subcontract" "subcontracts" ;
+lin subcontract_V = mkV "subcontract" "subcontracted" "subcontracted" ;
+lin subcontractor_N = mkN "subcontractor" "subcontractors" ;
+lin subcortical_A = mkAMost "subcortical" "subcortically" ;
+lin subculture_N = mkN "subculture" "subcultures" ;
+lin subcutaneous_A = mkAMost "subcutaneous" "subcutaneously" ;
+lin subdeacon_N = mkN "subdeacon" "subdeacons" ;
+lin subdirectory_N = mkN "subdirectory" "subdirectories" ;
+lin subdivide_V = mkV "subdivide" "subdivided" "subdivided" ;
+lin subdivider_N = mkN "subdivider" "subdividers" ;
+lin subdivision_N = mkN "subdivision" "subdivisions" ;
+lin subdominant_N = mkN "subdominant" "subdominants" ;
+lin subduable_A = mkAMost "subduable" "subduably" ;
+lin subduction_N = mkN "subduction" "subductions" ;
+lin subdue_V = mkV "subdue" "subdued" "subdued" ;
+lin subduer_N = mkN "subduer" "subduers" ;
+lin subdural_A = mkAMost "subdural" "subdurally" ;
+lin subedit_V = mkV "subedit" "subedited" "subedited" ;
+lin subeditor_N = mkN "subeditor" "subeditors" ;
+lin subfamily_N = mkN "subfamily" "subfamilies" ;
+lin subfigure_N = mkN "subfigure" "subfigures" ;
+lin subfusc_A = mkAMost "subfusc" "subfuscly" ;
+lin subgenus_N = mkN "subgenus" "subgenuses" ;
+lin subgross_A = mkAMost "subgross" "subgrossly" ;
+lin subgroup_N = mkN "subgroup" "subgroups" ;
+lin subheading_N = mkN "subheading" "subheadings" ;
+lin subhuman_A = mkAMost "subhuman" "subhumanly" ;
+lin subjacent_A = mkAMost "subjacent" "subjacently" ;
+lin subject_A = mkAMost "subject" "subjectly" ;
+lin subject_N = mkN "subject" "subjects" ;
+lin subject_V = mkV "subject" "subjected" "subjected" ;
+lin subject_to_Prep = mkPrep "subject to" ;
+lin subjection_N = mkN "subjection" "subjections" ;
+lin subjective_A = mkAMost "subjective" "subjectively" ;
+lin subjectivism_N = mkN "subjectivism" "subjectivisms" ;
+lin subjectivist_N = mkN "subjectivist" "subjectivists" ;
+lin subjectivity_N = mkN "subjectivity" "subjectivities" ;
+lin subjoin_V = mkV "subjoin" "subjoined" "subjoined" ;
+lin subjugate_V = mkV "subjugate" "subjugated" "subjugated" ;
+lin subjugation_N = mkN "subjugation" "subjugations" ;
+lin subjugator_N = mkN "subjugator" "subjugators" ;
+lin subjunctive_A = mkAMost "subjunctive" "subjunctively" ;
+lin subjunctive_N = mkN "subjunctive" "subjunctives" ;
+lin subkingdom_N = mkN "subkingdom" "subkingdoms" ;
+lin sublease_N = mkN "sublease" "subleases" ;
+lin sublease_V = mkV "sublease" "subleased" "subleased" ;
+lin sublet_V = mkV "sublet" "sublet" "sublet" ;
+lin sublieutenant_N = mkN "sublieutenant" "sublieutenants" ;
+lin sublimate_A = mkAMost "sublimate" "sublimately" ;
+lin sublimate_N = mkN "sublimate" "sublimates" ;
+lin sublimate_V = mkV "sublimate" "sublimated" "sublimated" ;
+lin sublimation_N = mkN "sublimation" "sublimations" ;
+lin sublime_A = mkAMost "sublime" "sublimely" ;
+lin sublime_N = mkN "sublime" "IRREG" ;
+lin sublimed_A = mkAMost "sublimed" "sublimedly" ;
+lin subliminal_A = mkAMost "subliminal" "subliminally" ;
+lin sublimity_N = mkN "sublimity" "sublimities" ;
+lin sublingual_A = mkAMost "sublingual" "sublingually" ;
+lin subliterary_A = mkAMost "subliterary" "subliterarily" ;
+lin sublittoral_A = mkAMost "sublittoral" "sublittorally" ;
+lin sublunar_A = mkAMost "sublunar" "sublunarly" ;
+lin subluxation_N = mkN "subluxation" "subluxations" ;
+lin submarine_A = mkAMost "submarine" "submarinely" ;
+lin submarine_N = mkN "submarine" "submarines" ;
+lin submariner_N = mkN "submariner" "submariners" ;
+lin submediant_N = mkN "submediant" "submediants" ;
+lin submerge_V = mkV "submerge" "submerged" "submerged" ;
+lin submergence_N = mkN "submergence" "submergences" ;
+lin submersible_A = mkAMost "submersible" "submersibly" ;
+lin submersible_N = mkN "submersible" "submersibles" ;
+lin submersion_N = mkN "submersion" "submersions" ;
+lin submission_N = mkN "submission" "submissions" ;
+lin submissive_A = mkAMost "submissive" "submissively" ;
+lin submissiveness_N = mkN "submissiveness" "submissivenesses" ;
+lin submit_V = mkV "submit" "submitted" "submitted" ;
+lin submitter_N = mkN "submitter" "submitters" ;
+lin submucosa_N = mkN "submucosa" "submucosas" ;
+lin subnormal_A = mkAMost "subnormal" "subnormally" ;
+lin subnormal_N = mkN "subnormal" "subnormals" ;
+lin subnormality_N = mkN "subnormality" "subnormalities" ;
+lin suboceanic_A = mkAMost "suboceanic" "suboceanicly" ;
+lin suborbital_A = mkAMost "suborbital" "suborbitally" ;
+lin suborder_N = mkN "suborder" "suborders" ;
+lin subordinate_A = mkAMost "subordinate" "subordinately" ;
+lin subordinate_N = mkN "subordinate" "subordinates" ;
+lin subordinate_V = mkV "subordinate" "subordinated" "subordinated" ;
+lin subordinateness_N = mkN "subordinateness" "subordinatenesses" ;
+lin subordination_N = mkN "subordination" "subordinations" ;
+lin subordinative_A = mkAMost "subordinative" "subordinatively" ;
+lin suborn_V = mkV "suborn" "suborned" "suborned" ;
+lin subornation_N = mkN "subornation" "subornations" ;
+lin subpart_N = mkN "subpart" "subparts" ;
+lin subphylum_N = mkN "subphylum" "subphylums" ;
+lin subpoena_N = mkN "subpoena" "subpoenas" ;
+lin subpoena_V = mkV "subpoena" "subpoenaed" "subpoenaed" ;
+lin subpopulation_N = mkN "subpopulation" "subpopulations" ;
+lin subrogation_N = mkN "subrogation" "subrogations" ;
+lin subscribe_V = mkV "subscribe" "subscribed" "subscribed" ;
+lin subscriber_N = mkN "subscriber" "subscribers" ;
+lin subscript_A = mkAMost "subscript" "subscriptly" ;
+lin subscript_N = mkN "subscript" "subscripts" ;
+lin subscription_N = mkN "subscription" "subscriptions" ;
+lin subsection_N = mkN "subsection" "subsections" ;
+lin subsequent_A = mkAMost "subsequent" "subsequently" ;
+lin subserve_V = mkV "subserve" "subserved" "subserved" ;
+lin subservience_N = mkN "subservience" "subserviences" ;
+lin subservient_A = mkAMost "subservient" "subserviently" ;
+lin subset_N = mkN "subset" "subsets" ;
+lin subshrub_N = mkN "subshrub" "subshrubs" ;
+lin subside_V = mkV "subside" "subsided" "subsided" ;
+lin subsidence_N = mkN "subsidence" "subsidences" ;
+lin subsidiary_A = mkAMost "subsidiary" "subsidiarily" ;
+lin subsidiary_N = mkN "subsidiary" "subsidiaries" ;
+lin subsidization_N = mkN "subsidization" "subsidizations" ;
+lin subsidize_V = mkV "subsidize" "subsidized" "subsidized" ;
+lin subsidizer_N = mkN "subsidizer" "subsidizers" ;
+lin subsidy_N = mkN "subsidy" "subsidies" ;
+lin subsist_V = mkV "subsist" "subsisted" "subsisted" ;
+lin subsistence_N = mkN "subsistence" "subsistences" ;
+lin subsoil_N = mkN "subsoil" "subsoils" ;
+lin subsonic_A = mkAMost "subsonic" "subsonicly" ;
+lin subspace_N = mkN "subspace" "subspaces" ;
+lin subspecies_N = mkN "subspecies" "subspecieses" ;
+lin substance_N = mkN "substance" "substances" ;
+lin substandard_A = mkAMost "substandard" "substandardly" ;
+lin substantial_A = mkAMost "substantial" "substantially" ;
+lin substantiality_N = mkN "substantiality" "substantialities" ;
+lin substantiate_V = mkV "substantiate" "substantiated" "substantiated" ;
+lin substantiation_N = mkN "substantiation" "substantiations" ;
+lin substantival_A = mkAMost "substantival" "substantivally" ;
+lin substantive_A = mkAMost "substantive" "substantively" ;
+lin substantive_N = mkN "substantive" "substantives" ;
+lin substation_N = mkN "substation" "substations" ;
+lin substitutable_A = mkAMost "substitutable" "substitutably" ;
+lin substitute_N = mkN "substitute" "substitutes" ;
+lin substitute_V = mkV "substitute" "substituted" "substituted" ;
+lin substitution_N = mkN "substitution" "substitutions" ;
+lin substrate_N = mkN "substrate" "substrates" ;
+lin substratum_N = mkN "substratum" "substrata" ;
+lin substring_N = mkN "substring" "substrings" ;
+lin substructure_N = mkN "substructure" "substructures" ;
+lin subsume_V = mkV "subsume" "subsumed" "subsumed" ;
+lin subsumption_N = mkN "subsumption" "subsumptions" ;
+lin subsurface_A = mkAMost "subsurface" "subsurfacely" ;
+lin subsystem_N = mkN "subsystem" "subsystems" ;
+lin subtend_V = mkV "subtend" "subtended" "subtended" ;
+lin subterfuge_N = mkN "subterfuge" "subterfuges" ;
+lin subterminal_A = mkAMost "subterminal" "subterminally" ;
+lin subterranean_A = mkAMost "subterranean" "subterraneanly" ;
+lin subthalamus_N = mkN "subthalamus" "subthalamuses" ;
+lin subtilin_N = mkN "subtilin" "subtilins" ;
+lin subtitle_N = mkN "subtitle" "subtitles" ;
+lin subtle_A = mkA "subtle" "subtler" "subtlest" "subtlely" ;
+lin subtlety_N = mkN "subtlety" "subtleties" ;
+lin subtly_Adv = mkAdv "subtly" ;
+lin subtonic_N = mkN "subtonic" "subtonics" ;
+lin subtopia_N = mkN "subtopia" "subtopias" ;
+lin subtotal_N = mkN "subtotal" "subtotals" ;
+lin subtract_V = mkV "subtract" "subtracted" "subtracted" ;
+lin subtracter_N = mkN "subtracter" "subtracters" ;
+lin subtraction_N = mkN "subtraction" "subtractions" ;
+lin subtractive_A = mkAMost "subtractive" "subtractively" ;
+lin subtrahend_N = mkN "subtrahend" "subtrahends" ;
+lin subtreasury_N = mkN "subtreasury" "subtreasuries" ;
+lin subtropical_A = mkAMost "subtropical" "subtropically" ;
+lin subtropics_N = mkN "subtropics" "subtropicses" ;
+lin suburb_N = mkN "suburb" "suburbs" ;
+lin suburban_A = mkAMost "suburban" "suburbanly" ;
+lin suburbanite_N = mkN "suburbanite" "suburbanites" ;
+lin suburbanized_A = mkAMost "suburbanized" "suburbanizedly" ;
+lin suburbia_N = mkN "suburbia" "suburbias" ;
+lin subvention_N = mkN "subvention" "subventions" ;
+lin subversion_N = mkN "subversion" "subversions" ;
+lin subversive_A = mkAMost "subversive" "subversively" ;
+lin subversive_N = mkN "subversive" "subversives" ;
+lin subvert_V = mkV "subvert" "subverted" "subverted" ;
+lin subvocalizer_N = mkN "subvocalizer" "subvocalizers" ;
+lin subway_N = mkN "subway" "subways" ;
+lin subwoofer_N = mkN "subwoofer" "subwoofers" ;
+lin succedaneum_N = mkN "succedaneum" "succedaneums" ;
+lin succeed_V = mkV "succeed" "succeeded" "succeeded" ;
+lin success_N = mkN "success" "successes" ;
+lin successful_A = mkAMost "successful" "successfully" ;
+lin succession_N = mkN "succession" "successions" ;
+lin successive_A = mkAMost "successive" "successively" ;
+lin successor_N = mkN "successor" "successors" ;
+lin succinct_A = mkAMost "succinct" "succinctly" ;
+lin succinctness_N = mkN "succinctness" "succinctnesses" ;
+lin succinic_A = mkAMost "succinic" "succinicly" ;
+lin succinylcholine_N = mkN "succinylcholine" "succinylcholines" ;
+lin succorer_N = mkN "succorer" "succorers" ;
+lin succotash_N = mkN "succotash" "succotashes" ;
+lin succour_N = mkN "succour" "succours" ;
+lin succour_V = mkV "succour" "succoured" "succoured" ;
+lin succubus_N = mkN "succubus" "succubuses" ;
+lin succulence_N = mkN "succulence" "succulences" ;
+lin succulent_A = mkAMost "succulent" "succulently" ;
+lin succulent_N = mkN "succulent" "succulents" ;
+lin succumb_V = mkV "succumb" "succumbed" "succumbed" ;
+lin succussion_N = mkN "succussion" "succussions" ;
+lin such_Adv = mkAdv "such" ;
+lin such_as_Prep = mkPrep "such as" ;
+lin suchlike_A = mkAMost "suchlike" "suchlikely" ;
+lin suck_N = mkN "suck" "sucks" ;
+lin suck_V = mkV "suck" "sucked" "sucked" ;
+lin sucker_N = mkN "sucker" "suckers" ;
+lin sucking_N = mkN "sucking" "suckings" ;
+lin sucking_pig_N = mkN "sucking-pig" "sucking-pigs" ;
+lin suckle_V = mkV "suckle" "suckled" "suckled" ;
+lin suckling_N = mkN "suckling" "sucklings" ;
+lin sucralfate_N = mkN "sucralfate" "sucralfates" ;
+lin sucre_N = mkN "sucre" "sucres" ;
+lin sucrose_N = mkN "sucrose" "sucroses" ;
+lin suction_N = mkN "suction" "suctions" ;
+lin suctorial_A = mkAMost "suctorial" "suctorially" ;
+lin sudanese_A = mkAMost "sudanese" "sudanesely" ;
+lin sudanese_N = mkN "sudanese" "sudanese" ;
+lin sudatorium_N = mkN "sudatorium" "sudatoriums" ;
+lin sudden_A = mkAMost "sudden" "suddenly" ;
+lin sudden_N = mkN "sudden" "IRREG" ;
+lin suddenness_N = mkN "suddenness" "suddennesses" ;
+lin sudoku_N = mkN "sudoku" "sudokus" ;
+lin sudorific_N = mkN "sudorific" "sudorifics" ;
+lin sudra_N = mkN "sudra" "sudras" ;
+lin suds_N = mkN "suds" "sudses" ;
+lin sue_V = mkV "sue" "sued" "sued" ;
+lin suede_N = mkN "suede" "suedes" ;
+lin suer_N = mkN "suer" "suers" ;
+lin suet_N = mkN "suet" "suets" ;
+lin suety_A = mkAMost "suety" "suetily" ;
+lin suffer_V = mkV "suffer" "suffered" "suffered" ;
+lin sufferable_A = mkAMost "sufferable" "sufferably" ;
+lin sufferance_N = mkN "sufferance" "sufferances" ;
+lin sufferer_N = mkN "sufferer" "sufferers" ;
+lin suffering_N = mkN "suffering" "sufferings" ;
+lin suffice_V = mkV "suffice" "sufficed" "sufficed" ;
+lin sufficiency_N = mkN "sufficiency" "sufficiencies" ;
+lin sufficient_A = mkAMost "sufficient" "sufficiently" ;
+lin suffix_N = mkN "suffix" "suffixes" ;
+lin suffixation_N = mkN "suffixation" "suffixations" ;
+lin suffocate_V = mkV "suffocate" "suffocated" "suffocated" ;
+lin suffocation_N = mkN "suffocation" "suffocations" ;
+lin suffragan_N = mkN "suffragan" "suffragans" ;
+lin suffrage_N = mkN "suffrage" "suffrages" ;
+lin suffragette_N = mkN "suffragette" "suffragettes" ;
+lin suffragism_N = mkN "suffragism" "suffragisms" ;
+lin suffragist_N = mkN "suffragist" "suffragists" ;
+lin suffrutescent_A = mkAMost "suffrutescent" "suffrutescently" ;
+lin suffuse_V = mkV "suffuse" "suffused" "suffused" ;
+lin suffusion_N = mkN "suffusion" "suffusions" ;
+lin suffusive_A = mkAMost "suffusive" "suffusively" ;
+lin sugar_N = mkN "sugar" "sugars" ;
+lin sugar_V = mkV "sugar" "sugared" "sugared" ;
+lin sugar_beet_N = mkN "sugar-beet" "sugar-beet" ;
+lin sugar_candy_N = mkN "sugar-candy" "sugar-candies" ;
+lin sugar_cane_N = mkN "sugar-cane" "sugar-canes" ;
+lin sugar_coated_A = mkAMost "sugar-coated" "sugar-coatedly" ;
+lin sugar_daddy_N = mkN "sugar-daddy" "sugar-daddies" ;
+lin sugar_loaf_N = mkN "sugar-loaf" "sugar-loafs" ;
+lin sugar_refinery_N = mkN "sugar-refinery" "sugar-refineries" ;
+lin sugarberry_N = mkN "sugarberry" "sugarberries" ;
+lin sugarcane_N = mkN "sugarcane" "sugarcanes" ;
+lin sugariness_N = mkN "sugariness" "sugarinesses" ;
+lin sugarless_A = mkAMost "sugarless" "sugarlessly" ;
+lin sugarloaf_N = mkN "sugarloaf" "sugarloafs" ;
+lin sugarlump_N = mkN "sugarlump" "sugarlumps" ;
+lin sugarplum_N = mkN "sugarplum" "sugarplums" ;
+lin sugary_A = mkA "sugary" "sugarier" "sugariest" "sugarily" ;
+lin suggest_V = mkV "suggest" "suggested" "suggested" ;
+lin suggester_N = mkN "suggester" "suggesters" ;
+lin suggestibility_N = mkN "suggestibility" "suggestibilities" ;
+lin suggestible_A = mkAMost "suggestible" "suggestibly" ;
+lin suggestion_N = mkN "suggestion" "suggestions" ;
+lin suggestive_A = mkAMost "suggestive" "suggestively" ;
+lin suicidal_A = mkAMost "suicidal" "suicidally" ;
+lin suicide_N = mkN "suicide" "suicides" ;
+lin suit_N = mkN "suit" "suits" ;
+lin suit_suited_V = mkV "suit" "suited" "suited" ;
+lin suit_suitted_V = mkV "suit" "suitted" "suitted" ;
+lin suitability_N = mkN "suitability" "suitabilities" ;
+lin suitable_A = mkAMost "suitable" "suitably" ;
+lin suitableness_N = mkN "suitableness" "suitablenesses" ;
+lin suitcase_N = mkN "suitcase" "suitcases" ;
+lin suite_N = mkN "suite" "suites" ;
+lin suiting_N = mkN "suiting" "suitings" ;
+lin suitor_N = mkN "suitor" "suitors" ;
+lin sukiyaki_N = mkN "sukiyaki" "sukiyakis" ;
+lin suksdorfia_N = mkN "suksdorfia" "suksdorfias" ;
+lin sulcate_A = mkAMost "sulcate" "sulcately" ;
+lin sulcus_N = mkN "sulcus" "sulcuses" ;
+lin sulfacetamide_N = mkN "sulfacetamide" "sulfacetamides" ;
+lin sulfadiazine_N = mkN "sulfadiazine" "sulfadiazines" ;
+lin sulfamethazine_N = mkN "sulfamethazine" "sulfamethazines" ;
+lin sulfamethoxazole_N = mkN "sulfamethoxazole" "sulfamethoxazoles" ;
+lin sulfanilamide_N = mkN "sulfanilamide" "sulfanilamides" ;
+lin sulfapyridine_N = mkN "sulfapyridine" "sulfapyridines" ;
+lin sulfate_N = mkN "sulfate" "sulfates" ;
+lin sulfide_N = mkN "sulfide" "sulfides" ;
+lin sulfisoxazole_N = mkN "sulfisoxazole" "sulfisoxazoles" ;
+lin sulfonate_N = mkN "sulfonate" "sulfonates" ;
+lin sulfonylurea_N = mkN "sulfonylurea" "sulfonylureas" ;
+lin sulfur_N = mkN "sulfur" "sulfurs" ;
+lin sulfurous_A = mkAMost "sulfurous" "sulfurously" ;
+lin sulindac_N = mkN "sulindac" "sulindacs" ;
+lin sulk_N = mkN "sulk" "sulks" ;
+lin sulk_V = mkV "sulk" "sulked" "sulked" ;
+lin sulkiness_N = mkN "sulkiness" "sulkinesses" ;
+lin sulky_A = mkA "sulky" "sulkier" "sulkiest" "sulkily" ;
+lin sulky_N = mkN "sulky" "sulkies" ;
+lin sullen_A = mkAMost "sullen" "sullenly" ;
+lin sullenness_N = mkN "sullenness" "sullennesses" ;
+lin sully_V = mkV "sully" "sullied" "sullied" ;
+lin sulpha_N = mkN "sulpha" "sulphas" ;
+lin sulphate_N = mkN "sulphate" "sulphates" ;
+lin sulphide_N = mkN "sulphide" "sulphides" ;
+lin sulphur_N = mkN "sulphur" "sulphurs" ;
+lin sulphuretted_A = mkAMost "sulphuretted" "sulphurettedly" ;
+lin sulphuric_A = mkAMost "sulphuric" "sulphuricly" ;
+lin sulphurous_A = mkAMost "sulphurous" "sulphurously" ;
+lin sultan_N = mkN "sultan" "sultans" ;
+lin sultana_N = mkN "sultana" "sultanas" ;
+lin sultanate_N = mkN "sultanate" "sultanates" ;
+lin sultriness_N = mkN "sultriness" "sultrinesses" ;
+lin sultry_A = mkA "sultry" "sultrier" "sultriest" "sultrily" ;
+lin sum_N = mkN "sum" "sums" ;
+lin sum_V = mkV "sum" "summed" "summed" ;
+lin sumac_N = mkN "sumac" "sumacs" ;
+lin sumach_N = mkN "sumach" "sumaches" ;
+lin sumatran_A = mkAMost "sumatran" "sumatranly" ;
+lin sumatran_N = mkN "sumatran" "sumatrans" ;
+lin summarization_N = mkN "summarization" "summarizations" ;
+lin summarize_V = mkV "summarize" "summarized" "summarized" ;
+lin summary_A = mkAMost "summary" "summarily" ;
+lin summary_N = mkN "summary" "summaries" ;
+lin summation_N = mkN "summation" "summations" ;
+lin summational_A = mkAMost "summational" "summationally" ;
+lin summer_N = mkN "summer" "summers" ;
+lin summer_V = mkV "summer" "summered" "summered" ;
+lin summercaters_N = mkN "summercaters" "summercaterses" ;
+lin summerhouse_N = mkN "summerhouse" "summerhouses" ;
+lin summertime_N = mkN "summertime" "summertimes" ;
+lin summery_A = mkA "summery" "summerier" "summeriest" "summerily" ;
+lin summing_up_N = mkN "summing-up" "summing-ups" ;
+lin summit_N = mkN "summit" "summits" ;
+lin summon_summoned_V = mkV "summon" "summoned" "summoned" ;
+lin summon_summonned_V = mkV "summon" "summonned" "summonned" ;
+lin summons_N = mkN "summons" "summonses" ;
+lin summons_V = mkV "summons" "summonsed" "summonsed" ;
+lin sumo_N = mkN "sumo" "sumoes" ;
+lin sump_N = mkN "sump" "sumps" ;
+lin sumpsimus_N = mkN "sumpsimus" "sumpsimuses" ;
+lin sumpter_N = mkN "sumpter" "sumpters" ;
+lin sumptuary_A = mkAMost "sumptuary" "sumptuarily" ;
+lin sumptuous_A = mkAMost "sumptuous" "sumptuously" ;
+lin sumptuousness_N = mkN "sumptuousness" "sumptuousnesses" ;
+lin sun_N = mkN "sun" "suns" ;
+lin sun_V = mkV "sun" "sunned" "sunned" ;
+lin sun_drenched_A = mkAMost "sun-drenched" "sun-drenchedly" ;
+lin sun_dried_A = mkAMost "sun-dried" "sun-driedly" ;
+lin sun_god_N = mkN "sun-god" "sun-gods" ;
+lin sun_helmet_N = mkN "sun-helmet" "sun-helmets" ;
+lin sun_lounge_N = mkN "sun-lounge" "sun-lounges" ;
+lin sun_parlour_N = mkN "sun-parlour" "sun-parlours" ;
+lin sun_porch_N = mkN "sun-porch" "sun-porches" ;
+lin sun_up_N = mkN "sun-up" "sun-ups" ;
+lin sun_visor_N = mkN "sun-visor" "sun-visors" ;
+lin sun_worship_N = mkN "sun-worship" "sun-worships" ;
+lin sunbaked_A = mkAMost "sunbaked" "sunbakedly" ;
+lin sunbathe_N = mkN "sunbathe" "IRREG" ;
+lin sunbathe_V = mkV "sunbathe" "sunbathed" "sunbathed" ;
+lin sunbather_N = mkN "sunbather" "sunbathers" ;
+lin sunbeam_N = mkN "sunbeam" "sunbeams" ;
+lin sunblind_N = mkN "sunblind" "sunblinds" ;
+lin sunbonnet_N = mkN "sunbonnet" "sunbonnets" ;
+lin sunburn_N = mkN "sunburn" "sunburns" ;
+lin sunburned_A = mkAMost "sunburned" "sunburnedly" ;
+lin sunburnt_A = mkAMost "sunburnt" "sunburntly" ;
+lin sunburst_N = mkN "sunburst" "sunbursts" ;
+lin sundae_N = mkN "sundae" "sundaes" ;
+lin sunder_N = mkN "sunder" "sunders" ;
+lin sunder_V = mkV "sunder" "sundered" "sundered" ;
+lin sundew_N = mkN "sundew" "sundews" ;
+lin sundial_N = mkN "sundial" "sundials" ;
+lin sundown_N = mkN "sundown" "sundowns" ;
+lin sundowner_N = mkN "sundowner" "sundowners" ;
+lin sundress_N = mkN "sundress" "sundresses" ;
+lin sundries_N = mkN "sundries" "sundrieses" ;
+lin sundrops_N = mkN "sundrops" "sundropses" ;
+lin sundry_A = mkAMost "sundry" "sundrily" ;
+lin sunfish_N = mkN "sunfish" "sunfish" ;
+lin sunflower_N = mkN "sunflower" "sunflowers" ;
+lin sunglass_N = mkN "sunglass" "sunglasses" ;
+lin sunglasses_N = mkN "sunglasses" "sunglasseses" ;
+lin sunhat_N = mkN "sunhat" "sunhats" ;
+lin sunlamp_N = mkN "sunlamp" "sunlamps" ;
+lin sunless_A = mkAMost "sunless" "sunlessly" ;
+lin sunlight_N = mkN "sunlight" "sunlights" ;
+lin sunlit_A = mkAMost "sunlit" "sunlitly" ;
+lin sunniness_N = mkN "sunniness" "sunninesses" ;
+lin sunny_A = mkA "sunny" "sunnier" "sunniest" "sunnily" ;
+lin sunray_A = mkAMost "sunray" "sunraily" ;
+lin sunray_N = mkN "sunray" "sunrays" ;
+lin sunrise_N = mkN "sunrise" "sunrises" ;
+lin sunroof_N = mkN "sunroof" "sunroofs" ;
+lin sunscreen_N = mkN "sunscreen" "sunscreens" ;
+lin sunset_A = mkAMost "sunset" "sunsetly" ;
+lin sunset_N = mkN "sunset" "sunsets" ;
+lin sunshade_N = mkN "sunshade" "sunshades" ;
+lin sunshine_N = mkN "sunshine" "sunshines" ;
+lin sunshine_roof_N = mkN "sunshine-roof" "sunshine-roofs" ;
+lin sunspot_N = mkN "sunspot" "sunspots" ;
+lin sunstone_N = mkN "sunstone" "sunstones" ;
+lin sunstroke_N = mkN "sunstroke" "sunstrokes" ;
+lin sunsuit_N = mkN "sunsuit" "sunsuits" ;
+lin suntan_N = mkN "suntan" "suntans" ;
+lin suntrap_N = mkN "suntrap" "suntraps" ;
+lin sup_N = mkN "sup" "sups" ;
+lin sup_V = mkV "sup" "supped" "supped" ;
+lin super_A = mkAMost "super" "superly" ;
+lin super_N = mkN "super" "supers" ;
+lin superabundance_N = mkN "superabundance" "IRREG" ;
+lin superabundant_A = mkAMost "superabundant" "superabundantly" ;
+lin superannuate_V = mkV "superannuate" "superannuated" "superannuated" ;
+lin superannuation_N = mkN "superannuation" "superannuations" ;
+lin superb_A = mkAMost "superb" "superbly" ;
+lin superbug_N = mkN "superbug" "superbugs" ;
+lin supercargo_N = mkN "supercargo" "supercargoes" ;
+lin supercede_V = mkV "supercede" "superceded" "superceded" ;
+lin supercharged_A = mkAMost "supercharged" "superchargedly" ;
+lin supercharger_N = mkN "supercharger" "superchargers" ;
+lin supercilious_A = mkAMost "supercilious" "superciliously" ;
+lin superciliousness_N = mkN "superciliousness" "superciliousnesses" ;
+lin superclass_N = mkN "superclass" "superclasses" ;
+lin supercomputer_N = mkN "supercomputer" "supercomputers" ;
+lin superconductivity_N = mkN "superconductivity" "superconductivities" ;
+lin supercritical_A = mkAMost "supercritical" "supercritically" ;
+lin superego_N = mkN "superego" "superegoes" ;
+lin supererogation_N = mkN "supererogation" "supererogations" ;
+lin superfamily_N = mkN "superfamily" "superfamilies" ;
+lin superfatted_A = mkAMost "superfatted" "superfattedly" ;
+lin superfecta_N = mkN "superfecta" "superfectas" ;
+lin superfecundation_N = mkN "superfecundation" "superfecundations" ;
+lin superfetation_N = mkN "superfetation" "superfetations" ;
+lin superficial_A = mkAMost "superficial" "superficially" ;
+lin superficiality_N = mkN "superficiality" "superficialities" ;
+lin superficies_N = mkN "superficies" "superficies" ;
+lin superfine_A = mkAMost "superfine" "superfinely" ;
+lin superfluity_N = mkN "superfluity" "superfluities" ;
+lin superfluous_A = mkAMost "superfluous" "superfluously" ;
+lin supergiant_N = mkN "supergiant" "supergiants" ;
+lin supergrass_N = mkN "supergrass" "supergrasses" ;
+lin superhighway_N = mkN "superhighway" "superhighways" ;
+lin superhuman_A = mkAMost "superhuman" "superhumanly" ;
+lin superimpose_V = mkV "superimpose" "superimposed" "superimposed" ;
+lin superincumbent_A = mkAMost "superincumbent" "superincumbently" ;
+lin superinfection_N = mkN "superinfection" "superinfections" ;
+lin superintend_V = mkV "superintend" "superintended" "superintended" ;
+lin superintendence_N = mkN "superintendence" "superintendences" ;
+lin superintendent_N = mkN "superintendent" "superintendents" ;
+lin superior_A = mkAMost "superior" "superiorly" ;
+lin superior_N = mkN "superior" "superiors" ;
+lin superiority_N = mkN "superiority" "superiorities" ;
+lin superjacent_A = mkAMost "superjacent" "superjacently" ;
+lin superlative_A = mkAMost "superlative" "superlatively" ;
+lin superlative_N = mkN "superlative" "superlatives" ;
+lin superman_N = mkN "superman" "supermen" ;
+lin supermarket_N = mkN "supermarket" "supermarkets" ;
+lin supermarketer_N = mkN "supermarketer" "supermarketers" ;
+lin supermodel_N = mkN "supermodel" "supermodels" ;
+lin supermom_N = mkN "supermom" "supermoms" ;
+lin supernal_A = mkAMost "supernal" "supernally" ;
+lin supernatant_A = mkAMost "supernatant" "supernatantly" ;
+lin supernatant_N = mkN "supernatant" "supernatants" ;
+lin supernatural_A = mkAMost "supernatural" "supernaturally" ;
+lin supernatural_N = mkN "supernatural" "supernaturals" ;
+lin supernaturalism_N = mkN "supernaturalism" "supernaturalisms" ;
+lin supernaturalist_A = mkAMost "supernaturalist" "supernaturalistly" ;
+lin supernormal_A = mkAMost "supernormal" "supernormally" ;
+lin supernova_N = mkN "supernova" "supernovas" ;
+lin supernumerary_N = mkN "supernumerary" "supernumeraries" ;
+lin superorder_N = mkN "superorder" "superorders" ;
+lin superordinate_A = mkAMost "superordinate" "superordinately" ;
+lin superoxide_N = mkN "superoxide" "superoxides" ;
+lin superphylum_N = mkN "superphylum" "superphylums" ;
+lin superposition_N = mkN "superposition" "superpositions" ;
+lin supersaturated_A = mkAMost "supersaturated" "supersaturatedly" ;
+lin superscript_A = mkAMost "superscript" "superscriptly" ;
+lin superscript_N = mkN "superscript" "superscripts" ;
+lin superscription_N = mkN "superscription" "superscriptions" ;
+lin supersede_V = mkV "supersede" "superseded" "superseded" ;
+lin supersedure_N = mkN "supersedure" "supersedures" ;
+lin supersession_N = mkN "supersession" "supersessions" ;
+lin supersonic_A = mkAMost "supersonic" "supersonicly" ;
+lin superstition_N = mkN "superstition" "superstitions" ;
+lin superstitious_A = mkAMost "superstitious" "superstitiously" ;
+lin superstrate_N = mkN "superstrate" "superstrates" ;
+lin superstring_N = mkN "superstring" "superstrings" ;
+lin superstructure_N = mkN "superstructure" "superstructures" ;
+lin supersymmetry_N = mkN "supersymmetry" "supersymmetries" ;
+lin supertanker_N = mkN "supertanker" "supertankers" ;
+lin supertax_N = mkN "supertax" "supertaxes" ;
+lin supertitle_N = mkN "supertitle" "supertitles" ;
+lin supertonic_N = mkN "supertonic" "supertonics" ;
+lin supertwister_N = mkN "supertwister" "supertwisters" ;
+lin supervene_V = mkV "supervene" "supervened" "supervened" ;
+lin supervention_N = mkN "supervention" "superventions" ;
+lin supervise_V = mkV "supervise" "supervised" "supervised" ;
+lin supervision_N = mkN "supervision" "supervisions" ;
+lin supervisor_N = mkN "supervisor" "supervisors" ;
+lin supervisory_A = mkAMost "supervisory" "supervisorily" ;
+lin supination_N = mkN "supination" "supinations" ;
+lin supinator_N = mkN "supinator" "supinators" ;
+lin supine_A = mkAMost "supine" "supinely" ;
+lin supper_N = mkN "supper" "suppers" ;
+lin supperless_A = mkAMost "supperless" "supperlessly" ;
+lin supping_N = mkN "supping" "suppings" ;
+lin supplant_V = mkV "supplant" "supplanted" "supplanted" ;
+lin supplanter_N = mkN "supplanter" "supplanters" ;
+lin supplanting_N = mkN "supplanting" "supplantings" ;
+lin supple_A = mkA "supple" "suppler" "supplest" "supplely" ;
+lin supplejack_N = mkN "supplejack" "supplejacks" ;
+lin supplement_N = mkN "supplement" "supplements" ;
+lin supplement_V = mkV "supplement" "supplemented" "supplemented" ;
+lin supplementary_A = mkAMost "supplementary" "supplementarily" ;
+lin supplementation_N = mkN "supplementation" "supplementations" ;
+lin suppleness_N = mkN "suppleness" "supplenesses" ;
+lin suppliant_A = mkAMost "suppliant" "suppliantly" ;
+lin suppliant_N = mkN "suppliant" "suppliants" ;
+lin supplicant_N = mkN "supplicant" "supplicants" ;
+lin supplicate_V = mkV "supplicate" "supplicated" "supplicated" ;
+lin supplication_N = mkN "supplication" "supplications" ;
+lin supplier_N = mkN "supplier" "suppliers" ;
+lin supply_N = mkN "supply" "supplies" ;
+lin supply_V = mkV "supply" "supplied" "supplied" ;
+lin support_N = mkN "support" "supports" ;
+lin support_V = mkV "support" "supported" "supported" ;
+lin supportable_A = mkAMost "supportable" "supportably" ;
+lin supporter_N = mkN "supporter" "supporters" ;
+lin supportive_A = mkAMost "supportive" "supportively" ;
+lin suppose_V = mkV "suppose" "supposed" "supposed" ;
+lin supposed_A = mkAMost "supposed" "supposedly" ;
+lin supposition_N = mkN "supposition" "suppositions" ;
+lin suppository_N = mkN "suppository" "suppositories" ;
+lin suppress_V = mkV "suppress" "suppressed" "suppressed" ;
+lin suppressant_N = mkN "suppressant" "suppressants" ;
+lin suppression_N = mkN "suppression" "suppressions" ;
+lin suppressive_A = mkAMost "suppressive" "suppressively" ;
+lin suppressor_N = mkN "suppressor" "suppressors" ;
+lin suppurate_V = mkV "suppurate" "suppurated" "suppurated" ;
+lin suppuration_N = mkN "suppuration" "suppurations" ;
+lin suppurative_A = mkAMost "suppurative" "suppuratively" ;
+lin supra_Adv = mkAdv "supra" ;
+lin suprainfection_N = mkN "suprainfection" "suprainfections" ;
+lin supranational_A = mkAMost "supranational" "supranationally" ;
+lin supraorbital_A = mkAMost "supraorbital" "supraorbitally" ;
+lin suprasegmental_A = mkAMost "suprasegmental" "suprasegmentally" ;
+lin supremacism_N = mkN "supremacism" "supremacisms" ;
+lin supremacist_N = mkN "supremacist" "supremacists" ;
+lin supremacy_N = mkN "supremacy" "supremacies" ;
+lin suprematism_N = mkN "suprematism" "suprematisms" ;
+lin suprematist_N = mkN "suprematist" "suprematists" ;
+lin supreme_A = mkAMost "supreme" "supremely" ;
+lin supremo_N = mkN "supremo" "supremoes" ;
+lin sura_N = mkN "sura" "suras" ;
+lin surbase_N = mkN "surbase" "surbases" ;
+lin surcharge_N = mkN "surcharge" "surcharges" ;
+lin surcharge_V = mkV "surcharge" "surcharged" "surcharged" ;
+lin surcoat_N = mkN "surcoat" "surcoats" ;
+lin surd_N = mkN "surd" "surds" ;
+lin sure_A = mkA "sure" "surer" "surest" "surely" ;
+lin sure_Adv = mkAdv "sure" ;
+lin sure_footed_A = mkAMost "sure-footed" "sure-footedly" ;
+lin surefooted_A = mkAMost "surefooted" "surefootedly" ;
+lin sureness_N = mkN "sureness" "surenesses" ;
+lin surety_N = mkN "surety" "sureties" ;
+lin surf_N = mkN "surf" "surfs" ;
+lin surface_A = mkAMost "surface" "surfacely" ;
+lin surface_N = mkN "surface" "surfaces" ;
+lin surface_V = mkV "surface" "surfaced" "surfaced" ;
+lin surface_to_air_A = mkAMost "surface-to-air" "surface-to-airly" ;
+lin surfacing_N = mkN "surfacing" "surfacings" ;
+lin surfbird_N = mkN "surfbird" "surfbirds" ;
+lin surfboard_N = mkN "surfboard" "surfboards" ;
+lin surfboat_N = mkN "surfboat" "surfboats" ;
+lin surfeit_N = mkN "surfeit" "surfeits" ;
+lin surfeit_V = mkV "surfeit" "surfeited" "surfeited" ;
+lin surfer_N = mkN "surfer" "surfers" ;
+lin surficial_A = mkAMost "surficial" "surficially" ;
+lin surfing_N = mkN "surfing" "surfings" ;
+lin surfperch_N = mkN "surfperch" "surfperches" ;
+lin surfriding_N = mkN "surfriding" "surfridings" ;
+lin surge_N = mkN "surge" "surges" ;
+lin surge_V = mkV "surge" "surged" "surged" ;
+lin surgeon_N = mkN "surgeon" "surgeons" ;
+lin surgeonfish_N = mkN "surgeonfish" "surgeonfishes" ;
+lin surgery_N = mkN "surgery" "surgeries" ;
+lin surgical_A = mkAMost "surgical" "surgically" ;
+lin suricate_N = mkN "suricate" "suricates" ;
+lin surliness_N = mkN "surliness" "surlinesses" ;
+lin surly_A = mkA "surly" "surlier" "surliest" "surlily" ;
+lin surmise_N = mkN "surmise" "surmises" ;
+lin surmise_V = mkV "surmise" "surmised" "surmised" ;
+lin surmount_V = mkV "surmount" "surmounted" "surmounted" ;
+lin surmountable_A = mkAMost "surmountable" "surmountably" ;
+lin surname_N = mkN "surname" "surnames" ;
+lin surpass_V = mkV "surpass" "surpassed" "surpassed" ;
+lin surpassing_A = mkAMost "surpassing" "surpassingly" ;
+lin surplice_N = mkN "surplice" "surplices" ;
+lin surpliced_A = mkAMost "surpliced" "surplicedly" ;
+lin surplus_N = mkN "surplus" "surpluses" ;
+lin surprise_N = mkN "surprise" "surprises" ;
+lin surprise_V = mkV "surprise" "surprised" "surprised" ;
+lin surprisedly_Adv = mkAdv "surprisedly" ;
+lin surpriser_N = mkN "surpriser" "surprisers" ;
+lin surprising_A = mkAMost "surprising" "surprisingly" ;
+lin surrealism_N = mkN "surrealism" "surrealisms" ;
+lin surrealist_N = mkN "surrealist" "surrealists" ;
+lin surrealistic_A = mkAMost "surrealistic" "surrealisticly" ;
+lin surrebutter_N = mkN "surrebutter" "surrebutters" ;
+lin surrejoinder_N = mkN "surrejoinder" "surrejoinders" ;
+lin surrender_N = mkN "surrender" "surrenders" ;
+lin surrender_V = mkV "surrender" "surrendered" "surrendered" ;
+lin surrenderer_N = mkN "surrenderer" "surrenderers" ;
+lin surreptitious_A = mkAMost "surreptitious" "surreptitiously" ;
+lin surrey_N = mkN "surrey" "surreys" ;
+lin surrogate_A = mkAMost "surrogate" "surrogately" ;
+lin surrogate_N = mkN "surrogate" "surrogates" ;
+lin surround_N = mkN "surround" "surrounds" ;
+lin surround_V = mkV "surround" "surrounded" "surrounded" ;
+lin surrounding_A = mkAMost "surrounding" "surroundingly" ;
+lin surtax_N = mkN "surtax" "surtaxes" ;
+lin surtax_V = mkV "surtax" "surtaxed" "surtaxed" ;
+lin surtout_N = mkN "surtout" "surtouts" ;
+lin surveillance_N = mkN "surveillance" "surveillances" ;
+lin survey_N = mkN "survey" "surveys" ;
+lin survey_V = mkV "survey" "surveyed" "surveyed" ;
+lin surveying_N = mkN "surveying" "surveyings" ;
+lin surveyor_N = mkN "surveyor" "surveyors" ;
+lin survival_N = mkN "survival" "survivals" ;
+lin survivalist_N = mkN "survivalist" "survivalists" ;
+lin survive_V = mkV "survive" "survived" "survived" ;
+lin survivor_N = mkN "survivor" "survivors" ;
+lin susceptibility_N = mkN "susceptibility" "susceptibilities" ;
+lin susceptible_A = mkAMost "susceptible" "susceptibly" ;
+lin sushi_N = mkN "sushi" "sushis" ;
+lin suslik_N = mkN "suslik" "susliks" ;
+lin suspect_A = mkAMost "suspect" "suspectly" ;
+lin suspect_N = mkN "suspect" "suspects" ;
+lin suspect_V = mkV "suspect" "suspected" "suspected" ;
+lin suspend_V = mkV "suspend" "suspended" "suspended" ;
+lin suspender_N = mkN "suspender" "suspenders" ;
+lin suspense_N = mkN "suspense" "suspenses" ;
+lin suspension_N = mkN "suspension" "suspensions" ;
+lin suspensive_A = mkAMost "suspensive" "suspensively" ;
+lin suspensory_N = mkN "suspensory" "suspensories" ;
+lin suspicion_N = mkN "suspicion" "suspicions" ;
+lin suspicious_A = mkAMost "suspicious" "suspiciously" ;
+lin suss_V = mkV "suss" "sussed" "sussed" ;
+lin sustain_V = mkV "sustain" "sustained" "sustained" ;
+lin sustainability_N = mkN "sustainability" "sustainabilities" ;
+lin sustainable_A = mkAMost "sustainable" "sustainably" ;
+lin sustenance_N = mkN "sustenance" "sustenances" ;
+lin sustentacular_A = mkAMost "sustentacular" "sustentacularly" ;
+lin susurration_N = mkN "susurration" "susurrations" ;
+lin sutler_N = mkN "sutler" "sutlers" ;
+lin sutra_N = mkN "sutra" "sutras" ;
+lin suttee_N = mkN "suttee" "suttees" ;
+lin suture_N = mkN "suture" "sutures" ;
+lin suturing_N = mkN "suturing" "suturings" ;
+lin suzerain_N = mkN "suzerain" "suzerains" ;
+lin suzerainty_N = mkN "suzerainty" "suzerainties" ;
+lin svelte_A = mkAMost "svelte" "sveltely" ;
+lin svoboda_N = mkN "svoboda" "svobodas" ;
+lin swab_N = mkN "swab" "swabs" ;
+lin swab_V = mkV "swab" "swabbed" "swabbed" ;
+lin swabbing_N = mkN "swabbing" "swabbings" ;
+lin swad_N = mkN "swad" "swads" ;
+lin swaddle_V = mkV "swaddle" "swaddled" "swaddled" ;
+lin swag_N = mkN "swag" "swags" ;
+lin swagger_A = mkAMost "swagger" "swaggerly" ;
+lin swagger_N = mkN "swagger" "swaggers" ;
+lin swagger_V = mkV "swagger" "swaggered" "swaggered" ;
+lin swaggerer_N = mkN "swaggerer" "swaggerers" ;
+lin swagman_N = mkN "swagman" "swagmans" ;
+lin swahili_N = mkN "swahili" "swahilis" ;
+lin swain_N = mkN "swain" "swains" ;
+lin swale_N = mkN "swale" "swales" ;
+lin swallow_N = mkN "swallow" "swallows" ;
+lin swallow_V = mkV "swallow" "swallowed" "swallowed" ;
+lin swallow_tailed_A = mkAMost "swallow-tailed" "swallow-tailedly" ;
+lin swami_N = mkN "swami" "swamis" ;
+lin swamp_N = mkN "swamp" "swamps" ;
+lin swamp_V = mkV "swamp" "swamped" "swamped" ;
+lin swampy_A = mkA "swampy" "swampier" "swampiest" "swampily" ;
+lin swan's_down_N = mkN "swan's-down" "swan's-downs" ;
+lin swan_N = mkN "swan" "swans" ;
+lin swan_V = mkV "swan" "swanned" "swanned" ;
+lin swan_song_N = mkN "swan-song" "swan-songs" ;
+lin swank_A = mkA "swank" "swanker" "swankest" "swankly" ;
+lin swank_N = mkN "swank" "swanks" ;
+lin swank_V = mkV "swank" "swanked" "swanked" ;
+lin swanky_A = mkA "swanky" "swankier" "swankiest" "swankily" ;
+lin swap_N = mkN "swap" "swaps" ;
+lin swap_V = mkV "swap" "swapped" "swapped" ;
+lin sward_N = mkN "sward" "swards" ;
+lin swarm_N = mkN "swarm" "swarms" ;
+lin swarm_V = mkV "swarm" "swarmed" "swarmed" ;
+lin swarthy_A = mkAMost "swarthy" "swarthily" ;
+lin swash_N = mkN "swash" "swashes" ;
+lin swashbuckler_N = mkN "swashbuckler" "swashbucklers" ;
+lin swashbuckling_A = mkAMost "swashbuckling" "swashbucklingly" ;
+lin swashbuckling_N = mkN "swashbuckling" "swashbucklings" ;
+lin swastika_N = mkN "swastika" "swastikas" ;
+lin swat_N = mkN "swat" "swats" ;
+lin swat_V = mkV "swat" "swatted" "swatted" ;
+lin swatch_N = mkN "swatch" "swatches" ;
+lin swath_N = mkN "swath" "swaths" ;
+lin swathe_N = mkN "swathe" "swathes" ;
+lin swathe_V = mkV "swathe" "swathed" "swathed" ;
+lin swathing_N = mkN "swathing" "swathings" ;
+lin swatter_N = mkN "swatter" "swatters" ;
+lin sway_N = mkN "sway" "sways" ;
+lin sway_V = mkV "sway" "swayed" "swayed" ;
+lin swazi_A = mkAMost "swazi" "swazily" ;
+lin swazi_N = mkN "swazi" "swazis" ;
+lin swear_sweared_V = mkV "swear" "sweared" "sweared" ;
+lin swear_swore_V = mkV "swear" "swore" "sworn" ;
+lin swearer_N = mkN "swearer" "swearers" ;
+lin swearing_N = mkN "swearing" "swearings" ;
+lin swearword_N = mkN "swearword" "swearwords" ;
+lin sweat_N = mkN "sweat" "sweats" ;
+lin sweat_V = mkV "sweat" "sweated" "sweated" ;
+lin sweatband_N = mkN "sweatband" "sweatbands" ;
+lin sweatbox_N = mkN "sweatbox" "sweatboxes" ;
+lin sweater_N = mkN "sweater" "sweaters" ;
+lin sweatshirt_N = mkN "sweatshirt" "sweatshirts" ;
+lin sweatshop_N = mkN "sweatshop" "sweatshops" ;
+lin sweaty_A = mkA "sweaty" "sweatier" "sweatiest" "sweatily" ;
+lin sweep_N = mkN "sweep" "sweeps" ;
+lin sweep_V = mkV "sweep" "swept" "swept" ;
+lin sweeper_N = mkN "sweeper" "sweepers" ;
+lin sweeping_A = mkAMost "sweeping" "sweepingly" ;
+lin sweeping_N = mkN "sweeping" "sweepings" ;
+lin sweepstakes_N = mkN "sweepstakes" "sweepstakeses" ;
+lin sweet_A = mkA "sweet" "sweeter" "sweetest" "sweetly" ;
+lin sweet_N = mkN "sweet" "sweets" ;
+lin sweet_scented_A = mkAMost "sweet-scented" "sweet-scentedly" ;
+lin sweetbread_N = mkN "sweetbread" "sweetbreads" ;
+lin sweetbriar_N = mkN "sweetbriar" "sweetbriars" ;
+lin sweetbrier_N = mkN "sweetbrier" "sweetbriers" ;
+lin sweeten_V = mkV "sweeten" "sweetened" "sweetened" ;
+lin sweetening_N = mkN "sweetening" "sweetenings" ;
+lin sweetheart_A = mkAMost "sweetheart" "sweetheartly" ;
+lin sweetheart_N = mkN "sweetheart" "sweethearts" ;
+lin sweetie_N = mkN "sweetie" "sweeties" ;
+lin sweetish_A = mkAMost "sweetish" "sweetishly" ;
+lin sweetleaf_N = mkN "sweetleaf" "sweetleafs" ;
+lin sweetmeat_N = mkN "sweetmeat" "sweetmeats" ;
+lin sweetness_N = mkN "sweetness" "sweetnesses" ;
+lin sweetsop_N = mkN "sweetsop" "sweetsops" ;
+lin swell_A = mkAMost "swell" "swelly" ;
+lin swell_N = mkN "swell" "swells" ;
+lin swell_V = mkV "swell" "swelled" "swelled" ;
+lin swelling_N = mkN "swelling" "swellings" ;
+lin swelter_V = mkV "swelter" "sweltered" "sweltered" ;
+lin sweptback_A = mkAMost "sweptback" "sweptbackly" ;
+lin sweptwing_A = mkAMost "sweptwing" "sweptwingly" ;
+lin swerve_N = mkN "swerve" "swerves" ;
+lin swerve_V = mkV "swerve" "swerved" "swerved" ;
+lin swift_A = mkA "swift" "swifter" "swiftest" "swiftly" ;
+lin swift_N = mkN "swift" "swifts" ;
+lin swiftlet_N = mkN "swiftlet" "swiftlets" ;
+lin swiftness_N = mkN "swiftness" "swiftnesses" ;
+lin swig_N = mkN "swig" "swigs" ;
+lin swig_V = mkV "swig" "swigged" "swigged" ;
+lin swill_N = mkN "swill" "swills" ;
+lin swill_V = mkV "swill" "swilled" "swilled" ;
+lin swim_N = mkN "swim" "swims" ;
+lin swim_V = mkV "swim" "swam" "swum" ;
+lin swimmer_N = mkN "swimmer" "swimmers" ;
+lin swimmeret_N = mkN "swimmeret" "swimmerets" ;
+lin swimming_N = mkN "swimming" "swimmings" ;
+lin swimming_bath_N = mkN "swimming-bath" "swimming-baths" ;
+lin swimming_costume_N = mkN "swimming-costume" "swimming-costumes" ;
+lin swimming_pool_N = mkN "swimming-pool" "swimming-pools" ;
+lin swimmingly_Adv = mkAdv "swimmingly" ;
+lin swimsuit_N = mkN "swimsuit" "swimsuits" ;
+lin swindle_N = mkN "swindle" "swindles" ;
+lin swindle_V = mkV "swindle" "swindled" "swindled" ;
+lin swindler_N = mkN "swindler" "swindlers" ;
+lin swine_N = mkN "swine" "swine" ;
+lin swineherd_N = mkN "swineherd" "swineherds" ;
+lin swing_N = mkN "swing" "swings" ;
+lin swing_swinged_V = mkV "swing" "swinged" "swinged" ;
+lin swing_swung_V = mkV "swing" "swung" "swung" ;
+lin swinge_V = mkV "swinge" "swinged" "swinged" ;
+lin swingeing_A = mkAMost "swingeing" "swingeingly" ;
+lin swinger_N = mkN "swinger" "swingers" ;
+lin swinish_A = mkAMost "swinish" "swinishly" ;
+lin swipe_N = mkN "swipe" "swipes" ;
+lin swipe_V = mkV "swipe" "swiped" "swiped" ;
+lin swirl_N = mkN "swirl" "swirls" ;
+lin swirl_V = mkV "swirl" "swirled" "swirled" ;
+lin swish_A = mkAMost "swish" "swishly" ;
+lin swish_N = mkN "swish" "swishes" ;
+lin swish_V = mkV "swish" "swished" "swished" ;
+lin swishy_A = mkA "swishy" "swishier" "swishiest" "swishily" ;
+lin swiss_N = mkN "swiss" "swiss" ;
+lin switch_N = mkN "switch" "switches" ;
+lin switch_V = mkV "switch" "switched" "switched" ;
+lin switchblade_N = mkN "switchblade" "switchblades" ;
+lin switchboard_N = mkN "switchboard" "switchboards" ;
+lin switcher_N = mkN "switcher" "switchers" ;
+lin switcheroo_N = mkN "switcheroo" "switcheroos" ;
+lin switchman_N = mkN "switchman" "switchmen" ;
+lin swivel_N = mkN "swivel" "swivels" ;
+lin swivel_V = mkV "swivel" "swivelled" "swivelled" ;
+lin swivet_N = mkN "swivet" "swivets" ;
+lin swiz_N = mkN "swiz" "IRREG" ;
+lin swizzle_N = mkN "swizzle" "swizzles" ;
+lin swizzle_stick_N = mkN "swizzle-stick" "swizzle-sticks" ;
+lin swob_N = mkN "swob" "swobs" ;
+lin swob_V = mkV "swob" "swobbed" "swobbed" ;
+lin swollen_headed_A = mkAMost "swollen-headed" "swollen-headedly" ;
+lin swoon_N = mkN "swoon" "swoons" ;
+lin swoon_V = mkV "swoon" "swooned" "swooned" ;
+lin swoop_N = mkN "swoop" "swoops" ;
+lin swoop_V = mkV "swoop" "swooped" "swooped" ;
+lin swoosh_N = mkN "swoosh" "swooshes" ;
+lin swop_N = mkN "swop" "swops" ;
+lin swop_V = mkV "swop" "swopped" "swopped" ;
+lin sword_N = mkN "sword" "swords" ;
+lin sword_cane_N = mkN "sword-cane" "sword-canes" ;
+lin sword_cut_N = mkN "sword-cut" "sword-cuts" ;
+lin sword_dance_N = mkN "sword-dance" "sword-dances" ;
+lin swordfish_N = mkN "swordfish" "swordfish" ;
+lin swordplay_N = mkN "swordplay" "swordplays" ;
+lin swordsman_N = mkN "swordsman" "swordsmen" ;
+lin swordsmanship_N = mkN "swordsmanship" "swordsmanships" ;
+lin swordstick_N = mkN "swordstick" "swordsticks" ;
+lin swordtail_N = mkN "swordtail" "swordtails" ;
+lin swore_V = mkV "swore" "swored" "swored" ;
+lin swot_N = mkN "swot" "swots" ;
+lin swot_V = mkV "swot" "swotted" "swotted" ;
+lin sybarite_N = mkN "sybarite" "sybarites" ;
+lin sybaritic_A = mkAMost "sybaritic" "sybariticly" ;
+lin sycamore_N = mkN "sycamore" "sycamores" ;
+lin syconium_N = mkN "syconium" "syconiums" ;
+lin sycophancy_N = mkN "sycophancy" "sycophancies" ;
+lin sycophant_N = mkN "sycophant" "sycophants" ;
+lin sycophantic_A = mkAMost "sycophantic" "sycophanticly" ;
+lin syllabary_N = mkN "syllabary" "syllabaries" ;
+lin syllabic_A = mkAMost "syllabic" "syllabicly" ;
+lin syllabically_Adv = mkAdv "syllabically" ;
+lin syllabicate_V = mkV "syllabicate" "syllabicated" "syllabicated" ;
+lin syllabication_N = mkN "syllabication" "syllabications" ;
+lin syllabicity_N = mkN "syllabicity" "syllabicities" ;
+lin syllabification_N = mkN "syllabification" "syllabifications" ;
+lin syllabify_V = mkV "syllabify" "syllabified" "syllabified" ;
+lin syllabize_V = mkV "syllabize" "syllabized" "syllabized" ;
+lin syllable_N = mkN "syllable" "syllables" ;
+lin syllabled_A = mkAMost "syllabled" "syllabledly" ;
+lin syllabub_N = mkN "syllabub" "syllabubs" ;
+lin syllabus_N = mkN "syllabus" "syllabuses" ;
+lin syllepsis_N = mkN "syllepsis" "syllepsises" ;
+lin syllogism_N = mkN "syllogism" "syllogisms" ;
+lin syllogist_N = mkN "syllogist" "syllogists" ;
+lin syllogistic_A = mkAMost "syllogistic" "syllogisticly" ;
+lin sylph_N = mkN "sylph" "sylphs" ;
+lin sylph_like_A = mkAMost "sylph-like" "sylph-likely" ;
+lin sylvan_A = mkAMost "sylvan" "sylvanly" ;
+lin sylvan_N = mkN "sylvan" "sylvans" ;
+lin sylvanite_N = mkN "sylvanite" "sylvanites" ;
+lin sylvite_N = mkN "sylvite" "sylvites" ;
+lin symbiosis_N = mkN "symbiosis" "symbiosises" ;
+lin symbiotic_A = mkAMost "symbiotic" "symbioticly" ;
+lin symbiotically_Adv = mkAdv "symbiotically" ;
+lin symbol_N = mkN "symbol" "symbols" ;
+lin symbolatry_N = mkN "symbolatry" "symbolatries" ;
+lin symbolic_A = mkAMost "symbolic" "symbolicly" ;
+lin symbolical_A = mkAMost "symbolical" "symbolically" ;
+lin symbolism_N = mkN "symbolism" "symbolisms" ;
+lin symbolist_N = mkN "symbolist" "symbolists" ;
+lin symbolization_N = mkN "symbolization" "symbolizations" ;
+lin symbolize_V = mkV "symbolize" "symbolized" "symbolized" ;
+lin symbolizing_N = mkN "symbolizing" "symbolizings" ;
+lin symbology_N = mkN "symbology" "symbologies" ;
+lin symmetric_A = mkAMost "symmetric" "symmetricly" ;
+lin symmetrical_A = mkAMost "symmetrical" "symmetrically" ;
+lin symmetry_N = mkN "symmetry" "symmetries" ;
+lin sympathectomy_N = mkN "sympathectomy" "sympathectomies" ;
+lin sympathetic_A = mkAMost "sympathetic" "sympatheticly" ;
+lin sympathetically_Adv = mkAdv "sympathetically" ;
+lin sympathize_V = mkV "sympathize" "sympathized" "sympathized" ;
+lin sympathizer_N = mkN "sympathizer" "sympathizers" ;
+lin sympathy_N = mkN "sympathy" "sympathies" ;
+lin sympatric_A = mkAMost "sympatric" "sympatricly" ;
+lin sympatry_N = mkN "sympatry" "sympatries" ;
+lin symphonic_A = mkAMost "symphonic" "symphonicly" ;
+lin symphonist_N = mkN "symphonist" "symphonists" ;
+lin symphony_N = mkN "symphony" "symphonies" ;
+lin symphysion_N = mkN "symphysion" "symphysions" ;
+lin symphysis_N = mkN "symphysis" "symphysises" ;
+lin symploce_N = mkN "symploce" "symploces" ;
+lin symposiast_N = mkN "symposiast" "symposiasts" ;
+lin symposium_N = mkN "symposium" "symposiums" ;
+lin symptom_N = mkN "symptom" "symptoms" ;
+lin symptomatic_A = mkAMost "symptomatic" "symptomaticly" ;
+lin symptomatically_Adv = mkAdv "symptomatically" ;
+lin symptomless_A = mkAMost "symptomless" "symptomlessly" ;
+lin synagogue_N = mkN "synagogue" "synagogues" ;
+lin synapse_N = mkN "synapse" "synapses" ;
+lin synapsid_N = mkN "synapsid" "synapsids" ;
+lin synapsis_N = mkN "synapsis" "synapsises" ;
+lin synaptic_A = mkAMost "synaptic" "synapticly" ;
+lin syncarpous_A = mkAMost "syncarpous" "syncarpously" ;
+lin syncategorem_N = mkN "syncategorem" "syncategorems" ;
+lin syncategorematic_A = mkAMost "syncategorematic" "syncategorematicly" ;
+lin synchrocyclotron_N = mkN "synchrocyclotron" "synchrocyclotrons" ;
+lin synchroflash_N = mkN "synchroflash" "IRREG" ;
+lin synchromesh_N = mkN "synchromesh" "synchromeshes" ;
+lin synchronic_A = mkAMost "synchronic" "synchronicly" ;
+lin synchronism_N = mkN "synchronism" "synchronisms" ;
+lin synchronization_N = mkN "synchronization" "synchronizations" ;
+lin synchronize_V = mkV "synchronize" "synchronized" "synchronized" ;
+lin synchronous_A = mkAMost "synchronous" "synchronously" ;
+lin synchrony_N = mkN "synchrony" "synchronies" ;
+lin synchroscope_N = mkN "synchroscope" "synchroscopes" ;
+lin synchrotron_N = mkN "synchrotron" "synchrotrons" ;
+lin synclinal_A = mkAMost "synclinal" "synclinally" ;
+lin syncopate_V = mkV "syncopate" "syncopated" "syncopated" ;
+lin syncopation_N = mkN "syncopation" "syncopations" ;
+lin syncopator_N = mkN "syncopator" "syncopators" ;
+lin syncope_N = mkN "syncope" "syncopes" ;
+lin syncretic_A = mkAMost "syncretic" "syncreticly" ;
+lin syncretism_N = mkN "syncretism" "syncretisms" ;
+lin syncytium_N = mkN "syncytium" "syncytiums" ;
+lin syndactyly_N = mkN "syndactyly" "syndactylies" ;
+lin syndciate_V = mkV "syndciate" "syndciated" "syndciated" ;
+lin syndetic_A = mkAMost "syndetic" "syndeticly" ;
+lin syndic_N = mkN "syndic" "syndics" ;
+lin syndicalism_N = mkN "syndicalism" "syndicalisms" ;
+lin syndicalist_N = mkN "syndicalist" "syndicalists" ;
+lin syndicate_N = mkN "syndicate" "syndicates" ;
+lin syndicate_V = mkV "syndicate" "syndicated" "syndicated" ;
+lin syndication_N = mkN "syndication" "syndications" ;
+lin syndicator_N = mkN "syndicator" "syndicators" ;
+lin syndrome_N = mkN "syndrome" "syndromes" ;
+lin synecdoche_N = mkN "synecdoche" "synecdoches" ;
+lin synecdochic_A = mkAMost "synecdochic" "synecdochicly" ;
+lin synechia_N = mkN "synechia" "synechias" ;
+lin syneresis_N = mkN "syneresis" "syneresises" ;
+lin synergetic_A = mkAMost "synergetic" "synergeticly" ;
+lin synergism_N = mkN "synergism" "synergisms" ;
+lin synergist_N = mkN "synergist" "synergists" ;
+lin synergistic_A = mkAMost "synergistic" "synergisticly" ;
+lin synergistically_Adv = mkAdv "synergistically" ;
+lin synergy_N = mkN "synergy" "synergies" ;
+lin synesthesia_N = mkN "synesthesia" "synesthesias" ;
+lin synesthetic_A = mkAMost "synesthetic" "synestheticly" ;
+lin synizesis_N = mkN "synizesis" "synizesises" ;
+lin synod_N = mkN "synod" "synods" ;
+lin synoicous_A = mkAMost "synoicous" "synoicously" ;
+lin synonym_N = mkN "synonym" "synonyms" ;
+lin synonymist_N = mkN "synonymist" "synonymists" ;
+lin synonymous_A = mkAMost "synonymous" "synonymously" ;
+lin synonymy_N = mkN "synonymy" "synonymies" ;
+lin synopsis_N = mkN "synopsis" "synopses" ;
+lin synoptic_A = mkAMost "synoptic" "synopticly" ;
+lin synoptically_Adv = mkAdv "synoptically" ;
+lin synovia_N = mkN "synovia" "synovias" ;
+lin synovial_A = mkAMost "synovial" "synovially" ;
+lin synovitis_N = mkN "synovitis" "synovitises" ;
+lin synsemantic_A = mkAMost "synsemantic" "synsemanticly" ;
+lin synset_N = mkN "synset" "synsets" ;
+lin syntactic_A = mkAMost "syntactic" "syntacticly" ;
+lin syntactically_Adv = mkAdv "syntactically" ;
+lin syntagma_N = mkN "syntagma" "syntagmas" ;
+lin syntagmatic_A = mkAMost "syntagmatic" "syntagmaticly" ;
+lin syntax_N = mkN "syntax" "syntaxes" ;
+lin synthesis_N = mkN "synthesis" "syntheses" ;
+lin synthesist_N = mkN "synthesist" "synthesists" ;
+lin synthesize_V = mkV "synthesize" "synthesized" "synthesized" ;
+lin synthesizer_N = mkN "synthesizer" "synthesizers" ;
+lin synthetic_A = mkAMost "synthetic" "syntheticly" ;
+lin synthetic_N = mkN "synthetic" "synthetics" ;
+lin synthetically_Adv = mkAdv "synthetically" ;
+lin synthetism_N = mkN "synthetism" "synthetisms" ;
+lin syphilis_N = mkN "syphilis" "syphilises" ;
+lin syphilitic_A = mkAMost "syphilitic" "syphiliticly" ;
+lin syphilitic_N = mkN "syphilitic" "syphilitics" ;
+lin syphon_N = mkN "syphon" "syphons" ;
+lin syphon_syphoned_V = mkV "syphon" "syphoned" "syphoned" ;
+lin syphon_syphonned_V = mkV "syphon" "syphonned" "syphonned" ;
+lin syringa_N = mkN "syringa" "syringas" ;
+lin syringe_N = mkN "syringe" "syringes" ;
+lin syringe_V = mkV "syringe" "syringed" "syringed" ;
+lin syrinx_N = mkN "syrinx" "syrinxes" ;
+lin syrup_N = mkN "syrup" "syrups" ;
+lin syrupy_A = mkAMost "syrupy" "syrupily" ;
+lin system_N = mkN "system" "systems" ;
+lin systematic_A = mkAMost "systematic" "systematicly" ;
+lin systematically_Adv = mkAdv "systematically" ;
+lin systematics_N = mkN "systematics" "systematicses" ;
+lin systematism_N = mkN "systematism" "systematisms" ;
+lin systematization_N = mkN "systematization" "systematizations" ;
+lin systematize_V = mkV "systematize" "systematized" "systematized" ;
+lin systemic_A = mkAMost "systemic" "systemicly" ;
+lin systole_N = mkN "systole" "systoles" ;
+lin systolic_A = mkAMost "systolic" "systolicly" ;
+lin syzygy_N = mkN "syzygy" "syzygies" ;
+lin séance_N = mkN "séance" "séances" ;
+lin t_junction_N = mkN "t-junction" "t-junctions" ;
+lin t_shirt_N = mkN "t-shirt" "t-shirts" ;
+lin t_square_N = mkN "t-square" "t-squares" ;
+lin tab_N = mkN "tab" "tabs" ;
+lin tabard_N = mkN "tabard" "tabards" ;
+lin tabasco_N = mkN "tabasco" "tabascoes" ;
+lin tabbouleh_N = mkN "tabbouleh" "tabboulehs" ;
+lin tabby_A = mkAMost "tabby" "tabbily" ;
+lin tabby_N = mkN "tabby" "tabbies" ;
+lin tabby_cat_N = mkN "tabby-cat" "tabby-cats" ;
+lin tabernacle_N = mkN "tabernacle" "tabernacles" ;
+lin tabes_N = mkN "tabes" "tabeses" ;
+lin tabi_N = mkN "tabi" "tabis" ;
+lin tablature_N = mkN "tablature" "tablatures" ;
+lin table_N = mkN "table" "tables" ;
+lin table_V = mkV "table" "tabled" "tabled" ;
+lin table_d'hôte_A = mkAMost "table d'hôte" "table d'hôtely" ;
+lin table_d'hôte_Adv = mkAdv "table d'hôte" ;
+lin table_knife_N = mkN "table-knife" "table-knives" ;
+lin table_lifting_N = mkN "table-lifting" "table-liftings" ;
+lin table_linen_N = mkN "table-linen" "table-linens" ;
+lin table_rapping_N = mkN "table-rapping" "table-rappings" ;
+lin table_talk_N = mkN "table-talk" "table-talks" ;
+lin table_turning_N = mkN "table-turning" "table-turnings" ;
+lin tableau_N = mkN "tableau" "tableaux" ;
+lin tableau_vivant_N = mkN "tableau vivant" "tableaux vivants" ;
+lin tablecloth_N = mkN "tablecloth" "tablecloths" ;
+lin tablefork_N = mkN "tablefork" "tableforks" ;
+lin tableland_N = mkN "tableland" "tablelands" ;
+lin tablemat_N = mkN "tablemat" "tablemats" ;
+lin tablemate_N = mkN "tablemate" "tablemates" ;
+lin tablespoon_N = mkN "tablespoon" "tablespoons" ;
+lin tablespoonful_N = mkN "tablespoonful" "tablespoonfuls" ;
+lin tablet_N = mkN "tablet" "tablets" ;
+lin tabletop_N = mkN "tabletop" "tabletops" ;
+lin tableware_N = mkN "tableware" "tablewares" ;
+lin tabloid_N = mkN "tabloid" "tabloids" ;
+lin taboo_A = mkAMost "taboo" "tabooly" ;
+lin taboo_N = mkN "taboo" "taboos" ;
+lin taboo_V = mkV "taboo" "tabooed" "tabooed" ;
+lin tabor_N = mkN "tabor" "tabors" ;
+lin taboret_N = mkN "taboret" "taborets" ;
+lin tabular_A = mkAMost "tabular" "tabularly" ;
+lin tabulate_V = mkV "tabulate" "tabulated" "tabulated" ;
+lin tabulation_N = mkN "tabulation" "tabulations" ;
+lin tabulator_N = mkN "tabulator" "tabulators" ;
+lin tabun_N = mkN "tabun" "tabuns" ;
+lin tachistoscope_N = mkN "tachistoscope" "tachistoscopes" ;
+lin tachogram_N = mkN "tachogram" "tachograms" ;
+lin tachograph_N = mkN "tachograph" "tachographs" ;
+lin tachometer_N = mkN "tachometer" "tachometers" ;
+lin tachycardia_N = mkN "tachycardia" "tachycardias" ;
+lin tachylite_N = mkN "tachylite" "tachylites" ;
+lin tachymeter_N = mkN "tachymeter" "tachymeters" ;
+lin tacit_A = mkAMost "tacit" "tacitly" ;
+lin taciturn_A = mkAMost "taciturn" "taciturnly" ;
+lin taciturnity_N = mkN "taciturnity" "taciturnities" ;
+lin tack_N = mkN "tack" "tacks" ;
+lin tack_V = mkV "tack" "tacked" "tacked" ;
+lin tacker_N = mkN "tacker" "tackers" ;
+lin tackle_N = mkN "tackle" "tackles" ;
+lin tackle_V = mkV "tackle" "tackled" "tackled" ;
+lin tackler_N = mkN "tackler" "tacklers" ;
+lin tacky_A = mkA "tacky" "tackier" "tackiest" "tackily" ;
+lin taco_N = mkN "taco" "tacoes" ;
+lin taconite_N = mkN "taconite" "taconites" ;
+lin tact_N = mkN "tact" "tacts" ;
+lin tactful_A = mkAMost "tactful" "tactfully" ;
+lin tactic_N = mkN "tactic" "tactics" ;
+lin tactical_A = mkAMost "tactical" "tactically" ;
+lin tactician_N = mkN "tactician" "tacticians" ;
+lin tactics_N = mkN "tactics" "tacticses" ;
+lin tactile_A = mkAMost "tactile" "tactilely" ;
+lin tactless_A = mkAMost "tactless" "tactlessly" ;
+lin tactlessness_N = mkN "tactlessness" "tactlessnesses" ;
+lin tactual_A = mkAMost "tactual" "tactually" ;
+lin tad_N = mkN "tad" "tads" ;
+lin tadalafil_N = mkN "tadalafil" "tadalafils" ;
+lin tadpole_N = mkN "tadpole" "tadpoles" ;
+lin tael_N = mkN "tael" "taels" ;
+lin taenia_N = mkN "taenia" "taenias" ;
+lin taffeta_N = mkN "taffeta" "taffetas" ;
+lin taffrail_N = mkN "taffrail" "taffrails" ;
+lin taffy_N = mkN "taffy" "taffies" ;
+lin tag_N = mkN "tag" "tags" ;
+lin tag_V = mkV "tag" "tagged" "tagged" ;
+lin tagalong_N = mkN "tagalong" "tagalongs" ;
+lin tagasaste_N = mkN "tagasaste" "tagasastes" ;
+lin tagger_N = mkN "tagger" "taggers" ;
+lin tagliatelle_N = mkN "tagliatelle" "tagliatelles" ;
+lin taguan_N = mkN "taguan" "taguans" ;
+lin tahini_N = mkN "tahini" "tahinis" ;
+lin tahitian_A = mkAMost "tahitian" "tahitianly" ;
+lin tahitian_N = mkN "tahitian" "tahitians" ;
+lin tail_N = mkN "tail" "tails" ;
+lin tail_V = mkV "tail" "tailed" "tailed" ;
+lin tail_coat_N = mkN "tail-coat" "tail-coats" ;
+lin tail_end_N = mkN "tail-end" "tail-ends" ;
+lin tail_light_N = mkN "tail-light" "tail-lights" ;
+lin tailback_N = mkN "tailback" "tailbacks" ;
+lin tailboard_N = mkN "tailboard" "tailboards" ;
+lin tailgate_N = mkN "tailgate" "tailgates" ;
+lin tailgater_N = mkN "tailgater" "tailgaters" ;
+lin tailless_A = mkAMost "tailless" "taillessly" ;
+lin taillight_N = mkN "taillight" "taillights" ;
+lin tailor_N = mkN "tailor" "tailors" ;
+lin tailor_V = mkV "tailor" "tailored" "tailored" ;
+lin tailor_made_A = mkAMost "tailor-made" "tailor-madely" ;
+lin tailorbird_N = mkN "tailorbird" "tailorbirds" ;
+lin tailoring_N = mkN "tailoring" "tailorings" ;
+lin tailpiece_N = mkN "tailpiece" "tailpieces" ;
+lin tailpipe_N = mkN "tailpipe" "tailpipes" ;
+lin tailplane_N = mkN "tailplane" "tailplanes" ;
+lin tailrace_N = mkN "tailrace" "tailraces" ;
+lin tailspin_N = mkN "tailspin" "tailspins" ;
+lin tailstock_N = mkN "tailstock" "tailstocks" ;
+lin tailwind_N = mkN "tailwind" "tailwinds" ;
+lin taint_N = mkN "taint" "taints" ;
+lin taint_V = mkV "taint" "tainted" "tainted" ;
+lin taintless_A = mkAMost "taintless" "taintlessly" ;
+lin taipan_N = mkN "taipan" "taipans" ;
+lin taka_N = mkN "taka" "takas" ;
+lin take_N = mkN "take" "takes" ;
+lin take_home_A = mkAMost "take-home" "take-homely" ;
+lin take_off_N = mkN "take-off" "take-offs" ;
+lin take_taked_V = mkV "take" "taked" "taked" ;
+lin take_took_V = mkV "take" "took" "taken" ;
+lin take_up_N = mkN "take-up" "take-ups" ;
+lin takeaway_A = mkAMost "takeaway" "takeawaily" ;
+lin takeaway_N = mkN "takeaway" "takeaways" ;
+lin takedown_N = mkN "takedown" "takedowns" ;
+lin takeoff_N = mkN "takeoff" "takeoffs" ;
+lin takeout_A = mkAMost "takeout" "takeoutly" ;
+lin takeout_N = mkN "takeout" "takeouts" ;
+lin takeover_N = mkN "takeover" "takeovers" ;
+lin taker_N = mkN "taker" "takers" ;
+lin takin_N = mkN "takin" "takins" ;
+lin tala_N = mkN "tala" "talas" ;
+lin talapoin_N = mkN "talapoin" "talapoins" ;
+lin talaria_N = mkN "talaria" "talarias" ;
+lin talc_N = mkN "talc" "talcs" ;
+lin talcum_N = mkN "talcum" "talcums" ;
+lin tale_N = mkN "tale" "tales" ;
+lin tale_bearer_N = mkN "tale-bearer" "tale-bearers" ;
+lin tale_teller_N = mkN "tale-teller" "tale-tellers" ;
+lin talent_N = mkN "talent" "talents" ;
+lin talented_A = mkAMost "talented" "talentedly" ;
+lin talentlessness_N = mkN "talentlessness" "talentlessnesses" ;
+lin talipot_N = mkN "talipot" "talipots" ;
+lin talisman_N = mkN "talisman" "talismans" ;
+lin talismanic_A = mkAMost "talismanic" "talismanicly" ;
+lin talk_N = mkN "talk" "talks" ;
+lin talk_V = mkV "talk" "talked" "talked" ;
+lin talkative_A = mkAMost "talkative" "talkatively" ;
+lin talker_N = mkN "talker" "talkers" ;
+lin talkie_N = mkN "talkie" "talkies" ;
+lin talking_point_N = mkN "talking-point" "talking-points" ;
+lin talking_to_N = mkN "talking-to" "talking-tos" ;
+lin tall_A = mkA "tall" "taller" "tallest" "tally" ;
+lin tall_N = mkN "tall" "talls" ;
+lin tallboy_N = mkN "tallboy" "tallboys" ;
+lin tallgrass_N = mkN "tallgrass" "tallgrasses" ;
+lin tallish_A = mkAMost "tallish" "tallishly" ;
+lin tallness_N = mkN "tallness" "tallnesses" ;
+lin tallow_N = mkN "tallow" "tallows" ;
+lin tally_N = mkN "tally" "tallies" ;
+lin tally_V = mkV "tally" "tallied" "tallied" ;
+lin tally_clerk_N = mkN "tally-clerk" "tally-clerks" ;
+lin tallyman_N = mkN "tallyman" "tallymen" ;
+lin talmud_N = mkN "talmud" "talmuds" ;
+lin talon_N = mkN "talon" "talons" ;
+lin talus_N = mkN "talus" "taluses" ;
+lin tam_N = mkN "tam" "tams" ;
+lin tam_o'_shanter_N = mkN "tam-o'-shanter" "tam-o'-shanters" ;
+lin tamable_A = mkAMost "tamable" "tamably" ;
+lin tamale_N = mkN "tamale" "tamales" ;
+lin tamandua_N = mkN "tamandua" "tamanduas" ;
+lin tamarau_N = mkN "tamarau" "tamaraus" ;
+lin tamarin_N = mkN "tamarin" "tamarins" ;
+lin tamarind_N = mkN "tamarind" "tamarinds" ;
+lin tamarisk_N = mkN "tamarisk" "tamarisks" ;
+lin tambala_N = mkN "tambala" "tambalas" ;
+lin tambour_N = mkN "tambour" "tambours" ;
+lin tambourine_N = mkN "tambourine" "tambourines" ;
+lin tame_A = mkA "tame" "tamer" "tamest" "tamely" ;
+lin tame_V = mkV "tame" "tamed" "tamed" ;
+lin tameness_N = mkN "tameness" "tamenesses" ;
+lin tamer_N = mkN "tamer" "tamers" ;
+lin tamil_A = mkAMost "tamil" "tamilly" ;
+lin tamil_N = mkN "tamil" "tamils" ;
+lin tammany_N = mkN "tammany" "IRREG" ;
+lin tammy_N = mkN "tammy" "tammies" ;
+lin tamp_N = mkN "tamp" "tamps" ;
+lin tamp_V = mkV "tamp" "tamped" "tamped" ;
+lin tamper_V = mkV "tamper" "tampered" "tampered" ;
+lin tampion_N = mkN "tampion" "tampions" ;
+lin tampon_N = mkN "tampon" "tampons" ;
+lin tamponade_N = mkN "tamponade" "tamponades" ;
+lin tan_A = mkAMost "tan" "tanly" ;
+lin tan_N = mkN "tan" "tans" ;
+lin tan_V = mkV "tan" "tanned" "tanned" ;
+lin tanager_N = mkN "tanager" "tanagers" ;
+lin tanbark_N = mkN "tanbark" "tanbarks" ;
+lin tandem_Adv = mkAdv "tandem" ;
+lin tandem_N = mkN "tandem" "tandems" ;
+lin tandoor_N = mkN "tandoor" "tandoors" ;
+lin tanekaha_N = mkN "tanekaha" "tanekahas" ;
+lin tang_N = mkN "tang" "tangs" ;
+lin tanga_N = mkN "tanga" "tangas" ;
+lin tangelo_N = mkN "tangelo" "tangeloes" ;
+lin tangency_N = mkN "tangency" "tangencies" ;
+lin tangent_N = mkN "tangent" "tangents" ;
+lin tangential_A = mkAMost "tangential" "tangentially" ;
+lin tangerine_A = mkAMost "tangerine" "tangerinely" ;
+lin tangerine_N = mkN "tangerine" "tangerines" ;
+lin tangibility_N = mkN "tangibility" "tangibilities" ;
+lin tangible_A = mkAMost "tangible" "tangibly" ;
+lin tangle_N = mkN "tangle" "tangles" ;
+lin tangle_V = mkV "tangle" "tangled" "tangled" ;
+lin tanglebush_N = mkN "tanglebush" "tanglebushes" ;
+lin tango_N = mkN "tango" "tangos" ;
+lin tango_V = mkV "tango" "tangoed" "tangoed" ;
+lin tangram_N = mkN "tangram" "tangrams" ;
+lin tangy_A = mkA "tangy" "tangier" "tangiest" "tangily" ;
+lin tank_N = mkN "tank" "tanks" ;
+lin tank_V = mkV "tank" "tanked" "tanked" ;
+lin tank_car_N = mkN "tank-car" "tank-cars" ;
+lin tanka_N = mkN "tanka" "tankas" ;
+lin tankage_N = mkN "tankage" "tankages" ;
+lin tankard_N = mkN "tankard" "tankards" ;
+lin tanker_N = mkN "tanker" "tankers" ;
+lin tanner_N = mkN "tanner" "tanners" ;
+lin tannery_N = mkN "tannery" "tanneries" ;
+lin tannic_A = mkAMost "tannic" "tannicly" ;
+lin tannin_N = mkN "tannin" "tannins" ;
+lin tanning_N = mkN "tanning" "tannings" ;
+lin tannish_A = mkAMost "tannish" "tannishly" ;
+lin tannoy_N = mkN "tannoy" "tannoys" ;
+lin tansy_N = mkN "tansy" "tansies" ;
+lin tantalite_N = mkN "tantalite" "tantalites" ;
+lin tantalize_V = mkV "tantalize" "tantalized" "tantalized" ;
+lin tantalizer_N = mkN "tantalizer" "tantalizers" ;
+lin tantalizing_A = mkAMost "tantalizing" "tantalizingly" ;
+lin tantalum_N = mkN "tantalum" "tantalums" ;
+lin tantamount_A = mkAMost "tantamount" "tantamountly" ;
+lin tantra_N = mkN "tantra" "tantras" ;
+lin tantrum_N = mkN "tantrum" "tantrums" ;
+lin tanzanian_A = mkAMost "tanzanian" "tanzanianly" ;
+lin tanzanian_N = mkN "tanzanian" "tanzanians" ;
+lin taoiseach_N = mkN "taoiseach" "taoiseaches" ;
+lin tap_N = mkN "tap" "taps" ;
+lin tap_V = mkV "tap" "tapped" "tapped" ;
+lin tap_dancing_N = mkN "tap-dancing" "tap-dancings" ;
+lin tapa_N = mkN "tapa" "tapas" ;
+lin tape_N = mkN "tape" "tapes" ;
+lin tape_V = mkV "tape" "taped" "taped" ;
+lin tape_measure_N = mkN "tape-measure" "tape-measures" ;
+lin tape_recorder_N = mkN "tape-recorder" "tape-recorders" ;
+lin tapenade_N = mkN "tapenade" "tapenades" ;
+lin taper_N = mkN "taper" "tapers" ;
+lin taper_V = mkV "taper" "tapered" "tapered" ;
+lin tapering_N = mkN "tapering" "taperings" ;
+lin tapestried_A = mkAMost "tapestried" "tapestriedly" ;
+lin tapestry_N = mkN "tapestry" "tapestries" ;
+lin tapeworm_N = mkN "tapeworm" "tapeworms" ;
+lin taphephobia_N = mkN "taphephobia" "taphephobias" ;
+lin tapioca_N = mkN "tapioca" "tapiocas" ;
+lin tapir_N = mkN "tapir" "tapirs" ;
+lin tapotement_N = mkN "tapotement" "tapotements" ;
+lin tapper_N = mkN "tapper" "tappers" ;
+lin tappet_N = mkN "tappet" "tappets" ;
+lin tapping_N = mkN "tapping" "tappings" ;
+lin taproom_N = mkN "taproom" "taprooms" ;
+lin taproot_N = mkN "taproot" "taproots" ;
+lin taps_N = mkN "taps" "tapses" ;
+lin tapster_N = mkN "tapster" "tapsters" ;
+lin tar_N = mkN "tar" "tars" ;
+lin tar_V = mkV "tar" "tarred" "tarred" ;
+lin tar_macadam_N = mkN "tar-macadam" "tar-macadams" ;
+lin taradiddle_N = mkN "taradiddle" "taradiddles" ;
+lin tarantella_N = mkN "tarantella" "tarantellas" ;
+lin tarantelle_N = mkN "tarantelle" "tarantelles" ;
+lin tarantism_N = mkN "tarantism" "tarantisms" ;
+lin tarantula_N = mkN "tarantula" "tarantulas" ;
+lin tarboosh_N = mkN "tarboosh" "tarbooshes" ;
+lin tardigrade_N = mkN "tardigrade" "tardigrades" ;
+lin tardiness_N = mkN "tardiness" "tardinesses" ;
+lin tardive_A = mkAMost "tardive" "tardively" ;
+lin tardy_A = mkA "tardy" "tardier" "tardiest" "tardily" ;
+lin tare_N = mkN "tare" "tares" ;
+lin target_N = mkN "target" "targets" ;
+lin target_targeted_V = mkV "target" "targeted" "targeted" ;
+lin target_targetted_V = mkV "target" "targetted" "targetted" ;
+lin tariff_N = mkN "tariff" "tariffs" ;
+lin tarmac_N = mkN "tarmac" "tarmacs" ;
+lin tarmac_V = mkV "tarmac" "IRREG" "IRREG" ;
+lin tarmacadam_N = mkN "tarmacadam" "tarmacadams" ;
+lin tarn_N = mkN "tarn" "tarns" ;
+lin tarnish_N = mkN "tarnish" "tarnishes" ;
+lin tarnish_V = mkV "tarnish" "tarnished" "tarnished" ;
+lin taro_N = mkN "taro" "taros" ;
+lin tarpan_N = mkN "tarpan" "tarpans" ;
+lin tarpaulin_N = mkN "tarpaulin" "tarpaulins" ;
+lin tarpon_N = mkN "tarpon" "tarpons" ;
+lin tarradiddle_N = mkN "tarradiddle" "tarradiddles" ;
+lin tarragon_N = mkN "tarragon" "tarragons" ;
+lin tarriance_N = mkN "tarriance" "tarriances" ;
+lin tarry_A = mkAMost "tarry" "tarrily" ;
+lin tarry_V = mkV "tarry" "tarried" "tarried" ;
+lin tarsal_A = mkAMost "tarsal" "tarsally" ;
+lin tarsal_N = mkN "tarsal" "tarsals" ;
+lin tarsier_N = mkN "tarsier" "tarsiers" ;
+lin tarsitis_N = mkN "tarsitis" "tarsitises" ;
+lin tarsus_N = mkN "tarsus" "tarsi" ;
+lin tart_A = mkAMost "tart" "tartly" ;
+lin tart_N = mkN "tart" "tarts" ;
+lin tart_V = mkV "tart" "tarted" "tarted" ;
+lin tartan_N = mkN "tartan" "tartans" ;
+lin tartar_N = mkN "tartar" "tartars" ;
+lin tartaric_A = mkAMost "tartaric" "tartaricly" ;
+lin tartlet_N = mkN "tartlet" "tartlets" ;
+lin tartness_N = mkN "tartness" "tartnesses" ;
+lin tartrate_N = mkN "tartrate" "tartrates" ;
+lin tarweed_N = mkN "tarweed" "tarweeds" ;
+lin tarwood_N = mkN "tarwood" "tarwoods" ;
+lin task_N = mkN "task" "tasks" ;
+lin task_V = mkV "task" "tasked" "tasked" ;
+lin task_force_N = mkN "task-force" "task-forces" ;
+lin taskmaster_N = mkN "taskmaster" "taskmasters" ;
+lin taskmistress_N = mkN "taskmistress" "taskmistresses" ;
+lin tassel_N = mkN "tassel" "tassels" ;
+lin tasseled_A = mkAMost "tasseled" "tasseledly" ;
+lin tasselled_A = mkAMost "tasselled" "tasselledly" ;
+lin tasset_N = mkN "tasset" "tassets" ;
+lin taste_N = mkN "taste" "tastes" ;
+lin taste_V = mkV "taste" "tasted" "tasted" ;
+lin tastebud_N = mkN "tastebud" "tastebuds" ;
+lin tasteful_A = mkAMost "tasteful" "tastefully" ;
+lin tastefulness_N = mkN "tastefulness" "tastefulnesses" ;
+lin tasteless_A = mkAMost "tasteless" "tastelessly" ;
+lin tastelessness_N = mkN "tastelessness" "tastelessnesses" ;
+lin taster_N = mkN "taster" "tasters" ;
+lin tasting_N = mkN "tasting" "tastings" ;
+lin tasty_A = mkA "tasty" "tastier" "tastiest" "tastily" ;
+lin tat_N = mkN "tat" "tats" ;
+lin tat_V = mkV "tat" "tatted" "tatted" ;
+lin tatouay_N = mkN "tatouay" "tatouays" ;
+lin tatter_N = mkN "tatter" "tatters" ;
+lin tatterdemalion_N = mkN "tatterdemalion" "tatterdemalions" ;
+lin tattered_A = mkAMost "tattered" "tatteredly" ;
+lin tatting_N = mkN "tatting" "tattings" ;
+lin tattle_N = mkN "tattle" "tattles" ;
+lin tattle_V = mkV "tattle" "tattled" "tattled" ;
+lin tattler_N = mkN "tattler" "tattlers" ;
+lin tattletale_N = mkN "tattletale" "tattletales" ;
+lin tattoo_N = mkN "tattoo" "tattoos" ;
+lin tattoo_V = mkV "tattoo" "tattooed" "tattooed" ;
+lin tatty_A = mkA "tatty" "tattier" "tattiest" "tattily" ;
+lin tau_N = mkN "tau" "taus" ;
+lin taunt_N = mkN "taunt" "taunts" ;
+lin taunt_V = mkV "taunt" "taunted" "taunted" ;
+lin tauntingly_Adv = mkAdv "tauntingly" ;
+lin tauon_N = mkN "tauon" "tauons" ;
+lin taupe_N = mkN "taupe" "taupes" ;
+lin taurine_A = mkAMost "taurine" "taurinely" ;
+lin taurine_N = mkN "taurine" "taurines" ;
+lin taut_A = mkA "taut" "tauter" "tautest" "tautly" ;
+lin tautness_N = mkN "tautness" "tautnesses" ;
+lin tautog_N = mkN "tautog" "tautogs" ;
+lin tautological_A = mkAMost "tautological" "tautologically" ;
+lin tautology_N = mkN "tautology" "tautologies" ;
+lin tavern_N = mkN "tavern" "taverns" ;
+lin taw_N = mkN "taw" "taws" ;
+lin tawdriness_N = mkN "tawdriness" "tawdrinesses" ;
+lin tawdry_A = mkA "tawdry" "tawdrier" "tawdriest" "tawdrily" ;
+lin tawniness_N = mkN "tawniness" "tawninesses" ;
+lin tawny_A = mkAMost "tawny" "tawnily" ;
+lin tawse_N = mkN "tawse" "tawses" ;
+lin tax_N = mkN "tax" "taxes" ;
+lin tax_V = mkV "tax" "taxed" "taxed" ;
+lin tax_collector_N = mkN "tax-collector" "tax-collectors" ;
+lin tax_free_A = mkAMost "tax-free" "tax-freely" ;
+lin taxability_N = mkN "taxability" "taxabilities" ;
+lin taxable_A = mkAMost "taxable" "taxably" ;
+lin taxation_N = mkN "taxation" "taxations" ;
+lin taxer_N = mkN "taxer" "taxers" ;
+lin taxi_N = mkN "taxi" "taxis" ;
+lin taxi_V = mkV "taxi" "taxied" "taxied" ;
+lin taxicab_N = mkN "taxicab" "taxicabs" ;
+lin taxidermist_N = mkN "taxidermist" "taxidermists" ;
+lin taxidermy_N = mkN "taxidermy" "taxidermies" ;
+lin taxidriver_N = mkN "taxidriver" "taxidrivers" ;
+lin taximeter_N = mkN "taximeter" "taximeters" ;
+lin taxis_N = mkN "taxis" "taxises" ;
+lin taxiway_N = mkN "taxiway" "taxiways" ;
+lin taxonomic_A = mkAMost "taxonomic" "taxonomicly" ;
+lin taxonomically_Adv = mkAdv "taxonomically" ;
+lin taxonomist_N = mkN "taxonomist" "taxonomists" ;
+lin taxonomy_N = mkN "taxonomy" "taxonomies" ;
+lin taxpayer_N = mkN "taxpayer" "taxpayers" ;
+lin taxpaying_A = mkAMost "taxpaying" "taxpayingly" ;
+lin tayra_N = mkN "tayra" "tayras" ;
+lin tb_N = mkN "tb" "tbs" ;
+lin te_deum_N = mkN "te deum" "te deums" ;
+lin tea_N = mkN "tea" "teas" ;
+lin tea_bag_N = mkN "tea-bag" "tea-bags" ;
+lin tea_break_N = mkN "tea-break" "tea-breaks" ;
+lin tea_caddy_N = mkN "tea-caddy" "tea-caddies" ;
+lin tea_chest_N = mkN "tea-chest" "tea-chests" ;
+lin tea_cloth_N = mkN "tea-cloth" "tea-cloths" ;
+lin tea_cosy_N = mkN "tea-cosy" "tea-cosies" ;
+lin tea_garden_N = mkN "tea-garden" "tea-gardens" ;
+lin tea_kettle_N = mkN "tea-kettle" "tea-kettles" ;
+lin tea_leaf_N = mkN "tea-leaf" "tea-leaves" ;
+lin tea_party_N = mkN "tea-party" "tea-parties" ;
+lin tea_service_N = mkN "tea-service" "tea-services" ;
+lin tea_set_N = mkN "tea-set" "tea-sets" ;
+lin tea_strainer_N = mkN "tea-strainer" "tea-strainers" ;
+lin tea_table_N = mkN "tea-table" "tea-tables" ;
+lin tea_time_N = mkN "tea-time" "tea-times" ;
+lin tea_towel_N = mkN "tea-towel" "tea-towels" ;
+lin tea_tray_N = mkN "tea-tray" "tea-trays" ;
+lin tea_trolley_N = mkN "tea-trolley" "tea-trolleys" ;
+lin tea_urn_N = mkN "tea-urn" "tea-urns" ;
+lin tea_wagon_N = mkN "tea-wagon" "tea-wagons" ;
+lin teaberry_N = mkN "teaberry" "teaberries" ;
+lin teacake_N = mkN "teacake" "teacakes" ;
+lin teach_V = mkV "teach" "taught" "taught" ;
+lin teach_in_N = mkN "teach-in" "teach-ins" ;
+lin teachable_A = mkAMost "teachable" "teachably" ;
+lin teacher_N = mkN "teacher" "teachers" ;
+lin teachership_N = mkN "teachership" "teacherships" ;
+lin teaching_N = mkN "teaching" "teachings" ;
+lin teacup_N = mkN "teacup" "teacups" ;
+lin teahouse_N = mkN "teahouse" "teahouses" ;
+lin teak_N = mkN "teak" "teaks" ;
+lin teakettle_N = mkN "teakettle" "teakettles" ;
+lin teal_N = mkN "teal" "teal" ;
+lin team_N = mkN "team" "teams" ;
+lin team_V = mkV "team" "teamed" "teamed" ;
+lin teammate_N = mkN "teammate" "teammates" ;
+lin teamster_N = mkN "teamster" "teamsters" ;
+lin teamwork_N = mkN "teamwork" "teamworks" ;
+lin teapot_N = mkN "teapot" "teapots" ;
+lin tear_N = mkN "tear" "tears" ;
+lin tear_V = mkV "tear" "tore" "torn" ;
+lin tear_drop_N = mkN "tear-drop" "tear-drops" ;
+lin tear_gas_N = mkN "tear-gas" "tear-gases" ;
+lin tearaway_A = mkAMost "tearaway" "tearawaily" ;
+lin tearaway_N = mkN "tearaway" "tearaways" ;
+lin teardrop_N = mkN "teardrop" "teardrops" ;
+lin tearful_A = mkAMost "tearful" "tearfully" ;
+lin tearing_N = mkN "tearing" "tearings" ;
+lin tearjerker_N = mkN "tearjerker" "tearjerkers" ;
+lin tearless_A = mkAMost "tearless" "tearlessly" ;
+lin tearoom_N = mkN "tearoom" "tearooms" ;
+lin teary_A = mkA "teary" "tearier" "teariest" "tearily" ;
+lin tease_N = mkN "tease" "teases" ;
+lin tease_V = mkV "tease" "teased" "teased" ;
+lin teasel_N = mkN "teasel" "teasels" ;
+lin teaser_N = mkN "teaser" "teasers" ;
+lin teashop_N = mkN "teashop" "teashops" ;
+lin teasing_A = mkAMost "teasing" "teasingly" ;
+lin teasing_N = mkN "teasing" "teasings" ;
+lin teaspoon_N = mkN "teaspoon" "teaspoons" ;
+lin teaspoonful_N = mkN "teaspoonful" "teaspoonfuls" ;
+lin teat_N = mkN "teat" "teats" ;
+lin teazel_N = mkN "teazel" "teazels" ;
+lin teazle_N = mkN "teazle" "teazles" ;
+lin tebibit_N = mkN "tebibit" "tebibits" ;
+lin tec_N = mkN "tec" "tecs" ;
+lin tech_N = mkN "tech" "teches" ;
+lin techie_N = mkN "techie" "techies" ;
+lin technetium_N = mkN "technetium" "technetiums" ;
+lin technical_A = mkAMost "technical" "technically" ;
+lin technical_N = mkN "technical" "technicals" ;
+lin technicality_N = mkN "technicality" "technicalities" ;
+lin technician_N = mkN "technician" "technicians" ;
+lin technicolor_N = mkN "technicolor" "technicolors" ;
+lin technique_N = mkN "technique" "techniques" ;
+lin techno_N = mkN "techno" "technoes" ;
+lin technobabble_N = mkN "technobabble" "technobabbles" ;
+lin technocracy_N = mkN "technocracy" "technocracies" ;
+lin technocrat_N = mkN "technocrat" "technocrats" ;
+lin technological_A = mkAMost "technological" "technologically" ;
+lin technologist_N = mkN "technologist" "technologists" ;
+lin technology_N = mkN "technology" "technologies" ;
+lin technophile_N = mkN "technophile" "technophiles" ;
+lin technophilia_N = mkN "technophilia" "technophilias" ;
+lin technophilic_A = mkAMost "technophilic" "technophilicly" ;
+lin technophobe_N = mkN "technophobe" "technophobes" ;
+lin technophobia_N = mkN "technophobia" "technophobias" ;
+lin technophobic_A = mkAMost "technophobic" "technophobicly" ;
+lin techy_A = mkAMost "techy" "techily" ;
+lin tectonic_A = mkAMost "tectonic" "tectonicly" ;
+lin tectonics_N = mkN "tectonics" "tectonicses" ;
+lin ted_N = mkN "ted" "teds" ;
+lin teddy_N = mkN "teddy" "teddies" ;
+lin teddy_boy_N = mkN "teddy boy" "teddy boys" ;
+lin tedious_A = mkAMost "tedious" "tediously" ;
+lin tediousness_N = mkN "tediousness" "tediousnesses" ;
+lin tedium_N = mkN "tedium" "tediums" ;
+lin tee_IRREG_V = mkV "tee" "IRREG" "IRREG" ;
+lin tee_N = mkN "tee" "tees" ;
+lin tee_shirt_N = mkN "tee-shirt" "tee-shirts" ;
+lin tee_teed_V = mkV "tee" "teed" "teed" ;
+lin teem_V = mkV "teem" "teemed" "teemed" ;
+lin teenage_A = mkAMost "teenage" "teenagely" ;
+lin teenager_N = mkN "teenager" "teenagers" ;
+lin teens_N = mkN "teens" "teenses" ;
+lin teeny_A = mkA "teeny" "teenier" "teeniest" "teenily" ;
+lin teeoff_N = mkN "teeoff" "teeoffs" ;
+lin teeter_V = mkV "teeter" "teetered" "teetered" ;
+lin teethe_V = mkV "teethe" "teethed" "teethed" ;
+lin teething_N = mkN "teething" "teethings" ;
+lin teetotal_A = mkAMost "teetotal" "teetotally" ;
+lin teetotaler_N = mkN "teetotaler" "teetotalers" ;
+lin teetotaling_N = mkN "teetotaling" "teetotalings" ;
+lin teetotaller_N = mkN "teetotaller" "teetotallers" ;
+lin teetotum_N = mkN "teetotum" "teetotums" ;
+lin teff_N = mkN "teff" "teffs" ;
+lin teg_N = mkN "teg" "tegs" ;
+lin tegular_A = mkAMost "tegular" "tegularly" ;
+lin tegument_N = mkN "tegument" "teguments" ;
+lin teju_N = mkN "teju" "tejus" ;
+lin tektite_N = mkN "tektite" "tektites" ;
+lin telecast_N = mkN "telecast" "telecasts" ;
+lin telecast_V = mkV "telecast" "telecast" "telecast" ;
+lin telecaster_N = mkN "telecaster" "telecasters" ;
+lin telecommunication_N = mkN "telecommunication" "telecommunications" ;
+lin telecommuting_N = mkN "telecommuting" "telecommutings" ;
+lin teleconference_N = mkN "teleconference" "teleconferences" ;
+lin telefilm_N = mkN "telefilm" "telefilms" ;
+lin telegnosis_N = mkN "telegnosis" "telegnosises" ;
+lin telegnostic_A = mkAMost "telegnostic" "telegnosticly" ;
+lin telegram_N = mkN "telegram" "telegrams" ;
+lin telegraph_N = mkN "telegraph" "telegraphs" ;
+lin telegraph_V = mkV "telegraph" "telegraphed" "telegraphed" ;
+lin telegraph_line_N = mkN "telegraph-line" "telegraph-lines" ;
+lin telegraph_pole_N = mkN "telegraph-pole" "telegraph-poles" ;
+lin telegraph_post_N = mkN "telegraph-post" "telegraph-posts" ;
+lin telegraph_wire_N = mkN "telegraph-wire" "telegraph-wires" ;
+lin telegrapher_N = mkN "telegrapher" "telegraphers" ;
+lin telegraphese_N = mkN "telegraphese" "telegrapheses" ;
+lin telegraphic_A = mkAMost "telegraphic" "telegraphicly" ;
+lin telegraphically_Adv = mkAdv "telegraphically" ;
+lin telegraphist_N = mkN "telegraphist" "telegraphists" ;
+lin telegraphy_N = mkN "telegraphy" "telegraphies" ;
+lin telekinesis_N = mkN "telekinesis" "telekinesises" ;
+lin telemark_N = mkN "telemark" "telemarks" ;
+lin telemarketing_N = mkN "telemarketing" "telemarketings" ;
+lin telemeter_N = mkN "telemeter" "telemeters" ;
+lin telemetered_A = mkAMost "telemetered" "telemeteredly" ;
+lin telemetry_N = mkN "telemetry" "telemetries" ;
+lin telencephalon_N = mkN "telencephalon" "telencephalons" ;
+lin teleological_A = mkAMost "teleological" "teleologically" ;
+lin teleologist_N = mkN "teleologist" "teleologists" ;
+lin teleology_N = mkN "teleology" "teleologies" ;
+lin telepathic_A = mkAMost "telepathic" "telepathicly" ;
+lin telepathist_N = mkN "telepathist" "telepathists" ;
+lin telepathy_N = mkN "telepathy" "telepathies" ;
+lin telephone_N = mkN "telephone" "telephones" ;
+lin telephone_V = mkV "telephone" "telephoned" "telephoned" ;
+lin telephonic_A = mkAMost "telephonic" "telephonicly" ;
+lin telephonist_N = mkN "telephonist" "telephonists" ;
+lin telephony_N = mkN "telephony" "telephonies" ;
+lin telephoto_N = mkN "telephoto" "telephotoes" ;
+lin telephotograph_N = mkN "telephotograph" "telephotographs" ;
+lin telephotography_N = mkN "telephotography" "telephotographies" ;
+lin teleportation_N = mkN "teleportation" "teleportations" ;
+lin teleprinter_N = mkN "teleprinter" "teleprinters" ;
+lin teleprompter_N = mkN "teleprompter" "teleprompters" ;
+lin telerobotics_N = mkN "telerobotics" "teleroboticses" ;
+lin telescope_N = mkN "telescope" "telescopes" ;
+lin telescope_V = mkV "telescope" "telescoped" "telescoped" ;
+lin telescopic_A = mkAMost "telescopic" "telescopicly" ;
+lin telescopically_Adv = mkAdv "telescopically" ;
+lin telescopy_N = mkN "telescopy" "telescopies" ;
+lin telethermometer_N = mkN "telethermometer" "telethermometers" ;
+lin teletypewriter_N = mkN "teletypewriter" "teletypewriters" ;
+lin televangelism_N = mkN "televangelism" "televangelisms" ;
+lin televangelist_N = mkN "televangelist" "televangelists" ;
+lin televise_V = mkV "televise" "televised" "televised" ;
+lin television_N = mkN "television" "televisions" ;
+lin telex_N = mkN "telex" "telexes" ;
+lin telfer_N = mkN "telfer" "telfers" ;
+lin teliospore_N = mkN "teliospore" "teliospores" ;
+lin tell_V = mkV "tell" "told" "told" ;
+lin teller_N = mkN "teller" "tellers" ;
+lin telling_A = mkAMost "telling" "tellingly" ;
+lin telling_N = mkN "telling" "tellings" ;
+lin telltale_N = mkN "telltale" "telltales" ;
+lin tellurian_A = mkAMost "tellurian" "tellurianly" ;
+lin tellurian_N = mkN "tellurian" "tellurians" ;
+lin telluric_A = mkAMost "telluric" "telluricly" ;
+lin telluride_N = mkN "telluride" "tellurides" ;
+lin tellurium_N = mkN "tellurium" "telluriums" ;
+lin telly_N = mkN "telly" "tellies" ;
+lin telocentric_A = mkAMost "telocentric" "telocentricly" ;
+lin telomerase_N = mkN "telomerase" "telomerases" ;
+lin telomere_N = mkN "telomere" "telomeres" ;
+lin telophase_N = mkN "telophase" "telophases" ;
+lin telpher_N = mkN "telpher" "telphers" ;
+lin telpherage_N = mkN "telpherage" "telpherages" ;
+lin temazepam_N = mkN "temazepam" "temazepams" ;
+lin temerity_N = mkN "temerity" "temerities" ;
+lin temp_N = mkN "temp" "temps" ;
+lin temper_N = mkN "temper" "tempers" ;
+lin temper_V = mkV "temper" "tempered" "tempered" ;
+lin tempera_N = mkN "tempera" "temperas" ;
+lin temperament_N = mkN "temperament" "temperaments" ;
+lin temperamental_A = mkAMost "temperamental" "temperamentally" ;
+lin temperance_N = mkN "temperance" "temperances" ;
+lin temperate_A = mkAMost "temperate" "temperately" ;
+lin temperateness_N = mkN "temperateness" "temperatenesses" ;
+lin temperature_N = mkN "temperature" "temperatures" ;
+lin tempest_N = mkN "tempest" "tempests" ;
+lin tempest_swept_A = mkAMost "tempest-swept" "tempest-sweptly" ;
+lin tempest_tossed_A = mkAMost "tempest-tossed" "tempest-tossedly" ;
+lin tempestuous_A = mkAMost "tempestuous" "tempestuously" ;
+lin tempestuousness_N = mkN "tempestuousness" "tempestuousnesses" ;
+lin template_N = mkN "template" "templates" ;
+lin temple_N = mkN "temple" "temples" ;
+lin templet_N = mkN "templet" "templets" ;
+lin tempo_N = mkN "tempo" "tempos" ;
+lin temporal_A = mkAMost "temporal" "temporally" ;
+lin temporality_N = mkN "temporality" "temporalities" ;
+lin temporalty_N = mkN "temporalty" "temporalties" ;
+lin temporariness_N = mkN "temporariness" "temporarinesses" ;
+lin temporary_A = mkAMost "temporary" "temporarily" ;
+lin temporize_V = mkV "temporize" "temporized" "temporized" ;
+lin temporizer_N = mkN "temporizer" "temporizers" ;
+lin tempt_V = mkV "tempt" "tempted" "tempted" ;
+lin temptable_A = mkAMost "temptable" "temptably" ;
+lin temptation_N = mkN "temptation" "temptations" ;
+lin tempter_N = mkN "tempter" "tempters" ;
+lin temptingly_Adv = mkAdv "temptingly" ;
+lin temptress_N = mkN "temptress" "temptresses" ;
+lin tempura_N = mkN "tempura" "tempuras" ;
+lin tenability_N = mkN "tenability" "tenabilities" ;
+lin tenable_A = mkAMost "tenable" "tenably" ;
+lin tenacious_A = mkAMost "tenacious" "tenaciously" ;
+lin tenaciousness_N = mkN "tenaciousness" "tenaciousnesses" ;
+lin tenacity_N = mkN "tenacity" "tenacities" ;
+lin tenancy_N = mkN "tenancy" "tenancies" ;
+lin tenant_N = mkN "tenant" "tenants" ;
+lin tenant_V = mkV "tenant" "tenanted" "tenanted" ;
+lin tenantry_N = mkN "tenantry" "tenantries" ;
+lin tench_N = mkN "tench" "tench" ;
+lin tend_V = mkV "tend" "tended" "tended" ;
+lin tendency_N = mkN "tendency" "tendencies" ;
+lin tendentious_A = mkAMost "tendentious" "tendentiously" ;
+lin tendentiousness_N = mkN "tendentiousness" "tendentiousnesses" ;
+lin tender_A = mkA "tender" "tenderer" "tenderest" "tenderly" ;
+lin tender_N = mkN "tender" "tenders" ;
+lin tender_V = mkV "tender" "tendered" "tendered" ;
+lin tenderfoot_N = mkN "tenderfoot" "tenderfoots" ;
+lin tendergreen_N = mkN "tendergreen" "tendergreens" ;
+lin tenderhearted_A = mkAMost "tenderhearted" "tenderheartedly" ;
+lin tenderization_N = mkN "tenderization" "tenderizations" ;
+lin tenderized_A = mkAMost "tenderized" "tenderizedly" ;
+lin tenderizer_N = mkN "tenderizer" "tenderizers" ;
+lin tenderloin_N = mkN "tenderloin" "tenderloins" ;
+lin tenderness_N = mkN "tenderness" "tendernesses" ;
+lin tendinitis_N = mkN "tendinitis" "tendinitises" ;
+lin tendinous_A = mkAMost "tendinous" "tendinously" ;
+lin tendon_N = mkN "tendon" "tendons" ;
+lin tendril_N = mkN "tendril" "tendrils" ;
+lin tenebrous_A = mkAMost "tenebrous" "tenebrously" ;
+lin tenement_N = mkN "tenement" "tenements" ;
+lin tenement_house_N = mkN "tenement-house" "tenement-houses" ;
+lin tenesmus_N = mkN "tenesmus" "tenesmuses" ;
+lin tenet_N = mkN "tenet" "tenets" ;
+lin tenfold_A = mkAMost "tenfold" "tenfoldly" ;
+lin tenfold_Adv = mkAdv "tenfold" ;
+lin tenge_N = mkN "tenge" "tenges" ;
+lin tenner_N = mkN "tenner" "tenners" ;
+lin tennis_N = mkN "tennis" "tennises" ;
+lin tennis_court_N = mkN "tennis-court" "tennis-courts" ;
+lin tennis_elbow_N = mkN "tennis-elbow" "tennis-elbows" ;
+lin tenon_N = mkN "tenon" "tenons" ;
+lin tenor_A = mkAMost "tenor" "tenorly" ;
+lin tenor_N = mkN "tenor" "tenors" ;
+lin tenoroon_N = mkN "tenoroon" "tenoroons" ;
+lin tenosynovitis_N = mkN "tenosynovitis" "tenosynovitises" ;
+lin tenpence_N = mkN "tenpence" "tenpences" ;
+lin tenpin_N = mkN "tenpin" "tenpins" ;
+lin tenpins_N = mkN "tenpins" "tenpinses" ;
+lin tenrec_N = mkN "tenrec" "tenrecs" ;
+lin tense_A = mkA "tense" "tenser" "tensest" "tensely" ;
+lin tense_N = mkN "tense" "tenses" ;
+lin tense_V = mkV "tense" "tensed" "tensed" ;
+lin tenseness_N = mkN "tenseness" "tensenesses" ;
+lin tensile_A = mkAMost "tensile" "tensilely" ;
+lin tensimeter_N = mkN "tensimeter" "tensimeters" ;
+lin tensiometer_N = mkN "tensiometer" "tensiometers" ;
+lin tension_N = mkN "tension" "tensions" ;
+lin tensional_A = mkAMost "tensional" "tensionally" ;
+lin tensionless_A = mkAMost "tensionless" "tensionlessly" ;
+lin tensity_N = mkN "tensity" "tensities" ;
+lin tensor_N = mkN "tensor" "tensors" ;
+lin tent_N = mkN "tent" "tents" ;
+lin tent_peg_N = mkN "tent-peg" "tent-pegs" ;
+lin tentacle_N = mkN "tentacle" "tentacles" ;
+lin tentacled_A = mkAMost "tentacled" "tentacledly" ;
+lin tentacular_A = mkAMost "tentacular" "tentacularly" ;
+lin tentative_A = mkAMost "tentative" "tentatively" ;
+lin tenter_N = mkN "tenter" "tenters" ;
+lin tenterhook_N = mkN "tenterhook" "tenterhooks" ;
+lin tenth_N = mkN "tenth" "tenths" ;
+lin tentmaker_N = mkN "tentmaker" "tentmakers" ;
+lin tentorium_N = mkN "tentorium" "tentoriums" ;
+lin tenuity_N = mkN "tenuity" "tenuities" ;
+lin tenuous_A = mkAMost "tenuous" "tenuously" ;
+lin tenure_N = mkN "tenure" "tenures" ;
+lin tenured_A = mkAMost "tenured" "tenuredly" ;
+lin tepal_N = mkN "tepal" "tepals" ;
+lin tepee_N = mkN "tepee" "tepees" ;
+lin tepid_A = mkAMost "tepid" "tepidly" ;
+lin tepidity_N = mkN "tepidity" "tepidities" ;
+lin tepidness_N = mkN "tepidness" "tepidnesses" ;
+lin tequila_N = mkN "tequila" "tequilas" ;
+lin terabit_N = mkN "terabit" "terabits" ;
+lin terabyte_N = mkN "terabyte" "terabytes" ;
+lin teraflop_N = mkN "teraflop" "teraflops" ;
+lin terahertz_N = mkN "terahertz" "terahertzes" ;
+lin teratogen_N = mkN "teratogen" "teratogens" ;
+lin teratogenesis_N = mkN "teratogenesis" "teratogenesises" ;
+lin teratogenic_A = mkAMost "teratogenic" "teratogenicly" ;
+lin teratology_N = mkN "teratology" "teratologies" ;
+lin teratoma_N = mkN "teratoma" "teratomas" ;
+lin terazosin_N = mkN "terazosin" "terazosins" ;
+lin terbinafine_N = mkN "terbinafine" "terbinafines" ;
+lin terbium_N = mkN "terbium" "terbiums" ;
+lin terce_N = mkN "terce" "terces" ;
+lin tercentenary_N = mkN "tercentenary" "tercentenaries" ;
+lin tercentennial_N = mkN "tercentennial" "tercentennials" ;
+lin terebinth_N = mkN "terebinth" "terebinths" ;
+lin teredo_N = mkN "teredo" "teredoes" ;
+lin teres_N = mkN "teres" "tereses" ;
+lin terete_A = mkAMost "terete" "teretely" ;
+lin tergiversate_V = mkV "tergiversate" "tergiversated" "tergiversated" ;
+lin tergiversation_N = mkN "tergiversation" "tergiversations" ;
+lin teriyaki_N = mkN "teriyaki" "teriyakis" ;
+lin term_N = mkN "term" "terms" ;
+lin term_V = mkV "term" "termed" "termed" ;
+lin termagant_N = mkN "termagant" "termagants" ;
+lin termer_N = mkN "termer" "termers" ;
+lin terminable_A = mkAMost "terminable" "terminably" ;
+lin terminal_A = mkAMost "terminal" "terminally" ;
+lin terminal_N = mkN "terminal" "terminals" ;
+lin terminate_V = mkV "terminate" "terminated" "terminated" ;
+lin termination_N = mkN "termination" "terminations" ;
+lin terminative_A = mkAMost "terminative" "terminatively" ;
+lin terminological_A = mkAMost "terminological" "terminologically" ;
+lin terminology_N = mkN "terminology" "terminologies" ;
+lin terminus_N = mkN "terminus" "terminuses" ;
+lin termite_N = mkN "termite" "termites" ;
+lin tern_N = mkN "tern" "terns" ;
+lin ternary_A = mkAMost "ternary" "ternarily" ;
+lin ternate_A = mkAMost "ternate" "ternately" ;
+lin terpene_N = mkN "terpene" "terpenes" ;
+lin terpsichorean_A = mkAMost "terpsichorean" "terpsichoreanly" ;
+lin terra_cotta_N = mkN "terra-cotta" "terra-cottas" ;
+lin terra_firma_N = mkN "terra firma" "terra firmas" ;
+lin terra_incognita_N = mkN "terra incognita" "terra incognitas" ;
+lin terrace_N = mkN "terrace" "terraces" ;
+lin terrace_V = mkV "terrace" "terraced" "terraced" ;
+lin terrain_N = mkN "terrain" "terrains" ;
+lin terrapin_N = mkN "terrapin" "terrapins" ;
+lin terrarium_N = mkN "terrarium" "terrariums" ;
+lin terreplein_N = mkN "terreplein" "terrepleins" ;
+lin terrestrial_A = mkAMost "terrestrial" "terrestrially" ;
+lin terrible_A = mkAMost "terrible" "terribly" ;
+lin terrier_N = mkN "terrier" "terriers" ;
+lin terrific_A = mkAMost "terrific" "terrificly" ;
+lin terrifically_Adv = mkAdv "terrifically" ;
+lin terrify_V = mkV "terrify" "terrified" "terrified" ;
+lin terrine_N = mkN "terrine" "terrines" ;
+lin territorial_A = mkAMost "territorial" "territorially" ;
+lin territorial_N = mkN "territorial" "territorials" ;
+lin territoriality_N = mkN "territoriality" "territorialities" ;
+lin territorialization_N = mkN "territorialization" "territorializations" ;
+lin territory_N = mkN "territory" "territories" ;
+lin terror_N = mkN "terror" "terrors" ;
+lin terror_stricken_A = mkAMost "terror-stricken" "terror-strickenly" ;
+lin terror_struck_A = mkAMost "terror-struck" "terror-struckly" ;
+lin terrorism_N = mkN "terrorism" "terrorisms" ;
+lin terrorist_N = mkN "terrorist" "terrorists" ;
+lin terrorization_N = mkN "terrorization" "terrorizations" ;
+lin terrorize_V = mkV "terrorize" "terrorized" "terrorized" ;
+lin terry_N = mkN "terry" "terries" ;
+lin terse_A = mkA "terse" "terser" "tersest" "tersely" ;
+lin terseness_N = mkN "terseness" "tersenesses" ;
+lin tertian_A = mkAMost "tertian" "tertianly" ;
+lin tertiary_A = mkAMost "tertiary" "tertiarily" ;
+lin tertigravida_N = mkN "tertigravida" "tertigravidas" ;
+lin terylene_N = mkN "terylene" "terylenes" ;
+lin tesla_N = mkN "tesla" "teslas" ;
+lin tessella_N = mkN "tessella" "tessellas" ;
+lin tessellated_A = mkAMost "tessellated" "tessellatedly" ;
+lin tessellation_N = mkN "tessellation" "tessellations" ;
+lin tessera_N = mkN "tessera" "tesseras" ;
+lin tesseract_N = mkN "tesseract" "tesseracts" ;
+lin test_N = mkN "test" "tests" ;
+lin test_V = mkV "test" "tested" "tested" ;
+lin test_drive_N = mkN "test-drive" "test-drives" ;
+lin test_drive_V = mkV "test-drive" "test-drove" "test-driven" ;
+lin test_tube_N = mkN "test-tube" "test-tubes" ;
+lin testa_N = mkN "testa" "testas" ;
+lin testacean_N = mkN "testacean" "testaceans" ;
+lin testaceous_A = mkAMost "testaceous" "testaceously" ;
+lin testament_N = mkN "testament" "testaments" ;
+lin testamentary_A = mkAMost "testamentary" "testamentarily" ;
+lin testate_A = mkAMost "testate" "testately" ;
+lin testate_N = mkN "testate" "testates" ;
+lin testator_N = mkN "testator" "testators" ;
+lin testatrix_N = mkN "testatrix" "testatrixes" ;
+lin testbed_N = mkN "testbed" "testbeds" ;
+lin testcross_N = mkN "testcross" "testcrosses" ;
+lin testee_N = mkN "testee" "testees" ;
+lin tester_N = mkN "tester" "testers" ;
+lin testicle_N = mkN "testicle" "testicles" ;
+lin testicular_A = mkAMost "testicular" "testicularly" ;
+lin testifier_N = mkN "testifier" "testifiers" ;
+lin testify_V = mkV "testify" "testified" "testified" ;
+lin testimonial_A = mkAMost "testimonial" "testimonially" ;
+lin testimonial_N = mkN "testimonial" "testimonials" ;
+lin testimony_N = mkN "testimony" "testimonies" ;
+lin testiness_N = mkN "testiness" "testinesses" ;
+lin testing_N = mkN "testing" "testings" ;
+lin testis_N = mkN "testis" "testes" ;
+lin testosterone_N = mkN "testosterone" "testosterones" ;
+lin testudo_N = mkN "testudo" "testudoes" ;
+lin testy_A = mkA "testy" "testier" "testiest" "testily" ;
+lin tetanic_A = mkAMost "tetanic" "tetanicly" ;
+lin tetanus_N = mkN "tetanus" "tetanuses" ;
+lin tetany_N = mkN "tetany" "tetanies" ;
+lin tetartanopia_N = mkN "tetartanopia" "tetartanopias" ;
+lin tetchiness_N = mkN "tetchiness" "tetchinesses" ;
+lin tetchy_A = mkA "tetchy" "tetchier" "tetchiest" "tetchily" ;
+lin teth_N = mkN "teth" "teths" ;
+lin tether_N = mkN "tether" "tethers" ;
+lin tether_V = mkV "tether" "tethered" "tethered" ;
+lin tetherball_N = mkN "tetherball" "tetherballs" ;
+lin tetra_N = mkN "tetra" "tetras" ;
+lin tetracaine_N = mkN "tetracaine" "tetracaines" ;
+lin tetrachlorethylene_N = mkN "tetrachlorethylene" "tetrachlorethylenes" ;
+lin tetrachloride_N = mkN "tetrachloride" "tetrachlorides" ;
+lin tetracycline_N = mkN "tetracycline" "tetracyclines" ;
+lin tetrafluoroethylene_N = mkN "tetrafluoroethylene" "tetrafluoroethylenes" ;
+lin tetragonal_A = mkAMost "tetragonal" "tetragonally" ;
+lin tetragram_N = mkN "tetragram" "tetragrams" ;
+lin tetrahalide_N = mkN "tetrahalide" "tetrahalides" ;
+lin tetrahedron_N = mkN "tetrahedron" "tetrahedrons" ;
+lin tetrahydrocannabinol_N = mkN "tetrahydrocannabinol" "tetrahydrocannabinols" ;
+lin tetrahymena_N = mkN "tetrahymena" "tetrahymenas" ;
+lin tetralogy_N = mkN "tetralogy" "tetralogies" ;
+lin tetramerous_A = mkAMost "tetramerous" "tetramerously" ;
+lin tetrameter_N = mkN "tetrameter" "tetrameters" ;
+lin tetrametric_A = mkAMost "tetrametric" "tetrametricly" ;
+lin tetrapod_N = mkN "tetrapod" "tetrapods" ;
+lin tetrasaccharide_N = mkN "tetrasaccharide" "tetrasaccharides" ;
+lin tetraskelion_N = mkN "tetraskelion" "tetraskelions" ;
+lin tetrasporangium_N = mkN "tetrasporangium" "tetrasporangiums" ;
+lin tetraspore_N = mkN "tetraspore" "tetraspores" ;
+lin tetravalent_A = mkAMost "tetravalent" "tetravalently" ;
+lin tetri_N = mkN "tetri" "tetris" ;
+lin tetrode_N = mkN "tetrode" "tetrodes" ;
+lin tetrodotoxin_N = mkN "tetrodotoxin" "tetrodotoxins" ;
+lin tetrose_N = mkN "tetrose" "tetroses" ;
+lin tetroxide_N = mkN "tetroxide" "tetroxides" ;
+lin tetryl_N = mkN "tetryl" "tetryls" ;
+lin teuton_N = mkN "teuton" "teutons" ;
+lin teutonic_A = mkAMost "teutonic" "teutonicly" ;
+lin texan_A = mkAMost "texan" "texanly" ;
+lin texan_N = mkN "texan" "texans" ;
+lin text_N = mkN "text" "texts" ;
+lin text_V = mkV "text" "texted" "texted" ;
+lin textbook_N = mkN "textbook" "textbooks" ;
+lin textile_A = mkAMost "textile" "textilely" ;
+lin textile_N = mkN "textile" "textiles" ;
+lin textual_A = mkAMost "textual" "textually" ;
+lin texture_N = mkN "texture" "textures" ;
+lin textured_A = mkAMost "textured" "texturedly" ;
+lin thai_N = mkN "thai" "thais" ;
+lin thalamocortical_A = mkAMost "thalamocortical" "thalamocortically" ;
+lin thalamus_N = mkN "thalamus" "thalamuses" ;
+lin thalassemia_N = mkN "thalassemia" "thalassemias" ;
+lin thalassic_A = mkAMost "thalassic" "thalassicly" ;
+lin thalidomide_N = mkN "thalidomide" "thalidomides" ;
+lin thallium_N = mkN "thallium" "thalliums" ;
+lin thalloid_A = mkAMost "thalloid" "thalloidly" ;
+lin thallophyte_N = mkN "thallophyte" "thallophytes" ;
+lin thallophytic_A = mkAMost "thallophytic" "thallophyticly" ;
+lin thallus_N = mkN "thallus" "thalluses" ;
+lin thalweg_N = mkN "thalweg" "thalwegs" ;
+lin than_Prep = mkPrep "than" ;
+lin thanatology_N = mkN "thanatology" "thanatologies" ;
+lin thanatophobia_N = mkN "thanatophobia" "thanatophobias" ;
+lin thanatopsis_N = mkN "thanatopsis" "thanatopsises" ;
+lin thane_N = mkN "thane" "thanes" ;
+lin thaneship_N = mkN "thaneship" "thaneships" ;
+lin thank_V = mkV "thank" "thanked" "thanked" ;
+lin thank_offering_N = mkN "thank-offering" "thank-offerings" ;
+lin thankful_A = mkAMost "thankful" "thankfully" ;
+lin thankfulness_N = mkN "thankfulness" "thankfulnesses" ;
+lin thankless_A = mkAMost "thankless" "thanklessly" ;
+lin thanks_to_Prep = mkPrep "thanks to" ;
+lin thanksgiving_N = mkN "thanksgiving" "thanksgivings" ;
+lin that_of_Prep = mkPrep "that of" ;
+lin thatch_N = mkN "thatch" "thatches" ;
+lin thatch_V = mkV "thatch" "thatched" "thatched" ;
+lin thatcher_N = mkN "thatcher" "thatchers" ;
+lin thaumatolatry_N = mkN "thaumatolatry" "thaumatolatries" ;
+lin thaw_N = mkN "thaw" "thaws" ;
+lin thaw_V = mkV "thaw" "thawed" "thawed" ;
+lin theanthropism_N = mkN "theanthropism" "theanthropisms" ;
+lin theater_N = mkN "theater" "theaters" ;
+lin theatre_N = mkN "theatre" "theatres" ;
+lin theatregoer_N = mkN "theatregoer" "theatregoers" ;
+lin theatrical_A = mkAMost "theatrical" "theatrically" ;
+lin theatrical_N = mkN "theatrical" "theatricals" ;
+lin thebe_N = mkN "thebe" "thebes" ;
+lin theca_N = mkN "theca" "thecas" ;
+lin thecodont_N = mkN "thecodont" "thecodonts" ;
+lin theft_N = mkN "theft" "thefts" ;
+lin theism_N = mkN "theism" "theisms" ;
+lin theist_A = mkA "theist" "theister" "theistest" "theistly" ;
+lin theist_N = mkN "theist" "theists" ;
+lin theistic_A = mkAMost "theistic" "theisticly" ;
+lin theistical_A = mkAMost "theistical" "theistically" ;
+lin thelarche_N = mkN "thelarche" "thelarches" ;
+lin thematic_A = mkAMost "thematic" "thematicly" ;
+lin thematically_Adv = mkAdv "thematically" ;
+lin theme_N = mkN "theme" "themes" ;
+lin then_Adv = mkAdv "then" ;
+lin then_N = mkN "then" "thens" ;
+lin then_Prep = mkPrep "then" ;
+lin thenal_A = mkAMost "thenal" "thenally" ;
+lin thenar_N = mkN "thenar" "thenars" ;
+lin thence_Adv = mkAdv "thence" ;
+lin thenceforth_Adv = mkAdv "thenceforth" ;
+lin thenceforward_Adv = mkAdv "thenceforward" ;
+lin theocracy_N = mkN "theocracy" "theocracies" ;
+lin theocratic_A = mkAMost "theocratic" "theocraticly" ;
+lin theodicy_N = mkN "theodicy" "theodicies" ;
+lin theodolite_N = mkN "theodolite" "theodolites" ;
+lin theogony_N = mkN "theogony" "theogonies" ;
+lin theologian_N = mkN "theologian" "theologians" ;
+lin theological_A = mkAMost "theological" "theologically" ;
+lin theology_N = mkN "theology" "theologies" ;
+lin theophany_N = mkN "theophany" "theophanies" ;
+lin theophylline_N = mkN "theophylline" "theophyllines" ;
+lin theorem_N = mkN "theorem" "theorems" ;
+lin theoretic_A = mkAMost "theoretic" "theoreticly" ;
+lin theoretical_A = mkAMost "theoretical" "theoretically" ;
+lin theoretician_N = mkN "theoretician" "theoreticians" ;
+lin theorist_N = mkN "theorist" "theorists" ;
+lin theorization_N = mkN "theorization" "theorizations" ;
+lin theorize_V = mkV "theorize" "theorized" "theorized" ;
+lin theory_N = mkN "theory" "theories" ;
+lin theosophical_A = mkAMost "theosophical" "theosophically" ;
+lin theosophism_N = mkN "theosophism" "theosophisms" ;
+lin theosophist_N = mkN "theosophist" "theosophists" ;
+lin theosophy_N = mkN "theosophy" "theosophies" ;
+lin theoterrorism_N = mkN "theoterrorism" "theoterrorisms" ;
+lin therapeutic_A = mkAMost "therapeutic" "therapeuticly" ;
+lin therapeutical_A = mkAMost "therapeutical" "therapeutically" ;
+lin therapeutics_N = mkN "therapeutics" "therapeutics" ;
+lin therapist_N = mkN "therapist" "therapists" ;
+lin therapsid_N = mkN "therapsid" "therapsids" ;
+lin therapy_N = mkN "therapy" "therapies" ;
+lin there_Adv = mkAdv "there" ;
+lin thereabout_Adv = mkAdv "thereabout" ;
+lin thereabouts_Adv = mkAdv "thereabouts" ;
+lin thereafter_Adv = mkAdv "thereafter" ;
+lin thereby_Adv = mkAdv "thereby" ;
+lin therefor_Adv = mkAdv "therefor" ;
+lin therefore_Adv = mkAdv "therefore" ;
+lin therefrom_Adv = mkAdv "therefrom" ;
+lin therein_Adv = mkAdv "therein" ;
+lin thereinafter_Adv = mkAdv "thereinafter" ;
+lin theremin_N = mkN "theremin" "theremins" ;
+lin thereness_N = mkN "thereness" "therenesses" ;
+lin thereof_Adv = mkAdv "thereof" ;
+lin thereon_Adv = mkAdv "thereon" ;
+lin thereto_Adv = mkAdv "thereto" ;
+lin theretofore_Adv = mkAdv "theretofore" ;
+lin thereunder_Adv = mkAdv "thereunder" ;
+lin thereupon_Adv = mkAdv "thereupon" ;
+lin therewith_Adv = mkAdv "therewith" ;
+lin therewithal_Adv = mkAdv "therewithal" ;
+lin therm_N = mkN "therm" "therms" ;
+lin thermal_A = mkAMost "thermal" "thermally" ;
+lin thermal_N = mkN "thermal" "thermals" ;
+lin thermalgesia_N = mkN "thermalgesia" "thermalgesias" ;
+lin thermion_N = mkN "thermion" "thermions" ;
+lin thermionic_A = mkAMost "thermionic" "thermionicly" ;
+lin thermionics_N = mkN "thermionics" "thermionicses" ;
+lin thermistor_N = mkN "thermistor" "thermistors" ;
+lin thermoacidophile_N = mkN "thermoacidophile" "thermoacidophiles" ;
+lin thermocautery_N = mkN "thermocautery" "thermocauteries" ;
+lin thermochemistry_N = mkN "thermochemistry" "thermochemistries" ;
+lin thermocoagulation_N = mkN "thermocoagulation" "thermocoagulations" ;
+lin thermocouple_N = mkN "thermocouple" "thermocouples" ;
+lin thermodynamic_A = mkAMost "thermodynamic" "thermodynamicly" ;
+lin thermodynamically_Adv = mkAdv "thermodynamically" ;
+lin thermodynamics_N = mkN "thermodynamics" "thermodynamics" ;
+lin thermoelectric_A = mkAMost "thermoelectric" "thermoelectricly" ;
+lin thermoelectricity_N = mkN "thermoelectricity" "thermoelectricities" ;
+lin thermogram_N = mkN "thermogram" "thermograms" ;
+lin thermograph_N = mkN "thermograph" "thermographs" ;
+lin thermography_N = mkN "thermography" "thermographies" ;
+lin thermogravimetry_N = mkN "thermogravimetry" "thermogravimetries" ;
+lin thermohydrometer_N = mkN "thermohydrometer" "thermohydrometers" ;
+lin thermohydrometric_A = mkAMost "thermohydrometric" "thermohydrometricly" ;
+lin thermojunction_N = mkN "thermojunction" "thermojunctions" ;
+lin thermolabile_A = mkAMost "thermolabile" "thermolabilely" ;
+lin thermometer_N = mkN "thermometer" "thermometers" ;
+lin thermometric_A = mkAMost "thermometric" "thermometricly" ;
+lin thermometry_N = mkN "thermometry" "thermometries" ;
+lin thermonuclear_A = mkAMost "thermonuclear" "thermonuclearly" ;
+lin thermopile_N = mkN "thermopile" "thermopiles" ;
+lin thermoplastic_A = mkAMost "thermoplastic" "thermoplasticly" ;
+lin thermoplastic_N = mkN "thermoplastic" "thermoplastics" ;
+lin thermoreceptor_N = mkN "thermoreceptor" "thermoreceptors" ;
+lin thermos_N = mkN "thermos" "thermoses" ;
+lin thermosetting_A = mkAMost "thermosetting" "thermosettingly" ;
+lin thermosphere_N = mkN "thermosphere" "thermospheres" ;
+lin thermostat_N = mkN "thermostat" "thermostats" ;
+lin thermostatic_A = mkAMost "thermostatic" "thermostaticly" ;
+lin thermostatically_Adv = mkAdv "thermostatically" ;
+lin thermostatics_N = mkN "thermostatics" "thermostaticses" ;
+lin thermotherapy_N = mkN "thermotherapy" "thermotherapies" ;
+lin thermotropism_N = mkN "thermotropism" "thermotropisms" ;
+lin theropod_N = mkN "theropod" "theropods" ;
+lin thesaurus_N = mkN "thesaurus" "thesauruses" ;
+lin thesis_N = mkN "thesis" "theses" ;
+lin thespian_A = mkAMost "thespian" "thespianly" ;
+lin thespian_N = mkN "thespian" "thespians" ;
+lin theta_N = mkN "theta" "thetas" ;
+lin theurgy_N = mkN "theurgy" "theurgies" ;
+lin thiabendazole_N = mkN "thiabendazole" "thiabendazoles" ;
+lin thiazide_N = mkN "thiazide" "thiazides" ;
+lin thiazine_N = mkN "thiazine" "thiazines" ;
+lin thick_A = mkA "thick" "thicker" "thickest" "thickly" ;
+lin thick_Adv = mkAdv "thick" ;
+lin thick_N = mkN "thick" "thicks" ;
+lin thick_headed_A = mkAMost "thick-headed" "thick-headedly" ;
+lin thick_set_A = mkAMost "thick-set" "thick-setly" ;
+lin thick_skinned_A = mkAMost "thick-skinned" "thick-skinnedly" ;
+lin thicken_V = mkV "thicken" "thickened" "thickened" ;
+lin thickening_N = mkN "thickening" "thickenings" ;
+lin thicket_N = mkN "thicket" "thickets" ;
+lin thickhead_N = mkN "thickhead" "thickheads" ;
+lin thickness_N = mkN "thickness" "thicknesses" ;
+lin thickset_A = mkAMost "thickset" "thicksetly" ;
+lin thickspread_A = mkAMost "thickspread" "thickspreadly" ;
+lin thief_N = mkN "thief" "thieves" ;
+lin thieve_V = mkV "thieve" "thieved" "thieved" ;
+lin thievery_N = mkN "thievery" "thieveries" ;
+lin thievish_A = mkAMost "thievish" "thievishly" ;
+lin thievishness_N = mkN "thievishness" "thievishnesses" ;
+lin thigh_N = mkN "thigh" "thighs" ;
+lin thighbone_N = mkN "thighbone" "thighbones" ;
+lin thill_N = mkN "thill" "thills" ;
+lin thimble_N = mkN "thimble" "thimbles" ;
+lin thimbleful_N = mkN "thimbleful" "thimblefuls" ;
+lin thimbleweed_N = mkN "thimbleweed" "thimbleweeds" ;
+lin thimerosal_N = mkN "thimerosal" "thimerosals" ;
+lin thin_A = mkA "thin" "thinner" "thinnest" "thinly" ;
+lin thin_Adv = mkAdv "thin" ;
+lin thin_V = mkV "thin" "thinned" "thinned" ;
+lin thin_skinned_A = mkAMost "thin-skinned" "thin-skinnedly" ;
+lin thine_A = mkAMost "thine" "thinely" ;
+lin thing_N = mkN "thing" "things" ;
+lin thingmabob_N = mkN "thingmabob" "thingmabobs" ;
+lin thingmajig_N = mkN "thingmajig" "thingmajigs" ;
+lin things_N = mkN "things" "thingses" ;
+lin thingumabob_N = mkN "thingumabob" "thingumabobs" ;
+lin thingumajig_N = mkN "thingumajig" "thingumajigs" ;
+lin thingummy_N = mkN "thingummy" "thingummies" ;
+lin think_N = mkN "think" "thinks" ;
+lin think_V = mkV "think" "thought" "thought" ;
+lin think_tank_N = mkN "think-tank" "think-tanks" ;
+lin thinkable_A = mkAMost "thinkable" "thinkably" ;
+lin thinker_N = mkN "thinker" "thinkers" ;
+lin thinking_N = mkN "thinking" "thinkings" ;
+lin thinness_N = mkN "thinness" "thinnesses" ;
+lin thiobacillus_N = mkN "thiobacillus" "thiobacilluses" ;
+lin thiobacteria_N = mkN "thiobacteria" "thiobacterias" ;
+lin thiocyanate_N = mkN "thiocyanate" "thiocyanates" ;
+lin thioguanine_N = mkN "thioguanine" "thioguanines" ;
+lin thiopental_N = mkN "thiopental" "thiopentals" ;
+lin thioridazine_N = mkN "thioridazine" "thioridazines" ;
+lin thiotepa_N = mkN "thiotepa" "thiotepas" ;
+lin thiothixene_N = mkN "thiothixene" "thiothixenes" ;
+lin thiouracil_N = mkN "thiouracil" "thiouracils" ;
+lin third_rate_A = mkAMost "third-rate" "third-rately" ;
+lin third_rater_N = mkN "third-rater" "third-raters" ;
+lin thirdhand_A = mkAMost "thirdhand" "thirdhandly" ;
+lin thirdhand_Adv = mkAdv "thirdhand" ;
+lin thirst_N = mkN "thirst" "thirsts" ;
+lin thirst_V = mkV "thirst" "thirsted" "thirsted" ;
+lin thirsty_A = mkA "thirsty" "thirstier" "thirstiest" "thirstily" ;
+lin thistle_N = mkN "thistle" "thistles" ;
+lin thistledown_N = mkN "thistledown" "thistledowns" ;
+lin thistlelike_A = mkAMost "thistlelike" "thistlelikely" ;
+lin thither_Adv = mkAdv "thither" ;
+lin tho'_Adv = mkAdv "tho'" ;
+lin thole_N = mkN "thole" "tholes" ;
+lin tholepin_N = mkN "tholepin" "tholepins" ;
+lin thong_N = mkN "thong" "thongs" ;
+lin thoracocentesis_N = mkN "thoracocentesis" "thoracocentesises" ;
+lin thoracotomy_N = mkN "thoracotomy" "thoracotomies" ;
+lin thorax_N = mkN "thorax" "thoraxes" ;
+lin thoriated_A = mkAMost "thoriated" "thoriatedly" ;
+lin thorite_N = mkN "thorite" "thorites" ;
+lin thorium_N = mkN "thorium" "thoriums" ;
+lin thorn_N = mkN "thorn" "thorns" ;
+lin thornbill_N = mkN "thornbill" "thornbills" ;
+lin thornless_A = mkAMost "thornless" "thornlessly" ;
+lin thorny_A = mkA "thorny" "thornier" "thorniest" "thornily" ;
+lin thorough_A = mkAMost "thorough" "thoroughly" ;
+lin thoroughbred_A = mkAMost "thoroughbred" "thoroughbredly" ;
+lin thoroughbred_N = mkN "thoroughbred" "thoroughbreds" ;
+lin thoroughfare_N = mkN "thoroughfare" "thoroughfares" ;
+lin thoroughgoing_A = mkAMost "thoroughgoing" "thoroughgoingly" ;
+lin thoroughness_N = mkN "thoroughness" "thoroughnesses" ;
+lin thortveitite_N = mkN "thortveitite" "thortveitites" ;
+lin though_Adv = mkAdv "though" ;
+lin though_Prep = mkPrep "though" ;
+lin thought_N = mkN "thought" "thoughts" ;
+lin thought_reader_N = mkN "thought-reader" "thought-readers" ;
+lin thoughtful_A = mkAMost "thoughtful" "thoughtfully" ;
+lin thoughtfulness_N = mkN "thoughtfulness" "thoughtfulnesses" ;
+lin thoughtless_A = mkAMost "thoughtless" "thoughtlessly" ;
+lin thoughtlessness_N = mkN "thoughtlessness" "thoughtlessnesses" ;
+lin thousandfold_A = mkAMost "thousandfold" "thousandfoldly" ;
+lin thousandfold_Adv = mkAdv "thousandfold" ;
+lin thraldom_N = mkN "thraldom" "thraldoms" ;
+lin thrall_N = mkN "thrall" "thralls" ;
+lin thrash_N = mkN "thrash" "thrashes" ;
+lin thrash_V = mkV "thrash" "thrashed" "thrashed" ;
+lin thrasher_N = mkN "thrasher" "thrashers" ;
+lin thrashing_N = mkN "thrashing" "thrashings" ;
+lin thread_N = mkN "thread" "threads" ;
+lin thread_V = mkV "thread" "threaded" "threaded" ;
+lin threadbare_A = mkAMost "threadbare" "threadbarely" ;
+lin threadfin_N = mkN "threadfin" "threadfins" ;
+lin threadfish_N = mkN "threadfish" "threadfishes" ;
+lin threadlike_A = mkAMost "threadlike" "threadlikely" ;
+lin threat_N = mkN "threat" "threats" ;
+lin threaten_V = mkV "threaten" "threatened" "threatened" ;
+lin threateningly_Adv = mkAdv "threateningly" ;
+lin three_cornered_A = mkAMost "three-cornered" "three-corneredly" ;
+lin three_d_A = mkAMost "three-d" "three-dly" ;
+lin three_d_N = mkN "three-d" "three-ds" ;
+lin three_decker_N = mkN "three-decker" "three-deckers" ;
+lin three_dimensional_A = mkAMost "three-dimensional" "three-dimensionally" ;
+lin three_figure_A = mkAMost "three-figure" "three-figurely" ;
+lin three_funnelled_A = mkAMost "three-funnelled" "three-funnelledly" ;
+lin three_lane_A = mkAMost "three-lane" "three-lanely" ;
+lin three_legged_A = mkAMost "three-legged" "three-leggedly" ;
+lin three_piece_A = mkAMost "three-piece" "three-piecely" ;
+lin three_ply_A = mkAMost "three-ply" "three-plily" ;
+lin three_quarter_A = mkAMost "three-quarter" "three-quarterly" ;
+lin three_quarter_N = mkN "three-quarter" "three-quarters" ;
+lin three_score_A = mkAMost "three-score" "three-scorely" ;
+lin three_score_N = mkN "three-score" "three-scores" ;
+lin three_storey_A = mkAMost "three-storey" "three-storeily" ;
+lin three_storeyed_A = mkAMost "three-storeyed" "three-storeyedly" ;
+lin three_wheeled_A = mkAMost "three-wheeled" "three-wheeledly" ;
+lin threefold_A = mkAMost "threefold" "threefoldly" ;
+lin threefold_Adv = mkAdv "threefold" ;
+lin threepence_N = mkN "threepence" "threepences" ;
+lin threepenny_A = mkAMost "threepenny" "threepennily" ;
+lin threescore_N = mkN "threescore" "threescores" ;
+lin threesome_N = mkN "threesome" "threesomes" ;
+lin threnody_N = mkN "threnody" "threnodies" ;
+lin threonine_N = mkN "threonine" "threonines" ;
+lin thresh_V = mkV "thresh" "threshed" "threshed" ;
+lin thresher_N = mkN "thresher" "threshers" ;
+lin threshing_N = mkN "threshing" "threshings" ;
+lin threshing_floor_N = mkN "threshing-floor" "threshing-floors" ;
+lin threshing_machine_N = mkN "threshing-machine" "threshing-machines" ;
+lin threshold_N = mkN "threshold" "thresholds" ;
+lin thrice_Adv = mkAdv "thrice" ;
+lin thrift_N = mkN "thrift" "thrifts" ;
+lin thriftless_A = mkAMost "thriftless" "thriftlessly" ;
+lin thriftlessness_N = mkN "thriftlessness" "thriftlessnesses" ;
+lin thriftshop_N = mkN "thriftshop" "thriftshops" ;
+lin thrifty_A = mkA "thrifty" "thriftier" "thriftiest" "thriftily" ;
+lin thrill_N = mkN "thrill" "thrills" ;
+lin thrill_V = mkV "thrill" "thrilled" "thrilled" ;
+lin thriller_N = mkN "thriller" "thrillers" ;
+lin thrillful_A = mkAMost "thrillful" "thrillfully" ;
+lin thrips_N = mkN "thrips" "thripses" ;
+lin thrive_V = mkV "thrive" "thrived" "thrived" ;
+lin throat_N = mkN "throat" "throats" ;
+lin throated_A = mkAMost "throated" "throatedly" ;
+lin throatwort_N = mkN "throatwort" "throatworts" ;
+lin throaty_A = mkA "throaty" "throatier" "throatiest" "throatily" ;
+lin throb_N = mkN "throb" "throbs" ;
+lin throb_V = mkV "throb" "throbbed" "throbbed" ;
+lin throbbing_N = mkN "throbbing" "throbbings" ;
+lin throe_N = mkN "throe" "throes" ;
+lin throes_N = mkN "throes" "throeses" ;
+lin thrombasthenia_N = mkN "thrombasthenia" "thrombasthenias" ;
+lin thrombectomy_N = mkN "thrombectomy" "thrombectomies" ;
+lin thrombin_N = mkN "thrombin" "thrombins" ;
+lin thrombocytopenia_N = mkN "thrombocytopenia" "thrombocytopenias" ;
+lin thrombocytosis_N = mkN "thrombocytosis" "thrombocytosises" ;
+lin thromboembolism_N = mkN "thromboembolism" "thromboembolisms" ;
+lin thrombolysis_N = mkN "thrombolysis" "thrombolysises" ;
+lin thrombolytic_N = mkN "thrombolytic" "thrombolytics" ;
+lin thrombophlebitis_N = mkN "thrombophlebitis" "thrombophlebitises" ;
+lin thromboplastin_N = mkN "thromboplastin" "thromboplastins" ;
+lin thrombosed_A = mkAMost "thrombosed" "thrombosedly" ;
+lin thrombosis_N = mkN "thrombosis" "thrombosises" ;
+lin thrombus_N = mkN "thrombus" "thrombuses" ;
+lin throne_N = mkN "throne" "thrones" ;
+lin throng_N = mkN "throng" "throngs" ;
+lin throng_V = mkV "throng" "thronged" "thronged" ;
+lin throstle_N = mkN "throstle" "throstles" ;
+lin throttle_N = mkN "throttle" "throttles" ;
+lin throttle_V = mkV "throttle" "throttled" "throttled" ;
+lin throttle_valve_N = mkN "throttle-valve" "throttle-valves" ;
+lin through_Adv = mkAdv "through" ;
+lin through_Prep = mkPrep "through" ;
+lin throughout_Adv = mkAdv "throughout" ;
+lin throughout_Prep = mkPrep "throughout" ;
+lin throughput_N = mkN "throughput" "throughputs" ;
+lin throughway_N = mkN "throughway" "throughways" ;
+lin throw_N = mkN "throw" "throws" ;
+lin throw_in_N = mkN "throw-in" "throw-ins" ;
+lin throw_threw_V = mkV "throw" "threw" "thrown" ;
+lin throw_throwed_V = mkV "throw" "throwed" "throwed" ;
+lin throwaway_N = mkN "throwaway" "throwaways" ;
+lin throwback_N = mkN "throwback" "throwbacks" ;
+lin thrower_N = mkN "thrower" "throwers" ;
+lin throwster_N = mkN "throwster" "throwsters" ;
+lin thrum_N = mkN "thrum" "thrums" ;
+lin thrum_V = mkV "thrum" "thrummed" "thrummed" ;
+lin thrush_N = mkN "thrush" "thrushes" ;
+lin thrust_N = mkN "thrust" "thrusts" ;
+lin thrust_thrust_V = mkV "thrust" "thrust" "thrust" ;
+lin thrust_thrusted_V = mkV "thrust" "thrusted" "thrusted" ;
+lin thruster_N = mkN "thruster" "thrusters" ;
+lin thud_N = mkN "thud" "thuds" ;
+lin thud_V = mkV "thud" "thudded" "thudded" ;
+lin thug_N = mkN "thug" "thugs" ;
+lin thuggee_N = mkN "thuggee" "thuggees" ;
+lin thuggery_N = mkN "thuggery" "thuggeries" ;
+lin thulium_N = mkN "thulium" "thuliums" ;
+lin thumb_N = mkN "thumb" "thumbs" ;
+lin thumb_V = mkV "thumb" "thumbed" "thumbed" ;
+lin thumbhole_N = mkN "thumbhole" "thumbholes" ;
+lin thumbnail_N = mkN "thumbnail" "thumbnails" ;
+lin thumbnut_N = mkN "thumbnut" "thumbnuts" ;
+lin thumbprint_N = mkN "thumbprint" "thumbprints" ;
+lin thumbscrew_N = mkN "thumbscrew" "thumbscrews" ;
+lin thumbstall_N = mkN "thumbstall" "thumbstalls" ;
+lin thumbtack_N = mkN "thumbtack" "thumbtacks" ;
+lin thump_N = mkN "thump" "thumps" ;
+lin thump_V = mkV "thump" "thumped" "thumped" ;
+lin thunder_N = mkN "thunder" "thunders" ;
+lin thunder_V = mkV "thunder" "thundered" "thundered" ;
+lin thunderbird_N = mkN "thunderbird" "thunderbirds" ;
+lin thunderbolt_N = mkN "thunderbolt" "thunderbolts" ;
+lin thunderclap_N = mkN "thunderclap" "thunderclaps" ;
+lin thunderer_N = mkN "thunderer" "thunderers" ;
+lin thunderhead_N = mkN "thunderhead" "thunderheads" ;
+lin thunderous_A = mkAMost "thunderous" "thunderously" ;
+lin thundershower_N = mkN "thundershower" "thundershowers" ;
+lin thunderstorm_N = mkN "thunderstorm" "thunderstorms" ;
+lin thunderstruck_A = mkAMost "thunderstruck" "thunderstruckly" ;
+lin thundery_A = mkAMost "thundery" "thunderily" ;
+lin thunk_N = mkN "thunk" "thunks" ;
+lin thurible_N = mkN "thurible" "thuribles" ;
+lin thurifer_N = mkN "thurifer" "thurifers" ;
+lin thus_Adv = mkAdv "thus" ;
+lin thwack_N = mkN "thwack" "thwacks" ;
+lin thwack_V = mkV "thwack" "thwacked" "thwacked" ;
+lin thwart_N = mkN "thwart" "thwarts" ;
+lin thwart_V = mkV "thwart" "thwarted" "thwarted" ;
+lin thy_A = mkAMost "thy" "thily" ;
+lin thylacine_N = mkN "thylacine" "thylacines" ;
+lin thyme_N = mkN "thyme" "thymes" ;
+lin thymine_N = mkN "thymine" "thymines" ;
+lin thymol_N = mkN "thymol" "thymols" ;
+lin thymosin_N = mkN "thymosin" "thymosins" ;
+lin thyroglobulin_N = mkN "thyroglobulin" "thyroglobulins" ;
+lin thyroid_A = mkAMost "thyroid" "thyroidly" ;
+lin thyroid_N = mkN "thyroid" "thyroids" ;
+lin thyroidectomy_N = mkN "thyroidectomy" "thyroidectomies" ;
+lin thyroiditis_N = mkN "thyroiditis" "thyroiditises" ;
+lin thyronine_N = mkN "thyronine" "thyronines" ;
+lin thyroprotein_N = mkN "thyroprotein" "thyroproteins" ;
+lin thyrotoxic_A = mkAMost "thyrotoxic" "thyrotoxicly" ;
+lin thyrotropin_N = mkN "thyrotropin" "thyrotropins" ;
+lin thyroxine_N = mkN "thyroxine" "thyroxines" ;
+lin thyrse_N = mkN "thyrse" "thyrses" ;
+lin thyrsopteris_N = mkN "thyrsopteris" "thyrsopterises" ;
+lin thysanopter_N = mkN "thysanopter" "thysanopters" ;
+lin ti_N = mkN "ti" "IRREG" ;
+lin tiara_N = mkN "tiara" "tiaras" ;
+lin tibia_N = mkN "tibia" "tibiae" ;
+lin tibial_A = mkAMost "tibial" "tibially" ;
+lin tibialis_N = mkN "tibialis" "tibialises" ;
+lin tic_N = mkN "tic" "tics" ;
+lin tick_N = mkN "tick" "ticks" ;
+lin tick_V = mkV "tick" "ticked" "ticked" ;
+lin tick_tock_N = mkN "tick-tock" "tick-tocks" ;
+lin ticker_N = mkN "ticker" "tickers" ;
+lin ticker_tape_N = mkN "ticker-tape" "ticker-tapes" ;
+lin ticket_N = mkN "ticket" "tickets" ;
+lin ticket_V = mkV "ticket" "ticketed" "ticketed" ;
+lin ticket_collector_N = mkN "ticket-collector" "ticket-collectors" ;
+lin ticking_N = mkN "ticking" "tickings" ;
+lin tickle_N = mkN "tickle" "tickles" ;
+lin tickle_V = mkV "tickle" "tickled" "tickled" ;
+lin tickler_N = mkN "tickler" "ticklers" ;
+lin ticklish_A = mkAMost "ticklish" "ticklishly" ;
+lin ticktack_N = mkN "ticktack" "ticktacks" ;
+lin ticktacktoe_N = mkN "ticktacktoe" "ticktacktoes" ;
+lin ticktock_N = mkN "ticktock" "ticktocks" ;
+lin tidal_A = mkAMost "tidal" "tidally" ;
+lin tidbit_N = mkN "tidbit" "tidbits" ;
+lin tiddler_N = mkN "tiddler" "tiddlers" ;
+lin tiddley_A = mkAMost "tiddley" "tiddleily" ;
+lin tiddlywinks_N = mkN "tiddlywinks" "tiddlywinks" ;
+lin tide_N = mkN "tide" "tides" ;
+lin tide_V = mkV "tide" "tided" "tided" ;
+lin tideland_N = mkN "tideland" "tidelands" ;
+lin tidemark_N = mkN "tidemark" "tidemarks" ;
+lin tidewater_N = mkN "tidewater" "tidewaters" ;
+lin tideway_N = mkN "tideway" "tideways" ;
+lin tidiness_N = mkN "tidiness" "tidinesses" ;
+lin tidy_A = mkA "tidy" "tidier" "tidiest" "tidily" ;
+lin tidy_N = mkN "tidy" "tidies" ;
+lin tidy_V = mkV "tidy" "tidied" "tidied" ;
+lin tidytips_N = mkN "tidytips" "tidytipses" ;
+lin tie_N = mkN "tie" "ties" ;
+lin tie_V = mkV "tie" "tied" "tied" ;
+lin tie_on_A = mkAMost "tie-on" "tie-only" ;
+lin tie_up_N = mkN "tie-up" "tie-ups" ;
+lin tiebreaker_N = mkN "tiebreaker" "tiebreakers" ;
+lin tier_N = mkN "tier" "tiers" ;
+lin tiercel_N = mkN "tiercel" "tiercels" ;
+lin tiered_A = mkAMost "tiered" "tieredly" ;
+lin tiff_N = mkN "tiff" "tiffs" ;
+lin tiger_N = mkN "tiger" "tigers" ;
+lin tiger_lily_N = mkN "tiger-lily" "tiger-lilies" ;
+lin tigerish_A = mkAMost "tigerish" "tigerishly" ;
+lin tight_A = mkA "tight" "tighter" "tightest" "tightly" ;
+lin tight_Adv = mkAdv "tight" ;
+lin tight_laced_A = mkAMost "tight-laced" "tight-lacedly" ;
+lin tight_lipped_A = mkAMost "tight-lipped" "tight-lippedly" ;
+lin tight_wad_N = mkN "tight-wad" "tight-wads" ;
+lin tighten_tightened_V = mkV "tighten" "tightened" "tightened" ;
+lin tighten_tightenned_V = mkV "tighten" "tightenned" "tightenned" ;
+lin tightening_N = mkN "tightening" "tightenings" ;
+lin tightness_N = mkN "tightness" "tightnesses" ;
+lin tightrope_N = mkN "tightrope" "tightropes" ;
+lin tights_N = mkN "tights" "tightses" ;
+lin tiglon_N = mkN "tiglon" "tiglons" ;
+lin tigress_N = mkN "tigress" "tigresses" ;
+lin tike_N = mkN "tike" "tikes" ;
+lin tilde_N = mkN "tilde" "tildes" ;
+lin tile_N = mkN "tile" "tiles" ;
+lin tile_V = mkV "tile" "tiled" "tiled" ;
+lin tilefish_N = mkN "tilefish" "tilefishes" ;
+lin tiler_N = mkN "tiler" "tilers" ;
+lin tiling_N = mkN "tiling" "tilings" ;
+lin till_N = mkN "till" "tills" ;
+lin till_Prep = mkPrep "till" ;
+lin till_V = mkV "till" "tilled" "tilled" ;
+lin tillage_N = mkN "tillage" "tillages" ;
+lin tiller_N = mkN "tiller" "tillers" ;
+lin tilling_N = mkN "tilling" "tillings" ;
+lin tilt_N = mkN "tilt" "tilts" ;
+lin tilt_V = mkV "tilt" "tilted" "tilted" ;
+lin tilter_N = mkN "tilter" "tilters" ;
+lin tilth_N = mkN "tilth" "tilths" ;
+lin tiltyard_N = mkN "tiltyard" "tiltyards" ;
+lin timbale_N = mkN "timbale" "timbales" ;
+lin timber_N = mkN "timber" "timbers" ;
+lin timbered_A = mkAMost "timbered" "timberedly" ;
+lin timberman_N = mkN "timberman" "timbermans" ;
+lin timbre_N = mkN "timbre" "timbres" ;
+lin timbrel_N = mkN "timbrel" "timbrels" ;
+lin time_N = mkN "time" "times" ;
+lin time_V = mkV "time" "timed" "timed" ;
+lin time_ball_N = mkN "time-ball" "time-balls" ;
+lin time_bomb_N = mkN "time-bomb" "time-bombs" ;
+lin time_expired_A = mkAMost "time-expired" "time-expiredly" ;
+lin time_exposure_N = mkN "time-exposure" "time-exposures" ;
+lin time_fuse_N = mkN "time-fuse" "time-fuses" ;
+lin time_honoured_A = mkAMost "time-honoured" "time-honouredly" ;
+lin time_lag_N = mkN "time-lag" "time-lags" ;
+lin time_limit_N = mkN "time-limit" "time-limits" ;
+lin time_sheet_N = mkN "time-sheet" "time-sheets" ;
+lin time_signal_N = mkN "time-signal" "time-signals" ;
+lin time_switch_N = mkN "time-switch" "time-switches" ;
+lin timecard_N = mkN "timecard" "timecards" ;
+lin timekeeper_N = mkN "timekeeper" "timekeepers" ;
+lin timekeeping_N = mkN "timekeeping" "timekeepings" ;
+lin timeless_A = mkAMost "timeless" "timelessly" ;
+lin timeline_N = mkN "timeline" "timelines" ;
+lin timeliness_N = mkN "timeliness" "timelinesses" ;
+lin timely_A = mkAMost "timely" "timelily" ;
+lin timepiece_N = mkN "timepiece" "timepieces" ;
+lin timer_N = mkN "timer" "timers" ;
+lin times_N = mkN "times" "timeses" ;
+lin times_Prep = mkPrep "times" ;
+lin timesaving_A = mkAMost "timesaving" "timesavingly" ;
+lin timeserver_N = mkN "timeserver" "timeservers" ;
+lin timeserving_A = mkAMost "timeserving" "timeservingly" ;
+lin timetable_N = mkN "timetable" "timetables" ;
+lin timework_N = mkN "timework" "timeworks" ;
+lin timid_A = mkAMost "timid" "timidly" ;
+lin timid_N = mkN "timid" "timids" ;
+lin timidity_N = mkN "timidity" "timidities" ;
+lin timidness_N = mkN "timidness" "timidnesses" ;
+lin timing_N = mkN "timing" "timings" ;
+lin timolol_N = mkN "timolol" "timolols" ;
+lin timorous_A = mkAMost "timorous" "timorously" ;
+lin timothy_N = mkN "timothy" "timothies" ;
+lin timpanist_N = mkN "timpanist" "timpanists" ;
+lin timucu_N = mkN "timucu" "timucus" ;
+lin tin_N = mkN "tin" "tins" ;
+lin tin_V = mkV "tin" "tinned" "tinned" ;
+lin tin_opener_N = mkN "tin-opener" "tin-openers" ;
+lin tin_pan_alley_N = mkN "tin pan alley" "tin pan alleys" ;
+lin tin_plate_N = mkN "tin-plate" "tin-plates" ;
+lin tinamou_N = mkN "tinamou" "tinamous" ;
+lin tincture_N = mkN "tincture" "tinctures" ;
+lin tincture_V = mkV "tincture" "tinctured" "tinctured" ;
+lin tinder_N = mkN "tinder" "tinders" ;
+lin tinderbox_N = mkN "tinderbox" "tinderboxes" ;
+lin tine_N = mkN "tine" "tines" ;
+lin tinea_N = mkN "tinea" "tineas" ;
+lin tined_A = mkAMost "tined" "tinedly" ;
+lin tineid_N = mkN "tineid" "tineids" ;
+lin tineoid_N = mkN "tineoid" "tineoids" ;
+lin tinfoil_N = mkN "tinfoil" "tinfoils" ;
+lin ting_N = mkN "ting" "tings" ;
+lin ting_V = mkV "ting" "tinged" "tinged" ;
+lin tinge_N = mkN "tinge" "tinges" ;
+lin tinge_V = mkV "tinge" "tinged" "tinged" ;
+lin tingle_N = mkN "tingle" "tingles" ;
+lin tingle_V = mkV "tingle" "tingled" "tingled" ;
+lin tinker_N = mkN "tinker" "tinkers" ;
+lin tinker_V = mkV "tinker" "tinkered" "tinkered" ;
+lin tinkerer_N = mkN "tinkerer" "tinkerers" ;
+lin tinkle_N = mkN "tinkle" "IRREG" ;
+lin tinkle_V = mkV "tinkle" "tinkled" "tinkled" ;
+lin tinning_N = mkN "tinning" "tinnings" ;
+lin tinnitus_N = mkN "tinnitus" "tinnituses" ;
+lin tinny_A = mkA "tinny" "tinnier" "tinniest" "tinnily" ;
+lin tinsel_N = mkN "tinsel" "tinsels" ;
+lin tinsel_V = mkV "tinsel" "tinselled" "tinselled" ;
+lin tinselly_A = mkAMost "tinselly" "tinsellily" ;
+lin tinsmith_N = mkN "tinsmith" "tinsmiths" ;
+lin tint_N = mkN "tint" "tints" ;
+lin tint_V = mkV "tint" "tinted" "tinted" ;
+lin tintack_N = mkN "tintack" "tintacks" ;
+lin tinter_N = mkN "tinter" "tinters" ;
+lin tinting_N = mkN "tinting" "tintings" ;
+lin tintinnabulation_N = mkN "tintinnabulation" "tintinnabulations" ;
+lin tinware_N = mkN "tinware" "tinwares" ;
+lin tiny_A = mkA "tiny" "tinier" "tiniest" "tinily" ;
+lin tip_N = mkN "tip" "tips" ;
+lin tip_V = mkV "tip" "tipped" "tipped" ;
+lin tip_and_run_A = mkAMost "tip-and-run" "tip-and-runly" ;
+lin tip_off_N = mkN "tip-off" "tip-offs" ;
+lin tip_top_A = mkAMost "tip-top" "tip-toply" ;
+lin tip_top_Adv = mkAdv "tip-top" ;
+lin tip_up_A = mkAMost "tip-up" "tip-uply" ;
+lin tipper_N = mkN "tipper" "tippers" ;
+lin tippet_N = mkN "tippet" "tippets" ;
+lin tipple_N = mkN "tipple" "tipples" ;
+lin tipple_V = mkV "tipple" "tippled" "tippled" ;
+lin tippler_N = mkN "tippler" "tipplers" ;
+lin tipstaff_N = mkN "tipstaff" "tipstaffs" ;
+lin tipster_N = mkN "tipster" "tipsters" ;
+lin tipsy_A = mkAMost "tipsy" "tipsily" ;
+lin tiptoe_A = mkAMost "tiptoe" "tiptoely" ;
+lin tiptoe_Adv = mkAdv "tiptoe" ;
+lin tiptoe_N = mkN "tiptoe" "tiptoes" ;
+lin tiptoe_V = mkV "tiptoe" "IRREG" "IRREG" ;
+lin tiptop_N = mkN "tiptop" "tiptops" ;
+lin tipu_N = mkN "tipu" "tipus" ;
+lin tirade_N = mkN "tirade" "tirades" ;
+lin tiramisu_N = mkN "tiramisu" "tiramisus" ;
+lin tire_N = mkN "tire" "tires" ;
+lin tire_V = mkV "tire" "tired" "tired" ;
+lin tiredly_Adv = mkAdv "tiredly" ;
+lin tiredness_N = mkN "tiredness" "tirednesses" ;
+lin tireless_A = mkAMost "tireless" "tirelessly" ;
+lin tiresome_A = mkAMost "tiresome" "tiresomely" ;
+lin tiring_Adv = mkAdv "tiring" ;
+lin tiro_N = mkN "tiro" "tiros" ;
+lin tisane_N = mkN "tisane" "tisanes" ;
+lin tissue_N = mkN "tissue" "tissues" ;
+lin tit_N = mkN "tit" "tits" ;
+lin titan_N = mkN "titan" "titans" ;
+lin titanic_A = mkAMost "titanic" "titanicly" ;
+lin titanium_N = mkN "titanium" "titaniums" ;
+lin titanosaur_N = mkN "titanosaur" "titanosaurs" ;
+lin titbit_N = mkN "titbit" "titbits" ;
+lin titer_N = mkN "titer" "titers" ;
+lin titfer_N = mkN "titfer" "titfers" ;
+lin tithe_N = mkN "tithe" "tithes" ;
+lin tithe_barn_N = mkN "tithe-barn" "tithe-barns" ;
+lin tither_N = mkN "tither" "tithers" ;
+lin titi_N = mkN "titi" "titis" ;
+lin titillate_V = mkV "titillate" "titillated" "titillated" ;
+lin titillating_A = mkAMost "titillating" "titillatingly" ;
+lin titillation_N = mkN "titillation" "titillations" ;
+lin titivate_V = mkV "titivate" "titivated" "titivated" ;
+lin titivation_N = mkN "titivation" "titivations" ;
+lin titlark_N = mkN "titlark" "titlarks" ;
+lin title_N = mkN "title" "titles" ;
+lin title_deed_N = mkN "title-deed" "title-deeds" ;
+lin title_page_N = mkN "title-page" "title-pages" ;
+lin title_role_N = mkN "title-role" "title-roles" ;
+lin titled_A = mkAMost "titled" "titledly" ;
+lin titmouse_N = mkN "titmouse" "titmice" ;
+lin titration_N = mkN "titration" "titrations" ;
+lin titrator_N = mkN "titrator" "titrators" ;
+lin titter_N = mkN "titter" "titters" ;
+lin titter_V = mkV "titter" "tittered" "tittered" ;
+lin titterer_N = mkN "titterer" "titterers" ;
+lin tittivate_V = mkV "tittivate" "tittivated" "tittivated" ;
+lin tittle_N = mkN "tittle" "IRREG" ;
+lin tittle_tattle_N = mkN "tittle-tattle" "tittle-tattles" ;
+lin tittle_tattle_V = mkV "tittle-tattle" "tittle-tattled" "tittle-tattled" ;
+lin titular_A = mkAMost "titular" "titularly" ;
+lin tiyin_N = mkN "tiyin" "tiyins" ;
+lin tizzy_N = mkN "tizzy" "tizzies" ;
+lin tnt_N = mkN "tnt" "tnts" ;
+lin to_Adv = mkAdv "to" ;
+lin to_Prep = mkPrep "to" ;
+lin to_date_Adv = mkAdv "to date" ;
+lin to_do_N = mkN "to-do" "to-dos" ;
+lin toad_N = mkN "toad" "toads" ;
+lin toad_in_the_hole_N = mkN "toad-in-the-hole" "IRREG" ;
+lin toadfish_N = mkN "toadfish" "toadfishes" ;
+lin toadflax_N = mkN "toadflax" "toadflaxes" ;
+lin toadstool_N = mkN "toadstool" "toadstools" ;
+lin toady_N = mkN "toady" "toadies" ;
+lin toady_V = mkV "toady" "toadied" "toadied" ;
+lin toast_N = mkN "toast" "toasts" ;
+lin toast_V = mkV "toast" "toasted" "toasted" ;
+lin toaster_N = mkN "toaster" "toasters" ;
+lin toasting_N = mkN "toasting" "toastings" ;
+lin toasting_fork_N = mkN "toasting-fork" "toasting-forks" ;
+lin toastmaster_N = mkN "toastmaster" "toastmasters" ;
+lin toastrack_N = mkN "toastrack" "toastracks" ;
+lin tobacco_N = mkN "tobacco" "tobaccos" ;
+lin tobacconist_N = mkN "tobacconist" "tobacconists" ;
+lin tobagonian_A = mkAMost "tobagonian" "tobagonianly" ;
+lin tobagonian_N = mkN "tobagonian" "tobagonians" ;
+lin toboggan_N = mkN "toboggan" "toboggans" ;
+lin toboggan_V = mkV "toboggan" "tobogganed" "tobogganed" ;
+lin tobogganing_N = mkN "tobogganing" "tobogganings" ;
+lin tobogganist_N = mkN "tobogganist" "tobogganists" ;
+lin tobramycin_N = mkN "tobramycin" "tobramycins" ;
+lin toby_N = mkN "toby" "tobies" ;
+lin toby_jug_N = mkN "toby-jug" "toby-jugs" ;
+lin tocainide_N = mkN "tocainide" "tocainides" ;
+lin toccata_N = mkN "toccata" "toccatas" ;
+lin tocsin_N = mkN "tocsin" "tocsins" ;
+lin tod_A = mkA "tod" "todder" "toddest" "todly" ;
+lin tod_N = mkN "tod" "tods" ;
+lin today_Adv = mkAdv "today" ;
+lin today_N = mkN "today" "todays" ;
+lin toddle_V = mkV "toddle" "toddled" "toddled" ;
+lin toddler_N = mkN "toddler" "toddlers" ;
+lin toddy_N = mkN "toddy" "toddies" ;
+lin tody_N = mkN "tody" "todies" ;
+lin toe_N = mkN "toe" "toes" ;
+lin toe_V = mkV "toe" "IRREG" "IRREG" ;
+lin toea_N = mkN "toea" "toeas" ;
+lin toecap_N = mkN "toecap" "toecaps" ;
+lin toed_A = mkA "toed" "toeder" "toedest" "toedly" ;
+lin toehold_N = mkN "toehold" "toeholds" ;
+lin toeless_A = mkAMost "toeless" "toelessly" ;
+lin toenail_N = mkN "toenail" "toenails" ;
+lin toetoe_N = mkN "toetoe" "toetoes" ;
+lin toff_N = mkN "toff" "toffs" ;
+lin toffee_N = mkN "toffee" "toffees" ;
+lin tog_V = mkV "tog" "togged" "togged" ;
+lin toga_N = mkN "toga" "togas" ;
+lin together_A = mkAMost "together" "togetherly" ;
+lin together_Adv = mkAdv "together" ;
+lin togetherness_N = mkN "togetherness" "togethernesses" ;
+lin toggle_N = mkN "toggle" "toggles" ;
+lin togolese_A = mkAMost "togolese" "togolesely" ;
+lin togolese_N = mkN "togolese" "togolese" ;
+lin togs_N = mkN "togs" "togses" ;
+lin toil_N = mkN "toil" "toils" ;
+lin toil_V = mkV "toil" "toiled" "toiled" ;
+lin toiler_N = mkN "toiler" "toilers" ;
+lin toilet_N = mkN "toilet" "toilets" ;
+lin toilet_paper_N = mkN "toilet-paper" "toilet-papers" ;
+lin toilet_powder_N = mkN "toilet-powder" "toilet-powders" ;
+lin toilet_roll_N = mkN "toilet-roll" "toilet-rolls" ;
+lin toilet_table_N = mkN "toilet-table" "toilet-tables" ;
+lin toiletry_N = mkN "toiletry" "toiletries" ;
+lin toilsome_A = mkAMost "toilsome" "toilsomely" ;
+lin tokamak_N = mkN "tokamak" "tokamaks" ;
+lin tokay_N = mkN "tokay" "tokays" ;
+lin toke_N = mkN "toke" "tokes" ;
+lin token_N = mkN "token" "tokens" ;
+lin tolazamide_N = mkN "tolazamide" "tolazamides" ;
+lin tolazoline_N = mkN "tolazoline" "tolazolines" ;
+lin tolbutamide_N = mkN "tolbutamide" "tolbutamides" ;
+lin tole_N = mkN "tole" "toles" ;
+lin tolerable_A = mkAMost "tolerable" "tolerably" ;
+lin tolerance_N = mkN "tolerance" "tolerances" ;
+lin tolerant_A = mkAMost "tolerant" "tolerantly" ;
+lin tolerate_V = mkV "tolerate" "tolerated" "tolerated" ;
+lin toleration_N = mkN "toleration" "tolerations" ;
+lin toll_N = mkN "toll" "tolls" ;
+lin toll_V = mkV "toll" "tolled" "tolled" ;
+lin tollbar_N = mkN "tollbar" "tollbars" ;
+lin tollbooth_N = mkN "tollbooth" "tollbooths" ;
+lin toller_N = mkN "toller" "tollers" ;
+lin tollgate_N = mkN "tollgate" "tollgates" ;
+lin tollhouse_N = mkN "tollhouse" "tollhouses" ;
+lin tollkeeper_N = mkN "tollkeeper" "tollkeepers" ;
+lin tolu_N = mkN "tolu" "tolus" ;
+lin toluene_N = mkN "toluene" "toluenes" ;
+lin tom_N = mkN "tom" "toms" ;
+lin tomahawk_N = mkN "tomahawk" "tomahawks" ;
+lin tomahawk_V = mkV "tomahawk" "tomahawked" "tomahawked" ;
+lin tomalley_N = mkN "tomalley" "tomalleys" ;
+lin tomatillo_N = mkN "tomatillo" "tomatilloes" ;
+lin tomato_N = mkN "tomato" "tomatoes" ;
+lin tomb_N = mkN "tomb" "tombs" ;
+lin tombac_N = mkN "tombac" "tombacs" ;
+lin tombola_N = mkN "tombola" "tombolas" ;
+lin tomboy_N = mkN "tomboy" "tomboys" ;
+lin tombstone_N = mkN "tombstone" "tombstones" ;
+lin tomcat_N = mkN "tomcat" "tomcats" ;
+lin tome_N = mkN "tome" "tomes" ;
+lin tomentose_A = mkAMost "tomentose" "tomentosely" ;
+lin tomentum_N = mkN "tomentum" "tomentums" ;
+lin tomfool_N = mkN "tomfool" "tomfools" ;
+lin tomfoolery_N = mkN "tomfoolery" "tomfooleries" ;
+lin tommy_gun_N = mkN "tommy-gun" "tommy-guns" ;
+lin tommy_rot_N = mkN "tommy-rot" "tommy-rots" ;
+lin tomograph_N = mkN "tomograph" "tomographs" ;
+lin tomorrow_Adv = mkAdv "tomorrow" ;
+lin tomorrow_N = mkN "tomorrow" "tomorrows" ;
+lin tomtate_N = mkN "tomtate" "tomtates" ;
+lin tomtit_N = mkN "tomtit" "tomtits" ;
+lin tomtom_N = mkN "tomtom" "tomtoms" ;
+lin ton_N = mkN "ton" "tons" ;
+lin ton_V = mkV "ton" "tonned" "tonned" ;
+lin tonal_A = mkAMost "tonal" "tonally" ;
+lin tonality_N = mkN "tonality" "tonalities" ;
+lin tone_N = mkN "tone" "tones" ;
+lin tone_V = mkV "tone" "toned" "toned" ;
+lin tone_deaf_A = mkAMost "tone-deaf" "tone-deafly" ;
+lin tone_poem_N = mkN "tone-poem" "tone-poems" ;
+lin toneless_A = mkAMost "toneless" "tonelessly" ;
+lin toner_N = mkN "toner" "toners" ;
+lin tongan_A = mkAMost "tongan" "tonganly" ;
+lin tongan_N = mkN "tongan" "tongans" ;
+lin tongs_N = mkN "tongs" "tongses" ;
+lin tongue_N = mkN "tongue" "tongues" ;
+lin tongue_in_cheek_A = mkAMost "tongue-in-cheek" "tongue-in-cheekly" ;
+lin tongue_in_cheek_Adv = mkAdv "tongue-in-cheek" ;
+lin tongue_tied_A = mkAMost "tongue-tied" "tongue-tiedly" ;
+lin tongue_twister_N = mkN "tongue-twister" "tongue-twisters" ;
+lin tongued_A = mkAMost "tongued" "tonguedly" ;
+lin tonguefish_N = mkN "tonguefish" "tonguefishes" ;
+lin tongueflower_N = mkN "tongueflower" "tongueflowers" ;
+lin tongueless_A = mkAMost "tongueless" "tonguelessly" ;
+lin tonguelike_A = mkAMost "tonguelike" "tonguelikely" ;
+lin tonic_A = mkAMost "tonic" "tonicly" ;
+lin tonic_N = mkN "tonic" "tonics" ;
+lin tonic_sol_fa_N = mkN "tonic sol-fa" "tonic sol-fas" ;
+lin tonicity_N = mkN "tonicity" "tonicities" ;
+lin tonight_Adv = mkAdv "tonight" ;
+lin tonight_N = mkN "tonight" "tonights" ;
+lin tonnage_N = mkN "tonnage" "tonnages" ;
+lin tonne_N = mkN "tonne" "tonnes" ;
+lin tonometer_N = mkN "tonometer" "tonometers" ;
+lin tonometry_N = mkN "tonometry" "tonometries" ;
+lin tons_N = mkN "tons" "tonses" ;
+lin tonsil_N = mkN "tonsil" "tonsils" ;
+lin tonsillectomy_N = mkN "tonsillectomy" "tonsillectomies" ;
+lin tonsillitis_N = mkN "tonsillitis" "tonsillitises" ;
+lin tonsorial_A = mkAMost "tonsorial" "tonsorially" ;
+lin tonsure_N = mkN "tonsure" "tonsures" ;
+lin tonsure_V = mkV "tonsure" "tonsured" "tonsured" ;
+lin tontine_N = mkN "tontine" "tontines" ;
+lin too_Adv = mkAdv "too" ;
+lin tool_N = mkN "tool" "tools" ;
+lin tool_V = mkV "tool" "tooled" "tooled" ;
+lin toolbox_N = mkN "toolbox" "toolboxes" ;
+lin toolmaker_N = mkN "toolmaker" "toolmakers" ;
+lin toolshed_N = mkN "toolshed" "toolsheds" ;
+lin toot_N = mkN "toot" "toots" ;
+lin toot_V = mkV "toot" "tooted" "tooted" ;
+lin tooth_N = mkN "tooth" "teeth" ;
+lin toothache_N = mkN "toothache" "toothaches" ;
+lin toothbrush_N = mkN "toothbrush" "toothbrushes" ;
+lin toothed_A = mkAMost "toothed" "toothedly" ;
+lin toothless_A = mkAMost "toothless" "toothlessly" ;
+lin toothlike_A = mkAMost "toothlike" "toothlikely" ;
+lin toothpaste_N = mkN "toothpaste" "toothpastes" ;
+lin toothpick_N = mkN "toothpick" "toothpicks" ;
+lin toothpowder_N = mkN "toothpowder" "toothpowders" ;
+lin toothsome_A = mkAMost "toothsome" "toothsomely" ;
+lin toothy_A = mkA "toothy" "toothier" "toothiest" "toothily" ;
+lin tootle_N = mkN "tootle" "tootles" ;
+lin tootle_V = mkV "tootle" "tootled" "tootled" ;
+lin top_N = mkN "top" "tops" ;
+lin top_V = mkV "top" "topped" "topped" ;
+lin top_boot_N = mkN "top-boot" "top-boots" ;
+lin top_dress_V = mkV "top-dress" "top-dressed" "top-dressed" ;
+lin top_dressing_N = mkN "top-dressing" "top-dressings" ;
+lin top_flight_A = mkAMost "top-flight" "top-flightly" ;
+lin top_heavy_A = mkAMost "top-heavy" "top-heavily" ;
+lin top_hole_A = mkAMost "top-hole" "top-holely" ;
+lin top_ranking_A = mkAMost "top-ranking" "top-rankingly" ;
+lin topaz_N = mkN "topaz" "topazes" ;
+lin topcoat_N = mkN "topcoat" "topcoats" ;
+lin tope_V = mkV "tope" "toped" "toped" ;
+lin toper_N = mkN "toper" "topers" ;
+lin topgallant_A = mkAMost "topgallant" "topgallantly" ;
+lin topgallant_N = mkN "topgallant" "topgallants" ;
+lin tophus_N = mkN "tophus" "tophuses" ;
+lin topi_N = mkN "topi" "topis" ;
+lin topiary_N = mkN "topiary" "topiaries" ;
+lin topic_N = mkN "topic" "topics" ;
+lin topical_A = mkAMost "topical" "topically" ;
+lin topicality_N = mkN "topicality" "topicalities" ;
+lin topicalization_N = mkN "topicalization" "topicalizations" ;
+lin topknot_N = mkN "topknot" "topknots" ;
+lin topless_A = mkAMost "topless" "toplessly" ;
+lin topmast_N = mkN "topmast" "topmasts" ;
+lin topminnow_N = mkN "topminnow" "topminnows" ;
+lin topmost_A = mkAMost "topmost" "topmostly" ;
+lin topnotch_A = mkAMost "topnotch" "topnotchly" ;
+lin topognosia_N = mkN "topognosia" "topognosias" ;
+lin topographical_A = mkAMost "topographical" "topographically" ;
+lin topography_N = mkN "topography" "topographies" ;
+lin topolatry_N = mkN "topolatry" "topolatries" ;
+lin topological_A = mkAMost "topological" "topologically" ;
+lin topology_N = mkN "topology" "topologies" ;
+lin toponymy_N = mkN "toponymy" "toponymies" ;
+lin topos_N = mkN "topos" "toposes" ;
+lin topper_N = mkN "topper" "toppers" ;
+lin topping_N = mkN "topping" "toppings" ;
+lin topple_V = mkV "topple" "toppled" "toppled" ;
+lin topsail_N = mkN "topsail" "topsails" ;
+lin topside_N = mkN "topside" "topsides" ;
+lin topsoil_N = mkN "topsoil" "topsoils" ;
+lin topspin_N = mkN "topspin" "topspins" ;
+lin topsy_turvy_A = mkAMost "topsy-turvy" "topsy-turvily" ;
+lin topsy_turvy_Adv = mkAdv "topsy-turvy" ;
+lin topsy_turvydom_N = mkN "topsy-turvydom" "topsy-turvydoms" ;
+lin toque_N = mkN "toque" "toques" ;
+lin tor_N = mkN "tor" "tors" ;
+lin torch_N = mkN "torch" "torches" ;
+lin torch_V = mkV "torch" "torched" "torched" ;
+lin torch_race_N = mkN "torch-race" "torch-races" ;
+lin torch_singer_N = mkN "torch-singer" "torch-singers" ;
+lin torchbearer_N = mkN "torchbearer" "torchbearers" ;
+lin torchlight_N = mkN "torchlight" "torchlights" ;
+lin tore_V = mkV "tore" "tored" "tored" ;
+lin toreador_N = mkN "toreador" "toreadors" ;
+lin torero_N = mkN "torero" "toreroes" ;
+lin torment_N = mkN "torment" "torments" ;
+lin torment_V = mkV "torment" "tormented" "tormented" ;
+lin tormenter_N = mkN "tormenter" "tormenters" ;
+lin tormentor_N = mkN "tormentor" "tormentors" ;
+lin tornado_N = mkN "tornado" "tornadoes" ;
+lin toroid_N = mkN "toroid" "toroids" ;
+lin toroidal_A = mkAMost "toroidal" "toroidally" ;
+lin torpedo_N = mkN "torpedo" "torpedoes" ;
+lin torpedo_V = mkV "torpedo" "torpedoed" "torpedoed" ;
+lin torpedo_boat_N = mkN "torpedo-boat" "torpedo-boats" ;
+lin torpedo_tube_N = mkN "torpedo-tube" "torpedo-tubes" ;
+lin torpid_A = mkAMost "torpid" "torpidly" ;
+lin torpidity_N = mkN "torpidity" "torpidities" ;
+lin torpidness_N = mkN "torpidness" "torpidnesses" ;
+lin torpor_N = mkN "torpor" "torpors" ;
+lin torque_N = mkN "torque" "torques" ;
+lin torr_N = mkN "torr" "torrs" ;
+lin torrent_N = mkN "torrent" "torrents" ;
+lin torrential_A = mkAMost "torrential" "torrentially" ;
+lin torrid_A = mkAMost "torrid" "torridly" ;
+lin torridity_N = mkN "torridity" "torridities" ;
+lin torsion_N = mkN "torsion" "torsions" ;
+lin torso_N = mkN "torso" "torsos" ;
+lin tort_N = mkN "tort" "torts" ;
+lin torte_N = mkN "torte" "tortes" ;
+lin tortellini_N = mkN "tortellini" "tortellinis" ;
+lin torticollis_N = mkN "torticollis" "torticollises" ;
+lin tortilla_N = mkN "tortilla" "tortillas" ;
+lin tortious_A = mkAMost "tortious" "tortiously" ;
+lin tortoise_N = mkN "tortoise" "tortoises" ;
+lin tortoiseshell_N = mkN "tortoiseshell" "tortoiseshells" ;
+lin tortricid_N = mkN "tortricid" "tortricids" ;
+lin tortuosity_N = mkN "tortuosity" "tortuosities" ;
+lin tortuous_A = mkAMost "tortuous" "tortuously" ;
+lin torture_N = mkN "torture" "tortures" ;
+lin torture_V = mkV "torture" "tortured" "tortured" ;
+lin torturer_N = mkN "torturer" "torturers" ;
+lin torulose_A = mkAMost "torulose" "torulosely" ;
+lin torus_N = mkN "torus" "toruses" ;
+lin tory_N = mkN "tory" "tories" ;
+lin tosh_N = mkN "tosh" "toshes" ;
+lin toss_N = mkN "toss" "tosses" ;
+lin toss_V = mkV "toss" "tossed" "tossed" ;
+lin toss_up_N = mkN "toss-up" "toss-ups" ;
+lin tosser_N = mkN "tosser" "tossers" ;
+lin tossup_N = mkN "tossup" "tossups" ;
+lin tostada_N = mkN "tostada" "tostadas" ;
+lin tot_N = mkN "tot" "tots" ;
+lin tot_V = mkV "tot" "totted" "totted" ;
+lin total_A = mkAMost "total" "totally" ;
+lin total_N = mkN "total" "totals" ;
+lin total_totaled_V = mkV "total" "totaled" "totaled" ;
+lin total_totalled_V = mkV "total" "totalled" "totalled" ;
+lin totalitarian_A = mkAMost "totalitarian" "totalitarianly" ;
+lin totalitarian_N = mkN "totalitarian" "totalitarians" ;
+lin totalitarianism_N = mkN "totalitarianism" "totalitarianisms" ;
+lin totality_N = mkN "totality" "totalities" ;
+lin totalizator_N = mkN "totalizator" "totalizators" ;
+lin totara_N = mkN "totara" "totaras" ;
+lin tote_N = mkN "tote" "totes" ;
+lin tote_V = mkV "tote" "toted" "toted" ;
+lin totem_N = mkN "totem" "totems" ;
+lin totem_pole_N = mkN "totem-pole" "totem-poles" ;
+lin totemic_A = mkAMost "totemic" "totemicly" ;
+lin totemism_N = mkN "totemism" "totemisms" ;
+lin totemist_N = mkN "totemist" "totemists" ;
+lin totipotency_N = mkN "totipotency" "totipotencies" ;
+lin totipotent_A = mkAMost "totipotent" "totipotently" ;
+lin totter_V = mkV "totter" "tottered" "tottered" ;
+lin tottery_A = mkAMost "tottery" "totterily" ;
+lin toucan_N = mkN "toucan" "toucans" ;
+lin toucanet_N = mkN "toucanet" "toucanets" ;
+lin touch_N = mkN "touch" "touches" ;
+lin touch_V = mkV "touch" "touched" "touched" ;
+lin touch_and_go_A = mkAMost "touch-and-go" "touch-and-goly" ;
+lin touch_type_V = mkV "touch-type" "touch-typed" "touch-typed" ;
+lin touchable_A = mkAMost "touchable" "touchably" ;
+lin touchback_N = mkN "touchback" "touchbacks" ;
+lin touchdown_N = mkN "touchdown" "touchdowns" ;
+lin toucher_N = mkN "toucher" "touchers" ;
+lin touchiness_N = mkN "touchiness" "touchinesses" ;
+lin touching_A = mkAMost "touching" "touchingly" ;
+lin touchline_N = mkN "touchline" "touchlines" ;
+lin touchstone_N = mkN "touchstone" "touchstones" ;
+lin touchy_A = mkA "touchy" "touchier" "touchiest" "touchily" ;
+lin tough_A = mkA "tough" "tougher" "toughest" "toughly" ;
+lin tough_N = mkN "tough" "toughs" ;
+lin toughen_V = mkV "toughen" "toughened" "toughened" ;
+lin toughie_N = mkN "toughie" "toughies" ;
+lin toughness_N = mkN "toughness" "toughnesses" ;
+lin toupee_N = mkN "toupee" "toupees" ;
+lin toupeed_A = mkAMost "toupeed" "toupeedly" ;
+lin tour_N = mkN "tour" "tours" ;
+lin tour_V = mkV "tour" "toured" "toured" ;
+lin tour_de_force_N = mkN "tour de force" "IRREG" ;
+lin touraco_N = mkN "touraco" "touracoes" ;
+lin touring_N = mkN "touring" "tourings" ;
+lin tourism_N = mkN "tourism" "tourisms" ;
+lin tourist_N = mkN "tourist" "tourists" ;
+lin touristed_A = mkAMost "touristed" "touristedly" ;
+lin tourmaline_N = mkN "tourmaline" "tourmalines" ;
+lin tournament_N = mkN "tournament" "tournaments" ;
+lin tournedos_N = mkN "tournedos" "tournedoses" ;
+lin tourney_N = mkN "tourney" "tourneys" ;
+lin tourniquet_N = mkN "tourniquet" "tourniquets" ;
+lin tourtiere_N = mkN "tourtiere" "tourtieres" ;
+lin tousle_V = mkV "tousle" "tousled" "tousled" ;
+lin tout_N = mkN "tout" "touts" ;
+lin tout_V = mkV "tout" "touted" "touted" ;
+lin tout_ensemble_Adv = mkAdv "tout ensemble" ;
+lin tout_ensemble_N = mkN "tout ensemble" "IRREG" ;
+lin tovarich_N = mkN "tovarich" "tovariches" ;
+lin tow_N = mkN "tow" "tows" ;
+lin tow_V = mkV "tow" "towed" "towed" ;
+lin toward_Prep = mkPrep "toward" ;
+lin towards_Prep = mkPrep "towards" ;
+lin towel_N = mkN "towel" "towels" ;
+lin towel_V = mkV "towel" "towelled" "towelled" ;
+lin towel_horse_N = mkN "towel-horse" "towel-horses" ;
+lin towel_rack_N = mkN "towel-rack" "towel-racks" ;
+lin towel_rail_N = mkN "towel-rail" "towel-rails" ;
+lin toweling_N = mkN "toweling" "towelings" ;
+lin towelling_N = mkN "towelling" "towellings" ;
+lin tower_N = mkN "tower" "towers" ;
+lin tower_V = mkV "tower" "towered" "towered" ;
+lin tower_block_N = mkN "tower-block" "tower-blocks" ;
+lin towhead_N = mkN "towhead" "towheads" ;
+lin towhee_N = mkN "towhee" "towhees" ;
+lin towing_line_N = mkN "towing-line" "towing-lines" ;
+lin towing_path_N = mkN "towing-path" "towing-paths" ;
+lin towing_rope_N = mkN "towing-rope" "towing-ropes" ;
+lin towline_N = mkN "towline" "towlines" ;
+lin town_N = mkN "town" "towns" ;
+lin town_crier_N = mkN "town-crier" "town-criers" ;
+lin town_gas_N = mkN "town-gas" "town-gases" ;
+lin townee_N = mkN "townee" "townees" ;
+lin townie_N = mkN "townie" "townies" ;
+lin township_N = mkN "township" "townships" ;
+lin townsman_N = mkN "townsman" "townsmen" ;
+lin towpath_N = mkN "towpath" "towpaths" ;
+lin towrope_N = mkN "towrope" "towropes" ;
+lin toxaemia_N = mkN "toxaemia" "toxaemias" ;
+lin toxemia_N = mkN "toxemia" "toxemias" ;
+lin toxic_A = mkAMost "toxic" "toxicly" ;
+lin toxicity_N = mkN "toxicity" "toxicities" ;
+lin toxicognath_N = mkN "toxicognath" "toxicognaths" ;
+lin toxicological_A = mkAMost "toxicological" "toxicologically" ;
+lin toxicologist_N = mkN "toxicologist" "toxicologists" ;
+lin toxicology_N = mkN "toxicology" "toxicologies" ;
+lin toxin_N = mkN "toxin" "toxins" ;
+lin toxoplasmosis_N = mkN "toxoplasmosis" "toxoplasmosises" ;
+lin toy_N = mkN "toy" "toys" ;
+lin toy_V = mkV "toy" "toyed" "toyed" ;
+lin toyon_N = mkN "toyon" "toyons" ;
+lin toyshop_N = mkN "toyshop" "toyshops" ;
+lin trabeated_A = mkAMost "trabeated" "trabeatedly" ;
+lin trabecula_N = mkN "trabecula" "trabeculas" ;
+lin trabecular_A = mkAMost "trabecular" "trabecularly" ;
+lin trace_N = mkN "trace" "traces" ;
+lin trace_V = mkV "trace" "traced" "traced" ;
+lin traceable_A = mkAMost "traceable" "traceably" ;
+lin tracer_N = mkN "tracer" "tracers" ;
+lin tracery_N = mkN "tracery" "traceries" ;
+lin trachea_N = mkN "trachea" "tracheae" ;
+lin tracheal_A = mkAMost "tracheal" "tracheally" ;
+lin tracheid_N = mkN "tracheid" "tracheids" ;
+lin tracheitis_N = mkN "tracheitis" "tracheitises" ;
+lin tracheobronchitis_N = mkN "tracheobronchitis" "tracheobronchitises" ;
+lin tracheostomy_N = mkN "tracheostomy" "tracheostomies" ;
+lin trachodon_N = mkN "trachodon" "trachodons" ;
+lin trachoma_N = mkN "trachoma" "trachomas" ;
+lin tracing_N = mkN "tracing" "tracings" ;
+lin tracing_paper_N = mkN "tracing-paper" "tracing-papers" ;
+lin track_N = mkN "track" "tracks" ;
+lin track_V = mkV "track" "tracked" "tracked" ;
+lin trackball_N = mkN "trackball" "trackballs" ;
+lin tracker_N = mkN "tracker" "trackers" ;
+lin trackless_A = mkAMost "trackless" "tracklessly" ;
+lin tract_N = mkN "tract" "tracts" ;
+lin tractability_N = mkN "tractability" "tractabilities" ;
+lin tractable_A = mkAMost "tractable" "tractably" ;
+lin traction_N = mkN "traction" "tractions" ;
+lin traction_engine_N = mkN "traction-engine" "traction-engines" ;
+lin tractive_A = mkAMost "tractive" "tractively" ;
+lin tractor_N = mkN "tractor" "tractors" ;
+lin trad_N = mkN "trad" "trads" ;
+lin trade_N = mkN "trade" "trades" ;
+lin trade_V = mkV "trade" "traded" "traded" ;
+lin trade_in_N = mkN "trade-in" "trade-ins" ;
+lin trade_union_N = mkN "trade-union" "trade-unions" ;
+lin trade_unionism_N = mkN "trade-unionism" "trade-unionisms" ;
+lin trade_unionist_N = mkN "trade-unionist" "trade-unionists" ;
+lin trade_wind_N = mkN "trade-wind" "trade-winds" ;
+lin tradecraft_N = mkN "tradecraft" "tradecrafts" ;
+lin trademark_N = mkN "trademark" "trademarks" ;
+lin trademarked_A = mkAMost "trademarked" "trademarkedly" ;
+lin tradeoff_N = mkN "tradeoff" "tradeoffs" ;
+lin trader_N = mkN "trader" "traders" ;
+lin trades_union_N = mkN "trades-union" "trades-unions" ;
+lin tradesman_N = mkN "tradesman" "tradesmen" ;
+lin tradespeople_N = mkN "tradespeople" "tradespeoples" ;
+lin trading_N = mkN "trading" "tradings" ;
+lin tradition_N = mkN "tradition" "traditions" ;
+lin traditional_A = mkAMost "traditional" "traditionally" ;
+lin traditionalism_N = mkN "traditionalism" "traditionalisms" ;
+lin traditionalist_N = mkN "traditionalist" "traditionalists" ;
+lin traditionalistic_A = mkAMost "traditionalistic" "traditionalisticly" ;
+lin traduce_V = mkV "traduce" "traduced" "traduced" ;
+lin traducer_N = mkN "traducer" "traducers" ;
+lin traffic_N = mkN "traffic" "traffics" ;
+lin traffic_V = mkV "traffic" "IRREG" "IRREG" ;
+lin trafficator_N = mkN "trafficator" "trafficators" ;
+lin trafficker_N = mkN "trafficker" "traffickers" ;
+lin tragacanth_N = mkN "tragacanth" "tragacanths" ;
+lin tragedian_N = mkN "tragedian" "tragedians" ;
+lin tragedienne_N = mkN "tragedienne" "tragediennes" ;
+lin tragedy_N = mkN "tragedy" "tragedies" ;
+lin tragic_A = mkAMost "tragic" "tragicly" ;
+lin tragically_Adv = mkAdv "tragically" ;
+lin tragicomedy_N = mkN "tragicomedy" "tragicomedies" ;
+lin tragicomic_A = mkAMost "tragicomic" "tragicomicly" ;
+lin tragopan_N = mkN "tragopan" "tragopans" ;
+lin tragus_N = mkN "tragus" "traguses" ;
+lin trail_N = mkN "trail" "trails" ;
+lin trail_V = mkV "trail" "trailed" "trailed" ;
+lin trailblazer_N = mkN "trailblazer" "trailblazers" ;
+lin trailer_N = mkN "trailer" "trailers" ;
+lin trailing_N = mkN "trailing" "trailings" ;
+lin train_N = mkN "train" "trains" ;
+lin train_V = mkV "train" "trained" "trained" ;
+lin trainband_N = mkN "trainband" "trainbands" ;
+lin trainbandsman_N = mkN "trainbandsman" "trainbandsmen" ;
+lin trainbearer_N = mkN "trainbearer" "trainbearers" ;
+lin trainee_N = mkN "trainee" "trainees" ;
+lin traineeship_N = mkN "traineeship" "traineeships" ;
+lin trainer_N = mkN "trainer" "trainers" ;
+lin training_N = mkN "training" "trainings" ;
+lin training_college_N = mkN "training-college" "training-colleges" ;
+lin training_ship_N = mkN "training-ship" "training-ships" ;
+lin trainload_N = mkN "trainload" "trainloads" ;
+lin trainman_N = mkN "trainman" "trainmen" ;
+lin traipse_V = mkV "traipse" "traipsed" "traipsed" ;
+lin trait_N = mkN "trait" "traits" ;
+lin traitor_N = mkN "traitor" "traitors" ;
+lin traitorous_A = mkAMost "traitorous" "traitorously" ;
+lin traitress_N = mkN "traitress" "traitresses" ;
+lin trajectory_N = mkN "trajectory" "trajectories" ;
+lin tram_N = mkN "tram" "trams" ;
+lin tram_car_N = mkN "tram-car" "tram-cars" ;
+lin tramcar_N = mkN "tramcar" "tramcars" ;
+lin tramline_N = mkN "tramline" "tramlines" ;
+lin trammel_N = mkN "trammel" "trammels" ;
+lin trammel_V = mkV "trammel" "trammelled" "trammelled" ;
+lin tramontane_A = mkAMost "tramontane" "tramontanely" ;
+lin tramontane_N = mkN "tramontane" "tramontanes" ;
+lin tramp_N = mkN "tramp" "tramps" ;
+lin tramp_V = mkV "tramp" "tramped" "tramped" ;
+lin tramp_steamer_N = mkN "tramp-steamer" "tramp-steamers" ;
+lin trample_N = mkN "trample" "tramples" ;
+lin trample_V = mkV "trample" "trampled" "trampled" ;
+lin trampler_N = mkN "trampler" "tramplers" ;
+lin trampoline_N = mkN "trampoline" "trampolines" ;
+lin tramway_N = mkN "tramway" "tramways" ;
+lin trance_N = mkN "trance" "trances" ;
+lin trancelike_A = mkAMost "trancelike" "trancelikely" ;
+lin tranche_N = mkN "tranche" "tranches" ;
+lin trandolapril_N = mkN "trandolapril" "trandolaprils" ;
+lin tranquil_A = mkAMost "tranquil" "tranquilly" ;
+lin tranquility_N = mkN "tranquility" "tranquilities" ;
+lin tranquilize_V = mkV "tranquilize" "tranquilized" "tranquilized" ;
+lin tranquilizer_N = mkN "tranquilizer" "tranquilizers" ;
+lin tranquillity_N = mkN "tranquillity" "tranquillities" ;
+lin tranquillize_V = mkV "tranquillize" "tranquillized" "tranquillized" ;
+lin tranquillizer_N = mkN "tranquillizer" "tranquillizers" ;
+lin transact_V = mkV "transact" "transacted" "transacted" ;
+lin transactinide_A = mkAMost "transactinide" "transactinidely" ;
+lin transactinide_N = mkN "transactinide" "transactinides" ;
+lin transaction_N = mkN "transaction" "transactions" ;
+lin transactor_N = mkN "transactor" "transactors" ;
+lin transalpine_A = mkAMost "transalpine" "transalpinely" ;
+lin transalpine_N = mkN "transalpine" "transalpines" ;
+lin transaminase_N = mkN "transaminase" "transaminases" ;
+lin transamination_N = mkN "transamination" "transaminations" ;
+lin transatlantic_A = mkAMost "transatlantic" "transatlanticly" ;
+lin transcend_V = mkV "transcend" "transcended" "transcended" ;
+lin transcendence_N = mkN "transcendence" "transcendences" ;
+lin transcendency_N = mkN "transcendency" "transcendencies" ;
+lin transcendent_A = mkAMost "transcendent" "transcendently" ;
+lin transcendental_A = mkAMost "transcendental" "transcendentally" ;
+lin transcendentalism_N = mkN "transcendentalism" "transcendentalisms" ;
+lin transcendentalist_N = mkN "transcendentalist" "transcendentalists" ;
+lin transcontinental_A = mkAMost "transcontinental" "transcontinentally" ;
+lin transcribe_V = mkV "transcribe" "transcribed" "transcribed" ;
+lin transcriber_N = mkN "transcriber" "transcribers" ;
+lin transcript_N = mkN "transcript" "transcripts" ;
+lin transcriptase_N = mkN "transcriptase" "transcriptases" ;
+lin transcription_N = mkN "transcription" "transcriptions" ;
+lin transcultural_A = mkAMost "transcultural" "transculturally" ;
+lin transdermal_A = mkAMost "transdermal" "transdermally" ;
+lin transducer_N = mkN "transducer" "transducers" ;
+lin transduction_N = mkN "transduction" "transductions" ;
+lin transept_N = mkN "transept" "transepts" ;
+lin transeunt_A = mkAMost "transeunt" "transeuntly" ;
+lin transfer_N = mkN "transfer" "transfers" ;
+lin transfer_V = mkV "transfer" "transferred" "transferred" ;
+lin transferability_N = mkN "transferability" "transferabilities" ;
+lin transferable_A = mkAMost "transferable" "transferably" ;
+lin transferase_N = mkN "transferase" "transferases" ;
+lin transferee_N = mkN "transferee" "transferees" ;
+lin transference_N = mkN "transference" "transferences" ;
+lin transferer_N = mkN "transferer" "transferers" ;
+lin transferor_N = mkN "transferor" "transferors" ;
+lin transferrin_N = mkN "transferrin" "transferrins" ;
+lin transfiguration_N = mkN "transfiguration" "transfigurations" ;
+lin transfigure_V = mkV "transfigure" "transfigured" "transfigured" ;
+lin transfix_V = mkV "transfix" "transfixed" "transfixed" ;
+lin transform_V = mkV "transform" "transformed" "transformed" ;
+lin transformable_A = mkAMost "transformable" "transformably" ;
+lin transformation_N = mkN "transformation" "transformations" ;
+lin transformer_N = mkN "transformer" "transformers" ;
+lin transfuse_V = mkV "transfuse" "transfused" "transfused" ;
+lin transfusion_N = mkN "transfusion" "transfusions" ;
+lin transgender_A = mkAMost "transgender" "transgenderly" ;
+lin transgene_N = mkN "transgene" "transgenes" ;
+lin transgress_V = mkV "transgress" "transgressed" "transgressed" ;
+lin transgression_N = mkN "transgression" "transgressions" ;
+lin transgressor_N = mkN "transgressor" "transgressors" ;
+lin transience_N = mkN "transience" "transiences" ;
+lin transiency_N = mkN "transiency" "transiencies" ;
+lin transient_A = mkAMost "transient" "transiently" ;
+lin transient_N = mkN "transient" "transients" ;
+lin transistor_N = mkN "transistor" "transistors" ;
+lin transistorized_A = mkAMost "transistorized" "transistorizedly" ;
+lin transit_N = mkN "transit" "transits" ;
+lin transition_N = mkN "transition" "transitions" ;
+lin transitional_A = mkAMost "transitional" "transitionally" ;
+lin transitive_A = mkAMost "transitive" "transitively" ;
+lin transitivity_N = mkN "transitivity" "transitivities" ;
+lin transitory_A = mkAMost "transitory" "transitorily" ;
+lin translatable_A = mkAMost "translatable" "translatably" ;
+lin translate_V = mkV "translate" "translated" "translated" ;
+lin translation_N = mkN "translation" "translations" ;
+lin translational_A = mkAMost "translational" "translationally" ;
+lin translator_N = mkN "translator" "translators" ;
+lin transliterate_V = mkV "transliterate" "transliterated" "transliterated" ;
+lin transliteration_N = mkN "transliteration" "transliterations" ;
+lin translocation_N = mkN "translocation" "translocations" ;
+lin translucence_N = mkN "translucence" "translucences" ;
+lin translucency_N = mkN "translucency" "translucencies" ;
+lin translucent_A = mkAMost "translucent" "translucently" ;
+lin translunar_A = mkAMost "translunar" "translunarly" ;
+lin transmigrante_N = mkN "transmigrante" "transmigrantes" ;
+lin transmigration_N = mkN "transmigration" "transmigrations" ;
+lin transmission_N = mkN "transmission" "transmissions" ;
+lin transmit_V = mkV "transmit" "transmitted" "transmitted" ;
+lin transmittance_N = mkN "transmittance" "transmittances" ;
+lin transmitter_N = mkN "transmitter" "transmitters" ;
+lin transmogrification_N = mkN "transmogrification" "transmogrifications" ;
+lin transmogrify_V = mkV "transmogrify" "transmogrified" "transmogrified" ;
+lin transmundane_A = mkAMost "transmundane" "transmundanely" ;
+lin transmutable_A = mkAMost "transmutable" "transmutably" ;
+lin transmutation_N = mkN "transmutation" "transmutations" ;
+lin transmute_V = mkV "transmute" "transmuted" "transmuted" ;
+lin transoceanic_A = mkAMost "transoceanic" "transoceanicly" ;
+lin transom_N = mkN "transom" "transoms" ;
+lin transom_window_N = mkN "transom-window" "transom-windows" ;
+lin transparence_N = mkN "transparence" "transparences" ;
+lin transparency_N = mkN "transparency" "transparencies" ;
+lin transparent_A = mkAMost "transparent" "transparently" ;
+lin transpiration_N = mkN "transpiration" "transpirations" ;
+lin transpire_V = mkV "transpire" "transpired" "transpired" ;
+lin transplacental_A = mkAMost "transplacental" "transplacentally" ;
+lin transplant_N = mkN "transplant" "transplants" ;
+lin transplant_V = mkV "transplant" "transplanted" "transplanted" ;
+lin transplantable_A = mkAMost "transplantable" "transplantably" ;
+lin transplantation_N = mkN "transplantation" "transplantations" ;
+lin transplanter_N = mkN "transplanter" "transplanters" ;
+lin transpolar_A = mkAMost "transpolar" "transpolarly" ;
+lin transponder_N = mkN "transponder" "transponders" ;
+lin transport_N = mkN "transport" "transports" ;
+lin transport_V = mkV "transport" "transported" "transported" ;
+lin transportable_A = mkAMost "transportable" "transportably" ;
+lin transportation_N = mkN "transportation" "transportations" ;
+lin transporter_N = mkN "transporter" "transporters" ;
+lin transposable_A = mkAMost "transposable" "transposably" ;
+lin transpose_N = mkN "transpose" "transposes" ;
+lin transpose_V = mkV "transpose" "transposed" "transposed" ;
+lin transposition_N = mkN "transposition" "transpositions" ;
+lin transposon_N = mkN "transposon" "transposons" ;
+lin transsexual_N = mkN "transsexual" "transsexuals" ;
+lin transsexualism_N = mkN "transsexualism" "transsexualisms" ;
+lin transship_V = mkV "transship" "transshipped" "transshipped" ;
+lin transshipment_N = mkN "transshipment" "transshipments" ;
+lin transubstantiation_N = mkN "transubstantiation" "transubstantiations" ;
+lin transudate_N = mkN "transudate" "transudates" ;
+lin transuranic_A = mkAMost "transuranic" "transuranicly" ;
+lin transverse_A = mkAMost "transverse" "transversely" ;
+lin transvestic_A = mkAMost "transvestic" "transvesticly" ;
+lin transvestism_N = mkN "transvestism" "transvestisms" ;
+lin transvestite_N = mkN "transvestite" "transvestites" ;
+lin tranylcypromine_N = mkN "tranylcypromine" "tranylcypromines" ;
+lin trap_N = mkN "trap" "traps" ;
+lin trap_V = mkV "trap" "trapped" "trapped" ;
+lin trap_door_N = mkN "trap-door" "trap-doors" ;
+lin trap_shooting_N = mkN "trap-shooting" "trap-shootings" ;
+lin trapeze_N = mkN "trapeze" "trapezes" ;
+lin trapezium_N = mkN "trapezium" "trapeziums" ;
+lin trapezius_N = mkN "trapezius" "trapeziuses" ;
+lin trapezohedron_N = mkN "trapezohedron" "trapezohedrons" ;
+lin trapezoid_N = mkN "trapezoid" "trapezoids" ;
+lin trapezoidal_A = mkAMost "trapezoidal" "trapezoidally" ;
+lin trapper_N = mkN "trapper" "trappers" ;
+lin trappist_N = mkN "trappist" "trappists" ;
+lin trapshooter_N = mkN "trapshooter" "trapshooters" ;
+lin trash_N = mkN "trash" "trashes" ;
+lin trash_V = mkV "trash" "trashed" "trashed" ;
+lin trashy_A = mkA "trashy" "trashier" "trashiest" "trashily" ;
+lin trauma_N = mkN "trauma" "traumas" ;
+lin traumatic_A = mkAMost "traumatic" "traumaticly" ;
+lin traumatology_N = mkN "traumatology" "traumatologies" ;
+lin traumatophobia_N = mkN "traumatophobia" "traumatophobias" ;
+lin travail_N = mkN "travail" "travails" ;
+lin trave_N = mkN "trave" "traves" ;
+lin travel_N = mkN "travel" "travels" ;
+lin travel_V = mkV "travel" "traveled" "traveled" ;
+lin travel_soiled_A = mkAMost "travel-soiled" "travel-soiledly" ;
+lin travel_stained_A = mkAMost "travel-stained" "travel-stainedly" ;
+lin travel_worn_A = mkAMost "travel-worn" "travel-wornly" ;
+lin traveler_N = mkN "traveler" "travelers" ;
+lin travelled_A = mkAMost "travelled" "travelledly" ;
+lin traveller_N = mkN "traveller" "travellers" ;
+lin travelling_N = mkN "travelling" "travellings" ;
+lin travelogue_N = mkN "travelogue" "travelogues" ;
+lin traversable_A = mkAMost "traversable" "traversably" ;
+lin traversal_N = mkN "traversal" "traversals" ;
+lin traverse_N = mkN "traverse" "traverses" ;
+lin traverse_V = mkV "traverse" "traversed" "traversed" ;
+lin traverser_N = mkN "traverser" "traversers" ;
+lin travesty_N = mkN "travesty" "travesties" ;
+lin travesty_V = mkV "travesty" "travestied" "travestied" ;
+lin trawl_N = mkN "trawl" "trawls" ;
+lin trawl_V = mkV "trawl" "trawled" "trawled" ;
+lin trawl_net_N = mkN "trawl-net" "trawl-nets" ;
+lin trawler_N = mkN "trawler" "trawlers" ;
+lin tray_N = mkN "tray" "trays" ;
+lin tray_cloth_N = mkN "tray-cloth" "tray-cloths" ;
+lin trazodone_N = mkN "trazodone" "trazodones" ;
+lin treacherous_A = mkAMost "treacherous" "treacherously" ;
+lin treachery_N = mkN "treachery" "treacheries" ;
+lin treacle_N = mkN "treacle" "treacles" ;
+lin treacly_A = mkAMost "treacly" "treaclily" ;
+lin tread_N = mkN "tread" "treads" ;
+lin tread_V = mkV "tread" "trod" "trodden" ;
+lin treadle_N = mkN "treadle" "treadles" ;
+lin treadle_V = mkV "treadle" "treadled" "treadled" ;
+lin treadmill_N = mkN "treadmill" "treadmills" ;
+lin treas_N = mkN "treas" "treases" ;
+lin treason_N = mkN "treason" "treasons" ;
+lin treasonable_A = mkAMost "treasonable" "treasonably" ;
+lin treasonous_A = mkAMost "treasonous" "treasonously" ;
+lin treasure_N = mkN "treasure" "treasures" ;
+lin treasure_V = mkV "treasure" "treasured" "treasured" ;
+lin treasure_house_N = mkN "treasure-house" "treasure-houses" ;
+lin treasure_trove_N = mkN "treasure-trove" "treasure-troves" ;
+lin treasurer_N = mkN "treasurer" "treasurers" ;
+lin treasurership_N = mkN "treasurership" "treasurerships" ;
+lin treasury_N = mkN "treasury" "treasuries" ;
+lin treat_N = mkN "treat" "treats" ;
+lin treat_V = mkV "treat" "treated" "treated" ;
+lin treatise_N = mkN "treatise" "treatises" ;
+lin treatment_N = mkN "treatment" "treatments" ;
+lin treaty_N = mkN "treaty" "treaties" ;
+lin treble_A = mkAMost "treble" "trebly" ;
+lin treble_N = mkN "treble" "trebles" ;
+lin treble_V = mkV "treble" "trebled" "trebled" ;
+lin tree_N = mkN "tree" "trees" ;
+lin tree_V = mkV "tree" "IRREG" "IRREG" ;
+lin tree_fern_N = mkN "tree-fern" "tree-ferns" ;
+lin treehopper_N = mkN "treehopper" "treehoppers" ;
+lin treeless_A = mkAMost "treeless" "treelessly" ;
+lin treelet_N = mkN "treelet" "treelets" ;
+lin treenail_N = mkN "treenail" "treenails" ;
+lin trefoil_N = mkN "trefoil" "trefoils" ;
+lin trek_N = mkN "trek" "treks" ;
+lin trek_treked_V = mkV "trek" "treked" "treked" ;
+lin trek_trekked_V = mkV "trek" "trekked" "trekked" ;
+lin trekker_N = mkN "trekker" "trekkers" ;
+lin trellis_N = mkN "trellis" "trellises" ;
+lin trellis_V = mkV "trellis" "trellised" "trellised" ;
+lin tremble_N = mkN "tremble" "trembles" ;
+lin tremble_V = mkV "tremble" "trembled" "trembled" ;
+lin trembles_N = mkN "trembles" "trembleses" ;
+lin tremendous_A = mkAMost "tremendous" "tremendously" ;
+lin tremolite_N = mkN "tremolite" "tremolites" ;
+lin tremolo_N = mkN "tremolo" "tremolos" ;
+lin tremor_N = mkN "tremor" "tremors" ;
+lin tremulous_A = mkAMost "tremulous" "tremulously" ;
+lin trench_N = mkN "trench" "trenches" ;
+lin trench_V = mkV "trench" "trenched" "trenched" ;
+lin trenchancy_N = mkN "trenchancy" "trenchancies" ;
+lin trenchant_A = mkAMost "trenchant" "trenchantly" ;
+lin trencher_N = mkN "trencher" "trenchers" ;
+lin trencherman_N = mkN "trencherman" "trenchermen" ;
+lin trend_N = mkN "trend" "trends" ;
+lin trend_V = mkV "trend" "trended" "trended" ;
+lin trend_setter_N = mkN "trend-setter" "trend-setters" ;
+lin trend_setting_N = mkN "trend-setting" "trend-settings" ;
+lin trendsetting_A = mkAMost "trendsetting" "trendsettingly" ;
+lin trendy_A = mkA "trendy" "trendier" "trendiest" "trendily" ;
+lin trepan_N = mkN "trepan" "trepans" ;
+lin trepan_V = mkV "trepan" "trepanned" "trepanned" ;
+lin trepang_N = mkN "trepang" "trepangs" ;
+lin trephination_N = mkN "trephination" "trephinations" ;
+lin trephine_N = mkN "trephine" "trephines" ;
+lin trephine_V = mkV "trephine" "trephined" "trephined" ;
+lin trepidation_N = mkN "trepidation" "trepidations" ;
+lin treponema_N = mkN "treponema" "treponemas" ;
+lin trespass_N = mkN "trespass" "trespasses" ;
+lin trespass_V = mkV "trespass" "trespassed" "trespassed" ;
+lin trespasser_N = mkN "trespasser" "trespassers" ;
+lin tress_N = mkN "tress" "tresses" ;
+lin trestle_N = mkN "trestle" "trestles" ;
+lin trestle_bridge_N = mkN "trestle-bridge" "trestle-bridges" ;
+lin trestle_table_N = mkN "trestle-table" "trestle-tables" ;
+lin trestlework_N = mkN "trestlework" "trestleworks" ;
+lin trews_N = mkN "trews" "trewses" ;
+lin trey_N = mkN "trey" "treys" ;
+lin triad_N = mkN "triad" "triads" ;
+lin triage_N = mkN "triage" "triages" ;
+lin trial_N = mkN "trial" "trials" ;
+lin triamcinolone_N = mkN "triamcinolone" "triamcinolones" ;
+lin triangle_N = mkN "triangle" "triangles" ;
+lin triangular_A = mkAMost "triangular" "triangularly" ;
+lin triangularity_N = mkN "triangularity" "triangularities" ;
+lin triangulate_A = mkAMost "triangulate" "triangulately" ;
+lin triangulation_N = mkN "triangulation" "triangulations" ;
+lin triazine_N = mkN "triazine" "triazines" ;
+lin triazolam_N = mkN "triazolam" "triazolams" ;
+lin tribadism_N = mkN "tribadism" "tribadisms" ;
+lin tribadistic_A = mkAMost "tribadistic" "tribadisticly" ;
+lin tribal_A = mkAMost "tribal" "tribally" ;
+lin tribalism_N = mkN "tribalism" "tribalisms" ;
+lin tribalization_N = mkN "tribalization" "tribalizations" ;
+lin tribe_N = mkN "tribe" "tribes" ;
+lin tribesman_N = mkN "tribesman" "tribesmen" ;
+lin tribologist_N = mkN "tribologist" "tribologists" ;
+lin tribology_N = mkN "tribology" "tribologies" ;
+lin tribromoethanol_N = mkN "tribromoethanol" "tribromoethanols" ;
+lin tribulation_N = mkN "tribulation" "tribulations" ;
+lin tribunal_N = mkN "tribunal" "tribunals" ;
+lin tribune_N = mkN "tribune" "tribunes" ;
+lin tribuneship_N = mkN "tribuneship" "tribuneships" ;
+lin tributary_A = mkAMost "tributary" "tributarily" ;
+lin tributary_N = mkN "tributary" "tributaries" ;
+lin tribute_N = mkN "tribute" "tributes" ;
+lin tributyrin_N = mkN "tributyrin" "tributyrins" ;
+lin trice_N = mkN "trice" "trices" ;
+lin trice_V = mkV "trice" "triced" "triced" ;
+lin tricentenary_A = mkAMost "tricentenary" "tricentenarily" ;
+lin triceps_N = mkN "triceps" "tricepses" ;
+lin triceratops_N = mkN "triceratops" "triceratopses" ;
+lin trichina_N = mkN "trichina" "trichinas" ;
+lin trichinosis_N = mkN "trichinosis" "trichinosises" ;
+lin trichion_N = mkN "trichion" "trichions" ;
+lin trichloride_N = mkN "trichloride" "trichlorides" ;
+lin trichlormethiazide_N = mkN "trichlormethiazide" "trichlormethiazides" ;
+lin trichloroethylene_N = mkN "trichloroethylene" "trichloroethylenes" ;
+lin trichodesmium_N = mkN "trichodesmium" "trichodesmiums" ;
+lin trichomonad_N = mkN "trichomonad" "trichomonads" ;
+lin trichomoniasis_N = mkN "trichomoniasis" "trichomoniasises" ;
+lin trichotillomania_N = mkN "trichotillomania" "trichotillomanias" ;
+lin trichotomy_N = mkN "trichotomy" "trichotomies" ;
+lin trichroism_N = mkN "trichroism" "trichroisms" ;
+lin trichromatic_A = mkAMost "trichromatic" "trichromaticly" ;
+lin trichuriasis_N = mkN "trichuriasis" "trichuriasises" ;
+lin trick_N = mkN "trick" "tricks" ;
+lin trick_V = mkV "trick" "tricked" "tricked" ;
+lin trickery_N = mkN "trickery" "trickeries" ;
+lin trickiness_N = mkN "trickiness" "trickinesses" ;
+lin trickle_N = mkN "trickle" "trickles" ;
+lin trickle_V = mkV "trickle" "trickled" "trickled" ;
+lin trickster_N = mkN "trickster" "tricksters" ;
+lin tricksy_A = mkAMost "tricksy" "tricksily" ;
+lin tricky_A = mkA "tricky" "trickier" "trickiest" "trickily" ;
+lin triclinic_A = mkAMost "triclinic" "triclinicly" ;
+lin triclinium_N = mkN "triclinium" "tricliniums" ;
+lin tricolor_N = mkN "tricolor" "tricolors" ;
+lin tricolour_N = mkN "tricolour" "tricolours" ;
+lin tricorn_N = mkN "tricorn" "tricorns" ;
+lin tricot_N = mkN "tricot" "tricots" ;
+lin tricuspid_A = mkAMost "tricuspid" "tricuspidly" ;
+lin tricycle_N = mkN "tricycle" "tricycles" ;
+lin tricyclic_N = mkN "tricyclic" "tricyclics" ;
+lin trident_N = mkN "trident" "tridents" ;
+lin tridymite_N = mkN "tridymite" "tridymites" ;
+lin triennial_A = mkAMost "triennial" "triennially" ;
+lin triennial_N = mkN "triennial" "triennials" ;
+lin trier_N = mkN "trier" "triers" ;
+lin trifid_A = mkAMost "trifid" "trifidly" ;
+lin trifle_N = mkN "trifle" "trifles" ;
+lin trifle_V = mkV "trifle" "trifled" "trifled" ;
+lin trifler_N = mkN "trifler" "triflers" ;
+lin trifoliate_A = mkAMost "trifoliate" "trifoliately" ;
+lin trifurcation_N = mkN "trifurcation" "trifurcations" ;
+lin trigeminal_N = mkN "trigeminal" "trigeminals" ;
+lin trigger_N = mkN "trigger" "triggers" ;
+lin trigger_V = mkV "trigger" "triggered" "triggered" ;
+lin trigger_happy_A = mkAMost "trigger-happy" "trigger-happily" ;
+lin triggerfish_N = mkN "triggerfish" "triggerfishes" ;
+lin triglyceride_N = mkN "triglyceride" "triglycerides" ;
+lin trigon_N = mkN "trigon" "trigons" ;
+lin trigonometric_A = mkAMost "trigonometric" "trigonometricly" ;
+lin trigonometrician_N = mkN "trigonometrician" "trigonometricians" ;
+lin trigonometry_N = mkN "trigonometry" "trigonometries" ;
+lin trigram_N = mkN "trigram" "trigrams" ;
+lin trihydroxy_A = mkAMost "trihydroxy" "trihydroxily" ;
+lin triiodothyronine_N = mkN "triiodothyronine" "triiodothyronines" ;
+lin trilateral_A = mkAMost "trilateral" "trilaterally" ;
+lin trilby_N = mkN "trilby" "trilbies" ;
+lin trilingual_A = mkAMost "trilingual" "trilingually" ;
+lin trill_N = mkN "trill" "trills" ;
+lin trill_V = mkV "trill" "trilled" "trilled" ;
+lin trillion_A = mkAMost "trillion" "trillionly" ;
+lin trillion_N = mkN "trillion" "trillions" ;
+lin trillionth_A = mkAMost "trillionth" "trillionthly" ;
+lin trillionth_N = mkN "trillionth" "trillionths" ;
+lin trillium_N = mkN "trillium" "trilliums" ;
+lin trilobate_A = mkAMost "trilobate" "trilobately" ;
+lin trilobite_N = mkN "trilobite" "trilobites" ;
+lin trilogy_N = mkN "trilogy" "trilogies" ;
+lin trim_A = mkA "trim" "trimmer" "trimmest" "trimly" ;
+lin trim_N = mkN "trim" "trims" ;
+lin trim_V = mkV "trim" "trimmed" "trimmed" ;
+lin trimaran_N = mkN "trimaran" "trimarans" ;
+lin trimer_N = mkN "trimer" "trimers" ;
+lin trimester_N = mkN "trimester" "trimesters" ;
+lin trimipramine_N = mkN "trimipramine" "trimipramines" ;
+lin trimmer_N = mkN "trimmer" "trimmers" ;
+lin trimming_N = mkN "trimming" "trimmings" ;
+lin trimotored_A = mkAMost "trimotored" "trimotoredly" ;
+lin trinidadian_A = mkAMost "trinidadian" "trinidadianly" ;
+lin trinidadian_N = mkN "trinidadian" "trinidadians" ;
+lin trinitrotoluene_N = mkN "trinitrotoluene" "trinitrotoluenes" ;
+lin trinity_N = mkN "trinity" "trinities" ;
+lin trinket_N = mkN "trinket" "trinkets" ;
+lin trinketry_N = mkN "trinketry" "trinketries" ;
+lin trinucleate_A = mkAMost "trinucleate" "trinucleately" ;
+lin trio_N = mkN "trio" "trios" ;
+lin triode_N = mkN "triode" "triodes" ;
+lin triolein_N = mkN "triolein" "trioleins" ;
+lin triose_N = mkN "triose" "trioses" ;
+lin trioxide_N = mkN "trioxide" "trioxides" ;
+lin trip_N = mkN "trip" "trips" ;
+lin trip_V = mkV "trip" "tripped" "tripped" ;
+lin tripalmitin_N = mkN "tripalmitin" "tripalmitins" ;
+lin tripartite_A = mkAMost "tripartite" "tripartitely" ;
+lin tripe_N = mkN "tripe" "tripes" ;
+lin triphammer_N = mkN "triphammer" "triphammers" ;
+lin triphosphopyridine_N = mkN "triphosphopyridine" "triphosphopyridines" ;
+lin tripinnate_A = mkAMost "tripinnate" "tripinnately" ;
+lin tripinnatifid_A = mkAMost "tripinnatifid" "tripinnatifidly" ;
+lin triple_A = mkAMost "triple" "triplely" ;
+lin triple_N = mkN "triple" "triples" ;
+lin triple_V = mkV "triple" "tripled" "tripled" ;
+lin triplet_N = mkN "triplet" "triplets" ;
+lin tripletail_N = mkN "tripletail" "tripletails" ;
+lin triplex_A = mkAMost "triplex" "triplexly" ;
+lin triplicate_A = mkAMost "triplicate" "triplicately" ;
+lin triplicate_N = mkN "triplicate" "triplicates" ;
+lin triplicate_V = mkV "triplicate" "triplicated" "triplicated" ;
+lin triplicity_N = mkN "triplicity" "triplicities" ;
+lin tripling_N = mkN "tripling" "triplings" ;
+lin triploid_A = mkAMost "triploid" "triploidly" ;
+lin tripod_N = mkN "tripod" "tripods" ;
+lin tripos_N = mkN "tripos" "triposes" ;
+lin tripper_N = mkN "tripper" "trippers" ;
+lin triptych_N = mkN "triptych" "triptychs" ;
+lin triquetral_N = mkN "triquetral" "triquetrals" ;
+lin trireme_N = mkN "trireme" "triremes" ;
+lin trisaccharide_N = mkN "trisaccharide" "trisaccharides" ;
+lin trisect_V = mkV "trisect" "trisected" "trisected" ;
+lin triskaidekaphobia_N = mkN "triskaidekaphobia" "triskaidekaphobias" ;
+lin triskaidekaphobic_A = mkAMost "triskaidekaphobic" "triskaidekaphobicly" ;
+lin triskelion_N = mkN "triskelion" "triskelions" ;
+lin trismus_N = mkN "trismus" "trismuses" ;
+lin trisomy_N = mkN "trisomy" "trisomies" ;
+lin tristearin_N = mkN "tristearin" "tristearins" ;
+lin trisyllable_N = mkN "trisyllable" "trisyllables" ;
+lin tritanopia_N = mkN "tritanopia" "tritanopias" ;
+lin tritanopic_A = mkAMost "tritanopic" "tritanopicly" ;
+lin trite_A = mkAMost "trite" "tritely" ;
+lin triteness_N = mkN "triteness" "tritenesses" ;
+lin tritheism_N = mkN "tritheism" "tritheisms" ;
+lin tritheist_N = mkN "tritheist" "tritheists" ;
+lin tritium_N = mkN "tritium" "tritiums" ;
+lin triton_N = mkN "triton" "tritons" ;
+lin triumph_N = mkN "triumph" "triumphs" ;
+lin triumph_V = mkV "triumph" "triumphed" "triumphed" ;
+lin triumphal_A = mkAMost "triumphal" "triumphally" ;
+lin triumphant_A = mkAMost "triumphant" "triumphantly" ;
+lin triumvir_N = mkN "triumvir" "triumvirs" ;
+lin triumvirate_N = mkN "triumvirate" "triumvirates" ;
+lin triune_A = mkAMost "triune" "triunely" ;
+lin trivalent_A = mkAMost "trivalent" "trivalently" ;
+lin trivet_N = mkN "trivet" "trivets" ;
+lin trivial_A = mkAMost "trivial" "trivially" ;
+lin triviality_N = mkN "triviality" "trivialities" ;
+lin trivialize_V = mkV "trivialize" "trivialized" "trivialized" ;
+lin trivium_N = mkN "trivium" "triviums" ;
+lin trochaic_A = mkAMost "trochaic" "trochaicly" ;
+lin trochanter_N = mkN "trochanter" "trochanters" ;
+lin trochee_N = mkN "trochee" "trochees" ;
+lin trochlear_N = mkN "trochlear" "trochlears" ;
+lin troglodyte_N = mkN "troglodyte" "troglodytes" ;
+lin trogon_N = mkN "trogon" "trogons" ;
+lin troika_N = mkN "troika" "troikas" ;
+lin trojan_A = mkAMost "trojan" "trojanly" ;
+lin trojan_N = mkN "trojan" "trojans" ;
+lin troll_N = mkN "troll" "trolls" ;
+lin troll_V = mkV "troll" "trolled" "trolled" ;
+lin trolley_N = mkN "trolley" "trolleys" ;
+lin trolley_car_N = mkN "trolley-car" "trolley-cars" ;
+lin trolleybus_N = mkN "trolleybus" "trolleybuses" ;
+lin trollop_N = mkN "trollop" "trollops" ;
+lin trombiculiasis_N = mkN "trombiculiasis" "trombiculiasises" ;
+lin trombiculid_N = mkN "trombiculid" "trombiculids" ;
+lin trombidiid_N = mkN "trombidiid" "trombidiids" ;
+lin trombone_N = mkN "trombone" "trombones" ;
+lin trombonist_N = mkN "trombonist" "trombonists" ;
+lin trompillo_N = mkN "trompillo" "trompilloes" ;
+lin troop_N = mkN "troop" "troops" ;
+lin troop_V = mkV "troop" "trooped" "trooped" ;
+lin troop_carrier_N = mkN "troop-carrier" "troop-carriers" ;
+lin trooper_N = mkN "trooper" "troopers" ;
+lin troopship_N = mkN "troopship" "troopships" ;
+lin trope_N = mkN "trope" "tropes" ;
+lin trophic_A = mkAMost "trophic" "trophicly" ;
+lin trophobiosis_N = mkN "trophobiosis" "trophobiosises" ;
+lin trophoblast_N = mkN "trophoblast" "trophoblasts" ;
+lin trophoblastic_A = mkAMost "trophoblastic" "trophoblasticly" ;
+lin trophotropic_A = mkAMost "trophotropic" "trophotropicly" ;
+lin trophotropism_N = mkN "trophotropism" "trophotropisms" ;
+lin trophozoite_N = mkN "trophozoite" "trophozoites" ;
+lin trophy_N = mkN "trophy" "trophies" ;
+lin tropic_N = mkN "tropic" "tropics" ;
+lin tropical_A = mkAMost "tropical" "tropically" ;
+lin tropism_N = mkN "tropism" "tropisms" ;
+lin troponym_N = mkN "troponym" "troponyms" ;
+lin troponymy_N = mkN "troponymy" "troponymies" ;
+lin tropopause_N = mkN "tropopause" "tropopauses" ;
+lin troposphere_N = mkN "troposphere" "tropospheres" ;
+lin trot_N = mkN "trot" "trots" ;
+lin trot_V = mkV "trot" "trotted" "trotted" ;
+lin troth_N = mkN "troth" "troths" ;
+lin trotter_N = mkN "trotter" "trotters" ;
+lin troubadour_N = mkN "troubadour" "troubadours" ;
+lin trouble_N = mkN "trouble" "troubles" ;
+lin trouble_V = mkV "trouble" "troubled" "troubled" ;
+lin troublemaker_N = mkN "troublemaker" "troublemakers" ;
+lin troubleshooter_N = mkN "troubleshooter" "troubleshooters" ;
+lin troublesome_A = mkAMost "troublesome" "troublesomely" ;
+lin troublesomeness_N = mkN "troublesomeness" "troublesomenesses" ;
+lin troublous_A = mkAMost "troublous" "troublously" ;
+lin trough_N = mkN "trough" "troughs" ;
+lin trough_V = mkV "trough" "troughed" "troughed" ;
+lin trounce_V = mkV "trounce" "trounced" "trounced" ;
+lin trouncing_N = mkN "trouncing" "trouncings" ;
+lin troupe_N = mkN "troupe" "troupes" ;
+lin trouper_N = mkN "trouper" "troupers" ;
+lin trouser_N = mkN "trouser" "trousers" ;
+lin trousseau_N = mkN "trousseau" "trousseaus" ;
+lin trout_N = mkN "trout" "trout" ;
+lin trove_N = mkN "trove" "troves" ;
+lin trowel_N = mkN "trowel" "trowels" ;
+lin troy_N = mkN "troy" "troys" ;
+lin truancy_N = mkN "truancy" "truancies" ;
+lin truant_A = mkA "truant" "truanter" "truantest" "truantly" ;
+lin truant_N = mkN "truant" "truants" ;
+lin truce_N = mkN "truce" "truces" ;
+lin truck_N = mkN "truck" "trucks" ;
+lin truckage_N = mkN "truckage" "truckages" ;
+lin truckle_N = mkN "truckle" "truckles" ;
+lin truckle_V = mkV "truckle" "truckled" "truckled" ;
+lin truckle_bed_N = mkN "truckle-bed" "truckle-beds" ;
+lin truckling_N = mkN "truckling" "trucklings" ;
+lin truculence_N = mkN "truculence" "truculences" ;
+lin truculency_N = mkN "truculency" "truculencies" ;
+lin truculent_A = mkAMost "truculent" "truculently" ;
+lin trudge_N = mkN "trudge" "trudges" ;
+lin trudge_V = mkV "trudge" "trudged" "trudged" ;
+lin trudger_N = mkN "trudger" "trudgers" ;
+lin true_A = mkA "true" "truer" "truest" "truly" ;
+lin true_N = mkN "true" "trues" ;
+lin true_V = mkV "true" "trued" "trued" ;
+lin true_blue_A = mkAMost "true-blue" "true-bluely" ;
+lin true_blue_N = mkN "true-blue" "true-blues" ;
+lin true_hearted_A = mkAMost "true-hearted" "true-heartedly" ;
+lin truelove_N = mkN "truelove" "trueloves" ;
+lin trueness_N = mkN "trueness" "truenesses" ;
+lin truffle_N = mkN "truffle" "truffles" ;
+lin truism_N = mkN "truism" "truisms" ;
+lin trump_N = mkN "trump" "trumps" ;
+lin trump_V = mkV "trump" "trumped" "trumped" ;
+lin trumpery_A = mkAMost "trumpery" "trumperily" ;
+lin trumpet_N = mkN "trumpet" "trumpets" ;
+lin trumpet_V = mkV "trumpet" "trumpeted" "trumpeted" ;
+lin trumpeter_N = mkN "trumpeter" "trumpeters" ;
+lin trumpetfish_N = mkN "trumpetfish" "trumpetfishes" ;
+lin trumpetwood_N = mkN "trumpetwood" "trumpetwoods" ;
+lin truncate_A = mkAMost "truncate" "truncately" ;
+lin truncate_V = mkV "truncate" "truncated" "truncated" ;
+lin truncation_N = mkN "truncation" "truncations" ;
+lin truncheon_N = mkN "truncheon" "truncheons" ;
+lin trundle_N = mkN "trundle" "trundles" ;
+lin trundle_V = mkV "trundle" "trundled" "trundled" ;
+lin trunk_N = mkN "trunk" "trunks" ;
+lin trunk_call_N = mkN "trunk-call" "trunk-calls" ;
+lin trunk_line_N = mkN "trunk-line" "trunk-lines" ;
+lin trunk_road_N = mkN "trunk-road" "trunk-roads" ;
+lin trunking_N = mkN "trunking" "trunkings" ;
+lin truss_N = mkN "truss" "trusses" ;
+lin truss_V = mkV "truss" "trussed" "trussed" ;
+lin trust_N = mkN "trust" "trusts" ;
+lin trust_V = mkV "trust" "trusted" "trusted" ;
+lin trustbuster_N = mkN "trustbuster" "trustbusters" ;
+lin trustee_N = mkN "trustee" "trustees" ;
+lin trusteeship_N = mkN "trusteeship" "trusteeships" ;
+lin trustful_A = mkAMost "trustful" "trustfully" ;
+lin trustworthiness_N = mkN "trustworthiness" "trustworthinesses" ;
+lin trustworthy_A = mkAMost "trustworthy" "trustworthily" ;
+lin trusty_A = mkA "trusty" "trustier" "trustiest" "trustily" ;
+lin trusty_N = mkN "trusty" "trusties" ;
+lin truth_N = mkN "truth" "truths" ;
+lin truthful_A = mkAMost "truthful" "truthfully" ;
+lin truthfulness_N = mkN "truthfulness" "truthfulnesses" ;
+lin try_N = mkN "try" "tries" ;
+lin try_V = mkV "try" "tried" "tried" ;
+lin try_on_N = mkN "try-on" "try-ons" ;
+lin try_out_N = mkN "try-out" "try-outs" ;
+lin trypsin_N = mkN "trypsin" "trypsins" ;
+lin trypsinogen_N = mkN "trypsinogen" "trypsinogens" ;
+lin tryptophan_N = mkN "tryptophan" "tryptophans" ;
+lin tryst_N = mkN "tryst" "trysts" ;
+lin tsar_N = mkN "tsar" "tsars" ;
+lin tsarina_N = mkN "tsarina" "tsarinas" ;
+lin tsetse_N = mkN "tsetse" "tsetses" ;
+lin tsetse_fly_N = mkN "tsetse-fly" "tsetse-flies" ;
+lin tsoris_N = mkN "tsoris" "tsorises" ;
+lin tsunami_N = mkN "tsunami" "tsunamis" ;
+lin tsuris_N = mkN "tsuris" "tsurises" ;
+lin tswana_A = mkAMost "tswana" "tswanaly" ;
+lin tswana_N = mkN "tswana" "tswanas" ;
+lin tuatara_N = mkN "tuatara" "tuataras" ;
+lin tub_N = mkN "tub" "tubs" ;
+lin tub_thumper_N = mkN "tub-thumper" "tub-thumpers" ;
+lin tuba_N = mkN "tuba" "tubas" ;
+lin tubal_A = mkAMost "tubal" "tubally" ;
+lin tubby_A = mkA "tubby" "tubbier" "tubbiest" "tubbily" ;
+lin tube_N = mkN "tube" "tubes" ;
+lin tube_well_N = mkN "tube-well" "tube-wells" ;
+lin tubed_A = mkAMost "tubed" "tubedly" ;
+lin tubeless_A = mkAMost "tubeless" "tubelessly" ;
+lin tubeless_N = mkN "tubeless" "tubelesses" ;
+lin tuber_N = mkN "tuber" "tubers" ;
+lin tubercle_N = mkN "tubercle" "tubercles" ;
+lin tubercular_A = mkAMost "tubercular" "tubercularly" ;
+lin tuberculate_A = mkAMost "tuberculate" "tuberculately" ;
+lin tuberculin_N = mkN "tuberculin" "tuberculins" ;
+lin tuberculoid_A = mkAMost "tuberculoid" "tuberculoidly" ;
+lin tuberculosis_N = mkN "tuberculosis" "tuberculosises" ;
+lin tuberculous_A = mkAMost "tuberculous" "tuberculously" ;
+lin tuberose_N = mkN "tuberose" "tuberoses" ;
+lin tuberosity_N = mkN "tuberosity" "tuberosities" ;
+lin tuberous_A = mkAMost "tuberous" "tuberously" ;
+lin tubful_N = mkN "tubful" "tubfuls" ;
+lin tubing_N = mkN "tubing" "tubings" ;
+lin tubocurarine_N = mkN "tubocurarine" "tubocurarines" ;
+lin tubular_A = mkAMost "tubular" "tubularly" ;
+lin tubule_N = mkN "tubule" "tubules" ;
+lin tuc_N = mkN "tuc" "tucs" ;
+lin tuck_N = mkN "tuck" "tucks" ;
+lin tuck_V = mkV "tuck" "tucked" "tucked" ;
+lin tuck_in_N = mkN "tuck-in" "tuck-ins" ;
+lin tuck_shop_N = mkN "tuck-shop" "tuck-shops" ;
+lin tucker_N = mkN "tucker" "tuckers" ;
+lin tudung_N = mkN "tudung" "tudungs" ;
+lin tufa_N = mkN "tufa" "tufas" ;
+lin tuff_N = mkN "tuff" "tuffs" ;
+lin tuft_N = mkN "tuft" "tufts" ;
+lin tufted_A = mkAMost "tufted" "tuftedly" ;
+lin tug_N = mkN "tug" "tugs" ;
+lin tug_V = mkV "tug" "tugged" "tugged" ;
+lin tugboat_N = mkN "tugboat" "tugboats" ;
+lin tugrik_N = mkN "tugrik" "tugriks" ;
+lin tuille_N = mkN "tuille" "tuilles" ;
+lin tuition_N = mkN "tuition" "tuitions" ;
+lin tularemia_N = mkN "tularemia" "tularemias" ;
+lin tulip_N = mkN "tulip" "tulips" ;
+lin tulipwood_N = mkN "tulipwood" "tulipwoods" ;
+lin tulle_N = mkN "tulle" "tulles" ;
+lin tumble_N = mkN "tumble" "tumbles" ;
+lin tumble_V = mkV "tumble" "tumbled" "tumbled" ;
+lin tumble_down_A = mkAMost "tumble-down" "tumble-downly" ;
+lin tumblebug_N = mkN "tumblebug" "tumblebugs" ;
+lin tumbler_N = mkN "tumbler" "tumblers" ;
+lin tumbleweed_N = mkN "tumbleweed" "tumbleweeds" ;
+lin tumbrel_N = mkN "tumbrel" "tumbrels" ;
+lin tumbril_N = mkN "tumbril" "tumbrils" ;
+lin tumefaction_N = mkN "tumefaction" "tumefactions" ;
+lin tumescence_N = mkN "tumescence" "tumescences" ;
+lin tumescent_A = mkAMost "tumescent" "tumescently" ;
+lin tumid_A = mkAMost "tumid" "tumidly" ;
+lin tumidity_N = mkN "tumidity" "tumidities" ;
+lin tummy_N = mkN "tummy" "tummies" ;
+lin tumor_N = mkN "tumor" "tumors" ;
+lin tumour_N = mkN "tumour" "tumours" ;
+lin tumult_N = mkN "tumult" "tumults" ;
+lin tumultuous_A = mkAMost "tumultuous" "tumultuously" ;
+lin tumulus_N = mkN "tumulus" "tumuli" ;
+lin tun_N = mkN "tun" "tuns" ;
+lin tuna_N = mkN "tuna" "tuna" ;
+lin tunaburger_N = mkN "tunaburger" "tunaburgers" ;
+lin tundra_N = mkN "tundra" "tundras" ;
+lin tune_N = mkN "tune" "tunes" ;
+lin tune_V = mkV "tune" "tuned" "tuned" ;
+lin tuneful_A = mkAMost "tuneful" "tunefully" ;
+lin tunefulness_N = mkN "tunefulness" "tunefulnesses" ;
+lin tuneless_A = mkAMost "tuneless" "tunelessly" ;
+lin tuner_N = mkN "tuner" "tuners" ;
+lin tung_oil_N = mkN "tung-oil" "tung-oils" ;
+lin tungstate_N = mkN "tungstate" "tungstates" ;
+lin tungsten_N = mkN "tungsten" "tungstens" ;
+lin tunic_N = mkN "tunic" "tunics" ;
+lin tunicate_N = mkN "tunicate" "tunicates" ;
+lin tuning_N = mkN "tuning" "tunings" ;
+lin tuning_fork_N = mkN "tuning-fork" "tuning-forks" ;
+lin tunisian_A = mkAMost "tunisian" "tunisianly" ;
+lin tunisian_N = mkN "tunisian" "tunisians" ;
+lin tunnel_N = mkN "tunnel" "tunnels" ;
+lin tunnel_V = mkV "tunnel" "tunnelled" "tunnelled" ;
+lin tunny_N = mkN "tunny" "tunny" ;
+lin tup_N = mkN "tup" "tups" ;
+lin tupelo_N = mkN "tupelo" "tupeloes" ;
+lin tupik_N = mkN "tupik" "tupiks" ;
+lin tuppence_N = mkN "tuppence" "tuppences" ;
+lin tuppenny_A = mkAMost "tuppenny" "tuppennily" ;
+lin turban_N = mkN "turban" "turbans" ;
+lin turbaned_A = mkAMost "turbaned" "turbanedly" ;
+lin turbid_A = mkAMost "turbid" "turbidly" ;
+lin turbidity_N = mkN "turbidity" "turbidities" ;
+lin turbidness_N = mkN "turbidness" "turbidnesses" ;
+lin turbinate_A = mkAMost "turbinate" "turbinately" ;
+lin turbine_N = mkN "turbine" "turbines" ;
+lin turbogenerator_N = mkN "turbogenerator" "turbogenerators" ;
+lin turbojet_N = mkN "turbojet" "turbojets" ;
+lin turboprop_N = mkN "turboprop" "turboprops" ;
+lin turbot_N = mkN "turbot" "turbot" ;
+lin turbulence_N = mkN "turbulence" "turbulences" ;
+lin turbulent_A = mkAMost "turbulent" "turbulently" ;
+lin turd_N = mkN "turd" "turds" ;
+lin tureen_N = mkN "tureen" "tureens" ;
+lin turf_N = mkN "turf" "turfs" ;
+lin turf_V = mkV "turf" "turfed" "turfed" ;
+lin turgid_A = mkAMost "turgid" "turgidly" ;
+lin turgidity_N = mkN "turgidity" "turgidities" ;
+lin turgor_N = mkN "turgor" "turgors" ;
+lin turmeric_N = mkN "turmeric" "turmerics" ;
+lin turmoil_N = mkN "turmoil" "turmoils" ;
+lin turn_N = mkN "turn" "turns" ;
+lin turn_V = mkV "turn" "turned" "turned" ;
+lin turn_off_N = mkN "turn-off" "turn-offs" ;
+lin turn_on_N = mkN "turn-on" "turn-ons" ;
+lin turn_out_N = mkN "turn-out" "turn-outs" ;
+lin turn_round_N = mkN "turn-round" "turn-rounds" ;
+lin turn_up_N = mkN "turn-up" "turn-ups" ;
+lin turnaround_N = mkN "turnaround" "turnarounds" ;
+lin turnbuckle_N = mkN "turnbuckle" "turnbuckles" ;
+lin turncoat_N = mkN "turncoat" "turncoats" ;
+lin turncock_N = mkN "turncock" "turncocks" ;
+lin turner_N = mkN "turner" "turners" ;
+lin turnery_N = mkN "turnery" "turneries" ;
+lin turning_N = mkN "turning" "turnings" ;
+lin turning_point_N = mkN "turning-point" "turning-points" ;
+lin turnip_N = mkN "turnip" "turnips" ;
+lin turnkey_N = mkN "turnkey" "turnkeys" ;
+lin turnoff_N = mkN "turnoff" "turnoffs" ;
+lin turnout_N = mkN "turnout" "turnouts" ;
+lin turnover_N = mkN "turnover" "turnovers" ;
+lin turnpike_N = mkN "turnpike" "turnpikes" ;
+lin turnspit_N = mkN "turnspit" "turnspits" ;
+lin turnstile_N = mkN "turnstile" "turnstiles" ;
+lin turnstone_N = mkN "turnstone" "turnstones" ;
+lin turntable_N = mkN "turntable" "turntables" ;
+lin turnverein_N = mkN "turnverein" "turnvereins" ;
+lin turpentine_N = mkN "turpentine" "turpentines" ;
+lin turpitude_N = mkN "turpitude" "turpitudes" ;
+lin turps_N = mkN "turps" "turpses" ;
+lin turquoise_N = mkN "turquoise" "turquoises" ;
+lin turreae_N = mkN "turreae" "turreaes" ;
+lin turret_N = mkN "turret" "turrets" ;
+lin turtle_N = mkN "turtle" "turtles" ;
+lin turtledove_N = mkN "turtledove" "turtledoves" ;
+lin turtleneck_A = mkAMost "turtleneck" "turtleneckly" ;
+lin turtleneck_N = mkN "turtleneck" "turtlenecks" ;
+lin turtlenecked_A = mkAMost "turtlenecked" "turtleneckedly" ;
+lin turtler_N = mkN "turtler" "turtlers" ;
+lin tushery_N = mkN "tushery" "tusheries" ;
+lin tusk_N = mkN "tusk" "tusks" ;
+lin tusked_A = mkAMost "tusked" "tuskedly" ;
+lin tusker_N = mkN "tusker" "tuskers" ;
+lin tussah_N = mkN "tussah" "tussahs" ;
+lin tussle_N = mkN "tussle" "tussles" ;
+lin tussle_V = mkV "tussle" "tussled" "tussled" ;
+lin tussock_N = mkN "tussock" "tussocks" ;
+lin tut_V = mkV "tut" "tutted" "tutted" ;
+lin tutee_N = mkN "tutee" "tutees" ;
+lin tutelage_N = mkN "tutelage" "tutelages" ;
+lin tutelary_A = mkAMost "tutelary" "tutelarily" ;
+lin tutor_N = mkN "tutor" "tutors" ;
+lin tutor_V = mkV "tutor" "tutored" "tutored" ;
+lin tutorial_A = mkAMost "tutorial" "tutorially" ;
+lin tutorial_N = mkN "tutorial" "tutorials" ;
+lin tutorship_N = mkN "tutorship" "tutorships" ;
+lin tutti_frutti_N = mkN "tutti-frutti" "tutti-fruttis" ;
+lin tutu_N = mkN "tutu" "tutus" ;
+lin tuxedo_N = mkN "tuxedo" "tuxedos" ;
+lin tuxedoed_A = mkAMost "tuxedoed" "tuxedoedly" ;
+lin twaddle_N = mkN "twaddle" "twaddles" ;
+lin twaddle_V = mkV "twaddle" "twaddled" "twaddled" ;
+lin twaddler_N = mkN "twaddler" "twaddlers" ;
+lin twain_N = mkN "twain" "twains" ;
+lin twang_N = mkN "twang" "twangs" ;
+lin twang_V = mkV "twang" "twanged" "twanged" ;
+lin twayblade_N = mkN "twayblade" "twayblades" ;
+lin tweak_N = mkN "tweak" "tweaks" ;
+lin tweak_V = mkV "tweak" "tweaked" "tweaked" ;
+lin twee_A = mkAMost "twee" "tweely" ;
+lin tweed_N = mkN "tweed" "tweeds" ;
+lin tweediness_N = mkN "tweediness" "tweedinesses" ;
+lin tweedy_A = mkA "tweedy" "tweedier" "tweediest" "tweedily" ;
+lin tweet_N = mkN "tweet" "tweets" ;
+lin tweet_V = mkV "tweet" "tweeted" "tweeted" ;
+lin tweeter_N = mkN "tweeter" "tweeters" ;
+lin twelfth_night_N = mkN "twelfth-night" "twelfth-nights" ;
+lin twelvemonth_N = mkN "twelvemonth" "twelvemonths" ;
+lin twerp_N = mkN "twerp" "twerps" ;
+lin twice_Adv = mkAdv "twice" ;
+lin twiddle_N = mkN "twiddle" "twiddles" ;
+lin twiddle_V = mkV "twiddle" "twiddled" "twiddled" ;
+lin twiddler_N = mkN "twiddler" "twiddlers" ;
+lin twiddly_A = mkAMost "twiddly" "twiddlily" ;
+lin twig_N = mkN "twig" "twigs" ;
+lin twig_V = mkV "twig" "twigged" "twigged" ;
+lin twiggy_A = mkA "twiggy" "twiggier" "twiggiest" "twiggily" ;
+lin twilight_N = mkN "twilight" "twilights" ;
+lin twilit_A = mkAMost "twilit" "twilitly" ;
+lin twill_N = mkN "twill" "twills" ;
+lin twilled_A = mkAMost "twilled" "twilledly" ;
+lin twin_N = mkN "twin" "twins" ;
+lin twin_V = mkV "twin" "twinned" "twinned" ;
+lin twinberry_N = mkN "twinberry" "twinberries" ;
+lin twine_N = mkN "twine" "twines" ;
+lin twine_V = mkV "twine" "twined" "twined" ;
+lin twiner_N = mkN "twiner" "twiners" ;
+lin twinflower_N = mkN "twinflower" "twinflowers" ;
+lin twinge_N = mkN "twinge" "twinges" ;
+lin twinjet_N = mkN "twinjet" "twinjets" ;
+lin twinkle_N = mkN "twinkle" "twinkles" ;
+lin twinkle_V = mkV "twinkle" "twinkled" "twinkled" ;
+lin twinkler_N = mkN "twinkler" "twinklers" ;
+lin twinkling_N = mkN "twinkling" "IRREG" ;
+lin twins_N = mkN "twins" "twinses" ;
+lin twirl_N = mkN "twirl" "twirls" ;
+lin twirl_V = mkV "twirl" "twirled" "twirled" ;
+lin twirlingly_Adv = mkAdv "twirlingly" ;
+lin twist_N = mkN "twist" "twists" ;
+lin twist_V = mkV "twist" "twisted" "twisted" ;
+lin twister_N = mkN "twister" "twisters" ;
+lin twisty_A = mkA "twisty" "twistier" "twistiest" "twistily" ;
+lin twit_N = mkN "twit" "twits" ;
+lin twit_V = mkV "twit" "twitted" "twitted" ;
+lin twitch_N = mkN "twitch" "twitches" ;
+lin twitch_V = mkV "twitch" "twitched" "twitched" ;
+lin twitter_N = mkN "twitter" "twitters" ;
+lin twitter_V = mkV "twitter" "twittered" "twittered" ;
+lin twitterer_N = mkN "twitterer" "twitterers" ;
+lin twixt_Prep = mkPrep "twixt" ;
+lin two_a_penny_A = mkAMost "two-a-penny" "two-a-pennily" ;
+lin two_edged_A = mkAMost "two-edged" "two-edgedly" ;
+lin two_faced_A = mkAMost "two-faced" "two-facedly" ;
+lin two_funnelled_A = mkAMost "two-funnelled" "two-funnelledly" ;
+lin two_handed_A = mkAMost "two-handed" "two-handedly" ;
+lin two_piece_N = mkN "two-piece" "IRREG" ;
+lin two_ply_A = mkAMost "two-ply" "two-plily" ;
+lin two_seater_N = mkN "two-seater" "two-seaters" ;
+lin two_step_N = mkN "two-step" "two-steps" ;
+lin two_timing_A = mkAMost "two-timing" "two-timingly" ;
+lin two_way_A = mkAMost "two-way" "two-waily" ;
+lin twofer_N = mkN "twofer" "twofers" ;
+lin twofold_A = mkAMost "twofold" "twofoldly" ;
+lin twofold_Adv = mkAdv "twofold" ;
+lin twopence_N = mkN "twopence" "twopences" ;
+lin twopenny_A = mkAMost "twopenny" "twopennily" ;
+lin twopenny_halfpenny_A = mkAMost "twopenny-halfpenny" "twopenny-halfpennily" ;
+lin tycoon_N = mkN "tycoon" "tycoons" ;
+lin tying_N = mkN "tying" "tyings" ;
+lin tyiyn_N = mkN "tyiyn" "tyiyns" ;
+lin tyke_N = mkN "tyke" "tykes" ;
+lin tympanic_A = mkAMost "tympanic" "tympanicly" ;
+lin tympanist_N = mkN "tympanist" "tympanists" ;
+lin tympanites_N = mkN "tympanites" "tympaniteses" ;
+lin tympanitic_A = mkAMost "tympanitic" "tympaniticly" ;
+lin tympanitis_N = mkN "tympanitis" "tympanitises" ;
+lin tympanoplasty_N = mkN "tympanoplasty" "tympanoplasties" ;
+lin tympanum_N = mkN "tympanum" "tympanums" ;
+lin type_N = mkN "type" "types" ;
+lin type_V = mkV "type" "typed" "typed" ;
+lin typecast_V = mkV "typecast" "typecast" "typecast" ;
+lin typeface_N = mkN "typeface" "typefaces" ;
+lin typescript_N = mkN "typescript" "typescripts" ;
+lin typesetter_N = mkN "typesetter" "typesetters" ;
+lin typewriter_N = mkN "typewriter" "typewriters" ;
+lin typewritten_A = mkAMost "typewritten" "typewrittenly" ;
+lin typhoid_N = mkN "typhoid" "typhoids" ;
+lin typhoon_N = mkN "typhoon" "typhoons" ;
+lin typhus_N = mkN "typhus" "typhuses" ;
+lin typical_A = mkAMost "typical" "typically" ;
+lin typicality_N = mkN "typicality" "typicalities" ;
+lin typification_N = mkN "typification" "typifications" ;
+lin typify_V = mkV "typify" "typified" "typified" ;
+lin typing_N = mkN "typing" "typings" ;
+lin typist_N = mkN "typist" "typists" ;
+lin typographer_N = mkN "typographer" "typographers" ;
+lin typographic_A = mkAMost "typographic" "typographicly" ;
+lin typographically_Adv = mkAdv "typographically" ;
+lin typography_N = mkN "typography" "typographies" ;
+lin typology_N = mkN "typology" "typologies" ;
+lin tyramine_N = mkN "tyramine" "tyramines" ;
+lin tyrannical_A = mkAMost "tyrannical" "tyrannically" ;
+lin tyrannicide_N = mkN "tyrannicide" "tyrannicides" ;
+lin tyrannid_N = mkN "tyrannid" "tyrannids" ;
+lin tyrannize_V = mkV "tyrannize" "tyrannized" "tyrannized" ;
+lin tyrannosaur_N = mkN "tyrannosaur" "tyrannosaurs" ;
+lin tyrannous_A = mkAMost "tyrannous" "tyrannously" ;
+lin tyranny_N = mkN "tyranny" "tyrannies" ;
+lin tyrant_N = mkN "tyrant" "tyrants" ;
+lin tyre_N = mkN "tyre" "tyres" ;
+lin tyro_N = mkN "tyro" "tyros" ;
+lin tyrocidine_N = mkN "tyrocidine" "tyrocidines" ;
+lin tyrolean_N = mkN "tyrolean" "tyroleans" ;
+lin tyrosine_N = mkN "tyrosine" "tyrosines" ;
+lin tyrosinemia_N = mkN "tyrosinemia" "tyrosinemias" ;
+lin tyrothricin_N = mkN "tyrothricin" "tyrothricins" ;
+lin tzar_N = mkN "tzar" "tzars" ;
+lin tzarina_N = mkN "tzarina" "tzarinas" ;
+lin tête_à_tête_Adv = mkAdv "tête-à-tête" ;
+lin tête_à_tête_N = mkN "tête-à-tête" "tête-à-têtes" ;
+lin u_A = mkA "u" "uer" "uest" "uly" ;
+lin u_boat_N = mkN "u-boat" "u-boats" ;
+lin u_turn_N = mkN "u-turn" "u-turns" ;
+lin uakari_N = mkN "uakari" "uakaris" ;
+lin ubiety_N = mkN "ubiety" "ubieties" ;
+lin ubiquinone_N = mkN "ubiquinone" "ubiquinones" ;
+lin ubiquitous_A = mkAMost "ubiquitous" "ubiquitously" ;
+lin ubiquity_N = mkN "ubiquity" "ubiquities" ;
+lin udder_N = mkN "udder" "udders" ;
+lin ugandan_A = mkAMost "ugandan" "ugandanly" ;
+lin ugandan_N = mkN "ugandan" "ugandans" ;
+lin uglify_V = mkV "uglify" "uglified" "uglified" ;
+lin ugliness_N = mkN "ugliness" "uglinesses" ;
+lin ugly_A = mkA "ugly" "uglier" "ugliest" "uglily" ;
+lin ukase_N = mkN "ukase" "ukases" ;
+lin uke_N = mkN "uke" "ukes" ;
+lin ukulele_N = mkN "ukulele" "ukuleles" ;
+lin ulalgia_N = mkN "ulalgia" "ulalgias" ;
+lin ulatrophia_N = mkN "ulatrophia" "ulatrophias" ;
+lin ulcer_N = mkN "ulcer" "ulcers" ;
+lin ulcerate_V = mkV "ulcerate" "ulcerated" "ulcerated" ;
+lin ulceration_N = mkN "ulceration" "ulcerations" ;
+lin ulcerative_A = mkAMost "ulcerative" "ulceratively" ;
+lin ulcerous_A = mkAMost "ulcerous" "ulcerously" ;
+lin ulema_N = mkN "ulema" "ulemas" ;
+lin ulemorrhagia_N = mkN "ulemorrhagia" "ulemorrhagias" ;
+lin ulitis_N = mkN "ulitis" "ulitises" ;
+lin ullage_N = mkN "ullage" "ullages" ;
+lin ulna_N = mkN "ulna" "ulnae" ;
+lin ulnar_A = mkAMost "ulnar" "ulnarly" ;
+lin ulster_N = mkN "ulster" "ulsters" ;
+lin ulterior_A = mkAMost "ulterior" "ulteriorly" ;
+lin ulteriority_N = mkN "ulteriority" "ulteriorities" ;
+lin ultima_N = mkN "ultima" "ultimas" ;
+lin ultimacy_N = mkN "ultimacy" "ultimacies" ;
+lin ultimate_A = mkAMost "ultimate" "ultimately" ;
+lin ultimate_N = mkN "ultimate" "ultimates" ;
+lin ultimatum_N = mkN "ultimatum" "ultimatums" ;
+lin ultimo_A = mkAMost "ultimo" "ultimoly" ;
+lin ultra_vires_A = mkAMost "ultra vires" "ultra viresly" ;
+lin ultra_vires_Adv = mkAdv "ultra vires" ;
+lin ultracentrifugation_N = mkN "ultracentrifugation" "ultracentrifugations" ;
+lin ultracentrifuge_N = mkN "ultracentrifuge" "ultracentrifuges" ;
+lin ultraconservative_A = mkAMost "ultraconservative" "ultraconservatively" ;
+lin ultramarine_A = mkAMost "ultramarine" "ultramarinely" ;
+lin ultramarine_N = mkN "ultramarine" "ultramarines" ;
+lin ultramicroscope_N = mkN "ultramicroscope" "ultramicroscopes" ;
+lin ultramicroscopic_A = mkAMost "ultramicroscopic" "ultramicroscopicly" ;
+lin ultramodern_A = mkAMost "ultramodern" "ultramodernly" ;
+lin ultramontane_A = mkAMost "ultramontane" "ultramontanely" ;
+lin ultramontane_N = mkN "ultramontane" "ultramontanes" ;
+lin ultramontanism_N = mkN "ultramontanism" "ultramontanisms" ;
+lin ultrasonic_A = mkAMost "ultrasonic" "ultrasonicly" ;
+lin ultrasonically_Adv = mkAdv "ultrasonically" ;
+lin ultrasound_N = mkN "ultrasound" "ultrasounds" ;
+lin ultraviolet_A = mkAMost "ultraviolet" "ultravioletly" ;
+lin ultraviolet_N = mkN "ultraviolet" "ultraviolets" ;
+lin ululate_V = mkV "ululate" "ululated" "ululated" ;
+lin ululation_N = mkN "ululation" "ululations" ;
+lin umbel_N = mkN "umbel" "umbels" ;
+lin umbellate_A = mkAMost "umbellate" "umbellately" ;
+lin umbellifer_N = mkN "umbellifer" "umbellifers" ;
+lin umbelliferous_A = mkAMost "umbelliferous" "umbelliferously" ;
+lin umbelliform_A = mkAMost "umbelliform" "umbelliformly" ;
+lin umber_A = mkAMost "umber" "umberly" ;
+lin umber_N = mkN "umber" "umbers" ;
+lin umbilical_A = mkAMost "umbilical" "umbilically" ;
+lin umbilicate_A = mkAMost "umbilicate" "umbilicately" ;
+lin umbo_N = mkN "umbo" "umboes" ;
+lin umbra_N = mkN "umbra" "umbras" ;
+lin umbrage_N = mkN "umbrage" "umbrages" ;
+lin umbrella_A = mkAMost "umbrella" "umbrellaly" ;
+lin umbrella_N = mkN "umbrella" "umbrellas" ;
+lin umbrellalike_A = mkAMost "umbrellalike" "umbrellalikely" ;
+lin umbrellawort_N = mkN "umbrellawort" "umbrellaworts" ;
+lin umlaut_N = mkN "umlaut" "umlauts" ;
+lin umpirage_N = mkN "umpirage" "umpirages" ;
+lin umpire_N = mkN "umpire" "umpires" ;
+lin umpire_V = mkV "umpire" "umpired" "umpired" ;
+lin umpteen_A = mkAMost "umpteen" "umpteenly" ;
+lin umpteenth_A = mkAMost "umpteenth" "umpteenthly" ;
+lin un_N = mkN "un" "uns" ;
+lin un_come_at_able_A = mkAMost "un-come-at-able" "un-come-at-ably" ;
+lin un_get_at_able_A = mkAMost "un-get-at-able" "un-get-at-ably" ;
+lin unabashed_A = mkAMost "unabashed" "unabashedly" ;
+lin unabated_A = mkAMost "unabated" "unabatedly" ;
+lin unable_A = mkAMost "unable" "unably" ;
+lin unabridged_A = mkAMost "unabridged" "unabridgedly" ;
+lin unabused_A = mkAMost "unabused" "unabusedly" ;
+lin unaccented_A = mkAMost "unaccented" "unaccentedly" ;
+lin unacceptability_N = mkN "unacceptability" "unacceptabilities" ;
+lin unacceptable_A = mkAMost "unacceptable" "unacceptably" ;
+lin unaccommodating_A = mkAMost "unaccommodating" "unaccommodatingly" ;
+lin unaccompanied_A = mkAMost "unaccompanied" "unaccompaniedly" ;
+lin unaccountable_A = mkAMost "unaccountable" "unaccountably" ;
+lin unaccounted_A = mkAMost "unaccounted" "unaccountedly" ;
+lin unaccredited_A = mkAMost "unaccredited" "unaccreditedly" ;
+lin unaccustomed_A = mkAMost "unaccustomed" "unaccustomedly" ;
+lin unachievable_A = mkAMost "unachievable" "unachievably" ;
+lin unacknowledged_A = mkAMost "unacknowledged" "unacknowledgedly" ;
+lin unacquainted_A = mkAMost "unacquainted" "unacquaintedly" ;
+lin unacquisitive_A = mkAMost "unacquisitive" "unacquisitively" ;
+lin unactable_A = mkAMost "unactable" "unactably" ;
+lin unadaptability_N = mkN "unadaptability" "unadaptabilities" ;
+lin unadaptable_A = mkAMost "unadaptable" "unadaptably" ;
+lin unadapted_A = mkAMost "unadapted" "unadaptedly" ;
+lin unaddicted_A = mkAMost "unaddicted" "unaddictedly" ;
+lin unaddressed_A = mkAMost "unaddressed" "unaddressedly" ;
+lin unadjustable_A = mkAMost "unadjustable" "unadjustably" ;
+lin unadjusted_A = mkAMost "unadjusted" "unadjustedly" ;
+lin unadoptable_A = mkAMost "unadoptable" "unadoptably" ;
+lin unadorned_A = mkAMost "unadorned" "unadornedly" ;
+lin unadulterated_A = mkAMost "unadulterated" "unadulteratedly" ;
+lin unadventurous_A = mkAMost "unadventurous" "unadventurously" ;
+lin unadvised_A = mkAMost "unadvised" "unadvisedly" ;
+lin unaerated_A = mkAMost "unaerated" "unaeratedly" ;
+lin unaffected_A = mkAMost "unaffected" "unaffectedly" ;
+lin unaffectedness_N = mkN "unaffectedness" "unaffectednesses" ;
+lin unaffecting_A = mkAMost "unaffecting" "unaffectingly" ;
+lin unaffiliated_A = mkAMost "unaffiliated" "unaffiliatedly" ;
+lin unaffixed_A = mkAMost "unaffixed" "unaffixedly" ;
+lin unafraid_A = mkAMost "unafraid" "unafraidly" ;
+lin unaged_A = mkAMost "unaged" "unagedly" ;
+lin unaggressive_A = mkAMost "unaggressive" "unaggressively" ;
+lin unagitated_A = mkAMost "unagitated" "unagitatedly" ;
+lin unaided_A = mkAMost "unaided" "unaidedly" ;
+lin unairworthy_A = mkAMost "unairworthy" "unairworthily" ;
+lin unalarming_A = mkAMost "unalarming" "unalarmingly" ;
+lin unalert_A = mkAMost "unalert" "unalertly" ;
+lin unalienable_A = mkAMost "unalienable" "unalienably" ;
+lin unaligned_A = mkAMost "unaligned" "unalignedly" ;
+lin unalike_A = mkAMost "unalike" "unalikely" ;
+lin unalloyed_A = mkAMost "unalloyed" "unalloyedly" ;
+lin unalterability_N = mkN "unalterability" "unalterabilities" ;
+lin unalterable_A = mkAMost "unalterable" "unalterably" ;
+lin unaltered_A = mkAMost "unaltered" "unalteredly" ;
+lin unambiguity_N = mkN "unambiguity" "unambiguities" ;
+lin unambiguous_A = mkAMost "unambiguous" "unambiguously" ;
+lin unambitious_A = mkAMost "unambitious" "unambitiously" ;
+lin unamended_A = mkAMost "unamended" "unamendedly" ;
+lin unanalyzable_A = mkAMost "unanalyzable" "unanalyzably" ;
+lin unanalyzed_A = mkAMost "unanalyzed" "unanalyzedly" ;
+lin unanimated_A = mkAMost "unanimated" "unanimatedly" ;
+lin unanimity_N = mkN "unanimity" "unanimities" ;
+lin unanimous_A = mkAMost "unanimous" "unanimously" ;
+lin unannounced_A = mkAMost "unannounced" "unannouncedly" ;
+lin unanswerable_A = mkAMost "unanswerable" "unanswerably" ;
+lin unanswered_A = mkAMost "unanswered" "unansweredly" ;
+lin unanticipated_A = mkAMost "unanticipated" "unanticipatedly" ;
+lin unapologetic_A = mkAMost "unapologetic" "unapologeticly" ;
+lin unappareled_A = mkAMost "unappareled" "unappareledly" ;
+lin unapparent_A = mkAMost "unapparent" "unapparently" ;
+lin unappealable_A = mkAMost "unappealable" "unappealably" ;
+lin unappealing_A = mkAMost "unappealing" "unappealingly" ;
+lin unappendaged_A = mkAMost "unappendaged" "unappendagedly" ;
+lin unappetizing_A = mkAMost "unappetizing" "unappetizingly" ;
+lin unappetizingness_N = mkN "unappetizingness" "unappetizingnesses" ;
+lin unappreciated_A = mkAMost "unappreciated" "unappreciatedly" ;
+lin unappreciative_A = mkAMost "unappreciative" "unappreciatively" ;
+lin unapprehensive_A = mkAMost "unapprehensive" "unapprehensively" ;
+lin unapproachability_N = mkN "unapproachability" "unapproachabilities" ;
+lin unapproachable_A = mkAMost "unapproachable" "unapproachably" ;
+lin unarguable_A = mkAMost "unarguable" "unarguably" ;
+lin unargumentative_A = mkAMost "unargumentative" "unargumentatively" ;
+lin unarmed_A = mkAMost "unarmed" "unarmedly" ;
+lin unarmored_A = mkAMost "unarmored" "unarmoredly" ;
+lin unarticulated_A = mkAMost "unarticulated" "unarticulatedly" ;
+lin unary_A = mkAMost "unary" "unarily" ;
+lin unascertainable_A = mkAMost "unascertainable" "unascertainably" ;
+lin unashamed_A = mkAMost "unashamed" "unashamedly" ;
+lin unasked_A = mkAMost "unasked" "unaskedly" ;
+lin unassailable_A = mkAMost "unassailable" "unassailably" ;
+lin unassertive_A = mkAMost "unassertive" "unassertively" ;
+lin unassertiveness_N = mkN "unassertiveness" "unassertivenesses" ;
+lin unassigned_A = mkAMost "unassigned" "unassignedly" ;
+lin unassisted_A = mkAMost "unassisted" "unassistedly" ;
+lin unassuming_A = mkAMost "unassuming" "unassumingly" ;
+lin unassured_A = mkAMost "unassured" "unassuredly" ;
+lin unasterisked_A = mkAMost "unasterisked" "unasteriskedly" ;
+lin unattached_A = mkAMost "unattached" "unattachedly" ;
+lin unattainable_A = mkAMost "unattainable" "unattainably" ;
+lin unattainableness_N = mkN "unattainableness" "unattainablenesses" ;
+lin unattended_A = mkAMost "unattended" "unattendedly" ;
+lin unattractive_A = mkAMost "unattractive" "unattractively" ;
+lin unattractiveness_N = mkN "unattractiveness" "unattractivenesses" ;
+lin unattributable_A = mkAMost "unattributable" "unattributably" ;
+lin unauthorized_A = mkAMost "unauthorized" "unauthorizedly" ;
+lin unavailable_A = mkAMost "unavailable" "unavailably" ;
+lin unavailing_A = mkAMost "unavailing" "unavailingly" ;
+lin unavenged_A = mkAMost "unavenged" "unavengedly" ;
+lin unavoidable_A = mkAMost "unavoidable" "unavoidably" ;
+lin unavowed_A = mkAMost "unavowed" "unavowedly" ;
+lin unawakened_A = mkAMost "unawakened" "unawakenedly" ;
+lin unaware_A = mkAMost "unaware" "unawarely" ;
+lin unawares_Adv = mkAdv "unawares" ;
+lin unawed_A = mkAMost "unawed" "unawedly" ;
+lin unbacked_A = mkAMost "unbacked" "unbackedly" ;
+lin unbaffled_A = mkAMost "unbaffled" "unbaffledly" ;
+lin unbalance_V = mkV "unbalance" "unbalanced" "unbalanced" ;
+lin unbalconied_A = mkAMost "unbalconied" "unbalconiedly" ;
+lin unbanded_A = mkAMost "unbanded" "unbandedly" ;
+lin unbaptized_A = mkAMost "unbaptized" "unbaptizedly" ;
+lin unbar_V = mkV "unbar" "unbarred" "unbarred" ;
+lin unbarreled_A = mkAMost "unbarreled" "unbarreledly" ;
+lin unbearable_A = mkAMost "unbearable" "unbearably" ;
+lin unbeatable_A = mkAMost "unbeatable" "unbeatably" ;
+lin unbeaten_A = mkAMost "unbeaten" "unbeatenly" ;
+lin unbecoming_A = mkAMost "unbecoming" "unbecomingly" ;
+lin unbecomingness_N = mkN "unbecomingness" "unbecomingnesses" ;
+lin unbefitting_A = mkAMost "unbefitting" "unbefittingly" ;
+lin unbeknown_A = mkAMost "unbeknown" "unbeknownly" ;
+lin unbeknown_Adv = mkAdv "unbeknown" ;
+lin unbeknownst_A = mkAMost "unbeknownst" "unbeknownstly" ;
+lin unbeknownst_Adv = mkAdv "unbeknownst" ;
+lin unbelief_N = mkN "unbelief" "unbeliefs" ;
+lin unbelievable_A = mkAMost "unbelievable" "unbelievably" ;
+lin unbeliever_N = mkN "unbeliever" "unbelievers" ;
+lin unbelieving_A = mkAMost "unbelieving" "unbelievingly" ;
+lin unbeloved_A = mkAMost "unbeloved" "unbelovedly" ;
+lin unbelted_A = mkAMost "unbelted" "unbeltedly" ;
+lin unbend_V = mkV "unbend" "unbended" "unbended" ;
+lin unbeneficed_A = mkAMost "unbeneficed" "unbeneficedly" ;
+lin unbent_A = mkAMost "unbent" "unbently" ;
+lin unbiased_A = mkAMost "unbiased" "unbiasedly" ;
+lin unbiassed_A = mkAMost "unbiassed" "unbiassedly" ;
+lin unbidden_A = mkAMost "unbidden" "unbiddenly" ;
+lin unbigoted_A = mkAMost "unbigoted" "unbigotedly" ;
+lin unbind_V = mkV "unbind" "unbound" "unbound" ;
+lin unbitter_A = mkAMost "unbitter" "unbitterly" ;
+lin unbleached_A = mkAMost "unbleached" "unbleachedly" ;
+lin unblemished_A = mkAMost "unblemished" "unblemishedly" ;
+lin unblended_A = mkAMost "unblended" "unblendedly" ;
+lin unblessed_A = mkAMost "unblessed" "unblessedly" ;
+lin unblinking_A = mkAMost "unblinking" "unblinkingly" ;
+lin unblock_V = mkV "unblock" "unblocked" "unblocked" ;
+lin unblushing_A = mkAMost "unblushing" "unblushingly" ;
+lin unbodied_A = mkAMost "unbodied" "unbodiedly" ;
+lin unbolt_V = mkV "unbolt" "unbolted" "unbolted" ;
+lin unbooked_A = mkAMost "unbooked" "unbookedly" ;
+lin unbordered_A = mkAMost "unbordered" "unborderedly" ;
+lin unborn_A = mkAMost "unborn" "unbornly" ;
+lin unbosom_V = mkV "unbosom" "unbosomed" "unbosomed" ;
+lin unbounded_A = mkAMost "unbounded" "unboundedly" ;
+lin unbowed_A = mkAMost "unbowed" "unbowedly" ;
+lin unbraced_A = mkAMost "unbraced" "unbracedly" ;
+lin unbrainwashed_A = mkAMost "unbrainwashed" "unbrainwashedly" ;
+lin unbranched_A = mkAMost "unbranched" "unbranchedly" ;
+lin unbranded_A = mkAMost "unbranded" "unbrandedly" ;
+lin unbreakable_A = mkAMost "unbreakable" "unbreakably" ;
+lin unbreakableness_N = mkN "unbreakableness" "unbreakablenesses" ;
+lin unbridgeable_A = mkAMost "unbridgeable" "unbridgeably" ;
+lin unbridled_A = mkAMost "unbridled" "unbridledly" ;
+lin unbroken_A = mkAMost "unbroken" "unbrokenly" ;
+lin unbrushed_A = mkAMost "unbrushed" "unbrushedly" ;
+lin unbuckle_V = mkV "unbuckle" "unbuckled" "unbuckled" ;
+lin unburden_V = mkV "unburden" "unburdened" "unburdened" ;
+lin unburied_A = mkAMost "unburied" "unburiedly" ;
+lin unburnished_A = mkAMost "unburnished" "unburnishedly" ;
+lin unbutton_V = mkV "unbutton" "unbuttoned" "unbuttoned" ;
+lin uncalled_for_A = mkAMost "uncalled-for" "uncalled-forly" ;
+lin uncamphorated_A = mkAMost "uncamphorated" "uncamphoratedly" ;
+lin uncanny_A = mkAMost "uncanny" "uncannily" ;
+lin uncapped_A = mkAMost "uncapped" "uncappedly" ;
+lin uncared_for_A = mkAMost "uncared-for" "uncared-forly" ;
+lin uncarpeted_A = mkAMost "uncarpeted" "uncarpetedly" ;
+lin uncarved_A = mkAMost "uncarved" "uncarvedly" ;
+lin uncastrated_A = mkAMost "uncastrated" "uncastratedly" ;
+lin uncategorized_A = mkAMost "uncategorized" "uncategorizedly" ;
+lin uncaulked_A = mkAMost "uncaulked" "uncaulkedly" ;
+lin unceasing_A = mkAMost "unceasing" "unceasingly" ;
+lin uncensored_A = mkAMost "uncensored" "uncensoredly" ;
+lin unceremonious_A = mkAMost "unceremonious" "unceremoniously" ;
+lin unceremoniousness_N = mkN "unceremoniousness" "unceremoniousnesses" ;
+lin uncertain_A = mkAMost "uncertain" "uncertainly" ;
+lin uncertainty_N = mkN "uncertainty" "uncertainties" ;
+lin uncertified_A = mkAMost "uncertified" "uncertifiedly" ;
+lin unchain_V = mkV "unchain" "unchained" "unchained" ;
+lin unchallengeable_A = mkAMost "unchallengeable" "unchallengeably" ;
+lin unchallenged_A = mkAMost "unchallenged" "unchallengedly" ;
+lin unchangeable_A = mkAMost "unchangeable" "unchangeably" ;
+lin unchanged_A = mkAMost "unchanged" "unchangedly" ;
+lin unchanging_A = mkAMost "unchanging" "unchangingly" ;
+lin uncharacteristic_A = mkAMost "uncharacteristic" "uncharacteristicly" ;
+lin uncharacteristically_Adv = mkAdv "uncharacteristically" ;
+lin uncharged_A = mkAMost "uncharged" "unchargedly" ;
+lin uncharitable_A = mkAMost "uncharitable" "uncharitably" ;
+lin uncharted_A = mkAMost "uncharted" "unchartedly" ;
+lin unchartered_A = mkAMost "unchartered" "uncharteredly" ;
+lin unchaste_A = mkAMost "unchaste" "unchastely" ;
+lin uncheckable_A = mkAMost "uncheckable" "uncheckably" ;
+lin unchecked_A = mkAMost "unchecked" "uncheckedly" ;
+lin uncheerfulness_N = mkN "uncheerfulness" "uncheerfulnesses" ;
+lin unchivalrously_Adv = mkAdv "unchivalrously" ;
+lin unchristian_A = mkAMost "unchristian" "unchristianly" ;
+lin unchristianly_A = mkAMost "unchristianly" "unchristianlily" ;
+lin uncial_A = mkAMost "uncial" "uncially" ;
+lin uncial_N = mkN "uncial" "uncials" ;
+lin uncivil_A = mkAMost "uncivil" "uncivilly" ;
+lin uncivilized_A = mkAMost "uncivilized" "uncivilizedly" ;
+lin unclaimed_A = mkAMost "unclaimed" "unclaimedly" ;
+lin unclassifiable_A = mkAMost "unclassifiable" "unclassifiably" ;
+lin unclassified_A = mkAMost "unclassified" "unclassifiedly" ;
+lin uncle_N = mkN "uncle" "uncles" ;
+lin unclean_A = mkAMost "unclean" "uncleanly" ;
+lin uncleanliness_N = mkN "uncleanliness" "uncleanlinesses" ;
+lin uncleanly_A = mkAMost "uncleanly" "uncleanlily" ;
+lin unclear_A = mkAMost "unclear" "unclearly" ;
+lin uncleared_A = mkAMost "uncleared" "unclearedly" ;
+lin unclearness_N = mkN "unclearness" "unclearnesses" ;
+lin unclipped_A = mkAMost "unclipped" "unclippedly" ;
+lin unclogged_A = mkAMost "unclogged" "uncloggedly" ;
+lin unclothed_A = mkAMost "unclothed" "unclothedly" ;
+lin unclouded_A = mkAMost "unclouded" "uncloudedly" ;
+lin uncluttered_A = mkAMost "uncluttered" "unclutteredly" ;
+lin unco_A = mkAMost "unco" "uncoly" ;
+lin unco_Adv = mkAdv "unco" ;
+lin unco_operative_A = mkAMost "unco-operative" "unco-operatively" ;
+lin unco_ordinated_A = mkAMost "unco-ordinated" "unco-ordinatedly" ;
+lin uncoated_A = mkAMost "uncoated" "uncoatedly" ;
+lin uncoerced_A = mkAMost "uncoerced" "uncoercedly" ;
+lin uncoiled_A = mkAMost "uncoiled" "uncoiledly" ;
+lin uncollected_A = mkAMost "uncollected" "uncollectedly" ;
+lin uncolored_A = mkAMost "uncolored" "uncoloredly" ;
+lin uncoloured_A = mkAMost "uncoloured" "uncolouredly" ;
+lin uncombable_A = mkAMost "uncombable" "uncombably" ;
+lin uncombed_A = mkAMost "uncombed" "uncombedly" ;
+lin uncombined_A = mkAMost "uncombined" "uncombinedly" ;
+lin uncomfortable_A = mkAMost "uncomfortable" "uncomfortably" ;
+lin uncommercial_A = mkAMost "uncommercial" "uncommercially" ;
+lin uncommercialized_A = mkAMost "uncommercialized" "uncommercializedly" ;
+lin uncommitted_A = mkAMost "uncommitted" "uncommittedly" ;
+lin uncommon_A = mkAMost "uncommon" "uncommonly" ;
+lin uncommonness_N = mkN "uncommonness" "uncommonnesses" ;
+lin uncommunicative_A = mkAMost "uncommunicative" "uncommunicatively" ;
+lin uncommunicativeness_N = mkN "uncommunicativeness" "uncommunicativenesses" ;
+lin uncompartmented_A = mkAMost "uncompartmented" "uncompartmentedly" ;
+lin uncompassionate_A = mkAMost "uncompassionate" "uncompassionately" ;
+lin uncompensated_A = mkAMost "uncompensated" "uncompensatedly" ;
+lin uncompetitive_A = mkAMost "uncompetitive" "uncompetitively" ;
+lin uncomplaining_A = mkAMost "uncomplaining" "uncomplainingly" ;
+lin uncompleted_A = mkAMost "uncompleted" "uncompletedly" ;
+lin uncomplicated_A = mkAMost "uncomplicated" "uncomplicatedly" ;
+lin uncomplimentary_A = mkAMost "uncomplimentary" "uncomplimentarily" ;
+lin uncompounded_A = mkAMost "uncompounded" "uncompoundedly" ;
+lin uncomprehended_A = mkAMost "uncomprehended" "uncomprehendedly" ;
+lin uncomprehending_A = mkAMost "uncomprehending" "uncomprehendingly" ;
+lin uncompromising_A = mkAMost "uncompromising" "uncompromisingly" ;
+lin unconcealed_A = mkAMost "unconcealed" "unconcealedly" ;
+lin unconcern_N = mkN "unconcern" "unconcerns" ;
+lin unconcerned_A = mkAMost "unconcerned" "unconcernedly" ;
+lin unconditional_A = mkAMost "unconditional" "unconditionally" ;
+lin unconditioned_A = mkAMost "unconditioned" "unconditionedly" ;
+lin unconfessed_A = mkAMost "unconfessed" "unconfessedly" ;
+lin unconfessed_N = mkN "unconfessed" "unconfesseds" ;
+lin unconfined_A = mkAMost "unconfined" "unconfinedly" ;
+lin unconfirmed_A = mkAMost "unconfirmed" "unconfirmedly" ;
+lin unconformable_A = mkAMost "unconformable" "unconformably" ;
+lin uncongenial_A = mkAMost "uncongenial" "uncongenially" ;
+lin uncongeniality_N = mkN "uncongeniality" "uncongenialities" ;
+lin unconnected_A = mkAMost "unconnected" "unconnectedly" ;
+lin unconnectedness_N = mkN "unconnectedness" "unconnectednesses" ;
+lin unconquerable_A = mkAMost "unconquerable" "unconquerably" ;
+lin unconquered_A = mkAMost "unconquered" "unconqueredly" ;
+lin unconscientious_A = mkAMost "unconscientious" "unconscientiously" ;
+lin unconscientiousness_N = mkN "unconscientiousness" "unconscientiousnesses" ;
+lin unconscionable_A = mkAMost "unconscionable" "unconscionably" ;
+lin unconscious_A = mkAMost "unconscious" "unconsciously" ;
+lin unconscious_N = mkN "unconscious" "unconsciouses" ;
+lin unconsciousness_N = mkN "unconsciousness" "unconsciousnesses" ;
+lin unconsidered_A = mkAMost "unconsidered" "unconsideredly" ;
+lin unconsolidated_A = mkAMost "unconsolidated" "unconsolidatedly" ;
+lin unconstipated_A = mkAMost "unconstipated" "unconstipatedly" ;
+lin unconstitutional_A = mkAMost "unconstitutional" "unconstitutionally" ;
+lin unconstrained_A = mkAMost "unconstrained" "unconstrainedly" ;
+lin unconstricted_A = mkAMost "unconstricted" "unconstrictedly" ;
+lin unconstructive_A = mkAMost "unconstructive" "unconstructively" ;
+lin unconsumed_A = mkAMost "unconsumed" "unconsumedly" ;
+lin unconsummated_A = mkAMost "unconsummated" "unconsummatedly" ;
+lin uncontaminated_A = mkAMost "uncontaminated" "uncontaminatedly" ;
+lin uncontested_A = mkAMost "uncontested" "uncontestedly" ;
+lin uncontrollable_A = mkAMost "uncontrollable" "uncontrollably" ;
+lin uncontrolled_A = mkAMost "uncontrolled" "uncontrolledly" ;
+lin uncontroversial_A = mkAMost "uncontroversial" "uncontroversially" ;
+lin unconventional_A = mkAMost "unconventional" "unconventionally" ;
+lin unconventionality_N = mkN "unconventionality" "unconventionalities" ;
+lin unconverted_A = mkAMost "unconverted" "unconvertedly" ;
+lin unconvinced_A = mkAMost "unconvinced" "unconvincedly" ;
+lin unconvincing_A = mkAMost "unconvincing" "unconvincingly" ;
+lin uncooked_A = mkAMost "uncooked" "uncookedly" ;
+lin uncool_A = mkAMost "uncool" "uncoolly" ;
+lin uncooperative_A = mkAMost "uncooperative" "uncooperatively" ;
+lin uncoordinated_A = mkAMost "uncoordinated" "uncoordinatedly" ;
+lin uncordial_A = mkAMost "uncordial" "uncordially" ;
+lin uncork_V = mkV "uncork" "uncorked" "uncorked" ;
+lin uncorrected_A = mkAMost "uncorrected" "uncorrectedly" ;
+lin uncorrelated_A = mkAMost "uncorrelated" "uncorrelatedly" ;
+lin uncorroborated_A = mkAMost "uncorroborated" "uncorroboratedly" ;
+lin uncorrupted_A = mkAMost "uncorrupted" "uncorruptedly" ;
+lin uncouple_V = mkV "uncouple" "uncoupled" "uncoupled" ;
+lin uncousinly_A = mkAMost "uncousinly" "uncousinlily" ;
+lin uncouth_A = mkAMost "uncouth" "uncouthly" ;
+lin uncouthness_N = mkN "uncouthness" "uncouthnesses" ;
+lin uncover_V = mkV "uncover" "uncovered" "uncovered" ;
+lin uncrannied_A = mkAMost "uncrannied" "uncranniedly" ;
+lin uncreative_A = mkAMost "uncreative" "uncreatively" ;
+lin uncreativeness_N = mkN "uncreativeness" "uncreativenesses" ;
+lin uncritical_A = mkAMost "uncritical" "uncritically" ;
+lin uncropped_A = mkAMost "uncropped" "uncroppedly" ;
+lin uncross_V = mkV "uncross" "uncrossed" "uncrossed" ;
+lin uncrowded_A = mkAMost "uncrowded" "uncrowdedly" ;
+lin uncrowned_A = mkAMost "uncrowned" "uncrownedly" ;
+lin uncrystallized_A = mkAMost "uncrystallized" "uncrystallizedly" ;
+lin unction_N = mkN "unction" "unctions" ;
+lin unctuous_A = mkAMost "unctuous" "unctuously" ;
+lin uncultivable_A = mkAMost "uncultivable" "uncultivably" ;
+lin uncultivated_A = mkAMost "uncultivated" "uncultivatedly" ;
+lin uncultured_A = mkAMost "uncultured" "unculturedly" ;
+lin uncured_A = mkAMost "uncured" "uncuredly" ;
+lin uncurl_V = mkV "uncurl" "uncurled" "uncurled" ;
+lin uncurved_A = mkAMost "uncurved" "uncurvedly" ;
+lin uncus_N = mkN "uncus" "uncuses" ;
+lin uncut_A = mkAMost "uncut" "uncutly" ;
+lin undamaged_A = mkAMost "undamaged" "undamagedly" ;
+lin undatable_A = mkAMost "undatable" "undatably" ;
+lin undated_A = mkAMost "undated" "undatedly" ;
+lin undaunted_A = mkAMost "undaunted" "undauntedly" ;
+lin undecagon_N = mkN "undecagon" "undecagons" ;
+lin undeceive_V = mkV "undeceive" "undeceived" "undeceived" ;
+lin undecided_A = mkAMost "undecided" "undecidedly" ;
+lin undeciphered_A = mkAMost "undeciphered" "undecipheredly" ;
+lin undeclared_A = mkAMost "undeclared" "undeclaredly" ;
+lin undedicated_A = mkAMost "undedicated" "undedicatedly" ;
+lin undefeated_A = mkAMost "undefeated" "undefeatedly" ;
+lin undefended_A = mkAMost "undefended" "undefendedly" ;
+lin undeferential_A = mkAMost "undeferential" "undeferentially" ;
+lin undefinable_A = mkAMost "undefinable" "undefinably" ;
+lin undefined_A = mkAMost "undefined" "undefinedly" ;
+lin undelineated_A = mkAMost "undelineated" "undelineatedly" ;
+lin undemanding_A = mkAMost "undemanding" "undemandingly" ;
+lin undemocratic_A = mkAMost "undemocratic" "undemocraticly" ;
+lin undemocratically_Adv = mkAdv "undemocratically" ;
+lin undemonstrative_A = mkAMost "undemonstrative" "undemonstratively" ;
+lin undeniable_A = mkAMost "undeniable" "undeniably" ;
+lin undenominational_A = mkAMost "undenominational" "undenominationally" ;
+lin undependability_N = mkN "undependability" "undependabilities" ;
+lin undependable_A = mkAMost "undependable" "undependably" ;
+lin undepicted_A = mkAMost "undepicted" "undepictedly" ;
+lin under_Adv = mkAdv "under" ;
+lin under_Prep = mkPrep "under" ;
+lin under_the_counter_A = mkAMost "under-the-counter" "under-the-counterly" ;
+lin underachievement_N = mkN "underachievement" "underachievements" ;
+lin underachiever_N = mkN "underachiever" "underachievers" ;
+lin underact_V = mkV "underact" "underacted" "underacted" ;
+lin underage_A = mkAMost "underage" "underagely" ;
+lin underarm_A = mkAMost "underarm" "underarmly" ;
+lin underarm_Adv = mkAdv "underarm" ;
+lin underbelly_N = mkN "underbelly" "underbellies" ;
+lin underbid_underbade_underbid_V = mkV "underbid" "underbade" "underbid" ;
+lin underbid_underbade_underbidden_V = mkV "underbid" "underbade" "underbidden" ;
+lin underbid_underbid_underbid_V = mkV "underbid" "underbid" "underbid" ;
+lin underbid_underbid_underbidden_V = mkV "underbid" "underbid" "underbidden" ;
+lin underboss_N = mkN "underboss" "underbosses" ;
+lin underbred_A = mkAMost "underbred" "underbredly" ;
+lin underbrush_N = mkN "underbrush" "underbrushes" ;
+lin undercarriage_N = mkN "undercarriage" "undercarriages" ;
+lin undercharge_N = mkN "undercharge" "undercharges" ;
+lin undercharge_V = mkV "undercharge" "undercharged" "undercharged" ;
+lin underclothing_N = mkN "underclothing" "underclothings" ;
+lin undercoat_N = mkN "undercoat" "undercoats" ;
+lin undercoated_A = mkAMost "undercoated" "undercoatedly" ;
+lin undercover_A = mkAMost "undercover" "undercoverly" ;
+lin undercurrent_N = mkN "undercurrent" "undercurrents" ;
+lin undercut_N = mkN "undercut" "undercuts" ;
+lin undercut_V = mkV "undercut" "undercut" "undercut" ;
+lin underdeveloped_A = mkAMost "underdeveloped" "underdevelopedly" ;
+lin underdevelopment_N = mkN "underdevelopment" "underdevelopments" ;
+lin underdog_N = mkN "underdog" "underdogs" ;
+lin underdone_A = mkAMost "underdone" "underdonely" ;
+lin underdressed_A = mkAMost "underdressed" "underdressedly" ;
+lin undereducated_A = mkAMost "undereducated" "undereducatedly" ;
+lin underemployed_A = mkAMost "underemployed" "underemployedly" ;
+lin underestimate_N = mkN "underestimate" "underestimates" ;
+lin underestimate_V = mkV "underestimate" "underestimated" "underestimated" ;
+lin underestimation_N = mkN "underestimation" "underestimations" ;
+lin underevaluation_N = mkN "underevaluation" "underevaluations" ;
+lin underexpose_V = mkV "underexpose" "underexposed" "underexposed" ;
+lin underexposure_N = mkN "underexposure" "underexposures" ;
+lin underfed_A = mkAMost "underfed" "underfedly" ;
+lin underfelt_N = mkN "underfelt" "underfelts" ;
+lin underfloor_A = mkAMost "underfloor" "underfloorly" ;
+lin underfoot_Adv = mkAdv "underfoot" ;
+lin underfund_V = mkV "underfund" "underfunded" "underfunded" ;
+lin undergarment_N = mkN "undergarment" "undergarments" ;
+lin undergo_V = mkV "undergo" "underwent" "undergone" ;
+lin undergraduate_N = mkN "undergraduate" "undergraduates" ;
+lin underground_A = mkAMost "underground" "undergroundly" ;
+lin underground_Adv = mkAdv "underground" ;
+lin underground_N = mkN "underground" "undergrounds" ;
+lin undergrowth_N = mkN "undergrowth" "undergrowths" ;
+lin underhand_A = mkAMost "underhand" "underhandly" ;
+lin underhand_Adv = mkAdv "underhand" ;
+lin underhanded_A = mkAMost "underhanded" "underhandedly" ;
+lin underhung_A = mkAMost "underhung" "underhungly" ;
+lin underivative_A = mkAMost "underivative" "underivatively" ;
+lin underived_A = mkAMost "underived" "underivedly" ;
+lin underlay_N = mkN "underlay" "underlays" ;
+lin underlie_V = mkV "underlie" "underlay" "underlain" ;
+lin underline_N = mkN "underline" "underlines" ;
+lin underline_V = mkV "underline" "underlined" "underlined" ;
+lin underling_N = mkN "underling" "underlings" ;
+lin underlip_N = mkN "underlip" "underlips" ;
+lin underlying_A = mkAMost "underlying" "underlyingly" ;
+lin undermanned_A = mkAMost "undermanned" "undermannedly" ;
+lin undermentioned_A = mkAMost "undermentioned" "undermentionedly" ;
+lin undermine_V = mkV "undermine" "undermined" "undermined" ;
+lin underneath_Adv = mkAdv "underneath" ;
+lin underneath_Prep = mkPrep "underneath" ;
+lin undernourished_A = mkAMost "undernourished" "undernourishedly" ;
+lin undernourishment_N = mkN "undernourishment" "undernourishments" ;
+lin underpants_N = mkN "underpants" "underpantses" ;
+lin underpart_N = mkN "underpart" "underparts" ;
+lin underpass_N = mkN "underpass" "underpasses" ;
+lin underpay_V = mkV "underpay" "underpaid" "underpaid" ;
+lin underpayment_N = mkN "underpayment" "underpayments" ;
+lin underperform_V = mkV "underperform" "underperformed" "underperformed" ;
+lin underperformer_N = mkN "underperformer" "underperformers" ;
+lin underpin_V = mkV "underpin" "underpinned" "underpinned" ;
+lin underpopulated_A = mkAMost "underpopulated" "underpopulatedly" ;
+lin underprivileged_A = mkAMost "underprivileged" "underprivilegedly" ;
+lin underproduction_N = mkN "underproduction" "underproductions" ;
+lin underquote_V = mkV "underquote" "underquoted" "underquoted" ;
+lin underrate_V = mkV "underrate" "underrated" "underrated" ;
+lin underscore_N = mkN "underscore" "underscores" ;
+lin underscore_V = mkV "underscore" "underscored" "underscored" ;
+lin undersea_A = mkAMost "undersea" "undersealy" ;
+lin underseal_N = mkN "underseal" "underseals" ;
+lin undersealed_A = mkAMost "undersealed" "undersealedly" ;
+lin undersecretary_N = mkN "undersecretary" "undersecretaries" ;
+lin undersell_V = mkV "undersell" "undersold" "undersold" ;
+lin underseller_N = mkN "underseller" "undersellers" ;
+lin undersexed_A = mkAMost "undersexed" "undersexedly" ;
+lin undershoot_V = mkV "undershoot" "undershot" "undershot" ;
+lin undershrub_N = mkN "undershrub" "undershrubs" ;
+lin underside_N = mkN "underside" "undersides" ;
+lin undersign_V = mkV "undersign" "undersigned" "undersigned" ;
+lin undersize_A = mkAMost "undersize" "undersizely" ;
+lin undersized_A = mkAMost "undersized" "undersizedly" ;
+lin underskirt_N = mkN "underskirt" "underskirts" ;
+lin underslung_A = mkAMost "underslung" "underslungly" ;
+lin underspend_V = mkV "underspend" "underspent" "underspent" ;
+lin understaffed_A = mkAMost "understaffed" "understaffedly" ;
+lin understand_V = mkV "understand" "understood" "understood" ;
+lin understandable_A = mkAMost "understandable" "understandably" ;
+lin understanding_N = mkN "understanding" "understandings" ;
+lin understate_V = mkV "understate" "understated" "understated" ;
+lin understatement_N = mkN "understatement" "understatements" ;
+lin understock_V = mkV "understock" "understocked" "understocked" ;
+lin understudy_N = mkN "understudy" "understudies" ;
+lin understudy_V = mkV "understudy" "understudied" "understudied" ;
+lin undersurface_N = mkN "undersurface" "undersurfaces" ;
+lin undertake_V = mkV "undertake" "undertook" "undertaken" ;
+lin undertaker_N = mkN "undertaker" "undertakers" ;
+lin undertaking_N = mkN "undertaking" "undertakings" ;
+lin undertide_N = mkN "undertide" "undertides" ;
+lin undertone_N = mkN "undertone" "undertones" ;
+lin undertow_N = mkN "undertow" "undertows" ;
+lin undervaluation_N = mkN "undervaluation" "undervaluations" ;
+lin undervalue_V = mkV "undervalue" "undervalued" "undervalued" ;
+lin underwater_A = mkAMost "underwater" "underwaterly" ;
+lin underwear_N = mkN "underwear" "underwears" ;
+lin underweight_A = mkAMost "underweight" "underweightly" ;
+lin underwhelm_V = mkV "underwhelm" "underwhelmed" "underwhelmed" ;
+lin underwing_N = mkN "underwing" "underwings" ;
+lin underworld_N = mkN "underworld" "underworlds" ;
+lin underwrite_underwrited_V = mkV "underwrite" "underwrited" "underwrited" ;
+lin underwrite_underwrote_V = mkV "underwrite" "underwrote" "underwritten" ;
+lin underwriter_N = mkN "underwriter" "underwriters" ;
+lin undescended_A = mkAMost "undescended" "undescendedly" ;
+lin undescriptive_A = mkAMost "undescriptive" "undescriptively" ;
+lin undeserved_A = mkAMost "undeserved" "undeservedly" ;
+lin undeserving_A = mkAMost "undeserving" "undeservingly" ;
+lin undesigned_A = mkAMost "undesigned" "undesignedly" ;
+lin undesirability_N = mkN "undesirability" "undesirabilities" ;
+lin undesirable_A = mkAMost "undesirable" "undesirably" ;
+lin undesirable_N = mkN "undesirable" "undesirables" ;
+lin undesired_A = mkAMost "undesired" "undesiredly" ;
+lin undesirous_A = mkAMost "undesirous" "undesirously" ;
+lin undestroyable_A = mkAMost "undestroyable" "undestroyably" ;
+lin undetectable_A = mkAMost "undetectable" "undetectably" ;
+lin undetected_A = mkAMost "undetected" "undetectedly" ;
+lin undetermined_A = mkAMost "undetermined" "undeterminedly" ;
+lin undeterred_A = mkAMost "undeterred" "undeterredly" ;
+lin undeveloped_A = mkAMost "undeveloped" "undevelopedly" ;
+lin undeviating_A = mkAMost "undeviating" "undeviatingly" ;
+lin undiagnosable_A = mkAMost "undiagnosable" "undiagnosably" ;
+lin undiagnosed_A = mkAMost "undiagnosed" "undiagnosedly" ;
+lin undies_N = mkN "undies" "undieses" ;
+lin undifferentiated_A = mkAMost "undifferentiated" "undifferentiatedly" ;
+lin undigested_A = mkAMost "undigested" "undigestedly" ;
+lin undignified_A = mkAMost "undignified" "undignifiedly" ;
+lin undiluted_A = mkAMost "undiluted" "undilutedly" ;
+lin undiminished_A = mkAMost "undiminished" "undiminishedly" ;
+lin undimmed_A = mkAMost "undimmed" "undimmedly" ;
+lin undine_N = mkN "undine" "undines" ;
+lin undiplomatic_A = mkAMost "undiplomatic" "undiplomaticly" ;
+lin undiplomatically_Adv = mkAdv "undiplomatically" ;
+lin undiscerning_A = mkAMost "undiscerning" "undiscerningly" ;
+lin undischarged_A = mkAMost "undischarged" "undischargedly" ;
+lin undisciplined_A = mkAMost "undisciplined" "undisciplinedly" ;
+lin undisclosed_A = mkAMost "undisclosed" "undisclosedly" ;
+lin undiscovered_A = mkAMost "undiscovered" "undiscoveredly" ;
+lin undiscriminating_A = mkAMost "undiscriminating" "undiscriminatingly" ;
+lin undisguised_A = mkAMost "undisguised" "undisguisedly" ;
+lin undismayed_A = mkAMost "undismayed" "undismayedly" ;
+lin undisputed_A = mkAMost "undisputed" "undisputedly" ;
+lin undissolved_A = mkAMost "undissolved" "undissolvedly" ;
+lin undistinguishable_A = mkAMost "undistinguishable" "undistinguishably" ;
+lin undistinguished_A = mkAMost "undistinguished" "undistinguishedly" ;
+lin undistorted_A = mkAMost "undistorted" "undistortedly" ;
+lin undistributed_A = mkAMost "undistributed" "undistributedly" ;
+lin undisturbed_A = mkAMost "undisturbed" "undisturbedly" ;
+lin undiversified_A = mkAMost "undiversified" "undiversifiedly" ;
+lin undividable_A = mkAMost "undividable" "undividably" ;
+lin undivided_A = mkAMost "undivided" "undividedly" ;
+lin undo_V = mkV "undo" "undid" "undone" ;
+lin undock_V = mkV "undock" "undocked" "undocked" ;
+lin undocumented_A = mkAMost "undocumented" "undocumentedly" ;
+lin undoer_N = mkN "undoer" "undoers" ;
+lin undogmatic_A = mkAMost "undogmatic" "undogmaticly" ;
+lin undoing_N = mkN "undoing" "undoings" ;
+lin undomestic_A = mkAMost "undomestic" "undomesticly" ;
+lin undomesticated_A = mkAMost "undomesticated" "undomesticatedly" ;
+lin undoubted_A = mkAMost "undoubted" "undoubtedly" ;
+lin undrained_A = mkAMost "undrained" "undrainedly" ;
+lin undramatic_A = mkAMost "undramatic" "undramaticly" ;
+lin undramatically_Adv = mkAdv "undramatically" ;
+lin undraped_A = mkAMost "undraped" "undrapedly" ;
+lin undrawn_A = mkAMost "undrawn" "undrawnly" ;
+lin undreamed_A = mkAMost "undreamed" "undreamedly" ;
+lin undreamed_of_A = mkAMost "undreamed-of" "undreamed-ofly" ;
+lin undreamt_A = mkAMost "undreamt" "undreamtly" ;
+lin undress_N = mkN "undress" "undresses" ;
+lin undress_V = mkV "undress" "undressed" "undressed" ;
+lin undried_A = mkAMost "undried" "undriedly" ;
+lin undrinkable_A = mkAMost "undrinkable" "undrinkably" ;
+lin undue_A = mkAMost "undue" "unduely" ;
+lin undulate_A = mkAMost "undulate" "undulately" ;
+lin undulate_V = mkV "undulate" "undulated" "undulated" ;
+lin undulation_N = mkN "undulation" "undulations" ;
+lin undulatory_A = mkAMost "undulatory" "undulatorily" ;
+lin unduly_Adv = mkAdv "unduly" ;
+lin undutifulness_N = mkN "undutifulness" "undutifulnesses" ;
+lin undying_A = mkAMost "undying" "undyingly" ;
+lin undynamic_A = mkAMost "undynamic" "undynamicly" ;
+lin uneager_A = mkAMost "uneager" "uneagerly" ;
+lin unearned_A = mkAMost "unearned" "unearnedly" ;
+lin unearth_V = mkV "unearth" "unearthed" "unearthed" ;
+lin unearthly_A = mkAMost "unearthly" "unearthlily" ;
+lin unease_N = mkN "unease" "uneases" ;
+lin uneasiness_N = mkN "uneasiness" "uneasinesses" ;
+lin uneasy_A = mkAMost "uneasy" "uneasily" ;
+lin uneatable_A = mkAMost "uneatable" "uneatably" ;
+lin uneaten_A = mkAMost "uneaten" "uneatenly" ;
+lin uneconomic_A = mkAMost "uneconomic" "uneconomicly" ;
+lin uneconomical_A = mkAMost "uneconomical" "uneconomically" ;
+lin unedifying_A = mkAMost "unedifying" "unedifyingly" ;
+lin unedited_A = mkAMost "unedited" "uneditedly" ;
+lin uneducated_A = mkAMost "uneducated" "uneducatedly" ;
+lin uneffective_A = mkAMost "uneffective" "uneffectively" ;
+lin unelaborated_A = mkAMost "unelaborated" "unelaboratedly" ;
+lin unemotional_A = mkAMost "unemotional" "unemotionally" ;
+lin unemotionality_N = mkN "unemotionality" "unemotionalities" ;
+lin unemphatic_A = mkAMost "unemphatic" "unemphaticly" ;
+lin unemployable_A = mkAMost "unemployable" "unemployably" ;
+lin unemployed_A = mkAMost "unemployed" "unemployedly" ;
+lin unemployment_N = mkN "unemployment" "unemployments" ;
+lin unenclosed_A = mkAMost "unenclosed" "unenclosedly" ;
+lin unencouraging_A = mkAMost "unencouraging" "unencouragingly" ;
+lin unencumbered_A = mkAMost "unencumbered" "unencumberedly" ;
+lin unended_A = mkAMost "unended" "unendedly" ;
+lin unending_A = mkAMost "unending" "unendingly" ;
+lin unendowed_A = mkAMost "unendowed" "unendowedly" ;
+lin unendurable_A = mkAMost "unendurable" "unendurably" ;
+lin unenforceable_A = mkAMost "unenforceable" "unenforceably" ;
+lin unenforced_A = mkAMost "unenforced" "unenforcedly" ;
+lin unengaged_A = mkAMost "unengaged" "unengagedly" ;
+lin unenlightened_A = mkAMost "unenlightened" "unenlightenedly" ;
+lin unenlightening_A = mkAMost "unenlightening" "unenlighteningly" ;
+lin unenlightenment_N = mkN "unenlightenment" "unenlightenments" ;
+lin unenlivened_A = mkAMost "unenlivened" "unenlivenedly" ;
+lin unenterprising_A = mkAMost "unenterprising" "unenterprisingly" ;
+lin unenthusiastic_A = mkAMost "unenthusiastic" "unenthusiasticly" ;
+lin unenthusiastically_Adv = mkAdv "unenthusiastically" ;
+lin unentitled_A = mkAMost "unentitled" "unentitledly" ;
+lin unenviable_A = mkAMost "unenviable" "unenviably" ;
+lin unequal_A = mkAMost "unequal" "unequally" ;
+lin unequalized_A = mkAMost "unequalized" "unequalizedly" ;
+lin unequalled_A = mkAMost "unequalled" "unequalledly" ;
+lin unequipped_A = mkAMost "unequipped" "unequippedly" ;
+lin unequivocal_A = mkAMost "unequivocal" "unequivocally" ;
+lin unerect_A = mkAMost "unerect" "unerectly" ;
+lin unerring_A = mkAMost "unerring" "unerringly" ;
+lin unestablished_A = mkAMost "unestablished" "unestablishedly" ;
+lin unethical_A = mkAMost "unethical" "unethically" ;
+lin uneven_A = mkAMost "uneven" "unevenly" ;
+lin unevenness_N = mkN "unevenness" "unevennesses" ;
+lin uneventful_A = mkAMost "uneventful" "uneventfully" ;
+lin unexacting_A = mkAMost "unexacting" "unexactingly" ;
+lin unexampled_A = mkAMost "unexampled" "unexampledly" ;
+lin unexceeded_A = mkAMost "unexceeded" "unexceededly" ;
+lin unexcelled_A = mkAMost "unexcelled" "unexcelledly" ;
+lin unexceptionable_A = mkAMost "unexceptionable" "unexceptionably" ;
+lin unexceptional_A = mkAMost "unexceptional" "unexceptionally" ;
+lin unexchangeability_N = mkN "unexchangeability" "unexchangeabilities" ;
+lin unexchangeable_A = mkAMost "unexchangeable" "unexchangeably" ;
+lin unexcitable_A = mkAMost "unexcitable" "unexcitably" ;
+lin unexcited_A = mkAMost "unexcited" "unexcitedly" ;
+lin unexciting_A = mkAMost "unexciting" "unexcitingly" ;
+lin unexclusive_A = mkAMost "unexclusive" "unexclusively" ;
+lin unexcused_A = mkAMost "unexcused" "unexcusedly" ;
+lin unexhausted_A = mkAMost "unexhausted" "unexhaustedly" ;
+lin unexpansive_A = mkAMost "unexpansive" "unexpansively" ;
+lin unexpected_A = mkAMost "unexpected" "unexpectedly" ;
+lin unexpectedness_N = mkN "unexpectedness" "unexpectednesses" ;
+lin unexpendable_A = mkAMost "unexpendable" "unexpendably" ;
+lin unexpired_A = mkAMost "unexpired" "unexpiredly" ;
+lin unexplained_A = mkAMost "unexplained" "unexplainedly" ;
+lin unexploited_A = mkAMost "unexploited" "unexploitedly" ;
+lin unexplored_A = mkAMost "unexplored" "unexploredly" ;
+lin unexportable_A = mkAMost "unexportable" "unexportably" ;
+lin unexposed_A = mkAMost "unexposed" "unexposedly" ;
+lin unexpressed_A = mkAMost "unexpressed" "unexpressedly" ;
+lin unexpurgated_A = mkAMost "unexpurgated" "unexpurgatedly" ;
+lin unextended_A = mkAMost "unextended" "unextendedly" ;
+lin unfaceted_A = mkAMost "unfaceted" "unfacetedly" ;
+lin unfailing_A = mkAMost "unfailing" "unfailingly" ;
+lin unfair_A = mkAMost "unfair" "unfairly" ;
+lin unfairness_N = mkN "unfairness" "unfairnesses" ;
+lin unfaithful_A = mkAMost "unfaithful" "unfaithfully" ;
+lin unfaithfulness_N = mkN "unfaithfulness" "unfaithfulnesses" ;
+lin unfaltering_A = mkAMost "unfaltering" "unfalteringly" ;
+lin unfamiliar_A = mkAMost "unfamiliar" "unfamiliarly" ;
+lin unfamiliarity_N = mkN "unfamiliarity" "unfamiliarities" ;
+lin unfashionable_A = mkAMost "unfashionable" "unfashionably" ;
+lin unfasten_V = mkV "unfasten" "unfastened" "unfastened" ;
+lin unfastidious_A = mkAMost "unfastidious" "unfastidiously" ;
+lin unfathomable_A = mkAMost "unfathomable" "unfathomably" ;
+lin unfathomed_A = mkAMost "unfathomed" "unfathomedly" ;
+lin unfattened_A = mkAMost "unfattened" "unfattenedly" ;
+lin unfavorable_A = mkAMost "unfavorable" "unfavorably" ;
+lin unfavorableness_N = mkN "unfavorableness" "unfavorablenesses" ;
+lin unfavourable_A = mkAMost "unfavourable" "unfavourably" ;
+lin unfaze_V = mkV "unfaze" "unfazed" "unfazed" ;
+lin unfeathered_A = mkAMost "unfeathered" "unfeatheredly" ;
+lin unfed_A = mkAMost "unfed" "unfedly" ;
+lin unfeeling_A = mkAMost "unfeeling" "unfeelingly" ;
+lin unfeelingness_N = mkN "unfeelingness" "unfeelingnesses" ;
+lin unfeigned_A = mkAMost "unfeigned" "unfeignedly" ;
+lin unfeminine_A = mkAMost "unfeminine" "unfemininely" ;
+lin unfenced_A = mkAMost "unfenced" "unfencedly" ;
+lin unfermented_A = mkAMost "unfermented" "unfermentedly" ;
+lin unfertilized_A = mkAMost "unfertilized" "unfertilizedly" ;
+lin unfettered_A = mkAMost "unfettered" "unfetteredly" ;
+lin unfilled_A = mkAMost "unfilled" "unfilledly" ;
+lin unfilmed_A = mkAMost "unfilmed" "unfilmedly" ;
+lin unfinished_A = mkAMost "unfinished" "unfinishedly" ;
+lin unfirm_A = mkAMost "unfirm" "unfirmly" ;
+lin unfit_A = mkAMost "unfit" "unfitly" ;
+lin unfit_V = mkV "unfit" "unfitted" "unfitted" ;
+lin unfitness_N = mkN "unfitness" "unfitnesses" ;
+lin unfixed_A = mkAMost "unfixed" "unfixedly" ;
+lin unflagging_A = mkAMost "unflagging" "unflaggingly" ;
+lin unflappable_A = mkAMost "unflappable" "unflappably" ;
+lin unflattering_A = mkAMost "unflattering" "unflatteringly" ;
+lin unflavored_A = mkAMost "unflavored" "unflavoredly" ;
+lin unfledged_A = mkAMost "unfledged" "unfledgedly" ;
+lin unflinching_A = mkAMost "unflinching" "unflinchingly" ;
+lin unflurried_A = mkAMost "unflurried" "unflurriedly" ;
+lin unfocused_A = mkAMost "unfocused" "unfocusedly" ;
+lin unfold_V = mkV "unfold" "unfolded" "unfolded" ;
+lin unfolding_N = mkN "unfolding" "unfoldings" ;
+lin unforbearing_A = mkAMost "unforbearing" "unforbearingly" ;
+lin unforced_A = mkAMost "unforced" "unforcedly" ;
+lin unforeseeable_A = mkAMost "unforeseeable" "unforeseeably" ;
+lin unforeseen_A = mkAMost "unforeseen" "unforeseenly" ;
+lin unforested_A = mkAMost "unforested" "unforestedly" ;
+lin unforethoughtful_A = mkAMost "unforethoughtful" "unforethoughtfully" ;
+lin unforfeitable_A = mkAMost "unforfeitable" "unforfeitably" ;
+lin unforgettable_A = mkAMost "unforgettable" "unforgettably" ;
+lin unforgivable_A = mkAMost "unforgivable" "unforgivably" ;
+lin unforgiving_A = mkAMost "unforgiving" "unforgivingly" ;
+lin unformed_A = mkAMost "unformed" "unformedly" ;
+lin unforthcoming_A = mkAMost "unforthcoming" "unforthcomingly" ;
+lin unfortunate_A = mkAMost "unfortunate" "unfortunately" ;
+lin unfortunate_N = mkN "unfortunate" "unfortunates" ;
+lin unfounded_A = mkAMost "unfounded" "unfoundedly" ;
+lin unframed_A = mkAMost "unframed" "unframedly" ;
+lin unfree_A = mkAMost "unfree" "unfreely" ;
+lin unfrequented_A = mkAMost "unfrequented" "unfrequentedly" ;
+lin unfretted_A = mkAMost "unfretted" "unfrettedly" ;
+lin unfriendliness_N = mkN "unfriendliness" "unfriendlinesses" ;
+lin unfriendly_A = mkAMost "unfriendly" "unfriendlily" ;
+lin unfrightened_A = mkAMost "unfrightened" "unfrightenedly" ;
+lin unfrock_V = mkV "unfrock" "unfrocked" "unfrocked" ;
+lin unfrosted_A = mkAMost "unfrosted" "unfrostedly" ;
+lin unfrozen_A = mkAMost "unfrozen" "unfrozenly" ;
+lin unfruitful_A = mkAMost "unfruitful" "unfruitfully" ;
+lin unfueled_A = mkAMost "unfueled" "unfueledly" ;
+lin unfulfilled_A = mkAMost "unfulfilled" "unfulfilledly" ;
+lin unfunctional_A = mkAMost "unfunctional" "unfunctionally" ;
+lin unfunded_A = mkAMost "unfunded" "unfundedly" ;
+lin unfunny_A = mkAMost "unfunny" "unfunnily" ;
+lin unfurl_V = mkV "unfurl" "unfurled" "unfurled" ;
+lin unfurnished_A = mkAMost "unfurnished" "unfurnishedly" ;
+lin unfurrowed_A = mkAMost "unfurrowed" "unfurrowedly" ;
+lin ungainly_A = mkAMost "ungainly" "ungainlily" ;
+lin ungeared_A = mkAMost "ungeared" "ungearedly" ;
+lin ungenerous_A = mkAMost "ungenerous" "ungenerously" ;
+lin ungentle_A = mkAMost "ungentle" "ungentlely" ;
+lin ungentlemanly_A = mkAMost "ungentlemanly" "ungentlemanlily" ;
+lin unglazed_A = mkAMost "unglazed" "unglazedly" ;
+lin ungodliness_N = mkN "ungodliness" "ungodlinesses" ;
+lin ungodly_A = mkAMost "ungodly" "ungodlily" ;
+lin ungovernable_A = mkAMost "ungovernable" "ungovernably" ;
+lin ungraceful_A = mkAMost "ungraceful" "ungracefully" ;
+lin ungracious_A = mkAMost "ungracious" "ungraciously" ;
+lin ungraciousness_N = mkN "ungraciousness" "ungraciousnesses" ;
+lin ungraded_A = mkAMost "ungraded" "ungradedly" ;
+lin ungrammatical_A = mkAMost "ungrammatical" "ungrammatically" ;
+lin ungrasped_A = mkAMost "ungrasped" "ungraspedly" ;
+lin ungrateful_A = mkAMost "ungrateful" "ungratefully" ;
+lin ungratefulness_N = mkN "ungratefulness" "ungratefulnesses" ;
+lin ungregarious_A = mkAMost "ungregarious" "ungregariously" ;
+lin ungroomed_A = mkAMost "ungroomed" "ungroomedly" ;
+lin ungrudging_A = mkAMost "ungrudging" "ungrudgingly" ;
+lin ungual_A = mkAMost "ungual" "ungually" ;
+lin unguaranteed_A = mkAMost "unguaranteed" "unguaranteedly" ;
+lin unguarded_A = mkAMost "unguarded" "unguardedly" ;
+lin unguent_N = mkN "unguent" "unguents" ;
+lin unguiculate_A = mkAMost "unguiculate" "unguiculately" ;
+lin unguiculate_N = mkN "unguiculate" "unguiculates" ;
+lin unguided_A = mkAMost "unguided" "unguidedly" ;
+lin ungulate_A = mkAMost "ungulate" "ungulately" ;
+lin ungulate_N = mkN "ungulate" "ungulates" ;
+lin ungummed_A = mkAMost "ungummed" "ungummedly" ;
+lin ungusseted_A = mkAMost "ungusseted" "ungussetedly" ;
+lin unhallowed_A = mkAMost "unhallowed" "unhallowedly" ;
+lin unhampered_A = mkAMost "unhampered" "unhamperedly" ;
+lin unhand_V = mkV "unhand" "unhanded" "unhanded" ;
+lin unhappiness_N = mkN "unhappiness" "unhappinesses" ;
+lin unhappy_A = mkA "unhappy" "unhappier" "unhappiest" "unhappily" ;
+lin unharmed_A = mkAMost "unharmed" "unharmedly" ;
+lin unhatched_A = mkAMost "unhatched" "unhatchedly" ;
+lin unheaded_A = mkAMost "unheaded" "unheadedly" ;
+lin unhealed_A = mkAMost "unhealed" "unhealedly" ;
+lin unhealthful_A = mkAMost "unhealthful" "unhealthfully" ;
+lin unhealthfulness_N = mkN "unhealthfulness" "unhealthfulnesses" ;
+lin unhealthy_A = mkAMost "unhealthy" "unhealthily" ;
+lin unheard_A = mkAMost "unheard" "unheardly" ;
+lin unheard_of_A = mkAMost "unheard-of" "unheard-ofly" ;
+lin unhearing_A = mkAMost "unhearing" "unhearingly" ;
+lin unheated_A = mkAMost "unheated" "unheatedly" ;
+lin unheeded_A = mkAMost "unheeded" "unheededly" ;
+lin unhelpful_A = mkAMost "unhelpful" "unhelpfully" ;
+lin unhelpfulness_N = mkN "unhelpfulness" "unhelpfulnesses" ;
+lin unheralded_A = mkAMost "unheralded" "unheraldedly" ;
+lin unhesitating_A = mkAMost "unhesitating" "unhesitatingly" ;
+lin unhewn_A = mkAMost "unhewn" "unhewnly" ;
+lin unhindered_A = mkAMost "unhindered" "unhinderedly" ;
+lin unhinge_V = mkV "unhinge" "unhinged" "unhinged" ;
+lin unhitch_V = mkV "unhitch" "unhitched" "unhitched" ;
+lin unholiness_N = mkN "unholiness" "unholinesses" ;
+lin unholy_A = mkAMost "unholy" "unholily" ;
+lin unhomogenized_A = mkAMost "unhomogenized" "unhomogenizedly" ;
+lin unhook_V = mkV "unhook" "unhooked" "unhooked" ;
+lin unhoped_A = mkAMost "unhoped" "unhopedly" ;
+lin unhoped_for_A = mkAMost "unhoped-for" "unhoped-forly" ;
+lin unhorse_V = mkV "unhorse" "unhorsed" "unhorsed" ;
+lin unhurried_A = mkAMost "unhurried" "unhurriedly" ;
+lin unhurt_A = mkAMost "unhurt" "unhurtly" ;
+lin unhygienic_A = mkAMost "unhygienic" "unhygienicly" ;
+lin unhygienically_Adv = mkAdv "unhygienically" ;
+lin unicameral_A = mkAMost "unicameral" "unicamerally" ;
+lin unicellular_A = mkAMost "unicellular" "unicellularly" ;
+lin unicorn_N = mkN "unicorn" "unicorns" ;
+lin unicuspid_A = mkAMost "unicuspid" "unicuspidly" ;
+lin unicycle_N = mkN "unicycle" "unicycles" ;
+lin unicyclist_N = mkN "unicyclist" "unicyclists" ;
+lin unidentifiable_A = mkAMost "unidentifiable" "unidentifiably" ;
+lin unidentified_A = mkAMost "unidentified" "unidentifiedly" ;
+lin unidimensional_A = mkAMost "unidimensional" "unidimensionally" ;
+lin unidirectional_A = mkAMost "unidirectional" "unidirectionally" ;
+lin unifacial_A = mkAMost "unifacial" "unifacially" ;
+lin unification_N = mkN "unification" "unifications" ;
+lin unifilar_A = mkAMost "unifilar" "unifilarly" ;
+lin unifoliate_A = mkAMost "unifoliate" "unifoliately" ;
+lin uniform_A = mkAMost "uniform" "uniformly" ;
+lin uniform_N = mkN "uniform" "uniforms" ;
+lin uniformed_A = mkAMost "uniformed" "uniformedly" ;
+lin uniformity_N = mkN "uniformity" "uniformities" ;
+lin unify_V = mkV "unify" "unified" "unified" ;
+lin unilateral_A = mkAMost "unilateral" "unilaterally" ;
+lin unilateralism_N = mkN "unilateralism" "unilateralisms" ;
+lin unilateralist_A = mkAMost "unilateralist" "unilateralistly" ;
+lin unilateralist_N = mkN "unilateralist" "unilateralists" ;
+lin unimaginable_A = mkAMost "unimaginable" "unimaginably" ;
+lin unimaginative_A = mkAMost "unimaginative" "unimaginatively" ;
+lin unimodal_A = mkAMost "unimodal" "unimodally" ;
+lin unimpaired_A = mkAMost "unimpaired" "unimpairedly" ;
+lin unimpassioned_A = mkAMost "unimpassioned" "unimpassionedly" ;
+lin unimpeachable_A = mkAMost "unimpeachable" "unimpeachably" ;
+lin unimpeded_A = mkAMost "unimpeded" "unimpededly" ;
+lin unimportance_N = mkN "unimportance" "unimportances" ;
+lin unimportant_A = mkAMost "unimportant" "unimportantly" ;
+lin unimposing_A = mkAMost "unimposing" "unimposingly" ;
+lin unimpressed_A = mkAMost "unimpressed" "unimpressedly" ;
+lin unimpressionable_A = mkAMost "unimpressionable" "unimpressionably" ;
+lin unimpressive_A = mkAMost "unimpressive" "unimpressively" ;
+lin unimproved_A = mkAMost "unimproved" "unimprovedly" ;
+lin unincorporated_A = mkAMost "unincorporated" "unincorporatedly" ;
+lin unindustrialized_A = mkAMost "unindustrialized" "unindustrializedly" ;
+lin uninebriated_A = mkAMost "uninebriated" "uninebriatedly" ;
+lin uninfected_A = mkAMost "uninfected" "uninfectedly" ;
+lin uninflected_A = mkAMost "uninflected" "uninflectedly" ;
+lin uninfluenced_A = mkAMost "uninfluenced" "uninfluencedly" ;
+lin uninfluential_A = mkAMost "uninfluential" "uninfluentially" ;
+lin uninformative_A = mkAMost "uninformative" "uninformatively" ;
+lin uninformed_A = mkAMost "uninformed" "uninformedly" ;
+lin uninhabitable_A = mkAMost "uninhabitable" "uninhabitably" ;
+lin uninhabited_A = mkAMost "uninhabited" "uninhabitedly" ;
+lin uninhibited_A = mkAMost "uninhibited" "uninhibitedly" ;
+lin uninitiate_A = mkAMost "uninitiate" "uninitiately" ;
+lin uninitiate_N = mkN "uninitiate" "uninitiates" ;
+lin uninitiated_A = mkAMost "uninitiated" "uninitiatedly" ;
+lin uninjectable_A = mkAMost "uninjectable" "uninjectably" ;
+lin uninjured_A = mkAMost "uninjured" "uninjuredly" ;
+lin uninominal_A = mkAMost "uninominal" "uninominally" ;
+lin uninquiring_A = mkAMost "uninquiring" "uninquiringly" ;
+lin uninspired_A = mkAMost "uninspired" "uninspiredly" ;
+lin uninspiring_A = mkAMost "uninspiring" "uninspiringly" ;
+lin uninstructed_A = mkAMost "uninstructed" "uninstructedly" ;
+lin uninstructive_A = mkAMost "uninstructive" "uninstructively" ;
+lin uninsurability_N = mkN "uninsurability" "uninsurabilities" ;
+lin uninsurable_A = mkAMost "uninsurable" "uninsurably" ;
+lin uninsured_A = mkAMost "uninsured" "uninsuredly" ;
+lin unintelligent_A = mkAMost "unintelligent" "unintelligently" ;
+lin unintelligibility_N = mkN "unintelligibility" "unintelligibilities" ;
+lin unintelligible_A = mkAMost "unintelligible" "unintelligibly" ;
+lin unintended_A = mkAMost "unintended" "unintendedly" ;
+lin unintentional_A = mkAMost "unintentional" "unintentionally" ;
+lin uninterested_A = mkAMost "uninterested" "uninterestedly" ;
+lin uninteresting_A = mkAMost "uninteresting" "uninterestingly" ;
+lin uninterestingness_N = mkN "uninterestingness" "uninterestingnesses" ;
+lin uninterrupted_A = mkAMost "uninterrupted" "uninterruptedly" ;
+lin unintrusive_A = mkAMost "unintrusive" "unintrusively" ;
+lin uninucleate_A = mkAMost "uninucleate" "uninucleately" ;
+lin uninvited_A = mkAMost "uninvited" "uninvitedly" ;
+lin uninviting_A = mkAMost "uninviting" "uninvitingly" ;
+lin uninvolved_A = mkAMost "uninvolved" "uninvolvedly" ;
+lin union_A = mkAMost "union" "unionly" ;
+lin union_N = mkN "union" "unions" ;
+lin unionism_N = mkN "unionism" "unionisms" ;
+lin unionist_N = mkN "unionist" "unionists" ;
+lin unionization_N = mkN "unionization" "unionizations" ;
+lin uniovular_A = mkAMost "uniovular" "uniovularly" ;
+lin uniparous_A = mkAMost "uniparous" "uniparously" ;
+lin unipolar_A = mkAMost "unipolar" "unipolarly" ;
+lin unique_A = mkAMost "unique" "uniquely" ;
+lin uniqueness_N = mkN "uniqueness" "uniquenesses" ;
+lin unironed_A = mkAMost "unironed" "unironedly" ;
+lin unisex_A = mkAMost "unisex" "unisexly" ;
+lin unisexual_A = mkAMost "unisexual" "unisexually" ;
+lin unison_N = mkN "unison" "unisons" ;
+lin unit_N = mkN "unit" "units" ;
+lin unitarian_A = mkAMost "unitarian" "unitarianly" ;
+lin unitarian_N = mkN "unitarian" "unitarians" ;
+lin unitarianism_N = mkN "unitarianism" "unitarianisms" ;
+lin unitary_A = mkAMost "unitary" "unitarily" ;
+lin unite_V = mkV "unite" "united" "united" ;
+lin unitization_N = mkN "unitization" "unitizations" ;
+lin unity_N = mkN "unity" "unities" ;
+lin univalent_A = mkAMost "univalent" "univalently" ;
+lin univalve_A = mkAMost "univalve" "univalvely" ;
+lin universal_A = mkAMost "universal" "universally" ;
+lin universal_N = mkN "universal" "universals" ;
+lin universalism_N = mkN "universalism" "universalisms" ;
+lin universalistic_A = mkAMost "universalistic" "universalisticly" ;
+lin universality_N = mkN "universality" "universalities" ;
+lin universe_N = mkN "universe" "universes" ;
+lin university_N = mkN "university" "universities" ;
+lin unjointed_A = mkAMost "unjointed" "unjointedly" ;
+lin unjust_A = mkAMost "unjust" "unjustly" ;
+lin unjustifiable_A = mkAMost "unjustifiable" "unjustifiably" ;
+lin unjustified_A = mkAMost "unjustified" "unjustifiedly" ;
+lin unkempt_A = mkAMost "unkempt" "unkemptly" ;
+lin unkind_A = mkAMost "unkind" "unkindly" ;
+lin unkindled_A = mkAMost "unkindled" "unkindledly" ;
+lin unkindly_A = mkAMost "unkindly" "unkindlily" ;
+lin unkindness_N = mkN "unkindness" "unkindnesses" ;
+lin unkissed_A = mkAMost "unkissed" "unkissedly" ;
+lin unknowable_A = mkAMost "unknowable" "unknowably" ;
+lin unknowing_A = mkAMost "unknowing" "unknowingly" ;
+lin unknowingness_N = mkN "unknowingness" "unknowingnesses" ;
+lin unknown_A = mkAMost "unknown" "unknownly" ;
+lin unknown_N = mkN "unknown" "unknowns" ;
+lin unlabeled_A = mkAMost "unlabeled" "unlabeledly" ;
+lin unlabelled_A = mkAMost "unlabelled" "unlabelledly" ;
+lin unlaced_A = mkAMost "unlaced" "unlacedly" ;
+lin unladylike_A = mkAMost "unladylike" "unladylikely" ;
+lin unlamented_A = mkAMost "unlamented" "unlamentedly" ;
+lin unlatched_A = mkAMost "unlatched" "unlatchedly" ;
+lin unlaureled_A = mkAMost "unlaureled" "unlaureledly" ;
+lin unlawful_A = mkAMost "unlawful" "unlawfully" ;
+lin unlawfulness_N = mkN "unlawfulness" "unlawfulnesses" ;
+lin unleaded_A = mkAMost "unleaded" "unleadedly" ;
+lin unlearn_V = mkV "unlearn" "unlearned" "unlearned" ;
+lin unleash_V = mkV "unleash" "unleashed" "unleashed" ;
+lin unleavened_A = mkAMost "unleavened" "unleavenedly" ;
+lin unlettered_A = mkAMost "unlettered" "unletteredly" ;
+lin unlicensed_A = mkAMost "unlicensed" "unlicensedly" ;
+lin unlighted_A = mkAMost "unlighted" "unlightedly" ;
+lin unlikable_A = mkAMost "unlikable" "unlikably" ;
+lin unlike_A = mkAMost "unlike" "unlikely" ;
+lin unlike_Prep = mkPrep "unlike" ;
+lin unlikelihood_N = mkN "unlikelihood" "unlikelihoods" ;
+lin unlikely_A = mkAMost "unlikely" "unlikelily" ;
+lin unlikeness_N = mkN "unlikeness" "unlikenesses" ;
+lin unlimited_A = mkAMost "unlimited" "unlimitedly" ;
+lin unlined_A = mkAMost "unlined" "unlinedly" ;
+lin unlisted_A = mkAMost "unlisted" "unlistedly" ;
+lin unlit_A = mkAMost "unlit" "unlitly" ;
+lin unliterary_A = mkAMost "unliterary" "unliterarily" ;
+lin unlivable_A = mkAMost "unlivable" "unlivably" ;
+lin unliveried_A = mkAMost "unliveried" "unliveriedly" ;
+lin unload_V = mkV "unload" "unloaded" "unloaded" ;
+lin unloading_N = mkN "unloading" "unloadings" ;
+lin unlobed_A = mkAMost "unlobed" "unlobedly" ;
+lin unlocated_A = mkAMost "unlocated" "unlocatedly" ;
+lin unlock_V = mkV "unlock" "unlocked" "unlocked" ;
+lin unlooked_for_A = mkAMost "unlooked-for" "unlooked-forly" ;
+lin unloose_V = mkV "unloose" "unloosed" "unloosed" ;
+lin unlovable_A = mkAMost "unlovable" "unlovably" ;
+lin unloved_A = mkAMost "unloved" "unlovedly" ;
+lin unlovely_A = mkAMost "unlovely" "unlovelily" ;
+lin unloving_A = mkAMost "unloving" "unlovingly" ;
+lin unlubricated_A = mkAMost "unlubricated" "unlubricatedly" ;
+lin unlucky_A = mkAMost "unlucky" "unluckily" ;
+lin unmade_A = mkAMost "unmade" "unmadely" ;
+lin unmalicious_A = mkAMost "unmalicious" "unmaliciously" ;
+lin unmalleability_N = mkN "unmalleability" "unmalleabilities" ;
+lin unmalleable_A = mkAMost "unmalleable" "unmalleably" ;
+lin unmalted_A = mkAMost "unmalted" "unmaltedly" ;
+lin unman_V = mkV "unman" "unmanned" "unmanned" ;
+lin unmanageable_A = mkAMost "unmanageable" "unmanageably" ;
+lin unmanfully_Adv = mkAdv "unmanfully" ;
+lin unmanly_A = mkAMost "unmanly" "unmanlily" ;
+lin unmannered_A = mkAMost "unmannered" "unmanneredly" ;
+lin unmannerly_A = mkAMost "unmannerly" "unmannerlily" ;
+lin unmarked_A = mkAMost "unmarked" "unmarkedly" ;
+lin unmarketable_A = mkAMost "unmarketable" "unmarketably" ;
+lin unmarried_A = mkAMost "unmarried" "unmarriedly" ;
+lin unmask_V = mkV "unmask" "unmasked" "unmasked" ;
+lin unmatchable_A = mkAMost "unmatchable" "unmatchably" ;
+lin unmatched_A = mkAMost "unmatched" "unmatchedly" ;
+lin unmated_A = mkAMost "unmated" "unmatedly" ;
+lin unmeasured_A = mkAMost "unmeasured" "unmeasuredly" ;
+lin unmechanical_A = mkAMost "unmechanical" "unmechanically" ;
+lin unmechanized_A = mkAMost "unmechanized" "unmechanizedly" ;
+lin unmedicinal_A = mkAMost "unmedicinal" "unmedicinally" ;
+lin unmelodious_A = mkAMost "unmelodious" "unmelodiously" ;
+lin unmelted_A = mkAMost "unmelted" "unmeltedly" ;
+lin unmemorable_A = mkAMost "unmemorable" "unmemorably" ;
+lin unmentionable_A = mkAMost "unmentionable" "unmentionably" ;
+lin unmercenary_A = mkAMost "unmercenary" "unmercenarily" ;
+lin unmerciful_A = mkAMost "unmerciful" "unmercifully" ;
+lin unmerited_A = mkAMost "unmerited" "unmeritedly" ;
+lin unmeritorious_A = mkAMost "unmeritorious" "unmeritoriously" ;
+lin unmethodical_A = mkAMost "unmethodical" "unmethodically" ;
+lin unmilitary_A = mkAMost "unmilitary" "unmilitarily" ;
+lin unmindful_A = mkAMost "unmindful" "unmindfully" ;
+lin unmindfulness_N = mkN "unmindfulness" "unmindfulnesses" ;
+lin unmined_A = mkAMost "unmined" "unminedly" ;
+lin unmingled_A = mkAMost "unmingled" "unmingledly" ;
+lin unmistakable_A = mkAMost "unmistakable" "unmistakably" ;
+lin unmitigable_A = mkAMost "unmitigable" "unmitigably" ;
+lin unmitigated_A = mkAMost "unmitigated" "unmitigatedly" ;
+lin unmixed_A = mkAMost "unmixed" "unmixedly" ;
+lin unmoderated_A = mkAMost "unmoderated" "unmoderatedly" ;
+lin unmodernized_A = mkAMost "unmodernized" "unmodernizedly" ;
+lin unmodifiable_A = mkAMost "unmodifiable" "unmodifiably" ;
+lin unmodified_A = mkAMost "unmodified" "unmodifiedly" ;
+lin unmodulated_A = mkAMost "unmodulated" "unmodulatedly" ;
+lin unmolested_A = mkAMost "unmolested" "unmolestedly" ;
+lin unmotivated_A = mkAMost "unmotivated" "unmotivatedly" ;
+lin unmotorized_A = mkAMost "unmotorized" "unmotorizedly" ;
+lin unmourned_A = mkAMost "unmourned" "unmournedly" ;
+lin unmovable_A = mkAMost "unmovable" "unmovably" ;
+lin unmoved_A = mkAMost "unmoved" "unmovedly" ;
+lin unmoving_A = mkAMost "unmoving" "unmovingly" ;
+lin unmown_A = mkAMost "unmown" "unmownly" ;
+lin unmusical_A = mkAMost "unmusical" "unmusically" ;
+lin unmyelinated_A = mkAMost "unmyelinated" "unmyelinatedly" ;
+lin unnamed_A = mkAMost "unnamed" "unnamedly" ;
+lin unnatural_A = mkAMost "unnatural" "unnaturally" ;
+lin unnaturalized_A = mkAMost "unnaturalized" "unnaturalizedly" ;
+lin unnaturalness_N = mkN "unnaturalness" "unnaturalnesses" ;
+lin unnavigable_A = mkAMost "unnavigable" "unnavigably" ;
+lin unnecessary_A = mkAMost "unnecessary" "unnecessarily" ;
+lin unneighborliness_N = mkN "unneighborliness" "unneighborlinesses" ;
+lin unneighborly_A = mkAMost "unneighborly" "unneighborlily" ;
+lin unnerve_V = mkV "unnerve" "unnerved" "unnerved" ;
+lin unneurotic_A = mkAMost "unneurotic" "unneuroticly" ;
+lin unnotched_A = mkAMost "unnotched" "unnotchedly" ;
+lin unnoticeable_A = mkAMost "unnoticeable" "unnoticeably" ;
+lin unnoticeableness_N = mkN "unnoticeableness" "unnoticeablenesses" ;
+lin unnoticed_A = mkAMost "unnoticed" "unnoticedly" ;
+lin unnourished_A = mkAMost "unnourished" "unnourishedly" ;
+lin unnumbered_A = mkAMost "unnumbered" "unnumberedly" ;
+lin unobjectionable_A = mkAMost "unobjectionable" "unobjectionably" ;
+lin unobjective_A = mkAMost "unobjective" "unobjectively" ;
+lin unobligated_A = mkAMost "unobligated" "unobligatedly" ;
+lin unobservable_A = mkAMost "unobservable" "unobservably" ;
+lin unobservant_A = mkAMost "unobservant" "unobservantly" ;
+lin unobserved_A = mkAMost "unobserved" "unobservedly" ;
+lin unobstructed_A = mkAMost "unobstructed" "unobstructedly" ;
+lin unobtainable_A = mkAMost "unobtainable" "unobtainably" ;
+lin unobtrusive_A = mkAMost "unobtrusive" "unobtrusively" ;
+lin unobtrusiveness_N = mkN "unobtrusiveness" "unobtrusivenesses" ;
+lin unobvious_A = mkAMost "unobvious" "unobviously" ;
+lin unoccupied_A = mkAMost "unoccupied" "unoccupiedly" ;
+lin unoffending_A = mkAMost "unoffending" "unoffendingly" ;
+lin unofficial_A = mkAMost "unofficial" "unofficially" ;
+lin unoiled_A = mkAMost "unoiled" "unoiledly" ;
+lin unopen_A = mkAMost "unopen" "unopenly" ;
+lin unopened_A = mkAMost "unopened" "unopenedly" ;
+lin unopposable_A = mkAMost "unopposable" "unopposably" ;
+lin unopposed_A = mkAMost "unopposed" "unopposedly" ;
+lin unorganized_A = mkAMost "unorganized" "unorganizedly" ;
+lin unoriented_A = mkAMost "unoriented" "unorientedly" ;
+lin unoriginal_A = mkAMost "unoriginal" "unoriginally" ;
+lin unoriginality_N = mkN "unoriginality" "unoriginalities" ;
+lin unorthodox_A = mkAMost "unorthodox" "unorthodoxly" ;
+lin unorthodoxy_N = mkN "unorthodoxy" "unorthodoxies" ;
+lin unostentatious_A = mkAMost "unostentatious" "unostentatiously" ;
+lin unowned_A = mkAMost "unowned" "unownedly" ;
+lin unpack_V = mkV "unpack" "unpacked" "unpacked" ;
+lin unpackaged_A = mkAMost "unpackaged" "unpackagedly" ;
+lin unpaid_A = mkAMost "unpaid" "unpaidly" ;
+lin unpaintable_A = mkAMost "unpaintable" "unpaintably" ;
+lin unpainted_A = mkAMost "unpainted" "unpaintedly" ;
+lin unpalatability_N = mkN "unpalatability" "unpalatabilities" ;
+lin unpalatable_A = mkAMost "unpalatable" "unpalatably" ;
+lin unparallel_A = mkAMost "unparallel" "unparallelly" ;
+lin unparalleled_A = mkAMost "unparalleled" "unparalleledly" ;
+lin unpardonable_A = mkAMost "unpardonable" "unpardonably" ;
+lin unparented_A = mkAMost "unparented" "unparentedly" ;
+lin unparliamentary_A = mkAMost "unparliamentary" "unparliamentarily" ;
+lin unpartitioned_A = mkAMost "unpartitioned" "unpartitionedly" ;
+lin unpasteurized_A = mkAMost "unpasteurized" "unpasteurizedly" ;
+lin unpatented_A = mkAMost "unpatented" "unpatentedly" ;
+lin unpatriotic_A = mkAMost "unpatriotic" "unpatrioticly" ;
+lin unpatriotically_Adv = mkAdv "unpatriotically" ;
+lin unpatronized_A = mkAMost "unpatronized" "unpatronizedly" ;
+lin unpaved_A = mkAMost "unpaved" "unpavedly" ;
+lin unpeaceable_A = mkAMost "unpeaceable" "unpeaceably" ;
+lin unpeaceful_A = mkAMost "unpeaceful" "unpeacefully" ;
+lin unpeopled_A = mkAMost "unpeopled" "unpeopledly" ;
+lin unperceived_A = mkAMost "unperceived" "unperceivedly" ;
+lin unperceptive_A = mkAMost "unperceptive" "unperceptively" ;
+lin unperceptiveness_N = mkN "unperceptiveness" "unperceptivenesses" ;
+lin unperformed_A = mkAMost "unperformed" "unperformedly" ;
+lin unpermed_A = mkAMost "unpermed" "unpermedly" ;
+lin unpermissive_A = mkAMost "unpermissive" "unpermissively" ;
+lin unpermissiveness_N = mkN "unpermissiveness" "unpermissivenesses" ;
+lin unperplexed_A = mkAMost "unperplexed" "unperplexedly" ;
+lin unpersuadable_A = mkAMost "unpersuadable" "unpersuadably" ;
+lin unpersuaded_A = mkAMost "unpersuaded" "unpersuadedly" ;
+lin unpersuasive_A = mkAMost "unpersuasive" "unpersuasively" ;
+lin unpersuasiveness_N = mkN "unpersuasiveness" "unpersuasivenesses" ;
+lin unperturbed_A = mkAMost "unperturbed" "unperturbedly" ;
+lin unpick_V = mkV "unpick" "unpicked" "unpicked" ;
+lin unpierced_A = mkAMost "unpierced" "unpiercedly" ;
+lin unpigmented_A = mkAMost "unpigmented" "unpigmentedly" ;
+lin unpillared_A = mkAMost "unpillared" "unpillaredly" ;
+lin unplaced_A = mkAMost "unplaced" "unplacedly" ;
+lin unplanned_A = mkAMost "unplanned" "unplannedly" ;
+lin unplanted_A = mkAMost "unplanted" "unplantedly" ;
+lin unplayable_A = mkAMost "unplayable" "unplayably" ;
+lin unplayful_A = mkAMost "unplayful" "unplayfully" ;
+lin unpleasant_A = mkAMost "unpleasant" "unpleasantly" ;
+lin unpleasantness_N = mkN "unpleasantness" "unpleasantnesses" ;
+lin unpleasingness_N = mkN "unpleasingness" "unpleasingnesses" ;
+lin unplowed_A = mkAMost "unplowed" "unplowedly" ;
+lin unplug_V = mkV "unplug" "unplugged" "unplugged" ;
+lin unplumbed_A = mkAMost "unplumbed" "unplumbedly" ;
+lin unpointedness_N = mkN "unpointedness" "unpointednesses" ;
+lin unpolished_A = mkAMost "unpolished" "unpolishedly" ;
+lin unpolluted_A = mkAMost "unpolluted" "unpollutedly" ;
+lin unpompous_A = mkAMost "unpompous" "unpompously" ;
+lin unpopular_A = mkAMost "unpopular" "unpopularly" ;
+lin unpopularity_N = mkN "unpopularity" "unpopularities" ;
+lin unportable_A = mkAMost "unportable" "unportably" ;
+lin unposed_A = mkAMost "unposed" "unposedly" ;
+lin unpotted_A = mkAMost "unpotted" "unpottedly" ;
+lin unpowered_A = mkAMost "unpowered" "unpoweredly" ;
+lin unpracticed_A = mkAMost "unpracticed" "unpracticedly" ;
+lin unpractised_A = mkAMost "unpractised" "unpractisedly" ;
+lin unprecedented_A = mkAMost "unprecedented" "unprecedentedly" ;
+lin unpredictability_N = mkN "unpredictability" "unpredictabilities" ;
+lin unpredictable_A = mkAMost "unpredictable" "unpredictably" ;
+lin unpredicted_A = mkAMost "unpredicted" "unpredictedly" ;
+lin unpredictive_A = mkAMost "unpredictive" "unpredictively" ;
+lin unprejudiced_A = mkAMost "unprejudiced" "unprejudicedly" ;
+lin unpremeditated_A = mkAMost "unpremeditated" "unpremeditatedly" ;
+lin unprepared_A = mkAMost "unprepared" "unpreparedly" ;
+lin unprepossessing_A = mkAMost "unprepossessing" "unprepossessingly" ;
+lin unpresidential_A = mkAMost "unpresidential" "unpresidentially" ;
+lin unpressed_A = mkAMost "unpressed" "unpressedly" ;
+lin unpretentious_A = mkAMost "unpretentious" "unpretentiously" ;
+lin unpretentiousness_N = mkN "unpretentiousness" "unpretentiousnesses" ;
+lin unpreventable_A = mkAMost "unpreventable" "unpreventably" ;
+lin unpriestly_A = mkAMost "unpriestly" "unpriestlily" ;
+lin unprincipled_A = mkAMost "unprincipled" "unprincipledly" ;
+lin unprintable_A = mkAMost "unprintable" "unprintably" ;
+lin unprocessed_A = mkAMost "unprocessed" "unprocessedly" ;
+lin unproductive_A = mkAMost "unproductive" "unproductively" ;
+lin unproductiveness_N = mkN "unproductiveness" "unproductivenesses" ;
+lin unprofessional_A = mkAMost "unprofessional" "unprofessionally" ;
+lin unprofitable_A = mkAMost "unprofitable" "unprofitably" ;
+lin unprofitableness_N = mkN "unprofitableness" "unprofitablenesses" ;
+lin unpromising_A = mkAMost "unpromising" "unpromisingly" ;
+lin unprompted_A = mkAMost "unprompted" "unpromptedly" ;
+lin unpronounceable_A = mkAMost "unpronounceable" "unpronounceably" ;
+lin unprophetic_A = mkAMost "unprophetic" "unpropheticly" ;
+lin unpropitious_A = mkAMost "unpropitious" "unpropitiously" ;
+lin unprotected_A = mkAMost "unprotected" "unprotectedly" ;
+lin unprotective_A = mkAMost "unprotective" "unprotectively" ;
+lin unprovable_A = mkAMost "unprovable" "unprovably" ;
+lin unproved_A = mkAMost "unproved" "unprovedly" ;
+lin unproven_A = mkAMost "unproven" "unprovenly" ;
+lin unprovided_A = mkAMost "unprovided" "unprovidedly" ;
+lin unprovocative_A = mkAMost "unprovocative" "unprovocatively" ;
+lin unprovoked_A = mkAMost "unprovoked" "unprovokedly" ;
+lin unpublishable_A = mkAMost "unpublishable" "unpublishably" ;
+lin unpublished_A = mkAMost "unpublished" "unpublishedly" ;
+lin unpunctual_A = mkAMost "unpunctual" "unpunctually" ;
+lin unpunished_A = mkAMost "unpunished" "unpunishedly" ;
+lin unpurified_A = mkAMost "unpurified" "unpurifiedly" ;
+lin unputdownable_A = mkAMost "unputdownable" "unputdownably" ;
+lin unqualified_A = mkAMost "unqualified" "unqualifiedly" ;
+lin unquestionable_A = mkAMost "unquestionable" "unquestionably" ;
+lin unquestioned_A = mkAMost "unquestioned" "unquestionedly" ;
+lin unquestioning_A = mkAMost "unquestioning" "unquestioningly" ;
+lin unquiet_A = mkAMost "unquiet" "unquietly" ;
+lin unquotable_A = mkAMost "unquotable" "unquotably" ;
+lin unquote_Adv = mkAdv "unquote" ;
+lin unratable_A = mkAMost "unratable" "unratably" ;
+lin unratified_A = mkAMost "unratified" "unratifiedly" ;
+lin unravel_V = mkV "unravel" "unravelled" "unravelled" ;
+lin unreached_A = mkAMost "unreached" "unreachedly" ;
+lin unreactive_A = mkAMost "unreactive" "unreactively" ;
+lin unread_A = mkAMost "unread" "unreadly" ;
+lin unreadable_A = mkAMost "unreadable" "unreadably" ;
+lin unready_A = mkAMost "unready" "unreadily" ;
+lin unreal_A = mkAMost "unreal" "unreally" ;
+lin unrealistic_unrealistically_A = mkAMost "unrealistic" "unrealistically" ;
+lin unrealistic_unrealisticly_A = mkAMost "unrealistic" "unrealisticly" ;
+lin unreality_N = mkN "unreality" "unrealities" ;
+lin unrealized_A = mkAMost "unrealized" "unrealizedly" ;
+lin unreasonable_A = mkAMost "unreasonable" "unreasonably" ;
+lin unreasoning_A = mkAMost "unreasoning" "unreasoningly" ;
+lin unreassuring_A = mkAMost "unreassuring" "unreassuringly" ;
+lin unreceptive_A = mkAMost "unreceptive" "unreceptively" ;
+lin unreciprocated_A = mkAMost "unreciprocated" "unreciprocatedly" ;
+lin unrecognizable_A = mkAMost "unrecognizable" "unrecognizably" ;
+lin unrecognized_A = mkAMost "unrecognized" "unrecognizedly" ;
+lin unreconciled_A = mkAMost "unreconciled" "unreconciledly" ;
+lin unreconstructed_A = mkAMost "unreconstructed" "unreconstructedly" ;
+lin unrecorded_A = mkAMost "unrecorded" "unrecordedly" ;
+lin unrecoverable_A = mkAMost "unrecoverable" "unrecoverably" ;
+lin unredeemable_A = mkAMost "unredeemable" "unredeemably" ;
+lin unreduced_A = mkAMost "unreduced" "unreducedly" ;
+lin unrefined_A = mkAMost "unrefined" "unrefinedly" ;
+lin unreflected_A = mkAMost "unreflected" "unreflectedly" ;
+lin unreflective_A = mkAMost "unreflective" "unreflectively" ;
+lin unreformable_A = mkAMost "unreformable" "unreformably" ;
+lin unreformed_A = mkAMost "unreformed" "unreformedly" ;
+lin unrefreshed_A = mkAMost "unrefreshed" "unrefreshedly" ;
+lin unregenerate_A = mkAMost "unregenerate" "unregenerately" ;
+lin unregistered_A = mkAMost "unregistered" "unregisteredly" ;
+lin unregretful_A = mkAMost "unregretful" "unregretfully" ;
+lin unregulated_A = mkAMost "unregulated" "unregulatedly" ;
+lin unrehearsed_A = mkAMost "unrehearsed" "unrehearsedly" ;
+lin unrelated_A = mkAMost "unrelated" "unrelatedly" ;
+lin unrelatedness_N = mkN "unrelatedness" "unrelatednesses" ;
+lin unrelaxed_A = mkAMost "unrelaxed" "unrelaxedly" ;
+lin unreleased_A = mkAMost "unreleased" "unreleasedly" ;
+lin unrelenting_A = mkAMost "unrelenting" "unrelentingly" ;
+lin unreliable_A = mkAMost "unreliable" "unreliably" ;
+lin unrelieved_A = mkAMost "unrelieved" "unrelievedly" ;
+lin unremarkable_A = mkAMost "unremarkable" "unremarkably" ;
+lin unremedied_A = mkAMost "unremedied" "unremediedly" ;
+lin unremitting_A = mkAMost "unremitting" "unremittingly" ;
+lin unremunerative_A = mkAMost "unremunerative" "unremuneratively" ;
+lin unrenewable_A = mkAMost "unrenewable" "unrenewably" ;
+lin unrentable_A = mkAMost "unrentable" "unrentably" ;
+lin unrepaired_A = mkAMost "unrepaired" "unrepairedly" ;
+lin unrepeatable_A = mkAMost "unrepeatable" "unrepeatably" ;
+lin unrepentant_A = mkAMost "unrepentant" "unrepentantly" ;
+lin unreportable_A = mkAMost "unreportable" "unreportably" ;
+lin unreported_A = mkAMost "unreported" "unreportedly" ;
+lin unrepresentative_A = mkAMost "unrepresentative" "unrepresentatively" ;
+lin unrepressed_A = mkAMost "unrepressed" "unrepressedly" ;
+lin unreproducible_A = mkAMost "unreproducible" "unreproducibly" ;
+lin unrequested_A = mkAMost "unrequested" "unrequestedly" ;
+lin unrequited_A = mkAMost "unrequited" "unrequitedly" ;
+lin unresentful_A = mkAMost "unresentful" "unresentfully" ;
+lin unreserved_A = mkAMost "unreserved" "unreservedly" ;
+lin unresisting_A = mkAMost "unresisting" "unresistingly" ;
+lin unresolvable_A = mkAMost "unresolvable" "unresolvably" ;
+lin unresolved_A = mkAMost "unresolved" "unresolvedly" ;
+lin unrespectability_N = mkN "unrespectability" "unrespectabilities" ;
+lin unrespectable_A = mkAMost "unrespectable" "unrespectably" ;
+lin unresponsive_A = mkAMost "unresponsive" "unresponsively" ;
+lin unresponsiveness_N = mkN "unresponsiveness" "unresponsivenesses" ;
+lin unrest_N = mkN "unrest" "unrests" ;
+lin unrestrained_A = mkAMost "unrestrained" "unrestrainedly" ;
+lin unrestraint_N = mkN "unrestraint" "unrestraints" ;
+lin unrestricted_A = mkAMost "unrestricted" "unrestrictedly" ;
+lin unrestrictive_A = mkAMost "unrestrictive" "unrestrictively" ;
+lin unretentive_A = mkAMost "unretentive" "unretentively" ;
+lin unreverberant_A = mkAMost "unreverberant" "unreverberantly" ;
+lin unrevised_A = mkAMost "unrevised" "unrevisedly" ;
+lin unrevived_A = mkAMost "unrevived" "unrevivedly" ;
+lin unrewarded_A = mkAMost "unrewarded" "unrewardedly" ;
+lin unrewarding_A = mkAMost "unrewarding" "unrewardingly" ;
+lin unrhetorical_A = mkAMost "unrhetorical" "unrhetorically" ;
+lin unrhymed_A = mkAMost "unrhymed" "unrhymedly" ;
+lin unrhythmical_A = mkAMost "unrhythmical" "unrhythmically" ;
+lin unrifled_A = mkAMost "unrifled" "unrifledly" ;
+lin unrigged_A = mkAMost "unrigged" "unriggedly" ;
+lin unrighteous_A = mkAMost "unrighteous" "unrighteously" ;
+lin unrighteousness_N = mkN "unrighteousness" "unrighteousnesses" ;
+lin unripe_A = mkAMost "unripe" "unripely" ;
+lin unripened_A = mkAMost "unripened" "unripenedly" ;
+lin unrivalled_A = mkAMost "unrivalled" "unrivalledly" ;
+lin unroll_V = mkV "unroll" "unrolled" "unrolled" ;
+lin unromantic_A = mkAMost "unromantic" "unromanticly" ;
+lin unromantically_Adv = mkAdv "unromantically" ;
+lin unroofed_A = mkAMost "unroofed" "unroofedly" ;
+lin unrouged_A = mkAMost "unrouged" "unrougedly" ;
+lin unruffled_A = mkAMost "unruffled" "unruffledly" ;
+lin unruliness_N = mkN "unruliness" "unrulinesses" ;
+lin unruly_A = mkA "unruly" "unrulier" "unruliest" "unrulily" ;
+lin unsaddle_V = mkV "unsaddle" "unsaddled" "unsaddled" ;
+lin unsafe_A = mkAMost "unsafe" "unsafely" ;
+lin unsalable_A = mkAMost "unsalable" "unsalably" ;
+lin unsaleable_A = mkAMost "unsaleable" "unsaleably" ;
+lin unsalted_A = mkAMost "unsalted" "unsaltedly" ;
+lin unsanctioned_A = mkAMost "unsanctioned" "unsanctionedly" ;
+lin unsanitariness_N = mkN "unsanitariness" "unsanitarinesses" ;
+lin unsanitary_A = mkAMost "unsanitary" "unsanitarily" ;
+lin unsaponified_A = mkAMost "unsaponified" "unsaponifiedly" ;
+lin unsarcastic_A = mkAMost "unsarcastic" "unsarcasticly" ;
+lin unsated_A = mkAMost "unsated" "unsatedly" ;
+lin unsatisfactoriness_N = mkN "unsatisfactoriness" "unsatisfactorinesses" ;
+lin unsatisfactory_A = mkAMost "unsatisfactory" "unsatisfactorily" ;
+lin unsatisfiable_A = mkAMost "unsatisfiable" "unsatisfiably" ;
+lin unsatisfied_A = mkAMost "unsatisfied" "unsatisfiedly" ;
+lin unsatisfying_A = mkAMost "unsatisfying" "unsatisfyingly" ;
+lin unsaturated_A = mkAMost "unsaturated" "unsaturatedly" ;
+lin unsavory_A = mkAMost "unsavory" "unsavorily" ;
+lin unsavoury_A = mkAMost "unsavoury" "unsavourily" ;
+lin unsay_V = mkV "unsay" "unsaid" "unsaid" ;
+lin unscalable_A = mkAMost "unscalable" "unscalably" ;
+lin unscathed_A = mkAMost "unscathed" "unscathedly" ;
+lin unscheduled_A = mkAMost "unscheduled" "unscheduledly" ;
+lin unscholarly_A = mkAMost "unscholarly" "unscholarlily" ;
+lin unschooled_A = mkAMost "unschooled" "unschooledly" ;
+lin unscientific_A = mkAMost "unscientific" "unscientificly" ;
+lin unscientifically_Adv = mkAdv "unscientifically" ;
+lin unscramble_V = mkV "unscramble" "unscrambled" "unscrambled" ;
+lin unscrew_V = mkV "unscrew" "unscrewed" "unscrewed" ;
+lin unscripted_A = mkAMost "unscripted" "unscriptedly" ;
+lin unscrupulous_A = mkAMost "unscrupulous" "unscrupulously" ;
+lin unscrupulousness_N = mkN "unscrupulousness" "unscrupulousnesses" ;
+lin unsealed_A = mkAMost "unsealed" "unsealedly" ;
+lin unseamanlike_A = mkAMost "unseamanlike" "unseamanlikely" ;
+lin unseamed_A = mkAMost "unseamed" "unseamedly" ;
+lin unseasonable_A = mkAMost "unseasonable" "unseasonably" ;
+lin unseasonableness_N = mkN "unseasonableness" "unseasonablenesses" ;
+lin unseasoned_A = mkAMost "unseasoned" "unseasonedly" ;
+lin unseat_V = mkV "unseat" "unseated" "unseated" ;
+lin unseaworthy_A = mkAMost "unseaworthy" "unseaworthily" ;
+lin unsecured_A = mkAMost "unsecured" "unsecuredly" ;
+lin unseductive_A = mkAMost "unseductive" "unseductively" ;
+lin unseeded_A = mkAMost "unseeded" "unseededly" ;
+lin unseeing_A = mkAMost "unseeing" "unseeingly" ;
+lin unseemliness_N = mkN "unseemliness" "unseemlinesses" ;
+lin unseemly_A = mkAMost "unseemly" "unseemlily" ;
+lin unseen_A = mkAMost "unseen" "unseenly" ;
+lin unseen_N = mkN "unseen" "unseens" ;
+lin unseeyn_A = mkAMost "unseeyn" "unseeynly" ;
+lin unsegmented_A = mkAMost "unsegmented" "unsegmentedly" ;
+lin unselected_A = mkAMost "unselected" "unselectedly" ;
+lin unselective_A = mkAMost "unselective" "unselectively" ;
+lin unselfconscious_A = mkAMost "unselfconscious" "unselfconsciously" ;
+lin unselfconsciousness_N = mkN "unselfconsciousness" "unselfconsciousnesses" ;
+lin unselfish_A = mkAMost "unselfish" "unselfishly" ;
+lin unselfishness_N = mkN "unselfishness" "unselfishnesses" ;
+lin unsensational_A = mkAMost "unsensational" "unsensationally" ;
+lin unsent_A = mkAMost "unsent" "unsently" ;
+lin unsentimentally_Adv = mkAdv "unsentimentally" ;
+lin unserviceable_A = mkAMost "unserviceable" "unserviceably" ;
+lin unservile_A = mkAMost "unservile" "unservilely" ;
+lin unsettle_V = mkV "unsettle" "unsettled" "unsettled" ;
+lin unsex_V = mkV "unsex" "unsexed" "unsexed" ;
+lin unsexy_A = mkAMost "unsexy" "unsexily" ;
+lin unshaded_A = mkAMost "unshaded" "unshadedly" ;
+lin unshadowed_A = mkAMost "unshadowed" "unshadowedly" ;
+lin unshakable_A = mkAMost "unshakable" "unshakably" ;
+lin unshaped_A = mkAMost "unshaped" "unshapedly" ;
+lin unshapely_A = mkAMost "unshapely" "unshapelily" ;
+lin unshared_A = mkAMost "unshared" "unsharedly" ;
+lin unsharpened_A = mkAMost "unsharpened" "unsharpenedly" ;
+lin unshaved_A = mkAMost "unshaved" "unshavedly" ;
+lin unshaven_A = mkAMost "unshaven" "unshavenly" ;
+lin unsheared_A = mkAMost "unsheared" "unshearedly" ;
+lin unsheathe_V = mkV "unsheathe" "unsheathed" "unsheathed" ;
+lin unshelled_A = mkAMost "unshelled" "unshelledly" ;
+lin unshielded_A = mkAMost "unshielded" "unshieldedly" ;
+lin unshockable_A = mkAMost "unshockable" "unshockably" ;
+lin unshod_A = mkAMost "unshod" "unshodly" ;
+lin unshrinkable_A = mkAMost "unshrinkable" "unshrinkably" ;
+lin unshrinking_A = mkAMost "unshrinking" "unshrinkingly" ;
+lin unshuttered_A = mkAMost "unshuttered" "unshutteredly" ;
+lin unsighted_A = mkAMost "unsighted" "unsightedly" ;
+lin unsightliness_N = mkN "unsightliness" "unsightlinesses" ;
+lin unsightly_A = mkAMost "unsightly" "unsightlily" ;
+lin unsigned_A = mkAMost "unsigned" "unsignedly" ;
+lin unsilenced_A = mkAMost "unsilenced" "unsilencedly" ;
+lin unsinkable_A = mkAMost "unsinkable" "unsinkably" ;
+lin unsized_A = mkAMost "unsized" "unsizedly" ;
+lin unskilled_A = mkAMost "unskilled" "unskilledly" ;
+lin unskillfulness_N = mkN "unskillfulness" "unskillfulnesses" ;
+lin unsleeping_A = mkAMost "unsleeping" "unsleepingly" ;
+lin unsmiling_A = mkAMost "unsmiling" "unsmilingly" ;
+lin unsmoothed_A = mkAMost "unsmoothed" "unsmoothedly" ;
+lin unsnarling_N = mkN "unsnarling" "unsnarlings" ;
+lin unsociability_N = mkN "unsociability" "unsociabilities" ;
+lin unsociable_A = mkAMost "unsociable" "unsociably" ;
+lin unsocial_A = mkAMost "unsocial" "unsocially" ;
+lin unsoiled_A = mkAMost "unsoiled" "unsoiledly" ;
+lin unsold_A = mkAMost "unsold" "unsoldly" ;
+lin unsoldierly_A = mkAMost "unsoldierly" "unsoldierlily" ;
+lin unsolicited_A = mkAMost "unsolicited" "unsolicitedly" ;
+lin unsolvability_N = mkN "unsolvability" "unsolvabilities" ;
+lin unsolved_A = mkAMost "unsolved" "unsolvedly" ;
+lin unsophisticated_A = mkAMost "unsophisticated" "unsophisticatedly" ;
+lin unsorted_A = mkAMost "unsorted" "unsortedly" ;
+lin unsound_A = mkAMost "unsound" "unsoundly" ;
+lin unsoundable_A = mkAMost "unsoundable" "unsoundably" ;
+lin unsoundness_N = mkN "unsoundness" "unsoundnesses" ;
+lin unsoured_A = mkAMost "unsoured" "unsouredly" ;
+lin unspaced_A = mkAMost "unspaced" "unspacedly" ;
+lin unsparing_A = mkAMost "unsparing" "unsparingly" ;
+lin unspeakable_A = mkAMost "unspeakable" "unspeakably" ;
+lin unspecialized_A = mkAMost "unspecialized" "unspecializedly" ;
+lin unspecific_A = mkAMost "unspecific" "unspecificly" ;
+lin unspecifically_Adv = mkAdv "unspecifically" ;
+lin unspecified_A = mkAMost "unspecified" "unspecifiedly" ;
+lin unspectacular_A = mkAMost "unspectacular" "unspectacularly" ;
+lin unspent_A = mkAMost "unspent" "unspently" ;
+lin unspoiled_A = mkAMost "unspoiled" "unspoiledly" ;
+lin unspoilt_A = mkAMost "unspoilt" "unspoiltly" ;
+lin unspoken_A = mkAMost "unspoken" "unspokenly" ;
+lin unsporting_A = mkAMost "unsporting" "unsportingly" ;
+lin unsportsmanlike_A = mkAMost "unsportsmanlike" "unsportsmanlikely" ;
+lin unspotted_A = mkAMost "unspotted" "unspottedly" ;
+lin unstable_A = mkAMost "unstable" "unstably" ;
+lin unstaged_A = mkAMost "unstaged" "unstagedly" ;
+lin unstained_A = mkAMost "unstained" "unstainedly" ;
+lin unstartling_A = mkAMost "unstartling" "unstartlingly" ;
+lin unstated_A = mkAMost "unstated" "unstatedly" ;
+lin unstatesmanlike_A = mkAMost "unstatesmanlike" "unstatesmanlikely" ;
+lin unsteadiness_N = mkN "unsteadiness" "unsteadinesses" ;
+lin unsteady_A = mkAMost "unsteady" "unsteadily" ;
+lin unsterilized_A = mkAMost "unsterilized" "unsterilizedly" ;
+lin unstilted_A = mkAMost "unstilted" "unstiltedly" ;
+lin unstimulating_A = mkAMost "unstimulating" "unstimulatingly" ;
+lin unstintingly_Adv = mkAdv "unstintingly" ;
+lin unstirred_A = mkAMost "unstirred" "unstirredly" ;
+lin unstoppable_A = mkAMost "unstoppable" "unstoppably" ;
+lin unstoppered_A = mkAMost "unstoppered" "unstopperedly" ;
+lin unstrained_A = mkAMost "unstrained" "unstrainedly" ;
+lin unstratified_A = mkAMost "unstratified" "unstratifiedly" ;
+lin unstressed_A = mkAMost "unstressed" "unstressedly" ;
+lin unstructured_A = mkAMost "unstructured" "unstructuredly" ;
+lin unstrung_A = mkAMost "unstrung" "unstrungly" ;
+lin unstuck_A = mkAMost "unstuck" "unstuckly" ;
+lin unstudied_A = mkAMost "unstudied" "unstudiedly" ;
+lin unstudious_A = mkAMost "unstudious" "unstudiously" ;
+lin unsubdued_A = mkAMost "unsubdued" "unsubduedly" ;
+lin unsubtle_A = mkAMost "unsubtle" "unsubtlely" ;
+lin unsuccessful_A = mkAMost "unsuccessful" "unsuccessfully" ;
+lin unsugared_A = mkAMost "unsugared" "unsugaredly" ;
+lin unsuitability_N = mkN "unsuitability" "unsuitabilities" ;
+lin unsuitable_A = mkAMost "unsuitable" "unsuitably" ;
+lin unsuited_A = mkAMost "unsuited" "unsuitedly" ;
+lin unsullied_A = mkAMost "unsullied" "unsulliedly" ;
+lin unsung_A = mkAMost "unsung" "unsungly" ;
+lin unsupervised_A = mkAMost "unsupervised" "unsupervisedly" ;
+lin unsupportable_A = mkAMost "unsupportable" "unsupportably" ;
+lin unsupported_A = mkAMost "unsupported" "unsupportedly" ;
+lin unsupportive_A = mkAMost "unsupportive" "unsupportively" ;
+lin unsuppressed_A = mkAMost "unsuppressed" "unsuppressedly" ;
+lin unsure_A = mkAMost "unsure" "unsurely" ;
+lin unsurmountable_A = mkAMost "unsurmountable" "unsurmountably" ;
+lin unsurpassable_A = mkAMost "unsurpassable" "unsurpassably" ;
+lin unsurpassed_A = mkAMost "unsurpassed" "unsurpassedly" ;
+lin unsurprised_A = mkAMost "unsurprised" "unsurprisedly" ;
+lin unsurprising_A = mkAMost "unsurprising" "unsurprisingly" ;
+lin unsusceptibility_N = mkN "unsusceptibility" "unsusceptibilities" ;
+lin unsusceptible_A = mkAMost "unsusceptible" "unsusceptibly" ;
+lin unsuspected_A = mkAMost "unsuspected" "unsuspectedly" ;
+lin unsuspecting_A = mkAMost "unsuspecting" "unsuspectingly" ;
+lin unsuspicious_A = mkAMost "unsuspicious" "unsuspiciously" ;
+lin unswayed_A = mkAMost "unswayed" "unswayedly" ;
+lin unsweet_A = mkAMost "unsweet" "unsweetly" ;
+lin unsweetened_A = mkAMost "unsweetened" "unsweetenedly" ;
+lin unswept_A = mkAMost "unswept" "unsweptly" ;
+lin unswerving_A = mkAMost "unswerving" "unswervingly" ;
+lin unsworn_A = mkAMost "unsworn" "unswornly" ;
+lin unsyllabic_A = mkAMost "unsyllabic" "unsyllabicly" ;
+lin unsyllabled_A = mkAMost "unsyllabled" "unsyllabledly" ;
+lin unsymmetric_A = mkAMost "unsymmetric" "unsymmetricly" ;
+lin unsympathetic_A = mkAMost "unsympathetic" "unsympatheticly" ;
+lin unsympathetically_Adv = mkAdv "unsympathetically" ;
+lin unsympathizing_A = mkAMost "unsympathizing" "unsympathizingly" ;
+lin unsystematic_A = mkAMost "unsystematic" "unsystematicly" ;
+lin unsystematically_Adv = mkAdv "unsystematically" ;
+lin untainted_A = mkAMost "untainted" "untaintedly" ;
+lin untalented_A = mkAMost "untalented" "untalentedly" ;
+lin untamed_A = mkAMost "untamed" "untamedly" ;
+lin untangled_A = mkAMost "untangled" "untangledly" ;
+lin untanned_A = mkAMost "untanned" "untannedly" ;
+lin untapped_A = mkAMost "untapped" "untappedly" ;
+lin untarnished_A = mkAMost "untarnished" "untarnishedly" ;
+lin untaxed_A = mkAMost "untaxed" "untaxedly" ;
+lin untempered_A = mkAMost "untempered" "untemperedly" ;
+lin untenable_A = mkAMost "untenable" "untenably" ;
+lin untenanted_A = mkAMost "untenanted" "untenantedly" ;
+lin untended_A = mkAMost "untended" "untendedly" ;
+lin untested_A = mkAMost "untested" "untestedly" ;
+lin untethered_A = mkAMost "untethered" "untetheredly" ;
+lin unthawed_A = mkAMost "unthawed" "unthawedly" ;
+lin untheatrical_A = mkAMost "untheatrical" "untheatrically" ;
+lin unthematic_A = mkAMost "unthematic" "unthematicly" ;
+lin unthinkable_A = mkAMost "unthinkable" "unthinkably" ;
+lin unthinking_A = mkAMost "unthinking" "unthinkingly" ;
+lin unthought_of_A = mkAMost "unthought-of" "unthought-ofly" ;
+lin unthoughtfulness_N = mkN "unthoughtfulness" "unthoughtfulnesses" ;
+lin untidiness_N = mkN "untidiness" "untidinesses" ;
+lin untidy_A = mkA "untidy" "untidier" "untidiest" "untidily" ;
+lin untie_V = mkV "untie" "IRREG" "IRREG" ;
+lin untied_A = mkAMost "untied" "untiedly" ;
+lin until_Prep = mkPrep "until" ;
+lin untilled_A = mkAMost "untilled" "untilledly" ;
+lin untimbered_A = mkAMost "untimbered" "untimberedly" ;
+lin untimely_A = mkAMost "untimely" "untimelily" ;
+lin untipped_A = mkAMost "untipped" "untippedly" ;
+lin untired_A = mkAMost "untired" "untiredly" ;
+lin untiring_A = mkAMost "untiring" "untiringly" ;
+lin untitled_A = mkAMost "untitled" "untitledly" ;
+lin unto_Prep = mkPrep "unto" ;
+lin untoasted_A = mkAMost "untoasted" "untoastedly" ;
+lin untold_A = mkAMost "untold" "untoldly" ;
+lin untouchable_A = mkAMost "untouchable" "untouchably" ;
+lin untouchable_N = mkN "untouchable" "untouchables" ;
+lin untouched_A = mkAMost "untouched" "untouchedly" ;
+lin untoward_A = mkAMost "untoward" "untowardly" ;
+lin untraceable_A = mkAMost "untraceable" "untraceably" ;
+lin untrained_A = mkAMost "untrained" "untrainedly" ;
+lin untrammeled_A = mkAMost "untrammeled" "untrammeledly" ;
+lin untrammelled_A = mkAMost "untrammelled" "untrammelledly" ;
+lin untranslatable_A = mkAMost "untranslatable" "untranslatably" ;
+lin untraveled_A = mkAMost "untraveled" "untraveledly" ;
+lin untraversable_A = mkAMost "untraversable" "untraversably" ;
+lin untraversed_A = mkAMost "untraversed" "untraversedly" ;
+lin untreated_A = mkAMost "untreated" "untreatedly" ;
+lin untried_A = mkAMost "untried" "untriedly" ;
+lin untrimmed_A = mkAMost "untrimmed" "untrimmedly" ;
+lin untroubled_A = mkAMost "untroubled" "untroubledly" ;
+lin untrue_A = mkAMost "untrue" "untruely" ;
+lin untruly_Adv = mkAdv "untruly" ;
+lin untrustworthiness_N = mkN "untrustworthiness" "untrustworthinesses" ;
+lin untrustworthy_A = mkAMost "untrustworthy" "untrustworthily" ;
+lin untruth_N = mkN "untruth" "untruths" ;
+lin untruthful_A = mkAMost "untruthful" "untruthfully" ;
+lin untruthfulness_N = mkN "untruthfulness" "untruthfulnesses" ;
+lin untucked_A = mkAMost "untucked" "untuckedly" ;
+lin untufted_A = mkAMost "untufted" "untuftedly" ;
+lin unturned_A = mkAMost "unturned" "unturnedly" ;
+lin untutored_A = mkAMost "untutored" "untutoredly" ;
+lin untwisted_A = mkAMost "untwisted" "untwistedly" ;
+lin untying_N = mkN "untying" "untyings" ;
+lin untypical_A = mkAMost "untypical" "untypically" ;
+lin ununbium_N = mkN "ununbium" "ununbiums" ;
+lin ununderstood_A = mkAMost "ununderstood" "ununderstoodly" ;
+lin ununhexium_N = mkN "ununhexium" "ununhexiums" ;
+lin ununpentium_N = mkN "ununpentium" "ununpentiums" ;
+lin ununquadium_N = mkN "ununquadium" "ununquadiums" ;
+lin ununtrium_N = mkN "ununtrium" "ununtriums" ;
+lin unused_A = mkAMost "unused" "unusedly" ;
+lin unusual_A = mkAMost "unusual" "unusually" ;
+lin unusualness_N = mkN "unusualness" "unusualnesses" ;
+lin unutterable_A = mkAMost "unutterable" "unutterably" ;
+lin unvaccinated_A = mkAMost "unvaccinated" "unvaccinatedly" ;
+lin unvaried_A = mkAMost "unvaried" "unvariedly" ;
+lin unvariedness_N = mkN "unvariedness" "unvariednesses" ;
+lin unvarnished_A = mkAMost "unvarnished" "unvarnishedly" ;
+lin unvarying_A = mkAMost "unvarying" "unvaryingly" ;
+lin unveil_V = mkV "unveil" "unveiled" "unveiled" ;
+lin unveiling_N = mkN "unveiling" "unveilings" ;
+lin unvented_A = mkAMost "unvented" "unventedly" ;
+lin unventilated_A = mkAMost "unventilated" "unventilatedly" ;
+lin unverified_A = mkAMost "unverified" "unverifiedly" ;
+lin unversed_A = mkAMost "unversed" "unversedly" ;
+lin unvigilant_A = mkAMost "unvigilant" "unvigilantly" ;
+lin unvindictive_A = mkAMost "unvindictive" "unvindictively" ;
+lin unvitrified_A = mkAMost "unvitrified" "unvitrifiedly" ;
+lin unvoiced_A = mkAMost "unvoiced" "unvoicedly" ;
+lin unvulcanized_A = mkAMost "unvulcanized" "unvulcanizedly" ;
+lin unwanted_A = mkAMost "unwanted" "unwantedly" ;
+lin unwariness_N = mkN "unwariness" "unwarinesses" ;
+lin unwarrantably_Adv = mkAdv "unwarrantably" ;
+lin unwarranted_A = mkAMost "unwarranted" "unwarrantedly" ;
+lin unwary_A = mkAMost "unwary" "unwarily" ;
+lin unwashed_A = mkAMost "unwashed" "unwashedly" ;
+lin unwavering_A = mkAMost "unwavering" "unwaveringly" ;
+lin unwaxed_A = mkAMost "unwaxed" "unwaxedly" ;
+lin unweaned_A = mkAMost "unweaned" "unweanedly" ;
+lin unwearable_A = mkAMost "unwearable" "unwearably" ;
+lin unwearied_A = mkAMost "unwearied" "unweariedly" ;
+lin unweathered_A = mkAMost "unweathered" "unweatheredly" ;
+lin unwebbed_A = mkAMost "unwebbed" "unwebbedly" ;
+lin unwed_A = mkAMost "unwed" "unwedly" ;
+lin unwelcome_A = mkAMost "unwelcome" "unwelcomely" ;
+lin unwell_A = mkAMost "unwell" "unwelly" ;
+lin unwholesome_A = mkAMost "unwholesome" "unwholesomely" ;
+lin unwholesomeness_N = mkN "unwholesomeness" "unwholesomenesses" ;
+lin unwieldiness_N = mkN "unwieldiness" "unwieldinesses" ;
+lin unwieldy_A = mkAMost "unwieldy" "unwieldily" ;
+lin unwilled_A = mkAMost "unwilled" "unwilledly" ;
+lin unwilling_A = mkAMost "unwilling" "unwillingly" ;
+lin unwillingness_N = mkN "unwillingness" "unwillingnesses" ;
+lin unwind_V = mkV "unwind" "unwound" "unwound" ;
+lin unwise_A = mkAMost "unwise" "unwisely" ;
+lin unwitnessed_A = mkAMost "unwitnessed" "unwitnessedly" ;
+lin unwitting_A = mkAMost "unwitting" "unwittingly" ;
+lin unwomanly_A = mkAMost "unwomanly" "unwomanlily" ;
+lin unwonted_A = mkAMost "unwonted" "unwontedly" ;
+lin unwooded_A = mkAMost "unwooded" "unwoodedly" ;
+lin unworkable_A = mkAMost "unworkable" "unworkably" ;
+lin unworkmanlike_A = mkAMost "unworkmanlike" "unworkmanlikely" ;
+lin unworldly_A = mkAMost "unworldly" "unworldlily" ;
+lin unworn_A = mkAMost "unworn" "unwornly" ;
+lin unworried_A = mkAMost "unworried" "unworriedly" ;
+lin unworthiness_N = mkN "unworthiness" "unworthinesses" ;
+lin unworthy_A = mkAMost "unworthy" "unworthily" ;
+lin unwounded_A = mkAMost "unwounded" "unwoundedly" ;
+lin unwoven_A = mkAMost "unwoven" "unwovenly" ;
+lin unwrap_V = mkV "unwrap" "unwrapped" "unwrapped" ;
+lin unwrinkled_A = mkAMost "unwrinkled" "unwrinkledly" ;
+lin unwritten_A = mkAMost "unwritten" "unwrittenly" ;
+lin unyielding_A = mkAMost "unyielding" "unyieldingly" ;
+lin unzip_V = mkV "unzip" "unzipped" "unzipped" ;
+lin up_A = mkA "up" "upper" "uppest" "uply" ;
+lin up_Adv = mkAdv "up" ;
+lin up_Prep = mkPrep "up" ;
+lin up_V = mkV "up" "upped" "upped" ;
+lin up_and_coming_A = mkAMost "up-and-coming" "up-and-comingly" ;
+lin up_beat_N = mkN "up-beat" "up-beats" ;
+lin up_market_A = mkAMost "up-market" "up-marketly" ;
+lin up_to_Prep = mkPrep "up to" ;
+lin up_to_date_A = mkAMost "up-to-date" "up-to-dately" ;
+lin up_to_the_minute_A = mkAMost "up-to-the-minute" "up-to-the-minutely" ;
+lin upbeat_N = mkN "upbeat" "upbeats" ;
+lin upbound_A = mkAMost "upbound" "upboundly" ;
+lin upbraid_V = mkV "upbraid" "upbraided" "upbraided" ;
+lin upbraider_N = mkN "upbraider" "upbraiders" ;
+lin upbraiding_N = mkN "upbraiding" "upbraidings" ;
+lin upbringing_N = mkN "upbringing" "upbringings" ;
+lin upcast_N = mkN "upcast" "upcasts" ;
+lin upcountry_A = mkAMost "upcountry" "upcountrily" ;
+lin upcountry_Adv = mkAdv "upcountry" ;
+lin upcurved_A = mkAMost "upcurved" "upcurvedly" ;
+lin update_N = mkN "update" "updates" ;
+lin update_V = mkV "update" "updated" "updated" ;
+lin updating_N = mkN "updating" "updatings" ;
+lin updraft_N = mkN "updraft" "updrafts" ;
+lin upended_A = mkAMost "upended" "upendedly" ;
+lin upfield_A = mkAMost "upfield" "upfieldly" ;
+lin upfront_A = mkAMost "upfront" "upfrontly" ;
+lin upgrade_N = mkN "upgrade" "upgrades" ;
+lin upgrade_V = mkV "upgrade" "upgraded" "upgraded" ;
+lin upheaval_N = mkN "upheaval" "upheavals" ;
+lin uphill_A = mkAMost "uphill" "uphilly" ;
+lin uphill_Adv = mkAdv "uphill" ;
+lin uphill_N = mkN "uphill" "uphills" ;
+lin uphold_V = mkV "uphold" "upheld" "upheld" ;
+lin upholder_N = mkN "upholder" "upholders" ;
+lin upholster_V = mkV "upholster" "upholstered" "upholstered" ;
+lin upholsterer_N = mkN "upholsterer" "upholsterers" ;
+lin upholstery_N = mkN "upholstery" "upholsteries" ;
+lin upkeep_N = mkN "upkeep" "upkeeps" ;
+lin upland_A = mkAMost "upland" "uplandly" ;
+lin upland_N = mkN "upland" "uplands" ;
+lin uplift_N = mkN "uplift" "uplifts" ;
+lin uplift_V = mkV "uplift" "uplifted" "uplifted" ;
+lin uplifting_N = mkN "uplifting" "upliftings" ;
+lin uplink_N = mkN "uplink" "uplinks" ;
+lin upmarket_A = mkAMost "upmarket" "upmarketly" ;
+lin upmost_A = mkAMost "upmost" "upmostly" ;
+lin upon_Prep = mkPrep "upon" ;
+lin upper_A = mkAMost "upper" "upperly" ;
+lin upper_N = mkN "upper" "uppers" ;
+lin uppercase_A = mkAMost "uppercase" "uppercasely" ;
+lin uppercut_N = mkN "uppercut" "uppercuts" ;
+lin uppermost_A = mkAMost "uppermost" "uppermostly" ;
+lin uppermost_Adv = mkAdv "uppermost" ;
+lin uppish_A = mkAMost "uppish" "uppishly" ;
+lin uppishness_N = mkN "uppishness" "uppishnesses" ;
+lin uppity_A = mkAMost "uppity" "uppitily" ;
+lin uppityness_N = mkN "uppityness" "uppitynesses" ;
+lin upraised_A = mkAMost "upraised" "upraisedly" ;
+lin upright_A = mkAMost "upright" "uprightly" ;
+lin upright_N = mkN "upright" "uprights" ;
+lin uprightness_N = mkN "uprightness" "uprightnesses" ;
+lin uprising_N = mkN "uprising" "uprisings" ;
+lin upriver_Adv = mkAdv "upriver" ;
+lin uproar_N = mkN "uproar" "uproars" ;
+lin uproarious_A = mkAMost "uproarious" "uproariously" ;
+lin uproot_V = mkV "uproot" "uprooted" "uprooted" ;
+lin upscale_A = mkAMost "upscale" "upscalely" ;
+lin upset_N = mkN "upset" "upsets" ;
+lin upset_V = mkV "upset" "upset" "upset" ;
+lin upsetter_N = mkN "upsetter" "upsetters" ;
+lin upshot_N = mkN "upshot" "upshots" ;
+lin upside_down_Adv = mkAdv "upside-down" ;
+lin upsilon_N = mkN "upsilon" "upsilons" ;
+lin upstage_A = mkAMost "upstage" "upstagely" ;
+lin upstage_Adv = mkAdv "upstage" ;
+lin upstage_N = mkN "upstage" "upstages" ;
+lin upstage_V = mkV "upstage" "upstaged" "upstaged" ;
+lin upstager_N = mkN "upstager" "upstagers" ;
+lin upstairs_A = mkAMost "upstairs" "upstairsly" ;
+lin upstairs_Adv = mkAdv "upstairs" ;
+lin upstairs_N = mkN "upstairs" "upstairses" ;
+lin upstanding_A = mkAMost "upstanding" "upstandingly" ;
+lin upstart_A = mkAMost "upstart" "upstartly" ;
+lin upstart_N = mkN "upstart" "upstarts" ;
+lin upstate_Adv = mkAdv "upstate" ;
+lin upstream_A = mkAMost "upstream" "upstreamly" ;
+lin upstream_Adv = mkAdv "upstream" ;
+lin upstroke_N = mkN "upstroke" "upstrokes" ;
+lin upsurge_N = mkN "upsurge" "upsurges" ;
+lin uptake_N = mkN "uptake" "uptakes" ;
+lin uptick_N = mkN "uptick" "upticks" ;
+lin uptight_A = mkAMost "uptight" "uptightly" ;
+lin uptime_N = mkN "uptime" "uptimes" ;
+lin uptown_A = mkAMost "uptown" "uptownly" ;
+lin uptown_Adv = mkAdv "uptown" ;
+lin uptown_N = mkN "uptown" "uptowns" ;
+lin upturn_N = mkN "upturn" "upturns" ;
+lin upturned_A = mkAMost "upturned" "upturnedly" ;
+lin upward_A = mkAMost "upward" "upwardly" ;
+lin upward_Adv = mkAdv "upward" ;
+lin upwards_Adv = mkAdv "upwards" ;
+lin upwind_A = mkAMost "upwind" "upwindly" ;
+lin upwind_Adv = mkAdv "upwind" ;
+lin uracil_N = mkN "uracil" "uracils" ;
+lin uraninite_N = mkN "uraninite" "uraninites" ;
+lin uranium_N = mkN "uranium" "uraniums" ;
+lin uranoplasty_N = mkN "uranoplasty" "uranoplasties" ;
+lin uranyl_N = mkN "uranyl" "uranyls" ;
+lin urate_N = mkN "urate" "urates" ;
+lin uratemia_N = mkN "uratemia" "uratemias" ;
+lin uraturia_N = mkN "uraturia" "uraturias" ;
+lin urban_A = mkAMost "urban" "urbanly" ;
+lin urbane_A = mkAMost "urbane" "urbanely" ;
+lin urbanity_N = mkN "urbanity" "urbanities" ;
+lin urbanization_N = mkN "urbanization" "urbanizations" ;
+lin urbanize_V = mkV "urbanize" "urbanized" "urbanized" ;
+lin urceolate_A = mkAMost "urceolate" "urceolately" ;
+lin urceole_N = mkN "urceole" "urceoles" ;
+lin urchin_N = mkN "urchin" "urchins" ;
+lin urdu_A = mkAMost "urdu" "urduly" ;
+lin urdu_N = mkN "urdu" "urdus" ;
+lin urea_N = mkN "urea" "ureas" ;
+lin urease_N = mkN "urease" "ureases" ;
+lin uremia_N = mkN "uremia" "uremias" ;
+lin ureter_N = mkN "ureter" "ureters" ;
+lin ureteritis_N = mkN "ureteritis" "ureteritises" ;
+lin ureterocele_N = mkN "ureterocele" "ureteroceles" ;
+lin ureterostenosis_N = mkN "ureterostenosis" "ureterostenosises" ;
+lin urethane_N = mkN "urethane" "urethanes" ;
+lin urethra_N = mkN "urethra" "urethras" ;
+lin urethral_A = mkAMost "urethral" "urethrally" ;
+lin urethritis_N = mkN "urethritis" "urethritises" ;
+lin urethrocele_N = mkN "urethrocele" "urethroceles" ;
+lin urge_N = mkN "urge" "urges" ;
+lin urge_V = mkV "urge" "urged" "urged" ;
+lin urgency_N = mkN "urgency" "urgencies" ;
+lin urgent_A = mkAMost "urgent" "urgently" ;
+lin urging_N = mkN "urging" "urgings" ;
+lin urial_N = mkN "urial" "urials" ;
+lin uric_A = mkAMost "uric" "uricly" ;
+lin uricaciduria_N = mkN "uricaciduria" "uricacidurias" ;
+lin uricosuric_A = mkAMost "uricosuric" "uricosuricly" ;
+lin urinal_N = mkN "urinal" "urinals" ;
+lin urinalysis_N = mkN "urinalysis" "urinalysises" ;
+lin urinary_A = mkAMost "urinary" "urinarily" ;
+lin urinate_V = mkV "urinate" "urinated" "urinated" ;
+lin urine_N = mkN "urine" "urines" ;
+lin urn_N = mkN "urn" "urns" ;
+lin urobilin_N = mkN "urobilin" "urobilins" ;
+lin urobilinogen_N = mkN "urobilinogen" "urobilinogens" ;
+lin urocele_N = mkN "urocele" "uroceles" ;
+lin urochesia_N = mkN "urochesia" "urochesias" ;
+lin urochord_N = mkN "urochord" "urochords" ;
+lin urodele_N = mkN "urodele" "urodeles" ;
+lin urodynia_N = mkN "urodynia" "urodynias" ;
+lin urogenital_A = mkAMost "urogenital" "urogenitally" ;
+lin urolith_N = mkN "urolith" "uroliths" ;
+lin urologist_N = mkN "urologist" "urologists" ;
+lin urology_N = mkN "urology" "urologies" ;
+lin uropathy_N = mkN "uropathy" "uropathies" ;
+lin uropygium_N = mkN "uropygium" "uropygiums" ;
+lin ursine_A = mkAMost "ursine" "ursinely" ;
+lin ursinia_N = mkN "ursinia" "ursinias" ;
+lin urtication_N = mkN "urtication" "urtications" ;
+lin uruguayan_A = mkAMost "uruguayan" "uruguayanly" ;
+lin uruguayan_N = mkN "uruguayan" "uruguayans" ;
+lin usable_A = mkAMost "usable" "usably" ;
+lin usaf_N = mkN "usaf" "usafs" ;
+lin usage_N = mkN "usage" "usages" ;
+lin usance_N = mkN "usance" "usances" ;
+lin use_N = mkN "use" "uses" ;
+lin use_V = mkV "use" "used" "used" ;
+lin useable_A = mkAMost "useable" "useably" ;
+lin useful_A = mkAMost "useful" "usefully" ;
+lin usefulness_N = mkN "usefulness" "usefulnesses" ;
+lin useless_A = mkAMost "useless" "uselessly" ;
+lin uselessness_N = mkN "uselessness" "uselessnesses" ;
+lin user_N = mkN "user" "users" ;
+lin usher_N = mkN "usher" "ushers" ;
+lin usher_V = mkV "usher" "ushered" "ushered" ;
+lin usherette_N = mkN "usherette" "usherettes" ;
+lin usn_N = mkN "usn" "usns" ;
+lin uss_N = mkN "uss" "usses" ;
+lin ussr_N = mkN "ussr" "ussrs" ;
+lin usual_A = mkAMost "usual" "usually" ;
+lin usualness_N = mkN "usualness" "usualnesses" ;
+lin usufruct_N = mkN "usufruct" "usufructs" ;
+lin usufructuary_A = mkAMost "usufructuary" "usufructuarily" ;
+lin usufructuary_N = mkN "usufructuary" "usufructuaries" ;
+lin usurer_N = mkN "usurer" "usurers" ;
+lin usurious_A = mkAMost "usurious" "usuriously" ;
+lin usurp_V = mkV "usurp" "usurped" "usurped" ;
+lin usurpation_N = mkN "usurpation" "usurpations" ;
+lin usurper_N = mkN "usurper" "usurpers" ;
+lin usury_N = mkN "usury" "usuries" ;
+lin utahraptor_N = mkN "utahraptor" "utahraptors" ;
+lin utensil_N = mkN "utensil" "utensils" ;
+lin uterine_A = mkAMost "uterine" "uterinely" ;
+lin uterus_N = mkN "uterus" "uteruses" ;
+lin utilitarian_A = mkAMost "utilitarian" "utilitarianly" ;
+lin utilitarian_N = mkN "utilitarian" "utilitarians" ;
+lin utilitarianism_N = mkN "utilitarianism" "utilitarianisms" ;
+lin utility_N = mkN "utility" "utilities" ;
+lin utilizable_A = mkAMost "utilizable" "utilizably" ;
+lin utilization_N = mkN "utilization" "utilizations" ;
+lin utilize_V = mkV "utilize" "utilized" "utilized" ;
+lin utilizer_N = mkN "utilizer" "utilizers" ;
+lin utmost_A = mkAMost "utmost" "utmostly" ;
+lin utmost_N = mkN "utmost" "utmosts" ;
+lin utopia_N = mkN "utopia" "utopias" ;
+lin utopian_A = mkAMost "utopian" "utopianly" ;
+lin utricle_N = mkN "utricle" "utricles" ;
+lin utter_A = mkAMost "utter" "utterly" ;
+lin utter_V = mkV "utter" "uttered" "uttered" ;
+lin utterance_N = mkN "utterance" "utterances" ;
+lin utterer_N = mkN "utterer" "utterers" ;
+lin uttermost_A = mkAMost "uttermost" "uttermostly" ;
+lin uttermost_N = mkN "uttermost" "uttermosts" ;
+lin uvea_N = mkN "uvea" "uveas" ;
+lin uveal_A = mkAMost "uveal" "uveally" ;
+lin uveitis_N = mkN "uveitis" "uveitises" ;
+lin uvula_N = mkN "uvula" "uvulas" ;
+lin uvular_A = mkAMost "uvular" "uvularly" ;
+lin uvulitis_N = mkN "uvulitis" "uvulitises" ;
+lin uxor_N = mkN "uxor" "uxors" ;
+lin uxoricide_N = mkN "uxoricide" "uxoricides" ;
+lin uxorious_A = mkAMost "uxorious" "uxoriously" ;
+lin uxoriousness_N = mkN "uxoriousness" "uxoriousnesses" ;
+lin v_and_a_N = mkN "v and a" "v and as" ;
+lin vac_N = mkN "vac" "vacs" ;
+lin vacancy_N = mkN "vacancy" "vacancies" ;
+lin vacant_A = mkAMost "vacant" "vacantly" ;
+lin vacate_V = mkV "vacate" "vacated" "vacated" ;
+lin vacation_N = mkN "vacation" "vacations" ;
+lin vacation_V = mkV "vacation" "vacationed" "vacationed" ;
+lin vacationer_N = mkN "vacationer" "vacationers" ;
+lin vacationing_N = mkN "vacationing" "vacationings" ;
+lin vacationist_N = mkN "vacationist" "vacationists" ;
+lin vaccinate_V = mkV "vaccinate" "vaccinated" "vaccinated" ;
+lin vaccination_N = mkN "vaccination" "vaccinations" ;
+lin vaccine_N = mkN "vaccine" "vaccines" ;
+lin vaccinee_N = mkN "vaccinee" "vaccinees" ;
+lin vaccinia_N = mkN "vaccinia" "vaccinias" ;
+lin vacillant_A = mkAMost "vacillant" "vacillantly" ;
+lin vacillate_V = mkV "vacillate" "vacillated" "vacillated" ;
+lin vacillation_N = mkN "vacillation" "vacillations" ;
+lin vacuity_N = mkN "vacuity" "vacuities" ;
+lin vacuolate_A = mkAMost "vacuolate" "vacuolately" ;
+lin vacuole_N = mkN "vacuole" "vacuoles" ;
+lin vacuolization_N = mkN "vacuolization" "vacuolizations" ;
+lin vacuous_A = mkAMost "vacuous" "vacuously" ;
+lin vacuousness_N = mkN "vacuousness" "vacuousnesses" ;
+lin vacuum_N = mkN "vacuum" "vacuums" ;
+lin vacuum_V = mkV "vacuum" "vacuummed" "vacuummed" ;
+lin vade_mecum_N = mkN "vade-mecum" "vade-mecums" ;
+lin vagabond_A = mkAMost "vagabond" "vagabondly" ;
+lin vagabond_N = mkN "vagabond" "vagabonds" ;
+lin vagal_A = mkAMost "vagal" "vagally" ;
+lin vagary_N = mkN "vagary" "vagaries" ;
+lin vagile_A = mkAMost "vagile" "vagilely" ;
+lin vagina_N = mkN "vagina" "vaginas" ;
+lin vaginal_A = mkAMost "vaginal" "vaginally" ;
+lin vaginismus_N = mkN "vaginismus" "vaginismuses" ;
+lin vaginitis_N = mkN "vaginitis" "vaginitises" ;
+lin vagrancy_N = mkN "vagrancy" "vagrancies" ;
+lin vagrant_A = mkAMost "vagrant" "vagrantly" ;
+lin vagrant_N = mkN "vagrant" "vagrants" ;
+lin vague_A = mkA "vague" "vaguer" "vaguest" "vaguely" ;
+lin vagueness_N = mkN "vagueness" "vaguenesses" ;
+lin vagus_N = mkN "vagus" "vaguses" ;
+lin vain_A = mkA "vain" "vainer" "vainest" "vainly" ;
+lin vainglorious_A = mkAMost "vainglorious" "vaingloriously" ;
+lin vainglory_N = mkN "vainglory" "vainglories" ;
+lin vaisya_N = mkN "vaisya" "vaisyas" ;
+lin valance_N = mkN "valance" "valances" ;
+lin valdecoxib_N = mkN "valdecoxib" "valdecoxibs" ;
+lin vale_N = mkN "vale" "vales" ;
+lin valediction_N = mkN "valediction" "valedictions" ;
+lin valedictorian_N = mkN "valedictorian" "valedictorians" ;
+lin valedictory_A = mkAMost "valedictory" "valedictorily" ;
+lin valence_N = mkN "valence" "valences" ;
+lin valency_N = mkN "valency" "valencies" ;
+lin valent_A = mkAMost "valent" "valently" ;
+lin valentine_N = mkN "valentine" "valentines" ;
+lin valerian_N = mkN "valerian" "valerians" ;
+lin valet_N = mkN "valet" "valets" ;
+lin valet_V = mkV "valet" "valeted" "valeted" ;
+lin valetudinarian_A = mkAMost "valetudinarian" "valetudinarianly" ;
+lin valetudinarian_N = mkN "valetudinarian" "valetudinarians" ;
+lin valgus_N = mkN "valgus" "valguses" ;
+lin valiant_A = mkAMost "valiant" "valiantly" ;
+lin valid_A = mkAMost "valid" "validly" ;
+lin validate_V = mkV "validate" "validated" "validated" ;
+lin validation_N = mkN "validation" "validations" ;
+lin validity_N = mkN "validity" "validities" ;
+lin valine_N = mkN "valine" "valines" ;
+lin valise_N = mkN "valise" "valises" ;
+lin valley_N = mkN "valley" "valleys" ;
+lin valorous_A = mkAMost "valorous" "valorously" ;
+lin valour_N = mkN "valour" "valours" ;
+lin valsartan_N = mkN "valsartan" "valsartans" ;
+lin valuable_A = mkAMost "valuable" "valuably" ;
+lin valuable_N = mkN "valuable" "valuables" ;
+lin valuation_N = mkN "valuation" "valuations" ;
+lin value_N = mkN "value" "values" ;
+lin value_V = mkV "value" "valued" "valued" ;
+lin value_added_A = mkAMost "value-added" "value-addedly" ;
+lin valueless_A = mkAMost "valueless" "valuelessly" ;
+lin valuelessness_N = mkN "valuelessness" "valuelessnesses" ;
+lin valuer_N = mkN "valuer" "valuers" ;
+lin valve_N = mkN "valve" "valves" ;
+lin valved_A = mkAMost "valved" "valvedly" ;
+lin valvotomy_N = mkN "valvotomy" "valvotomies" ;
+lin valvular_A = mkAMost "valvular" "valvularly" ;
+lin valvule_N = mkN "valvule" "valvules" ;
+lin valvulitis_N = mkN "valvulitis" "valvulitises" ;
+lin vambrace_N = mkN "vambrace" "vambraces" ;
+lin vamoose_V = mkV "vamoose" "vamoosed" "vamoosed" ;
+lin vamp_N = mkN "vamp" "vamps" ;
+lin vamp_V = mkV "vamp" "vamped" "vamped" ;
+lin vampire_N = mkN "vampire" "vampires" ;
+lin vampirism_N = mkN "vampirism" "vampirisms" ;
+lin van_N = mkN "van" "vans" ;
+lin vanadate_N = mkN "vanadate" "vanadates" ;
+lin vanadinite_N = mkN "vanadinite" "vanadinites" ;
+lin vanadium_N = mkN "vanadium" "vanadiums" ;
+lin vancomycin_N = mkN "vancomycin" "vancomycins" ;
+lin vanda_N = mkN "vanda" "vandas" ;
+lin vandal_N = mkN "vandal" "vandals" ;
+lin vandalism_N = mkN "vandalism" "vandalisms" ;
+lin vane_N = mkN "vane" "vanes" ;
+lin vanguard_N = mkN "vanguard" "vanguards" ;
+lin vanilla_A = mkAMost "vanilla" "vanillaly" ;
+lin vanilla_N = mkN "vanilla" "vanillas" ;
+lin vanillin_N = mkN "vanillin" "vanillins" ;
+lin vanish_V = mkV "vanish" "vanished" "vanished" ;
+lin vanished_A = mkAMost "vanished" "vanishedly" ;
+lin vanisher_N = mkN "vanisher" "vanishers" ;
+lin vanishing_N = mkN "vanishing" "vanishings" ;
+lin vanishingly_Adv = mkAdv "vanishingly" ;
+lin vanity_N = mkN "vanity" "vanities" ;
+lin vanquish_V = mkV "vanquish" "vanquished" "vanquished" ;
+lin vantage_N = mkN "vantage" "vantages" ;
+lin vantage_point_N = mkN "vantage-point" "vantage-points" ;
+lin vapid_A = mkAMost "vapid" "vapidly" ;
+lin vapidity_N = mkN "vapidity" "vapidities" ;
+lin vapidness_N = mkN "vapidness" "vapidnesses" ;
+lin vapor_N = mkN "vapor" "vapors" ;
+lin vaporific_A = mkAMost "vaporific" "vaporificly" ;
+lin vaporization_N = mkN "vaporization" "vaporizations" ;
+lin vaporize_V = mkV "vaporize" "vaporized" "vaporized" ;
+lin vaporizer_N = mkN "vaporizer" "vaporizers" ;
+lin vaporous_A = mkAMost "vaporous" "vaporously" ;
+lin vapour_N = mkN "vapour" "vapours" ;
+lin vapour_bath_N = mkN "vapour-bath" "vapour-baths" ;
+lin vaquero_N = mkN "vaquero" "vaqueroes" ;
+lin vaquita_N = mkN "vaquita" "vaquitas" ;
+lin vara_N = mkN "vara" "varas" ;
+lin vardenafil_N = mkN "vardenafil" "vardenafils" ;
+lin variability_N = mkN "variability" "variabilities" ;
+lin variable_A = mkAMost "variable" "variably" ;
+lin variable_N = mkN "variable" "variables" ;
+lin variableness_N = mkN "variableness" "variablenesses" ;
+lin variance_N = mkN "variance" "variances" ;
+lin variant_A = mkAMost "variant" "variantly" ;
+lin variant_N = mkN "variant" "variants" ;
+lin variation_N = mkN "variation" "variations" ;
+lin varicelliform_A = mkAMost "varicelliform" "varicelliformly" ;
+lin varicocele_N = mkN "varicocele" "varicoceles" ;
+lin varicolored_A = mkAMost "varicolored" "varicoloredly" ;
+lin varicoloured_A = mkAMost "varicoloured" "varicolouredly" ;
+lin varicose_A = mkAMost "varicose" "varicosely" ;
+lin varicosis_N = mkN "varicosis" "varicosises" ;
+lin varicosity_N = mkN "varicosity" "varicosities" ;
+lin variedness_N = mkN "variedness" "variednesses" ;
+lin variegated_A = mkAMost "variegated" "variegatedly" ;
+lin variegation_N = mkN "variegation" "variegations" ;
+lin varietal_N = mkN "varietal" "varietals" ;
+lin variety_N = mkN "variety" "varieties" ;
+lin variform_A = mkAMost "variform" "variformly" ;
+lin variolar_A = mkAMost "variolar" "variolarly" ;
+lin variolation_N = mkN "variolation" "variolations" ;
+lin variometer_N = mkN "variometer" "variometers" ;
+lin variorum_A = mkAMost "variorum" "variorumly" ;
+lin variorum_N = mkN "variorum" "variorums" ;
+lin various_A = mkAMost "various" "variously" ;
+lin varix_N = mkN "varix" "varixes" ;
+lin varlet_N = mkN "varlet" "varlets" ;
+lin varmint_N = mkN "varmint" "varmints" ;
+lin varna_N = mkN "varna" "varnas" ;
+lin varnish_N = mkN "varnish" "varnishes" ;
+lin varnish_V = mkV "varnish" "varnished" "varnished" ;
+lin varnisher_N = mkN "varnisher" "varnishers" ;
+lin varsity_N = mkN "varsity" "varsities" ;
+lin varus_N = mkN "varus" "varuses" ;
+lin vary_V = mkV "vary" "varied" "varied" ;
+lin vascular_A = mkAMost "vascular" "vascularly" ;
+lin vascularity_N = mkN "vascularity" "vascularities" ;
+lin vascularization_N = mkN "vascularization" "vascularizations" ;
+lin vasculitis_N = mkN "vasculitis" "vasculitises" ;
+lin vase_N = mkN "vase" "vases" ;
+lin vasectomy_N = mkN "vasectomy" "vasectomies" ;
+lin vaseline_N = mkN "vaseline" "vaselines" ;
+lin vasoconstriction_N = mkN "vasoconstriction" "vasoconstrictions" ;
+lin vasoconstrictor_N = mkN "vasoconstrictor" "vasoconstrictors" ;
+lin vasodilation_N = mkN "vasodilation" "vasodilations" ;
+lin vasodilator_N = mkN "vasodilator" "vasodilators" ;
+lin vasomotor_A = mkAMost "vasomotor" "vasomotorly" ;
+lin vasopressin_N = mkN "vasopressin" "vasopressins" ;
+lin vasopressor_N = mkN "vasopressor" "vasopressors" ;
+lin vasotomy_N = mkN "vasotomy" "vasotomies" ;
+lin vasovasostomy_N = mkN "vasovasostomy" "vasovasostomies" ;
+lin vasovesiculitis_N = mkN "vasovesiculitis" "vasovesiculitises" ;
+lin vassal_N = mkN "vassal" "vassals" ;
+lin vassalage_N = mkN "vassalage" "vassalages" ;
+lin vast_A = mkAMost "vast" "vastly" ;
+lin vastness_N = mkN "vastness" "vastnesses" ;
+lin vat_N = mkN "vat" "vats" ;
+lin vatican_N = mkN "vatican" "vaticans" ;
+lin vaudeville_N = mkN "vaudeville" "vaudevilles" ;
+lin vaudevillian_N = mkN "vaudevillian" "vaudevillians" ;
+lin vault_N = mkN "vault" "vaults" ;
+lin vault_V = mkV "vault" "vaulted" "vaulted" ;
+lin vaulter_N = mkN "vaulter" "vaulters" ;
+lin vaulting_N = mkN "vaulting" "vaultings" ;
+lin vaulting_horse_N = mkN "vaulting-horse" "vaulting-horses" ;
+lin vaunt_N = mkN "vaunt" "vaunts" ;
+lin vaunt_V = mkV "vaunt" "vaunted" "vaunted" ;
+lin vaunter_N = mkN "vaunter" "vaunters" ;
+lin vauntingly_Adv = mkAdv "vauntingly" ;
+lin vc_N = mkN "vc" "vcs" ;
+lin vd_N = mkN "vd" "vds" ;
+lin veal_N = mkN "veal" "veals" ;
+lin vector_N = mkN "vector" "vectors" ;
+lin vedalia_N = mkN "vedalia" "vedalias" ;
+lin veer_V = mkV "veer" "veered" "veered" ;
+lin veery_N = mkN "veery" "veeries" ;
+lin veg_V = mkV "veg" "vegged" "vegged" ;
+lin vegan_N = mkN "vegan" "vegans" ;
+lin vegetable_A = mkAMost "vegetable" "vegetably" ;
+lin vegetable_N = mkN "vegetable" "vegetables" ;
+lin vegetal_A = mkAMost "vegetal" "vegetally" ;
+lin vegetarian_N = mkN "vegetarian" "vegetarians" ;
+lin vegetarianism_N = mkN "vegetarianism" "vegetarianisms" ;
+lin vegetate_V = mkV "vegetate" "vegetated" "vegetated" ;
+lin vegetation_N = mkN "vegetation" "vegetations" ;
+lin vegetative_A = mkAMost "vegetative" "vegetatively" ;
+lin vehemence_N = mkN "vehemence" "vehemences" ;
+lin vehement_A = mkAMost "vehement" "vehemently" ;
+lin vehicle_N = mkN "vehicle" "vehicles" ;
+lin vehicular_A = mkAMost "vehicular" "vehicularly" ;
+lin veil_N = mkN "veil" "veils" ;
+lin veil_V = mkV "veil" "veiled" "veiled" ;
+lin veiling_N = mkN "veiling" "veilings" ;
+lin vein_N = mkN "vein" "veins" ;
+lin veinal_A = mkAMost "veinal" "veinally" ;
+lin veined_A = mkAMost "veined" "veinedly" ;
+lin velar_A = mkAMost "velar" "velarly" ;
+lin velar_N = mkN "velar" "velars" ;
+lin veld_N = mkN "veld" "velds" ;
+lin velleity_N = mkN "velleity" "velleities" ;
+lin vellum_N = mkN "vellum" "vellums" ;
+lin velocipede_N = mkN "velocipede" "velocipedes" ;
+lin velociraptor_N = mkN "velociraptor" "velociraptors" ;
+lin velocity_N = mkN "velocity" "velocities" ;
+lin velodrome_N = mkN "velodrome" "velodromes" ;
+lin velour_N = mkN "velour" "velours" ;
+lin veloute_N = mkN "veloute" "veloutes" ;
+lin velvet_A = mkAMost "velvet" "velvetly" ;
+lin velvet_N = mkN "velvet" "velvets" ;
+lin velveteen_N = mkN "velveteen" "velveteens" ;
+lin velvetleaf_N = mkN "velvetleaf" "velvetleafs" ;
+lin velvety_A = mkAMost "velvety" "velvetily" ;
+lin venal_A = mkAMost "venal" "venally" ;
+lin venality_N = mkN "venality" "venalities" ;
+lin venation_N = mkN "venation" "venations" ;
+lin vend_V = mkV "vend" "vended" "vended" ;
+lin vendee_N = mkN "vendee" "vendees" ;
+lin vender_N = mkN "vender" "venders" ;
+lin vendetta_N = mkN "vendetta" "vendettas" ;
+lin vending_N = mkN "vending" "vendings" ;
+lin vendor_N = mkN "vendor" "vendors" ;
+lin veneer_N = mkN "veneer" "veneers" ;
+lin veneer_V = mkV "veneer" "veneered" "veneered" ;
+lin veneering_N = mkN "veneering" "veneerings" ;
+lin venerability_N = mkN "venerability" "venerabilities" ;
+lin venerable_A = mkAMost "venerable" "venerably" ;
+lin venerate_V = mkV "venerate" "venerated" "venerated" ;
+lin veneration_N = mkN "veneration" "venerations" ;
+lin venerator_N = mkN "venerator" "venerators" ;
+lin venereal_A = mkAMost "venereal" "venereally" ;
+lin venereologist_N = mkN "venereologist" "venereologists" ;
+lin venereology_N = mkN "venereology" "venereologies" ;
+lin venesection_N = mkN "venesection" "venesections" ;
+lin venetian_A = mkAMost "venetian" "venetianly" ;
+lin venezuelan_A = mkAMost "venezuelan" "venezuelanly" ;
+lin venezuelan_N = mkN "venezuelan" "venezuelans" ;
+lin vengeance_N = mkN "vengeance" "vengeances" ;
+lin vengeful_A = mkAMost "vengeful" "vengefully" ;
+lin venial_A = mkAMost "venial" "venially" ;
+lin venipuncture_N = mkN "venipuncture" "venipunctures" ;
+lin venison_N = mkN "venison" "venisons" ;
+lin venogram_N = mkN "venogram" "venograms" ;
+lin venography_N = mkN "venography" "venographies" ;
+lin venom_N = mkN "venom" "venoms" ;
+lin venomed_A = mkAMost "venomed" "venomedly" ;
+lin venomous_A = mkAMost "venomous" "venomously" ;
+lin venous_A = mkAMost "venous" "venously" ;
+lin vent_N = mkN "vent" "vents" ;
+lin vent_V = mkV "vent" "vented" "vented" ;
+lin vent_hole_N = mkN "vent-hole" "vent-holes" ;
+lin venter_N = mkN "venter" "venters" ;
+lin ventilate_V = mkV "ventilate" "ventilated" "ventilated" ;
+lin ventilation_N = mkN "ventilation" "ventilations" ;
+lin ventilator_N = mkN "ventilator" "ventilators" ;
+lin ventilatory_A = mkAMost "ventilatory" "ventilatorily" ;
+lin ventral_A = mkAMost "ventral" "ventrally" ;
+lin ventricle_N = mkN "ventricle" "ventricles" ;
+lin ventricose_A = mkAMost "ventricose" "ventricosely" ;
+lin ventricular_A = mkAMost "ventricular" "ventricularly" ;
+lin ventriloquism_N = mkN "ventriloquism" "ventriloquisms" ;
+lin ventriloquist_N = mkN "ventriloquist" "ventriloquists" ;
+lin venture_N = mkN "venture" "ventures" ;
+lin venture_V = mkV "venture" "ventured" "ventured" ;
+lin venturer_N = mkN "venturer" "venturers" ;
+lin venturesome_A = mkAMost "venturesome" "venturesomely" ;
+lin venturi_N = mkN "venturi" "venturis" ;
+lin venturous_A = mkAMost "venturous" "venturously" ;
+lin venue_N = mkN "venue" "venues" ;
+lin venule_N = mkN "venule" "venules" ;
+lin veracious_A = mkAMost "veracious" "veraciously" ;
+lin veracity_N = mkN "veracity" "veracities" ;
+lin veranda_N = mkN "veranda" "verandas" ;
+lin verandah_N = mkN "verandah" "verandahs" ;
+lin verapamil_N = mkN "verapamil" "verapamils" ;
+lin verb_N = mkN "verb" "verbs" ;
+lin verbal_A = mkAMost "verbal" "verbally" ;
+lin verbalization_N = mkN "verbalization" "verbalizations" ;
+lin verbalize_V = mkV "verbalize" "verbalized" "verbalized" ;
+lin verbatim_A = mkAMost "verbatim" "verbatimly" ;
+lin verbatim_Adv = mkAdv "verbatim" ;
+lin verbena_N = mkN "verbena" "verbenas" ;
+lin verbiage_N = mkN "verbiage" "verbiages" ;
+lin verbolatry_N = mkN "verbolatry" "verbolatries" ;
+lin verbose_A = mkAMost "verbose" "verbosely" ;
+lin verboseness_N = mkN "verboseness" "verbosenesses" ;
+lin verbosity_N = mkN "verbosity" "verbosities" ;
+lin verdancy_N = mkN "verdancy" "verdancies" ;
+lin verdant_A = mkAMost "verdant" "verdantly" ;
+lin verdict_N = mkN "verdict" "verdicts" ;
+lin verdigris_N = mkN "verdigris" "verdigrises" ;
+lin verdin_N = mkN "verdin" "verdins" ;
+lin verdure_N = mkN "verdure" "verdures" ;
+lin verey_A = mkAMost "verey" "vereily" ;
+lin verge_N = mkN "verge" "verges" ;
+lin verge_V = mkV "verge" "verged" "verged" ;
+lin verger_N = mkN "verger" "vergers" ;
+lin veridical_A = mkAMost "veridical" "veridically" ;
+lin verifiable_A = mkAMost "verifiable" "verifiably" ;
+lin verification_N = mkN "verification" "verifications" ;
+lin verify_V = mkV "verify" "verified" "verified" ;
+lin verily_Adv = mkAdv "verily" ;
+lin verisimilar_A = mkAMost "verisimilar" "verisimilarly" ;
+lin verisimilitude_N = mkN "verisimilitude" "verisimilitudes" ;
+lin veritable_A = mkAMost "veritable" "veritably" ;
+lin verity_N = mkN "verity" "verities" ;
+lin vermicelli_N = mkN "vermicelli" "vermicellis" ;
+lin vermicide_N = mkN "vermicide" "vermicides" ;
+lin vermicular_A = mkAMost "vermicular" "vermicularly" ;
+lin vermiculate_A = mkAMost "vermiculate" "vermiculately" ;
+lin vermiculation_N = mkN "vermiculation" "vermiculations" ;
+lin vermiculite_N = mkN "vermiculite" "vermiculites" ;
+lin vermiform_A = mkAMost "vermiform" "vermiformly" ;
+lin vermifuge_N = mkN "vermifuge" "vermifuges" ;
+lin vermilion_A = mkAMost "vermilion" "vermilionly" ;
+lin vermilion_N = mkN "vermilion" "vermilions" ;
+lin vermin_N = mkN "vermin" "vermins" ;
+lin verminous_A = mkAMost "verminous" "verminously" ;
+lin vermis_N = mkN "vermis" "vermises" ;
+lin vermouth_N = mkN "vermouth" "vermouths" ;
+lin vernacular_A = mkAMost "vernacular" "vernacularly" ;
+lin vernacular_N = mkN "vernacular" "vernaculars" ;
+lin vernal_A = mkAMost "vernal" "vernally" ;
+lin vernation_N = mkN "vernation" "vernations" ;
+lin vernix_N = mkN "vernix" "vernixes" ;
+lin veronica_N = mkN "veronica" "veronicas" ;
+lin verruca_N = mkN "verruca" "verrucas" ;
+lin verrucose_A = mkAMost "verrucose" "verrucosely" ;
+lin versatile_A = mkAMost "versatile" "versatilely" ;
+lin versatility_N = mkN "versatility" "versatilities" ;
+lin verse_N = mkN "verse" "verses" ;
+lin versed_A = mkAMost "versed" "versedly" ;
+lin versicle_N = mkN "versicle" "versicles" ;
+lin versification_N = mkN "versification" "versifications" ;
+lin versifier_N = mkN "versifier" "versifiers" ;
+lin versify_V = mkV "versify" "versified" "versified" ;
+lin version_N = mkN "version" "versions" ;
+lin verso_N = mkN "verso" "versos" ;
+lin verst_N = mkN "verst" "versts" ;
+lin versus_Prep = mkPrep "versus" ;
+lin vertebra_N = mkN "vertebra" "vertebrae" ;
+lin vertebral_A = mkAMost "vertebral" "vertebrally" ;
+lin vertebrate_A = mkAMost "vertebrate" "vertebrately" ;
+lin vertebrate_N = mkN "vertebrate" "vertebrates" ;
+lin vertex_N = mkN "vertex" "vertices" ;
+lin vertical_A = mkAMost "vertical" "vertically" ;
+lin vertical_N = mkN "vertical" "verticals" ;
+lin verticality_N = mkN "verticality" "verticalities" ;
+lin verticil_N = mkN "verticil" "verticils" ;
+lin verticillate_A = mkAMost "verticillate" "verticillately" ;
+lin verticilliosis_N = mkN "verticilliosis" "verticilliosises" ;
+lin verticillium_N = mkN "verticillium" "verticilliums" ;
+lin vertiginous_A = mkAMost "vertiginous" "vertiginously" ;
+lin vertigo_N = mkN "vertigo" "vertigoes" ;
+lin verve_N = mkN "verve" "verves" ;
+lin vervet_N = mkN "vervet" "vervets" ;
+lin vesical_A = mkAMost "vesical" "vesically" ;
+lin vesicant_N = mkN "vesicant" "vesicants" ;
+lin vesicatory_A = mkAMost "vesicatory" "vesicatorily" ;
+lin vesicle_N = mkN "vesicle" "vesicles" ;
+lin vesicular_A = mkAMost "vesicular" "vesicularly" ;
+lin vesiculation_N = mkN "vesiculation" "vesiculations" ;
+lin vesiculitis_N = mkN "vesiculitis" "vesiculitises" ;
+lin vesiculovirus_N = mkN "vesiculovirus" "vesiculoviruses" ;
+lin vesper_N = mkN "vesper" "vespers" ;
+lin vespers_N = mkN "vespers" "vesperses" ;
+lin vespid_N = mkN "vespid" "vespids" ;
+lin vessel_N = mkN "vessel" "vessels" ;
+lin vest_N = mkN "vest" "vests" ;
+lin vest_V = mkV "vest" "vested" "vested" ;
+lin vestal_A = mkAMost "vestal" "vestally" ;
+lin vestal_N = mkN "vestal" "vestals" ;
+lin vestiary_A = mkAMost "vestiary" "vestiarily" ;
+lin vestibular_A = mkAMost "vestibular" "vestibularly" ;
+lin vestibule_N = mkN "vestibule" "vestibules" ;
+lin vestige_N = mkN "vestige" "vestiges" ;
+lin vestigial_A = mkAMost "vestigial" "vestigially" ;
+lin vestiture_N = mkN "vestiture" "vestitures" ;
+lin vestment_N = mkN "vestment" "vestments" ;
+lin vestmental_A = mkAMost "vestmental" "vestmentally" ;
+lin vestmented_A = mkAMost "vestmented" "vestmentedly" ;
+lin vestry_N = mkN "vestry" "vestries" ;
+lin vestryman_N = mkN "vestryman" "vestrymen" ;
+lin vestrywoman_N = mkN "vestrywoman" "vestrywomen" ;
+lin vesture_N = mkN "vesture" "vestures" ;
+lin vesture_V = mkV "vesture" "vestured" "vestured" ;
+lin vesuvianite_N = mkN "vesuvianite" "vesuvianites" ;
+lin vet_N = mkN "vet" "vets" ;
+lin vet_V = mkV "vet" "vetted" "vetted" ;
+lin vetch_N = mkN "vetch" "vetches" ;
+lin vetchling_N = mkN "vetchling" "vetchlings" ;
+lin veteran_N = mkN "veteran" "veterans" ;
+lin veterinarian_N = mkN "veterinarian" "veterinarians" ;
+lin veterinary_A = mkAMost "veterinary" "veterinarily" ;
+lin veto_N = mkN "veto" "vetoes" ;
+lin veto_V = mkV "veto" "vetoed" "vetoed" ;
+lin vex_V = mkV "vex" "vexed" "vexed" ;
+lin vexation_N = mkN "vexation" "vexations" ;
+lin vexatious_A = mkAMost "vexatious" "vexatiously" ;
+lin via_Prep = mkPrep "via" ;
+lin via_media_N = mkN "via media" "via mediae" ;
+lin viability_N = mkN "viability" "viabilities" ;
+lin viable_A = mkAMost "viable" "viably" ;
+lin viaduct_N = mkN "viaduct" "viaducts" ;
+lin vial_N = mkN "vial" "vials" ;
+lin viand_N = mkN "viand" "viands" ;
+lin viatical_A = mkAMost "viatical" "viatically" ;
+lin viatication_N = mkN "viatication" "viatications" ;
+lin vibist_N = mkN "vibist" "vibists" ;
+lin vibrant_A = mkAMost "vibrant" "vibrantly" ;
+lin vibraphone_N = mkN "vibraphone" "vibraphones" ;
+lin vibrate_V = mkV "vibrate" "vibrated" "vibrated" ;
+lin vibration_N = mkN "vibration" "vibrations" ;
+lin vibrational_A = mkAMost "vibrational" "vibrationally" ;
+lin vibrato_N = mkN "vibrato" "vibratos" ;
+lin vibrator_N = mkN "vibrator" "vibrators" ;
+lin vibratory_A = mkAMost "vibratory" "vibratorily" ;
+lin vibrio_N = mkN "vibrio" "vibrios" ;
+lin vibrionic_A = mkAMost "vibrionic" "vibrionicly" ;
+lin vicar_N = mkN "vicar" "vicars" ;
+lin vicarage_N = mkN "vicarage" "vicarages" ;
+lin vicarial_A = mkAMost "vicarial" "vicarially" ;
+lin vicariate_N = mkN "vicariate" "vicariates" ;
+lin vicarious_A = mkAMost "vicarious" "vicariously" ;
+lin vice_N = mkN "vice" "vices" ;
+lin vice_Prep = mkPrep "vice" ;
+lin vice_versa_Adv = mkAdv "vice versa" ;
+lin vicegerent_N = mkN "vicegerent" "vicegerents" ;
+lin vicenary_A = mkAMost "vicenary" "vicenarily" ;
+lin vicennial_A = mkAMost "vicennial" "vicennially" ;
+lin viceregal_A = mkAMost "viceregal" "viceregally" ;
+lin vicereine_N = mkN "vicereine" "vicereines" ;
+lin viceroy_N = mkN "viceroy" "viceroys" ;
+lin viceroyalty_N = mkN "viceroyalty" "viceroyalties" ;
+lin viceroyship_N = mkN "viceroyship" "viceroyships" ;
+lin vichyssoise_N = mkN "vichyssoise" "vichyssoises" ;
+lin vicinal_A = mkAMost "vicinal" "vicinally" ;
+lin vicinity_N = mkN "vicinity" "vicinities" ;
+lin vicious_A = mkAMost "vicious" "viciously" ;
+lin viciousness_N = mkN "viciousness" "viciousnesses" ;
+lin vicissitude_N = mkN "vicissitude" "vicissitudes" ;
+lin victim_N = mkN "victim" "victims" ;
+lin victimization_N = mkN "victimization" "victimizations" ;
+lin victimize_V = mkV "victimize" "victimized" "victimized" ;
+lin victimizer_N = mkN "victimizer" "victimizers" ;
+lin victor_N = mkN "victor" "victors" ;
+lin victoria_N = mkN "victoria" "victorias" ;
+lin victorian_A = mkAMost "victorian" "victorianly" ;
+lin victorian_N = mkN "victorian" "victorians" ;
+lin victoriana_N = mkN "victoriana" "victorianas" ;
+lin victorious_A = mkAMost "victorious" "victoriously" ;
+lin victory_N = mkN "victory" "victories" ;
+lin victual_N = mkN "victual" "victuals" ;
+lin victual_V = mkV "victual" "victualled" "victualled" ;
+lin victualer_N = mkN "victualer" "victualers" ;
+lin victualler_N = mkN "victualler" "victuallers" ;
+lin vicuña_N = mkN "vicuña" "vicuñas" ;
+lin videlicet_Adv = mkAdv "videlicet" ;
+lin video_N = mkN "video" "videos" ;
+lin videocassette_N = mkN "videocassette" "videocassettes" ;
+lin videodisk_N = mkN "videodisk" "videodisks" ;
+lin videotape_N = mkN "videotape" "videotapes" ;
+lin videotape_V = mkV "videotape" "videotaped" "videotaped" ;
+lin vie_V = mkV "vie" "IRREG" "IRREG" ;
+lin view_N = mkN "view" "views" ;
+lin view_V = mkV "view" "viewed" "viewed" ;
+lin viewable_A = mkAMost "viewable" "viewably" ;
+lin viewer_N = mkN "viewer" "viewers" ;
+lin viewfinder_N = mkN "viewfinder" "viewfinders" ;
+lin viewgraph_N = mkN "viewgraph" "viewgraphs" ;
+lin viewless_A = mkAMost "viewless" "viewlessly" ;
+lin viewpoint_N = mkN "viewpoint" "viewpoints" ;
+lin vigesimal_A = mkAMost "vigesimal" "vigesimally" ;
+lin vigil_N = mkN "vigil" "vigils" ;
+lin vigilance_N = mkN "vigilance" "vigilances" ;
+lin vigilant_A = mkAMost "vigilant" "vigilantly" ;
+lin vigilante_N = mkN "vigilante" "vigilantes" ;
+lin vigilantism_N = mkN "vigilantism" "vigilantisms" ;
+lin vignette_N = mkN "vignette" "vignettes" ;
+lin vigor_N = mkN "vigor" "vigors" ;
+lin vigorous_A = mkAMost "vigorous" "vigorously" ;
+lin vigour_N = mkN "vigour" "vigours" ;
+lin viking_N = mkN "viking" "vikings" ;
+lin vile_A = mkA "vile" "viler" "vilest" "vilely" ;
+lin vileness_N = mkN "vileness" "vilenesses" ;
+lin vilification_N = mkN "vilification" "vilifications" ;
+lin vilify_V = mkV "vilify" "vilified" "vilified" ;
+lin villa_N = mkN "villa" "villas" ;
+lin village_N = mkN "village" "villages" ;
+lin villager_N = mkN "villager" "villagers" ;
+lin villain_N = mkN "villain" "villains" ;
+lin villainess_N = mkN "villainess" "villainesss" ;
+lin villainous_A = mkAMost "villainous" "villainously" ;
+lin villainy_N = mkN "villainy" "villainies" ;
+lin villein_N = mkN "villein" "villeins" ;
+lin villeinage_N = mkN "villeinage" "villeinages" ;
+lin villus_N = mkN "villus" "villuses" ;
+lin vim_N = mkN "vim" "vims" ;
+lin vinaceous_A = mkAMost "vinaceous" "vinaceously" ;
+lin vinaigrette_N = mkN "vinaigrette" "vinaigrettes" ;
+lin vinblastine_N = mkN "vinblastine" "vinblastines" ;
+lin vincristine_N = mkN "vincristine" "vincristines" ;
+lin vindicate_V = mkV "vindicate" "vindicated" "vindicated" ;
+lin vindication_N = mkN "vindication" "vindications" ;
+lin vindictive_A = mkAMost "vindictive" "vindictively" ;
+lin vindictiveness_N = mkN "vindictiveness" "vindictivenesses" ;
+lin vine_N = mkN "vine" "vines" ;
+lin vinegar_N = mkN "vinegar" "vinegars" ;
+lin vinegariness_N = mkN "vinegariness" "vinegarinesses" ;
+lin vinegarroon_N = mkN "vinegarroon" "vinegarroons" ;
+lin vinegary_A = mkAMost "vinegary" "vinegarily" ;
+lin vinery_N = mkN "vinery" "vineries" ;
+lin vineyard_N = mkN "vineyard" "vineyards" ;
+lin vinifera_N = mkN "vinifera" "viniferas" ;
+lin vinification_N = mkN "vinification" "vinifications" ;
+lin vino_N = mkN "vino" "vinoes" ;
+lin vinous_A = mkAMost "vinous" "vinously" ;
+lin vintage_N = mkN "vintage" "vintages" ;
+lin vintager_N = mkN "vintager" "vintagers" ;
+lin vintner_N = mkN "vintner" "vintners" ;
+lin vinyl_N = mkN "vinyl" "vinyls" ;
+lin viol_N = mkN "viol" "viols" ;
+lin viola_N = mkN "viola" "violas" ;
+lin violable_A = mkAMost "violable" "violably" ;
+lin violate_V = mkV "violate" "violated" "violated" ;
+lin violation_N = mkN "violation" "violations" ;
+lin violator_N = mkN "violator" "violators" ;
+lin violence_N = mkN "violence" "violences" ;
+lin violent_A = mkAMost "violent" "violently" ;
+lin violet_N = mkN "violet" "violets" ;
+lin violin_N = mkN "violin" "violins" ;
+lin violinist_N = mkN "violinist" "violinists" ;
+lin violist_N = mkN "violist" "violists" ;
+lin viomycin_N = mkN "viomycin" "viomycins" ;
+lin vip_N = mkN "vip" "vips" ;
+lin viper_N = mkN "viper" "vipers" ;
+lin virago_N = mkN "virago" "viragos" ;
+lin viral_A = mkAMost "viral" "virally" ;
+lin viremia_N = mkN "viremia" "viremias" ;
+lin vireo_N = mkN "vireo" "vireoes" ;
+lin virga_N = mkN "virga" "virgas" ;
+lin virgin_A = mkAMost "virgin" "virginly" ;
+lin virgin_N = mkN "virgin" "virgins" ;
+lin virginal_A = mkAMost "virginal" "virginally" ;
+lin virginal_N = mkN "virginal" "virginals" ;
+lin virginia_N = mkN "virginia" "virginias" ;
+lin virginity_N = mkN "virginity" "virginities" ;
+lin virgule_N = mkN "virgule" "virgules" ;
+lin viricidal_A = mkAMost "viricidal" "viricidally" ;
+lin viricide_N = mkN "viricide" "viricides" ;
+lin virile_A = mkAMost "virile" "virilely" ;
+lin virilism_N = mkN "virilism" "virilisms" ;
+lin virility_N = mkN "virility" "virilities" ;
+lin virino_N = mkN "virino" "virinoes" ;
+lin virion_N = mkN "virion" "virions" ;
+lin viroid_N = mkN "viroid" "viroids" ;
+lin virological_A = mkAMost "virological" "virologically" ;
+lin virologist_N = mkN "virologist" "virologists" ;
+lin virology_N = mkN "virology" "virologies" ;
+lin virtu_N = mkN "virtu" "virtus" ;
+lin virtual_A = mkAMost "virtual" "virtually" ;
+lin virtue_N = mkN "virtue" "virtues" ;
+lin virtuosity_N = mkN "virtuosity" "virtuosities" ;
+lin virtuoso_N = mkN "virtuoso" "virtuosos" ;
+lin virtuous_A = mkAMost "virtuous" "virtuously" ;
+lin virulence_N = mkN "virulence" "virulences" ;
+lin virulent_A = mkAMost "virulent" "virulently" ;
+lin virus_N = mkN "virus" "viruses" ;
+lin vis_a_vis_Prep = mkPrep "vis-a-vis" ;
+lin vis_à_vis_Adv = mkAdv "vis-à-vis" ;
+lin vis_à_vis_Prep = mkPrep "vis-à-vis" ;
+lin visa_N = mkN "visa" "visas" ;
+lin visa_V = mkV "visa" "visaed" "visaed" ;
+lin visage_N = mkN "visage" "visages" ;
+lin visaged_A = mkAMost "visaged" "visagedly" ;
+lin viscacha_N = mkN "viscacha" "viscachas" ;
+lin viscera_N = mkN "viscera" "visceras" ;
+lin visceral_A = mkAMost "visceral" "viscerally" ;
+lin viscid_A = mkAMost "viscid" "viscidly" ;
+lin viscoelastic_A = mkAMost "viscoelastic" "viscoelasticly" ;
+lin viscometer_N = mkN "viscometer" "viscometers" ;
+lin viscometric_A = mkAMost "viscometric" "viscometricly" ;
+lin viscometry_N = mkN "viscometry" "viscometries" ;
+lin viscosity_N = mkN "viscosity" "viscosities" ;
+lin viscount_N = mkN "viscount" "viscounts" ;
+lin viscountcy_N = mkN "viscountcy" "viscountcies" ;
+lin viscountess_N = mkN "viscountess" "viscountesses" ;
+lin viscounty_N = mkN "viscounty" "viscounties" ;
+lin viscous_A = mkAMost "viscous" "viscously" ;
+lin vise_N = mkN "vise" "vises" ;
+lin viselike_A = mkAMost "viselike" "viselikely" ;
+lin visibility_N = mkN "visibility" "visibilities" ;
+lin visible_A = mkAMost "visible" "visibly" ;
+lin vision_N = mkN "vision" "visions" ;
+lin visionary_A = mkAMost "visionary" "visionarily" ;
+lin visionary_N = mkN "visionary" "visionaries" ;
+lin visit_N = mkN "visit" "visits" ;
+lin visit_V = mkV "visit" "visited" "visited" ;
+lin visitant_N = mkN "visitant" "visitants" ;
+lin visitation_N = mkN "visitation" "visitations" ;
+lin visiting_N = mkN "visiting" "visitings" ;
+lin visitor_N = mkN "visitor" "visitors" ;
+lin visor_N = mkN "visor" "visors" ;
+lin visored_A = mkAMost "visored" "visoredly" ;
+lin vista_N = mkN "vista" "vistas" ;
+lin visual_A = mkAMost "visual" "visually" ;
+lin visualization_N = mkN "visualization" "visualizations" ;
+lin visualize_V = mkV "visualize" "visualized" "visualized" ;
+lin visualizer_N = mkN "visualizer" "visualizers" ;
+lin vital_A = mkAMost "vital" "vitally" ;
+lin vitalism_N = mkN "vitalism" "vitalisms" ;
+lin vitalist_N = mkN "vitalist" "vitalists" ;
+lin vitality_N = mkN "vitality" "vitalities" ;
+lin vitalization_N = mkN "vitalization" "vitalizations" ;
+lin vitalize_V = mkV "vitalize" "vitalized" "vitalized" ;
+lin vitalness_N = mkN "vitalness" "vitalnesses" ;
+lin vitamin_N = mkN "vitamin" "vitamins" ;
+lin vitiate_V = mkV "vitiate" "vitiated" "vitiated" ;
+lin vitiation_N = mkN "vitiation" "vitiations" ;
+lin viticulture_N = mkN "viticulture" "viticultures" ;
+lin viticulturist_N = mkN "viticulturist" "viticulturists" ;
+lin vitiliginous_A = mkAMost "vitiliginous" "vitiliginously" ;
+lin vitiligo_N = mkN "vitiligo" "vitiligoes" ;
+lin vitrectomy_N = mkN "vitrectomy" "vitrectomies" ;
+lin vitreous_A = mkAMost "vitreous" "vitreously" ;
+lin vitrification_N = mkN "vitrification" "vitrifications" ;
+lin vitrify_V = mkV "vitrify" "vitrified" "vitrified" ;
+lin vitriol_N = mkN "vitriol" "vitriols" ;
+lin vitriolic_A = mkAMost "vitriolic" "vitriolicly" ;
+lin vituperate_V = mkV "vituperate" "vituperated" "vituperated" ;
+lin vituperation_N = mkN "vituperation" "vituperations" ;
+lin vituperative_A = mkAMost "vituperative" "vituperatively" ;
+lin viva_N = mkN "viva" "vivas" ;
+lin viva_voce_A = mkAMost "viva voce" "viva vocely" ;
+lin viva_voce_Adv = mkAdv "viva voce" ;
+lin viva_voce_N = mkN "viva voce" "viva voces" ;
+lin vivace_A = mkAMost "vivace" "vivacely" ;
+lin vivace_Adv = mkAdv "vivace" ;
+lin vivacious_A = mkAMost "vivacious" "vivaciously" ;
+lin vivacity_N = mkN "vivacity" "vivacities" ;
+lin vivarium_N = mkN "vivarium" "vivariums" ;
+lin viverrine_N = mkN "viverrine" "viverrines" ;
+lin vivid_A = mkAMost "vivid" "vividly" ;
+lin vividness_N = mkN "vividness" "vividnesses" ;
+lin vivification_N = mkN "vivification" "vivifications" ;
+lin viviparous_A = mkAMost "viviparous" "viviparously" ;
+lin vivisect_V = mkV "vivisect" "vivisected" "vivisected" ;
+lin vivisection_N = mkN "vivisection" "vivisections" ;
+lin vivisectionist_N = mkN "vivisectionist" "vivisectionists" ;
+lin vixen_N = mkN "vixen" "vixens" ;
+lin vixenish_A = mkAMost "vixenish" "vixenishly" ;
+lin vizier_N = mkN "vizier" "viziers" ;
+lin viziership_N = mkN "viziership" "vizierships" ;
+lin vizsla_N = mkN "vizsla" "vizslas" ;
+lin vocable_N = mkN "vocable" "vocables" ;
+lin vocabulary_N = mkN "vocabulary" "vocabularies" ;
+lin vocal_A = mkAMost "vocal" "vocally" ;
+lin vocalic_A = mkAMost "vocalic" "vocalicly" ;
+lin vocalist_N = mkN "vocalist" "vocalists" ;
+lin vocalize_V = mkV "vocalize" "vocalized" "vocalized" ;
+lin vocation_N = mkN "vocation" "vocations" ;
+lin vocational_A = mkAMost "vocational" "vocationally" ;
+lin vocative_A = mkAMost "vocative" "vocatively" ;
+lin vocative_N = mkN "vocative" "vocatives" ;
+lin vociferate_V = mkV "vociferate" "vociferated" "vociferated" ;
+lin vociferation_N = mkN "vociferation" "vociferations" ;
+lin vociferator_N = mkN "vociferator" "vociferators" ;
+lin vociferous_A = mkAMost "vociferous" "vociferously" ;
+lin vodka_N = mkN "vodka" "vodkas" ;
+lin vogue_N = mkN "vogue" "vogues" ;
+lin voice_N = mkN "voice" "voices" ;
+lin voice_V = mkV "voice" "voiced" "voiced" ;
+lin voiceless_A = mkAMost "voiceless" "voicelessly" ;
+lin voicelessness_N = mkN "voicelessness" "voicelessnesses" ;
+lin voiceprint_N = mkN "voiceprint" "voiceprints" ;
+lin voicer_N = mkN "voicer" "voicers" ;
+lin voicing_N = mkN "voicing" "voicings" ;
+lin void_A = mkAMost "void" "voidly" ;
+lin void_N = mkN "void" "voids" ;
+lin void_V = mkV "void" "voided" "voided" ;
+lin voider_N = mkN "voider" "voiders" ;
+lin voile_N = mkN "voile" "voiles" ;
+lin vol_N = mkN "vol" "vols" ;
+lin volatile_A = mkAMost "volatile" "volatilely" ;
+lin volatile_N = mkN "volatile" "volatiles" ;
+lin volatility_N = mkN "volatility" "volatilities" ;
+lin volcanic_A = mkAMost "volcanic" "volcanicly" ;
+lin volcanically_Adv = mkAdv "volcanically" ;
+lin volcanism_N = mkN "volcanism" "volcanisms" ;
+lin volcano_N = mkN "volcano" "volcanos" ;
+lin volcanology_N = mkN "volcanology" "volcanologies" ;
+lin vole_N = mkN "vole" "voles" ;
+lin volition_N = mkN "volition" "volitions" ;
+lin volitional_A = mkAMost "volitional" "volitionally" ;
+lin volley_N = mkN "volley" "volleys" ;
+lin volley_V = mkV "volley" "volleyed" "volleyed" ;
+lin volleyball_N = mkN "volleyball" "volleyballs" ;
+lin volt_N = mkN "volt" "volts" ;
+lin voltage_N = mkN "voltage" "voltages" ;
+lin voltaic_A = mkAMost "voltaic" "voltaicly" ;
+lin volte_face_N = mkN "volte-face" "IRREG" ;
+lin voltmeter_N = mkN "voltmeter" "voltmeters" ;
+lin volubility_N = mkN "volubility" "volubilities" ;
+lin voluble_A = mkAMost "voluble" "volubly" ;
+lin volume_N = mkN "volume" "volumes" ;
+lin volumed_A = mkAMost "volumed" "volumedly" ;
+lin volumeter_N = mkN "volumeter" "volumeters" ;
+lin volumetric_A = mkAMost "volumetric" "volumetricly" ;
+lin volumetrically_Adv = mkAdv "volumetrically" ;
+lin voluminous_A = mkAMost "voluminous" "voluminously" ;
+lin voluntary_A = mkAMost "voluntary" "voluntarily" ;
+lin voluntary_N = mkN "voluntary" "voluntaries" ;
+lin volunteer_N = mkN "volunteer" "volunteers" ;
+lin volunteer_V = mkV "volunteer" "volunteered" "volunteered" ;
+lin voluptuary_N = mkN "voluptuary" "voluptuaries" ;
+lin voluptuous_A = mkAMost "voluptuous" "voluptuously" ;
+lin voluptuousness_N = mkN "voluptuousness" "voluptuousnesses" ;
+lin volute_N = mkN "volute" "volutes" ;
+lin voluted_A = mkAMost "voluted" "volutedly" ;
+lin volution_N = mkN "volution" "volutions" ;
+lin volva_N = mkN "volva" "volvas" ;
+lin volvulus_N = mkN "volvulus" "volvuluses" ;
+lin vomer_N = mkN "vomer" "vomers" ;
+lin vomit_N = mkN "vomit" "vomits" ;
+lin vomit_V = mkV "vomit" "vomited" "vomited" ;
+lin vomiter_N = mkN "vomiter" "vomiters" ;
+lin vomitory_N = mkN "vomitory" "vomitories" ;
+lin voodoo_N = mkN "voodoo" "voodoos" ;
+lin voodooism_N = mkN "voodooism" "voodooisms" ;
+lin voracious_A = mkAMost "voracious" "voraciously" ;
+lin voracity_N = mkN "voracity" "voracities" ;
+lin vortex_N = mkN "vortex" "vortexes" ;
+lin vorticella_N = mkN "vorticella" "vorticellas" ;
+lin votary_N = mkN "votary" "votaries" ;
+lin vote_N = mkN "vote" "votes" ;
+lin vote_V = mkV "vote" "voted" "voted" ;
+lin voteless_A = mkAMost "voteless" "votelessly" ;
+lin voter_N = mkN "voter" "voters" ;
+lin votive_A = mkAMost "votive" "votively" ;
+lin vouch_V = mkV "vouch" "vouched" "vouched" ;
+lin vouchee_N = mkN "vouchee" "vouchees" ;
+lin voucher_N = mkN "voucher" "vouchers" ;
+lin vouchsafe_V = mkV "vouchsafe" "vouchsafed" "vouchsafed" ;
+lin vouge_N = mkN "vouge" "vouges" ;
+lin voussoir_N = mkN "voussoir" "voussoirs" ;
+lin vow_N = mkN "vow" "vows" ;
+lin vow_V = mkV "vow" "vowed" "vowed" ;
+lin vowel_N = mkN "vowel" "vowels" ;
+lin vowellike_A = mkAMost "vowellike" "vowellikely" ;
+lin vower_N = mkN "vower" "vowers" ;
+lin vox_N = mkN "vox" "IRREG" ;
+lin vox_populi_N = mkN "vox populi" "IRREG" ;
+lin voyage_N = mkN "voyage" "voyages" ;
+lin voyage_V = mkV "voyage" "voyaged" "voyaged" ;
+lin voyager_N = mkN "voyager" "voyagers" ;
+lin voyeur_N = mkN "voyeur" "voyeurs" ;
+lin voyeurism_N = mkN "voyeurism" "voyeurisms" ;
+lin voyeuristic_A = mkAMost "voyeuristic" "voyeuristicly" ;
+lin voyeuristically_Adv = mkAdv "voyeuristically" ;
+lin vp_N = mkN "vp" "vps" ;
+lin vroom_N = mkN "vroom" "vrooms" ;
+lin vulcanite_N = mkN "vulcanite" "vulcanites" ;
+lin vulcanization_N = mkN "vulcanization" "vulcanizations" ;
+lin vulcanize_V = mkV "vulcanize" "vulcanized" "vulcanized" ;
+lin vulcanizer_N = mkN "vulcanizer" "vulcanizers" ;
+lin vulgar_A = mkAMost "vulgar" "vulgarly" ;
+lin vulgarian_N = mkN "vulgarian" "vulgarians" ;
+lin vulgarism_N = mkN "vulgarism" "vulgarisms" ;
+lin vulgarity_N = mkN "vulgarity" "vulgarities" ;
+lin vulgarization_N = mkN "vulgarization" "vulgarizations" ;
+lin vulgarize_V = mkV "vulgarize" "vulgarized" "vulgarized" ;
+lin vulgarizer_N = mkN "vulgarizer" "vulgarizers" ;
+lin vulgate_N = mkN "vulgate" "vulgates" ;
+lin vulnerability_N = mkN "vulnerability" "vulnerabilities" ;
+lin vulnerable_A = mkAMost "vulnerable" "vulnerably" ;
+lin vulpine_A = mkAMost "vulpine" "vulpinely" ;
+lin vulture_N = mkN "vulture" "vultures" ;
+lin vulva_N = mkN "vulva" "vulvas" ;
+lin vulvar_A = mkAMost "vulvar" "vulvarly" ;
+lin vulvectomy_N = mkN "vulvectomy" "vulvectomies" ;
+lin vulvitis_N = mkN "vulvitis" "vulvitises" ;
+lin vulvovaginitis_N = mkN "vulvovaginitis" "vulvovaginitises" ;
+lin wad_N = mkN "wad" "wads" ;
+lin wad_V = mkV "wad" "wadded" "wadded" ;
+lin wadding_N = mkN "wadding" "waddings" ;
+lin waddle_N = mkN "waddle" "IRREG" ;
+lin waddle_V = mkV "waddle" "waddled" "waddled" ;
+lin waddler_N = mkN "waddler" "waddlers" ;
+lin wade_V = mkV "wade" "waded" "waded" ;
+lin wader_N = mkN "wader" "waders" ;
+lin waders_N = mkN "waders" "waderses" ;
+lin wadi_N = mkN "wadi" "wadis" ;
+lin wading_N = mkN "wading" "wadings" ;
+lin wafer_N = mkN "wafer" "wafers" ;
+lin waffle_N = mkN "waffle" "waffles" ;
+lin waffle_V = mkV "waffle" "waffled" "waffled" ;
+lin waffler_N = mkN "waffler" "wafflers" ;
+lin waft_N = mkN "waft" "wafts" ;
+lin waft_V = mkV "waft" "wafted" "wafted" ;
+lin wag_N = mkN "wag" "wags" ;
+lin wag_V = mkV "wag" "wagged" "wagged" ;
+lin wage_N = mkN "wage" "wages" ;
+lin wage_V = mkV "wage" "waged" "waged" ;
+lin wage_claim_N = mkN "wage-claim" "wage-claims" ;
+lin wage_earner_N = mkN "wage-earner" "wage-earners" ;
+lin wage_freeze_N = mkN "wage-freeze" "wage-freezes" ;
+lin wager_N = mkN "wager" "wagers" ;
+lin wager_V = mkV "wager" "wagered" "wagered" ;
+lin wages_N = mkN "wages" "wageses" ;
+lin waggery_N = mkN "waggery" "waggeries" ;
+lin waggish_A = mkAMost "waggish" "waggishly" ;
+lin waggishness_N = mkN "waggishness" "waggishnesses" ;
+lin waggle_V = mkV "waggle" "waggled" "waggled" ;
+lin waggon_N = mkN "waggon" "waggons" ;
+lin waggoner_N = mkN "waggoner" "waggoners" ;
+lin wagon_N = mkN "wagon" "wagons" ;
+lin wagon_lit_N = mkN "wagon-lit" "IRREG" ;
+lin wagoner_N = mkN "wagoner" "wagoners" ;
+lin wagonwright_N = mkN "wagonwright" "wagonwrights" ;
+lin wagtail_N = mkN "wagtail" "wagtails" ;
+lin wahoo_N = mkN "wahoo" "wahoos" ;
+lin waif_N = mkN "waif" "waifs" ;
+lin wail_N = mkN "wail" "wails" ;
+lin wail_V = mkV "wail" "wailed" "wailed" ;
+lin wailer_N = mkN "wailer" "wailers" ;
+lin wailing_N = mkN "wailing" "wailings" ;
+lin wain_N = mkN "wain" "wains" ;
+lin wainscot_N = mkN "wainscot" "wainscots" ;
+lin wainscoted_A = mkAMost "wainscoted" "wainscotedly" ;
+lin wainscoting_N = mkN "wainscoting" "wainscotings" ;
+lin waist_N = mkN "waist" "waists" ;
+lin waist_deep_A = mkAMost "waist-deep" "waist-deeply" ;
+lin waist_deep_Adv = mkAdv "waist-deep" ;
+lin waist_high_A = mkAMost "waist-high" "waist-highly" ;
+lin waist_high_Adv = mkAdv "waist-high" ;
+lin waistband_N = mkN "waistband" "waistbands" ;
+lin waistcoat_N = mkN "waistcoat" "waistcoats" ;
+lin waistline_N = mkN "waistline" "waistlines" ;
+lin wait_N = mkN "wait" "waits" ;
+lin wait_V = mkV "wait" "waited" "waited" ;
+lin waiter_N = mkN "waiter" "waiters" ;
+lin waiting_list_N = mkN "waiting-list" "waiting-lists" ;
+lin waiting_room_N = mkN "waiting-room" "waiting-rooms" ;
+lin waitress_N = mkN "waitress" "waitresses" ;
+lin waive_V = mkV "waive" "waived" "waived" ;
+lin waiver_N = mkN "waiver" "waivers" ;
+lin waiver_V = mkV "waiver" "waivered" "waivered" ;
+lin wake_N = mkN "wake" "wakes" ;
+lin wake_V = mkV "wake" "waked" "waked" ;
+lin wakeful_A = mkAMost "wakeful" "wakefully" ;
+lin wakefulness_N = mkN "wakefulness" "wakefulnesses" ;
+lin waken_V = mkV "waken" "wakened" "wakened" ;
+lin waker_N = mkN "waker" "wakers" ;
+lin waking_N = mkN "waking" "wakings" ;
+lin wale_N = mkN "wale" "wales" ;
+lin walk_N = mkN "walk" "walks" ;
+lin walk_V = mkV "walk" "walked" "walked" ;
+lin walkabout_N = mkN "walkabout" "walkabouts" ;
+lin walkaway_N = mkN "walkaway" "walkaways" ;
+lin walker_N = mkN "walker" "walkers" ;
+lin walkie_talkie_N = mkN "walkie-talkie" "walkie-talkies" ;
+lin walking_N = mkN "walking" "walkings" ;
+lin walkout_N = mkN "walkout" "walkouts" ;
+lin walkover_N = mkN "walkover" "walkovers" ;
+lin wall_N = mkN "wall" "walls" ;
+lin wall_V = mkV "wall" "walled" "walled" ;
+lin wall_eyed_A = mkAMost "wall-eyed" "wall-eyedly" ;
+lin wall_painting_N = mkN "wall-painting" "wall-paintings" ;
+lin wallaby_N = mkN "wallaby" "wallabies" ;
+lin wallah_N = mkN "wallah" "wallahs" ;
+lin wallboard_N = mkN "wallboard" "wallboards" ;
+lin wallet_N = mkN "wallet" "wallets" ;
+lin walleye_N = mkN "walleye" "walleyes" ;
+lin walleyed_A = mkAMost "walleyed" "walleyedly" ;
+lin wallflower_N = mkN "wallflower" "wallflowers" ;
+lin wallop_N = mkN "wallop" "wallops" ;
+lin wallop_V = mkV "wallop" "walloped" "walloped" ;
+lin walloper_N = mkN "walloper" "wallopers" ;
+lin walloping_A = mkAMost "walloping" "wallopingly" ;
+lin wallow_N = mkN "wallow" "wallows" ;
+lin wallow_V = mkV "wallow" "wallowed" "wallowed" ;
+lin wallpaper_N = mkN "wallpaper" "wallpapers" ;
+lin wallpaperer_N = mkN "wallpaperer" "wallpaperers" ;
+lin wally_N = mkN "wally" "wallies" ;
+lin walnut_N = mkN "walnut" "walnuts" ;
+lin walrus_N = mkN "walrus" "walruses" ;
+lin waltz_N = mkN "waltz" "waltzes" ;
+lin waltz_V = mkV "waltz" "waltzed" "waltzed" ;
+lin waltzer_N = mkN "waltzer" "waltzers" ;
+lin wampum_N = mkN "wampum" "wampums" ;
+lin wan_A = mkA "wan" "wanner" "wannest" "wanly" ;
+lin wand_N = mkN "wand" "wands" ;
+lin wander_V = mkV "wander" "wandered" "wandered" ;
+lin wanderer_N = mkN "wanderer" "wanderers" ;
+lin wandering_N = mkN "wandering" "wanderings" ;
+lin wanderlust_N = mkN "wanderlust" "wanderlusts" ;
+lin wandflower_N = mkN "wandflower" "wandflowers" ;
+lin wane_N = mkN "wane" "wanes" ;
+lin wane_V = mkV "wane" "waned" "waned" ;
+lin wangle_N = mkN "wangle" "wangles" ;
+lin wangle_V = mkV "wangle" "wangled" "wangled" ;
+lin waning_N = mkN "waning" "wanings" ;
+lin wank_N = mkN "wank" "wanks" ;
+lin wank_V = mkV "wank" "wanked" "wanked" ;
+lin wanness_N = mkN "wanness" "wannesses" ;
+lin want_N = mkN "want" "wants" ;
+lin want_V = mkV "want" "wanted" "wanted" ;
+lin want_ad_N = mkN "want-ad" "want-ads" ;
+lin wanter_N = mkN "wanter" "wanters" ;
+lin wanton_A = mkAMost "wanton" "wantonly" ;
+lin wanton_N = mkN "wanton" "wantons" ;
+lin wanton_V = mkV "wanton" "wantoned" "wantoned" ;
+lin wantonness_N = mkN "wantonness" "wantonnesses" ;
+lin wapiti_N = mkN "wapiti" "wapitis" ;
+lin war_N = mkN "war" "wars" ;
+lin war_V = mkV "war" "warred" "warred" ;
+lin war_baby_N = mkN "war-baby" "war-babies" ;
+lin war_bride_N = mkN "war-bride" "war-brides" ;
+lin war_cloud_N = mkN "war-cloud" "war-clouds" ;
+lin war_cry_N = mkN "war-cry" "war-cries" ;
+lin war_dance_N = mkN "war-dance" "war-dances" ;
+lin war_god_N = mkN "war-god" "war-gods" ;
+lin war_torn_A = mkAMost "war-torn" "war-tornly" ;
+lin war_widow_N = mkN "war-widow" "war-widows" ;
+lin waratah_N = mkN "waratah" "waratahs" ;
+lin warble_N = mkN "warble" "warbles" ;
+lin warble_V = mkV "warble" "warbled" "warbled" ;
+lin warbler_N = mkN "warbler" "warblers" ;
+lin ward_N = mkN "ward" "wards" ;
+lin ward_V = mkV "ward" "warded" "warded" ;
+lin warden_N = mkN "warden" "wardens" ;
+lin wardenship_N = mkN "wardenship" "wardenships" ;
+lin warder_N = mkN "warder" "warders" ;
+lin wardership_N = mkN "wardership" "warderships" ;
+lin wardress_N = mkN "wardress" "wardresses" ;
+lin wardrobe_N = mkN "wardrobe" "wardrobes" ;
+lin wardroom_N = mkN "wardroom" "wardrooms" ;
+lin ware_N = mkN "ware" "wares" ;
+lin ware_V = mkV "ware" "wared" "wared" ;
+lin warehouse_N = mkN "warehouse" "warehouses" ;
+lin warehouser_N = mkN "warehouser" "warehousers" ;
+lin warehousing_N = mkN "warehousing" "warehousings" ;
+lin warfare_N = mkN "warfare" "warfares" ;
+lin warfarin_N = mkN "warfarin" "warfarins" ;
+lin warhead_N = mkN "warhead" "warheads" ;
+lin warhorse_N = mkN "warhorse" "warhorses" ;
+lin wariness_N = mkN "wariness" "warinesses" ;
+lin warlike_A = mkAMost "warlike" "warlikely" ;
+lin warlock_N = mkN "warlock" "warlocks" ;
+lin warlord_N = mkN "warlord" "warlords" ;
+lin warm_A = mkA "warm" "warmer" "warmest" "warmly" ;
+lin warm_V = mkV "warm" "warmed" "warmed" ;
+lin warm_blooded_A = mkAMost "warm-blooded" "warm-bloodedly" ;
+lin warm_hearted_A = mkAMost "warm-hearted" "warm-heartedly" ;
+lin warmer_N = mkN "warmer" "warmers" ;
+lin warmhearted_A = mkAMost "warmhearted" "warmheartedly" ;
+lin warmheartedness_N = mkN "warmheartedness" "warmheartednesses" ;
+lin warming_pan_N = mkN "warming-pan" "warming-pans" ;
+lin warmonger_N = mkN "warmonger" "warmongers" ;
+lin warmongering_N = mkN "warmongering" "warmongerings" ;
+lin warmth_N = mkN "warmth" "warmths" ;
+lin warn_V = mkV "warn" "warned" "warned" ;
+lin warner_N = mkN "warner" "warners" ;
+lin warning_N = mkN "warning" "warnings" ;
+lin warp_N = mkN "warp" "warps" ;
+lin warp_V = mkV "warp" "warped" "warped" ;
+lin warpaint_N = mkN "warpaint" "warpaints" ;
+lin warpath_N = mkN "warpath" "warpaths" ;
+lin warplane_N = mkN "warplane" "warplanes" ;
+lin warrant_N = mkN "warrant" "warrants" ;
+lin warrant_V = mkV "warrant" "warranted" "warranted" ;
+lin warrantee_N = mkN "warrantee" "warrantees" ;
+lin warrantor_N = mkN "warrantor" "warrantors" ;
+lin warranty_N = mkN "warranty" "warranties" ;
+lin warren_N = mkN "warren" "warrens" ;
+lin warrener_N = mkN "warrener" "warreners" ;
+lin warrigal_N = mkN "warrigal" "warrigals" ;
+lin warrior_N = mkN "warrior" "warriors" ;
+lin warship_N = mkN "warship" "warships" ;
+lin wart_N = mkN "wart" "warts" ;
+lin warthog_N = mkN "warthog" "warthogs" ;
+lin wartime_N = mkN "wartime" "wartimes" ;
+lin wary_A = mkA "wary" "warier" "wariest" "warily" ;
+lin wasabi_N = mkN "wasabi" "wasabis" ;
+lin wash_N = mkN "wash" "washes" ;
+lin wash_V = mkV "wash" "washed" "washed" ;
+lin wash_drawing_N = mkN "wash-drawing" "wash-drawings" ;
+lin wash_hand_basin_N = mkN "wash-hand-basin" "wash-hand-basins" ;
+lin wash_hand_stand_N = mkN "wash-hand-stand" "wash-hand-stands" ;
+lin wash_house_N = mkN "wash-house" "wash-houses" ;
+lin wash_leather_N = mkN "wash-leather" "wash-leathers" ;
+lin washable_A = mkAMost "washable" "washably" ;
+lin washbasin_N = mkN "washbasin" "washbasins" ;
+lin washboard_N = mkN "washboard" "washboards" ;
+lin washbowl_N = mkN "washbowl" "washbowls" ;
+lin washcloth_N = mkN "washcloth" "washcloths" ;
+lin washday_N = mkN "washday" "washdays" ;
+lin washer_N = mkN "washer" "washers" ;
+lin washerman_N = mkN "washerman" "washermen" ;
+lin washerwoman_N = mkN "washerwoman" "washerwomen" ;
+lin washhouse_N = mkN "washhouse" "washhouses" ;
+lin washing_N = mkN "washing" "washings" ;
+lin washing_day_N = mkN "washing-day" "washing-days" ;
+lin washing_machine_N = mkN "washing-machine" "washing-machines" ;
+lin washing_up_N = mkN "washing-up" "washing-ups" ;
+lin washman_N = mkN "washman" "washmen" ;
+lin washout_N = mkN "washout" "washouts" ;
+lin washroom_N = mkN "washroom" "washrooms" ;
+lin washstand_N = mkN "washstand" "washstands" ;
+lin washtub_N = mkN "washtub" "washtubs" ;
+lin washup_N = mkN "washup" "washups" ;
+lin washwoman_N = mkN "washwoman" "washwomen" ;
+lin washy_A = mkAMost "washy" "washily" ;
+lin wasp_N = mkN "wasp" "wasps" ;
+lin wasp_waisted_A = mkAMost "wasp-waisted" "wasp-waistedly" ;
+lin waspish_A = mkAMost "waspish" "waspishly" ;
+lin wassail_N = mkN "wassail" "wassails" ;
+lin wassailer_N = mkN "wassailer" "wassailers" ;
+lin wastage_N = mkN "wastage" "wastages" ;
+lin waste_A = mkAMost "waste" "wastely" ;
+lin waste_N = mkN "waste" "wastes" ;
+lin waste_V = mkV "waste" "wasted" "wasted" ;
+lin waste_paper_basket_N = mkN "waste-paper-basket" "waste-paper-baskets" ;
+lin waste_pipe_N = mkN "waste-pipe" "waste-pipes" ;
+lin wastebasket_N = mkN "wastebasket" "wastebaskets" ;
+lin wastebin_N = mkN "wastebin" "wastebins" ;
+lin wasteful_A = mkAMost "wasteful" "wastefully" ;
+lin wasteland_N = mkN "wasteland" "wastelands" ;
+lin waster_N = mkN "waster" "wasters" ;
+lin wastrel_N = mkN "wastrel" "wastrels" ;
+lin watch_N = mkN "watch" "watches" ;
+lin watch_V = mkV "watch" "watched" "watched" ;
+lin watch_chain_N = mkN "watch-chain" "watch-chains" ;
+lin watch_glass_N = mkN "watch-glass" "watch-glasses" ;
+lin watch_guard_N = mkN "watch-guard" "watch-guards" ;
+lin watch_key_N = mkN "watch-key" "watch-keys" ;
+lin watchband_N = mkN "watchband" "watchbands" ;
+lin watchdog_N = mkN "watchdog" "watchdogs" ;
+lin watcher_N = mkN "watcher" "watchers" ;
+lin watchful_A = mkAMost "watchful" "watchfully" ;
+lin watchfulness_N = mkN "watchfulness" "watchfulnesses" ;
+lin watchmaker_N = mkN "watchmaker" "watchmakers" ;
+lin watchman_N = mkN "watchman" "watchmen" ;
+lin watchtower_N = mkN "watchtower" "watchtowers" ;
+lin watchword_N = mkN "watchword" "watchwords" ;
+lin water_N = mkN "water" "waters" ;
+lin water_V = mkV "water" "watered" "watered" ;
+lin water_biscuit_N = mkN "water-biscuit" "water-biscuits" ;
+lin water_blister_N = mkN "water-blister" "water-blisters" ;
+lin water_bottle_N = mkN "water-bottle" "water-bottles" ;
+lin water_buffalo_N = mkN "water-buffalo" "water-buffalos" ;
+lin water_butt_N = mkN "water-butt" "water-butts" ;
+lin water_cart_N = mkN "water-cart" "water-carts" ;
+lin water_closet_N = mkN "water-closet" "water-closets" ;
+lin water_finder_N = mkN "water-finder" "water-finders" ;
+lin water_glass_N = mkN "water-glass" "water-glasses" ;
+lin water_hole_N = mkN "water-hole" "water-holes" ;
+lin water_ice_N = mkN "water-ice" "water-ices" ;
+lin water_jacket_N = mkN "water-jacket" "water-jackets" ;
+lin water_level_N = mkN "water-level" "water-levels" ;
+lin water_lily_N = mkN "water-lily" "water-lilies" ;
+lin water_line_N = mkN "water-line" "water-lines" ;
+lin water_main_N = mkN "water-main" "water-mains" ;
+lin water_nymph_N = mkN "water-nymph" "water-nymphs" ;
+lin water_polo_N = mkN "water-polo" "water-poloes" ;
+lin water_power_N = mkN "water-power" "water-powers" ;
+lin water_rat_N = mkN "water-rat" "water-rats" ;
+lin water_rate_N = mkN "water-rate" "water-rates" ;
+lin water_skiing_N = mkN "water-skiing" "water-skiings" ;
+lin water_skin_N = mkN "water-skin" "water-skins" ;
+lin water_softener_N = mkN "water-softener" "water-softeners" ;
+lin water_spaniel_N = mkN "water-spaniel" "water-spaniels" ;
+lin water_supply_N = mkN "water-supply" "water-supplies" ;
+lin water_tower_N = mkN "water-tower" "water-towers" ;
+lin water_vole_N = mkN "water-vole" "water-voles" ;
+lin water_waggon_N = mkN "water-waggon" "water-waggons" ;
+lin water_wagon_N = mkN "water-wagon" "water-wagons" ;
+lin water_wheel_N = mkN "water-wheel" "water-wheels" ;
+lin water_worn_A = mkAMost "water-worn" "water-wornly" ;
+lin waterbird_N = mkN "waterbird" "waterbirds" ;
+lin waterborne_A = mkAMost "waterborne" "waterbornely" ;
+lin waterbuck_N = mkN "waterbuck" "waterbucks" ;
+lin watercannon_N = mkN "watercannon" "watercannons" ;
+lin waterchute_N = mkN "waterchute" "waterchutes" ;
+lin watercolor_N = mkN "watercolor" "watercolors" ;
+lin watercolorist_N = mkN "watercolorist" "watercolorists" ;
+lin watercolour_N = mkN "watercolour" "watercolours" ;
+lin watercolourist_N = mkN "watercolourist" "watercolourists" ;
+lin watercourse_N = mkN "watercourse" "watercourses" ;
+lin watercraft_N = mkN "watercraft" "watercrafts" ;
+lin watercress_N = mkN "watercress" "watercresses" ;
+lin waterdog_N = mkN "waterdog" "waterdogs" ;
+lin waterer_N = mkN "waterer" "waterers" ;
+lin waterfall_N = mkN "waterfall" "waterfalls" ;
+lin waterfowl_N = mkN "waterfowl" "waterfowls" ;
+lin waterfront_N = mkN "waterfront" "waterfronts" ;
+lin waterhen_N = mkN "waterhen" "waterhens" ;
+lin waterhyacinth_N = mkN "waterhyacinth" "waterhyacinths" ;
+lin wateriness_N = mkN "wateriness" "waterinesses" ;
+lin watering_N = mkN "watering" "waterings" ;
+lin watering_can_N = mkN "watering-can" "watering-cans" ;
+lin watering_cart_N = mkN "watering-cart" "watering-carts" ;
+lin waterleaf_N = mkN "waterleaf" "waterleafs" ;
+lin waterless_A = mkAMost "waterless" "waterlessly" ;
+lin waterline_N = mkN "waterline" "waterlines" ;
+lin waterlogged_A = mkAMost "waterlogged" "waterloggedly" ;
+lin waterloo_N = mkN "waterloo" "waterloos" ;
+lin waterman_N = mkN "waterman" "watermen" ;
+lin watermark_N = mkN "watermark" "watermarks" ;
+lin watermeal_N = mkN "watermeal" "watermeals" ;
+lin watermelon_N = mkN "watermelon" "watermelons" ;
+lin watermill_N = mkN "watermill" "watermills" ;
+lin waterpower_N = mkN "waterpower" "waterpowers" ;
+lin waterproof_A = mkAMost "waterproof" "waterproofly" ;
+lin waterproof_N = mkN "waterproof" "waterproofs" ;
+lin waterproof_V = mkV "waterproof" "waterproofed" "waterproofed" ;
+lin waterproofing_N = mkN "waterproofing" "waterproofings" ;
+lin watershed_N = mkN "watershed" "watersheds" ;
+lin waterside_N = mkN "waterside" "watersides" ;
+lin waterskin_N = mkN "waterskin" "waterskins" ;
+lin waterspout_N = mkN "waterspout" "waterspouts" ;
+lin watertable_N = mkN "watertable" "watertables" ;
+lin watertight_A = mkAMost "watertight" "watertightly" ;
+lin waterway_N = mkN "waterway" "waterways" ;
+lin waterweed_N = mkN "waterweed" "waterweeds" ;
+lin waterwheel_N = mkN "waterwheel" "waterwheels" ;
+lin waterworks_N = mkN "waterworks" "waterworks" ;
+lin waterworn_A = mkAMost "waterworn" "waterwornly" ;
+lin watery_A = mkA "watery" "waterier" "wateriest" "waterily" ;
+lin watt_N = mkN "watt" "watts" ;
+lin wattage_N = mkN "wattage" "wattages" ;
+lin wattle_N = mkN "wattle" "wattles" ;
+lin wattmeter_N = mkN "wattmeter" "wattmeters" ;
+lin wave_N = mkN "wave" "waves" ;
+lin wave_V = mkV "wave" "waved" "waved" ;
+lin waveguide_N = mkN "waveguide" "waveguides" ;
+lin wavelength_N = mkN "wavelength" "wavelengths" ;
+lin waver_N = mkN "waver" "wavers" ;
+lin waver_V = mkV "waver" "wavered" "wavered" ;
+lin waverer_N = mkN "waverer" "waverers" ;
+lin waviness_N = mkN "waviness" "wavinesses" ;
+lin wavy_A = mkA "wavy" "wavier" "waviest" "wavily" ;
+lin waw_N = mkN "waw" "waws" ;
+lin wax_N = mkN "wax" "waxes" ;
+lin wax_V = mkV "wax" "waxed" "waxed" ;
+lin wax_chandler_N = mkN "wax-chandler" "wax-chandlers" ;
+lin wax_paper_N = mkN "wax-paper" "wax-papers" ;
+lin waxen_A = mkAMost "waxen" "waxenly" ;
+lin waxflower_N = mkN "waxflower" "waxflowers" ;
+lin waxiness_N = mkN "waxiness" "waxinesses" ;
+lin waxing_N = mkN "waxing" "waxings" ;
+lin waxmallow_N = mkN "waxmallow" "waxmallows" ;
+lin waxwing_N = mkN "waxwing" "waxwings" ;
+lin waxwork_N = mkN "waxwork" "waxworks" ;
+lin waxy_A = mkA "waxy" "waxier" "waxiest" "waxily" ;
+lin waxycap_N = mkN "waxycap" "waxycaps" ;
+lin way_Adv = mkAdv "way" ;
+lin way_N = mkN "way" "ways" ;
+lin way_out_A = mkAMost "way-out" "way-outly" ;
+lin waybill_N = mkN "waybill" "waybills" ;
+lin wayfarer_N = mkN "wayfarer" "wayfarers" ;
+lin wayfaring_A = mkAMost "wayfaring" "wayfaringly" ;
+lin wayfaring_N = mkN "wayfaring" "wayfarings" ;
+lin waylay_V = mkV "waylay" "waylaid" "waylaid" ;
+lin ways_N = mkN "ways" "wayses" ;
+lin wayside_N = mkN "wayside" "waysides" ;
+lin wayward_A = mkAMost "wayward" "waywardly" ;
+lin weak_A = mkA "weak" "weaker" "weakest" "weakly" ;
+lin weak_kneed_A = mkAMost "weak-kneed" "weak-kneedly" ;
+lin weaken_V = mkV "weaken" "weakened" "weakened" ;
+lin weakener_N = mkN "weakener" "weakeners" ;
+lin weakening_N = mkN "weakening" "weakenings" ;
+lin weakfish_N = mkN "weakfish" "weakfishes" ;
+lin weakling_N = mkN "weakling" "weaklings" ;
+lin weakly_A = mkA "weakly" "weaklier" "weakliest" "weaklily" ;
+lin weakness_N = mkN "weakness" "weaknesses" ;
+lin weal_N = mkN "weal" "weals" ;
+lin weald_N = mkN "weald" "wealds" ;
+lin wealth_N = mkN "wealth" "wealths" ;
+lin wealthy_A = mkA "wealthy" "wealthier" "wealthiest" "wealthily" ;
+lin wean_V = mkV "wean" "weaned" "weaned" ;
+lin weaning_N = mkN "weaning" "weanings" ;
+lin weapon_N = mkN "weapon" "weapons" ;
+lin weaponless_A = mkAMost "weaponless" "weaponlessly" ;
+lin weaponry_N = mkN "weaponry" "weaponries" ;
+lin wear_N = mkN "wear" "wears" ;
+lin wear_weared_V = mkV "wear" "weared" "weared" ;
+lin wear_wore_V = mkV "wear" "wore" "worn" ;
+lin wearable_A = mkAMost "wearable" "wearably" ;
+lin wearer_N = mkN "wearer" "wearers" ;
+lin weariness_N = mkN "weariness" "wearinesses" ;
+lin wearisome_A = mkAMost "wearisome" "wearisomely" ;
+lin weary_A = mkA "weary" "wearier" "weariest" "wearily" ;
+lin weary_V = mkV "weary" "wearied" "wearied" ;
+lin weasel_N = mkN "weasel" "weasels" ;
+lin weather_N = mkN "weather" "weathers" ;
+lin weather_V = mkV "weather" "weathered" "weathered" ;
+lin weather_beaten_A = mkAMost "weather-beaten" "weather-beatenly" ;
+lin weather_bound_A = mkAMost "weather-bound" "weather-boundly" ;
+lin weather_bureau_N = mkN "weather-bureau" "weather-bureaus" ;
+lin weather_chart_N = mkN "weather-chart" "weather-charts" ;
+lin weather_glass_N = mkN "weather-glass" "weather-glasses" ;
+lin weather_map_N = mkN "weather-map" "weather-maps" ;
+lin weather_ship_N = mkN "weather-ship" "weather-ships" ;
+lin weather_station_N = mkN "weather-station" "weather-stations" ;
+lin weather_vane_N = mkN "weather-vane" "weather-vanes" ;
+lin weatherboarding_N = mkN "weatherboarding" "weatherboardings" ;
+lin weathercock_N = mkN "weathercock" "weathercocks" ;
+lin weatherglass_N = mkN "weatherglass" "weatherglasses" ;
+lin weatherliness_N = mkN "weatherliness" "weatherlinesses" ;
+lin weatherly_A = mkAMost "weatherly" "weatherlily" ;
+lin weatherman_N = mkN "weatherman" "weathermen" ;
+lin weatherproof_A = mkAMost "weatherproof" "weatherproofly" ;
+lin weathervane_N = mkN "weathervane" "weathervanes" ;
+lin weave_N = mkN "weave" "weaves" ;
+lin weave_weaved_weaved_V = mkV "weave" "weaved" "weaved" ;
+lin weave_weaved_woven_V = mkV "weave" "weaved" "woven" ;
+lin weave_wove_weaved_V = mkV "weave" "wove" "weaved" ;
+lin weave_wove_woven_V = mkV "weave" "wove" "woven" ;
+lin weaver_N = mkN "weaver" "weavers" ;
+lin weaverbird_N = mkN "weaverbird" "weaverbirds" ;
+lin weaving_N = mkN "weaving" "weavings" ;
+lin web_N = mkN "web" "webs" ;
+lin web_footed_A = mkAMost "web-footed" "web-footedly" ;
+lin web_toed_A = mkAMost "web-toed" "web-toedly" ;
+lin webbed_A = mkAMost "webbed" "webbedly" ;
+lin webbing_N = mkN "webbing" "webbings" ;
+lin webcam_N = mkN "webcam" "webcams" ;
+lin weber_N = mkN "weber" "webers" ;
+lin webfoot_N = mkN "webfoot" "webfoots" ;
+lin webmaster_N = mkN "webmaster" "webmasters" ;
+lin webworm_N = mkN "webworm" "webworms" ;
+lin wed_A = mkA "wed" "wedder" "weddest" "wedly" ;
+lin wed_V = mkV "wed" "wedded" "wedded" ;
+lin wedding_N = mkN "wedding" "weddings" ;
+lin wedding_cake_N = mkN "wedding-cake" "wedding-cakes" ;
+lin wedding_ring_N = mkN "wedding-ring" "wedding-rings" ;
+lin wedge_N = mkN "wedge" "wedges" ;
+lin wedge_V = mkV "wedge" "wedged" "wedged" ;
+lin wedgie_N = mkN "wedgie" "wedgies" ;
+lin wedlock_N = mkN "wedlock" "wedlocks" ;
+lin wee_A = mkAMost "wee" "weely" ;
+lin wee_N = mkN "wee" "wees" ;
+lin wee_V = mkV "wee" "weed" "weed" ;
+lin wee_wee_N = mkN "wee-wee" "wee-wees" ;
+lin weed_N = mkN "weed" "weeds" ;
+lin weed_V = mkV "weed" "weeded" "weeded" ;
+lin weeder_N = mkN "weeder" "weeders" ;
+lin weedkiller_N = mkN "weedkiller" "weedkillers" ;
+lin weedless_A = mkAMost "weedless" "weedlessly" ;
+lin weeds_N = mkN "weeds" "weedses" ;
+lin weedy_A = mkA "weedy" "weedier" "weediest" "weedily" ;
+lin week_N = mkN "week" "weeks" ;
+lin weekday_N = mkN "weekday" "weekdays" ;
+lin weekend_N = mkN "weekend" "weekends" ;
+lin weekend_V = mkV "weekend" "weekended" "weekended" ;
+lin weekender_N = mkN "weekender" "weekenders" ;
+lin weeklong_A = mkAMost "weeklong" "weeklongly" ;
+lin weekly_A = mkAMost "weekly" "weeklily" ;
+lin weekly_Adv = mkAdv "weekly" ;
+lin weekly_N = mkN "weekly" "weeklies" ;
+lin weeknight_N = mkN "weeknight" "weeknights" ;
+lin weeny_A = mkA "weeny" "weenier" "weeniest" "weenily" ;
+lin weep_V = mkV "weep" "wept" "wept" ;
+lin weeper_N = mkN "weeper" "weepers" ;
+lin weepiness_N = mkN "weepiness" "weepinesses" ;
+lin weepy_A = mkA "weepy" "weepier" "weepiest" "weepily" ;
+lin weevil_N = mkN "weevil" "weevils" ;
+lin weft_N = mkN "weft" "wefts" ;
+lin weigela_N = mkN "weigela" "weigelas" ;
+lin weigh_V = mkV "weigh" "weighed" "weighed" ;
+lin weighbridge_N = mkN "weighbridge" "weighbridges" ;
+lin weigher_N = mkN "weigher" "weighers" ;
+lin weighing_machine_N = mkN "weighing-machine" "weighing-machines" ;
+lin weight_N = mkN "weight" "weights" ;
+lin weight_V = mkV "weight" "weighted" "weighted" ;
+lin weightiness_N = mkN "weightiness" "weightinesses" ;
+lin weightless_A = mkAMost "weightless" "weightlessly" ;
+lin weightlessness_N = mkN "weightlessness" "weightlessnesses" ;
+lin weightlift_N = mkN "weightlift" "weightlifts" ;
+lin weightlifter_N = mkN "weightlifter" "weightlifters" ;
+lin weightlifting_N = mkN "weightlifting" "weightliftings" ;
+lin weighty_A = mkA "weighty" "weightier" "weightiest" "weightily" ;
+lin weir_N = mkN "weir" "weirs" ;
+lin weird_A = mkA "weird" "weirder" "weirdest" "weirdly" ;
+lin weird_V = mkV "weird" "weirded" "weirded" ;
+lin weirdie_N = mkN "weirdie" "weirdies" ;
+lin weirdness_N = mkN "weirdness" "weirdnesses" ;
+lin weka_N = mkN "weka" "wekas" ;
+lin welcher_N = mkN "welcher" "welchers" ;
+lin welcome_A = mkAMost "welcome" "welcomely" ;
+lin welcome_N = mkN "welcome" "welcomes" ;
+lin welcome_V = mkV "welcome" "welcomed" "welcomed" ;
+lin welcoming_A = mkAMost "welcoming" "welcomingly" ;
+lin weld_N = mkN "weld" "welds" ;
+lin weld_V = mkV "weld" "welded" "welded" ;
+lin welder_N = mkN "welder" "welders" ;
+lin welding_N = mkN "welding" "weldings" ;
+lin weldment_N = mkN "weldment" "weldments" ;
+lin welfare_N = mkN "welfare" "welfares" ;
+lin welfarist_A = mkAMost "welfarist" "welfaristly" ;
+lin welkin_N = mkN "welkin" "IRREG" ;
+lin well_A = mkAMost "well" "welly" ;
+lin well_N = mkN "well" "wells" ;
+lin well_V = mkV "well" "welled" "welled" ;
+lin well_adjusted_A = mkAMost "well-adjusted" "well-adjustedly" ;
+lin well_advised_A = mkAMost "well-advised" "well-advisedly" ;
+lin well_appointed_A = mkAMost "well-appointed" "well-appointedly" ;
+lin well_balanced_A = mkAMost "well-balanced" "well-balancedly" ;
+lin well_behaved_A = mkAMost "well-behaved" "well-behavedly" ;
+lin well_being_N = mkN "well-being" "well-beings" ;
+lin well_born_A = mkAMost "well-born" "well-bornly" ;
+lin well_bred_A = mkAMost "well-bred" "well-bredly" ;
+lin well_conducted_A = mkAMost "well-conducted" "well-conductedly" ;
+lin well_connected_A = mkAMost "well-connected" "well-connectedly" ;
+lin well_disposed_A = mkAMost "well-disposed" "well-disposedly" ;
+lin well_doer_N = mkN "well-doer" "well-doers" ;
+lin well_doing_N = mkN "well-doing" "well-doings" ;
+lin well_favoured_A = mkAMost "well-favoured" "well-favouredly" ;
+lin well_found_A = mkAMost "well-found" "well-foundly" ;
+lin well_founded_A = mkAMost "well-founded" "well-foundedly" ;
+lin well_groomed_A = mkAMost "well-groomed" "well-groomedly" ;
+lin well_grounded_A = mkAMost "well-grounded" "well-groundedly" ;
+lin well_heeled_A = mkAMost "well-heeled" "well-heeledly" ;
+lin well_informed_A = mkAMost "well-informed" "well-informedly" ;
+lin well_intentioned_A = mkAMost "well-intentioned" "well-intentionedly" ;
+lin well_knit_A = mkAMost "well-knit" "well-knitly" ;
+lin well_known_A = mkAMost "well-known" "well-knownly" ;
+lin well_lined_A = mkAMost "well-lined" "well-linedly" ;
+lin well_marked_A = mkAMost "well-marked" "well-markedly" ;
+lin well_meaning_A = mkAMost "well-meaning" "well-meaningly" ;
+lin well_meant_A = mkAMost "well-meant" "well-meantly" ;
+lin well_nigh_Adv = mkAdv "well-nigh" ;
+lin well_read_A = mkAMost "well-read" "well-readly" ;
+lin well_rounded_A = mkAMost "well-rounded" "well-roundedly" ;
+lin well_set_A = mkAMost "well-set" "well-setly" ;
+lin well_shaven_A = mkAMost "well-shaven" "well-shavenly" ;
+lin well_spoken_A = mkAMost "well-spoken" "well-spokenly" ;
+lin well_timed_A = mkAMost "well-timed" "well-timedly" ;
+lin well_to_do_A = mkAMost "well-to-do" "well-to-doly" ;
+lin well_tried_A = mkAMost "well-tried" "well-triedly" ;
+lin well_turned_A = mkAMost "well-turned" "well-turnedly" ;
+lin well_water_N = mkN "well-water" "well-waters" ;
+lin well_wisher_N = mkN "well-wisher" "well-wishers" ;
+lin well_worn_A = mkAMost "well-worn" "well-wornly" ;
+lin wellbeing_N = mkN "wellbeing" "wellbeings" ;
+lin wellborn_A = mkAMost "wellborn" "wellbornly" ;
+lin wellerism_N = mkN "wellerism" "wellerisms" ;
+lin wellhead_N = mkN "wellhead" "wellheads" ;
+lin wellington_N = mkN "wellington" "wellingtons" ;
+lin welsh_A = mkAMost "welsh" "welshly" ;
+lin welsh_N = mkN "welsh" "welshes" ;
+lin welsh_V = mkV "welsh" "welshed" "welshed" ;
+lin welsher_N = mkN "welsher" "welshers" ;
+lin welshman_N = mkN "welshman" "welshmen" ;
+lin welt_N = mkN "welt" "welts" ;
+lin welter_A = mkAMost "welter" "welterly" ;
+lin welter_N = mkN "welter" "IRREG" ;
+lin welter_V = mkV "welter" "weltered" "weltered" ;
+lin welterweight_N = mkN "welterweight" "welterweights" ;
+lin welwitschia_N = mkN "welwitschia" "welwitschias" ;
+lin wen_N = mkN "wen" "wens" ;
+lin wench_N = mkN "wench" "wenches" ;
+lin wench_V = mkV "wench" "wenched" "wenched" ;
+lin wencher_N = mkN "wencher" "wenchers" ;
+lin wend_V = mkV "wend" "wended" "wended" ;
+lin werewolf_N = mkN "werewolf" "werewolves" ;
+lin wesleyan_A = mkAMost "wesleyan" "wesleyanly" ;
+lin wesleyan_N = mkN "wesleyan" "wesleyans" ;
+lin west_country_A = mkAMost "west-country" "west-countrily" ;
+lin west_end_A = mkAMost "west-end" "west-endly" ;
+lin westbound_A = mkAMost "westbound" "westboundly" ;
+lin westerly_A = mkAMost "westerly" "westerlily" ;
+lin westerly_Adv = mkAdv "westerly" ;
+lin western_N = mkN "western" "westerns" ;
+lin westerner_N = mkN "westerner" "westerners" ;
+lin westernization_N = mkN "westernization" "westernizations" ;
+lin westernize_V = mkV "westernize" "westernized" "westernized" ;
+lin westernmost_A = mkAMost "westernmost" "westernmostly" ;
+lin westside_A = mkAMost "westside" "westsidely" ;
+lin westward_A = mkAMost "westward" "westwardly" ;
+lin westward_Adv = mkAdv "westward" ;
+lin westwards_Adv = mkAdv "westwards" ;
+lin wet_A = mkA "wet" "wetter" "wettest" "wetly" ;
+lin wet_N = mkN "wet" "wets" ;
+lin wet_V = mkV "wet" "wetted" "wetted" ;
+lin wet_nurse_N = mkN "wet-nurse" "wet-nurses" ;
+lin wether_N = mkN "wether" "wethers" ;
+lin wetland_N = mkN "wetland" "wetlands" ;
+lin wetness_N = mkN "wetness" "wetnesses" ;
+lin wetter_N = mkN "wetter" "wetters" ;
+lin wetting_N = mkN "wetting" "wettings" ;
+lin whack_N = mkN "whack" "whacks" ;
+lin whack_V = mkV "whack" "whacked" "whacked" ;
+lin whacker_N = mkN "whacker" "whackers" ;
+lin whacking_Adv = mkAdv "whacking" ;
+lin whacking_N = mkN "whacking" "whackings" ;
+lin whale_N = mkN "whale" "whales" ;
+lin whale_V = mkV "whale" "whaled" "whaled" ;
+lin whaleboat_N = mkN "whaleboat" "whaleboats" ;
+lin whalebone_N = mkN "whalebone" "whalebones" ;
+lin whaler_N = mkN "whaler" "whalers" ;
+lin whaling_gun_N = mkN "whaling-gun" "whaling-guns" ;
+lin whammy_N = mkN "whammy" "whammies" ;
+lin whang_Adv = mkAdv "whang" ;
+lin whang_N = mkN "whang" "whangs" ;
+lin whang_V = mkV "whang" "whanged" "whanged" ;
+lin wharf_N = mkN "wharf" "wharfs" ;
+lin wharfage_N = mkN "wharfage" "wharfages" ;
+lin what_for_N = mkN "what-for" "what-fors" ;
+lin whate'er_A = mkAMost "whate'er" "whate'erly" ;
+lin whatever_A = mkAMost "whatever" "whateverly" ;
+lin whatnot_N = mkN "whatnot" "whatnots" ;
+lin whatsoe'er_A = mkAMost "whatsoe'er" "whatsoe'erly" ;
+lin whatsoever_A = mkAMost "whatsoever" "whatsoeverly" ;
+lin wheat_N = mkN "wheat" "wheats" ;
+lin wheatear_N = mkN "wheatear" "wheatears" ;
+lin wheaten_A = mkAMost "wheaten" "wheatenly" ;
+lin wheatfield_N = mkN "wheatfield" "wheatfields" ;
+lin wheatflake_N = mkN "wheatflake" "wheatflakes" ;
+lin wheatgrass_N = mkN "wheatgrass" "wheatgrasses" ;
+lin wheatworm_N = mkN "wheatworm" "wheatworms" ;
+lin wheedle_V = mkV "wheedle" "wheedled" "wheedled" ;
+lin wheedler_N = mkN "wheedler" "wheedlers" ;
+lin wheel_N = mkN "wheel" "wheels" ;
+lin wheel_V = mkV "wheel" "wheeled" "wheeled" ;
+lin wheelbarrow_N = mkN "wheelbarrow" "wheelbarrows" ;
+lin wheelbase_N = mkN "wheelbase" "wheelbases" ;
+lin wheelchair_N = mkN "wheelchair" "wheelchairs" ;
+lin wheeler_N = mkN "wheeler" "wheelers" ;
+lin wheelhouse_N = mkN "wheelhouse" "IRREG" ;
+lin wheeling_N = mkN "wheeling" "wheelings" ;
+lin wheelless_A = mkAMost "wheelless" "wheellessly" ;
+lin wheelwork_N = mkN "wheelwork" "wheelworks" ;
+lin wheelwright_N = mkN "wheelwright" "wheelwrights" ;
+lin wheeze_N = mkN "wheeze" "wheezes" ;
+lin wheeze_V = mkV "wheeze" "wheezed" "wheezed" ;
+lin wheeziness_N = mkN "wheeziness" "wheezinesses" ;
+lin wheezy_A = mkA "wheezy" "wheezier" "wheeziest" "wheezily" ;
+lin whelk_N = mkN "whelk" "whelks" ;
+lin whelp_N = mkN "whelp" "whelps" ;
+lin whelp_V = mkV "whelp" "whelped" "whelped" ;
+lin whence_Adv = mkAdv "whence" ;
+lin whencesoever_A = mkAMost "whencesoever" "whencesoeverly" ;
+lin whenever_Adv = mkAdv "whenever" ;
+lin where_as_Prep = mkPrep "where as" ;
+lin whereabouts_Adv = mkAdv "whereabouts" ;
+lin whereabouts_N = mkN "whereabouts" "whereaboutses" ;
+lin whereas_Prep = mkPrep "whereas" ;
+lin whereat_Adv = mkAdv "whereat" ;
+lin whereby_Adv = mkAdv "whereby" ;
+lin wherefore_Adv = mkAdv "wherefore" ;
+lin whereof_Adv = mkAdv "whereof" ;
+lin whereon_Adv = mkAdv "whereon" ;
+lin wheresoever_Adv = mkAdv "wheresoever" ;
+lin whereto_Adv = mkAdv "whereto" ;
+lin whereunto_Adv = mkAdv "whereunto" ;
+lin whereupon_Adv = mkAdv "whereupon" ;
+lin wherever_Adv = mkAdv "wherever" ;
+lin wherewith_Adv = mkAdv "wherewith" ;
+lin wherewithal_Adv = mkAdv "wherewithal" ;
+lin wherewithal_N = mkN "wherewithal" "wherewithals" ;
+lin wherry_N = mkN "wherry" "wherries" ;
+lin whet_V = mkV "whet" "whetted" "whetted" ;
+lin whether_Prep = mkPrep "whether" ;
+lin whetstone_N = mkN "whetstone" "whetstones" ;
+lin whey_N = mkN "whey" "wheys" ;
+lin whichever_A = mkAMost "whichever" "whicheverly" ;
+lin whichsoever_A = mkAMost "whichsoever" "whichsoeverly" ;
+lin whiff_N = mkN "whiff" "whiffs" ;
+lin whiffer_N = mkN "whiffer" "whiffers" ;
+lin whiffletree_N = mkN "whiffletree" "whiffletrees" ;
+lin whig_N = mkN "whig" "whigs" ;
+lin while_N = mkN "while" "whiles" ;
+lin while_V = mkV "while" "whiled" "whiled" ;
+lin whim_N = mkN "whim" "whims" ;
+lin whimper_N = mkN "whimper" "whimpers" ;
+lin whimper_V = mkV "whimper" "whimpered" "whimpered" ;
+lin whimsey_N = mkN "whimsey" "whimseys" ;
+lin whimsical_A = mkAMost "whimsical" "whimsically" ;
+lin whimsicality_N = mkN "whimsicality" "whimsicalities" ;
+lin whimsy_N = mkN "whimsy" "whimsies" ;
+lin whin_N = mkN "whin" "whins" ;
+lin whinchat_N = mkN "whinchat" "whinchats" ;
+lin whine_N = mkN "whine" "whines" ;
+lin whine_V = mkV "whine" "whined" "whined" ;
+lin whiner_N = mkN "whiner" "whiners" ;
+lin whinny_N = mkN "whinny" "whinnies" ;
+lin whinny_V = mkV "whinny" "whinnied" "whinnied" ;
+lin whinstone_N = mkN "whinstone" "whinstones" ;
+lin whip_N = mkN "whip" "whips" ;
+lin whip_V = mkV "whip" "whipped" "whipped" ;
+lin whip_round_N = mkN "whip-round" "whip-rounds" ;
+lin whipcord_N = mkN "whipcord" "whipcords" ;
+lin whiplash_N = mkN "whiplash" "whiplashes" ;
+lin whipper_in_N = mkN "whipper-in" "IRREG" ;
+lin whippersnapper_N = mkN "whippersnapper" "whippersnappers" ;
+lin whippet_N = mkN "whippet" "whippets" ;
+lin whipping_N = mkN "whipping" "whippings" ;
+lin whipping_boy_N = mkN "whipping-boy" "whipping-boys" ;
+lin whipping_post_N = mkN "whipping-post" "whipping-posts" ;
+lin whipping_top_N = mkN "whipping-top" "whipping-tops" ;
+lin whippoorwill_N = mkN "whippoorwill" "whippoorwills" ;
+lin whippy_A = mkA "whippy" "whippier" "whippiest" "whippily" ;
+lin whipsaw_V = mkV "whipsaw" "whipsawed" "whipsawed" ;
+lin whipstitch_N = mkN "whipstitch" "whipstitches" ;
+lin whiptail_N = mkN "whiptail" "whiptails" ;
+lin whir_N = mkN "whir" "IRREG" ;
+lin whir_V = mkV "whir" "whirred" "whirred" ;
+lin whirl_N = mkN "whirl" "IRREG" ;
+lin whirl_V = mkV "whirl" "whirled" "whirled" ;
+lin whirler_N = mkN "whirler" "whirlers" ;
+lin whirligig_N = mkN "whirligig" "whirligigs" ;
+lin whirlpool_N = mkN "whirlpool" "whirlpools" ;
+lin whirlwind_N = mkN "whirlwind" "whirlwinds" ;
+lin whirr_N = mkN "whirr" "IRREG" ;
+lin whirr_V = mkV "whirr" "whirred" "whirred" ;
+lin whisk_N = mkN "whisk" "whisks" ;
+lin whisk_V = mkV "whisk" "whisked" "whisked" ;
+lin whisker_N = mkN "whisker" "whiskers" ;
+lin whiskered_A = mkAMost "whiskered" "whiskeredly" ;
+lin whiskey_N = mkN "whiskey" "whiskeys" ;
+lin whisky_N = mkN "whisky" "whiskies" ;
+lin whisper_N = mkN "whisper" "whispers" ;
+lin whisper_V = mkV "whisper" "whispered" "whispered" ;
+lin whisperer_N = mkN "whisperer" "whisperers" ;
+lin whispering_N = mkN "whispering" "whisperings" ;
+lin whispering_gallery_N = mkN "whispering-gallery" "whispering-galleries" ;
+lin whist_N = mkN "whist" "whists" ;
+lin whist_drive_N = mkN "whist-drive" "whist-drives" ;
+lin whistle_N = mkN "whistle" "whistles" ;
+lin whistle_V = mkV "whistle" "whistled" "whistled" ;
+lin whistle_stop_N = mkN "whistle-stop" "whistle-stops" ;
+lin whistler_N = mkN "whistler" "whistlers" ;
+lin whistling_N = mkN "whistling" "whistlings" ;
+lin whit_N = mkN "whit" "whits" ;
+lin white_A = mkA "white" "whiter" "whitest" "whitely" ;
+lin white_N = mkN "white" "whites" ;
+lin white_V = mkV "white" "whited" "whited" ;
+lin white_collar_A = mkAMost "white-collar" "white-collarly" ;
+lin white_hot_A = mkAMost "white-hot" "white-hotly" ;
+lin white_lipped_A = mkAMost "white-lipped" "white-lippedly" ;
+lin white_livered_A = mkAMost "white-livered" "white-liveredly" ;
+lin whitebait_N = mkN "whitebait" "whitebaits" ;
+lin whitecap_N = mkN "whitecap" "whitecaps" ;
+lin whitecup_N = mkN "whitecup" "whitecups" ;
+lin whiteface_N = mkN "whiteface" "whitefaces" ;
+lin whitefish_N = mkN "whitefish" "whitefishes" ;
+lin whitefly_N = mkN "whitefly" "whiteflies" ;
+lin whitehead_N = mkN "whitehead" "whiteheads" ;
+lin whitelash_N = mkN "whitelash" "whitelashes" ;
+lin whiten_V = mkV "whiten" "whitened" "whitened" ;
+lin whiteness_N = mkN "whiteness" "whitenesses" ;
+lin whitening_N = mkN "whitening" "whitenings" ;
+lin whiteout_N = mkN "whiteout" "whiteouts" ;
+lin whitethorn_N = mkN "whitethorn" "whitethorns" ;
+lin whitewash_N = mkN "whitewash" "whitewashes" ;
+lin whitewash_V = mkV "whitewash" "whitewashed" "whitewashed" ;
+lin whitey_N = mkN "whitey" "whiteys" ;
+lin whither_Adv = mkAdv "whither" ;
+lin whithersoever_Adv = mkAdv "whithersoever" ;
+lin whiting_N = mkN "whiting" "whiting" ;
+lin whitish_A = mkAMost "whitish" "whitishly" ;
+lin whitlow_N = mkN "whitlow" "whitlows" ;
+lin whitlowwort_N = mkN "whitlowwort" "whitlowworts" ;
+lin whitsun_N = mkN "whitsun" "whitsuns" ;
+lin whitsuntide_N = mkN "whitsuntide" "whitsuntides" ;
+lin whittle_V = mkV "whittle" "whittled" "whittled" ;
+lin whittler_N = mkN "whittler" "whittlers" ;
+lin whiz_N = mkN "whiz" "whizes" ;
+lin whiz_V = mkV "whiz" "IRREG" "IRREG" ;
+lin whizbang_N = mkN "whizbang" "whizbangs" ;
+lin whizz_kid_N = mkN "whizz-kid" "whizz-kids" ;
+lin who_N = mkN "who" "whoes" ;
+lin whodunit_N = mkN "whodunit" "whodunits" ;
+lin whole_A = mkAMost "whole" "wholely" ;
+lin whole_N = mkN "whole" "wholes" ;
+lin whole_wheat_N = mkN "whole-wheat" "whole-wheats" ;
+lin wholehearted_A = mkAMost "wholehearted" "wholeheartedly" ;
+lin wholeheartedness_N = mkN "wholeheartedness" "wholeheartednesses" ;
+lin wholemeal_N = mkN "wholemeal" "wholemeals" ;
+lin wholeness_N = mkN "wholeness" "wholenesses" ;
+lin wholesale_A = mkAMost "wholesale" "wholesalely" ;
+lin wholesale_Adv = mkAdv "wholesale" ;
+lin wholesale_N = mkN "wholesale" "wholesales" ;
+lin wholesale_V = mkV "wholesale" "wholesaled" "wholesaled" ;
+lin wholesaler_N = mkN "wholesaler" "wholesalers" ;
+lin wholesome_A = mkAMost "wholesome" "wholesomely" ;
+lin wholesomeness_N = mkN "wholesomeness" "wholesomenesses" ;
+lin wholly_Adv = mkAdv "wholly" ;
+lin whoop_N = mkN "whoop" "whoops" ;
+lin whoop_V = mkV "whoop" "whooped" "whooped" ;
+lin whooper_N = mkN "whooper" "whoopers" ;
+lin whooping_cough_N = mkN "whooping-cough" "whooping-coughs" ;
+lin whop_V = mkV "whop" "whopped" "whopped" ;
+lin whopper_N = mkN "whopper" "whoppers" ;
+lin whopping_A = mkAMost "whopping" "whoppingly" ;
+lin whopping_Adv = mkAdv "whopping" ;
+lin whore_N = mkN "whore" "whores" ;
+lin whorehouse_N = mkN "whorehouse" "whorehouses" ;
+lin whoremaster_N = mkN "whoremaster" "whoremasters" ;
+lin whoremonger_N = mkN "whoremonger" "whoremongers" ;
+lin whorl_N = mkN "whorl" "whorls" ;
+lin whorled_A = mkAMost "whorled" "whorledly" ;
+lin why_N = mkN "why" "whys" ;
+lin whydah_N = mkN "whydah" "whydahs" ;
+lin wi_N = mkN "wi" "wis" ;
+lin wick_N = mkN "wick" "wicks" ;
+lin wicked_A = mkAMost "wicked" "wickedly" ;
+lin wickedness_N = mkN "wickedness" "wickednesses" ;
+lin wicker_N = mkN "wicker" "wickers" ;
+lin wickerwork_N = mkN "wickerwork" "wickerworks" ;
+lin wicket_N = mkN "wicket" "wickets" ;
+lin wicket_door_N = mkN "wicket-door" "wicket-doors" ;
+lin wicket_gate_N = mkN "wicket-gate" "wicket-gates" ;
+lin wicket_keeper_N = mkN "wicket-keeper" "wicket-keepers" ;
+lin wickiup_N = mkN "wickiup" "wickiups" ;
+lin wide_A = mkA "wide" "wider" "widest" "widely" ;
+lin wide_Adv = mkAdv "wide" ;
+lin wide_awake_A = mkAMost "wide-awake" "wide-awakely" ;
+lin widen_V = mkV "widen" "widened" "widened" ;
+lin wideness_N = mkN "wideness" "widenesses" ;
+lin widening_N = mkN "widening" "widenings" ;
+lin widespread_A = mkAMost "widespread" "widespreadly" ;
+lin widgeon_N = mkN "widgeon" "widgeons" ;
+lin widow_N = mkN "widow" "widows" ;
+lin widowed_A = mkAMost "widowed" "widowedly" ;
+lin widower_N = mkN "widower" "widowers" ;
+lin widowhood_N = mkN "widowhood" "widowhoods" ;
+lin width_N = mkN "width" "widths" ;
+lin wield_V = mkV "wield" "wielded" "wielded" ;
+lin wieldy_A = mkA "wieldy" "wieldier" "wieldiest" "wieldily" ;
+lin wiesenboden_N = mkN "wiesenboden" "wiesenbodens" ;
+lin wife_N = mkN "wife" "wives" ;
+lin wifelike_A = mkAMost "wifelike" "wifelikely" ;
+lin wifely_A = mkA "wifely" "wifelier" "wifeliest" "wifelily" ;
+lin wig_N = mkN "wig" "wigs" ;
+lin wig_V = mkV "wig" "wigged" "wigged" ;
+lin wigged_A = mkAMost "wigged" "wiggedly" ;
+lin wigging_N = mkN "wigging" "wiggings" ;
+lin wiggle_N = mkN "wiggle" "wiggles" ;
+lin wiggle_V = mkV "wiggle" "wiggled" "wiggled" ;
+lin wiggler_N = mkN "wiggler" "wigglers" ;
+lin wiggliness_N = mkN "wiggliness" "wigglinesses" ;
+lin wiggly_A = mkA "wiggly" "wigglier" "wiggliest" "wigglily" ;
+lin wight_N = mkN "wight" "wights" ;
+lin wigless_A = mkAMost "wigless" "wiglessly" ;
+lin wigmaker_N = mkN "wigmaker" "wigmakers" ;
+lin wigwam_N = mkN "wigwam" "wigwams" ;
+lin wild_A = mkA "wild" "wilder" "wildest" "wildly" ;
+lin wild_Adv = mkAdv "wild" ;
+lin wild_N = mkN "wild" "wilds" ;
+lin wildcat_A = mkAMost "wildcat" "wildcatly" ;
+lin wildcat_N = mkN "wildcat" "wildcats" ;
+lin wildcatter_N = mkN "wildcatter" "wildcatters" ;
+lin wildebeest_N = mkN "wildebeest" "wildebeests" ;
+lin wilderness_N = mkN "wilderness" "wildernesses" ;
+lin wildfire_N = mkN "wildfire" "wildfires" ;
+lin wildflower_N = mkN "wildflower" "wildflowers" ;
+lin wildfowl_N = mkN "wildfowl" "wildfowls" ;
+lin wilding_N = mkN "wilding" "wildings" ;
+lin wildlife_N = mkN "wildlife" "wildlifes" ;
+lin wildness_N = mkN "wildness" "wildnesses" ;
+lin wile_N = mkN "wile" "wiles" ;
+lin wilful_A = mkAMost "wilful" "wilfully" ;
+lin wilfulness_N = mkN "wilfulness" "wilfulnesses" ;
+lin will_N = mkN "will" "wills" ;
+lin will_V = mkV "will" "willed" "willed" ;
+lin will_o'_the_wisp_N = mkN "will-o'-the-wisp" "will-o'-the-wisps" ;
+lin willet_N = mkN "willet" "willets" ;
+lin willful_A = mkAMost "willful" "willfully" ;
+lin willies_N = mkN "willies" "willieses" ;
+lin willing_A = mkAMost "willing" "willingly" ;
+lin willingness_N = mkN "willingness" "willingnesses" ;
+lin willow_N = mkN "willow" "willows" ;
+lin willow_pattern_N = mkN "willow-pattern" "willow-patterns" ;
+lin willow_tree_N = mkN "willow-tree" "willow-trees" ;
+lin willowherb_N = mkN "willowherb" "willowherbs" ;
+lin willowware_N = mkN "willowware" "willowwares" ;
+lin willowy_A = mkAMost "willowy" "willowily" ;
+lin willpower_N = mkN "willpower" "willpowers" ;
+lin willy_nilly_Adv = mkAdv "willy-nilly" ;
+lin wilt_N = mkN "wilt" "wilts" ;
+lin wilt_V = mkV "wilt" "wilted" "wilted" ;
+lin wilton_N = mkN "wilton" "wiltons" ;
+lin wily_A = mkA "wily" "wilier" "wiliest" "wilily" ;
+lin wimp_N = mkN "wimp" "wimps" ;
+lin wimp_V = mkV "wimp" "wimped" "wimped" ;
+lin wimpish_A = mkAMost "wimpish" "wimpishly" ;
+lin wimple_N = mkN "wimple" "wimples" ;
+lin win_N = mkN "win" "wins" ;
+lin win_winned_V = mkV "win" "winned" "winned" ;
+lin win_won_V = mkV "win" "won" "won" ;
+lin wince_N = mkN "wince" "winces" ;
+lin wince_V = mkV "wince" "winced" "winced" ;
+lin wincey_N = mkN "wincey" "winceys" ;
+lin winceyette_N = mkN "winceyette" "winceyettes" ;
+lin winch_N = mkN "winch" "winches" ;
+lin winch_V = mkV "winch" "winched" "winched" ;
+lin wind_N = mkN "wind" "winds" ;
+lin wind_gauge_N = mkN "wind-gauge" "wind-gauges" ;
+lin wind_tunnel_N = mkN "wind-tunnel" "wind-tunnels" ;
+lin wind_winded_V = mkV "wind" "winded" "winded" ;
+lin wind_wound_V = mkV "wind" "wound" "wound" ;
+lin windage_N = mkN "windage" "windages" ;
+lin windbag_N = mkN "windbag" "windbags" ;
+lin windblown_A = mkAMost "windblown" "windblownly" ;
+lin windbreak_N = mkN "windbreak" "windbreaks" ;
+lin windbreaker_N = mkN "windbreaker" "windbreakers" ;
+lin windburn_N = mkN "windburn" "windburns" ;
+lin windburned_A = mkAMost "windburned" "windburnedly" ;
+lin windcheater_N = mkN "windcheater" "windcheaters" ;
+lin winder_N = mkN "winder" "winders" ;
+lin windfall_N = mkN "windfall" "windfalls" ;
+lin windflower_N = mkN "windflower" "windflowers" ;
+lin windiness_N = mkN "windiness" "windinesses" ;
+lin winding_sheet_N = mkN "winding-sheet" "winding-sheets" ;
+lin windjammer_N = mkN "windjammer" "windjammers" ;
+lin windlass_N = mkN "windlass" "windlasses" ;
+lin windless_A = mkAMost "windless" "windlessly" ;
+lin windmill_N = mkN "windmill" "windmills" ;
+lin window_N = mkN "window" "windows" ;
+lin window_box_N = mkN "window-box" "window-boxes" ;
+lin window_dressing_N = mkN "window-dressing" "window-dressings" ;
+lin windowpane_N = mkN "windowpane" "windowpanes" ;
+lin windowsill_N = mkN "windowsill" "windowsills" ;
+lin windpipe_N = mkN "windpipe" "windpipes" ;
+lin windscreen_N = mkN "windscreen" "windscreens" ;
+lin windscreen_wiper_N = mkN "windscreen-wiper" "windscreen-wipers" ;
+lin windshield_N = mkN "windshield" "windshields" ;
+lin windsock_N = mkN "windsock" "windsocks" ;
+lin windstorm_N = mkN "windstorm" "windstorms" ;
+lin windswept_A = mkAMost "windswept" "windsweptly" ;
+lin windward_A = mkAMost "windward" "windwardly" ;
+lin windward_Adv = mkAdv "windward" ;
+lin windward_N = mkN "windward" "windwards" ;
+lin windy_A = mkA "windy" "windier" "windiest" "windily" ;
+lin wine_N = mkN "wine" "wines" ;
+lin wine_V = mkV "wine" "wined" "wined" ;
+lin wineberry_N = mkN "wineberry" "wineberries" ;
+lin wineglass_N = mkN "wineglass" "wineglasses" ;
+lin winemaking_N = mkN "winemaking" "winemakings" ;
+lin winepress_N = mkN "winepress" "winepresses" ;
+lin winery_N = mkN "winery" "wineries" ;
+lin wineskin_N = mkN "wineskin" "wineskins" ;
+lin wing_N = mkN "wing" "wings" ;
+lin wing_V = mkV "wing" "winged" "winged" ;
+lin wing_commander_N = mkN "wing-commander" "wing-commanders" ;
+lin wing_nut_N = mkN "wing-nut" "wing-nuts" ;
+lin wing_screw_N = mkN "wing-screw" "wing-screws" ;
+lin wingback_N = mkN "wingback" "wingbacks" ;
+lin winger_N = mkN "winger" "wingers" ;
+lin wingless_A = mkAMost "wingless" "winglessly" ;
+lin winglike_A = mkAMost "winglike" "winglikely" ;
+lin wingman_N = mkN "wingman" "wingmen" ;
+lin wings_N = mkN "wings" "wingses" ;
+lin wingspan_N = mkN "wingspan" "wingspans" ;
+lin wingspread_N = mkN "wingspread" "wingspreads" ;
+lin wingstem_N = mkN "wingstem" "wingstems" ;
+lin wink_N = mkN "wink" "winks" ;
+lin wink_V = mkV "wink" "winked" "winked" ;
+lin winker_N = mkN "winker" "winkers" ;
+lin winkle_N = mkN "winkle" "winkles" ;
+lin winkle_V = mkV "winkle" "winkled" "winkled" ;
+lin winless_A = mkAMost "winless" "winlessly" ;
+lin winner_N = mkN "winner" "winners" ;
+lin winning_N = mkN "winning" "winnings" ;
+lin winning_post_N = mkN "winning-post" "winning-posts" ;
+lin winnings_N = mkN "winnings" "winningses" ;
+lin winnow_N = mkN "winnow" "winnows" ;
+lin winnow_V = mkV "winnow" "winnowed" "winnowed" ;
+lin winsome_A = mkAMost "winsome" "winsomely" ;
+lin winsomeness_N = mkN "winsomeness" "winsomenesses" ;
+lin winter_N = mkN "winter" "winters" ;
+lin winter_V = mkV "winter" "wintered" "wintered" ;
+lin wintergreen_N = mkN "wintergreen" "wintergreens" ;
+lin wintery_A = mkA "wintery" "winterier" "winteriest" "winterily" ;
+lin wintry_A = mkA "wintry" "wintrier" "wintriest" "wintrily" ;
+lin winy_A = mkA "winy" "winier" "winiest" "winily" ;
+lin wipe_N = mkN "wipe" "wipes" ;
+lin wipe_V = mkV "wipe" "wiped" "wiped" ;
+lin wipeout_N = mkN "wipeout" "wipeouts" ;
+lin wiper_N = mkN "wiper" "wipers" ;
+lin wire_N = mkN "wire" "wires" ;
+lin wire_V = mkV "wire" "wired" "wired" ;
+lin wire_haired_A = mkAMost "wire-haired" "wire-hairedly" ;
+lin wirehair_N = mkN "wirehair" "wirehairs" ;
+lin wireless_A = mkAMost "wireless" "wirelessly" ;
+lin wireless_N = mkN "wireless" "wirelesses" ;
+lin wireman_N = mkN "wireman" "wiremen" ;
+lin wirepuller_N = mkN "wirepuller" "wirepullers" ;
+lin wirer_N = mkN "wirer" "wirers" ;
+lin wiretap_N = mkN "wiretap" "wiretaps" ;
+lin wirework_N = mkN "wirework" "wireworks" ;
+lin wireworm_N = mkN "wireworm" "wireworms" ;
+lin wiriness_N = mkN "wiriness" "wirinesses" ;
+lin wiring_N = mkN "wiring" "wirings" ;
+lin wiry_A = mkA "wiry" "wirier" "wiriest" "wirily" ;
+lin wisdom_N = mkN "wisdom" "wisdoms" ;
+lin wisdom_tooth_N = mkN "wisdom-tooth" "wisdom-teeth" ;
+lin wise_A = mkA "wise" "wiser" "wisest" "wisely" ;
+lin wise_N = mkN "wise" "IRREG" ;
+lin wise_V = mkV "wise" "wised" "wised" ;
+lin wiseacre_N = mkN "wiseacre" "wiseacres" ;
+lin wisecrack_N = mkN "wisecrack" "wisecracks" ;
+lin wisecrack_V = mkV "wisecrack" "wisecracked" "wisecracked" ;
+lin wisent_N = mkN "wisent" "wisents" ;
+lin wish_N = mkN "wish" "wishes" ;
+lin wish_V = mkV "wish" "wished" "wished" ;
+lin wishbone_N = mkN "wishbone" "wishbones" ;
+lin wishful_A = mkAMost "wishful" "wishfully" ;
+lin wishfulness_N = mkN "wishfulness" "wishfulnesses" ;
+lin wishing_cap_N = mkN "wishing-cap" "wishing-caps" ;
+lin wishy_washy_A = mkAMost "wishy-washy" "wishy-washily" ;
+lin wisp_N = mkN "wisp" "wisps" ;
+lin wisplike_A = mkAMost "wisplike" "wisplikely" ;
+lin wispy_A = mkA "wispy" "wispier" "wispiest" "wispily" ;
+lin wisteria_N = mkN "wisteria" "wisterias" ;
+lin wistful_A = mkAMost "wistful" "wistfully" ;
+lin wistfulness_N = mkN "wistfulness" "wistfulnesses" ;
+lin wit_N = mkN "wit" "wits" ;
+lin witch_N = mkN "witch" "witches" ;
+lin witch_doctor_N = mkN "witch-doctor" "witch-doctors" ;
+lin witch_elm_N = mkN "witch-elm" "witch-elms" ;
+lin witch_hazel_N = mkN "witch-hazel" "witch-hazels" ;
+lin witch_hunt_N = mkN "witch-hunt" "witch-hunts" ;
+lin witchcraft_N = mkN "witchcraft" "witchcrafts" ;
+lin witchery_N = mkN "witchery" "witcheries" ;
+lin witchgrass_N = mkN "witchgrass" "witchgrasses" ;
+lin witching_A = mkAMost "witching" "witchingly" ;
+lin witching_N = mkN "witching" "witchings" ;
+lin witchlike_A = mkAMost "witchlike" "witchlikely" ;
+lin with_Prep = mkPrep "with" ;
+lin with_a_view_to_Prep = mkPrep "with a view to" ;
+lin with_regard_to_Prep = mkPrep "with regard to" ;
+lin with_respect_to_Prep = mkPrep "with respect to" ;
+lin withal_Adv = mkAdv "withal" ;
+lin withdraw_V = mkV "withdraw" "withdrew" "withdrawn" ;
+lin withdrawal_N = mkN "withdrawal" "withdrawals" ;
+lin withdrawer_N = mkN "withdrawer" "withdrawers" ;
+lin withe_N = mkN "withe" "withes" ;
+lin wither_V = mkV "wither" "withered" "withered" ;
+lin witheringly_Adv = mkAdv "witheringly" ;
+lin withers_N = mkN "withers" "witherses" ;
+lin withhold_V = mkV "withhold" "withheld" "withheld" ;
+lin withholder_N = mkN "withholder" "withholders" ;
+lin withholding_N = mkN "withholding" "withholdings" ;
+lin within_Prep = mkPrep "within" ;
+lin without_Prep = mkPrep "without" ;
+lin withstand_V = mkV "withstand" "withstood" "withstood" ;
+lin withstander_N = mkN "withstander" "withstanders" ;
+lin withy_N = mkN "withy" "withies" ;
+lin witless_A = mkAMost "witless" "witlessly" ;
+lin witness_N = mkN "witness" "witnesses" ;
+lin witness_V = mkV "witness" "witnessed" "witnessed" ;
+lin witness_box_N = mkN "witness-box" "witness-boxes" ;
+lin witness_stand_N = mkN "witness-stand" "witness-stands" ;
+lin wits_N = mkN "wits" "witses" ;
+lin witticism_N = mkN "witticism" "witticisms" ;
+lin witting_A = mkAMost "witting" "wittingly" ;
+lin wittol_N = mkN "wittol" "wittols" ;
+lin witty_A = mkA "witty" "wittier" "wittiest" "wittily" ;
+lin wive_V = mkV "wive" "wived" "wived" ;
+lin wizard_A = mkAMost "wizard" "wizardly" ;
+lin wizard_N = mkN "wizard" "wizards" ;
+lin wizardry_N = mkN "wizardry" "wizardries" ;
+lin wizened_A = mkAMost "wizened" "wizenedly" ;
+lin wk_N = mkN "wk" "wk" ;
+lin woad_N = mkN "woad" "woads" ;
+lin wobble_N = mkN "wobble" "wobbles" ;
+lin wobble_V = mkV "wobble" "wobbled" "wobbled" ;
+lin wobbler_N = mkN "wobbler" "wobblers" ;
+lin wobbly_A = mkA "wobbly" "wobblier" "wobbliest" "wobblily" ;
+lin woe_N = mkN "woe" "woes" ;
+lin woebegone_A = mkAMost "woebegone" "woebegonely" ;
+lin woeful_A = mkAMost "woeful" "woefully" ;
+lin wog_N = mkN "wog" "wogs" ;
+lin wok_N = mkN "wok" "woks" ;
+lin wold_N = mkN "wold" "wolds" ;
+lin wolf's_bane_N = mkN "wolf's-bane" "wolf's-banes" ;
+lin wolf_N = mkN "wolf" "wolves" ;
+lin wolf_V = mkV "wolf" "wolfed" "wolfed" ;
+lin wolf_cub_N = mkN "wolf-cub" "wolf-cubs" ;
+lin wolffish_N = mkN "wolffish" "wolffishes" ;
+lin wolfhound_N = mkN "wolfhound" "wolfhounds" ;
+lin wolfish_A = mkAMost "wolfish" "wolfishly" ;
+lin wolflike_A = mkAMost "wolflike" "wolflikely" ;
+lin wolfram_N = mkN "wolfram" "wolframs" ;
+lin wolframite_N = mkN "wolframite" "wolframites" ;
+lin wolfsbane_N = mkN "wolfsbane" "wolfsbanes" ;
+lin wollastonite_N = mkN "wollastonite" "wollastonites" ;
+lin wolverine_N = mkN "wolverine" "wolverines" ;
+lin woman_N = mkN "woman" "women" ;
+lin womanhood_N = mkN "womanhood" "womanhoods" ;
+lin womanish_A = mkAMost "womanish" "womanishly" ;
+lin womanize_V = mkV "womanize" "womanized" "womanized" ;
+lin womanizer_N = mkN "womanizer" "womanizers" ;
+lin womankind_N = mkN "womankind" "womankinds" ;
+lin womanlike_A = mkAMost "womanlike" "womanlikely" ;
+lin womanliness_N = mkN "womanliness" "womanlinesses" ;
+lin womanly_A = mkA "womanly" "womanlier" "womanliest" "womanlily" ;
+lin womb_N = mkN "womb" "wombs" ;
+lin wombat_N = mkN "wombat" "wombats" ;
+lin wonder_N = mkN "wonder" "wonders" ;
+lin wonder_V = mkV "wonder" "wondered" "wondered" ;
+lin wonder_struck_A = mkAMost "wonder-struck" "wonder-struckly" ;
+lin wonderer_N = mkN "wonderer" "wonderers" ;
+lin wonderful_A = mkAMost "wonderful" "wonderfully" ;
+lin wonderingly_Adv = mkAdv "wonderingly" ;
+lin wonderland_N = mkN "wonderland" "wonderlands" ;
+lin wonderment_N = mkN "wonderment" "wonderments" ;
+lin wonderworking_A = mkAMost "wonderworking" "wonderworkingly" ;
+lin wondrous_A = mkAMost "wondrous" "wondrously" ;
+lin wondrous_Adv = mkAdv "wondrous" ;
+lin wonky_A = mkAMost "wonky" "wonkily" ;
+lin wont_A = mkAMost "wont" "wontly" ;
+lin wont_N = mkN "wont" "wonts" ;
+lin wonted_A = mkAMost "wonted" "wontedly" ;
+lin woo_V = mkV "woo" "wooed" "wooed" ;
+lin wood_N = mkN "wood" "woods" ;
+lin wood_block_N = mkN "wood-block" "wood-blocks" ;
+lin wood_pulp_N = mkN "wood-pulp" "wood-pulps" ;
+lin woodbine_N = mkN "woodbine" "woodbines" ;
+lin woodborer_N = mkN "woodborer" "woodborers" ;
+lin woodcarver_N = mkN "woodcarver" "woodcarvers" ;
+lin woodcarving_N = mkN "woodcarving" "woodcarvings" ;
+lin woodcock_N = mkN "woodcock" "woodcocks" ;
+lin woodcraft_N = mkN "woodcraft" "woodcrafts" ;
+lin woodcut_N = mkN "woodcut" "woodcuts" ;
+lin woodcutter_N = mkN "woodcutter" "woodcutters" ;
+lin wooded_A = mkAMost "wooded" "woodedly" ;
+lin wooden_A = mkAMost "wooden" "woodenly" ;
+lin woodenheaded_A = mkAMost "woodenheaded" "woodenheadedly" ;
+lin woodenness_N = mkN "woodenness" "woodennesses" ;
+lin woodenware_N = mkN "woodenware" "woodenwares" ;
+lin woodhewer_N = mkN "woodhewer" "woodhewers" ;
+lin woodiness_N = mkN "woodiness" "woodinesses" ;
+lin woodland_N = mkN "woodland" "woodlands" ;
+lin woodlouse_N = mkN "woodlouse" "woodlice" ;
+lin woodman_N = mkN "woodman" "woodmen" ;
+lin woodpecker_N = mkN "woodpecker" "woodpeckers" ;
+lin woodpile_N = mkN "woodpile" "woodpiles" ;
+lin woodruff_N = mkN "woodruff" "woodruffs" ;
+lin woodscrew_N = mkN "woodscrew" "woodscrews" ;
+lin woodshed_N = mkN "woodshed" "woodsheds" ;
+lin woodsia_N = mkN "woodsia" "woodsias" ;
+lin woodsman_N = mkN "woodsman" "woodsmen" ;
+lin woodsy_A = mkA "woodsy" "woodsier" "woodsiest" "woodsily" ;
+lin woodwaxen_N = mkN "woodwaxen" "woodwaxens" ;
+lin woodwind_N = mkN "woodwind" "woodwinds" ;
+lin woodwork_N = mkN "woodwork" "woodworks" ;
+lin woodworker_N = mkN "woodworker" "woodworkers" ;
+lin woodworm_N = mkN "woodworm" "woodworms" ;
+lin woody_A = mkA "woody" "woodier" "woodiest" "woodily" ;
+lin wooer_N = mkN "wooer" "wooers" ;
+lin woof_N = mkN "woof" "woofs" ;
+lin woofer_N = mkN "woofer" "woofers" ;
+lin wool_N = mkN "wool" "wools" ;
+lin woolen_A = mkAMost "woolen" "woolenly" ;
+lin woolgathering_A = mkAMost "woolgathering" "woolgatheringly" ;
+lin woolgathering_N = mkN "woolgathering" "woolgatherings" ;
+lin woollen_A = mkAMost "woollen" "woollenly" ;
+lin woolly_A = mkA "woolly" "woollier" "woolliest" "woollily" ;
+lin wooly_A = mkA "wooly" "woolier" "wooliest" "woolily" ;
+lin wooly_N = mkN "wooly" "woolies" ;
+lin wop_N = mkN "wop" "wops" ;
+lin word_N = mkN "word" "words" ;
+lin word_V = mkV "word" "worded" "worded" ;
+lin word_division_N = mkN "word-division" "word-divisions" ;
+lin word_painter_N = mkN "word-painter" "word-painters" ;
+lin word_perfect_A = mkAMost "word-perfect" "word-perfectly" ;
+lin word_picture_N = mkN "word-picture" "word-pictures" ;
+lin word_splitting_N = mkN "word-splitting" "word-splittings" ;
+lin wordbook_N = mkN "wordbook" "wordbooks" ;
+lin wordiness_N = mkN "wordiness" "wordinesses" ;
+lin wording_N = mkN "wording" "IRREG" ;
+lin wordless_A = mkAMost "wordless" "wordlessly" ;
+lin wordmonger_N = mkN "wordmonger" "wordmongers" ;
+lin wordnet_N = mkN "wordnet" "wordnets" ;
+lin words_N = mkN "words" "wordses" ;
+lin wordsmith_N = mkN "wordsmith" "wordsmiths" ;
+lin wordy_A = mkA "wordy" "wordier" "wordiest" "wordily" ;
+lin work_N = mkN "work" "works" ;
+lin work_V = mkV "work" "worked" "worked" ;
+lin work_in_N = mkN "work-in" "work-ins" ;
+lin work_out_N = mkN "work-out" "work-outs" ;
+lin work_study_N = mkN "work-study" "work-studies" ;
+lin workable_A = mkAMost "workable" "workably" ;
+lin workaday_A = mkAMost "workaday" "workadaily" ;
+lin workaholic_N = mkN "workaholic" "workaholics" ;
+lin workaholism_N = mkN "workaholism" "workaholisms" ;
+lin workbag_N = mkN "workbag" "workbags" ;
+lin workbasket_N = mkN "workbasket" "workbaskets" ;
+lin workbench_N = mkN "workbench" "workbenches" ;
+lin workboard_N = mkN "workboard" "workboards" ;
+lin workbook_N = mkN "workbook" "workbooks" ;
+lin workbox_N = mkN "workbox" "workboxes" ;
+lin workday_N = mkN "workday" "workdays" ;
+lin worker_N = mkN "worker" "workers" ;
+lin workhorse_N = mkN "workhorse" "workhorses" ;
+lin workhouse_N = mkN "workhouse" "IRREG" ;
+lin working_N = mkN "working" "workings" ;
+lin working_class_A = mkAMost "working-class" "working-classly" ;
+lin working_out_N = mkN "working-out" "working-outs" ;
+lin workload_N = mkN "workload" "workloads" ;
+lin workman_N = mkN "workman" "workmen" ;
+lin workmanlike_A = mkAMost "workmanlike" "workmanlikely" ;
+lin workmanship_N = mkN "workmanship" "workmanships" ;
+lin workmate_N = mkN "workmate" "workmates" ;
+lin workpiece_N = mkN "workpiece" "workpieces" ;
+lin workplace_N = mkN "workplace" "workplaces" ;
+lin workroom_N = mkN "workroom" "workrooms" ;
+lin works_N = mkN "works" "workses" ;
+lin worksheet_N = mkN "worksheet" "worksheets" ;
+lin workshop_N = mkN "workshop" "workshops" ;
+lin workshy_A = mkAMost "workshy" "workshily" ;
+lin workspace_N = mkN "workspace" "workspaces" ;
+lin workstation_N = mkN "workstation" "workstations" ;
+lin worktable_N = mkN "worktable" "worktables" ;
+lin workwear_N = mkN "workwear" "workwears" ;
+lin workweek_N = mkN "workweek" "workweeks" ;
+lin world_N = mkN "world" "worlds" ;
+lin world_weary_A = mkAMost "world-weary" "world-wearily" ;
+lin worldliness_N = mkN "worldliness" "worldlinesses" ;
+lin worldling_N = mkN "worldling" "worldlings" ;
+lin worldly_A = mkA "worldly" "worldlier" "worldliest" "worldlily" ;
+lin worldwide_A = mkAMost "worldwide" "worldwidely" ;
+lin worm_N = mkN "worm" "worms" ;
+lin worm_V = mkV "worm" "wormed" "wormed" ;
+lin worm_eaten_A = mkAMost "worm-eaten" "worm-eatenly" ;
+lin worm_gear_N = mkN "worm-gear" "worm-gears" ;
+lin wormcast_N = mkN "wormcast" "wormcasts" ;
+lin wormhole_N = mkN "wormhole" "wormholes" ;
+lin wormwood_N = mkN "wormwood" "wormwoods" ;
+lin wormy_A = mkA "wormy" "wormier" "wormiest" "wormily" ;
+lin worriedly_Adv = mkAdv "worriedly" ;
+lin worrier_N = mkN "worrier" "worriers" ;
+lin worrisome_A = mkAMost "worrisome" "worrisomely" ;
+lin worry_N = mkN "worry" "worries" ;
+lin worry_V = mkV "worry" "worried" "worried" ;
+lin worrying_N = mkN "worrying" "worryings" ;
+lin worryingly_Adv = mkAdv "worryingly" ;
+lin worse_A = mkA "worse" "worser" "worsest" "worsely" ;
+lin worse_Adv = mkAdv "worse" ;
+lin worse_N = mkN "worse" "worses" ;
+lin worsen_V = mkV "worsen" "worsened" "worsened" ;
+lin worsening_N = mkN "worsening" "worsenings" ;
+lin worship_N = mkN "worship" "worships" ;
+lin worship_V = mkV "worship" "worshipped" "worshipped" ;
+lin worshiper_N = mkN "worshiper" "worshipers" ;
+lin worshipful_A = mkAMost "worshipful" "worshipfully" ;
+lin worshipper_N = mkN "worshipper" "worshippers" ;
+lin worst_A = mkA "worst" "worster" "worstest" "worstly" ;
+lin worst_Adv = mkAdv "worst" ;
+lin worst_N = mkN "worst" "worsts" ;
+lin worst_V = mkV "worst" "worsted" "worsted" ;
+lin worsted_N = mkN "worsted" "worsteds" ;
+lin wort_N = mkN "wort" "worts" ;
+lin worth_A = mkAMost "worth" "worthly" ;
+lin worth_N = mkN "worth" "worths" ;
+lin worth_Prep = mkPrep "worth" ;
+lin worthiness_N = mkN "worthiness" "worthinesses" ;
+lin worthless_A = mkAMost "worthless" "worthlessly" ;
+lin worthlessness_N = mkN "worthlessness" "worthlessnesses" ;
+lin worthwhile_A = mkAMost "worthwhile" "worthwhilely" ;
+lin worthwhileness_N = mkN "worthwhileness" "worthwhilenesses" ;
+lin worthy_A = mkA "worthy" "worthier" "worthiest" "worthily" ;
+lin worthy_N = mkN "worthy" "worthies" ;
+lin would_be_A = mkAMost "would-be" "would-bely" ;
+lin wound_N = mkN "wound" "wounds" ;
+lin wound_V = mkV "wound" "wounded" "wounded" ;
+lin wounded_N = mkN "wounded" "woundeds" ;
+lin woven_A = mkAMost "woven" "wovenly" ;
+lin wow_N = mkN "wow" "wows" ;
+lin wpb_N = mkN "wpb" "wpbs" ;
+lin wpm_N = mkN "wpm" "wpm" ;
+lin wrac_N = mkN "wrac" "wracs" ;
+lin wrack_N = mkN "wrack" "wracks" ;
+lin wrack_V = mkV "wrack" "wracked" "wracked" ;
+lin wraf_N = mkN "wraf" "wrafs" ;
+lin wraith_N = mkN "wraith" "wraiths" ;
+lin wrangle_N = mkN "wrangle" "wrangles" ;
+lin wrangle_V = mkV "wrangle" "wrangled" "wrangled" ;
+lin wrangler_N = mkN "wrangler" "wranglers" ;
+lin wrap_N = mkN "wrap" "wraps" ;
+lin wrap_V = mkV "wrap" "wrapped" "wrapped" ;
+lin wraparound_N = mkN "wraparound" "wraparounds" ;
+lin wrapper_N = mkN "wrapper" "wrappers" ;
+lin wrapping_N = mkN "wrapping" "wrappings" ;
+lin wrasse_N = mkN "wrasse" "wrasses" ;
+lin wrath_N = mkN "wrath" "wraths" ;
+lin wrathful_A = mkAMost "wrathful" "wrathfully" ;
+lin wreak_V = mkV "wreak" "wreaked" "wreaked" ;
+lin wreath_N = mkN "wreath" "wreaths" ;
+lin wreathe_V = mkV "wreathe" "wreathed" "wreathed" ;
+lin wreck_N = mkN "wreck" "wrecks" ;
+lin wreck_V = mkV "wreck" "wrecked" "wrecked" ;
+lin wreckage_N = mkN "wreckage" "wreckages" ;
+lin wrecker_N = mkN "wrecker" "wreckers" ;
+lin wren_N = mkN "wren" "wrens" ;
+lin wrench_N = mkN "wrench" "wrenches" ;
+lin wrench_V = mkV "wrench" "wrenched" "wrenched" ;
+lin wrest_V = mkV "wrest" "wrested" "wrested" ;
+lin wrester_N = mkN "wrester" "wresters" ;
+lin wrestle_N = mkN "wrestle" "wrestles" ;
+lin wrestle_V = mkV "wrestle" "wrestled" "wrestled" ;
+lin wrestler_N = mkN "wrestler" "wrestlers" ;
+lin wrestling_N = mkN "wrestling" "wrestlings" ;
+lin wretch_N = mkN "wretch" "wretches" ;
+lin wretched_A = mkAMost "wretched" "wretchedly" ;
+lin wretchedness_N = mkN "wretchedness" "wretchednesses" ;
+lin wrick_N = mkN "wrick" "wricks" ;
+lin wrick_V = mkV "wrick" "wricked" "wricked" ;
+lin wriggle_N = mkN "wriggle" "wriggles" ;
+lin wriggle_V = mkV "wriggle" "wriggled" "wriggled" ;
+lin wriggler_N = mkN "wriggler" "wrigglers" ;
+lin wright_N = mkN "wright" "wrights" ;
+lin wring_N = mkN "wring" "wrings" ;
+lin wring_V = mkV "wring" "wrung" "wrung" ;
+lin wringer_N = mkN "wringer" "wringers" ;
+lin wrinkle_N = mkN "wrinkle" "wrinkles" ;
+lin wrinkle_V = mkV "wrinkle" "wrinkled" "wrinkled" ;
+lin wrinkly_A = mkA "wrinkly" "wrinklier" "wrinkliest" "wrinklily" ;
+lin wrist_N = mkN "wrist" "wrists" ;
+lin wristband_N = mkN "wristband" "wristbands" ;
+lin wristlet_N = mkN "wristlet" "wristlets" ;
+lin wristwatch_N = mkN "wristwatch" "wristwatches" ;
+lin writ_N = mkN "writ" "writs" ;
+lin writ_large_A = mkAMost "writ large" "writ largely" ;
+lin write_V = mkV "write" "wrote" "written" ;
+lin write_off_N = mkN "write-off" "write-offs" ;
+lin write_up_N = mkN "write-up" "write-ups" ;
+lin writer_N = mkN "writer" "writers" ;
+lin writhe_V = mkV "writhe" "writhed" "writhed" ;
+lin writing_N = mkN "writing" "writings" ;
+lin writing_desk_N = mkN "writing-desk" "writing-desks" ;
+lin writing_ink_N = mkN "writing-ink" "writing-inks" ;
+lin writing_paper_N = mkN "writing-paper" "writing-papers" ;
+lin wrns_N = mkN "wrns" "wrnses" ;
+lin wrong_A = mkAMost "wrong" "wrongly" ;
+lin wrong_Adv = mkAdv "wrong" ;
+lin wrong_N = mkN "wrong" "wrongs" ;
+lin wrong_V = mkV "wrong" "wronged" "wronged" ;
+lin wrong_headed_A = mkAMost "wrong-headed" "wrong-headedly" ;
+lin wrongdoer_N = mkN "wrongdoer" "wrongdoers" ;
+lin wrongdoing_N = mkN "wrongdoing" "wrongdoings" ;
+lin wrongful_A = mkAMost "wrongful" "wrongfully" ;
+lin wrongheaded_A = mkAMost "wrongheaded" "wrongheadedly" ;
+lin wrongness_N = mkN "wrongness" "wrongnesses" ;
+lin wroth_A = mkAMost "wroth" "wrothly" ;
+lin wry_A = mkA "wry" "wrier" "wriest" "wrily" ;
+lin wryly_Adv = mkAdv "wryly" ;
+lin wrymouth_N = mkN "wrymouth" "wrymouths" ;
+lin wryneck_N = mkN "wryneck" "wrynecks" ;
+lin wt_N = mkN "wt" "wts" ;
+lin wulfenite_N = mkN "wulfenite" "wulfenites" ;
+lin wurtzite_N = mkN "wurtzite" "wurtzites" ;
+lin wyvern_N = mkN "wyvern" "wyverns" ;
+lin x_ray_N = mkN "x-ray" "x-rays" ;
+lin x_ray_V = mkV "x-ray" "x-rayed" "x-rayed" ;
+lin xanthate_N = mkN "xanthate" "xanthates" ;
+lin xanthelasma_N = mkN "xanthelasma" "xanthelasmas" ;
+lin xanthine_N = mkN "xanthine" "xanthines" ;
+lin xanthoma_N = mkN "xanthoma" "xanthomas" ;
+lin xanthomatosis_N = mkN "xanthomatosis" "xanthomatosises" ;
+lin xanthomonad_N = mkN "xanthomonad" "xanthomonads" ;
+lin xanthophyll_N = mkN "xanthophyll" "xanthophylls" ;
+lin xanthopsia_N = mkN "xanthopsia" "xanthopsias" ;
+lin xanthosis_N = mkN "xanthosis" "xanthosises" ;
+lin xenogeneic_A = mkAMost "xenogeneic" "xenogeneicly" ;
+lin xenolith_N = mkN "xenolith" "xenoliths" ;
+lin xenon_N = mkN "xenon" "xenons" ;
+lin xenophobia_N = mkN "xenophobia" "xenophobias" ;
+lin xenophobic_A = mkAMost "xenophobic" "xenophobicly" ;
+lin xenotime_N = mkN "xenotime" "xenotimes" ;
+lin xenotransplant_N = mkN "xenotransplant" "xenotransplants" ;
+lin xeranthemum_N = mkN "xeranthemum" "xeranthemums" ;
+lin xeric_A = mkAMost "xeric" "xericly" ;
+lin xeroderma_N = mkN "xeroderma" "xerodermas" ;
+lin xerographic_A = mkAMost "xerographic" "xerographicly" ;
+lin xerography_N = mkN "xerography" "xerographies" ;
+lin xerophthalmia_N = mkN "xerophthalmia" "xerophthalmias" ;
+lin xerophytic_A = mkAMost "xerophytic" "xerophyticly" ;
+lin xeroradiography_N = mkN "xeroradiography" "xeroradiographies" ;
+lin xerostomia_N = mkN "xerostomia" "xerostomias" ;
+lin xerox_N = mkN "xerox" "xeroxes" ;
+lin xerox_V = mkV "xerox" "xeroxed" "xeroxed" ;
+lin xi_N = mkN "xi" "xis" ;
+lin xmas_N = mkN "xmas" "xmases" ;
+lin xylem_N = mkN "xylem" "xylems" ;
+lin xylene_N = mkN "xylene" "xylenes" ;
+lin xylophone_N = mkN "xylophone" "xylophones" ;
+lin xylophonist_N = mkN "xylophonist" "xylophonists" ;
+lin xylosma_N = mkN "xylosma" "xylosmas" ;
+lin yacca_N = mkN "yacca" "yaccas" ;
+lin yacht_N = mkN "yacht" "yachts" ;
+lin yacht_V = mkV "yacht" "yachted" "yachted" ;
+lin yacht_club_N = mkN "yacht-club" "yacht-clubs" ;
+lin yachting_N = mkN "yachting" "yachtings" ;
+lin yachtsman_N = mkN "yachtsman" "yachtsmen" ;
+lin yack_V = mkV "yack" "yacked" "yacked" ;
+lin yagi_N = mkN "yagi" "yagis" ;
+lin yahoo_N = mkN "yahoo" "yahoos" ;
+lin yak_N = mkN "yak" "yaks" ;
+lin yak_V = mkV "yak" "yaked" "yaked" ;
+lin yakuza_N = mkN "yakuza" "yakuzas" ;
+lin yam_N = mkN "yam" "yams" ;
+lin yammer_V = mkV "yammer" "yammered" "yammered" ;
+lin yang_N = mkN "yang" "yangs" ;
+lin yank_N = mkN "yank" "yanks" ;
+lin yank_V = mkV "yank" "yanked" "yanked" ;
+lin yankee_N = mkN "yankee" "yankees" ;
+lin yanker_N = mkN "yanker" "yankers" ;
+lin yap_N = mkN "yap" "yaps" ;
+lin yap_V = mkV "yap" "yapped" "yapped" ;
+lin yard_N = mkN "yard" "yards" ;
+lin yard_measure_N = mkN "yard-measure" "yard-measures" ;
+lin yardage_N = mkN "yardage" "yardages" ;
+lin yardarm_N = mkN "yardarm" "yardarms" ;
+lin yarder_N = mkN "yarder" "yarders" ;
+lin yardgrass_N = mkN "yardgrass" "yardgrasses" ;
+lin yardie_N = mkN "yardie" "yardies" ;
+lin yardman_N = mkN "yardman" "yardmans" ;
+lin yardmaster_N = mkN "yardmaster" "yardmasters" ;
+lin yardstick_N = mkN "yardstick" "yardsticks" ;
+lin yarmulke_N = mkN "yarmulke" "yarmulkes" ;
+lin yarn_N = mkN "yarn" "yarns" ;
+lin yarn_V = mkV "yarn" "yarned" "yarned" ;
+lin yarrow_N = mkN "yarrow" "yarrows" ;
+lin yashmak_N = mkN "yashmak" "yashmaks" ;
+lin yataghan_N = mkN "yataghan" "yataghans" ;
+lin yautia_N = mkN "yautia" "yautias" ;
+lin yaw_N = mkN "yaw" "yaws" ;
+lin yaw_V = mkV "yaw" "yawed" "yawed" ;
+lin yawl_N = mkN "yawl" "yawls" ;
+lin yawn_N = mkN "yawn" "yawns" ;
+lin yawn_V = mkV "yawn" "yawned" "yawned" ;
+lin yawner_N = mkN "yawner" "yawners" ;
+lin yaws_N = mkN "yaws" "yawses" ;
+lin yea_Adv = mkAdv "yea" ;
+lin yea_N = mkN "yea" "yeas" ;
+lin year_N = mkN "year" "years" ;
+lin yearbook_N = mkN "yearbook" "yearbooks" ;
+lin yearling_N = mkN "yearling" "yearlings" ;
+lin yearlong_A = mkAMost "yearlong" "yearlongly" ;
+lin yearly_A = mkAMost "yearly" "yearlily" ;
+lin yearly_Adv = mkAdv "yearly" ;
+lin yearn_V = mkV "yearn" "yearned" "yearned" ;
+lin yearning_N = mkN "yearning" "yearnings" ;
+lin yearningly_Adv = mkAdv "yearningly" ;
+lin yeast_N = mkN "yeast" "yeasts" ;
+lin yeasty_A = mkA "yeasty" "yeastier" "yeastiest" "yeastily" ;
+lin yell_N = mkN "yell" "yells" ;
+lin yell_V = mkV "yell" "yelled" "yelled" ;
+lin yelling_N = mkN "yelling" "yellings" ;
+lin yellow_A = mkA "yellow" "yellower" "yellowest" "yellowly" ;
+lin yellow_N = mkN "yellow" "yellows" ;
+lin yellow_V = mkV "yellow" "yellowed" "yellowed" ;
+lin yellow_bellied_A = mkAMost "yellow-bellied" "yellow-belliedly" ;
+lin yellow_flag_N = mkN "yellow-flag" "yellow-flags" ;
+lin yellowcake_N = mkN "yellowcake" "yellowcakes" ;
+lin yellowfin_N = mkN "yellowfin" "yellowfins" ;
+lin yellowhammer_N = mkN "yellowhammer" "yellowhammers" ;
+lin yellowish_A = mkAMost "yellowish" "yellowishly" ;
+lin yellowlegs_N = mkN "yellowlegs" "yellowlegses" ;
+lin yellowness_N = mkN "yellowness" "yellownesses" ;
+lin yellowtail_N = mkN "yellowtail" "yellowtails" ;
+lin yellowthroat_N = mkN "yellowthroat" "yellowthroats" ;
+lin yellowwood_N = mkN "yellowwood" "yellowwoods" ;
+lin yelp_V = mkV "yelp" "yelped" "yelped" ;
+lin yemeni_A = mkAMost "yemeni" "yemenily" ;
+lin yemeni_N = mkN "yemeni" "yemenis" ;
+lin yen_N = mkN "yen" "yen" ;
+lin yen_V = mkV "yen" "yenned" "yenned" ;
+lin yenta_N = mkN "yenta" "yentas" ;
+lin yeoman_N = mkN "yeoman" "yeomen" ;
+lin yeomanry_N = mkN "yeomanry" "yeomanries" ;
+lin yeshiva_N = mkN "yeshiva" "yeshivas" ;
+lin yesterday_Adv = mkAdv "yesterday" ;
+lin yesterday_N = mkN "yesterday" "yesterdays" ;
+lin yet_Adv = mkAdv "yet" ;
+lin yeti_N = mkN "yeti" "yetis" ;
+lin yew_N = mkN "yew" "yews" ;
+lin yew_tree_N = mkN "yew-tree" "yew-trees" ;
+lin yha_N = mkN "yha" "yhas" ;
+lin yiddish_N = mkN "yiddish" "yiddishes" ;
+lin yield_N = mkN "yield" "yields" ;
+lin yield_V = mkV "yield" "yielded" "yielded" ;
+lin yin_N = mkN "yin" "yins" ;
+lin yip_N = mkN "yip" "yips" ;
+lin yips_N = mkN "yips" "yipses" ;
+lin ylem_N = mkN "ylem" "ylems" ;
+lin ymca_N = mkN "ymca" "ymcas" ;
+lin yo_yo_N = mkN "yo-yo" "yo-yos" ;
+lin yob_N = mkN "yob" "yobs" ;
+lin yobibit_N = mkN "yobibit" "yobibits" ;
+lin yobo_N = mkN "yobo" "yobos" ;
+lin yodel_N = mkN "yodel" "yodels" ;
+lin yodel_V = mkV "yodel" "yodelled" "yodelled" ;
+lin yodeling_N = mkN "yodeling" "yodelings" ;
+lin yodeller_N = mkN "yodeller" "yodellers" ;
+lin yodh_N = mkN "yodh" "yodhs" ;
+lin yoga_N = mkN "yoga" "yogas" ;
+lin yoghourt_N = mkN "yoghourt" "yoghourts" ;
+lin yoghurt_N = mkN "yoghurt" "yoghurts" ;
+lin yogi_N = mkN "yogi" "yogis" ;
+lin yogistic_A = mkAMost "yogistic" "yogisticly" ;
+lin yogurt_N = mkN "yogurt" "yogurts" ;
+lin yoke_N = mkN "yoke" "yokes" ;
+lin yoke_V = mkV "yoke" "yoked" "yoked" ;
+lin yokel_N = mkN "yokel" "yokels" ;
+lin yolk_N = mkN "yolk" "yolks" ;
+lin yon_A = mkAMost "yon" "yonly" ;
+lin yon_Adv = mkAdv "yon" ;
+lin yonder_A = mkAMost "yonder" "yonderly" ;
+lin yonder_Adv = mkAdv "yonder" ;
+lin yore_N = mkN "yore" "yores" ;
+lin yottabit_N = mkN "yottabit" "yottabits" ;
+lin yottabyte_N = mkN "yottabyte" "yottabytes" ;
+lin young_A = mkA "young" "younger" "youngest" "youngly" ;
+lin young_N = mkN "young" "youngs" ;
+lin younger_A = mkAMost "younger" "youngerly" ;
+lin youngish_A = mkAMost "youngish" "youngishly" ;
+lin youngness_N = mkN "youngness" "youngnesses" ;
+lin youngster_N = mkN "youngster" "youngsters" ;
+lin youth_N = mkN "youth" "youths" ;
+lin youthful_A = mkAMost "youthful" "youthfully" ;
+lin youthfulness_N = mkN "youthfulness" "youthfulnesses" ;
+lin yowl_V = mkV "yowl" "yowled" "yowled" ;
+lin yr_N = mkN "yr" "yrs" ;
+lin ytterbium_N = mkN "ytterbium" "ytterbiums" ;
+lin yttrium_N = mkN "yttrium" "yttriums" ;
+lin yuan_N = mkN "yuan" "yuans" ;
+lin yucca_N = mkN "yucca" "yuccas" ;
+lin yugoslav_A = mkAMost "yugoslav" "yugoslavly" ;
+lin yugoslav_N = mkN "yugoslav" "yugoslavs" ;
+lin yugoslavian_A = mkAMost "yugoslavian" "yugoslavianly" ;
+lin yugoslavian_N = mkN "yugoslavian" "yugoslavians" ;
+lin yule_N = mkN "yule" "yules" ;
+lin yule_log_N = mkN "yule-log" "yule-logs" ;
+lin yuletide_N = mkN "yuletide" "yuletides" ;
+lin yuppie_N = mkN "yuppie" "yuppies" ;
+lin yurt_N = mkN "yurt" "yurts" ;
+lin ywca_N = mkN "ywca" "ywcas" ;
+lin zabaglione_N = mkN "zabaglione" "zabagliones" ;
+lin zaire_N = mkN "zaire" "zaires" ;
+lin zairean_A = mkAMost "zairean" "zaireanly" ;
+lin zairean_N = mkN "zairean" "zaireans" ;
+lin zakat_N = mkN "zakat" "zakats" ;
+lin zambian_A = mkAMost "zambian" "zambianly" ;
+lin zambian_N = mkN "zambian" "zambians" ;
+lin zamia_N = mkN "zamia" "zamias" ;
+lin zany_A = mkA "zany" "zanier" "zaniest" "zanily" ;
+lin zany_N = mkN "zany" "zanies" ;
+lin zap_N = mkN "zap" "zaps" ;
+lin zap_V = mkV "zap" "zapped" "zapped" ;
+lin zapper_N = mkN "zapper" "zappers" ;
+lin zarf_N = mkN "zarf" "zarfs" ;
+lin zayin_N = mkN "zayin" "zayins" ;
+lin zeal_N = mkN "zeal" "zeals" ;
+lin zealander_A = mkAMost "zealander" "zealanderly" ;
+lin zealander_N = mkN "zealander" "zealanders" ;
+lin zealot_N = mkN "zealot" "zealots" ;
+lin zealotry_N = mkN "zealotry" "zealotries" ;
+lin zealous_A = mkAMost "zealous" "zealously" ;
+lin zeaxanthin_N = mkN "zeaxanthin" "zeaxanthins" ;
+lin zebibit_N = mkN "zebibit" "zebibits" ;
+lin zebra_N = mkN "zebra" "zebras" ;
+lin zebrawood_N = mkN "zebrawood" "zebrawoods" ;
+lin zebu_N = mkN "zebu" "zebus" ;
+lin zee_N = mkN "zee" "zees" ;
+lin zen_N = mkN "zen" "zens" ;
+lin zenith_N = mkN "zenith" "zeniths" ;
+lin zenithal_A = mkAMost "zenithal" "zenithally" ;
+lin zeolite_N = mkN "zeolite" "zeolites" ;
+lin zephyr_N = mkN "zephyr" "zephyrs" ;
+lin zeppelin_N = mkN "zeppelin" "zeppelins" ;
+lin zero_A = mkA "zero" "zeroer" "zeroest" "zeroly" ;
+lin zero_N = mkN "zero" "zeros" ;
+lin zero_V = mkV "zero" "zeroed" "zeroed" ;
+lin zeroth_A = mkAMost "zeroth" "zerothly" ;
+lin zest_N = mkN "zest" "zests" ;
+lin zestful_A = mkAMost "zestful" "zestfully" ;
+lin zeta_N = mkN "zeta" "zetas" ;
+lin zettabit_N = mkN "zettabit" "zettabits" ;
+lin zettabyte_N = mkN "zettabyte" "zettabytes" ;
+lin zeugma_N = mkN "zeugma" "zeugmas" ;
+lin zidovudine_N = mkN "zidovudine" "zidovudines" ;
+lin ziggurat_N = mkN "ziggurat" "ziggurats" ;
+lin zigzag_A = mkAMost "zigzag" "zigzagly" ;
+lin zigzag_Adv = mkAdv "zigzag" ;
+lin zigzag_N = mkN "zigzag" "zigzags" ;
+lin zigzag_V = mkV "zigzag" "zigzagged" "zigzagged" ;
+lin zill_N = mkN "zill" "zills" ;
+lin zillion_A = mkAMost "zillion" "zillionly" ;
+lin zinc_N = mkN "zinc" "zincs" ;
+lin zinfandel_N = mkN "zinfandel" "zinfandels" ;
+lin zing_N = mkN "zing" "zings" ;
+lin zinger_N = mkN "zinger" "zingers" ;
+lin zinkenite_N = mkN "zinkenite" "zinkenites" ;
+lin zinnia_N = mkN "zinnia" "zinnias" ;
+lin zinnwaldite_N = mkN "zinnwaldite" "zinnwaldites" ;
+lin zion_N = mkN "zion" "zions" ;
+lin zionism_N = mkN "zionism" "zionisms" ;
+lin zionist_A = mkAMost "zionist" "zionistly" ;
+lin zionist_N = mkN "zionist" "zionists" ;
+lin zip_N = mkN "zip" "zips" ;
+lin zip_V = mkV "zip" "zipped" "zipped" ;
+lin zip_code_N = mkN "zip code" "zip codes" ;
+lin zip_fastener_N = mkN "zip-fastener" "zip-fasteners" ;
+lin zipper_N = mkN "zipper" "zippers" ;
+lin zircon_N = mkN "zircon" "zircons" ;
+lin zirconium_N = mkN "zirconium" "zirconiums" ;
+lin zither_N = mkN "zither" "zithers" ;
+lin ziti_N = mkN "ziti" "zitis" ;
+lin zizz_N = mkN "zizz" "zizzes" ;
+lin zloty_N = mkN "zloty" "zlotys" ;
+lin zoanthropy_N = mkN "zoanthropy" "zoanthropies" ;
+lin zodiac_N = mkN "zodiac" "zodiacs" ;
+lin zodiacal_A = mkAMost "zodiacal" "zodiacally" ;
+lin zoic_A = mkA "zoic" "zoicer" "zoicest" "zoicly" ;
+lin zombi_N = mkN "zombi" "zombis" ;
+lin zombie_N = mkN "zombie" "zombies" ;
+lin zonal_A = mkAMost "zonal" "zonally" ;
+lin zone_N = mkN "zone" "zones" ;
+lin zone_V = mkV "zone" "zoned" "zoned" ;
+lin zoning_N = mkN "zoning" "zonings" ;
+lin zonk_V = mkV "zonk" "zonked" "zonked" ;
+lin zonule_N = mkN "zonule" "zonules" ;
+lin zoo_N = mkN "zoo" "zoos" ;
+lin zooid_N = mkN "zooid" "zooids" ;
+lin zoolatry_N = mkN "zoolatry" "zoolatries" ;
+lin zoological_A = mkAMost "zoological" "zoologically" ;
+lin zoologist_N = mkN "zoologist" "zoologists" ;
+lin zoology_N = mkN "zoology" "zoologies" ;
+lin zoom_N = mkN "zoom" "zooms" ;
+lin zoom_V = mkV "zoom" "zoomed" "zoomed" ;
+lin zoomastigote_N = mkN "zoomastigote" "zoomastigotes" ;
+lin zoomorphism_N = mkN "zoomorphism" "zoomorphisms" ;
+lin zoonosis_N = mkN "zoonosis" "zoonosises" ;
+lin zoonotic_A = mkAMost "zoonotic" "zoonoticly" ;
+lin zoophilia_N = mkN "zoophilia" "zoophilias" ;
+lin zoophobia_N = mkN "zoophobia" "zoophobias" ;
+lin zoophyte_N = mkN "zoophyte" "zoophytes" ;
+lin zooplankton_N = mkN "zooplankton" "zooplanktons" ;
+lin zoopsia_N = mkN "zoopsia" "zoopsias" ;
+lin zoospore_N = mkN "zoospore" "zoospores" ;
+lin zoot_suit_N = mkN "zoot suit" "zoot suits" ;
+lin zoril_N = mkN "zoril" "zorils" ;
+lin zoysia_N = mkN "zoysia" "zoysias" ;
+lin zucchini_N = mkN "zucchini" "zucchini" ;
+lin zwieback_N = mkN "zwieback" "zwiebacks" ;
+lin zydeco_N = mkN "zydeco" "zydecoes" ;
+lin zygodactyl_A = mkAMost "zygodactyl" "zygodactylly" ;
+lin zygoma_N = mkN "zygoma" "zygomas" ;
+lin zygomatic_A = mkAMost "zygomatic" "zygomaticly" ;
+lin zygomorphic_A = mkAMost "zygomorphic" "zygomorphicly" ;
+lin zygospore_N = mkN "zygospore" "zygospores" ;
+lin zygote_N = mkN "zygote" "zygotes" ;
+lin zygotene_N = mkN "zygotene" "zygotenes" ;
+lin zygotic_A = mkAMost "zygotic" "zygoticly" ;
+lin zymase_N = mkN "zymase" "zymases" ;
+lin zymoid_A = mkAMost "zymoid" "zymoidly" ;
+lin zymology_N = mkN "zymology" "zymologies" ;
+lin zymosis_N = mkN "zymosis" "zymosises" ;
+lin zymotic_A = mkAMost "zymotic" "zymoticly" ;
+lin à_la_carte_Adv = mkAdv "à la carte" ;
+lin à_la_mode_Adv = mkAdv "à la mode" ;
+lin éclair_N = mkN "éclair" "éclairs" ;
+lin éclat_N = mkN "éclat" "éclats" ;
+lin élan_N = mkN "élan" "élans" ;
+lin élite_N = mkN "élite" "élites" ;
+lin émigré_N = mkN "émigré" "émigrés" ;
+lin épée_N = mkN "épée" "épées" ;
}
\ No newline at end of file
diff --git a/src/morphodict/MorphoDictEng.header b/src/morphodict/MorphoDictEng.header
index 5dd790bb..3615e291 100644
--- a/src/morphodict/MorphoDictEng.header
+++ b/src/morphodict/MorphoDictEng.header
@@ -1,3 +1,4 @@
+--# -path=.:alltenses
concrete MorphoDictEng of MorphoDictEngAbs =
CatEng [N,A,V,Adv,Prep] **
open
@@ -5,3 +6,6 @@ concrete MorphoDictEng of MorphoDictEngAbs =
in
{
+oper mkAMost : Str -> Str -> A = \ajar,ly -> mkA ajar ("more" ++ ajar) ("most" ++ ajar) ly ;
+
+
diff --git a/src/morphodict/MorphoDictEngAbs.gf b/src/morphodict/MorphoDictEngAbs.gf
index d3edf285..85e1f517 100644
--- a/src/morphodict/MorphoDictEngAbs.gf
+++ b/src/morphodict/MorphoDictEngAbs.gf
@@ -2,56603 +2,56602 @@ abstract MorphoDictEngAbs =
Cat [N,A,V,Adv,Prep] **
{
-fun 'd.o.a._A' : A ;
-fun 'la-di-da_A' : A ;
-fun 'deep-sea_A' : A ;
-fun undersea_A : A ;
-fun oversea_A : A ;
-fun gaga_A : A ;
-fun 'ex gratia_A' : A ;
-fun pukka_A : A ;
-fun umbrella_A : A ;
-fun vanilla_A : A ;
-fun pyjama_A : A ;
-fun prima_A : A ;
-fun 'pro forma_A' : A ;
-fun tswana_A : A ;
-fun extra_A : A ;
-fun magenta_A : A ;
-fun alpha_A : A ;
-fun beta_A : A ;
-fun fab_A : A ;
-fun prefab_A : A ;
-fun 'ad-lib_A' : A ;
-fun numb_A : A ;
-fun 'odd-job_A' : A ;
-fun acerb_A : A ;
-fun superb_A : A ;
-fun snub_A : A ;
-fun drab_A : A ;
-fun squab_A : A ;
-fun glib_A : A ;
-fun dumb_A : A ;
-fun plumb_A : A ;
-fun scrub_A : A ;
-fun cardiac_A : A ;
-fun elegiac_A : A ;
-fun celiac_A : A ;
-fun coeliac_A : A ;
-fun iliac_A : A ;
-fun nymphomaniac_A : A ;
-fun insomniac_A : A ;
-fun demoniac_A : A ;
-fun ammoniac_A : A ;
-fun hypochondriac_A : A ;
-fun paradisiac_A : A ;
-fun aphrodisiac_A : A ;
-fun anaphrodisiac_A : A ;
-fun spondaic_A : A ;
-fun judaic_A : A ;
-fun trochaic_A : A ;
-fun archaic_A : A ;
-fun laic_A : A ;
-fun formulaic_A : A ;
-fun romaic_A : A ;
-fun apotropaic_A : A ;
-fun algebraic_A : A ;
-fun hebraic_A : A ;
-fun choleraic_A : A ;
-fun mithraic_A : A ;
-fun pharisaic_A : A ;
-fun mosaic_A : A ;
-fun prosaic_A : A ;
-fun voltaic_A : A ;
-fun photovoltaic_A : A ;
-fun syllabic_A : A ;
-fun decasyllabic_A : A ;
-fun pentasyllabic_A : A ;
-fun disyllabic_A : A ;
-fun nonsyllabic_A : A ;
-fun unsyllabic_A : A ;
-fun monosyllabic_A : A ;
-fun octosyllabic_A : A ;
-fun polysyllabic_A : A ;
-fun Arabic_A : A ;
-fun amoebic_A : A ;
-fun iambic_A : A ;
-fun dithyrambic_A : A ;
-fun limbic_A : A ;
-fun rhombic_A : A ;
-fun plumbic_A : A ;
-fun phobic_A : A ;
-fun triskaidekaphobic_A : A ;
-fun agoraphobic_A : A ;
-fun oleophobic_A : A ;
-fun algophobic_A : A ;
-fun homophobic_A : A ;
-fun xenophobic_A : A ;
-fun technophobic_A : A ;
-fun acrophobic_A : A ;
-fun hydrophobic_A : A ;
-fun claustrophobic_A : A ;
-fun mysophobic_A : A ;
-fun katharobic_A : A ;
-fun aerobic_A : A ;
-fun anaerobic_A : A ;
-fun saprobic_A : A ;
-fun ascorbic_A : A ;
-fun cubic_A : A ;
-fun pubic_A : A ;
-fun cherubic_A : A ;
-fun boracic_A : A ;
-fun alopecic_A : A ;
-fun calcic_A : A ;
-fun saccadic_A : A ;
-fun nomadic_A : A ;
-fun nonnomadic_A : A ;
-fun sporadic_A : A ;
-fun dyadic_A : A ;
-fun orthopaedic_A : A ;
-fun encyclopaedic_A : A ;
-fun orthopedic_A : A ;
-fun encyclopedic_A : A ;
-fun acidic_A : A ;
-fun bromidic_A : A ;
-fun iridic_A : A ;
-fun heraldic_A : A ;
-fun icelandic_A : A ;
-fun ergodic_A : A ;
-fun cathodic_A : A ;
-fun periodic_A : A ;
-fun aperiodic_A : A ;
-fun melodic_A : A ;
-fun spasmodic_A : A ;
-fun anodic_A : A ;
-fun monodic_A : A ;
-fun episodic_A : A ;
-fun prosodic_A : A ;
-fun bardic_A : A ;
-fun nordic_A : A ;
-fun aldehydic_A : A ;
-fun amenorrheic_A : A ;
-fun nucleic_A : A ;
-fun allogeneic_A : A ;
-fun xenogeneic_A : A ;
-fun apneic_A : A ;
-fun onomatopoeic_A : A ;
-fun malefic_A : A ;
-fun benefic_A : A ;
-fun pacific_A : A ;
-fun conspecific_A : A ;
-fun nonspecific_A : A ;
-fun unspecific_A : A ;
-fun calcific_A : A ;
-fun fibrocalcific_A : A ;
-fun deific_A : A ;
-fun prolific_A : A ;
-fun chylific_A : A ;
-fun frigorific_A : A ;
-fun calorific_A : A ;
-fun honorific_A : A ;
-fun vaporific_A : A ;
-fun soporific_A : A ;
-fun terrific_A : A ;
-fun horrific_A : A ;
-fun beatific_A : A ;
-fun scientific_A : A ;
-fun unscientific_A : A ;
-fun pseudoscientific_A : A ;
-fun salvific_A : A ;
-fun specific_A : A ;
-fun bacteriophagic_A : A ;
-fun hemorrhagic_A : A ;
-fun archipelagic_A : A ;
-fun magic_A : A ;
-fun choragic_A : A ;
-fun tragic_A : A ;
-fun paraplegic_A : A ;
-fun strategic_A : A ;
-fun geostrategic_A : A ;
-fun arthralgic_A : A ;
-fun neuralgic_A : A ;
-fun nostalgic_A : A ;
-fun myalgic_A : A ;
-fun pedagogic_A : A ;
-fun demagogic_A : A ;
-fun anagogic_A : A ;
-fun genealogic_A : A ;
-fun rheologic_A : A ;
-fun morphologic_A : A ;
-fun geomorphologic_A : A ;
-fun sociobiologic_A : A ;
-fun agrobiologic_A : A ;
-fun cardiologic_A : A ;
-fun epidemiologic_A : A ;
-fun physiologic_A : A ;
-fun homologic_A : A ;
-fun cosmologic_A : A ;
-fun serologic_A : A ;
-fun agrologic_A : A ;
-fun meteorologic_A : A ;
-fun hematologic_A : A ;
-fun dermatologic_A : A ;
-fun lethargic_A : A ;
-fun allergic_A : A ;
-fun adrenergic_A : A ;
-fun antiadrenergic_A : A ;
-fun cholinergic_A : A ;
-fun anticholinergic_A : A ;
-fun asynergic_A : A ;
-fun endoergic_A : A ;
-fun exoergic_A : A ;
-fun dramaturgic_A : A ;
-fun chic_A : A ;
-fun synecdochic_A : A ;
-fun oligarchic_A : A ;
-fun matriarchic_A : A ;
-fun patriarchic_A : A ;
-fun anarchic_A : A ;
-fun monarchic_A : A ;
-fun hierarchic_A : A ;
-fun autarchic_A : A ;
-fun psychic_A : A ;
-fun seraphic_A : A ;
-fun graphic_A : A ;
-fun agraphic_A : A ;
-fun telegraphic_A : A ;
-fun calligraphic_A : A ;
-fun lexicographic_A : A ;
-fun ideographic_A : A ;
-fun geographic_A : A ;
-fun biogeographic_A : A ;
-fun choreographic_A : A ;
-fun lithographic_A : A ;
-fun orthographic_A : A ;
-fun biographic_A : A ;
-fun autobiographic_A : A ;
-fun radiographic_A : A ;
-fun autoradiographic_A : A ;
-fun idiographic_A : A ;
-fun cardiographic_A : A ;
-fun electrocardiographic_A : A ;
-fun bibliographic_A : A ;
-fun electroencephalographic_A : A ;
-fun allographic_A : A ;
-fun bolographic_A : A ;
-fun holographic_A : A ;
-fun demographic_A : A ;
-fun anemographic_A : A ;
-fun planographic_A : A ;
-fun roentgenographic_A : A ;
-fun stenographic_A : A ;
-fun ethnographic_A : A ;
-fun pornographic_A : A ;
-fun typographic_A : A ;
-fun barographic_A : A ;
-fun polarographic_A : A ;
-fun hydrographic_A : A ;
-fun xerographic_A : A ;
-fun spectrographic_A : A ;
-fun pyrographic_A : A ;
-fun chromatographic_A : A ;
-fun pictographic_A : A ;
-fun photographic_A : A ;
-fun cartographic_A : A ;
-fun autographic_A : A ;
-fun delphic_A : A ;
-fun trophic_A : A ;
-fun atrophic_A : A ;
-fun heterotrophic_A : A ;
-fun autotrophic_A : A ;
-fun catastrophic_A : A ;
-fun antistrophic_A : A ;
-fun apostrophic_A : A ;
-fun eutrophic_A : A ;
-fun philosophic_A : A ;
-fun sapphic_A : A ;
-fun anamorphic_A : A ;
-fun metamorphic_A : A ;
-fun nonmetamorphic_A : A ;
-fun dimorphic_A : A ;
-fun epimorphic_A : A ;
-fun endomorphic_A : A ;
-fun pleomorphic_A : A ;
-fun zygomorphic_A : A ;
-fun allomorphic_A : A ;
-fun actinomorphic_A : A ;
-fun anthropomorphic_A : A ;
-fun gynandromorphic_A : A ;
-fun mesomorphic_A : A ;
-fun ectomorphic_A : A ;
-fun polymorphic_A : A ;
-fun anaglyphic_A : A ;
-fun hieroglyphic_A : A ;
-fun pyrrhic_A : A ;
-fun telepathic_A : A ;
-fun empathic_A : A ;
-fun homeopathic_A : A ;
-fun psychopathic_A : A ;
-fun sociopathic_A : A ;
-fun idiopathic_A : A ;
-fun allopathic_A : A ;
-fun hydropathic_A : A ;
-fun myopathic_A : A ;
-fun lithic_A : A ;
-fun megalithic_A : A ;
-fun epilithic_A : A ;
-fun eolithic_A : A ;
-fun palaeolithic_A : A ;
-fun paleolithic_A : A ;
-fun neolithic_A : A ;
-fun batholithic_A : A ;
-fun monolithic_A : A ;
-fun mesolithic_A : A ;
-fun benthic_A : A ;
-fun gothic_A : A ;
-fun anacoluthic_A : A ;
-fun bismuthic_A : A ;
-fun mythic_A : A ;
-fun aphakic_A : A ;
-fun autarkic_A : A ;
-fun cannibalic_A : A ;
-fun vocalic_A : A ;
-fun scalic_A : A ;
-fun acromegalic_A : A ;
-fun cytomegalic_A : A ;
-fun cephalic_A : A ;
-fun anencephalic_A : A ;
-fun macrencephalic_A : A ;
-fun dolichocephalic_A : A ;
-fun macrocephalic_A : A ;
-fun microcephalic_A : A ;
-fun hydrocephalic_A : A ;
-fun brachycephalic_A : A ;
-fun italic_A : A ;
-fun public_A : A ;
-fun semipublic_A : A ;
-fun nonpublic_A : A ;
-fun cyclic_A : A ;
-fun acyclic_A : A ;
-fun bicyclic_A : A ;
-fun epicyclic_A : A ;
-fun noncyclic_A : A ;
-fun carbocyclic_A : A ;
-fun homocyclic_A : A ;
-fun heterocyclic_A : A ;
-fun gaelic_A : A ;
-fun psychedelic_A : A ;
-fun angelic_A : A ;
-fun archangelic_A : A ;
-fun parhelic_A : A ;
-fun allelic_A : A ;
-fun blastocoelic_A : A ;
-fun philatelic_A : A ;
-fun aerophilatelic_A : A ;
-fun autotelic_A : A ;
-fun myelic_A : A ;
-fun acidophilic_A : A ;
-fun oleophilic_A : A ;
-fun bibliophilic_A : A ;
-fun haemophilic_A : A ;
-fun technophilic_A : A ;
-fun eosinophilic_A : A ;
-fun lipophilic_A : A ;
-fun hydrophilic_A : A ;
-fun basophilic_A : A ;
-fun exilic_A : A ;
-fun postexilic_A : A ;
-fun gallic_A : A ;
-fun pyrogallic_A : A ;
-fun phallic_A : A ;
-fun metallic_A : A ;
-fun bimetallic_A : A ;
-fun nonmetallic_A : A ;
-fun monometallic_A : A ;
-fun cyrillic_A : A ;
-fun idyllic_A : A ;
-fun diabolic_A : A ;
-fun anabolic_A : A ;
-fun parabolic_A : A ;
-fun catabolic_A : A ;
-fun metabolic_A : A ;
-fun ametabolic_A : A ;
-fun holometabolic_A : A ;
-fun shambolic_A : A ;
-fun embolic_A : A ;
-fun symbolic_A : A ;
-fun carbolic_A : A ;
-fun hyperbolic_A : A ;
-fun bucolic_A : A ;
-fun melancholic_A : A ;
-fun alcoholic_A : A ;
-fun nonalcoholic_A : A ;
-fun Catholic_A : A ;
-fun 'anglo-catholic_A' : A ;
-fun vitriolic_A : A ;
-fun enolic_A : A ;
-fun bibliopolic_A : A ;
-fun diastolic_A : A ;
-fun apostolic_A : A ;
-fun systolic_A : A ;
-fun extrasystolic_A : A ;
-fun hydraulic_A : A ;
-fun abulic_A : A ;
-fun cacodylic_A : A ;
-fun alkylic_A : A ;
-fun allylic_A : A ;
-fun dactylic_A : A ;
-fun brachydactylic_A : A ;
-fun acetylic_A : A ;
-fun dicarboxylic_A : A ;
-fun monocarboxylic_A : A ;
-fun benzylic_A : A ;
-fun agamic_A : A ;
-fun apogamic_A : A ;
-fun anisogamic_A : A ;
-fun cryptogamic_A : A ;
-fun hypothalamic_A : A ;
-fun Islamic_A : A ;
-fun dynamic_A : A ;
-fun adynamic_A : A ;
-fun undynamic_A : A ;
-fun hemodynamic_A : A ;
-fun thermodynamic_A : A ;
-fun hydrodynamic_A : A ;
-fun aerodynamic_A : A ;
-fun ceramic_A : A ;
-fun phonogramic_A : A ;
-fun panoramic_A : A ;
-fun balsamic_A : A ;
-fun anaemic_A : A ;
-fun septicemic_A : A ;
-fun hypoglycemic_A : A ;
-fun academic_A : A ;
-fun ecdemic_A : A ;
-fun epidemic_A : A ;
-fun pandemic_A : A ;
-fun endemic_A : A ;
-fun hemic_A : A ;
-fun alchemic_A : A ;
-fun ischemic_A : A ;
-fun morphemic_A : A ;
-fun bimorphemic_A : A ;
-fun monomorphemic_A : A ;
-fun polymorphemic_A : A ;
-fun polemic_A : A ;
-fun hypovolemic_A : A ;
-fun anemic_A : A ;
-fun phonemic_A : A ;
-fun morphophonemic_A : A ;
-fun hyperemic_A : A ;
-fun bacteremic_A : A ;
-fun totemic_A : A ;
-fun azotemic_A : A ;
-fun epistemic_A : A ;
-fun systemic_A : A ;
-fun anoxemic_A : A ;
-fun pyemic_A : A ;
-fun ohmic_A : A ;
-fun logarithmic_A : A ;
-fun algorithmic_A : A ;
-fun rhythmic_A : A ;
-fun nonrhythmic_A : A ;
-fun arrhythmic_A : A ;
-fun bulimic_A : A ;
-fun mimic_A : A ;
-fun ophthalmic_A : A ;
-fun sarcolemmic_A : A ;
-fun comic_A : A ;
-fun tragicomic_A : A ;
-fun seriocomic_A : A ;
-fun gnomic_A : A ;
-fun economic_A : A ;
-fun uneconomic_A : A ;
-fun socioeconomic_A : A ;
-fun macroeconomic_A : A ;
-fun microeconomic_A : A ;
-fun ergonomic_A : A ;
-fun agronomic_A : A ;
-fun astronomic_A : A ;
-fun gastronomic_A : A ;
-fun autonomic_A : A ;
-fun taxonomic_A : A ;
-fun bromic_A : A ;
-fun antidromic_A : A ;
-fun achromic_A : A ;
-fun centrosomic_A : A ;
-fun atomic_A : A ;
-fun subatomic_A : A ;
-fun diatomic_A : A ;
-fun anatomic_A : A ;
-fun neuroanatomic_A : A ;
-fun monatomic_A : A ;
-fun polyatomic_A : A ;
-fun autotomic_A : A ;
-fun endermic_A : A ;
-fun hypodermic_A : A ;
-fun endothermic_A : A ;
-fun homoiothermic_A : A ;
-fun poikilothermic_A : A ;
-fun hypothermic_A : A ;
-fun isothermic_A : A ;
-fun exothermic_A : A ;
-fun formic_A : A ;
-fun miasmic_A : A ;
-fun hyaloplasmic_A : A ;
-fun cytoplasmic_A : A ;
-fun seismic_A : A ;
-fun coseismic_A : A ;
-fun cosmic_A : A ;
-fun macrocosmic_A : A ;
-fun microcosmic_A : A ;
-fun anosmic_A : A ;
-fun cataclysmic_A : A ;
-fun humic_A : A ;
-fun cyclothymic_A : A ;
-fun homonymic_A : A ;
-fun acronymic_A : A ;
-fun patronymic_A : A ;
-fun metonymic_A : A ;
-fun volcanic_A : A ;
-fun oceanic_A : A ;
-fun suboceanic_A : A ;
-fun transoceanic_A : A ;
-fun organic_A : A ;
-fun inorganic_A : A ;
-fun mechanic_A : A ;
-fun aeromechanic_A : A ;
-fun messianic_A : A ;
-fun aldermanic_A : A ;
-fun germanic_A : A ;
-fun talismanic_A : A ;
-fun tympanic_A : A ;
-fun koranic_A : A ;
-fun transuranic_A : A ;
-fun satanic_A : A ;
-fun tetanic_A : A ;
-fun titanic_A : A ;
-fun botanic_A : A ;
-fun galvanic_A : A ;
-fun scenic_A : A ;
-fun genic_A : A ;
-fun mutagenic_A : A ;
-fun antigenic_A : A ;
-fun glycogenic_A : A ;
-fun endogenic_A : A ;
-fun psychogenic_A : A ;
-fun cytopathogenic_A : A ;
-fun biogenic_A : A ;
-fun carcinogenic_A : A ;
-fun hallucinogenic_A : A ;
-fun monogenic_A : A ;
-fun immunogenic_A : A ;
-fun acrogenic_A : A ;
-fun androgenic_A : A ;
-fun icterogenic_A : A ;
-fun iatrogenic_A : A ;
-fun estrogenic_A : A ;
-fun neurogenic_A : A ;
-fun pyrogenic_A : A ;
-fun lysogenic_A : A ;
-fun somatogenic_A : A ;
-fun teratogenic_A : A ;
-fun lactogenic_A : A ;
-fun photogenic_A : A ;
-fun pyogenic_A : A ;
-fun cryogenic_A : A ;
-fun allergenic_A : A ;
-fun dysgenic_A : A ;
-fun eugenic_A : A ;
-fun polygenic_A : A ;
-fun asthenic_A : A ;
-fun neurasthenic_A : A ;
-fun calisthenic_A : A ;
-fun hygienic_A : A ;
-fun unhygienic_A : A ;
-fun hellenic_A : A ;
-fun philhellenic_A : A ;
-fun splenic_A : A ;
-fun acetylenic_A : A ;
-fun ecumenic_A : A ;
-fun phrenic_A : A ;
-fun hebephrenic_A : A ;
-fun schizophrenic_A : A ;
-fun irenic_A : A ;
-fun neotenic_A : A ;
-fun axenic_A : A ;
-fun algolagnic_A : A ;
-fun pyrotechnic_A : A ;
-fun ethnic_A : A ;
-fun multiethnic_A : A ;
-fun succinic_A : A ;
-fun caffeinic_A : A ;
-fun triclinic_A : A ;
-fun monoclinic_A : A ;
-fun myelinic_A : A ;
-fun brahminic_A : A ;
-fun chromatinic_A : A ;
-fun achromatinic_A : A ;
-fun actinic_A : A ;
-fun auxinic_A : A ;
-fun tannic_A : A ;
-fun britannic_A : A ;
-fun stannic_A : A ;
-fun carbonic_A : A ;
-fun bubonic_A : A ;
-fun conic_A : A ;
-fun laconic_A : A ;
-fun iconic_A : A ;
-fun hedonic_A : A ;
-fun boustrophedonic_A : A ;
-fun sardonic_A : A ;
-fun napoleonic_A : A ;
-fun isogonic_A : A ;
-fun endergonic_A : A ;
-fun exergonic_A : A ;
-fun phonic_A : A ;
-fun aphonic_A : A ;
-fun quadraphonic_A : A ;
-fun telephonic_A : A ;
-fun radiotelephonic_A : A ;
-fun symphonic_A : A ;
-fun stereophonic_A : A ;
-fun allophonic_A : A ;
-fun homophonic_A : A ;
-fun monophonic_A : A ;
-fun quadrophonic_A : A ;
-fun euphonic_A : A ;
-fun polyphonic_A : A ;
-fun ionic_A : A ;
-fun bionic_A : A ;
-fun postganglionic_A : A ;
-fun thermionic_A : A ;
-fun anionic_A : A ;
-fun nonionic_A : A ;
-fun vibrionic_A : A ;
-fun chorionic_A : A ;
-fun histrionic_A : A ;
-fun cationic_A : A ;
-fun avionic_A : A ;
-fun aniseikonic_A : A ;
-fun clonic_A : A ;
-fun cyclonic_A : A ;
-fun anticyclonic_A : A ;
-fun colonic_A : A ;
-fun demonic_A : A ;
-fun cacodemonic_A : A ;
-fun eudemonic_A : A ;
-fun mnemonic_A : A ;
-fun antimonic_A : A ;
-fun harmonic_A : A ;
-fun philharmonic_A : A ;
-fun nonharmonic_A : A ;
-fun pneumonic_A : A ;
-fun canonic_A : A ;
-fun macaronic_A : A ;
-fun chronic_A : A ;
-fun diachronic_A : A ;
-fun anachronic_A : A ;
-fun synchronic_A : A ;
-fun allochronic_A : A ;
-fun ironic_A : A ;
-fun boronic_A : A ;
-fun moronic_A : A ;
-fun electronic_A : A ;
-fun microelectronic_A : A ;
-fun aleuronic_A : A ;
-fun sonic_A : A ;
-fun masonic_A : A ;
-fun infrasonic_A : A ;
-fun ultrasonic_A : A ;
-fun subsonic_A : A ;
-fun mesonic_A : A ;
-fun supersonic_A : A ;
-fun tonic_A : A ;
-fun atonic_A : A ;
-fun diatonic_A : A ;
-fun platonic_A : A ;
-fun catatonic_A : A ;
-fun pentatonic_A : A ;
-fun tectonic_A : A ;
-fun acetonic_A : A ;
-fun planktonic_A : A ;
-fun monotonic_A : A ;
-fun nonmonotonic_A : A ;
-fun hypotonic_A : A ;
-fun isotonic_A : A ;
-fun myotonic_A : A ;
-fun hypertonic_A : A ;
-fun teutonic_A : A ;
-fun slavonic_A : A ;
-fun embryonic_A : A ;
-fun cryonic_A : A ;
-fun azonic_A : A ;
-fun acapnic_A : A ;
-fun punic_A : A ;
-fun runic_A : A ;
-fun misogynic_A : A ;
-fun echoic_A : A ;
-fun anechoic_A : A ;
-fun nonechoic_A : A ;
-fun heroic_A : A ;
-fun pleochroic_A : A ;
-fun bistroic_A : A ;
-fun allantoic_A : A ;
-fun azoic_A : A ;
-fun epizoic_A : A ;
-fun benzoic_A : A ;
-fun archeozoic_A : A ;
-fun holozoic_A : A ;
-fun proterozoic_A : A ;
-fun entozoic_A : A ;
-fun priapic_A : A ;
-fun epic_A : A ;
-fun olympic_A : A ;
-fun megascopic_A : A ;
-fun telescopic_A : A ;
-fun nontelescopic_A : A ;
-fun basiscopic_A : A ;
-fun kaleidoscopic_A : A ;
-fun endoscopic_A : A ;
-fun stereoscopic_A : A ;
-fun bronchoscopic_A : A ;
-fun acroscopic_A : A ;
-fun macroscopic_A : A ;
-fun microscopic_A : A ;
-fun ultramicroscopic_A : A ;
-fun hygroscopic_A : A ;
-fun spectroscopic_A : A ;
-fun gyroscopic_A : A ;
-fun deuteranopic_A : A ;
-fun tritanopic_A : A ;
-fun protanopic_A : A ;
-fun hyperopic_A : A ;
-fun anthropic_A : A ;
-fun philanthropic_A : A ;
-fun misanthropic_A : A ;
-fun ametropic_A : A ;
-fun emmetropic_A : A ;
-fun anisometropic_A : A ;
-fun isentropic_A : A ;
-fun adrenocorticotropic_A : A ;
-fun gonadotropic_A : A ;
-fun ergotropic_A : A ;
-fun trophotropic_A : A ;
-fun allotropic_A : A ;
-fun aeolotropic_A : A ;
-fun neurotropic_A : A ;
-fun isotropic_A : A ;
-fun anisotropic_A : A ;
-fun extropic_A : A ;
-fun ectopic_A : A ;
-fun isotopic_A : A ;
-fun amblyopic_A : A ;
-fun myopic_A : A ;
-fun angiocarpic_A : A ;
-fun monocarpic_A : A ;
-fun antitypic_A : A ;
-fun biotypic_A : A ;
-fun monotypic_A : A ;
-fun autotypic_A : A ;
-fun baric_A : A ;
-fun barbaric_A : A ;
-fun stearic_A : A ;
-fun tartaric_A : A ;
-fun picric_A : A ;
-fun calendric_A : A ;
-fun hydric_A : A ;
-fun achlorhydric_A : A ;
-fun ceric_A : A ;
-fun aspheric_A : A ;
-fun hemispheric_A : A ;
-fun atmospheric_A : A ;
-fun blastospheric_A : A ;
-fun choleric_A : A ;
-fun metameric_A : A ;
-fun chimeric_A : A ;
-fun homeric_A : A ;
-fun arthromeric_A : A ;
-fun centromeric_A : A ;
-fun isomeric_A : A ;
-fun blastomeric_A : A ;
-fun mesmeric_A : A ;
-fun numeric_A : A ;
-fun alphanumeric_A : A ;
-fun polymeric_A : A ;
-fun generic_A : A ;
-fun bigeneric_A : A ;
-fun congeneric_A : A ;
-fun anicteric_A : A ;
-fun enteric_A : A ;
-fun mesenteric_A : A ;
-fun amphoteric_A : A ;
-fun esoteric_A : A ;
-fun exoteric_A : A ;
-fun hysteric_A : A ;
-fun xeric_A : A ;
-fun oneiric_A : A ;
-fun empiric_A : A ;
-fun chivalric_A : A ;
-fun boric_A : A ;
-fun doric_A : A ;
-fun meteoric_A : A ;
-fun micrometeoric_A : A ;
-fun phantasmagoric_A : A ;
-fun allegoric_A : A ;
-fun categoric_A : A ;
-fun choric_A : A ;
-fun anaphoric_A : A ;
-fun amphoric_A : A ;
-fun camphoric_A : A ;
-fun phosphoric_A : A ;
-fun dysphoric_A : A ;
-fun euphoric_A : A ;
-fun caloric_A : A ;
-fun noncaloric_A : A ;
-fun hydrochloric_A : A ;
-fun pyloric_A : A ;
-fun ascosporic_A : A ;
-fun carposporic_A : A ;
-fun arthrosporic_A : A ;
-fun historic_A : A ;
-fun prehistoric_A : A ;
-fun cupric_A : A ;
-fun ferric_A : A ;
-fun amphitheatric_A : A ;
-fun pediatric_A : A ;
-fun psychiatric_A : A ;
-fun neuropsychiatric_A : A ;
-fun geriatric_A : A ;
-fun sympatric_A : A ;
-fun allopatric_A : A ;
-fun electric_A : A ;
-fun thermoelectric_A : A ;
-fun hydroelectric_A : A ;
-fun pyroelectric_A : A ;
-fun photoelectric_A : A ;
-fun piezoelectric_A : A ;
-fun metric_A : A ;
-fun diametric_A : A ;
-fun parametric_A : A ;
-fun nonparametric_A : A ;
-fun tetrametric_A : A ;
-fun acidimetric_A : A ;
-fun calorimetric_A : A ;
-fun colorimetric_A : A ;
-fun symmetric_A : A ;
-fun asymmetric_A : A ;
-fun unsymmetric_A : A ;
-fun viscometric_A : A ;
-fun geometric_A : A ;
-fun protogeometric_A : A ;
-fun algometric_A : A ;
-fun psychometric_A : A ;
-fun audiometric_A : A ;
-fun stoichiometric_A : A ;
-fun craniometric_A : A ;
-fun allometric_A : A ;
-fun bolometric_A : A ;
-fun anemometric_A : A ;
-fun thermometric_A : A ;
-fun actinometric_A : A ;
-fun econometric_A : A ;
-fun trigonometric_A : A ;
-fun anthropometric_A : A ;
-fun barometric_A : A ;
-fun hydrometric_A : A ;
-fun thermohydrometric_A : A ;
-fun spectrometric_A : A ;
-fun isometric_A : A ;
-fun anisometric_A : A ;
-fun photometric_A : A ;
-fun cytophotometric_A : A ;
-fun volumetric_A : A ;
-fun bathymetric_A : A ;
-fun obstetric_A : A ;
-fun citric_A : A ;
-fun nitric_A : A ;
-fun centric_A : A ;
-fun acentric_A : A ;
-fun metacentric_A : A ;
-fun eccentric_A : A ;
-fun bicentric_A : A ;
-fun matricentric_A : A ;
-fun patricentric_A : A ;
-fun concentric_A : A ;
-fun endocentric_A : A ;
-fun geocentric_A : A ;
-fun egocentric_A : A ;
-fun heliocentric_A : A ;
-fun telocentric_A : A ;
-fun ethnocentric_A : A ;
-fun anthropocentric_A : A ;
-fun acrocentric_A : A ;
-fun exocentric_A : A ;
-fun catoptric_A : A ;
-fun gastric_A : A ;
-fun epigastric_A : A ;
-fun pneumogastric_A : A ;
-fun uric_A : A ;
-fun mercuric_A : A ;
-fun sulphuric_A : A ;
-fun telluric_A : A ;
-fun albuminuric_A : A ;
-fun uricosuric_A : A ;
-fun lyric_A : A ;
-fun satyric_A : A ;
-fun butyric_A : A ;
-fun basic_A : A ;
-fun abasic_A : A ;
-fun aphasic_A : A ;
-fun anaphasic_A : A ;
-fun analgesic_A : A ;
-fun mesic_A : A ;
-fun amnesic_A : A ;
-fun forensic_A : A ;
-fun intrinsic_A : A ;
-fun extrinsic_A : A ;
-fun thalassic_A : A ;
-fun classic_A : A ;
-fun neoclassic_A : A ;
-fun prussic_A : A ;
-fun banausic_A : A ;
-fun diabatic_A : A ;
-fun adiabatic_A : A ;
-fun anabatic_A : A ;
-fun katabatic_A : A ;
-fun acrobatic_A : A ;
-fun pancreatic_A : A ;
-fun phreatic_A : A ;
-fun cataphatic_A : A ;
-fun aliphatic_A : A ;
-fun emphatic_A : A ;
-fun unemphatic_A : A ;
-fun lymphatic_A : A ;
-fun apophatic_A : A ;
-fun sciatic_A : A ;
-fun asiatic_A : A ;
-fun catalatic_A : A ;
-fun dramatic_A : A ;
-fun undramatic_A : A ;
-fun melodramatic_A : A ;
-fun schematic_A : A ;
-fun thematic_A : A ;
-fun unthematic_A : A ;
-fun emblematic_A : A ;
-fun problematic_A : A ;
-fun cinematic_A : A ;
-fun categorematic_A : A ;
-fun syncategorematic_A : A ;
-fun systematic_A : A ;
-fun unsystematic_A : A ;
-fun biosystematic_A : A ;
-fun pragmatic_A : A ;
-fun syntagmatic_A : A ;
-fun apothegmatic_A : A ;
-fun phlegmatic_A : A ;
-fun bregmatic_A : A ;
-fun paradigmatic_A : A ;
-fun enigmatic_A : A ;
-fun stigmatic_A : A ;
-fun astigmatic_A : A ;
-fun anastigmatic_A : A ;
-fun dogmatic_A : A ;
-fun undogmatic_A : A ;
-fun asthmatic_A : A ;
-fun climatic_A : A ;
-fun bioclimatic_A : A ;
-fun diagrammatic_A : A ;
-fun anagrammatic_A : A ;
-fun epigrammatic_A : A ;
-fun logogrammatic_A : A ;
-fun stemmatic_A : A ;
-fun zygomatic_A : A ;
-fun idiomatic_A : A ;
-fun axiomatic_A : A ;
-fun undiplomatic_A : A ;
-fun aromatic_A : A ;
-fun chromatic_A : A ;
-fun achromatic_A : A ;
-fun dichromatic_A : A ;
-fun trichromatic_A : A ;
-fun panchromatic_A : A ;
-fun monochromatic_A : A ;
-fun apochromatic_A : A ;
-fun polychromatic_A : A ;
-fun somatic_A : A ;
-fun psychosomatic_A : A ;
-fun symptomatic_A : A ;
-fun asymptomatic_A : A ;
-fun automatic_A : A ;
-fun semiautomatic_A : A ;
-fun blastodermatic_A : A ;
-fun schismatic_A : A ;
-fun charismatic_A : A ;
-fun prismatic_A : A ;
-fun traumatic_A : A ;
-fun rheumatic_A : A ;
-fun pneumatic_A : A ;
-fun enzymatic_A : A ;
-fun nonenzymatic_A : A ;
-fun fanatic_A : A ;
-fun morganatic_A : A ;
-fun aplanatic_A : A ;
-fun lunatic_A : A ;
-fun hepatic_A : A ;
-fun idiosyncratic_A : A ;
-fun theocratic_A : A ;
-fun democratic_A : A ;
-fun undemocratic_A : A ;
-fun hippocratic_A : A ;
-fun socratic_A : A ;
-fun presocratic_A : A ;
-fun meritocratic_A : A ;
-fun aristocratic_A : A ;
-fun autocratic_A : A ;
-fun plutocratic_A : A ;
-fun bureaucratic_A : A ;
-fun quadratic_A : A ;
-fun biquadratic_A : A ;
-fun hieratic_A : A ;
-fun operatic_A : A ;
-fun erratic_A : A ;
-fun static_A : A ;
-fun astatic_A : A ;
-fun metastatic_A : A ;
-fun ecstatic_A : A ;
-fun homeostatic_A : A ;
-fun orthostatic_A : A ;
-fun bacteriostatic_A : A ;
-fun thermostatic_A : A ;
-fun hydrostatic_A : A ;
-fun electrostatic_A : A ;
-fun aquatic_A : A ;
-fun semiaquatic_A : A ;
-fun didactic_A : A ;
-fun autodidactic_A : A ;
-fun lactic_A : A ;
-fun galactic_A : A ;
-fun extragalactic_A : A ;
-fun intergalactic_A : A ;
-fun anaphylactic_A : A ;
-fun prophylactic_A : A ;
-fun climactic_A : A ;
-fun anticlimactic_A : A ;
-fun ataractic_A : A ;
-fun apractic_A : A ;
-fun syntactic_A : A ;
-fun hectic_A : A ;
-fun cachectic_A : A ;
-fun cathectic_A : A ;
-fun dialectic_A : A ;
-fun catalectic_A : A ;
-fun acatalectic_A : A ;
-fun hypercatalectic_A : A ;
-fun eclectic_A : A ;
-fun apoplectic_A : A ;
-fun dyslectic_A : A ;
-fun pectic_A : A ;
-fun anorectic_A : A ;
-fun pyrectic_A : A ;
-fun apodictic_A : A ;
-fun deictic_A : A ;
-fun epideictic_A : A ;
-fun apomictic_A : A ;
-fun arctic_A : A ;
-fun subarctic_A : A ;
-fun antarctic_A : A ;
-fun alphabetic_A : A ;
-fun analphabetic_A : A ;
-fun diabetic_A : A ;
-fun acetic_A : A ;
-fun copacetic_A : A ;
-fun ascetic_A : A ;
-fun eidetic_A : A ;
-fun syndetic_A : A ;
-fun asyndetic_A : A ;
-fun geodetic_A : A ;
-fun exegetic_A : A ;
-fun apologetic_A : A ;
-fun unapologetic_A : A ;
-fun energetic_A : A ;
-fun synergetic_A : A ;
-fun aphetic_A : A ;
-fun prophetic_A : A ;
-fun unprophetic_A : A ;
-fun bathetic_A : A ;
-fun pathetic_A : A ;
-fun apathetic_A : A ;
-fun antipathetic_A : A ;
-fun sympathetic_A : A ;
-fun parasympathetic_A : A ;
-fun unsympathetic_A : A ;
-fun antithetic_A : A ;
-fun epenthetic_A : A ;
-fun parenthetic_A : A ;
-fun synthetic_A : A ;
-fun nonsynthetic_A : A ;
-fun biosynthetic_A : A ;
-fun photosynthetic_A : A ;
-fun nonphotosynthetic_A : A ;
-fun nomothetic_A : A ;
-fun esthetic_A : A ;
-fun aesthetic_A : A ;
-fun anaesthetic_A : A ;
-fun inaesthetic_A : A ;
-fun anesthetic_A : A ;
-fun kinesthetic_A : A ;
-fun synesthetic_A : A ;
-fun prosthetic_A : A ;
-fun erythropoietic_A : A ;
-fun hematopoietic_A : A ;
-fun athletic_A : A ;
-fun homiletic_A : A ;
-fun balletic_A : A ;
-fun anisogametic_A : A ;
-fun mimetic_A : A ;
-fun parasympathomimetic_A : A ;
-fun hermetic_A : A ;
-fun cosmetic_A : A ;
-fun genetic_A : A ;
-fun palingenetic_A : A ;
-fun psychogenetic_A : A ;
-fun biogenetic_A : A ;
-fun abiogenetic_A : A ;
-fun phylogenetic_A : A ;
-fun cyanogenetic_A : A ;
-fun cenogenetic_A : A ;
-fun anthropogenetic_A : A ;
-fun androgenetic_A : A ;
-fun ontogenetic_A : A ;
-fun blastogenetic_A : A ;
-fun autogenetic_A : A ;
-fun cytogenetic_A : A ;
-fun splenetic_A : A ;
-fun frenetic_A : A ;
-fun phrenetic_A : A ;
-fun magnetic_A : A ;
-fun diamagnetic_A : A ;
-fun paramagnetic_A : A ;
-fun antimagnetic_A : A ;
-fun nonmagnetic_A : A ;
-fun ferromagnetic_A : A ;
-fun antiferromagnetic_A : A ;
-fun electromagnetic_A : A ;
-fun kinetic_A : A ;
-fun psychokinetic_A : A ;
-fun hydrokinetic_A : A ;
-fun cytokinetic_A : A ;
-fun karyokinetic_A : A ;
-fun phonetic_A : A ;
-fun cybernetic_A : A ;
-fun dianoetic_A : A ;
-fun poetic_A : A ;
-fun aposiopetic_A : A ;
-fun syncretic_A : A ;
-fun aphaeretic_A : A ;
-fun theoretic_A : A ;
-fun diaphoretic_A : A ;
-fun electrophoretic_A : A ;
-fun natriuretic_A : A ;
-fun anuretic_A : A ;
-fun pyretic_A : A ;
-fun antipyretic_A : A ;
-fun peripatetic_A : A ;
-fun auxetic_A : A ;
-fun albitic_A : A ;
-fun cenobitic_A : A ;
-fun dacitic_A : A ;
-fun anthracitic_A : A ;
-fun calcitic_A : A ;
-fun ascitic_A : A ;
-fun hermaphroditic_A : A ;
-fun pseudohermaphroditic_A : A ;
-fun augitic_A : A ;
-fun bronchitic_A : A ;
-fun anorthitic_A : A ;
-fun anaclitic_A : A ;
-fun syphilitic_A : A ;
-fun politic_A : A ;
-fun impolitic_A : A ;
-fun aerolitic_A : A ;
-fun aplitic_A : A ;
-fun eremitic_A : A ;
-fun semitic_A : A ;
-fun 'anti-semitic_A' : A ;
-fun dolomitic_A : A ;
-fun aphanitic_A : A ;
-fun tympanitic_A : A ;
-fun granitic_A : A ;
-fun austenitic_A : A ;
-fun belemnitic_A : A ;
-fun ammonitic_A : A ;
-fun bentonitic_A : A ;
-fun sybaritic_A : A ;
-fun diacritic_A : A ;
-fun dendritic_A : A ;
-fun chondritic_A : A ;
-fun achondritic_A : A ;
-fun neritic_A : A ;
-fun nephritic_A : A ;
-fun arthritic_A : A ;
-fun iritic_A : A ;
-fun meteoritic_A : A ;
-fun micrometeoritic_A : A ;
-fun anchoritic_A : A ;
-fun porphyritic_A : A ;
-fun parasitic_A : A ;
-fun hemiparasitic_A : A ;
-fun semiparasitic_A : A ;
-fun endoparasitic_A : A ;
-fun biotitic_A : A ;
-fun bauxitic_A : A ;
-fun asphaltic_A : A ;
-fun basaltic_A : A ;
-fun celtic_A : A ;
-fun catapultic_A : A ;
-fun antic_A : A ;
-fun pedantic_A : A ;
-fun gigantic_A : A ;
-fun bacchantic_A : A ;
-fun sycophantic_A : A ;
-fun transatlantic_A : A ;
-fun semantic_A : A ;
-fun synsemantic_A : A ;
-fun autosemantic_A : A ;
-fun lithomantic_A : A ;
-fun romantic_A : A ;
-fun necromantic_A : A ;
-fun chiromantic_A : A ;
-fun unromantic_A : A ;
-fun frantic_A : A ;
-fun argentic_A : A ;
-fun authentic_A : A ;
-fun inauthentic_A : A ;
-fun lentic_A : A ;
-fun anthelmintic_A : A ;
-fun endodontic_A : A ;
-fun orthodontic_A : A ;
-fun prosthodontic_A : A ;
-fun periodontic_A : A ;
-fun exodontic_A : A ;
-fun otic_A : A ;
-fun chaotic_A : A ;
-fun robotic_A : A ;
-fun narcotic_A : A ;
-fun actinomycotic_A : A ;
-fun blastomycotic_A : A ;
-fun anecdotic_A : A ;
-fun acidotic_A : A ;
-fun ergotic_A : A ;
-fun zygotic_A : A ;
-fun dizygotic_A : A ;
-fun monozygotic_A : A ;
-fun psychotic_A : A ;
-fun photic_A : A ;
-fun aphotic_A : A ;
-fun acanthotic_A : A ;
-fun biotic_A : A ;
-fun anabiotic_A : A ;
-fun amphibiotic_A : A ;
-fun antibiotic_A : A ;
-fun symbiotic_A : A ;
-fun macrobiotic_A : A ;
-fun aerobiotic_A : A ;
-fun cryptobiotic_A : A ;
-fun idiotic_A : A ;
-fun ateleiotic_A : A ;
-fun meiotic_A : A ;
-fun bibliotic_A : A ;
-fun miotic_A : A ;
-fun semiotic_A : A ;
-fun amniotic_A : A ;
-fun patriotic_A : A ;
-fun unpatriotic_A : A ;
-fun lotic_A : A ;
-fun alkalotic_A : A ;
-fun nilotic_A : A ;
-fun ankylotic_A : A ;
-fun demotic_A : A ;
-fun anastomotic_A : A ;
-fun osmotic_A : A ;
-fun zymotic_A : A ;
-fun avitaminotic_A : A ;
-fun pyknotic_A : A ;
-fun zoonotic_A : A ;
-fun hypnotic_A : A ;
-fun agrypnotic_A : A ;
-fun epizootic_A : A ;
-fun enzootic_A : A ;
-fun despotic_A : A ;
-fun necrotic_A : A ;
-fun hidrotic_A : A ;
-fun erotic_A : A ;
-fun sclerotic_A : A ;
-fun arteriosclerotic_A : A ;
-fun atherosclerotic_A : A ;
-fun homoerotic_A : A ;
-fun autoerotic_A : A ;
-fun chlorotic_A : A ;
-fun amaurotic_A : A ;
-fun neurotic_A : A ;
-fun unneurotic_A : A ;
-fun aponeurotic_A : A ;
-fun mitotic_A : A ;
-fun amitotic_A : A ;
-fun asymptotic_A : A ;
-fun epiphytotic_A : A ;
-fun exotic_A : A ;
-fun quixotic_A : A ;
-fun prokaryotic_A : A ;
-fun eukaryotic_A : A ;
-fun azotic_A : A ;
-fun haptic_A : A ;
-fun synaptic_A : A ;
-fun analeptic_A : A ;
-fun cataleptic_A : A ;
-fun epileptic_A : A ;
-fun narcoleptic_A : A ;
-fun peptic_A : A ;
-fun dyspeptic_A : A ;
-fun septic_A : A ;
-fun aseptic_A : A ;
-fun antiseptic_A : A ;
-fun elliptic_A : A ;
-fun apopemptic_A : A ;
-fun optic_A : A ;
-fun orthoptic_A : A ;
-fun panoptic_A : A ;
-fun synoptic_A : A ;
-fun apocalyptic_A : A ;
-fun cryptic_A : A ;
-fun styptic_A : A ;
-fun cathartic_A : A ;
-fun bombastic_A : A ;
-fun sarcastic_A : A ;
-fun unsarcastic_A : A ;
-fun stochastic_A : A ;
-fun orgiastic_A : A ;
-fun encomiastic_A : A ;
-fun enthusiastic_2_A : A ;
-fun unenthusiastic_A : A ;
-fun overenthusiastic_A : A ;
-fun trophoblastic_A : A ;
-fun megaloblastic_A : A ;
-fun mesoblastic_A : A ;
-fun clastic_A : A ;
-fun plagioclastic_A : A ;
-fun iconoclastic_A : A ;
-fun elastic_A : A ;
-fun inelastic_A : A ;
-fun viscoelastic_A : A ;
-fun scholastic_A : A ;
-fun interscholastic_A : A ;
-fun plastic_A : A ;
-fun anaplastic_A : A ;
-fun cataplastic_A : A ;
-fun neoplastic_A : A ;
-fun thermoplastic_A : A ;
-fun achondroplastic_A : A ;
-fun autoplastic_A : A ;
-fun cytoplastic_A : A ;
-fun dysplastic_A : A ;
-fun onomastic_A : A ;
-fun gymnastic_A : A ;
-fun pleonastic_A : A ;
-fun monastic_A : A ;
-fun dynastic_A : A ;
-fun spastic_A : A ;
-fun drastic_A : A ;
-fun pederastic_A : A ;
-fun paraphrastic_A : A ;
-fun periphrastic_A : A ;
-fun fantastic_A : A ;
-fun anapaestic_A : A ;
-fun alkahestic_A : A ;
-fun majestic_A : A ;
-fun domestic_A : A ;
-fun undomestic_A : A ;
-fun amnestic_A : A ;
-fun anamnestic_A : A ;
-fun anapestic_A : A ;
-fun agrestic_A : A ;
-fun catachrestic_A : A ;
-fun transvestic_A : A ;
-fun archaistic_A : A ;
-fun organicistic_A : A ;
-fun classicistic_A : A ;
-fun tribadistic_A : A ;
-fun sadistic_A : A ;
-fun theistic_A : A ;
-fun atheistic_A : A ;
-fun pantheistic_A : A ;
-fun monotheistic_A : A ;
-fun polytheistic_A : A ;
-fun logistic_A : A ;
-fun antiphlogistic_A : A ;
-fun syllogistic_A : A ;
-fun biologistic_A : A ;
-fun dyslogistic_A : A ;
-fun eulogistic_A : A ;
-fun yogistic_A : A ;
-fun synergistic_A : A ;
-fun catechistic_A : A ;
-fun masochistic_A : A ;
-fun sadomasochistic_A : A ;
-fun anarchistic_A : A ;
-fun sophistic_A : A ;
-fun cabalistic_A : A ;
-fun cannibalistic_A : A ;
-fun idealistic_A : A ;
-fun realistic_A : A ;
-fun unrealistic_2_A : A ;
-fun surrealistic_A : A ;
-fun legalistic_A : A ;
-fun specialistic_A : A ;
-fun socialistic_A : A ;
-fun imperialistic_A : A ;
-fun materialistic_A : A ;
-fun animalistic_A : A ;
-fun formalistic_A : A ;
-fun nominalistic_A : A ;
-fun annalistic_A : A ;
-fun nationalistic_A : A ;
-fun rationalistic_A : A ;
-fun traditionalistic_A : A ;
-fun atonalistic_A : A ;
-fun maternalistic_A : A ;
-fun paternalistic_A : A ;
-fun journalistic_A : A ;
-fun liberalistic_A : A ;
-fun moralistic_A : A ;
-fun pluralistic_A : A ;
-fun naturalistic_A : A ;
-fun universalistic_A : A ;
-fun fatalistic_A : A ;
-fun capitalistic_A : A ;
-fun dualistic_A : A ;
-fun individualistic_A : A ;
-fun ritualistic_A : A ;
-fun spiritualistic_A : A ;
-fun conceptualistic_A : A ;
-fun revivalistic_A : A ;
-fun evangelistic_A : A ;
-fun probabilistic_A : A ;
-fun pugilistic_A : A ;
-fun nihilistic_A : A ;
-fun ballistic_A : A ;
-fun bimetallistic_A : A ;
-fun holistic_A : A ;
-fun monopolistic_A : A ;
-fun simplistic_A : A ;
-fun stylistic_A : A ;
-fun alchemistic_A : A ;
-fun dysphemistic_A : A ;
-fun euphemistic_A : A ;
-fun pessimistic_A : A ;
-fun optimistic_A : A ;
-fun atomistic_A : A ;
-fun mechanistic_A : A ;
-fun nonmechanistic_A : A ;
-fun pianistic_A : A ;
-fun humanistic_A : A ;
-fun deterministic_A : A ;
-fun chauvinistic_A : A ;
-fun hedonistic_A : A ;
-fun agonistic_A : A ;
-fun antagonistic_A : A ;
-fun impressionistic_A : A ;
-fun exhibitionistic_A : A ;
-fun monistic_A : A ;
-fun anachronistic_A : A ;
-fun modernistic_A : A ;
-fun egoistic_A : A ;
-fun jingoistic_A : A ;
-fun plagiaristic_A : A ;
-fun particularistic_A : A ;
-fun militaristic_A : A ;
-fun eristic_A : A ;
-fun characteristic_A : A ;
-fun uncharacteristic_A : A ;
-fun aoristic_A : A ;
-fun aphoristic_A : A ;
-fun behavioristic_A : A ;
-fun amoristic_A : A ;
-fun patristic_A : A ;
-fun belletristic_A : A ;
-fun heuristic_A : A ;
-fun voyeuristic_A : A ;
-fun naturistic_A : A ;
-fun adventuristic_A : A ;
-fun futuristic_A : A ;
-fun animatistic_A : A ;
-fun lexicostatistic_A : A ;
-fun pietistic_A : A ;
-fun concretistic_A : A ;
-fun egotistic_A : A ;
-fun artistic_A : A ;
-fun inartistic_A : A ;
-fun autistic_A : A ;
-fun linguistic_A : A ;
-fun intralinguistic_A : A ;
-fun extralinguistic_A : A ;
-fun nonlinguistic_A : A ;
-fun psycholinguistic_A : A ;
-fun sociolinguistic_A : A ;
-fun altruistic_A : A ;
-fun casuistic_A : A ;
-fun atavistic_A : A ;
-fun relativistic_A : A ;
-fun gnostic_A : A ;
-fun agnostic_A : A ;
-fun diagnostic_A : A ;
-fun telegnostic_A : A ;
-fun prognostic_A : A ;
-fun caustic_A : A ;
-fun encaustic_A : A ;
-fun acoustic_A : A ;
-fun rustic_A : A ;
-fun cystic_A : A ;
-fun mystic_A : A ;
-fun attic_A : A ;
-fun astronautic_A : A ;
-fun scorbutic_A : A ;
-fun hermeneutic_A : A ;
-fun therapeutic_A : A ;
-fun psychotherapeutic_A : A ;
-fun physiotherapeutic_A : A ;
-fun chemotherapeutic_A : A ;
-fun immunotherapeutic_A : A ;
-fun phagocytic_A : A ;
-fun lymphocytic_A : A ;
-fun granulocytic_A : A ;
-fun agranulocytic_A : A ;
-fun astrocytic_A : A ;
-fun megakaryocytic_A : A ;
-fun epiphytic_A : A ;
-fun myrmecophytic_A : A ;
-fun geophytic_A : A ;
-fun lithophytic_A : A ;
-fun thallophytic_A : A ;
-fun holophytic_A : A ;
-fun hydrophytic_A : A ;
-fun xerophytic_A : A ;
-fun hygrophytic_A : A ;
-fun saprophytic_A : A ;
-fun mesophytic_A : A ;
-fun bryophytic_A : A ;
-fun analytic_A : A ;
-fun psychoanalytic_A : A ;
-fun cryptanalytic_A : A ;
-fun paralytic_A : A ;
-fun catalytic_A : A ;
-fun biocatalytic_A : A ;
-fun autocatalytic_A : A ;
-fun proteolytic_A : A ;
-fun bacteriolytic_A : A ;
-fun anxiolytic_A : A ;
-fun amylolytic_A : A ;
-fun hemolytic_A : A ;
-fun electrolytic_A : A ;
-fun pyrolytic_A : A ;
-fun autolytic_A : A ;
-fun cytolytic_A : A ;
-fun barytic_A : A ;
-fun diplomatic_A : A ;
-fun enthusiastic_1_A : A ;
-fun unrealistic_1_A : A ;
-fun civic_A : A ;
-fun pelvic_A : A ;
-fun ataxic_A : A ;
-fun alexic_A : A ;
-fun dyslexic_A : A ;
-fun anorexic_A : A ;
-fun anoxic_A : A ;
-fun toxic_A : A ;
-fun antitoxic_A : A ;
-fun nontoxic_A : A ;
-fun nephrotoxic_A : A ;
-fun neurotoxic_A : A ;
-fun thyrotoxic_A : A ;
-fun hepatotoxic_A : A ;
-fun ototoxic_A : A ;
-fun cytotoxic_A : A ;
-fun 'ad hoc_A' : A ;
-fun subfusc_A : A ;
-fun sec_A : A ;
-fun stoic_A : A ;
-fun zoic_A : A ;
-fun 'one-idea\'d_A' : A ;
-fun 'three-d_A' : A ;
-fun dead_A : A ;
-fun 'stone-dead_A' : A ;
-fun drumhead_A : A ;
-fun overhead_A : A ;
-fun 'well-read_A' : A ;
-fun unread_A : A ;
-fun widespread_A : A ;
-fun thickspread_A : A ;
-fun outspread_A : A ;
-fun myriad_A : A ;
-fun 'steel-clad_A' : A ;
-fun 'snow-clad_A' : A ;
-fun ironclad_A : A ;
-fun 'middle-of-the-road_A' : A ;
-fun abroad_A : A ;
-fun hennaed_A : A ;
-fun blebbed_A : A ;
-fun webbed_A : A ;
-fun unwebbed_A : A ;
-fun bibbed_A : A ;
-fun nibbed_A : A ;
-fun bulbed_A : A ;
-fun limbed_A : A ;
-fun 'clean-limbed_A' : A ;
-fun uncombed_A : A ;
-fun unplumbed_A : A ;
-fun benumbed_A : A ;
-fun lobed_A : A ;
-fun unlobed_A : A ;
-fun barbed_A : A ;
-fun 'self-absorbed_A' : A ;
-fun unperturbed_A : A ;
-fun undisturbed_A : A ;
-fun bedaubed_A : A ;
-fun tubed_A : A ;
-fun 'double-faced_A' : A ;
-fun 'smooth-faced_A' : A ;
-fun 'brazen-faced_A' : A ;
-fun 'two-faced_A' : A ;
-fun 'baby-faced_A' : A ;
-fun shamefaced_A : A ;
-fun barefaced_A : A ;
-fun 'tight-laced_A' : A ;
-fun 'strait-laced_A' : A ;
-fun unlaced_A : A ;
-fun unplaced_A : A ;
-fun unspaced_A : A ;
-fun unbraced_A : A ;
-fun unprejudiced_A : A ;
-fun beneficed_A : A ;
-fun unbeneficed_A : A ;
-fun surpliced_A : A ;
-fun unvoiced_A : A ;
-fun 'high-priced_A' : A ;
-fun unpracticed_A : A ;
-fun unnoticed_A : A ;
-fun latticed_A : A ;
-fun calced_A : A ;
-fun discalced_A : A ;
-fun 'well-balanced_A' : A ;
-fun cadenced_A : A ;
-fun unfenced_A : A ;
-fun experienced_A : A ;
-fun inexperienced_A : A ;
-fun unsilenced_A : A ;
-fun referenced_A : A ;
-fun uninfluenced_A : A ;
-fun unconvinced_A : A ;
-fun unannounced_A : A ;
-fun pronounced_A : A ;
-fun arced_A : A ;
-fun unpierced_A : A ;
-fun uncoerced_A : A ;
-fun unenforced_A : A ;
-fun unforced_A : A ;
-fun unreduced_A : A ;
-fun deuced_A : A ;
-fun beaded_A : A ;
-fun 'hard-headed_A' : A ;
-fun 'muddle-headed_A' : A ;
-fun 'pig-headed_A' : A ;
-fun 'long-headed_A' : A ;
-fun 'wrong-headed_A' : A ;
-fun 'thick-headed_A' : A ;
-fun 'shock-headed_A' : A ;
-fun 'level-headed_A' : A ;
-fun 'bull-headed_A' : A ;
-fun 'cool-headed_A' : A ;
-fun 'swollen-headed_A' : A ;
-fun 'clear-headed_A' : A ;
-fun 'bullet-headed_A' : A ;
-fun 'soft-headed_A' : A ;
-fun 'light-headed_A' : A ;
-fun 'hot-headed_A' : A ;
-fun 'grey-headed_A' : A ;
-fun 'empty-headed_A' : A ;
-fun redheaded_A : A ;
-fun hardheaded_A : A ;
-fun bareheaded_A : A ;
-fun bigheaded_A : A ;
-fun wrongheaded_A : A ;
-fun blockheaded_A : A ;
-fun bullheaded_A : A ;
-fun woodenheaded_A : A ;
-fun unheaded_A : A ;
-fun clearheaded_A : A ;
-fun airheaded_A : A ;
-fun hotheaded_A : A ;
-fun leaded_A : A ;
-fun unleaded_A : A ;
-fun prefaded_A : A ;
-fun unshaded_A : A ;
-fun jaded_A : A ;
-fun bladed_A : A ;
-fun colonnaded_A : A ;
-fun ungraded_A : A ;
-fun unpersuaded_A : A ;
-fun 'value-added_A' : A ;
-fun 'double-bedded_A' : A ;
-fun lidded_A : A ;
-fun unexceeded_A : A ;
-fun unheeded_A : A ;
-fun unseeded_A : A ;
-fun unimpeded_A : A ;
-fun unaided_A : A ;
-fun decided_A : A ;
-fun undecided_A : A ;
-fun 'one-sided_A' : A ;
-fun 'many-sided_A' : A ;
-fun lopsided_A : A ;
-fun sobersided_A : A ;
-fun unguided_A : A ;
-fun undivided_A : A ;
-fun unprovided_A : A ;
-fun unheralded_A : A ;
-fun unshielded_A : A ;
-fun unbanded_A : A ;
-fun 'free-handed_A' : A ;
-fun 'single-handed_A' : A ;
-fun 'high-handed_A' : A ;
-fun 'ham-handed_A' : A ;
-fun 'open-handed_A' : A ;
-fun 'even-handed_A' : A ;
-fun 'two-handed_A' : A ;
-fun 'left-handed_A' : A ;
-fun 'light-handed_A' : A ;
-fun 'right-handed_A' : A ;
-fun 'short-handed_A' : A ;
-fun 'empty-handed_A' : A ;
-fun 'heavy-handed_A' : A ;
-fun barehanded_A : A ;
-fun forehanded_A : A ;
-fun offhanded_A : A ;
-fun backhanded_A : A ;
-fun evenhanded_A : A ;
-fun underhanded_A : A ;
-fun fourhanded_A : A ;
-fun unbranded_A : A ;
-fun misbranded_A : A ;
-fun 'open-ended_A' : A ;
-fun undescended_A : A ;
-fun undefended_A : A ;
-fun uncomprehended_A : A ;
-fun unblended_A : A ;
-fun unamended_A : A ;
-fun unended_A : A ;
-fun upended_A : A ;
-fun unintended_A : A ;
-fun untended_A : A ;
-fun unattended_A : A ;
-fun unextended_A : A ;
-fun 'broad-minded_A' : A ;
-fun 'like-minded_A' : A ;
-fun 'feeble-minded_A' : A ;
-fun 'single-minded_A' : A ;
-fun 'simple-minded_A' : A ;
-fun 'strong-minded_A' : A ;
-fun 'high-minded_A' : A ;
-fun 'evil-minded_A' : A ;
-fun 'small-minded_A' : A ;
-fun 'open-minded_A' : A ;
-fun 'air-minded_A' : A ;
-fun 'fair-minded_A' : A ;
-fun 'light-minded_A' : A ;
-fun 'right-minded_A' : A ;
-fun 'absent-minded_A' : A ;
-fun 'narrow-minded_A' : A ;
-fun 'bloody-minded_A' : A ;
-fun 'long-winded_A' : A ;
-fun 'short-winded_A' : A ;
-fun unfunded_A : A ;
-fun unbounded_A : A ;
-fun 'well-founded_A' : A ;
-fun unfounded_A : A ;
-fun uncompounded_A : A ;
-fun 'well-rounded_A' : A ;
-fun 'well-grounded_A' : A ;
-fun unwounded_A : A ;
-fun outmoded_A : A ;
-fun 'cold-blooded_A' : A ;
-fun 'full-blooded_A' : A ;
-fun 'warm-blooded_A' : A ;
-fun 'hot-blooded_A' : A ;
-fun wooded_A : A ;
-fun unwooded_A : A ;
-fun unguarded_A : A ;
-fun unrewarded_A : A ;
-fun unrecorded_A : A ;
-fun occluded_A : A ;
-fun unclouded_A : A ;
-fun uncrowded_A : A ;
-fun 'weak-kneed_A' : A ;
-fun 'knock-kneed_A' : A ;
-fun 'high-speed_A' : A ;
-fun toupeed_A : A ;
-fun goateed_A : A ;
-fun unguaranteed_A : A ;
-fun 'bottle-fed_A' : A ;
-fun 'stall-fed_A' : A ;
-fun 'breast-fed_A' : A ;
-fun leafed_A : A ;
-fun understaffed_A : A ;
-fun chuffed_A : A ;
-fun overstuffed_A : A ;
-fun unfed_A : A ;
-fun unroofed_A : A ;
-fun underfed_A : A ;
-fun overfed_A : A ;
-fun 'middle-aged_A' : A ;
-fun appendaged_A : A ;
-fun unappendaged_A : A ;
-fun unengaged_A : A ;
-fun 'pre-packaged_A' : A ;
-fun prepackaged_A : A ;
-fun unpackaged_A : A ;
-fun undamaged_A : A ;
-fun plumaged_A : A ;
-fun unaged_A : A ;
-fun visaged_A : A ;
-fun unstaged_A : A ;
-fun 'double-edged_A' : A ;
-fun 'deckle-edged_A' : A ;
-fun 'two-edged_A' : A ;
-fun 'gilt-edged_A' : A ;
-fun fledged_A : A ;
-fun 'full-fledged_A' : A ;
-fun 'fully-fledged_A' : A ;
-fun unfledged_A : A ;
-fun unacknowledged_A : A ;
-fun unabridged_A : A ;
-fun 'ill-judged_A' : A ;
-fun privileged_A : A ;
-fun underprivileged_A : A ;
-fun cragged_A : A ;
-fun legged_A : A ;
-fun 'three-legged_A' : A ;
-fun 'spindle-legged_A' : A ;
-fun 'bandy-legged_A' : A ;
-fun barelegged_A : A ;
-fun 'square-rigged_A' : A ;
-fun unrigged_A : A ;
-fun sprigged_A : A ;
-fun outrigged_A : A ;
-fun wigged_A : A ;
-fun cogged_A : A ;
-fun befogged_A : A ;
-fun unclogged_A : A ;
-fun waterlogged_A : A ;
-fun rugged_A : A ;
-fun fanged_A : A ;
-fun unchanged_A : A ;
-fun unchallenged_A : A ;
-fun unavenged_A : A ;
-fun stockinged_A : A ;
-fun ceilinged_A : A ;
-fun awninged_A : A ;
-fun pronged_A : A ;
-fun uncharged_A : A ;
-fun supercharged_A : A ;
-fun undischarged_A : A ;
-fun unrouged_A : A ;
-fun unbleached_A : A ;
-fun unreached_A : A ;
-fun semidetached_A : A ;
-fun unattached_A : A ;
-fun breeched_A : A ;
-fun cliched_A : A ;
-fun branched_A : A ;
-fun unbranched_A : A ;
-fun 'sun-drenched_A' : A ;
-fun squinched_A : A ;
-fun unhatched_A : A ;
-fun unlatched_A : A ;
-fun unmatched_A : A ;
-fun mismatched_A : A ;
-fun 'far-fetched_A' : A ;
-fun farfetched_A : A ;
-fun outstretched_A : A ;
-fun wretched_A : A ;
-fun 'high-pitched_A' : A ;
-fun 'low-pitched_A' : A ;
-fun blotched_A : A ;
-fun unnotched_A : A ;
-fun untouched_A : A ;
-fun boughed_A : A ;
-fun unabashed_A : A ;
-fun unbrainwashed_A : A ;
-fun unwashed_A : A ;
-fun unrefreshed_A : A ;
-fun unestablished_A : A ;
-fun unpublished_A : A ;
-fun unpolished_A : A ;
-fun unblemished_A : A ;
-fun vanished_A : A ;
-fun unfinished_A : A ;
-fun undiminished_A : A ;
-fun untarnished_A : A ;
-fun unvarnished_A : A ;
-fun unburnished_A : A ;
-fun unfurnished_A : A ;
-fun unpunished_A : A ;
-fun malnourished_A : A ;
-fun unnourished_A : A ;
-fun undernourished_A : A ;
-fun anguished_A : A ;
-fun undistinguished_A : A ;
-fun unbrushed_A : A ;
-fun unscathed_A : A ;
-fun unclothed_A : A ;
-fun unsmoothed_A : A ;
-fun toothed_A : A ;
-fun 'sabre-toothed_A' : A ;
-fun 'gap-toothed_A' : A ;
-fun 'foul-mouthed_A' : A ;
-fun 'open-mouthed_A' : A ;
-fun 'mealy-mouthed_A' : A ;
-fun bigmouthed_A : A ;
-fun blabbermouthed_A : A ;
-fun mealymouthed_A : A ;
-fun unremedied_A : A ;
-fun bodied_A : A ;
-fun 'able-bodied_A' : A ;
-fun unbodied_A : A ;
-fun unstudied_A : A ;
-fun unspecified_A : A ;
-fun dandified_A : A ;
-fun unmodified_A : A ;
-fun unqualified_A : A ;
-fun humified_A : A ;
-fun undignified_A : A ;
-fun saponified_A : A ;
-fun unsaponified_A : A ;
-fun unverified_A : A ;
-fun unvitrified_A : A ;
-fun countrified_A : A ;
-fun unpurified_A : A ;
-fun undiversified_A : A ;
-fun unclassified_A : A ;
-fun sissified_A : A ;
-fun unratified_A : A ;
-fun unstratified_A : A ;
-fun citified_A : A ;
-fun unidentified_A : A ;
-fun uncertified_A : A ;
-fun unjustified_A : A ;
-fun satisfied_A : A ;
-fun unsatisfied_A : A ;
-fun hypertrophied_A : A ;
-fun 'yellow-bellied_A' : A ;
-fun potbellied_A : A ;
-fun unsullied_A : A ;
-fun panoplied_A : A ;
-fun unaccompanied_A : A ;
-fun crannied_A : A ;
-fun uncrannied_A : A ;
-fun balconied_A : A ;
-fun unbalconied_A : A ;
-fun pied_A : A ;
-fun canopied_A : A ;
-fun 'owner-occupied_A' : A ;
-fun unoccupied_A : A ;
-fun unwearied_A : A ;
-fun salaried_A : A ;
-fun unvaried_A : A ;
-fun 'smoke-dried_A' : A ;
-fun 'sun-dried_A' : A ;
-fun roughdried_A : A ;
-fun undried_A : A ;
-fun liveried_A : A ;
-fun unliveried_A : A ;
-fun storied_A : A ;
-fun unmarried_A : A ;
-fun berried_A : A ;
-fun serried_A : A ;
-fun unworried_A : A ;
-fun hurried_A : A ;
-fun unhurried_A : A ;
-fun unflurried_A : A ;
-fun 'well-tried_A' : A ;
-fun untried_A : A ;
-fun tapestried_A : A ;
-fun unburied_A : A ;
-fun 'tongue-tied_A' : A ;
-fun untied_A : A ;
-fun bountied_A : A ;
-fun propertied_A : A ;
-fun ivied_A : A ;
-fun frenzied_A : A ;
-fun 'hard-baked_A' : A ;
-fun 'home-baked_A' : A ;
-fun 'half-baked_A' : A ;
-fun sunbaked_A : A ;
-fun beaked_A : A ;
-fun naked_A : A ;
-fun 'round-backed_A' : A ;
-fun 'crook-backed_A' : A ;
-fun hardbacked_A : A ;
-fun barebacked_A : A ;
-fun hunchbacked_A : A ;
-fun unbacked_A : A ;
-fun humpbacked_A : A ;
-fun paperbacked_A : A ;
-fun razorbacked_A : A ;
-fun gobsmacked_A : A ;
-fun prepacked_A : A ;
-fun 'half-tracked_A' : A ;
-fun bedecked_A : A ;
-fun unchecked_A : A ;
-fun necked_A : A ;
-fun 'stiff-necked_A' : A ;
-fun 'high-necked_A' : A ;
-fun turtlenecked_A : A ;
-fun bullnecked_A : A ;
-fun henpecked_A : A ;
-fun specked_A : A ;
-fun 'hand-picked_A' : A ;
-fun wicked_A : A ;
-fun deadlocked_A : A ;
-fun landlocked_A : A ;
-fun pocked_A : A ;
-fun cassocked_A : A ;
-fun untucked_A : A ;
-fun uncaulked_A : A ;
-fun 'spindle-shanked_A' : A ;
-fun unbooked_A : A ;
-fun precooked_A : A ;
-fun uncooked_A : A ;
-fun unprovoked_A : A ;
-fun marked_A : A ;
-fun 'well-marked_A' : A ;
-fun trademarked_A : A ;
-fun pockmarked_A : A ;
-fun unmarked_A : A ;
-fun unasked_A : A ;
-fun asterisked_A : A ;
-fun unasterisked_A : A ;
-fun tusked_A : A ;
-fun peruked_A : A ;
-fun gimbaled_A : A ;
-fun sandaled_A : A ;
-fun unconcealed_A : A ;
-fun unhealed_A : A ;
-fun unsealed_A : A ;
-fun undersealed_A : A ;
-fun petaled_A : A ;
-fun fabled_A : A ;
-fun gabled_A : A ;
-fun syllabled_A : A ;
-fun unsyllabled_A : A ;
-fun bestubbled_A : A ;
-fun marbled_A : A ;
-fun untroubled_A : A ;
-fun spectacled_A : A ;
-fun bespectacled_A : A ;
-fun tentacled_A : A ;
-fun panicled_A : A ;
-fun carbuncled_A : A ;
-fun monocled_A : A ;
-fun raddled_A : A ;
-fun unbridled_A : A ;
-fun unkindled_A : A ;
-fun brindled_A : A ;
-fun labeled_A : A ;
-fun unlabeled_A : A ;
-fun 'well-heeled_A' : A ;
-fun 'three-wheeled_A' : A ;
-fun unparalleled_A : A ;
-fun untrammeled_A : A ;
-fun paneled_A : A ;
-fun appareled_A : A ;
-fun unappareled_A : A ;
-fun barreled_A : A ;
-fun unbarreled_A : A ;
-fun laureled_A : A ;
-fun unlaureled_A : A ;
-fun chiseled_A : A ;
-fun tasseled_A : A ;
-fun unfueled_A : A ;
-fun untraveled_A : A ;
-fun disheveled_A : A ;
-fun shriveled_A : A ;
-fun unbaffled_A : A ;
-fun unruffled_A : A ;
-fun unrifled_A : A ;
-fun draggled_A : A ;
-fun bedraggled_A : A ;
-fun 'right-angled_A' : A ;
-fun newfangled_A : A ;
-fun bespangled_A : A ;
-fun untangled_A : A ;
-fun unmingled_A : A ;
-fun hobnailed_A : A ;
-fun 'swallow-tailed_A' : A ;
-fun unreconciled_A : A ;
-fun 'hard-boiled_A' : A ;
-fun 'soft-boiled_A' : A ;
-fun uncoiled_A : A ;
-fun unoiled_A : A ;
-fun unspoiled_A : A ;
-fun 'travel-soiled_A' : A ;
-fun unsoiled_A : A ;
-fun shopsoiled_A : A ;
-fun ariled_A : A ;
-fun deckled_A : A ;
-fun speckled_A : A ;
-fun unwrinkled_A : A ;
-fun 'so-called_A' : A ;
-fun sandalled_A : A ;
-fun credentialled_A : A ;
-fun petalled_A : A ;
-fun unequalled_A : A ;
-fun unrivalled_A : A ;
-fun unlabelled_A : A ;
-fun corbelled_A : A ;
-fun unexcelled_A : A ;
-fun unshelled_A : A ;
-fun untrammelled_A : A ;
-fun 'three-funnelled_A' : A ;
-fun 'two-funnelled_A' : A ;
-fun 'jet-propelled_A' : A ;
-fun 'double-barrelled_A' : A ;
-fun laurelled_A : A ;
-fun tasselled_A : A ;
-fun travelled_A : A ;
-fun dishevelled_A : A ;
-fun bejewelled_A : A ;
-fun duckbilled_A : A ;
-fun unfulfilled_A : A ;
-fun unfilled_A : A ;
-fun skilled_A : A ;
-fun unskilled_A : A ;
-fun frilled_A : A ;
-fun untilled_A : A ;
-fun 'self-willed_A' : A ;
-fun unwilled_A : A ;
-fun twilled_A : A ;
-fun 'price-controlled_A' : A ;
-fun uncontrolled_A : A ;
-fun skulled_A : A ;
-fun 'air-cooled_A' : A ;
-fun precooled_A : A ;
-fun unschooled_A : A ;
-fun principled_A : A ;
-fun 'high-principled_A' : A ;
-fun unprincipled_A : A ;
-fun unexampled_A : A ;
-fun pimpled_A : A ;
-fun unpeopled_A : A ;
-fun empurpled_A : A ;
-fun gnarled_A : A ;
-fun whorled_A : A ;
-fun burled_A : A ;
-fun titled_A : A ;
-fun unentitled_A : A ;
-fun untitled_A : A ;
-fun disgruntled_A : A ;
-fun embattled_A : A ;
-fun 'close-hauled_A' : A ;
-fun unscheduled_A : A ;
-fun 'clean-bowled_A' : A ;
-fun cowled_A : A ;
-fun 'self-styled_A' : A ;
-fun grizzled_A : A ;
-fun sozzled_A : A ;
-fun undreamed_A : A ;
-fun mainstreamed_A : A ;
-fun unseamed_A : A ;
-fun 'far-famed_A' : A ;
-fun ashamed_A : A ;
-fun unashamed_A : A ;
-fun 'above-named_A' : A ;
-fun unnamed_A : A ;
-fun unframed_A : A ;
-fun untamed_A : A ;
-fun unclaimed_A : A ;
-fun sublimed_A : A ;
-fun slimed_A : A ;
-fun begrimed_A : A ;
-fun 'well-timed_A' : A ;
-fun 'ill-timed_A' : A ;
-fun becalmed_A : A ;
-fun unfilmed_A : A ;
-fun gemmed_A : A ;
-fun bedimmed_A : A ;
-fun undimmed_A : A ;
-fun 'red-rimmed_A' : A ;
-fun 'horn-rimmed_A' : A ;
-fun untrimmed_A : A ;
-fun ungummed_A : A ;
-fun domed_A : A ;
-fun unfathomed_A : A ;
-fun venomed_A : A ;
-fun bedroomed_A : A ;
-fun 'well-groomed_A' : A ;
-fun ungroomed_A : A ;
-fun bosomed_A : A ;
-fun unaccustomed_A : A ;
-fun bottomed_A : A ;
-fun 'bell-bottomed_A' : A ;
-fun 'copper-bottomed_A' : A ;
-fun 'flat-bottomed_A' : A ;
-fun 'one-armed_A' : A ;
-fun 'light-armed_A' : A ;
-fun unharmed_A : A ;
-fun unarmed_A : A ;
-fun unpermed_A : A ;
-fun unconfirmed_A : A ;
-fun unreformed_A : A ;
-fun uniformed_A : A ;
-fun malformed_A : A ;
-fun 'well-informed_A' : A ;
-fun uninformed_A : A ;
-fun unformed_A : A ;
-fun unperformed_A : A ;
-fun volumed_A : A ;
-fun unconsumed_A : A ;
-fun costumed_A : A ;
-fun unrhymed_A : A ;
-fun turbaned_A : A ;
-fun unweaned_A : A ;
-fun acned_A : A ;
-fun 'case-hardened_A' : A ;
-fun unawakened_A : A ;
-fun 'ill-omened_A' : A ;
-fun unripened_A : A ;
-fun unopened_A : A ;
-fun unsharpened_A : A ;
-fun unsweetened_A : A ;
-fun unenlightened_A : A ;
-fun unfrightened_A : A ;
-fun unfattened_A : A ;
-fun unleavened_A : A ;
-fun unenlivened_A : A ;
-fun scrivened_A : A ;
-fun wizened_A : A ;
-fun unfeigned_A : A ;
-fun nonaligned_A : A ;
-fun unaligned_A : A ;
-fun undesigned_A : A ;
-fun unsigned_A : A ;
-fun unassigned_A : A ;
-fun chilblained_A : A ;
-fun unexplained_A : A ;
-fun 'addle-brained_A' : A ;
-fun addlebrained_A : A ;
-fun rattlebrained_A : A ;
-fun harebrained_A : A ;
-fun crackbrained_A : A ;
-fun featherbrained_A : A ;
-fun scatterbrained_A : A ;
-fun undrained_A : A ;
-fun grained_A : A ;
-fun 'close-grained_A' : A ;
-fun 'cross-grained_A' : A ;
-fun ingrained_A : A ;
-fun 'pot-trained_A' : A ;
-fun housetrained_A : A ;
-fun untrained_A : A ;
-fun unrestrained_A : A ;
-fun unconstrained_A : A ;
-fun unstrained_A : A ;
-fun 'self-contained_A' : A ;
-fun 'travel-stained_A' : A ;
-fun bloodstained_A : A ;
-fun unstained_A : A ;
-fun uncombined_A : A ;
-fun veined_A : A ;
-fun undefined_A : A ;
-fun unrefined_A : A ;
-fun overrefined_A : A ;
-fun affined_A : A ;
-fun unconfined_A : A ;
-fun 'well-lined_A' : A ;
-fun unlined_A : A ;
-fun undisciplined_A : A ;
-fun 'deep-mined_A' : A ;
-fun unmined_A : A ;
-fun undetermined_A : A ;
-fun disjoined_A : A ;
-fun basined_A : A ;
-fun tined_A : A ;
-fun spavined_A : A ;
-fun 'god-damned_A' : A ;
-fun columned_A : A ;
-fun noncolumned_A : A ;
-fun unplanned_A : A ;
-fun undermanned_A : A ;
-fun untanned_A : A ;
-fun 'thick-skinned_A' : A ;
-fun 'thin-skinned_A' : A ;
-fun 'big-boned_A' : A ;
-fun 'strong-boned_A' : A ;
-fun rawboned_A : A ;
-fun 'old-fashioned_A' : A ;
-fun 'full-fashioned_A' : A ;
-fun 'fully-fashioned_A' : A ;
-fun mullioned_A : A ;
-fun envisioned_A : A ;
-fun impassioned_A : A ;
-fun unimpassioned_A : A ;
-fun noncommissioned_A : A ;
-fun unsanctioned_A : A ;
-fun 'air-conditioned_A' : A ;
-fun preconditioned_A : A ;
-fun unconditioned_A : A ;
-fun unpartitioned_A : A ;
-fun 'above-mentioned_A' : A ;
-fun undermentioned_A : A ;
-fun 'well-intentioned_A' : A ;
-fun bastioned_A : A ;
-fun unquestioned_A : A ;
-fun unironed_A : A ;
-fun unseasoned_A : A ;
-fun 'high-toned_A' : A ;
-fun unearned_A : A ;
-fun unconcerned_A : A ;
-fun ferned_A : A ;
-fun cairned_A : A ;
-fun unadorned_A : A ;
-fun horned_A : A ;
-fun windburned_A : A ;
-fun sunburned_A : A ;
-fun unmourned_A : A ;
-fun 'well-turned_A' : A ;
-fun unturned_A : A ;
-fun upturned_A : A ;
-fun awned_A : A ;
-fun renowned_A : A ;
-fun unowned_A : A ;
-fun uncrowned_A : A ;
-fun tuxedoed_A : A ;
-fun mustachioed_A : A ;
-fun 'web-toed_A' : A ;
-fun 'square-toed_A' : A ;
-fun 'pigeon-toed_A' : A ;
-fun 'cigar-shaped_A' : A ;
-fun unshaped_A : A ;
-fun undraped_A : A ;
-fun stovepiped_A : A ;
-fun striped_A : A ;
-fun pinstriped_A : A ;
-fun unhoped_A : A ;
-fun undeveloped_A : A ;
-fun underdeveloped_A : A ;
-fun 'cloud-capped_A' : A ;
-fun uncapped_A : A ;
-fun snowcapped_A : A ;
-fun untapped_A : A ;
-fun hipped_A : A ;
-fun lipped_A : A ;
-fun 'white-lipped_A' : A ;
-fun 'tight-lipped_A' : A ;
-fun unclipped_A : A ;
-fun untipped_A : A ;
-fun filtertipped_A : A ;
-fun unequipped_A : A ;
-fun 'close-cropped_A' : A ;
-fun uncropped_A : A ;
-fun 'screw-topped_A' : A ;
-fun ungrasped_A : A ;
-fun 'infra-red_A' : A ;
-fun 'rose-red_A' : A ;
-fun eared_A : A ;
-fun 'dog-eared_A' : A ;
-fun 'quick-eared_A' : A ;
-fun 'lop-eared_A' : A ;
-fun ungeared_A : A ;
-fun unsheared_A : A ;
-fun uncleared_A : A ;
-fun unsugared_A : A ;
-fun unshared_A : A ;
-fun undeclared_A : A ;
-fun pillared_A : A ;
-fun unpillared_A : A ;
-fun unprepared_A : A ;
-fun infrared_A : A ;
-fun 'well-bred_A' : A ;
-fun 'ill-bred_A' : A ;
-fun purebred_A : A ;
-fun thoroughbred_A : A ;
-fun inbred_A : A ;
-fun underbred_A : A ;
-fun outbred_A : A ;
-fun lowbred_A : A ;
-fun sacred_A : A ;
-fun kindred_A : A ;
-fun chambered_A : A ;
-fun membered_A : A ;
-fun timbered_A : A ;
-fun 'half-timbered_A' : A ;
-fun untimbered_A : A ;
-fun unencumbered_A : A ;
-fun unnumbered_A : A ;
-fun unconsidered_A : A ;
-fun 'round-shouldered_A' : A ;
-fun 'square-shouldered_A' : A ;
-fun unhindered_A : A ;
-fun unbordered_A : A ;
-fun jiggered_A : A ;
-fun 'light-fingered_A' : A ;
-fun undeciphered_A : A ;
-fun unfeathered_A : A ;
-fun unweathered_A : A ;
-fun untethered_A : A ;
-fun tiered_A : A ;
-fun knackered_A : A ;
-fun whiskered_A : A ;
-fun antlered_A : A ;
-fun mannered_A : A ;
-fun 'ill-mannered_A' : A ;
-fun unmannered_A : A ;
-fun 'three-cornered_A' : A ;
-fun unhampered_A : A ;
-fun 'good-tempered_A' : A ;
-fun 'quick-tempered_A' : A ;
-fun 'hot-tempered_A' : A ;
-fun 'short-tempered_A' : A ;
-fun untempered_A : A ;
-fun slippered_A : A ;
-fun stoppered_A : A ;
-fun unstoppered_A : A ;
-fun telemetered_A : A ;
-fun raftered_A : A ;
-fun unaltered_A : A ;
-fun centered_A : A ;
-fun sintered_A : A ;
-fun sceptered_A : A ;
-fun unchartered_A : A ;
-fun bistered_A : A ;
-fun unregistered_A : A ;
-fun bespattered_A : A ;
-fun tattered_A : A ;
-fun unfettered_A : A ;
-fun lettered_A : A ;
-fun unlettered_A : A ;
-fun unshuttered_A : A ;
-fun uncluttered_A : A ;
-fun accoutered_A : A ;
-fun unconquered_A : A ;
-fun fevered_A : A ;
-fun 'white-livered_A' : A ;
-fun 'lily-livered_A' : A ;
-fun 'snow-covered_A' : A ;
-fun hardcovered_A : A ;
-fun undiscovered_A : A ;
-fun louvered_A : A ;
-fun flowered_A : A ;
-fun 'high-powered_A' : A ;
-fun unpowered_A : A ;
-fun unanswered_A : A ;
-fun 'wire-haired_A' : A ;
-fun 'long-haired_A' : A ;
-fun unrepaired_A : A ;
-fun unimpaired_A : A ;
-fun oilfired_A : A ;
-fun uninspired_A : A ;
-fun 'time-expired_A' : A ;
-fun unexpired_A : A ;
-fun undesired_A : A ;
-fun untired_A : A ;
-fun labored_A : A ;
-fun colored_A : A ;
-fun varicolored_A : A ;
-fun uncolored_A : A ;
-fun unexplored_A : A ;
-fun enamored_A : A ;
-fun armored_A : A ;
-fun unarmored_A : A ;
-fun visored_A : A ;
-fun uncensored_A : A ;
-fun alligatored_A : A ;
-fun bimotored_A : A ;
-fun trimotored_A : A ;
-fun untutored_A : A ;
-fun unflavored_A : A ;
-fun 'ill-starred_A' : A ;
-fun undeterred_A : A ;
-fun unstirred_A : A ;
-fun furred_A : A ;
-fun 'self-centred_A' : A ;
-fun sceptred_A : A ;
-fun 'smoke-cured_A' : A ;
-fun 'home-cured_A' : A ;
-fun unsecured_A : A ;
-fun uncured_A : A ;
-fun uninjured_A : A ;
-fun enured_A : A ;
-fun tenured_A : A ;
-fun 'snuff-coloured_A' : A ;
-fun 'self-coloured_A' : A ;
-fun 'parti-coloured_A' : A ;
-fun 'light-coloured_A' : A ;
-fun 'straw-coloured_A' : A ;
-fun varicoloured_A : A ;
-fun uncoloured_A : A ;
-fun armoured_A : A ;
-fun 'good-humoured_A' : A ;
-fun 'time-honoured_A' : A ;
-fun unsoured_A : A ;
-fun 'well-favoured_A' : A ;
-fun 'ill-favoured_A' : A ;
-fun unmeasured_A : A ;
-fun leisured_A : A ;
-fun uninsured_A : A ;
-fun 'self-assured_A' : A ;
-fun unassured_A : A ;
-fun 'good-natured_A' : A ;
-fun 'ill-natured_A' : A ;
-fun denatured_A : A ;
-fun unstructured_A : A ;
-fun cultured_A : A ;
-fun uncultured_A : A ;
-fun textured_A : A ;
-fun unreleased_A : A ;
-fun diseased_A : A ;
-fun unbiased_A : A ;
-fun upraised_A : A ;
-fun immunocompromised_A : A ;
-fun equipoised_A : A ;
-fun unsurprised_A : A ;
-fun unpractised_A : A ;
-fun undisguised_A : A ;
-fun 'well-advised_A' : A ;
-fun 'ill-advised_A' : A ;
-fun unadvised_A : A ;
-fun unrevised_A : A ;
-fun unsupervised_A : A ;
-fun unlicensed_A : A ;
-fun thrombosed_A : A ;
-fun unenclosed_A : A ;
-fun undisclosed_A : A ;
-fun 'snub-nosed_A' : A ;
-fun 'pug-nosed_A' : A ;
-fun 'hook-nosed_A' : A ;
-fun 'snot-nosed_A' : A ;
-fun stenosed_A : A ;
-fun undiagnosed_A : A ;
-fun malposed_A : A ;
-fun 'self-imposed_A' : A ;
-fun unposed_A : A ;
-fun unopposed_A : A ;
-fun supposed_A : A ;
-fun 'well-disposed_A' : A ;
-fun 'ill-disposed_A' : A ;
-fun indisposed_A : A ;
-fun unexposed_A : A ;
-fun lapsed_A : A ;
-fun elapsed_A : A ;
-fun unrehearsed_A : A ;
-fun versed_A : A ;
-fun untraversed_A : A ;
-fun unversed_A : A ;
-fun accursed_A : A ;
-fun unbiassed_A : A ;
-fun unsurpassed_A : A ;
-fun unprocessed_A : A ;
-fun abscessed_A : A ;
-fun 'self-confessed_A' : A ;
-fun unconfessed_A : A ;
-fun unblessed_A : A ;
-fun unwitnessed_A : A ;
-fun 'self-addressed_A' : A ;
-fun unaddressed_A : A ;
-fun underdressed_A : A ;
-fun unrepressed_A : A ;
-fun unimpressed_A : A ;
-fun unpressed_A : A ;
-fun appressed_A : A ;
-fun unsuppressed_A : A ;
-fun immunosuppressed_A : A ;
-fun unexpressed_A : A ;
-fun prestressed_A : A ;
-fun unstressed_A : A ;
-fun 'self-possessed_A' : A ;
-fun unkissed_A : A ;
-fun 'storm-tossed_A' : A ;
-fun 'tempest-tossed_A' : A ;
-fun cussed_A : A ;
-fun unabused_A : A ;
-fun unfocused_A : A ;
-fun unexcused_A : A ;
-fun bemused_A : A ;
-fun unused_A : A ;
-fun calloused_A : A ;
-fun disused_A : A ;
-fun unabated_A : A ;
-fun undedicated_A : A ;
-fun uncomplicated_A : A ;
-fun unlubricated_A : A ;
-fun undomesticated_A : A ;
-fun sophisticated_A : A ;
-fun unsophisticated_A : A ;
-fun unlocated_A : A ;
-fun unreciprocated_A : A ;
-fun 'self-educated_A' : A ;
-fun uneducated_A : A ;
-fun undereducated_A : A ;
-fun 'short-dated_A' : A ;
-fun unconsolidated_A : A ;
-fun dilapidated_A : A ;
-fun undated_A : A ;
-fun outdated_A : A ;
-fun trabeated_A : A ;
-fun undefeated_A : A ;
-fun heated_A : A ;
-fun unheated_A : A ;
-fun nucleated_A : A ;
-fun undelineated_A : A ;
-fun untreated_A : A ;
-fun 'deep-seated_A' : A ;
-fun 'ill-fated_A' : A ;
-fun variegated_A : A ;
-fun unobligated_A : A ;
-fun unmitigated_A : A ;
-fun unexpurgated_A : A ;
-fun glaciated_A : A ;
-fun unappreciated_A : A ;
-fun unaffiliated_A : A ;
-fun ammoniated_A : A ;
-fun uninebriated_A : A ;
-fun asteriated_A : A ;
-fun thoriated_A : A ;
-fun striated_A : A ;
-fun uninitiated_A : A ;
-fun dedifferentiated_A : A ;
-fun undifferentiated_A : A ;
-fun ablated_A : A ;
-fun belated_A : A ;
-fun unrelated_A : A ;
-fun uncorrelated_A : A ;
-fun misrelated_A : A ;
-fun unventilated_A : A ;
-fun pixilated_A : A ;
-fun ocellated_A : A ;
-fun crenellated_A : A ;
-fun tessellated_A : A ;
-fun castellated_A : A ;
-fun carbolated_A : A ;
-fun mentholated_A : A ;
-fun 'steel-plated_A' : A ;
-fun discombobulated_A : A ;
-fun sacculated_A : A ;
-fun unarticulated_A : A ;
-fun acidulated_A : A ;
-fun unmodulated_A : A ;
-fun nodulated_A : A ;
-fun unregulated_A : A ;
-fun underpopulated_A : A ;
-fun methylated_A : A ;
-fun unanimated_A : A ;
-fun unconsummated_A : A ;
-fun unmated_A : A ;
-fun bichromated_A : A ;
-fun unvaccinated_A : A ;
-fun iodinated_A : A ;
-fun 'unco-ordinated_A' : A ;
-fun uncoordinated_A : A ;
-fun myelinated_A : A ;
-fun unmyelinated_A : A ;
-fun uncontaminated_A : A ;
-fun resinated_A : A ;
-fun carbonated_A : A ;
-fun noncarbonated_A : A ;
-fun opinionated_A : A ;
-fun 'self-opinionated_A' : A ;
-fun 'sugar-coated_A' : A ;
-fun petticoated_A : A ;
-fun uncoated_A : A ;
-fun undercoated_A : A ;
-fun bloated_A : A ;
-fun moated_A : A ;
-fun throated_A : A ;
-fun 'addle-pated_A' : A ;
-fun rattlepated_A : A ;
-fun unanticipated_A : A ;
-fun unconstipated_A : A ;
-fun deconsecrated_A : A ;
-fun unaerated_A : A ;
-fun unmoderated_A : A ;
-fun unadulterated_A : A ;
-fun desegrated_A : A ;
-fun nonintegrated_A : A ;
-fun borated_A : A ;
-fun unelaborated_A : A ;
-fun uncorroborated_A : A ;
-fun camphorated_A : A ;
-fun uncamphorated_A : A ;
-fun unincorporated_A : A ;
-fun serrated_A : A ;
-fun uncastrated_A : A ;
-fun unsaturated_A : A ;
-fun monounsaturated_A : A ;
-fun polyunsaturated_A : A ;
-fun supersaturated_A : A ;
-fun uncompensated_A : A ;
-fun unsated_A : A ;
-fun unpremeditated_A : A ;
-fun unagitated_A : A ;
-fun unstated_A : A ;
-fun antiquated_A : A ;
-fun uncultivated_A : A ;
-fun unmotivated_A : A ;
-fun indebted_A : A ;
-fun undoubted_A : A ;
-fun 'ill-affected_A' : A ;
-fun unaffected_A : A ;
-fun disaffected_A : A ;
-fun uninfected_A : A ;
-fun introjected_A : A ;
-fun unselected_A : A ;
-fun unreflected_A : A ;
-fun uninflected_A : A ;
-fun 'self-collected_A' : A ;
-fun uncollected_A : A ;
-fun 'well-connected_A' : A ;
-fun unconnected_A : A ;
-fun unsuspected_A : A ;
-fun unexpected_A : A ;
-fun uncorrected_A : A ;
-fun undetected_A : A ;
-fun unprotected_A : A ;
-fun unaddicted_A : A ;
-fun unpredicted_A : A ;
-fun undepicted_A : A ;
-fun unrestricted_A : A ;
-fun unconstricted_A : A ;
-fun 'well-conducted_A' : A ;
-fun unobstructed_A : A ;
-fun uninstructed_A : A ;
-fun unreconstructed_A : A ;
-fun faceted_A : A ;
-fun unfaceted_A : A ;
-fun crocketed_A : A ;
-fun ringleted_A : A ;
-fun chapleted_A : A ;
-fun uncompleted_A : A ;
-fun gauntleted_A : A ;
-fun helmeted_A : A ;
-fun coroneted_A : A ;
-fun uncarpeted_A : A ;
-fun gusseted_A : A ;
-fun ungusseted_A : A ;
-fun aftershafted_A : A ;
-fun tufted_A : A ;
-fun untufted_A : A ;
-fun dighted_A : A ;
-fun overweighted_A : A ;
-fun unlighted_A : A ;
-fun benighted_A : A ;
-fun 'second-sighted_A' : A ;
-fun 'long-sighted_A' : A ;
-fun 'quick-sighted_A' : A ;
-fun 'sharp-sighted_A' : A ;
-fun 'clear-sighted_A' : A ;
-fun 'near-sighted_A' : A ;
-fun 'far-sighted_A' : A ;
-fun 'short-sighted_A' : A ;
-fun unsighted_A : A ;
-fun nearsighted_A : A ;
-fun farsighted_A : A ;
-fun habited_A : A ;
-fun uninhabited_A : A ;
-fun uninhibited_A : A ;
-fun unsolicited_A : A ;
-fun unexcited_A : A ;
-fun overexcited_A : A ;
-fun unedited_A : A ;
-fun unaccredited_A : A ;
-fun conceited_A : A ;
-fun unlimited_A : A ;
-fun unexploited_A : A ;
-fun unmerited_A : A ;
-fun 'public-spirited_A' : A ;
-fun 'high-spirited_A' : A ;
-fun 'poor-spirited_A' : A ;
-fun 'low-spirited_A' : A ;
-fun 'party-spirited_A' : A ;
-fun attrited_A : A ;
-fun unrequited_A : A ;
-fun unsuited_A : A ;
-fun uninvited_A : A ;
-fun unmalted_A : A ;
-fun unsalted_A : A ;
-fun unbelted_A : A ;
-fun felted_A : A ;
-fun unmelted_A : A ;
-fun stilted_A : A ;
-fun unstilted_A : A ;
-fun unplanted_A : A ;
-fun untenanted_A : A ;
-fun unwarranted_A : A ;
-fun unwanted_A : A ;
-fun unaccented_A : A ;
-fun 'sweet-scented_A' : A ;
-fun precedented_A : A ;
-fun unprecedented_A : A ;
-fun unoriented_A : A ;
-fun talented_A : A ;
-fun untalented_A : A ;
-fun unlamented_A : A ;
-fun demented_A : A ;
-fun battlemented_A : A ;
-fun unsegmented_A : A ;
-fun unpigmented_A : A ;
-fun unfermented_A : A ;
-fun compartmented_A : A ;
-fun uncompartmented_A : A ;
-fun vestmented_A : A ;
-fun undocumented_A : A ;
-fun parented_A : A ;
-fun unparented_A : A ;
-fun unpatented_A : A ;
-fun unfrequented_A : A ;
-fun unvented_A : A ;
-fun unpainted_A : A ;
-fun sainted_A : A ;
-fun untainted_A : A ;
-fun unacquainted_A : A ;
-fun 'double-jointed_A' : A ;
-fun unjointed_A : A ;
-fun 'self-appointed_A' : A ;
-fun 'well-appointed_A' : A ;
-fun wonted_A : A ;
-fun unwonted_A : A ;
-fun undaunted_A : A ;
-fun unaccounted_A : A ;
-fun wainscoted_A : A ;
-fun bigoted_A : A ;
-fun unbigoted_A : A ;
-fun 'web-footed_A' : A ;
-fun 'club-footed_A' : A ;
-fun 'sure-footed_A' : A ;
-fun 'flat-footed_A' : A ;
-fun 'soft-footed_A' : A ;
-fun clubfooted_A : A ;
-fun barefooted_A : A ;
-fun surefooted_A : A ;
-fun splayfooted_A : A ;
-fun 'deep-rooted_A' : A ;
-fun unadapted_A : A ;
-fun scripted_A : A ;
-fun unscripted_A : A ;
-fun unprompted_A : A ;
-fun uninterrupted_A : A ;
-fun uncorrupted_A : A ;
-fun hearted_A : A ;
-fun 'cold-hearted_A' : A ;
-fun 'kind-hearted_A' : A ;
-fun 'simple-hearted_A' : A ;
-fun 'true-hearted_A' : A ;
-fun 'half-hearted_A' : A ;
-fun 'warm-hearted_A' : A ;
-fun 'chicken-hearted_A' : A ;
-fun 'broken-hearted_A' : A ;
-fun 'open-hearted_A' : A ;
-fun 'lion-hearted_A' : A ;
-fun 'soft-hearted_A' : A ;
-fun 'light-hearted_A' : A ;
-fun 'faint-hearted_A' : A ;
-fun 'heavy-hearted_A' : A ;
-fun coldhearted_A : A ;
-fun kindhearted_A : A ;
-fun hardhearted_A : A ;
-fun wholehearted_A : A ;
-fun halfhearted_A : A ;
-fun warmhearted_A : A ;
-fun brokenhearted_A : A ;
-fun openhearted_A : A ;
-fun lionhearted_A : A ;
-fun downhearted_A : A ;
-fun tenderhearted_A : A ;
-fun greathearted_A : A ;
-fun softhearted_A : A ;
-fun stouthearted_A : A ;
-fun heavyhearted_A : A ;
-fun uncharted_A : A ;
-fun departed_A : A ;
-fun preconcerted_A : A ;
-fun unconverted_A : A ;
-fun extroverted_A : A ;
-fun unreported_A : A ;
-fun unsupported_A : A ;
-fun unsorted_A : A ;
-fun assorted_A : A ;
-fun undistorted_A : A ;
-fun 'double-breasted_A' : A ;
-fun 'single-breasted_A' : A ;
-fun 'pigeon-breasted_A' : A ;
-fun masted_A : A ;
-fun untoasted_A : A ;
-fun undigested_A : A ;
-fun congested_A : A ;
-fun unmolested_A : A ;
-fun interested_A : A ;
-fun uninterested_A : A ;
-fun disinterested_A : A ;
-fun forested_A : A ;
-fun unforested_A : A ;
-fun uncontested_A : A ;
-fun untested_A : A ;
-fun unrequested_A : A ;
-fun 'wasp-waisted_A' : A ;
-fun 'close-fisted_A' : A ;
-fun 'ham-fisted_A' : A ;
-fun closefisted_A : A ;
-fun unlisted_A : A ;
-fun touristed_A : A ;
-fun 'motor-assisted_A' : A ;
-fun unassisted_A : A ;
-fun untwisted_A : A ;
-fun unfrosted_A : A ;
-fun unexhausted_A : A ;
-fun 'well-adjusted_A' : A ;
-fun maladjusted_A : A ;
-fun unadjusted_A : A ;
-fun encysted_A : A ;
-fun superfatted_A : A ;
-fun hatted_A : A ;
-fun slatted_A : A ;
-fun unfretted_A : A ;
-fun sulphuretted_A : A ;
-fun uncommitted_A : A ;
-fun 'quick-witted_A' : A ;
-fun 'sharp-witted_A' : A ;
-fun 'soft-witted_A' : A ;
-fun halfwitted_A : A ;
-fun nitwitted_A : A ;
-fun unpotted_A : A ;
-fun unspotted_A : A ;
-fun besotted_A : A ;
-fun hutted_A : A ;
-fun undistributed_A : A ;
-fun undiluted_A : A ;
-fun unpolluted_A : A ;
-fun voluted_A : A ;
-fun convoluted_A : A ;
-fun undisputed_A : A ;
-fun unsubdued_A : A ;
-fun tongued_A : A ;
-fun 'smooth-tongued_A' : A ;
-fun hued_A : A ;
-fun behaved_A : A ;
-fun 'well-behaved_A' : A ;
-fun 'badly-behaved_A' : A ;
-fun unshaved_A : A ;
-fun unpaved_A : A ;
-fun sleeved_A : A ;
-fun unrelieved_A : A ;
-fun unperceived_A : A ;
-fun 'long-lived_A' : A ;
-fun 'short-lived_A' : A ;
-fun underived_A : A ;
-fun unrevived_A : A ;
-fun valved_A : A ;
-fun unresolved_A : A ;
-fun unsolved_A : A ;
-fun undissolved_A : A ;
-fun uninvolved_A : A ;
-fun beloved_A : A ;
-fun unbeloved_A : A ;
-fun gloved_A : A ;
-fun unloved_A : A ;
-fun unmoved_A : A ;
-fun unimproved_A : A ;
-fun unproved_A : A ;
-fun uncarved_A : A ;
-fun 'sex-starved_A' : A ;
-fun unobserved_A : A ;
-fun undeserved_A : A ;
-fun unreserved_A : A ;
-fun decurved_A : A ;
-fun incurved_A : A ;
-fun uncurved_A : A ;
-fun upcurved_A : A ;
-fun unthawed_A : A ;
-fun jawed_A : A ;
-fun 'lantern-jawed_A' : A ;
-fun unawed_A : A ;
-fun bedewed_A : A ;
-fun 'home-brewed_A' : A ;
-fun unwed_A : A ;
-fun unbowed_A : A ;
-fun unshadowed_A : A ;
-fun widowed_A : A ;
-fun unendowed_A : A ;
-fun unhallowed_A : A ;
-fun unplowed_A : A ;
-fun 'beetle-browed_A' : A ;
-fun unfurrowed_A : A ;
-fun unavowed_A : A ;
-fun unrelaxed_A : A ;
-fun untaxed_A : A ;
-fun unwaxed_A : A ;
-fun hexed_A : A ;
-fun reflexed_A : A ;
-fun unperplexed_A : A ;
-fun undersexed_A : A ;
-fun oversexed_A : A ;
-fun unaffixed_A : A ;
-fun basifixed_A : A ;
-fun unfixed_A : A ;
-fun unmixed_A : A ;
-fun decayed_A : A ;
-fun undismayed_A : A ;
-fun unswayed_A : A ;
-fun 'double-dyed_A' : A ;
-fun 'almond-eyed_A' : A ;
-fun 'round-eyed_A' : A ;
-fun 'eagle-eyed_A' : A ;
-fun 'goggle-eyed_A' : A ;
-fun 'one-eyed_A' : A ;
-fun 'quick-eyed_A' : A ;
-fun 'hawk-eyed_A' : A ;
-fun 'wall-eyed_A' : A ;
-fun 'open-eyed_A' : A ;
-fun 'sharp-eyed_A' : A ;
-fun 'saucer-eyed_A' : A ;
-fun 'boss-eyed_A' : A ;
-fun 'argus-eyed_A' : A ;
-fun 'squint-eyed_A' : A ;
-fun 'skew-eyed_A' : A ;
-fun 'lynx-eyed_A' : A ;
-fun 'bleary-eyed_A' : A ;
-fun 'starry-eyed_A' : A ;
-fun 'high-keyed_A' : A ;
-fun 'low-keyed_A' : A ;
-fun cockeyed_A : A ;
-fun walleyed_A : A ;
-fun greeneyed_A : A ;
-fun hackneyed_A : A ;
-fun honeyed_A : A ;
-fun moneyed_A : A ;
-fun popeyed_A : A ;
-fun storeyed_A : A ;
-fun 'three-storeyed_A' : A ;
-fun crosseyed_A : A ;
-fun oxeyed_A : A ;
-fun overjoyed_A : A ;
-fun unalloyed_A : A ;
-fun 'self-employed_A' : A ;
-fun unemployed_A : A ;
-fun underemployed_A : A ;
-fun unglazed_A : A ;
-fun mazed_A : A ;
-fun crazed_A : A ;
-fun 'half-crazed_A' : A ;
-fun elasticized_A : A ;
-fun demythologized_A : A ;
-fun lexicalized_A : A ;
-fun unrealized_A : A ;
-fun unspecialized_A : A ;
-fun uncommercialized_A : A ;
-fun unindustrialized_A : A ;
-fun conventionalized_A : A ;
-fun noninstitutionalized_A : A ;
-fun unnaturalized_A : A ;
-fun unequalized_A : A ;
-fun lyophilized_A : A ;
-fun unsterilized_A : A ;
-fun unfertilized_A : A ;
-fun noncivilized_A : A ;
-fun uncivilized_A : A ;
-fun uncrystallized_A : A ;
-fun metagrobolized_A : A ;
-fun aerosolized_A : A ;
-fun randomized_A : A ;
-fun hypophysectomized_A : A ;
-fun suburbanized_A : A ;
-fun unvulcanized_A : A ;
-fun unorganized_A : A ;
-fun unmechanized_A : A ;
-fun unhomogenized_A : A ;
-fun unrecognized_A : A ;
-fun agonized_A : A ;
-fun nonionized_A : A ;
-fun unpatronized_A : A ;
-fun unmodernized_A : A ;
-fun militarized_A : A ;
-fun tenderized_A : A ;
-fun uncategorized_A : A ;
-fun unauthorized_A : A ;
-fun unmotorized_A : A ;
-fun transistorized_A : A ;
-fun unpasteurized_A : A ;
-fun pressurized_A : A ;
-fun 'life-sized_A' : A ;
-fun 'king-sized_A' : A ;
-fun 'man-sized_A' : A ;
-fun unsized_A : A ;
-fun undersized_A : A ;
-fun alphabetized_A : A ;
-fun unbaptized_A : A ;
-fun unanalyzed_A : A ;
-fun fuzzed_A : A ;
-fun 'deep-laid_A' : A ;
-fun mislaid_A : A ;
-fun 'post-paid_A' : A ;
-fun 'reply-paid_A' : A ;
-fun unpaid_A : A ;
-fun postpaid_A : A ;
-fun afraid_A : A ;
-fun unafraid_A : A ;
-fun aforesaid_A : A ;
-fun staid_A : A ;
-fun rabid_A : A ;
-fun morbid_A : A ;
-fun turbid_A : A ;
-fun acid_A : A ;
-fun subacid_A : A ;
-fun placid_A : A ;
-fun antacid_A : A ;
-fun flaccid_A : A ;
-fun rancid_A : A ;
-fun viscid_A : A ;
-fun lucid_A : A ;
-fun pellucid_A : A ;
-fun candid_A : A ;
-fun splendid_A : A ;
-fun sordid_A : A ;
-fun antiapartheid_A : A ;
-fun bifid_A : A ;
-fun trifid_A : A ;
-fun palmatifid_A : A ;
-fun pinnatifid_A : A ;
-fun bipinnatifid_A : A ;
-fun tripinnatifid_A : A ;
-fun rigid_A : A ;
-fun frigid_A : A ;
-fun semirigid_A : A ;
-fun nonrigid_A : A ;
-fun algid_A : A ;
-fun carangid_A : A ;
-fun turgid_A : A ;
-fun filariid_A : A ;
-fun 'non-skid_A' : A ;
-fun nonskid_A : A ;
-fun squalid_A : A ;
-fun valid_A : A ;
-fun invalid_A : A ;
-fun annelid_A : A ;
-fun pallid_A : A ;
-fun solid_A : A ;
-fun semisolid_A : A ;
-fun stolid_A : A ;
-fun mid_A : A ;
-fun timid_A : A ;
-fun humid_A : A ;
-fun tumid_A : A ;
-fun cyprinid_A : A ;
-fun ameboid_A : A ;
-fun rhomboid_A : A ;
-fun placoid_A : A ;
-fun coccoid_A : A ;
-fun discoid_A : A ;
-fun mucoid_A : A ;
-fun algoid_A : A ;
-fun fungoid_A : A ;
-fun lymphoid_A : A ;
-fun acanthoid_A : A ;
-fun bungaloid_A : A ;
-fun sepaloid_A : A ;
-fun petaloid_A : A ;
-fun cycloid_A : A ;
-fun myeloid_A : A ;
-fun thalloid_A : A ;
-fun metalloid_A : A ;
-fun mongoloid_A : A ;
-fun haploid_A : A ;
-fun diploid_A : A ;
-fun triploid_A : A ;
-fun aneuploid_A : A ;
-fun polyploid_A : A ;
-fun tuberculoid_A : A ;
-fun celluloid_A : A ;
-fun sigmoid_A : A ;
-fun rectosigmoid_A : A ;
-fun zymoid_A : A ;
-fun paranoid_A : A ;
-fun adenoid_A : A ;
-fun ctenoid_A : A ;
-fun benzenoid_A : A ;
-fun arachnoid_A : A ;
-fun mucinoid_A : A ;
-fun bituminoid_A : A ;
-fun crinoid_A : A ;
-fun actinoid_A : A ;
-fun hypnoid_A : A ;
-fun boskopoid_A : A ;
-fun anthropoid_A : A ;
-fun aroid_A : A ;
-fun cancroid_A : A ;
-fun aneroid_A : A ;
-fun asteroid_A : A ;
-fun negroid_A : A ;
-fun erythroid_A : A ;
-fun thyroid_A : A ;
-fun antithyroid_A : A ;
-fun ellipsoid_A : A ;
-fun medusoid_A : A ;
-fun rheumatoid_A : A ;
-fun deltoid_A : A ;
-fun allantoid_A : A ;
-fun mastoid_A : A ;
-fun void_A : A ;
-fun devoid_A : A ;
-fun ovoid_A : A ;
-fun hyoid_A : A ;
-fun myoid_A : A ;
-fun botryoid_A : A ;
-fun schizoid_A : A ;
-fun rapid_A : A ;
-fun vapid_A : A ;
-fun intrepid_A : A ;
-fun tepid_A : A ;
-fun insipid_A : A ;
-fun limpid_A : A ;
-fun torpid_A : A ;
-fun hispid_A : A ;
-fun bicuspid_A : A ;
-fun unicuspid_A : A ;
-fun tricuspid_A : A ;
-fun stupid_A : A ;
-fun arid_A : A ;
-fun semiarid_A : A ;
-fun hybrid_A : A ;
-fun acrid_A : A ;
-fun florid_A : A ;
-fun horrid_A : A ;
-fun torrid_A : A ;
-fun putrid_A : A ;
-fun lurid_A : A ;
-fun cellulosid_A : A ;
-fun fetid_A : A ;
-fun carotid_A : A ;
-fun parotid_A : A ;
-fun languid_A : A ;
-fun fluid_A : A ;
-fun liquid_A : A ;
-fun semiliquid_A : A ;
-fun avid_A : A ;
-fun livid_A : A ;
-fun vivid_A : A ;
-fun fervid_A : A ;
-fun perfervid_A : A ;
-fun piebald_A : A ;
-fun ribald_A : A ;
-fun downfield_A : A ;
-fun upfield_A : A ;
-fun 'age-old_A' : A ;
-fun overbold_A : A ;
-fun 'stone-cold_A' : A ;
-fun acold_A : A ;
-fun thousandfold_A : A ;
-fun blindfold_A : A ;
-fun threefold_A : A ;
-fun ninefold_A : A ;
-fun fivefold_A : A ;
-fun manifold_A : A ;
-fun tenfold_A : A ;
-fun sevenfold_A : A ;
-fun twofold_A : A ;
-fun fourfold_A : A ;
-fun sixfold_A : A ;
-fun leasehold_A : A ;
-fun unsold_A : A ;
-fun untold_A : A ;
-fun 'old-world_A' : A ;
-fun broadband_A : A ;
-fun 'second-hand_A' : A ;
-fun 'left-hand_A' : A ;
-fun 'right-hand_A' : A ;
-fun 'first-hand_A' : A ;
-fun behindhand_A : A ;
-fun secondhand_A : A ;
-fun thirdhand_A : A ;
-fun freehand_A : A ;
-fun forehand_A : A ;
-fun beforehand_A : A ;
-fun offhand_A : A ;
-fun longhand_A : A ;
-fun backhand_A : A ;
-fun underhand_A : A ;
-fun overhand_A : A ;
-fun shorthand_A : A ;
-fun firsthand_A : A ;
-fun inland_A : A ;
-fun upland_A : A ;
-fun overland_A : A ;
-fun lowland_A : A ;
-fun repand_A : A ;
-fun 'west-end_A' : A ;
-fun reverend_A : A ;
-fun hind_A : A ;
-fun unkind_A : A ;
-fun blind_A : A ;
-fun 'stone-blind_A' : A ;
-fun 'color-blind_A' : A ;
-fun 'colour-blind_A' : A ;
-fun purblind_A : A ;
-fun snowblind_A : A ;
-fun downwind_A : A ;
-fun upwind_A : A ;
-fun vagabond_A : A ;
-fun overfond_A : A ;
-fun moribund_A : A ;
-fun fecund_A : A ;
-fun rubicund_A : A ;
-fun jocund_A : A ;
-fun 'muscle-bound_A' : A ;
-fun 'storm-bound_A' : A ;
-fun 'weather-bound_A' : A ;
-fun 'frost-bound_A' : A ;
-fun hardbound_A : A ;
-fun icebound_A : A ;
-fun hidebound_A : A ;
-fun strikebound_A : A ;
-fun homebound_A : A ;
-fun housebound_A : A ;
-fun fogbound_A : A ;
-fun earthbound_A : A ;
-fun northbound_A : A ;
-fun southbound_A : A ;
-fun spellbound_A : A ;
-fun stormbound_A : A ;
-fun inbound_A : A ;
-fun downbound_A : A ;
-fun upbound_A : A ;
-fun brassbound_A : A ;
-fun rootbound_A : A ;
-fun potbound_A : A ;
-fun eastbound_A : A ;
-fun westbound_A : A ;
-fun outbound_A : A ;
-fun snowbound_A : A ;
-fun 'well-found_A' : A ;
-fun profound_A : A ;
-fun newfound_A : A ;
-fun compound_A : A ;
-fun decompound_A : A ;
-fun 'all-round_A' : A ;
-fun 'air-to-ground_A' : A ;
-fun aground_A : A ;
-fun aboveground_A : A ;
-fun underground_A : A ;
-fun belowground_A : A ;
-fun sound_A : A ;
-fun unsound_A : A ;
-fun rotund_A : A ;
-fun orotund_A : A ;
-fun 'dry-shod_A' : A ;
-fun roughshod_A : A ;
-fun ironshod_A : A ;
-fun unshod_A : A ;
-fun slipshod_A : A ;
-fun epitheliod_A : A ;
-fun mod_A : A ;
-fun ununderstood_A : A ;
-fun brachiopod_A : A ;
-fun branchiopod_A : A ;
-fun cephalopod_A : A ;
-fun standard_A : A ;
-fun substandard_A : A ;
-fun nonstandard_A : A ;
-fun unheard_A : A ;
-fun haggard_A : A ;
-fun semihard_A : A ;
-fun billiard_A : A ;
-fun 'above board_A' : A ;
-fun cardboard_A : A ;
-fun aboveboard_A : A ;
-fun inboard_A : A ;
-fun shipboard_A : A ;
-fun larboard_A : A ;
-fun starboard_A : A ;
-fun outboard_A : A ;
-fun mansard_A : A ;
-fun seaward_A : A ;
-fun windward_A : A ;
-fun leeward_A : A ;
-fun homeward_A : A ;
-fun backward_A : A ;
-fun awkward_A : A ;
-fun heavenward_A : A ;
-fun inward_A : A ;
-fun onward_A : A ;
-fun downward_A : A ;
-fun froward_A : A ;
-fun untoward_A : A ;
-fun upward_A : A ;
-fun rearward_A : A ;
-fun forward_A : A ;
-fun straightforward_A : A ;
-fun eastward_A : A ;
-fun northeastward_A : A ;
-fun southeastward_A : A ;
-fun westward_A : A ;
-fun northwestward_A : A ;
-fun southwestward_A : A ;
-fun outward_A : A ;
-fun wayward_A : A ;
-fun skyward_A : A ;
-fun haphazard_A : A ;
-fun wizard_A : A ;
-fun absurd_A : A ;
-fun dud_A : A ;
-fun 'stick-in-the-mud_A' : A ;
-fun 'purse-proud_A' : A ;
-fun houseproud_A : A ;
-fun overproud_A : A ;
-fun bad_A : A ;
-fun good_A : A ;
-fun glad_A : A ;
-fun mad_A : A ;
-fun broad_A : A ;
-fun sad_A : A ;
-fun odd_A : A ;
-fun toed_A : A ;
-fun red_A : A ;
-fun glued_A : A ;
-fun wed_A : A ;
-fun bald_A : A ;
-fun mild_A : A ;
-fun wild_A : A ;
-fun old_A : A ;
-fun bold_A : A ;
-fun cold_A : A ;
-fun gold_A : A ;
-fun auld_A : A ;
-fun bland_A : A ;
-fun grand_A : A ;
-fun kind_A : A ;
-fun fond_A : A ;
-fun blond_A : A ;
-fun round_A : A ;
-fun shod_A : A ;
-fun tod_A : A ;
-fun hard_A : A ;
-fun weird_A : A ;
-fun loud_A : A ;
-fun proud_A : A ;
-fun lewd_A : A ;
-fun shrewd_A : A ;
-fun alone_A : A ;
-fun 'first-rate_A' : A ;
-fun 'would-be_A' : A ;
-fun biface_A : A ;
-fun surface_A : A ;
-fun subsurface_A : A ;
-fun commonplace_A : A ;
-fun vivace_A : A ;
-fun 'three-piece_A' : A ;
-fun 'sub judice_A' : A ;
-fun choice_A : A ;
-fun 'cut-price_A' : A ;
-fun 'in-service_A' : A ;
-fun 'ex-service_A' : A ;
-fun askance_A : A ;
-fun freelance_A : A ;
-fun romance_A : A ;
-fun 'middle-distance_A' : A ;
-fun 'long-distance_A' : A ;
-fun 'viva voce_A' : A ;
-fun spruce_A : A ;
-fun 'home-made_A' : A ;
-fun 'machine-made_A' : A ;
-fun 'self-made_A' : A ;
-fun 'custom-made_A' : A ;
-fun 'tailor-made_A' : A ;
-fun 'ready-made_A' : A ;
-fun handmade_A : A ;
-fun homemade_A : A ;
-fun unmade_A : A ;
-fun 'high-grade_A' : A ;
-fun 'medium-grade_A' : A ;
-fun digitigrade_A : A ;
-fun plantigrade_A : A ;
-fun centigrade_A : A ;
-fun anterograde_A : A ;
-fun retrograde_A : A ;
-fun antitrade_A : A ;
-fun Swede_A : A ;
-fun 'bona fide_A' : A ;
-fun rawhide_A : A ;
-fun transactinide_A : A ;
-fun snide_A : A ;
-fun astride_A : A ;
-fun broadside_A : A ;
-fun offside_A : A ;
-fun greenside_A : A ;
-fun inside_A : A ;
-fun onside_A : A ;
-fun eastside_A : A ;
-fun westside_A : A ;
-fun outside_A : A ;
-fun worldwide_A : A ;
-fun statewide_A : A ;
-fun schoolwide_A : A ;
-fun nationwide_A : A ;
-fun countrywide_A : A ;
-fun citywide_A : A ;
-fun countywide_A : A ;
-fun blonde_A : A ;
-fun nude_A : A ;
-fun seminude_A : A ;
-fun buckshee_A : A ;
-fun alee_A : A ;
-fun soignee_A : A ;
-fun botonee_A : A ;
-fun 'rent-free_A' : A ;
-fun 'post-free_A' : A ;
-fun 'tax-free_A' : A ;
-fun 'fancy-free_A' : A ;
-fun 'duty-free_A' : A ;
-fun icefree_A : A ;
-fun carefree_A : A ;
-fun germfree_A : A ;
-fun unfree_A : A ;
-fun wee_A : A ;
-fun twee_A : A ;
-fun 'fail-safe_A' : A ;
-fun unsafe_A : A ;
-fun rife_A : A ;
-fun degage_A : A ;
-fun teenage_A : A ;
-fun 'full-page_A' : A ;
-fun underage_A : A ;
-fun average_A : A ;
-fun overage_A : A ;
-fun sage_A : A ;
-fun offstage_A : A ;
-fun onstage_A : A ;
-fun downstage_A : A ;
-fun upstage_A : A ;
-fun savage_A : A ;
-fun liege_A : A ;
-fun meshugge_A : A ;
-fun 'quick-change_A' : A ;
-fun 'free-range_A' : A ;
-fun 'long-range_A' : A ;
-fun 'short-range_A' : A ;
-fun orange_A : A ;
-fun 'writ large_A' : A ;
-fun overlarge_A : A ;
-fun huge_A : A ;
-fun boche_A : A ;
-fun gauche_A : A ;
-fun lithe_A : A ;
-fun blithe_A : A ;
-fun 'prima facie_A' : A ;
-fun indie_A : A ;
-fun couthie_A : A ;
-fun cockamamie_A : A ;
-fun dormie_A : A ;
-fun awake_A : A ;
-fun 'wide-awake_A' : A ;
-fun like_A : A ;
-fun 'dog-like_A' : A ;
-fun 'sylph-like_A' : A ;
-fun alike_A : A ;
-fun umbrellalike_A : A ;
-fun unalike_A : A ;
-fun riblike_A : A ;
-fun bulblike_A : A ;
-fun lamblike_A : A ;
-fun maniclike_A : A ;
-fun headlike_A : A ;
-fun threadlike_A : A ;
-fun childlike_A : A ;
-fun godlike_A : A ;
-fun podlike_A : A ;
-fun cloudlike_A : A ;
-fun babelike_A : A ;
-fun cubelike_A : A ;
-fun trancelike_A : A ;
-fun fencelike_A : A ;
-fun lifelike_A : A ;
-fun knifelike_A : A ;
-fun wifelike_A : A ;
-fun spikelike_A : A ;
-fun scalelike_A : A ;
-fun maplelike_A : A ;
-fun thistlelike_A : A ;
-fun bristlelike_A : A ;
-fun homelike_A : A ;
-fun plumelike_A : A ;
-fun linelike_A : A ;
-fun bonelike_A : A ;
-fun grapelike_A : A ;
-fun cheeselike_A : A ;
-fun viselike_A : A ;
-fun tonguelike_A : A ;
-fun slavelike_A : A ;
-fun olivelike_A : A ;
-fun eyelike_A : A ;
-fun leaflike_A : A ;
-fun shelflike_A : A ;
-fun wolflike_A : A ;
-fun hooflike_A : A ;
-fun serflike_A : A ;
-fun leglike_A : A ;
-fun kinglike_A : A ;
-fun ringlike_A : A ;
-fun springlike_A : A ;
-fun winglike_A : A ;
-fun doglike_A : A ;
-fun starchlike_A : A ;
-fun witchlike_A : A ;
-fun suchlike_A : A ;
-fun rushlike_A : A ;
-fun brushlike_A : A ;
-fun deathlike_A : A ;
-fun heathlike_A : A ;
-fun toothlike_A : A ;
-fun earthlike_A : A ;
-fun mouthlike_A : A ;
-fun beaklike_A : A ;
-fun necklike_A : A ;
-fun hooklike_A : A ;
-fun networklike_A : A ;
-fun metallike_A : A ;
-fun petallike_A : A ;
-fun eellike_A : A ;
-fun vowellike_A : A ;
-fun dreamlike_A : A ;
-fun palmlike_A : A ;
-fun armlike_A : A ;
-fun plumlike_A : A ;
-fun fanlike_A : A ;
-fun manlike_A : A ;
-fun seamanlike_A : A ;
-fun unseamanlike_A : A ;
-fun gentlemanlike_A : A ;
-fun workmanlike_A : A ;
-fun unworkmanlike_A : A ;
-fun womanlike_A : A ;
-fun statesmanlike_A : A ;
-fun unstatesmanlike_A : A ;
-fun sportsmanlike_A : A ;
-fun unsportsmanlike_A : A ;
-fun maidenlike_A : A ;
-fun resinlike_A : A ;
-fun ribbonlike_A : A ;
-fun moonlike_A : A ;
-fun ironlike_A : A ;
-fun prisonlike_A : A ;
-fun fernlike_A : A ;
-fun hornlike_A : A ;
-fun unlike_A : A ;
-fun straplike_A : A ;
-fun sheeplike_A : A ;
-fun wisplike_A : A ;
-fun cuplike_A : A ;
-fun starlike_A : A ;
-fun warlike_A : A ;
-fun featherlike_A : A ;
-fun motherlike_A : A ;
-fun loverlike_A : A ;
-fun hairlike_A : A ;
-fun mirrorlike_A : A ;
-fun burrlike_A : A ;
-fun furlike_A : A ;
-fun grasslike_A : A ;
-fun businesslike_A : A ;
-fun ratlike_A : A ;
-fun sheetlike_A : A ;
-fun saltlike_A : A ;
-fun beltlike_A : A ;
-fun chantlike_A : A ;
-fun saintlike_A : A ;
-fun parrotlike_A : A ;
-fun priestlike_A : A ;
-fun christlike_A : A ;
-fun dustlike_A : A ;
-fun nutlike_A : A ;
-fun clawlike_A : A ;
-fun boxlike_A : A ;
-fun ladylike_A : A ;
-fun unladylike_A : A ;
-fun honeylike_A : A ;
-fun daisylike_A : A ;
-fun bespoke_A : A ;
-fun broke_A : A ;
-fun 'stony-broke_A' : A ;
-fun 'large-scale_A' : A ;
-fun 'full-scale_A' : A ;
-fun downscale_A : A ;
-fun upscale_A : A ;
-fun hale_A : A ;
-fun male_A : A ;
-fun female_A : A ;
-fun wholesale_A : A ;
-fun 'come-at-able_A' : A ;
-fun 'un-come-at-able_A' : A ;
-fun 'get-at-able_A' : A ;
-fun 'un-get-at-able_A' : A ;
-fun clubbable_A : A ;
-fun bribable_A : A ;
-fun ascribable_A : A ;
-fun describable_A : A ;
-fun indescribable_A : A ;
-fun uncombable_A : A ;
-fun probable_A : A ;
-fun equiprobable_A : A ;
-fun improbable_A : A ;
-fun absorbable_A : A ;
-fun adsorbable_A : A ;
-fun imperturbable_A : A ;
-fun placable_A : A ;
-fun implacable_A : A ;
-fun peccable_A : A ;
-fun impeccable_A : A ;
-fun eradicable_A : A ;
-fun ineradicable_A : A ;
-fun abdicable_A : A ;
-fun judicable_A : A ;
-fun applicable_A : A ;
-fun inapplicable_A : A ;
-fun duplicable_A : A ;
-fun explicable_A : A ;
-fun inexplicable_A : A ;
-fun amicable_A : A ;
-fun communicable_A : A ;
-fun noncommunicable_A : A ;
-fun despicable_A : A ;
-fun extricable_A : A ;
-fun inextricable_A : A ;
-fun practicable_A : A ;
-fun impracticable_A : A ;
-fun allocable_A : A ;
-fun revocable_A : A ;
-fun irrevocable_A : A ;
-fun readable_A : A ;
-fun unreadable_A : A ;
-fun gradable_A : A ;
-fun biodegradable_A : A ;
-fun persuadable_A : A ;
-fun unpersuadable_A : A ;
-fun addable_A : A ;
-fun biddable_A : A ;
-fun formidable_A : A ;
-fun avoidable_A : A ;
-fun unavoidable_A : A ;
-fun dividable_A : A ;
-fun undividable_A : A ;
-fun foldable_A : A ;
-fun expandable_A : A ;
-fun understandable_A : A ;
-fun bendable_A : A ;
-fun ascendable_A : A ;
-fun defendable_A : A ;
-fun lendable_A : A ;
-fun amendable_A : A ;
-fun commendable_A : A ;
-fun dependable_A : A ;
-fun undependable_A : A ;
-fun expendable_A : A ;
-fun unexpendable_A : A ;
-fun bindable_A : A ;
-fun rescindable_A : A ;
-fun bondable_A : A ;
-fun unsoundable_A : A ;
-fun fordable_A : A ;
-fun laudable_A : A ;
-fun applaudable_A : A ;
-fun peaceable_A : A ;
-fun unpeaceable_A : A ;
-fun effaceable_A : A ;
-fun replaceable_A : A ;
-fun irreplaceable_A : A ;
-fun traceable_A : A ;
-fun untraceable_A : A ;
-fun fleeceable_A : A ;
-fun sacrificeable_A : A ;
-fun noticeable_A : A ;
-fun unnoticeable_A : A ;
-fun serviceable_A : A ;
-fun unserviceable_A : A ;
-fun danceable_A : A ;
-fun pronounceable_A : A ;
-fun unpronounceable_A : A ;
-fun enforceable_A : A ;
-fun unenforceable_A : A ;
-fun agreeable_A : A ;
-fun disagreeable_A : A ;
-fun foreseeable_A : A ;
-fun unforeseeable_A : A ;
-fun marriageable_A : A ;
-fun manageable_A : A ;
-fun unmanageable_A : A ;
-fun salvageable_A : A ;
-fun knowledgeable_A : A ;
-fun acknowledgeable_A : A ;
-fun bridgeable_A : A ;
-fun unbridgeable_A : A ;
-fun changeable_A : A ;
-fun unchangeable_A : A ;
-fun interchangeable_A : A ;
-fun noninterchangeable_A : A ;
-fun exchangeable_A : A ;
-fun unexchangeable_A : A ;
-fun challengeable_A : A ;
-fun unchallengeable_A : A ;
-fun chargeable_A : A ;
-fun rechargeable_A : A ;
-fun likeable_A : A ;
-fun saleable_A : A ;
-fun unsaleable_A : A ;
-fun malleable_A : A ;
-fun unmalleable_A : A ;
-fun permeable_A : A ;
-fun semipermeable_A : A ;
-fun impermeable_A : A ;
-fun fineable_A : A ;
-fun useable_A : A ;
-fun rateable_A : A ;
-fun liveable_A : A ;
-fun sizeable_A : A ;
-fun affable_A : A ;
-fun ineffable_A : A ;
-fun indefatigable_A : A ;
-fun mitigable_A : A ;
-fun unmitigable_A : A ;
-fun navigable_A : A ;
-fun unnavigable_A : A ;
-fun singable_A : A ;
-fun unimpeachable_A : A ;
-fun teachable_A : A ;
-fun irreproachable_A : A ;
-fun approachable_A : A ;
-fun unapproachable_A : A ;
-fun detachable_A : A ;
-fun attachable_A : A ;
-fun unmatchable_A : A ;
-fun stretchable_A : A ;
-fun touchable_A : A ;
-fun untouchable_A : A ;
-fun laughable_A : A ;
-fun cashable_A : A ;
-fun washable_A : A ;
-fun nonwashable_A : A ;
-fun publishable_A : A ;
-fun unpublishable_A : A ;
-fun abolishable_A : A ;
-fun accomplishable_A : A ;
-fun punishable_A : A ;
-fun perishable_A : A ;
-fun imperishable_A : A ;
-fun distinguishable_A : A ;
-fun indistinguishable_A : A ;
-fun undistinguishable_A : A ;
-fun extinguishable_A : A ;
-fun inextinguishable_A : A ;
-fun appreciable_A : A ;
-fun inappreciable_A : A ;
-fun sociable_A : A ;
-fun unsociable_A : A ;
-fun associable_A : A ;
-fun dissociable_A : A ;
-fun amerciable_A : A ;
-fun remediable_A : A ;
-fun irremediable_A : A ;
-fun liquefiable_A : A ;
-fun specifiable_A : A ;
-fun modifiable_A : A ;
-fun unmodifiable_A : A ;
-fun verifiable_A : A ;
-fun classifiable_A : A ;
-fun unclassifiable_A : A ;
-fun quantifiable_A : A ;
-fun identifiable_A : A ;
-fun unidentifiable_A : A ;
-fun notifiable_A : A ;
-fun certifiable_A : A ;
-fun justifiable_A : A ;
-fun unjustifiable_A : A ;
-fun unsatisfiable_A : A ;
-fun liable_A : A ;
-fun reliable_A : A ;
-fun unreliable_A : A ;
-fun pliable_A : A ;
-fun amiable_A : A ;
-fun deniable_A : A ;
-fun undeniable_A : A ;
-fun expiable_A : A ;
-fun inexpiable_A : A ;
-fun variable_A : A ;
-fun invariable_A : A ;
-fun friable_A : A ;
-fun appropriable_A : A ;
-fun satiable_A : A ;
-fun insatiable_A : A ;
-fun pitiable_A : A ;
-fun differentiable_A : A ;
-fun negotiable_A : A ;
-fun dutiable_A : A ;
-fun viable_A : A ;
-fun enviable_A : A ;
-fun unenviable_A : A ;
-fun nonviable_A : A ;
-fun speakable_A : A ;
-fun unspeakable_A : A ;
-fun breakable_A : A ;
-fun unbreakable_A : A ;
-fun shakable_A : A ;
-fun unshakable_A : A ;
-fun unmistakable_A : A ;
-fun packable_A : A ;
-fun uncheckable_A : A ;
-fun shockable_A : A ;
-fun unshockable_A : A ;
-fun likable_A : A ;
-fun unlikable_A : A ;
-fun dislikable_A : A ;
-fun bankable_A : A ;
-fun thinkable_A : A ;
-fun unthinkable_A : A ;
-fun drinkable_A : A ;
-fun undrinkable_A : A ;
-fun shrinkable_A : A ;
-fun unshrinkable_A : A ;
-fun sinkable_A : A ;
-fun unsinkable_A : A ;
-fun bookable_A : A ;
-fun remarkable_A : A ;
-fun unremarkable_A : A ;
-fun workable_A : A ;
-fun unworkable_A : A ;
-fun scalable_A : A ;
-fun unscalable_A : A ;
-fun appealable_A : A ;
-fun unappealable_A : A ;
-fun salable_A : A ;
-fun unsalable_A : A ;
-fun bailable_A : A ;
-fun assailable_A : A ;
-fun unassailable_A : A ;
-fun available_A : A ;
-fun unavailable_A : A ;
-fun reconcilable_A : A ;
-fun irreconcilable_A : A ;
-fun assimilable_A : A ;
-fun callable_A : A ;
-fun killable_A : A ;
-fun controllable_A : A ;
-fun uncontrollable_A : A ;
-fun violable_A : A ;
-fun inviolable_A : A ;
-fun isolable_A : A ;
-fun consolable_A : A ;
-fun inconsolable_A : A ;
-fun calculable_A : A ;
-fun incalculable_A : A ;
-fun coagulable_A : A ;
-fun tamable_A : A ;
-fun redeemable_A : A ;
-fun unredeemable_A : A ;
-fun irredeemable_A : A ;
-fun reclaimable_A : A ;
-fun irreclaimable_A : A ;
-fun estimable_A : A ;
-fun inestimable_A : A ;
-fun filmable_A : A ;
-fun flammable_A : A ;
-fun inflammable_A : A ;
-fun nonflammable_A : A ;
-fun fathomable_A : A ;
-fun unfathomable_A : A ;
-fun affirmable_A : A ;
-fun confirmable_A : A ;
-fun unreformable_A : A ;
-fun conformable_A : A ;
-fun unconformable_A : A ;
-fun transformable_A : A ;
-fun presumable_A : A ;
-fun consumable_A : A ;
-fun cleanable_A : A ;
-fun alienable_A : A ;
-fun inalienable_A : A ;
-fun unalienable_A : A ;
-fun amenable_A : A ;
-fun tenable_A : A ;
-fun untenable_A : A ;
-fun impregnable_A : A ;
-fun assignable_A : A ;
-fun impugnable_A : A ;
-fun explainable_A : A ;
-fun obtainable_A : A ;
-fun unobtainable_A : A ;
-fun maintainable_A : A ;
-fun ascertainable_A : A ;
-fun unascertainable_A : A ;
-fun stainable_A : A ;
-fun sustainable_A : A ;
-fun attainable_A : A ;
-fun unattainable_A : A ;
-fun combinable_A : A ;
-fun finable_A : A ;
-fun definable_A : A ;
-fun indefinable_A : A ;
-fun undefinable_A : A ;
-fun imaginable_A : A ;
-fun unimaginable_A : A ;
-fun discriminable_A : A ;
-fun abominable_A : A ;
-fun terminable_A : A ;
-fun determinable_A : A ;
-fun indeterminable_A : A ;
-fun interminable_A : A ;
-fun exterminable_A : A ;
-fun inexterminable_A : A ;
-fun damnable_A : A ;
-fun condemnable_A : A ;
-fun spinnable_A : A ;
-fun pardonable_A : A ;
-fun unpardonable_A : A ;
-fun conscionable_A : A ;
-fun unconscionable_A : A ;
-fun fashionable_A : A ;
-fun unfashionable_A : A ;
-fun companionable_A : A ;
-fun pensionable_A : A ;
-fun impressionable_A : A ;
-fun unimpressionable_A : A ;
-fun fissionable_A : A ;
-fun nonfissionable_A : A ;
-fun actionable_A : A ;
-fun objectionable_A : A ;
-fun unobjectionable_A : A ;
-fun positionable_A : A ;
-fun unmentionable_A : A ;
-fun exceptionable_A : A ;
-fun unexceptionable_A : A ;
-fun proportionable_A : A ;
-fun questionable_A : A ;
-fun unquestionable_A : A ;
-fun reasonable_A : A ;
-fun unreasonable_A : A ;
-fun treasonable_A : A ;
-fun seasonable_A : A ;
-fun unseasonable_A : A ;
-fun personable_A : A ;
-fun ungovernable_A : A ;
-fun burnable_A : A ;
-fun returnable_A : A ;
-fun nonreturnable_A : A ;
-fun unable_A : A ;
-fun putdownable_A : A ;
-fun unputdownable_A : A ;
-fun capable_A : A ;
-fun incapable_A : A ;
-fun inescapable_A : A ;
-fun palpable_A : A ;
-fun impalpable_A : A ;
-fun culpable_A : A ;
-fun unflappable_A : A ;
-fun stoppable_A : A ;
-fun unstoppable_A : A ;
-fun arable_A : A ;
-fun bearable_A : A ;
-fun unbearable_A : A ;
-fun wearable_A : A ;
-fun unwearable_A : A ;
-fun declarable_A : A ;
-fun reparable_A : A ;
-fun irreparable_A : A ;
-fun separable_A : A ;
-fun inseparable_A : A ;
-fun comparable_A : A ;
-fun incomparable_A : A ;
-fun execrable_A : A ;
-fun considerable_A : A ;
-fun inconsiderable_A : A ;
-fun ponderable_A : A ;
-fun imponderable_A : A ;
-fun steerable_A : A ;
-fun referable_A : A ;
-fun preferable_A : A ;
-fun sufferable_A : A ;
-fun insufferable_A : A ;
-fun transferable_A : A ;
-fun nontransferable_A : A ;
-fun decipherable_A : A ;
-fun indecipherable_A : A ;
-fun tolerable_A : A ;
-fun intolerable_A : A ;
-fun numerable_A : A ;
-fun innumerable_A : A ;
-fun venerable_A : A ;
-fun vulnerable_A : A ;
-fun invulnerable_A : A ;
-fun operable_A : A ;
-fun inoperable_A : A ;
-fun interoperable_A : A ;
-fun insuperable_A : A ;
-fun miserable_A : A ;
-fun obliterable_A : A ;
-fun alterable_A : A ;
-fun unalterable_A : A ;
-fun unutterable_A : A ;
-fun conquerable_A : A ;
-fun unconquerable_A : A ;
-fun deliverable_A : A ;
-fun recoverable_A : A ;
-fun unrecoverable_A : A ;
-fun irrecoverable_A : A ;
-fun maneuverable_A : A ;
-fun answerable_A : A ;
-fun unanswerable_A : A ;
-fun repairable_A : A ;
-fun admirable_A : A ;
-fun desirable_A : A ;
-fun undesirable_A : A ;
-fun acquirable_A : A ;
-fun adorable_A : A ;
-fun deplorable_A : A ;
-fun memorable_A : A ;
-fun unmemorable_A : A ;
-fun honorable_A : A ;
-fun dishonorable_A : A ;
-fun evaporable_A : A ;
-fun favorable_A : A ;
-fun unfavorable_A : A ;
-fun inexorable_A : A ;
-fun inerrable_A : A ;
-fun penetrable_A : A ;
-fun impenetrable_A : A ;
-fun arbitrable_A : A ;
-fun nonarbitrable_A : A ;
-fun administrable_A : A ;
-fun demonstrable_A : A ;
-fun curable_A : A ;
-fun incurable_A : A ;
-fun procurable_A : A ;
-fun durable_A : A ;
-fun endurable_A : A ;
-fun unendurable_A : A ;
-fun honourable_A : A ;
-fun dishonourable_A : A ;
-fun favourable_A : A ;
-fun unfavourable_A : A ;
-fun pleasurable_A : A ;
-fun measurable_A : A ;
-fun immeasurable_A : A ;
-fun mensurable_A : A ;
-fun commensurable_A : A ;
-fun incommensurable_A : A ;
-fun insurable_A : A ;
-fun uninsurable_A : A ;
-fun puncturable_A : A ;
-fun manoeuvrable_A : A ;
-fun sable_A : A ;
-fun appeasable_A : A ;
-fun purchasable_A : A ;
-fun raisable_A : A ;
-fun advisable_A : A ;
-fun inadvisable_A : A ;
-fun compensable_A : A ;
-fun dispensable_A : A ;
-fun indispensable_A : A ;
-fun diagnosable_A : A ;
-fun undiagnosable_A : A ;
-fun opposable_A : A ;
-fun unopposable_A : A ;
-fun disposable_A : A ;
-fun nondisposable_A : A ;
-fun transposable_A : A ;
-fun collapsable_A : A ;
-fun traversable_A : A ;
-fun untraversable_A : A ;
-fun passable_A : A ;
-fun impassable_A : A ;
-fun unsurpassable_A : A ;
-fun addressable_A : A ;
-fun assessable_A : A ;
-fun usable_A : A ;
-fun excusable_A : A ;
-fun inexcusable_A : A ;
-fun confusable_A : A ;
-fun abatable_A : A ;
-fun debatable_A : A ;
-fun datable_A : A ;
-fun undatable_A : A ;
-fun eatable_A : A ;
-fun beatable_A : A ;
-fun unbeatable_A : A ;
-fun heatable_A : A ;
-fun uneatable_A : A ;
-fun repeatable_A : A ;
-fun unrepeatable_A : A ;
-fun palatable_A : A ;
-fun unpalatable_A : A ;
-fun inflatable_A : A ;
-fun translatable_A : A ;
-fun untranslatable_A : A ;
-fun ratable_A : A ;
-fun unratable_A : A ;
-fun rotatable_A : A ;
-fun redoubtable_A : A ;
-fun actable_A : A ;
-fun unactable_A : A ;
-fun tractable_A : A ;
-fun retractable_A : A ;
-fun intractable_A : A ;
-fun attractable_A : A ;
-fun extractable_A : A ;
-fun injectable_A : A ;
-fun uninjectable_A : A ;
-fun delectable_A : A ;
-fun respectable_A : A ;
-fun unrespectable_A : A ;
-fun expectable_A : A ;
-fun correctable_A : A ;
-fun detectable_A : A ;
-fun undetectable_A : A ;
-fun predictable_A : A ;
-fun unpredictable_A : A ;
-fun indictable_A : A ;
-fun ineluctable_A : A ;
-fun vegetable_A : A ;
-fun marketable_A : A ;
-fun unmarketable_A : A ;
-fun depletable_A : A ;
-fun habitable_A : A ;
-fun inhabitable_A : A ;
-fun uninhabitable_A : A ;
-fun indubitable_A : A ;
-fun excitable_A : A ;
-fun unexcitable_A : A ;
-fun creditable_A : A ;
-fun discreditable_A : A ;
-fun unforfeitable_A : A ;
-fun profitable_A : A ;
-fun unprofitable_A : A ;
-fun cogitable_A : A ;
-fun illimitable_A : A ;
-fun inimitable_A : A ;
-fun indomitable_A : A ;
-fun hospitable_A : A ;
-fun inhospitable_A : A ;
-fun charitable_A : A ;
-fun uncharitable_A : A ;
-fun heritable_A : A ;
-fun inheritable_A : A ;
-fun noninheritable_A : A ;
-fun veritable_A : A ;
-fun irritable_A : A ;
-fun equitable_A : A ;
-fun inequitable_A : A ;
-fun suitable_A : A ;
-fun unsuitable_A : A ;
-fun evitable_A : A ;
-fun inevitable_A : A ;
-fun meltable_A : A ;
-fun transplantable_A : A ;
-fun lamentable_A : A ;
-fun fermentable_A : A ;
-fun rentable_A : A ;
-fun unrentable_A : A ;
-fun presentable_A : A ;
-fun representable_A : A ;
-fun preventable_A : A ;
-fun unpreventable_A : A ;
-fun paintable_A : A ;
-fun unpaintable_A : A ;
-fun printable_A : A ;
-fun unprintable_A : A ;
-fun countable_A : A ;
-fun accountable_A : A ;
-fun unaccountable_A : A ;
-fun surmountable_A : A ;
-fun insurmountable_A : A ;
-fun unsurmountable_A : A ;
-fun notable_A : A ;
-fun potable_A : A ;
-fun quotable_A : A ;
-fun unquotable_A : A ;
-fun adaptable_A : A ;
-fun unadaptable_A : A ;
-fun acceptable_A : A ;
-fun unacceptable_A : A ;
-fun temptable_A : A ;
-fun adoptable_A : A ;
-fun unadoptable_A : A ;
-fun comfortable_A : A ;
-fun uncomfortable_A : A ;
-fun portable_A : A ;
-fun reportable_A : A ;
-fun unreportable_A : A ;
-fun unportable_A : A ;
-fun supportable_A : A ;
-fun insupportable_A : A ;
-fun unsupportable_A : A ;
-fun transportable_A : A ;
-fun exportable_A : A ;
-fun unexportable_A : A ;
-fun distortable_A : A ;
-fun stable_A : A ;
-fun metastable_A : A ;
-fun detestable_A : A ;
-fun contestable_A : A ;
-fun incontestable_A : A ;
-fun unstable_A : A ;
-fun adjustable_A : A ;
-fun unadjustable_A : A ;
-fun gettable_A : A ;
-fun forgettable_A : A ;
-fun unforgettable_A : A ;
-fun regrettable_A : A ;
-fun admittable_A : A ;
-fun attributable_A : A ;
-fun unattributable_A : A ;
-fun refutable_A : A ;
-fun irrefutable_A : A ;
-fun mutable_A : A ;
-fun immutable_A : A ;
-fun commutable_A : A ;
-fun incommutable_A : A ;
-fun transmutable_A : A ;
-fun reputable_A : A ;
-fun disreputable_A : A ;
-fun computable_A : A ;
-fun incomputable_A : A ;
-fun disputable_A : A ;
-fun indisputable_A : A ;
-fun inscrutable_A : A ;
-fun substitutable_A : A ;
-fun subduable_A : A ;
-fun arguable_A : A ;
-fun inarguable_A : A ;
-fun unarguable_A : A ;
-fun valuable_A : A ;
-fun invaluable_A : A ;
-fun equable_A : A ;
-fun cleavable_A : A ;
-fun achievable_A : A ;
-fun unachievable_A : A ;
-fun believable_A : A ;
-fun unbelievable_A : A ;
-fun retrievable_A : A ;
-fun irretrievable_A : A ;
-fun receivable_A : A ;
-fun conceivable_A : A ;
-fun inconceivable_A : A ;
-fun perceivable_A : A ;
-fun forgivable_A : A ;
-fun unforgivable_A : A ;
-fun livable_A : A ;
-fun unlivable_A : A ;
-fun derivable_A : A ;
-fun cultivable_A : A ;
-fun uncultivable_A : A ;
-fun solvable_A : A ;
-fun resolvable_A : A ;
-fun unresolvable_A : A ;
-fun insolvable_A : A ;
-fun dissolvable_A : A ;
-fun lovable_A : A ;
-fun unlovable_A : A ;
-fun movable_A : A ;
-fun removable_A : A ;
-fun irremovable_A : A ;
-fun immovable_A : A ;
-fun unmovable_A : A ;
-fun provable_A : A ;
-fun improvable_A : A ;
-fun unprovable_A : A ;
-fun observable_A : A ;
-fun unobservable_A : A ;
-fun preservable_A : A ;
-fun introuvable_A : A ;
-fun chewable_A : A ;
-fun viewable_A : A ;
-fun renewable_A : A ;
-fun unrenewable_A : A ;
-fun allowable_A : A ;
-fun knowable_A : A ;
-fun unknowable_A : A ;
-fun disavowable_A : A ;
-fun taxable_A : A ;
-fun nontaxable_A : A ;
-fun decayable_A : A ;
-fun playable_A : A ;
-fun unplayable_A : A ;
-fun payable_A : A ;
-fun repayable_A : A ;
-fun enjoyable_A : A ;
-fun employable_A : A ;
-fun unemployable_A : A ;
-fun destroyable_A : A ;
-fun undestroyable_A : A ;
-fun oxidizable_A : A ;
-fun realizable_A : A ;
-fun diagonalizable_A : A ;
-fun fertilizable_A : A ;
-fun utilizable_A : A ;
-fun recognizable_A : A ;
-fun unrecognizable_A : A ;
-fun incognizable_A : A ;
-fun harmonizable_A : A ;
-fun sizable_A : A ;
-fun analyzable_A : A ;
-fun unanalyzable_A : A ;
-fun hydrolyzable_A : A ;
-fun hardscrabble_A : A ;
-fun treble_A : A ;
-fun invincible_A : A ;
-fun convincible_A : A ;
-fun forcible_A : A ;
-fun irascible_A : A ;
-fun imputrescible_A : A ;
-fun miscible_A : A ;
-fun immiscible_A : A ;
-fun deducible_A : A ;
-fun reducible_A : A ;
-fun irreducible_A : A ;
-fun reproducible_A : A ;
-fun unreproducible_A : A ;
-fun edible_A : A ;
-fun inedible_A : A ;
-fun credible_A : A ;
-fun incredible_A : A ;
-fun extendible_A : A ;
-fun audible_A : A ;
-fun inaudible_A : A ;
-fun legible_A : A ;
-fun illegible_A : A ;
-fun eligible_A : A ;
-fun ineligible_A : A ;
-fun negligible_A : A ;
-fun intelligible_A : A ;
-fun unintelligible_A : A ;
-fun corrigible_A : A ;
-fun incorrigible_A : A ;
-fun frangible_A : A ;
-fun infrangible_A : A ;
-fun tangible_A : A ;
-fun intangible_A : A ;
-fun fungible_A : A ;
-fun inexpungible_A : A ;
-fun delible_A : A ;
-fun indelible_A : A ;
-fun fallible_A : A ;
-fun infallible_A : A ;
-fun gullible_A : A ;
-fun discernible_A : A ;
-fun indiscernible_A : A ;
-fun terrible_A : A ;
-fun horrible_A : A ;
-fun feasible_A : A ;
-fun defeasible_A : A ;
-fun indefeasible_A : A ;
-fun risible_A : A ;
-fun visible_A : A ;
-fun divisible_A : A ;
-fun indivisible_A : A ;
-fun invisible_A : A ;
-fun defensible_A : A ;
-fun indefensible_A : A ;
-fun reprehensible_A : A ;
-fun comprehensible_A : A ;
-fun incomprehensible_A : A ;
-fun apprehensible_A : A ;
-fun sensible_A : A ;
-fun insensible_A : A ;
-fun distensible_A : A ;
-fun ostensible_A : A ;
-fun responsible_A : A ;
-fun irresponsible_A : A ;
-fun collapsible_A : A ;
-fun noncollapsible_A : A ;
-fun submersible_A : A ;
-fun nonsubmersible_A : A ;
-fun reversible_A : A ;
-fun nonreversible_A : A ;
-fun irreversible_A : A ;
-fun accessible_A : A ;
-fun inaccessible_A : A ;
-fun irrepressible_A : A ;
-fun compressible_A : A ;
-fun incompressible_A : A ;
-fun expressible_A : A ;
-fun inexpressible_A : A ;
-fun admissible_A : A ;
-fun inadmissible_A : A ;
-fun omissible_A : A ;
-fun permissible_A : A ;
-fun impermissible_A : A ;
-fun dismissible_A : A ;
-fun possible_A : A ;
-fun impossible_A : A ;
-fun plausible_A : A ;
-fun implausible_A : A ;
-fun fusible_A : A ;
-fun compatible_A : A ;
-fun incompatible_A : A ;
-fun contractible_A : A ;
-fun perfectible_A : A ;
-fun imperfectible_A : A ;
-fun collectible_A : A ;
-fun deductible_A : A ;
-fun nondeductible_A : A ;
-fun destructible_A : A ;
-fun indestructible_A : A ;
-fun perceptible_A : A ;
-fun imperceptible_A : A ;
-fun susceptible_A : A ;
-fun unsusceptible_A : A ;
-fun contemptible_A : A ;
-fun corruptible_A : A ;
-fun incorruptible_A : A ;
-fun partible_A : A ;
-fun revertible_A : A ;
-fun invertible_A : A ;
-fun convertible_A : A ;
-fun inconvertible_A : A ;
-fun incontrovertible_A : A ;
-fun suggestible_A : A ;
-fun digestible_A : A ;
-fun indigestible_A : A ;
-fun nondigestible_A : A ;
-fun resistible_A : A ;
-fun irresistible_A : A ;
-fun exhaustible_A : A ;
-fun inexhaustible_A : A ;
-fun combustible_A : A ;
-fun incombustible_A : A ;
-fun noncombustible_A : A ;
-fun flexible_A : A ;
-fun inflexible_A : A ;
-fun 'rough-and-tumble_A' : A ;
-fun ignoble_A : A ;
-fun soluble_A : A ;
-fun insoluble_A : A ;
-fun dissoluble_A : A ;
-fun indissoluble_A : A ;
-fun voluble_A : A ;
-fun double_A : A ;
-fun addle_A : A ;
-fun 'bone-idle_A' : A ;
-fun single_A : A ;
-fun labile_A : A ;
-fun thermolabile_A : A ;
-fun cantabile_A : A ;
-fun stabile_A : A ;
-fun mobile_A : A ;
-fun immobile_A : A ;
-fun nubile_A : A ;
-fun facile_A : A ;
-fun gracile_A : A ;
-fun imbecile_A : A ;
-fun docile_A : A ;
-fun indocile_A : A ;
-fun agile_A : A ;
-fun fragile_A : A ;
-fun vagile_A : A ;
-fun worthwhile_A : A ;
-fun anile_A : A ;
-fun penile_A : A ;
-fun senile_A : A ;
-fun juvenile_A : A ;
-fun febrile_A : A ;
-fun afebrile_A : A ;
-fun sterile_A : A ;
-fun puerile_A : A ;
-fun virile_A : A ;
-fun prehensile_A : A ;
-fun nonprehensile_A : A ;
-fun tensile_A : A ;
-fun extensile_A : A ;
-fun nonextensile_A : A ;
-fun sessile_A : A ;
-fun fissile_A : A ;
-fun nonfissile_A : A ;
-fun protrusile_A : A ;
-fun volatile_A : A ;
-fun nonvolatile_A : A ;
-fun versatile_A : A ;
-fun retractile_A : A ;
-fun nonretractile_A : A ;
-fun contractile_A : A ;
-fun protractile_A : A ;
-fun tactile_A : A ;
-fun projectile_A : A ;
-fun erectile_A : A ;
-fun fictile_A : A ;
-fun ductile_A : A ;
-fun mercantile_A : A ;
-fun infantile_A : A ;
-fun gentile_A : A ;
-fun motile_A : A ;
-fun nonmotile_A : A ;
-fun fertile_A : A ;
-fun infertile_A : A ;
-fun hostile_A : A ;
-fun futile_A : A ;
-fun inutile_A : A ;
-fun textile_A : A ;
-fun servile_A : A ;
-fun unservile_A : A ;
-fun axile_A : A ;
-fun ramshackle_A : A ;
-fun fickle_A : A ;
-fun creole_A : A ;
-fun 'top-hole_A' : A ;
-fun whole_A : A ;
-fun sole_A : A ;
-fun triple_A : A ;
-fun multiple_A : A ;
-fun purple_A : A ;
-fun nonuple_A : A ;
-fun quadruple_A : A ;
-fun octuple_A : A ;
-fun quintuple_A : A ;
-fun septuple_A : A ;
-fun sextuple_A : A ;
-fun unsubtle_A : A ;
-fun ungentle_A : A ;
-fun brittle_A : A ;
-fun majuscule_A : A ;
-fun minuscule_A : A ;
-fun prostyle_A : A ;
-fun game_A : A ;
-fun aflame_A : A ;
-fun same_A : A ;
-fun 'self-same_A' : A ;
-fun supreme_A : A ;
-fun extreme_A : A ;
-fun sublime_A : A ;
-fun prime_A : A ;
-fun 'old-time_A' : A ;
-fun 'good-time_A' : A ;
-fun 'one-time_A' : A ;
-fun 'long-time_A' : A ;
-fun 'full-time_A' : A ;
-fun 'part-time_A' : A ;
-fun maritime_A : A ;
-fun smalltime_A : A ;
-fun welcome_A : A ;
-fun unwelcome_A : A ;
-fun 'take-home_A' : A ;
-fun monochrome_A : A ;
-fun frolicsome_A : A ;
-fun gladsome_A : A ;
-fun handsome_A : A ;
-fun blithesome_A : A ;
-fun troublesome_A : A ;
-fun meddlesome_A : A ;
-fun cuddlesome_A : A ;
-fun wholesome_A : A ;
-fun unwholesome_A : A ;
-fun mettlesome_A : A ;
-fun lonesome_A : A ;
-fun tiresome_A : A ;
-fun venturesome_A : A ;
-fun adventuresome_A : A ;
-fun gruesome_A : A ;
-fun awesome_A : A ;
-fun loathsome_A : A ;
-fun toothsome_A : A ;
-fun noisome_A : A ;
-fun wearisome_A : A ;
-fun worrisome_A : A ;
-fun irksome_A : A ;
-fun quarrelsome_A : A ;
-fun toilsome_A : A ;
-fun fulsome_A : A ;
-fun burdensome_A : A ;
-fun winsome_A : A ;
-fun fearsome_A : A ;
-fun cumbersome_A : A ;
-fun bothersome_A : A ;
-fun lissome_A : A ;
-fun lightsome_A : A ;
-fun urbane_A : A ;
-fun arcane_A : A ;
-fun mundane_A : A ;
-fun transmundane_A : A ;
-fun profane_A : A ;
-fun 'three-lane_A' : A ;
-fun multilane_A : A ;
-fun germane_A : A ;
-fun humane_A : A ;
-fun inhumane_A : A ;
-fun inane_A : A ;
-fun insane_A : A ;
-fun 'high-octane_A' : A ;
-fun montane_A : A ;
-fun tramontane_A : A ;
-fun ultramontane_A : A ;
-fun cismontane_A : A ;
-fun damascene_A : A ;
-fun obscene_A : A ;
-fun scalene_A : A ;
-fun philhellene_A : A ;
-fun oxyacetylene_A : A ;
-fun serene_A : A ;
-fun limacine_A : A ;
-fun australopithecine_A : A ;
-fun internecine_A : A ;
-fun phocine_A : A ;
-fun hircine_A : A ;
-fun porcine_A : A ;
-fun piscine_A : A ;
-fun oscine_A : A ;
-fun affine_A : A ;
-fun superfine_A : A ;
-fun hyperfine_A : A ;
-fun sphingine_A : A ;
-fun catarrhine_A : A ;
-fun errhine_A : A ;
-fun leptorrhine_A : A ;
-fun platyrrhine_A : A ;
-fun thine_A : A ;
-fun amaranthine_A : A ;
-fun labyrinthine_A : A ;
-fun bubaline_A : A ;
-fun amygdaline_A : A ;
-fun alkaline_A : A ;
-fun saline_A : A ;
-fun hyaline_A : A ;
-fun oldline_A : A ;
-fun feline_A : A ;
-fun anopheline_A : A ;
-fun aquiline_A : A ;
-fun crystalline_A : A ;
-fun noncrystalline_A : A ;
-fun microcrystalline_A : A ;
-fun polycrystalline_A : A ;
-fun sibylline_A : A ;
-fun borderline_A : A ;
-fun cauline_A : A ;
-fun masculine_A : A ;
-fun mine_A : A ;
-fun carmine_A : A ;
-fun canine_A : A ;
-fun mezzanine_A : A ;
-fun feminine_A : A ;
-fun unfeminine_A : A ;
-fun hominine_A : A ;
-fun asinine_A : A ;
-fun falconine_A : A ;
-fun leonine_A : A ;
-fun buteonine_A : A ;
-fun saturnine_A : A ;
-fun alpine_A : A ;
-fun cisalpine_A : A ;
-fun transalpine_A : A ;
-fun vulpine_A : A ;
-fun Philippine_A : A ;
-fun lupine_A : A ;
-fun supine_A : A ;
-fun saccharine_A : A ;
-fun marine_A : A ;
-fun ultramarine_A : A ;
-fun submarine_A : A ;
-fun antisubmarine_A : A ;
-fun estuarine_A : A ;
-fun eccrine_A : A ;
-fun endocrine_A : A ;
-fun neuroendocrine_A : A ;
-fun apocrine_A : A ;
-fun exocrine_A : A ;
-fun tangerine_A : A ;
-fun anserine_A : A ;
-fun passerine_A : A ;
-fun nonpasserine_A : A ;
-fun adulterine_A : A ;
-fun uterine_A : A ;
-fun 'intra-uterine_A' : A ;
-fun intrauterine_A : A ;
-fun sapphirine_A : A ;
-fun caprine_A : A ;
-fun accipitrine_A : A ;
-fun alpestrine_A : A ;
-fun lacustrine_A : A ;
-fun taurine_A : A ;
-fun murine_A : A ;
-fun ursine_A : A ;
-fun palatine_A : A ;
-fun benedictine_A : A ;
-fun elephantine_A : A ;
-fun adamantine_A : A ;
-fun diamantine_A : A ;
-fun levantine_A : A ;
-fun serpentine_A : A ;
-fun bisontine_A : A ;
-fun clandestine_A : A ;
-fun pristine_A : A ;
-fun amethystine_A : A ;
-fun routine_A : A ;
-fun anguine_A : A ;
-fun sanguine_A : A ;
-fun genuine_A : A ;
-fun equine_A : A ;
-fun divine_A : A ;
-fun alvine_A : A ;
-fun ovine_A : A ;
-fun bovine_A : A ;
-fun cervine_A : A ;
-fun corvine_A : A ;
-fun underdone_A : A ;
-fun woebegone_A : A ;
-fun bygone_A : A ;
-fun lone_A : A ;
-fun prone_A : A ;
-fun 'accident-prone_A' : A ;
-fun baritone_A : A ;
-fun moderne_A : A ;
-fun seaborne_A : A ;
-fun waterborne_A : A ;
-fun airborne_A : A ;
-fun triune_A : A ;
-fun jejune_A : A ;
-fun immune_A : A ;
-fun autoimmune_A : A ;
-fun opportune_A : A ;
-fun inopportune_A : A ;
-fun anodyne_A : A ;
-fun heterodyne_A : A ;
-fun tiptoe_A : A ;
-fun agape_A : A ;
-fun shipshape_A : A ;
-fun 'over-ripe_A' : A ;
-fun unripe_A : A ;
-fun overripe_A : A ;
-fun pinstripe_A : A ;
-fun threadbare_A : A ;
-fun 'devil-may-care_A' : A ;
-fun aflare_A : A ;
-fun spare_A : A ;
-fun square_A : A ;
-fun foursquare_A : A ;
-fun aware_A : A ;
-fun unaware_A : A ;
-fun macabre_A : A ;
-fun sombre_A : A ;
-fun mediocre_A : A ;
-fun sincere_A : A ;
-fun insincere_A : A ;
-fun mere_A : A ;
-fun sere_A : A ;
-fun austere_A : A ;
-fun severe_1_A : A ;
-fun meagre_A : A ;
-fun doctrinaire_A : A ;
-fun afire_A : A ;
-fun sapphire_A : A ;
-fun entire_A : A ;
-fun haywire_A : A ;
-fun 'smooth-bore_A' : A ;
-fun 'three-score_A' : A ;
-fun fourscore_A : A ;
-fun fore_A : A ;
-fun offshore_A : A ;
-fun inshore_A : A ;
-fun onshore_A : A ;
-fun extempore_A : A ;
-fun sore_A : A ;
-fun 'saddle-sore_A' : A ;
-fun footsore_A : A ;
-fun bizarre_A : A ;
-fun 'lack-lustre_A' : A ;
-fun secure_A : A ;
-fun insecure_A : A ;
-fun obscure_A : A ;
-fun 'three-figure_A' : A ;
-fun 'de jure_A' : A ;
-fun demure_A : A ;
-fun impure_A : A ;
-fun cocksure_A : A ;
-fun unsure_A : A ;
-fun footsure_A : A ;
-fun miniature_A : A ;
-fun mature_A : A ;
-fun premature_A : A ;
-fun immature_A : A ;
-fun future_A : A ;
-fun azure_A : A ;
-fun uppercase_A : A ;
-fun lowercase_A : A ;
-fun 'go-as-you-please_A' : A ;
-fun multiphase_A : A ;
-fun obese_A : A ;
-fun senegalese_A : A ;
-fun singhalese_A : A ;
-fun sinhalese_A : A ;
-fun nepalese_A : A ;
-fun congolese_A : A ;
-fun togolese_A : A ;
-fun siamese_A : A ;
-fun Vietnamese_A : A ;
-fun burmese_A : A ;
-fun Lebanese_A : A ;
-fun sudanese_A : A ;
-fun Japanese_A : A ;
-fun javanese_A : A ;
-fun Taiwanese_A : A ;
-fun guyanese_A : A ;
-fun Chinese_A : A ;
-fun beninese_A : A ;
-fun 'san marinese_A' : A ;
-fun gabonese_A : A ;
-fun nipponese_A : A ;
-fun maltese_A : A ;
-fun Portuguese_A : A ;
-fun lyonnaise_A : A ;
-fun precise_A : A ;
-fun imprecise_A : A ;
-fun concise_A : A ;
-fun 'high-rise_A' : A ;
-fun cerise_A : A ;
-fun crabwise_A : A ;
-fun lengthwise_A : A ;
-fun clockwise_A : A ;
-fun counterclockwise_A : A ;
-fun unwise_A : A ;
-fun otherwise_A : A ;
-fun crosswise_A : A ;
-fun streetwise_A : A ;
-fun coastwise_A : A ;
-fun false_A : A ;
-fun immense_A : A ;
-fun commonsense_A : A ;
-fun intense_A : A ;
-fun corymbose_A : A ;
-fun verbose_A : A ;
-fun floccose_A : A ;
-fun bellicose_A : A ;
-fun varicose_A : A ;
-fun ventricose_A : A ;
-fun jocose_A : A ;
-fun verrucose_A : A ;
-fun rugose_A : A ;
-fun grandiose_A : A ;
-fun ariose_A : A ;
-fun otiose_A : A ;
-fun fibrillose_A : A ;
-fun chlorophyllose_A : A ;
-fun nodulose_A : A ;
-fun squamulose_A : A ;
-fun torulose_A : A ;
-fun racemose_A : A ;
-fun rimose_A : A ;
-fun cymose_A : A ;
-fun lachrymose_A : A ;
-fun 'pug-nose_A' : A ;
-fun spinose_A : A ;
-fun footloose_A : A ;
-fun scapose_A : A ;
-fun adipose_A : A ;
-fun pappose_A : A ;
-fun multipurpose_A : A ;
-fun erose_A : A ;
-fun morose_A : A ;
-fun porose_A : A ;
-fun comatose_A : A ;
-fun semicomatose_A : A ;
-fun acetose_A : A ;
-fun caespitose_A : A ;
-fun tomentose_A : A ;
-fun crustose_A : A ;
-fun quartzose_A : A ;
-fun averse_A : A ;
-fun adverse_A : A ;
-fun reverse_A : A ;
-fun diverse_A : A ;
-fun inverse_A : A ;
-fun converse_A : A ;
-fun perverse_A : A ;
-fun transverse_A : A ;
-fun 'one-horse_A' : A ;
-fun norse_A : A ;
-fun retrorse_A : A ;
-fun antrorse_A : A ;
-fun sinistrorse_A : A ;
-fun dextrorse_A : A ;
-fun 'matter-of-course_A' : A ;
-fun chartreuse_A : A ;
-fun diffuse_A : A ;
-fun profuse_A : A ;
-fun recluse_A : A ;
-fun greenhouse_A : A ;
-fun abstruse_A : A ;
-fun obtuse_A : A ;
-fun celibate_A : A ;
-fun lobate_A : A ;
-fun bilobate_A : A ;
-fun trilobate_A : A ;
-fun baccate_A : A ;
-fun delicate_A : A ;
-fun indelicate_A : A ;
-fun overdelicate_A : A ;
-fun umbilicate_A : A ;
-fun triplicate_A : A ;
-fun duplicate_A : A ;
-fun quadruplicate_A : A ;
-fun spicate_A : A ;
-fun imbricate_A : A ;
-fun intricate_A : A ;
-fun falcate_A : A ;
-fun sulcate_A : A ;
-fun truncate_A : A ;
-fun bifurcate_A : A ;
-fun confiscate_A : A ;
-fun 'out-of-date_A' : A ;
-fun 'up-to-date_A' : A ;
-fun pedate_A : A ;
-fun sedate_A : A ;
-fun cordate_A : A ;
-fun chordate_A : A ;
-fun caudate_A : A ;
-fun acaudate_A : A ;
-fun chalybeate_A : A ;
-fun binucleate_A : A ;
-fun uninucleate_A : A ;
-fun trinucleate_A : A ;
-fun multinucleate_A : A ;
-fun aculeate_A : A ;
-fun cuneate_A : A ;
-fun aureate_A : A ;
-fun laureate_A : A ;
-fun roseate_A : A ;
-fun bracteate_A : A ;
-fun ebracteate_A : A ;
-fun aggregate_A : A ;
-fun obligate_A : A ;
-fun profligate_A : A ;
-fun elongate_A : A ;
-fun surrogate_A : A ;
-fun conjugate_A : A ;
-fun labiate_A : A ;
-fun bilabiate_A : A ;
-fun associate_A : A ;
-fun cruciate_A : A ;
-fun radiate_A : A ;
-fun mediate_A : A ;
-fun immediate_A : A ;
-fun intermediate_A : A ;
-fun collegiate_A : A ;
-fun intercollegiate_A : A ;
-fun fastigiate_A : A ;
-fun leptosporangiate_A : A ;
-fun eusporangiate_A : A ;
-fun brachiate_A : A ;
-fun branchiate_A : A ;
-fun abranchiate_A : A ;
-fun ciliate_A : A ;
-fun foliate_A : A ;
-fun defoliate_A : A ;
-fun quinquefoliate_A : A ;
-fun bifoliate_A : A ;
-fun unifoliate_A : A ;
-fun trifoliate_A : A ;
-fun perfoliate_A : A ;
-fun bivariate_A : A ;
-fun multivariate_A : A ;
-fun inebriate_A : A ;
-fun fimbriate_A : A ;
-fun appropriate_A : A ;
-fun inappropriate_A : A ;
-fun satiate_A : A ;
-fun insatiate_A : A ;
-fun initiate_A : A ;
-fun uninitiate_A : A ;
-fun alate_A : A ;
-fun oblate_A : A ;
-fun chelate_A : A ;
-fun umbellate_A : A ;
-fun cancellate_A : A ;
-fun flagellate_A : A ;
-fun biflagellate_A : A ;
-fun appellate_A : A ;
-fun carpellate_A : A ;
-fun verticillate_A : A ;
-fun papillate_A : A ;
-fun pistillate_A : A ;
-fun bullate_A : A ;
-fun calceolate_A : A ;
-fun lanceolate_A : A ;
-fun oblanceolate_A : A ;
-fun urceolate_A : A ;
-fun bracteolate_A : A ;
-fun alveolate_A : A ;
-fun foliolate_A : A ;
-fun etiolate_A : A ;
-fun inviolate_A : A ;
-fun prolate_A : A ;
-fun desolate_A : A ;
-fun disconsolate_A : A ;
-fun vacuolate_A : A ;
-fun mandibulate_A : A ;
-fun maculate_A : A ;
-fun immaculate_A : A ;
-fun orbiculate_A : A ;
-fun aciculate_A : A ;
-fun canaliculate_A : A ;
-fun vermiculate_A : A ;
-fun paniculate_A : A ;
-fun geniculate_A : A ;
-fun apiculate_A : A ;
-fun auriculate_A : A ;
-fun reticulate_A : A ;
-fun nonreticulate_A : A ;
-fun denticulate_A : A ;
-fun articulate_A : A ;
-fun inarticulate_A : A ;
-fun particulate_A : A ;
-fun nonparticulate_A : A ;
-fun unguiculate_A : A ;
-fun pedunculate_A : A ;
-fun carunculate_A : A ;
-fun tuberculate_A : A ;
-fun operculate_A : A ;
-fun calyculate_A : A ;
-fun undulate_A : A ;
-fun coagulate_A : A ;
-fun triangulate_A : A ;
-fun lingulate_A : A ;
-fun ungulate_A : A ;
-fun campanulate_A : A ;
-fun crenulate_A : A ;
-fun catenulate_A : A ;
-fun serrulate_A : A ;
-fun capsulate_A : A ;
-fun spatulate_A : A ;
-fun amalgamate_A : A ;
-fun sublimate_A : A ;
-fun animate_A : A ;
-fun inanimate_A : A ;
-fun legitimate_A : A ;
-fun illegitimate_A : A ;
-fun ultimate_A : A ;
-fun penultimate_A : A ;
-fun antepenultimate_A : A ;
-fun intimate_A : A ;
-fun proximate_A : A ;
-fun approximate_A : A ;
-fun palmate_A : A ;
-fun consummate_A : A ;
-fun comate_A : A ;
-fun plumate_A : A ;
-fun lanate_A : A ;
-fun planate_A : A ;
-fun adnate_A : A ;
-fun enate_A : A ;
-fun crenate_A : A ;
-fun agnate_A : A ;
-fun designate_A : A ;
-fun cognate_A : A ;
-fun binate_A : A ;
-fun turbinate_A : A ;
-fun runcinate_A : A ;
-fun subordinate_A : A ;
-fun insubordinate_A : A ;
-fun inordinate_A : A ;
-fun coordinate_A : A ;
-fun superordinate_A : A ;
-fun emarginate_A : A ;
-fun catkinate_A : A ;
-fun effeminate_A : A ;
-fun discriminate_A : A ;
-fun indiscriminate_A : A ;
-fun determinate_A : A ;
-fun indeterminate_A : A ;
-fun acuminate_A : A ;
-fun latinate_A : A ;
-fun pectinate_A : A ;
-fun obstinate_A : A ;
-fun predestinate_A : A ;
-fun agglutinate_A : A ;
-fun pennate_A : A ;
-fun innate_A : A ;
-fun pinnate_A : A ;
-fun bipinnate_A : A ;
-fun tripinnate_A : A ;
-fun connate_A : A ;
-fun companionate_A : A ;
-fun passionate_A : A ;
-fun compassionate_A : A ;
-fun uncompassionate_A : A ;
-fun dispassionate_A : A ;
-fun affectionate_A : A ;
-fun proportionate_A : A ;
-fun disproportionate_A : A ;
-fun extortionate_A : A ;
-fun incarnate_A : A ;
-fun reincarnate_A : A ;
-fun ternate_A : A ;
-fun quaternate_A : A ;
-fun alternate_A : A ;
-fun ornate_A : A ;
-fun fortunate_A : A ;
-fun unfortunate_A : A ;
-fun importunate_A : A ;
-fun inchoate_A : A ;
-fun forcipate_A : A ;
-fun crispate_A : A ;
-fun cuspate_A : A ;
-fun 'second-rate_A' : A ;
-fun 'third-rate_A' : A ;
-fun 'cut-rate_A' : A ;
-fun separate_A : A ;
-fun disparate_A : A ;
-fun celebrate_A : A ;
-fun palpebrate_A : A ;
-fun vertebrate_A : A ;
-fun invertebrate_A : A ;
-fun involucrate_A : A ;
-fun quadrate_A : A ;
-fun deliberate_A : A ;
-fun acerate_A : A ;
-fun lacerate_A : A ;
-fun eviscerate_A : A ;
-fun federate_A : A ;
-fun confederate_A : A ;
-fun considerate_A : A ;
-fun inconsiderate_A : A ;
-fun moderate_A : A ;
-fun immoderate_A : A ;
-fun agglomerate_A : A ;
-fun conglomerate_A : A ;
-fun numerate_A : A ;
-fun innumerate_A : A ;
-fun degenerate_A : A ;
-fun regenerate_A : A ;
-fun unregenerate_A : A ;
-fun temperate_A : A ;
-fun intemperate_A : A ;
-fun desperate_A : A ;
-fun inveterate_A : A ;
-fun literate_A : A ;
-fun preliterate_A : A ;
-fun semiliterate_A : A ;
-fun illiterate_A : A ;
-fun adulterate_A : A ;
-fun clathrate_A : A ;
-fun irate_A : A ;
-fun elaborate_A : A ;
-fun inelaborate_A : A ;
-fun imperforate_A : A ;
-fun corporate_A : A ;
-fun incorporate_A : A ;
-fun discorporate_A : A ;
-fun serrate_A : A ;
-fun biserrate_A : A ;
-fun calyptrate_A : A ;
-fun rostrate_A : A ;
-fun prostrate_A : A ;
-fun accurate_A : A ;
-fun inaccurate_A : A ;
-fun obdurate_A : A ;
-fun pandurate_A : A ;
-fun commensurate_A : A ;
-fun incommensurate_A : A ;
-fun lyrate_A : A ;
-fun sensate_A : A ;
-fun insensate_A : A ;
-fun decussate_A : A ;
-fun coarctate_A : A ;
-fun digitate_A : A ;
-fun capitate_A : A ;
-fun precipitate_A : A ;
-fun peltate_A : A ;
-fun dentate_A : A ;
-fun bidentate_A : A ;
-fun 'solid-state_A' : A ;
-fun hastate_A : A ;
-fun intrastate_A : A ;
-fun testate_A : A ;
-fun intestate_A : A ;
-fun costate_A : A ;
-fun apostate_A : A ;
-fun prostate_A : A ;
-fun interstate_A : A ;
-fun sagittate_A : A ;
-fun acuate_A : A ;
-fun postgraduate_A : A ;
-fun attenuate_A : A ;
-fun sinuate_A : A ;
-fun adequate_A : A ;
-fun inadequate_A : A ;
-fun private_A : A ;
-fun semiprivate_A : A ;
-fun ovate_A : A ;
-fun obovate_A : A ;
-fun acervate_A : A ;
-fun incurvate_A : A ;
-fun effete_A : A ;
-fun obsolete_A : A ;
-fun replete_A : A ;
-fun complete_A : A ;
-fun incomplete_A : A ;
-fun concrete_A : A ;
-fun discrete_A : A ;
-fun indiscrete_A : A ;
-fun terete_A : A ;
-fun recondite_A : A ;
-fun erudite_A : A ;
-fun 'off-white_A' : A ;
-fun 'milk-white_A' : A ;
-fun 'snow-white_A' : A ;
-fun 'lily-white_A' : A ;
-fun 'pre-raphaelite_A' : A ;
-fun Carmelite_A : A ;
-fun satellite_A : A ;
-fun antisatellite_A : A ;
-fun impolite_A : A ;
-fun semite_A : A ;
-fun 'anti-semite_A' : A ;
-fun finite_A : A ;
-fun definite_A : A ;
-fun indefinite_A : A ;
-fun infinite_A : A ;
-fun preterite_A : A ;
-fun favorite_A : A ;
-fun trite_A : A ;
-fun contrite_A : A ;
-fun favourite_A : A ;
-fun requisite_A : A ;
-fun prerequisite_A : A ;
-fun exquisite_A : A ;
-fun composite_A : A ;
-fun apposite_A : A ;
-fun inapposite_A : A ;
-fun opposite_A : A ;
-fun petite_A : A ;
-fun bipartite_A : A ;
-fun quadripartite_A : A ;
-fun tripartite_A : A ;
-fun multipartite_A : A ;
-fun muscovite_A : A ;
-fun svelte_A : A ;
-fun andante_A : A ;
-fun dilettante_A : A ;
-fun fortemente_A : A ;
-fun lepidote_A : A ;
-fun forte_A : A ;
-fun outcaste_A : A ;
-fun chaste_A : A ;
-fun unchaste_A : A ;
-fun waste_A : A ;
-fun acute_A : A ;
-fun subacute_A : A ;
-fun dilute_A : A ;
-fun absolute_A : A ;
-fun resolute_A : A ;
-fun irresolute_A : A ;
-fun dissolute_A : A ;
-fun involute_A : A ;
-fun convolute_A : A ;
-fun mute_A : A ;
-fun 'up-to-the-minute_A' : A ;
-fun hirsute_A : A ;
-fun destitute_A : A ;
-fun astute_A : A ;
-fun 'table d\'hôte_A' : A ;
-fun due_A : A ;
-fun undue_A : A ;
-fun overdue_A : A ;
-fun analogue_A : A ;
-fun 'true-blue_A' : A ;
-fun 'peacock-blue_A' : A ;
-fun 'sky-blue_A' : A ;
-fun opaque_A : A ;
-fun radiopaque_A : A ;
-fun semiopaque_A : A ;
-fun oblique_A : A ;
-fun unique_A : A ;
-fun antique_A : A ;
-fun manque_A : A ;
-fun baroque_A : A ;
-fun monegasque_A : A ;
-fun kafkaesque_A : A ;
-fun burlesque_A : A ;
-fun junoesque_A : A ;
-fun picaresque_A : A ;
-fun moresque_A : A ;
-fun picturesque_A : A ;
-fun grotesque_A : A ;
-fun statuesque_A : A ;
-fun brusque_A : A ;
-fun untrue_A : A ;
-fun concave_A : A ;
-fun biconcave_A : A ;
-fun planoconcave_A : A ;
-fun suave_A : A ;
-fun champleve_A : A ;
-fun pareve_A : A ;
-fun naive_1_A : A ;
-fun coercive_A : A ;
-fun conducive_A : A ;
-fun tardive_A : A ;
-fun live_A : A ;
-fun alive_A : A ;
-fun olive_A : A ;
-fun abrasive_A : A ;
-fun persuasive_A : A ;
-fun unpersuasive_A : A ;
-fun assuasive_A : A ;
-fun dissuasive_A : A ;
-fun evasive_A : A ;
-fun invasive_A : A ;
-fun noninvasive_A : A ;
-fun pervasive_A : A ;
-fun adhesive_A : A ;
-fun nonadhesive_A : A ;
-fun cohesive_A : A ;
-fun decisive_A : A ;
-fun indecisive_A : A ;
-fun incisive_A : A ;
-fun derisive_A : A ;
-fun repulsive_A : A ;
-fun impulsive_A : A ;
-fun compulsive_A : A ;
-fun propulsive_A : A ;
-fun convulsive_A : A ;
-fun expansive_A : A ;
-fun unexpansive_A : A ;
-fun defensive_A : A ;
-fun offensive_A : A ;
-fun inoffensive_A : A ;
-fun comprehensive_A : A ;
-fun noncomprehensive_A : A ;
-fun apprehensive_A : A ;
-fun unapprehensive_A : A ;
-fun pensive_A : A ;
-fun suspensive_A : A ;
-fun expensive_A : A ;
-fun inexpensive_A : A ;
-fun intensive_A : A ;
-fun normotensive_A : A ;
-fun hypotensive_A : A ;
-fun hypertensive_A : A ;
-fun ostensive_A : A ;
-fun extensive_A : A ;
-fun coextensive_A : A ;
-fun responsive_A : A ;
-fun unresponsive_A : A ;
-fun plosive_A : A ;
-fun explosive_A : A ;
-fun nonexplosive_A : A ;
-fun purposive_A : A ;
-fun erosive_A : A ;
-fun corrosive_A : A ;
-fun aversive_A : A ;
-fun subversive_A : A ;
-fun ambiversive_A : A ;
-fun introversive_A : A ;
-fun extroversive_A : A ;
-fun cursive_A : A ;
-fun recursive_A : A ;
-fun incursive_A : A ;
-fun discursive_A : A ;
-fun massive_A : A ;
-fun passive_A : A ;
-fun impassive_A : A ;
-fun successive_A : A ;
-fun recessive_A : A ;
-fun concessive_A : A ;
-fun excessive_A : A ;
-fun degressive_A : A ;
-fun regressive_A : A ;
-fun aggressive_A : A ;
-fun unaggressive_A : A ;
-fun digressive_A : A ;
-fun progressive_A : A ;
-fun retrogressive_A : A ;
-fun depressive_A : A ;
-fun 'manic-depressive_A' : A ;
-fun repressive_A : A ;
-fun impressive_A : A ;
-fun unimpressive_A : A ;
-fun oppressive_A : A ;
-fun suppressive_A : A ;
-fun immunosuppressive_A : A ;
-fun expressive_A : A ;
-fun inexpressive_A : A ;
-fun obsessive_A : A ;
-fun possessive_A : A ;
-fun submissive_A : A ;
-fun admissive_A : A ;
-fun photoemissive_A : A ;
-fun omissive_A : A ;
-fun permissive_A : A ;
-fun unpermissive_A : A ;
-fun dismissive_A : A ;
-fun percussive_A : A ;
-fun abusive_A : A ;
-fun effusive_A : A ;
-fun suffusive_A : A ;
-fun occlusive_A : A ;
-fun preclusive_A : A ;
-fun inclusive_A : A ;
-fun conclusive_A : A ;
-fun inconclusive_A : A ;
-fun exclusive_A : A ;
-fun unexclusive_A : A ;
-fun elusive_A : A ;
-fun delusive_A : A ;
-fun allusive_A : A ;
-fun illusive_A : A ;
-fun collusive_A : A ;
-fun obtrusive_A : A ;
-fun unobtrusive_A : A ;
-fun intrusive_A : A ;
-fun unintrusive_A : A ;
-fun protrusive_A : A ;
-fun extrusive_A : A ;
-fun combative_A : A ;
-fun probative_A : A ;
-fun rebarbative_A : A ;
-fun deprecative_A : A ;
-fun medicative_A : A ;
-fun predicative_A : A ;
-fun indicative_A : A ;
-fun adjudicative_A : A ;
-fun significative_A : A ;
-fun justificative_A : A ;
-fun multiplicative_A : A ;
-fun implicative_A : A ;
-fun applicative_A : A ;
-fun communicative_A : A ;
-fun uncommunicative_A : A ;
-fun fricative_A : A ;
-fun nonprognosticative_A : A ;
-fun reciprocative_A : A ;
-fun vocative_A : A ;
-fun evocative_A : A ;
-fun provocative_A : A ;
-fun unprovocative_A : A ;
-fun educative_A : A ;
-fun dative_A : A ;
-fun sedative_A : A ;
-fun consolidative_A : A ;
-fun oxidative_A : A ;
-fun accommodative_A : A ;
-fun delineative_A : A ;
-fun creative_A : A ;
-fun uncreative_A : A ;
-fun propagative_A : A ;
-fun negative_A : A ;
-fun nonnegative_A : A ;
-fun derogative_A : A ;
-fun interrogative_A : A ;
-fun purgative_A : A ;
-fun appreciative_A : A ;
-fun unappreciative_A : A ;
-fun associative_A : A ;
-fun nonassociative_A : A ;
-fun dissociative_A : A ;
-fun repudiative_A : A ;
-fun retaliative_A : A ;
-fun palliative_A : A ;
-fun appropriative_A : A ;
-fun propitiative_A : A ;
-fun alleviative_A : A ;
-fun talkative_A : A ;
-fun ablative_A : A ;
-fun relative_A : A ;
-fun correlative_A : A ;
-fun annihilative_A : A ;
-fun assimilative_A : A ;
-fun appellative_A : A ;
-fun illative_A : A ;
-fun contemplative_A : A ;
-fun superlative_A : A ;
-fun legislative_A : A ;
-fun speculative_A : A ;
-fun circulative_A : A ;
-fun anticoagulative_A : A ;
-fun regulative_A : A ;
-fun dissimulative_A : A ;
-fun stimulative_A : A ;
-fun cumulative_A : A ;
-fun accumulative_A : A ;
-fun manipulative_A : A ;
-fun copulative_A : A ;
-fun amative_A : A ;
-fun amalgamative_A : A ;
-fun affirmative_A : A ;
-fun formative_A : A ;
-fun reformative_A : A ;
-fun informative_A : A ;
-fun uninformative_A : A ;
-fun normative_A : A ;
-fun nonnormative_A : A ;
-fun native_A : A ;
-fun designative_A : A ;
-fun combinative_A : A ;
-fun noncombinative_A : A ;
-fun ratiocinative_A : A ;
-fun subordinative_A : A ;
-fun imaginative_A : A ;
-fun unimaginative_A : A ;
-fun contaminative_A : A ;
-fun criminative_A : A ;
-fun recriminative_A : A ;
-fun discriminative_A : A ;
-fun nominative_A : A ;
-fun carminative_A : A ;
-fun terminative_A : A ;
-fun determinative_A : A ;
-fun ruminative_A : A ;
-fun agglutinative_A : A ;
-fun nonnative_A : A ;
-fun opinionative_A : A ;
-fun sanctionative_A : A ;
-fun detonative_A : A ;
-fun alternative_A : A ;
-fun inchoative_A : A ;
-fun emancipative_A : A ;
-fun declarative_A : A ;
-fun separative_A : A ;
-fun comparative_A : A ;
-fun adumbrative_A : A ;
-fun lucrative_A : A ;
-fun deliberative_A : A ;
-fun macerative_A : A ;
-fun ulcerative_A : A ;
-fun accelerative_A : A ;
-fun generative_A : A ;
-fun degenerative_A : A ;
-fun remunerative_A : A ;
-fun unremunerative_A : A ;
-fun imperative_A : A ;
-fun operative_A : A ;
-fun 'unco-operative_A' : A ;
-fun preoperative_A : A ;
-fun inoperative_A : A ;
-fun cooperative_A : A ;
-fun uncooperative_A : A ;
-fun postoperative_A : A ;
-fun recuperative_A : A ;
-fun vituperative_A : A ;
-fun commiserative_A : A ;
-fun iterative_A : A ;
-fun alliterative_A : A ;
-fun integrative_A : A ;
-fun disintegrative_A : A ;
-fun collaborative_A : A ;
-fun corroborative_A : A ;
-fun decorative_A : A ;
-fun pejorative_A : A ;
-fun commemorative_A : A ;
-fun evaporative_A : A ;
-fun incorporative_A : A ;
-fun restorative_A : A ;
-fun narrative_A : A ;
-fun penetrative_A : A ;
-fun arbitrative_A : A ;
-fun administrative_A : A ;
-fun demonstrative_A : A ;
-fun undemonstrative_A : A ;
-fun illustrative_A : A ;
-fun curative_A : A ;
-fun figurative_A : A ;
-fun suppurative_A : A ;
-fun nonsuppurative_A : A ;
-fun adversative_A : A ;
-fun causative_A : A ;
-fun noncausative_A : A ;
-fun accusative_A : A ;
-fun vegetative_A : A ;
-fun interpretative_A : A ;
-fun meditative_A : A ;
-fun agitative_A : A ;
-fun cogitative_A : A ;
-fun excogitative_A : A ;
-fun qualitative_A : A ;
-fun rehabilitative_A : A ;
-fun debilitative_A : A ;
-fun facilitative_A : A ;
-fun imitative_A : A ;
-fun nonimitative_A : A ;
-fun exploitative_A : A ;
-fun authoritative_A : A ;
-fun quantitative_A : A ;
-fun facultative_A : A ;
-fun consultative_A : A ;
-fun augmentative_A : A ;
-fun alimentative_A : A ;
-fun argumentative_A : A ;
-fun unargumentative_A : A ;
-fun representative_A : A ;
-fun nonrepresentative_A : A ;
-fun unrepresentative_A : A ;
-fun tentative_A : A ;
-fun denotative_A : A ;
-fun connotative_A : A ;
-fun optative_A : A ;
-fun hortative_A : A ;
-fun exhortative_A : A ;
-fun stative_A : A ;
-fun mutative_A : A ;
-fun commutative_A : A ;
-fun putative_A : A ;
-fun evaluative_A : A ;
-fun derivative_A : A ;
-fun underivative_A : A ;
-fun innovative_A : A ;
-fun preservative_A : A ;
-fun conservative_A : A ;
-fun ultraconservative_A : A ;
-fun laxative_A : A ;
-fun active_A : A ;
-fun reactive_A : A ;
-fun unreactive_A : A ;
-fun putrefactive_A : A ;
-fun inactive_A : A ;
-fun psychoactive_A : A ;
-fun nonpsychoactive_A : A ;
-fun radioactive_A : A ;
-fun nonradioactive_A : A ;
-fun hypoactive_A : A ;
-fun proactive_A : A ;
-fun retroactive_A : A ;
-fun hyperactive_A : A ;
-fun interactive_A : A ;
-fun counteractive_A : A ;
-fun overactive_A : A ;
-fun refractive_A : A ;
-fun tractive_A : A ;
-fun subtractive_A : A ;
-fun detractive_A : A ;
-fun abstractive_A : A ;
-fun attractive_A : A ;
-fun unattractive_A : A ;
-fun defective_A : A ;
-fun effective_A : A ;
-fun ineffective_A : A ;
-fun uneffective_A : A ;
-fun infective_A : A ;
-fun objective_A : A ;
-fun unobjective_A : A ;
-fun subjective_A : A ;
-fun adjective_A : A ;
-fun rejective_A : A ;
-fun elective_A : A ;
-fun nonelective_A : A ;
-fun selective_A : A ;
-fun unselective_A : A ;
-fun deflective_A : A ;
-fun reflective_A : A ;
-fun nonreflective_A : A ;
-fun unreflective_A : A ;
-fun collective_A : A ;
-fun connective_A : A ;
-fun respective_A : A ;
-fun irrespective_A : A ;
-fun prospective_A : A ;
-fun retrospective_A : A ;
-fun introspective_A : A ;
-fun extrospective_A : A ;
-fun corrective_A : A ;
-fun protective_A : A ;
-fun unprotective_A : A ;
-fun overprotective_A : A ;
-fun advective_A : A ;
-fun addictive_A : A ;
-fun nonaddictive_A : A ;
-fun predictive_A : A ;
-fun unpredictive_A : A ;
-fun vindictive_A : A ;
-fun unvindictive_A : A ;
-fun fictive_A : A ;
-fun afflictive_A : A ;
-fun restrictive_A : A ;
-fun nonrestrictive_A : A ;
-fun unrestrictive_A : A ;
-fun distinctive_A : A ;
-fun instinctive_A : A ;
-fun subjunctive_A : A ;
-fun adjunctive_A : A ;
-fun conjunctive_A : A ;
-fun disjunctive_A : A ;
-fun deductive_A : A ;
-fun reductive_A : A ;
-fun seductive_A : A ;
-fun unseductive_A : A ;
-fun inductive_A : A ;
-fun conductive_A : A ;
-fun nonconductive_A : A ;
-fun photoconductive_A : A ;
-fun productive_A : A ;
-fun reproductive_A : A ;
-fun nonproductive_A : A ;
-fun unproductive_A : A ;
-fun counterproductive_A : A ;
-fun obstructive_A : A ;
-fun destructive_A : A ;
-fun instructive_A : A ;
-fun uninstructive_A : A ;
-fun constructive_A : A ;
-fun reconstructive_A : A ;
-fun unconstructive_A : A ;
-fun accretive_A : A ;
-fun secretive_A : A ;
-fun prohibitive_A : A ;
-fun capacitive_A : A ;
-fun additive_A : A ;
-fun fugitive_A : A ;
-fun primitive_A : A ;
-fun genitive_A : A ;
-fun cognitive_A : A ;
-fun definitive_A : A ;
-fun infinitive_A : A ;
-fun punitive_A : A ;
-fun nutritive_A : A ;
-fun acquisitive_A : A ;
-fun unacquisitive_A : A ;
-fun inquisitive_A : A ;
-fun transitive_A : A ;
-fun intransitive_A : A ;
-fun sensitive_A : A ;
-fun insensitive_A : A ;
-fun nonsensitive_A : A ;
-fun radiosensitive_A : A ;
-fun hypersensitive_A : A ;
-fun oversensitive_A : A ;
-fun positive_A : A ;
-fun postpositive_A : A ;
-fun repetitive_A : A ;
-fun nonrepetitive_A : A ;
-fun competitive_A : A ;
-fun noncompetitive_A : A ;
-fun uncompetitive_A : A ;
-fun appetitive_A : A ;
-fun partitive_A : A ;
-fun intuitive_A : A ;
-fun counterintuitive_A : A ;
-fun assaultive_A : A ;
-fun substantive_A : A ;
-fun retentive_A : A ;
-fun unretentive_A : A ;
-fun attentive_A : A ;
-fun inattentive_A : A ;
-fun adventive_A : A ;
-fun preventive_A : A ;
-fun inventive_A : A ;
-fun plaintive_A : A ;
-fun appointive_A : A ;
-fun nonappointive_A : A ;
-fun motive_A : A ;
-fun emotive_A : A ;
-fun locomotive_A : A ;
-fun promotive_A : A ;
-fun electromotive_A : A ;
-fun automotive_A : A ;
-fun votive_A : A ;
-fun captive_A : A ;
-fun adaptive_A : A ;
-fun maladaptive_A : A ;
-fun contraceptive_A : A ;
-fun acceptive_A : A ;
-fun deceptive_A : A ;
-fun receptive_A : A ;
-fun unreceptive_A : A ;
-fun chemoreceptive_A : A ;
-fun nociceptive_A : A ;
-fun conceptive_A : A ;
-fun proprioceptive_A : A ;
-fun interoceptive_A : A ;
-fun exteroceptive_A : A ;
-fun perceptive_A : A ;
-fun unperceptive_A : A ;
-fun apperceptive_A : A ;
-fun descriptive_A : A ;
-fun undescriptive_A : A ;
-fun prescriptive_A : A ;
-fun inscriptive_A : A ;
-fun 'pre-emptive_A' : A ;
-fun redemptive_A : A ;
-fun preemptive_A : A ;
-fun presumptive_A : A ;
-fun consumptive_A : A ;
-fun assumptive_A : A ;
-fun adoptive_A : A ;
-fun chemisorptive_A : A ;
-fun eruptive_A : A ;
-fun irruptive_A : A ;
-fun corruptive_A : A ;
-fun disruptive_A : A ;
-fun assertive_A : A ;
-fun 'self-assertive_A' : A ;
-fun nonassertive_A : A ;
-fun unassertive_A : A ;
-fun abortive_A : A ;
-fun supportive_A : A ;
-fun unsupportive_A : A ;
-fun sportive_A : A ;
-fun furtive_A : A ;
-fun contrastive_A : A ;
-fun festive_A : A ;
-fun suggestive_A : A ;
-fun digestive_A : A ;
-fun congestive_A : A ;
-fun restive_A : A ;
-fun resistive_A : A ;
-fun assistive_A : A ;
-fun costive_A : A ;
-fun exhaustive_A : A ;
-fun adjustive_A : A ;
-fun maladjustive_A : A ;
-fun retributive_A : A ;
-fun distributive_A : A ;
-fun attributive_A : A ;
-fun consecutive_A : A ;
-fun executive_A : A ;
-fun diminutive_A : A ;
-fun constitutive_A : A ;
-fun reflexive_A : A ;
-fun bivalve_A : A ;
-fun univalve_A : A ;
-fun above_A : A ;
-fun mauve_A : A ;
-fun naïve_A : A ;
-fun luxe_A : A ;
-fun 'de luxe_A' : A ;
-fun deluxe_A : A ;
-fun 'bird\'s-eye_A' : A ;
-fun fisheye_A : A ;
-fun agaze_A : A ;
-fun ablaze_A : A ;
-fun 'life-size_A' : A ;
-fun 'half-size_A' : A ;
-fun 'king-size_A' : A ;
-fun undersize_A : A ;
-fun oversize_A : A ;
-fun outsize_A : A ;
-fun née_A : A ;
-fun passée_A : A ;
-fun little_3_A : A ;
-fun little_2_A : A ;
-fun blae_A : A ;
-fun ace_A : A ;
-fun nice_A : A ;
-fun scarce_A : A ;
-fun fierce_A : A ;
-fun jade_A : A ;
-fun wide_A : A ;
-fun rude_A : A ;
-fun crude_A : A ;
-fun free_A : A ;
-fun safe_A : A ;
-fun beige_A : A ;
-fun strange_A : A ;
-fun large_A : A ;
-fun louche_A : A ;
-fun eerie_A : A ;
-fun fake_A : A ;
-fun pale_A : A ;
-fun stale_A : A ;
-fun able_A : A ;
-fun feeble_A : A ;
-fun nimble_A : A ;
-fun humble_A : A ;
-fun noble_A : A ;
-fun middle_A : A ;
-fun idle_A : A ;
-fun vile_A : A ;
-fun crackle_A : A ;
-fun staple_A : A ;
-fun supple_A : A ;
-fun ample_A : A ;
-fun simple_A : A ;
-fun subtle_A : A ;
-fun beetle_A : A ;
-fun gentle_A : A ;
-fun lame_A : A ;
-fun tame_A : A ;
-fun home_A : A ;
-fun some_A : A ;
-fun sane_A : A ;
-fun fine_A : A ;
-fun bone_A : A ;
-fun none_A : A ;
-fun stone_A : A ;
-fun ripe_A : A ;
-fun bare_A : A ;
-fun rare_A : A ;
-fun severe_2_A : A ;
-fun dire_A : A ;
-fun moire_A : A ;
-fun frore_A : A ;
-fun pure_A : A ;
-fun sure_A : A ;
-fun base_A : A ;
-fun wise_A : A ;
-fun dense_A : A ;
-fun tense_A : A ;
-fun close_A : A ;
-fun loose_A : A ;
-fun rose_A : A ;
-fun coarse_A : A ;
-fun hoarse_A : A ;
-fun sparse_A : A ;
-fun terse_A : A ;
-fun worse_A : A ;
-fun striate_A : A ;
-fun late_A : A ;
-fun white_A : A ;
-fun polite_A : A ;
-fun remote_A : A ;
-fun cute_A : A ;
-fun minute_A : A ;
-fun vague_A : A ;
-fun blue_A : A ;
-fun true_A : A ;
-fun brave_A : A ;
-fun grave_A : A ;
-fun naive_2_A : A ;
-fun size_A : A ;
-fun bronze_A : A ;
-fun cloze_A : A ;
-fun little_1_A : A ;
-fun 'tone-deaf_A' : A ;
-fun 'stone-deaf_A' : A ;
-fun 'loose-leaf_A' : A ;
-fun broadleaf_A : A ;
-fun looseleaf_A : A ;
-fun chief_A : A ;
-fun 'in-chief_A' : A ;
-fun caitiff_A : A ;
-fun off_A : A ;
-fun 'far-off_A' : A ;
-fun 'cast-off_A' : A ;
-fun bluff_A : A ;
-fun 'undreamed-of_A' : A ;
-fun 'unheard-of_A' : A ;
-fun 'unthought-of_A' : A ;
-fun aloof_A : A ;
-fun proof_A : A ;
-fun 'bomb-proof_A' : A ;
-fun 'burglar-proof_A' : A ;
-fun 'ladder-proof_A' : A ;
-fun 'splinter-proof_A' : A ;
-fun bombproof_A : A ;
-fun soundproof_A : A ;
-fun flameproof_A : A ;
-fun fireproof_A : A ;
-fun creaseproof_A : A ;
-fun greaseproof_A : A ;
-fun mothproof_A : A ;
-fun leakproof_A : A ;
-fun shellproof_A : A ;
-fun foolproof_A : A ;
-fun stormproof_A : A ;
-fun rainproof_A : A ;
-fun runproof_A : A ;
-fun burglarproof_A : A ;
-fun weatherproof_A : A ;
-fun waterproof_A : A ;
-fun shatterproof_A : A ;
-fun bulletproof_A : A ;
-fun lightproof_A : A ;
-fun rustproof_A : A ;
-fun deaf_A : A ;
-fun brief_A : A ;
-fun stiff_A : A ;
-fun buff_A : A ;
-fun snuff_A : A ;
-fun puff_A : A ;
-fun gruff_A : A ;
-fun half_A : A ;
-fun self_A : A ;
-fun carpetbag_A : A ;
-fun zigzag_A : A ;
-fun bootleg_A : A ;
-fun 'infra dig_A' : A ;
-fun numbing_A : A ;
-fun absorbing_A : A ;
-fun 'self-effacing_A' : A ;
-fun 'self-sufficing_A' : A ;
-fun 'self-sacrificing_A' : A ;
-fun convincing_A : A ;
-fun unconvincing_A : A ;
-fun blockading_A : A ;
-fun forbidding_A : A ;
-fun preceding_A : A ;
-fun exceeding_A : A ;
-fun 'law-abiding_A' : A ;
-fun overriding_A : A ;
-fun guiding_A : A ;
-fun balding_A : A ;
-fun unyielding_A : A ;
-fun slaveholding_A : A ;
-fun demanding_A : A ;
-fun undemanding_A : A ;
-fun 'free-standing_A' : A ;
-fun 'long-standing_A' : A ;
-fun freestanding_A : A ;
-fun longstanding_A : A ;
-fun upstanding_A : A ;
-fun outstanding_A : A ;
-fun 'mind-bending_A' : A ;
-fun unoffending_A : A ;
-fun uncomprehending_A : A ;
-fun unending_A : A ;
-fun rending_A : A ;
-fun 'heart-rending_A' : A ;
-fun 'fact-finding_A' : A ;
-fun 'self-winding_A' : A ;
-fun confounding_A : A ;
-fun surrounding_A : A ;
-fun 'high-sounding_A' : A ;
-fun astounding_A : A ;
-fun rewarding_A : A ;
-fun unrewarding_A : A ;
-fun 'far-seeing_A' : A ;
-fun unseeing_A : A ;
-fun farseeing_A : A ;
-fun swingeing_A : A ;
-fun spiffing_A : A ;
-fun damaging_A : A ;
-fun encouraging_A : A ;
-fun unencouraging_A : A ;
-fun discouraging_A : A ;
-fun grudging_A : A ;
-fun ungrudging_A : A ;
-fun unflagging_A : A ;
-fun dogging_A : A ;
-fun pettifogging_A : A ;
-fun obliging_A : A ;
-fun disobliging_A : A ;
-fun unchanging_A : A ;
-fun estranging_A : A ;
-fun 'far-reaching_A' : A ;
-fun overreaching_A : A ;
-fun beseeching_A : A ;
-fun unflinching_A : A ;
-fun 'eye-catching_A' : A ;
-fun eyecatching_A : A ;
-fun fetching_A : A ;
-fun witching_A : A ;
-fun bewitching_A : A ;
-fun touching_A : A ;
-fun laughing_A : A ;
-fun refreshing_A : A ;
-fun publishing_A : A ;
-fun astonishing_A : A ;
-fun punishing_A : A ;
-fun ravishing_A : A ;
-fun unblushing_A : A ;
-fun scathing_A : A ;
-fun 'good-for-nothing_A' : A ;
-fun soothing_A : A ;
-fun nonspeaking_A : A ;
-fun 'record-breaking_A' : A ;
-fun 'back-breaking_A' : A ;
-fun heartbreaking_A : A ;
-fun earthshaking_A : A ;
-fun 'shame-making_A' : A ;
-fun 'epoch-making_A' : A ;
-fun breathtaking_A : A ;
-fun painstaking_A : A ;
-fun bushwhacking_A : A ;
-fun 'nerve-racking_A' : A ;
-fun rollicking_A : A ;
-fun bootlicking_A : A ;
-fun shocking_A : A ;
-fun 'self-locking_A' : A ;
-fun bloodsucking_A : A ;
-fun 'self-seeking_A' : A ;
-fun striking_A : A ;
-fun hulking_A : A ;
-fun spanking_A : A ;
-fun 'high-ranking_A' : A ;
-fun 'top-ranking_A' : A ;
-fun 'free-thinking_A' : A ;
-fun unthinking_A : A ;
-fun unblinking_A : A ;
-fun unshrinking_A : A ;
-fun 'good-looking_A' : A ;
-fun provoking_A : A ;
-fun hardworking_A : A ;
-fun wonderworking_A : A ;
-fun 'double-dealing_A' : A ;
-fun unappealing_A : A ;
-fun 'self-sealing_A' : A ;
-fun revealing_A : A ;
-fun enabling_A : A ;
-fun disabling_A : A ;
-fun bumbling_A : A ;
-fun ennobling_A : A ;
-fun middling_A : A ;
-fun bloodcurdling_A : A ;
-fun unfeeling_A : A ;
-fun baffling_A : A ;
-fun fledgling_A : A ;
-fun 'mind-boggling_A' : A ;
-fun gangling_A : A ;
-fun unfailing_A : A ;
-fun unavailing_A : A ;
-fun unsmiling_A : A ;
-fun beguiling_A : A ;
-fun swashbuckling_A : A ;
-fun darkling_A : A ;
-fun appalling_A : A ;
-fun impelling_A : A ;
-fun compelling_A : A ;
-fun telling_A : A ;
-fun gruelling_A : A ;
-fun indwelling_A : A ;
-fun willing_A : A ;
-fun unwilling_A : A ;
-fun controlling_A : A ;
-fun crippling_A : A ;
-fun sterling_A : A ;
-fun startling_A : A ;
-fun unstartling_A : A ;
-fun belittling_A : A ;
-fun dazzling_A : A ;
-fun seeming_A : A ;
-fun 'two-timing_A' : A ;
-fun 'up-and-coming_A' : A ;
-fun unbecoming_A : A ;
-fun forthcoming_A : A ;
-fun unforthcoming_A : A ;
-fun welcoming_A : A ;
-fun incoming_A : A ;
-fun oncoming_A : A ;
-fun homing_A : A ;
-fun glooming_A : A ;
-fun alarming_A : A ;
-fun unalarming_A : A ;
-fun heartwarming_A : A ;
-fun disconfirming_A : A ;
-fun nonconforming_A : A ;
-fun unassuming_A : A ;
-fun 'well-meaning_A' : A ;
-fun demeaning_A : A ;
-fun overweening_A : A ;
-fun deafening_A : A ;
-fun nonopening_A : A ;
-fun enlightening_A : A ;
-fun unenlightening_A : A ;
-fun frightening_A : A ;
-fun heartening_A : A ;
-fun ravening_A : A ;
-fun uncomplaining_A : A ;
-fun entertaining_A : A ;
-fun noncombining_A : A ;
-fun confining_A : A ;
-fun conning_A : A ;
-fun cunning_A : A ;
-fun stunning_A : A ;
-fun dimensioning_A : A ;
-fun questioning_A : A ;
-fun unquestioning_A : A ;
-fun unreasoning_A : A ;
-fun 'early-warning_A' : A ;
-fun discerning_A : A ;
-fun undiscerning_A : A ;
-fun crowning_A : A ;
-fun seagoing_A : A ;
-fun churchgoing_A : A ;
-fun thoroughgoing_A : A ;
-fun oceangoing_A : A ;
-fun ingoing_A : A ;
-fun ongoing_A : A ;
-fun slowgoing_A : A ;
-fun easygoing_A : A ;
-fun peacekeeping_A : A ;
-fun unsleeping_A : A ;
-fun sweeping_A : A ;
-fun walloping_A : A ;
-fun strapping_A : A ;
-fun whopping_A : A ;
-fun sopping_A : A ;
-fun 'oil-bearing_A' : A ;
-fun childbearing_A : A ;
-fun nonbearing_A : A ;
-fun overbearing_A : A ;
-fun unforbearing_A : A ;
-fun godfearing_A : A ;
-fun unhearing_A : A ;
-fun searing_A : A ;
-fun seafaring_A : A ;
-fun wayfaring_A : A ;
-fun glaring_A : A ;
-fun 'rip-roaring_A' : A ;
-fun cheeseparing_A : A ;
-fun sparing_A : A ;
-fun unsparing_A : A ;
-fun raring_A : A ;
-fun bewildering_A : A ;
-fun smoldering_A : A ;
-fun 'long-suffering_A' : A ;
-fun scandalmongering_A : A ;
-fun woolgathering_A : A ;
-fun blithering_A : A ;
-fun smothering_A : A ;
-fun 'mouth-watering_A' : A ;
-fun unfaltering_A : A ;
-fun flattering_A : A ;
-fun unflattering_A : A ;
-fun bettering_A : A ;
-fun jittering_A : A ;
-fun unwavering_A : A ;
-fun covering_A : A ;
-fun overpowering_A : A ;
-fun inspiring_A : A ;
-fun 'awe-inspiring_A' : A ;
-fun uninspiring_A : A ;
-fun untiring_A : A ;
-fun uninquiring_A : A ;
-fun boring_A : A ;
-fun adoring_A : A ;
-fun unerring_A : A ;
-fun 'soul-stirring_A' : A ;
-fun alluring_A : A ;
-fun inpouring_A : A ;
-fun assuring_A : A ;
-fun reassuring_A : A ;
-fun unreassuring_A : A ;
-fun debasing_A : A ;
-fun unceasing_A : A ;
-fun displeasing_A : A ;
-fun teasing_A : A ;
-fun raising_A : A ;
-fun 'self-raising_A' : A ;
-fun 'hair-raising_A' : A ;
-fun uncompromising_A : A ;
-fun unpromising_A : A ;
-fun enterprising_A : A ;
-fun unenterprising_A : A ;
-fun surprising_A : A ;
-fun unsurprising_A : A ;
-fun cleansing_A : A ;
-fun unimposing_A : A ;
-fun surpassing_A : A ;
-fun embarrassing_A : A ;
-fun caressing_A : A ;
-fun pressing_A : A ;
-fun depressing_A : A ;
-fun distressing_A : A ;
-fun prepossessing_A : A ;
-fun unprepossessing_A : A ;
-fun confusing_A : A ;
-fun amusing_A : A ;
-fun 'rabble-rousing_A' : A ;
-fun nonreciprocating_A : A ;
-fun unaccommodating_A : A ;
-fun nauseating_A : A ;
-fun excruciating_A : A ;
-fun ingratiating_A : A ;
-fun undeviating_A : A ;
-fun asphyxiating_A : A ;
-fun elating_A : A ;
-fun annihilating_A : A ;
-fun titillating_A : A ;
-fun stimulating_A : A ;
-fun unstimulating_A : A ;
-fun animating_A : A ;
-fun alienating_A : A ;
-fun fascinating_A : A ;
-fun iodinating_A : A ;
-fun undiscriminating_A : A ;
-fun exhilarating_A : A ;
-fun exasperating_A : A ;
-fun adulterating_A : A ;
-fun invigorating_A : A ;
-fun frustrating_A : A ;
-fun fulgurating_A : A ;
-fun debilitating_A : A ;
-fun irritating_A : A ;
-fun unhesitating_A : A ;
-fun extenuating_A : A ;
-fun aggravating_A : A ;
-fun 'self-activating_A' : A ;
-fun doubting_A : A ;
-fun 'self-acting_A' : A ;
-fun exacting_A : A ;
-fun unexacting_A : A ;
-fun affecting_A : A ;
-fun unaffecting_A : A ;
-fun 'self-respecting_A' : A ;
-fun unsuspecting_A : A ;
-fun constricting_A : A ;
-fun semiconducting_A : A ;
-fun fleeting_A : A ;
-fun 'go-to-meeting_A' : A ;
-fun disquieting_A : A ;
-fun biting_A : A ;
-fun exciting_A : A ;
-fun unexciting_A : A ;
-fun limiting_A : A ;
-fun uninviting_A : A ;
-fun insulting_A : A ;
-fun disenchanting_A : A ;
-fun orienting_A : A ;
-fun disorienting_A : A ;
-fun unrelenting_A : A ;
-fun disappointing_A : A ;
-fun daunting_A : A ;
-fun haunting_A : A ;
-fun disconcerting_A : A ;
-fun comforting_A : A ;
-fun 'self-supporting_A' : A ;
-fun unsporting_A : A ;
-fun lasting_A : A ;
-fun everlasting_A : A ;
-fun interesting_A : A ;
-fun uninteresting_A : A ;
-fun arresting_A : A ;
-fun unresisting_A : A ;
-fun exhausting_A : A ;
-fun disgusting_A : A ;
-fun trendsetting_A : A ;
-fun thermosetting_A : A ;
-fun fitting_A : A ;
-fun 'close-fitting_A' : A ;
-fun befitting_A : A ;
-fun unbefitting_A : A ;
-fun hardhitting_A : A ;
-fun 'side-splitting_A' : A ;
-fun hairsplitting_A : A ;
-fun unremitting_A : A ;
-fun witting_A : A ;
-fun unwitting_A : A ;
-fun 'off-putting_A' : A ;
-fun 'face-saving_A' : A ;
-fun 'labour-saving_A' : A ;
-fun 'daylight-saving_A' : A ;
-fun timesaving_A : A ;
-fun laborsaving_A : A ;
-fun unbelieving_A : A ;
-fun 'life-giving_A' : A ;
-fun unforgiving_A : A ;
-fun living_A : A ;
-fun 'clean-living_A' : A ;
-fun loving_A : A ;
-fun unloving_A : A ;
-fun nonmoving_A : A ;
-fun unmoving_A : A ;
-fun undeserving_A : A ;
-fun timeserving_A : A ;
-fun unswerving_A : A ;
-fun renewing_A : A ;
-fun 'mind-blowing_A' : A ;
-fun inflowing_A : A ;
-fun following_A : A ;
-fun unknowing_A : A ;
-fun ingrowing_A : A ;
-fun batwing_A : A ;
-fun sweptwing_A : A ;
-fun 'long-playing_A' : A ;
-fun taxpaying_A : A ;
-fun undying_A : A ;
-fun stupefying_A : A ;
-fun edifying_A : A ;
-fun unedifying_A : A ;
-fun exemplifying_A : A ;
-fun dignifying_A : A ;
-fun stupifying_A : A ;
-fun electrifying_A : A ;
-fun purifying_A : A ;
-fun gratifying_A : A ;
-fun unsatisfying_A : A ;
-fun highflying_A : A ;
-fun underlying_A : A ;
-fun outlying_A : A ;
-fun 'self-denying_A' : A ;
-fun annoying_A : A ;
-fun 'soul-destroying_A' : A ;
-fun unvarying_A : A ;
-fun pitying_A : A ;
-fun amazing_A : A ;
-fun energizing_A : A ;
-fun unsympathizing_A : A ;
-fun demoralizing_A : A ;
-fun tantalizing_A : A ;
-fun maximizing_A : A ;
-fun patronizing_A : A ;
-fun familiarizing_A : A ;
-fun appetizing_A : A ;
-fun unappetizing_A : A ;
-fun sensitizing_A : A ;
-fun desensitizing_A : A ;
-fun 'age-long_A' : A ;
-fun oblong_A : A ;
-fun headlong_A : A ;
-fun sidelong_A : A ;
-fun lifelong_A : A ;
-fun agelong_A : A ;
-fun livelong_A : A ;
-fun monthlong_A : A ;
-fun weeklong_A : A ;
-fun yearlong_A : A ;
-fun hourlong_A : A ;
-fun nightlong_A : A ;
-fun daylong_A : A ;
-fun headstrong_A : A ;
-fun wrong_A : A ;
-fun underhung_A : A ;
-fun 'far-flung_A' : A ;
-fun underslung_A : A ;
-fun unstrung_A : A ;
-fun overstrung_A : A ;
-fun unsung_A : A ;
-fun hangdog_A : A ;
-fun agog_A : A ;
-fun big_A : A ;
-fun long_A : A ;
-fun strong_A : A ;
-fun young_A : A ;
-fun smug_A : A ;
-fun snug_A : A ;
-fun enough_A : A ;
-fun abroach_A : A ;
-fun Czech_A : A ;
-fun milch_A : A ;
-fun lamellibranch_A : A ;
-fun French_A : A ;
-fun staunch_A : A ;
-fun arch_A : A ;
-fun interchurch_A : A ;
-fun kitsch_A : A ;
-fun eldritch_A : A ;
-fun scotch_A : A ;
-fun topnotch_A : A ;
-fun Dutch_A : A ;
-fun butch_A : A ;
-fun overmuch_A : A ;
-fun aweigh_A : A ;
-fun 'knee-high_A' : A ;
-fun 'waist-high_A' : A ;
-fun 'see-through_A' : A ;
-fun thorough_A : A ;
-fun slapdash_A : A ;
-fun awash_A : A ;
-fun mobbish_A : A ;
-fun snobbish_A : A ;
-fun clubbish_A : A ;
-fun caddish_A : A ;
-fun faddish_A : A ;
-fun reddish_A : A ;
-fun oddish_A : A ;
-fun cloddish_A : A ;
-fun Swedish_A : A ;
-fun 'old-maidish_A' : A ;
-fun childish_A : A ;
-fun oldish_A : A ;
-fun outlandish_A : A ;
-fun fiendish_A : A ;
-fun roundish_A : A ;
-fun modish_A : A ;
-fun goodish_A : A ;
-fun prudish_A : A ;
-fun ogreish_A : A ;
-fun oafish_A : A ;
-fun raffish_A : A ;
-fun offish_A : A ;
-fun standoffish_A : A ;
-fun huffish_A : A ;
-fun elfish_A : A ;
-fun selfish_A : A ;
-fun unselfish_A : A ;
-fun wolfish_A : A ;
-fun dwarfish_A : A ;
-fun waggish_A : A ;
-fun biggish_A : A ;
-fun piggish_A : A ;
-fun priggish_A : A ;
-fun hoggish_A : A ;
-fun sluggish_A : A ;
-fun longish_A : A ;
-fun youngish_A : A ;
-fun largish_A : A ;
-fun roughish_A : A ;
-fun freakish_A : A ;
-fun rakish_A : A ;
-fun blackish_A : A ;
-fun brackish_A : A ;
-fun peckish_A : A ;
-fun sickish_A : A ;
-fun blockish_A : A ;
-fun puckish_A : A ;
-fun pinkish_A : A ;
-fun monkish_A : A ;
-fun bookish_A : A ;
-fun darkish_A : A ;
-fun Turkish_A : A ;
-fun mawkish_A : A ;
-fun palish_A : A ;
-fun English_A : A ;
-fun devilish_A : A ;
-fun ticklish_A : A ;
-fun smallish_A : A ;
-fun tallish_A : A ;
-fun hellish_A : A ;
-fun bullish_A : A ;
-fun Polish_A : A ;
-fun foolish_A : A ;
-fun purplish_A : A ;
-fun girlish_A : A ;
-fun churlish_A : A ;
-fun mulish_A : A ;
-fun ghoulish_A : A ;
-fun owlish_A : A ;
-fun stylish_A : A ;
-fun beamish_A : A ;
-fun squeamish_A : A ;
-fun flemish_A : A ;
-fun gnomish_A : A ;
-fun romish_A : A ;
-fun Danish_A : A ;
-fun womanish_A : A ;
-fun 'old-womanish_A' : A ;
-fun Spanish_A : A ;
-fun hoydenish_A : A ;
-fun greenish_A : A ;
-fun rhenish_A : A ;
-fun heathenish_A : A ;
-fun kittenish_A : A ;
-fun vixenish_A : A ;
-fun swinish_A : A ;
-fun clannish_A : A ;
-fun mannish_A : A ;
-fun tannish_A : A ;
-fun Finnish_A : A ;
-fun donnish_A : A ;
-fun baboonish_A : A ;
-fun buffoonish_A : A ;
-fun clownish_A : A ;
-fun brownish_A : A ;
-fun apish_A : A ;
-fun sheepish_A : A ;
-fun steepish_A : A ;
-fun dampish_A : A ;
-fun impish_A : A ;
-fun blimpish_A : A ;
-fun wimpish_A : A ;
-fun lumpish_A : A ;
-fun frumpish_A : A ;
-fun popish_A : A ;
-fun snappish_A : A ;
-fun foppish_A : A ;
-fun uppish_A : A ;
-fun waspish_A : A ;
-fun Irish_A : A ;
-fun bearish_A : A ;
-fun garish_A : A ;
-fun nightmarish_A : A ;
-fun squarish_A : A ;
-fun tigerish_A : A ;
-fun bitterish_A : A ;
-fun feverish_A : A ;
-fun liverish_A : A ;
-fun fairish_A : A ;
-fun boorish_A : A ;
-fun moorish_A : A ;
-fun currish_A : A ;
-fun amateurish_A : A ;
-fun latish_A : A ;
-fun sweetish_A : A ;
-fun leftish_A : A ;
-fun softish_A : A ;
-fun rightish_A : A ;
-fun whitish_A : A ;
-fun British_A : A ;
-fun saltish_A : A ;
-fun coltish_A : A ;
-fun doltish_A : A ;
-fun introvertish_A : A ;
-fun extrovertish_A : A ;
-fun shortish_A : A ;
-fun cattish_A : A ;
-fun fattish_A : A ;
-fun pettish_A : A ;
-fun coquettish_A : A ;
-fun skittish_A : A ;
-fun scottish_A : A ;
-fun hottish_A : A ;
-fun sottish_A : A ;
-fun sluttish_A : A ;
-fun loutish_A : A ;
-fun brutish_A : A ;
-fun aguish_A : A ;
-fun roguish_A : A ;
-fun bluish_A : A ;
-fun cliquish_A : A ;
-fun lavish_A : A ;
-fun slavish_A : A ;
-fun knavish_A : A ;
-fun peevish_A : A ;
-fun thievish_A : A ;
-fun elvish_A : A ;
-fun jewish_A : A ;
-fun shrewish_A : A ;
-fun yellowish_A : A ;
-fun scarecrowish_A : A ;
-fun swish_A : A ;
-fun babyish_A : A ;
-fun greyish_A : A ;
-fun fogyish_A : A ;
-fun earlyish_A : A ;
-fun boyish_A : A ;
-fun puppyish_A : A ;
-fun fortyish_A : A ;
-fun welsh_A : A ;
-fun 'hush-hush_A' : A ;
-fun flush_A : A ;
-fun loath_A : A ;
-fun 'half-length_A' : A ;
-fun 'full-length_A' : A ;
-fun hiplength_A : A ;
-fun interfaith_A : A ;
-fun umpteenth_A : A ;
-fun billionth_A : A ;
-fun millionth_A : A ;
-fun quadrillionth_A : A ;
-fun trillionth_A : A ;
-fun quintillionth_A : A ;
-fun loth_A : A ;
-fun 'fine-tooth_A' : A ;
-fun zeroth_A : A ;
-fun wroth_A : A ;
-fun 'down-to-earth_A' : A ;
-fun worth_A : A ;
-fun uncouth_A : A ;
-fun 'foot-and-mouth_A' : A ;
-fun rich_A : A ;
-fun birch_A : A ;
-fun stretch_A : A ;
-fun high_A : A ;
-fun rough_A : A ;
-fun tough_A : A ;
-fun rash_A : A ;
-fun brash_A : A ;
-fun fresh_A : A ;
-fun posh_A : A ;
-fun harsh_A : A ;
-fun lush_A : A ;
-fun plush_A : A ;
-fun nth_A : A ;
-fun ninth_A : A ;
-fun smooth_A : A ;
-fun North_A : A ;
-fun South_A : A ;
-fun couth_A : A ;
-fun Thai_A : A ;
-fun jihadi_A : A ;
-fun hindi_A : A ;
-fun 'hi-fi_A' : A ;
-fun chichi_A : A ;
-fun bangladeshi_A : A ;
-fun khaki_A : A ;
-fun 'après-ski_A' : A ;
-fun bengali_A : A ;
-fun Somali_A : A ;
-fun nepali_A : A ;
-fun israeli_A : A ;
-fun omani_A : A ;
-fun Pakistani_A : A ;
-fun afghanistani_A : A ;
-fun hindustani_A : A ;
-fun bhutani_A : A ;
-fun yemeni_A : A ;
-fun bahraini_A : A ;
-fun iraqi_A : A ;
-fun qatari_A : A ;
-fun kashmiri_A : A ;
-fun 'a posteriori_A' : A ;
-fun 'a priori_A' : A ;
-fun nisi_A : A ;
-fun kuwaiti_A : A ;
-fun nazi_A : A ;
-fun swazi_A : A ;
-fun midi_A : A ;
-fun mini_A : A ;
-fun anti_A : A ;
-fun maxi_A : A ;
-fun 'off-peak_A' : A ;
-fun czechoslovak_A : A ;
-fun 'crook-back_A' : A ;
-fun bareback_A : A ;
-fun hunchback_A : A ;
-fun crookback_A : A ;
-fun paperback_A : A ;
-fun razorback_A : A ;
-fun sweptback_A : A ;
-fun outback_A : A ;
-fun cheapjack_A : A ;
-fun 'pitch-black_A' : A ;
-fun 'jet-black_A' : A ;
-fun gimcrack_A : A ;
-fun pinchbeck_A : A ;
-fun 'polo-neck_A' : A ;
-fun turtleneck_A : A ;
-fun breakneck_A : A ;
-fun hick_A : A ;
-fun spick_A : A ;
-fun redbrick_A : A ;
-fun sick_A : A ;
-fun 'air-sick_A' : A ;
-fun seasick_A : A ;
-fun homesick_A : A ;
-fun lovesick_A : A ;
-fun brainsick_A : A ;
-fun carsick_A : A ;
-fun airsick_A : A ;
-fun heartsick_A : A ;
-fun nonstick_A : A ;
-fun slapstick_A : A ;
-fun 'double-quick_A' : A ;
-fun 'chock-a-block_A' : A ;
-fun 'round-the-clock_A' : A ;
-fun mock_A : A ;
-fun antiknock_A : A ;
-fun amuck_A : A ;
-fun 'stage-struck_A' : A ;
-fun 'awe-struck_A' : A ;
-fun 'wonder-struck_A' : A ;
-fun 'terror-struck_A' : A ;
-fun 'horror-struck_A' : A ;
-fun moonstruck_A : A ;
-fun thunderstruck_A : A ;
-fun unstuck_A : A ;
-fun 'tongue-in-cheek_A' : A ;
-fun Greek_A : A ;
-fun midweek_A : A ;
-fun lank_A : A ;
-fun blank_A : A ;
-fun 'point-blank_A' : A ;
-fun rank_A : A ;
-fun antitank_A : A ;
-fun 'punch-drunk_A' : A ;
-fun casebook_A : A ;
-fun 'pitch-dark_A' : A ;
-fun semidark_A : A ;
-fun stark_A : A ;
-fun berserk_A : A ;
-fun 'out-of-work_A' : A ;
-fun damask_A : A ;
-fun bleak_A : A ;
-fun weak_A : A ;
-fun black_A : A ;
-fun slack_A : A ;
-fun thick_A : A ;
-fun slick_A : A ;
-fun quick_A : A ;
-fun stock_A : A ;
-fun sleek_A : A ;
-fun meek_A : A ;
-fun dank_A : A ;
-fun crank_A : A ;
-fun frank_A : A ;
-fun swank_A : A ;
-fun pink_A : A ;
-fun drunk_A : A ;
-fun dark_A : A ;
-fun brisk_A : A ;
-fun tribal_A : A ;
-fun intertribal_A : A ;
-fun global_A : A ;
-fun herbal_A : A ;
-fun verbal_A : A ;
-fun nonverbal_A : A ;
-fun tubal_A : A ;
-fun zodiacal_A : A ;
-fun heliacal_A : A ;
-fun maniacal_A : A ;
-fun nymphomaniacal_A : A ;
-fun bibliomaniacal_A : A ;
-fun megalomaniacal_A : A ;
-fun monomaniacal_A : A ;
-fun demoniacal_A : A ;
-fun hypochondriacal_A : A ;
-fun paradisiacal_A : A ;
-fun coccal_A : A ;
-fun staphylococcal_A : A ;
-fun pneumococcal_A : A ;
-fun streptococcal_A : A ;
-fun buccal_A : A ;
-fun faecal_A : A ;
-fun cecal_A : A ;
-fun bibliothecal_A : A ;
-fun algebraical_A : A ;
-fun pharisaical_A : A ;
-fun cubical_A : A ;
-fun farcical_A : A ;
-fun radical_A : A ;
-fun medical_A : A ;
-fun paramedical_A : A ;
-fun premedical_A : A ;
-fun biomedical_A : A ;
-fun aeromedical_A : A ;
-fun veridical_A : A ;
-fun juridical_A : A ;
-fun methodical_A : A ;
-fun unmethodical_A : A ;
-fun periodical_A : A ;
-fun pontifical_A : A ;
-fun magical_A : A ;
-fun strategical_A : A ;
-fun pedagogical_A : A ;
-fun logical_A : A ;
-fun genealogical_A : A ;
-fun analogical_A : A ;
-fun illogical_A : A ;
-fun pharmacological_A : A ;
-fun psychopharmacological_A : A ;
-fun ecological_A : A ;
-fun gynaecological_A : A ;
-fun gynecological_A : A ;
-fun musicological_A : A ;
-fun toxicological_A : A ;
-fun oncological_A : A ;
-fun pteridological_A : A ;
-fun methodological_A : A ;
-fun archaeological_A : A ;
-fun ideological_A : A ;
-fun geological_A : A ;
-fun theological_A : A ;
-fun teleological_A : A ;
-fun psychological_A : A ;
-fun parapsychological_A : A ;
-fun neuropsychological_A : A ;
-fun morphological_A : A ;
-fun pathological_A : A ;
-fun ornithological_A : A ;
-fun mythological_A : A ;
-fun biological_A : A ;
-fun neurobiological_A : A ;
-fun sociological_A : A ;
-fun radiological_A : A ;
-fun bacteriological_A : A ;
-fun soteriological_A : A ;
-fun physiological_A : A ;
-fun neurophysiological_A : A ;
-fun etiological_A : A ;
-fun axiological_A : A ;
-fun philological_A : A ;
-fun entomological_A : A ;
-fun seismological_A : A ;
-fun etymological_A : A ;
-fun phrenological_A : A ;
-fun technological_A : A ;
-fun ethnological_A : A ;
-fun criminological_A : A ;
-fun terminological_A : A ;
-fun limnological_A : A ;
-fun phonological_A : A ;
-fun chronological_A : A ;
-fun glottochronological_A : A ;
-fun immunological_A : A ;
-fun zoological_A : A ;
-fun protozoological_A : A ;
-fun anthropological_A : A ;
-fun paleoanthropological_A : A ;
-fun topological_A : A ;
-fun aerological_A : A ;
-fun numerological_A : A ;
-fun virological_A : A ;
-fun meteorological_A : A ;
-fun metrological_A : A ;
-fun astrological_A : A ;
-fun neurological_A : A ;
-fun scatological_A : A ;
-fun eschatological_A : A ;
-fun ontological_A : A ;
-fun paleontological_A : A ;
-fun histological_A : A ;
-fun tautological_A : A ;
-fun cytological_A : A ;
-fun metallurgical_A : A ;
-fun surgical_A : A ;
-fun nonsurgical_A : A ;
-fun liturgical_A : A ;
-fun hierarchical_A : A ;
-fun nonhierarchical_A : A ;
-fun psychical_A : A ;
-fun graphical_A : A ;
-fun geographical_A : A ;
-fun biographical_A : A ;
-fun autobiographical_A : A ;
-fun semiautobiographical_A : A ;
-fun topographical_A : A ;
-fun theosophical_A : A ;
-fun philosophical_A : A ;
-fun gymnosophical_A : A ;
-fun ethical_A : A ;
-fun unethical_A : A ;
-fun mythical_A : A ;
-fun biblical_A : A ;
-fun postbiblical_A : A ;
-fun cyclical_A : A ;
-fun encyclical_A : A ;
-fun evangelical_A : A ;
-fun umbilical_A : A ;
-fun diabolical_A : A ;
-fun parabolical_A : A ;
-fun symbolical_A : A ;
-fun chemical_A : A ;
-fun physicochemical_A : A ;
-fun biochemical_A : A ;
-fun immunochemical_A : A ;
-fun electrochemical_A : A ;
-fun pyrochemical_A : A ;
-fun photochemical_A : A ;
-fun rhythmical_A : A ;
-fun unrhythmical_A : A ;
-fun inimical_A : A ;
-fun comical_A : A ;
-fun economical_A : A ;
-fun uneconomical_A : A ;
-fun astronomical_A : A ;
-fun anatomical_A : A ;
-fun mechanical_A : A ;
-fun nonmechanical_A : A ;
-fun unmechanical_A : A ;
-fun electromechanical_A : A ;
-fun photomechanical_A : A ;
-fun servomechanical_A : A ;
-fun puritanical_A : A ;
-fun botanical_A : A ;
-fun ecumenical_A : A ;
-fun oecumenical_A : A ;
-fun arsenical_A : A ;
-fun technical_A : A ;
-fun nontechnical_A : A ;
-fun rabbinical_A : A ;
-fun finical_A : A ;
-fun clinical_A : A ;
-fun subclinical_A : A ;
-fun preclinical_A : A ;
-fun dominical_A : A ;
-fun tyrannical_A : A ;
-fun conical_A : A ;
-fun canonical_A : A ;
-fun ironical_A : A ;
-fun cynical_A : A ;
-fun stoical_A : A ;
-fun apical_A : A ;
-fun microscopical_A : A ;
-fun tropical_A : A ;
-fun subtropical_A : A ;
-fun semitropical_A : A ;
-fun pantropical_A : A ;
-fun topical_A : A ;
-fun typical_A : A ;
-fun atypical_A : A ;
-fun untypical_A : A ;
-fun genotypical_A : A ;
-fun phenotypical_A : A ;
-fun cylindrical_A : A ;
-fun bicylindrical_A : A ;
-fun spherical_A : A ;
-fun hemispherical_A : A ;
-fun nonspherical_A : A ;
-fun clerical_A : A ;
-fun chimerical_A : A ;
-fun numerical_A : A ;
-fun hysterical_A : A ;
-fun empirical_A : A ;
-fun semiempirical_A : A ;
-fun satirical_A : A ;
-fun arborical_A : A ;
-fun allegorical_A : A ;
-fun categorical_A : A ;
-fun metaphorical_A : A ;
-fun oratorical_A : A ;
-fun rhetorical_A : A ;
-fun unrhetorical_A : A ;
-fun historical_A : A ;
-fun ahistorical_A : A ;
-fun prehistorical_A : A ;
-fun theatrical_A : A ;
-fun untheatrical_A : A ;
-fun electrical_A : A ;
-fun metrical_A : A ;
-fun symmetrical_A : A ;
-fun asymmetrical_A : A ;
-fun geometrical_A : A ;
-fun obstetrical_A : A ;
-fun lyrical_A : A ;
-fun vesical_A : A ;
-fun abdominovesical_A : A ;
-fun lackadaisical_A : A ;
-fun whimsical_A : A ;
-fun nonsensical_A : A ;
-fun dropsical_A : A ;
-fun classical_A : A ;
-fun nonclassical_A : A ;
-fun musical_A : A ;
-fun unmusical_A : A ;
-fun physical_A : A ;
-fun metaphysical_A : A ;
-fun geophysical_A : A ;
-fun astrophysical_A : A ;
-fun sabbatical_A : A ;
-fun viatical_A : A ;
-fun mathematical_A : A ;
-fun grammatical_A : A ;
-fun diagrammatical_A : A ;
-fun ungrammatical_A : A ;
-fun fanatical_A : A ;
-fun piratical_A : A ;
-fun practical_A : A ;
-fun impractical_A : A ;
-fun tactical_A : A ;
-fun dialectical_A : A ;
-fun alphabetical_A : A ;
-fun catechetical_A : A ;
-fun prophetical_A : A ;
-fun antithetical_A : A ;
-fun parenthetical_A : A ;
-fun hypothetical_A : A ;
-fun esthetical_A : A ;
-fun aesthetical_A : A ;
-fun arithmetical_A : A ;
-fun poetical_A : A ;
-fun heretical_A : A ;
-fun antiheretical_A : A ;
-fun theoretical_A : A ;
-fun political_A : A ;
-fun apolitical_A : A ;
-fun semipolitical_A : A ;
-fun nonpolitical_A : A ;
-fun geopolitical_A : A ;
-fun critical_A : A ;
-fun acritical_A : A ;
-fun diacritical_A : A ;
-fun noncritical_A : A ;
-fun uncritical_A : A ;
-fun hypocritical_A : A ;
-fun supercritical_A : A ;
-fun hypercritical_A : A ;
-fun overcritical_A : A ;
-fun parasitical_A : A ;
-fun jesuitical_A : A ;
-fun identical_A : A ;
-fun sceptical_A : A ;
-fun skeptical_A : A ;
-fun elliptical_A : A ;
-fun optical_A : A ;
-fun vertical_A : A ;
-fun cortical_A : A ;
-fun subcortical_A : A ;
-fun paleocortical_A : A ;
-fun neocortical_A : A ;
-fun thalamocortical_A : A ;
-fun adrenocortical_A : A ;
-fun ecclesiastical_A : A ;
-fun theistical_A : A ;
-fun egoistical_A : A ;
-fun statistical_A : A ;
-fun casuistical_A : A ;
-fun mystical_A : A ;
-fun nautical_A : A ;
-fun aeronautical_A : A ;
-fun pharmaceutical_A : A ;
-fun therapeutical_A : A ;
-fun analytical_A : A ;
-fun psychoanalytical_A : A ;
-fun cervical_A : A ;
-fun indexical_A : A ;
-fun lexical_A : A ;
-fun nonlexical_A : A ;
-fun paradoxical_A : A ;
-fun quizzical_A : A ;
-fun provencal_A : A ;
-fun focal_A : A ;
-fun bifocal_A : A ;
-fun local_A : A ;
-fun reciprocal_A : A ;
-fun nonreciprocal_A : A ;
-fun vocal_A : A ;
-fun equivocal_A : A ;
-fun unequivocal_A : A ;
-fun homocercal_A : A ;
-fun heterocercal_A : A ;
-fun fiscal_A : A ;
-fun faucal_A : A ;
-fun ducal_A : A ;
-fun archducal_A : A ;
-fun hadal_A : A ;
-fun hebdomadal_A : A ;
-fun gonadal_A : A ;
-fun agonadal_A : A ;
-fun daedal_A : A ;
-fun creedal_A : A ;
-fun pedal_A : A ;
-fun bipedal_A : A ;
-fun quadrupedal_A : A ;
-fun fungicidal_A : A ;
-fun homicidal_A : A ;
-fun spermicidal_A : A ;
-fun bactericidal_A : A ;
-fun viricidal_A : A ;
-fun insecticidal_A : A ;
-fun suicidal_A : A ;
-fun araneidal_A : A ;
-fun pyramidal_A : A ;
-fun autacoidal_A : A ;
-fun alkaloidal_A : A ;
-fun colloidal_A : A ;
-fun paraboloidal_A : A ;
-fun hyperboloidal_A : A ;
-fun adenoidal_A : A ;
-fun chancroidal_A : A ;
-fun bacteroidal_A : A ;
-fun steroidal_A : A ;
-fun asteroidal_A : A ;
-fun nonsteroidal_A : A ;
-fun toroidal_A : A ;
-fun centroidal_A : A ;
-fun sinusoidal_A : A ;
-fun trapezoidal_A : A ;
-fun rhizoidal_A : A ;
-fun bridal_A : A ;
-fun apsidal_A : A ;
-fun tidal_A : A ;
-fun intertidal_A : A ;
-fun pudendal_A : A ;
-fun modal_A : A ;
-fun bimodal_A : A ;
-fun unimodal_A : A ;
-fun apodal_A : A ;
-fun antipodal_A : A ;
-fun arthropodal_A : A ;
-fun chordal_A : A ;
-fun caudal_A : A ;
-fun feudal_A : A ;
-fun calyceal_A : A ;
-fun ideal_A : A ;
-fun esophageal_A : A ;
-fun gastroesophageal_A : A ;
-fun phalangeal_A : A ;
-fun meningeal_A : A ;
-fun pharyngeal_A : A ;
-fun laryngopharyngeal_A : A ;
-fun oropharyngeal_A : A ;
-fun nasopharyngeal_A : A ;
-fun glossopharyngeal_A : A ;
-fun laryngeal_A : A ;
-fun coccygeal_A : A ;
-fun tracheal_A : A ;
-fun diarrheal_A : A ;
-fun leal_A : A ;
-fun piecemeal_A : A ;
-fun calcaneal_A : A ;
-fun hymeneal_A : A ;
-fun lineal_A : A ;
-fun matrilineal_A : A ;
-fun patrilineal_A : A ;
-fun curvilineal_A : A ;
-fun pineal_A : A ;
-fun perineal_A : A ;
-fun anoperineal_A : A ;
-fun pectineal_A : A ;
-fun peroneal_A : A ;
-fun peritoneal_A : A ;
-fun corneal_A : A ;
-fun real_A : A ;
-fun areal_A : A ;
-fun cereal_A : A ;
-fun sidereal_A : A ;
-fun ethereal_A : A ;
-fun venereal_A : A ;
-fun funereal_A : A ;
-fun unreal_A : A ;
-fun boreal_A : A ;
-fun arboreal_A : A ;
-fun nonarboreal_A : A ;
-fun marmoreal_A : A ;
-fun corporeal_A : A ;
-fun incorporeal_A : A ;
-fun empyreal_A : A ;
-fun diaphyseal_A : A ;
-fun epiphyseal_A : A ;
-fun apophyseal_A : A ;
-fun hypophyseal_A : A ;
-fun lacteal_A : A ;
-fun bracteal_A : A ;
-fun popliteal_A : A ;
-fun osteal_A : A ;
-fun luteal_A : A ;
-fun gluteal_A : A ;
-fun uveal_A : A ;
-fun vagal_A : A ;
-fun legal_A : A ;
-fun extralegal_A : A ;
-fun illegal_A : A ;
-fun medicolegal_A : A ;
-fun regal_A : A ;
-fun viceregal_A : A ;
-fun prodigal_A : A ;
-fun algal_A : A ;
-fun fungal_A : A ;
-fun fugal_A : A ;
-fun centrifugal_A : A ;
-fun conjugal_A : A ;
-fun frugal_A : A ;
-fun epochal_A : A ;
-fun matriarchal_A : A ;
-fun patriarchal_A : A ;
-fun monarchal_A : A ;
-fun paschal_A : A ;
-fun triumphal_A : A ;
-fun apocryphal_A : A ;
-fun catarrhal_A : A ;
-fun lethal_A : A ;
-fun nonlethal_A : A ;
-fun zenithal_A : A ;
-fun neanderthal_A : A ;
-fun azimuthal_A : A ;
-fun bismuthal_A : A ;
-fun labial_A : A ;
-fun bilabial_A : A ;
-fun tibial_A : A ;
-fun cambial_A : A ;
-fun microbial_A : A ;
-fun antimicrobial_A : A ;
-fun adverbial_A : A ;
-fun proverbial_A : A ;
-fun connubial_A : A ;
-fun facial_A : A ;
-fun unifacial_A : A ;
-fun maxillofacial_A : A ;
-fun mandibulofacial_A : A ;
-fun interfacial_A : A ;
-fun glacial_A : A ;
-fun postglacial_A : A ;
-fun racial_A : A ;
-fun biracial_A : A ;
-fun multiracial_A : A ;
-fun nonracial_A : A ;
-fun interracial_A : A ;
-fun aecial_A : A ;
-fun apothecial_A : A ;
-fun special_A : A ;
-fun especial_A : A ;
-fun judicial_A : A ;
-fun extrajudicial_A : A ;
-fun prejudicial_A : A ;
-fun beneficial_A : A ;
-fun official_A : A ;
-fun semiofficial_A : A ;
-fun unofficial_A : A ;
-fun sacrificial_A : A ;
-fun artificial_A : A ;
-fun superficial_A : A ;
-fun surficial_A : A ;
-fun altricial_A : A ;
-fun financial_A : A ;
-fun nonfinancial_A : A ;
-fun provincial_A : A ;
-fun uncial_A : A ;
-fun precocial_A : A ;
-fun social_A : A ;
-fun asocial_A : A ;
-fun antisocial_A : A ;
-fun unsocial_A : A ;
-fun commercial_A : A ;
-fun noncommercial_A : A ;
-fun uncommercial_A : A ;
-fun fiducial_A : A ;
-fun crucial_A : A ;
-fun noncrucial_A : A ;
-fun radial_A : A ;
-fun biradial_A : A ;
-fun medial_A : A ;
-fun remedial_A : A ;
-fun antheridial_A : A ;
-fun basidial_A : A ;
-fun prandial_A : A ;
-fun preprandial_A : A ;
-fun postprandial_A : A ;
-fun gerundial_A : A ;
-fun phyllodial_A : A ;
-fun custodial_A : A ;
-fun pericardial_A : A ;
-fun myocardial_A : A ;
-fun cordial_A : A ;
-fun precordial_A : A ;
-fun uncordial_A : A ;
-fun primordial_A : A ;
-fun chlamydial_A : A ;
-fun collegial_A : A ;
-fun vestigial_A : A ;
-fun brachial_A : A ;
-fun branchial_A : A ;
-fun bronchial_A : A ;
-fun parochial_A : A ;
-fun eparchial_A : A ;
-fun epithelial_A : A ;
-fun perithelial_A : A ;
-fun endothelial_A : A ;
-fun neuroglial_A : A ;
-fun filial_A : A ;
-fun familial_A : A ;
-fun nosocomial_A : A ;
-fun binomial_A : A ;
-fun polynomial_A : A ;
-fun cranial_A : A ;
-fun intracranial_A : A ;
-fun genial_A : A ;
-fun congenial_A : A ;
-fun uncongenial_A : A ;
-fun achenial_A : A ;
-fun bimillenial_A : A ;
-fun menial_A : A ;
-fun venial_A : A ;
-fun vicennial_A : A ;
-fun biennial_A : A ;
-fun triennial_A : A ;
-fun millennial_A : A ;
-fun postmillennial_A : A ;
-fun perennial_A : A ;
-fun centennial_A : A ;
-fun bicentennial_A : A ;
-fun semicentennial_A : A ;
-fun quincentennial_A : A ;
-fun archegonial_A : A ;
-fun colonial_A : A ;
-fun ceremonial_A : A ;
-fun matrimonial_A : A ;
-fun patrimonial_A : A ;
-fun antimonial_A : A ;
-fun testimonial_A : A ;
-fun baronial_A : A ;
-fun participial_A : A ;
-fun marsupial_A : A ;
-fun vicarial_A : A ;
-fun cercarial_A : A ;
-fun malarial_A : A ;
-fun filarial_A : A ;
-fun narial_A : A ;
-fun secretarial_A : A ;
-fun actuarial_A : A ;
-fun aerial_A : A ;
-fun ferial_A : A ;
-fun managerial_A : A ;
-fun imperial_A : A ;
-fun serial_A : A ;
-fun material_A : A ;
-fun immaterial_A : A ;
-fun bacterial_A : A ;
-fun antibacterial_A : A ;
-fun cyanobacterial_A : A ;
-fun criterial_A : A ;
-fun arterial_A : A ;
-fun magisterial_A : A ;
-fun ministerial_A : A ;
-fun ambassadorial_A : A ;
-fun categorial_A : A ;
-fun authorial_A : A ;
-fun immemorial_A : A ;
-fun armorial_A : A ;
-fun manorial_A : A ;
-fun archesporial_A : A ;
-fun censorial_A : A ;
-fun tonsorial_A : A ;
-fun cursorial_A : A ;
-fun accessorial_A : A ;
-fun professorial_A : A ;
-fun fossorial_A : A ;
-fun piscatorial_A : A ;
-fun purgatorial_A : A ;
-fun gladiatorial_A : A ;
-fun mediatorial_A : A ;
-fun clamatorial_A : A ;
-fun senatorial_A : A ;
-fun combinatorial_A : A ;
-fun gubernatorial_A : A ;
-fun conspiratorial_A : A ;
-fun curatorial_A : A ;
-fun accusatorial_A : A ;
-fun dictatorial_A : A ;
-fun equatorial_A : A ;
-fun factorial_A : A ;
-fun multifactorial_A : A ;
-fun sectorial_A : A ;
-fun pictorial_A : A ;
-fun suctorial_A : A ;
-fun editorial_A : A ;
-fun territorial_A : A ;
-fun extraterritorial_A : A ;
-fun nonterritorial_A : A ;
-fun exterritorial_A : A ;
-fun inquisitorial_A : A ;
-fun raptorial_A : A ;
-fun sartorial_A : A ;
-fun tutorial_A : A ;
-fun atrial_A : A ;
-fun endometrial_A : A ;
-fun bimestrial_A : A ;
-fun terrestrial_A : A ;
-fun extraterrestrial_A : A ;
-fun semiterrestrial_A : A ;
-fun industrial_A : A ;
-fun nonindustrial_A : A ;
-fun postindustrial_A : A ;
-fun mercurial_A : A ;
-fun entrepreneurial_A : A ;
-fun mesial_A : A ;
-fun ambrosial_A : A ;
-fun controversial_A : A ;
-fun uncontroversial_A : A ;
-fun carnassial_A : A ;
-fun rickettsial_A : A ;
-fun indusial_A : A ;
-fun nosohusial_A : A ;
-fun abbatial_A : A ;
-fun palatial_A : A ;
-fun spatial_A : A ;
-fun nonspatial_A : A ;
-fun equinoctial_A : A ;
-fun initial_A : A ;
-fun adventitial_A : A ;
-fun interstitial_A : A ;
-fun substantial_A : A ;
-fun insubstantial_A : A ;
-fun consubstantial_A : A ;
-fun circumstantial_A : A ;
-fun precedential_A : A ;
-fun confidential_A : A ;
-fun residential_A : A ;
-fun nonresidential_A : A ;
-fun presidential_A : A ;
-fun unpresidential_A : A ;
-fun evidential_A : A ;
-fun providential_A : A ;
-fun prudential_A : A ;
-fun jurisprudential_A : A ;
-fun agential_A : A ;
-fun tangential_A : A ;
-fun sapiential_A : A ;
-fun experiential_A : A ;
-fun pestilential_A : A ;
-fun exponential_A : A ;
-fun deferential_A : A ;
-fun undeferential_A : A ;
-fun referential_A : A ;
-fun coreferential_A : A ;
-fun preferential_A : A ;
-fun differential_A : A ;
-fun circumferential_A : A ;
-fun inferential_A : A ;
-fun reverential_A : A ;
-fun torrential_A : A ;
-fun essential_A : A ;
-fun inessential_A : A ;
-fun quintessential_A : A ;
-fun penitential_A : A ;
-fun sentential_A : A ;
-fun intrasentential_A : A ;
-fun potential_A : A ;
-fun existential_A : A ;
-fun influential_A : A ;
-fun uninfluential_A : A ;
-fun sequential_A : A ;
-fun consequential_A : A ;
-fun inconsequential_A : A ;
-fun nuptial_A : A ;
-fun prenuptial_A : A ;
-fun antenuptial_A : A ;
-fun postnuptial_A : A ;
-fun martial_A : A ;
-fun partial_A : A ;
-fun impartial_A : A ;
-fun inertial_A : A ;
-fun bestial_A : A ;
-fun celestial_A : A ;
-fun colloquial_A : A ;
-fun trivial_A : A ;
-fun convivial_A : A ;
-fun jovial_A : A ;
-fun synovial_A : A ;
-fun fluvial_A : A ;
-fun alluvial_A : A ;
-fun exuvial_A : A ;
-fun axial_A : A ;
-fun abaxial_A : A ;
-fun adaxial_A : A ;
-fun biaxial_A : A ;
-fun coaxial_A : A ;
-fun halal_A : A ;
-fun molal_A : A ;
-fun hemal_A : A ;
-fun blastemal_A : A ;
-fun decimal_A : A ;
-fun hexadecimal_A : A ;
-fun duodecimal_A : A ;
-fun minimal_A : A ;
-fun lacrimal_A : A ;
-fun primal_A : A ;
-fun sexagesimal_A : A ;
-fun vigesimal_A : A ;
-fun infinitesimal_A : A ;
-fun centesimal_A : A ;
-fun pessimal_A : A ;
-fun intimal_A : A ;
-fun optimal_A : A ;
-fun maximal_A : A ;
-fun proximal_A : A ;
-fun sarcolemmal_A : A ;
-fun prodromal_A : A ;
-fun sarcosomal_A : A ;
-fun chromosomal_A : A ;
-fun microsomal_A : A ;
-fun autosomal_A : A ;
-fun dermal_A : A ;
-fun intradermal_A : A ;
-fun hypodermal_A : A ;
-fun ectodermal_A : A ;
-fun transdermal_A : A ;
-fun thermal_A : A ;
-fun nonthermal_A : A ;
-fun geothermal_A : A ;
-fun isothermal_A : A ;
-fun hyperthermal_A : A ;
-fun formal_A : A ;
-fun semiformal_A : A ;
-fun informal_A : A ;
-fun normal_A : A ;
-fun paranormal_A : A ;
-fun abnormal_A : A ;
-fun subnormal_A : A ;
-fun supernormal_A : A ;
-fun chiasmal_A : A ;
-fun miasmal_A : A ;
-fun phantasmal_A : A ;
-fun dismal_A : A ;
-fun catechismal_A : A ;
-fun organismal_A : A ;
-fun asterismal_A : A ;
-fun baptismal_A : A ;
-fun abysmal_A : A ;
-fun cataclysmal_A : A ;
-fun aneurysmal_A : A ;
-fun paroxysmal_A : A ;
-fun brumal_A : A ;
-fun lachrymal_A : A ;
-fun anal_A : A ;
-fun banal_A : A ;
-fun preanal_A : A ;
-fun bacchanal_A : A ;
-fun perianal_A : A ;
-fun duodenal_A : A ;
-fun gastroduodenal_A : A ;
-fun thenal_A : A ;
-fun phenomenal_A : A ;
-fun hymenal_A : A ;
-fun penal_A : A ;
-fun renal_A : A ;
-fun adrenal_A : A ;
-fun venal_A : A ;
-fun signal_A : A ;
-fun albinal_A : A ;
-fun medicinal_A : A ;
-fun unmedicinal_A : A ;
-fun vicinal_A : A ;
-fun libidinal_A : A ;
-fun cardinal_A : A ;
-fun ordinal_A : A ;
-fun longitudinal_A : A ;
-fun latitudinal_A : A ;
-fun altitudinal_A : A ;
-fun aptitudinal_A : A ;
-fun attitudinal_A : A ;
-fun veinal_A : A ;
-fun final_A : A ;
-fun affinal_A : A ;
-fun vaginal_A : A ;
-fun original_A : A ;
-fun aboriginal_A : A ;
-fun unoriginal_A : A ;
-fun anginal_A : A ;
-fun marginal_A : A ;
-fun virginal_A : A ;
-fun rhinal_A : A ;
-fun anaclinal_A : A ;
-fun cataclinal_A : A ;
-fun anticlinal_A : A ;
-fun synclinal_A : A ;
-fun monoclinal_A : A ;
-fun isoclinal_A : A ;
-fun botulinal_A : A ;
-fun bigeminal_A : A ;
-fun seminal_A : A ;
-fun subliminal_A : A ;
-fun criminal_A : A ;
-fun abdominal_A : A ;
-fun hominal_A : A ;
-fun nominal_A : A ;
-fun uninominal_A : A ;
-fun pronominal_A : A ;
-fun germinal_A : A ;
-fun terminal_A : A ;
-fun subterminal_A : A ;
-fun cacuminal_A : A ;
-fun spinal_A : A ;
-fun cerebrospinal_A : A ;
-fun carinal_A : A ;
-fun doctrinal_A : A ;
-fun basinal_A : A ;
-fun actinal_A : A ;
-fun abactinal_A : A ;
-fun retinal_A : A ;
-fun intestinal_A : A ;
-fun gastrointestinal_A : A ;
-fun matutinal_A : A ;
-fun inguinal_A : A ;
-fun autumnal_A : A ;
-fun antennal_A : A ;
-fun archidiaconal_A : A ;
-fun agonal_A : A ;
-fun diagonal_A : A ;
-fun tetragonal_A : A ;
-fun octagonal_A : A ;
-fun pentagonal_A : A ;
-fun hexagonal_A : A ;
-fun perigonal_A : A ;
-fun orthogonal_A : A ;
-fun polygonal_A : A ;
-fun autochthonal_A : A ;
-fun meridional_A : A ;
-fun regional_A : A ;
-fun septrional_A : A ;
-fun occasional_A : A ;
-fun divisional_A : A ;
-fun provisional_A : A ;
-fun ascensional_A : A ;
-fun dimensional_A : A ;
-fun 'three-dimensional_A' : A ;
-fun unidimensional_A : A ;
-fun multidimensional_A : A ;
-fun tensional_A : A ;
-fun intensional_A : A ;
-fun extensional_A : A ;
-fun accessional_A : A ;
-fun recessional_A : A ;
-fun processional_A : A ;
-fun professional_A : A ;
-fun nonprofessional_A : A ;
-fun unprofessional_A : A ;
-fun congressional_A : A ;
-fun obsessional_A : A ;
-fun delusional_A : A ;
-fun illusional_A : A ;
-fun implicational_A : A ;
-fun communicational_A : A ;
-fun vocational_A : A ;
-fun avocational_A : A ;
-fun educational_A : A ;
-fun coeducational_A : A ;
-fun gradational_A : A ;
-fun accommodational_A : A ;
-fun recreational_A : A ;
-fun nonrecreational_A : A ;
-fun congregational_A : A ;
-fun obligational_A : A ;
-fun navigational_A : A ;
-fun associational_A : A ;
-fun relational_A : A ;
-fun correlational_A : A ;
-fun translational_A : A ;
-fun nontranslational_A : A ;
-fun summational_A : A ;
-fun deformational_A : A ;
-fun informational_A : A ;
-fun national_A : A ;
-fun supranational_A : A ;
-fun denominational_A : A ;
-fun nondenominational_A : A ;
-fun undenominational_A : A ;
-fun interdenominational_A : A ;
-fun multinational_A : A ;
-fun international_A : A ;
-fun occupational_A : A ;
-fun rational_A : A ;
-fun vibrational_A : A ;
-fun generational_A : A ;
-fun operational_A : A ;
-fun nonoperational_A : A ;
-fun migrational_A : A ;
-fun inspirational_A : A ;
-fun nonrational_A : A ;
-fun irrational_A : A ;
-fun configurational_A : A ;
-fun maturational_A : A ;
-fun acculturational_A : A ;
-fun sensational_A : A ;
-fun unsensational_A : A ;
-fun conversational_A : A ;
-fun gravitational_A : A ;
-fun invitational_A : A ;
-fun presentational_A : A ;
-fun representational_A : A ;
-fun nonrepresentational_A : A ;
-fun confrontational_A : A ;
-fun connotational_A : A ;
-fun rotational_A : A ;
-fun adaptational_A : A ;
-fun gestational_A : A ;
-fun progestational_A : A ;
-fun mutational_A : A ;
-fun computational_A : A ;
-fun derivational_A : A ;
-fun motivational_A : A ;
-fun annexational_A : A ;
-fun organizational_A : A ;
-fun interactional_A : A ;
-fun fractional_A : A ;
-fun affectional_A : A ;
-fun inflectional_A : A ;
-fun directional_A : A ;
-fun bidirectional_A : A ;
-fun omnidirectional_A : A ;
-fun unidirectional_A : A ;
-fun correctional_A : A ;
-fun insurrectional_A : A ;
-fun sectional_A : A ;
-fun bisectional_A : A ;
-fun jurisdictional_A : A ;
-fun fictional_A : A ;
-fun nonfictional_A : A ;
-fun frictional_A : A ;
-fun functional_A : A ;
-fun nonfunctional_A : A ;
-fun unfunctional_A : A ;
-fun dysfunctional_A : A ;
-fun instructional_A : A ;
-fun constructional_A : A ;
-fun traditional_A : A ;
-fun nontraditional_A : A ;
-fun additional_A : A ;
-fun conditional_A : A ;
-fun unconditional_A : A ;
-fun volitional_A : A ;
-fun apparitional_A : A ;
-fun attritional_A : A ;
-fun nutritional_A : A ;
-fun transitional_A : A ;
-fun positional_A : A ;
-fun prepositional_A : A ;
-fun compositional_A : A ;
-fun decompositional_A : A ;
-fun appositional_A : A ;
-fun intentional_A : A ;
-fun unintentional_A : A ;
-fun attentional_A : A ;
-fun conventional_A : A ;
-fun unconventional_A : A ;
-fun motional_A : A ;
-fun emotional_A : A ;
-fun unemotional_A : A ;
-fun overemotional_A : A ;
-fun promotional_A : A ;
-fun notional_A : A ;
-fun devotional_A : A ;
-fun conceptional_A : A ;
-fun exceptional_A : A ;
-fun unexceptional_A : A ;
-fun optional_A : A ;
-fun proportional_A : A ;
-fun distributional_A : A ;
-fun institutional_A : A ;
-fun noninstitutional_A : A ;
-fun constitutional_A : A ;
-fun unconstitutional_A : A ;
-fun clonal_A : A ;
-fun monoclonal_A : A ;
-fun hormonal_A : A ;
-fun isochronal_A : A ;
-fun seasonal_A : A ;
-fun personal_A : A ;
-fun impersonal_A : A ;
-fun nonpersonal_A : A ;
-fun interpersonal_A : A ;
-fun tonal_A : A ;
-fun atonal_A : A ;
-fun cantonal_A : A ;
-fun polytonal_A : A ;
-fun axonal_A : A ;
-fun zonal_A : A ;
-fun azonal_A : A ;
-fun bizonal_A : A ;
-fun carnal_A : A ;
-fun infernal_A : A ;
-fun supernal_A : A ;
-fun maternal_A : A ;
-fun paternal_A : A ;
-fun fraternal_A : A ;
-fun eternal_A : A ;
-fun internal_A : A ;
-fun sternal_A : A ;
-fun asternal_A : A ;
-fun external_A : A ;
-fun vernal_A : A ;
-fun diurnal_A : A ;
-fun nocturnal_A : A ;
-fun avifaunal_A : A ;
-fun communal_A : A ;
-fun charcoal_A : A ;
-fun protozoal_A : A ;
-fun papal_A : A ;
-fun municipal_A : A ;
-fun principal_A : A ;
-fun scopal_A : A ;
-fun episcopal_A : A ;
-fun archiepiscopal_A : A ;
-fun carpal_A : A ;
-fun metacarpal_A : A ;
-fun epicarpal_A : A ;
-fun pupal_A : A ;
-fun prepupal_A : A ;
-fun archetypal_A : A ;
-fun cerebral_A : A ;
-fun intracerebral_A : A ;
-fun vertebral_A : A ;
-fun intervertebral_A : A ;
-fun penumbral_A : A ;
-fun ambulacral_A : A ;
-fun sacral_A : A ;
-fun lumbosacral_A : A ;
-fun icosahedral_A : A ;
-fun rhombohedral_A : A ;
-fun cathedral_A : A ;
-fun polyhedral_A : A ;
-fun liberal_A : A ;
-fun illiberal_A : A ;
-fun neoliberal_A : A ;
-fun cheliceral_A : A ;
-fun visceral_A : A ;
-fun federal_A : A ;
-fun feral_A : A ;
-fun peripheral_A : A ;
-fun antheral_A : A ;
-fun bicameral_A : A ;
-fun unicameral_A : A ;
-fun ephemeral_A : A ;
-fun scapulohumeral_A : A ;
-fun numeral_A : A ;
-fun general_A : A ;
-fun mineral_A : A ;
-fun puerperal_A : A ;
-fun lateral_A : A ;
-fun contralateral_A : A ;
-fun bilateral_A : A ;
-fun unilateral_A : A ;
-fun quadrilateral_A : A ;
-fun trilateral_A : A ;
-fun ipsilateral_A : A ;
-fun multilateral_A : A ;
-fun equilateral_A : A ;
-fun collateral_A : A ;
-fun literal_A : A ;
-fun parenteral_A : A ;
-fun apteral_A : A ;
-fun peripteral_A : A ;
-fun monopteral_A : A ;
-fun integral_A : A ;
-fun sepulchral_A : A ;
-fun hypaethral_A : A ;
-fun urethral_A : A ;
-fun spiral_A : A ;
-fun viral_A : A ;
-fun antiviral_A : A ;
-fun oral_A : A ;
-fun aboral_A : A ;
-fun coral_A : A ;
-fun choral_A : A ;
-fun behavioral_A : A ;
-fun floral_A : A ;
-fun moral_A : A ;
-fun amoral_A : A ;
-fun femoral_A : A ;
-fun immoral_A : A ;
-fun nonmoral_A : A ;
-fun humoral_A : A ;
-fun temporal_A : A ;
-fun spatiotemporal_A : A ;
-fun blastoporal_A : A ;
-fun corporal_A : A ;
-fun auroral_A : A ;
-fun electoral_A : A ;
-fun pectoral_A : A ;
-fun doctoral_A : A ;
-fun postdoctoral_A : A ;
-fun clitoral_A : A ;
-fun pastoral_A : A ;
-fun littoral_A : A ;
-fun sublittoral_A : A ;
-fun mayoral_A : A ;
-fun spectral_A : A ;
-fun diametral_A : A ;
-fun retral_A : A ;
-fun arbitral_A : A ;
-fun mitral_A : A ;
-fun central_A : A ;
-fun ventral_A : A ;
-fun dorsoventral_A : A ;
-fun astral_A : A ;
-fun cadastral_A : A ;
-fun ancestral_A : A ;
-fun orchestral_A : A ;
-fun semestral_A : A ;
-fun fenestral_A : A ;
-fun campestral_A : A ;
-fun rupestral_A : A ;
-fun sinistral_A : A ;
-fun austral_A : A ;
-fun neutral_A : A ;
-fun dextral_A : A ;
-fun aural_A : A ;
-fun binaural_A : A ;
-fun monaural_A : A ;
-fun dural_A : A ;
-fun subdural_A : A ;
-fun procedural_A : A ;
-fun epidural_A : A ;
-fun pleural_A : A ;
-fun neural_A : A ;
-fun sensorineural_A : A ;
-fun figural_A : A ;
-fun inaugural_A : A ;
-fun exaugural_A : A ;
-fun jural_A : A ;
-fun plural_A : A ;
-fun mural_A : A ;
-fun intramural_A : A ;
-fun extramural_A : A ;
-fun intermural_A : A ;
-fun rural_A : A ;
-fun crural_A : A ;
-fun caesural_A : A ;
-fun mensural_A : A ;
-fun natural_A : A ;
-fun connatural_A : A ;
-fun nonnatural_A : A ;
-fun unnatural_A : A ;
-fun supernatural_A : A ;
-fun preternatural_A : A ;
-fun prefectural_A : A ;
-fun conjectural_A : A ;
-fun architectural_A : A ;
-fun cytoarchitectural_A : A ;
-fun structural_A : A ;
-fun nonstructural_A : A ;
-fun cultural_A : A ;
-fun apicultural_A : A ;
-fun sericultural_A : A ;
-fun agricultural_A : A ;
-fun floricultural_A : A ;
-fun multicultural_A : A ;
-fun horticultural_A : A ;
-fun aquicultural_A : A ;
-fun sociocultural_A : A ;
-fun transcultural_A : A ;
-fun scriptural_A : A ;
-fun sculptural_A : A ;
-fun nurtural_A : A ;
-fun gestural_A : A ;
-fun postural_A : A ;
-fun guttural_A : A ;
-fun gyral_A : A ;
-fun basal_A : A ;
-fun abomasal_A : A ;
-fun nasal_A : A ;
-fun paranasal_A : A ;
-fun perinasal_A : A ;
-fun phrasal_A : A ;
-fun mensal_A : A ;
-fun commensal_A : A ;
-fun mucosal_A : A ;
-fun tarsal_A : A ;
-fun metatarsal_A : A ;
-fun universal_A : A ;
-fun dorsal_A : A ;
-fun bursal_A : A ;
-fun palatoglossal_A : A ;
-fun colossal_A : A ;
-fun abyssal_A : A ;
-fun causal_A : A ;
-fun clausal_A : A ;
-fun menopausal_A : A ;
-fun premenopausal_A : A ;
-fun postmenopausal_A : A ;
-fun spousal_A : A ;
-fun fatal_A : A ;
-fun nonfatal_A : A ;
-fun palatal_A : A ;
-fun stomatal_A : A ;
-fun astomatal_A : A ;
-fun natal_A : A ;
-fun prenatal_A : A ;
-fun antenatal_A : A ;
-fun perinatal_A : A ;
-fun neonatal_A : A ;
-fun postnatal_A : A ;
-fun dialectal_A : A ;
-fun rectal_A : A ;
-fun colorectal_A : A ;
-fun anorectal_A : A ;
-fun ictal_A : A ;
-fun postictal_A : A ;
-fun octal_A : A ;
-fun chaetal_A : A ;
-fun actinomycetal_A : A ;
-fun fetal_A : A ;
-fun vegetal_A : A ;
-fun parietal_A : A ;
-fun skeletal_A : A ;
-fun musculoskeletal_A : A ;
-fun bimetal_A : A ;
-fun planetal_A : A ;
-fun foetal_A : A ;
-fun centripetal_A : A ;
-fun basipetal_A : A ;
-fun acropetal_A : A ;
-fun orbital_A : A ;
-fun supraorbital_A : A ;
-fun suborbital_A : A ;
-fun cubital_A : A ;
-fun antecubital_A : A ;
-fun digital_A : A ;
-fun genital_A : A ;
-fun congenital_A : A ;
-fun urogenital_A : A ;
-fun coital_A : A ;
-fun capital_A : A ;
-fun occipital_A : A ;
-fun bicipital_A : A ;
-fun marital_A : A ;
-fun extramarital_A : A ;
-fun premarital_A : A ;
-fun vital_A : A ;
-fun plantal_A : A ;
-fun consonantal_A : A ;
-fun quantal_A : A ;
-fun placental_A : A ;
-fun aplacental_A : A ;
-fun transplacental_A : A ;
-fun dental_A : A ;
-fun edental_A : A ;
-fun accidental_A : A ;
-fun occidental_A : A ;
-fun incidental_A : A ;
-fun coincidental_A : A ;
-fun transcendental_A : A ;
-fun maxillodental_A : A ;
-fun oriental_A : A ;
-fun mental_A : A ;
-fun fundamental_A : A ;
-fun firmamental_A : A ;
-fun ornamental_A : A ;
-fun sacramental_A : A ;
-fun temperamental_A : A ;
-fun elemental_A : A ;
-fun implemental_A : A ;
-fun complemental_A : A ;
-fun incremental_A : A ;
-fun fragmental_A : A ;
-fun judgmental_A : A ;
-fun nonjudgmental_A : A ;
-fun segmental_A : A ;
-fun suprasegmental_A : A ;
-fun regimental_A : A ;
-fun experimental_A : A ;
-fun detrimental_A : A ;
-fun sentimental_A : A ;
-fun environmental_A : A ;
-fun governmental_A : A ;
-fun developmental_A : A ;
-fun departmental_A : A ;
-fun intradepartmental_A : A ;
-fun interdepartmental_A : A ;
-fun compartmental_A : A ;
-fun vestmental_A : A ;
-fun monumental_A : A ;
-fun instrumental_A : A ;
-fun continental_A : A ;
-fun intercontinental_A : A ;
-fun transcontinental_A : A ;
-fun rental_A : A ;
-fun parental_A : A ;
-fun frontal_A : A ;
-fun prefrontal_A : A ;
-fun horizontal_A : A ;
-fun contrapuntal_A : A ;
-fun anecdotal_A : A ;
-fun antidotal_A : A ;
-fun sacerdotal_A : A ;
-fun scrotal_A : A ;
-fun total_A : A ;
-fun teetotal_A : A ;
-fun pivotal_A : A ;
-fun septal_A : A ;
-fun pubertal_A : A ;
-fun aortal_A : A ;
-fun mortal_A : A ;
-fun immortal_A : A ;
-fun curtal_A : A ;
-fun coastal_A : A ;
-fun festal_A : A ;
-fun vestal_A : A ;
-fun distal_A : A ;
-fun costal_A : A ;
-fun pentecostal_A : A ;
-fun intercostal_A : A ;
-fun postal_A : A ;
-fun crustal_A : A ;
-fun sagittal_A : A ;
-fun noncommittal_A : A ;
-fun glottal_A : A ;
-fun brutal_A : A ;
-fun dual_A : A ;
-fun gradual_A : A ;
-fun residual_A : A ;
-fun individual_A : A ;
-fun lingual_A : A ;
-fun 'multi-lingual_A' : A ;
-fun 'audio-lingual_A' : A ;
-fun sublingual_A : A ;
-fun bilingual_A : A ;
-fun trilingual_A : A ;
-fun multilingual_A : A ;
-fun monolingual_A : A ;
-fun ungual_A : A ;
-fun manual_A : A ;
-fun continual_A : A ;
-fun annual_A : A ;
-fun semiannual_A : A ;
-fun equal_A : A ;
-fun unequal_A : A ;
-fun coequal_A : A ;
-fun menstrual_A : A ;
-fun premenstrual_A : A ;
-fun casual_A : A ;
-fun visual_A : A ;
-fun nonvisual_A : A ;
-fun audiovisual_A : A ;
-fun sensual_A : A ;
-fun consensual_A : A ;
-fun usual_A : A ;
-fun unusual_A : A ;
-fun actual_A : A ;
-fun factual_A : A ;
-fun artifactual_A : A ;
-fun counterfactual_A : A ;
-fun contractual_A : A ;
-fun tactual_A : A ;
-fun effectual_A : A ;
-fun ineffectual_A : A ;
-fun intellectual_A : A ;
-fun nonintellectual_A : A ;
-fun aspectual_A : A ;
-fun punctual_A : A ;
-fun unpunctual_A : A ;
-fun perpetual_A : A ;
-fun habitual_A : A ;
-fun ritual_A : A ;
-fun spiritual_A : A ;
-fun accentual_A : A ;
-fun eventual_A : A ;
-fun conceptual_A : A ;
-fun perceptual_A : A ;
-fun virtual_A : A ;
-fun mutual_A : A ;
-fun textual_A : A ;
-fun contextual_A : A ;
-fun sexual_A : A ;
-fun asexual_A : A ;
-fun bisexual_A : A ;
-fun unisexual_A : A ;
-fun psychosexual_A : A ;
-fun homosexual_A : A ;
-fun heterosexual_A : A ;
-fun intersexual_A : A ;
-fun naval_A : A ;
-fun mediaeval_A : A ;
-fun primaeval_A : A ;
-fun medieval_A : A ;
-fun primeval_A : A ;
-fun coeval_A : A ;
-fun gingival_A : A ;
-fun archival_A : A ;
-fun adjectival_A : A ;
-fun conjunctival_A : A ;
-fun infinitival_A : A ;
-fun substantival_A : A ;
-fun aestival_A : A ;
-fun oval_A : A ;
-fun larval_A : A ;
-fun adnexal_A : A ;
-fun affixal_A : A ;
-fun bathyal_A : A ;
-fun disloyal_A : A ;
-fun royal_A : A ;
-fun awheel_A : A ;
-fun genteel_A : A ;
-fun 'shabby-genteel_A' : A ;
-fun parallel_A : A ;
-fun antiparallel_A : A ;
-fun nonparallel_A : A ;
-fun unparallel_A : A ;
-fun caramel_A : A ;
-fun 'anti-personnel_A' : A ;
-fun antipersonnel_A : A ;
-fun charnel_A : A ;
-fun mongrel_A : A ;
-fun sorrel_A : A ;
-fun pastel_A : A ;
-fun level_A : A ;
-fun 'high-level_A' : A ;
-fun multilevel_A : A ;
-fun novel_A : A ;
-fun hazel_A : A ;
-fun bobtail_A : A ;
-fun nonpareil_A : A ;
-fun tamil_A : A ;
-fun fossil_A : A ;
-fun tranquil_A : A ;
-fun evil_A : A ;
-fun daredevil_A : A ;
-fun civil_A : A ;
-fun uncivil_A : A ;
-fun screwball_A : A ;
-fun overall_A : A ;
-fun fell_A : A ;
-fun well_A : A ;
-fun unwell_A : A ;
-fun swell_A : A ;
-fun ill_A : A ;
-fun duckbill_A : A ;
-fun chill_A : A ;
-fun uphill_A : A ;
-fun 'run-of-the-mill_A' : A ;
-fun freewill_A : A ;
-fun droll_A : A ;
-fun 'chock-full_A' : A ;
-fun 'cram-full_A' : A ;
-fun brimfull_A : A ;
-fun overfull_A : A ;
-fun null_A : A ;
-fun mongol_A : A ;
-fun uncool_A : A ;
-fun 'dyed-in-the-wool_A' : A ;
-fun dreadful_A : A ;
-fun heedful_A : A ;
-fun needful_A : A ;
-fun mindful_A : A ;
-fun unmindful_A : A ;
-fun regardful_A : A ;
-fun rewardful_A : A ;
-fun peaceful_A : A ;
-fun unpeaceful_A : A ;
-fun graceful_A : A ;
-fun ungraceful_A : A ;
-fun disgraceful_A : A ;
-fun forceful_A : A ;
-fun resourceful_A : A ;
-fun gleeful_A : A ;
-fun changeful_A : A ;
-fun vengeful_A : A ;
-fun revengeful_A : A ;
-fun wakeful_A : A ;
-fun baleful_A : A ;
-fun guileful_A : A ;
-fun doleful_A : A ;
-fun battleful_A : A ;
-fun shameful_A : A ;
-fun baneful_A : A ;
-fun tuneful_A : A ;
-fun woeful_A : A ;
-fun hopeful_A : A ;
-fun careful_A : A ;
-fun overcareful_A : A ;
-fun ireful_A : A ;
-fun direful_A : A ;
-fun reposeful_A : A ;
-fun purposeful_A : A ;
-fun remorseful_A : A ;
-fun useful_A : A ;
-fun fateful_A : A ;
-fun hateful_A : A ;
-fun grateful_A : A ;
-fun ungrateful_A : A ;
-fun spiteful_A : A ;
-fun despiteful_A : A ;
-fun tasteful_A : A ;
-fun distasteful_A : A ;
-fun wasteful_A : A ;
-fun rueful_A : A ;
-fun meaningful_A : A ;
-fun wrongful_A : A ;
-fun reproachful_A : A ;
-fun watchful_A : A ;
-fun bashful_A : A ;
-fun wishful_A : A ;
-fun blushful_A : A ;
-fun pushful_A : A ;
-fun wrathful_A : A ;
-fun faithful_A : A ;
-fun unfaithful_A : A ;
-fun healthful_A : A ;
-fun unhealthful_A : A ;
-fun slothful_A : A ;
-fun mirthful_A : A ;
-fun youthful_A : A ;
-fun truthful_A : A ;
-fun untruthful_A : A ;
-fun fanciful_A : A ;
-fun merciful_A : A ;
-fun unmerciful_A : A ;
-fun pitiful_A : A ;
-fun plentiful_A : A ;
-fun bountiful_A : A ;
-fun beautiful_A : A ;
-fun dutiful_A : A ;
-fun thankful_A : A ;
-fun skilful_A : A ;
-fun wilful_A : A ;
-fun thrillful_A : A ;
-fun willful_A : A ;
-fun soulful_A : A ;
-fun brimful_A : A ;
-fun harmful_A : A ;
-fun manful_A : A ;
-fun disdainful_A : A ;
-fun gainful_A : A ;
-fun painful_A : A ;
-fun sinful_A : A ;
-fun scornful_A : A ;
-fun mournful_A : A ;
-fun worshipful_A : A ;
-fun helpful_A : A ;
-fun unhelpful_A : A ;
-fun fearful_A : A ;
-fun tearful_A : A ;
-fun wonderful_A : A ;
-fun cheerful_A : A ;
-fun masterful_A : A ;
-fun powerful_A : A ;
-fun prayerful_A : A ;
-fun colorful_A : A ;
-fun flavorful_A : A ;
-fun colourful_A : A ;
-fun successful_A : A ;
-fun unsuccessful_A : A ;
-fun distressful_A : A ;
-fun blissful_A : A ;
-fun doubtful_A : A ;
-fun tactful_A : A ;
-fun neglectful_A : A ;
-fun respectful_A : A ;
-fun disrespectful_A : A ;
-fun forgetful_A : A ;
-fun fretful_A : A ;
-fun regretful_A : A ;
-fun unregretful_A : A ;
-fun delightful_A : A ;
-fun rightful_A : A ;
-fun frightful_A : A ;
-fun insightful_A : A ;
-fun thoughtful_A : A ;
-fun forethoughtful_A : A ;
-fun unforethoughtful_A : A ;
-fun deceitful_A : A ;
-fun fitful_A : A ;
-fun fruitful_A : A ;
-fun unfruitful_A : A ;
-fun resentful_A : A ;
-fun unresentful_A : A ;
-fun eventful_A : A ;
-fun uneventful_A : A ;
-fun artful_A : A ;
-fun effortful_A : A ;
-fun hurtful_A : A ;
-fun boastful_A : A ;
-fun restful_A : A ;
-fun zestful_A : A ;
-fun wistful_A : A ;
-fun lustful_A : A ;
-fun trustful_A : A ;
-fun distrustful_A : A ;
-fun mistrustful_A : A ;
-fun awful_A : A ;
-fun lawful_A : A ;
-fun unlawful_A : A ;
-fun sorrowful_A : A ;
-fun playful_A : A ;
-fun unplayful_A : A ;
-fun joyful_A : A ;
-fun carbonyl_A : A ;
-fun zygodactyl_A : A ;
-fun artiodactyl_A : A ;
-fun heterodactyl_A : A ;
-fun polydactyl_A : A ;
-fun carboxyl_A : A ;
-fun glial_A : A ;
-fun loyal_A : A ;
-fun cruel_A : A ;
-fun frail_A : A ;
-fun all_A : A ;
-fun small_A : A ;
-fun tall_A : A ;
-fun shrill_A : A ;
-fun still_A : A ;
-fun dull_A : A ;
-fun full_A : A ;
-fun cool_A : A ;
-fun foul_A : A ;
-fun goddam_A : A ;
-fun agleam_A : A ;
-fun downstream_A : A ;
-fun upstream_A : A ;
-fun sham_A : A ;
-fun bantam_A : A ;
-fun moslem_A : A ;
-fun 'post-mortem_A' : A ;
-fun antemortem_A : A ;
-fun postmortem_A : A ;
-fun interim_A : A ;
-fun verbatim_A : A ;
-fun random_A : A ;
-fun nonrandom_A : A ;
-fun abloom_A : A ;
-fun broadloom_A : A ;
-fun lissom_A : A ;
-fun phantom_A : A ;
-fun bottom_A : A ;
-fun flatbottom_A : A ;
-fun buxom_A : A ;
-fun 'round-arm_A' : A ;
-fun 'strong-arm_A' : A ;
-fun sidearm_A : A ;
-fun underarm_A : A ;
-fun overarm_A : A ;
-fun lukewarm_A : A ;
-fun 'long-term_A' : A ;
-fun 'short-term_A' : A ;
-fun infirm_A : A ;
-fun unfirm_A : A ;
-fun biform_A : A ;
-fun disciform_A : A ;
-fun cruciform_A : A ;
-fun acneiform_A : A ;
-fun cuneiform_A : A ;
-fun umbelliform_A : A ;
-fun varicelliform_A : A ;
-fun morbilliform_A : A ;
-fun papilliform_A : A ;
-fun phylliform_A : A ;
-fun cumuliform_A : A ;
-fun botuliform_A : A ;
-fun vermiform_A : A ;
-fun reniform_A : A ;
-fun columniform_A : A ;
-fun uniform_A : A ;
-fun variform_A : A ;
-fun dolabriform_A : A ;
-fun salamandriform_A : A ;
-fun aeriform_A : A ;
-fun auriform_A : A ;
-fun ensiform_A : A ;
-fun bursiform_A : A ;
-fun fusiform_A : A ;
-fun apoplectiform_A : A ;
-fun multiform_A : A ;
-fun salverform_A : A ;
-fun capitalism_A : A ;
-fun bum_A : A ;
-fun medium_A : A ;
-fun premium_A : A ;
-fun antebellum_A : A ;
-fun mum_A : A ;
-fun minimum_A : A ;
-fun optimum_A : A ;
-fun maximum_A : A ;
-fun 'harum-scarum_A' : A ;
-fun humdrum_A : A ;
-fun variorum_A : A ;
-fun dim_A : A ;
-fun skim_A : A ;
-fun slim_A : A ;
-fun grim_A : A ;
-fun prim_A : A ;
-fun trim_A : A ;
-fun calm_A : A ;
-fun warm_A : A ;
-fun firm_A : A ;
-fun glum_A : A ;
-fun damn_A : A ;
-fun urban_A : A ;
-fun suburban_A : A ;
-fun cuban_A : A ;
-fun moroccan_A : A ;
-fun jamaican_A : A ;
-fun mozambican_A : A ;
-fun republican_A : A ;
-fun anglican_A : A ;
-fun basilican_A : A ;
-fun dominican_A : A ;
-fun copernican_A : A ;
-fun 'costa rican_A' : A ;
-fun American_A : A ;
-fun African_A : A ;
-fun mexican_A : A ;
-fun madagascan_A : A ;
-fun franciscan_A : A ;
-fun muhammadan_A : A ;
-fun ugandan_A : A ;
-fun rwandan_A : A ;
-fun bermudan_A : A ;
-fun jacobean_A : A ;
-fun cetacean_A : A ;
-fun caducean_A : A ;
-fun euclidean_A : A ;
-fun apogean_A : A ;
-fun archean_A : A ;
-fun kampuchean_A : A ;
-fun unclean_A : A ;
-fun chilean_A : A ;
-fun herculean_A : A ;
-fun cerulean_A : A ;
-fun subterranean_A : A ;
-fun mediterranean_A : A ;
-fun guinean_A : A ;
-fun cyclopean_A : A ;
-fun European_A : A ;
-fun 'indo-european_A' : A ;
-fun cesarean_A : A ;
-fun zairean_A : A ;
-fun salvadorean_A : A ;
-fun terpsichorean_A : A ;
-fun korean_A : A ;
-fun marmorean_A : A ;
-fun Singaporean_A : A ;
-fun eritrean_A : A ;
-fun epicurean_A : A ;
-fun empyrean_A : A ;
-fun protean_A : A ;
-fun Zimbabwean_A : A ;
-fun pagan_A : A ;
-fun tongan_A : A ;
-fun sabahan_A : A ;
-fun Afghan_A : A ;
-fun chaetognathan_A : A ;
-fun elizabethan_A : A ;
-fun ghanaian_A : A ;
-fun fabian_A : A ;
-fun Arabian_A : A ;
-fun 'saudi arabian_A' : A ;
-fun Namibian_A : A ;
-fun gambian_A : A ;
-fun zambian_A : A ;
-fun colombian_A : A ;
-fun lesbian_A : A ;
-fun grecian_A : A ;
-fun patrician_A : A ;
-fun confucian_A : A ;
-fun barbadian_A : A ;
-fun arcadian_A : A ;
-fun circadian_A : A ;
-fun trinidadian_A : A ;
-fun chadian_A : A ;
-fun Canadian_A : A ;
-fun grenadian_A : A ;
-fun median_A : A ;
-fun euclidian_A : A ;
-fun meridian_A : A ;
-fun antemeridian_A : A ;
-fun postmeridian_A : A ;
-fun quotidian_A : A ;
-fun Indian_A : A ;
-fun 'anglo-indian_A' : A ;
-fun burundian_A : A ;
-fun cambodian_A : A ;
-fun edwardian_A : A ;
-fun gordian_A : A ;
-fun freudian_A : A ;
-fun plebeian_A : A ;
-fun bruneian_A : A ;
-fun norwegian_A : A ;
-fun glaswegian_A : A ;
-fun belgian_A : A ;
-fun georgian_A : A ;
-fun callipygian_A : A ;
-fun stygian_A : A ;
-fun eustachian_A : A ;
-fun corinthian_A : A ;
-fun parthian_A : A ;
-fun fijian_A : A ;
-fun Czechoslovakian_A : A ;
-fun sarawakian_A : A ;
-fun sesquipedalian_A : A ;
-fun malian_A : A ;
-fun mammalian_A : A ;
-fun Somalian_A : A ;
-fun bacchanalian_A : A ;
-fun episcopalian_A : A ;
-fun australian_A : A ;
-fun Italian_A : A ;
-fun liverpudlian_A : A ;
-fun mendelian_A : A ;
-fun mephistophelian_A : A ;
-fun caecilian_A : A ;
-fun sicilian_A : A ;
-fun reptilian_A : A ;
-fun civilian_A : A ;
-fun Brazilian_A : A ;
-fun machiavellian_A : A ;
-fun mongolian_A : A ;
-fun julian_A : A ;
-fun bahamian_A : A ;
-fun bohemian_A : A ;
-fun isthmian_A : A ;
-fun simian_A : A ;
-fun antinomian_A : A ;
-fun Albanian_A : A ;
-fun Jordanian_A : A ;
-fun panamanian_A : A ;
-fun Romanian_A : A ;
-fun Iranian_A : A ;
-fun mauritanian_A : A ;
-fun ruritanian_A : A ;
-fun tanzanian_A : A ;
-fun athenian_A : A ;
-fun slovenian_A : A ;
-fun hominian_A : A ;
-fun argentinian_A : A ;
-fun palestinian_A : A ;
-fun draconian_A : A ;
-fun Macedonian_A : A ;
-fun eonian_A : A ;
-fun 'sierra leonian_A' : A ;
-fun tobagonian_A : A ;
-fun chthonian_A : A ;
-fun chelonian_A : A ;
-fun cameroonian_A : A ;
-fun newtonian_A : A ;
-fun oxonian_A : A ;
-fun californian_A : A ;
-fun mancunian_A : A ;
-fun apian_A : A ;
-fun aesculapian_A : A ;
-fun callithumpian_A : A ;
-fun olympian_A : A ;
-fun ethiopian_A : A ;
-fun fallopian_A : A ;
-fun dystopian_A : A ;
-fun utopian_A : A ;
-fun thespian_A : A ;
-fun barbarian_A : A ;
-fun abecedarian_A : A ;
-fun lapidarian_A : A ;
-fun shakespearian_A : A ;
-fun Bulgarian_A : A ;
-fun Hungarian_A : A ;
-fun apiarian_A : A ;
-fun nonagenarian_A : A ;
-fun sexagenarian_A : A ;
-fun octogenarian_A : A ;
-fun millenarian_A : A ;
-fun centenarian_A : A ;
-fun valetudinarian_A : A ;
-fun latitudinarian_A : A ;
-fun predestinarian_A : A ;
-fun riparian_A : A ;
-fun agrarian_A : A ;
-fun caesarian_A : A ;
-fun prelapsarian_A : A ;
-fun sabbatarian_A : A ;
-fun sectarian_A : A ;
-fun nonsectarian_A : A ;
-fun proletarian_A : A ;
-fun egalitarian_A : A ;
-fun totalitarian_A : A ;
-fun utilitarian_A : A ;
-fun humanitarian_A : A ;
-fun unitarian_A : A ;
-fun authoritarian_A : A ;
-fun antiauthoritarian_A : A ;
-fun gibraltarian_A : A ;
-fun antiquarian_A : A ;
-fun ovarian_A : A ;
-fun liberian_A : A ;
-fun siberian_A : A ;
-fun nigerian_A : A ;
-fun algerian_A : A ;
-fun eutherian_A : A ;
-fun presbyterian_A : A ;
-fun ecuadorian_A : A ;
-fun gregorian_A : A ;
-fun victorian_A : A ;
-fun praetorian_A : A ;
-fun stentorian_A : A ;
-fun cyprian_A : A ;
-fun lancastrian_A : A ;
-fun pedestrian_A : A ;
-fun equestrian_A : A ;
-fun austrian_A : A ;
-fun saurian_A : A ;
-fun archosaurian_A : A ;
-fun tellurian_A : A ;
-fun Syrian_A : A ;
-fun Asian_A : A ;
-fun 'Afro-Asian_A' : A ;
-fun caucasian_A : A ;
-fun eurasian_A : A ;
-fun indonesian_A : A ;
-fun artesian_A : A ;
-fun subartesian_A : A ;
-fun rabelaisian_A : A ;
-fun tunisian_A : A ;
-fun parisian_A : A ;
-fun Persian_A : A ;
-fun Russian_A : A ;
-fun Prussian_A : A ;
-fun malthusian_A : A ;
-fun malaysian_A : A ;
-fun elysian_A : A ;
-fun montserratian_A : A ;
-fun venetian_A : A ;
-fun haitian_A : A ;
-fun tahitian_A : A ;
-fun mauritian_A : A ;
-fun laotian_A : A ;
-fun egyptian_A : A ;
-fun martian_A : A ;
-fun gilbertian_A : A ;
-fun tertian_A : A ;
-fun christian_A : A ;
-fun unchristian_A : A ;
-fun djiboutian_A : A ;
-fun lilliputian_A : A ;
-fun avian_A : A ;
-fun shavian_A : A ;
-fun subclavian_A : A ;
-fun yugoslavian_A : A ;
-fun Scandinavian_A : A ;
-fun bolivian_A : A ;
-fun diluvian_A : A ;
-fun antediluvian_A : A ;
-fun postdiluvian_A : A ;
-fun peruvian_A : A ;
-fun malawian_A : A ;
-fun hertzian_A : A ;
-fun trojan_A : A ;
-fun 'sri lankan_A' : A ;
-fun guatemalan_A : A ;
-fun catalan_A : A ;
-fun venezuelan_A : A ;
-fun avellan_A : A ;
-fun anguillan_A : A ;
-fun angolan_A : A ;
-fun freshman_A : A ;
-fun roman_A : A ;
-fun German_A : A ;
-fun norman_A : A ;
-fun human_A : A ;
-fun infrahuman_A : A ;
-fun subhuman_A : A ;
-fun inhuman_A : A ;
-fun nonhuman_A : A ;
-fun superhuman_A : A ;
-fun samoan_A : A ;
-fun roan_A : A ;
-fun epizoan_A : A ;
-fun entozoan_A : A ;
-fun deadpan_A : A ;
-fun lutheran_A : A ;
-fun moneran_A : A ;
-fun isopteran_A : A ;
-fun dictyopteran_A : A ;
-fun andorran_A : A ;
-fun sumatran_A : A ;
-fun honduran_A : A ;
-fun anuran_A : A ;
-fun diocesan_A : A ;
-fun archdiocesan_A : A ;
-fun partisan_A : A ;
-fun bipartisan_A : A ;
-fun nonpartisan_A : A ;
-fun tan_A : A ;
-fun insectan_A : A ;
-fun Tibetan_A : A ;
-fun neapolitan_A : A ;
-fun cosmopolitan_A : A ;
-fun metropolitan_A : A ;
-fun puritan_A : A ;
-fun spartan_A : A ;
-fun quartan_A : A ;
-fun augustan_A : A ;
-fun nicaraguan_A : A ;
-fun antiguan_A : A ;
-fun papuan_A : A ;
-fun nauruan_A : A ;
-fun gargantuan_A : A ;
-fun silvan_A : A ;
-fun sylvan_A : A ;
-fun texan_A : A ;
-fun malayan_A : A ;
-fun paraguayan_A : A ;
-fun uruguayan_A : A ;
-fun libyan_A : A ;
-fun wesleyan_A : A ;
-fun kenyan_A : A ;
-fun aryan_A : A ;
-fun leaden_A : A ;
-fun laden_A : A ;
-fun 'heavy-laden_A' : A ;
-fun careladen_A : A ;
-fun overladen_A : A ;
-fun unbidden_A : A ;
-fun 'hag-ridden_A' : A ;
-fun 'priest-ridden_A' : A ;
-fun bedridden_A : A ;
-fun downtrodden_A : A ;
-fun sodden_A : A ;
-fun sudden_A : A ;
-fun maiden_A : A ;
-fun olden_A : A ;
-fun golden_A : A ;
-fun beholden_A : A ;
-fun bounden_A : A ;
-fun wooden_A : A ;
-fun 'pea-green_A' : A ;
-fun 'sea-green_A' : A ;
-fun 'sage-green_A' : A ;
-fun 'bottle-green_A' : A ;
-fun evergreen_A : A ;
-fun unforeseen_A : A ;
-fun unseen_A : A ;
-fun lateen_A : A ;
-fun preteen_A : A ;
-fun umpteen_A : A ;
-fun beechen_A : A ;
-fun ashen_A : A ;
-fun heathen_A : A ;
-fun earthen_A : A ;
-fun alien_A : A ;
-fun nigerien_A : A ;
-fun oaken_A : A ;
-fun godforsaken_A : A ;
-fun mistaken_A : A ;
-fun chicken_A : A ;
-fun stricken_A : A ;
-fun 'panic-stricken_A' : A ;
-fun 'awe-stricken_A' : A ;
-fun 'terror-stricken_A' : A ;
-fun 'horror-stricken_A' : A ;
-fun 'poverty-stricken_A' : A ;
-fun silken_A : A ;
-fun drunken_A : A ;
-fun 'free-spoken_A' : A ;
-fun 'rough-spoken_A' : A ;
-fun 'smooth-spoken_A' : A ;
-fun 'well-spoken_A' : A ;
-fun 'foul-spoken_A' : A ;
-fun 'plain-spoken_A' : A ;
-fun 'soft-spoken_A' : A ;
-fun plainspoken_A : A ;
-fun unspoken_A : A ;
-fun outspoken_A : A ;
-fun housebroken_A : A ;
-fun unbroken_A : A ;
-fun heartbroken_A : A ;
-fun chapfallen_A : A ;
-fun crestfallen_A : A ;
-fun woollen_A : A ;
-fun sullen_A : A ;
-fun woolen_A : A ;
-fun misshapen_A : A ;
-fun hempen_A : A ;
-fun open_A : A ;
-fun unopen_A : A ;
-fun barren_A : A ;
-fun 'moth-eaten_A' : A ;
-fun 'worm-eaten_A' : A ;
-fun beaten_A : A ;
-fun 'storm-beaten_A' : A ;
-fun 'weather-beaten_A' : A ;
-fun unbeaten_A : A ;
-fun wheaten_A : A ;
-fun uneaten_A : A ;
-fun oaten_A : A ;
-fun boughten_A : A ;
-fun molten_A : A ;
-fun lenten_A : A ;
-fun 'flea-bitten_A' : A ;
-fun 'hard-bitten_A' : A ;
-fun frostbitten_A : A ;
-fun 'conscience-smitten_A' : A ;
-fun handwritten_A : A ;
-fun typewritten_A : A ;
-fun unwritten_A : A ;
-fun 'ill-gotten_A' : A ;
-fun misbegotten_A : A ;
-fun rotten_A : A ;
-fun shaven_A : A ;
-fun 'well-shaven_A' : A ;
-fun 'clean-shaven_A' : A ;
-fun unshaven_A : A ;
-fun craven_A : A ;
-fun graven_A : A ;
-fun even_A : A ;
-fun uneven_A : A ;
-fun 'owner-driven_A' : A ;
-fun cloven_A : A ;
-fun unproven_A : A ;
-fun woven_A : A ;
-fun unwoven_A : A ;
-fun flaxen_A : A ;
-fun waxen_A : A ;
-fun brazen_A : A ;
-fun unfrozen_A : A ;
-fun condign_A : A ;
-fun sovereign_A : A ;
-fun foreign_A : A ;
-fun malign_A : A ;
-fun benign_A : A ;
-fun 'lying-in_A' : A ;
-fun 'built-in_A' : A ;
-fun main_A : A ;
-fun certain_A : A ;
-fun uncertain_A : A ;
-fun jacobin_A : A ;
-fun elfin_A : A ;
-fun virgin_A : A ;
-fun akin_A : A ;
-fun maudlin_A : A ;
-fun latin_A : A ;
-fun satin_A : A ;
-fun 'high-falutin_A' : A ;
-fun 'god-damn_A' : A ;
-fun solemn_A : A ;
-fun 'head-on_A' : A ;
-fun 'tie-on_A' : A ;
-fun 'stick-on_A' : A ;
-fun 'clip-on_A' : A ;
-fun 'odds-on_A' : A ;
-fun ebon_A : A ;
-fun vermilion_A : A ;
-fun billion_A : A ;
-fun million_A : A ;
-fun trillion_A : A ;
-fun zillion_A : A ;
-fun union_A : A ;
-fun nonunion_A : A ;
-fun champion_A : A ;
-fun clarion_A : A ;
-fun 'high-tension_A' : A ;
-fun regulation_A : A ;
-fun carnation_A : A ;
-fun 'delayed-action_A' : A ;
-fun antipollution_A : A ;
-fun common_2_A : A ;
-fun uncommon_A : A ;
-fun Mormon_A : A ;
-fun boon_A : A ;
-fun maroon_A : A ;
-fun poltroon_A : A ;
-fun 'cast-iron_A' : A ;
-fun crimson_A : A ;
-fun briton_A : A ;
-fun wanton_A : A ;
-fun saxon_A : A ;
-fun 'anglo-saxon_A' : A ;
-fun yon_A : A ;
-fun halcyon_A : A ;
-fun cedarn_A : A ;
-fun modern_A : A ;
-fun ultramodern_A : A ;
-fun nonmodern_A : A ;
-fun Northern_A : A ;
-fun Southern_A : A ;
-fun Eastern_A : A ;
-fun northeastern_A : A ;
-fun southeastern_A : A ;
-fun Western_A : A ;
-fun midwestern_A : A ;
-fun northwestern_A : A ;
-fun southwestern_A : A ;
-fun silvern_A : A ;
-fun 'well-born_A' : A ;
-fun stubborn_A : A ;
-fun freeborn_A : A ;
-fun reborn_A : A ;
-fun liveborn_A : A ;
-fun highborn_A : A ;
-fun earthborn_A : A ;
-fun wellborn_A : A ;
-fun stillborn_A : A ;
-fun inborn_A : A ;
-fun unborn_A : A ;
-fun firstborn_A : A ;
-fun newborn_A : A ;
-fun lowborn_A : A ;
-fun bicorn_A : A ;
-fun lorn_A : A ;
-fun lovelorn_A : A ;
-fun forlorn_A : A ;
-fun 'war-torn_A' : A ;
-fun 'travel-worn_A' : A ;
-fun 'well-worn_A' : A ;
-fun 'water-worn_A' : A ;
-fun careworn_A : A ;
-fun unworn_A : A ;
-fun shopworn_A : A ;
-fun waterworn_A : A ;
-fun unsworn_A : A ;
-fun auburn_A : A ;
-fun taciturn_A : A ;
-fun dun_A : A ;
-fun homespun_A : A ;
-fun finespun_A : A ;
-fun 'tip-and-run_A' : A ;
-fun 'hit-and-run_A' : A ;
-fun indrawn_A : A ;
-fun undrawn_A : A ;
-fun 'rough-hewn_A' : A ;
-fun roughhewn_A : A ;
-fun unhewn_A : A ;
-fun handsewn_A : A ;
-fun oversewn_A : A ;
-fun own_A : A ;
-fun 'tumble-down_A' : A ;
-fun 'right-down_A' : A ;
-fun 'low-down_A' : A ;
-fun shakedown_A : A ;
-fun knockdown_A : A ;
-fun rundown_A : A ;
-fun 'full-blown_A' : A ;
-fun windblown_A : A ;
-fun overblown_A : A ;
-fun flyblown_A : A ;
-fun highflown_A : A ;
-fun unmown_A : A ;
-fun 'well-known_A' : A ;
-fun unbeknown_A : A ;
-fun unknown_A : A ;
-fun 'nut-brown_A' : A ;
-fun nutbrown_A : A ;
-fun 'home-grown_A' : A ;
-fun 'full-grown_A' : A ;
-fun 'moss-grown_A' : A ;
-fun 'fully-grown_A' : A ;
-fun homegrown_A : A ;
-fun overgrown_A : A ;
-fun 'self-sown_A' : A ;
-fun downtown_A : A ;
-fun uptown_A : A ;
-fun crosstown_A : A ;
-fun unseeyn_A : A ;
-fun lean_A : A ;
-fun clean_A : A ;
-fun mean_A : A ;
-fun wan_A : A ;
-fun keen_A : A ;
-fun green_A : A ;
-fun in_A : A ;
-fun plain_A : A ;
-fun vain_A : A ;
-fun thin_A : A ;
-fun common_1_A : A ;
-fun stern_A : A ;
-fun hewn_A : A ;
-fun down_A : A ;
-fun mown_A : A ;
-fun brown_A : A ;
-fun jumbo_A : A ;
-fun calico_A : A ;
-fun unco_A : A ;
-fun rococo_A : A ;
-fun loco_A : A ;
-fun alfresco_A : A ;
-fun 'well-to-do_A' : A ;
-fun incommunicado_A : A ;
-fun avocado_A : A ;
-fun azido_A : A ;
-fun allargando_A : A ;
-fun calando_A : A ;
-fun accelerando_A : A ;
-fun glissando_A : A ;
-fun rallentando_A : A ;
-fun crescendo_A : A ;
-fun decrescendo_A : A ;
-fun pseudo_A : A ;
-fun 'touch-and-go_A' : A ;
-fun 'no-go_A' : A ;
-fun indigo_A : A ;
-fun sotho_A : A ;
-fun 'ex officio_A' : A ;
-fun radio_A : A ;
-fun adagio_A : A ;
-fun solo_A : A ;
-fun larghissimo_A : A ;
-fun pianissimo_A : A ;
-fun altissimo_A : A ;
-fun lentissimo_A : A ;
-fun fortissimo_A : A ;
-fun prestissimo_A : A ;
-fun ultimo_A : A ;
-fun proximo_A : A ;
-fun piano_A : A ;
-fun soprano_A : A ;
-fun amino_A : A ;
-fun ammino_A : A ;
-fun sopranino_A : A ;
-fun filipino_A : A ;
-fun andantino_A : A ;
-fun mono_A : A ;
-fun taboo_A : A ;
-fun allegro_A : A ;
-fun 'so-so_A' : A ;
-fun staccato_A : A ;
-fun pizzicato_A : A ;
-fun legato_A : A ;
-fun moderato_A : A ;
-fun 'de facto_A' : A ;
-fun incognito_A : A ;
-fun lento_A : A ;
-fun presto_A : A ;
-fun larghetto_A : A ;
-fun allegretto_A : A ;
-fun falsetto_A : A ;
-fun blotto_A : A ;
-fun arco_A : A ;
-fun neo_A : A ;
-fun boffo_A : A ;
-fun go_A : A ;
-fun largo_A : A ;
-fun primo_A : A ;
-fun macro_A : A ;
-fun micro_A : A ;
-fun zero_A : A ;
-fun negro_A : A ;
-fun pro_A : A ;
-fun alto_A : A ;
-fun azo_A : A ;
-fun diazo_A : A ;
-fun 'dirt-cheap_A' : A ;
-fun 'knee-deep_A' : A ;
-fun 'skin-deep_A' : A ;
-fun 'waist-deep_A' : A ;
-fun asleep_A : A ;
-fun hep_A : A ;
-fun hip_A : A ;
-fun amidship_A : A ;
-fun flip_A : A ;
-fun nonslip_A : A ;
-fun camp_A : A ;
-fun limp_A : A ;
-fun 'cock-a-hoop_A' : A ;
-fun pop_A : A ;
-fun 'de trop_A' : A ;
-fun 'tip-top_A' : A ;
-fun nonstop_A : A ;
-fun 'buttoned-up_A' : A ;
-fun 'jumped-up_A' : A ;
-fun 'hopped-up_A' : A ;
-fun 'mixed-up_A' : A ;
-fun 'stand-up_A' : A ;
-fun 'lighting-up_A' : A ;
-fun 'stuck-up_A' : A ;
-fun 'grown-up_A' : A ;
-fun 'slap-up_A' : A ;
-fun 'tip-up_A' : A ;
-fun 'het-up_A' : A ;
-fun 'built-up_A' : A ;
-fun 'pent-up_A' : A ;
-fun lockup_A : A ;
-fun cheap_A : A ;
-fun deep_A : A ;
-fun steep_A : A ;
-fun damp_A : A ;
-fun plump_A : A ;
-fun sharp_A : A ;
-fun crisp_A : A ;
-fun up_A : A ;
-fun far_A : A ;
-fun bulbar_A : A ;
-fun lumbar_A : A ;
-fun lobar_A : A ;
-fun unclear_A : A ;
-fun nuclear_A : A ;
-fun thermonuclear_A : A ;
-fun mononuclear_A : A ;
-fun cochlear_A : A ;
-fun linear_A : A ;
-fun bilinear_A : A ;
-fun rectilinear_A : A ;
-fun collinear_A : A ;
-fun nonlinear_A : A ;
-fun interlinear_A : A ;
-fun drear_A : A ;
-fun sear_A : A ;
-fun vulgar_A : A ;
-fun familiar_A : A ;
-fun unfamiliar_A : A ;
-fun overfamiliar_A : A ;
-fun peculiar_A : A ;
-fun ajar_A : A ;
-fun alar_A : A ;
-fun scalar_A : A ;
-fun astragalar_A : A ;
-fun velar_A : A ;
-fun filar_A : A ;
-fun bifilar_A : A ;
-fun unifilar_A : A ;
-fun hilar_A : A ;
-fun similar_A : A ;
-fun verisimilar_A : A ;
-fun dissimilar_A : A ;
-fun pilar_A : A ;
-fun basilar_A : A ;
-fun glabellar_A : A ;
-fun cerebellar_A : A ;
-fun patellar_A : A ;
-fun stellar_A : A ;
-fun interstellar_A : A ;
-fun bacillar_A : A ;
-fun 'white-collar_A' : A ;
-fun 'blue-collar_A' : A ;
-fun ampullar_A : A ;
-fun areolar_A : A ;
-fun alveolar_A : A ;
-fun bronchiolar_A : A ;
-fun variolar_A : A ;
-fun arteriolar_A : A ;
-fun molar_A : A ;
-fun polar_A : A ;
-fun bipolar_A : A ;
-fun dipolar_A : A ;
-fun unipolar_A : A ;
-fun circumpolar_A : A ;
-fun transpolar_A : A ;
-fun solar_A : A ;
-fun lunisolar_A : A ;
-fun tabular_A : A ;
-fun acetabular_A : A ;
-fun nebular_A : A ;
-fun mandibular_A : A ;
-fun maxillomandibular_A : A ;
-fun vestibular_A : A ;
-fun lobular_A : A ;
-fun intralobular_A : A ;
-fun globular_A : A ;
-fun interlobular_A : A ;
-fun tubular_A : A ;
-fun vernacular_A : A ;
-fun oracular_A : A ;
-fun spectacular_A : A ;
-fun unspectacular_A : A ;
-fun tentacular_A : A ;
-fun sustentacular_A : A ;
-fun trabecular_A : A ;
-fun molecular_A : A ;
-fun intramolecular_A : A ;
-fun bimolecular_A : A ;
-fun orthomolecular_A : A ;
-fun macromolecular_A : A ;
-fun intermolecular_A : A ;
-fun secular_A : A ;
-fun appendicular_A : A ;
-fun perpendicular_A : A ;
-fun vehicular_A : A ;
-fun canalicular_A : A ;
-fun follicular_A : A ;
-fun vermicular_A : A ;
-fun canicular_A : A ;
-fun funicular_A : A ;
-fun curricular_A : A ;
-fun extracurricular_A : A ;
-fun ventricular_A : A ;
-fun intraventricular_A : A ;
-fun atrioventricular_A : A ;
-fun auricular_A : A ;
-fun biauricular_A : A ;
-fun vesicular_A : A ;
-fun ossicular_A : A ;
-fun articular_A : A ;
-fun particular_A : A ;
-fun testicular_A : A ;
-fun cuticular_A : A ;
-fun navicular_A : A ;
-fun caruncular_A : A ;
-fun avuncular_A : A ;
-fun ocular_A : A ;
-fun jocular_A : A ;
-fun bilocular_A : A ;
-fun binocular_A : A ;
-fun tubercular_A : A ;
-fun circular_A : A ;
-fun semicircular_A : A ;
-fun vascular_A : A ;
-fun avascular_A : A ;
-fun cardiovascular_A : A ;
-fun cerebrovascular_A : A ;
-fun majuscular_A : A ;
-fun muscular_A : A ;
-fun intramuscular_A : A ;
-fun neuromuscular_A : A ;
-fun crepuscular_A : A ;
-fun corpuscular_A : A ;
-fun calycular_A : A ;
-fun glandular_A : A ;
-fun modular_A : A ;
-fun nodular_A : A ;
-fun regular_A : A ;
-fun irregular_A : A ;
-fun tegular_A : A ;
-fun angular_A : A ;
-fun triangular_A : A ;
-fun equiangular_A : A ;
-fun quadrangular_A : A ;
-fun rectangular_A : A ;
-fun octangular_A : A ;
-fun pentangular_A : A ;
-fun hexangular_A : A ;
-fun singular_A : A ;
-fun jugular_A : A ;
-fun alular_A : A ;
-fun cellular_A : A ;
-fun intracellular_A : A ;
-fun extracellular_A : A ;
-fun unicellular_A : A ;
-fun multicellular_A : A ;
-fun noncellular_A : A ;
-fun intercellular_A : A ;
-fun granular_A : A ;
-fun nongranular_A : A ;
-fun annular_A : A ;
-fun scapular_A : A ;
-fun copular_A : A ;
-fun popular_A : A ;
-fun unpopular_A : A ;
-fun cupular_A : A ;
-fun glomerular_A : A ;
-fun insular_A : A ;
-fun peninsular_A : A ;
-fun consular_A : A ;
-fun proconsular_A : A ;
-fun capsular_A : A ;
-fun bicapsular_A : A ;
-fun capitular_A : A ;
-fun titular_A : A ;
-fun fistular_A : A ;
-fun valvular_A : A ;
-fun ovular_A : A ;
-fun uniovular_A : A ;
-fun uvular_A : A ;
-fun condylar_A : A ;
-fun micropylar_A : A ;
-fun astylar_A : A ;
-fun amphistylar_A : A ;
-fun peristylar_A : A ;
-fun amphiprostylar_A : A ;
-fun palmar_A : A ;
-fun planar_A : A ;
-fun coplanar_A : A ;
-fun acinar_A : A ;
-fun laminar_A : A ;
-fun ulnar_A : A ;
-fun columnar_A : A ;
-fun lunar_A : A ;
-fun sublunar_A : A ;
-fun translunar_A : A ;
-fun hoar_A : A ;
-fun plantar_A : A ;
-fun vulvar_A : A ;
-fun prewar_A : A ;
-fun postwar_A : A ;
-fun Magyar_A : A ;
-fun whatsoe'er_A : A ;
-fun whate'er_A : A ;
-fun rubber_A : A ;
-fun amber_A : A ;
-fun limber_A : A ;
-fun somber_A : A ;
-fun umber_A : A ;
-fun sober_A : A ;
-fun 'stone-sober_A' : A ;
-fun anticancer_A : A ;
-fun elder_A : A ;
-fun zealander_A : A ;
-fun icelander_A : A ;
-fun hollander_A : A ;
-fun transgender_A : A ;
-fun slender_A : A ;
-fun lavender_A : A ;
-fun yonder_A : A ;
-fun eager_A : A ;
-fun meager_A : A ;
-fun uneager_A : A ;
-fun overeager_A : A ;
-fun swagger_A : A ;
-fun 'hugger-mugger_A' : A ;
-fun ginger_A : A ;
-fun younger_A : A ;
-fun luxemburger_A : A ;
-fun ocher_A : A ;
-fun cosher_A : A ;
-fun kosher_A : A ;
-fun nonkosher_A : A ;
-fun together_A : A ;
-fun nether_A : A ;
-fun neither_A : A ;
-fun other_A : A ;
-fun farther_A : A ;
-fun further_A : A ;
-fun cavalier_A : A ;
-fun earlier_A : A ;
-fun premier_A : A ;
-fun caller_A : A ;
-fun smaller_A : A ;
-fun former_A : A ;
-fun Afrikaner_A : A ;
-fun liechtensteiner_A : A ;
-fun finer_A : A ;
-fun banner_A : A ;
-fun inner_A : A ;
-fun 'hole-and-corner_A' : A ;
-fun catacorner_A : A ;
-fun boer_A : A ;
-fun proper_A : A ;
-fun improper_A : A ;
-fun dapper_A : A ;
-fun chipper_A : A ;
-fun upper_A : A ;
-fun super_A : A ;
-fun lesser_A : A ;
-fun greater_A : A ;
-fun 'deep-water_A' : A ;
-fun freshwater_A : A ;
-fun blackwater_A : A ;
-fun jerkwater_A : A ;
-fun underwater_A : A ;
-fun after_A : A ;
-fun welter_A : A ;
-fun center_A : A ;
-fun 'under-the-counter_A' : A ;
-fun 'three-quarter_A' : A ;
-fun alabaster_A : A ;
-fun sinister_A : A ;
-fun foster_A : A ;
-fun lackluster_A : A ;
-fun latter_A : A ;
-fun better_A : A ;
-fun bitter_A : A ;
-fun unbitter_A : A ;
-fun fitter_A : A ;
-fun utter_A : A ;
-fun aflutter_A : A ;
-fun neuter_A : A ;
-fun outer_A : A ;
-fun dexter_A : A ;
-fun whichever_A : A ;
-fun whencesoever_A : A ;
-fun whichsoever_A : A ;
-fun whatsoever_A : A ;
-fun whatever_A : A ;
-fun silver_A : A ;
-fun 'half-seas-over_A' : A ;
-fun undercover_A : A ;
-fun allover_A : A ;
-fun leftover_A : A ;
-fun fewer_A : A ;
-fun panzer_A : A ;
-fun bonzer_A : A ;
-fun 'open-air_A' : A ;
-fun 'surface-to-air_A' : A ;
-fun 'air-to-air_A' : A ;
-fun unfair_A : A ;
-fun debonair_A : A ;
-fun backstair_A : A ;
-fun downstair_A : A ;
-fun astir_A : A ;
-fun 'unlooked-for_A' : A ;
-fun 'uncalled-for_A' : A ;
-fun 'unhoped-for_A' : A ;
-fun 'uncared-for_A' : A ;
-fun senior_A : A ;
-fun junior_A : A ;
-fun inferior_A : A ;
-fun superior_A : A ;
-fun ulterior_A : A ;
-fun anterior_A : A ;
-fun interior_A : A ;
-fun posterior_A : A ;
-fun exterior_A : A ;
-fun prior_A : A ;
-fun major_A : A ;
-fun color_A : A ;
-fun bicolor_A : A ;
-fun tenor_A : A ;
-fun countertenor_A : A ;
-fun minor_A : A ;
-fun 'out-of-door_A' : A ;
-fun 'door-to-door_A' : A ;
-fun indoor_A : A ;
-fun outdoor_A : A ;
-fun underfloor_A : A ;
-fun counterterror_A : A ;
-fun pressor_A : A ;
-fun sensorimotor_A : A ;
-fun psychomotor_A : A ;
-fun neuromotor_A : A ;
-fun vasomotor_A : A ;
-fun 'de rigeur_A' : A ;
-fun amateur_A : A ;
-fun dour_A : A ;
-fun 'snuff-colour_A' : A ;
-fun sour_A : A ;
-fun dear_A : A ;
-fun clear_A : A ;
-fun near_A : A ;
-fun tender_A : A ;
-fun sheer_A : A ;
-fun queer_A : A ;
-fun clever_A : A ;
-fun fair_A : A ;
-fun poor_A : A ;
-fun bias_A : A ;
-fun less_A : A ;
-fun dress_A : A ;
-fun boss_A : A ;
-fun parkinson's_A : A ;
-fun overseas_A : A ;
-fun backwards_A : A ;
-fun heavenwards_A : A ;
-fun skywards_A : A ;
-fun intraspecies_A : A ;
-fun interspecies_A : A ;
-fun isosceles_A : A ;
-fun 'ultra vires_A' : A ;
-fun bourgeois_A : A ;
-fun seychellois_A : A ;
-fun gratis_A : A ;
-fun 'compos mentis_A' : A ;
-fun 'non compos mentis_A' : A ;
-fun sapiens_A : A ;
-fun 'all-mains_A' : A ;
-fun apropos_A : A ;
-fun malapropos_A : A ;
-fun crackers_A : A ;
-fun bonkers_A : A ;
-fun starkers_A : A ;
-fun divers_A : A ;
-fun downstairs_A : A ;
-fun upstairs_A : A ;
-fun bass_A : A ;
-fun contrabass_A : A ;
-fun 'second-class_A' : A ;
-fun 'middle-class_A' : A ;
-fun 'working-class_A' : A ;
-fun 'high-class_A' : A ;
-fun 'first-class_A' : A ;
-fun crass_A : A ;
-fun excess_A : A ;
-fun bibless_A : A ;
-fun ribless_A : A ;
-fun limbless_A : A ;
-fun headless_A : A ;
-fun roadless_A : A ;
-fun bedless_A : A ;
-fun heedless_A : A ;
-fun needless_A : A ;
-fun seedless_A : A ;
-fun weedless_A : A ;
-fun lidless_A : A ;
-fun childless_A : A ;
-fun handless_A : A ;
-fun landless_A : A ;
-fun endless_A : A ;
-fun friendless_A : A ;
-fun mindless_A : A ;
-fun windless_A : A ;
-fun boundless_A : A ;
-fun groundless_A : A ;
-fun soundless_A : A ;
-fun godless_A : A ;
-fun foodless_A : A ;
-fun bloodless_A : A ;
-fun beardless_A : A ;
-fun regardless_A : A ;
-fun cordless_A : A ;
-fun lordless_A : A ;
-fun wordless_A : A ;
-fun cloudless_A : A ;
-fun tubeless_A : A ;
-fun faceless_A : A ;
-fun graceless_A : A ;
-fun voiceless_A : A ;
-fun priceless_A : A ;
-fun juiceless_A : A ;
-fun defenceless_A : A ;
-fun offenceless_A : A ;
-fun conscienceless_A : A ;
-fun forceless_A : A ;
-fun resourceless_A : A ;
-fun treeless_A : A ;
-fun lifeless_A : A ;
-fun ageless_A : A ;
-fun edgeless_A : A ;
-fun changeless_A : A ;
-fun smokeless_A : A ;
-fun scaleless_A : A ;
-fun handleless_A : A ;
-fun guileless_A : A ;
-fun soleless_A : A ;
-fun styleless_A : A ;
-fun shameless_A : A ;
-fun blameless_A : A ;
-fun nameless_A : A ;
-fun timeless_A : A ;
-fun homeless_A : A ;
-fun spineless_A : A ;
-fun boneless_A : A ;
-fun toneless_A : A ;
-fun stoneless_A : A ;
-fun tuneless_A : A ;
-fun toeless_A : A ;
-fun shapeless_A : A ;
-fun hopeless_A : A ;
-fun careless_A : A ;
-fun tireless_A : A ;
-fun wireless_A : A ;
-fun scoreless_A : A ;
-fun measureless_A : A ;
-fun featureless_A : A ;
-fun punctureless_A : A ;
-fun futureless_A : A ;
-fun baseless_A : A ;
-fun ceaseless_A : A ;
-fun creaseless_A : A ;
-fun noiseless_A : A ;
-fun defenseless_A : A ;
-fun offenseless_A : A ;
-fun senseless_A : A ;
-fun noseless_A : A ;
-fun purposeless_A : A ;
-fun remorseless_A : A ;
-fun useless_A : A ;
-fun causeless_A : A ;
-fun dateless_A : A ;
-fun mateless_A : A ;
-fun stateless_A : A ;
-fun voteless_A : A ;
-fun tasteless_A : A ;
-fun tongueless_A : A ;
-fun hueless_A : A ;
-fun valueless_A : A ;
-fun clueless_A : A ;
-fun sleeveless_A : A ;
-fun motiveless_A : A ;
-fun loveless_A : A ;
-fun gloveless_A : A ;
-fun nerveless_A : A ;
-fun aweless_A : A ;
-fun eyeless_A : A ;
-fun leafless_A : A ;
-fun briefless_A : A ;
-fun roofless_A : A ;
-fun legless_A : A ;
-fun wigless_A : A ;
-fun meaningless_A : A ;
-fun springless_A : A ;
-fun stingless_A : A ;
-fun wingless_A : A ;
-fun drugless_A : A ;
-fun speechless_A : A ;
-fun branchless_A : A ;
-fun quenchless_A : A ;
-fun starchless_A : A ;
-fun matchless_A : A ;
-fun boughless_A : A ;
-fun deathless_A : A ;
-fun breathless_A : A ;
-fun pathless_A : A ;
-fun faithless_A : A ;
-fun toothless_A : A ;
-fun mirthless_A : A ;
-fun worthless_A : A ;
-fun ruthless_A : A ;
-fun merciless_A : A ;
-fun bodiless_A : A ;
-fun penniless_A : A ;
-fun pitiless_A : A ;
-fun beakless_A : A ;
-fun backless_A : A ;
-fun trackless_A : A ;
-fun feckless_A : A ;
-fun neckless_A : A ;
-fun speckless_A : A ;
-fun reckless_A : A ;
-fun luckless_A : A ;
-fun milkless_A : A ;
-fun thankless_A : A ;
-fun goalless_A : A ;
-fun wheelless_A : A ;
-fun tailless_A : A ;
-fun recoilless_A : A ;
-fun soulless_A : A ;
-fun dreamless_A : A ;
-fun seamless_A : A ;
-fun loamless_A : A ;
-fun stemless_A : A ;
-fun aimless_A : A ;
-fun rimless_A : A ;
-fun brimless_A : A ;
-fun fathomless_A : A ;
-fun symptomless_A : A ;
-fun bottomless_A : A ;
-fun armless_A : A ;
-fun harmless_A : A ;
-fun formless_A : A ;
-fun gormless_A : A ;
-fun gaumless_A : A ;
-fun planless_A : A ;
-fun burdenless_A : A ;
-fun painless_A : A ;
-fun rainless_A : A ;
-fun brainless_A : A ;
-fun curtainless_A : A ;
-fun stainless_A : A ;
-fun chinless_A : A ;
-fun skinless_A : A ;
-fun sinless_A : A ;
-fun winless_A : A ;
-fun tensionless_A : A ;
-fun passionless_A : A ;
-fun expressionless_A : A ;
-fun frictionless_A : A ;
-fun motionless_A : A ;
-fun emotionless_A : A ;
-fun moonless_A : A ;
-fun weaponless_A : A ;
-fun reasonless_A : A ;
-fun fernless_A : A ;
-fun hornless_A : A ;
-fun thornless_A : A ;
-fun sunless_A : A ;
-fun awnless_A : A ;
-fun echoless_A : A ;
-fun hapless_A : A ;
-fun strapless_A : A ;
-fun sapless_A : A ;
-fun sleepless_A : A ;
-fun hipless_A : A ;
-fun lipless_A : A ;
-fun dripless_A : A ;
-fun helpless_A : A ;
-fun topless_A : A ;
-fun earless_A : A ;
-fun fearless_A : A ;
-fun tearless_A : A ;
-fun sugarless_A : A ;
-fun collarless_A : A ;
-fun starless_A : A ;
-fun memberless_A : A ;
-fun numberless_A : A ;
-fun leaderless_A : A ;
-fun rudderless_A : A ;
-fun riderless_A : A ;
-fun cheerless_A : A ;
-fun peerless_A : A ;
-fun fingerless_A : A ;
-fun fatherless_A : A ;
-fun motherless_A : A ;
-fun ownerless_A : A ;
-fun paperless_A : A ;
-fun supperless_A : A ;
-fun waterless_A : A ;
-fun characterless_A : A ;
-fun masterless_A : A ;
-fun dowerless_A : A ;
-fun flowerless_A : A ;
-fun powerless_A : A ;
-fun airless_A : A ;
-fun hairless_A : A ;
-fun odorless_A : A ;
-fun colorless_A : A ;
-fun humorless_A : A ;
-fun errorless_A : A ;
-fun odourless_A : A ;
-fun colourless_A : A ;
-fun humourless_A : A ;
-fun flavourless_A : A ;
-fun clothesless_A : A ;
-fun classless_A : A ;
-fun grassless_A : A ;
-fun lossless_A : A ;
-fun newsless_A : A ;
-fun heatless_A : A ;
-fun meatless_A : A ;
-fun fatless_A : A ;
-fun hatless_A : A ;
-fun tactless_A : A ;
-fun ductless_A : A ;
-fun shiftless_A : A ;
-fun thriftless_A : A ;
-fun weightless_A : A ;
-fun lightless_A : A ;
-fun flightless_A : A ;
-fun sightless_A : A ;
-fun thoughtless_A : A ;
-fun profitless_A : A ;
-fun hitless_A : A ;
-fun shitless_A : A ;
-fun limitless_A : A ;
-fun spiritless_A : A ;
-fun fruitless_A : A ;
-fun witless_A : A ;
-fun guiltless_A : A ;
-fun faultless_A : A ;
-fun scentless_A : A ;
-fun relentless_A : A ;
-fun taintless_A : A ;
-fun pointless_A : A ;
-fun dauntless_A : A ;
-fun countless_A : A ;
-fun pilotless_A : A ;
-fun bootless_A : A ;
-fun footless_A : A ;
-fun rootless_A : A ;
-fun spotless_A : A ;
-fun artless_A : A ;
-fun heartless_A : A ;
-fun chartless_A : A ;
-fun effortless_A : A ;
-fun comfortless_A : A ;
-fun breastless_A : A ;
-fun restless_A : A ;
-fun listless_A : A ;
-fun christless_A : A ;
-fun resistless_A : A ;
-fun rustless_A : A ;
-fun gutless_A : A ;
-fun jawless_A : A ;
-fun lawless_A : A ;
-fun flawless_A : A ;
-fun viewless_A : A ;
-fun indexless_A : A ;
-fun sexless_A : A ;
-fun rayless_A : A ;
-fun keyless_A : A ;
-fun moneyless_A : A ;
-fun bellyless_A : A ;
-fun joyless_A : A ;
-fun propertyless_A : A ;
-fun 'full-dress_A' : A ;
-fun express_A : A ;
-fun amiss_A : A ;
-fun remiss_A : A ;
-fun Swiss_A : A ;
-fun cross_A : A ;
-fun crisscross_A : A ;
-fun gross_A : A ;
-fun subgross_A : A ;
-fun bats_A : A ;
-fun quits_A : A ;
-fun scots_A : A ;
-fun grassroots_A : A ;
-fun nuts_A : A ;
-fun bogus_A : A ;
-fun plus_A : A ;
-fun minus_A : A ;
-fun gibbous_A : A ;
-fun bulbous_A : A ;
-fun synoicous_A : A ;
-fun paroicous_A : A ;
-fun heteroicous_A : A ;
-fun autoicous_A : A ;
-fun anasarcous_A : A ;
-fun viscous_A : A ;
-fun fuscous_A : A ;
-fun glaucous_A : A ;
-fun raucous_A : A ;
-fun caducous_A : A ;
-fun mucous_A : A ;
-fun tremendous_A : A ;
-fun stupendous_A : A ;
-fun hazardous_A : A ;
-fun pilosebaceous_A : A ;
-fun bulbaceous_A : A ;
-fun herbaceous_A : A ;
-fun micaceous_A : A ;
-fun asclepiadaceous_A : A ;
-fun predaceous_A : A ;
-fun iridaceous_A : A ;
-fun oleaceous_A : A ;
-fun lobeliaceous_A : A ;
-fun liliaceous_A : A ;
-fun alliaceous_A : A ;
-fun foliaceous_A : A ;
-fun polemoniaceous_A : A ;
-fun bignoniaceous_A : A ;
-fun coriaceous_A : A ;
-fun argillaceous_A : A ;
-fun caryophyllaceous_A : A ;
-fun betulaceous_A : A ;
-fun chylaceous_A : A ;
-fun solanaceous_A : A ;
-fun arenaceous_A : A ;
-fun arundinaceous_A : A ;
-fun proteinaceous_A : A ;
-fun plumbaginaceous_A : A ;
-fun gallinaceous_A : A ;
-fun farinaceous_A : A ;
-fun vinaceous_A : A ;
-fun carbonaceous_A : A ;
-fun saponaceous_A : A ;
-fun apocynaceous_A : A ;
-fun drupaceous_A : A ;
-fun arboraceous_A : A ;
-fun camphoraceous_A : A ;
-fun moraceous_A : A ;
-fun butyraceous_A : A ;
-fun rosaceous_A : A ;
-fun cretaceous_A : A ;
-fun cucurbitaceous_A : A ;
-fun chartaceous_A : A ;
-fun testaceous_A : A ;
-fun crustaceous_A : A ;
-fun siliceous_A : A ;
-fun hideous_A : A ;
-fun chlamydeous_A : A ;
-fun achlamydeous_A : A ;
-fun rampageous_A : A ;
-fun outrageous_A : A ;
-fun courageous_A : A ;
-fun advantageous_A : A ;
-fun disadvantageous_A : A ;
-fun gorgeous_A : A ;
-fun miscellaneous_A : A ;
-fun contemporaneous_A : A ;
-fun extemporaneous_A : A ;
-fun extraneous_A : A ;
-fun coetaneous_A : A ;
-fun simultaneous_A : A ;
-fun instantaneous_A : A ;
-fun consentaneous_A : A ;
-fun spontaneous_A : A ;
-fun cutaneous_A : A ;
-fun subcutaneous_A : A ;
-fun mucocutaneous_A : A ;
-fun homogeneous_A : A ;
-fun inhomogeneous_A : A ;
-fun heterogeneous_A : A ;
-fun igneous_A : A ;
-fun ligneous_A : A ;
-fun pyroligneous_A : A ;
-fun erroneous_A : A ;
-fun corneous_A : A ;
-fun calcareous_A : A ;
-fun nacreous_A : A ;
-fun vitreous_A : A ;
-fun caseous_A : A ;
-fun gaseous_A : A ;
-fun osseous_A : A ;
-fun nauseous_A : A ;
-fun righteous_A : A ;
-fun 'self-righteous_A' : A ;
-fun unrighteous_A : A ;
-fun piteous_A : A ;
-fun plenteous_A : A ;
-fun bounteous_A : A ;
-fun courteous_A : A ;
-fun discourteous_A : A ;
-fun beauteous_A : A ;
-fun duteous_A : A ;
-fun aqueous_A : A ;
-fun subaqueous_A : A ;
-fun myrmecophagous_A : A ;
-fun anthophagous_A : A ;
-fun anthropophagous_A : A ;
-fun carpophagous_A : A ;
-fun saprophagous_A : A ;
-fun pemphigous_A : A ;
-fun humongous_A : A ;
-fun fungous_A : A ;
-fun analogous_A : A ;
-fun homologous_A : A ;
-fun heterologous_A : A ;
-fun autologous_A : A ;
-fun calcifugous_A : A ;
-fun lucifugous_A : A ;
-fun nidifugous_A : A ;
-fun azygous_A : A ;
-fun homozygous_A : A ;
-fun heterozygous_A : A ;
-fun peritrichous_A : A ;
-fun amorphous_A : A ;
-fun metamorphous_A : A ;
-fun isomorphous_A : A ;
-fun polymorphous_A : A ;
-fun opisthognathous_A : A ;
-fun prognathous_A : A ;
-fun amphibious_A : A ;
-fun dubious_A : A ;
-fun efficacious_A : A ;
-fun inefficacious_A : A ;
-fun perspicacious_A : A ;
-fun edacious_A : A ;
-fun predacious_A : A ;
-fun mendacious_A : A ;
-fun bodacious_A : A ;
-fun mordacious_A : A ;
-fun audacious_A : A ;
-fun sagacious_A : A ;
-fun salacious_A : A ;
-fun fallacious_A : A ;
-fun contumacious_A : A ;
-fun tenacious_A : A ;
-fun pugnacious_A : A ;
-fun pertinacious_A : A ;
-fun capacious_A : A ;
-fun rapacious_A : A ;
-fun spacious_A : A ;
-fun veracious_A : A ;
-fun gracious_A : A ;
-fun ungracious_A : A ;
-fun voracious_A : A ;
-fun loquacious_A : A ;
-fun vivacious_A : A ;
-fun dioecious_A : A ;
-fun monoecious_A : A ;
-fun heteroecious_A : A ;
-fun autoecious_A : A ;
-fun specious_A : A ;
-fun precious_A : A ;
-fun semiprecious_A : A ;
-fun judicious_A : A ;
-fun injudicious_A : A ;
-fun officious_A : A ;
-fun malicious_A : A ;
-fun unmalicious_A : A ;
-fun delicious_A : A ;
-fun pernicious_A : A ;
-fun auspicious_A : A ;
-fun inauspicious_A : A ;
-fun suspicious_A : A ;
-fun unsuspicious_A : A ;
-fun oversuspicious_A : A ;
-fun avaricious_A : A ;
-fun lubricious_A : A ;
-fun capricious_A : A ;
-fun meretricious_A : A ;
-fun vicious_A : A ;
-fun precocious_A : A ;
-fun ferocious_A : A ;
-fun atrocious_A : A ;
-fun conscious_A : A ;
-fun 'self-conscious_A' : A ;
-fun 'class-conscious_A' : A ;
-fun subconscious_A : A ;
-fun unselfconscious_A : A ;
-fun semiconscious_A : A ;
-fun nonconscious_A : A ;
-fun unconscious_A : A ;
-fun luscious_A : A ;
-fun tedious_A : A ;
-fun perfidious_A : A ;
-fun insidious_A : A ;
-fun fastidious_A : A ;
-fun unfastidious_A : A ;
-fun invidious_A : A ;
-fun compendious_A : A ;
-fun odious_A : A ;
-fun melodious_A : A ;
-fun unmelodious_A : A ;
-fun commodious_A : A ;
-fun incommodious_A : A ;
-fun studious_A : A ;
-fun unstudious_A : A ;
-fun contagious_A : A ;
-fun sacrilegious_A : A ;
-fun egregious_A : A ;
-fun prodigious_A : A ;
-fun religious_A : A ;
-fun irreligious_A : A ;
-fun litigious_A : A ;
-fun prestigious_A : A ;
-fun contumelious_A : A ;
-fun bilious_A : A ;
-fun atrabilious_A : A ;
-fun supercilious_A : A ;
-fun punctilious_A : A ;
-fun rebellious_A : A ;
-fun abstemious_A : A ;
-fun ingenious_A : A ;
-fun arsenious_A : A ;
-fun ignominious_A : A ;
-fun euphonious_A : A ;
-fun felonious_A : A ;
-fun ceremonious_A : A ;
-fun unceremonious_A : A ;
-fun acrimonious_A : A ;
-fun parsimonious_A : A ;
-fun sanctimonious_A : A ;
-fun harmonious_A : A ;
-fun inharmonious_A : A ;
-fun disharmonious_A : A ;
-fun impecunious_A : A ;
-fun pious_A : A ;
-fun impious_A : A ;
-fun copious_A : A ;
-fun carious_A : A ;
-fun precarious_A : A ;
-fun vicarious_A : A ;
-fun nefarious_A : A ;
-fun omnifarious_A : A ;
-fun multifarious_A : A ;
-fun gregarious_A : A ;
-fun nongregarious_A : A ;
-fun ungregarious_A : A ;
-fun burglarious_A : A ;
-fun hilarious_A : A ;
-fun uproarious_A : A ;
-fun contrarious_A : A ;
-fun various_A : A ;
-fun opprobrious_A : A ;
-fun lugubrious_A : A ;
-fun salubrious_A : A ;
-fun insalubrious_A : A ;
-fun imperious_A : A ;
-fun serious_A : A ;
-fun overserious_A : A ;
-fun deleterious_A : A ;
-fun mysterious_A : A ;
-fun delirious_A : A ;
-fun laborious_A : A ;
-fun glorious_A : A ;
-fun inglorious_A : A ;
-fun vainglorious_A : A ;
-fun censorious_A : A ;
-fun victorious_A : A ;
-fun meritorious_A : A ;
-fun unmeritorious_A : A ;
-fun notorious_A : A ;
-fun uxorious_A : A ;
-fun industrious_A : A ;
-fun illustrious_A : A ;
-fun curious_A : A ;
-fun incurious_A : A ;
-fun overcurious_A : A ;
-fun furious_A : A ;
-fun injurious_A : A ;
-fun penurious_A : A ;
-fun spurious_A : A ;
-fun usurious_A : A ;
-fun luxurious_A : A ;
-fun ostentatious_A : A ;
-fun unostentatious_A : A ;
-fun flirtatious_A : A ;
-fun disputatious_A : A ;
-fun vexatious_A : A ;
-fun factious_A : A ;
-fun fractious_A : A ;
-fun infectious_A : A ;
-fun noninfectious_A : A ;
-fun rambunctious_A : A ;
-fun facetious_A : A ;
-fun ambitious_A : A ;
-fun unambitious_A : A ;
-fun overambitious_A : A ;
-fun expeditious_A : A ;
-fun seditious_A : A ;
-fun flagitious_A : A ;
-fun propitious_A : A ;
-fun unpropitious_A : A ;
-fun nutritious_A : A ;
-fun factitious_A : A ;
-fun fictitious_A : A ;
-fun repetitious_A : A ;
-fun adscititious_A : A ;
-fun cementitious_A : A ;
-fun adventitious_A : A ;
-fun surreptitious_A : A ;
-fun superstitious_A : A ;
-fun licentious_A : A ;
-fun tendentious_A : A ;
-fun conscientious_A : A ;
-fun unconscientious_A : A ;
-fun dissentious_A : A ;
-fun pretentious_A : A ;
-fun unpretentious_A : A ;
-fun sententious_A : A ;
-fun contentious_A : A ;
-fun 'non-contentious_A' : A ;
-fun noncontentious_A : A ;
-fun captious_A : A ;
-fun bumptious_A : A ;
-fun scrumptious_A : A ;
-fun tortious_A : A ;
-fun rumbustious_A : A ;
-fun cautious_A : A ;
-fun incautious_A : A ;
-fun overcautious_A : A ;
-fun circumlocutious_A : A ;
-fun obsequious_A : A ;
-fun obvious_A : A ;
-fun unobvious_A : A ;
-fun devious_A : A ;
-fun previous_A : A ;
-fun lascivious_A : A ;
-fun oblivious_A : A ;
-fun envious_A : A ;
-fun pervious_A : A ;
-fun impervious_A : A ;
-fun anxious_A : A ;
-fun overanxious_A : A ;
-fun noxious_A : A ;
-fun obnoxious_A : A ;
-fun innoxious_A : A ;
-fun scandalous_A : A ;
-fun jealous_A : A ;
-fun overjealous_A : A ;
-fun zealous_A : A ;
-fun overzealous_A : A ;
-fun acephalous_A : A ;
-fun bicephalous_A : A ;
-fun anomalous_A : A ;
-fun petalous_A : A ;
-fun apetalous_A : A ;
-fun gamopetalous_A : A ;
-fun polypetalous_A : A ;
-fun troublous_A : A ;
-fun acarpelous_A : A ;
-fun marvelous_A : A ;
-fun myrmecophilous_A : A ;
-fun anemophilous_A : A ;
-fun entomophilous_A : A ;
-fun pilous_A : A ;
-fun depilous_A : A ;
-fun perilous_A : A ;
-fun scurrilous_A : A ;
-fun callous_A : A ;
-fun libellous_A : A ;
-fun marvellous_A : A ;
-fun aphyllous_A : A ;
-fun hemimetabolous_A : A ;
-fun heterometabolous_A : A ;
-fun calcicolous_A : A ;
-fun nidicolous_A : A ;
-fun arenicolous_A : A ;
-fun saxicolous_A : A ;
-fun frivolous_A : A ;
-fun parlous_A : A ;
-fun fabulous_A : A ;
-fun nebulous_A : A ;
-fun bibulous_A : A ;
-fun miraculous_A : A ;
-fun ridiculous_A : A ;
-fun meticulous_A : A ;
-fun calculous_A : A ;
-fun tuberculous_A : A ;
-fun credulous_A : A ;
-fun incredulous_A : A ;
-fun overcredulous_A : A ;
-fun sedulous_A : A ;
-fun acidulous_A : A ;
-fun pendulous_A : A ;
-fun scrofulous_A : A ;
-fun emulous_A : A ;
-fun tremulous_A : A ;
-fun cumulous_A : A ;
-fun crapulous_A : A ;
-fun populous_A : A ;
-fun scrupulous_A : A ;
-fun unscrupulous_A : A ;
-fun querulous_A : A ;
-fun garrulous_A : A ;
-fun edentulous_A : A ;
-fun fistulous_A : A ;
-fun adactylous_A : A ;
-fun homostylous_A : A ;
-fun famous_A : A ;
-fun infamous_A : A ;
-fun bigamous_A : A ;
-fun endogamous_A : A ;
-fun allogamous_A : A ;
-fun monogamous_A : A ;
-fun cleistogamous_A : A ;
-fun autogamous_A : A ;
-fun exogamous_A : A ;
-fun polygamous_A : A ;
-fun blasphemous_A : A ;
-fun monosemous_A : A ;
-fun polysemous_A : A ;
-fun pusillanimous_A : A ;
-fun magnanimous_A : A ;
-fun unanimous_A : A ;
-fun venomous_A : A ;
-fun nonvenomous_A : A ;
-fun autonomous_A : A ;
-fun nonautonomous_A : A ;
-fun diadromous_A : A ;
-fun anadromous_A : A ;
-fun catadromous_A : A ;
-fun dichotomous_A : A ;
-fun spermous_A : A ;
-fun angiospermous_A : A ;
-fun gymnospermous_A : A ;
-fun cormous_A : A ;
-fun enormous_A : A ;
-fun posthumous_A : A ;
-fun brumous_A : A ;
-fun onymous_A : A ;
-fun pseudonymous_A : A ;
-fun anonymous_A : A ;
-fun synonymous_A : A ;
-fun eponymous_A : A ;
-fun antonymous_A : A ;
-fun diaphanous_A : A ;
-fun membranous_A : A ;
-fun collagenous_A : A ;
-fun indigenous_A : A ;
-fun endogenous_A : A ;
-fun biogenous_A : A ;
-fun erogenous_A : A ;
-fun heterogenous_A : A ;
-fun sporogenous_A : A ;
-fun nitrogenous_A : A ;
-fun autogenous_A : A ;
-fun exogenous_A : A ;
-fun gangrenous_A : A ;
-fun venous_A : A ;
-fun ravenous_A : A ;
-fun intravenous_A : A ;
-fun arteriovenous_A : A ;
-fun villainous_A : A ;
-fun mountainous_A : A ;
-fun mucinous_A : A ;
-fun libidinous_A : A ;
-fun tendinous_A : A ;
-fun pulchritudinous_A : A ;
-fun platitudinous_A : A ;
-fun altitudinous_A : A ;
-fun multitudinous_A : A ;
-fun heinous_A : A ;
-fun oleaginous_A : A ;
-fun cartilaginous_A : A ;
-fun fibrocartilaginous_A : A ;
-fun caliginous_A : A ;
-fun vitiliginous_A : A ;
-fun impetiginous_A : A ;
-fun vertiginous_A : A ;
-fun diclinous_A : A ;
-fun monoclinous_A : A ;
-fun ominous_A : A ;
-fun abdominous_A : A ;
-fun conterminous_A : A ;
-fun coterminous_A : A ;
-fun verminous_A : A ;
-fun albuminous_A : A ;
-fun leguminous_A : A ;
-fun luminous_A : A ;
-fun aluminous_A : A ;
-fun voluminous_A : A ;
-fun numinous_A : A ;
-fun ceruminous_A : A ;
-fun bituminous_A : A ;
-fun spinous_A : A ;
-fun fibrinous_A : A ;
-fun resinous_A : A ;
-fun nonresinous_A : A ;
-fun gelatinous_A : A ;
-fun cretinous_A : A ;
-fun chitinous_A : A ;
-fun glutinous_A : A ;
-fun nonglutinous_A : A ;
-fun mutinous_A : A ;
-fun ruinous_A : A ;
-fun vinous_A : A ;
-fun tyrannous_A : A ;
-fun dicotyledonous_A : A ;
-fun monocotyledonous_A : A ;
-fun cacophonous_A : A ;
-fun homophonous_A : A ;
-fun allochthonous_A : A ;
-fun autochthonous_A : A ;
-fun synchronous_A : A ;
-fun asynchronous_A : A ;
-fun nonsynchronous_A : A ;
-fun geosynchronous_A : A ;
-fun treasonous_A : A ;
-fun poisonous_A : A ;
-fun nonpoisonous_A : A ;
-fun monotonous_A : A ;
-fun gluttonous_A : A ;
-fun cavernous_A : A ;
-fun monogynous_A : A ;
-fun androgynous_A : A ;
-fun misogynous_A : A ;
-fun polygynous_A : A ;
-fun pompous_A : A ;
-fun unpompous_A : A ;
-fun anatropous_A : A ;
-fun amphitropous_A : A ;
-fun orthotropous_A : A ;
-fun campylotropous_A : A ;
-fun acarpous_A : A ;
-fun syncarpous_A : A ;
-fun ascocarpous_A : A ;
-fun apocarpous_A : A ;
-fun acrocarpous_A : A ;
-fun pleurocarpous_A : A ;
-fun barbarous_A : A ;
-fun parous_A : A ;
-fun biparous_A : A ;
-fun primiparous_A : A ;
-fun uniparous_A : A ;
-fun fissiparous_A : A ;
-fun multiparous_A : A ;
-fun viviparous_A : A ;
-fun ovoviviparous_A : A ;
-fun oviparous_A : A ;
-fun scabrous_A : A ;
-fun glabrous_A : A ;
-fun tenebrous_A : A ;
-fun fibrous_A : A ;
-fun cumbrous_A : A ;
-fun ludicrous_A : A ;
-fun chancrous_A : A ;
-fun monandrous_A : A ;
-fun polyandrous_A : A ;
-fun wondrous_A : A ;
-fun hydrous_A : A ;
-fun anhydrous_A : A ;
-fun slumberous_A : A ;
-fun tuberous_A : A ;
-fun cerous_A : A ;
-fun chelicerous_A : A ;
-fun ulcerous_A : A ;
-fun cancerous_A : A ;
-fun precancerous_A : A ;
-fun slanderous_A : A ;
-fun ponderous_A : A ;
-fun thunderous_A : A ;
-fun murderous_A : A ;
-fun calciferous_A : A ;
-fun vociferous_A : A ;
-fun muciferous_A : A ;
-fun cruciferous_A : A ;
-fun splendiferous_A : A ;
-fun saliferous_A : A ;
-fun cheliferous_A : A ;
-fun fossiliferous_A : A ;
-fun umbelliferous_A : A ;
-fun granuliferous_A : A ;
-fun chyliferous_A : A ;
-fun gemmiferous_A : A ;
-fun seminiferous_A : A ;
-fun aluminiferous_A : A ;
-fun carboniferous_A : A ;
-fun coniferous_A : A ;
-fun stoloniferous_A : A ;
-fun nectariferous_A : A ;
-fun aeriferous_A : A ;
-fun odoriferous_A : A ;
-fun auriferous_A : A ;
-fun ossiferous_A : A ;
-fun argentiferous_A : A ;
-fun amentiferous_A : A ;
-fun pestiferous_A : A ;
-fun aquiferous_A : A ;
-fun dangerous_A : A ;
-fun treacherous_A : A ;
-fun lecherous_A : A ;
-fun cankerous_A : A ;
-fun cantankerous_A : A ;
-fun tetramerous_A : A ;
-fun pentamerous_A : A ;
-fun allomerous_A : A ;
-fun numerous_A : A ;
-fun generous_A : A ;
-fun ungenerous_A : A ;
-fun overgenerous_A : A ;
-fun onerous_A : A ;
-fun obstreperous_A : A ;
-fun prosperous_A : A ;
-fun serous_A : A ;
-fun adulterous_A : A ;
-fun apterous_A : A ;
-fun dipterous_A : A ;
-fun mecopterous_A : A ;
-fun hymenopterous_A : A ;
-fun brachypterous_A : A ;
-fun boisterous_A : A ;
-fun preposterous_A : A ;
-fun dexterous_A : A ;
-fun cadaverous_A : A ;
-fun desirous_A : A ;
-fun undesirous_A : A ;
-fun chivalrous_A : A ;
-fun decorous_A : A ;
-fun indecorous_A : A ;
-fun rancorous_A : A ;
-fun odorous_A : A ;
-fun malodorous_A : A ;
-fun rigorous_A : A ;
-fun vigorous_A : A ;
-fun clangorous_A : A ;
-fun ichorous_A : A ;
-fun phosphorous_A : A ;
-fun valorous_A : A ;
-fun dolorous_A : A ;
-fun amorous_A : A ;
-fun clamorous_A : A ;
-fun glamorous_A : A ;
-fun timorous_A : A ;
-fun humorous_A : A ;
-fun canorous_A : A ;
-fun sonorous_A : A ;
-fun porous_A : A ;
-fun vaporous_A : A ;
-fun nonporous_A : A ;
-fun basidiosporous_A : A ;
-fun homosporous_A : A ;
-fun carposporous_A : A ;
-fun heterosporous_A : A ;
-fun traitorous_A : A ;
-fun stertorous_A : A ;
-fun languorous_A : A ;
-fun herbivorous_A : A ;
-fun baccivorous_A : A ;
-fun piscivorous_A : A ;
-fun omnivorous_A : A ;
-fun carnivorous_A : A ;
-fun apivorous_A : A ;
-fun insectivorous_A : A ;
-fun leprous_A : A ;
-fun ferrous_A : A ;
-fun idolatrous_A : A ;
-fun bibliolatrous_A : A ;
-fun petrous_A : A ;
-fun citrous_A : A ;
-fun nitrous_A : A ;
-fun disastrous_A : A ;
-fun estrous_A : A ;
-fun diestrous_A : A ;
-fun anestrous_A : A ;
-fun monestrous_A : A ;
-fun polyestrous_A : A ;
-fun monstrous_A : A ;
-fun lustrous_A : A ;
-fun dextrous_A : A ;
-fun ambidextrous_A : A ;
-fun aurous_A : A ;
-fun sulfurous_A : A ;
-fun sulphurous_A : A ;
-fun murmurous_A : A ;
-fun anurous_A : A ;
-fun dolourous_A : A ;
-fun venturous_A : A ;
-fun adventurous_A : A ;
-fun unadventurous_A : A ;
-fun rapturous_A : A ;
-fun brachyurous_A : A ;
-fun edematous_A : A ;
-fun erythematous_A : A ;
-fun emphysematous_A : A ;
-fun angiomatous_A : A ;
-fun granulomatous_A : A ;
-fun carcinomatous_A : A ;
-fun adenocarcinomatous_A : A ;
-fun atheromatous_A : A ;
-fun achromatous_A : A ;
-fun neuromatous_A : A ;
-fun scotomatous_A : A ;
-fun stomatous_A : A ;
-fun astomatous_A : A ;
-fun rhizomatous_A : A ;
-fun pachydermatous_A : A ;
-fun ascomycetous_A : A ;
-fun discomycetous_A : A ;
-fun basidiomycetous_A : A ;
-fun covetous_A : A ;
-fun felicitous_A : A ;
-fun infelicitous_A : A ;
-fun solicitous_A : A ;
-fun oversolicitous_A : A ;
-fun calamitous_A : A ;
-fun precipitous_A : A ;
-fun serendipitous_A : A ;
-fun alacritous_A : A ;
-fun necessitous_A : A ;
-fun circuitous_A : A ;
-fun ubiquitous_A : A ;
-fun iniquitous_A : A ;
-fun gratuitous_A : A ;
-fun fortuitous_A : A ;
-fun acclivitous_A : A ;
-fun declivitous_A : A ;
-fun argentous_A : A ;
-fun filamentous_A : A ;
-fun momentous_A : A ;
-fun jumentous_A : A ;
-fun portentous_A : A ;
-fun riotous_A : A ;
-fun vacuous_A : A ;
-fun conspicuous_A : A ;
-fun inconspicuous_A : A ;
-fun perspicuous_A : A ;
-fun innocuous_A : A ;
-fun promiscuous_A : A ;
-fun deciduous_A : A ;
-fun assiduous_A : A ;
-fun arduous_A : A ;
-fun ambiguous_A : A ;
-fun unambiguous_A : A ;
-fun contiguous_A : A ;
-fun exiguous_A : A ;
-fun mellifluous_A : A ;
-fun superfluous_A : A ;
-fun ingenuous_A : A ;
-fun disingenuous_A : A ;
-fun strenuous_A : A ;
-fun tenuous_A : A ;
-fun sinuous_A : A ;
-fun continuous_A : A ;
-fun discontinuous_A : A ;
-fun cernuous_A : A ;
-fun congruous_A : A ;
-fun incongruous_A : A ;
-fun sensuous_A : A ;
-fun fatuous_A : A ;
-fun anfractuous_A : A ;
-fun unctuous_A : A ;
-fun impetuous_A : A ;
-fun spirituous_A : A ;
-fun tumultuous_A : A ;
-fun sumptuous_A : A ;
-fun presumptuous_A : A ;
-fun voluptuous_A : A ;
-fun virtuous_A : A ;
-fun tortuous_A : A ;
-fun incestuous_A : A ;
-fun tempestuous_A : A ;
-fun flexuous_A : A ;
-fun mischievous_A : A ;
-fun grievous_A : A ;
-fun nervous_A : A ;
-fun overnervous_A : A ;
-fun joyous_A : A ;
-fun emeritus_A : A ;
-fun lengthways_A : A ;
-fun left_A : A ;
-fun last_A : A ;
-fun neat_A : A ;
-fun great_A : A ;
-fun fat_A : A ;
-fun flat_A : A ;
-fun pat_A : A ;
-fun strict_A : A ;
-fun fleet_A : A ;
-fun sweet_A : A ;
-fun quiet_A : A ;
-fun wet_A : A ;
-fun daft_A : A ;
-fun cleft_A : A ;
-fun swift_A : A ;
-fun soft_A : A ;
-fun light_A : A ;
-fun slight_A : A ;
-fun bright_A : A ;
-fun tight_A : A ;
-fun fit_A : A ;
-fun pleasant_A : A ;
-fun truant_A : A ;
-fun pent_A : A ;
-fun faint_A : A ;
-fun quaint_A : A ;
-fun blunt_A : A ;
-fun hot_A : A ;
-fun apt_A : A ;
-fun kempt_A : A ;
-fun smart_A : A ;
-fun dirt_A : A ;
-fun short_A : A ;
-fun port_A : A ;
-fun East_A : A ;
-fun fast_A : A ;
-fun West_A : A ;
-fun best_A : A ;
-fun deist_A : A ;
-fun theist_A : A ;
-fun worst_A : A ;
-fun just_A : A ;
-fun rust_A : A ;
-fun taut_A : A ;
-fun out_A : A ;
-fun stout_A : A ;
-fun brut_A : A ;
-fun next_A : A ;
-fun 'hors de combat_A' : A ;
-fun wildcat_A : A ;
-fun offbeat_A : A ;
-fun nonfat_A : A ;
-fun mat_A : A ;
-fun afloat_A : A ;
-fun 'cut-throat_A' : A ;
-fun cutthroat_A : A ;
-fun squat_A : A ;
-fun 'matter-of-fact_A' : A ;
-fun compact_A : A ;
-fun abstract_A : A ;
-fun semiabstract_A : A ;
-fun intact_A : A ;
-fun exact_A : A ;
-fun inexact_A : A ;
-fun perfect_A : A ;
-fun 'word-perfect_A' : A ;
-fun imperfect_A : A ;
-fun pluperfect_A : A ;
-fun abject_A : A ;
-fun subject_A : A ;
-fun elect_A : A ;
-fun select_A : A ;
-fun collect_A : A ;
-fun circumspect_A : A ;
-fun suspect_A : A ;
-fun erect_A : A ;
-fun unerect_A : A ;
-fun direct_A : A ;
-fun indirect_A : A ;
-fun correct_A : A ;
-fun incorrect_A : A ;
-fun pinnatisect_A : A ;
-fun derelict_A : A ;
-fun sacrosanct_A : A ;
-fun succinct_A : A ;
-fun distinct_A : A ;
-fun indistinct_A : A ;
-fun instinct_A : A ;
-fun extinct_A : A ;
-fun defunct_A : A ;
-fun adjunct_A : A ;
-fun conjunct_A : A ;
-fun disjunct_A : A ;
-fun dulcet_A : A ;
-fun meet_A : A ;
-fun discreet_A : A ;
-fun indiscreet_A : A ;
-fun 'off-street_A' : A ;
-fun 'bitter-sweet_A' : A ;
-fun unsweet_A : A ;
-fun bittersweet_A : A ;
-fun unquiet_A : A ;
-fun Soviet_A : A ;
-fun 'down-market_A' : A ;
-fun 'up-market_A' : A ;
-fun downmarket_A : A ;
-fun upmarket_A : A ;
-fun ultraviolet_A : A ;
-fun scarlet_A : A ;
-fun net_A : A ;
-fun brunet_A : A ;
-fun secret_A : A ;
-fun 'close-set_A' : A ;
-fun 'thick-set_A' : A ;
-fun 'well-set_A' : A ;
-fun 'sharp-set_A' : A ;
-fun preset_A : A ;
-fun thickset_A : A ;
-fun quickset_A : A ;
-fun sunset_A : A ;
-fun closet_A : A ;
-fun russet_A : A ;
-fun lowset_A : A ;
-fun velvet_A : A ;
-fun 'anti-aircraft_A' : A ;
-fun antiaircraft_A : A ;
-fun deft_A : A ;
-fun bereft_A : A ;
-fun adrift_A : A ;
-fun straight_A : A ;
-fun middleweight_A : A ;
-fun underweight_A : A ;
-fun overweight_A : A ;
-fun lightweight_A : A ;
-fun alight_A : A ;
-fun 'top-flight_A' : A ;
-fun overnight_A : A ;
-fun right_A : A ;
-fun forthright_A : A ;
-fun alright_A : A ;
-fun downright_A : A ;
-fun upright_A : A ;
-fun outright_A : A ;
-fun 'skin-tight_A' : A ;
-fun skintight_A : A ;
-fun uptight_A : A ;
-fun watertight_A : A ;
-fun airtight_A : A ;
-fun 'good-for-naught_A' : A ;
-fun fraught_A : A ;
-fun distraught_A : A ;
-fun inwrought_A : A ;
-fun overwrought_A : A ;
-fun 'au fait_A' : A ;
-fun strait_A : A ;
-fun distrait_A : A ;
-fun tacit_A : A ;
-fun licit_A : A ;
-fun illicit_A : A ;
-fun implicit_A : A ;
-fun explicit_A : A ;
-fun counterfeit_A : A ;
-fun unfit_A : A ;
-fun nonprofit_A : A ;
-fun floodlit_A : A ;
-fun twilit_A : A ;
-fun moonlit_A : A ;
-fun unlit_A : A ;
-fun sunlit_A : A ;
-fun lamplit_A : A ;
-fun starlit_A : A ;
-fun 'well-knit_A' : A ;
-fun adroit_A : A ;
-fun maladroit_A : A ;
-fun decrepit_A : A ;
-fun preterit_A : A ;
-fun 'safe-deposit_A' : A ;
-fun halt_A : A ;
-fun salt_A : A ;
-fun heartfelt_A : A ;
-fun unspoilt_A : A ;
-fun atilt_A : A ;
-fun 'square-built_A' : A ;
-fun 'purpose-built_A' : A ;
-fun 'custom-built_A' : A ;
-fun 'clinker-built_A' : A ;
-fun 'jerry-built_A' : A ;
-fun inbuilt_A : A ;
-fun occult_A : A ;
-fun difficult_A : A ;
-fun adult_A : A ;
-fun undreamt_A : A ;
-fun vacant_A : A ;
-fun impeccant_A : A ;
-fun mendicant_A : A ;
-fun significant_A : A ;
-fun insignificant_A : A ;
-fun nonsignificant_A : A ;
-fun intoxicant_A : A ;
-fun scant_A : A ;
-fun ascendant_A : A ;
-fun descendant_A : A ;
-fun appendant_A : A ;
-fun attendant_A : A ;
-fun abundant_A : A ;
-fun superabundant_A : A ;
-fun overabundant_A : A ;
-fun redundant_A : A ;
-fun verdant_A : A ;
-fun accordant_A : A ;
-fun concordant_A : A ;
-fun discordant_A : A ;
-fun mordant_A : A ;
-fun 'well-meant_A' : A ;
-fun permeant_A : A ;
-fun faineant_A : A ;
-fun recreant_A : A ;
-fun bouffant_A : A ;
-fun extravagant_A : A ;
-fun elegant_A : A ;
-fun inelegant_A : A ;
-fun arrogant_A : A ;
-fun trenchant_A : A ;
-fun couchant_A : A ;
-fun triumphant_A : A ;
-fun naiant_A : A ;
-fun renunciant_A : A ;
-fun insouciant_A : A ;
-fun radiant_A : A ;
-fun defiant_A : A ;
-fun allegiant_A : A ;
-fun valiant_A : A ;
-fun overvaliant_A : A ;
-fun reliant_A : A ;
-fun 'self-reliant_A' : A ;
-fun brilliant_A : A ;
-fun pliant_A : A ;
-fun compliant_A : A ;
-fun suppliant_A : A ;
-fun variant_A : A ;
-fun invariant_A : A ;
-fun covariant_A : A ;
-fun euphoriant_A : A ;
-fun luxuriant_A : A ;
-fun deviant_A : A ;
-fun nonchalant_A : A ;
-fun inhalant_A : A ;
-fun sibilant_A : A ;
-fun jubilant_A : A ;
-fun vigilant_A : A ;
-fun unvigilant_A : A ;
-fun gallant_A : A ;
-fun topgallant_A : A ;
-fun propellant_A : A ;
-fun appellant_A : A ;
-fun vacillant_A : A ;
-fun aslant_A : A ;
-fun ambulant_A : A ;
-fun stimulant_A : A ;
-fun petulant_A : A ;
-fun adamant_A : A ;
-fun clamant_A : A ;
-fun dormant_A : A ;
-fun revenant_A : A ;
-fun stagnant_A : A ;
-fun regnant_A : A ;
-fun pregnant_A : A ;
-fun nonpregnant_A : A ;
-fun indignant_A : A ;
-fun malignant_A : A ;
-fun benignant_A : A ;
-fun poignant_A : A ;
-fun repugnant_A : A ;
-fun recombinant_A : A ;
-fun fulminant_A : A ;
-fun dominant_A : A ;
-fun predominant_A : A ;
-fun determinant_A : A ;
-fun ruminant_A : A ;
-fun nonruminant_A : A ;
-fun resonant_A : A ;
-fun consonant_A : A ;
-fun assonant_A : A ;
-fun dissonant_A : A ;
-fun discrepant_A : A ;
-fun anticipant_A : A ;
-fun rampant_A : A ;
-fun flippant_A : A ;
-fun vibrant_A : A ;
-fun reverberant_A : A ;
-fun unreverberant_A : A ;
-fun protuberant_A : A ;
-fun exuberant_A : A ;
-fun preponderant_A : A ;
-fun refrigerant_A : A ;
-fun tolerant_A : A ;
-fun intolerant_A : A ;
-fun itinerant_A : A ;
-fun operant_A : A ;
-fun flagrant_A : A ;
-fun fragrant_A : A ;
-fun vagrant_A : A ;
-fun migrant_A : A ;
-fun aspirant_A : A ;
-fun corroborant_A : A ;
-fun ignorant_A : A ;
-fun arrant_A : A ;
-fun errant_A : A ;
-fun aberrant_A : A ;
-fun recalcitrant_A : A ;
-fun ministrant_A : A ;
-fun nurturant_A : A ;
-fun unpleasant_A : A ;
-fun complaisant_A : A ;
-fun brisant_A : A ;
-fun conversant_A : A ;
-fun incessant_A : A ;
-fun depressant_A : A ;
-fun puissant_A : A ;
-fun impuissant_A : A ;
-fun recusant_A : A ;
-fun combatant_A : A ;
-fun noncombatant_A : A ;
-fun blatant_A : A ;
-fun supernatant_A : A ;
-fun disinfectant_A : A ;
-fun expectant_A : A ;
-fun reluctant_A : A ;
-fun exorbitant_A : A ;
-fun excitant_A : A ;
-fun militant_A : A ;
-fun concomitant_A : A ;
-fun palpitant_A : A ;
-fun irritant_A : A ;
-fun hesitant_A : A ;
-fun resultant_A : A ;
-fun exultant_A : A ;
-fun repentant_A : A ;
-fun unrepentant_A : A ;
-fun important_A : A ;
-fun 'self-important_A' : A ;
-fun unimportant_A : A ;
-fun protestant_A : A ;
-fun distant_A : A ;
-fun equidistant_A : A ;
-fun resistant_A : A ;
-fun nonresistant_A : A ;
-fun instant_A : A ;
-fun constant_A : A ;
-fun inconstant_A : A ;
-fun mutant_A : A ;
-fun extant_A : A ;
-fun nonextant_A : A ;
-fun piquant_A : A ;
-fun clinquant_A : A ;
-fun pursuant_A : A ;
-fun relevant_A : A ;
-fun irrelevant_A : A ;
-fun observant_A : A ;
-fun nonobservant_A : A ;
-fun unobservant_A : A ;
-fun adjuvant_A : A ;
-fun relaxant_A : A ;
-fun abeyant_A : A ;
-fun flamboyant_A : A ;
-fun buoyant_A : A ;
-fun clairvoyant_A : A ;
-fun cognizant_A : A ;
-fun bent_A : A ;
-fun lambent_A : A ;
-fun accumbent_A : A ;
-fun recumbent_A : A ;
-fun incumbent_A : A ;
-fun superincumbent_A : A ;
-fun procumbent_A : A ;
-fun unbent_A : A ;
-fun absorbent_A : A ;
-fun nonabsorbent_A : A ;
-fun adsorbent_A : A ;
-fun nonadsorbent_A : A ;
-fun subjacent_A : A ;
-fun adjacent_A : A ;
-fun nonadjacent_A : A ;
-fun superjacent_A : A ;
-fun complacent_A : A ;
-fun decent_A : A ;
-fun indecent_A : A ;
-fun recent_A : A ;
-fun maleficent_A : A ;
-fun beneficent_A : A ;
-fun magnificent_A : A ;
-fun munificent_A : A ;
-fun reticent_A : A ;
-fun demulcent_A : A ;
-fun nocent_A : A ;
-fun innocent_A : A ;
-fun nascent_A : A ;
-fun renascent_A : A ;
-fun albescent_A : A ;
-fun pubescent_A : A ;
-fun prepubescent_A : A ;
-fun iridescent_A : A ;
-fun candescent_A : A ;
-fun incandescent_A : A ;
-fun recrudescent_A : A ;
-fun quiescent_A : A ;
-fun acquiescent_A : A ;
-fun decalescent_A : A ;
-fun alkalescent_A : A ;
-fun coalescent_A : A ;
-fun opalescent_A : A ;
-fun convalescent_A : A ;
-fun adolescent_A : A ;
-fun obsolescent_A : A ;
-fun caulescent_A : A ;
-fun acaulescent_A : A ;
-fun tumescent_A : A ;
-fun canescent_A : A ;
-fun evanescent_A : A ;
-fun senescent_A : A ;
-fun ignescent_A : A ;
-fun luminescent_A : A ;
-fun chemiluminescent_A : A ;
-fun bioluminescent_A : A ;
-fun glabrescent_A : A ;
-fun excrescent_A : A ;
-fun phosphorescent_A : A ;
-fun efflorescent_A : A ;
-fun fluorescent_A : A ;
-fun autofluorescent_A : A ;
-fun putrescent_A : A ;
-fun suffrutescent_A : A ;
-fun liquescent_A : A ;
-fun deliquescent_A : A ;
-fun defervescent_A : A ;
-fun effervescent_A : A ;
-fun noneffervescent_A : A ;
-fun dehiscent_A : A ;
-fun indehiscent_A : A ;
-fun reminiscent_A : A ;
-fun abducent_A : A ;
-fun adducent_A : A ;
-fun lucent_A : A ;
-fun noctilucent_A : A ;
-fun radiolucent_A : A ;
-fun translucent_A : A ;
-fun decadent_A : A ;
-fun precedent_A : A ;
-fun antecedent_A : A ;
-fun incident_A : A ;
-fun coincident_A : A ;
-fun diffident_A : A ;
-fun confident_A : A ;
-fun 'self-confident_A' : A ;
-fun overconfident_A : A ;
-fun strident_A : A ;
-fun resident_A : A ;
-fun nonresident_A : A ;
-fun dissident_A : A ;
-fun evident_A : A ;
-fun 'self-evident_A' : A ;
-fun provident_A : A ;
-fun improvident_A : A ;
-fun scandent_A : A ;
-fun transcendent_A : A ;
-fun resplendent_A : A ;
-fun pendent_A : A ;
-fun dependent_A : A ;
-fun independent_A : A ;
-fun interdependent_A : A ;
-fun despondent_A : A ;
-fun ardent_A : A ;
-fun impudent_A : A ;
-fun prudent_A : A ;
-fun imprudent_A : A ;
-fun regent_A : A ;
-fun indigent_A : A ;
-fun negligent_A : A ;
-fun diligent_A : A ;
-fun intelligent_A : A ;
-fun unintelligent_A : A ;
-fun intransigent_A : A ;
-fun exigent_A : A ;
-fun indulgent_A : A ;
-fun 'self-indulgent_A' : A ;
-fun nonindulgent_A : A ;
-fun overindulgent_A : A ;
-fun refulgent_A : A ;
-fun effulgent_A : A ;
-fun plangent_A : A ;
-fun birefringent_A : A ;
-fun stringent_A : A ;
-fun astringent_A : A ;
-fun nonastringent_A : A ;
-fun contingent_A : A ;
-fun pungent_A : A ;
-fun cogent_A : A ;
-fun argent_A : A ;
-fun emergent_A : A ;
-fun detergent_A : A ;
-fun divergent_A : A ;
-fun convergent_A : A ;
-fun nonconvergent_A : A ;
-fun urgent_A : A ;
-fun resurgent_A : A ;
-fun insurgent_A : A ;
-fun counterinsurgent_A : A ;
-fun assurgent_A : A ;
-fun abient_A : A ;
-fun ambient_A : A ;
-fun mutafacient_A : A ;
-fun absorbefacient_A : A ;
-fun calefacient_A : A ;
-fun calorifacient_A : A ;
-fun abortifacient_A : A ;
-fun deficient_A : A ;
-fun immunodeficient_A : A ;
-fun efficient_A : A ;
-fun inefficient_A : A ;
-fun sufficient_A : A ;
-fun 'self-sufficient_A' : A ;
-fun insufficient_A : A ;
-fun proficient_A : A ;
-fun ancient_A : A ;
-fun nescient_A : A ;
-fun prescient_A : A ;
-fun omniscient_A : A ;
-fun adient_A : A ;
-fun obedient_A : A ;
-fun disobedient_A : A ;
-fun expedient_A : A ;
-fun inexpedient_A : A ;
-fun salient_A : A ;
-fun resilient_A : A ;
-fun nonresilient_A : A ;
-fun dissilient_A : A ;
-fun ebullient_A : A ;
-fun lenient_A : A ;
-fun convenient_A : A ;
-fun inconvenient_A : A ;
-fun sapient_A : A ;
-fun incipient_A : A ;
-fun percipient_A : A ;
-fun aperient_A : A ;
-fun orient_A : A ;
-fun nutrient_A : A ;
-fun prurient_A : A ;
-fun parturient_A : A ;
-fun transient_A : A ;
-fun patient_A : A ;
-fun impatient_A : A ;
-fun sentient_A : A ;
-fun insentient_A : A ;
-fun assentient_A : A ;
-fun dissentient_A : A ;
-fun subservient_A : A ;
-fun valent_A : A ;
-fun tetravalent_A : A ;
-fun pentavalent_A : A ;
-fun prevalent_A : A ;
-fun bivalent_A : A ;
-fun ambivalent_A : A ;
-fun univalent_A : A ;
-fun trivalent_A : A ;
-fun multivalent_A : A ;
-fun equivalent_A : A ;
-fun nonequivalent_A : A ;
-fun covalent_A : A ;
-fun monovalent_A : A ;
-fun polyvalent_A : A ;
-fun silent_A : A ;
-fun pestilent_A : A ;
-fun excellent_A : A ;
-fun repellent_A : A ;
-fun impellent_A : A ;
-fun propellent_A : A ;
-fun redolent_A : A ;
-fun indolent_A : A ;
-fun condolent_A : A ;
-fun violent_A : A ;
-fun nonviolent_A : A ;
-fun somnolent_A : A ;
-fun insolent_A : A ;
-fun malevolent_A : A ;
-fun benevolent_A : A ;
-fun turbulent_A : A ;
-fun nonturbulent_A : A ;
-fun flocculent_A : A ;
-fun succulent_A : A ;
-fun feculent_A : A ;
-fun truculent_A : A ;
-fun fraudulent_A : A ;
-fun crapulent_A : A ;
-fun opulent_A : A ;
-fun corpulent_A : A ;
-fun virulent_A : A ;
-fun avirulent_A : A ;
-fun purulent_A : A ;
-fun nonpurulent_A : A ;
-fun mucopurulent_A : A ;
-fun flatulent_A : A ;
-fun vehement_A : A ;
-fun clement_A : A ;
-fun inclement_A : A ;
-fun immanent_A : A ;
-fun permanent_A : A ;
-fun impermanent_A : A ;
-fun eminent_A : A ;
-fun 'pre-eminent_A' : A ;
-fun imminent_A : A ;
-fun prominent_A : A ;
-fun continent_A : A ;
-fun incontinent_A : A ;
-fun pertinent_A : A ;
-fun impertinent_A : A ;
-fun abstinent_A : A ;
-fun component_A : A ;
-fun opponent_A : A ;
-fun unspent_A : A ;
-fun apparent_A : A ;
-fun unapparent_A : A ;
-fun transparent_A : A ;
-fun deferent_A : A ;
-fun referent_A : A ;
-fun coreferent_A : A ;
-fun afferent_A : A ;
-fun corticoafferent_A : A ;
-fun efferent_A : A ;
-fun corticoefferent_A : A ;
-fun different_A : A ;
-fun indifferent_A : A ;
-fun belligerent_A : A ;
-fun nonbelligerent_A : A ;
-fun adherent_A : A ;
-fun inherent_A : A ;
-fun coherent_A : A ;
-fun incoherent_A : A ;
-fun reverent_A : A ;
-fun irreverent_A : A ;
-fun besprent_A : A ;
-fun deterrent_A : A ;
-fun abhorrent_A : A ;
-fun current_A : A ;
-fun occurrent_A : A ;
-fun recurrent_A : A ;
-fun concurrent_A : A ;
-fun noncurrent_A : A ;
-fun comburent_A : A ;
-fun absent_A : A ;
-fun present_A : A ;
-fun omnipresent_A : A ;
-fun heavensent_A : A ;
-fun unsent_A : A ;
-fun latent_A : A ;
-fun patent_A : A ;
-fun competent_A : A ;
-fun incompetent_A : A ;
-fun immunocompetent_A : A ;
-fun appetent_A : A ;
-fun penitent_A : A ;
-fun impenitent_A : A ;
-fun intent_A : A ;
-fun content_A : A ;
-fun malcontent_A : A ;
-fun potent_A : A ;
-fun omnipotent_A : A ;
-fun multipotent_A : A ;
-fun totipotent_A : A ;
-fun equipotent_A : A ;
-fun nilpotent_A : A ;
-fun idempotent_A : A ;
-fun impotent_A : A ;
-fun advertent_A : A ;
-fun inadvertent_A : A ;
-fun insistent_A : A ;
-fun consistent_A : A ;
-fun inconsistent_A : A ;
-fun persistent_A : A ;
-fun existent_A : A ;
-fun 'pre-existent_A' : A ;
-fun preexistent_A : A ;
-fun nonexistent_A : A ;
-fun coexistent_A : A ;
-fun remittent_A : A ;
-fun intermittent_A : A ;
-fun fluent_A : A ;
-fun affluent_A : A ;
-fun effluent_A : A ;
-fun confluent_A : A ;
-fun frequent_A : A ;
-fun infrequent_A : A ;
-fun sequent_A : A ;
-fun subsequent_A : A ;
-fun consequent_A : A ;
-fun inconsequent_A : A ;
-fun delinquent_A : A ;
-fun eloquent_A : A ;
-fun grandiloquent_A : A ;
-fun magniloquent_A : A ;
-fun congruent_A : A ;
-fun incongruent_A : A ;
-fun constituent_A : A ;
-fun solvent_A : A ;
-fun insolvent_A : A ;
-fun fervent_A : A ;
-fun skint_A : A ;
-fun joint_A : A ;
-fun conjoint_A : A ;
-fun disjoint_A : A ;
-fun embonpoint_A : A ;
-fun upfront_A : A ;
-fun bowfront_A : A ;
-fun wont_A : A ;
-fun sunburnt_A : A ;
-fun gaunt_A : A ;
-fun transeunt_A : A ;
-fun paramount_A : A ;
-fun tantamount_A : A ;
-fun 'red-hot_A' : A ;
-fun 'white-hot_A' : A ;
-fun 'baking-hot_A' : A ;
-fun bloodshot_A : A ;
-fun scattershot_A : A ;
-fun cypriot_A : A ;
-fun polyglot_A : A ;
-fun afoot_A : A ;
-fun barefoot_A : A ;
-fun moot_A : A ;
-fun aliquot_A : A ;
-fun inapt_A : A ;
-fun rapt_A : A ;
-fun adept_A : A ;
-fun inept_A : A ;
-fun 'tempest-swept_A' : A ;
-fun windswept_A : A ;
-fun backswept_A : A ;
-fun unswept_A : A ;
-fun subscript_A : A ;
-fun adscript_A : A ;
-fun nondescript_A : A ;
-fun superscript_A : A ;
-fun unkempt_A : A ;
-fun exempt_A : A ;
-fun nonexempt_A : A ;
-fun prompt_A : A ;
-fun copt_A : A ;
-fun abrupt_A : A ;
-fun bankrupt_A : A ;
-fun corrupt_A : A ;
-fun incorrupt_A : A ;
-fun sweetheart_A : A ;
-fun 'four-part_A' : A ;
-fun tart_A : A ;
-fun upstart_A : A ;
-fun stalwart_A : A ;
-fun alert_A : A ;
-fun unalert_A : A ;
-fun inert_A : A ;
-fun pert_A : A ;
-fun expert_A : A ;
-fun inexpert_A : A ;
-fun desert_A : A ;
-fun overt_A : A ;
-fun covert_A : A ;
-fun extrovert_A : A ;
-fun 'sea-girt_A' : A ;
-fun seagirt_A : A ;
-fun amort_A : A ;
-fun curt_A : A ;
-fun unhurt_A : A ;
-fun 'die-cast_A' : A ;
-fun precast_A : A ;
-fun opencast_A : A ;
-fun downcast_A : A ;
-fun overcast_A : A ;
-fun outcast_A : A ;
-fun southeast_A : A ;
-fun steadfast_A : A ;
-fun bedfast_A : A ;
-fun cragfast_A : A ;
-fun colorfast_A : A ;
-fun aghast_A : A ;
-fun roast_A : A ;
-fun past_A : A ;
-fun vast_A : A ;
-fun 'second-best_A' : A ;
-fun modest_A : A ;
-fun immodest_A : A ;
-fun overmodest_A : A ;
-fun manifest_A : A ;
-fun furthest_A : A ;
-fun honest_A : A ;
-fun dishonest_A : A ;
-fun earnest_A : A ;
-fun greatest_A : A ;
-fun latest_A : A ;
-fun southwest_A : A ;
-fun cubist_A : A ;
-fun racist_A : A ;
-fun neoclassicist_A : A ;
-fun fascist_A : A ;
-fun propagandist_A : A ;
-fun methodist_A : A ;
-fun atheist_A : A ;
-fun pantheist_A : A ;
-fun socialist_A : A ;
-fun existentialist_A : A ;
-fun minimalist_A : A ;
-fun nationalist_A : A ;
-fun internationalist_A : A ;
-fun rationalist_A : A ;
-fun operationalist_A : A ;
-fun unilateralist_A : A ;
-fun centralist_A : A ;
-fun supernaturalist_A : A ;
-fun fatalist_A : A ;
-fun capitalist_A : A ;
-fun fundamentalist_A : A ;
-fun individualist_A : A ;
-fun pointillist_A : A ;
-fun extremist_A : A ;
-fun animist_A : A ;
-fun conformist_A : A ;
-fun nonconformist_A : A ;
-fun shamanist_A : A ;
-fun humanist_A : A ;
-fun feminist_A : A ;
-fun expansionist_A : A ;
-fun impressionist_A : A ;
-fun expressionist_A : A ;
-fun isolationist_A : A ;
-fun reductionist_A : A ;
-fun deconstructionist_A : A ;
-fun intuitionist_A : A ;
-fun zionist_A : A ;
-fun canonist_A : A ;
-fun postmodernist_A : A ;
-fun communist_A : A ;
-fun opportunist_A : A ;
-fun moist_A : A ;
-fun papist_A : A ;
-fun welfarist_A : A ;
-fun czarist_A : A ;
-fun centrist_A : A ;
-fun corporatist_A : A ;
-fun leftist_A : A ;
-fun rightist_A : A ;
-fun baptist_A : A ;
-fun absolutist_A : A ;
-fun nativist_A : A ;
-fun activist_A : A ;
-fun collectivist_A : A ;
-fun positivist_A : A ;
-fun sexist_A : A ;
-fun unbeknownst_A : A ;
-fun midmost_A : A ;
-fun hindmost_A : A ;
-fun middlemost_A : A ;
-fun foremost_A : A ;
-fun backmost_A : A ;
-fun bottommost_A : A ;
-fun inmost_A : A ;
-fun northernmost_A : A ;
-fun southernmost_A : A ;
-fun easternmost_A : A ;
-fun westernmost_A : A ;
-fun topmost_A : A ;
-fun upmost_A : A ;
-fun rearmost_A : A ;
-fun nethermost_A : A ;
-fun farthermost_A : A ;
-fun furthermost_A : A ;
-fun innermost_A : A ;
-fun uppermost_A : A ;
-fun aftermost_A : A ;
-fun uttermost_A : A ;
-fun outermost_A : A ;
-fun lowermost_A : A ;
-fun leftmost_A : A ;
-fun rightmost_A : A ;
-fun utmost_A : A ;
-fun outmost_A : A ;
-fun headfirst_A : A ;
-fun athirst_A : A ;
-fun curst_A : A ;
-fun accurst_A : A ;
-fun robust_A : A ;
-fun adust_A : A ;
-fun august_A : A ;
-fun unjust_A : A ;
-fun amethyst_A : A ;
-fun matt_A : A ;
-fun nett_A : A ;
-fun 'close-cut_A' : A ;
-fun 'clean-cut_A' : A ;
-fun uncut_A : A ;
-fun crosscut_A : A ;
-fun chestnut_A : A ;
-fun 'passing-out_A' : A ;
-fun 'long-drawn-out_A' : A ;
-fun 'way-out_A' : A ;
-fun roundabout_A : A ;
-fun knockabout_A : A ;
-fun takeout_A : A ;
-fun knockout_A : A ;
-fun devout_A : A ;
-fun kaput_A : A ;
-fun u_A : A ;
-fun 'non-u_A' : A ;
-fun hindu_A : A ;
-fun urdu_A : A ;
-fun 'cordon bleu_A' : A ;
-fun parvenu_A : A ;
-fun bijou_A : A ;
-fun bantu_A : A ;
-fun impromptu_A : A ;
-fun slav_A : A ;
-fun yugoslav_A : A ;
-fun straw_A : A ;
-fun few_A : A ;
-fun new_A : A ;
-fun low_A : A ;
-fun shallow_A : A ;
-fun sallow_A : A ;
-fun mellow_A : A ;
-fun yellow_A : A ;
-fun slow_A : A ;
-fun narrow_A : A ;
-fun raw_A : A ;
-fun skew_A : A ;
-fun askew_A : A ;
-fun 'brand-new_A' : A ;
-fun 'bran-new_A' : A ;
-fun hebrew_A : A ;
-fun aglow_A : A ;
-fun callow_A : A ;
-fun fallow_A : A ;
-fun hollow_A : A ;
-fun highbrow_A : A ;
-fun lowbrow_A : A ;
-fun lax_A : A ;
-fun reflex_A : A ;
-fun retroflex_A : A ;
-fun triplex_A : A ;
-fun multiplex_A : A ;
-fun simplex_A : A ;
-fun complex_A : A ;
-fun duplex_A : A ;
-fun unisex_A : A ;
-fun convex_A : A ;
-fun biconvex_A : A ;
-fun planoconvex_A : A ;
-fun prolix_A : A ;
-fun manx_A : A ;
-fun orthodox_A : A ;
-fun unorthodox_A : A ;
-fun heterodox_A : A ;
-fun gay_A : A ;
-fun stray_A : A ;
-fun gray_A : A ;
-fun scabby_A : A ;
-fun shabby_A : A ;
-fun flabby_A : A ;
-fun blebby_A : A ;
-fun knobby_A : A ;
-fun chubby_A : A ;
-fun scrubby_A : A ;
-fun grubby_A : A ;
-fun shrubby_A : A ;
-fun tubby_A : A ;
-fun stubby_A : A ;
-fun standby_A : A ;
-fun lacy_A : A ;
-fun racy_A : A ;
-fun fleecy_A : A ;
-fun icy_A : A ;
-fun spicy_A : A ;
-fun juicy_A : A ;
-fun fancy_A : A ;
-fun bouncy_A : A ;
-fun saucy_A : A ;
-fun heady_A : A ;
-fun ready_A : A ;
-fun steady_A : A ;
-fun shady_A : A ;
-fun faddy_A : A ;
-fun giddy_A : A ;
-fun shoddy_A : A ;
-fun muddy_A : A ;
-fun ruddy_A : A ;
-fun cruddy_A : A ;
-fun needy_A : A ;
-fun speedy_A : A ;
-fun reedy_A : A ;
-fun greedy_A : A ;
-fun seedy_A : A ;
-fun weedy_A : A ;
-fun tweedy_A : A ;
-fun tidy_A : A ;
-fun untidy_A : A ;
-fun wieldy_A : A ;
-fun moldy_A : A ;
-fun mouldy_A : A ;
-fun bandy_A : A ;
-fun handy_A : A ;
-fun randy_A : A ;
-fun sandy_A : A ;
-fun trendy_A : A ;
-fun windy_A : A ;
-fun bloody_A : A ;
-fun moody_A : A ;
-fun broody_A : A ;
-fun woody_A : A ;
-fun hardy_A : A ;
-fun tardy_A : A ;
-fun wordy_A : A ;
-fun sturdy_A : A ;
-fun gaudy_A : A ;
-fun cloudy_A : A ;
-fun bawdy_A : A ;
-fun dowdy_A : A ;
-fun rowdy_A : A ;
-fun pricey_A : A ;
-fun key_A : A ;
-fun gooey_A : A ;
-fun ropey_A : A ;
-fun grey_A : A ;
-fun leafy_A : A ;
-fun beefy_A : A ;
-fun reefy_A : A ;
-fun chaffy_A : A ;
-fun niffy_A : A ;
-fun sniffy_A : A ;
-fun huffy_A : A ;
-fun fluffy_A : A ;
-fun puffy_A : A ;
-fun scruffy_A : A ;
-fun stuffy_A : A ;
-fun comfy_A : A ;
-fun goofy_A : A ;
-fun scurfy_A : A ;
-fun edgy_A : A ;
-fun sedgy_A : A ;
-fun podgy_A : A ;
-fun stodgy_A : A ;
-fun pudgy_A : A ;
-fun shaggy_A : A ;
-fun jaggy_A : A ;
-fun craggy_A : A ;
-fun scraggy_A : A ;
-fun piggy_A : A ;
-fun twiggy_A : A ;
-fun boggy_A : A ;
-fun foggy_A : A ;
-fun cloggy_A : A ;
-fun smoggy_A : A ;
-fun groggy_A : A ;
-fun soggy_A : A ;
-fun buggy_A : A ;
-fun fuggy_A : A ;
-fun muggy_A : A ;
-fun bilgy_A : A ;
-fun slangy_A : A ;
-fun mangy_A : A ;
-fun rangy_A : A ;
-fun tangy_A : A ;
-fun dingy_A : A ;
-fun mingy_A : A ;
-fun fringy_A : A ;
-fun springy_A : A ;
-fun stringy_A : A ;
-fun stingy_A : A ;
-fun spongy_A : A ;
-fun peachy_A : A ;
-fun preachy_A : A ;
-fun branchy_A : A ;
-fun paunchy_A : A ;
-fun raunchy_A : A ;
-fun bunchy_A : A ;
-fun starchy_A : A ;
-fun catchy_A : A ;
-fun patchy_A : A ;
-fun scratchy_A : A ;
-fun sketchy_A : A ;
-fun tetchy_A : A ;
-fun itchy_A : A ;
-fun bitchy_A : A ;
-fun pitchy_A : A ;
-fun botchy_A : A ;
-fun blotchy_A : A ;
-fun slouchy_A : A ;
-fun grouchy_A : A ;
-fun touchy_A : A ;
-fun doughy_A : A ;
-fun flashy_A : A ;
-fun splashy_A : A ;
-fun trashy_A : A ;
-fun squashy_A : A ;
-fun fleshy_A : A ;
-fun dishy_A : A ;
-fun fishy_A : A ;
-fun swishy_A : A ;
-fun marshy_A : A ;
-fun cushy_A : A ;
-fun plushy_A : A ;
-fun slushy_A : A ;
-fun mushy_A : A ;
-fun rushy_A : A ;
-fun shy_A : A ;
-fun lengthy_A : A ;
-fun pithy_A : A ;
-fun healthy_A : A ;
-fun stealthy_A : A ;
-fun wealthy_A : A ;
-fun filthy_A : A ;
-fun mothy_A : A ;
-fun toothy_A : A ;
-fun frothy_A : A ;
-fun earthy_A : A ;
-fun worthy_A : A ;
-fun leaky_A : A ;
-fun sneaky_A : A ;
-fun peaky_A : A ;
-fun creaky_A : A ;
-fun screaky_A : A ;
-fun freaky_A : A ;
-fun streaky_A : A ;
-fun squeaky_A : A ;
-fun shaky_A : A ;
-fun flaky_A : A ;
-fun snaky_A : A ;
-fun croaky_A : A ;
-fun braky_A : A ;
-fun tacky_A : A ;
-fun icky_A : A ;
-fun tricky_A : A ;
-fun sticky_A : A ;
-fun cocky_A : A ;
-fun rocky_A : A ;
-fun stocky_A : A ;
-fun lucky_A : A ;
-fun plucky_A : A ;
-fun mucky_A : A ;
-fun cheeky_A : A ;
-fun spiky_A : A ;
-fun chalky_A : A ;
-fun milky_A : A ;
-fun silky_A : A ;
-fun bulky_A : A ;
-fun sulky_A : A ;
-fun lanky_A : A ;
-fun manky_A : A ;
-fun cranky_A : A ;
-fun swanky_A : A ;
-fun inky_A : A ;
-fun dinky_A : A ;
-fun kinky_A : A ;
-fun funky_A : A ;
-fun chunky_A : A ;
-fun clunky_A : A ;
-fun spunky_A : A ;
-fun choky_A : A ;
-fun smoky_A : A ;
-fun spooky_A : A ;
-fun poky_A : A ;
-fun barky_A : A ;
-fun jerky_A : A ;
-fun perky_A : A ;
-fun murky_A : A ;
-fun pesky_A : A ;
-fun risky_A : A ;
-fun frisky_A : A ;
-fun dusky_A : A ;
-fun husky_A : A ;
-fun musky_A : A ;
-fun gawky_A : A ;
-fun scaly_A : A ;
-fun mealy_A : A ;
-fun scrabbly_A : A ;
-fun pebbly_A : A ;
-fun knobbly_A : A ;
-fun wobbly_A : A ;
-fun bubbly_A : A ;
-fun stubbly_A : A ;
-fun crumbly_A : A ;
-fun deadly_A : A ;
-fun cuddly_A : A ;
-fun worldly_A : A ;
-fun friendly_A : A ;
-fun kindly_A : A ;
-fun spindly_A : A ;
-fun godly_A : A ;
-fun goodly_A : A ;
-fun lordly_A : A ;
-fun princely_A : A ;
-fun steely_A : A ;
-fun wifely_A : A ;
-fun likely_A : A ;
-fun comely_A : A ;
-fun homely_A : A ;
-fun lonely_A : A ;
-fun shapely_A : A ;
-fun stately_A : A ;
-fun lively_A : A ;
-fun lovely_A : A ;
-fun sniffly_A : A ;
-fun scraggly_A : A ;
-fun straggly_A : A ;
-fun squiggly_A : A ;
-fun wiggly_A : A ;
-fun shingly_A : A ;
-fun jungly_A : A ;
-fun ugly_A : A ;
-fun fugly_A : A ;
-fun churchly_A : A ;
-fun loathly_A : A ;
-fun oily_A : A ;
-fun wily_A : A ;
-fun weakly_A : A ;
-fun cackly_A : A ;
-fun prickly_A : A ;
-fun sickly_A : A ;
-fun crinkly_A : A ;
-fun wrinkly_A : A ;
-fun pally_A : A ;
-fun smelly_A : A ;
-fun hilly_A : A ;
-fun chilly_A : A ;
-fun frilly_A : A ;
-fun silly_A : A ;
-fun jolly_A : A ;
-fun woolly_A : A ;
-fun seemly_A : A ;
-fun cleanly_A : A ;
-fun manly_A : A ;
-fun womanly_A : A ;
-fun queenly_A : A ;
-fun slovenly_A : A ;
-fun gainly_A : A ;
-fun holy_A : A ;
-fun wooly_A : A ;
-fun pimply_A : A ;
-fun early_A : A ;
-fun pearly_A : A ;
-fun marly_A : A ;
-fun burly_A : A ;
-fun curly_A : A ;
-fun surly_A : A ;
-fun sly_A : A ;
-fun sprightly_A : A ;
-fun saintly_A : A ;
-fun courtly_A : A ;
-fun beastly_A : A ;
-fun ghastly_A : A ;
-fun priestly_A : A ;
-fun bristly_A : A ;
-fun costly_A : A ;
-fun ruly_A : A ;
-fun unruly_A : A ;
-fun sprawly_A : A ;
-fun jowly_A : A ;
-fun lowly_A : A ;
-fun beamy_A : A ;
-fun creamy_A : A ;
-fun dreamy_A : A ;
-fun seamy_A : A ;
-fun steamy_A : A ;
-fun gamy_A : A ;
-fun foamy_A : A ;
-fun loamy_A : A ;
-fun phlegmy_A : A ;
-fun slimy_A : A ;
-fun scrimy_A : A ;
-fun grimy_A : A ;
-fun balmy_A : A ;
-fun palmy_A : A ;
-fun filmy_A : A ;
-fun hammy_A : A ;
-fun clammy_A : A ;
-fun scummy_A : A ;
-fun dummy_A : A ;
-fun gummy_A : A ;
-fun chummy_A : A ;
-fun plummy_A : A ;
-fun slummy_A : A ;
-fun rummy_A : A ;
-fun gloomy_A : A ;
-fun roomy_A : A ;
-fun germy_A : A ;
-fun stormy_A : A ;
-fun wormy_A : A ;
-fun rheumy_A : A ;
-fun many_A : A ;
-fun zany_A : A ;
-fun teeny_A : A ;
-fun weeny_A : A ;
-fun rainy_A : A ;
-fun brainy_A : A ;
-fun shiny_A : A ;
-fun spiny_A : A ;
-fun briny_A : A ;
-fun tiny_A : A ;
-fun winy_A : A ;
-fun canny_A : A ;
-fun skinny_A : A ;
-fun tinny_A : A ;
-fun bonny_A : A ;
-fun funny_A : A ;
-fun runny_A : A ;
-fun sunny_A : A ;
-fun bony_A : A ;
-fun loony_A : A ;
-fun moony_A : A ;
-fun stony_A : A ;
-fun ferny_A : A ;
-fun corny_A : A ;
-fun horny_A : A ;
-fun thorny_A : A ;
-fun puny_A : A ;
-fun brawny_A : A ;
-fun scrawny_A : A ;
-fun coy_A : A ;
-fun soapy_A : A ;
-fun sleepy_A : A ;
-fun creepy_A : A ;
-fun weepy_A : A ;
-fun stripy_A : A ;
-fun pulpy_A : A ;
-fun swampy_A : A ;
-fun skimpy_A : A ;
-fun bumpy_A : A ;
-fun dumpy_A : A ;
-fun jumpy_A : A ;
-fun lumpy_A : A ;
-fun frumpy_A : A ;
-fun grumpy_A : A ;
-fun stumpy_A : A ;
-fun ropy_A : A ;
-fun happy_A : A ;
-fun unhappy_A : A ;
-fun snappy_A : A ;
-fun scrappy_A : A ;
-fun sappy_A : A ;
-fun whippy_A : A ;
-fun nippy_A : A ;
-fun drippy_A : A ;
-fun choppy_A : A ;
-fun floppy_A : A ;
-fun sloppy_A : A ;
-fun soppy_A : A ;
-fun wispy_A : A ;
-fun croupy_A : A ;
-fun soupy_A : A ;
-fun scary_A : A ;
-fun dreary_A : A ;
-fun teary_A : A ;
-fun weary_A : A ;
-fun sugary_A : A ;
-fun hoary_A : A ;
-fun wary_A : A ;
-fun dry_A : A ;
-fun tawdry_A : A ;
-fun eery_A : A ;
-fun beery_A : A ;
-fun leery_A : A ;
-fun summery_A : A ;
-fun slippery_A : A ;
-fun watery_A : A ;
-fun wintery_A : A ;
-fun silvery_A : A ;
-fun showery_A : A ;
-fun flowery_A : A ;
-fun angry_A : A ;
-fun hungry_A : A ;
-fun hairy_A : A ;
-fun miry_A : A ;
-fun wiry_A : A ;
-fun gory_A : A ;
-fun spry_A : A ;
-fun starry_A : A ;
-fun merry_A : A ;
-fun sorry_A : A ;
-fun furry_A : A ;
-fun paltry_A : A ;
-fun sultry_A : A ;
-fun wintry_A : A ;
-fun floury_A : A ;
-fun wry_A : A ;
-fun easy_A : A ;
-fun greasy_A : A ;
-fun queasy_A : A ;
-fun woodsy_A : A ;
-fun noisy_A : A ;
-fun flimsy_A : A ;
-fun clumsy_A : A ;
-fun cosy_A : A ;
-fun nosy_A : A ;
-fun choosy_A : A ;
-fun rosy_A : A ;
-fun prosy_A : A ;
-fun gassy_A : A ;
-fun classy_A : A ;
-fun glassy_A : A ;
-fun massy_A : A ;
-fun brassy_A : A ;
-fun grassy_A : A ;
-fun messy_A : A ;
-fun dressy_A : A ;
-fun bossy_A : A ;
-fun lossy_A : A ;
-fun glossy_A : A ;
-fun mossy_A : A ;
-fun fussy_A : A ;
-fun antsy_A : A ;
-fun gutsy_A : A ;
-fun busy_A : A ;
-fun lousy_A : A ;
-fun mousy_A : A ;
-fun newsy_A : A ;
-fun blowsy_A : A ;
-fun drowsy_A : A ;
-fun frowsy_A : A ;
-fun meaty_A : A ;
-fun peaty_A : A ;
-fun sweaty_A : A ;
-fun slaty_A : A ;
-fun throaty_A : A ;
-fun sleety_A : A ;
-fun crafty_A : A ;
-fun drafty_A : A ;
-fun hefty_A : A ;
-fun shifty_A : A ;
-fun nifty_A : A ;
-fun thrifty_A : A ;
-fun lofty_A : A ;
-fun weighty_A : A ;
-fun mighty_A : A ;
-fun haughty_A : A ;
-fun naughty_A : A ;
-fun draughty_A : A ;
-fun fruity_A : A ;
-fun salty_A : A ;
-fun silty_A : A ;
-fun guilty_A : A ;
-fun jolty_A : A ;
-fun faulty_A : A ;
-fun canty_A : A ;
-fun scanty_A : A ;
-fun dainty_A : A ;
-fun flinty_A : A ;
-fun minty_A : A ;
-fun squinty_A : A ;
-fun jaunty_A : A ;
-fun flaunty_A : A ;
-fun snooty_A : A ;
-fun sooty_A : A ;
-fun empty_A : A ;
-fun hearty_A : A ;
-fun cherty_A : A ;
-fun dirty_A : A ;
-fun shirty_A : A ;
-fun snorty_A : A ;
-fun sporty_A : A ;
-fun yeasty_A : A ;
-fun hasty_A : A ;
-fun nasty_A : A ;
-fun pasty_A : A ;
-fun tasty_A : A ;
-fun testy_A : A ;
-fun feisty_A : A ;
-fun misty_A : A ;
-fun twisty_A : A ;
-fun frosty_A : A ;
-fun thirsty_A : A ;
-fun dusty_A : A ;
-fun gusty_A : A ;
-fun lusty_A : A ;
-fun musty_A : A ;
-fun rusty_A : A ;
-fun crusty_A : A ;
-fun trusty_A : A ;
-fun catty_A : A ;
-fun scatty_A : A ;
-fun fatty_A : A ;
-fun chatty_A : A ;
-fun natty_A : A ;
-fun ratty_A : A ;
-fun bratty_A : A ;
-fun tatty_A : A ;
-fun petty_A : A ;
-fun bitty_A : A ;
-fun gritty_A : A ;
-fun witty_A : A ;
-fun dotty_A : A ;
-fun knotty_A : A ;
-fun snotty_A : A ;
-fun potty_A : A ;
-fun spotty_A : A ;
-fun grotty_A : A ;
-fun smutty_A : A ;
-fun nutty_A : A ;
-fun gouty_A : A ;
-fun pretty_A : A ;
-fun heavy_A : A ;
-fun wavy_A : A ;
-fun groovy_A : A ;
-fun curvy_A : A ;
-fun dewy_A : A ;
-fun chewy_A : A ;
-fun screwy_A : A ;
-fun shadowy_A : A ;
-fun showy_A : A ;
-fun blowy_A : A ;
-fun snowy_A : A ;
-fun waxy_A : A ;
-fun sexy_A : A ;
-fun foxy_A : A ;
-fun sleazy_A : A ;
-fun hazy_A : A ;
-fun lazy_A : A ;
-fun crazy_A : A ;
-fun wheezy_A : A ;
-fun sneezy_A : A ;
-fun breezy_A : A ;
-fun schmalzy_A : A ;
-fun cozy_A : A ;
-fun oozy_A : A ;
-fun boozy_A : A ;
-fun schmaltzy_A : A ;
-fun gauzy_A : A ;
-fun jazzy_A : A ;
-fun dizzy_A : A ;
-fun fizzy_A : A ;
-fun frizzy_A : A ;
-fun fuzzy_A : A ;
-fun muzzy_A : A ;
-fun bay_A : A ;
-fun 'latter-day_A' : A ;
-fun 'present-day_A' : A ;
-fun workaday_A : A ;
-fun noonday_A : A ;
-fun everyday_A : A ;
-fun okay_A : A ;
-fun lay_A : A ;
-fun malay_A : A ;
-fun 'long-play_A' : A ;
-fun splay_A : A ;
-fun sunray_A : A ;
-fun astray_A : A ;
-fun hearsay_A : A ;
-fun 'out-of-the-way_A' : A ;
-fun 'two-way_A' : A ;
-fun away_A : A ;
-fun takeaway_A : A ;
-fun breakaway_A : A ;
-fun runaway_A : A ;
-fun tearaway_A : A ;
-fun faraway_A : A ;
-fun flyaway_A : A ;
-fun midway_A : A ;
-fun halfway_A : A ;
-fun tabby_A : A ;
-fun cobwebby_A : A ;
-fun 'namby-pamby_A' : A ;
-fun nearby_A : A ;
-fun ruby_A : A ;
-fun chancy_A : A ;
-fun beady_A : A ;
-fun unready_A : A ;
-fun unsteady_A : A ;
-fun overgreedy_A : A ;
-fun 'higgledy-piggledy_A' : A ;
-fun unwieldy_A : A ;
-fun dandy_A : A ;
-fun 'goody-goody_A' : A ;
-fun nonwoody_A : A ;
-fun 'half-hardy_A' : A ;
-fun foolhardy_A : A ;
-fun dicey_A : A ;
-fun fey_A : A ;
-fun cagey_A : A ;
-fun tiddley_A : A ;
-fun holey_A : A ;
-fun motley_A : A ;
-fun gamey_A : A ;
-fun homey_A : A ;
-fun cockney_A : A ;
-fun honey_A : A ;
-fun phoney_A : A ;
-fun grapey_A : A ;
-fun dopey_A : A ;
-fun verey_A : A ;
-fun 'dapple-grey_A' : A ;
-fun 'iron-grey_A' : A ;
-fun 'three-storey_A' : A ;
-fun nosey_A : A ;
-fun choosey_A : A ;
-fun matey_A : A ;
-fun gluey_A : A ;
-fun clayey_A : A ;
-fun squiffy_A : A ;
-fun stagy_A : A ;
-fun dodgy_A : A ;
-fun smudgy_A : A ;
-fun baggy_A : A ;
-fun leggy_A : A ;
-fun techy_A : A ;
-fun ashy_A : A ;
-fun washy_A : A ;
-fun 'wishy-washy_A' : A ;
-fun rubbishy_A : A ;
-fun workshy_A : A ;
-fun bolshy_A : A ;
-fun bushy_A : A ;
-fun thy_A : A ;
-fun unhealthy_A : A ;
-fun swarthy_A : A ;
-fun 'credit-worthy_A' : A ;
-fun seaworthy_A : A ;
-fun unseaworthy_A : A ;
-fun roadworthy_A : A ;
-fun blameworthy_A : A ;
-fun praiseworthy_A : A ;
-fun noteworthy_A : A ;
-fun unworthy_A : A ;
-fun airworthy_A : A ;
-fun unairworthy_A : A ;
-fun newsworthy_A : A ;
-fun creditworthy_A : A ;
-fun trustworthy_A : A ;
-fun untrustworthy_A : A ;
-fun dicky_A : A ;
-fun colicky_A : A ;
-fun garlicky_A : A ;
-fun panicky_A : A ;
-fun finicky_A : A ;
-fun bullocky_A : A ;
-fun 'happy-go-lucky_A' : A ;
-fun unlucky_A : A ;
-fun wonky_A : A ;
-fun parky_A : A ;
-fun bosky_A : A ;
-fun pawky_A : A ;
-fun treacly_A : A ;
-fun twiddly_A : A ;
-fun offhandedly_A : A ;
-fun animatedly_A : A ;
-fun unworldly_A : A ;
-fun otherworldly_A : A ;
-fun husbandly_A : A ;
-fun unfriendly_A : A ;
-fun unkindly_A : A ;
-fun ungodly_A : A ;
-fun niggardly_A : A ;
-fun bastardly_A : A ;
-fun dastardly_A : A ;
-fun blackguardly_A : A ;
-fun cowardly_A : A ;
-fun comradely_A : A ;
-fun housewifely_A : A ;
-fun unlikely_A : A ;
-fun timely_A : A ;
-fun untimely_A : A ;
-fun unshapely_A : A ;
-fun leisurely_A : A ;
-fun unlovely_A : A ;
-fun fly_A : A ;
-fun kingly_A : A ;
-fun fleshly_A : A ;
-fun deathly_A : A ;
-fun monthly_A : A ;
-fun bimonthly_A : A ;
-fun semimonthly_A : A ;
-fun earthly_A : A ;
-fun unearthly_A : A ;
-fun daily_A : A ;
-fun bodily_A : A ;
-fun weekly_A : A ;
-fun midweekly_A : A ;
-fun semiweekly_A : A ;
-fun bally_A : A ;
-fun rascally_A : A ;
-fun squally_A : A ;
-fun scoundrelly_A : A ;
-fun tinselly_A : A ;
-fun gravelly_A : A ;
-fun stilly_A : A ;
-fun bully_A : A ;
-fun unseemly_A : A ;
-fun uncleanly_A : A ;
-fun ruffianly_A : A ;
-fun christianly_A : A ;
-fun unchristianly_A : A ;
-fun gentlemanly_A : A ;
-fun ungentlemanly_A : A ;
-fun unmanly_A : A ;
-fun unwomanly_A : A ;
-fun maidenly_A : A ;
-fun heavenly_A : A ;
-fun ungainly_A : A ;
-fun bumpkinly_A : A ;
-fun cousinly_A : A ;
-fun uncousinly_A : A ;
-fun matronly_A : A ;
-fun slatternly_A : A ;
-fun melancholy_A : A ;
-fun unholy_A : A ;
-fun antimonopoly_A : A ;
-fun 'three-ply_A' : A ;
-fun 'two-ply_A' : A ;
-fun 'four-ply_A' : A ;
-fun yearly_A : A ;
-fun 'half-yearly_A' : A ;
-fun beggarly_A : A ;
-fun scholarly_A : A ;
-fun unscholarly_A : A ;
-fun lubberly_A : A ;
-fun elderly_A : A ;
-fun orderly_A : A ;
-fun disorderly_A : A ;
-fun gingerly_A : A ;
-fun weatherly_A : A ;
-fun fatherly_A : A ;
-fun motherly_A : A ;
-fun brotherly_A : A ;
-fun northerly_A : A ;
-fun southerly_A : A ;
-fun soldierly_A : A ;
-fun unsoldierly_A : A ;
-fun mannerly_A : A ;
-fun unmannerly_A : A ;
-fun miserly_A : A ;
-fun daughterly_A : A ;
-fun painterly_A : A ;
-fun quarterly_A : A ;
-fun easterly_A : A ;
-fun northeasterly_A : A ;
-fun southeasterly_A : A ;
-fun masterly_A : A ;
-fun westerly_A : A ;
-fun northwesterly_A : A ;
-fun southwesterly_A : A ;
-fun sisterly_A : A ;
-fun neighborly_A : A ;
-fun unneighborly_A : A ;
-fun poorly_A : A ;
-fun neighbourly_A : A ;
-fun hourly_A : A ;
-fun 'half-hourly_A' : A ;
-fun measly_A : A ;
-fun grisly_A : A ;
-fun nightly_A : A ;
-fun knightly_A : A ;
-fun fortnightly_A : A ;
-fun unsightly_A : A ;
-fun portly_A : A ;
-fun unpriestly_A : A ;
-fun ghostly_A : A ;
-fun drizzly_A : A ;
-fun gammy_A : A ;
-fun bosomy_A : A ;
-fun barmy_A : A ;
-fun smarmy_A : A ;
-fun romany_A : A ;
-fun 'niminy-piminy_A' : A ;
-fun satiny_A : A ;
-fun uncanny_A : A ;
-fun 'two-a-penny_A' : A ;
-fun threepenny_A : A ;
-fun ninepenny_A : A ;
-fun fivepenny_A : A ;
-fun 'twopenny-halfpenny_A' : A ;
-fun catchpenny_A : A ;
-fun twopenny_A : A ;
-fun tuppenny_A : A ;
-fun fourpenny_A : A ;
-fun eightpenny_A : A ;
-fun sixpenny_A : A ;
-fun unfunny_A : A ;
-fun ebony_A : A ;
-fun phony_A : A ;
-fun lemony_A : A ;
-fun cottony_A : A ;
-fun buttony_A : A ;
-fun tawny_A : A ;
-fun downy_A : A ;
-fun loopy_A : A ;
-fun 'slap-happy_A' : A ;
-fun 'trigger-happy_A' : A ;
-fun slippy_A : A ;
-fun stroppy_A : A ;
-fun chirpy_A : A ;
-fun syrupy_A : A ;
-fun lapidary_A : A ;
-fun legendary_A : A ;
-fun secondary_A : A ;
-fun bleary_A : A ;
-fun 'world-weary_A' : A ;
-fun aweary_A : A ;
-fun vinegary_A : A ;
-fun chary_A : A ;
-fun beneficiary_A : A ;
-fun fiduciary_A : A ;
-fun subsidiary_A : A ;
-fun incendiary_A : A ;
-fun stipendiary_A : A ;
-fun biliary_A : A ;
-fun ciliary_A : A ;
-fun domiciliary_A : A ;
-fun auxiliary_A : A ;
-fun pecuniary_A : A ;
-fun evidentiary_A : A ;
-fun penitentiary_A : A ;
-fun tertiary_A : A ;
-fun vestiary_A : A ;
-fun intercalary_A : A ;
-fun tutelary_A : A ;
-fun carpellary_A : A ;
-fun ancillary_A : A ;
-fun armillary_A : A ;
-fun capillary_A : A ;
-fun papillary_A : A ;
-fun pupillary_A : A ;
-fun axillary_A : A ;
-fun maxillary_A : A ;
-fun medullary_A : A ;
-fun epistolary_A : A ;
-fun exemplary_A : A ;
-fun formulary_A : A ;
-fun primary_A : A ;
-fun mammary_A : A ;
-fun summary_A : A ;
-fun customary_A : A ;
-fun canary_A : A ;
-fun vicenary_A : A ;
-fun mercenary_A : A ;
-fun unmercenary_A : A ;
-fun denary_A : A ;
-fun millenary_A : A ;
-fun plenary_A : A ;
-fun centenary_A : A ;
-fun tricentenary_A : A ;
-fun quincentenary_A : A ;
-fun binary_A : A ;
-fun ordinary_A : A ;
-fun extraordinary_A : A ;
-fun imaginary_A : A ;
-fun disciplinary_A : A ;
-fun interdisciplinary_A : A ;
-fun culinary_A : A ;
-fun preliminary_A : A ;
-fun veterinary_A : A ;
-fun urinary_A : A ;
-fun genitourinary_A : A ;
-fun sanguinary_A : A ;
-fun antiphonary_A : A ;
-fun visionary_A : A ;
-fun reversionary_A : A ;
-fun diversionary_A : A ;
-fun recessionary_A : A ;
-fun missionary_A : A ;
-fun probationary_A : A ;
-fun deflationary_A : A ;
-fun stagflationary_A : A ;
-fun inflationary_A : A ;
-fun stationary_A : A ;
-fun geostationary_A : A ;
-fun reactionary_A : A ;
-fun accretionary_A : A ;
-fun discretionary_A : A ;
-fun expeditionary_A : A ;
-fun abolitionary_A : A ;
-fun petitionary_A : A ;
-fun cautionary_A : A ;
-fun precautionary_A : A ;
-fun elocutionary_A : A ;
-fun ablutionary_A : A ;
-fun evolutionary_A : A ;
-fun revolutionary_A : A ;
-fun 'counter-revolutionary_A' : A ;
-fun counterrevolutionary_A : A ;
-fun pulmonary_A : A ;
-fun intrapulmonary_A : A ;
-fun cardiopulmonary_A : A ;
-fun coronary_A : A ;
-fun ternary_A : A ;
-fun unary_A : A ;
-fun eleemosynary_A : A ;
-fun cinerary_A : A ;
-fun funerary_A : A ;
-fun literary_A : A ;
-fun subliterary_A : A ;
-fun unliterary_A : A ;
-fun horary_A : A ;
-fun honorary_A : A ;
-fun temporary_A : A ;
-fun contemporary_A : A ;
-fun extemporary_A : A ;
-fun arbitrary_A : A ;
-fun nonarbitrary_A : A ;
-fun contrary_A : A ;
-fun accessary_A : A ;
-fun necessary_A : A ;
-fun unnecessary_A : A ;
-fun budgetary_A : A ;
-fun dietary_A : A ;
-fun proprietary_A : A ;
-fun nonproprietary_A : A ;
-fun cometary_A : A ;
-fun planetary_A : A ;
-fun interplanetary_A : A ;
-fun monetary_A : A ;
-fun hereditary_A : A ;
-fun nonhereditary_A : A ;
-fun military_A : A ;
-fun paramilitary_A : A ;
-fun unmilitary_A : A ;
-fun solitary_A : A ;
-fun sanitary_A : A ;
-fun insanitary_A : A ;
-fun unsanitary_A : A ;
-fun unitary_A : A ;
-fun pituitary_A : A ;
-fun sedentary_A : A ;
-fun parliamentary_A : A ;
-fun unparliamentary_A : A ;
-fun testamentary_A : A ;
-fun elementary_A : A ;
-fun complementary_A : A ;
-fun supplementary_A : A ;
-fun fragmentary_A : A ;
-fun sedimentary_A : A ;
-fun rudimentary_A : A ;
-fun alimentary_A : A ;
-fun complimentary_A : A ;
-fun uncomplimentary_A : A ;
-fun momentary_A : A ;
-fun documentary_A : A ;
-fun integumentary_A : A ;
-fun voluntary_A : A ;
-fun involuntary_A : A ;
-fun rotary_A : A ;
-fun dextrorotary_A : A ;
-fun levorotary_A : A ;
-fun tributary_A : A ;
-fun salutary_A : A ;
-fun residuary_A : A ;
-fun statuary_A : A ;
-fun usufructuary_A : A ;
-fun sumptuary_A : A ;
-fun mortuary_A : A ;
-fun salivary_A : A ;
-fun unwary_A : A ;
-fun 'bone-dry_A' : A ;
-fun 'drip-dry_A' : A ;
-fun sundry_A : A ;
-fun blubbery_A : A ;
-fun rubbery_A : A ;
-fun bladdery_A : A ;
-fun doddery_A : A ;
-fun spidery_A : A ;
-fun thundery_A : A ;
-fun powdery_A : A ;
-fun cheery_A : A ;
-fun gingery_A : A ;
-fun feathery_A : A ;
-fun leathery_A : A ;
-fun lathery_A : A ;
-fun slithery_A : A ;
-fun fiery_A : A ;
-fun shimmery_A : A ;
-fun glimmery_A : A ;
-fun ornery_A : A ;
-fun papery_A : A ;
-fun sandpapery_A : A ;
-fun trumpery_A : A ;
-fun peppery_A : A ;
-fun nonslippery_A : A ;
-fun coppery_A : A ;
-fun splintery_A : A ;
-fun blustery_A : A ;
-fun clattery_A : A ;
-fun jittery_A : A ;
-fun tottery_A : A ;
-fun buttery_A : A ;
-fun shivery_A : A ;
-fun livery_A : A ;
-fun bowery_A : A ;
-fun airy_A : A ;
-fun nonhairy_A : A ;
-fun derisory_A : A ;
-fun advisory_A : A ;
-fun provisory_A : A ;
-fun supervisory_A : A ;
-fun compulsory_A : A ;
-fun sensory_A : A ;
-fun extrasensory_A : A ;
-fun somatosensory_A : A ;
-fun cursory_A : A ;
-fun precursory_A : A ;
-fun accessory_A : A ;
-fun promissory_A : A ;
-fun illusory_A : A ;
-fun prolusory_A : A ;
-fun precatory_A : A ;
-fun classificatory_A : A ;
-fun certificatory_A : A ;
-fun vesicatory_A : A ;
-fun predatory_A : A ;
-fun mandatory_A : A ;
-fun nonmandatory_A : A ;
-fun amendatory_A : A ;
-fun laudatory_A : A ;
-fun feudatory_A : A ;
-fun aleatory_A : A ;
-fun prefatory_A : A ;
-fun obligatory_A : A ;
-fun derogatory_A : A ;
-fun interrogatory_A : A ;
-fun nugatory_A : A ;
-fun depreciatory_A : A ;
-fun annunciatory_A : A ;
-fun mediatory_A : A ;
-fun retaliatory_A : A ;
-fun conciliatory_A : A ;
-fun calumniatory_A : A ;
-fun expiatory_A : A ;
-fun propitiatory_A : A ;
-fun dilatory_A : A ;
-fun depilatory_A : A ;
-fun ventilatory_A : A ;
-fun oscillatory_A : A ;
-fun nonoscillatory_A : A ;
-fun consolatory_A : A ;
-fun ambulatory_A : A ;
-fun articulatory_A : A ;
-fun circulatory_A : A ;
-fun adulatory_A : A ;
-fun undulatory_A : A ;
-fun congratulatory_A : A ;
-fun amatory_A : A ;
-fun defamatory_A : A ;
-fun declamatory_A : A ;
-fun exclamatory_A : A ;
-fun lacrimatory_A : A ;
-fun inflammatory_A : A ;
-fun noninflammatory_A : A ;
-fun proinflammatory_A : A ;
-fun reformatory_A : A ;
-fun profanatory_A : A ;
-fun explanatory_A : A ;
-fun 'self-explanatory_A' : A ;
-fun cosignatory_A : A ;
-fun hallucinatory_A : A ;
-fun minatory_A : A ;
-fun recriminatory_A : A ;
-fun discriminatory_A : A ;
-fun comminatory_A : A ;
-fun divinatory_A : A ;
-fun damnatory_A : A ;
-fun condemnatory_A : A ;
-fun anticipatory_A : A ;
-fun participatory_A : A ;
-fun palpatory_A : A ;
-fun inculpatory_A : A ;
-fun exculpatory_A : A ;
-fun preparatory_A : A ;
-fun celebratory_A : A ;
-fun vibratory_A : A ;
-fun migratory_A : A ;
-fun nonmigratory_A : A ;
-fun respiratory_A : A ;
-fun inspiratory_A : A ;
-fun expiratory_A : A ;
-fun exploratory_A : A ;
-fun nonexploratory_A : A ;
-fun adjuratory_A : A ;
-fun compensatory_A : A ;
-fun facilitatory_A : A ;
-fun invitatory_A : A ;
-fun auscultatory_A : A ;
-fun rotatory_A : A ;
-fun gustatory_A : A ;
-fun sternutatory_A : A ;
-fun calefactory_A : A ;
-fun olfactory_A : A ;
-fun satisfactory_A : A ;
-fun unsatisfactory_A : A ;
-fun refractory_A : A ;
-fun 'ex-directory_A' : A ;
-fun contradictory_A : A ;
-fun valedictory_A : A ;
-fun benedictory_A : A ;
-fun perfunctory_A : A ;
-fun introductory_A : A ;
-fun secretory_A : A ;
-fun excretory_A : A ;
-fun inhibitory_A : A ;
-fun prohibitory_A : A ;
-fun auditory_A : A ;
-fun admonitory_A : A ;
-fun premonitory_A : A ;
-fun inquisitory_A : A ;
-fun transitory_A : A ;
-fun expository_A : A ;
-fun absolvitory_A : A ;
-fun desultory_A : A ;
-fun peremptory_A : A ;
-fun multistory_A : A ;
-fun contributory_A : A ;
-fun interlocutory_A : A ;
-fun statutory_A : A ;
-fun savory_A : A ;
-fun unsavory_A : A ;
-fun tarry_A : A ;
-fun cherry_A : A ;
-fun 'west-country_A' : A ;
-fun upcountry_A : A ;
-fun crosscountry_A : A ;
-fun savoury_A : A ;
-fun unsavoury_A : A ;
-fun awry_A : A ;
-fun 'free-and-easy_A' : A ;
-fun uneasy_A : A ;
-fun tricksy_A : A ;
-fun folksy_A : A ;
-fun sonsy_A : A ;
-fun tipsy_A : A ;
-fun horsy_A : A ;
-fun outdoorsy_A : A ;
-fun pursy_A : A ;
-fun cissy_A : A ;
-fun overbusy_A : A ;
-fun fidgety_A : A ;
-fun crotchety_A : A ;
-fun rackety_A : A ;
-fun pernickety_A : A ;
-fun rickety_A : A ;
-fun suety_A : A ;
-fun velvety_A : A ;
-fun 'arty-crafty_A' : A ;
-fun flighty_A : A ;
-fun almighty_A : A ;
-fun doughty_A : A ;
-fun quality_A : A ;
-fun 'high-fidelity_A' : A ;
-fun 'hoity-toity_A' : A ;
-fun uppity_A : A ;
-fun bloodguilty_A : A ;
-fun maggoty_A : A ;
-fun carroty_A : A ;
-fun arty_A : A ;
-fun forty_A : A ;
-fun overhasty_A : A ;
-fun contrasty_A : A ;
-fun bloodthirsty_A : A ;
-fun fusty_A : A ;
-fun frowsty_A : A ;
-fun batty_A : A ;
-fun 'pretty-pretty_A' : A ;
-fun plaguy_A : A ;
-fun 'top-heavy_A' : A ;
-fun privy_A : A ;
-fun nervy_A : A ;
-fun scurvy_A : A ;
-fun 'topsy-turvy_A' : A ;
-fun sinewy_A : A ;
-fun billowy_A : A ;
-fun willowy_A : A ;
-fun unsexy_A : A ;
-fun hydroxy_A : A ;
-fun trihydroxy_A : A ;
-fun 'bone-lazy_A' : A ;
-fun ritzy_A : A ;
-fun blowzy_A : A ;
-fun frowzy_A : A ;
-fun snazzy_A : A ;
-fun ersatz_A : A ;
-fun abuzz_A : A ;
-fun glacé_A : A ;
-fun démodé_A : A ;
-fun recherché_A : A ;
-fun soigné_A : A ;
-fun outré_A : A ;
-fun blasé_A : A ;
-fun passé_A : A ;
-fun retroussé_A : A ;
-fun décolleté_A : A ;
-fun sauté_A : A ;
-fun risqué_A : A ;
-fun tho'_Adv : Adv ;
-fun 'ibid._Adv' : Adv ;
-fun 'i.e._Adv' : Adv ;
+fun '\'til_Prep' : Prep ;
+fun '\'tween_Adv' : Adv ;
+fun '\'tween_decks_Adv' : Adv ;
+fun 'a/k/a_Prep' : Prep ;
fun 'cf._Adv' : Adv ;
-fun kinda_Adv : Adv ;
-fun oversea_Adv : Adv ;
-fun yea_Adv : Adv ;
-fun 'inter alia_Adv' : Adv ;
-fun 'pro forma_Adv' : Adv ;
-fun infra_Adv : Adv ;
-fun supra_Adv : Adv ;
-fun extra_Adv : Adv ;
-fun 'sub rosa_Adv' : Adv ;
-fun 'vice versa_Adv' : Adv ;
-fun 'pro rata_Adv' : Adv ;
-fun 'ad lib_Adv' : Adv ;
-fun plumb_Adv : Adv ;
-fun phonemic_Adv : Adv ;
-fun sic_Adv : Adv ;
-fun 'ad hoc_Adv' : Adv ;
-fun dead_Adv : Adv ;
-fun ahead_Adv : Adv ;
-fun overhead_Adv : Adv ;
-fun instead_Adv : Adv ;
-fun abroad_Adv : Adv ;
-fun orad_Adv : Adv ;
-fun aborad_Adv : Adv ;
-fun abed_Adv : Adv ;
-fun 'single-handed_Adv' : Adv ;
-fun offhanded_Adv : Adv ;
-fun indeed_Adv : Adv ;
-fun 'cross-legged_Adv' : Adv ;
-fun barebacked_Adv : Adv ;
-fun damned_Adv : Adv ;
-fun barefooted_Adv : Adv ;
-fun 'post-paid_Adv' : Adv ;
-fun afield_Adv : Adv ;
-fun downfield_Adv : Adv ;
-fun wild_Adv : Adv ;
-fun hundredfold_Adv : Adv ;
-fun thousandfold_Adv : Adv ;
-fun threefold_Adv : Adv ;
-fun ninefold_Adv : Adv ;
-fun tenfold_Adv : Adv ;
-fun sevenfold_Adv : Adv ;
-fun millionfold_Adv : Adv ;
-fun twofold_Adv : Adv ;
-fun fourfold_Adv : Adv ;
-fun sixfold_Adv : Adv ;
-fun 'first-hand_Adv' : Adv ;
-fun secondhand_Adv : Adv ;
-fun thirdhand_Adv : Adv ;
-fun beforehand_Adv : Adv ;
-fun offhand_Adv : Adv ;
-fun underhand_Adv : Adv ;
-fun firsthand_Adv : Adv ;
-fun inland_Adv : Adv ;
-fun behind_Adv : Adv ;
-fun downwind_Adv : Adv ;
-fun upwind_Adv : Adv ;
-fun 'au fond_Adv' : Adv ;
-fun beyond_Adv : Adv ;
-fun round_Adv : Adv ;
-fun around_Adv : Adv ;
-fun aground_Adv : Adv ;
-fun underground_Adv : Adv ;
-fun sound_Adv : Adv ;
-fun hard_Adv : Adv ;
-fun 'above board_Adv' : Adv ;
-fun aboard_Adv : Adv ;
-fun overboard_Adv : Adv ;
-fun seaward_Adv : Adv ;
-fun landward_Adv : Adv ;
-fun windward_Adv : Adv ;
-fun spaceward_Adv : Adv ;
-fun sideward_Adv : Adv ;
-fun leeward_Adv : Adv ;
-fun homeward_Adv : Adv ;
-fun southward_Adv : Adv ;
-fun backward_Adv : Adv ;
-fun heavenward_Adv : Adv ;
-fun inward_Adv : Adv ;
-fun onward_Adv : Adv ;
-fun downward_Adv : Adv ;
-fun upward_Adv : Adv ;
-fun forward_Adv : Adv ;
-fun henceforward_Adv : Adv ;
-fun thenceforward_Adv : Adv ;
-fun eastward_Adv : Adv ;
-fun northeastward_Adv : Adv ;
-fun southeastward_Adv : Adv ;
-fun coastward_Adv : Adv ;
-fun westward_Adv : Adv ;
-fun northwestward_Adv : Adv ;
-fun southwestward_Adv : Adv ;
-fun outward_Adv : Adv ;
-fun skyward_Adv : Adv ;
-fun haphazard_Adv : Adv ;
-fun loud_Adv : Adv ;
-fun aloud_Adv : Adv ;
-fun maybe_Adv : Adv ;
-fun 'side-face_Adv' : Adv ;
-fun someplace_Adv : Adv ;
-fun anyplace_Adv : Adv ;
-fun everyplace_Adv : Adv ;
-fun apace_Adv : Adv ;
-fun vivace_Adv : Adv ;
-fun apiece_Adv : Adv ;
-fun thrice_Adv : Adv ;
-fun 'half-price_Adv' : Adv ;
-fun twice_Adv : Adv ;
-fun dolce_Adv : Adv ;
-fun perchance_Adv : Adv ;
-fun askance_Adv : Adv ;
-fun 'for instance_Adv' : Adv ;
-fun hence_Adv : Adv ;
-fun thence_Adv : Adv ;
-fun whence_Adv : Adv ;
-fun 'par excellence_Adv' : Adv ;
-fun since_Adv : Adv ;
-fun once_Adv : Adv ;
-fun 'viva voce_Adv' : Adv ;
-fun 'sotto voce_Adv' : Adv ;
-fun perforce_Adv : Adv ;
-fun 'bona fide_Adv' : Adv ;
-fun astride_Adv : Adv ;
-fun aside_Adv : Adv ;
-fun broadside_Adv : Adv ;
-fun offside_Adv : Adv ;
-fun alongside_Adv : Adv ;
-fun inside_Adv : Adv ;
-fun overside_Adv : Adv ;
-fun outside_Adv : Adv ;
-fun wide_Adv : Adv ;
-fun nationwide_Adv : Adv ;
-fun 'à la mode_Adv' : Adv ;
-fun alee_Adv : Adv ;
-fun 'rent-free_Adv' : Adv ;
-fun 'scot-free_Adv' : Adv ;
-fun 'post-free_Adv' : Adv ;
-fun offstage_Adv : Adv ;
-fun backstage_Adv : Adv ;
-fun onstage_Adv : Adv ;
-fun downstage_Adv : Adv ;
-fun upstage_Adv : Adv ;
-fun large_Adv : Adv ;
-fun 'prima facie_Adv' : Adv ;
-fun 'sine die_Adv' : Adv ;
-fun 'cap-à-pie_Adv' : Adv ;
-fun like_Adv : Adv ;
-fun alike_Adv : Adv ;
-fun belike_Adv : Adv ;
-fun bannerlike_Adv : Adv ;
-fun wholesale_Adv : Adv ;
-fun 'tout ensemble_Adv' : Adv ;
-fun double_Adv : Adv ;
-fun 'side-saddle_Adv' : Adv ;
-fun sidesaddle_Adv : Adv ;
-fun awhile_Adv : Adv ;
-fun meanwhile_Adv : Adv ;
-fun 'en famille_Adv' : Adv ;
-fun 'for example_Adv' : Adv ;
-fun same_Adv : Adv ;
-fun 'full-time_Adv' : Adv ;
-fun 'part-time_Adv' : Adv ;
-fun sometime_Adv : Adv ;
-fun meantime_Adv : Adv ;
-fun overtime_Adv : Adv ;
-fun home_Adv : Adv ;
-fun 'from home_Adv' : Adv ;
-fun 'at home_Adv' : Adv ;
-fun fine_Adv : Adv ;
-fun none_Adv : Adv ;
-fun langsyne_Adv : Adv ;
-fun tiptoe_Adv : Adv ;
-fun shipshape_Adv : Adv ;
-fun square_Adv : Adv ;
-fun foursquare_Adv : Adv ;
-fun ere_Adv : Adv ;
-fun here_Adv : Adv ;
-fun there_Adv : Adv ;
-fun somewhere_Adv : Adv ;
-fun elsewhere_Adv : Adv ;
-fun nowhere_Adv : Adv ;
-fun anywhere_Adv : Adv ;
-fun everywhere_Adv : Adv ;
-fun fore_Adv : Adv ;
-fun afore_Adv : Adv ;
-fun before_Adv : Adv ;
-fun hereinbefore_Adv : Adv ;
-fun therefore_Adv : Adv ;
-fun wherefore_Adv : Adv ;
-fun heretofore_Adv : Adv ;
-fun theretofore_Adv : Adv ;
-fun ashore_Adv : Adv ;
-fun offshore_Adv : Adv ;
-fun inshore_Adv : Adv ;
-fun onshore_Adv : Adv ;
-fun galore_Adv : Adv ;
-fun more_Adv : Adv ;
-fun furthermore_Adv : Adv ;
-fun evermore_Adv : Adv ;
-fun nevermore_Adv : Adv ;
-fun anymore_Adv : Adv ;
-fun 'pro tempore_Adv' : Adv ;
-fun extempore_Adv : Adv ;
-fun 'de jure_Adv' : Adv ;
-fun sure_Adv : Adv ;
-fun 'for sure_Adv' : Adv ;
-fun peradventure_Adv : Adv ;
-fun please_Adv : Adv ;
-fun broadwise_Adv : Adv ;
-fun endwise_Adv : Adv ;
-fun edgewise_Adv : Adv ;
-fun likewise_Adv : Adv ;
-fun longwise_Adv : Adv ;
-fun breadthwise_Adv : Adv ;
-fun lengthwise_Adv : Adv ;
-fun contrariwise_Adv : Adv ;
-fun clockwise_Adv : Adv ;
-fun anticlockwise_Adv : Adv ;
-fun counterclockwise_Adv : Adv ;
-fun nowise_Adv : Adv ;
-fun stepwise_Adv : Adv ;
-fun otherwise_Adv : Adv ;
-fun crosswise_Adv : Adv ;
-fun slantwise_Adv : Adv ;
-fun leastwise_Adv : Adv ;
-fun coastwise_Adv : Adv ;
-fun false_Adv : Adv ;
-fun else_Adv : Adv ;
-fun close_Adv : Adv ;
-fun loose_Adv : Adv ;
-fun worse_Adv : Adv ;
-fun 'of course_Adv' : Adv ;
-fun 'en masse_Adv' : Adv ;
-fun 'to date_Adv' : Adv ;
-fun late_Adv : Adv ;
-fun upstate_Adv : Adv ;
-fun quite_Adv : Adv ;
-fun andante_Adv : Adv ;
-fun unquote_Adv : Adv ;
-fun 'à la carte_Adv' : Adv ;
-fun forte_Adv : Adv ;
-fun 'post-haste_Adv' : Adv ;
-fun 'en route_Adv' : Adv ;
-fun 'tête-à-tête_Adv' : Adv ;
-fun 'table d\'hôte_Adv' : Adv ;
-fun due_Adv : Adv ;
-fun live_Adv : Adv ;
-fun consecutive_Adv : Adv ;
-fun above_Adv : Adv ;
-fun aye_Adv : Adv ;
-fun ablaze_Adv : Adv ;
-fun overleaf_Adv : Adv ;
-fun lief_Adv : Adv ;
-fun stiff_Adv : Adv ;
-fun off_Adv : Adv ;
-fun half_Adv : Adv ;
-fun hereof_Adv : Adv ;
-fun thereof_Adv : Adv ;
-fun whereof_Adv : Adv ;
-fun aloof_Adv : Adv ;
-fun zigzag_Adv : Adv ;
-fun bang_Adv : Adv ;
-fun 'slap-bang_Adv' : Adv ;
-fun whang_Adv : Adv ;
-fun notwithstanding_Adv : Adv ;
-fun scorching_Adv : Adv ;
-fun nothing_Adv : Adv ;
-fun soaking_Adv : Adv ;
-fun whacking_Adv : Adv ;
-fun fucking_Adv : Adv ;
-fun middling_Adv : Adv ;
-fun boiling_Adv : Adv ;
-fun rattling_Adv : Adv ;
-fun piping_Adv : Adv ;
-fun whopping_Adv : Adv ;
-fun sopping_Adv : Adv ;
-fun roaring_Adv : Adv ;
-fun staring_Adv : Adv ;
-fun tiring_Adv : Adv ;
-fun passing_Adv : Adv ;
-fun raving_Adv : Adv ;
-fun 'ding-dong_Adv' : Adv ;
-fun dingdong_Adv : Adv ;
-fun along_Adv : Adv ;
-fun headlong_Adv : Adv ;
-fun sidelong_Adv : Adv ;
-fun daylong_Adv : Adv ;
-fun wrong_Adv : Adv ;
-fun each_Adv : Adv ;
-fun much_Adv : Adv ;
-fun insomuch_Adv : Adv ;
-fun overmuch_Adv : Adv ;
-fun such_Adv : Adv ;
-fun aweigh_Adv : Adv ;
-fun high_Adv : Adv ;
-fun 'knee-high_Adv' : Adv ;
-fun 'breast-high_Adv' : Adv ;
-fun 'waist-high_Adv' : Adv ;
-fun 'sky-high_Adv' : Adv ;
-fun nigh_Adv : Adv ;
-fun 'well-nigh_Adv' : Adv ;
-fun though_Adv : Adv ;
-fun rough_Adv : Adv ;
-fun through_Adv : Adv ;
-fun slapdash_Adv : Adv ;
-fun smash_Adv : Adv ;
-fun crash_Adv : Adv ;
-fun fresh_Adv : Adv ;
-fun afresh_Adv : Adv ;
-fun devilish_Adv : Adv ;
-fun flush_Adv : Adv ;
-fun beneath_Adv : Adv ;
-fun underneath_Adv : Adv ;
-fun herewith_Adv : Adv ;
-fun therewith_Adv : Adv ;
-fun wherewith_Adv : Adv ;
-fun forthwith_Adv : Adv ;
-fun both_Adv : Adv ;
-fun forsooth_Adv : Adv ;
-fun North_Adv : Adv ;
-fun forth_Adv : Adv ;
-fun henceforth_Adv : Adv ;
-fun thenceforth_Adv : Adv ;
-fun South_Adv : Adv ;
-fun 'a posteriori_Adv' : Adv ;
-fun 'a priori_Adv' : Adv ;
-fun 'a fortiori_Adv' : Adv ;
-fun back_Adv : Adv ;
-fun aback_Adv : Adv ;
-fun pickaback_Adv : Adv ;
-fun bareback_Adv : Adv ;
-fun horseback_Adv : Adv ;
-fun piggyback_Adv : Adv ;
-fun smack_Adv : Adv ;
-fun thick_Adv : Adv ;
-fun slick_Adv : Adv ;
-fun quick_Adv : Adv ;
-fun 'double-quick_Adv' : Adv ;
-fun chock_Adv : Adv ;
-fun shock_Adv : Adv ;
-fun 'chock-a-block_Adv' : Adv ;
-fun o'clock_Adv : Adv ;
-fun 'round-the-clock_Adv' : Adv ;
-fun sock_Adv : Adv ;
-fun amuck_Adv : Adv ;
-fun 'tongue-in-cheek_Adv' : Adv ;
-fun midweek_Adv : Adv ;
-fun 'point-blank_Adv' : Adv ;
-fun plonk_Adv : Adv ;
-fun amok_Adv : Adv ;
-fun stark_Adv : Adv ;
-fun neurobiological_Adv : Adv ;
-fun deal_Adv : Adv ;
-fun piecemeal_Adv : Adv ;
-fun withal_Adv : Adv ;
-fun therewithal_Adv : Adv ;
-fun wherewithal_Adv : Adv ;
-fun 'in general_Adv' : Adv ;
-fun interdepartmental_Adv : Adv ;
-fun retail_Adv : Adv ;
-fun 'at all_Adv' : Adv ;
-fun small_Adv : Adv ;
-fun 'pell-mell_Adv' : Adv ;
-fun 'as well_Adv' : Adv ;
-fun ill_Adv : Adv ;
-fun downhill_Adv : Adv ;
-fun uphill_Adv : Adv ;
-fun still_Adv : Adv ;
-fun 'stock-still_Adv' : Adv ;
-fun 'cram-full_Adv' : Adv ;
-fun afoul_Adv : Adv ;
-fun goddam_Adv : Adv ;
-fun abeam_Adv : Adv ;
-fun downstream_Adv : Adv ;
-fun upstream_Adv : Adv ;
-fun 'ad nauseam_Adv' : Adv ;
-fun ibidem_Adv : Adv ;
-fun tandem_Adv : Adv ;
-fun 'ante meridiem_Adv' : Adv ;
-fun 'post meridiem_Adv' : Adv ;
-fun 'ad valorem_Adv' : Adv ;
-fun 'pro tem_Adv' : Adv ;
-fun item_Adv : Adv ;
-fun 'ad interim_Adv' : Adv ;
-fun passim_Adv : Adv ;
-fun verbatim_Adv : Adv ;
-fun seriatim_Adv : Adv ;
-fun literatim_Adv : Adv ;
-fun seldom_Adv : Adv ;
-fun therefrom_Adv : Adv ;
-fun 'round-arm_Adv' : Adv ;
-fun sidearm_Adv : Adv ;
-fun underarm_Adv : Adv ;
-fun overarm_Adv : Adv ;
-fun firm_Adv : Adv ;
-fun 'ad libitum_Adv' : Adv ;
-fun 'ad infinitum_Adv' : Adv ;
-fun clean_Adv : Adv ;
-fun deadpan_Adv : Adv ;
-fun e'en_Adv : Adv ;
-fun W_'tween_Adv : Adv ;
-fun between_Adv : Adv ;
-fun then_Adv : Adv ;
-fun 'since then_Adv' : Adv ;
-fun often_Adv : Adv ;
-fun even_Adv : Adv ;
-fun in_Adv : Adv ;
-fun fain_Adv : Adv ;
-fun again_Adv : Adv ;
-fun plain_Adv : Adv ;
-fun amain_Adv : Adv ;
-fun herein_Adv : Adv ;
-fun therein_Adv : Adv ;
-fun thin_Adv : Adv ;
-fun on_Adv : Adv ;
-fun 'early on_Adv' : Adv ;
-fun 'head-on_Adv' : Adv ;
-fun 'odds-on_Adv' : Adv ;
-fun con_Adv : Adv ;
-fun 'nem con_Adv' : Adv ;
-fun thereon_Adv : Adv ;
-fun whereon_Adv : Adv ;
-fun champion_Adv : Adv ;
-fun 'in addition_Adv' : Adv ;
-fun anon_Adv : Adv ;
-fun soon_Adv : Adv ;
-fun hereupon_Adv : Adv ;
-fun thereupon_Adv : Adv ;
-fun whereupon_Adv : Adv ;
-fun yon_Adv : Adv ;
-fun astern_Adv : Adv ;
-fun down_Adv : Adv ;
-fun 'upside-down_Adv' : Adv ;
-fun 'right-down_Adv' : Adv ;
-fun unbeknown_Adv : Adv ;
-fun downtown_Adv : Adv ;
-fun uptown_Adv : Adv ;
-fun crosstown_Adv : Adv ;
-fun akimbo_Adv : Adv ;
-fun unco_Adv : Adv ;
-fun alfresco_Adv : Adv ;
-fun accelerando_Adv : Adv ;
-fun glissando_Adv : Adv ;
-fun rallentando_Adv : Adv ;
-fun ago_Adv : Adv ;
-fun doggo_Adv : Adv ;
-fun largo_Adv : Adv ;
-fun ergo_Adv : Adv ;
-fun 'ex officio_Adv' : Adv ;
-fun adagio_Adv : Adv ;
-fun 'ab initio_Adv' : Adv ;
-fun pianissimo_Adv : Adv ;
-fun fortissimo_Adv : Adv ;
-fun prestissimo_Adv : Adv ;
-fun piano_Adv : Adv ;
-fun too_Adv : Adv ;
-fun fro_Adv : Adv ;
-fun allegro_Adv : Adv ;
-fun pro_Adv : Adv ;
-fun so_Adv : Adv ;
-fun 'so-so_Adv' : Adv ;
-fun also_Adv : Adv ;
-fun to_Adv : Adv ;
-fun staccato_Adv : Adv ;
-fun pizzicato_Adv : Adv ;
-fun legato_Adv : Adv ;
-fun 'de facto_Adv' : Adv ;
-fun 'ipso facto_Adv' : Adv ;
-fun hereto_Adv : Adv ;
-fun thereto_Adv : Adv ;
-fun whereto_Adv : Adv ;
-fun incognito_Adv : Adv ;
-fun molto_Adv : Adv ;
-fun lento_Adv : Adv ;
-fun pronto_Adv : Adv ;
-fun whereunto_Adv : Adv ;
-fun 'in toto_Adv' : Adv ;
-fun hitherto_Adv : Adv ;
-fun presto_Adv : Adv ;
-fun allegretto_Adv : Adv ;
-fun mezzo_Adv : Adv ;
-fun slap_Adv : Adv ;
-fun deep_Adv : Adv ;
-fun 'knee-deep_Adv' : Adv ;
-fun 'breast-deep_Adv' : Adv ;
-fun 'waist-deep_Adv' : Adv ;
-fun asleep_Adv : Adv ;
-fun amidship_Adv : Adv ;
-fun bump_Adv : Adv ;
-fun plump_Adv : Adv ;
-fun 'chop-chop_Adv' : Adv ;
-fun flop_Adv : Adv ;
-fun plop_Adv : Adv ;
-fun 'cock-a-hoop_Adv' : Adv ;
-fun pop_Adv : Adv ;
-fun 'tip-top_Adv' : Adv ;
-fun atop_Adv : Adv ;
-fun nonstop_Adv : Adv ;
-fun sharp_Adv : Adv ;
-fun up_Adv : Adv ;
-fun dear_Adv : Adv ;
-fun clear_Adv : Adv ;
-fun near_Adv : Adv ;
-fun afar_Adv : Adv ;
-fun insofar_Adv : Adv ;
-fun 'in particular_Adv' : Adv ;
-fun e'er_Adv : Adv ;
-fun ne'er_Adv : Adv ;
-fun o'er_Adv : Adv ;
-fun forrader_Adv : Adv ;
-fun yonder_Adv : Adv ;
-fun under_Adv : Adv ;
-fun hereunder_Adv : Adv ;
-fun thereunder_Adv : Adv ;
-fun asunder_Adv : Adv ;
-fun sheer_Adv : Adv ;
-fun 'hugger-mugger_Adv' : Adv ;
-fun longer_Adv : Adv ;
-fun nigher_Adv : Adv ;
-fun rather_Adv : Adv ;
-fun together_Adv : Adv ;
-fun altogether_Adv : Adv ;
-fun either_Adv : Adv ;
-fun neither_Adv : Adv ;
-fun hither_Adv : Adv ;
-fun thither_Adv : Adv ;
-fun whither_Adv : Adv ;
-fun other_Adv : Adv ;
-fun farther_Adv : Adv ;
-fun further_Adv : Adv ;
-fun earlier_Adv : Adv ;
-fun quicker_Adv : Adv ;
-fun oftener_Adv : Adv ;
-fun sooner_Adv : Adv ;
-fun nearer_Adv : Adv ;
-fun later_Adv : Adv ;
-fun after_Adv : Adv ;
-fun hereafter_Adv : Adv ;
-fun thereafter_Adv : Adv ;
-fun hereinafter_Adv : Adv ;
-fun thereinafter_Adv : Adv ;
-fun 'helter-skelter_Adv' : Adv ;
-fun scienter_Adv : Adv ;
-fun counter_Adv : Adv ;
-fun better_Adv : Adv ;
-fun ever_Adv : Adv ;
-fun never_Adv : Adv ;
-fun whenever_Adv : Adv ;
-fun wheresoever_Adv : Adv ;
-fun whithersoever_Adv : Adv ;
-fun wherever_Adv : Adv ;
-fun forever_Adv : Adv ;
-fun however_Adv : Adv ;
-fun downriver_Adv : Adv ;
-fun upriver_Adv : Adv ;
-fun over_Adv : Adv ;
-fun moreover_Adv : Adv ;
-fun lower_Adv : Adv ;
-fun slower_Adv : Adv ;
-fun fair_Adv : Adv ;
-fun 'en clair_Adv' : Adv ;
-fun astir_Adv : Adv ;
-fun therefor_Adv : Adv ;
-fun 'inasmuch as_Adv' : Adv ;
-fun overseas_Adv : Adv ;
-fun alias_Adv : Adv ;
-fun needs_Adv : Adv ;
-fun seawards_Adv : Adv ;
-fun sidewards_Adv : Adv ;
-fun homewards_Adv : Adv ;
-fun northwards_Adv : Adv ;
-fun southwards_Adv : Adv ;
-fun backwards_Adv : Adv ;
-fun heavenwards_Adv : Adv ;
-fun inwards_Adv : Adv ;
-fun onwards_Adv : Adv ;
-fun downwards_Adv : Adv ;
-fun upwards_Adv : Adv ;
-fun rearwards_Adv : Adv ;
-fun afterwards_Adv : Adv ;
-fun forwards_Adv : Adv ;
-fun eastwards_Adv : Adv ;
-fun westwards_Adv : Adv ;
-fun outwards_Adv : Adv ;
-fun skywards_Adv : Adv ;
-fun besides_Adv : Adv ;
-fun 'oft-times_Adv' : Adv ;
-fun betimes_Adv : Adv ;
-fun sometimes_Adv : Adv ;
-fun unawares_Adv : Adv ;
-fun 'ultra vires_Adv' : Adv ;
-fun 'mutatis mutandis_Adv' : Adv ;
-fun gratis_Adv : Adv ;
-fun 'in loco parentis_Adv' : Adv ;
-fun 'vis-à-vis_Adv' : Adv ;
-fun '\'tween-decks_Adv' : Adv ;
-fun methinks_Adv : Adv ;
-fun meseems_Adv : Adv ;
-fun apropos_Adv : Adv ;
-fun malapropos_Adv : Adv ;
-fun heaps_Adv : Adv ;
-fun perhaps_Adv : Adv ;
-fun midships_Adv : Adv ;
-fun amidships_Adv : Adv ;
-fun 'for starters_Adv' : Adv ;
-fun downstairs_Adv : Adv ;
-fun upstairs_Adv : Adv ;
-fun 'out-of-doors_Adv' : Adv ;
-fun indoors_Adv : Adv ;
-fun outdoors_Adv : Adv ;
-fun 'second-class_Adv' : Adv ;
-fun 'first-class_Adv' : Adv ;
-fun less_Adv : Adv ;
-fun regardless_Adv : Adv ;
-fun irregardless_Adv : Adv ;
-fun nevertheless_Adv : Adv ;
-fun defenseless_Adv : Adv ;
-fun doubtless_Adv : Adv ;
-fun express_Adv : Adv ;
-fun amiss_Adv : Adv ;
-fun across_Adv : Adv ;
-fun crisscross_Adv : Adv ;
-fun hereabouts_Adv : Adv ;
-fun thereabouts_Adv : Adv ;
-fun whereabouts_Adv : Adv ;
-fun thus_Adv : Adv ;
-fun precious_Adv : Adv ;
-fun wondrous_Adv : Adv ;
-fun nowadays_Adv : Adv ;
-fun broadways_Adv : Adv ;
-fun endways_Adv : Adv ;
-fun sideways_Adv : Adv ;
-fun edgeways_Adv : Adv ;
-fun longways_Adv : Adv ;
-fun breadthways_Adv : Adv ;
-fun lengthways_Adv : Adv ;
-fun leastways_Adv : Adv ;
-fun whereat_Adv : Adv ;
-fun somewhat_Adv : Adv ;
-fun flat_Adv : Adv ;
-fun pat_Adv : Adv ;
-fun 'pit-a-pat_Adv' : Adv ;
-fun collect_Adv : Adv ;
-fun direct_Adv : Adv ;
-fun videlicet_Adv : Adv ;
-fun yet_Adv : Adv ;
-fun aft_Adv : Adv ;
-fun abaft_Adv : Adv ;
-fun adrift_Adv : Adv ;
-fun oft_Adv : Adv ;
-fun aloft_Adv : Adv ;
-fun straight_Adv : Adv ;
-fun light_Adv : Adv ;
-fun tonight_Adv : Adv ;
-fun overnight_Adv : Adv ;
-fun right_Adv : Adv ;
-fun aright_Adv : Adv ;
-fun bright_Adv : Adv ;
-fun alright_Adv : Adv ;
-fun downright_Adv : Adv ;
-fun outright_Adv : Adv ;
-fun tight_Adv : Adv ;
-fun methought_Adv : Adv ;
-fun aforethought_Adv : Adv ;
-fun bolt_Adv : Adv ;
-fun aslant_Adv : Adv ;
-fun afoot_Adv : Adv ;
-fun barefoot_Adv : Adv ;
-fun underfoot_Adv : Adv ;
-fun hotfoot_Adv : Adv ;
-fun part_Adv : Adv ;
-fun apart_Adv : Adv ;
-fun athwart_Adv : Adv ;
-fun short_Adv : Adv ;
-fun East_Adv : Adv ;
-fun broadcast_Adv : Adv ;
-fun 'nor\'-east_Adv' : Adv ;
-fun 'nor\'-nor\'-east_Adv' : Adv ;
-fun 'sou\'-east_Adv' : Adv ;
-fun 'sou\'-sou\'-east_Adv' : Adv ;
-fun northeast_Adv : Adv ;
-fun 'north-northeast_Adv' : Adv ;
-fun southeast_Adv : Adv ;
-fun 'south-southeast_Adv' : Adv ;
-fun least_Adv : Adv ;
-fun abreast_Adv : Adv ;
-fun fast_Adv : Adv ;
-fun past_Adv : Adv ;
-fun West_Adv : Adv ;
-fun best_Adv : Adv ;
-fun 'second-best_Adv' : Adv ;
-fun longest_Adv : Adv ;
-fun nighest_Adv : Adv ;
-fun farthest_Adv : Adv ;
-fun furthest_Adv : Adv ;
-fun quickest_Adv : Adv ;
-fun soonest_Adv : Adv ;
-fun nearest_Adv : Adv ;
-fun 'nor\'-west_Adv' : Adv ;
-fun 'nor\'-nor\'-west_Adv' : Adv ;
-fun 'sou\'-west_Adv' : Adv ;
-fun 'sou\'-sou\'-west_Adv' : Adv ;
-fun northwest_Adv : Adv ;
-fun 'north-northwest_Adv' : Adv ;
-fun southwest_Adv : Adv ;
-fun 'south-southwest_Adv' : Adv ;
-fun lowest_Adv : Adv ;
-fun slowest_Adv : Adv ;
-fun unbeknownst_Adv : Adv ;
-fun most_Adv : Adv ;
-fun midmost_Adv : Adv ;
-fun foremost_Adv : Adv ;
-fun almost_Adv : Adv ;
-fun uppermost_Adv : Adv ;
-fun feetfirst_Adv : Adv ;
-fun worst_Adv : Adv ;
-fun just_Adv : Adv ;
-fun but_Adv : Adv ;
-fun 'clear-cut_Adv' : Adv ;
-fun phut_Adv : Adv ;
-fun out_Adv : Adv ;
-fun about_Adv : Adv ;
-fun hereabout_Adv : Adv ;
-fun thereabout_Adv : Adv ;
-fun throughout_Adv : Adv ;
-fun 'pari passu_Adv' : Adv ;
-fun 'in situ_Adv' : Adv ;
-fun impromptu_Adv : Adv ;
-fun askew_Adv : Adv ;
-fun new_Adv : Adv ;
-fun anew_Adv : Adv ;
-fun somehow_Adv : Adv ;
-fun nohow_Adv : Adv ;
-fun anyhow_Adv : Adv ;
-fun low_Adv : Adv ;
-fun below_Adv : Adv ;
-fun slow_Adv : Adv ;
-fun now_Adv : Adv ;
-fun tomorrow_Adv : Adv ;
-fun prox_Adv : Adv ;
-fun ay_Adv : Adv ;
-fun someday_Adv : Adv ;
-fun today_Adv : Adv ;
-fun yesterday_Adv : Adv ;
-fun okay_Adv : Adv ;
-fun nay_Adv : Adv ;
-fun astray_Adv : Adv ;
-fun way_Adv : Adv ;
-fun 'out-of-the-way_Adv' : Adv ;
-fun away_Adv : Adv ;
-fun midway_Adv : Adv ;
-fun sideway_Adv : Adv ;
-fun someway_Adv : Adv ;
-fun halfway_Adv : Adv ;
-fun straightway_Adv : Adv ;
-fun anyway_Adv : Adv ;
-fun by_Adv : Adv ;
-fun hereby_Adv : Adv ;
-fun thereby_Adv : Adv ;
-fun whereby_Adv : Adv ;
-fun nearby_Adv : Adv ;
-fun already_Adv : Adv ;
-fun steady_Adv : Adv ;
-fun 'higgledy-piggledy_Adv' : Adv ;
-fun bloody_Adv : Adv ;
-fun plaguey_Adv : Adv ;
-fun unwarrantably_Adv : Adv ;
-fun pretendedly_Adv : Adv ;
-fun raggedly_Adv : Adv ;
-fun doggedly_Adv : Adv ;
-fun worriedly_Adv : Adv ;
-fun designedly_Adv : Adv ;
-fun resignedly_Adv : Adv ;
-fun constrainedly_Adv : Adv ;
-fun determinedly_Adv : Adv ;
-fun concernedly_Adv : Adv ;
-fun bewilderedly_Adv : Adv ;
-fun tiredly_Adv : Adv ;
-fun measuredly_Adv : Adv ;
-fun assuredly_Adv : Adv ;
-fun surprisedly_Adv : Adv ;
-fun confessedly_Adv : Adv ;
-fun professedly_Adv : Adv ;
-fun blessedly_Adv : Adv ;
-fun confusedly_Adv : Adv ;
-fun repeatedly_Adv : Adv ;
-fun animatedly_Adv : Adv ;
-fun distractedly_Adv : Adv ;
-fun affectedly_Adv : Adv ;
-fun dejectedly_Adv : Adv ;
-fun collectedly_Adv : Adv ;
-fun delightedly_Adv : Adv ;
-fun excitedly_Adv : Adv ;
-fun limitedly_Adv : Adv ;
-fun spiritedly_Adv : Adv ;
-fun dispiritedly_Adv : Adv ;
-fun meanspiritedly_Adv : Adv ;
-fun contentedly_Adv : Adv ;
-fun discontentedly_Adv : Adv ;
-fun disjointedly_Adv : Adv ;
-fun pointedly_Adv : Adv ;
-fun disappointedly_Adv : Adv ;
-fun devotedly_Adv : Adv ;
-fun reportedly_Adv : Adv ;
-fun purportedly_Adv : Adv ;
-fun disgustedly_Adv : Adv ;
-fun admittedly_Adv : Adv ;
-fun reputedly_Adv : Adv ;
-fun deservedly_Adv : Adv ;
-fun reservedly_Adv : Adv ;
-fun avowedly_Adv : Adv ;
-fun perplexedly_Adv : Adv ;
-fun fixedly_Adv : Adv ;
-fun dazedly_Adv : Adv ;
-fun idly_Adv : Adv ;
-fun comradely_Adv : Adv ;
-fun namely_Adv : Adv ;
-fun leisurely_Adv : Adv ;
-fun purposely_Adv : Adv ;
-fun appositively_Adv : Adv ;
-fun sobbingly_Adv : Adv ;
-fun gibingly_Adv : Adv ;
-fun disturbingly_Adv : Adv ;
-fun menacingly_Adv : Adv ;
-fun mincingly_Adv : Adv ;
-fun piercingly_Adv : Adv ;
-fun pleadingly_Adv : Adv ;
-fun ploddingly_Adv : Adv ;
-fun condescendingly_Adv : Adv ;
-fun correspondingly_Adv : Adv ;
-fun resoundingly_Adv : Adv ;
-fun accordingly_Adv : Adv ;
-fun scoffingly_Adv : Adv ;
-fun disparagingly_Adv : Adv ;
-fun draggingly_Adv : Adv ;
-fun longingly_Adv : Adv ;
-fun searchingly_Adv : Adv ;
-fun slouchingly_Adv : Adv ;
-fun soughingly_Adv : Adv ;
-fun dashingly_Adv : Adv ;
-fun vanishingly_Adv : Adv ;
-fun gushingly_Adv : Adv ;
-fun crushingly_Adv : Adv ;
-fun sneakingly_Adv : Adv ;
-fun mockingly_Adv : Adv ;
-fun jokingly_Adv : Adv ;
-fun rebukingly_Adv : Adv ;
-fun appealingly_Adv : Adv ;
-fun feelingly_Adv : Adv ;
-fun smilingly_Adv : Adv ;
-fun killingly_Adv : Adv ;
-fun twirlingly_Adv : Adv ;
-fun growlingly_Adv : Adv ;
-fun screamingly_Adv : Adv ;
-fun overwhelmingly_Adv : Adv ;
-fun swimmingly_Adv : Adv ;
-fun becomingly_Adv : Adv ;
-fun charmingly_Adv : Adv ;
-fun threateningly_Adv : Adv ;
-fun complainingly_Adv : Adv ;
-fun yearningly_Adv : Adv ;
-fun frowningly_Adv : Adv ;
-fun slopingly_Adv : Adv ;
-fun droopingly_Adv : Adv ;
-fun gropingly_Adv : Adv ;
-fun raspingly_Adv : Adv ;
-fun lispingly_Adv : Adv ;
-fun daringly_Adv : Adv ;
-fun endearingly_Adv : Adv ;
-fun shudderingly_Adv : Adv ;
-fun meanderingly_Adv : Adv ;
-fun wonderingly_Adv : Adv ;
-fun jeeringly_Adv : Adv ;
-fun domineeringly_Adv : Adv ;
-fun sneeringly_Adv : Adv ;
-fun staggeringly_Adv : Adv ;
-fun lingeringly_Adv : Adv ;
-fun witheringly_Adv : Adv ;
-fun stammeringly_Adv : Adv ;
-fun simperingly_Adv : Adv ;
-fun falteringly_Adv : Adv ;
-fun banteringly_Adv : Adv ;
-fun stutteringly_Adv : Adv ;
-fun quaveringly_Adv : Adv ;
-fun perseveringly_Adv : Adv ;
-fun loweringly_Adv : Adv ;
-fun gloweringly_Adv : Adv ;
-fun despairingly_Adv : Adv ;
-fun admiringly_Adv : Adv ;
-fun enquiringly_Adv : Adv ;
-fun inquiringly_Adv : Adv ;
-fun imploringly_Adv : Adv ;
-fun jarringly_Adv : Adv ;
-fun stirringly_Adv : Adv ;
-fun enduringly_Adv : Adv ;
-fun louringly_Adv : Adv ;
-fun singly_Adv : Adv ;
-fun pleasingly_Adv : Adv ;
-fun increasingly_Adv : Adv ;
-fun promisingly_Adv : Adv ;
-fun accusingly_Adv : Adv ;
-fun musingly_Adv : Adv ;
-fun placatingly_Adv : Adv ;
-fun entreatingly_Adv : Adv ;
-fun humiliatingly_Adv : Adv ;
-fun calculatingly_Adv : Adv ;
-fun incriminatingly_Adv : Adv ;
-fun gloatingly_Adv : Adv ;
-fun gratingly_Adv : Adv ;
-fun penetratingly_Adv : Adv ;
-fun hesitatingly_Adv : Adv ;
-fun insinuatingly_Adv : Adv ;
-fun slightingly_Adv : Adv ;
-fun haltingly_Adv : Adv ;
-fun enchantingly_Adv : Adv ;
-fun slantingly_Adv : Adv ;
-fun pantingly_Adv : Adv ;
-fun unstintingly_Adv : Adv ;
-fun tauntingly_Adv : Adv ;
-fun vauntingly_Adv : Adv ;
-fun temptingly_Adv : Adv ;
-fun sportingly_Adv : Adv ;
-fun contrastingly_Adv : Adv ;
-fun protestingly_Adv : Adv ;
-fun cuttingly_Adv : Adv ;
-fun poutingly_Adv : Adv ;
-fun disbelievingly_Adv : Adv ;
-fun deceivingly_Adv : Adv ;
-fun forgivingly_Adv : Adv ;
-fun movingly_Adv : Adv ;
-fun reprovingly_Adv : Adv ;
-fun approvingly_Adv : Adv ;
-fun disapprovingly_Adv : Adv ;
-fun glowingly_Adv : Adv ;
-fun mellowingly_Adv : Adv ;
-fun coaxingly_Adv : Adv ;
-fun horrifyingly_Adv : Adv ;
-fun cloyingly_Adv : Adv ;
-fun pryingly_Adv : Adv ;
-fun worryingly_Adv : Adv ;
-fun agonizingly_Adv : Adv ;
-fun deathly_Adv : Adv ;
-fun monthly_Adv : Adv ;
-fun bimonthly_Adv : Adv ;
-fun semimonthly_Adv : Adv ;
-fun daily_Adv : Adv ;
-fun bodily_Adv : Adv ;
-fun cagily_Adv : Adv ;
-fun verily_Adv : Adv ;
-fun prettily_Adv : Adv ;
-fun weekly_Adv : Adv ;
-fun semiweekly_Adv : Adv ;
-fun bally_Adv : Adv ;
-fun prosaically_Adv : Adv ;
-fun syllabically_Adv : Adv ;
-fun monosyllabically_Adv : Adv ;
-fun polysyllabically_Adv : Adv ;
-fun sporadically_Adv : Adv ;
-fun pyramidically_Adv : Adv ;
-fun melodically_Adv : Adv ;
-fun spasmodically_Adv : Adv ;
-fun episodically_Adv : Adv ;
-fun pacifically_Adv : Adv ;
-fun nonspecifically_Adv : Adv ;
-fun unspecifically_Adv : Adv ;
-fun terrifically_Adv : Adv ;
-fun scientifically_Adv : Adv ;
-fun unscientifically_Adv : Adv ;
-fun tragically_Adv : Adv ;
-fun nostalgically_Adv : Adv ;
-fun sociobiologically_Adv : Adv ;
-fun lethargically_Adv : Adv ;
-fun anarchically_Adv : Adv ;
-fun telegraphically_Adv : Adv ;
-fun ideographically_Adv : Adv ;
-fun pornographically_Adv : Adv ;
-fun typographically_Adv : Adv ;
-fun spectrographically_Adv : Adv ;
-fun chromatographically_Adv : Adv ;
-fun photographically_Adv : Adv ;
-fun cryptographically_Adv : Adv ;
-fun catastrophically_Adv : Adv ;
-fun hieroglyphically_Adv : Adv ;
-fun angelically_Adv : Adv ;
-fun philatelically_Adv : Adv ;
-fun idyllically_Adv : Adv ;
-fun metabolically_Adv : Adv ;
-fun shambolically_Adv : Adv ;
-fun hyperbolically_Adv : Adv ;
-fun hydraulically_Adv : Adv ;
-fun hypothalamically_Adv : Adv ;
-fun dynamically_Adv : Adv ;
-fun thermodynamically_Adv : Adv ;
-fun academically_Adv : Adv ;
-fun polemically_Adv : Adv ;
-fun logarithmically_Adv : Adv ;
-fun socioeconomically_Adv : Adv ;
-fun taxonomically_Adv : Adv ;
-fun cytoplasmically_Adv : Adv ;
-fun metonymically_Adv : Adv ;
-fun volcanically_Adv : Adv ;
-fun organically_Adv : Adv ;
-fun inorganically_Adv : Adv ;
-fun scenically_Adv : Adv ;
-fun pathogenically_Adv : Adv ;
-fun hygienically_Adv : Adv ;
-fun unhygienically_Adv : Adv ;
-fun ethnically_Adv : Adv ;
-fun laconically_Adv : Adv ;
-fun sardonically_Adv : Adv ;
-fun polyphonically_Adv : Adv ;
-fun harmonically_Adv : Adv ;
-fun chronically_Adv : Adv ;
-fun electronically_Adv : Adv ;
-fun ultrasonically_Adv : Adv ;
-fun heroically_Adv : Adv ;
-fun telescopically_Adv : Adv ;
-fun macroscopically_Adv : Adv ;
-fun philanthropically_Adv : Adv ;
-fun isotropically_Adv : Adv ;
-fun anisotropically_Adv : Adv ;
-fun stereotypically_Adv : Adv ;
-fun generically_Adv : Adv ;
-fun photoelectrically_Adv : Adv ;
-fun diametrically_Adv : Adv ;
-fun photometrically_Adv : Adv ;
-fun cytophotometrically_Adv : Adv ;
-fun volumetrically_Adv : Adv ;
-fun eccentrically_Adv : Adv ;
-fun basically_Adv : Adv ;
-fun intrinsically_Adv : Adv ;
-fun emphatically_Adv : Adv ;
-fun dramatically_Adv : Adv ;
-fun undramatically_Adv : Adv ;
-fun melodramatically_Adv : Adv ;
-fun schematically_Adv : Adv ;
-fun thematically_Adv : Adv ;
-fun problematically_Adv : Adv ;
-fun systematically_Adv : Adv ;
-fun unsystematically_Adv : Adv ;
-fun pragmatically_Adv : Adv ;
-fun phlegmatically_Adv : Adv ;
-fun enigmatically_Adv : Adv ;
-fun dogmatically_Adv : Adv ;
-fun climatically_Adv : Adv ;
-fun logogrammatically_Adv : Adv ;
-fun idiomatically_Adv : Adv ;
-fun axiomatically_Adv : Adv ;
-fun undiplomatically_Adv : Adv ;
-fun chromatically_Adv : Adv ;
-fun symptomatically_Adv : Adv ;
-fun automatically_Adv : Adv ;
-fun schismatically_Adv : Adv ;
-fun pneumatically_Adv : Adv ;
-fun democratically_Adv : Adv ;
-fun undemocratically_Adv : Adv ;
-fun aristocratically_Adv : Adv ;
-fun autocratically_Adv : Adv ;
-fun bureaucratically_Adv : Adv ;
-fun erratically_Adv : Adv ;
-fun statically_Adv : Adv ;
-fun ecstatically_Adv : Adv ;
-fun homeostatically_Adv : Adv ;
-fun thermostatically_Adv : Adv ;
-fun electrostatically_Adv : Adv ;
-fun didactically_Adv : Adv ;
-fun syntactically_Adv : Adv ;
-fun ascetically_Adv : Adv ;
-fun apologetically_Adv : Adv ;
-fun energetically_Adv : Adv ;
-fun pathetically_Adv : Adv ;
-fun apathetically_Adv : Adv ;
-fun sympathetically_Adv : Adv ;
-fun unsympathetically_Adv : Adv ;
-fun synthetically_Adv : Adv ;
-fun kinesthetically_Adv : Adv ;
-fun hermetically_Adv : Adv ;
-fun cosmetically_Adv : Adv ;
-fun genetically_Adv : Adv ;
-fun phylogenetically_Adv : Adv ;
-fun magnetically_Adv : Adv ;
-fun phonetically_Adv : Adv ;
-fun pedantically_Adv : Adv ;
-fun semantically_Adv : Adv ;
-fun romantically_Adv : Adv ;
-fun unromantically_Adv : Adv ;
-fun frantically_Adv : Adv ;
-fun authentically_Adv : Adv ;
-fun chaotically_Adv : Adv ;
-fun symbiotically_Adv : Adv ;
-fun idiotically_Adv : Adv ;
-fun patriotically_Adv : Adv ;
-fun unpatriotically_Adv : Adv ;
-fun osmotically_Adv : Adv ;
-fun hypnotically_Adv : Adv ;
-fun erotically_Adv : Adv ;
-fun neurotically_Adv : Adv ;
-fun asymptotically_Adv : Adv ;
-fun quixotically_Adv : Adv ;
-fun synoptically_Adv : Adv ;
-fun cryptically_Adv : Adv ;
-fun bombastically_Adv : Adv ;
-fun sarcastically_Adv : Adv ;
-fun stochastically_Adv : Adv ;
-fun unenthusiastically_Adv : Adv ;
-fun scholastically_Adv : Adv ;
-fun plastically_Adv : Adv ;
-fun drastically_Adv : Adv ;
-fun fantastically_Adv : Adv ;
-fun majestically_Adv : Adv ;
-fun domestically_Adv : Adv ;
-fun pacifistically_Adv : Adv ;
-fun synergistically_Adv : Adv ;
-fun masochistically_Adv : Adv ;
-fun realistically_Adv : Adv ;
-fun materialistically_Adv : Adv ;
-fun journalistically_Adv : Adv ;
-fun individualistically_Adv : Adv ;
-fun probabilistically_Adv : Adv ;
-fun stylistically_Adv : Adv ;
-fun euphemistically_Adv : Adv ;
-fun pessimistically_Adv : Adv ;
-fun optimistically_Adv : Adv ;
-fun mechanistically_Adv : Adv ;
-fun antagonistically_Adv : Adv ;
-fun anachronistically_Adv : Adv ;
-fun characteristically_Adv : Adv ;
-fun uncharacteristically_Adv : Adv ;
-fun voyeuristically_Adv : Adv ;
-fun egotistically_Adv : Adv ;
-fun artistically_Adv : Adv ;
-fun linguistically_Adv : Adv ;
-fun sociolinguistically_Adv : Adv ;
-fun altruistically_Adv : Adv ;
-fun relativistically_Adv : Adv ;
-fun caustically_Adv : Adv ;
-fun acoustically_Adv : Adv ;
-fun catalytically_Adv : Adv ;
-fun severally_Adv : Adv ;
-fun unsentimentally_Adv : Adv ;
-fun biannually_Adv : Adv ;
-fun 'willy-nilly_Adv' : Adv ;
-fun wholly_Adv : Adv ;
-fun jolly_Adv : Adv ;
-fun skillfully_Adv : Adv ;
-fun unmanfully_Adv : Adv ;
-fun only_Adv : Adv ;
-fun haply_Adv : Adv ;
-fun multiply_Adv : Adv ;
-fun early_Adv : Adv ;
-fun yearly_Adv : Adv ;
-fun 'half-yearly_Adv' : Adv ;
-fun brotherly_Adv : Adv ;
-fun northerly_Adv : Adv ;
-fun southerly_Adv : Adv ;
-fun quarterly_Adv : Adv ;
-fun easterly_Adv : Adv ;
-fun westerly_Adv : Adv ;
-fun overly_Adv : Adv ;
-fun hourly_Adv : Adv ;
-fun 'half-hourly_Adv' : Adv ;
-fun curvaceously_Adv : Adv ;
-fun selfconsciously_Adv : Adv ;
-fun unchivalrously_Adv : Adv ;
-fun subtly_Adv : Adv ;
-fun nightly_Adv : Adv ;
-fun fortnightly_Adv : Adv ;
-fun gently_Adv : Adv ;
-fun ineloquently_Adv : Adv ;
-fun partly_Adv : Adv ;
-fun beastly_Adv : Adv ;
-fun mostly_Adv : Adv ;
-fun unduly_Adv : Adv ;
-fun untruly_Adv : Adv ;
-fun grayly_Adv : Adv ;
-fun shyly_Adv : Adv ;
-fun coyly_Adv : Adv ;
-fun wryly_Adv : Adv ;
-fun any_Adv : Adv ;
-fun upcountry_Adv : Adv ;
-fun crosscountry_Adv : Adv ;
-fun awry_Adv : Adv ;
-fun easy_Adv : Adv ;
-fun mighty_Adv : Adv ;
-fun plenty_Adv : Adv ;
-fun heavy_Adv : Adv ;
-fun 'topsy-turvy_Adv' : Adv ;
-fun DNA_N : N ;
-fun dscDNA_N : N ;
-fun WC_N : N ;
-fun GCSE_N : N ;
-fun pH_N : N ;
-fun DJ_N : N ;
-fun UFO_N : N ;
-fun OAP_N : N ;
-fun GNP_N : N ;
-fun IOU_N : N ;
-fun TV_N : N ;
-fun pica_N : N ;
-fun kwacha_N : N ;
-fun apocrypha_N : N ;
-fun tuna_N : N ;
-fun data_N : N ;
-fun 'lingua franca_N' : N ;
-fun trachea_N : N ;
-fun 'sol-fa_N' : N ;
-fun alga_N : N ;
-fun tibia_N : N ;
-fun 'via media_N' : N ;
-fun la_N : N ;
-fun 'pax romana_N' : N ;
-fun ulna_N : N ;
-fun alumna_N : N ;
-fun antenna_N : N ;
-fun krona_N : N ;
-fun vertebra_N : N ;
-fun 'ne plus ultra_N' : N ;
-fun 'persona grata_N' : N ;
-fun 'persona non grata_N' : N ;
-fun larva_N : N ;
-fun 'v and a_N' : N ;
-fun aa_N : N ;
-fun baa_N : N ;
-fun mukataa_N : N ;
-fun ba_N : N ;
-fun aba_N : N ;
-fun baba_N : N ;
-fun jaboticaba_N : N ;
-fun indaba_N : N ;
-fun calaba_N : N ;
-fun jellaba_N : N ;
-fun draba_N : N ;
-fun casaba_N : N ;
-fun mastaba_N : N ;
-fun gleba_N : N ;
-fun ameba_N : N ;
-fun endameba_N : N ;
-fun amoeba_N : N ;
-fun peba_N : N ;
-fun iba_N : N ;
-fun copaiba_N : N ;
-fun arariba_N : N ;
-fun mamba_N : N ;
-fun samba_N : N ;
-fun marimba_N : N ;
-fun macumba_N : N ;
-fun rumba_N : N ;
-fun cordoba_N : N ;
-fun araroba_N : N ;
-fun coscoroba_N : N ;
-fun arroba_N : N ;
-fun algarroba_N : N ;
-fun carnauba_N : N ;
-fun tuba_N : N ;
-fun abaca_N : N ;
-fun chachalaca_N : N ;
-fun portulaca_N : N ;
-fun cloaca_N : N ;
-fun paca_N : N ;
-fun alpaca_N : N ;
-fun maraca_N : N ;
-fun pataca_N : N ;
-fun asarabacca_N : N ;
-fun malacca_N : N ;
-fun yacca_N : N ;
-fun mecca_N : N ;
-fun felucca_N : N ;
-fun yucca_N : N ;
-fun theca_N : N ;
-fun bibliotheca_N : N ;
-fun areca_N : N ;
-fun angelica_N : N ;
-fun silica_N : N ;
-fun basilica_N : N ;
-fun majolica_N : N ;
-fun replica_N : N ;
-fun mica_N : N ;
-fun formica_N : N ;
-fun harmonica_N : N ;
-fun japonica_N : N ;
-fun veronica_N : N ;
-fun arnica_N : N ;
-fun erica_N : N ;
-fun esoterica_N : N ;
-fun lorica_N : N ;
-fun sciatica_N : N ;
-fun hepatica_N : N ;
-fun linguica_N : N ;
-fun ymca_N : N ;
-fun oca_N : N ;
-fun coca_N : N ;
-fun tapioca_N : N ;
-fun carioca_N : N ;
-fun rspca_N : N ;
-fun anasarca_N : N ;
-fun marasca_N : N ;
-fun albuca_N : N ;
-fun sambuca_N : N ;
-fun noctiluca_N : N ;
-fun verruca_N : N ;
-fun ywca_N : N ;
-fun cicada_N : N ;
-fun dada_N : N ;
-fun intifada_N : N ;
-fun enchilada_N : N ;
-fun novillada_N : N ;
-fun armada_N : N ;
-fun autostrada_N : N ;
-fun tostada_N : N ;
-fun lambda_N : N ;
-fun andromeda_N : N ;
-fun reseda_N : N ;
-fun candida_N : N ;
-fun asafetida_N : N ;
-fun gravida_N : N ;
-fun secundigravida_N : N ;
-fun primigravida_N : N ;
-fun tertigravida_N : N ;
-fun propaganda_N : N ;
-fun allamanda_N : N ;
-fun panda_N : N ;
-fun veranda_N : N ;
-fun vanda_N : N ;
-fun agenda_N : N ;
-fun corrigenda_N : N ;
-fun hacienda_N : N ;
-fun anaconda_N : N ;
-fun rotunda_N : N ;
-fun svoboda_N : N ;
-fun coda_N : N ;
-fun pagoda_N : N ;
-fun soda_N : N ;
-fun monarda_N : N ;
-fun cauda_N : N ;
-fun barracuda_N : N ;
-fun remuda_N : N ;
-fun brodiaea_N : N ;
-fun panacea_N : N ;
-fun idea_N : N ;
-fun hydrangea_N : N ;
-fun morphea_N : N ;
-fun rhea_N : N ;
-fun diarrhea_N : N ;
-fun seborrhea_N : N ;
-fun logorrhea_N : N ;
-fun leukorrhea_N : N ;
-fun menorrhea_N : N ;
-fun amenorrhea_N : N ;
-fun oligomenorrhea_N : N ;
-fun dysmenorrhea_N : N ;
-fun rhinorrhea_N : N ;
-fun gonorrhea_N : N ;
-fun steatorrhea_N : N ;
-fun otorrhea_N : N ;
-fun pyorrhea_N : N ;
-fun althea_N : N ;
-fun kea_N : N ;
-fun lea_N : N ;
-fun galea_N : N ;
-fun azalea_N : N ;
-fun flea_N : N ;
-fun cochlea_N : N ;
-fun achillea_N : N ;
-fun grevillea_N : N ;
-fun bougainvillea_N : N ;
-fun plea_N : N ;
-fun counterplea_N : N ;
-fun aculea_N : N ;
-fun misocainea_N : N ;
-fun albuginea_N : N ;
-fun tinea_N : N ;
-fun guinea_N : N ;
-fun columnea_N : N ;
-fun apnea_N : N ;
-fun orthopnea_N : N ;
-fun hypopnea_N : N ;
-fun hyperpnea_N : N ;
-fun dyspnea_N : N ;
-fun eupnea_N : N ;
-fun cornea_N : N ;
-fun diarrhoea_N : N ;
-fun gonorrhoea_N : N ;
-fun pyorrhoea_N : N ;
-fun toea_N : N ;
-fun pea_N : N ;
-fun chickpea_N : N ;
-fun stanhopea_N : N ;
-fun cowpea_N : N ;
-fun area_N : N ;
-fun 'catchment-area_N' : N ;
-fun aperea_N : N ;
-fun spirea_N : N ;
-fun acorea_N : N ;
-fun chorea_N : N ;
-fun orthochorea_N : N ;
-fun urea_N : N ;
-fun sulfonylurea_N : N ;
-fun sea_N : N ;
-fun genlisea_N : N ;
-fun nausea_N : N ;
-fun tea_N : N ;
-fun kahikatea_N : N ;
-fun protea_N : N ;
-fun pahautea_N : N ;
-fun fovea_N : N ;
-fun parafovea_N : N ;
-fun hovea_N : N ;
-fun uvea_N : N ;
-fun yea_N : N ;
-fun fa_N : N ;
-fun 'tonic sol-fa_N' : N ;
-fun luffa_N : N ;
-fun alfalfa_N : N ;
-fun loofa_N : N ;
-fun sofa_N : N ;
-fun chufa_N : N ;
-fun catalufa_N : N ;
-fun tufa_N : N ;
-fun rutabaga_N : N ;
-fun saga_N : N ;
-fun bodega_N : N ;
-fun omega_N : N ;
-fun senega_N : N ;
-fun dagga_N : N ;
-fun quagga_N : N ;
-fun saiga_N : N ;
-fun pa'anga_N : N ;
-fun panga_N : N ;
-fun tanga_N : N ;
-fun inga_N : N ;
-fun syringa_N : N ;
-fun cotinga_N : N ;
-fun conga_N : N ;
-fun chunga_N : N ;
-fun toga_N : N ;
-fun yoga_N : N ;
-fun peshmerga_N : N ;
-fun virga_N : N ;
-fun massasauga_N : N ;
-fun beluga_N : N ;
-fun ruga_N : N ;
-fun haha_N : N ;
-fun brouhaha_N : N ;
-fun tanekaha_N : N ;
-fun viscacha_N : N ;
-fun dacha_N : N ;
-fun carancha_N : N ;
-fun concha_N : N ;
-fun mocha_N : N ;
-fun mishpocha_N : N ;
-fun 'gutta-percha_N' : N ;
-fun gurkha_N : N ;
-fun piranha_N : N ;
-fun aloha_N : N ;
-fun agrapha_N : N ;
-fun alpha_N : N ;
-fun sulpha_N : N ;
-fun amorpha_N : N ;
-fun hypha_N : N ;
-fun kasha_N : N ;
-fun pasha_N : N ;
-fun geisha_N : N ;
-fun jinrikisha_N : N ;
-fun naphtha_N : N ;
-fun maltha_N : N ;
-fun coryphantha_N : N ;
-fun yha_N : N ;
-fun amphibia_N : N ;
-fun cobia_N : N ;
-fun phobia_N : N ;
-fun triskaidekaphobia_N : N ;
-fun agoraphobia_N : N ;
-fun astraphobia_N : N ;
-fun aquaphobia_N : N ;
-fun taphephobia_N : N ;
-fun phobophobia_N : N ;
-fun lepidophobia_N : N ;
-fun neophobia_N : N ;
-fun algophobia_N : N ;
-fun anglophobia_N : N ;
-fun homophobia_N : N ;
-fun entomophobia_N : N ;
-fun satanophobia_N : N ;
-fun xenophobia_N : N ;
-fun arachnophobia_N : N ;
-fun technophobia_N : N ;
-fun phonophobia_N : N ;
-fun hypnophobia_N : N ;
-fun cynophobia_N : N ;
-fun gynophobia_N : N ;
-fun zoophobia_N : N ;
-fun acarophobia_N : N ;
-fun acrophobia_N : N ;
-fun androphobia_N : N ;
-fun hydrophobia_N : N ;
-fun claustrophobia_N : N ;
-fun ailurophobia_N : N ;
-fun pyrophobia_N : N ;
-fun musophobia_N : N ;
-fun mysophobia_N : N ;
-fun automysophobia_N : N ;
-fun traumatophobia_N : N ;
-fun thanatophobia_N : N ;
-fun nyctophobia_N : N ;
-fun photophobia_N : N ;
-fun cryophobia_N : N ;
-fun cyberphobia_N : N ;
-fun suburbia_N : N ;
-fun exurbia_N : N ;
-fun cia_N : N ;
-fun acacia_N : N ;
-fun facia_N : N ;
-fun malacia_N : N ;
-fun osteomalacia_N : N ;
-fun keratomalacia_N : N ;
-fun breccia_N : N ;
-fun alopecia_N : N ;
-fun fascia_N : N ;
-fun episcia_N : N ;
-fun cyclopaedia_N : N ;
-fun encyclopaedia_N : N ;
-fun media_N : N ;
-fun multimedia_N : N ;
-fun hypermedia_N : N ;
-fun cypripedia_N : N ;
-fun encyclopedia_N : N ;
-fun misopedia_N : N ;
-fun gliricidia_N : N ;
-fun doodia_N : N ;
-fun cardia_N : N ;
-fun acardia_N : N ;
-fun epicardia_N : N ;
-fun dextrocardia_N : N ;
-fun bradycardia_N : N ;
-fun tachycardia_N : N ;
-fun giardia_N : N ;
-fun gaillardia_N : N ;
-fun gerardia_N : N ;
-fun chlamydia_N : N ;
-fun pharmacopoeia_N : N ;
-fun onomatopoeia_N : N ;
-fun peripeteia_N : N ;
-fun mafia_N : N ;
-fun ratafia_N : N ;
-fun raffia_N : N ;
-fun rauwolfia_N : N ;
-fun kniphofia_N : N ;
-fun suksdorfia_N : N ;
-fun aphagia_N : N ;
-fun omophagia_N : N ;
-fun odynophagia_N : N ;
-fun necrophagia_N : N ;
-fun aerophagia_N : N ;
-fun dysphagia_N : N ;
-fun ulemorrhagia_N : N ;
-fun menorrhagia_N : N ;
-fun metrorrhagia_N : N ;
-fun paraplegia_N : N ;
-fun diplegia_N : N ;
-fun hemiplegia_N : N ;
-fun quadriplegia_N : N ;
-fun ophthalmoplegia_N : N ;
-fun monoplegia_N : N ;
-fun cystoplegia_N : N ;
-fun physostegia_N : N ;
-fun loggia_N : N ;
-fun krigia_N : N ;
-fun orchidalgia_N : N ;
-fun podalgia_N : N ;
-fun ulalgia_N : N ;
-fun meralgia_N : N ;
-fun nephralgia_N : N ;
-fun arthralgia_N : N ;
-fun chiralgia_N : N ;
-fun metralgia_N : N ;
-fun neuralgia_N : N ;
-fun glossalgia_N : N ;
-fun causalgia_N : N ;
-fun keratalgia_N : N ;
-fun proctalgia_N : N ;
-fun aerodontalgia_N : N ;
-fun photalgia_N : N ;
-fun mastalgia_N : N ;
-fun nostalgia_N : N ;
-fun myalgia_N : N ;
-fun herpangia_N : N ;
-fun dyslogia_N : N ;
-fun difflugia_N : N ;
-fun steatopygia_N : N ;
-fun batrachomyomachia_N : N ;
-fun abrachia_N : N ;
-fun microbrachia_N : N ;
-fun synechia_N : N ;
-fun petechia_N : N ;
-fun escherichia_N : N ;
-fun lochia_N : N ;
-fun welwitschia_N : N ;
-fun fuschia_N : N ;
-fun paronychia_N : N ;
-fun agraphia_N : N ;
-fun dysgraphia_N : N ;
-fun dysaphia_N : N ;
-fun ulatrophia_N : N ;
-fun amyotrophia_N : N ;
-fun morphia_N : N ;
-fun anacoluthia_N : N ;
-fun forsythia_N : N ;
-fun aphakia_N : N ;
-fun epikeratophakia_N : N ;
-fun latakia_N : N ;
-fun vedalia_N : N ;
-fun regalia_N : N ;
-fun acephalia_N : N ;
-fun alalia_N : N ;
-fun palilalia_N : N ;
-fun echolalia_N : N ;
-fun coprolalia_N : N ;
-fun glossolalia_N : N ;
-fun marginalia_N : N ;
-fun paraphernalia_N : N ;
-fun saturnalia_N : N ;
-fun aralia_N : N ;
-fun sobralia_N : N ;
-fun penetralia_N : N ;
-fun genitalia_N : N ;
-fun laelia_N : N ;
-fun abelia_N : N ;
-fun lobelia_N : N ;
-fun psychedelia_N : N ;
-fun amelia_N : N ;
-fun hamelia_N : N ;
-fun phocomelia_N : N ;
-fun meromelia_N : N ;
-fun stapelia_N : N ;
-fun borrelia_N : N ;
-fun myelatelia_N : N ;
-fun microglia_N : N ;
-fun oligodendroglia_N : N ;
-fun astroglia_N : N ;
-fun neuroglia_N : N ;
-fun dahlia_N : N ;
-fun memorabilia_N : N ;
-fun pachycheilia_N : N ;
-fun paraphilia_N : N ;
-fun pedophilia_N : N ;
-fun haemophilia_N : N ;
-fun hemophilia_N : N ;
-fun technophilia_N : N ;
-fun eosinophilia_N : N ;
-fun zoophilia_N : N ;
-fun necrophilia_N : N ;
-fun basophilia_N : N ;
-fun mysophilia_N : N ;
-fun monilia_N : N ;
-fun davallia_N : N ;
-fun masdevallia_N : N ;
-fun camellia_N : N ;
-fun harpullia_N : N ;
-fun acholia_N : N ;
-fun melancholia_N : N ;
-fun magnolia_N : N ;
-fun abulia_N : N ;
-fun dyscalculia_N : N ;
-fun sterculia_N : N ;
-fun achylia_N : N ;
-fun adactylia_N : N ;
-fun macadamia_N : N ;
-fun adynamia_N : N ;
-fun zamia_N : N ;
-fun macrozamia_N : N ;
-fun ceratozamia_N : N ;
-fun septicaemia_N : N ;
-fun leukaemia_N : N ;
-fun anaemia_N : N ;
-fun toxaemia_N : N ;
-fun septicemia_N : N ;
-fun hypocalcemia_N : N ;
-fun hypercalcemia_N : N ;
-fun hypoglycemia_N : N ;
-fun hyperglycemia_N : N ;
-fun academia_N : N ;
-fun acidemia_N : N ;
-fun ischemia_N : N ;
-fun bohemia_N : N ;
-fun polycythemia_N : N ;
-fun leukemia_N : N ;
-fun kalemia_N : N ;
-fun alkalemia_N : N ;
-fun hypokalemia_N : N ;
-fun hyperkalemia_N : N ;
-fun apolemia_N : N ;
-fun hypercholesterolemia_N : N ;
-fun hypovolemia_N : N ;
-fun hypervolemia_N : N ;
-fun anemia_N : N ;
-fun afibrinogenemia_N : N ;
-fun carotenemia_N : N ;
-fun hypothrombinemia_N : N ;
-fun hemoglobinemia_N : N ;
-fun hyperbilirubinemia_N : N ;
-fun abetalipoproteinemia_N : N ;
-fun hypobetalipoproteinemia_N : N ;
-fun hyperbetalipoproteinemia_N : N ;
-fun hypolipoproteinemia_N : N ;
-fun hyperlipoproteinemia_N : N ;
-fun hypoproteinemia_N : N ;
-fun agammaglobulinemia_N : N ;
-fun hypogammaglobulinemia_N : N ;
-fun analbuminemia_N : N ;
-fun tyrosinemia_N : N ;
-fun lysinemia_N : N ;
-fun ketonemia_N : N ;
-fun lipemia_N : N ;
-fun tularemia_N : N ;
-fun hydremia_N : N ;
-fun hyperemia_N : N ;
-fun bacteremia_N : N ;
-fun viremia_N : N ;
-fun sapremia_N : N ;
-fun hyponatremia_N : N ;
-fun hypernatremia_N : N ;
-fun uremia_N : N ;
-fun galactosemia_N : N ;
-fun thalassemia_N : N ;
-fun uratemia_N : N ;
-fun parasitemia_N : N ;
-fun anoxemia_N : N ;
-fun toxemia_N : N ;
-fun enterotoxemia_N : N ;
-fun pyemia_N : N ;
-fun bulimia_N : N ;
-fun ophthalmia_N : N ;
-fun xerophthalmia_N : N ;
-fun kalmia_N : N ;
-fun nomia_N : N ;
-fun nanomia_N : N ;
-fun peperomia_N : N ;
-fun achromia_N : N ;
-fun dysomia_N : N ;
-fun xerostomia_N : N ;
-fun normothermia_N : N ;
-fun hypothermia_N : N ;
-fun hyperthermia_N : N ;
-fun oligospermia_N : N ;
-fun anorgasmia_N : N ;
-fun anosmia_N : N ;
-fun hyposmia_N : N ;
-fun dysosmia_N : N ;
-fun cyclothymia_N : N ;
-fun schizothymia_N : N ;
-fun dysthymia_N : N ;
-fun azymia_N : N ;
-fun sesbania_N : N ;
-fun mania_N : N ;
-fun decalcomania_N : N ;
-fun egomania_N : N ;
-fun nymphomania_N : N ;
-fun bibliomania_N : N ;
-fun megalomania_N : N ;
-fun anglomania_N : N ;
-fun trichotillomania_N : N ;
-fun monomania_N : N ;
-fun phaneromania_N : N ;
-fun agromania_N : N ;
-fun pyromania_N : N ;
-fun dipsomania_N : N ;
-fun onomatomania_N : N ;
-fun balletomania_N : N ;
-fun kleptomania_N : N ;
-fun squandermania_N : N ;
-fun gazania_N : N ;
-fun taenia_N : N ;
-fun caladenia_N : N ;
-fun gardenia_N : N ;
-fun bergenia_N : N ;
-fun asthenia_N : N ;
-fun thrombasthenia_N : N ;
-fun neurasthenia_N : N ;
-fun myasthenia_N : N ;
-fun dillenia_N : N ;
-fun leukopenia_N : N ;
-fun eosinopenia_N : N ;
-fun sideropenia_N : N ;
-fun neutropenia_N : N ;
-fun cytopenia_N : N ;
-fun pancytopenia_N : N ;
-fun thrombocytopenia_N : N ;
-fun lymphocytopenia_N : N ;
-fun hematocytopenia_N : N ;
-fun hebephrenia_N : N ;
-fun schizophrenia_N : N ;
-fun algolagnia_N : N ;
-fun insignia_N : N ;
-fun daphnia_N : N ;
-fun vaccinia_N : N ;
-fun virginia_N : N ;
-fun ursinia_N : N ;
-fun actinia_N : N ;
-fun rhizoctinia_N : N ;
-fun sclerotinia_N : N ;
-fun erwinia_N : N ;
-fun gloxinia_N : N ;
-fun insomnia_N : N ;
-fun hypersomnia_N : N ;
-fun engelmannia_N : N ;
-fun zinnia_N : N ;
-fun bocconia_N : N ;
-fun anhedonia_N : N ;
-fun begonia_N : N ;
-fun pogonia_N : N ;
-fun aphonia_N : N ;
-fun dysphonia_N : N ;
-fun aniseikonia_N : N ;
-fun agrimonia_N : N ;
-fun ammonia_N : N ;
-fun pneumonia_N : N ;
-fun bronchopneumonia_N : N ;
-fun pleuropneumonia_N : N ;
-fun koinonia_N : N ;
-fun catatonia_N : N ;
-fun clintonia_N : N ;
-fun hypotonia_N : N ;
-fun myotonia_N : N ;
-fun acromyotonia_N : N ;
-fun bartonia_N : N ;
-fun hypertonia_N : N ;
-fun pavonia_N : N ;
-fun hypocapnia_N : N ;
-fun hypercapnia_N : N ;
-fun agrypnia_N : N ;
-fun hernia_N : N ;
-fun petunia_N : N ;
-fun hryvnia_N : N ;
-fun urodynia_N : N ;
-fun pleurodynia_N : N ;
-fun martynia_N : N ;
-fun paranoia_N : N ;
-fun sequoia_N : N ;
-fun metasequoia_N : N ;
-fun pia_N : N ;
-fun sepia_N : N ;
-fun cornucopia_N : N ;
-fun anorthopia_N : N ;
-fun hemeralopia_N : N ;
-fun nyctalopia_N : N ;
-fun cyclopia_N : N ;
-fun diplopia_N : N ;
-fun anopia_N : N ;
-fun hemianopia_N : N ;
-fun deuteranopia_N : N ;
-fun tritanopia_N : N ;
-fun quadrantanopia_N : N ;
-fun protanopia_N : N ;
-fun tetartanopia_N : N ;
-fun cecropia_N : N ;
-fun hyperopia_N : N ;
-fun ametropia_N : N ;
-fun emmetropia_N : N ;
-fun isometropia_N : N ;
-fun anisometropia_N : N ;
-fun subtopia_N : N ;
-fun ectopia_N : N ;
-fun dystopia_N : N ;
-fun utopia_N : N ;
-fun presbyopia_N : N ;
-fun amblyopia_N : N ;
-fun myopia_N : N ;
-fun oxyopia_N : N ;
-fun aria_N : N ;
-fun cercaria_N : N ;
-fun araucaria_N : N ;
-fun ablepharia_N : N ;
-fun malaria_N : N ;
-fun talaria_N : N ;
-fun crotalaria_N : N ;
-fun filaria_N : N ;
-fun mammillaria_N : N ;
-fun maxillaria_N : N ;
-fun calceolaria_N : N ;
-fun appendicularia_N : N ;
-fun cineraria_N : N ;
-fun calvaria_N : N ;
-fun fimbria_N : N ;
-fun acromicria_N : N ;
-fun hypochondria_N : N ;
-fun achlorhydria_N : N ;
-fun keteleeria_N : N ;
-fun feria_N : N ;
-fun progeria_N : N ;
-fun diphtheria_N : N ;
-fun sansevieria_N : N ;
-fun kohleria_N : N ;
-fun alstroemeria_N : N ;
-fun gesneria_N : N ;
-fun bacteria_N : N ;
-fun archaebacteria_N : N ;
-fun mycobacteria_N : N ;
-fun thiobacteria_N : N ;
-fun halobacteria_N : N ;
-fun cyanobacteria_N : N ;
-fun nitrosobacteria_N : N ;
-fun myxobacteria_N : N ;
-fun eubacteria_N : N ;
-fun cafeteria_N : N ;
-fun carpenteria_N : N ;
-fun listeria_N : N ;
-fun wisteria_N : N ;
-fun hysteria_N : N ;
-fun pizzeria_N : N ;
-fun anarthria_N : N ;
-fun dysarthria_N : N ;
-fun phantasmagoria_N : N ;
-fun dysphoria_N : N ;
-fun euphoria_N : N ;
-fun noria_N : N ;
-fun victoria_N : N ;
-fun ametria_N : N ;
-fun stria_N : N ;
-fun nutria_N : N ;
-fun uricaciduria_N : N ;
-fun aminoaciduria_N : N ;
-fun oliguria_N : N ;
-fun lymphuria_N : N ;
-fun hypercalciuria_N : N ;
-fun ammoniuria_N : N ;
-fun hemoglobinuria_N : N ;
-fun myoglobinuria_N : N ;
-fun alkalinuria_N : N ;
-fun albuminuria_N : N ;
-fun ketonuria_N : N ;
-fun phenylketonuria_N : N ;
-fun alkaptonuria_N : N ;
-fun glucosuria_N : N ;
-fun glycosuria_N : N ;
-fun lactosuria_N : N ;
-fun fructosuria_N : N ;
-fun dysuria_N : N ;
-fun hematuria_N : N ;
-fun uraturia_N : N ;
-fun nocturia_N : N ;
-fun azoturia_N : N ;
-fun hematocyturia_N : N ;
-fun polyuria_N : N ;
-fun pyuria_N : N ;
-fun porphyria_N : N ;
-fun abasia_N : N ;
-fun alocasia_N : N ;
-fun aphasia_N : N ;
-fun cataphasia_N : N ;
-fun acataphasia_N : N ;
-fun dysphasia_N : N ;
-fun pericementoclasia_N : N ;
-fun aplasia_N : N ;
-fun anaplasia_N : N ;
-fun cataplasia_N : N ;
-fun neoplasia_N : N ;
-fun hypoplasia_N : N ;
-fun achondroplasia_N : N ;
-fun hyperplasia_N : N ;
-fun dysplasia_N : N ;
-fun antinomasia_N : N ;
-fun euthanasia_N : N ;
-fun dyscrasia_N : N ;
-fun agerasia_N : N ;
-fun ectasia_N : N ;
-fun lymphangiectasia_N : N ;
-fun angiotelectasia_N : N ;
-fun keratectasia_N : N ;
-fun fantasia_N : N ;
-fun astasia_N : N ;
-fun malvasia_N : N ;
-fun woodsia_N : N ;
-fun idesia_N : N ;
-fun freesia_N : N ;
-fun thermalgesia_N : N ;
-fun analgesia_N : N ;
-fun urochesia_N : N ;
-fun anaesthesia_N : N ;
-fun chromesthesia_N : N ;
-fun somesthesia_N : N ;
-fun anesthesia_N : N ;
-fun kinanesthesia_N : N ;
-fun acroanesthesia_N : N ;
-fun cryoanesthesia_N : N ;
-fun kinesthesia_N : N ;
-fun synesthesia_N : N ;
-fun hypoesthesia_N : N ;
-fun paresthesia_N : N ;
-fun cryesthesia_N : N ;
-fun silesia_N : N ;
-fun magnesia_N : N ;
-fun dyskinesia_N : N ;
-fun amnesia_N : N ;
-fun paramnesia_N : N ;
-fun atresia_N : N ;
-fun fuchsia_N : N ;
-fun aphrodisia_N : N ;
-fun anaphrodisia_N : N ;
-fun artemisia_N : N ;
-fun mutisia_N : N ;
-fun banksia_N : N ;
-fun diapensia_N : N ;
-fun hortensia_N : N ;
-fun agnosia_N : N ;
-fun topognosia_N : N ;
-fun atopognosia_N : N ;
-fun ambrosia_N : N ;
-fun dyspepsia_N : N ;
-fun polydipsia_N : N ;
-fun eclampsia_N : N ;
-fun preeclampsia_N : N ;
-fun metamorphopsia_N : N ;
-fun xanthopsia_N : N ;
-fun zoopsia_N : N ;
-fun cassia_N : N ;
-fun parnassia_N : N ;
-fun quassia_N : N ;
-fun macroglossia_N : N ;
-fun androglossia_N : N ;
-fun intelligentsia_N : N ;
-fun rickettsia_N : N ;
-fun clusia_N : N ;
-fun zoysia_N : N ;
-fun sabbatia_N : N ;
-fun lomatia_N : N ;
-fun agalactia_N : N ;
-fun manglietia_N : N ;
-fun aubrietia_N : N ;
-fun bletia_N : N ;
-fun militia_N : N ;
-fun astrantia_N : N ;
-fun dementia_N : N ;
-fun differentia_N : N ;
-fun oligodontia_N : N ;
-fun inertia_N : N ;
-fun shortia_N : N ;
-fun amastia_N : N ;
-fun gynecomastia_N : N ;
-fun pistia_N : N ;
-fun costia_N : N ;
-fun millettia_N : N ;
-fun poinsettia_N : N ;
-fun yautia_N : N ;
-fun minutia_N : N ;
-fun stevia_N : N ;
-fun bolivia_N : N ;
-fun administrivia_N : N ;
-fun salvia_N : N ;
-fun synovia_N : N ;
-fun ataraxia_N : N ;
-fun apraxia_N : N ;
-fun ataxia_N : N ;
-fun cachexia_N : N ;
-fun acathexia_N : N ;
-fun alexia_N : N ;
-fun areflexia_N : N ;
-fun dyslexia_N : N ;
-fun bulimarexia_N : N ;
-fun anorexia_N : N ;
-fun hyperpyrexia_N : N ;
-fun pyrrhuloxia_N : N ;
-fun anoxia_N : N ;
-fun hypoxia_N : N ;
-fun asphyxia_N : N ;
-fun amyxia_N : N ;
-fun hematochezia_N : N ;
-fun dyschezia_N : N ;
-fun bilharzia_N : N ;
-fun elsholtzia_N : N ;
-fun deutzia_N : N ;
-fun albizzia_N : N ;
-fun chaja_N : N ;
-fun raja_N : N ;
-fun maharaja_N : N ;
-fun ouija_N : N ;
-fun ninja_N : N ;
-fun moussaka_N : N ;
-fun taka_N : N ;
-fun kawaka_N : N ;
-fun babka_N : N ;
-fun vodka_N : N ;
-fun weka_N : N ;
-fun chachka_N : N ;
-fun babushka_N : N ;
-fun balalaika_N : N ;
-fun sheika_N : N ;
-fun kapeika_N : N ;
-fun troika_N : N ;
-fun perestroika_N : N ;
-fun pika_N : N ;
-fun paprika_N : N ;
-fun swastika_N : N ;
-fun markka_N : N ;
-fun chukka_N : N ;
-fun khalka_N : N ;
-fun polka_N : N ;
-fun tanka_N : N ;
-fun stotinka_N : N ;
-fun oka_N : N ;
-fun fanaloka_N : N ;
-fun bazooka_N : N ;
-fun qindarka_N : N ;
-fun parka_N : N ;
-fun mazurka_N : N ;
-fun patka_N : N ;
-fun puka_N : N ;
-fun kapuka_N : N ;
-fun kopiyka_N : N ;
-fun 'hoop-la_N' : N ;
-fun ala_N : N ;
-fun cabala_N : N ;
-fun tambala_N : N ;
-fun cicala_N : N ;
-fun amygdala_N : N ;
-fun mandala_N : N ;
-fun gala_N : N ;
-fun sinhala_N : N ;
-fun koala_N : N ;
-fun impala_N : N ;
-fun marsala_N : N ;
-fun tala_N : N ;
-fun cantala_N : N ;
-fun hawala_N : N ;
-fun nyala_N : N ;
-fun andryala_N : N ;
-fun qibla_N : N ;
-fun weigela_N : N ;
-fun chela_N : N ;
-fun panatela_N : N ;
-fun sequela_N : N ;
-fun kwela_N : N ;
-fun macushla_N : N ;
-fun heliophila_N : N ;
-fun nemophila_N : N ;
-fun drosophila_N : N ;
-fun manila_N : N ;
-fun tequila_N : N ;
-fun chuckwalla_N : N ;
-fun paella_N : N ;
-fun glabella_N : N ;
-fun roccella_N : N ;
-fun vorticella_N : N ;
-fun arcella_N : N ;
-fun shigella_N : N ;
-fun nigella_N : N ;
-fun klebsiella_N : N ;
-fun lamella_N : N ;
-fun columella_N : N ;
-fun canella_N : N ;
-fun gentianella_N : N ;
-fun fraxinella_N : N ;
-fun salmonella_N : N ;
-fun mozzarella_N : N ;
-fun umbrella_N : N ;
-fun cinderella_N : N ;
-fun chlorella_N : N ;
-fun tessella_N : N ;
-fun panatella_N : N ;
-fun patella_N : N ;
-fun tarantella_N : N ;
-fun christella_N : N ;
-fun sequella_N : N ;
-fun helvella_N : N ;
-fun ketembilla_N : N ;
-fun scilla_N : N ;
-fun granadilla_N : N ;
-fun quesadilla_N : N ;
-fun cedilla_N : N ;
-fun sapodilla_N : N ;
-fun fothergilla_N : N ;
-fun chinchilla_N : N ;
-fun naranjilla_N : N ;
-fun candelilla_N : N ;
-fun armilla_N : N ;
-fun manilla_N : N ;
-fun vanilla_N : N ;
-fun coronilla_N : N ;
-fun papilla_N : N ;
-fun barilla_N : N ;
-fun cascarilla_N : N ;
-fun sarsaparilla_N : N ;
-fun hydrilla_N : N ;
-fun banderilla_N : N ;
-fun guerilla_N : N ;
-fun gorilla_N : N ;
-fun guerrilla_N : N ;
-fun cyrilla_N : N ;
-fun salsilla_N : N ;
-fun rosilla_N : N ;
-fun mantilla_N : N ;
-fun scintilla_N : N ;
-fun flotilla_N : N ;
-fun tortilla_N : N ;
-fun squilla_N : N ;
-fun villa_N : N ;
-fun cholla_N : N ;
-fun corolla_N : N ;
-fun bulla_N : N ;
-fun garambulla_N : N ;
-fun medulla_N : N ;
-fun ampulla_N : N ;
-fun harpulla_N : N ;
-fun scylla_N : N ;
-fun ola_N : N ;
-fun bola_N : N ;
-fun parabola_N : N ;
-fun holometabola_N : N ;
-fun carambola_N : N ;
-fun tombola_N : N ;
-fun hyperbola_N : N ;
-fun cola_N : N ;
-fun 'coca-cola_N' : N ;
-fun mandola_N : N ;
-fun gondola_N : N ;
-fun areola_N : N ;
-fun pergola_N : N ;
-fun viola_N : N ;
-fun kola_N : N ;
-fun pianola_N : N ;
-fun granola_N : N ;
-fun cupola_N : N ;
-fun acerola_N : N ;
-fun brassavola_N : N ;
-fun payola_N : N ;
-fun gorgonzola_N : N ;
-fun hoopla_N : N ;
-fun tesla_N : N ;
-fun vizsla_N : N ;
-fun nebula_N : N ;
-fun fibula_N : N ;
-fun facula_N : N ;
-fun macula_N : N ;
-fun trabecula_N : N ;
-fun fecula_N : N ;
-fun pinguecula_N : N ;
-fun acicula_N : N ;
-fun auricula_N : N ;
-fun cuticula_N : N ;
-fun furcula_N : N ;
-fun roridula_N : N ;
-fun calendula_N : N ;
-fun scrofula_N : N ;
-fun hula_N : N ;
-fun alula_N : N ;
-fun primula_N : N ;
-fun formula_N : N ;
-fun planula_N : N ;
-fun campanula_N : N ;
-fun ranula_N : N ;
-fun inula_N : N ;
-fun cannula_N : N ;
-fun lunula_N : N ;
-fun pula_N : N ;
-fun scapula_N : N ;
-fun copula_N : N ;
-fun spirula_N : N ;
-fun morula_N : N ;
-fun gastrula_N : N ;
-fun peninsula_N : N ;
-fun spatula_N : N ;
-fun tarantula_N : N ;
-fun brotula_N : N ;
-fun blastula_N : N ;
-fun fistula_N : N ;
-fun uvula_N : N ;
-fun ma_N : N ;
-fun agama_N : N ;
-fun pajama_N : N ;
-fun lama_N : N ;
-fun ilama_N : N ;
-fun llama_N : N ;
-fun mama_N : N ;
-fun panama_N : N ;
-fun drama_N : N ;
-fun melodrama_N : N ;
-fun grama_N : N ;
-fun panorama_N : N ;
-fun guama_N : N ;
-fun squama_N : N ;
-fun bma_N : N ;
-fun chacma_N : N ;
-fun grandma_N : N ;
-fun edema_N : N ;
-fun lymphedema_N : N ;
-fun papilledema_N : N ;
-fun angioedema_N : N ;
-fun scleredema_N : N ;
-fun myxedema_N : N ;
-fun schema_N : N ;
-fun hyphema_N : N ;
-fun anathema_N : N ;
-fun erythema_N : N ;
-fun ulema_N : N ;
-fun enema_N : N ;
-fun cinema_N : N ;
-fun treponema_N : N ;
-fun emphysema_N : N ;
-fun diastema_N : N ;
-fun blastema_N : N ;
-fun empyema_N : N ;
-fun eczema_N : N ;
-fun magma_N : N ;
-fun syntagma_N : N ;
-fun smegma_N : N ;
-fun bregma_N : N ;
-fun enigma_N : N ;
-fun sigma_N : N ;
-fun stigma_N : N ;
-fun dogma_N : N ;
-fun zeugma_N : N ;
-fun hypozeugma_N : N ;
-fun kerygma_N : N ;
-fun drachma_N : N ;
-fun asthma_N : N ;
-fun anima_N : N ;
-fun conima_N : N ;
-fun rima_N : N ;
-fun sima_N : N ;
-fun quinquagesima_N : N ;
-fun ultima_N : N ;
-fun intima_N : N ;
-fun halma_N : N ;
-fun gamma_N : N ;
-fun mamma_N : N ;
-fun programma_N : N ;
-fun gemma_N : N ;
-fun lemma_N : N ;
-fun dilemma_N : N ;
-fun sarcolemma_N : N ;
-fun neurolemma_N : N ;
-fun axolemma_N : N ;
-fun stemma_N : N ;
-fun comma_N : N ;
-fun gumma_N : N ;
-fun lumma_N : N ;
-fun pyinma_N : N ;
-fun coma_N : N ;
-fun semicoma_N : N ;
-fun sarcoma_N : N ;
-fun osteosarcoma_N : N ;
-fun angiosarcoma_N : N ;
-fun carcinosarcoma_N : N ;
-fun liposarcoma_N : N ;
-fun chondrosarcoma_N : N ;
-fun neurosarcoma_N : N ;
-fun myosarcoma_N : N ;
-fun rhabdomyosarcoma_N : N ;
-fun leiomyosarcoma_N : N ;
-fun ascoma_N : N ;
-fun glaucoma_N : N ;
-fun hybridoma_N : N ;
-fun osteoma_N : N ;
-fun sangoma_N : N ;
-fun zygoma_N : N ;
-fun trachoma_N : N ;
-fun lymphoma_N : N ;
-fun acanthoma_N : N ;
-fun keratoacanthoma_N : N ;
-fun xanthoma_N : N ;
-fun angioma_N : N ;
-fun lymphangioma_N : N ;
-fun hemangioma_N : N ;
-fun meningioma_N : N ;
-fun celioma_N : N ;
-fun epithelioma_N : N ;
-fun neuroepithelioma_N : N ;
-fun mesothelioma_N : N ;
-fun glioma_N : N ;
-fun leukoma_N : N ;
-fun pinealoma_N : N ;
-fun myeloma_N : N ;
-fun papilloma_N : N ;
-fun diploma_N : N ;
-fun granuloma_N : N ;
-fun lymphogranuloma_N : N ;
-fun psammoma_N : N ;
-fun noma_N : N ;
-fun melanoma_N : N ;
-fun adenoma_N : N ;
-fun lymphadenoma_N : N ;
-fun fibroadenoma_N : N ;
-fun carcinoma_N : N ;
-fun adenocarcinoma_N : N ;
-fun seminoma_N : N ;
-fun neurinoma_N : N ;
-fun lipoma_N : N ;
-fun aroma_N : N ;
-fun fibroma_N : N ;
-fun neurofibroma_N : N ;
-fun chondroma_N : N ;
-fun enchondroma_N : N ;
-fun osteochondroma_N : N ;
-fun atheroma_N : N ;
-fun stroma_N : N ;
-fun neuroma_N : N ;
-fun soma_N : N ;
-fun calosoma_N : N ;
-fun hematoma_N : N ;
-fun cephalhematoma_N : N ;
-fun hepatoma_N : N ;
-fun teratoma_N : N ;
-fun scotoma_N : N ;
-fun hamartoma_N : N ;
-fun stoma_N : N ;
-fun blastoma_N : N ;
-fun osteoblastoma_N : N ;
-fun glioblastoma_N : N ;
-fun retinoblastoma_N : N ;
-fun neuroblastoma_N : N ;
-fun plasmacytoma_N : N ;
-fun pheochromocytoma_N : N ;
-fun myxoma_N : N ;
-fun polyoma_N : N ;
-fun myoma_N : N ;
-fun rhabdomyoma_N : N ;
-fun leiomyoma_N : N ;
-fun karma_N : N ;
-fun leukoderma_N : N ;
-fun melanoderma_N : N ;
-fun scleroderma_N : N ;
-fun xeroderma_N : N ;
-fun erythroderma_N : N ;
-fun keratoderma_N : N ;
-fun 'terra firma_N' : N ;
-fun chiasma_N : N ;
-fun miasma_N : N ;
-fun xanthelasma_N : N ;
-fun plasma_N : N ;
-fun mycoplasma_N : N ;
-fun chloasma_N : N ;
-fun charisma_N : N ;
-fun xylosma_N : N ;
-fun platysma_N : N ;
-fun mahatma_N : N ;
-fun trauma_N : N ;
-fun amphiuma_N : N ;
-fun puma_N : N ;
-fun satsuma_N : N ;
-fun cyma_N : N ;
-fun ependyma_N : N ;
-fun parenchyma_N : N ;
-fun chlorenchyma_N : N ;
-fun rhinophyma_N : N ;
-fun ana_N : N ;
-fun cabana_N : N ;
-fun apadana_N : N ;
-fun gymkhana_N : N ;
-fun dulciana_N : N ;
-fun liana_N : N ;
-fun victoriana_N : N ;
-fun banana_N : N ;
-fun manana_N : N ;
-fun ayapana_N : N ;
-fun asana_N : N ;
-fun gitana_N : N ;
-fun sultana_N : N ;
-fun lantana_N : N ;
-fun iguana_N : N ;
-fun marihuana_N : N ;
-fun marijuana_N : N ;
-fun havana_N : N ;
-fun nirvana_N : N ;
-fun tswana_N : N ;
-fun setswana_N : N ;
-fun echidna_N : N ;
-fun amphisbaena_N : N ;
-fun dracaena_N : N ;
-fun hyaena_N : N ;
-fun verbena_N : N ;
-fun galena_N : N ;
-fun melena_N : N ;
-fun euglena_N : N ;
-fun tetrahymena_N : N ;
-fun subpoena_N : N ;
-fun arena_N : N ;
-fun andrena_N : N ;
-fun catena_N : N ;
-fun novena_N : N ;
-fun hyena_N : N ;
-fun ozena_N : N ;
-fun lasagna_N : N ;
-fun bologna_N : N ;
-fun corbina_N : N ;
-fun discina_N : N ;
-fun medina_N : N ;
-fun vagina_N : N ;
-fun angina_N : N ;
-fun china_N : N ;
-fun 'crackle-china_N' : N ;
-fun kachina_N : N ;
-fun trichina_N : N ;
-fun kina_N : N ;
-fun commelina_N : N ;
-fun semolina_N : N ;
-fun lamina_N : N ;
-fun stamina_N : N ;
-fun alumina_N : N ;
-fun carina_N : N ;
-fun ocarina_N : N ;
-fun farina_N : N ;
-fun marina_N : N ;
-fun tsarina_N : N ;
-fun casuarina_N : N ;
-fun czarina_N : N ;
-fun tzarina_N : N ;
-fun globigerina_N : N ;
-fun ballerina_N : N ;
-fun 'prima ballerina_N' : N ;
-fun signorina_N : N ;
-fun retsina_N : N ;
-fun sonatina_N : N ;
-fun patina_N : N ;
-fun retina_N : N ;
-fun neritina_N : N ;
-fun concertina_N : N ;
-fun cortina_N : N ;
-fun anna_N : N ;
-fun canna_N : N ;
-fun bandanna_N : N ;
-fun manna_N : N ;
-fun hosanna_N : N ;
-fun savanna_N : N ;
-fun henna_N : N ;
-fun sienna_N : N ;
-fun senna_N : N ;
-fun duenna_N : N ;
-fun pinna_N : N ;
-fun donna_N : N ;
-fun 'prima donna_N' : N ;
-fun belladonna_N : N ;
-fun madonna_N : N ;
-fun othonna_N : N ;
-fun cinchona_N : N ;
-fun madrona_N : N ;
-fun corona_N : N ;
-fun persona_N : N ;
-fun varna_N : N ;
-fun cisterna_N : N ;
-fun fauna_N : N ;
-fun avifauna_N : N ;
-fun sauna_N : N ;
-fun buna_N : N ;
-fun lacuna_N : N ;
-fun mucuna_N : N ;
-fun koruna_N : N ;
-fun myna_N : N ;
-fun amboyna_N : N ;
-fun boa_N : N ;
-fun 'feather-boa_N' : N ;
-fun balboa_N : N ;
-fun jerboa_N : N ;
-fun cocoa_N : N ;
-fun feijoa_N : N ;
-fun holloa_N : N ;
-fun moa_N : N ;
-fun anoa_N : N ;
-fun curaçoa_N : N ;
-fun pa_N : N ;
-fun papa_N : N ;
-fun tapa_N : N ;
-fun grandpa_N : N ;
-fun thiotepa_N : N ;
-fun nipa_N : N ;
-fun genipa_N : N ;
-fun catalpa_N : N ;
-fun limpa_N : N ;
-fun dopa_N : N ;
-fun methyldopa_N : N ;
-fun kappa_N : N ;
-fun grappa_N : N ;
-fun poppa_N : N ;
-fun cuppa_N : N ;
-fun spa_N : N ;
-fun pupa_N : N ;
-fun marupa_N : N ;
-fun stupa_N : N ;
-fun chutzpa_N : N ;
-fun burqa_N : N ;
-fun ra_N : N ;
-fun capybara_N : N ;
-fun caracara_N : N ;
-fun cascara_N : N ;
-fun mascara_N : N ;
-fun tiara_N : N ;
-fun mara_N : N ;
-fun samara_N : N ;
-fun marinara_N : N ;
-fun carbonara_N : N ;
-fun para_N : N ;
-fun nullipara_N : N ;
-fun primipara_N : N ;
-fun quadripara_N : N ;
-fun quintipara_N : N ;
-fun demerara_N : N ;
-fun samsara_N : N ;
-fun tuatara_N : N ;
-fun totara_N : N ;
-fun vara_N : N ;
-fun bra_N : N ;
-fun abracadabra_N : N ;
-fun sabra_N : N ;
-fun algebra_N : N ;
-fun zebra_N : N ;
-fun umbra_N : N ;
-fun penumbra_N : N ;
-fun cobra_N : N ;
-fun dobra_N : N ;
-fun ephedra_N : N ;
-fun cathedra_N : N ;
-fun calliandra_N : N ;
-fun pachysandra_N : N ;
-fun matsyendra_N : N ;
-fun dichondra_N : N ;
-fun tundra_N : N ;
-fun mudra_N : N ;
-fun sudra_N : N ;
-fun hydra_N : N ;
-fun era_N : N ;
-fun chimaera_N : N ;
-fun chelicera_N : N ;
-fun viscera_N : N ;
-fun caldera_N : N ;
-fun curandera_N : N ;
-fun vinifera_N : N ;
-fun forestiera_N : N ;
-fun sclera_N : N ;
-fun cholera_N : N ;
-fun camera_N : N ;
-fun 'cine-camera_N' : N ;
-fun ephemera_N : N ;
-fun chimera_N : N ;
-fun diapheromera_N : N ;
-fun habanera_N : N ;
-fun scorzonera_N : N ;
-fun tempera_N : N ;
-fun opera_N : N ;
-fun 'soap-opera_N' : N ;
-fun puerpera_N : N ;
-fun tessera_N : N ;
-fun etcetera_N : N ;
-fun monstera_N : N ;
-fun melagra_N : N ;
-fun pellagra_N : N ;
-fun chaulmoogra_N : N ;
-fun urethra_N : N ;
-fun ira_N : N ;
-fun naira_N : N ;
-fun madeira_N : N ;
-fun hegira_N : N ;
-fun achira_N : N ;
-fun hejira_N : N ;
-fun lira_N : N ;
-fun lempira_N : N ;
-fun leptospira_N : N ;
-fun quira_N : N ;
-fun okra_N : N ;
-fun maquiladora_N : N ;
-fun fedora_N : N ;
-fun agora_N : N ;
-fun mandragora_N : N ;
-fun angora_N : N ;
-fun anaphora_N : N ;
-fun epanaphora_N : N ;
-fun epiphora_N : N ;
-fun amphora_N : N ;
-fun plethora_N : N ;
-fun rariora_N : N ;
-fun multiflora_N : N ;
-fun microflora_N : N ;
-fun amora_N : N ;
-fun remora_N : N ;
-fun lecanora_N : N ;
-fun senora_N : N ;
-fun signora_N : N ;
-fun diaspora_N : N ;
-fun aurora_N : N ;
-fun copra_N : N ;
-fun mojarra_N : N ;
-fun sierra_N : N ;
-fun kookaburra_N : N ;
-fun durra_N : N ;
-fun hematocolpometra_N : N ;
-fun tetra_N : N ;
-fun gyromitra_N : N ;
-fun mantra_N : N ;
-fun tantra_N : N ;
-fun calyptra_N : N ;
-fun orchestra_N : N ;
-fun 'dance-orchestra_N' : N ;
-fun palestra_N : N ;
-fun fenestra_N : N ;
-fun aspidistra_N : N ;
-fun sutra_N : N ;
-fun extra_N : N ;
-fun aura_N : N ;
-fun pleura_N : N ;
-fun tempura_N : N ;
-fun purpura_N : N ;
-fun sura_N : N ;
-fun caesura_N : N ;
-fun nomenklatura_N : N ;
-fun coloratura_N : N ;
-fun angostura_N : N ;
-fun bravura_N : N ;
-fun tayra_N : N ;
-fun spirogyra_N : N ;
-fun palmyra_N : N ;
-fun bahasa_N : N ;
-fun loasa_N : N ;
-fun madrasa_N : N ;
-fun msasa_N : N ;
-fun pdsa_N : N ;
-fun mesa_N : N ;
-fun paisa_N : N ;
-fun disa_N : N ;
-fun visa_N : N ;
-fun shiksa_N : N ;
-fun moksa_N : N ;
-fun balsa_N : N ;
-fun phalsa_N : N ;
-fun salsa_N : N ;
-fun ahimsa_N : N ;
-fun bosa_N : N ;
-fun submucosa_N : N ;
-fun gloriosa_N : N ;
-fun curiosa_N : N ;
-fun melosa_N : N ;
-fun samosa_N : N ;
-fun mimosa_N : N ;
-fun mariposa_N : N ;
-fun ponderosa_N : N ;
-fun bursa_N : N ;
-fun abscissa_N : N ;
-fun carissa_N : N ;
-fun mantissa_N : N ;
-fun fossa_N : N ;
-fun medusa_N : N ;
-fun anchusa_N : N ;
-fun arethusa_N : N ;
-fun babirusa_N : N ;
-fun physa_N : N ;
-fun toccata_N : N ;
-fun metadata_N : N ;
-fun balata_N : N ;
-fun chipolata_N : N ;
-fun stigmata_N : N ;
-fun fermata_N : N ;
-fun pinata_N : N ;
-fun sonata_N : N ;
-fun inamorata_N : N ;
-fun cantata_N : N ;
-fun frittata_N : N ;
-fun exacta_N : N ;
-fun superfecta_N : N ;
-fun eta_N : N ;
-fun chaeta_N : N ;
-fun beta_N : N ;
-fun taffeta_N : N ;
-fun theta_N : N ;
-fun palometa_N : N ;
-fun seta_N : N ;
-fun peseta_N : N ;
-fun zeta_N : N ;
-fun efta_N : N ;
-fun raita_N : N ;
-fun dita_N : N ;
-fun manzanita_N : N ;
-fun 'terra incognita_N' : N ;
-fun pita_N : N ;
-fun margarita_N : N ;
-fun nerita_N : N ;
-fun feterita_N : N ;
-fun senorita_N : N ;
-fun rosita_N : N ;
-fun partita_N : N ;
-fun vaquita_N : N ;
-fun delta_N : N ;
-fun manta_N : N ;
-fun maranta_N : N ;
-fun placenta_N : N ;
-fun irredenta_N : N ;
-fun magenta_N : N ;
-fun polenta_N : N ;
-fun impedimenta_N : N ;
-fun yenta_N : N ;
-fun junta_N : N ;
-fun bota_N : N ;
-fun iota_N : N ;
-fun biota_N : N ;
-fun lepiota_N : N ;
-fun lota_N : N ;
-fun pelota_N : N ;
-fun rota_N : N ;
-fun quota_N : N ;
-fun pta_N : N ;
-fun smarta_N : N ;
-fun omerta_N : N ;
-fun aorta_N : N ;
-fun kurta_N : N ;
-fun canasta_N : N ;
-fun pasta_N : N ;
-fun ingesta_N : N ;
-fun fiesta_N : N ;
-fun siesta_N : N ;
-fun celesta_N : N ;
-fun testa_N : N ;
-fun gangsta_N : N ;
-fun fascista_N : N ;
-fun arista_N : N ;
-fun vista_N : N ;
-fun costa_N : N ;
-fun regatta_N : N ;
-fun vendetta_N : N ;
-fun arietta_N : N ;
-fun operetta_N : N ;
-fun biretta_N : N ;
-fun sagitta_N : N ;
-fun pitta_N : N ;
-fun 'terra-cotta_N' : N ;
-fun ricotta_N : N ;
-fun likuta_N : N ;
-fun barracouta_N : N ;
-fun baryta_N : N ;
-fun decidua_N : N ;
-fun tamandua_N : N ;
-fun agua_N : N ;
-fun skua_N : N ;
-fun mantua_N : N ;
-fun kava_N : N ;
-fun lava_N : N ;
-fun lavalava_N : N ;
-fun balaclava_N : N ;
-fun baklava_N : N ;
-fun cassava_N : N ;
-fun guava_N : N ;
-fun geneva_N : N ;
-fun gingiva_N : N ;
-fun shiva_N : N ;
-fun yeshiva_N : N ;
-fun saliva_N : N ;
-fun conjunctiva_N : N ;
-fun viva_N : N ;
-fun silva_N : N ;
-fun volva_N : N ;
-fun vulva_N : N ;
-fun pavlova_N : N ;
-fun nova_N : N ;
-fun supernova_N : N ;
-fun conferva_N : N ;
-fun dhawa_N : N ;
-fun pesewa_N : N ;
-fun pipsissewa_N : N ;
-fun schwa_N : N ;
-fun fatwa_N : N ;
-fun kalansuwa_N : N ;
-fun adnexa_N : N ;
-fun baya_N : N ;
-fun abaya_N : N ;
-fun pitahaya_N : N ;
-fun jambalaya_N : N ;
-fun papaya_N : N ;
-fun praya_N : N ;
-fun calisaya_N : N ;
-fun dombeya_N : N ;
-fun buckleya_N : N ;
-fun cattleya_N : N ;
-fun ouguiya_N : N ;
-fun rajanya_N : N ;
-fun polynya_N : N ;
-fun hoya_N : N ;
-fun cherimoya_N : N ;
-fun soya_N : N ;
-fun pya_N : N ;
-fun rya_N : N ;
-fun vaisya_N : N ;
-fun chalaza_N : N ;
-fun plaza_N : N ;
-fun guereza_N : N ;
-fun baiza_N : N ;
-fun liza_N : N ;
-fun mestiza_N : N ;
-fun extravaganza_N : N ;
-fun organza_N : N ;
-fun bonanza_N : N ;
-fun stanza_N : N ;
-fun kwanza_N : N ;
-fun cadenza_N : N ;
-fun credenza_N : N ;
-fun influenza_N : N ;
-fun boza_N : N ;
-fun yakuza_N : N ;
-fun piazza_N : N ;
-fun pizza_N : N ;
-fun vicuña_N : N ;
-fun lib_N : N ;
-fun bob_N : N ;
-fun chebab_N : N ;
-fun kebab_N : N ;
-fun 'shish kebab_N' : N ;
-fun baobab_N : N ;
-fun cab_N : N ;
-fun pedicab_N : N ;
-fun minicab_N : N ;
-fun taxicab_N : N ;
-fun scab_N : N ;
-fun dab_N : N ;
-fun prefab_N : N ;
-fun confab_N : N ;
-fun gab_N : N ;
-fun jab_N : N ;
-fun hijab_N : N ;
-fun lab_N : N ;
-fun flab_N : N ;
-fun slab_N : N ;
-fun infliximab_N : N ;
-fun niqab_N : N ;
-fun Arab_N : N ;
-fun scarab_N : N ;
-fun crab_N : N ;
-fun grab_N : N ;
-fun mihrab_N : N ;
-fun tab_N : N ;
-fun stab_N : N ;
-fun squab_N : N ;
-fun nawab_N : N ;
-fun swab_N : N ;
-fun ebb_N : N ;
-fun cubeb_N : N ;
-fun deb_N : N ;
-fun ardeb_N : N ;
-fun pleb_N : N ;
-fun web_N : N ;
-fun cobweb_N : N ;
-fun kgb_N : N ;
-fun bib_N : N ;
-fun fib_N : N ;
-fun gib_N : N ;
-fun sahib_N : N ;
-fun memsahib_N : N ;
-fun jib_N : N ;
-fun nib_N : N ;
-fun rib_N : N ;
-fun 'spare-rib_N' : N ;
-fun crib_N : N ;
-fun corncrib_N : N ;
-fun midrib_N : N ;
-fun sparerib_N : N ;
-fun squib_N : N ;
-fun valdecoxib_N : N ;
-fun rofecoxib_N : N ;
-fun celecoxib_N : N ;
-fun lb_N : N ;
-fun alb_N : N ;
-fun llb_N : N ;
-fun bulb_N : N ;
-fun flashbulb_N : N ;
-fun pseudobulb_N : N ;
-fun mb_N : N ;
-fun iamb_N : N ;
-fun jamb_N : N ;
-fun doorjamb_N : N ;
-fun lamb_N : N ;
-fun 'baa-lamb_N' : N ;
-fun dithyramb_N : N ;
-fun limb_N : N ;
-fun climb_N : N ;
-fun forelimb_N : N ;
-fun bomb_N : N ;
-fun 'a-bomb_N' : N ;
-fun 'plastic-bomb_N' : N ;
-fun 'smoke-bomb_N' : N ;
-fun 'time-bomb_N' : N ;
-fun 'flying-bomb_N' : N ;
-fun 'h-bomb_N' : N ;
-fun 'depth-bomb_N' : N ;
-fun firebomb_N : N ;
-fun comb_N : N ;
-fun catacomb_N : N ;
-fun cockscomb_N : N ;
-fun pocketcomb_N : N ;
-fun coxcomb_N : N ;
-fun honeycomb_N : N ;
-fun currycomb_N : N ;
-fun rhomb_N : N ;
-fun aplomb_N : N ;
-fun coulomb_N : N ;
-fun abcoulomb_N : N ;
-fun tomb_N : N ;
-fun hecatomb_N : N ;
-fun womb_N : N ;
-fun thumb_N : N ;
-fun plumb_N : N ;
-fun crumb_N : N ;
-fun breadcrumb_N : N ;
-fun corymb_N : N ;
-fun 'ski-bob_N' : N ;
-fun kabob_N : N ;
-fun thingmabob_N : N ;
-fun thingumabob_N : N ;
-fun nabob_N : N ;
-fun skibob_N : N ;
-fun cob_N : N ;
-fun corncob_N : N ;
-fun fob_N : N ;
-fun gob_N : N ;
-fun hob_N : N ;
-fun job_N : N ;
-fun kob_N : N ;
-fun lob_N : N ;
-fun blob_N : N ;
-fun slob_N : N ;
-fun mob_N : N ;
-fun nob_N : N ;
-fun knob_N : N ;
-fun doorknob_N : N ;
-fun snob_N : N ;
-fun boob_N : N ;
-fun carob_N : N ;
-fun throb_N : N ;
-fun heartthrob_N : N ;
-fun sob_N : N ;
-fun stob_N : N ;
-fun swob_N : N ;
-fun yob_N : N ;
-fun wpb_N : N ;
-fun barb_N : N ;
-fun rhubarb_N : N ;
-fun garb_N : N ;
-fun herb_N : N ;
-fun potherb_N : N ;
-fun cowherb_N : N ;
-fun willowherb_N : N ;
-fun kerb_N : N ;
-fun verb_N : N ;
-fun adverb_N : N ;
-fun proverb_N : N ;
-fun orb_N : N ;
-fun sorb_N : N ;
-fun suburb_N : N ;
-fun curb_N : N ;
-fun blurb_N : N ;
-fun tb_N : N ;
-fun daub_N : N ;
-fun sillabub_N : N ;
-fun syllabub_N : N ;
-fun hubbub_N : N ;
-fun cub_N : N ;
-fun 'wolf-cub_N' : N ;
-fun dub_N : N ;
-fun 'rub-a-dub_N' : N ;
-fun hub_N : N ;
-fun chub_N : N ;
-fun club_N : N ;
-fun 'slate-club_N' : N ;
-fun 'golf-club_N' : N ;
-fun 'rowing-club_N' : N ;
-fun 'yacht-club_N' : N ;
-fun bookclub_N : N ;
-fun nightclub_N : N ;
-fun slub_N : N ;
-fun nub_N : N ;
-fun snub_N : N ;
-fun pub_N : N ;
-fun brewpub_N : N ;
-fun rub_N : N ;
-fun scrub_N : N ;
-fun cherub_N : N ;
-fun grub_N : N ;
-fun shrub_N : N ;
-fun subshrub_N : N ;
-fun undershrub_N : N ;
-fun sub_N : N ;
-fun minisub_N : N ;
-fun tub_N : N ;
-fun washtub_N : N ;
-fun bathtub_N : N ;
-fun stub_N : N ;
-fun cc_N : N ;
-fun tombac_N : N ;
-fun ipecac_N : N ;
-fun sulindac_N : N ;
-fun zodiac_N : N ;
-fun haemophiliac_N : N ;
-fun hemophiliac_N : N ;
-fun maniac_N : N ;
-fun egomaniac_N : N ;
-fun nymphomaniac_N : N ;
-fun megalomaniac_N : N ;
-fun monomaniac_N : N ;
-fun pyromaniac_N : N ;
-fun dipsomaniac_N : N ;
-fun kleptomaniac_N : N ;
-fun insomniac_N : N ;
-fun demoniac_N : N ;
-fun ammoniac_N : N ;
-fun paranoiac_N : N ;
-fun hypochondriac_N : N ;
-fun celeriac_N : N ;
-fun aphrodisiac_N : N ;
-fun muntjac_N : N ;
-fun lac_N : N ;
-fun lilac_N : N ;
-fun shellac_N : N ;
-fun etodolac_N : N ;
-fun ketorolac_N : N ;
-fun mac_N : N ;
-fun tarmac_N : N ;
-fun sumac_N : N ;
-fun almanac_N : N ;
-fun cognac_N : N ;
-fun calpac_N : N ;
-fun sandarac_N : N ;
-fun 'bric-a-brac_N' : N ;
-fun wrac_N : N ;
-fun sac_N : N ;
-fun 'cul-de-sac_N' : N ;
-fun bivouac_N : N ;
-fun vac_N : N ;
-fun abc_N : N ;
-fun mcc_N : N ;
-fun nspcc_N : N ;
-fun ec_N : N ;
-fun eec_N : N ;
-fun spec_N : N ;
-fun tenrec_N : N ;
-fun sec_N : N ;
-fun parsec_N : N ;
-fun tec_N : N ;
-fun romaic_N : N ;
-fun mosaic_N : N ;
-fun Arabic_N : N ;
-fun iambic_N : N ;
-fun alembic_N : N ;
-fun oxytocic_N : N ;
-fun medic_N : N ;
-fun paramedic_N : N ;
-fun icelandic_N : N ;
-fun syndic_N : N ;
-fun antispasmodic_N : N ;
-fun nordic_N : N ;
-fun asdic_N : N ;
-fun traffic_N : N ;
-fun 'slave-traffic_N' : N ;
-fun specific_N : N ;
-fun conspecific_N : N ;
-fun sudorific_N : N ;
-fun honorific_N : N ;
-fun soporific_N : N ;
-fun magic_N : N ;
-fun paraplegic_N : N ;
-fun hemiplegic_N : N ;
-fun quadriplegic_N : N ;
-fun logic_N : N ;
-fun adrenergic_N : N ;
-fun anticholinergic_N : N ;
-fun chic_N : N ;
-fun psychic_N : N ;
-fun graphic_N : N ;
-fun demographic_N : N ;
-fun dermatoglyphic_N : N ;
-fun pyrrhic_N : N ;
-fun ethic_N : N ;
-fun gothic_N : N ;
-fun aphakic_N : N ;
-fun dolichocephalic_N : N ;
-fun brachycephalic_N : N ;
-fun italic_N : N ;
-fun public_N : N ;
-fun republic_N : N ;
-fun tricyclic_N : N ;
-fun nontricyclic_N : N ;
-fun gaelic_N : N ;
-fun relic_N : N ;
-fun metallic_N : N ;
-fun colic_N : N ;
-fun workaholic_N : N ;
-fun shopaholic_N : N ;
-fun melancholic_N : N ;
-fun alcoholic_N : N ;
-fun Catholic_N : N ;
-fun 'anglo-catholic_N' : N ;
-fun frolic_N : N ;
-fun garlic_N : N ;
-fun acrylic_N : N ;
-fun dynamic_N : N ;
-fun ceramic_N : N ;
-fun academic_N : N ;
-fun epidemic_N : N ;
-fun pandemic_N : N ;
-fun endemic_N : N ;
-fun polemic_N : N ;
-fun antiarrhythmic_N : N ;
-fun bulimic_N : N ;
-fun mimic_N : N ;
-fun comic_N : N ;
-fun hypodermic_N : N ;
-fun matronymic_N : N ;
-fun patronymic_N : N ;
-fun organic_N : N ;
-fun mechanic_N : N ;
-fun panic_N : N ;
-fun picnic_N : N ;
-fun neurasthenic_N : N ;
-fun schizophrenic_N : N ;
-fun arsenic_N : N ;
-fun polytechnic_N : N ;
-fun ethnic_N : N ;
-fun clinic_N : N ;
-fun hematinic_N : N ;
-fun mnemonic_N : N ;
-fun harmonic_N : N ;
-fun tonic_N : N ;
-fun subtonic_N : N ;
-fun supertonic_N : N ;
-fun tunic_N : N ;
-fun cynic_N : N ;
-fun stoic_N : N ;
-fun epic_N : N ;
-fun tropic_N : N ;
-fun topic_N : N ;
-fun spic_N : N ;
-fun aspic_N : N ;
-fun agaric_N : N ;
-fun amharic_N : N ;
-fun fabric_N : N ;
-fun cambric_N : N ;
-fun rubric_N : N ;
-fun quadric_N : N ;
-fun baldric_N : N ;
-fun cleric_N : N ;
-fun turmeric_N : N ;
-fun generic_N : N ;
-fun climacteric_N : N ;
-fun hysteric_N : N ;
-fun paregoric_N : N ;
-fun rhetoric_N : N ;
-fun bishopric_N : N ;
-fun archbishopric_N : N ;
-fun matric_N : N ;
-fun electric_N : N ;
-fun eccentric_N : N ;
-fun egocentric_N : N ;
-fun panegyric_N : N ;
-fun lyric_N : N ;
-fun basic_N : N ;
-fun aphasic_N : N ;
-fun geodesic_N : N ;
-fun analgesic_N : N ;
-fun amnesic_N : N ;
-fun cellulosic_N : N ;
-fun classic_N : N ;
-fun music_N : N ;
-fun physic_N : N ;
-fun tic_N : N ;
-fun mydriatic_N : N ;
-fun asiatic_N : N ;
-fun schematic_N : N ;
-fun stigmatic_N : N ;
-fun asthmatic_N : N ;
-fun automatic_N : N ;
-fun rheumatic_N : N ;
-fun fanatic_N : N ;
-fun lunatic_N : N ;
-fun quadratic_N : N ;
-fun biquadratic_N : N ;
-fun hieratic_N : N ;
-fun static_N : N ;
-fun aquatic_N : N ;
-fun prophylactic_N : N ;
-fun chiropractic_N : N ;
-fun tactic_N : N ;
-fun dialectic_N : N ;
-fun catalectic_N : N ;
-fun acatalectic_N : N ;
-fun hypercatalectic_N : N ;
-fun eclectic_N : N ;
-fun dyslectic_N : N ;
-fun eutectic_N : N ;
-fun deictic_N : N ;
-fun arctic_N : N ;
-fun diabetic_N : N ;
-fun antidiabetic_N : N ;
-fun ascetic_N : N ;
-fun synthetic_N : N ;
-fun esthetic_N : N ;
-fun aesthetic_N : N ;
-fun anaesthetic_N : N ;
-fun anesthetic_N : N ;
-fun metic_N : N ;
-fun emetic_N : N ;
-fun antiemetic_N : N ;
-fun arithmetic_N : N ;
-fun cosmetic_N : N ;
-fun paretic_N : N ;
-fun heretic_N : N ;
-fun diaphoretic_N : N ;
-fun antidiuretic_N : N ;
-fun antipyretic_N : N ;
-fun peripatetic_N : N ;
-fun syphilitic_N : N ;
-fun antisyphilitic_N : N ;
-fun critic_N : N ;
-fun diacritic_N : N ;
-fun arthritic_N : N ;
-fun antipruritic_N : N ;
-fun celtic_N : N ;
-fun antic_N : N ;
-fun romantic_N : N ;
-fun quantic_N : N ;
-fun narcotic_N : N ;
-fun psychotic_N : N ;
-fun antibiotic_N : N ;
-fun probiotic_N : N ;
-fun erotic_N : N ;
-fun neurotic_N : N ;
-fun sceptic_N : N ;
-fun skeptic_N : N ;
-fun analeptic_N : N ;
-fun cataleptic_N : N ;
-fun epileptic_N : N ;
-fun narcoleptic_N : N ;
-fun dyspeptic_N : N ;
-fun antiseptic_N : N ;
-fun ecliptic_N : N ;
-fun coptic_N : N ;
-fun styptic_N : N ;
-fun cathartic_N : N ;
-fun ecclesiastic_N : N ;
-fun elastic_N : N ;
-fun plastic_N : N ;
-fun antineoplastic_N : N ;
-fun thermoplastic_N : N ;
-fun mastic_N : N ;
-fun bitumastic_N : N ;
-fun spastic_N : N ;
-fun domestic_N : N ;
-fun eristic_N : N ;
-fun characteristic_N : N ;
-fun heuristic_N : N ;
-fun statistic_N : N ;
-fun agnostic_N : N ;
-fun prognostic_N : N ;
-fun acrostic_N : N ;
-fun caustic_N : N ;
-fun encaustic_N : N ;
-fun acoustic_N : N ;
-fun rustic_N : N ;
-fun mystic_N : N ;
-fun attic_N : N ;
-fun propaedeutic_N : N ;
-fun paralytic_N : N ;
-fun thrombolytic_N : N ;
-fun electrolytic_N : N ;
-fun alexic_N : N ;
-fun anorexic_N : N ;
-fun talc_N : N ;
-fun mc_N : N ;
-fun charabanc_N : N ;
-fun charàbanc_N : N ;
-fun blanc_N : N ;
-fun franc_N : N ;
-fun zinc_N : N ;
-fun postdoc_N : N ;
-fun choc_N : N ;
-fun bloc_N : N ;
-fun roc_N : N ;
-fun soc_N : N ;
-fun assoc_N : N ;
-fun nostoc_N : N ;
-fun havoc_N : N ;
-fun qc_N : N ;
-fun arc_N : N ;
-fun marc_N : N ;
-fun narc_N : N ;
-fun bsc_N : N ;
-fun dsc_N : N ;
-fun disc_N : N ;
-fun fisc_N : N ;
-fun msc_N : N ;
-fun bosc_N : N ;
-fun mollusc_N : N ;
-fun bonduc_N : N ;
-fun tuc_N : N ;
-fun vc_N : N ;
-fun read_N : N ;
-fun lied_N : N ;
-fun id_N : N ;
-fun stupid_N : N ;
-fun midfield_N : N ;
-fun 'stick-in-the-mud_N' : N ;
-fun shad_N : N ;
-fun departed_N : N ;
-fun quid_N : N ;
-fun child_N : N ;
-fun 'love-child_N' : N ;
-fun 'foster-child_N' : N ;
-fun grandchild_N : N ;
-fun godchild_N : N ;
-fun schoolchild_N : N ;
-fun brainchild_N : N ;
-fun stepchild_N : N ;
-fun 'three-d_N' : N ;
-fun ad_N : N ;
-fun 'want-ad_N' : N ;
-fun bad_N : N ;
-fun cad_N : N ;
-fun nicad_N : N ;
-fun scad_N : N ;
-fun cycad_N : N ;
-fun dad_N : N ;
-fun granddad_N : N ;
-fun grandad_N : N ;
-fun doodad_N : N ;
-fun aoudad_N : N ;
-fun bead_N : N ;
-fun dead_N : N ;
-fun head_N : N ;
-fun 'bald-head_N' : N ;
-fun 'addle-head_N' : N ;
-fun 'bone-head_N' : N ;
-fun 'pudden-head_N' : N ;
-fun 'fountain-head_N' : N ;
-fun 'mutton-head_N' : N ;
-fun 'sleepy-head_N' : N ;
-fun 'go-ahead_N' : N ;
-fun deadhead_N : N ;
-fun redhead_N : N ;
-fun baldhead_N : N ;
-fun roundhead_N : N ;
-fun godhead_N : N ;
-fun floodhead_N : N ;
-fun bridgehead_N : N ;
-fun bufflehead_N : N ;
-fun forehead_N : N ;
-fun sorehead_N : N ;
-fun figurehead_N : N ;
-fun whitehead_N : N ;
-fun bluehead_N : N ;
-fun egghead_N : N ;
-fun bighead_N : N ;
-fun beachhead_N : N ;
-fun blackhead_N : N ;
-fun thickhead_N : N ;
-fun blockhead_N : N ;
-fun bulkhead_N : N ;
-fun metalhead_N : N ;
-fun shovelhead_N : N ;
-fun nailhead_N : N ;
-fun railhead_N : N ;
-fun wellhead_N : N ;
-fun bullhead_N : N ;
-fun drumhead_N : N ;
-fun maidenhead_N : N ;
-fun fountainhead_N : N ;
-fun skinhead_N : N ;
-fun pinhead_N : N ;
-fun dragonhead_N : N ;
-fun saphead_N : N ;
-fun spearhead_N : N ;
-fun warhead_N : N ;
-fun dunderhead_N : N ;
-fun thunderhead_N : N ;
-fun loggerhead_N : N ;
-fun hammerhead_N : N ;
-fun copperhead_N : N ;
-fun letterhead_N : N ;
-fun overhead_N : N ;
-fun showerhead_N : N ;
-fun airhead_N : N ;
-fun stairhead_N : N ;
-fun hogshead_N : N ;
-fun sheepshead_N : N ;
-fun crosshead_N : N ;
-fun fathead_N : N ;
-fun flathead_N : N ;
-fun bullethead_N : N ;
-fun pithead_N : N ;
-fun hothead_N : N ;
-fun pothead_N : N ;
-fun masthead_N : N ;
-fun bitthead_N : N ;
-fun bowhead_N : N ;
-fun arrowhead_N : N ;
-fun towhead_N : N ;
-fun sleepyhead_N : N ;
-fun lead_N : N ;
-fun 'black-lead_N' : N ;
-fun fairlead_N : N ;
-fun mead_N : N ;
-fun bread_N : N ;
-fun 'rye-bread_N' : N ;
-fun beebread_N : N ;
-fun cornbread_N : N ;
-fun gingerbread_N : N ;
-fun flatbread_N : N ;
-fun sweetbread_N : N ;
-fun shortbread_N : N ;
-fun sowbread_N : N ;
-fun dread_N : N ;
-fun thread_N : N ;
-fun 'pack-thread_N' : N ;
-fun goldthread_N : N ;
-fun packthread_N : N ;
-fun spread_N : N ;
-fun bedspread_N : N ;
-fun wingspread_N : N ;
-fun tread_N : N ;
-fun retread_N : N ;
-fun stead_N : N ;
-fun roadstead_N : N ;
-fun bedstead_N : N ;
-fun homestead_N : N ;
-fun farmstead_N : N ;
-fun fad_N : N ;
-fun chad_N : N ;
-fun jihad_N : N ;
-fun ijtihad_N : N ;
-fun mujtihad_N : N ;
-fun naiad_N : N ;
-fun jeremiad_N : N ;
-fun bignoniad_N : N ;
-fun asclepiad_N : N ;
-fun olympiad_N : N ;
-fun gesneriad_N : N ;
-fun triad_N : N ;
-fun myriad_N : N ;
-fun lad_N : N ;
-fun salad_N : N ;
-fun ironclad_N : N ;
-fun ballad_N : N ;
-fun nomad_N : N ;
-fun maenad_N : N ;
-fun gonad_N : N ;
-fun monad_N : N ;
-fun pseudomonad_N : N ;
-fun trichomonad_N : N ;
-fun xanthomonad_N : N ;
-fun cryptomonad_N : N ;
-fun goad_N : N ;
-fun load_N : N ;
-fun workload_N : N ;
-fun trainload_N : N ;
-fun shipload_N : N ;
-fun carload_N : N ;
-fun overload_N : N ;
-fun busload_N : N ;
-fun boatload_N : N ;
-fun cartload_N : N ;
-fun payload_N : N ;
-fun road_N : N ;
-fun 'side-road_N' : N ;
-fun 'bridle-road_N' : N ;
-fun 'ring-road_N' : N ;
-fun 'trunk-road_N' : N ;
-fun 'slip-road_N' : N ;
-fun broad_N : N ;
-fun highroad_N : N ;
-fun railroad_N : N ;
-fun inroad_N : N ;
-fun crossroad_N : N ;
-fun cartroad_N : N ;
-fun byroad_N : N ;
-fun toad_N : N ;
-fun woad_N : N ;
-fun pad_N : N ;
-fun 'launching-pad_N' : N ;
-fun 'scratch-pad_N' : N ;
-fun 'ink-pad_N' : N ;
-fun mousepad_N : N ;
-fun notepad_N : N ;
-fun scratchpad_N : N ;
-fun footpad_N : N ;
-fun rad_N : N ;
-fun farad_N : N ;
-fun abfarad_N : N ;
-fun millifarad_N : N ;
-fun picofarad_N : N ;
-fun microfarad_N : N ;
-fun brad_N : N ;
-fun grad_N : N ;
-fun trad_N : N ;
-fun tad_N : N ;
-fun quad_N : N ;
-fun squad_N : N ;
-fun 'firing-squad_N' : N ;
-fun 'flying-squad_N' : N ;
-fun wad_N : N ;
-fun 'tight-wad_N' : N ;
-fun swad_N : N ;
-fun dryad_N : N ;
-fun hamadryad_N : N ;
-fun cd_N : N ;
-fun oecd_N : N ;
-fun rudd_N : N ;
-fun 'b ed_N' : N ;
-fun 'dip ed_N' : N ;
-fun 'co-ed_N' : N ;
-fun bed_N : N ;
-fun 'truckle-bed_N' : N ;
-fun 'rose-bed_N' : N ;
-fun 'plank-bed_N' : N ;
-fun 'divan-bed_N' : N ;
-fun 'camp-bed_N' : N ;
-fun 'oyster-bed_N' : N ;
-fun 'river-bed_N' : N ;
-fun 'lie-abed_N' : N ;
-fun seabed_N : N ;
-fun roadbed_N : N ;
-fun seedbed_N : N ;
-fun deathbed_N : N ;
-fun sickbed_N : N ;
-fun streambed_N : N ;
-fun featherbed_N : N ;
-fun riverbed_N : N ;
-fun flowerbed_N : N ;
-fun airbed_N : N ;
-fun flatbed_N : N ;
-fun hotbed_N : N ;
-fun testbed_N : N ;
-fun daybed_N : N ;
-fun wounded_N : N ;
-fun deed_N : N ;
-fun 'title-deed_N' : N ;
-fun misdeed_N : N ;
-fun feed_N : N ;
-fun chickenfeed_N : N ;
-fun heed_N : N ;
-fun shaheed_N : N ;
-fun nosebleed_N : N ;
-fun meed_N : N ;
-fun need_N : N ;
-fun speed_N : N ;
-fun groundspeed_N : N ;
-fun godspeed_N : N ;
-fun airspeed_N : N ;
-fun reed_N : N ;
-fun breed_N : N ;
-fun 'half-breed_N' : N ;
-fun crossbreed_N : N ;
-fun creed_N : N ;
-fun screed_N : N ;
-fun greed_N : N ;
-fun seed_N : N ;
-fun rapeseed_N : N ;
-fun aniseed_N : N ;
-fun oilseed_N : N ;
-fun pumpkinseed_N : N ;
-fun linseed_N : N ;
-fun moonseed_N : N ;
-fun cottonseed_N : N ;
-fun dropseed_N : N ;
-fun heartseed_N : N ;
-fun axseed_N : N ;
-fun steed_N : N ;
-fun weed_N : N ;
-fun seaweed_N : N ;
-fun bindweed_N : N ;
-fun pondweed_N : N ;
-fun cudweed_N : N ;
-fun chafeweed_N : N ;
-fun pokeweed_N : N ;
-fun thimbleweed_N : N ;
-fun tumbleweed_N : N ;
-fun bugleweed_N : N ;
-fun fireweed_N : N ;
-fun horseweed_N : N ;
-fun agueweed_N : N ;
-fun blueweed_N : N ;
-fun sneezeweed_N : N ;
-fun chaffweed_N : N ;
-fun gulfweed_N : N ;
-fun ragweed_N : N ;
-fun pigweed_N : N ;
-fun richweed_N : N ;
-fun matchweed_N : N ;
-fun chickweed_N : N ;
-fun stickweed_N : N ;
-fun rockweed_N : N ;
-fun duckweed_N : N ;
-fun milkweed_N : N ;
-fun skunkweed_N : N ;
-fun brookweed_N : N ;
-fun hawkweed_N : N ;
-fun pickerelweed_N : N ;
-fun gravelweed_N : N ;
-fun jewelweed_N : N ;
-fun broomweed_N : N ;
-fun gumweed_N : N ;
-fun rosinweed_N : N ;
-fun scorpionweed_N : N ;
-fun ironweed_N : N ;
-fun jimsonweed_N : N ;
-fun cottonweed_N : N ;
-fun locoweed_N : N ;
-fun knapweed_N : N ;
-fun soapweed_N : N ;
-fun beggarweed_N : N ;
-fun tarweed_N : N ;
-fun cancerweed_N : N ;
-fun waterweed_N : N ;
-fun butterweed_N : N ;
-fun silverweed_N : N ;
-fun tweed_N : N ;
-fun carpetweed_N : N ;
-fun rabbitweed_N : N ;
-fun frostweed_N : N ;
-fun mayweed_N : N ;
-fun clammyweed_N : N ;
-fun fed_N : N ;
-fun aged_N : N ;
-fun shed_N : N ;
-fun bloodshed_N : N ;
-fun woodshed_N : N ;
-fun toolshed_N : N ;
-fun watershed_N : N ;
-fun cowshed_N : N ;
-fun betrothed_N : N ;
-fun married_N : N ;
-fun disabled_N : N ;
-fun baffled_N : N ;
-fun sled_N : N ;
-fun bobsled_N : N ;
-fun dogsled_N : N ;
-fun med_N : N ;
-fun doomed_N : N ;
-fun damned_N : N ;
-fun governed_N : N ;
-fun oed_N : N ;
-fun biped_N : N ;
-fun parallelepiped_N : N ;
-fun moped_N : N ;
-fun quadruped_N : N ;
-fun red_N : N ;
-fun infrared_N : N ;
-fun thoroughbred_N : N ;
-fun kindred_N : N ;
-fun shred_N : N ;
-fun hatred_N : N ;
-fun insured_N : N ;
-fun unconfessed_N : N ;
-fun accused_N : N ;
-fun ted_N : N ;
-fun defeated_N : N ;
-fun retreated_N : N ;
-fun malted_N : N ;
-fun oersted_N : N ;
-fun worsted_N : N ;
-fun pursued_N : N ;
-fun bereaved_N : N ;
-fun beloved_N : N ;
-fun newlywed_N : N ;
-fun phd_N : N ;
-fun aid_N : N ;
-fun 'deaf-aid_N' : N ;
-fun 'hearing-aid_N' : N ;
-fun plaid_N : N ;
-fun maid_N : N ;
-fun 'lady\'s-maid_N' : N ;
-fun handmaid_N : N ;
-fun nursemaid_N : N ;
-fun housemaid_N : N ;
-fun milkmaid_N : N ;
-fun barmaid_N : N ;
-fun chambermaid_N : N ;
-fun mermaid_N : N ;
-fun parlormaid_N : N ;
-fun bridesmaid_N : N ;
-fun dairymaid_N : N ;
-fun danaid_N : N ;
-fun raid_N : N ;
-fun 'air-raid_N' : N ;
-fun braid_N : N ;
-fun bid_N : N ;
-fun cymbid_N : N ;
-fun overbid_N : N ;
-fun cid_N : N ;
-fun acid_N : N ;
-fun antacid_N : N ;
-fun oxyacid_N : N ;
-fun probenecid_N : N ;
-fun tortricid_N : N ;
-fun psocid_N : N ;
-fun bombycid_N : N ;
-fun psychodid_N : N ;
-fun katydid_N : N ;
-fun lygaeid_N : N ;
-fun tracheid_N : N ;
-fun apartheid_N : N ;
-fun tineid_N : N ;
-fun nereid_N : N ;
-fun haemoproteid_N : N ;
-fun adelgid_N : N ;
-fun energid_N : N ;
-fun mujahid_N : N ;
-fun orchid_N : N ;
-fun aphid_N : N ;
-fun trombidiid_N : N ;
-fun gelechiid_N : N ;
-fun saturniid_N : N ;
-fun gracilariid_N : N ;
-fun lymantriid_N : N ;
-fun arctiid_N : N ;
-fun masjid_N : N ;
-fun kid_N : N ;
-fun 'whizz-kid_N' : N ;
-fun skid_N : N ;
-fun lid_N : N ;
-fun nymphalid_N : N ;
-fun pyralid_N : N ;
-fun invalid_N : N ;
-fun annelid_N : N ;
-fun archiannelid_N : N ;
-fun eyelid_N : N ;
-fun cichlid_N : N ;
-fun solid_N : N ;
-fun trombiculid_N : N ;
-fun gempylid_N : N ;
-fun agamid_N : N ;
-fun pyramid_N : N ;
-fun ornithomimid_N : N ;
-fun timid_N : N ;
-fun catostomid_N : N ;
-fun ambystomid_N : N ;
-fun phasmid_N : N ;
-fun plasmid_N : N ;
-fun desmid_N : N ;
-fun cosmid_N : N ;
-fun phasianid_N : N ;
-fun iguanid_N : N ;
-fun lycaenid_N : N ;
-fun scorpaenid_N : N ;
-fun arachnid_N : N ;
-fun clinid_N : N ;
-fun hominid_N : N ;
-fun cyprinid_N : N ;
-fun tyrannid_N : N ;
-fun salmonid_N : N ;
-fun phoronid_N : N ;
-fun procyonid_N : N ;
-fun rhomboid_N : N ;
-fun cuboid_N : N ;
-fun autacoid_N : N ;
-fun glucocorticoid_N : N ;
-fun mineralocorticoid_N : N ;
-fun fucoid_N : N ;
-fun mucoid_N : N ;
-fun gadoid_N : N ;
-fun tineoid_N : N ;
-fun typhoid_N : N ;
-fun paratyphoid_N : N ;
-fun hemorrhoid_N : N ;
-fun cardioid_N : N ;
-fun amygdaloid_N : N ;
-fun alkaloid_N : N ;
-fun tabloid_N : N ;
-fun cycloid_N : N ;
-fun epicycloid_N : N ;
-fun hypocycloid_N : N ;
-fun keloid_N : N ;
-fun colloid_N : N ;
-fun hydrocolloid_N : N ;
-fun paraboloid_N : N ;
-fun hyperboloid_N : N ;
-fun mongoloid_N : N ;
-fun haploid_N : N ;
-fun diploid_N : N ;
-fun amphidiploid_N : N ;
-fun heteroploid_N : N ;
-fun polyploid_N : N ;
-fun celluloid_N : N ;
-fun amyloid_N : N ;
-fun ethmoid_N : N ;
-fun prismoid_N : N ;
-fun ganoid_N : N ;
-fun paranoid_N : N ;
-fun scorpaenoid_N : N ;
-fun euglenoid_N : N ;
-fun solenoid_N : N ;
-fun carotenoid_N : N ;
-fun arytenoid_N : N ;
-fun arachnoid_N : N ;
-fun carcinoid_N : N ;
-fun hominoid_N : N ;
-fun crinoid_N : N ;
-fun resinoid_N : N ;
-fun actinoid_N : N ;
-fun flavonoid_N : N ;
-fun zooid_N : N ;
-fun anthropoid_N : N ;
-fun polaroid_N : N ;
-fun scombroid_N : N ;
-fun cancroid_N : N ;
-fun chancroid_N : N ;
-fun android_N : N ;
-fun spheroid_N : N ;
-fun aneroid_N : N ;
-fun bacteroid_N : N ;
-fun steroid_N : N ;
-fun asteroid_N : N ;
-fun nonsteroid_N : N ;
-fun corticosteroid_N : N ;
-fun ketosteroid_N : N ;
-fun 'sang froid_N' : N ;
-fun negroid_N : N ;
-fun viroid_N : N ;
-fun meteoroid_N : N ;
-fun choroid_N : N ;
-fun toroid_N : N ;
-fun centroid_N : N ;
-fun thyroid_N : N ;
-fun ellipsoid_N : N ;
-fun sinusoid_N : N ;
-fun prismatoid_N : N ;
-fun factoid_N : N ;
-fun deltoid_N : N ;
-fun demantoid_N : N ;
-fun mastoid_N : N ;
-fun sternocleidomastoid_N : N ;
-fun void_N : N ;
-fun ovoid_N : N ;
-fun hyoid_N : N ;
-fun trapezoid_N : N ;
-fun rhizoid_N : N ;
-fun antherozoid_N : N ;
-fun elapid_N : N ;
-fun rapid_N : N ;
-fun lipid_N : N ;
-fun phospholipid_N : N ;
-fun lasiocampid_N : N ;
-fun anaspid_N : N ;
-fun vespid_N : N ;
-fun mantispid_N : N ;
-fun cupid_N : N ;
-fun acarid_N : N ;
-fun larid_N : N ;
-fun sparid_N : N ;
-fun hybrid_N : N ;
-fun dihybrid_N : N ;
-fun monohybrid_N : N ;
-fun pierid_N : N ;
-fun ephemerid_N : N ;
-fun eurypterid_N : N ;
-fun grid_N : N ;
-fun leporid_N : N ;
-fun oviraptorid_N : N ;
-fun geometrid_N : N ;
-fun silurid_N : N ;
-fun capsid_N : N ;
-fun diapsid_N : N ;
-fun anapsid_N : N ;
-fun synapsid_N : N ;
-fun therapsid_N : N ;
-fun jassid_N : N ;
-fun hydatid_N : N ;
-fun chromatid_N : N ;
-fun spermatid_N : N ;
-fun caryatid_N : N ;
-fun neritid_N : N ;
-fun mylodontid_N : N ;
-fun ootid_N : N ;
-fun plastid_N : N ;
-fun fluid_N : N ;
-fun liquid_N : N ;
-fun squid_N : N ;
-fun druid_N : N ;
-fun bovid_N : N ;
-fun isoniazid_N : N ;
-fun isocarboxazid_N : N ;
-fun ribald_N : N ;
-fun scald_N : N ;
-fun weald_N : N ;
-fun herald_N : N ;
-fun emerald_N : N ;
-fun field_N : N ;
-fun 'landing-field_N' : N ;
-fun 'playing-field_N' : N ;
-fun 'brick-field_N' : N ;
-fun 'hop-field_N' : N ;
-fun 'paddy-field_N' : N ;
-fun goldfield_N : N ;
-fun icefield_N : N ;
-fun battlefield_N : N ;
-fun minefield_N : N ;
-fun backfield_N : N ;
-fun coalfield_N : N ;
-fun oilfield_N : N ;
-fun canfield_N : N ;
-fun infield_N : N ;
-fun grainfield_N : N ;
-fun cornfield_N : N ;
-fun chesterfield_N : N ;
-fun airfield_N : N ;
-fun gasfield_N : N ;
-fun wheatfield_N : N ;
-fun outfield_N : N ;
-fun snowfield_N : N ;
-fun hayfield_N : N ;
-fun shield_N : N ;
-fun windshield_N : N ;
-fun yield_N : N ;
-fun veld_N : N ;
-fun weld_N : N ;
-fun gild_N : N ;
-fun sild_N : N ;
-fun build_N : N ;
-fun guild_N : N ;
-fun wild_N : N ;
-fun old_N : N ;
-fun cold_N : N ;
-fun scold_N : N ;
-fun fold_N : N ;
-fun blindfold_N : N ;
-fun scaffold_N : N ;
-fun manifold_N : N ;
-fun billfold_N : N ;
-fun pinfold_N : N ;
-fun sheepfold_N : N ;
-fun centerfold_N : N ;
-fun gold_N : N ;
-fun marigold_N : N ;
-fun hold_N : N ;
-fun handhold_N : N ;
-fun freehold_N : N ;
-fun safehold_N : N ;
-fun chokehold_N : N ;
-fun stokehold_N : N ;
-fun stranglehold_N : N ;
-fun toehold_N : N ;
-fun leasehold_N : N ;
-fun household_N : N ;
-fun stronghold_N : N ;
-fun threshold_N : N ;
-fun foothold_N : N ;
-fun copyhold_N : N ;
-fun cuckold_N : N ;
-fun mold_N : N ;
-fun wold_N : N ;
-fun world_N : N ;
-fun dreamworld_N : N ;
-fun underworld_N : N ;
-fun otherworld_N : N ;
-fun afterworld_N : N ;
-fun fauld_N : N ;
-fun mould_N : N ;
-fun 'leaf-mould_N' : N ;
-fun ironmould_N : N ;
-fun md_N : N ;
-fun band_N : N ;
-fun 'dance-band_N' : N ;
-fun 'mourning-band_N' : N ;
-fun saraband_N : N ;
-fun contraband_N : N ;
-fun headband_N : N ;
-fun noseband_N : N ;
-fun watchband_N : N ;
-fun riband_N : N ;
-fun backband_N : N ;
-fun neckband_N : N ;
-fun armband_N : N ;
-fun trainband_N : N ;
-fun husband_N : N ;
-fun sweatband_N : N ;
-fun hatband_N : N ;
-fun waistband_N : N ;
-fun wristband_N : N ;
-fun bellyband_N : N ;
-fun multiplicand_N : N ;
-fun ligand_N : N ;
-fun brigand_N : N ;
-fun hand_N : N ;
-fun 'second-hand_N' : N ;
-fun 'round-hand_N' : N ;
-fun 'minute-hand_N' : N ;
-fun 'mill-hand_N' : N ;
-fun 'four-in-hand_N' : N ;
-fun stagehand_N : N ;
-fun forehand_N : N ;
-fun longhand_N : N ;
-fun backhand_N : N ;
-fun deckhand_N : N ;
-fun farmhand_N : N ;
-fun shorthand_N : N ;
-fun cowhand_N : N ;
-fun viand_N : N ;
-fun land_N : N ;
-fun 'grazing-land_N' : N ;
-fun 'crown-land_N' : N ;
-fun 'cloud-cuckoo-land_N' : N ;
-fun 'no-man\'s-land_N' : N ;
-fun scrubland_N : N ;
-fun headland_N : N ;
-fun midland_N : N ;
-fun woodland_N : N ;
-fun eland_N : N ;
-fun tideland_N : N ;
-fun rangeland_N : N ;
-fun tableland_N : N ;
-fun homeland_N : N ;
-fun foreland_N : N ;
-fun wasteland_N : N ;
-fun gland_N : N ;
-fun highland_N : N ;
-fun northland_N : N ;
-fun southland_N : N ;
-fun dreamland_N : N ;
-fun bottomland_N : N ;
-fun farmland_N : N ;
-fun mainland_N : N ;
-fun upland_N : N ;
-fun garland_N : N ;
-fun wonderland_N : N ;
-fun borderland_N : N ;
-fun fatherland_N : N ;
-fun motherland_N : N ;
-fun hinterland_N : N ;
-fun moorland_N : N ;
-fun island_N : N ;
-fun grassland_N : N ;
-fun lotusland_N : N ;
-fun wetland_N : N ;
-fun heartland_N : N ;
-fun coastland_N : N ;
-fun lowland_N : N ;
-fun fairyland_N : N ;
-fun demand_N : N ;
-fun remand_N : N ;
-fun reprimand_N : N ;
-fun command_N : N ;
-fun 'self-command_N' : N ;
-fun countermand_N : N ;
-fun gourmand_N : N ;
-fun ordinand_N : N ;
-fun rand_N : N ;
-fun brand_N : N ;
-fun firebrand_N : N ;
-fun operand_N : N ;
-fun errand_N : N ;
-fun strand_N : N ;
-fun sand_N : N ;
-fun quicksand_N : N ;
-fun greensand_N : N ;
-fun ampersand_N : N ;
-fun analysand_N : N ;
-fun stand_N : N ;
-fun 'music-stand_N' : N ;
-fun 'wash-hand-stand_N' : N ;
-fun 'hall-stand_N' : N ;
-fun 'witness-stand_N' : N ;
-fun 'cruet-stand_N' : N ;
-fun cabstand_N : N ;
-fun headstand_N : N ;
-fun bandstand_N : N ;
-fun handstand_N : N ;
-fun grandstand_N : N ;
-fun washstand_N : N ;
-fun kickstand_N : N ;
-fun inkstand_N : N ;
-fun hallstand_N : N ;
-fun newsstand_N : N ;
-fun wand_N : N ;
-fun end_N : N ;
-fun 'fag-end_N' : N ;
-fun 'scrag-end_N' : N ;
-fun 'book-end_N' : N ;
-fun 'tail-end_N' : N ;
-fun bend_N : N ;
-fun prebend_N : N ;
-fun backbend_N : N ;
-fun addend_N : N ;
-fun dividend_N : N ;
-fun legend_N : N ;
-fun augend_N : N ;
-fun subtrahend_N : N ;
-fun fiend_N : N ;
-fun friend_N : N ;
-fun 'pen-friend_N' : N ;
-fun schoolfriend_N : N ;
-fun girlfriend_N : N ;
-fun boyfriend_N : N ;
-fun weekend_N : N ;
-fun bookend_N : N ;
-fun 'lease-lend_N' : N ;
-fun blend_N : N ;
-fun loanblend_N : N ;
-fun mend_N : N ;
-fun stipend_N : N ;
-fun reverend_N : N ;
-fun trend_N : N ;
-fun godsend_N : N ;
-fun minuend_N : N ;
-fun bind_N : N ;
-fun find_N : N ;
-fun hind_N : N ;
-fun behind_N : N ;
-fun kind_N : N ;
-fun mankind_N : N ;
-fun womankind_N : N ;
-fun humankind_N : N ;
-fun blind_N : N ;
-fun sunblind_N : N ;
-fun mind_N : N ;
-fun mastermind_N : N ;
-fun rind_N : N ;
-fun tamarind_N : N ;
-fun grind_N : N ;
-fun wind_N : N ;
-fun 'trade-wind_N' : N ;
-fun headwind_N : N ;
-fun woodwind_N : N ;
-fun tailwind_N : N ;
-fun whirlwind_N : N ;
-fun crosswind_N : N ;
-fun bond_N : N ;
-fun vagabond_N : N ;
-fun second_N : N ;
-fun millisecond_N : N ;
-fun picosecond_N : N ;
-fun nanosecond_N : N ;
-fun microsecond_N : N ;
-fun femtosecond_N : N ;
-fun attosecond_N : N ;
-fun keeshond_N : N ;
-fun muishond_N : N ;
-fun blond_N : N ;
-fun diamond_N : N ;
-fun almond_N : N ;
-fun pond_N : N ;
-fun 'horse-pond_N' : N ;
-fun horsepond_N : N ;
-fun fishpond_N : N ;
-fun millpond_N : N ;
-fun frond_N : N ;
-fun maund_N : N ;
-fun cummerbund_N : N ;
-fun fund_N : N ;
-fun 'sinking-fund_N' : N ;
-fun refund_N : N ;
-fun dachshund_N : N ;
-fun bound_N : N ;
-fun homebound_N : N ;
-fun rebound_N : N ;
-fun found_N : N ;
-fun hound_N : N ;
-fun 'sleuth-hound_N' : N ;
-fun bloodhound_N : N ;
-fun horehound_N : N ;
-fun wolfhound_N : N ;
-fun staghound_N : N ;
-fun smoothhound_N : N ;
-fun hellhound_N : N ;
-fun coonhound_N : N ;
-fun boarhound_N : N ;
-fun otterhound_N : N ;
-fun foxhound_N : N ;
-fun greyhound_N : N ;
-fun mound_N : N ;
-fun pound_N : N ;
-fun 'foot-pound_N' : N ;
-fun compound_N : N ;
-fun iodocompound_N : N ;
-fun round_N : N ;
-fun 'turn-round_N' : N ;
-fun 'merry-go-round_N' : N ;
-fun 'whip-round_N' : N ;
-fun turnaround_N : N ;
-fun wraparound_N : N ;
-fun ground_N : N ;
-fun 'parade-ground_N' : N ;
-fun 'pleasure-ground_N' : N ;
-fun 'stamping-ground_N' : N ;
-fun 'burying-ground_N' : N ;
-fun 'burial-ground_N' : N ;
-fun battleground_N : N ;
-fun foreground_N : N ;
-fun background_N : N ;
-fun underground_N : N ;
-fun fairground_N : N ;
-fun playground_N : N ;
-fun surround_N : N ;
-fun sound_N : N ;
-fun ultrasound_N : N ;
-fun wound_N : N ;
-fun 'flesh-wound_N' : N ;
-fun gerund_N : N ;
-fun iPod_N : N ;
-fun cod_N : N ;
-fun lingcod_N : N ;
-fun eisteddfod_N : N ;
-fun god_N : N ;
-fun 'sea-god_N' : N ;
-fun 'sun-god_N' : N ;
-fun 'war-god_N' : N ;
-fun demigod_N : N ;
-fun hod_N : N ;
-fun method_N : N ;
-fun period_N : N ;
-fun clod_N : N ;
-fun mod_N : N ;
-fun nod_N : N ;
-fun synod_N : N ;
-fun food_N : N ;
-fun seafood_N : N ;
-fun petfood_N : N ;
-fun good_N : N ;
-fun hood_N : N ;
-fun childhood_N : N ;
-fun falsehood_N : N ;
-fun statehood_N : N ;
-fun hardihood_N : N ;
-fun likelihood_N : N ;
-fun unlikelihood_N : N ;
-fun livelihood_N : N ;
-fun girlhood_N : N ;
-fun manhood_N : N ;
-fun womanhood_N : N ;
-fun maidenhood_N : N ;
-fun nationhood_N : N ;
-fun personhood_N : N ;
-fun fatherhood_N : N ;
-fun motherhood_N : N ;
-fun brotherhood_N : N ;
-fun sisterhood_N : N ;
-fun spinsterhood_N : N ;
-fun neighborhood_N : N ;
-fun bachelorhood_N : N ;
-fun neighbourhood_N : N ;
-fun monkshood_N : N ;
-fun knighthood_N : N ;
-fun adulthood_N : N ;
-fun peasanthood_N : N ;
-fun parenthood_N : N ;
-fun sainthood_N : N ;
-fun priesthood_N : N ;
-fun widowhood_N : N ;
-fun babyhood_N : N ;
-fun boyhood_N : N ;
-fun blood_N : N ;
-fun 'half-blood_N' : N ;
-fun lifeblood_N : N ;
-fun flood_N : N ;
-fun mood_N : N ;
-fun snood_N : N ;
-fun pood_N : N ;
-fun rood_N : N ;
-fun brood_N : N ;
-fun wood_N : N ;
-fun 'drift-wood_N' : N ;
-fun zebrawood_N : N ;
-fun deadwood_N : N ;
-fun nakedwood_N : N ;
-fun redwood_N : N ;
-fun hardwood_N : N ;
-fun cordwood_N : N ;
-fun lancewood_N : N ;
-fun princewood_N : N ;
-fun orangewood_N : N ;
-fun snakewood_N : N ;
-fun marblewood_N : N ;
-fun needlewood_N : N ;
-fun candlewood_N : N ;
-fun applewood_N : N ;
-fun firewood_N : N ;
-fun greasewood_N : N ;
-fun moosewood_N : N ;
-fun rosewood_N : N ;
-fun dyewood_N : N ;
-fun beefwood_N : N ;
-fun kingwood_N : N ;
-fun dogwood_N : N ;
-fun logwood_N : N ;
-fun matchwood_N : N ;
-fun brushwood_N : N ;
-fun blackwood_N : N ;
-fun corkwood_N : N ;
-fun muskwood_N : N ;
-fun sandalwood_N : N ;
-fun coralwood_N : N ;
-fun laurelwood_N : N ;
-fun devilwood_N : N ;
-fun brazilwood_N : N ;
-fun camwood_N : N ;
-fun shittimwood_N : N ;
-fun wormwood_N : N ;
-fun gumwood_N : N ;
-fun greenwood_N : N ;
-fun satinwood_N : N ;
-fun lemonwood_N : N ;
-fun ironwood_N : N ;
-fun citronwood_N : N ;
-fun cottonwood_N : N ;
-fun buttonwood_N : N ;
-fun southernwood_N : N ;
-fun sapwood_N : N ;
-fun tulipwood_N : N ;
-fun pulpwood_N : N ;
-fun briarwood_N : N ;
-fun tarwood_N : N ;
-fun leatherwood_N : N ;
-fun basswood_N : N ;
-fun cocuswood_N : N ;
-fun trumpetwood_N : N ;
-fun driftwood_N : N ;
-fun softwood_N : N ;
-fun lightwood_N : N ;
-fun rabbitwood_N : N ;
-fun fruitwood_N : N ;
-fun bentwood_N : N ;
-fun heartwood_N : N ;
-fun yellowwood_N : N ;
-fun boxwood_N : N ;
-fun plywood_N : N ;
-fun pod_N : N ;
-fun decapod_N : N ;
-fun myriapod_N : N ;
-fun tetrapod_N : N ;
-fun hexapod_N : N ;
-fun fringepod_N : N ;
-fun sicklepod_N : N ;
-fun copepod_N : N ;
-fun amphipod_N : N ;
-fun tripod_N : N ;
-fun pseudopod_N : N ;
-fun scaphopod_N : N ;
-fun ornithopod_N : N ;
-fun brachiopod_N : N ;
-fun cephalopod_N : N ;
-fun actinopod_N : N ;
-fun theropod_N : N ;
-fun arthropod_N : N ;
-fun gastropod_N : N ;
-fun sauropod_N : N ;
-fun isopod_N : N ;
-fun stomatopod_N : N ;
-fun octopod_N : N ;
-fun rhizopod_N : N ;
-fun bladderpod_N : N ;
-fun rod_N : N ;
-fun 'fishing-rod_N' : N ;
-fun 'lightning-rod_N' : N ;
-fun 'birch-rod_N' : N ;
-fun 'stair-rod_N' : N ;
-fun flatbrod_N : N ;
-fun scrod_N : N ;
-fun schrod_N : N ;
-fun ramrod_N : N ;
-fun goldenrod_N : N ;
-fun prod_N : N ;
-fun silverrod_N : N ;
-fun sod_N : N ;
-fun tod_N : N ;
-fun bard_N : N ;
-fun tabard_N : N ;
-fun scabbard_N : N ;
-fun card_N : N ;
-fun 'face-card_N' : N ;
-fun 'picture-card_N' : N ;
-fun 'boarding-card_N' : N ;
-fun 'mailing-card_N' : N ;
-fun 'playing-card_N' : N ;
-fun 'letter-card_N' : N ;
-fun 'court-card_N' : N ;
-fun placard_N : N ;
-fun racecard_N : N ;
-fun timecard_N : N ;
-fun scorecard_N : N ;
-fun lettercard_N : N ;
-fun discard_N : N ;
-fun postcard_N : N ;
-fun keycard_N : N ;
-fun standard_N : N ;
-fun beard_N : N ;
-fun crownbeard_N : N ;
-fun greybeard_N : N ;
-fun regard_N : N ;
-fun disregard_N : N ;
-fun laggard_N : N ;
-fun niggard_N : N ;
-fun sluggard_N : N ;
-fun 'die-hard_N' : N ;
-fun chard_N : N ;
-fun pilchard_N : N ;
-fun pochard_N : N ;
-fun orchard_N : N ;
-fun shard_N : N ;
-fun halliard_N : N ;
-fun milliard_N : N ;
-fun goliard_N : N ;
-fun spaniard_N : N ;
-fun poniard_N : N ;
-fun briard_N : N ;
-fun tankard_N : N ;
-fun drunkard_N : N ;
-fun lard_N : N ;
-fun mallard_N : N ;
-fun bollard_N : N ;
-fun collard_N : N ;
-fun pollard_N : N ;
-fun dullard_N : N ;
-fun foulard_N : N ;
-fun nard_N : N ;
-fun canard_N : N ;
-fun spikenard_N : N ;
-fun gurnard_N : N ;
-fun board_N : N ;
-fun 'ouija-board_N' : N ;
-fun 'notice-board_N' : N ;
-fun 'cribbage-board_N' : N ;
-fun 'centre-board_N' : N ;
-fun 'sounding-board_N' : N ;
-fun 'draining-board_N' : N ;
-fun 'running-board_N' : N ;
-fun 'ironing-board_N' : N ;
-fun 'skirting-board_N' : N ;
-fun 'diving-board_N' : N ;
-fun 'drawing-board_N' : N ;
-fun 'sandwich-board_N' : N ;
-fun 'shovel-board_N' : N ;
-fun 'council-board_N' : N ;
-fun 'school-board_N' : N ;
-fun seaboard_N : N ;
-fun headboard_N : N ;
-fun breadboard_N : N ;
-fun moldboard_N : N ;
-fun cardboard_N : N ;
-fun hardboard_N : N ;
-fun sideboard_N : N ;
-fun shuffleboard_N : N ;
-fun fibreboard_N : N ;
-fun scoreboard_N : N ;
-fun baseboard_N : N ;
-fun cheeseboard_N : N ;
-fun skateboard_N : N ;
-fun pasteboard_N : N ;
-fun surfboard_N : N ;
-fun pegboard_N : N ;
-fun springboard_N : N ;
-fun punchboard_N : N ;
-fun matchboard_N : N ;
-fun switchboard_N : N ;
-fun highboard_N : N ;
-fun dashboard_N : N ;
-fun flashboard_N : N ;
-fun splashboard_N : N ;
-fun washboard_N : N ;
-fun backboard_N : N ;
-fun blackboard_N : N ;
-fun buckboard_N : N ;
-fun duckboard_N : N ;
-fun corkboard_N : N ;
-fun workboard_N : N ;
-fun tailboard_N : N ;
-fun fallboard_N : N ;
-fun wallboard_N : N ;
-fun billboard_N : N ;
-fun millboard_N : N ;
-fun signboard_N : N ;
-fun drainboard_N : N ;
-fun lapboard_N : N ;
-fun clapboard_N : N ;
-fun chipboard_N : N ;
-fun clipboard_N : N ;
-fun cupboard_N : N ;
-fun 'airing-cupboard_N' : N ;
-fun garboard_N : N ;
-fun larboard_N : N ;
-fun mortarboard_N : N ;
-fun starboard_N : N ;
-fun fiberboard_N : N ;
-fun daggerboard_N : N ;
-fun fingerboard_N : N ;
-fun checkerboard_N : N ;
-fun paperboard_N : N ;
-fun clapperboard_N : N ;
-fun centerboard_N : N ;
-fun plasterboard_N : N ;
-fun floorboard_N : N ;
-fun chessboard_N : N ;
-fun footboard_N : N ;
-fun dartboard_N : N ;
-fun strawboard_N : N ;
-fun snowboard_N : N ;
-fun keyboard_N : N ;
-fun hoard_N : N ;
-fun leopard_N : N ;
-fun sard_N : N ;
-fun hansard_N : N ;
-fun mansard_N : N ;
-fun brassard_N : N ;
-fun petard_N : N ;
-fun dotard_N : N ;
-fun leotard_N : N ;
-fun bastard_N : N ;
-fun dastard_N : N ;
-fun bustard_N : N ;
-fun custard_N : N ;
-fun mustard_N : N ;
-fun guard_N : N ;
-fun 'watch-guard_N' : N ;
-fun mudguard_N : N ;
-fun safeguard_N : N ;
-fun lifeguard_N : N ;
-fun fireguard_N : N ;
-fun blackguard_N : N ;
-fun vanguard_N : N ;
-fun shinguard_N : N ;
-fun rearguard_N : N ;
-fun coastguard_N : N ;
-fun bodyguard_N : N ;
-fun jacquard_N : N ;
-fun boulevard_N : N ;
-fun ward_N : N ;
-fun award_N : N ;
-fun seaward_N : N ;
-fun windward_N : N ;
-fun leeward_N : N ;
-fun reward_N : N ;
-fun steward_N : N ;
-fun 'shop-steward_N' : N ;
-fun coward_N : N ;
-fun rearward_N : N ;
-fun forward_N : N ;
-fun sward_N : N ;
-fun greensward_N : N ;
-fun yard_N : N ;
-fun 'rope-yard_N' : N ;
-fun 'marshalling-yard_N' : N ;
-fun vineyard_N : N ;
-fun graveyard_N : N ;
-fun churchyard_N : N ;
-fun backyard_N : N ;
-fun brickyard_N : N ;
-fun dockyard_N : N ;
-fun stockyard_N : N ;
-fun junkyard_N : N ;
-fun halyard_N : N ;
-fun steelyard_N : N ;
-fun schoolyard_N : N ;
-fun farmyard_N : N ;
-fun lanyard_N : N ;
-fun barnyard_N : N ;
-fun shipyard_N : N ;
-fun lumberyard_N : N ;
-fun dooryard_N : N ;
-fun boatyard_N : N ;
-fun tiltyard_N : N ;
-fun courtyard_N : N ;
-fun hazard_N : N ;
-fun biohazard_N : N ;
-fun lizard_N : N ;
-fun 'lounge-lizard_N' : N ;
-fun wizard_N : N ;
-fun gizzard_N : N ;
-fun blizzard_N : N ;
-fun buzzard_N : N ;
-fun halberd_N : N ;
-fun herd_N : N ;
-fun swineherd_N : N ;
-fun shepherd_N : N ;
-fun potsherd_N : N ;
-fun goatherd_N : N ;
-fun cowherd_N : N ;
-fun nerd_N : N ;
-fun laird_N : N ;
-fun bird_N : N ;
-fun 'game-bird_N' : N ;
-fun 'lyre-bird_N' : N ;
-fun 'gallows-bird_N' : N ;
-fun 'night-bird_N' : N ;
-fun 'canary-bird_N' : N ;
-fun seabird_N : N ;
-fun scrubbird_N : N ;
-fun snakebird_N : N ;
-fun riflebird_N : N ;
-fun firebird_N : N ;
-fun shorebird_N : N ;
-fun lyrebird_N : N ;
-fun bluebird_N : N ;
-fun lovebird_N : N ;
-fun puffbird_N : N ;
-fun surfbird_N : N ;
-fun kingbird_N : N ;
-fun mockingbird_N : N ;
-fun hummingbird_N : N ;
-fun songbird_N : N ;
-fun blackbird_N : N ;
-fun railbird_N : N ;
-fun oilbird_N : N ;
-fun bellbird_N : N ;
-fun gaolbird_N : N ;
-fun ovenbird_N : N ;
-fun thunderbird_N : N ;
-fun butcherbird_N : N ;
-fun waterbird_N : N ;
-fun weaverbird_N : N ;
-fun bowerbird_N : N ;
-fun tailorbird_N : N ;
-fun catbird_N : N ;
-fun antbird_N : N ;
-fun cowbird_N : N ;
-fun ladybird_N : N ;
-fun dickeybird_N : N ;
-fun dickybird_N : N ;
-fun jird_N : N ;
-fun smorgasbord_N : N ;
-fun cord_N : N ;
-fun 'sash-cord_N' : N ;
-fun accord_N : N ;
-fun record_N : N ;
-fun patchcord_N : N ;
-fun concord_N : N ;
-fun whipcord_N : N ;
-fun ripcord_N : N ;
-fun discord_N : N ;
-fun ford_N : N ;
-fun rutherford_N : N ;
-fun oxford_N : N ;
-fun chord_N : N ;
-fun harpsichord_N : N ;
-fun clavichord_N : N ;
-fun urochord_N : N ;
-fun notochord_N : N ;
-fun fiord_N : N ;
-fun fjord_N : N ;
-fun lord_N : N ;
-fun 'press-lord_N' : N ;
-fun landlord_N : N ;
-fun milord_N : N ;
-fun warlord_N : N ;
-fun overlord_N : N ;
-fun word_N : N ;
-fun 'nonce-word_N' : N ;
-fun 'smear-word_N' : N ;
-fun headword_N : N ;
-fun foreword_N : N ;
-fun catchword_N : N ;
-fun watchword_N : N ;
-fun loanword_N : N ;
-fun swearword_N : N ;
-fun sword_N : N ;
-fun broadsword_N : N ;
-fun backsword_N : N ;
-fun silversword_N : N ;
-fun password_N : N ;
-fun crossword_N : N ;
-fun byword_N : N ;
-fun keyword_N : N ;
-fun buzzword_N : N ;
-fun Kurd_N : N ;
-fun curd_N : N ;
-fun gourd_N : N ;
-fun surd_N : N ;
-fun absurd_N : N ;
-fun turd_N : N ;
-fun lsd_N : N ;
-fun etd_N : N ;
-fun baud_N : N ;
-fun gaud_N : N ;
-fun crapaud_N : N ;
-fun fraud_N : N ;
-fun bud_N : N ;
-fun 'leaf-bud_N' : N ;
-fun redbud_N : N ;
-fun rosebud_N : N ;
-fun tastebud_N : N ;
-fun cud_N : N ;
-fun scud_N : N ;
-fun dud_N : N ;
-fun hudud_N : N ;
-fun feud_N : N ;
-fun pseud_N : N ;
-fun thud_N : N ;
-fun iud_N : N ;
-fun mud_N : N ;
-fun talmud_N : N ;
-fun musnud_N : N ;
-fun cloud_N : N ;
-fun 'storm-cloud_N' : N ;
-fun 'war-cloud_N' : N ;
-fun shroud_N : N ;
-fun pud_N : N ;
-fun spud_N : N ;
-fun crud_N : N ;
-fun stud_N : N ;
-fun 'press-stud_N' : N ;
-fun vd_N : N ;
-fun blvd_N : N ;
-fun bawd_N : N ;
-fun crowd_N : N ;
-fun alkyd_N : N ;
-fun 'volte-face_N' : N ;
-fun 'arms-race_N' : N ;
-fun 'coup de grace_N' : N ;
-fun 'two-piece_N' : N ;
-fun superabundance_N : N ;
-fun hesitance_N : N ;
-fun continuance_N : N ;
-fun quiescence_N : N ;
-fun 'tour de force_N' : N ;
-fun quietude_N : N ;
-fun plenitude_N : N ;
-fun plage_N : N ;
-fun heritage_N : N ;
-fun 'nouveau riche_N' : N ;
-fun sunbathe_N : N ;
-fun 'entente cordiale_N' : N ;
-fun 'enfant terrible_N' : N ;
-fun 'tout ensemble_N' : N ;
-fun waddle_N : N ;
-fun stele_N : N ;
-fun mickle_N : N ;
-fun muckle_N : N ;
-fun tinkle_N : N ;
-fun 'toad-in-the-hole_N' : N ;
-fun hustle_N : N ;
-fun tittle_N : N ;
-fun razzle_N : N ;
-fun 'razzle-dazzle_N' : N ;
-fun acme_N : N ;
-fun sublime_N : N ;
-fun 'nom de plume_N' : N ;
-fun krone_N : N ;
-fun 'auld lang syne_N' : N ;
-fun lope_N : N ;
-fun re_N : N ;
-fun 'danse macabre_N' : N ;
-fun 'bête noire_N' : N ;
-fun retire_N : N ;
-fun 'raison d\'être_N' : N ;
-fun wise_N : N ;
-fun goose_N : N ;
-fun noblesse_N : N ;
-fun chauffeuse_N : N ;
-fun poseuse_N : N ;
-fun wheelhouse_N : N ;
-fun workhouse_N : N ;
-fun rote_N : N ;
-fun 'corps diplomatique_N' : N ;
-fun baroque_N : N ;
-fun 'curriculum vitae_N' : N ;
-fun dace_N : N ;
-fun brace_N : N ;
-fun plaice_N : N ;
-fun dice_N : N ;
-fun police_N : N ;
-fun hake_N : N ;
-fun pike_N : N ;
-fun people_1_N : N ;
-fun moorgame_N : N ;
-fun swine_N : N ;
-fun roe_N : N ;
-fun snipe_N : N ;
-fun 'chef-d\'oeuvre_N' : N ;
-fun louse_N : N ;
-fun 'plant-louse_N' : N ;
-fun woodlouse_N : N ;
-fun mouse_N : N ;
-fun 'shrew-mouse_N' : N ;
-fun dormouse_N : N ;
-fun titmouse_N : N ;
-fun senegalese_N : N ;
-fun sinhalese_N : N ;
-fun nepalese_N : N ;
-fun congolese_N : N ;
-fun togolese_N : N ;
-fun siamese_N : N ;
-fun Vietnamese_N : N ;
-fun burmese_N : N ;
-fun Lebanese_N : N ;
-fun sudanese_N : N ;
-fun Japanese_N : N ;
-fun javanese_N : N ;
-fun Taiwanese_N : N ;
-fun guyanese_N : N ;
-fun Chinese_N : N ;
-fun pekinese_N : N ;
-fun beninese_N : N ;
-fun 'san marinese_N' : N ;
-fun gabonese_N : N ;
-fun maltese_N : N ;
-fun Portuguese_N : N ;
-fun moose_N : N ;
-fun grouse_N : N ;
-fun illegitimate_N : N ;
-fun duce_N : N ;
-fun cicerone_N : N ;
-fun 'c of e_N' : N ;
-fun sundae_N : N ;
-fun turreae_N : N ;
-fun reggae_N : N ;
-fun exuviae_N : N ;
-fun brae_N : N ;
-fun sae_N : N ;
-fun lignosae_N : N ;
-fun arborvitae_N : N ;
-fun babe_N : N ;
-fun astrolabe_N : N ;
-fun abbe_N : N ;
-fun thebe_N : N ;
-fun glebe_N : N ;
-fun phoebe_N : N ;
-fun grebe_N : N ;
-fun gibe_N : N ;
-fun jibe_N : N ;
-fun kibe_N : N ;
-fun bribe_N : N ;
-fun scribe_N : N ;
-fun tribe_N : N ;
-fun diatribe_N : N ;
-fun astilbe_N : N ;
-fun adobe_N : N ;
-fun anglophobe_N : N ;
-fun homophobe_N : N ;
-fun technophobe_N : N ;
-fun claustrophobe_N : N ;
-fun lobe_N : N ;
-fun globe_N : N ;
-fun earlobe_N : N ;
-fun robe_N : N ;
-fun katharobe_N : N ;
-fun microbe_N : N ;
-fun wardrobe_N : N ;
-fun aerobe_N : N ;
-fun anaerobe_N : N ;
-fun bathrobe_N : N ;
-fun probe_N : N ;
-fun saprobe_N : N ;
-fun pickelhaube_N : N ;
-fun cube_N : N ;
-fun 'stock-cube_N' : N ;
-fun icecube_N : N ;
-fun jujube_N : N ;
-fun tube_N : N ;
-fun 'speaking-tube_N' : N ;
-fun 'torpedo-tube_N' : N ;
-fun 'test-tube_N' : N ;
-fun blowtube_N : N ;
-fun ace_N : N ;
-fun peace_N : N ;
-fun face_N : N ;
-fun 'pudding-face_N' : N ;
-fun 'clock-face_N' : N ;
-fun 'poker-face_N' : N ;
-fun 'about-face_N' : N ;
-fun boldface_N : N ;
-fun paleface_N : N ;
-fun typeface_N : N ;
-fun preface_N : N ;
-fun whiteface_N : N ;
-fun blackface_N : N ;
-fun coalface_N : N ;
-fun interface_N : N ;
-fun surface_N : N ;
-fun undersurface_N : N ;
-fun lace_N : N ;
-fun palace_N : N ;
-fun shoelace_N : N ;
-fun demiglace_N : N ;
-fun necklace_N : N ;
-fun bullace_N : N ;
-fun solace_N : N ;
-fun place_N : N ;
-fun 'hiding-place_N' : N ;
-fun 'landing-place_N' : N ;
-fun 'lurking-place_N' : N ;
-fun 'meeting-place_N' : N ;
-fun fireplace_N : N ;
-fun birthplace_N : N ;
-fun workplace_N : N ;
-fun farmplace_N : N ;
-fun commonplace_N : N ;
-fun marketplace_N : N ;
-fun showplace_N : N ;
-fun bootlace_N : N ;
-fun populace_N : N ;
-fun mace_N : N ;
-fun grimace_N : N ;
-fun menace_N : N ;
-fun pinnace_N : N ;
-fun furnace_N : N ;
-fun 'blast-furnace_N' : N ;
-fun pace_N : N ;
-fun carapace_N : N ;
-fun space_N : N ;
-fun 'breathing-space_N' : N ;
-fun 'living-space_N' : N ;
-fun subspace_N : N ;
-fun headspace_N : N ;
-fun workspace_N : N ;
-fun crawlspace_N : N ;
-fun aerospace_N : N ;
-fun airspace_N : N ;
-fun race_N : N ;
-fun 'torch-race_N' : N ;
-fun 'scratch-race_N' : N ;
-fun 'sack-race_N' : N ;
-fun 'boat-race_N' : N ;
-fun 'foot-race_N' : N ;
-fun rerebrace_N : N ;
-fun vambrace_N : N ;
-fun embrace_N : N ;
-fun headrace_N : N ;
-fun horserace_N : N ;
-fun grace_N : N ;
-fun scapegrace_N : N ;
-fun disgrace_N : N ;
-fun tailrace_N : N ;
-fun millrace_N : N ;
-fun terrace_N : N ;
-fun trace_N : N ;
-fun footrace_N : N ;
-fun recce_N : N ;
-fun bocce_N : N ;
-fun fleece_N : N ;
-fun niece_N : N ;
-fun grandniece_N : N ;
-fun piece_N : N ;
-fun 'altar-piece_N' : N ;
-fun headpiece_N : N ;
-fun codpiece_N : N ;
-fun timepiece_N : N ;
-fun centrepiece_N : N ;
-fun nosepiece_N : N ;
-fun eyepiece_N : N ;
-fun fowlingpiece_N : N ;
-fun mouthpiece_N : N ;
-fun neckpiece_N : N ;
-fun cheekpiece_N : N ;
-fun workpiece_N : N ;
-fun mantelpiece_N : N ;
-fun tailpiece_N : N ;
-fun earpiece_N : N ;
-fun altarpiece_N : N ;
-fun afterpiece_N : N ;
-fun centerpiece_N : N ;
-fun masterpiece_N : N ;
-fun hairpiece_N : N ;
-fun frontispiece_N : N ;
-fun crosspiece_N : N ;
-fun chimneypiece_N : N ;
-fun ice_N : N ;
-fun 'choc-ice_N' : N ;
-fun 'water-ice_N' : N ;
-fun 'drift-ice_N' : N ;
-fun jaundice_N : N ;
-fun bodice_N : N ;
-fun cowardice_N : N ;
-fun prejudice_N : N ;
-fun benefice_N : N ;
-fun office_N : N ;
-fun 'police-office_N' : N ;
-fun 'life-office_N' : N ;
-fun 'staff-office_N' : N ;
-fun 'shipping-office_N' : N ;
-fun 'loan-office_N' : N ;
-fun 'box-office_N' : N ;
-fun edifice_N : N ;
-fun sacrifice_N : N ;
-fun 'self-sacrifice_N' : N ;
-fun orifice_N : N ;
-fun artifice_N : N ;
-fun chalice_N : N ;
-fun malice_N : N ;
-fun accomplice_N : N ;
-fun surplice_N : N ;
-fun splice_N : N ;
-fun slice_N : N ;
-fun 'fish-slice_N' : N ;
-fun pumice_N : N ;
-fun cornice_N : N ;
-fun choice_N : N ;
-fun voice_N : N ;
-fun invoice_N : N ;
-fun precipice_N : N ;
-fun coppice_N : N ;
-fun spice_N : N ;
-fun allspice_N : N ;
-fun hospice_N : N ;
-fun auspice_N : N ;
-fun rice_N : N ;
-fun avarice_N : N ;
-fun dentifrice_N : N ;
-fun licorice_N : N ;
-fun liquorice_N : N ;
-fun price_N : N ;
-fun 'list-price_N' : N ;
-fun caprice_N : N ;
-fun trice_N : N ;
-fun cicatrice_N : N ;
-fun cockatrice_N : N ;
-fun practice_N : N ;
-fun malpractice_N : N ;
-fun poultice_N : N ;
-fun prentice_N : N ;
-fun apprentice_N : N ;
-fun notice_N : N ;
-fun mortice_N : N ;
-fun armistice_N : N ;
-fun solstice_N : N ;
-fun interstice_N : N ;
-fun justice_N : N ;
-fun injustice_N : N ;
-fun lattice_N : N ;
-fun brattice_N : N ;
-fun juice_N : N ;
-fun limejuice_N : N ;
-fun sluice_N : N ;
-fun vice_N : N ;
-fun advice_N : N ;
-fun device_N : N ;
-fun crevice_N : N ;
-fun novice_N : N ;
-fun service_N : N ;
-fun 'tea-service_N' : N ;
-fun 'self-service_N' : N ;
-fun 'dinner-service_N' : N ;
-fun disservice_N : N ;
-fun disturbance_N : N ;
-fun significance_N : N ;
-fun insignificance_N : N ;
-fun dance_N : N ;
-fun 'morris dance_N' : N ;
-fun 'sword-dance_N' : N ;
-fun 'clog-dance_N' : N ;
-fun 'folk-dance_N' : N ;
-fun 'war-dance_N' : N ;
-fun riddance_N : N ;
-fun exceedance_N : N ;
-fun abidance_N : N ;
-fun avoidance_N : N ;
-fun guidance_N : N ;
-fun attendance_N : N ;
-fun nonattendance_N : N ;
-fun abundance_N : N ;
-fun 'over-abundance_N' : N ;
-fun overabundance_N : N ;
-fun redundance_N : N ;
-fun accordance_N : N ;
-fun concordance_N : N ;
-fun discordance_N : N ;
-fun vengeance_N : N ;
-fun faineance_N : N ;
-fun extravagance_N : N ;
-fun elegance_N : N ;
-fun inelegance_N : N ;
-fun arrogance_N : N ;
-fun chance_N : N ;
-fun mischance_N : N ;
-fun ambiance_N : N ;
-fun insouciance_N : N ;
-fun radiance_N : N ;
-fun fiance_N : N ;
-fun defiance_N : N ;
-fun allegiance_N : N ;
-fun reliance_N : N ;
-fun 'self-reliance_N' : N ;
-fun alliance_N : N ;
-fun dalliance_N : N ;
-fun misalliance_N : N ;
-fun mésalliance_N : N ;
-fun brilliance_N : N ;
-fun compliance_N : N ;
-fun 'non-compliance_N' : N ;
-fun appliance_N : N ;
-fun variance_N : N ;
-fun invariance_N : N ;
-fun covariance_N : N ;
-fun tarriance_N : N ;
-fun luxuriance_N : N ;
-fun lance_N : N ;
-fun balance_N : N ;
-fun 'spring-balance_N' : N ;
-fun imbalance_N : N ;
-fun microbalance_N : N ;
-fun counterbalance_N : N ;
-fun nonchalance_N : N ;
-fun valance_N : N ;
-fun semblance_N : N ;
-fun resemblance_N : N ;
-fun freelance_N : N ;
-fun glance_N : N ;
-fun 'side-glance_N' : N ;
-fun vigilance_N : N ;
-fun surveillance_N : N ;
-fun parlance_N : N ;
-fun ambulance_N : N ;
-fun petulance_N : N ;
-fun adamance_N : N ;
-fun romance_N : N ;
-fun performance_N : N ;
-fun ordnance_N : N ;
-fun penance_N : N ;
-fun maintenance_N : N ;
-fun countenance_N : N ;
-fun appurtenance_N : N ;
-fun sustenance_N : N ;
-fun provenance_N : N ;
-fun poignance_N : N ;
-fun repugnance_N : N ;
-fun ordinance_N : N ;
-fun finance_N : N ;
-fun dominance_N : N ;
-fun predominance_N : N ;
-fun illuminance_N : N ;
-fun resonance_N : N ;
-fun consonance_N : N ;
-fun assonance_N : N ;
-fun dissonance_N : N ;
-fun governance_N : N ;
-fun forbearance_N : N ;
-fun clearance_N : N ;
-fun appearance_N : N ;
-fun reappearance_N : N ;
-fun nonappearance_N : N ;
-fun disappearance_N : N ;
-fun remembrance_N : N ;
-fun encumbrance_N : N ;
-fun hindrance_N : N ;
-fun protuberance_N : N ;
-fun exuberance_N : N ;
-fun preponderance_N : N ;
-fun sufferance_N : N ;
-fun furtherance_N : N ;
-fun tolerance_N : N ;
-fun intolerance_N : N ;
-fun overtolerance_N : N ;
-fun temperance_N : N ;
-fun intemperance_N : N ;
-fun utterance_N : N ;
-fun severance_N : N ;
-fun perseverance_N : N ;
-fun deliverance_N : N ;
-fun fragrance_N : N ;
-fun ignorance_N : N ;
-fun prance_N : N ;
-fun aberrance_N : N ;
-fun trance_N : N ;
-fun recalcitrance_N : N ;
-fun semitrance_N : N ;
-fun entrance_N : N ;
-fun monstrance_N : N ;
-fun remonstrance_N : N ;
-fun durance_N : N ;
-fun endurance_N : N ;
-fun insurance_N : N ;
-fun reinsurance_N : N ;
-fun coinsurance_N : N ;
-fun assurance_N : N ;
-fun 'self-assurance_N' : N ;
-fun reassurance_N : N ;
-fun nurturance_N : N ;
-fun malfeasance_N : N ;
-fun nonfeasance_N : N ;
-fun misfeasance_N : N ;
-fun pleasance_N : N ;
-fun complaisance_N : N ;
-fun obeisance_N : N ;
-fun brisance_N : N ;
-fun nuisance_N : N ;
-fun renaissance_N : N ;
-fun reconnaissance_N : N ;
-fun puissance_N : N ;
-fun usance_N : N ;
-fun reactance_N : N ;
-fun conductance_N : N ;
-fun reluctance_N : N ;
-fun exorbitance_N : N ;
-fun capacitance_N : N ;
-fun concomitance_N : N ;
-fun inheritance_N : N ;
-fun disinheritance_N : N ;
-fun repentance_N : N ;
-fun acquaintance_N : N ;
-fun acceptance_N : N ;
-fun nonacceptance_N : N ;
-fun importance_N : N ;
-fun 'self-importance_N' : N ;
-fun unimportance_N : N ;
-fun stance_N : N ;
-fun elastance_N : N ;
-fun substance_N : N ;
-fun distance_N : N ;
-fun resistance_N : N ;
-fun nonresistance_N : N ;
-fun assistance_N : N ;
-fun circumstance_N : N ;
-fun instance_N : N ;
-fun admittance_N : N ;
-fun remittance_N : N ;
-fun transmittance_N : N ;
-fun pittance_N : N ;
-fun quittance_N : N ;
-fun acquittance_N : N ;
-fun nuance_N : N ;
-fun discontinuance_N : N ;
-fun pursuance_N : N ;
-fun advance_N : N ;
-fun grievance_N : N ;
-fun relevance_N : N ;
-fun irrelevance_N : N ;
-fun connivance_N : N ;
-fun contrivance_N : N ;
-fun observance_N : N ;
-fun nonobservance_N : N ;
-fun allowance_N : N ;
-fun abeyance_N : N ;
-fun conveyance_N : N ;
-fun purveyance_N : N ;
-fun flamboyance_N : N ;
-fun annoyance_N : N ;
-fun clairvoyance_N : N ;
-fun cognizance_N : N ;
-fun recognizance_N : N ;
-fun incognizance_N : N ;
-fun séance_N : N ;
-fun complacence_N : N ;
-fun maleficence_N : N ;
-fun beneficence_N : N ;
-fun magnificence_N : N ;
-fun munificence_N : N ;
-fun licence_N : N ;
-fun 'game-licence_N' : N ;
-fun 'off-licence_N' : N ;
-fun 'on-licence_N' : N ;
-fun reticence_N : N ;
-fun innocence_N : N ;
-fun renascence_N : N ;
-fun iridescence_N : N ;
-fun incandescence_N : N ;
-fun recrudescence_N : N ;
-fun acquiescence_N : N ;
-fun decalescence_N : N ;
-fun coalescence_N : N ;
-fun opalescence_N : N ;
-fun convalescence_N : N ;
-fun adolescence_N : N ;
-fun obsolescence_N : N ;
-fun tumescence_N : N ;
-fun detumescence_N : N ;
-fun intumescence_N : N ;
-fun evanescence_N : N ;
-fun senescence_N : N ;
-fun juvenescence_N : N ;
-fun luminescence_N : N ;
-fun chemiluminescence_N : N ;
-fun bioluminescence_N : N ;
-fun excrescence_N : N ;
-fun phosphorescence_N : N ;
-fun efflorescence_N : N ;
-fun inflorescence_N : N ;
-fun fluorescence_N : N ;
-fun immunofluorescence_N : N ;
-fun autofluorescence_N : N ;
-fun putrescence_N : N ;
-fun infructescence_N : N ;
-fun defervescence_N : N ;
-fun effervescence_N : N ;
-fun dehiscence_N : N ;
-fun reminiscence_N : N ;
-fun concupiscence_N : N ;
-fun translucence_N : N ;
-fun cadence_N : N ;
-fun decadence_N : N ;
-fun precedence_N : N ;
-fun antecedence_N : N ;
-fun credence_N : N ;
-fun accidence_N : N ;
-fun incidence_N : N ;
-fun coincidence_N : N ;
-fun diffidence_N : N ;
-fun confidence_N : N ;
-fun 'self-confidence_N' : N ;
-fun overconfidence_N : N ;
-fun subsidence_N : N ;
-fun residence_N : N ;
-fun dissidence_N : N ;
-fun evidence_N : N ;
-fun providence_N : N ;
-fun improvidence_N : N ;
-fun transcendence_N : N ;
-fun resplendence_N : N ;
-fun dependence_N : N ;
-fun independence_N : N ;
-fun interdependence_N : N ;
-fun superintendence_N : N ;
-fun correspondence_N : N ;
-fun impudence_N : N ;
-fun prudence_N : N ;
-fun imprudence_N : N ;
-fun jurisprudence_N : N ;
-fun fence_N : N ;
-fun defence_N : N ;
-fun 'self-defence_N' : N ;
-fun offence_N : N ;
-fun indigence_N : N ;
-fun negligence_N : N ;
-fun diligence_N : N ;
-fun intelligence_N : N ;
-fun counterintelligence_N : N ;
-fun intransigence_N : N ;
-fun indulgence_N : N ;
-fun 'self-indulgence_N' : N ;
-fun overindulgence_N : N ;
-fun refulgence_N : N ;
-fun effulgence_N : N ;
-fun divulgence_N : N ;
-fun submergence_N : N ;
-fun emergence_N : N ;
-fun divergence_N : N ;
-fun convergence_N : N ;
-fun resurgence_N : N ;
-fun faience_N : N ;
-fun abience_N : N ;
-fun ambience_N : N ;
-fun science_N : N ;
-fun 'computer science_N' : N ;
-fun nescience_N : N ;
-fun prescience_N : N ;
-fun omniscience_N : N ;
-fun conscience_N : N ;
-fun pseudoscience_N : N ;
-fun neuroscience_N : N ;
-fun adience_N : N ;
-fun obedience_N : N ;
-fun disobedience_N : N ;
-fun expedience_N : N ;
-fun inexpedience_N : N ;
-fun audience_N : N ;
-fun salience_N : N ;
-fun resilience_N : N ;
-fun dissilience_N : N ;
-fun ebullience_N : N ;
-fun lenience_N : N ;
-fun convenience_N : N ;
-fun inconvenience_N : N ;
-fun sapience_N : N ;
-fun experience_N : N ;
-fun inexperience_N : N ;
-fun prurience_N : N ;
-fun transience_N : N ;
-fun patience_N : N ;
-fun impatience_N : N ;
-fun sentience_N : N ;
-fun insentience_N : N ;
-fun subservience_N : N ;
-fun valence_N : N ;
-fun prevalence_N : N ;
-fun ambivalence_N : N ;
-fun equivalence_N : N ;
-fun nonequivalence_N : N ;
-fun covalence_N : N ;
-fun polyvalence_N : N ;
-fun silence_N : N ;
-fun pestilence_N : N ;
-fun excellence_N : N ;
-fun redolence_N : N ;
-fun indolence_N : N ;
-fun condolence_N : N ;
-fun violence_N : N ;
-fun nonviolence_N : N ;
-fun somnolence_N : N ;
-fun insolence_N : N ;
-fun malevolence_N : N ;
-fun benevolence_N : N ;
-fun turbulence_N : N ;
-fun succulence_N : N ;
-fun feculence_N : N ;
-fun truculence_N : N ;
-fun fraudulence_N : N ;
-fun opulence_N : N ;
-fun corpulence_N : N ;
-fun virulence_N : N ;
-fun purulence_N : N ;
-fun flatulence_N : N ;
-fun vehemence_N : N ;
-fun immanence_N : N ;
-fun permanence_N : N ;
-fun impermanence_N : N ;
-fun eminence_N : N ;
-fun 'pre-eminence_N' : N ;
-fun imminence_N : N ;
-fun prominence_N : N ;
-fun continence_N : N ;
-fun incontinence_N : N ;
-fun pertinence_N : N ;
-fun impertinence_N : N ;
-fun abstinence_N : N ;
-fun threepence_N : N ;
-fun ninepence_N : N ;
-fun fivepence_N : N ;
-fun tenpence_N : N ;
-fun twopence_N : N ;
-fun tuppence_N : N ;
-fun fourpence_N : N ;
-fun eightpence_N : N ;
-fun sixpence_N : N ;
-fun clarence_N : N ;
-fun transparence_N : N ;
-fun deference_N : N ;
-fun reference_N : N ;
-fun 'cross-reference_N' : N ;
-fun coreference_N : N ;
-fun preference_N : N ;
-fun difference_N : N ;
-fun indifference_N : N ;
-fun circumference_N : N ;
-fun inference_N : N ;
-fun conference_N : N ;
-fun teleconference_N : N ;
-fun interference_N : N ;
-fun 'non-interference_N' : N ;
-fun transference_N : N ;
-fun countertransference_N : N ;
-fun belligerence_N : N ;
-fun adherence_N : N ;
-fun inherence_N : N ;
-fun coherence_N : N ;
-fun incoherence_N : N ;
-fun reverence_N : N ;
-fun irreverence_N : N ;
-fun deterrence_N : N ;
-fun abhorrence_N : N ;
-fun occurrence_N : N ;
-fun nonoccurrence_N : N ;
-fun recurrence_N : N ;
-fun incurrence_N : N ;
-fun concurrence_N : N ;
-fun absence_N : N ;
-fun presence_N : N ;
-fun essence_N : N ;
-fun quintessence_N : N ;
-fun competence_N : N ;
-fun incompetence_N : N ;
-fun immunocompetence_N : N ;
-fun pretence_N : N ;
-fun penitence_N : N ;
-fun impenitence_N : N ;
-fun sentence_N : N ;
-fun omnipotence_N : N ;
-fun impotence_N : N ;
-fun advertence_N : N ;
-fun inadvertence_N : N ;
-fun subsistence_N : N ;
-fun insistence_N : N ;
-fun consistence_N : N ;
-fun persistence_N : N ;
-fun existence_N : N ;
-fun 'pre-existence_N' : N ;
-fun preexistence_N : N ;
-fun nonexistence_N : N ;
-fun coexistence_N : N ;
-fun intermittence_N : N ;
-fun affluence_N : N ;
-fun influence_N : N ;
-fun confluence_N : N ;
-fun sequence_N : N ;
-fun consequence_N : N ;
-fun inconsequence_N : N ;
-fun eloquence_N : N ;
-fun grandiloquence_N : N ;
-fun magniloquence_N : N ;
-fun mince_N : N ;
-fun prince_N : N ;
-fun quince_N : N ;
-fun province_N : N ;
-fun wince_N : N ;
-fun sconce_N : N ;
-fun nonce_N : N ;
-fun ponce_N : N ;
-fun dunce_N : N ;
-fun ounce_N : N ;
-fun bounce_N : N ;
-fun fluidounce_N : N ;
-fun flounce_N : N ;
-fun pounce_N : N ;
-fun ploce_N : N ;
-fun symploce_N : N ;
-fun 'viva voce_N' : N ;
-fun farce_N : N ;
-fun commerce_N : N ;
-fun terce_N : N ;
-fun force_N : N ;
-fun 'task-force_N' : N ;
-fun airforce_N : N ;
-fun divorce_N : N ;
-fun source_N : N ;
-fun resource_N : N ;
-fun sauce_N : N ;
-fun applesauce_N : N ;
-fun produce_N : N ;
-fun deuce_N : N ;
-fun puce_N : N ;
-fun prepuce_N : N ;
-fun spruce_N : N ;
-fun truce_N : N ;
-fun celtuce_N : N ;
-fun lettuce_N : N ;
-fun facade_N : N ;
-fun saccade_N : N ;
-fun decade_N : N ;
-fun barricade_N : N ;
-fun cavalcade_N : N ;
-fun brocade_N : N ;
-fun arcade_N : N ;
-fun motorcade_N : N ;
-fun cascade_N : N ;
-fun ambuscade_N : N ;
-fun alidade_N : N ;
-fun orangeade_N : N ;
-fun limeade_N : N ;
-fun fade_N : N ;
-fun renegade_N : N ;
-fun brigade_N : N ;
-fun 'fire-brigade_N' : N ;
-fun 'shock-brigade_N' : N ;
-fun shade_N : N ;
-fun sunshade_N : N ;
-fun lampshade_N : N ;
-fun nightshade_N : N ;
-fun jade_N : N ;
-fun cockade_N : N ;
-fun blockade_N : N ;
-fun stockade_N : N ;
-fun escalade_N : N ;
-fun marmalade_N : N ;
-fun blade_N : N ;
-fun 'shoulder-blade_N' : N ;
-fun switchblade_N : N ;
-fun razorblade_N : N ;
-fun twayblade_N : N ;
-fun clade_N : N ;
-fun glade_N : N ;
-fun defilade_N : N ;
-fun enfilade_N : N ;
-fun ballade_N : N ;
-fun fusillade_N : N ;
-fun accolade_N : N ;
-fun roulade_N : N ;
-fun pomade_N : N ;
-fun esplanade_N : N ;
-fun promenade_N : N ;
-fun tapenade_N : N ;
-fun serenade_N : N ;
-fun grenade_N : N ;
-fun 'hand-grenade_N' : N ;
-fun marinade_N : N ;
-fun harlequinade_N : N ;
-fun colonnade_N : N ;
-fun lemonade_N : N ;
-fun cannonade_N : N ;
-fun tamponade_N : N ;
-fun escapade_N : N ;
-fun sexcapade_N : N ;
-fun spade_N : N ;
-fun charade_N : N ;
-fun parade_N : N ;
-fun 'sick-parade_N' : N ;
-fun masquerade_N : N ;
-fun grade_N : N ;
-fun tardigrade_N : N ;
-fun downgrade_N : N ;
-fun upgrade_N : N ;
-fun tirade_N : N ;
-fun comrade_N : N ;
-fun trade_N : N ;
-fun 'slave-trade_N' : N ;
-fun 'stock-in-trade_N' : N ;
-fun antitrade_N : N ;
-fun balustrade_N : N ;
-fun palisade_N : N ;
-fun glissade_N : N ;
-fun crusade_N : N ;
-fun rodomontade_N : N ;
-fun couvade_N : N ;
-fun façade_N : N ;
-fun millepede_N : N ;
-fun velocipede_N : N ;
-fun millipede_N : N ;
-fun centipede_N : N ;
-fun stampede_N : N ;
-fun suede_N : N ;
-fun Swede_N : N ;
-fun aide_N : N ;
-fun carbide_N : N ;
-fun isosorbide_N : N ;
-fun larvacide_N : N ;
-fun scabicide_N : N ;
-fun herbicide_N : N ;
-fun regicide_N : N ;
-fun fungicide_N : N ;
-fun filicide_N : N ;
-fun silicide_N : N ;
-fun pediculicide_N : N ;
-fun homicide_N : N ;
-fun germicide_N : N ;
-fun spermicide_N : N ;
-fun vermicide_N : N ;
-fun tyrannicide_N : N ;
-fun acaricide_N : N ;
-fun bactericide_N : N ;
-fun viricide_N : N ;
-fun uxoricide_N : N ;
-fun parricide_N : N ;
-fun matricide_N : N ;
-fun patricide_N : N ;
-fun fratricide_N : N ;
-fun insecticide_N : N ;
-fun mariticide_N : N ;
-fun infanticide_N : N ;
-fun aborticide_N : N ;
-fun pesticide_N : N ;
-fun suicide_N : N ;
-fun larvicide_N : N ;
-fun genocide_N : N ;
-fun iodide_N : N ;
-fun sulfide_N : N ;
-fun hide_N : N ;
-fun horsehide_N : N ;
-fun sulphide_N : N ;
-fun rawhide_N : N ;
-fun cowhide_N : N ;
-fun halide_N : N ;
-fun tetrahalide_N : N ;
-fun glide_N : N ;
-fun acetanilide_N : N ;
-fun bolide_N : N ;
-fun slide_N : N ;
-fun 'hair-slide_N' : N ;
-fun landslide_N : N ;
-fun mudslide_N : N ;
-fun rockslide_N : N ;
-fun amide_N : N ;
-fun sulfanilamide_N : N ;
-fun acrylamide_N : N ;
-fun cyanamide_N : N ;
-fun proprionamide_N : N ;
-fun indapamide_N : N ;
-fun acetamide_N : N ;
-fun sulfacetamide_N : N ;
-fun tolbutamide_N : N ;
-fun polyamide_N : N ;
-fun tolazamide_N : N ;
-fun furosemide_N : N ;
-fun imide_N : N ;
-fun glutethimide_N : N ;
-fun cetrimide_N : N ;
-fun phensuximide_N : N ;
-fun ethosuximide_N : N ;
-fun thalidomide_N : N ;
-fun leflunomide_N : N ;
-fun bromide_N : N ;
-fun cyanide_N : N ;
-fun ferricyanide_N : N ;
-fun ferrocyanide_N : N ;
-fun arsenide_N : N ;
-fun flecainide_N : N ;
-fun encainide_N : N ;
-fun tocainide_N : N ;
-fun transactinide_N : N ;
-fun ozonide_N : N ;
-fun oroide_N : N ;
-fun ride_N : N ;
-fun 'joy-ride_N' : N ;
-fun tetrasaccharide_N : N ;
-fun disaccharide_N : N ;
-fun trisaccharide_N : N ;
-fun oligosaccharide_N : N ;
-fun monosaccharide_N : N ;
-fun polysaccharide_N : N ;
-fun mucopolysaccharide_N : N ;
-fun bride_N : N ;
-fun 'war-bride_N' : N ;
-fun hydride_N : N ;
-fun anhydride_N : N ;
-fun glyceride_N : N ;
-fun diglyceride_N : N ;
-fun triglyceride_N : N ;
-fun fluoroboride_N : N ;
-fun chloride_N : N ;
-fun tetrachloride_N : N ;
-fun dichloride_N : N ;
-fun trichloride_N : N ;
-fun hydrochloride_N : N ;
-fun perchloride_N : N ;
-fun fluoride_N : N ;
-fun pride_N : N ;
-fun override_N : N ;
-fun nitride_N : N ;
-fun stride_N : N ;
-fun glyburide_N : N ;
-fun telluride_N : N ;
-fun joyride_N : N ;
-fun side_N : N ;
-fun 'debit-side_N' : N ;
-fun 'credit-side_N' : N ;
-fun aside_N : N ;
-fun seaside_N : N ;
-fun curbside_N : N ;
-fun roadside_N : N ;
-fun broadside_N : N ;
-fun bedside_N : N ;
-fun landside_N : N ;
-fun lakeside_N : N ;
-fun fireside_N : N ;
-fun offside_N : N ;
-fun ringside_N : N ;
-fun backside_N : N ;
-fun dockside_N : N ;
-fun hillside_N : N ;
-fun inside_N : N ;
-fun mountainside_N : N ;
-fun ironside_N : N ;
-fun canyonside_N : N ;
-fun downside_N : N ;
-fun glucoside_N : N ;
-fun glycoside_N : N ;
-fun nucleoside_N : N ;
-fun shipside_N : N ;
-fun topside_N : N ;
-fun nearside_N : N ;
-fun underside_N : N ;
-fun waterside_N : N ;
-fun riverside_N : N ;
-fun silverside_N : N ;
-fun outside_N : N ;
-fun wayside_N : N ;
-fun countryside_N : N ;
-fun tide_N : N ;
-fun 'flood-tide_N' : N ;
-fun 'neap-tide_N' : N ;
-fun ebbtide_N : N ;
-fun yuletide_N : N ;
-fun springtide_N : N ;
-fun eventide_N : N ;
-fun noontide_N : N ;
-fun whitsuntide_N : N ;
-fun nucleotide_N : N ;
-fun peptide_N : N ;
-fun fibrinopeptide_N : N ;
-fun polypeptide_N : N ;
-fun riptide_N : N ;
-fun undertide_N : N ;
-fun christmastide_N : N ;
-fun guide_N : N ;
-fun waveguide_N : N ;
-fun divide_N : N ;
-fun oxide_N : N ;
-fun dioxide_N : N ;
-fun trioxide_N : N ;
-fun monoxide_N : N ;
-fun chlordiazepoxide_N : N ;
-fun hydroxide_N : N ;
-fun peroxide_N : N ;
-fun superoxide_N : N ;
-fun tetroxide_N : N ;
-fun pentoxide_N : N ;
-fun diazoxide_N : N ;
-fun azide_N : N ;
-fun thiazide_N : N ;
-fun trichlormethiazide_N : N ;
-fun hydroflumethiazide_N : N ;
-fun chlorothiazide_N : N ;
-fun hydrochlorothiazide_N : N ;
-fun glipizide_N : N ;
-fun iproclozide_N : N ;
-fun pimozide_N : N ;
-fun alcalde_N : N ;
-fun tilde_N : N ;
-fun allemande_N : N ;
-fun pitchblende_N : N ;
-fun hornblende_N : N ;
-fun blonde_N : N ;
-fun demimonde_N : N ;
-fun ode_N : N ;
-fun abode_N : N ;
-fun code_N : N ;
-fun 'zip code_N' : N ;
-fun postcode_N : N ;
-fun cladode_N : N ;
-fun geode_N : N ;
-fun cathode_N : N ;
-fun photocathode_N : N ;
-fun hydathode_N : N ;
-fun diode_N : N ;
-fun triode_N : N ;
-fun lode_N : N ;
-fun pistillode_N : N ;
-fun phyllode_N : N ;
-fun mode_N : N ;
-fun commode_N : N ;
-fun node_N : N ;
-fun anode_N : N ;
-fun antinode_N : N ;
-fun internode_N : N ;
-fun megapode_N : N ;
-fun antipode_N : N ;
-fun spode_N : N ;
-fun electrode_N : N ;
-fun tetrode_N : N ;
-fun episode_N : N ;
-fun nematode_N : N ;
-fun pentode_N : N ;
-fun exode_N : N ;
-fun 'avant-garde_N' : N ;
-fun paloverde_N : N ;
-fun horde_N : N ;
-fun gourde_N : N ;
-fun dude_N : N ;
-fun prelude_N : N ;
-fun interlude_N : N ;
-fun postlude_N : N ;
-fun nude_N : N ;
-fun prude_N : N ;
-fun etude_N : N ;
-fun hebetude_N : N ;
-fun inquietude_N : N ;
-fun disquietude_N : N ;
-fun desuetude_N : N ;
-fun consuetude_N : N ;
-fun habitude_N : N ;
-fun solicitude_N : N ;
-fun longitude_N : N ;
-fun similitude_N : N ;
-fun verisimilitude_N : N ;
-fun dissimilitude_N : N ;
-fun solitude_N : N ;
-fun amplitude_N : N ;
-fun magnitude_N : N ;
-fun infinitude_N : N ;
-fun decrepitude_N : N ;
-fun turpitude_N : N ;
-fun pulchritude_N : N ;
-fun lassitude_N : N ;
-fun vicissitude_N : N ;
-fun beatitude_N : N ;
-fun latitude_N : N ;
-fun platitude_N : N ;
-fun gratitude_N : N ;
-fun ingratitude_N : N ;
-fun exactitude_N : N ;
-fun inexactitude_N : N ;
-fun rectitude_N : N ;
-fun correctitude_N : N ;
-fun altitude_N : N ;
-fun multitude_N : N ;
-fun aptitude_N : N ;
-fun inaptitude_N : N ;
-fun ineptitude_N : N ;
-fun promptitude_N : N ;
-fun certitude_N : N ;
-fun incertitude_N : N ;
-fun fortitude_N : N ;
-fun attitude_N : N ;
-fun servitude_N : N ;
-fun aldehyde_N : N ;
-fun formaldehyde_N : N ;
-fun paraldehyde_N : N ;
-fun glyceraldehyde_N : N ;
-fun acetaldehyde_N : N ;
-fun bee_N : N ;
-fun bumblebee_N : N ;
-fun bawbee_N : N ;
-fun honeybee_N : N ;
-fun fiancee_N : N ;
-fun divorcee_N : N ;
-fun chickadee_N : N ;
-fun grandee_N : N ;
-fun standee_N : N ;
-fun sendee_N : N ;
-fun vendee_N : N ;
-fun spondee_N : N ;
-fun fee_N : N ;
-fun 'entrance-fee_N' : N ;
-fun coffee_N : N ;
-fun toffee_N : N ;
-fun 'gee-gee_N' : N ;
-fun mortgagee_N : N ;
-fun dragee_N : N ;
-fun pledgee_N : N ;
-fun gidgee_N : N ;
-fun squeegee_N : N ;
-fun thuggee_N : N ;
-fun muggee_N : N ;
-fun negligee_N : N ;
-fun perigee_N : N ;
-fun congee_N : N ;
-fun pongee_N : N ;
-fun bungee_N : N ;
-fun ogee_N : N ;
-fun apogee_N : N ;
-fun bargee_N : N ;
-fun refugee_N : N ;
-fun lichee_N : N ;
-fun chincherinchee_N : N ;
-fun trochee_N : N ;
-fun litchee_N : N ;
-fun debauchee_N : N ;
-fun vouchee_N : N ;
-fun lychee_N : N ;
-fun ghee_N : N ;
-fun garnishee_N : N ;
-fun banshee_N : N ;
-fun towhee_N : N ;
-fun akee_N : N ;
-fun ackee_N : N ;
-fun yankee_N : N ;
-fun lee_N : N ;
-fun glee_N : N ;
-fun bailee_N : N ;
-fun jubilee_N : N ;
-fun mallee_N : N ;
-fun enrollee_N : N ;
-fun ranee_N : N ;
-fun maharanee_N : N ;
-fun alienee_N : N ;
-fun consignee_N : N ;
-fun assignee_N : N ;
-fun trainee_N : N ;
-fun detainee_N : N ;
-fun vaccinee_N : N ;
-fun nominee_N : N ;
-fun knee_N : N ;
-fun internee_N : N ;
-fun townee_N : N ;
-fun pee_N : N ;
-fun escapee_N : N ;
-fun tepee_N : N ;
-fun rappee_N : N ;
-fun toupee_N : N ;
-fun rupee_N : N ;
-fun sangaree_N : N ;
-fun shivaree_N : N ;
-fun decree_N : N ;
-fun scree_N : N ;
-fun murderee_N : N ;
-fun referee_N : N ;
-fun conferee_N : N ;
-fun transferee_N : N ;
-fun kedgeree_N : N ;
-fun chickeree_N : N ;
-fun free_N : N ;
-fun degree_N : N ;
-fun millidegree_N : N ;
-fun pedigree_N : N ;
-fun filigree_N : N ;
-fun retiree_N : N ;
-fun jamboree_N : N ;
-fun honoree_N : N ;
-fun spree_N : N ;
-fun tree_N : N ;
-fun 'rood-tree_N' : N ;
-fun 'shade-tree_N' : N ;
-fun 'spindle-tree_N' : N ;
-fun 'lime-tree_N' : N ;
-fun 'plane-tree_N' : N ;
-fun 'olive-tree_N' : N ;
-fun 'roof-tree_N' : N ;
-fun 'banian-tree_N' : N ;
-fun 'rowan-tree_N' : N ;
-fun 'linden-tree_N' : N ;
-fun 'cacao-tree_N' : N ;
-fun 'christmas-tree_N' : N ;
-fun 'locust-tree_N' : N ;
-fun 'yew-tree_N' : N ;
-fun 'willow-tree_N' : N ;
-fun doubletree_N : N ;
-fun whiffletree_N : N ;
-fun axletree_N : N ;
-fun shoetree_N : N ;
-fun bourtree_N : N ;
-fun see_N : N ;
-fun promisee_N : N ;
-fun pharisee_N : N ;
-fun advisee_N : N ;
-fun devisee_N : N ;
-fun licensee_N : N ;
-fun parsee_N : N ;
-fun fricassee_N : N ;
-fun lessee_N : N ;
-fun addressee_N : N ;
-fun assessee_N : N ;
-fun fusee_N : N ;
-fun tee_N : N ;
-fun legatee_N : N ;
-fun manatee_N : N ;
-fun coatee_N : N ;
-fun goatee_N : N ;
-fun inductee_N : N ;
-fun draftee_N : N ;
-fun guarantee_N : N ;
-fun grantee_N : N ;
-fun warrantee_N : N ;
-fun absentee_N : N ;
-fun patentee_N : N ;
-fun appointee_N : N ;
-fun bootee_N : N ;
-fun devotee_N : N ;
-fun adoptee_N : N ;
-fun repartee_N : N ;
-fun deportee_N : N ;
-fun testee_N : N ;
-fun contestee_N : N ;
-fun trustee_N : N ;
-fun settee_N : N ;
-fun kittee_N : N ;
-fun committee_N : N ;
-fun subcommittee_N : N ;
-fun puttee_N : N ;
-fun suttee_N : N ;
-fun amputee_N : N ;
-fun tutee_N : N ;
-fun evacuee_N : N ;
-fun marquee_N : N ;
-fun levee_N : N ;
-fun wee_N : N ;
-fun 'wee-wee_N' : N ;
-fun drawee_N : N ;
-fun interviewee_N : N ;
-fun pewee_N : N ;
-fun ngwee_N : N ;
-fun payee_N : N ;
-fun employee_N : N ;
-fun zee_N : N ;
-fun chimpanzee_N : N ;
-fun cybercafe_N : N ;
-fun chafe_N : N ;
-fun carafe_N : N ;
-fun strafe_N : N ;
-fun safe_N : N ;
-fun 'meat-safe_N' : N ;
-fun gaffe_N : N ;
-fun piaffe_N : N ;
-fun giraffe_N : N ;
-fun pouffe_N : N ;
-fun fife_N : N ;
-fun 'still-life_N' : N ;
-fun wildlife_N : N ;
-fun afterlife_N : N ;
-fun nightlife_N : N ;
-fun jackknife_N : N ;
-fun pocketknife_N : N ;
-fun drawknife_N : N ;
-fun strife_N : N ;
-fun loosestrife_N : N ;
-fun alewife_N : N ;
-fun puddingwife_N : N ;
-fun life_N : N ;
-fun knife_N : N ;
-fun 'bowie knife_N' : N ;
-fun 'table-knife_N' : N ;
-fun 'palette-knife_N' : N ;
-fun 'pruning-knife_N' : N ;
-fun 'carving-knife_N' : N ;
-fun 'fish-knife_N' : N ;
-fun 'sheath-knife_N' : N ;
-fun 'jack-knife_N' : N ;
-fun 'flick-knife_N' : N ;
-fun 'clasp-knife_N' : N ;
-fun 'pocket-knife_N' : N ;
-fun penknife_N : N ;
-fun paperknife_N : N ;
-fun wife_N : N ;
-fun midwife_N : N ;
-fun housewife_N : N ;
-fun fishwife_N : N ;
-fun age_N : N ;
-fun cabbage_N : N ;
-fun cribbage_N : N ;
-fun garbage_N : N ;
-fun herbage_N : N ;
-fun cage_N : N ;
-fun birdcage_N : N ;
-fun socage_N : N ;
-fun adage_N : N ;
-fun bandage_N : N ;
-fun appendage_N : N ;
-fun windage_N : N ;
-fun bondage_N : N ;
-fun poundage_N : N ;
-fun yardage_N : N ;
-fun cordage_N : N ;
-fun mileage_N : N ;
-fun lineage_N : N ;
-fun matrilineage_N : N ;
-fun patrilineage_N : N ;
-fun acreage_N : N ;
-fun wharfage_N : N ;
-fun gage_N : N ;
-fun baggage_N : N ;
-fun luggage_N : N ;
-fun 'hand-luggage_N' : N ;
-fun greengage_N : N ;
-fun mortgage_N : N ;
-fun repechage_N : N ;
-fun roughage_N : N ;
-fun coliphage_N : N ;
-fun bacteriophage_N : N ;
-fun macrophage_N : N ;
-fun microphage_N : N ;
-fun haemorrhage_N : N ;
-fun hemorrhage_N : N ;
-fun verbiage_N : N ;
-fun foliage_N : N ;
-fun carriage_N : N ;
-fun 'smoking-carriage_N' : N ;
-fun 'gun-carriage_N' : N ;
-fun 'slip-carriage_N' : N ;
-fun undercarriage_N : N ;
-fun miscarriage_N : N ;
-fun marriage_N : N ;
-fun remarriage_N : N ;
-fun intermarriage_N : N ;
-fun triage_N : N ;
-fun leakage_N : N ;
-fun breakage_N : N ;
-fun package_N : N ;
-fun wreckage_N : N ;
-fun dockage_N : N ;
-fun lockage_N : N ;
-fun blockage_N : N ;
-fun truckage_N : N ;
-fun tankage_N : N ;
-fun linkage_N : N ;
-fun shrinkage_N : N ;
-fun corkage_N : N ;
-fun scalage_N : N ;
-fun vassalage_N : N ;
-fun assemblage_N : N ;
-fun fuselage_N : N ;
-fun tutelage_N : N ;
-fun persiflage_N : N ;
-fun camouflage_N : N ;
-fun mucilage_N : N ;
-fun milage_N : N ;
-fun spoilage_N : N ;
-fun silage_N : N ;
-fun ensilage_N : N ;
-fun cartilage_N : N ;
-fun fibrocartilage_N : N ;
-fun enallage_N : N ;
-fun hypallage_N : N ;
-fun pillage_N : N ;
-fun spillage_N : N ;
-fun tillage_N : N ;
-fun village_N : N ;
-fun collage_N : N ;
-fun ullage_N : N ;
-fun haulage_N : N ;
-fun damage_N : N ;
-fun ohmage_N : N ;
-fun image_N : N ;
-fun afterimage_N : N ;
-fun pilgrimage_N : N ;
-fun scrimmage_N : N ;
-fun rummage_N : N ;
-fun scrummage_N : N ;
-fun homage_N : N ;
-fun plumage_N : N ;
-fun orphanage_N : N ;
-fun apanage_N : N ;
-fun appanage_N : N ;
-fun alienage_N : N ;
-fun signage_N : N ;
-fun drainage_N : N ;
-fun concubinage_N : N ;
-fun badinage_N : N ;
-fun villeinage_N : N ;
-fun linage_N : N ;
-fun coinage_N : N ;
-fun tonnage_N : N ;
-fun peonage_N : N ;
-fun espionage_N : N ;
-fun counterespionage_N : N ;
-fun commonage_N : N ;
-fun nonage_N : N ;
-fun baronage_N : N ;
-fun patronage_N : N ;
-fun parsonage_N : N ;
-fun personage_N : N ;
-fun carnage_N : N ;
-fun ménage_N : N ;
-fun page_N : N ;
-fun 'title-page_N' : N ;
-fun seepage_N : N ;
-fun pipage_N : N ;
-fun equipage_N : N ;
-fun rampage_N : N ;
-fun slippage_N : N ;
-fun stoppage_N : N ;
-fun decoupage_N : N ;
-fun rage_N : N ;
-fun vicarage_N : N ;
-fun garage_N : N ;
-fun cellarage_N : N ;
-fun umbrage_N : N ;
-fun plunderage_N : N ;
-fun peerage_N : N ;
-fun steerage_N : N ;
-fun pilferage_N : N ;
-fun telpherage_N : N ;
-fun brokerage_N : N ;
-fun amperage_N : N ;
-fun lighterage_N : N ;
-fun porterage_N : N ;
-fun average_N : N ;
-fun beverage_N : N ;
-fun leverage_N : N ;
-fun overage_N : N ;
-fun coverage_N : N ;
-fun sewerage_N : N ;
-fun suffrage_N : N ;
-fun saxifrage_N : N ;
-fun mirage_N : N ;
-fun umpirage_N : N ;
-fun borage_N : N ;
-fun forage_N : N ;
-fun anchorage_N : N ;
-fun seigniorage_N : N ;
-fun moorage_N : N ;
-fun storage_N : N ;
-fun barrage_N : N ;
-fun demurrage_N : N ;
-fun arbitrage_N : N ;
-fun outrage_N : N ;
-fun effleurage_N : N ;
-fun harbourage_N : N ;
-fun courage_N : N ;
-fun entourage_N : N ;
-fun pasturage_N : N ;
-fun sage_N : N ;
-fun presage_N : N ;
-fun visage_N : N ;
-fun dosage_N : N ;
-fun corsage_N : N ;
-fun massage_N : N ;
-fun passage_N : N ;
-fun message_N : N ;
-fun dressage_N : N ;
-fun petrissage_N : N ;
-fun usage_N : N ;
-fun 'ill-usage_N' : N ;
-fun sausage_N : N ;
-fun eatage_N : N ;
-fun decolletage_N : N ;
-fun baronetage_N : N ;
-fun driftage_N : N ;
-fun hermitage_N : N ;
-fun fruitage_N : N ;
-fun voltage_N : N ;
-fun vantage_N : N ;
-fun advantage_N : N ;
-fun disadvantage_N : N ;
-fun percentage_N : N ;
-fun clientage_N : N ;
-fun parentage_N : N ;
-fun mintage_N : N ;
-fun vintage_N : N ;
-fun montage_N : N ;
-fun photomontage_N : N ;
-fun frontage_N : N ;
-fun cabotage_N : N ;
-fun sabotage_N : N ;
-fun dotage_N : N ;
-fun footage_N : N ;
-fun rootage_N : N ;
-fun potage_N : N ;
-fun cartage_N : N ;
-fun shortage_N : N ;
-fun portage_N : N ;
-fun reportage_N : N ;
-fun stage_N : N ;
-fun 'fare-stage_N' : N ;
-fun 'landing-stage_N' : N ;
-fun wastage_N : N ;
-fun multistage_N : N ;
-fun downstage_N : N ;
-fun hostage_N : N ;
-fun postage_N : N ;
-fun upstage_N : N ;
-fun wattage_N : N ;
-fun curettage_N : N ;
-fun cottage_N : N ;
-fun pottage_N : N ;
-fun frottage_N : N ;
-fun outage_N : N ;
-fun language_N : N ;
-fun paralanguage_N : N ;
-fun metalanguage_N : N ;
-fun slanguage_N : N ;
-fun messuage_N : N ;
-fun cleavage_N : N ;
-fun gastrogavage_N : N ;
-fun lavage_N : N ;
-fun pavage_N : N ;
-fun ravage_N : N ;
-fun savage_N : N ;
-fun salvage_N : N ;
-fun selvage_N : N ;
-fun lovage_N : N ;
-fun wage_N : N ;
-fun sewage_N : N ;
-fun cowage_N : N ;
-fun flowage_N : N ;
-fun stowage_N : N ;
-fun voyage_N : N ;
-fun badge_N : N ;
-fun edge_N : N ;
-fun 'knife-edge_N' : N ;
-fun 'razor-edge_N' : N ;
-fun hedge_N : N ;
-fun ledge_N : N ;
-fun pledge_N : N ;
-fun sledge_N : N ;
-fun knowledge_N : N ;
-fun metaknowledge_N : N ;
-fun foreknowledge_N : N ;
-fun dredge_N : N ;
-fun featheredge_N : N ;
-fun sedge_N : N ;
-fun straightedge_N : N ;
-fun selvedge_N : N ;
-fun wedge_N : N ;
-fun midge_N : N ;
-fun ridge_N : N ;
-fun bridge_N : N ;
-fun 'trestle-bridge_N' : N ;
-fun weighbridge_N : N ;
-fun footbridge_N : N ;
-fun drawbridge_N : N ;
-fun fridge_N : N ;
-fun porridge_N : N ;
-fun cartridge_N : N ;
-fun 'ball-cartridge_N' : N ;
-fun partridge_N : N ;
-fun dodge_N : N ;
-fun lodge_N : N ;
-fun splodge_N : N ;
-fun hodgepodge_N : N ;
-fun stodge_N : N ;
-fun fudge_N : N ;
-fun judge_N : N ;
-fun kludge_N : N ;
-fun sludge_N : N ;
-fun smudge_N : N ;
-fun nudge_N : N ;
-fun pudge_N : N ;
-fun drudge_N : N ;
-fun grudge_N : N ;
-fun trudge_N : N ;
-fun solfege_N : N ;
-fun liege_N : N ;
-fun siege_N : N ;
-fun sacrilege_N : N ;
-fun privilege_N : N ;
-fun college_N : N ;
-fun 'training-college_N' : N ;
-fun cortege_N : N ;
-fun shmegegge_N : N ;
-fun pogge_N : N ;
-fun beige_N : N ;
-fun 'noblesse oblige_N' : N ;
-fun prestige_N : N ;
-fun vestige_N : N ;
-fun bilge_N : N ;
-fun bulge_N : N ;
-fun change_N : N ;
-fun interchange_N : N ;
-fun exchange_N : N ;
-fun 'corn-exchange_N' : N ;
-fun flange_N : N ;
-fun mélange_N : N ;
-fun mange_N : N ;
-fun blancmange_N : N ;
-fun range_N : N ;
-fun 'rifle-range_N' : N ;
-fun 'shooting-range_N' : N ;
-fun 'rocket-range_N' : N ;
-fun grange_N : N ;
-fun omnirange_N : N ;
-fun orange_N : N ;
-fun citrange_N : N ;
-fun challenge_N : N ;
-fun tenge_N : N ;
-fun revenge_N : N ;
-fun lozenge_N : N ;
-fun binge_N : N ;
-fun hinge_N : N ;
-fun minge_N : N ;
-fun fringe_N : N ;
-fun syringe_N : N ;
-fun singe_N : N ;
-fun tinge_N : N ;
-fun twinge_N : N ;
-fun prolonge_N : N ;
-fun sponge_N : N ;
-fun lunge_N : N ;
-fun muskellunge_N : N ;
-fun plunge_N : N ;
-fun lounge_N : N ;
-fun 'sun-lounge_N' : N ;
-fun gamboge_N : N ;
-fun doge_N : N ;
-fun anagoge_N : N ;
-fun loge_N : N ;
-fun scrooge_N : N ;
-fun stooge_N : N ;
-fun barge_N : N ;
-fun charge_N : N ;
-fun 'depth-charge_N' : N ;
-fun undercharge_N : N ;
-fun countercharge_N : N ;
-fun overcharge_N : N ;
-fun surcharge_N : N ;
-fun discharge_N : N ;
-fun large_N : N ;
-fun marge_N : N ;
-fun concierge_N : N ;
-fun serge_N : N ;
-fun verge_N : N ;
-fun dirge_N : N ;
-fun forge_N : N ;
-fun gorge_N : N ;
-fun urge_N : N ;
-fun demiurge_N : N ;
-fun splurge_N : N ;
-fun scourge_N : N ;
-fun purge_N : N ;
-fun spurge_N : N ;
-fun surge_N : N ;
-fun upsurge_N : N ;
-fun gauge_N : N ;
-fun 'wind-gauge_N' : N ;
-fun 'pressure-gauge_N' : N ;
-fun 'rain-gauge_N' : N ;
-fun refuge_N : N ;
-fun vermifuge_N : N ;
-fun centrifuge_N : N ;
-fun ultracentrifuge_N : N ;
-fun lactifuge_N : N ;
-fun insectifuge_N : N ;
-fun subterfuge_N : N ;
-fun luge_N : N ;
-fun deluge_N : N ;
-fun gouge_N : N ;
-fun rouge_N : N ;
-fun vouge_N : N ;
-fun cortège_N : N ;
-fun ache_N : N ;
-fun 'face-ache_N' : N ;
-fun 'stomach-ache_N' : N ;
-fun cache_N : N ;
-fun headache_N : N ;
-fun 'sick-headache_N' : N ;
-fun stomachache_N : N ;
-fun toothache_N : N ;
-fun backache_N : N ;
-fun panache_N : N ;
-fun apache_N : N ;
-fun earache_N : N ;
-fun huarache_N : N ;
-fun huisache_N : N ;
-fun heartache_N : N ;
-fun mustache_N : N ;
-fun moustache_N : N ;
-fun soutache_N : N ;
-fun gouache_N : N ;
-fun bellyache_N : N ;
-fun obeche_N : N ;
-fun seiche_N : N ;
-fun microfiche_N : N ;
-fun caliche_N : N ;
-fun niche_N : N ;
-fun pastiche_N : N ;
-fun quiche_N : N ;
-fun avalanche_N : N ;
-fun 'carte blanche_N' : N ;
-fun catananche_N : N ;
-fun tranche_N : N ;
-fun pinche_N : N ;
-fun synecdoche_N : N ;
-fun brioche_N : N ;
-fun cloche_N : N ;
-fun guilloche_N : N ;
-fun caroche_N : N ;
-fun thelarche_N : N ;
-fun démarche_N : N ;
-fun menarche_N : N ;
-fun adrenarche_N : N ;
-fun schottische_N : N ;
-fun penuche_N : N ;
-fun douche_N : N ;
-fun barouche_N : N ;
-fun cartouche_N : N ;
-fun psyche_N : N ;
-fun crèche_N : N ;
-fun sadhe_N : N ;
-fun bathyscaphe_N : N ;
-fun raphe_N : N ;
-fun strophe_N : N ;
-fun anastrophe_N : N ;
-fun catastrophe_N : N ;
-fun antistrophe_N : N ;
-fun apostrophe_N : N ;
-fun bathe_N : N ;
-fun lathe_N : N ;
-fun spathe_N : N ;
-fun swathe_N : N ;
-fun tithe_N : N ;
-fun withe_N : N ;
-fun calanthe_N : N ;
-fun 'crème de menthe_N' : N ;
-fun absinthe_N : N ;
-fun scythe_N : N ;
-fun freebie_N : N ;
-fun bombie_N : N ;
-fun zombie_N : N ;
-fun specie_N : N ;
-fun die_N : N ;
-fun caddie_N : N ;
-fun 'finnan haddie_N' : N ;
-fun laddie_N : N ;
-fun oldie_N : N ;
-fun organdie_N : N ;
-fun indie_N : N ;
-fun yardie_N : N ;
-fun birdie_N : N ;
-fun weirdie_N : N ;
-fun geordie_N : N ;
-fun wedgie_N : N ;
-fun budgie_N : N ;
-fun doggie_N : N ;
-fun bogie_N : N ;
-fun dogie_N : N ;
-fun boogie_N : N ;
-fun 'boogie-woogie_N' : N ;
-fun techie_N : N ;
-fun toughie_N : N ;
-fun mashie_N : N ;
-fun smoothie_N : N ;
-fun quickie_N : N ;
-fun talkie_N : N ;
-fun 'walkie-talkie_N' : N ;
-fun junkie_N : N ;
-fun punkie_N : N ;
-fun bookie_N : N ;
-fun cookie_N : N ;
-fun rookie_N : N ;
-fun darkie_N : N ;
-fun lie_N : N ;
-fun mealie_N : N ;
-fun goalie_N : N ;
-fun capercaillie_N : N ;
-fun gillie_N : N ;
-fun ghillie_N : N ;
-fun collie_N : N ;
-fun mollie_N : N ;
-fun coolie_N : N ;
-fun kylie_N : N ;
-fun ramie_N : N ;
-fun bonhomie_N : N ;
-fun anomie_N : N ;
-fun stymie_N : N ;
-fun beanie_N : N ;
-fun meanie_N : N ;
-fun genie_N : N ;
-fun dominie_N : N ;
-fun grannie_N : N ;
-fun brownie_N : N ;
-fun townie_N : N ;
-fun pie_N : N ;
-fun 'mince-pie_N' : N ;
-fun scrapie_N : N ;
-fun magpie_N : N ;
-fun porkpie_N : N ;
-fun kelpie_N : N ;
-fun crappie_N : N ;
-fun hippie_N : N ;
-fun koppie_N : N ;
-fun yuppie_N : N ;
-fun sharpie_N : N ;
-fun potpie_N : N ;
-fun groupie_N : N ;
-fun dearie_N : N ;
-fun aerie_N : N ;
-fun faerie_N : N ;
-fun camaraderie_N : N ;
-fun menagerie_N : N ;
-fun lingerie_N : N ;
-fun gaucherie_N : N ;
-fun gendarmerie_N : N ;
-fun chinoiserie_N : N ;
-fun brasserie_N : N ;
-fun patisserie_N : N ;
-fun rotisserie_N : N ;
-fun causerie_N : N ;
-fun coterie_N : N ;
-fun charcuterie_N : N ;
-fun reverie_N : N ;
-fun prairie_N : N ;
-fun calorie_N : N ;
-fun knobkerrie_N : N ;
-fun corrie_N : N ;
-fun curie_N : N ;
-fun millicurie_N : N ;
-fun cowrie_N : N ;
-fun eyrie_N : N ;
-fun booboisie_N : N ;
-fun bourgeoisie_N : N ;
-fun falsie_N : N ;
-fun lassie_N : N ;
-fun brassie_N : N ;
-fun aussie_N : N ;
-fun jalousie_N : N ;
-fun tie_N : N ;
-fun 'cup-tie_N' : N ;
-fun sweetie_N : N ;
-fun softie_N : N ;
-fun nightie_N : N ;
-fun necktie_N : N ;
-fun pantie_N : N ;
-fun coontie_N : N ;
-fun auntie_N : N ;
-fun mountie_N : N ;
-fun sortie_N : N ;
-fun 'eau-de-vie_N' : N ;
-fun movie_N : N ;
-fun dixie_N : N ;
-fun pixie_N : N ;
-fun pyxie_N : N ;
-fun floozie_N : N ;
-fun kopje_N : N ;
-fun hardbake_N : N ;
-fun clambake_N : N ;
-fun cake_N : N ;
-fun 'sponge-cake_N' : N ;
-fun 'cattle-cake_N' : N ;
-fun 'wedding-cake_N' : N ;
-fun 'rock-cake_N' : N ;
-fun 'oil-cake_N' : N ;
-fun 'cotton-cake_N' : N ;
-fun 'layer-cake_N' : N ;
-fun teacake_N : N ;
-fun seedcake_N : N ;
-fun friedcake_N : N ;
-fun bridecake_N : N ;
-fun coffeecake_N : N ;
-fun hoecake_N : N ;
-fun cheesecake_N : N ;
-fun beefcake_N : N ;
-fun ashcake_N : N ;
-fun fishcake_N : N ;
-fun pancake_N : N ;
-fun cupcake_N : N ;
-fun oatcake_N : N ;
-fun fruitcake_N : N ;
-fun shortcake_N : N ;
-fun yellowcake_N : N ;
-fun johnnycake_N : N ;
-fun fake_N : N ;
-fun shake_N : N ;
-fun 'milk-shake_N' : N ;
-fun headshake_N : N ;
-fun handshake_N : N ;
-fun eggshake_N : N ;
-fun milkshake_N : N ;
-fun lake_N : N ;
-fun flake_N : N ;
-fun cornflake_N : N ;
-fun wheatflake_N : N ;
-fun snowflake_N : N ;
-fun make_N : N ;
-fun remake_N : N ;
-fun snake_N : N ;
-fun 'sea-snake_N' : N ;
-fun rattlesnake_N : N ;
-fun blacksnake_N : N ;
-fun rake_N : N ;
-fun brake_N : N ;
-fun 'shooting-brake_N' : N ;
-fun handbrake_N : N ;
-fun canebrake_N : N ;
-fun airbrake_N : N ;
-fun crake_N : N ;
-fun corncrake_N : N ;
-fun drake_N : N ;
-fun sheldrake_N : N ;
-fun mandrake_N : N ;
-fun sake_N : N ;
-fun namesake_N : N ;
-fun keepsake_N : N ;
-fun take_N : N ;
-fun retake_N : N ;
-fun shiitake_N : N ;
-fun stocktake_N : N ;
-fun intake_N : N ;
-fun uptake_N : N ;
-fun reuptake_N : N ;
-fun stake_N : N ;
-fun grubstake_N : N ;
-fun mistake_N : N ;
-fun outtake_N : N ;
-fun quake_N : N ;
-fun seaquake_N : N ;
-fun earthquake_N : N ;
-fun wake_N : N ;
-fun kittiwake_N : N ;
-fun peke_N : N ;
-fun kishke_N : N ;
-fun bike_N : N ;
-fun 'push-bike_N' : N ;
-fun minibike_N : N ;
-fun motorbike_N : N ;
-fun dike_N : N ;
-fun klondike_N : N ;
-fun hike_N : N ;
-fun kike_N : N ;
-fun like_N : N ;
-fun dislike_N : N ;
-fun mike_N : N ;
-fun turnpike_N : N ;
-fun spike_N : N ;
-fun handspike_N : N ;
-fun marlinespike_N : N ;
-fun shrike_N : N ;
-fun strike_N : N ;
-fun tike_N : N ;
-fun yarmulke_N : N ;
-fun karaoke_N : N ;
-fun coke_N : N ;
-fun choke_N : N ;
-fun artichoke_N : N ;
-fun joke_N : N ;
-fun bloke_N : N ;
-fun moke_N : N ;
-fun smoke_N : N ;
-fun poke_N : N ;
-fun spoke_N : N ;
-fun stroke_N : N ;
-fun 'side-stroke_N' : N ;
-fun sidestroke_N : N ;
-fun backstroke_N : N ;
-fun instroke_N : N ;
-fun sunstroke_N : N ;
-fun downstroke_N : N ;
-fun upstroke_N : N ;
-fun masterstroke_N : N ;
-fun heatstroke_N : N ;
-fun breaststroke_N : N ;
-fun outstroke_N : N ;
-fun keystroke_N : N ;
-fun toke_N : N ;
-fun revoke_N : N ;
-fun yoke_N : N ;
-fun schipperke_N : N ;
-fun uke_N : N ;
-fun rebuke_N : N ;
-fun duke_N : N ;
-fun archduke_N : N ;
-fun juke_N : N ;
-fun fluke_N : N ;
-fun puke_N : N ;
-fun peruke_N : N ;
-fun dyke_N : N ;
-fun tyke_N : N ;
-fun ale_N : N ;
-fun bale_N : N ;
-fun timbale_N : N ;
-fun locale_N : N ;
-fun percale_N : N ;
-fun scale_N : N ;
-fun dale_N : N ;
-fun airedale_N : N ;
-fun mastoidale_N : N ;
-fun chippendale_N : N ;
-fun gale_N : N ;
-fun farthingale_N : N ;
-fun galingale_N : N ;
-fun nightingale_N : N ;
-fun martingale_N : N ;
-fun jugale_N : N ;
-fun shale_N : N ;
-fun whale_N : N ;
-fun 'sperm-whale_N' : N ;
-fun kale_N : N ;
-fun seakale_N : N ;
-fun male_N : N ;
-fun tamale_N : N ;
-fun female_N : N ;
-fun finale_N : N ;
-fun internationale_N : N ;
-fun rationale_N : N ;
-fun pale_N : N ;
-fun chorale_N : N ;
-fun morale_N : N ;
-fun pastorale_N : N ;
-fun sale_N : N ;
-fun 'jumble-sale_N' : N ;
-fun wholesale_N : N ;
-fun resale_N : N ;
-fun tale_N : N ;
-fun tattletale_N : N ;
-fun orbitale_N : N ;
-fun folktale_N : N ;
-fun telltale_N : N ;
-fun fairytale_N : N ;
-fun vale_N : N ;
-fun wale_N : N ;
-fun gunwale_N : N ;
-fun swale_N : N ;
-fun probable_N : N ;
-fun cable_N : N ;
-fun vocable_N : N ;
-fun fable_N : N ;
-fun gable_N : N ;
-fun untouchable_N : N ;
-fun perishable_N : N ;
-fun sociable_N : N ;
-fun variable_N : N ;
-fun breakable_N : N ;
-fun syllable_N : N ;
-fun decasyllable_N : N ;
-fun disyllable_N : N ;
-fun trisyllable_N : N ;
-fun monosyllable_N : N ;
-fun octosyllable_N : N ;
-fun dissyllable_N : N ;
-fun polysyllable_N : N ;
-fun parable_N : N ;
-fun imponderable_N : N ;
-fun deliverable_N : N ;
-fun undesirable_N : N ;
-fun incurable_N : N ;
-fun durable_N : N ;
-fun sable_N : N ;
-fun disposable_N : N ;
-fun table_N : N ;
-fun 'tea-table_N' : N ;
-fun 'billiard-table_N' : N ;
-fun 'trestle-table_N' : N ;
-fun 'gaming-table_N' : N ;
-fun 'dining-table_N' : N ;
-fun 'dressing-table_N' : N ;
-fun 'operating-table_N' : N ;
-fun 'pin-table_N' : N ;
-fun 'toilet-table_N' : N ;
-fun eatable_N : N ;
-fun vegetable_N : N ;
-fun timetable_N : N ;
-fun inevitable_N : N ;
-fun worktable_N : N ;
-fun turntable_N : N ;
-fun notable_N : N ;
-fun watertable_N : N ;
-fun portable_N : N ;
-fun stable_N : N ;
-fun constable_N : N ;
-fun valuable_N : N ;
-fun receivable_N : N ;
-fun payable_N : N ;
-fun employable_N : N ;
-fun babble_N : N ;
-fun ecobabble_N : N ;
-fun psychobabble_N : N ;
-fun technobabble_N : N ;
-fun gabble_N : N ;
-fun rabble_N : N ;
-fun scrabble_N : N ;
-fun squabble_N : N ;
-fun pebble_N : N ;
-fun dibble_N : N ;
-fun kibble_N : N ;
-fun nibble_N : N ;
-fun scribble_N : N ;
-fun dribble_N : N ;
-fun quibble_N : N ;
-fun bobble_N : N ;
-fun cobble_N : N ;
-fun gobble_N : N ;
-fun hobble_N : N ;
-fun knobble_N : N ;
-fun wobble_N : N ;
-fun bubble_N : N ;
-fun 'hubble-bubble_N' : N ;
-fun 'soap-bubble_N' : N ;
-fun rubble_N : N ;
-fun stubble_N : N ;
-fun nybble_N : N ;
-fun treble_N : N ;
-fun bible_N : N ;
-fun crucible_N : N ;
-fun edible_N : N ;
-fun mandible_N : N ;
-fun audible_N : N ;
-fun dirigible_N : N ;
-fun intangible_N : N ;
-fun fungible_N : N ;
-fun foible_N : N ;
-fun thurible_N : N ;
-fun submersible_N : N ;
-fun reversible_N : N ;
-fun possible_N : N ;
-fun impossible_N : N ;
-fun collectible_N : N ;
-fun deductible_N : N ;
-fun convertible_N : N ;
-fun comestible_N : N ;
-fun combustible_N : N ;
-fun amble_N : N ;
-fun preamble_N : N ;
-fun gamble_N : N ;
-fun shamble_N : N ;
-fun ramble_N : N ;
-fun bramble_N : N ;
-fun scramble_N : N ;
-fun tremble_N : N ;
-fun ensemble_N : N ;
-fun thimble_N : N ;
-fun scumble_N : N ;
-fun fumble_N : N ;
-fun jumble_N : N ;
-fun mumble_N : N ;
-fun rumble_N : N ;
-fun grumble_N : N ;
-fun tumble_N : N ;
-fun 'rough-and-tumble_N' : N ;
-fun stumble_N : N ;
-fun noble_N : N ;
-fun roble_N : N ;
-fun marble_N : N ;
-fun warble_N : N ;
-fun bauble_N : N ;
-fun double_N : N ;
-fun rouble_N : N ;
-fun trouble_N : N ;
-fun ruble_N : N ;
-fun chasuble_N : N ;
-fun treacle_N : N ;
-fun manacle_N : N ;
-fun binnacle_N : N ;
-fun pinnacle_N : N ;
-fun barnacle_N : N ;
-fun tabernacle_N : N ;
-fun miracle_N : N ;
-fun spiracle_N : N ;
-fun oracle_N : N ;
-fun coracle_N : N ;
-fun spectacle_N : N ;
-fun pentacle_N : N ;
-fun tentacle_N : N ;
-fun receptacle_N : N ;
-fun obstacle_N : N ;
-fun cubicle_N : N ;
-fun icicle_N : N ;
-fun fascicle_N : N ;
-fun radicle_N : N ;
-fun appendicle_N : N ;
-fun chicle_N : N ;
-fun vehicle_N : N ;
-fun 'space-vehicle_N' : N ;
-fun silicle_N : N ;
-fun pellicle_N : N ;
-fun follicle_N : N ;
-fun panicle_N : N ;
-fun sanicle_N : N ;
-fun chronicle_N : N ;
-fun funicle_N : N ;
-fun ventricle_N : N ;
-fun utricle_N : N ;
-fun auricle_N : N ;
-fun vesicle_N : N ;
-fun papulovesicle_N : N ;
-fun versicle_N : N ;
-fun ossicle_N : N ;
-fun reticle_N : N ;
-fun canticle_N : N ;
-fun denticle_N : N ;
-fun conventicle_N : N ;
-fun article_N : N ;
-fun particle_N : N ;
-fun quasiparticle_N : N ;
-fun antiparticle_N : N ;
-fun testicle_N : N ;
-fun cuticle_N : N ;
-fun clavicle_N : N ;
-fun uncle_N : N ;
-fun carbuncle_N : N ;
-fun peduncle_N : N ;
-fun granduncle_N : N ;
-fun caruncle_N : N ;
-fun monocle_N : N ;
-fun socle_N : N ;
-fun tubercle_N : N ;
-fun circle_N : N ;
-fun semicircle_N : N ;
-fun muscle_N : N ;
-fun corpuscle_N : N ;
-fun boucle_N : N ;
-fun cycle_N : N ;
-fun megacycle_N : N ;
-fun bicycle_N : N ;
-fun unicycle_N : N ;
-fun epicycle_N : N ;
-fun tricycle_N : N ;
-fun kilocycle_N : N ;
-fun motorcycle_N : N ;
-fun débâcle_N : N ;
-fun beadle_N : N ;
-fun treadle_N : N ;
-fun ladle_N : N ;
-fun cradle_N : N ;
-fun skedaddle_N : N ;
-fun paddle_N : N ;
-fun straddle_N : N ;
-fun saddle_N : N ;
-fun 'side-saddle_N' : N ;
-fun 'pack-saddle_N' : N ;
-fun sidesaddle_N : N ;
-fun packsaddle_N : N ;
-fun staddle_N : N ;
-fun twaddle_N : N ;
-fun paradiddle_N : N ;
-fun taradiddle_N : N ;
-fun tarradiddle_N : N ;
-fun fiddle_N : N ;
-fun middle_N : N ;
-fun piddle_N : N ;
-fun riddle_N : N ;
-fun griddle_N : N ;
-fun twiddle_N : N ;
-fun mollycoddle_N : N ;
-fun doddle_N : N ;
-fun noddle_N : N ;
-fun cuddle_N : N ;
-fun huddle_N : N ;
-fun muddle_N : N ;
-fun puddle_N : N ;
-fun ruddle_N : N ;
-fun needle_N : N ;
-fun 'packing-needle_N' : N ;
-fun 'darning-needle_N' : N ;
-fun 'knitting-needle_N' : N ;
-fun idle_N : N ;
-fun bridle_N : N ;
-fun candle_N : N ;
-fun footcandle_N : N ;
-fun handle_N : N ;
-fun panhandle_N : N ;
-fun doorhandle_N : N ;
-fun spindle_N : N ;
-fun swindle_N : N ;
-fun bundle_N : N ;
-fun rundle_N : N ;
-fun trundle_N : N ;
-fun boodle_N : N ;
-fun caboodle_N : N ;
-fun noodle_N : N ;
-fun poodle_N : N ;
-fun girdle_N : N ;
-fun hurdle_N : N ;
-fun varicocele_N : N ;
-fun oscheocele_N : N ;
-fun meningocele_N : N ;
-fun myelomeningocele_N : N ;
-fun encephalocele_N : N ;
-fun colpocele_N : N ;
-fun laparocele_N : N ;
-fun hydrocele_N : N ;
-fun ureterocele_N : N ;
-fun urethrocele_N : N ;
-fun urocele_N : N ;
-fun hematocele_N : N ;
-fun spermatocele_N : N ;
-fun keratocele_N : N ;
-fun galactocele_N : N ;
-fun rectocele_N : N ;
-fun cystocele_N : N ;
-fun urodele_N : N ;
-fun allele_N : N ;
-fun nonallele_N : N ;
-fun ukulele_N : N ;
-fun fistmele_N : N ;
-fun clientele_N : N ;
-fun baffle_N : N ;
-fun snaffle_N : N ;
-fun raffle_N : N ;
-fun waffle_N : N ;
-fun skiffle_N : N ;
-fun piffle_N : N ;
-fun riffle_N : N ;
-fun scuffle_N : N ;
-fun duffle_N : N ;
-fun shuffle_N : N ;
-fun reshuffle_N : N ;
-fun muffle_N : N ;
-fun snuffle_N : N ;
-fun ruffle_N : N ;
-fun truffle_N : N ;
-fun rifle_N : N ;
-fun trifle_N : N ;
-fun stifle_N : N ;
-fun eagle_N : N ;
-fun beagle_N : N ;
-fun porbeagle_N : N ;
-fun spreadeagle_N : N ;
-fun gaggle_N : N ;
-fun haggle_N : N ;
-fun straggle_N : N ;
-fun giggle_N : N ;
-fun jiggle_N : N ;
-fun wriggle_N : N ;
-fun squiggle_N : N ;
-fun wiggle_N : N ;
-fun boondoggle_N : N ;
-fun joggle_N : N ;
-fun toggle_N : N ;
-fun juggle_N : N ;
-fun struggle_N : N ;
-fun angle_N : N ;
-fun bangle_N : N ;
-fun triangle_N : N ;
-fun jangle_N : N ;
-fun mangle_N : N ;
-fun spangle_N : N ;
-fun quadrangle_N : N ;
-fun wrangle_N : N ;
-fun tangle_N : N ;
-fun rectangle_N : N ;
-fun wangle_N : N ;
-fun dingle_N : N ;
-fun shingle_N : N ;
-fun jingle_N : N ;
-fun cringle_N : N ;
-fun single_N : N ;
-fun tingle_N : N ;
-fun dongle_N : N ;
-fun bungle_N : N ;
-fun jungle_N : N ;
-fun gargle_N : N ;
-fun gurgle_N : N ;
-fun bugle_N : N ;
-fun pinochle_N : N ;
-fun bile_N : N ;
-fun stabile_N : N ;
-fun mobile_N : N ;
-fun bloodmobile_N : N ;
-fun bookmobile_N : N ;
-fun automobile_N : N ;
-fun snowmobile_N : N ;
-fun imbecile_N : N ;
-fun decile_N : N ;
-fun domicile_N : N ;
-fun crocodile_N : N ;
-fun audile_N : N ;
-fun file_N : N ;
-fun defile_N : N ;
-fun nailfile_N : N ;
-fun profile_N : N ;
-fun myrmecophile_N : N ;
-fun pedophile_N : N ;
-fun thermoacidophile_N : N ;
-fun bibliophile_N : N ;
-fun halophile_N : N ;
-fun anglophile_N : N ;
-fun enophile_N : N ;
-fun technophile_N : N ;
-fun aerophile_N : N ;
-fun while_N : N ;
-fun mile_N : N ;
-fun simile_N : N ;
-fun facsimile_N : N ;
-fun camomile_N : N ;
-fun chamomile_N : N ;
-fun smile_N : N ;
-fun campanile_N : N ;
-fun juvenile_N : N ;
-fun voile_N : N ;
-fun pile_N : N ;
-fun woodpile_N : N ;
-fun stockpile_N : N ;
-fun thermopile_N : N ;
-fun laetrile_N : N ;
-fun nitrile_N : N ;
-fun propenonitrile_N : N ;
-fun polypropenonitrile_N : N ;
-fun chlorobenzylidenemalononitrile_N : N ;
-fun missile_N : N ;
-fun tile_N : N ;
-fun 'ridge-tile_N' : N ;
-fun volatile_N : N ;
-fun 'sal volatile_N' : N ;
-fun projectile_N : N ;
-fun pantile_N : N ;
-fun percentile_N : N ;
-fun gentile_N : N ;
-fun motile_N : N ;
-fun chrysotile_N : N ;
-fun reptile_N : N ;
-fun quartile_N : N ;
-fun stile_N : N ;
-fun turnstile_N : N ;
-fun hostile_N : N ;
-fun rutile_N : N ;
-fun textile_N : N ;
-fun guile_N : N ;
-fun wile_N : N ;
-fun exile_N : N ;
-fun cackle_N : N ;
-fun hackle_N : N ;
-fun shackle_N : N ;
-fun mackle_N : N ;
-fun spackle_N : N ;
-fun crackle_N : N ;
-fun grackle_N : N ;
-fun tackle_N : N ;
-fun 'fishing-tackle_N' : N ;
-fun deckle_N : N ;
-fun speckle_N : N ;
-fun freckle_N : N ;
-fun pickle_N : N ;
-fun prickle_N : N ;
-fun trickle_N : N ;
-fun strickle_N : N ;
-fun sickle_N : N ;
-fun tickle_N : N ;
-fun cockle_N : N ;
-fun buckle_N : N ;
-fun turnbuckle_N : N ;
-fun chuckle_N : N ;
-fun knuckle_N : N ;
-fun truckle_N : N ;
-fun honeysuckle_N : N ;
-fun ankle_N : N ;
-fun inkle_N : N ;
-fun crinkle_N : N ;
-fun sprinkle_N : N ;
-fun wrinkle_N : N ;
-fun winkle_N : N ;
-fun periwinkle_N : N ;
-fun twinkle_N : N ;
-fun sparkle_N : N ;
-fun farfalle_N : N ;
-fun belle_N : N ;
-fun nacelle_N : N ;
-fun rubicelle_N : N ;
-fun micelle_N : N ;
-fun chandelle_N : N ;
-fun organelle_N : N ;
-fun fontanelle_N : N ;
-fun amarelle_N : N ;
-fun chanterelle_N : N ;
-fun pipistrelle_N : N ;
-fun mademoiselle_N : N ;
-fun moselle_N : N ;
-fun roselle_N : N ;
-fun bagatelle_N : N ;
-fun tagliatelle_N : N ;
-fun tarantelle_N : N ;
-fun immortelle_N : N ;
-fun gazelle_N : N ;
-fun cocozelle_N : N ;
-fun faille_N : N ;
-fun braille_N : N ;
-fun grisaille_N : N ;
-fun dishabille_N : N ;
-fun marseille_N : N ;
-fun reveille_N : N ;
-fun chenille_N : N ;
-fun escadrille_N : N ;
-fun espadrille_N : N ;
-fun quadrille_N : N ;
-fun grille_N : N ;
-fun bastille_N : N ;
-fun pastille_N : N ;
-fun ratatouille_N : N ;
-fun coquille_N : N ;
-fun tuille_N : N ;
-fun vaudeville_N : N ;
-fun splitsville_N : N ;
-fun barcarolle_N : N ;
-fun boulle_N : N ;
-fun tulle_N : N ;
-fun Pole_N : N ;
-fun bole_N : N ;
-fun amphibole_N : N ;
-fun hyperbole_N : N ;
-fun pratincole_N : N ;
-fun dole_N : N ;
-fun farandole_N : N ;
-fun girandole_N : N ;
-fun urceole_N : N ;
-fun creole_N : N ;
-fun aureole_N : N ;
-fun bracteole_N : N ;
-fun hole_N : N ;
-fun 'bore-hole_N' : N ;
-fun 'bung-hole_N' : N ;
-fun 'coal-hole_N' : N ;
-fun 'arm-hole_N' : N ;
-fun 'water-hole_N' : N ;
-fun 'rabbit-hole_N' : N ;
-fun 'bolt-hole_N' : N ;
-fun 'vent-hole_N' : N ;
-fun 'spy-hole_N' : N ;
-fun 'glory-hole_N' : N ;
-fun thumbhole_N : N ;
-fun dhole_N : N ;
-fun stokehole_N : N ;
-fun arsehole_N : N ;
-fun bunghole_N : N ;
-fun plughole_N : N ;
-fun sinkhole_N : N ;
-fun armhole_N : N ;
-fun wormhole_N : N ;
-fun manhole_N : N ;
-fun pinhole_N : N ;
-fun pigeonhole_N : N ;
-fun buttonhole_N : N ;
-fun peephole_N : N ;
-fun loophole_N : N ;
-fun asshole_N : N ;
-fun thole_N : N ;
-fun rathole_N : N ;
-fun knothole_N : N ;
-fun pothole_N : N ;
-fun porthole_N : N ;
-fun pesthole_N : N ;
-fun posthole_N : N ;
-fun whole_N : N ;
-fun blowhole_N : N ;
-fun foxhole_N : N ;
-fun cubbyhole_N : N ;
-fun keyhole_N : N ;
-fun bronchiole_N : N ;
-fun arteriole_N : N ;
-fun oriole_N : N ;
-fun capriole_N : N ;
-fun centriole_N : N ;
-fun petiole_N : N ;
-fun ostiole_N : N ;
-fun frijole_N : N ;
-fun mole_N : N ;
-fun guacamole_N : N ;
-fun pinole_N : N ;
-fun 'telegraph-pole_N' : N ;
-fun 'totem-pole_N' : N ;
-fun 'hop-pole_N' : N ;
-fun tadpole_N : N ;
-fun ridgepole_N : N ;
-fun bargepole_N : N ;
-fun flagpole_N : N ;
-fun dipole_N : N ;
-fun bibliopole_N : N ;
-fun maypole_N : N ;
-fun role_N : N ;
-fun 'title-role_N' : N ;
-fun barcarole_N : N ;
-fun rigmarole_N : N ;
-fun parole_N : N ;
-fun casserole_N : N ;
-fun profiterole_N : N ;
-fun prole_N : N ;
-fun sole_N : N ;
-fun camisole_N : N ;
-fun insole_N : N ;
-fun console_N : N ;
-fun rissole_N : N ;
-fun outsole_N : N ;
-fun tole_N : N ;
-fun atole_N : N ;
-fun stole_N : N ;
-fun diastole_N : N ;
-fun systole_N : N ;
-fun asystole_N : N ;
-fun extrasystole_N : N ;
-fun vacuole_N : N ;
-fun vole_N : N ;
-fun 'water-vole_N' : N ;
-fun imidazole_N : N ;
-fun metronidazole_N : N ;
-fun thiabendazole_N : N ;
-fun mebendazole_N : N ;
-fun itraconazole_N : N ;
-fun miconazole_N : N ;
-fun omeprazole_N : N ;
-fun lansoprazole_N : N ;
-fun sulfamethoxazole_N : N ;
-fun sulfisoxazole_N : N ;
-fun maple_N : N ;
-fun staple_N : N ;
-fun steeple_N : N ;
-fun participle_N : N ;
-fun principle_N : N ;
-fun disciple_N : N ;
-fun triple_N : N ;
-fun multiple_N : N ;
-fun trample_N : N ;
-fun sample_N : N ;
-fun example_N : N ;
-fun 'counter-example_N' : N ;
-fun counterexample_N : N ;
-fun temple_N : N ;
-fun dimple_N : N ;
-fun pimple_N : N ;
-fun simple_N : N ;
-fun wimple_N : N ;
-fun people_2_N : N ;
-fun tradespeople_N : N ;
-fun apple_N : N ;
-fun 'crab-apple_N' : N ;
-fun 'eating-apple_N' : N ;
-fun 'oak-apple_N' : N ;
-fun pineapple_N : N ;
-fun scrapple_N : N ;
-fun mayapple_N : N ;
-fun fipple_N : N ;
-fun nipple_N : N ;
-fun ripple_N : N ;
-fun cripple_N : N ;
-fun tipple_N : N ;
-fun purple_N : N ;
-fun couple_N : N ;
-fun thermocouple_N : N ;
-fun scruple_N : N ;
-fun quadruple_N : N ;
-fun fo'c'sle_N : N ;
-fun isle_N : N ;
-fun aisle_N : N ;
-fun lisle_N : N ;
-fun hassle_N : N ;
-fun tussle_N : N ;
-fun beetle_N : N ;
-fun 'black-beetle_N' : N ;
-fun 'may-beetle_N' : N ;
-fun dorbeetle_N : N ;
-fun title_N : N ;
-fun subtitle_N : N ;
-fun supertitle_N : N ;
-fun cantle_N : N ;
-fun mantle_N : N ;
-fun pintle_N : N ;
-fun tootle_N : N ;
-fun chipotle_N : N ;
-fun startle_N : N ;
-fun kirtle_N : N ;
-fun chortle_N : N ;
-fun turtle_N : N ;
-fun myrtle_N : N ;
-fun castle_N : N ;
-fun forecastle_N : N ;
-fun pestle_N : N ;
-fun trestle_N : N ;
-fun wrestle_N : N ;
-fun thistle_N : N ;
-fun whistle_N : N ;
-fun pennywhistle_N : N ;
-fun epistle_N : N ;
-fun bristle_N : N ;
-fun gristle_N : N ;
-fun jostle_N : N ;
-fun apostle_N : N ;
-fun throstle_N : N ;
-fun bustle_N : N ;
-fun rustle_N : N ;
-fun battle_N : N ;
-fun cattle_N : N ;
-fun rattle_N : N ;
-fun prattle_N : N ;
-fun tattle_N : N ;
-fun 'tittle-tattle_N' : N ;
-fun wattle_N : N ;
-fun fettle_N : N ;
-fun kettle_N : N ;
-fun 'tea-kettle_N' : N ;
-fun teakettle_N : N ;
-fun mettle_N : N ;
-fun nettle_N : N ;
-fun settle_N : N ;
-fun skittle_N : N ;
-fun little_N : N ;
-fun spittle_N : N ;
-fun brittle_N : N ;
-fun bottle_N : N ;
-fun 'feeding-bottle_N' : N ;
-fun 'smelling-bottle_N' : N ;
-fun 'ink-bottle_N' : N ;
-fun 'water-bottle_N' : N ;
-fun 'hot-water-bottle_N' : N ;
-fun bluebottle_N : N ;
-fun greenbottle_N : N ;
-fun dottle_N : N ;
-fun mottle_N : N ;
-fun pottle_N : N ;
-fun crottle_N : N ;
-fun throttle_N : N ;
-fun scuttle_N : N ;
-fun 'coal-scuttle_N' : N ;
-fun shuttle_N : N ;
-fun nebule_N : N ;
-fun vestibule_N : N ;
-fun lobule_N : N ;
-fun globule_N : N ;
-fun tubule_N : N ;
-fun microtubule_N : N ;
-fun macule_N : N ;
-fun saccule_N : N ;
-fun floccule_N : N ;
-fun molecule_N : N ;
-fun macromolecule_N : N ;
-fun ridicule_N : N ;
-fun spicule_N : N ;
-fun reticule_N : N ;
-fun animalcule_N : N ;
-fun locule_N : N ;
-fun bascule_N : N ;
-fun minuscule_N : N ;
-fun schedule_N : N ;
-fun module_N : N ;
-fun nodule_N : N ;
-fun ligule_N : N ;
-fun virgule_N : N ;
-fun petiolule_N : N ;
-fun mule_N : N ;
-fun squamule_N : N ;
-fun gemmule_N : N ;
-fun plumule_N : N ;
-fun cymule_N : N ;
-fun granule_N : N ;
-fun venule_N : N ;
-fun gallinule_N : N ;
-fun zonule_N : N ;
-fun cagoule_N : N ;
-fun joule_N : N ;
-fun ampoule_N : N ;
-fun papule_N : N ;
-fun stipule_N : N ;
-fun cupule_N : N ;
-fun rule_N : N ;
-fun 'slide-rule_N' : N ;
-fun 'self-rule_N' : N ;
-fun metarule_N : N ;
-fun chondrule_N : N ;
-fun ferule_N : N ;
-fun spherule_N : N ;
-fun glomerule_N : N ;
-fun ferrule_N : N ;
-fun misrule_N : N ;
-fun capsule_N : N ;
-fun 'space-capsule_N' : N ;
-fun ductule_N : N ;
-fun pustule_N : N ;
-fun valvule_N : N ;
-fun ovule_N : N ;
-fun yule_N : N ;
-fun guayule_N : N ;
-fun axle_N : N ;
-fun condyle_N : N ;
-fun epicondyle_N : N ;
-fun argyle_N : N ;
-fun chyle_N : N ;
-fun phyle_N : N ;
-fun gargoyle_N : N ;
-fun micropyle_N : N ;
-fun style_N : N ;
-fun freestyle_N : N ;
-fun peristyle_N : N ;
-fun cyclostyle_N : N ;
-fun hairstyle_N : N ;
-fun teazle_N : N ;
-fun dazzle_N : N ;
-fun frazzle_N : N ;
-fun drizzle_N : N ;
-fun grizzle_N : N ;
-fun sizzle_N : N ;
-fun swizzle_N : N ;
-fun schemozzle_N : N ;
-fun nozzle_N : N ;
-fun muzzle_N : N ;
-fun puzzle_N : N ;
-fun 'monkey-puzzle_N' : N ;
-fun rôle_N : N ;
-fun dame_N : N ;
-fun madame_N : N ;
-fun beldame_N : N ;
-fun fame_N : N ;
-fun game_N : N ;
-fun dagame_N : N ;
-fun endgame_N : N ;
-fun ballgame_N : N ;
-fun hame_N : N ;
-fun shame_N : N ;
-fun blame_N : N ;
-fun flame_N : N ;
-fun name_N : N ;
-fun 'place-name_N' : N ;
-fun 'pen-name_N' : N ;
-fun filename_N : N ;
-fun forename_N : N ;
-fun nickname_N : N ;
-fun surname_N : N ;
-fun arame_N : N ;
-fun macrame_N : N ;
-fun frame_N : N ;
-fun mainframe_N : N ;
-fun airframe_N : N ;
-fun doorframe_N : N ;
-fun sesame_N : N ;
-fun aspartame_N : N ;
-fun raceme_N : N ;
-fun apodeme_N : N ;
-fun heme_N : N ;
-fun scheme_N : N ;
-fun morpheme_N : N ;
-fun theme_N : N ;
-fun meme_N : N ;
-fun phoneme_N : N ;
-fun morphophoneme_N : N ;
-fun trireme_N : N ;
-fun monotreme_N : N ;
-fun extreme_N : N ;
-fun episteme_N : N ;
-fun lexeme_N : N ;
-fun dime_N : N ;
-fun ceftazidime_N : N ;
-fun regime_N : N ;
-fun régime_N : N ;
-fun chime_N : N ;
-fun lime_N : N ;
-fun clime_N : N ;
-fun birdlime_N : N ;
-fun quicklime_N : N ;
-fun brooklime_N : N ;
-fun millime_N : N ;
-fun slime_N : N ;
-fun mime_N : N ;
-fun pantomime_N : N ;
-fun anime_N : N ;
-fun rime_N : N ;
-fun crime_N : N ;
-fun cybercrime_N : N ;
-fun grime_N : N ;
-fun prime_N : N ;
-fun time_N : N ;
-fun 'tea-time_N' : N ;
-fun 'space-time_N' : N ;
-fun 'half-time_N' : N ;
-fun 'night-time_N' : N ;
-fun bedtime_N : N ;
-fun seedtime_N : N ;
-fun peacetime_N : N ;
-fun lifetime_N : N ;
-fun paroxetime_N : N ;
-fun halftime_N : N ;
-fun ragtime_N : N ;
-fun springtime_N : N ;
-fun lunchtime_N : N ;
-fun mealtime_N : N ;
-fun schooltime_N : N ;
-fun meantime_N : N ;
-fun centime_N : N ;
-fun downtime_N : N ;
-fun xenotime_N : N ;
-fun uptime_N : N ;
-fun wartime_N : N ;
-fun summertime_N : N ;
-fun dinnertime_N : N ;
-fun overtime_N : N ;
-fun christmastime_N : N ;
-fun pastime_N : N ;
-fun daytime_N : N ;
-fun playtime_N : N ;
-fun cefotaxime_N : N ;
-fun oxime_N : N ;
-fun cefuroxime_N : N ;
-fun dimethylglyoxime_N : N ;
-fun oriflamme_N : N ;
-fun gramme_N : N ;
-fun kilogramme_N : N ;
-fun programme_N : N ;
-fun welcome_N : N ;
-fun income_N : N ;
-fun abrocome_N : N ;
-fun outcome_N : N ;
-fun dome_N : N ;
-fun radome_N : N ;
-fun astrodome_N : N ;
-fun proteome_N : N ;
-fun home_N : N ;
-fun 'nursing-home_N' : N ;
-fun 'at-home_N' : N ;
-fun 'stay-at-home_N' : N ;
-fun 'rest-home_N' : N ;
-fun biome_N : N ;
-fun genome_N : N ;
-fun gnome_N : N ;
-fun metronome_N : N ;
-fun pome_N : N ;
-fun brome_N : N ;
-fun palindrome_N : N ;
-fun syndrome_N : N ;
-fun velodrome_N : N ;
-fun hippodrome_N : N ;
-fun aerodrome_N : N ;
-fun prodrome_N : N ;
-fun airdrome_N : N ;
-fun chrome_N : N ;
-fun monochrome_N : N ;
-fun fluorochrome_N : N ;
-fun hematochrome_N : N ;
-fun cytochrome_N : N ;
-fun polychrome_N : N ;
-fun threesome_N : N ;
-fun episome_N : N ;
-fun ribosome_N : N ;
-fun sarcosome_N : N ;
-fun chromosome_N : N ;
-fun liposome_N : N ;
-fun acrosome_N : N ;
-fun microsome_N : N ;
-fun centrosome_N : N ;
-fun lysosome_N : N ;
-fun schistosome_N : N ;
-fun autosome_N : N ;
-fun foursome_N : N ;
-fun eightsome_N : N ;
-fun tome_N : N ;
-fun dermatome_N : N ;
-fun epitome_N : N ;
-fun microtome_N : N ;
-fun peristome_N : N ;
-fun gnathostome_N : N ;
-fun cyclostome_N : N ;
-fun cytostome_N : N ;
-fun rhizome_N : N ;
-fun gendarme_N : N ;
-fun heaume_N : N ;
-fun fume_N : N ;
-fun perfume_N : N ;
-fun legume_N : N ;
-fun flume_N : N ;
-fun glume_N : N ;
-fun volume_N : N ;
-fun plume_N : N ;
-fun spume_N : N ;
-fun grume_N : N ;
-fun costume_N : N ;
-fun 'bathing-costume_N' : N ;
-fun 'swimming-costume_N' : N ;
-fun cyme_N : N ;
-fun chyme_N : N ;
-fun mesenchyme_N : N ;
-fun rhyme_N : N ;
-fun thyme_N : N ;
-fun enzyme_N : N ;
-fun coenzyme_N : N ;
-fun apoenzyme_N : N ;
-fun proenzyme_N : N ;
-fun lysozyme_N : N ;
-fun bane_N : N ;
-fun 'wolf\'s-bane_N' : N ;
-fun fleabane_N : N ;
-fun dogbane_N : N ;
-fun bugbane_N : N ;
-fun henbane_N : N ;
-fun wolfsbane_N : N ;
-fun sowbane_N : N ;
-fun cane_N : N ;
-fun 'sword-cane_N' : N ;
-fun 'sugar-cane_N' : N ;
-fun chicane_N : N ;
-fun hurricane_N : N ;
-fun sugarcane_N : N ;
-fun dane_N : N ;
-fun lindane_N : N ;
-fun cellophane_N : N ;
-fun thane_N : N ;
-fun ethane_N : N ;
-fun methane_N : N ;
-fun aminomethane_N : N ;
-fun nitrochloromethane_N : N ;
-fun dichlorodiphenyltrichloroethane_N : N ;
-fun urethane_N : N ;
-fun polyurethane_N : N ;
-fun halothane_N : N ;
-fun lane_N : N ;
-fun lepidomelane_N : N ;
-fun psilomelane_N : N ;
-fun plane_N : N ;
-fun 'smoothing-plane_N' : N ;
-fun 'ski-plane_N' : N ;
-fun 'jack-plane_N' : N ;
-fun seaplane_N : N ;
-fun aquaplane_N : N ;
-fun midplane_N : N ;
-fun biplane_N : N ;
-fun tailplane_N : N ;
-fun monoplane_N : N ;
-fun hydroplane_N : N ;
-fun aeroplane_N : N ;
-fun warplane_N : N ;
-fun airplane_N : N ;
-fun floatplane_N : N ;
-fun purslane_N : N ;
-fun mane_N : N ;
-fun balletomane_N : N ;
-fun shaggymane_N : N ;
-fun pane_N : N ;
-fun frangipane_N : N ;
-fun elecampane_N : N ;
-fun propane_N : N ;
-fun cyclopropane_N : N ;
-fun counterpane_N : N ;
-fun windowpane_N : N ;
-fun membrane_N : N ;
-fun crane_N : N ;
-fun enflurane_N : N ;
-fun isoflurane_N : N ;
-fun tisane_N : N ;
-fun octane_N : N ;
-fun tramontane_N : N ;
-fun ultramontane_N : N ;
-fun heptane_N : N ;
-fun butane_N : N ;
-fun soutane_N : N ;
-fun vane_N : N ;
-fun 'weather-vane_N' : N ;
-fun pavane_N : N ;
-fun weathervane_N : N ;
-fun wane_N : N ;
-fun hexane_N : N ;
-fun siloxane_N : N ;
-fun acne_N : N ;
-fun scene_N : N ;
-fun damascene_N : N ;
-fun indene_N : N ;
-fun gene_N : N ;
-fun oncogene_N : N ;
-fun transgene_N : N ;
-fun phosgene_N : N ;
-fun polygene_N : N ;
-fun achene_N : N ;
-fun clomiphene_N : N ;
-fun hexachlorophene_N : N ;
-fun propoxyphene_N : N ;
-fun sthene_N : N ;
-fun polythene_N : N ;
-fun butadiene_N : N ;
-fun hygiene_N : N ;
-fun alkene_N : N ;
-fun naphthalene_N : N ;
-fun periselene_N : N ;
-fun aposelene_N : N ;
-fun madrilene_N : N ;
-fun methapyrilene_N : N ;
-fun silene_N : N ;
-fun hellene_N : N ;
-fun philhellene_N : N ;
-fun gasolene_N : N ;
-fun ethylene_N : N ;
-fun trichloroethylene_N : N ;
-fun tetrafluoroethylene_N : N ;
-fun tetrachlorethylene_N : N ;
-fun polyethylene_N : N ;
-fun propylene_N : N ;
-fun polypropylene_N : N ;
-fun terylene_N : N ;
-fun acetylene_N : N ;
-fun oxyacetylene_N : N ;
-fun butylene_N : N ;
-fun isobutylene_N : N ;
-fun polybutylene_N : N ;
-fun xylene_N : N ;
-fun spodumene_N : N ;
-fun cymene_N : N ;
-fun retinene_N : N ;
-fun limonene_N : N ;
-fun lycopene_N : N ;
-fun terpene_N : N ;
-fun fullerene_N : N ;
-fun buckminsterfullerene_N : N ;
-fun gangrene_N : N ;
-fun neoprene_N : N ;
-fun chloroprene_N : N ;
-fun pyrene_N : N ;
-fun styrene_N : N ;
-fun polystyrene_N : N ;
-fun sene_N : N ;
-fun kerosene_N : N ;
-fun ctene_N : N ;
-fun zygotene_N : N ;
-fun diplotene_N : N ;
-fun carotene_N : N ;
-fun leptotene_N : N ;
-fun pachytene_N : N ;
-fun toluene_N : N ;
-fun trinitrotoluene_N : N ;
-fun thiothixene_N : N ;
-fun pyroxene_N : N ;
-fun benzene_N : N ;
-fun alkylbenzene_N : N ;
-fun chlorobenzene_N : N ;
-fun nitrobenzene_N : N ;
-fun Champagne_N : N ;
-fun ligne_N : N ;
-fun cologne_N : N ;
-fun 'eau de cologne_N' : N ;
-fun epergne_N : N ;
-fun daphne_N : N ;
-fun tetracaine_N : N ;
-fun butacaine_N : N ;
-fun cocaine_N : N ;
-fun piperocaine_N : N ;
-fun procaine_N : N ;
-fun benzocaine_N : N ;
-fun dibucaine_N : N ;
-fun demimondaine_N : N ;
-fun chatelaine_N : N ;
-fun ptomaine_N : N ;
-fun migraine_N : N ;
-fun moraine_N : N ;
-fun betaine_N : N ;
-fun bine_N : N ;
-fun woodbine_N : N ;
-fun combine_N : N ;
-fun columbine_N : N ;
-fun carbine_N : N ;
-fun turbine_N : N ;
-fun concubine_N : N ;
-fun thylacine_N : N ;
-fun vaccine_N : N ;
-fun fettuccine_N : N ;
-fun australopithecine_N : N ;
-fun dryopithecine_N : N ;
-fun medicine_N : N ;
-fun biomedicine_N : N ;
-fun aeromedicine_N : N ;
-fun colchicine_N : N ;
-fun plasticine_N : N ;
-fun pentazocine_N : N ;
-fun putrescine_N : N ;
-fun oscine_N : N ;
-fun leucine_N : N ;
-fun isoleucine_N : N ;
-fun brucine_N : N ;
-fun glycine_N : N ;
-fun muscadine_N : N ;
-fun grenadine_N : N ;
-fun cyproheptadine_N : N ;
-fun tyrocidine_N : N ;
-fun phencyclidine_N : N ;
-fun procyclidine_N : N ;
-fun pyrimidine_N : N ;
-fun deoxythymidine_N : N ;
-fun quinidine_N : N ;
-fun clonidine_N : N ;
-fun meperidine_N : N ;
-fun cephaloridine_N : N ;
-fun floxuridine_N : N ;
-fun pyridine_N : N ;
-fun sulfapyridine_N : N ;
-fun triphosphopyridine_N : N ;
-fun phenazopyridine_N : N ;
-fun cimetidine_N : N ;
-fun ranitidine_N : N ;
-fun famotidine_N : N ;
-fun histidine_N : N ;
-fun deoxycytidine_N : N ;
-fun chlorhexidine_N : N ;
-fun brigandine_N : N ;
-fun celandine_N : N ;
-fun almandine_N : N ;
-fun undine_N : N ;
-fun iodine_N : N ;
-fun gabardine_N : N ;
-fun sardine_N : N ;
-fun gaberdine_N : N ;
-fun delavirdine_N : N ;
-fun sourdine_N : N ;
-fun lamivudine_N : N ;
-fun zidovudine_N : N ;
-fun codeine_N : N ;
-fun caffeine_N : N ;
-fun vicereine_N : N ;
-fun seine_N : N ;
-fun cysteine_N : N ;
-fun fine_N : N ;
-fun terbinafine_N : N ;
-fun affine_N : N ;
-fun confine_N : N ;
-fun asparagine_N : N ;
-fun aborigine_N : N ;
-fun engine_N : N ;
-fun 'fire-engine_N' : N ;
-fun 'steam-engine_N' : N ;
-fun 'traction-engine_N' : N ;
-fun 'gas-engine_N' : N ;
-fun 'pilot-engine_N' : N ;
-fun aubergine_N : N ;
-fun chine_N : N ;
-fun machine_N : N ;
-fun 'adding-machine_N' : N ;
-fun 'weighing-machine_N' : N ;
-fun 'washing-machine_N' : N ;
-fun 'threshing-machine_N' : N ;
-fun 'bathing-machine_N' : N ;
-fun 'milking-machine_N' : N ;
-fun 'franking-machine_N' : N ;
-fun 'stapling-machine_N' : N ;
-fun 'knitting-machine_N' : N ;
-fun 'sewing-machine_N' : N ;
-fun 'slot-machine_N' : N ;
-fun archine_N : N ;
-fun trephine_N : N ;
-fun nalorphine_N : N ;
-fun morphine_N : N ;
-fun apomorphine_N : N ;
-fun phosphine_N : N ;
-fun shine_N : N ;
-fun shoeshine_N : N ;
-fun moonshine_N : N ;
-fun sunshine_N : N ;
-fun ornithine_N : N ;
-fun xanthine_N : N ;
-fun whine_N : N ;
-fun lymphokine_N : N ;
-fun cytokine_N : N ;
-fun line_N : N ;
-fun 'leger line_N' : N ;
-fun 'load-line_N' : N ;
-fun 'fishing-line_N' : N ;
-fun 'firing-line_N' : N ;
-fun 'towing-line_N' : N ;
-fun 'telegraph-line_N' : N ;
-fun 'sash-line_N' : N ;
-fun 'trunk-line_N' : N ;
-fun 'goal-line_N' : N ;
-fun 'loop-line_N' : N ;
-fun 'water-line_N' : N ;
-fun 'night-line_N' : N ;
-fun 'snow-line_N' : N ;
-fun mescaline_N : N ;
-fun tourmaline_N : N ;
-fun noradrenaline_N : N ;
-fun praline_N : N ;
-fun sertraline_N : N ;
-fun saline_N : N ;
-fun valine_N : N ;
-fun hyaline_N : N ;
-fun decline_N : N ;
-fun incline_N : N ;
-fun monocline_N : N ;
-fun tetracycline_N : N ;
-fun chlortetracycline_N : N ;
-fun oxytetracycline_N : N ;
-fun minocycline_N : N ;
-fun doxycycline_N : N ;
-fun deadline_N : N ;
-fun headline_N : N ;
-fun breadline_N : N ;
-fun handline_N : N ;
-fun sideline_N : N ;
-fun guideline_N : N ;
-fun beeline_N : N ;
-fun feline_N : N ;
-fun lifeline_N : N ;
-fun nepheline_N : N ;
-fun anopheline_N : N ;
-fun timeline_N : N ;
-fun pipeline_N : N ;
-fun shoreline_N : N ;
-fun baseline_N : N ;
-fun vaseline_N : N ;
-fun dateline_N : N ;
-fun touchline_N : N ;
-fun aniline_N : N ;
-fun neckline_N : N ;
-fun balkline_N : N ;
-fun fedelline_N : N ;
-fun milline_N : N ;
-fun citrulline_N : N ;
-fun pentoxifylline_N : N ;
-fun theophylline_N : N ;
-fun aminophylline_N : N ;
-fun tramline_N : N ;
-fun hemline_N : N ;
-fun choline_N : N ;
-fun methacholine_N : N ;
-fun succinylcholine_N : N ;
-fun acetylcholine_N : N ;
-fun crinoline_N : N ;
-fun trampoline_N : N ;
-fun proline_N : N ;
-fun hydroxyproline_N : N ;
-fun gasoline_N : N ;
-fun naphazoline_N : N ;
-fun tolazoline_N : N ;
-fun discipline_N : N ;
-fun indiscipline_N : N ;
-fun hipline_N : N ;
-fun compline_N : N ;
-fun dropline_N : N ;
-fun spline_N : N ;
-fun marline_N : N ;
-fun underline_N : N ;
-fun borderline_N : N ;
-fun waterline_N : N ;
-fun centerline_N : N ;
-fun airline_N : N ;
-fun hairline_N : N ;
-fun clothesline_N : N ;
-fun ratline_N : N ;
-fun coastline_N : N ;
-fun waistline_N : N ;
-fun outline_N : N ;
-fun masculine_N : N ;
-fun bowline_N : N ;
-fun towline_N : N ;
-fun skyline_N : N ;
-fun storyline_N : N ;
-fun amitriptyline_N : N ;
-fun protriptyline_N : N ;
-fun nortriptyline_N : N ;
-fun mine_N : N ;
-fun amine_N : N ;
-fun famine_N : N ;
-fun gamine_N : N ;
-fun diamine_N : N ;
-fun melamine_N : N ;
-fun pyrilamine_N : N ;
-fun gallamine_N : N ;
-fun penicillamine_N : N ;
-fun catecholamine_N : N ;
-fun phenylpropanolamine_N : N ;
-fun scopolamine_N : N ;
-fun prolamine_N : N ;
-fun phentolamine_N : N ;
-fun enamine_N : N ;
-fun methenamine_N : N ;
-fun monoamine_N : N ;
-fun dopamine_N : N ;
-fun diphenhydramine_N : N ;
-fun pheniramine_N : N ;
-fun chloramine_N : N ;
-fun imipramine_N : N ;
-fun trimipramine_N : N ;
-fun clomipramine_N : N ;
-fun desipramine_N : N ;
-fun tyramine_N : N ;
-fun glucosamine_N : N ;
-fun etamine_N : N ;
-fun amphetamine_N : N ;
-fun methamphetamine_N : N ;
-fun methylenedioxymethamphetamine_N : N ;
-fun ketamine_N : N ;
-fun ergotamine_N : N ;
-fun protamine_N : N ;
-fun histamine_N : N ;
-fun antihistamine_N : N ;
-fun glutamine_N : N ;
-fun phenyltoloxamine_N : N ;
-fun hyoscyamine_N : N ;
-fun goldmine_N : N ;
-fun landmine_N : N ;
-fun neostigmine_N : N ;
-fun physostigmine_N : N ;
-fun calcimine_N : N ;
-fun oxyphencyclimine_N : N ;
-fun coalmine_N : N ;
-fun ammine_N : N ;
-fun bromine_N : N ;
-fun merbromine_N : N ;
-fun tranylcypromine_N : N ;
-fun carmine_N : N ;
-fun bellarmine_N : N ;
-fun ermine_N : N ;
-fun countermine_N : N ;
-fun jasmine_N : N ;
-fun thymine_N : N ;
-fun canine_N : N ;
-fun alanine_N : N ;
-fun phenylalanine_N : N ;
-fun safranine_N : N ;
-fun guanine_N : N ;
-fun thioguanine_N : N ;
-fun canavanine_N : N ;
-fun mezzanine_N : N ;
-fun adenine_N : N ;
-fun strychnine_N : N ;
-fun arginine_N : N ;
-fun feminine_N : N ;
-fun quinine_N : N ;
-fun threonine_N : N ;
-fun buteonine_N : N ;
-fun cinchonine_N : N ;
-fun methionine_N : N ;
-fun thyronine_N : N ;
-fun iodothyronine_N : N ;
-fun triiodothyronine_N : N ;
-fun macedoine_N : N ;
-fun heroine_N : N ;
-fun pine_N : N ;
-fun rapine_N : N ;
-fun nevirapine_N : N ;
-fun loxapine_N : N ;
-fun clozapine_N : N ;
-fun benzodiazepine_N : N ;
-fun nifedipine_N : N ;
-fun transalpine_N : N ;
-fun chopine_N : N ;
-fun scallopine_N : N ;
-fun atropine_N : N ;
-fun Philippine_N : N ;
-fun pilocarpine_N : N ;
-fun reserpine_N : N ;
-fun orpine_N : N ;
-fun spine_N : N ;
-fun porcupine_N : N ;
-fun lupine_N : N ;
-fun acarine_N : N ;
-fun gregarine_N : N ;
-fun margarine_N : N ;
-fun marine_N : N ;
-fun ultramarine_N : N ;
-fun aquamarine_N : N ;
-fun submarine_N : N ;
-fun tubocurarine_N : N ;
-fun nectarine_N : N ;
-fun brine_N : N ;
-fun atabrine_N : N ;
-fun quinacrine_N : N ;
-fun orphenadrine_N : N ;
-fun ephedrine_N : N ;
-fun pseudoephedrine_N : N ;
-fun benzedrine_N : N ;
-fun alexandrine_N : N ;
-fun glycerine_N : N ;
-fun nitroglycerine_N : N ;
-fun tangerine_N : N ;
-fun serine_N : N ;
-fun cycloserine_N : N ;
-fun passerine_N : N ;
-fun cadaverine_N : N ;
-fun papaverine_N : N ;
-fun wolverine_N : N ;
-fun peregrine_N : N ;
-fun phenylephrine_N : N ;
-fun epinephrine_N : N ;
-fun shrine_N : N ;
-fun sapphirine_N : N ;
-fun helleborine_N : N ;
-fun chlorine_N : N ;
-fun radiochlorine_N : N ;
-fun fluorine_N : N ;
-fun cyclobenzaprine_N : N ;
-fun azathioprine_N : N ;
-fun terrine_N : N ;
-fun viverrine_N : N ;
-fun latrine_N : N ;
-fun doctrine_N : N ;
-fun citrine_N : N ;
-fun urine_N : N ;
-fun taurine_N : N ;
-fun figurine_N : N ;
-fun murine_N : N ;
-fun tambourine_N : N ;
-fun purine_N : N ;
-fun mercaptopurine_N : N ;
-fun aminopyrine_N : N ;
-fun sine_N : N ;
-fun cuisine_N : N ;
-fun cosine_N : N ;
-fun sarcosine_N : N ;
-fun deoxyguanosine_N : N ;
-fun adenosine_N : N ;
-fun deoxyadenosine_N : N ;
-fun inosine_N : N ;
-fun dideoxyinosine_N : N ;
-fun tyrosine_N : N ;
-fun iodotyrosine_N : N ;
-fun cytosine_N : N ;
-fun dideoxycytosine_N : N ;
-fun arsine_N : N ;
-fun bassine_N : N ;
-fun limousine_N : N ;
-fun lysine_N : N ;
-fun tine_N : N ;
-fun creatine_N : N ;
-fun phosphocreatine_N : N ;
-fun dessiatine_N : N ;
-fun palatine_N : N ;
-fun gelatine_N : N ;
-fun astatine_N : N ;
-fun benedictine_N : N ;
-fun mexiletine_N : N ;
-fun reboxetine_N : N ;
-fun fluoxetine_N : N ;
-fun saltine_N : N ;
-fun brigantine_N : N ;
-fun brilliantine_N : N ;
-fun galantine_N : N ;
-fun eglantine_N : N ;
-fun quarantine_N : N ;
-fun levantine_N : N ;
-fun dentine_N : N ;
-fun argentine_N : N ;
-fun valentine_N : N ;
-fun clementine_N : N ;
-fun turpentine_N : N ;
-fun tontine_N : N ;
-fun nicotine_N : N ;
-fun guillotine_N : N ;
-fun serotine_N : N ;
-fun libertine_N : N ;
-fun vinblastine_N : N ;
-fun intestine_N : N ;
-fun philistine_N : N ;
-fun vincristine_N : N ;
-fun lomustine_N : N ;
-fun cystine_N : N ;
-fun routine_N : N ;
-fun beguine_N : N ;
-fun sanguine_N : N ;
-fun linguine_N : N ;
-fun primaquine_N : N ;
-fun equine_N : N ;
-fun mefloquine_N : N ;
-fun chloroquine_N : N ;
-fun hydroxychloroquine_N : N ;
-fun vine_N : N ;
-fun ravine_N : N ;
-fun grapevine_N : N ;
-fun divine_N : N ;
-fun olivine_N : N ;
-fun bovine_N : N ;
-fun ergonovine_N : N ;
-fun silvervine_N : N ;
-fun wine_N : N ;
-fun 'canary-wine_N' : N ;
-fun twine_N : N ;
-fun thyroxine_N : N ;
-fun bombazine_N : N ;
-fun procarbazine_N : N ;
-fun thioridazine_N : N ;
-fun magazine_N : N ;
-fun 'powder-magazine_N' : N ;
-fun sulfamethazine_N : N ;
-fun promethazine_N : N ;
-fun sulfadiazine_N : N ;
-fun thiazine_N : N ;
-fun phenothiazine_N : N ;
-fun triazine_N : N ;
-fun hydralazine_N : N ;
-fun simazine_N : N ;
-fun chlorpromazine_N : N ;
-fun perphenazine_N : N ;
-fun fluphenazine_N : N ;
-fun hydrazine_N : N ;
-fun piperazine_N : N ;
-fun prochlorperazine_N : N ;
-fun atrazine_N : N ;
-fun meclizine_N : N ;
-fun phenelzine_N : N ;
-fun benzine_N : N ;
-fun tragedienne_N : N ;
-fun comedienne_N : N ;
-fun julienne_N : N ;
-fun penne_N : N ;
-fun cayenne_N : N ;
-fun doyenne_N : N ;
-fun tonne_N : N ;
-fun cretonne_N : N ;
-fun bone_N : N ;
-fun 'aitch-bone_N' : N ;
-fun 'funny-bone_N' : N ;
-fun redbone_N : N ;
-fun whalebone_N : N ;
-fun anklebone_N : N ;
-fun herringbone_N : N ;
-fun aitchbone_N : N ;
-fun thighbone_N : N ;
-fun fishbone_N : N ;
-fun wishbone_N : N ;
-fun backbone_N : N ;
-fun cheekbone_N : N ;
-fun heelbone_N : N ;
-fun trombone_N : N ;
-fun shinbone_N : N ;
-fun hipbone_N : N ;
-fun collarbone_N : N ;
-fun jawbone_N : N ;
-fun marrowbone_N : N ;
-fun cone_N : N ;
-fun 'storm-cone_N' : N ;
-fun 'fir-cone_N' : N ;
-fun pinecone_N : N ;
-fun nosecone_N : N ;
-fun silicone_N : N ;
-fun phragmocone_N : N ;
-fun scone_N : N ;
-fun methadone_N : N ;
-fun chlorthalidone_N : N ;
-fun primidone_N : N ;
-fun molindone_N : N ;
-fun nefazodone_N : N ;
-fun trazodone_N : N ;
-fun leone_N : N ;
-fun epigone_N : N ;
-fun bygone_N : N ;
-fun hone_N : N ;
-fun phone_N : N ;
-fun megaphone_N : N ;
-fun diaphone_N : N ;
-fun vibraphone_N : N ;
-fun dictaphone_N : N ;
-fun telephone_N : N ;
-fun radiotelephone_N : N ;
-fun heckelphone_N : N ;
-fun chordophone_N : N ;
-fun allophone_N : N ;
-fun xylophone_N : N ;
-fun gramophone_N : N ;
-fun 'radio-gramophone_N' : N ;
-fun homophone_N : N ;
-fun microphone_N : N ;
-fun saxophone_N : N ;
-fun earphone_N : N ;
-fun lagerphone_N : N ;
-fun speakerphone_N : N ;
-fun interphone_N : N ;
-fun payphone_N : N ;
-fun polyphone_N : N ;
-fun zabaglione_N : N ;
-fun abalone_N : N ;
-fun methaqualone_N : N ;
-fun clone_N : N ;
-fun cyclone_N : N ;
-fun anticyclone_N : N ;
-fun pallone_N : N ;
-fun triamcinolone_N : N ;
-fun nandrolone_N : N ;
-fun prednisolone_N : N ;
-fun anemone_N : N ;
-fun 'sea-anemone_N' : N ;
-fun pheromone_N : N ;
-fun hormone_N : N ;
-fun neurohormone_N : N ;
-fun phytohormone_N : N ;
-fun butanone_N : N ;
-fun chloroacetophenone_N : N ;
-fun rotenone_N : N ;
-fun amrinone_N : N ;
-fun quinone_N : N ;
-fun ubiquinone_N : N ;
-fun pone_N : N ;
-fun cornpone_N : N ;
-fun mascarpone_N : N ;
-fun amiodarone_N : N ;
-fun crone_N : N ;
-fun drone_N : N ;
-fun padrone_N : N ;
-fun norethindrone_N : N ;
-fun progesterone_N : N ;
-fun medroxyprogesterone_N : N ;
-fun corticosterone_N : N ;
-fun aldosterone_N : N ;
-fun adrenosterone_N : N ;
-fun androsterone_N : N ;
-fun testosterone_N : N ;
-fun methyltestosterone_N : N ;
-fun isochrone_N : N ;
-fun throne_N : N ;
-fun buspirone_N : N ;
-fun estrone_N : N ;
-fun minestrone_N : N ;
-fun aleurone_N : N ;
-fun sone_N : N ;
-fun dexamethasone_N : N ;
-fun prednisone_N : N ;
-fun cortisone_N : N ;
-fun hydrocortisone_N : N ;
-fun dapsone_N : N ;
-fun tone_N : N ;
-fun spironolactone_N : N ;
-fun acetone_N : N ;
-fun ketone_N : N ;
-fun nabumetone_N : N ;
-fun halftone_N : N ;
-fun barbitone_N : N ;
-fun phenobarbitone_N : N ;
-fun semitone_N : N ;
-fun baritone_N : N ;
-fun monotone_N : N ;
-fun peptone_N : N ;
-fun undertone_N : N ;
-fun overtone_N : N ;
-fun stone_N : N ;
-fun 'pumice-stone_N' : N ;
-fun 'coping-stone_N' : N ;
-fun 'stepping-stone_N' : N ;
-fun 'paving-stone_N' : N ;
-fun 'foundation-stone_N' : N ;
-fun tombstone_N : N ;
-fun kerbstone_N : N ;
-fun curbstone_N : N ;
-fun headstone_N : N ;
-fun loadstone_N : N ;
-fun fieldstone_N : N ;
-fun goldstone_N : N ;
-fun sandstone_N : N ;
-fun grindstone_N : N ;
-fun bloodstone_N : N ;
-fun lodestone_N : N ;
-fun freestone_N : N ;
-fun cobblestone_N : N ;
-fun milestone_N : N ;
-fun limestone_N : N ;
-fun rhinestone_N : N ;
-fun merestone_N : N ;
-fun firestone_N : N ;
-fun bluestone_N : N ;
-fun gravestone_N : N ;
-fun flagstone_N : N ;
-fun pitchstone_N : N ;
-fun touchstone_N : N ;
-fun hearthstone_N : N ;
-fun histone_N : N ;
-fun hailstone_N : N ;
-fun oilstone_N : N ;
-fun gallstone_N : N ;
-fun millstone_N : N ;
-fun brimstone_N : N ;
-fun rottenstone_N : N ;
-fun whinstone_N : N ;
-fun moonstone_N : N ;
-fun turnstone_N : N ;
-fun sunstone_N : N ;
-fun brownstone_N : N ;
-fun capstone_N : N ;
-fun soapstone_N : N ;
-fun dripstone_N : N ;
-fun cornerstone_N : N ;
-fun whetstone_N : N ;
-fun siltstone_N : N ;
-fun flintstone_N : N ;
-fun claystone_N : N ;
-fun keystone_N : N ;
-fun holystone_N : N ;
-fun cherrystone_N : N ;
-fun oxytone_N : N ;
-fun paroxytone_N : N ;
-fun proparoxytone_N : N ;
-fun flavone_N : N ;
-fun ceftriaxone_N : N ;
-fun naltrexone_N : N ;
-fun naloxone_N : N ;
-fun zone_N : N ;
-fun 'dropping-zone_N' : N ;
-fun cefoperazone_N : N ;
-fun phenylbutazone_N : N ;
-fun oxyphenbutazone_N : N ;
-fun ozone_N : N ;
-fun lucerne_N : N ;
-fun interne_N : N ;
-fun bourne_N : N ;
-fun nocturne_N : N ;
-fun demesne_N : N ;
-fun June_N : N ;
-fun tribune_N : N ;
-fun dune_N : N ;
-fun immune_N : N ;
-fun commune_N : N ;
-fun rune_N : N ;
-fun prune_N : N ;
-fun tune_N : N ;
-fun fortune_N : N ;
-fun misfortune_N : N ;
-fun dyne_N : N ;
-fun anodyne_N : N ;
-fun coelogyne_N : N ;
-fun groyne_N : N ;
-fun cryptocoryne_N : N ;
-fun langsyne_N : N ;
-fun 'mise en scène_N' : N ;
-fun oboe_N : N ;
-fun doe_N : N ;
-fun foe_N : N ;
-fun chigoe_N : N ;
-fun hoe_N : N ;
-fun mahoe_N : N ;
-fun pahoehoe_N : N ;
-fun backhoe_N : N ;
-fun shoe_N : N ;
-fun horseshoe_N : N ;
-fun gumshoe_N : N ;
-fun overshoe_N : N ;
-fun snowshoe_N : N ;
-fun leucothoe_N : N ;
-fun pekoe_N : N ;
-fun aloe_N : N ;
-fun floe_N : N ;
-fun icefloe_N : N ;
-fun felloe_N : N ;
-fun sloe_N : N ;
-fun canoe_N : N ;
-fun hoopoe_N : N ;
-fun beroe_N : N ;
-fun throe_N : N ;
-fun toe_N : N ;
-fun mistletoe_N : N ;
-fun toetoe_N : N ;
-fun ticktacktoe_N : N ;
-fun tiptoe_N : N ;
-fun hammertoe_N : N ;
-fun woe_N : N ;
-fun pe_N : N ;
-fun ape_N : N ;
-fun cape_N : N ;
-fun scape_N : N ;
-fun seascape_N : N ;
-fun landscape_N : N ;
-fun escape_N : N ;
-fun 'fire-escape_N' : N ;
-fun cityscape_N : N ;
-fun gape_N : N ;
-fun agape_N : N ;
-fun shape_N : N ;
-fun jape_N : N ;
-fun nape_N : N ;
-fun rape_N : N ;
-fun crape_N : N ;
-fun scrape_N : N ;
-fun drape_N : N ;
-fun serape_N : N ;
-fun grape_N : N ;
-fun tape_N : N ;
-fun 'ticker-tape_N' : N ;
-fun videotape_N : N ;
-fun audiotape_N : N ;
-fun opepe_N : N ;
-fun crepe_N : N ;
-fun recipe_N : N ;
-fun chichipe_N : N ;
-fun jacksnipe_N : N ;
-fun guttersnipe_N : N ;
-fun pipe_N : N ;
-fun 'waste-pipe_N' : N ;
-fun 'soil-pipe_N' : N ;
-fun 'exhaust-pipe_N' : N ;
-fun standpipe_N : N ;
-fun windpipe_N : N ;
-fun hosepipe_N : N ;
-fun stovepipe_N : N ;
-fun bagpipe_N : N ;
-fun tailpipe_N : N ;
-fun panpipe_N : N ;
-fun drainpipe_N : N ;
-fun hornpipe_N : N ;
-fun blowpipe_N : N ;
-fun gripe_N : N ;
-fun tripe_N : N ;
-fun stripe_N : N ;
-fun pinstripe_N : N ;
-fun stipe_N : N ;
-fun wipe_N : N ;
-fun swipe_N : N ;
-fun sideswipe_N : N ;
-fun guimpe_N : N ;
-fun cope_N : N ;
-fun syncope_N : N ;
-fun apocope_N : N ;
-fun scope_N : N ;
-fun epidiascope_N : N ;
-fun telescope_N : N ;
-fun 'radio-telescope_N' : N ;
-fun kinescope_N : N ;
-fun periscope_N : N ;
-fun stroboscope_N : N ;
-fun kaleidoscope_N : N ;
-fun sigmoidoscope_N : N ;
-fun culdoscope_N : N ;
-fun endoscope_N : N ;
-fun hodoscope_N : N ;
-fun stereoscope_N : N ;
-fun esophagoscope_N : N ;
-fun laryngoscope_N : N ;
-fun bronchoscope_N : N ;
-fun nephoscope_N : N ;
-fun stethoscope_N : N ;
-fun orthoscope_N : N ;
-fun bioscope_N : N ;
-fun angioscope_N : N ;
-fun oscilloscope_N : N ;
-fun ophthalmoscope_N : N ;
-fun rhinoscope_N : N ;
-fun iconoscope_N : N ;
-fun colonoscope_N : N ;
-fun chronoscope_N : N ;
-fun laparoscope_N : N ;
-fun microscope_N : N ;
-fun ultramicroscope_N : N ;
-fun hygroscope_N : N ;
-fun synchroscope_N : N ;
-fun arthroscope_N : N ;
-fun horoscope_N : N ;
-fun fluoroscope_N : N ;
-fun electroscope_N : N ;
-fun spectroscope_N : N ;
-fun gastroscope_N : N ;
-fun gyroscope_N : N ;
-fun keratoscope_N : N ;
-fun proctoscope_N : N ;
-fun fetoscope_N : N ;
-fun otoscope_N : N ;
-fun tachistoscope_N : N ;
-fun cryoscope_N : N ;
-fun fiberscope_N : N ;
-fun dope_N : N ;
-fun hope_N : N ;
-fun stanhope_N : N ;
-fun calliope_N : N ;
-fun escalope_N : N ;
-fun malope_N : N ;
-fun antelope_N : N ;
-fun envelope_N : N ;
-fun slope_N : N ;
-fun mope_N : N ;
-fun pope_N : N ;
-fun antipope_N : N ;
-fun rope_N : N ;
-fun 'skipping-rope_N' : N ;
-fun 'towing-rope_N' : N ;
-fun phalarope_N : N ;
-fun hyperope_N : N ;
-fun grope_N : N ;
-fun misanthrope_N : N ;
-fun trope_N : N ;
-fun tightrope_N : N ;
-fun heliotrope_N : N ;
-fun allotrope_N : N ;
-fun towrope_N : N ;
-fun pyrope_N : N ;
-fun isotope_N : N ;
-fun radioisotope_N : N ;
-fun presbyope_N : N ;
-fun myope_N : N ;
-fun lagniappe_N : N ;
-fun frappe_N : N ;
-fun steppe_N : N ;
-fun grippe_N : N ;
-fun taupe_N : N ;
-fun dupe_N : N ;
-fun loupe_N : N ;
-fun cantaloupe_N : N ;
-fun troupe_N : N ;
-fun drupe_N : N ;
-fun type_N : N ;
-fun 'blood-type_N' : N ;
-fun archetype_N : N ;
-fun antitype_N : N ;
-fun stereotype_N : N ;
-fun daguerreotype_N : N ;
-fun biotype_N : N ;
-fun collotype_N : N ;
-fun haplotype_N : N ;
-fun genotype_N : N ;
-fun phenotype_N : N ;
-fun linotype_N : N ;
-fun monotype_N : N ;
-fun prototype_N : N ;
-fun autotype_N : N ;
-fun karyotype_N : N ;
-fun crêpe_N : N ;
-fun are_N : N ;
-fun care_N : N ;
-fun childcare_N : N ;
-fun healthcare_N : N ;
-fun medicare_N : N ;
-fun aftercare_N : N ;
-fun scare_N : N ;
-fun daycare_N : N ;
-fun dare_N : N ;
-fun fare_N : N ;
-fun fieldfare_N : N ;
-fun thoroughfare_N : N ;
-fun welfare_N : N ;
-fun fanfare_N : N ;
-fun warfare_N : N ;
-fun 'class-warfare_N' : N ;
-fun airfare_N : N ;
-fun hare_N : N ;
-fun share_N : N ;
-fun ploughshare_N : N ;
-fun plowshare_N : N ;
-fun caviare_N : N ;
-fun blare_N : N ;
-fun flare_N : N ;
-fun glare_N : N ;
-fun auriculare_N : N ;
-fun mare_N : N ;
-fun 'brood-mare_N' : N ;
-fun 'stud-mare_N' : N ;
-fun broodmare_N : N ;
-fun nightmare_N : N ;
-fun snare_N : N ;
-fun compare_N : N ;
-fun spare_N : N ;
-fun tare_N : N ;
-fun hectare_N : N ;
-fun stare_N : N ;
-fun square_N : N ;
-fun 't-square_N' : N ;
-fun 'market-square_N' : N ;
-fun 'set-square_N' : N ;
-fun ware_N : N ;
-fun chinaware_N : N ;
-fun hardware_N : N ;
-fun freeware_N : N ;
-fun tableware_N : N ;
-fun crackleware_N : N ;
-fun stoneware_N : N ;
-fun shareware_N : N ;
-fun agateware_N : N ;
-fun graniteware_N : N ;
-fun metalware_N : N ;
-fun enamelware_N : N ;
-fun firmware_N : N ;
-fun woodenware_N : N ;
-fun kitchenware_N : N ;
-fun earthenware_N : N ;
-fun ovenware_N : N ;
-fun tinware_N : N ;
-fun ironware_N : N ;
-fun groupware_N : N ;
-fun dinnerware_N : N ;
-fun copperware_N : N ;
-fun lusterware_N : N ;
-fun lacquerware_N : N ;
-fun silverware_N : N ;
-fun glassware_N : N ;
-fun flatware_N : N ;
-fun software_N : N ;
-fun willowware_N : N ;
-fun hollowware_N : N ;
-fun spyware_N : N ;
-fun sabre_N : N ;
-fun fibre_N : N ;
-fun calibre_N : N ;
-fun timbre_N : N ;
-fun acre_N : N ;
-fun wiseacre_N : N ;
-fun nacre_N : N ;
-fun massacre_N : N ;
-fun chancre_N : N ;
-fun lucre_N : N ;
-fun involucre_N : N ;
-fun sucre_N : N ;
-fun cadre_N : N ;
-fun padre_N : N ;
-fun cere_N : N ;
-fun belvedere_N : N ;
-fun etagere_N : N ;
-fun sphere_N : N ;
-fun hemisphere_N : N ;
-fun lithosphere_N : N ;
-fun biosphere_N : N ;
-fun heliosphere_N : N ;
-fun chromosphere_N : N ;
-fun thermosphere_N : N ;
-fun atmosphere_N : N ;
-fun asthenosphere_N : N ;
-fun ionosphere_N : N ;
-fun oosphere_N : N ;
-fun troposphere_N : N ;
-fun hydrosphere_N : N ;
-fun mesosphere_N : N ;
-fun stratosphere_N : N ;
-fun magnetosphere_N : N ;
-fun photosphere_N : N ;
-fun exosphere_N : N ;
-fun bathysphere_N : N ;
-fun gomphothere_N : N ;
-fun somewhere_N : N ;
-fun nowhere_N : N ;
-fun lavaliere_N : N ;
-fun epauliere_N : N ;
-fun boutonniere_N : N ;
-fun brassiere_N : N ;
-fun cubitiere_N : N ;
-fun tourtiere_N : N ;
-fun galere_N : N ;
-fun mere_N : N ;
-fun metamere_N : N ;
-fun cashmere_N : N ;
-fun sarcomere_N : N ;
-fun telomere_N : N ;
-fun arthromere_N : N ;
-fun centromere_N : N ;
-fun blastomere_N : N ;
-fun ampere_N : N ;
-fun abampere_N : N ;
-fun milliampere_N : N ;
-fun maigre_N : N ;
-fun ogre_N : N ;
-fun sepulchre_N : N ;
-fun ochre_N : N ;
-fun euchre_N : N ;
-fun ire_N : N ;
-fun 'savoir-faire_N' : N ;
-fun 'laissez-faire_N' : N ;
-fun doctrinaire_N : N ;
-fun legionnaire_N : N ;
-fun questionnaire_N : N ;
-fun billionaire_N : N ;
-fun millionaire_N : N ;
-fun concessionaire_N : N ;
-fun commissionaire_N : N ;
-fun solitaire_N : N ;
-fun zaire_N : N ;
-fun fire_N : N ;
-fun 'cease-fire_N' : N ;
-fun 'beacon-fire_N' : N ;
-fun 'camp-fire_N' : N ;
-fun wildfire_N : N ;
-fun backfire_N : N ;
-fun cookfire_N : N ;
-fun hellfire_N : N ;
-fun shellfire_N : N ;
-fun drumfire_N : N ;
-fun bonfire_N : N ;
-fun gunfire_N : N ;
-fun campfire_N : N ;
-fun counterfire_N : N ;
-fun misfire_N : N ;
-fun grassfire_N : N ;
-fun crossfire_N : N ;
-fun spitfire_N : N ;
-fun hire_N : N ;
-fun sapphire_N : N ;
-fun shire_N : N ;
-fun mire_N : N ;
-fun quagmire_N : N ;
-fun moire_N : N ;
-fun grimoire_N : N ;
-fun armoire_N : N ;
-fun 'aide-mémoire_N' : N ;
-fun conservatoire_N : N ;
-fun escritoire_N : N ;
-fun repertoire_N : N ;
-fun vampire_N : N ;
-fun empire_N : N ;
-fun umpire_N : N ;
-fun spire_N : N ;
-fun sire_N : N ;
-fun desire_N : N ;
-fun tire_N : N ;
-fun satire_N : N ;
-fun attire_N : N ;
-fun quire_N : N ;
-fun squire_N : N ;
-fun esquire_N : N ;
-fun wire_N : N ;
-fun 'telegraph-wire_N' : N ;
-fun haywire_N : N ;
-fun genre_N : N ;
-fun ore_N : N ;
-fun 'lead-ore_N' : N ;
-fun bore_N : N ;
-fun hellebore_N : N ;
-fun smoothbore_N : N ;
-fun counterbore_N : N ;
-fun core_N : N ;
-fun albacore_N : N ;
-fun manticore_N : N ;
-fun encore_N : N ;
-fun score_N : N ;
-fun 'three-score_N' : N ;
-fun threescore_N : N ;
-fun underscore_N : N ;
-fun fourscore_N : N ;
-fun battledore_N : N ;
-fun stevedore_N : N ;
-fun commodore_N : N ;
-fun fore_N : N ;
-fun pinafore_N : N ;
-fun gore_N : N ;
-fun chore_N : N ;
-fun semaphore_N : N ;
-fun conidiophore_N : N ;
-fun antheridiophore_N : N ;
-fun sporangiophore_N : N ;
-fun chromophore_N : N ;
-fun ctenophore_N : N ;
-fun siphonophore_N : N ;
-fun gynophore_N : N ;
-fun carpophore_N : N ;
-fun sporophore_N : N ;
-fun pneumatophore_N : N ;
-fun gametophore_N : N ;
-fun shore_N : N ;
-fun seashore_N : N ;
-fun foreshore_N : N ;
-fun whore_N : N ;
-fun lore_N : N ;
-fun folklore_N : N ;
-fun more_N : N ;
-fun sycamore_N : N ;
-fun apishamore_N : N ;
-fun sophomore_N : N ;
-fun claymore_N : N ;
-fun signore_N : N ;
-fun snore_N : N ;
-fun pore_N : N ;
-fun blastopore_N : N ;
-fun spore_N : N ;
-fun megaspore_N : N ;
-fun tetraspore_N : N ;
-fun archespore_N : N ;
-fun ascospore_N : N ;
-fun endospore_N : N ;
-fun chlamydospore_N : N ;
-fun zygospore_N : N ;
-fun aeciospore_N : N ;
-fun basidiospore_N : N ;
-fun teliospore_N : N ;
-fun oospore_N : N ;
-fun zoospore_N : N ;
-fun carpospore_N : N ;
-fun microspore_N : N ;
-fun arthrospore_N : N ;
-fun polypore_N : N ;
-fun crore_N : N ;
-fun furore_N : N ;
-fun sore_N : N ;
-fun bedsore_N : N ;
-fun eyesore_N : N ;
-fun store_N : N ;
-fun 'chain-store_N' : N ;
-fun drugstore_N : N ;
-fun herbivore_N : N ;
-fun omnivore_N : N ;
-fun carnivore_N : N ;
-fun insectivore_N : N ;
-fun yore_N : N ;
-fun 'amour-propre_N' : N ;
-fun 'pied-à-terre_N' : N ;
-fun parterre_N : N ;
-fun murre_N : N ;
-fun theatre_N : N ;
-fun 'operating-theatre_N' : N ;
-fun amphitheatre_N : N ;
-fun spectre_N : N ;
-fun metre_N : N ;
-fun millimetre_N : N ;
-fun centimetre_N : N ;
-fun kilometre_N : N ;
-fun saltpetre_N : N ;
-fun litre_N : N ;
-fun kilolitre_N : N ;
-fun mitre_N : N ;
-fun nitre_N : N ;
-fun goitre_N : N ;
-fun huitre_N : N ;
-fun philtre_N : N ;
-fun 'love-philtre_N' : N ;
-fun centre_N : N ;
-fun 'nerve-centre_N' : N ;
-fun 'storm-centre_N' : N ;
-fun jobcentre_N : N ;
-fun epicentre_N : N ;
-fun sceptre_N : N ;
-fun piastre_N : N ;
-fun lustre_N : N ;
-fun cure_N : N ;
-fun 'rest-cure_N' : N ;
-fun sinecure_N : N ;
-fun pedicure_N : N ;
-fun manicure_N : N ;
-fun epicure_N : N ;
-fun procedure_N : N ;
-fun supersedure_N : N ;
-fun verdure_N : N ;
-fun ordure_N : N ;
-fun 'force majeure_N' : N ;
-fun coiffure_N : N ;
-fun figure_N : N ;
-fun 'lay figure_N' : N ;
-fun subfigure_N : N ;
-fun brochure_N : N ;
-fun lure_N : N ;
-fun failure_N : N ;
-fun 'heart-failure_N' : N ;
-fun allure_N : N ;
-fun encolure_N : N ;
-fun manure_N : N ;
-fun tenure_N : N ;
-fun pleasure_N : N ;
-fun displeasure_N : N ;
-fun measure_N : N ;
-fun 'yard-measure_N' : N ;
-fun 'tape-measure_N' : N ;
-fun countermeasure_N : N ;
-fun treasure_N : N ;
-fun embrasure_N : N ;
-fun erasure_N : N ;
-fun incisure_N : N ;
-fun leisure_N : N ;
-fun censure_N : N ;
-fun tonsure_N : N ;
-fun closure_N : N ;
-fun foreclosure_N : N ;
-fun enclosure_N : N ;
-fun inclosure_N : N ;
-fun disclosure_N : N ;
-fun cynosure_N : N ;
-fun composure_N : N ;
-fun discomposure_N : N ;
-fun exposure_N : N ;
-fun 'time-exposure_N' : N ;
-fun underexposure_N : N ;
-fun overexposure_N : N ;
-fun pressure_N : N ;
-fun 'blood-pressure_N' : N ;
-fun 'high-pressure_N' : N ;
-fun overpressure_N : N ;
-fun acupressure_N : N ;
-fun fissure_N : N ;
-fun commissure_N : N ;
-fun judicature_N : N ;
-fun caricature_N : N ;
-fun candidature_N : N ;
-fun feature_N : N ;
-fun creature_N : N ;
-fun ligature_N : N ;
-fun miniature_N : N ;
-fun tablature_N : N ;
-fun entablature_N : N ;
-fun nomenclature_N : N ;
-fun filature_N : N ;
-fun legislature_N : N ;
-fun palmature_N : N ;
-fun armature_N : N ;
-fun nature_N : N ;
-fun signature_N : N ;
-fun countersignature_N : N ;
-fun quadrature_N : N ;
-fun temperature_N : N ;
-fun literature_N : N ;
-fun stature_N : N ;
-fun curvature_N : N ;
-fun manufacture_N : N ;
-fun fracture_N : N ;
-fun contracture_N : N ;
-fun prefecture_N : N ;
-fun conjecture_N : N ;
-fun lecture_N : N ;
-fun 'curtain-lecture_N' : N ;
-fun architecture_N : N ;
-fun cytoarchitecture_N : N ;
-fun picture_N : N ;
-fun 'word-picture_N' : N ;
-fun stricture_N : N ;
-fun cincture_N : N ;
-fun tincture_N : N ;
-fun juncture_N : N ;
-fun conjuncture_N : N ;
-fun puncture_N : N ;
-fun venipuncture_N : N ;
-fun acupuncture_N : N ;
-fun structure_N : N ;
-fun infrastructure_N : N ;
-fun substructure_N : N ;
-fun superstructure_N : N ;
-fun portraiture_N : N ;
-fun expenditure_N : N ;
-fun forfeiture_N : N ;
-fun discomfiture_N : N ;
-fun confiture_N : N ;
-fun primogeniture_N : N ;
-fun furniture_N : N ;
-fun vestiture_N : N ;
-fun divestiture_N : N ;
-fun investiture_N : N ;
-fun culture_N : N ;
-fun aquaculture_N : N ;
-fun subculture_N : N ;
-fun apiculture_N : N ;
-fun sericulture_N : N ;
-fun agriculture_N : N ;
-fun arboriculture_N : N ;
-fun floriculture_N : N ;
-fun viticulture_N : N ;
-fun horticulture_N : N ;
-fun silviculture_N : N ;
-fun monoculture_N : N ;
-fun cyberculture_N : N ;
-fun counterculture_N : N ;
-fun sepulture_N : N ;
-fun vulture_N : N ;
-fun debenture_N : N ;
-fun denture_N : N ;
-fun indenture_N : N ;
-fun venture_N : N ;
-fun adventure_N : N ;
-fun peradventure_N : N ;
-fun misadventure_N : N ;
-fun jointure_N : N ;
-fun capture_N : N ;
-fun recapture_N : N ;
-fun rapture_N : N ;
-fun scripture_N : N ;
-fun sculpture_N : N ;
-fun rupture_N : N ;
-fun departure_N : N ;
-fun aperture_N : N ;
-fun overture_N : N ;
-fun couverture_N : N ;
-fun torture_N : N ;
-fun nurture_N : N ;
-fun pasture_N : N ;
-fun gesture_N : N ;
-fun vesture_N : N ;
-fun moisture_N : N ;
-fun posture_N : N ;
-fun imposture_N : N ;
-fun future_N : N ;
-fun couture_N : N ;
-fun suture_N : N ;
-fun texture_N : N ;
-fun fixture_N : N ;
-fun mixture_N : N ;
-fun 'smoking-mixture_N' : N ;
-fun 'freezing-mixture_N' : N ;
-fun 'heather-mixture_N' : N ;
-fun admixture_N : N ;
-fun intermixture_N : N ;
-fun gravure_N : N ;
-fun photogravure_N : N ;
-fun rotogravure_N : N ;
-fun flexure_N : N ;
-fun dasyure_N : N ;
-fun azure_N : N ;
-fun seizure_N : N ;
-fun 'joie de vivre_N' : N ;
-fun oeuvre_N : N ;
-fun manoeuvre_N : N ;
-fun louvre_N : N ;
-fun lyre_N : N ;
-fun pyre_N : N ;
-fun tyre_N : N ;
-fun 'porte-cochère_N' : N ;
-fun première_N : N ;
-fun brassière_N : N ;
-fun portière_N : N ;
-fun compère_N : N ;
-fun confrère_N : N ;
-fun base_N : N ;
-fun 'rocket-base_N' : N ;
-fun database_N : N ;
-fun subbase_N : N ;
-fun firebase_N : N ;
-fun wheelbase_N : N ;
-fun gynobase_N : N ;
-fun surbase_N : N ;
-fun case_N : N ;
-fun 'cigarette-case_N' : N ;
-fun 'packing-case_N' : N ;
-fun 'dressing-case_N' : N ;
-fun 'gear-case_N' : N ;
-fun 'letter-case_N' : N ;
-fun cardcase_N : N ;
-fun notecase_N : N ;
-fun briefcase_N : N ;
-fun crankcase_N : N ;
-fun bookcase_N : N ;
-fun carcase_N : N ;
-fun staircase_N : N ;
-fun doorcase_N : N ;
-fun suitcase_N : N ;
-fun showcase_N : N ;
-fun pillowcase_N : N ;
-fun hyaluronidase_N : N ;
-fun disaccharidase_N : N ;
-fun oxidase_N : N ;
-fun peroxidase_N : N ;
-fun ease_N : N ;
-fun 'heart\'s-ease_N' : N ;
-fun cease_N : N ;
-fun decease_N : N ;
-fun lease_N : N ;
-fun sublease_N : N ;
-fun nuclease_N : N ;
-fun ribonuclease_N : N ;
-fun endonuclease_N : N ;
-fun exonuclease_N : N ;
-fun release_N : N ;
-fun unease_N : N ;
-fun pease_N : N ;
-fun crease_N : N ;
-fun decrease_N : N ;
-fun increase_N : N ;
-fun grease_N : N ;
-fun urease_N : N ;
-fun disease_N : N ;
-fun 'heart-disease_N' : N ;
-fun tease_N : N ;
-fun protease_N : N ;
-fun striptease_N : N ;
-fun chase_N : N ;
-fun 'paper-chase_N' : N ;
-fun steeplechase_N : N ;
-fun purchase_N : N ;
-fun phase_N : N ;
-fun anaphase_N : N ;
-fun metaphase_N : N ;
-fun telophase_N : N ;
-fun prophase_N : N ;
-fun ukase_N : N ;
-fun catalase_N : N ;
-fun periclase_N : N ;
-fun orthoclase_N : N ;
-fun plagioclase_N : N ;
-fun coagulase_N : N ;
-fun amylase_N : N ;
-fun decarboxylase_N : N ;
-fun cocarboxylase_N : N ;
-fun zymase_N : N ;
-fun pyocyanase_N : N ;
-fun collagenase_N : N ;
-fun nitrogenase_N : N ;
-fun oxygenase_N : N ;
-fun cyclooxygenase_N : N ;
-fun prothrombinase_N : N ;
-fun asparaginase_N : N ;
-fun kinase_N : N ;
-fun enterokinase_N : N ;
-fun streptokinase_N : N ;
-fun penicillinase_N : N ;
-fun transaminase_N : N ;
-fun histaminase_N : N ;
-fun fibrinase_N : N ;
-fun streptodornase_N : N ;
-fun lipase_N : N ;
-fun caspase_N : N ;
-fun transferase_N : N ;
-fun telomerase_N : N ;
-fun isomerase_N : N ;
-fun polymerase_N : N ;
-fun cholinesterase_N : N ;
-fun anticholinesterase_N : N ;
-fun phrase_N : N ;
-fun paraphrase_N : N ;
-fun catchphrase_N : N ;
-fun chrysoprase_N : N ;
-fun phosphatase_N : N ;
-fun lactase_N : N ;
-fun reductase_N : N ;
-fun oxidoreductase_N : N ;
-fun secretase_N : N ;
-fun transcriptase_N : N ;
-fun invertase_N : N ;
-fun elastase_N : N ;
-fun vase_N : N ;
-fun gcse_N : N ;
-fun diocese_N : N ;
-fun archdiocese_N : N ;
-fun cheese_N : N ;
-fun headcheese_N : N ;
-fun telegraphese_N : N ;
-fun legalese_N : N ;
-fun officialese_N : N ;
-fun journalese_N : N ;
-fun manganese_N : N ;
-fun headlinese_N : N ;
-fun hollandaise_N : N ;
-fun chaise_N : N ;
-fun 'post-chaise_N' : N ;
-fun malaise_N : N ;
-fun bordelaise_N : N ;
-fun marseillaise_N : N ;
-fun mayonnaise_N : N ;
-fun polonaise_N : N ;
-fun bearnaise_N : N ;
-fun raise_N : N ;
-fun fraise_N : N ;
-fun praise_N : N ;
-fun bise_N : N ;
-fun exercise_N : N ;
-fun excise_N : N ;
-fun paradise_N : N ;
-fun merchandise_N : N ;
-fun franchise_N : N ;
-fun valise_N : N ;
-fun camise_N : N ;
-fun demise_N : N ;
-fun chemise_N : N ;
-fun remise_N : N ;
-fun premise_N : N ;
-fun promise_N : N ;
-fun compromise_N : N ;
-fun surmise_N : N ;
-fun anise_N : N ;
-fun noise_N : N ;
-fun genoise_N : N ;
-fun poise_N : N ;
-fun equipoise_N : N ;
-fun counterpoise_N : N ;
-fun porpoise_N : N ;
-fun vichyssoise_N : N ;
-fun tortoise_N : N ;
-fun turquoise_N : N ;
-fun rise_N : N ;
-fun cerise_N : N ;
-fun sunrise_N : N ;
-fun enterprise_N : N ;
-fun surprise_N : N ;
-fun treatise_N : N ;
-fun expertise_N : N ;
-fun mortise_N : N ;
-fun guise_N : N ;
-fun disguise_N : N ;
-fun bruise_N : N ;
-fun cruise_N : N ;
-fun vise_N : N ;
-fun devise_N : N ;
-fun revise_N : N ;
-fun dulse_N : N ;
-fun pulse_N : N ;
-fun repulse_N : N ;
-fun impulse_N : N ;
-fun manse_N : N ;
-fun expanse_N : N ;
-fun license_N : N ;
-fun incense_N : N ;
-fun frankincense_N : N ;
-fun defense_N : N ;
-fun offense_N : N ;
-fun recompense_N : N ;
-fun suspense_N : N ;
-fun expense_N : N ;
-fun sense_N : N ;
-fun 'road-sense_N' : N ;
-fun 'horse-sense_N' : N ;
-fun nonsense_N : N ;
-fun somatosense_N : N ;
-fun tense_N : N ;
-fun pretense_N : N ;
-fun rinse_N : N ;
-fun response_N : N ;
-fun ribose_N : N ;
-fun deoxyribose_N : N ;
-fun glucose_N : N ;
-fun dose_N : N ;
-fun aldose_N : N ;
-fun hose_N : N ;
-fun 'fire-hose_N' : N ;
-fun 'panty-hose_N' : N ;
-fun boothose_N : N ;
-fun pantyhose_N : N ;
-fun triose_N : N ;
-fun close_N : N ;
-fun cellulose_N : N ;
-fun pyrocellulose_N : N ;
-fun nose_N : N ;
-fun 'pug-nose_N' : N ;
-fun conenose_N : N ;
-fun raffinose_N : N ;
-fun bullnose_N : N ;
-fun caboose_N : N ;
-fun mongoose_N : N ;
-fun noose_N : N ;
-fun papoose_N : N ;
-fun pose_N : N ;
-fun repose_N : N ;
-fun purpose_N : N ;
-fun transpose_N : N ;
-fun rose_N : N ;
-fun 'guelder rose_N' : N ;
-fun 'musk-rose_N' : N ;
-fun sucrose_N : N ;
-fun tuberose_N : N ;
-fun rockrose_N : N ;
-fun primrose_N : N ;
-fun prose_N : N ;
-fun tetrose_N : N ;
-fun dextrose_N : N ;
-fun lactose_N : N ;
-fun galactose_N : N ;
-fun fructose_N : N ;
-fun ketose_N : N ;
-fun maltose_N : N ;
-fun pentose_N : N ;
-fun hexose_N : N ;
-fun aldohexose_N : N ;
-fun ketohexose_N : N ;
-fun stachyose_N : N ;
-fun apse_N : N ;
-fun lapse_N : N ;
-fun relapse_N : N ;
-fun collapse_N : N ;
-fun prolapse_N : N ;
-fun synapse_N : N ;
-fun eclipse_N : N ;
-fun ellipse_N : N ;
-fun glimpse_N : N ;
-fun copse_N : N ;
-fun corpse_N : N ;
-fun apocalypse_N : N ;
-fun arse_N : N ;
-fun hearse_N : N ;
-fun erse_N : N ;
-fun verse_N : N ;
-fun traverse_N : N ;
-fun obverse_N : N ;
-fun reverse_N : N ;
-fun universe_N : N ;
-fun inverse_N : N ;
-fun converse_N : N ;
-fun corse_N : N ;
-fun gorse_N : N ;
-fun horse_N : N ;
-fun 'sea-horse_N' : N ;
-fun 'rocking-horse_N' : N ;
-fun 'stalking-horse_N' : N ;
-fun 'vaulting-horse_N' : N ;
-fun 'towel-horse_N' : N ;
-fun 'draught-horse_N' : N ;
-fun 'post-horse_N' : N ;
-fun seahorse_N : N ;
-fun redhorse_N : N ;
-fun racehorse_N : N ;
-fun packhorse_N : N ;
-fun cockhorse_N : N ;
-fun workhorse_N : N ;
-fun warhorse_N : N ;
-fun clotheshorse_N : N ;
-fun carthorse_N : N ;
-fun sawhorse_N : N ;
-fun hobbyhorse_N : N ;
-fun morse_N : N ;
-fun remorse_N : N ;
-fun norse_N : N ;
-fun worse_N : N ;
-fun curse_N : N ;
-fun nurse_N : N ;
-fun 'wet-nurse_N' : N ;
-fun bourse_N : N ;
-fun course_N : N ;
-fun 'golf-course_N' : N ;
-fun racecourse_N : N ;
-fun recourse_N : N ;
-fun concourse_N : N ;
-fun watercourse_N : N ;
-fun intercourse_N : N ;
-fun outercourse_N : N ;
-fun discourse_N : N ;
-fun purse_N : N ;
-fun cutpurse_N : N ;
-fun thyrse_N : N ;
-fun bagasse_N : N ;
-fun chasse_N : N ;
-fun palliasse_N : N ;
-fun pailliasse_N : N ;
-fun paillasse_N : N ;
-fun masse_N : N ;
-fun impasse_N : N ;
-fun wrasse_N : N ;
-fun demitasse_N : N ;
-fun crevasse_N : N ;
-fun fesse_N : N ;
-fun largesse_N : N ;
-fun finesse_N : N ;
-fun bouillabaisse_N : N ;
-fun pelisse_N : N ;
-fun coulisse_N : N ;
-fun cuisse_N : N ;
-fun fosse_N : N ;
-fun posse_N : N ;
-fun crosse_N : N ;
-fun lacrosse_N : N ;
-fun mousse_N : N ;
-fun tsetse_N : N ;
-fun use_N : N ;
-fun cause_N : N ;
-fun clause_N : N ;
-fun applause_N : N ;
-fun pause_N : N ;
-fun heliopause_N : N ;
-fun menopause_N : N ;
-fun tropopause_N : N ;
-fun abuse_N : N ;
-fun excuse_N : N ;
-fun coiffeuse_N : N ;
-fun chartreuse_N : N ;
-fun masseuse_N : N ;
-fun fuse_N : N ;
-fun 'time-fuse_N' : N ;
-fun refuse_N : N ;
-fun recluse_N : N ;
-fun muse_N : N ;
-fun hypotenuse_N : N ;
-fun lobscouse_N : N ;
-fun house_N : N ;
-fun 'charnel house_N' : N ;
-fun 'opera-house_N' : N ;
-fun 'coffee-house_N' : N ;
-fun 'ale-house_N' : N ;
-fun 'treasure-house_N' : N ;
-fun 'boarding-house_N' : N ;
-fun 'lodging-house_N' : N ;
-fun 'dwelling-house_N' : N ;
-fun 'gaming-house_N' : N ;
-fun 'clearing-house_N' : N ;
-fun 'eating-house_N' : N ;
-fun 'meeting-house_N' : N ;
-fun 'counting-house_N' : N ;
-fun 'wash-house_N' : N ;
-fun 'coal-house_N' : N ;
-fun 'chop-house_N' : N ;
-fun 'manor-house_N' : N ;
-fun 'alms-house_N' : N ;
-fun 'doss-house_N' : N ;
-fun 'joss-house_N' : N ;
-fun 'boat-house_N' : N ;
-fun 'tenement-house_N' : N ;
-fun 'rest-house_N' : N ;
-fun 'country-house_N' : N ;
-fun teahouse_N : N ;
-fun clubhouse_N : N ;
-fun madhouse_N : N ;
-fun roadhouse_N : N ;
-fun roundhouse_N : N ;
-fun guardhouse_N : N ;
-fun birdhouse_N : N ;
-fun icehouse_N : N ;
-fun smokehouse_N : N ;
-fun alehouse_N : N ;
-fun warehouse_N : N ;
-fun whorehouse_N : N ;
-fun storehouse_N : N ;
-fun gatehouse_N : N ;
-fun statehouse_N : N ;
-fun packinghouse_N : N ;
-fun countinghouse_N : N ;
-fun doghouse_N : N ;
-fun washhouse_N : N ;
-fun bathhouse_N : N ;
-fun steakhouse_N : N ;
-fun blockhouse_N : N ;
-fun cookhouse_N : N ;
-fun barrelhouse_N : N ;
-fun dollhouse_N : N ;
-fun tollhouse_N : N ;
-fun schoolhouse_N : N ;
-fun customhouse_N : N ;
-fun farmhouse_N : N ;
-fun greenhouse_N : N ;
-fun henhouse_N : N ;
-fun flophouse_N : N ;
-fun summerhouse_N : N ;
-fun slaughterhouse_N : N ;
-fun chapterhouse_N : N ;
-fun charterhouse_N : N ;
-fun porterhouse_N : N ;
-fun powerhouse_N : N ;
-fun poorhouse_N : N ;
-fun glasshouse_N : N ;
-fun boathouse_N : N ;
-fun lighthouse_N : N ;
-fun penthouse_N : N ;
-fun hothouse_N : N ;
-fun pilothouse_N : N ;
-fun pothouse_N : N ;
-fun courthouse_N : N ;
-fun oasthouse_N : N ;
-fun guesthouse_N : N ;
-fun posthouse_N : N ;
-fun nuthouse_N : N ;
-fun outhouse_N : N ;
-fun cowhouse_N : N ;
-fun playhouse_N : N ;
-fun blouse_N : N ;
-fun booklouse_N : N ;
-fun burnouse_N : N ;
-fun spouse_N : N ;
-fun carouse_N : N ;
-fun sandgrouse_N : N ;
-fun souse_N : N ;
-fun ruse_N : N ;
-fun cruse_N : N ;
-fun disuse_N : N ;
-fun misuse_N : N ;
-fun cayuse_N : N ;
-fun hawse_N : N ;
-fun tawse_N : N ;
-fun dowse_N : N ;
-fun browse_N : N ;
-fun drowse_N : N ;
-fun debate_N : N ;
-fun rebate_N : N ;
-fun 'rent-rebate_N' : N ;
-fun celibate_N : N ;
-fun probate_N : N ;
-fun reprobate_N : N ;
-fun sorbate_N : N ;
-fun absorbate_N : N ;
-fun adsorbate_N : N ;
-fun predicate_N : N ;
-fun syndicate_N : N ;
-fun pontificate_N : N ;
-fun certificate_N : N ;
-fun silicate_N : N ;
-fun borosilicate_N : N ;
-fun fluosilicate_N : N ;
-fun triplicate_N : N ;
-fun duplicate_N : N ;
-fun quadruplicate_N : N ;
-fun tunicate_N : N ;
-fun affricate_N : N ;
-fun suricate_N : N ;
-fun sophisticate_N : N ;
-fun advocate_N : N ;
-fun date_N : N ;
-fun vanadate_N : N ;
-fun candidate_N : N ;
-fun noncandidate_N : N ;
-fun methylphenidate_N : N ;
-fun mandate_N : N ;
-fun update_N : N ;
-fun chordate_N : N ;
-fun cephalochordate_N : N ;
-fun transudate_N : N ;
-fun exudate_N : N ;
-fun maleate_N : N ;
-fun laureate_N : N ;
-fun baccalaureate_N : N ;
-fun fate_N : N ;
-fun sucralfate_N : N ;
-fun sulfate_N : N ;
-fun gate_N : N ;
-fun 'starting-gate_N' : N ;
-fun 'lock-gate_N' : N ;
-fun 'wicket-gate_N' : N ;
-fun agate_N : N ;
-fun floodgate_N : N ;
-fun sluicegate_N : N ;
-fun legate_N : N ;
-fun delegate_N : N ;
-fun segregate_N : N ;
-fun aggregate_N : N ;
-fun lichgate_N : N ;
-fun lychgate_N : N ;
-fun profligate_N : N ;
-fun frigate_N : N ;
-fun tailgate_N : N ;
-fun tollgate_N : N ;
-fun vulgate_N : N ;
-fun surrogate_N : N ;
-fun margate_N : N ;
-fun billingsgate_N : N ;
-fun hate_N : N ;
-fun patriarchate_N : N ;
-fun caliphate_N : N ;
-fun sulphate_N : N ;
-fun phosphate_N : N ;
-fun organophosphate_N : N ;
-fun pyrophosphate_N : N ;
-fun polyphosphate_N : N ;
-fun xanthate_N : N ;
-fun noviciate_N : N ;
-fun associate_N : N ;
-fun intermediate_N : N ;
-fun dibranchiate_N : N ;
-fun ciliate_N : N ;
-fun affiliate_N : N ;
-fun hellgrammiate_N : N ;
-fun opiate_N : N ;
-fun vicariate_N : N ;
-fun inebriate_N : N ;
-fun repatriate_N : N ;
-fun expatriate_N : N ;
-fun initiate_N : N ;
-fun uninitiate_N : N ;
-fun novitiate_N : N ;
-fun licentiate_N : N ;
-fun skate_N : N ;
-fun 'ice-skate_N' : N ;
-fun 'roller-skate_N' : N ;
-fun cheapskate_N : N ;
-fun cardinalate_N : N ;
-fun palate_N : N ;
-fun oxalate_N : N ;
-fun oblate_N : N ;
-fun chelate_N : N ;
-fun prelate_N : N ;
-fun correlate_N : N ;
-fun flagellate_N : N ;
-fun dinoflagellate_N : N ;
-fun distillate_N : N ;
-fun chocolate_N : N ;
-fun percolate_N : N ;
-fun plate_N : N ;
-fun 'gold-plate_N' : N ;
-fun 'l-plate_N' : N ;
-fun 'tin-plate_N' : N ;
-fun 'finger-plate_N' : N ;
-fun 'quarter-plate_N' : N ;
-fun 'armour-plate_N' : N ;
-fun 'breast-plate_N' : N ;
-fun faceplate_N : N ;
-fun nameplate_N : N ;
-fun fishplate_N : N ;
-fun backplate_N : N ;
-fun bookplate_N : N ;
-fun template_N : N ;
-fun electroplate_N : N ;
-fun numberplate_N : N ;
-fun boilerplate_N : N ;
-fun copperplate_N : N ;
-fun doorplate_N : N ;
-fun hotplate_N : N ;
-fun footplate_N : N ;
-fun breastplate_N : N ;
-fun slate_N : N ;
-fun matriculate_N : N ;
-fun particulate_N : N ;
-fun unguiculate_N : N ;
-fun ungulate_N : N ;
-fun consulate_N : N ;
-fun proconsulate_N : N ;
-fun postulate_N : N ;
-fun salicylate_N : N ;
-fun mate_N : N ;
-fun 'room-mate_N' : N ;
-fun meprobamate_N : N ;
-fun carbamate_N : N ;
-fun hamate_N : N ;
-fun meclofenamate_N : N ;
-fun glutamate_N : N ;
-fun stalemate_N : N ;
-fun tablemate_N : N ;
-fun stablemate_N : N ;
-fun housemate_N : N ;
-fun sublimate_N : N ;
-fun climate_N : N ;
-fun primate_N : N ;
-fun ultimate_N : N ;
-fun penultimate_N : N ;
-fun intimate_N : N ;
-fun estimate_N : N ;
-fun underestimate_N : N ;
-fun overestimate_N : N ;
-fun guesstimate_N : N ;
-fun checkmate_N : N ;
-fun bunkmate_N : N ;
-fun workmate_N : N ;
-fun schoolmate_N : N ;
-fun teammate_N : N ;
-fun roommate_N : N ;
-fun inmate_N : N ;
-fun diplomate_N : N ;
-fun chromate_N : N ;
-fun bichromate_N : N ;
-fun shipmate_N : N ;
-fun helpmate_N : N ;
-fun campmate_N : N ;
-fun classmate_N : N ;
-fun messmate_N : N ;
-fun flatmate_N : N ;
-fun humate_N : N ;
-fun playmate_N : N ;
-fun manganate_N : N ;
-fun permanganate_N : N ;
-fun khanate_N : N ;
-fun pomegranate_N : N ;
-fun sultanate_N : N ;
-fun thiocyanate_N : N ;
-fun isothiocyanate_N : N ;
-fun isocyanate_N : N ;
-fun enate_N : N ;
-fun homogenate_N : N ;
-fun senate_N : N ;
-fun arsenate_N : N ;
-fun agnate_N : N ;
-fun magnate_N : N ;
-fun cognate_N : N ;
-fun rabbinate_N : N ;
-fun ordinate_N : N ;
-fun subordinate_N : N ;
-fun coordinate_N : N ;
-fun laminate_N : N ;
-fun geminate_N : N ;
-fun fulminate_N : N ;
-fun aluminate_N : N ;
-fun carinate_N : N ;
-fun dimenhydrinate_N : N ;
-fun palatinate_N : N ;
-fun carbonate_N : N ;
-fun bicarbonate_N : N ;
-fun archidiaconate_N : N ;
-fun odonate_N : N ;
-fun neonate_N : N ;
-fun sulfonate_N : N ;
-fun alkylbenzenesulfonate_N : N ;
-fun alendronate_N : N ;
-fun unfortunate_N : N ;
-fun propenoate_N : N ;
-fun benzoate_N : N ;
-fun pate_N : N ;
-fun 'bald-pate_N' : N ;
-fun episcopate_N : N ;
-fun spate_N : N ;
-fun rate_N : N ;
-fun 'death-rate_N' : N ;
-fun 'bank-rate_N' : N ;
-fun 'water-rate_N' : N ;
-fun 'poor-rate_N' : N ;
-fun karate_N : N ;
-fun separate_N : N ;
-fun vertebrate_N : N ;
-fun invertebrate_N : N ;
-fun clofibrate_N : N ;
-fun crate_N : N ;
-fun quadrate_N : N ;
-fun biquadrate_N : N ;
-fun hydrate_N : N ;
-fun carbohydrate_N : N ;
-fun monohydrate_N : N ;
-fun cerate_N : N ;
-fun dinocerate_N : N ;
-fun confederate_N : N ;
-fun moderate_N : N ;
-fun agglomerate_N : N ;
-fun conglomerate_N : N ;
-fun degenerate_N : N ;
-fun desperate_N : N ;
-fun literate_N : N ;
-fun aliterate_N : N ;
-fun illiterate_N : N ;
-fun coelenterate_N : N ;
-fun grate_N : N ;
-fun ingrate_N : N ;
-fun deathrate_N : N ;
-fun birthrate_N : N ;
-fun emirate_N : N ;
-fun pirate_N : N ;
-fun aspirate_N : N ;
-fun levirate_N : N ;
-fun triumvirate_N : N ;
-fun quadrumvirate_N : N ;
-fun borate_N : N ;
-fun chlorate_N : N ;
-fun perchlorate_N : N ;
-fun electorate_N : N ;
-fun inspectorate_N : N ;
-fun directorate_N : N ;
-fun protectorate_N : N ;
-fun doctorate_N : N ;
-fun pastorate_N : N ;
-fun prate_N : N ;
-fun citrate_N : N ;
-fun nitrate_N : N ;
-fun filtrate_N : N ;
-fun concentrate_N : N ;
-fun tartrate_N : N ;
-fun bitartrate_N : N ;
-fun substrate_N : N ;
-fun magistrate_N : N ;
-fun superstrate_N : N ;
-fun urate_N : N ;
-fun curate_N : N ;
-fun barbiturate_N : N ;
-fun condensate_N : N ;
-fun hydrolysate_N : N ;
-fun lactate_N : N ;
-fun dictate_N : N ;
-fun acetate_N : N ;
-fun oxalacetate_N : N ;
-fun capitate_N : N ;
-fun precipitate_N : N ;
-fun tomtate_N : N ;
-fun edentate_N : N ;
-fun potentate_N : N ;
-fun state_N : N ;
-fun estate_N : N ;
-fun testate_N : N ;
-fun tungstate_N : N ;
-fun apostate_N : N ;
-fun prostate_N : N ;
-fun interstate_N : N ;
-fun graduate_N : N ;
-fun undergraduate_N : N ;
-fun postgraduate_N : N ;
-fun eluate_N : N ;
-fun private_N : N ;
-fun solvate_N : N ;
-fun methotrexate_N : N ;
-fun entr'acte_N : N ;
-fun stacte_N : N ;
-fun oligochaete_N : N ;
-fun polychaete_N : N ;
-fun ascomycete_N : N ;
-fun discomycete_N : N ;
-fun basidiomycete_N : N ;
-fun actinomycete_N : N ;
-fun gasteromycete_N : N ;
-fun blastomycete_N : N ;
-fun exegete_N : N ;
-fun machete_N : N ;
-fun spirochete_N : N ;
-fun esthete_N : N ;
-fun aesthete_N : N ;
-fun athlete_N : N ;
-fun pentathlete_N : N ;
-fun bolete_N : N ;
-fun gamete_N : N ;
-fun agamete_N : N ;
-fun isogamete_N : N ;
-fun anisogamete_N : N ;
-fun concrete_N : N ;
-fun ferroconcrete_N : N ;
-fun bite_N : N ;
-fun 'flea-bite_N' : N ;
-fun snakebite_N : N ;
-fun albite_N : N ;
-fun jacobite_N : N ;
-fun niobite_N : N ;
-fun trilobite_N : N ;
-fun cenobite_N : N ;
-fun overbite_N : N ;
-fun frostbite_N : N ;
-fun dacite_N : N ;
-fun anthracite_N : N ;
-fun calcite_N : N ;
-fun nitrocalcite_N : N ;
-fun chalcocite_N : N ;
-fun lepidocrocite_N : N ;
-fun plebiscite_N : N ;
-fun pollucite_N : N ;
-fun andradite_N : N ;
-fun luddite_N : N ;
-fun zinnwaldite_N : N ;
-fun pentlandite_N : N ;
-fun heulandite_N : N ;
-fun almandite_N : N ;
-fun hermaphrodite_N : N ;
-fun pseudohermaphrodite_N : N ;
-fun argyrodite_N : N ;
-fun cordite_N : N ;
-fun jadeite_N : N ;
-fun augite_N : N ;
-fun malachite_N : N ;
-fun graphite_N : N ;
-fun hemimorphite_N : N ;
-fun pyromorphite_N : N ;
-fun goethite_N : N ;
-fun anorthite_N : N ;
-fun white_N : N ;
-fun bobwhite_N : N ;
-fun kite_N : N ;
-fun 'box-kite_N' : N ;
-fun greenockite_N : N ;
-fun samarskite_N : N ;
-fun cristobalite_N : N ;
-fun sodalite_N : N ;
-fun halite_N : N ;
-fun socialite_N : N ;
-fun copalite_N : N ;
-fun tantalite_N : N ;
-fun elite_N : N ;
-fun 'pre-raphaelite_N' : N ;
-fun scheelite_N : N ;
-fun bakelite_N : N ;
-fun Carmelite_N : N ;
-fun carnallite_N : N ;
-fun crystallite_N : N ;
-fun satellite_N : N ;
-fun argillite_N : N ;
-fun anthophyllite_N : N ;
-fun pyrophyllite_N : N ;
-fun metabolite_N : N ;
-fun antimetabolite_N : N ;
-fun amphibolite_N : N ;
-fun crocolite_N : N ;
-fun lepidolite_N : N ;
-fun theodolite_N : N ;
-fun rhodolite_N : N ;
-fun zeolite_N : N ;
-fun tremolite_N : N ;
-fun actinolite_N : N ;
-fun aerolite_N : N ;
-fun saprolite_N : N ;
-fun coprolite_N : N ;
-fun natrolite_N : N ;
-fun chrysolite_N : N ;
-fun rhyolite_N : N ;
-fun cryolite_N : N ;
-fun aplite_N : N ;
-fun pearlite_N : N ;
-fun marlite_N : N ;
-fun kimberlite_N : N ;
-fun vermiculite_N : N ;
-fun cellulite_N : N ;
-fun nummulite_N : N ;
-fun tachylite_N : N ;
-fun stylite_N : N ;
-fun élite_N : N ;
-fun mite_N : N ;
-fun bedlamite_N : N ;
-fun dynamite_N : N ;
-fun wolframite_N : N ;
-fun samite_N : N ;
-fun catamite_N : N ;
-fun eremite_N : N ;
-fun semite_N : N ;
-fun 'anti-semite_N' : N ;
-fun stalagmite_N : N ;
-fun gummite_N : N ;
-fun sodomite_N : N ;
-fun fomite_N : N ;
-fun dolomite_N : N ;
-fun chromite_N : N ;
-fun marmite_N : N ;
-fun termite_N : N ;
-fun tridymite_N : N ;
-fun suburbanite_N : N ;
-fun vulcanite_N : N ;
-fun manganite_N : N ;
-fun morganite_N : N ;
-fun aphanite_N : N ;
-fun strontianite_N : N ;
-fun vesuvianite_N : N ;
-fun germanite_N : N ;
-fun granite_N : N ;
-fun sylvanite_N : N ;
-fun kyanite_N : N ;
-fun stibnite_N : N ;
-fun molybdenite_N : N ;
-fun hiddenite_N : N ;
-fun wulfenite_N : N ;
-fun zinkenite_N : N ;
-fun ilmenite_N : N ;
-fun austenite_N : N ;
-fun olivenite_N : N ;
-fun lignite_N : N ;
-fun gelignite_N : N ;
-fun kainite_N : N ;
-fun vanadinite_N : N ;
-fun langbeinite_N : N ;
-fun nephelinite_N : N ;
-fun kaolinite_N : N ;
-fun gadolinite_N : N ;
-fun uraninite_N : N ;
-fun pinite_N : N ;
-fun belemnite_N : N ;
-fun hausmannite_N : N ;
-fun stannite_N : N ;
-fun ebonite_N : N ;
-fun aconite_N : N ;
-fun taconite_N : N ;
-fun glauconite_N : N ;
-fun rhodonite_N : N ;
-fun aragonite_N : N ;
-fun paragonite_N : N ;
-fun amblygonite_N : N ;
-fun limonite_N : N ;
-fun ammonite_N : N ;
-fun fergusonite_N : N ;
-fun bentonite_N : N ;
-fun wollastonite_N : N ;
-fun kernite_N : N ;
-fun bornite_N : N ;
-fun gunite_N : N ;
-fun hydrazoite_N : N ;
-fun trophozoite_N : N ;
-fun merozoite_N : N ;
-fun sporozoite_N : N ;
-fun phlogopite_N : N ;
-fun spite_N : N ;
-fun despite_N : N ;
-fun respite_N : N ;
-fun rite_N : N ;
-fun sybarite_N : N ;
-fun hypocrite_N : N ;
-fun archimandrite_N : N ;
-fun alexandrite_N : N ;
-fun dendrite_N : N ;
-fun chondrite_N : N ;
-fun achondrite_N : N ;
-fun rensselaerite_N : N ;
-fun glycerite_N : N ;
-fun siderite_N : N ;
-fun cordierite_N : N ;
-fun garnierite_N : N ;
-fun sclerite_N : N ;
-fun millerite_N : N ;
-fun kieserite_N : N ;
-fun laterite_N : N ;
-fun preterite_N : N ;
-fun cassiterite_N : N ;
-fun marguerite_N : N ;
-fun nephrite_N : N ;
-fun erythrite_N : N ;
-fun meteorite_N : N ;
-fun micrometeorite_N : N ;
-fun anchorite_N : N ;
-fun thorite_N : N ;
-fun diorite_N : N ;
-fun chlorite_N : N ;
-fun hypochlorite_N : N ;
-fun evaporite_N : N ;
-fun fluorite_N : N ;
-fun favorite_N : N ;
-fun sprite_N : N ;
-fun cuprite_N : N ;
-fun ferrite_N : N ;
-fun nitrite_N : N ;
-fun labourite_N : N ;
-fun damourite_N : N ;
-fun favourite_N : N ;
-fun azurite_N : N ;
-fun rewrite_N : N ;
-fun pyrite_N : N ;
-fun chalcopyrite_N : N ;
-fun arsenopyrite_N : N ;
-fun site_N : N ;
-fun 'bomb-site_N' : N ;
-fun 'launching-site_N' : N ;
-fun pallasite_N : N ;
-fun bastnasite_N : N ;
-fun parasite_N : N ;
-fun hemiparasite_N : N ;
-fun endoparasite_N : N ;
-fun ectoparasite_N : N ;
-fun gibbsite_N : N ;
-fun adesite_N : N ;
-fun andesite_N : N ;
-fun magnesite_N : N ;
-fun requisite_N : N ;
-fun prerequisite_N : N ;
-fun perquisite_N : N ;
-fun martensite_N : N ;
-fun chamosite_N : N ;
-fun composite_N : N ;
-fun opposite_N : N ;
-fun rhodochrosite_N : N ;
-fun phillipsite_N : N ;
-fun campsite_N : N ;
-fun cerussite_N : N ;
-fun pyrolusite_N : N ;
-fun haematite_N : N ;
-fun hematite_N : N ;
-fun pegmatite_N : N ;
-fun apatite_N : N ;
-fun fluorapatite_N : N ;
-fun ratite_N : N ;
-fun stalactite_N : N ;
-fun magnetite_N : N ;
-fun petite_N : N ;
-fun appetite_N : N ;
-fun thortveitite_N : N ;
-fun tektite_N : N ;
-fun cobaltite_N : N ;
-fun smaltite_N : N ;
-fun argentite_N : N ;
-fun cementite_N : N ;
-fun peridotite_N : N ;
-fun pyrrhotite_N : N ;
-fun biotite_N : N ;
-fun carnotite_N : N ;
-fun celestite_N : N ;
-fun transvestite_N : N ;
-fun mesquite_N : N ;
-fun suite_N : N ;
-fun sylvite_N : N ;
-fun invite_N : N ;
-fun muscovite_N : N ;
-fun bauxite_N : N ;
-fun baddeleyite_N : N ;
-fun chabazite_N : N ;
-fun monazite_N : N ;
-fun kunzite_N : N ;
-fun quartzite_N : N ;
-fun wurtzite_N : N ;
-fun ante_N : N ;
-fun confidante_N : N ;
-fun andante_N : N ;
-fun bacchante_N : N ;
-fun vigilante_N : N ;
-fun diamante_N : N ;
-fun transmigrante_N : N ;
-fun courante_N : N ;
-fun 'poste restante_N' : N ;
-fun dilettante_N : N ;
-fun debutante_N : N ;
-fun débutante_N : N ;
-fun sente_N : N ;
-fun entente_N : N ;
-fun détente_N : N ;
-fun monte_N : N ;
-fun cote_N : N ;
-fun entrecote_N : N ;
-fun dovecote_N : N ;
-fun anecdote_N : N ;
-fun antidote_N : N ;
-fun zoomastigote_N : N ;
-fun hypermastigote_N : N ;
-fun polymastigote_N : N ;
-fun ravigote_N : N ;
-fun zygote_N : N ;
-fun homozygote_N : N ;
-fun heterozygote_N : N ;
-fun amniote_N : N ;
-fun matelote_N : N ;
-fun mote_N : N ;
-fun note_N : N ;
-fun parthenote_N : N ;
-fun banknote_N : N ;
-fun footnote_N : N ;
-fun keynote_N : N ;
-fun capote_N : N ;
-fun sapote_N : N ;
-fun compote_N : N ;
-fun garrote_N : N ;
-fun creosote_N : N ;
-fun tote_N : N ;
-fun asymptote_N : N ;
-fun quote_N : N ;
-fun vote_N : N ;
-fun peyote_N : N ;
-fun coyote_N : N ;
-fun prokaryote_N : N ;
-fun eukaryote_N : N ;
-fun azote_N : N ;
-fun ecarte_N : N ;
-fun forte_N : N ;
-fun pianoforte_N : N ;
-fun torte_N : N ;
-fun baste_N : N ;
-fun caste_N : N ;
-fun 'half-caste_N' : N ;
-fun conacaste_N : N ;
-fun outcaste_N : N ;
-fun haste_N : N ;
-fun paste_N : N ;
-fun fishpaste_N : N ;
-fun toothpaste_N : N ;
-fun tagasaste_N : N ;
-fun taste_N : N ;
-fun foretaste_N : N ;
-fun aftertaste_N : N ;
-fun distaste_N : N ;
-fun waste_N : N ;
-fun modiste_N : N ;
-fun piste_N : N ;
-fun batiste_N : N ;
-fun artiste_N : N ;
-fun riposte_N : N ;
-fun matte_N : N ;
-fun barbette_N : N ;
-fun suffragette_N : N ;
-fun georgette_N : N ;
-fun courgette_N : N ;
-fun planchette_N : N ;
-fun brochette_N : N ;
-fun couchette_N : N ;
-fun oubliette_N : N ;
-fun serviette_N : N ;
-fun diskette_N : N ;
-fun palette_N : N ;
-fun omelette_N : N ;
-fun flannelette_N : N ;
-fun novelette_N : N ;
-fun pallette_N : N ;
-fun epaulette_N : N ;
-fun poulette_N : N ;
-fun roulette_N : N ;
-fun roomette_N : N ;
-fun kitchenette_N : N ;
-fun vignette_N : N ;
-fun lorgnette_N : N ;
-fun dinette_N : N ;
-fun midinette_N : N ;
-fun stockinette_N : N ;
-fun maisonnette_N : N ;
-fun marionette_N : N ;
-fun mignonette_N : N ;
-fun maisonette_N : N ;
-fun lunette_N : N ;
-fun brunette_N : N ;
-fun pipette_N : N ;
-fun cigarette_N : N ;
-fun lazarette_N : N ;
-fun soubrette_N : N ;
-fun launderette_N : N ;
-fun usherette_N : N ;
-fun leatherette_N : N ;
-fun farmerette_N : N ;
-fun aigrette_N : N ;
-fun vinaigrette_N : N ;
-fun 'drum-majorette_N' : N ;
-fun barrette_N : N ;
-fun burette_N : N ;
-fun curette_N : N ;
-fun anisette_N : N ;
-fun rosette_N : N ;
-fun cassette_N : N ;
-fun videocassette_N : N ;
-fun audiocassette_N : N ;
-fun musette_N : N ;
-fun octette_N : N ;
-fun sextette_N : N ;
-fun silhouette_N : N ;
-fun pirouette_N : N ;
-fun briquette_N : N ;
-fun etiquette_N : N ;
-fun banquette_N : N ;
-fun coquette_N : N ;
-fun moquette_N : N ;
-fun croquette_N : N ;
-fun statuette_N : N ;
-fun corvette_N : N ;
-fun layette_N : N ;
-fun winceyette_N : N ;
-fun gazette_N : N ;
-fun cocotte_N : N ;
-fun charlotte_N : N ;
-fun culotte_N : N ;
-fun garotte_N : N ;
-fun garrotte_N : N ;
-fun gavotte_N : N ;
-fun butte_N : N ;
-fun saute_N : N ;
-fun tribute_N : N ;
-fun attribute_N : N ;
-fun scute_N : N ;
-fun chute_N : N ;
-fun parachute_N : N ;
-fun waterchute_N : N ;
-fun jute_N : N ;
-fun lute_N : N ;
-fun salute_N : N ;
-fun flute_N : N ;
-fun 'nose-flute_N' : N ;
-fun solute_N : N ;
-fun absolute_N : N ;
-fun volute_N : N ;
-fun mute_N : N ;
-fun 'deaf mute_N' : N ;
-fun malamute_N : N ;
-fun commute_N : N ;
-fun minute_N : N ;
-fun veloute_N : N ;
-fun route_N : N ;
-fun repute_N : N ;
-fun disrepute_N : N ;
-fun dispute_N : N ;
-fun brute_N : N ;
-fun statute_N : N ;
-fun substitute_N : N ;
-fun institute_N : N ;
-fun prostitute_N : N ;
-fun byte_N : N ;
-fun megabyte_N : N ;
-fun gigabyte_N : N ;
-fun terabyte_N : N ;
-fun petabyte_N : N ;
-fun zettabyte_N : N ;
-fun yottabyte_N : N ;
-fun exabyte_N : N ;
-fun kilobyte_N : N ;
-fun microgliacyte_N : N ;
-fun neurogliacyte_N : N ;
-fun leucocyte_N : N ;
-fun osteocyte_N : N ;
-fun phagocyte_N : N ;
-fun lymphocyte_N : N ;
-fun acanthocyte_N : N ;
-fun histiocyte_N : N ;
-fun leukocyte_N : N ;
-fun megalocyte_N : N ;
-fun myelocyte_N : N ;
-fun reticulocyte_N : N ;
-fun granulocyte_N : N ;
-fun melanocyte_N : N ;
-fun choanocyte_N : N ;
-fun monocyte_N : N ;
-fun oocyte_N : N ;
-fun microcyte_N : N ;
-fun oligodendrocyte_N : N ;
-fun siderocyte_N : N ;
-fun spherocyte_N : N ;
-fun astrocyte_N : N ;
-fun spermatocyte_N : N ;
-fun gametocyte_N : N ;
-fun blastocyte_N : N ;
-fun akaryocyte_N : N ;
-fun megakaryocyte_N : N ;
-fun troglodyte_N : N ;
-fun hemiepiphyte_N : N ;
-fun myrmecophyte_N : N ;
-fun pteridophyte_N : N ;
-fun geophyte_N : N ;
-fun neophyte_N : N ;
-fun osteophyte_N : N ;
-fun lithophyte_N : N ;
-fun halophyte_N : N ;
-fun psilophyte_N : N ;
-fun thallophyte_N : N ;
-fun holophyte_N : N ;
-fun zoophyte_N : N ;
-fun hygrophyte_N : N ;
-fun sporophyte_N : N ;
-fun saprophyte_N : N ;
-fun mesophyte_N : N ;
-fun spermatophyte_N : N ;
-fun gametophyte_N : N ;
-fun megagametophyte_N : N ;
-fun microgametophyte_N : N ;
-fun autophyte_N : N ;
-fun bryophyte_N : N ;
-fun proselyte_N : N ;
-fun acolyte_N : N ;
-fun electrolyte_N : N ;
-fun polyelectrolyte_N : N ;
-fun fête_N : N ;
-fun arête_N : N ;
-fun 'tête-à-tête_N' : N ;
-fun cue_N : N ;
-fun barbecue_N : N ;
-fun fescue_N : N ;
-fun rescue_N : N ;
-fun miscue_N : N ;
-fun due_N : N ;
-fun residue_N : N ;
-fun fondue_N : N ;
-fun queue_N : N ;
-fun ague_N : N ;
-fun league_N : N ;
-fun colleague_N : N ;
-fun plague_N : N ;
-fun segue_N : N ;
-fun intrigue_N : N ;
-fun fatigue_N : N ;
-fun cangue_N : N ;
-fun harangue_N : N ;
-fun dengue_N : N ;
-fun meringue_N : N ;
-fun 'chaise longue_N' : N ;
-fun tongue_N : N ;
-fun bluetongue_N : N ;
-fun earthtongue_N : N ;
-fun oxtongue_N : N ;
-fun pedagogue_N : N ;
-fun demagogue_N : N ;
-fun emmenagogue_N : N ;
-fun hypnagogue_N : N ;
-fun synagogue_N : N ;
-fun galactagogue_N : N ;
-fun decalogue_N : N ;
-fun dialogue_N : N ;
-fun analogue_N : N ;
-fun catalogue_N : N ;
-fun eclogue_N : N ;
-fun travelogue_N : N ;
-fun epilogue_N : N ;
-fun monologue_N : N ;
-fun prologue_N : N ;
-fun duologue_N : N ;
-fun rogue_N : N ;
-fun brogue_N : N ;
-fun drogue_N : N ;
-fun vogue_N : N ;
-fun morgue_N : N ;
-fun fugue_N : N ;
-fun hue_N : N ;
-fun value_N : N ;
-fun eigenvalue_N : N ;
-fun blue_N : N ;
-fun 'true-blue_N' : N ;
-fun 'peacock-blue_N' : N ;
-fun 'sky-blue_N' : N ;
-fun clue_N : N ;
-fun flue_N : N ;
-fun glue_N : N ;
-fun venue_N : N ;
-fun avenue_N : N ;
-fun revenue_N : N ;
-fun retinue_N : N ;
-fun ingénue_N : N ;
-fun macaque_N : N ;
-fun claque_N : N ;
-fun plaque_N : N ;
-fun cheque_N : N ;
-fun discotheque_N : N ;
-fun cacique_N : N ;
-fun oblique_N : N ;
-fun clique_N : N ;
-fun silique_N : N ;
-fun technique_N : N ;
-fun pique_N : N ;
-fun physique_N : N ;
-fun critique_N : N ;
-fun antique_N : N ;
-fun mystique_N : N ;
-fun boutique_N : N ;
-fun bezique_N : N ;
-fun calque_N : N ;
-fun catafalque_N : N ;
-fun pulque_N : N ;
-fun toque_N : N ;
-fun barque_N : N ;
-fun marque_N : N ;
-fun cirque_N : N ;
-fun torque_N : N ;
-fun casque_N : N ;
-fun monegasque_N : N ;
-fun masque_N : N ;
-fun arabesque_N : N ;
-fun burlesque_N : N ;
-fun romanesque_N : N ;
-fun grotesque_N : N ;
-fun bisque_N : N ;
-fun odalisque_N : N ;
-fun mosque_N : N ;
-fun rue_N : N ;
-fun sprue_N : N ;
-fun true_N : N ;
-fun issue_N : N ;
-fun reissue_N : N ;
-fun tissue_N : N ;
-fun statue_N : N ;
-fun virtue_N : N ;
-fun battue_N : N ;
-fun revue_N : N ;
-fun cave_N : N ;
-fun heave_N : N ;
-fun leave_N : N ;
-fun 'sick-leave_N' : N ;
-fun greave_N : N ;
-fun weave_N : N ;
-fun agave_N : N ;
-fun shave_N : N ;
-fun spokeshave_N : N ;
-fun enclave_N : N ;
-fun conclave_N : N ;
-fun autoclave_N : N ;
-fun slave_N : N ;
-fun 'galley-slave_N' : N ;
-fun nave_N : N ;
-fun knave_N : N ;
-fun pave_N : N ;
-fun rave_N : N ;
-fun brave_N : N ;
-fun grave_N : N ;
-fun landgrave_N : N ;
-fun margrave_N : N ;
-fun burgrave_N : N ;
-fun trave_N : N ;
-fun architrave_N : N ;
-fun save_N : N ;
-fun octave_N : N ;
-fun stave_N : N ;
-fun wave_N : N ;
-fun 'sound-wave_N' : N ;
-fun brainwave_N : N ;
-fun microwave_N : N ;
-fun heatwave_N : N ;
-fun eve_N : N ;
-fun sleeve_N : N ;
-fun shirtsleeve_N : N ;
-fun peeve_N : N ;
-fun reeve_N : N ;
-fun 'make-believe_N' : N ;
-fun reprieve_N : N ;
-fun sieve_N : N ;
-fun neve_N : N ;
-fun breve_N : N ;
-fun semibreve_N : N ;
-fun dive_N : N ;
-fun 'crash-dive_N' : N ;
-fun 'power-dive_N' : N ;
-fun nosedive_N : N ;
-fun endive_N : N ;
-fun give_N : N ;
-fun hive_N : N ;
-fun chive_N : N ;
-fun archive_N : N ;
-fun beehive_N : N ;
-fun jive_N : N ;
-fun olive_N : N ;
-fun drive_N : N ;
-fun 'test-drive_N' : N ;
-fun 'whist-drive_N' : N ;
-fun overdrive_N : N ;
-fun abrasive_N : N ;
-fun adhesive_N : N ;
-fun compulsive_N : N ;
-fun defensive_N : N ;
-fun offensive_N : N ;
-fun counteroffensive_N : N ;
-fun hypotensive_N : N ;
-fun hypertensive_N : N ;
-fun antihypertensive_N : N ;
-fun plosive_N : N ;
-fun explosive_N : N ;
-fun corrosive_N : N ;
-fun subversive_N : N ;
-fun passive_N : N ;
-fun progressive_N : N ;
-fun depressive_N : N ;
-fun 'manic-depressive_N' : N ;
-fun obsessive_N : N ;
-fun missive_N : N ;
-fun antitussive_N : N ;
-fun exclusive_N : N ;
-fun fricative_N : N ;
-fun vocative_N : N ;
-fun dative_N : N ;
-fun sedative_N : N ;
-fun negative_N : N ;
-fun prerogative_N : N ;
-fun interrogative_N : N ;
-fun purgative_N : N ;
-fun palliative_N : N ;
-fun initiative_N : N ;
-fun ablative_N : N ;
-fun relative_N : N ;
-fun correlative_N : N ;
-fun contemplative_N : N ;
-fun superlative_N : N ;
-fun copulative_N : N ;
-fun affirmative_N : N ;
-fun formative_N : N ;
-fun native_N : N ;
-fun nominative_N : N ;
-fun carminative_N : N ;
-fun determinative_N : N ;
-fun alternative_N : N ;
-fun inchoative_N : N ;
-fun comparative_N : N ;
-fun imperative_N : N ;
-fun operative_N : N ;
-fun cooperative_N : N ;
-fun iterative_N : N ;
-fun commemorative_N : N ;
-fun restorative_N : N ;
-fun narrative_N : N ;
-fun durative_N : N ;
-fun accusative_N : N ;
-fun recitative_N : N ;
-fun representative_N : N ;
-fun frequentative_N : N ;
-fun preventative_N : N ;
-fun optative_N : N ;
-fun derivative_N : N ;
-fun preservative_N : N ;
-fun conservative_N : N ;
-fun neoconservative_N : N ;
-fun laxative_N : N ;
-fun fixative_N : N ;
-fun active_N : N ;
-fun perfective_N : N ;
-fun imperfective_N : N ;
-fun objective_N : N ;
-fun adjective_N : N ;
-fun collective_N : N ;
-fun connective_N : N ;
-fun retrospective_N : N ;
-fun perspective_N : N ;
-fun directive_N : N ;
-fun corrective_N : N ;
-fun detective_N : N ;
-fun invective_N : N ;
-fun subjunctive_N : N ;
-fun conjunctive_N : N ;
-fun expletive_N : N ;
-fun additive_N : N ;
-fun fugitive_N : N ;
-fun primitive_N : N ;
-fun genitive_N : N ;
-fun lenitive_N : N ;
-fun infinitive_N : N ;
-fun positive_N : N ;
-fun partitive_N : N ;
-fun substantive_N : N ;
-fun incentive_N : N ;
-fun disincentive_N : N ;
-fun preventive_N : N ;
-fun motive_N : N ;
-fun locomotive_N : N ;
-fun captive_N : N ;
-fun contraceptive_N : N ;
-fun consumptive_N : N ;
-fun digestive_N : N ;
-fun executive_N : N ;
-fun diminutive_N : N ;
-fun 'qui vive_N' : N ;
-fun reflexive_N : N ;
-fun salve_N : N ;
-fun valve_N : N ;
-fun 'sluice-valve_N' : N ;
-fun 'throttle-valve_N' : N ;
-fun 'safety-valve_N' : N ;
-fun bivalve_N : N ;
-fun helve_N : N ;
-fun resolve_N : N ;
-fun dissolve_N : N ;
-fun above_N : N ;
-fun cove_N : N ;
-fun alcove_N : N ;
-fun dove_N : N ;
-fun turtledove_N : N ;
-fun ringdove_N : N ;
-fun shove_N : N ;
-fun perijove_N : N ;
-fun apojove_N : N ;
-fun love_N : N ;
-fun 'light-o\'-love_N' : N ;
-fun 'cupboard-love_N' : N ;
-fun 'calf-love_N' : N ;
-fun clove_N : N ;
-fun truelove_N : N ;
-fun glove_N : N ;
-fun 'boxing-glove_N' : N ;
-fun foxglove_N : N ;
-fun ladylove_N : N ;
-fun move_N : N ;
-fun remove_N : N ;
-fun groove_N : N ;
-fun drove_N : N ;
-fun grove_N : N ;
-fun mangrove_N : N ;
-fun trove_N : N ;
-fun 'treasure-trove_N' : N ;
-fun stove_N : N ;
-fun 'gas-stove_N' : N ;
-fun 'spirit-stove_N' : N ;
-fun cookstove_N : N ;
-fun nerve_N : N ;
-fun serve_N : N ;
-fun reserve_N : N ;
-fun preserve_N : N ;
-fun conserve_N : N ;
-fun verve_N : N ;
-fun swerve_N : N ;
-fun curve_N : N ;
-fun mauve_N : N ;
-fun awe_N : N ;
-fun ewe_N : N ;
-fun lechwe_N : N ;
-fun axe_N : N ;
-fun 'ice-axe_N' : N ;
-fun 'battle-axe_N' : N ;
-fun poleaxe_N : N ;
-fun pickaxe_N : N ;
-fun annexe_N : N ;
-fun dye_N : N ;
-fun 'hair-dye_N' : N ;
-fun eye_N : N ;
-fun 'bull\'s-eye_N' : N ;
-fun deadeye_N : N ;
-fun redeye_N : N ;
-fun bigeye_N : N ;
-fun sockeye_N : N ;
-fun buckeye_N : N ;
-fun walleye_N : N ;
-fun goldeneye_N : N ;
-fun greeneye_N : N ;
-fun shuteye_N : N ;
-fun oxeye_N : N ;
-fun lye_N : N ;
-fun rye_N : N ;
-fun barye_N : N ;
-fun stye_N : N ;
-fun daze_N : N ;
-fun gaze_N : N ;
-fun haze_N : N ;
-fun kamikaze_N : N ;
-fun blaze_N : N ;
-fun glaze_N : N ;
-fun maze_N : N ;
-fun craze_N : N ;
-fun graze_N : N ;
-fun adze_N : N ;
-fun wheeze_N : N ;
-fun sneeze_N : N ;
-fun breeze_N : N ;
-fun 'sea-breeze_N' : N ;
-fun freeze_N : N ;
-fun 'wage-freeze_N' : N ;
-fun 'deep-freeze_N' : N ;
-fun antifreeze_N : N ;
-fun squeeze_N : N ;
-fun frieze_N : N ;
-fun trapeze_N : N ;
-fun baize_N : N ;
-fun maize_N : N ;
-fun prize_N : N ;
-fun size_N : N ;
-fun assize_N : N ;
-fun outsize_N : N ;
-fun bronze_N : N ;
-fun doze_N : N ;
-fun ooze_N : N ;
-fun booze_N : N ;
-fun shmooze_N : N ;
-fun snooze_N : N ;
-fun furze_N : N ;
-fun gauze_N : N ;
-fun fuze_N : N ;
-fun fiancée_N : N ;
-fun lycée_N : N ;
-fun protégée_N : N ;
-fun mêlée_N : N ;
-fun matinée_N : N ;
-fun épée_N : N ;
-fun soirée_N : N ;
-fun entrée_N : N ;
-fun purée_N : N ;
-fun 'arrière pensée_N' : N ;
-fun corvée_N : N ;
-fun sheaf_N : N ;
-fun leaf_N : N ;
-fun 'tea-leaf_N' : N ;
-fun 'maple-leaf_N' : N ;
-fun 'rose-leaf_N' : N ;
-fun 'fig-leaf_N' : N ;
-fun cloverleaf_N : N ;
-fun flyleaf_N : N ;
-fun loaf_N : N ;
-fun deaf_N : N ;
-fun 'gold-leaf_N' : N ;
-fun bloodleaf_N : N ;
-fun satinleaf_N : N ;
-fun leatherleaf_N : N ;
-fun waterleaf_N : N ;
-fun interleaf_N : N ;
-fun sweetleaf_N : N ;
-fun velvetleaf_N : N ;
-fun heartleaf_N : N ;
-fun pilaf_N : N ;
-fun kenaf_N : N ;
-fun oaf_N : N ;
-fun 'sugar-loaf_N' : N ;
-fun sugarloaf_N : N ;
-fun raf_N : N ;
-fun daraf_N : N ;
-fun wraf_N : N ;
-fun usaf_N : N ;
-fun beef_N : N ;
-fun thief_N : N ;
-fun 'sneak-thief_N' : N ;
-fun reef_N : N ;
-fun 'coral-reef_N' : N ;
-fun chef_N : N ;
-fun fief_N : N ;
-fun chief_N : N ;
-fun kerchief_N : N ;
-fun neckerchief_N : N ;
-fun handkerchief_N : N ;
-fun 'pocket-handkerchief_N' : N ;
-fun mischief_N : N ;
-fun belief_N : N ;
-fun unbelief_N : N ;
-fun disbelief_N : N ;
-fun relief_N : N ;
-fun 'bas-relief_N' : N ;
-fun 'low-relief_N' : N ;
-fun brief_N : N ;
-fun grief_N : N ;
-fun clef_N : N ;
-fun ref_N : N ;
-fun 'riff-raff_N' : N ;
-fun caff_N : N ;
-fun gaff_N : N ;
-fun shandygaff_N : N ;
-fun chaff_N : N ;
-fun sclaff_N : N ;
-fun pilaff_N : N ;
-fun staff_N : N ;
-fun pikestaff_N : N ;
-fun flagstaff_N : N ;
-fun distaff_N : N ;
-fun tipstaff_N : N ;
-fun quarterstaff_N : N ;
-fun quaff_N : N ;
-fun teff_N : N ;
-fun biff_N : N ;
-fun whiff_N : N ;
-fun skiff_N : N ;
-fun cliff_N : N ;
-fun bailiff_N : N ;
-fun niff_N : N ;
-fun sniff_N : N ;
-fun spiff_N : N ;
-fun riff_N : N ;
-fun tariff_N : N ;
-fun midriff_N : N ;
-fun sheriff_N : N ;
-fun tiff_N : N ;
-fun caitiff_N : N ;
-fun plaintiff_N : N ;
-fun pontiff_N : N ;
-fun stiff_N : N ;
-fun mastiff_N : N ;
-fun quiff_N : N ;
-fun 'mid-off_N' : N ;
-fun 'rake-off_N' : N ;
-fun 'take-off_N' : N ;
-fun 'write-off_N' : N ;
-fun 'brush-off_N' : N ;
-fun 'pull-off_N' : N ;
-fun 'spin-off_N' : N ;
-fun 'turn-off_N' : N ;
-fun 'run-off_N' : N ;
-fun 'rip-off_N' : N ;
-fun 'tip-off_N' : N ;
-fun 'lift-off_N' : N ;
-fun 'blast-off_N' : N ;
-fun 'show-off_N' : N ;
-fun 'lay-off_N' : N ;
-fun 'play-off_N' : N ;
-fun scoff_N : N ;
-fun handoff_N : N ;
-fun sendoff_N : N ;
-fun tradeoff_N : N ;
-fun teeoff_N : N ;
-fun feoff_N : N ;
-fun takeoff_N : N ;
-fun kickoff_N : N ;
-fun knockoff_N : N ;
-fun selloff_N : N ;
-fun spinoff_N : N ;
-fun turnoff_N : N ;
-fun runoff_N : N ;
-fun toff_N : N ;
-fun liftoff_N : N ;
-fun blastoff_N : N ;
-fun cutoff_N : N ;
-fun putoff_N : N ;
-fun layoff_N : N ;
-fun playoff_N : N ;
-fun payoff_N : N ;
-fun buff_N : N ;
-fun 'blindman\'s buff_N' : N ;
-fun rebuff_N : N ;
-fun cuff_N : N ;
-fun handcuff_N : N ;
-fun scuff_N : N ;
-fun duff_N : N ;
-fun huff_N : N ;
-fun luff_N : N ;
-fun bluff_N : N ;
-fun fluff_N : N ;
-fun muff_N : N ;
-fun earmuff_N : N ;
-fun snuff_N : N ;
-fun puff_N : N ;
-fun 'powder-puff_N' : N ;
-fun powderpuff_N : N ;
-fun ruff_N : N ;
-fun scruff_N : N ;
-fun dandruff_N : N ;
-fun woodruff_N : N ;
-fun tuff_N : N ;
-fun stuff_N : N ;
-fun 'sob-stuff_N' : N ;
-fun breadstuff_N : N ;
-fun foodstuff_N : N ;
-fun dyestuff_N : N ;
-fun naif_N : N ;
-fun waif_N : N ;
-fun mudhif_N : N ;
-fun calif_N : N ;
-fun gonif_N : N ;
-fun coif_N : N ;
-fun serif_N : N ;
-fun massif_N : N ;
-fun aperitif_N : N ;
-fun motif_N : N ;
-fun calf_N : N ;
-fun half_N : N ;
-fun behalf_N : N ;
-fun elf_N : N ;
-fun shelf_N : N ;
-fun self_N : N ;
-fun wolf_N : N ;
-fun werewolf_N : N ;
-fun delf_N : N ;
-fun bookshelf_N : N ;
-fun pelf_N : N ;
-fun golf_N : N ;
-fun 'clock-golf_N' : N ;
-fun aardwolf_N : N ;
-fun gulf_N : N ;
-fun imf_N : N ;
-fun bumf_N : N ;
-fun goof_N : N ;
-fun hoof_N : N ;
-fun poof_N : N ;
-fun spoof_N : N ;
-fun roof_N : N ;
-fun 'sunshine-roof_N' : N ;
-fun sunroof_N : N ;
-fun proof_N : N ;
-fun 'galley-proof_N' : N ;
-fun reproof_N : N ;
-fun waterproof_N : N ;
-fun disproof_N : N ;
-fun woof_N : N ;
-fun scarf_N : N ;
-fun headscarf_N : N ;
-fun wharf_N : N ;
-fun dwarf_N : N ;
-fun zarf_N : N ;
-fun serf_N : N ;
-fun scurf_N : N ;
-fun surf_N : N ;
-fun turf_N : N ;
-fun lilyturf_N : N ;
-fun pouf_N : N ;
-fun shebang_N : N ;
-fun drubbing_N : N ;
-fun wording_N : N ;
-fun offing_N : N ;
-fun licking_N : N ;
-fun asking_N : N ;
-fun twinkling_N : N ;
-fun gloaming_N : N ;
-fun oncoming_N : N ;
-fun strapping_N : N ;
-fun footing_N : N ;
-fun kg_N : N ;
-fun mg_N : N ;
-fun offspring_N : N ;
-fun herring_N : N ;
-fun 'lady-in-waiting_N' : N ;
-fun whiting_N : N ;
-fun mpg_N : N ;
-fun g_N : N ;
-fun bag_N : N ;
-fun 'tea-bag_N' : N ;
-fun 'game-bag_N' : N ;
-fun 'sleeping-bag_N' : N ;
-fun 'carrier-bag_N' : N ;
-fun fleabag_N : N ;
-fun seabag_N : N ;
-fun handbag_N : N ;
-fun sandbag_N : N ;
-fun windbag_N : N ;
-fun saddlebag_N : N ;
-fun gamebag_N : N ;
-fun nosebag_N : N ;
-fun ragbag_N : N ;
-fun workbag_N : N ;
-fun mailbag_N : N ;
-fun schoolbag_N : N ;
-fun beanbag_N : N ;
-fun gasbag_N : N ;
-fun carpetbag_N : N ;
-fun kitbag_N : N ;
-fun postbag_N : N ;
-fun moneybag_N : N ;
-fun fag_N : N ;
-fun 'brain-fag_N' : N ;
-fun gag_N : N ;
-fun hag_N : N ;
-fun shag_N : N ;
-fun jag_N : N ;
-fun lag_N : N ;
-fun 'time-lag_N' : N ;
-fun flag_N : N ;
-fun 'yellow-flag_N' : N ;
-fun slag_N : N ;
-fun gulag_N : N ;
-fun greylag_N : N ;
-fun mag_N : N ;
-fun nag_N : N ;
-fun snag_N : N ;
-fun rag_N : N ;
-fun brag_N : N ;
-fun crag_N : N ;
-fun scrag_N : N ;
-fun drag_N : N ;
-fun dishrag_N : N ;
-fun sprag_N : N ;
-fun sag_N : N ;
-fun tag_N : N ;
-fun ragtag_N : N ;
-fun stag_N : N ;
-fun wag_N : N ;
-fun scalawag_N : N ;
-fun swag_N : N ;
-fun scallywag_N : N ;
-fun zigzag_N : N ;
-fun eeg_N : N ;
-fun keg_N : N ;
-fun skeg_N : N ;
-fun leg_N : N ;
-fun foreleg_N : N ;
-fun dogleg_N : N ;
-fun blackleg_N : N ;
-fun bootleg_N : N ;
-fun bowleg_N : N ;
-fun nutmeg_N : N ;
-fun peg_N : N ;
-fun 'clothes-peg_N' : N ;
-fun 'tent-peg_N' : N ;
-fun dreg_N : N ;
-fun teg_N : N ;
-fun thalweg_N : N ;
-fun egg_N : N ;
-fun 'nest-egg_N' : N ;
-fun glogg_N : N ;
-fun dig_N : N ;
-fun shindig_N : N ;
-fun fig_N : N ;
-fun caprifig_N : N ;
-fun gig_N : N ;
-fun whirligig_N : N ;
-fun fizgig_N : N ;
-fun whig_N : N ;
-fun jig_N : N ;
-fun thingmajig_N : N ;
-fun thingumajig_N : N ;
-fun pfennig_N : N ;
-fun pig_N : N ;
-fun 'guinea-pig_N' : N ;
-fun 'sucking-pig_N' : N ;
-fun rig_N : N ;
-fun 'oil-rig_N' : N ;
-fun brig_N : N ;
-fun prig_N : N ;
-fun sprig_N : N ;
-fun wig_N : N ;
-fun 'afro-wig_N' : N ;
-fun bigwig_N : N ;
-fun periwig_N : N ;
-fun earwig_N : N ;
-fun swig_N : N ;
-fun twig_N : N ;
-fun bang_N : N ;
-fun whizbang_N : N ;
-fun fang_N : N ;
-fun gang_N : N ;
-fun 'chain-gang_N' : N ;
-fun 'press-gang_N' : N ;
-fun hang_N : N ;
-fun bhang_N : N ;
-fun overhang_N : N ;
-fun whang_N : N ;
-fun kiang_N : N ;
-fun kaoliang_N : N ;
-fun clang_N : N ;
-fun slang_N : N ;
-fun siamang_N : N ;
-fun pang_N : N ;
-fun trepang_N : N ;
-fun kalumpang_N : N ;
-fun marang_N : N ;
-fun parang_N : N ;
-fun boomerang_N : N ;
-fun prang_N : N ;
-fun sprechgesang_N : N ;
-fun tang_N : N ;
-fun satang_N : N ;
-fun mustang_N : N ;
-fun 'orang-outang_N' : N ;
-fun mahuang_N : N ;
-fun twang_N : N ;
-fun yang_N : N ;
-fun ginseng_N : N ;
-fun banteng_N : N ;
-fun mayeng_N : N ;
-fun swabbing_N : N ;
-fun webbing_N : N ;
-fun fibbing_N : N ;
-fun ribbing_N : N ;
-fun throbbing_N : N ;
-fun dubbing_N : N ;
-fun clubbing_N : N ;
-fun rubbing_N : N ;
-fun subbing_N : N ;
-fun 'rock-climbing_N' : N ;
-fun bombing_N : N ;
-fun plumbing_N : N ;
-fun tubing_N : N ;
-fun facing_N : N ;
-fun surfacing_N : N ;
-fun lacing_N : N ;
-fun placing_N : N ;
-fun pacing_N : N ;
-fun spacing_N : N ;
-fun 'double-spacing_N' : N ;
-fun 'single-spacing_N' : N ;
-fun racing_N : N ;
-fun horseracing_N : N ;
-fun tracing_N : N ;
-fun icing_N : N ;
-fun slicing_N : N ;
-fun rejoicing_N : N ;
-fun voicing_N : N ;
-fun pricing_N : N ;
-fun servicing_N : N ;
-fun dancing_N : N ;
-fun 'tap-dancing_N' : N ;
-fun financing_N : N ;
-fun fencing_N : N ;
-fun trouncing_N : N ;
-fun adducing_N : N ;
-fun reducing_N : N ;
-fun ding_N : N ;
-fun beading_N : N ;
-fun heading_N : N ;
-fun 'cross-heading_N' : N ;
-fun subheading_N : N ;
-fun crossheading_N : N ;
-fun leading_N : N ;
-fun pleading_N : N ;
-fun reading_N : N ;
-fun 'lip-reading_N' : N ;
-fun 'play-reading_N' : N ;
-fun lipreading_N : N ;
-fun misreading_N : N ;
-fun shading_N : N ;
-fun lading_N : N ;
-fun rollerblading_N : N ;
-fun loading_N : N ;
-fun unloading_N : N ;
-fun grading_N : N ;
-fun trading_N : N ;
-fun wading_N : N ;
-fun padding_N : N ;
-fun wadding_N : N ;
-fun bedding_N : N ;
-fun featherbedding_N : N ;
-fun shedding_N : N ;
-fun 'load-shedding_N' : N ;
-fun sledding_N : N ;
-fun bobsledding_N : N ;
-fun wedding_N : N ;
-fun bidding_N : N ;
-fun plodding_N : N ;
-fun budding_N : N ;
-fun pudding_N : N ;
-fun 'pease-pudding_N' : N ;
-fun 'plum-pudding_N' : N ;
-fun receding_N : N ;
-fun proceeding_N : N ;
-fun feeding_N : N ;
-fun spoonfeeding_N : N ;
-fun overfeeding_N : N ;
-fun bleeding_N : N ;
-fun speeding_N : N ;
-fun breeding_N : N ;
-fun 'ill-breeding_N' : N ;
-fun inbreeding_N : N ;
-fun upbraiding_N : N ;
-fun hiding_N : N ;
-fun chiding_N : N ;
-fun gliding_N : N ;
-fun backsliding_N : N ;
-fun pyramiding_N : N ;
-fun riding_N : N ;
-fun surfriding_N : N ;
-fun siding_N : N ;
-fun gelding_N : N ;
-fun fielding_N : N ;
-fun shielding_N : N ;
-fun welding_N : N ;
-fun gilding_N : N ;
-fun building_N : N ;
-fun 'jerry-building_N' : N ;
-fun rebuilding_N : N ;
-fun shipbuilding_N : N ;
-fun outbuilding_N : N ;
-fun bodybuilding_N : N ;
-fun wilding_N : N ;
-fun scolding_N : N ;
-fun scaffolding_N : N ;
-fun unfolding_N : N ;
-fun holding_N : N ;
-fun landholding_N : N ;
-fun shareholding_N : N ;
-fun withholding_N : N ;
-fun stockholding_N : N ;
-fun smallholding_N : N ;
-fun molding_N : N ;
-fun moulding_N : N ;
-fun landing_N : N ;
-fun 'crash-landing_N' : N ;
-fun standing_N : N ;
-fun understanding_N : N ;
-fun misunderstanding_N : N ;
-fun ending_N : N ;
-fun bending_N : N ;
-fun lending_N : N ;
-fun mending_N : N ;
-fun spending_N : N ;
-fun expending_N : N ;
-fun sending_N : N ;
-fun vending_N : N ;
-fun binding_N : N ;
-fun bookbinding_N : N ;
-fun finding_N : N ;
-fun 'fault-finding_N' : N ;
-fun faultfinding_N : N ;
-fun grinding_N : N ;
-fun bonding_N : N ;
-fun pounding_N : N ;
-fun rounding_N : N ;
-fun grounding_N : N ;
-fun sounding_N : N ;
-fun 'echo-sounding_N' : N ;
-fun boding_N : N ;
-fun foreboding_N : N ;
-fun decoding_N : N ;
-fun recoding_N : N ;
-fun encoding_N : N ;
-fun brooding_N : N ;
-fun boarding_N : N ;
-fun skateboarding_N : N ;
-fun weatherboarding_N : N ;
-fun snowboarding_N : N ;
-fun hoarding_N : N ;
-fun forwarding_N : N ;
-fun recording_N : N ;
-fun 'sound-recording_N' : N ;
-fun rewording_N : N ;
-fun clouding_N : N ;
-fun crowding_N : N ;
-fun being_N : N ;
-fun 'well-being_N' : N ;
-fun wellbeing_N : N ;
-fun nonbeing_N : N ;
-fun peeing_N : N ;
-fun sightseeing_N : N ;
-fun ageing_N : N ;
-fun dyeing_N : N ;
-fun chafing_N : N ;
-fun briefing_N : N ;
-fun debriefing_N : N ;
-fun puffing_N : N ;
-fun stuffing_N : N ;
-fun golfing_N : N ;
-fun roofing_N : N ;
-fun waterproofing_N : N ;
-fun surfing_N : N ;
-fun aging_N : N ;
-fun packaging_N : N ;
-fun imaging_N : N ;
-fun paging_N : N ;
-fun foraging_N : N ;
-fun messaging_N : N ;
-fun staging_N : N ;
-fun ravaging_N : N ;
-fun edging_N : N ;
-fun lodging_N : N ;
-fun shagging_N : N ;
-fun lagging_N : N ;
-fun flagging_N : N ;
-fun bragging_N : N ;
-fun 'chin-wagging_N' : N ;
-fun legging_N : N ;
-fun bootlegging_N : N ;
-fun digging_N : N ;
-fun rigging_N : N ;
-fun wigging_N : N ;
-fun jogging_N : N ;
-fun logging_N : N ;
-fun flogging_N : N ;
-fun nogging_N : N ;
-fun snogging_N : N ;
-fun mugging_N : N ;
-fun banging_N : N ;
-fun hanging_N : N ;
-fun slinging_N : N ;
-fun ringing_N : N ;
-fun upbringing_N : N ;
-fun singing_N : N ;
-fun 'part-singing_N' : N ;
-fun longing_N : N ;
-fun belonging_N : N ;
-fun merging_N : N ;
-fun forging_N : N ;
-fun urging_N : N ;
-fun luging_N : N ;
-fun teaching_N : N ;
-fun coaching_N : N ;
-fun poaching_N : N ;
-fun belching_N : N ;
-fun ranching_N : N ;
-fun branching_N : N ;
-fun drenching_N : N ;
-fun launching_N : N ;
-fun lunching_N : N ;
-fun lynching_N : N ;
-fun catching_N : N ;
-fun hatching_N : N ;
-fun patching_N : N ;
-fun 'fire-watching_N' : N ;
-fun 'clock-watching_N' : N ;
-fun etching_N : N ;
-fun stretching_N : N ;
-fun pitching_N : N ;
-fun witching_N : N ;
-fun 'square-bashing_N' : N ;
-fun lashing_N : N ;
-fun flashing_N : N ;
-fun smashing_N : N ;
-fun thrashing_N : N ;
-fun washing_N : N ;
-fun dishwashing_N : N ;
-fun brainwashing_N : N ;
-fun threshing_N : N ;
-fun rubbishing_N : N ;
-fun fishing_N : N ;
-fun 'fly-fishing_N' : N ;
-fun vanishing_N : N ;
-fun furnishing_N : N ;
-fun bushing_N : N ;
-fun thing_N : N ;
-fun bathing_N : N ;
-fun 'sea-bathing_N' : N ;
-fun sheathing_N : N ;
-fun breathing_N : N ;
-fun loathing_N : N ;
-fun swathing_N : N ;
-fun teething_N : N ;
-fun clothing_N : N ;
-fun underclothing_N : N ;
-fun nothing_N : N ;
-fun 'good-for-nothing_N' : N ;
-fun farthing_N : N ;
-fun plaything_N : N ;
-fun skiing_N : N ;
-fun 'water-skiing_N' : N ;
-fun king_N : N ;
-fun baking_N : N ;
-fun speaking_N : N ;
-fun 'prison-breaking_N' : N ;
-fun groundbreaking_N : N ;
-fun strikebreaking_N : N ;
-fun housebreaking_N : N ;
-fun shaking_N : N ;
-fun handshaking_N : N ;
-fun making_N : N ;
-fun 'mischief-making_N' : N ;
-fun moviemaking_N : N ;
-fun homemaking_N : N ;
-fun winemaking_N : N ;
-fun shoemaking_N : N ;
-fun lovemaking_N : N ;
-fun matchmaking_N : N ;
-fun rainmaking_N : N ;
-fun mapmaking_N : N ;
-fun papermaking_N : N ;
-fun dressmaking_N : N ;
-fun cabinetmaking_N : N ;
-fun printmaking_N : N ;
-fun lawmaking_N : N ;
-fun haymaking_N : N ;
-fun moneymaking_N : N ;
-fun merrymaking_N : N ;
-fun muckraking_N : N ;
-fun forsaking_N : N ;
-fun 'leave-taking_N' : N ;
-fun stocktaking_N : N ;
-fun undertaking_N : N ;
-fun waking_N : N ;
-fun backing_N : N ;
-fun whacking_N : N ;
-fun highjacking_N : N ;
-fun carjacking_N : N ;
-fun blacking_N : N ;
-fun smacking_N : N ;
-fun packing_N : N ;
-fun meatpacking_N : N ;
-fun cracking_N : N ;
-fun hydrocracking_N : N ;
-fun barracking_N : N ;
-fun sacking_N : N ;
-fun ransacking_N : N ;
-fun hopsacking_N : N ;
-fun picking_N : N ;
-fun pricking_N : N ;
-fun ticking_N : N ;
-fun 'pig-sticking_N' : N ;
-fun pigsticking_N : N ;
-fun docking_N : N ;
-fun locking_N : N ;
-fun blocking_N : N ;
-fun clocking_N : N ;
-fun smocking_N : N ;
-fun stocking_N : N ;
-fun bluestocking_N : N ;
-fun ducking_N : N ;
-fun sucking_N : N ;
-fun seeking_N : N ;
-fun 'self-seeking_N' : N ;
-fun liking_N : N ;
-fun viking_N : N ;
-fun 'pony-trekking_N' : N ;
-fun deerstalking_N : N ;
-fun walking_N : N ;
-fun 'fire-walking_N' : N ;
-fun sleepwalking_N : N ;
-fun banking_N : N ;
-fun planking_N : N ;
-fun spanking_N : N ;
-fun ranking_N : N ;
-fun thinking_N : N ;
-fun drinking_N : N ;
-fun shrinking_N : N ;
-fun sinking_N : N ;
-fun trunking_N : N ;
-fun choking_N : N ;
-fun smoking_N : N ;
-fun booking_N : N ;
-fun cooking_N : N ;
-fun looking_N : N ;
-fun marking_N : N ;
-fun parking_N : N ;
-fun shirking_N : N ;
-fun working_N : N ;
-fun metalworking_N : N ;
-fun masking_N : N ;
-fun cornhusking_N : N ;
-fun ling_N : N ;
-fun scaling_N : N ;
-fun dealing_N : N ;
-fun 'double-dealing_N' : N ;
-fun healing_N : N ;
-fun 'faith-healing_N' : N ;
-fun annealing_N : N ;
-fun rosemaling_N : N ;
-fun paling_N : N ;
-fun teetotaling_N : N ;
-fun bling_N : N ;
-fun stabling_N : N ;
-fun sibling_N : N ;
-fun gambling_N : N ;
-fun brambling_N : N ;
-fun mumbling_N : N ;
-fun rumbling_N : N ;
-fun marbling_N : N ;
-fun doubling_N : N ;
-fun cling_N : N ;
-fun cycling_N : N ;
-fun recycling_N : N ;
-fun bicycling_N : N ;
-fun motorcycling_N : N ;
-fun meddling_N : N ;
-fun middling_N : N ;
-fun seedling_N : N ;
-fun worldling_N : N ;
-fun handling_N : N ;
-fun kindling_N : N ;
-fun dwindling_N : N ;
-fun bundling_N : N ;
-fun foundling_N : N ;
-fun groundling_N : N ;
-fun codling_N : N ;
-fun curdling_N : N ;
-fun princeling_N : N ;
-fun modeling_N : N ;
-fun yodeling_N : N ;
-fun feeling_N : N ;
-fun 'class-feeling_N' : N ;
-fun 'fellow-feeling_N' : N ;
-fun wheeling_N : N ;
-fun fledgeling_N : N ;
-fun ridgeling_N : N ;
-fun changeling_N : N ;
-fun snorkeling_N : N ;
-fun paneling_N : N ;
-fun hireling_N : N ;
-fun nurseling_N : N ;
-fun fueling_N : N ;
-fun raveling_N : N ;
-fun starveling_N : N ;
-fun doweling_N : N ;
-fun toweling_N : N ;
-fun fling_N : N ;
-fun beagling_N : N ;
-fun fledgling_N : N ;
-fun smuggling_N : N ;
-fun angling_N : N ;
-fun shingling_N : N ;
-fun mingling_N : N ;
-fun hatchling_N : N ;
-fun vetchling_N : N ;
-fun failing_N : N ;
-fun mailing_N : N ;
-fun railing_N : N ;
-fun trailing_N : N ;
-fun sailing_N : N ;
-fun parasailing_N : N ;
-fun retailing_N : N ;
-fun wailing_N : N ;
-fun ceiling_N : N ;
-fun veiling_N : N ;
-fun unveiling_N : N ;
-fun filing_N : N ;
-fun profiling_N : N ;
-fun boiling_N : N ;
-fun soiling_N : N ;
-fun stockpiling_N : N ;
-fun tiling_N : N ;
-fun weakling_N : N ;
-fun crackling_N : N ;
-fun heckling_N : N ;
-fun prickling_N : N ;
-fun swashbuckling_N : N ;
-fun duckling_N : N ;
-fun truckling_N : N ;
-fun suckling_N : N ;
-fun inkling_N : N ;
-fun sprinkling_N : N ;
-fun calling_N : N ;
-fun appalling_N : N ;
-fun 'dry-walling_N' : N ;
-fun stonewalling_N : N ;
-fun modelling_N : N ;
-fun panelling_N : N ;
-fun spelling_N : N ;
-fun misspelling_N : N ;
-fun selling_N : N ;
-fun telling_N : N ;
-fun fortunetelling_N : N ;
-fun travelling_N : N ;
-fun dwelling_N : N ;
-fun 'pile-dwelling_N' : N ;
-fun towelling_N : N ;
-fun swelling_N : N ;
-fun yelling_N : N ;
-fun filling_N : N ;
-fun refilling_N : N ;
-fun schilling_N : N ;
-fun shilling_N : N ;
-fun killing_N : N ;
-fun milling_N : N ;
-fun drilling_N : N ;
-fun shrilling_N : N ;
-fun tilling_N : N ;
-fun rolling_N : N ;
-fun 'log-rolling_N' : N ;
-fun logrolling_N : N ;
-fun sculling_N : N ;
-fun 'leg-pulling_N' : N ;
-fun cymling_N : N ;
-fun greenling_N : N ;
-fun cooling_N : N ;
-fun schooling_N : N ;
-fun caroling_N : N ;
-fun sapling_N : N ;
-fun tripling_N : N ;
-fun stripling_N : N ;
-fun sampling_N : N ;
-fun dumpling_N : N ;
-fun coupling_N : N ;
-fun quadrupling_N : N ;
-fun quintupling_N : N ;
-fun darling_N : N ;
-fun yearling_N : N ;
-fun unsnarling_N : N ;
-fun sparling_N : N ;
-fun starling_N : N ;
-fun sanderling_N : N ;
-fun underling_N : N ;
-fun fingerling_N : N ;
-fun sterling_N : N ;
-fun birling_N : N ;
-fun curling_N : N ;
-fun hurling_N : N ;
-fun sling_N : N ;
-fun riesling_N : N ;
-fun brisling_N : N ;
-fun quisling_N : N ;
-fun gosling_N : N ;
-fun nursling_N : N ;
-fun catling_N : N ;
-fun scantling_N : N ;
-fun dismantling_N : N ;
-fun nestling_N : N ;
-fun wrestling_N : N ;
-fun whistling_N : N ;
-fun rustling_N : N ;
-fun 'sabre-rattling_N' : N ;
-fun settling_N : N ;
-fun belittling_N : N ;
-fun mottling_N : N ;
-fun hauling_N : N ;
-fun scheduling_N : N ;
-fun ruling_N : N ;
-fun bowling_N : N ;
-fun cowling_N : N ;
-fun growling_N : N ;
-fun naming_N : N ;
-fun coaming_N : N ;
-fun framing_N : N ;
-fun priming_N : N ;
-fun timing_N : N ;
-fun filming_N : N ;
-fun hamming_N : N ;
-fun jamming_N : N ;
-fun programming_N : N ;
-fun multiprogramming_N : N ;
-fun lemming_N : N ;
-fun skimming_N : N ;
-fun trimming_N : N ;
-fun swimming_N : N ;
-fun humming_N : N ;
-fun drumming_N : N ;
-fun coming_N : N ;
-fun homecoming_N : N ;
-fun shortcoming_N : N ;
-fun blooming_N : N ;
-fun blossoming_N : N ;
-fun arming_N : N ;
-fun farming_N : N ;
-fun 'dairy-farming_N' : N ;
-fun disarming_N : N ;
-fun 'house-warming_N' : N ;
-fun housewarming_N : N ;
-fun informing_N : N ;
-fun brainstorming_N : N ;
-fun leaning_N : N ;
-fun cleaning_N : N ;
-fun 'spring-cleaning_N' : N ;
-fun 'dry-cleaning_N' : N ;
-fun housecleaning_N : N ;
-fun meaning_N : N ;
-fun weaning_N : N ;
-fun tobogganing_N : N ;
-fun waning_N : N ;
-fun broadening_N : N ;
-fun widening_N : N ;
-fun gardening_N : N ;
-fun 'market-gardening_N' : N ;
-fun hardening_N : N ;
-fun screening_N : N ;
-fun stiffening_N : N ;
-fun strengthening_N : N ;
-fun weakening_N : N ;
-fun awakening_N : N ;
-fun blackening_N : N ;
-fun thickening_N : N ;
-fun quickening_N : N ;
-fun likening_N : N ;
-fun deepening_N : N ;
-fun ripening_N : N ;
-fun opening_N : N ;
-fun happening_N : N ;
-fun loosening_N : N ;
-fun worsening_N : N ;
-fun sweetening_N : N ;
-fun softening_N : N ;
-fun lightening_N : N ;
-fun tightening_N : N ;
-fun whitening_N : N ;
-fun shortening_N : N ;
-fun fastening_N : N ;
-fun listening_N : N ;
-fun relistening_N : N ;
-fun moistening_N : N ;
-fun christening_N : N ;
-fun evening_N : N ;
-fun campaigning_N : N ;
-fun designing_N : N ;
-fun bargaining_N : N ;
-fun graining_N : N ;
-fun training_N : N ;
-fun retraining_N : N ;
-fun staining_N : N ;
-fun combining_N : N ;
-fun dining_N : N ;
-fun refining_N : N ;
-fun shining_N : N ;
-fun lining_N : N ;
-fun reclining_N : N ;
-fun mining_N : N ;
-fun joining_N : N ;
-fun pining_N : N ;
-fun scanning_N : N ;
-fun planning_N : N ;
-fun tanning_N : N ;
-fun caravanning_N : N ;
-fun kenning_N : N ;
-fun inning_N : N ;
-fun beginning_N : N ;
-fun pinning_N : N ;
-fun spinning_N : N ;
-fun tinning_N : N ;
-fun winning_N : N ;
-fun cunning_N : N ;
-fun running_N : N ;
-fun gunrunning_N : N ;
-fun microphoning_N : N ;
-fun vacationing_N : N ;
-fun rationing_N : N ;
-fun conditioning_N : N ;
-fun 'air-conditioning_N' : N ;
-fun repositioning_N : N ;
-fun questioning_N : N ;
-fun reckoning_N : N ;
-fun cloning_N : N ;
-fun cocooning_N : N ;
-fun ballooning_N : N ;
-fun crooning_N : N ;
-fun ironing_N : N ;
-fun reasoning_N : N ;
-fun seasoning_N : N ;
-fun poisoning_N : N ;
-fun 'blood-poisoning_N' : N ;
-fun stoning_N : N ;
-fun zoning_N : N ;
-fun darning_N : N ;
-fun learning_N : N ;
-fun yearning_N : N ;
-fun warning_N : N ;
-fun forewarning_N : N ;
-fun morning_N : N ;
-fun burning_N : N ;
-fun heartburning_N : N ;
-fun mourning_N : N ;
-fun turning_N : N ;
-fun 'table-turning_N' : N ;
-fun lightning_N : N ;
-fun 'sheet-lightning_N' : N ;
-fun pruning_N : N ;
-fun tuning_N : N ;
-fun awning_N : N ;
-fun 'well-doing_N' : N ;
-fun wrongdoing_N : N ;
-fun undoing_N : N ;
-fun misdoing_N : N ;
-fun going_N : N ;
-fun ping_N : N ;
-fun landscaping_N : N ;
-fun shaping_N : N ;
-fun scraping_N : N ;
-fun keeping_N : N ;
-fun peacekeeping_N : N ;
-fun beekeeping_N : N ;
-fun safekeeping_N : N ;
-fun timekeeping_N : N ;
-fun bookkeeping_N : N ;
-fun sleeping_N : N ;
-fun sweeping_N : N ;
-fun minesweeping_N : N ;
-fun piping_N : N ;
-fun stovepiping_N : N ;
-fun striping_N : N ;
-fun gossiping_N : N ;
-fun helping_N : N ;
-fun gulping_N : N ;
-fun camping_N : N ;
-fun primping_N : N ;
-fun chomping_N : N ;
-fun dumping_N : N ;
-fun jumping_N : N ;
-fun 'pole-jumping_N' : N ;
-fun showjumping_N : N ;
-fun stumping_N : N ;
-fun coping_N : N ;
-fun roping_N : N ;
-fun mapping_N : N ;
-fun kidnapping_N : N ;
-fun 'table-rapping_N' : N ;
-fun wrapping_N : N ;
-fun tapping_N : N ;
-fun shipping_N : N ;
-fun whipping_N : N ;
-fun horsewhipping_N : N ;
-fun clipping_N : N ;
-fun 'press-clipping_N' : N ;
-fun snipping_N : N ;
-fun dripping_N : N ;
-fun shopping_N : N ;
-fun 'name-dropping_N' : N ;
-fun topping_N : N ;
-fun stopping_N : N ;
-fun cupping_N : N ;
-fun supping_N : N ;
-fun grasping_N : N ;
-fun grouping_N : N ;
-fun typing_N : N ;
-fun ring_N : N ;
-fun 'prize-ring_N' : N ;
-fun 'wedding-ring_N' : N ;
-fun 'mourning-ring_N' : N ;
-fun 'seal-ring_N' : N ;
-fun 'napkin-ring_N' : N ;
-fun 'gas-ring_N' : N ;
-fun 'signet-ring_N' : N ;
-fun daring_N : N ;
-fun bearing_N : N ;
-fun 'child-bearing_N' : N ;
-fun ballbearing_N : N ;
-fun gearing_N : N ;
-fun hearing_N : N ;
-fun rehearing_N : N ;
-fun shearing_N : N ;
-fun sheepshearing_N : N ;
-fun clearing_N : N ;
-fun tearing_N : N ;
-fun swearing_N : N ;
-fun seafaring_N : N ;
-fun wayfaring_N : N ;
-fun sharing_N : N ;
-fun 'profit-sharing_N' : N ;
-fun paring_N : N ;
-fun lumbering_N : N ;
-fun squandering_N : N ;
-fun wandering_N : N ;
-fun rendering_N : N ;
-fun laundering_N : N ;
-fun plundering_N : N ;
-fun foundering_N : N ;
-fun ordering_N : N ;
-fun reordering_N : N ;
-fun cheering_N : N ;
-fun sloganeering_N : N ;
-fun veneering_N : N ;
-fun mountaineering_N : N ;
-fun engineering_N : N ;
-fun electioneering_N : N ;
-fun racketeering_N : N ;
-fun steering_N : N ;
-fun offering_N : N ;
-fun 'peace-offering_N' : N ;
-fun 'thank-offering_N' : N ;
-fun suffering_N : N ;
-fun badgering_N : N ;
-fun fingering_N : N ;
-fun malingering_N : N ;
-fun scandalmongering_N : N ;
-fun warmongering_N : N ;
-fun gathering_N : N ;
-fun woolgathering_N : N ;
-fun ingathering_N : N ;
-fun dithering_N : N ;
-fun soldiering_N : N ;
-fun hankering_N : N ;
-fun papering_N : N ;
-fun newspapering_N : N ;
-fun tapering_N : N ;
-fun whispering_N : N ;
-fun nosering_N : N ;
-fun catering_N : N ;
-fun watering_N : N ;
-fun centering_N : N ;
-fun quartering_N : N ;
-fun plastering_N : N ;
-fun mastering_N : N ;
-fun festering_N : N ;
-fun fostering_N : N ;
-fun battering_N : N ;
-fun scattering_N : N ;
-fun smattering_N : N ;
-fun lettering_N : N ;
-fun neutering_N : N ;
-fun covering_N : N ;
-fun lowering_N : N ;
-fun airing_N : N ;
-fun pairing_N : N ;
-fun acquiring_N : N ;
-fun wiring_N : N ;
-fun lockring_N : N ;
-fun bullring_N : N ;
-fun boring_N : N ;
-fun shoring_N : N ;
-fun tailoring_N : N ;
-fun coloring_N : N ;
-fun honoring_N : N ;
-fun flooring_N : N ;
-fun mooring_N : N ;
-fun censoring_N : N ;
-fun monitoring_N : N ;
-fun motoring_N : N ;
-fun spring_N : N ;
-fun bedspring_N : N ;
-fun handspring_N : N ;
-fun mainspring_N : N ;
-fun hairspring_N : N ;
-fun dayspring_N : N ;
-fun barring_N : N ;
-fun earring_N : N ;
-fun sparring_N : N ;
-fun shirring_N : N ;
-fun stirring_N : N ;
-fun incurring_N : N ;
-fun furring_N : N ;
-fun string_N : N ;
-fun substring_N : N ;
-fun shoestring_N : N ;
-fun latchstring_N : N ;
-fun hamstring_N : N ;
-fun superstring_N : N ;
-fun drawstring_N : N ;
-fun bowstring_N : N ;
-fun conjuring_N : N ;
-fun scouring_N : N ;
-fun colouring_N : N ;
-fun inpouring_N : N ;
-fun outpouring_N : N ;
-fun souring_N : N ;
-fun touring_N : N ;
-fun flavouring_N : N ;
-fun picturing_N : N ;
-fun posturing_N : N ;
-fun suturing_N : N ;
-fun wring_N : N ;
-fun keyring_N : N ;
-fun casing_N : N ;
-fun easing_N : N ;
-fun pleasing_N : N ;
-fun teasing_N : N ;
-fun antialiasing_N : N ;
-fun phrasing_N : N ;
-fun raising_N : N ;
-fun 'fire-raising_N' : N ;
-fun braising_N : N ;
-fun rising_N : N ;
-fun uprising_N : N ;
-fun advertising_N : N ;
-fun devising_N : N ;
-fun condensing_N : N ;
-fun sensing_N : N ;
-fun closing_N : N ;
-fun composing_N : N ;
-fun nursing_N : N ;
-fun coursing_N : N ;
-fun gassing_N : N ;
-fun passing_N : N ;
-fun processing_N : N ;
-fun multiprocessing_N : N ;
-fun blessing_N : N ;
-fun caressing_N : N ;
-fun dressing_N : N ;
-fun 'salad-dressing_N' : N ;
-fun 'top-dressing_N' : N ;
-fun 'window-dressing_N' : N ;
-fun hairdressing_N : N ;
-fun pressing_N : N ;
-fun crossing_N : N ;
-fun degaussing_N : N ;
-fun causing_N : N ;
-fun refocusing_N : N ;
-fun housing_N : N ;
-fun warehousing_N : N ;
-fun dowsing_N : N ;
-fun ting_N : N ;
-fun dating_N : N ;
-fun updating_N : N ;
-fun eating_N : N ;
-fun beating_N : N ;
-fun heating_N : N ;
-fun overheating_N : N ;
-fun seating_N : N ;
-fun delegating_N : N ;
-fun skating_N : N ;
-fun 'ice-skating_N' : N ;
-fun plating_N : N ;
-fun slating_N : N ;
-fun inoculating_N : N ;
-fun boating_N : N ;
-fun bareboating_N : N ;
-fun coating_N : N ;
-fun floating_N : N ;
-fun rating_N : N ;
-fun berating_N : N ;
-fun grating_N : N ;
-fun acting_N : N ;
-fun 'play-acting_N' : N ;
-fun erecting_N : N ;
-fun depicting_N : N ;
-fun conducting_N : N ;
-fun sheeting_N : N ;
-fun meeting_N : N ;
-fun 'race-meeting_N' : N ;
-fun 'prayer-meeting_N' : N ;
-fun greeting_N : N ;
-fun pargeting_N : N ;
-fun crocheting_N : N ;
-fun junketing_N : N ;
-fun marketing_N : N ;
-fun telemarketing_N : N ;
-fun drafting_N : N ;
-fun 'face-lifting_N' : N ;
-fun 'table-lifting_N' : N ;
-fun shoplifting_N : N ;
-fun uplifting_N : N ;
-fun weightlifting_N : N ;
-fun drifting_N : N ;
-fun yachting_N : N ;
-fun fighting_N : N ;
-fun 'in-fighting_N' : N ;
-fun cockfighting_N : N ;
-fun bullfighting_N : N ;
-fun lighting_N : N ;
-fun 'strip-lighting_N' : N ;
-fun backlighting_N : N ;
-fun sighting_N : N ;
-fun baiting_N : N ;
-fun editing_N : N ;
-fun writing_N : N ;
-fun handwriting_N : N ;
-fun rewriting_N : N ;
-fun skywriting_N : N ;
-fun visiting_N : N ;
-fun repositing_N : N ;
-fun suiting_N : N ;
-fun salting_N : N ;
-fun belting_N : N ;
-fun quilting_N : N ;
-fun vaulting_N : N ;
-fun banting_N : N ;
-fun planting_N : N ;
-fun supplanting_N : N ;
-fun panting_N : N ;
-fun painting_N : N ;
-fun 'genre-painting_N' : N ;
-fun 'oil-painting_N' : N ;
-fun 'wall-painting_N' : N ;
-fun anointing_N : N ;
-fun printing_N : N ;
-fun imprinting_N : N ;
-fun fingerprinting_N : N ;
-fun tinting_N : N ;
-fun bunting_N : N ;
-fun hunting_N : N ;
-fun accounting_N : N ;
-fun mounting_N : N ;
-fun wainscoting_N : N ;
-fun fagoting_N : N ;
-fun rioting_N : N ;
-fun piloting_N : N ;
-fun shooting_N : N ;
-fun 'line-shooting_N' : N ;
-fun 'crap-shooting_N' : N ;
-fun 'trap-shooting_N' : N ;
-fun looting_N : N ;
-fun rooting_N : N ;
-fun prompting_N : N ;
-fun parting_N : N ;
-fun averting_N : N ;
-fun shirting_N : N ;
-fun importing_N : N ;
-fun exporting_N : N ;
-fun sorting_N : N ;
-fun sting_N : N ;
-fun basting_N : N ;
-fun casting_N : N ;
-fun broadcasting_N : N ;
-fun feasting_N : N ;
-fun everlasting_N : N ;
-fun roasting_N : N ;
-fun toasting_N : N ;
-fun pasting_N : N ;
-fun tasting_N : N ;
-fun birdnesting_N : N ;
-fun testing_N : N ;
-fun investing_N : N ;
-fun listing_N : N ;
-fun costing_N : N ;
-fun posting_N : N ;
-fun frosting_N : N ;
-fun 'crop-dusting_N' : N ;
-fun batting_N : N ;
-fun matting_N : N ;
-fun tatting_N : N ;
-fun letting_N : N ;
-fun 'blood-letting_N' : N ;
-fun bloodletting_N : N ;
-fun netting_N : N ;
-fun setting_N : N ;
-fun 'trend-setting_N' : N ;
-fun wetting_N : N ;
-fun babbitting_N : N ;
-fun fitting_N : N ;
-fun pipefitting_N : N ;
-fun outfitting_N : N ;
-fun 'word-splitting_N' : N ;
-fun hairsplitting_N : N ;
-fun knitting_N : N ;
-fun pitting_N : N ;
-fun spitting_N : N ;
-fun sitting_N : N ;
-fun babysitting_N : N ;
-fun jotting_N : N ;
-fun cutting_N : N ;
-fun 'press-cutting_N' : N ;
-fun shutting_N : N ;
-fun fluting_N : N ;
-fun telecommuting_N : N ;
-fun outing_N : N ;
-fun scouting_N : N ;
-fun shouting_N : N ;
-fun barbecuing_N : N ;
-fun bluing_N : N ;
-fun weaving_N : N ;
-fun hairweaving_N : N ;
-fun paving_N : N ;
-fun raving_N : N ;
-fun craving_N : N ;
-fun engraving_N : N ;
-fun saving_N : N ;
-fun 'face-saving_N' : N ;
-fun 'daylight-saving_N' : N ;
-fun lifesaving_N : N ;
-fun believing_N : N ;
-fun diving_N : N ;
-fun 'skin-diving_N' : N ;
-fun skydiving_N : N ;
-fun giving_N : N ;
-fun 'alms-giving_N' : N ;
-fun misgiving_N : N ;
-fun thanksgiving_N : N ;
-fun living_N : N ;
-fun 'free-living_N' : N ;
-fun reliving_N : N ;
-fun driving_N : N ;
-fun deriving_N : N ;
-fun striving_N : N ;
-fun calving_N : N ;
-fun dissolving_N : N ;
-fun grooving_N : N ;
-fun carving_N : N ;
-fun woodcarving_N : N ;
-fun serving_N : N ;
-fun wing_N : N ;
-fun 'left-wing_N' : N ;
-fun 'right-wing_N' : N ;
-fun drawing_N : N ;
-fun 'wash-drawing_N' : N ;
-fun redwing_N : N ;
-fun lacewing_N : N ;
-fun anglewing_N : N ;
-fun brewing_N : N ;
-fun forewing_N : N ;
-fun sewing_N : N ;
-fun bitewing_N : N ;
-fun stewing_N : N ;
-fun bluewing_N : N ;
-fun greenwing_N : N ;
-fun bowing_N : N ;
-fun elbowing_N : N ;
-fun shadowing_N : N ;
-fun showing_N : N ;
-fun blowing_N : N ;
-fun mellowing_N : N ;
-fun following_N : N ;
-fun plowing_N : N ;
-fun knowing_N : N ;
-fun rowing_N : N ;
-fun growing_N : N ;
-fun narrowing_N : N ;
-fun borrowing_N : N ;
-fun lapwing_N : N ;
-fun underwing_N : N ;
-fun swing_N : N ;
-fun downswing_N : N ;
-fun batwing_N : N ;
-fun waxwing_N : N ;
-fun coaxing_N : N ;
-fun waxing_N : N ;
-fun indexing_N : N ;
-fun autosexing_N : N ;
-fun boxing_N : N ;
-fun 'shadow-boxing_N' : N ;
-fun shadowboxing_N : N ;
-fun haying_N : N ;
-fun laying_N : N ;
-fun minelaying_N : N ;
-fun bricklaying_N : N ;
-fun playing_N : N ;
-fun roleplaying_N : N ;
-fun spaying_N : N ;
-fun spraying_N : N ;
-fun saying_N : N ;
-fun naysaying_N : N ;
-fun surveying_N : N ;
-fun lying_N : N ;
-fun rallying_N : N ;
-fun bullying_N : N ;
-fun copying_N : N ;
-fun spying_N : N ;
-fun crying_N : N ;
-fun frying_N : N ;
-fun dairying_N : N ;
-fun quarrying_N : N ;
-fun worrying_N : N ;
-fun burying_N : N ;
-fun reburying_N : N ;
-fun tying_N : N ;
-fun untying_N : N ;
-fun emptying_N : N ;
-fun buying_N : N ;
-fun zing_N : N ;
-fun 'crystal-gazing_N' : N ;
-fun stargazing_N : N ;
-fun razing_N : N ;
-fun grazing_N : N ;
-fun seizing_N : N ;
-fun energizing_N : N ;
-fun philosophizing_N : N ;
-fun moralizing_N : N ;
-fun symbolizing_N : N ;
-fun emphasizing_N : N ;
-fun capsizing_N : N ;
-fun sensitizing_N : N ;
-fun bong_N : N ;
-fun billabong_N : N ;
-fun dong_N : N ;
-fun 'ding-dong_N' : N ;
-fun quandong_N : N ;
-fun gong_N : N ;
-fun dugong_N : N ;
-fun souchong_N : N ;
-fun thong_N : N ;
-fun diphthong_N : N ;
-fun kurrajong_N : N ;
-fun mahjong_N : N ;
-fun long_N : N ;
-fun tagalong_N : N ;
-fun singalong_N : N ;
-fun oblong_N : N ;
-fun oolong_N : N ;
-fun furlong_N : N ;
-fun scuppernong_N : N ;
-fun pingpong_N : N ;
-fun kampong_N : N ;
-fun barong_N : N ;
-fun sarong_N : N ;
-fun throng_N : N ;
-fun prong_N : N ;
-fun binturong_N : N ;
-fun wrong_N : N ;
-fun song_N : N ;
-fun 'love-song_N' : N ;
-fun 'drinking-song_N' : N ;
-fun 'swan-song_N' : N ;
-fun 'part-song_N' : N ;
-fun singsong_N : N ;
-fun folksong_N : N ;
-fun evensong_N : N ;
-fun plainsong_N : N ;
-fun partsong_N : N ;
-fun biltong_N : N ;
-fun bettong_N : N ;
-fun burrawong_N : N ;
-fun currawong_N : N ;
-fun bung_N : N ;
-fun geebung_N : N ;
-fun dung_N : N ;
-fun tudung_N : N ;
-fun lung_N : N ;
-fun aqualung_N : N ;
-fun quellung_N : N ;
-fun mung_N : N ;
-fun young_N : N ;
-fun pung_N : N ;
-fun pungapung_N : N ;
-fun rung_N : N ;
-fun shantung_N : N ;
-fun bog_N : N ;
-fun cog_N : N ;
-fun dog_N : N ;
-fun 'sea-dog_N' : N ;
-fun 'sausage-dog_N' : N ;
-fun 'pug-dog_N' : N ;
-fun 'pariah-dog_N' : N ;
-fun 'lap-dog_N' : N ;
-fun firedog_N : N ;
-fun housedog_N : N ;
-fun watchdog_N : N ;
-fun bulldog_N : N ;
-fun coondog_N : N ;
-fun gundog_N : N ;
-fun lapdog_N : N ;
-fun sheepdog_N : N ;
-fun underdog_N : N ;
-fun waterdog_N : N ;
-fun hotdog_N : N ;
-fun coydog_N : N ;
-fun fog_N : N ;
-fun hog_N : N ;
-fun 'road-hog_N' : N ;
-fun quahog_N : N ;
-fun mummichog_N : N ;
-fun groundhog_N : N ;
-fun hedgehog_N : N ;
-fun warthog_N : N ;
-fun jog_N : N ;
-fun log_N : N ;
-fun 'yule-log_N' : N ;
-fun analog_N : N ;
-fun catalog_N : N ;
-fun clog_N : N ;
-fun backlog_N : N ;
-fun smog_N : N ;
-fun nog_N : N ;
-fun eggnog_N : N ;
-fun frog_N : N ;
-fun bullfrog_N : N ;
-fun leapfrog_N : N ;
-fun grog_N : N ;
-fun sprog_N : N ;
-fun tautog_N : N ;
-fun wog_N : N ;
-fun golliwog_N : N ;
-fun erg_N : N ;
-fun berg_N : N ;
-fun rydberg_N : N ;
-fun iceberg_N : N ;
-fun cyborg_N : N ;
-fun burg_N : N ;
-fun faubourg_N : N ;
-fun quahaug_N : N ;
-fun bug_N : N ;
-fun 'may-bug_N' : N ;
-fun 'mealy-bug_N' : N ;
-fun bedbug_N : N ;
-fun tumblebug_N : N ;
-fun doodlebug_N : N ;
-fun firebug_N : N ;
-fun humbug_N : N ;
-fun superbug_N : N ;
-fun jitterbug_N : N ;
-fun shutterbug_N : N ;
-fun ladybug_N : N ;
-fun mealybug_N : N ;
-fun dug_N : N ;
-fun fug_N : N ;
-fun hug_N : N ;
-fun chug_N : N ;
-fun thug_N : N ;
-fun jug_N : N ;
-fun 'toby-jug_N' : N ;
-fun lug_N : N ;
-fun plug_N : N ;
-fun 'sparking-plug_N' : N ;
-fun 'spark-plug_N' : N ;
-fun fireplug_N : N ;
-fun drainplug_N : N ;
-fun earplug_N : N ;
-fun slug_N : N ;
-fun mug_N : N ;
-fun snug_N : N ;
-fun pug_N : N ;
-fun rug_N : N ;
-fun 'prayer-rug_N' : N ;
-fun drug_N : N ;
-fun shrug_N : N ;
-fun hearthrug_N : N ;
-fun tug_N : N ;
-fun much_N : N ;
-fun nonesuch_N : N ;
-fun nonsuch_N : N ;
-fun soh_N : N ;
-fun synchroflash_N : N ;
-fun plash_N : N ;
-fun roach_N : N ;
-fun tench_N : N ;
-fun perch_N : N ;
-fun Dutch_N : N ;
-fun enough_N : N ;
-fun mph_N : N ;
-fun squash_N : N ;
-fun baksheesh_N : N ;
-fun backsheesh_N : N ;
-fun fish_N : N ;
-fun 'sea-fish_N' : N ;
-fun 'ground-fish_N' : N ;
-fun 'flying-fish_N' : N ;
-fun 'silver-fish_N' : N ;
-fun 'pilot-fish_N' : N ;
-fun goldfish_N : N ;
-fun codfish_N : N ;
-fun swordfish_N : N ;
-fun dogfish_N : N ;
-fun stockfish_N : N ;
-fun shellfish_N : N ;
-fun sunfish_N : N ;
-fun starfish_N : N ;
-fun catfish_N : N ;
-fun flatfish_N : N ;
-fun jellyfish_N : N ;
-fun tooth_N : N ;
-fun 'milk-tooth_N' : N ;
-fun 'wisdom-tooth_N' : N ;
-fun eyetooth_N : N ;
-fun bucktooth_N : N ;
-fun fellah_1_N : N ;
-fun fellah_2_N : N ;
-fun kasbah_N : N ;
-fun shahadah_N : N ;
-fun numdah_N : N ;
-fun verandah_N : N ;
-fun purdah_N : N ;
-fun howdah_N : N ;
-fun whydah_N : N ;
-fun obeah_N : N ;
-fun loofah_N : N ;
-fun ephah_N : N ;
-fun shah_N : N ;
-fun rupiah_N : N ;
-fun shariah_N : N ;
-fun pariah_N : N ;
-fun messiah_N : N ;
-fun rajah_N : N ;
-fun maharajah_N : N ;
-fun hallelujah_N : N ;
-fun punkah_N : N ;
-fun hookah_N : N ;
-fun blah_N : N ;
-fun challah_N : N ;
-fun wallah_N : N ;
-fun megillah_N : N ;
-fun ayatollah_N : N ;
-fun mullah_N : N ;
-fun nullah_N : N ;
-fun rugulah_N : N ;
-fun amah_N : N ;
-fun savannah_N : N ;
-fun jonah_N : N ;
-fun mynah_N : N ;
-fun opah_N : N ;
-fun menorah_N : N ;
-fun sirrah_N : N ;
-fun hurrah_N : N ;
-fun tussah_N : N ;
-fun waratah_N : N ;
-fun cheetah_N : N ;
-fun shittah_N : N ;
-fun mikvah_N : N ;
-fun mitzvah_N : N ;
-fun da'wah_N : N ;
-fun fatwah_N : N ;
-fun ayah_N : N ;
-fun aliyah_N : N ;
-fun mezuzah_N : N ;
-fun beach_N : N ;
-fun leach_N : N ;
-fun bleach_N : N ;
-fun peach_N : N ;
-fun reach_N : N ;
-fun breach_N : N ;
-fun outreach_N : N ;
-fun taoiseach_N : N ;
-fun logomach_N : N ;
-fun sumach_N : N ;
-fun spinach_N : N ;
-fun coach_N : N ;
-fun 'slip-coach_N' : N ;
-fun stagecoach_N : N ;
-fun motorcoach_N : N ;
-fun slowcoach_N : N ;
-fun loach_N : N ;
-fun cockroach_N : N ;
-fun reproach_N : N ;
-fun approach_N : N ;
-fun amphibrach_N : N ;
-fun orach_N : N ;
-fun beech_N : N ;
-fun leech_N : N ;
-fun horseleech_N : N ;
-fun speech_N : N ;
-fun breech_N : N ;
-fun screech_N : N ;
-fun tech_N : N ;
-fun tovarich_N : N ;
-fun ostrich_N : N ;
-fun sandwich_N : N ;
-fun belch_N : N ;
-fun squelch_N : N ;
-fun liebfraumilch_N : N ;
-fun gulch_N : N ;
-fun mulch_N : N ;
-fun ranch_N : N ;
-fun branch_N : N ;
-fun elasmobranch_N : N ;
-fun bench_N : N ;
-fun 'cross-bench_N' : N ;
-fun 'front-bench_N' : N ;
-fun backbench_N : N ;
-fun workbench_N : N ;
-fun crossbench_N : N ;
-fun french_N : N ;
-fun trench_N : N ;
-fun wrench_N : N ;
-fun 'monkey-wrench_N' : N ;
-fun stench_N : N ;
-fun wench_N : N ;
-fun inch_N : N ;
-fun cinch_N : N ;
-fun finch_N : N ;
-fun goldfinch_N : N ;
-fun chaffinch_N : N ;
-fun bullfinch_N : N ;
-fun grassfinch_N : N ;
-fun hawfinch_N : N ;
-fun clinch_N : N ;
-fun pinch_N : N ;
-fun squinch_N : N ;
-fun winch_N : N ;
-fun conch_N : N ;
-fun haunch_N : N ;
-fun launch_N : N ;
-fun paunch_N : N ;
-fun bunch_N : N ;
-fun hunch_N : N ;
-fun lunch_N : N ;
-fun clunch_N : N ;
-fun munch_N : N ;
-fun punch_N : N ;
-fun 'rabbit-punch_N' : N ;
-fun counterpunch_N : N ;
-fun brunch_N : N ;
-fun crunch_N : N ;
-fun buttercrunch_N : N ;
-fun scrunch_N : N ;
-fun lynch_N : N ;
-fun moloch_N : N ;
-fun hooch_N : N ;
-fun pooch_N : N ;
-fun brooch_N : N ;
-fun arch_N : N ;
-fun March_N : N ;
-fun search_N : N ;
-fun research_N : N ;
-fun larch_N : N ;
-fun 'hunger-march_N' : N ;
-fun routemarch_N : N ;
-fun countermarch_N : N ;
-fun ethnarch_N : N ;
-fun eparch_N : N ;
-fun hierarch_N : N ;
-fun starch_N : N ;
-fun cornstarch_N : N ;
-fun exarch_N : N ;
-fun surfperch_N : N ;
-fun birch_N : N ;
-fun smirch_N : N ;
-fun scorch_N : N ;
-fun porch_N : N ;
-fun 'sun-porch_N' : N ;
-fun torch_N : N ;
-fun blowtorch_N : N ;
-fun church_N : N ;
-fun lurch_N : N ;
-fun mensch_N : N ;
-fun kirsch_N : N ;
-fun borsch_N : N ;
-fun kitsch_N : N ;
-fun bortsch_N : N ;
-fun putsch_N : N ;
-fun batch_N : N ;
-fun catch_N : N ;
-fun 'safety-catch_N' : N ;
-fun hatch_N : N ;
-fun thatch_N : N ;
-fun nuthatch_N : N ;
-fun latch_N : N ;
-fun potlatch_N : N ;
-fun match_N : N ;
-fun 'love-match_N' : N ;
-fun 'sparring-match_N' : N ;
-fun 'boxing-match_N' : N ;
-fun 'safety-match_N' : N ;
-fun mismatch_N : N ;
-fun snatch_N : N ;
-fun patch_N : N ;
-fun eyepatch_N : N ;
-fun despatch_N : N ;
-fun dispatch_N : N ;
-fun crosspatch_N : N ;
-fun ratch_N : N ;
-fun scratch_N : N ;
-fun watch_N : N ;
-fun 'night-watch_N' : N ;
-fun dogwatch_N : N ;
-fun stopwatch_N : N ;
-fun swatch_N : N ;
-fun wristwatch_N : N ;
-fun fetch_N : N ;
-fun ketch_N : N ;
-fun sketch_N : N ;
-fun stretch_N : N ;
-fun homestretch_N : N ;
-fun wretch_N : N ;
-fun vetch_N : N ;
-fun kvetch_N : N ;
-fun itch_N : N ;
-fun aitch_N : N ;
-fun bitch_N : N ;
-fun ditch_N : N ;
-fun hitch_N : N ;
-fun 'clove hitch_N' : N ;
-fun flitch_N : N ;
-fun pitch_N : N ;
-fun stitch_N : N ;
-fun 'hemming-stitch_N' : N ;
-fun 'chain-stitch_N' : N ;
-fun 'cross-stitch_N' : N ;
-fun backstitch_N : N ;
-fun lockstitch_N : N ;
-fun hemstitch_N : N ;
-fun whipstitch_N : N ;
-fun witch_N : N ;
-fun switch_N : N ;
-fun 'time-switch_N' : N ;
-fun twitch_N : N ;
-fun botch_N : N ;
-fun scotch_N : N ;
-fun hopscotch_N : N ;
-fun butterscotch_N : N ;
-fun blotch_N : N ;
-fun splotch_N : N ;
-fun notch_N : N ;
-fun hotchpotch_N : N ;
-fun crotch_N : N ;
-fun nautch_N : N ;
-fun butch_N : N ;
-fun cutch_N : N ;
-fun 'double-dutch_N' : N ;
-fun hutch_N : N ;
-fun 'rabbit-hutch_N' : N ;
-fun clutch_N : N ;
-fun crutch_N : N ;
-fun debauch_N : N ;
-fun couch_N : N ;
-fun slouch_N : N ;
-fun pouch_N : N ;
-fun crouch_N : N ;
-fun grouch_N : N ;
-fun touch_N : N ;
-fun stomach_N : N ;
-fun sassenach_N : N ;
-fun cromlech_N : N ;
-fun Czech_N : N ;
-fun reich_N : N ;
-fun loch_N : N ;
-fun epoch_N : N ;
-fun pibroch_N : N ;
-fun oligarch_N : N ;
-fun matriarch_N : N ;
-fun patriarch_N : N ;
-fun monarch_N : N ;
-fun pentateuch_N : N ;
-fun eunuch_N : N ;
-fun diptych_N : N ;
-fun triptych_N : N ;
-fun lamedh_N : N ;
-fun ceilidh_N : N ;
-fun yodh_N : N ;
-fun sigeh_N : N ;
-fun tabbouleh_N : N ;
-fun meshuggeneh_N : N ;
-fun lanseh_N : N ;
-fun kaffiyeh_N : N ;
-fun shillelagh_N : N ;
-fun sleigh_N : N ;
-fun bobsleigh_N : N ;
-fun neigh_N : N ;
-fun high_N : N ;
-fun thigh_N : N ;
-fun sigh_N : N ;
-fun burgh_N : N ;
-fun laugh_N : N ;
-fun 'horse-laugh_N' : N ;
-fun bellylaugh_N : N ;
-fun bough_N : N ;
-fun cough_N : N ;
-fun 'whooping-cough_N' : N ;
-fun hiccough_N : N ;
-fun dough_N : N ;
-fun sourdough_N : N ;
-fun chough_N : N ;
-fun lough_N : N ;
-fun plough_N : N ;
-fun snowplough_N : N ;
-fun furlough_N : N ;
-fun slough_N : N ;
-fun rough_N : N ;
-fun 'pull-through_N' : N ;
-fun 'run-through_N' : N ;
-fun 'follow-through_N' : N ;
-fun breakthrough_N : N ;
-fun borough_N : N ;
-fun gainsborough_N : N ;
-fun trough_N : N ;
-fun tough_N : N ;
-fun lakh_N : N ;
-fun samekh_N : N ;
-fun sheikh_N : N ;
-fun sikh_N : N ;
-fun pharaoh_N : N ;
-fun doh_N : N ;
-fun kaph_N : N ;
-fun paraph_N : N ;
-fun seraph_N : N ;
-fun graph_N : N ;
-fun paragraph_N : N ;
-fun telegraph_N : N ;
-fun radiotelegraph_N : N ;
-fun digraph_N : N ;
-fun epigraph_N : N ;
-fun ideograph_N : N ;
-fun mimeograph_N : N ;
-fun tachograph_N : N ;
-fun lithograph_N : N ;
-fun photolithograph_N : N ;
-fun biograph_N : N ;
-fun radiograph_N : N ;
-fun autoradiograph_N : N ;
-fun cardiograph_N : N ;
-fun echocardiograph_N : N ;
-fun electrocardiograph_N : N ;
-fun ballistocardiograph_N : N ;
-fun heliograph_N : N ;
-fun echoencephalograph_N : N ;
-fun electroencephalograph_N : N ;
-fun allograph_N : N ;
-fun oscillograph_N : N ;
-fun holograph_N : N ;
-fun homograph_N : N ;
-fun tomograph_N : N ;
-fun thermograph_N : N ;
-fun seismograph_N : N ;
-fun plethysmograph_N : N ;
-fun kymograph_N : N ;
-fun stenograph_N : N ;
-fun phonograph_N : N ;
-fun monograph_N : N ;
-fun chronograph_N : N ;
-fun sonograph_N : N ;
-fun barograph_N : N ;
-fun photomicrograph_N : N ;
-fun spirograph_N : N ;
-fun electrograph_N : N ;
-fun spectrograph_N : N ;
-fun pyrograph_N : N ;
-fun addressograph_N : N ;
-fun hectograph_N : N ;
-fun pictograph_N : N ;
-fun magnetograph_N : N ;
-fun pantograph_N : N ;
-fun photograph_N : N ;
-fun telephotograph_N : N ;
-fun radiophotograph_N : N ;
-fun cryptograph_N : N ;
-fun autograph_N : N ;
-fun electromyograph_N : N ;
-fun viewgraph_N : N ;
-fun polygraph_N : N ;
-fun epitaph_N : N ;
-fun cenotaph_N : N ;
-fun aleph_N : N ;
-fun caliph_N : N ;
-fun sylph_N : N ;
-fun oomph_N : N ;
-fun triumph_N : N ;
-fun lymph_N : N ;
-fun perilymph_N : N ;
-fun endolymph_N : N ;
-fun karyolymph_N : N ;
-fun nymph_N : N ;
-fun 'water-nymph_N' : N ;
-fun qoph_N : N ;
-fun heterotroph_N : N ;
-fun morosoph_N : N ;
-fun endomorph_N : N ;
-fun lagomorph_N : N ;
-fun enantiomorph_N : N ;
-fun allomorph_N : N ;
-fun mesomorph_N : N ;
-fun ectomorph_N : N ;
-fun rhizomorph_N : N ;
-fun polymorph_N : N ;
-fun glyph_N : N ;
-fun anaglyph_N : N ;
-fun hieroglyph_N : N ;
-fun petroglyph_N : N ;
-fun catarrh_N : N ;
-fun myrrh_N : N ;
-fun ash_N : N ;
-fun bash_N : N ;
-fun calabash_N : N ;
-fun cash_N : N ;
-fun dash_N : N ;
-fun balderdash_N : N ;
-fun leash_N : N ;
-fun gash_N : N ;
-fun hash_N : N ;
-fun rehash_N : N ;
-fun lash_N : N ;
-fun calash_N : N ;
-fun clash_N : N ;
-fun whitelash_N : N ;
-fun eyelash_N : N ;
-fun flash_N : N ;
-fun 'shoulder-flash_N' : N ;
-fun 'heat-flash_N' : N ;
-fun photoflash_N : N ;
-fun newsflash_N : N ;
-fun backlash_N : N ;
-fun whiplash_N : N ;
-fun splash_N : N ;
-fun slash_N : N ;
-fun goulash_N : N ;
-fun mash_N : N ;
-fun mishmash_N : N ;
-fun smash_N : N ;
-fun rash_N : N ;
-fun crash_N : N ;
-fun nettlerash_N : N ;
-fun thrash_N : N ;
-fun trash_N : N ;
-fun sash_N : N ;
-fun succotash_N : N ;
-fun potash_N : N ;
-fun musquash_N : N ;
-fun wash_N : N ;
-fun 'color-wash_N' : N ;
-fun 'colour-wash_N' : N ;
-fun whitewash_N : N ;
-fun eyewash_N : N ;
-fun pigwash_N : N ;
-fun hogwash_N : N ;
-fun backwash_N : N ;
-fun blackwash_N : N ;
-fun swash_N : N ;
-fun flesh_N : N ;
-fun 'goose-flesh_N' : N ;
-fun horseflesh_N : N ;
-fun mesh_N : N ;
-fun synchromesh_N : N ;
-fun resh_N : N ;
-fun Swedish_N : N ;
-fun nebbish_N : N ;
-fun rubbish_N : N ;
-fun dish_N : N ;
-fun 'chafing dish_N' : N ;
-fun 'side-dish_N' : N ;
-fun radish_N : N ;
-fun horseradish_N : N ;
-fun yiddish_N : N ;
-fun threadfish_N : N ;
-fun toadfish_N : N ;
-fun redfish_N : N ;
-fun sandfish_N : N ;
-fun groundfish_N : N ;
-fun lizardfish_N : N ;
-fun spadefish_N : N ;
-fun paddlefish_N : N ;
-fun needlefish_N : N ;
-fun filefish_N : N ;
-fun tilefish_N : N ;
-fun cuttlefish_N : N ;
-fun porcupinefish_N : N ;
-fun bonefish_N : N ;
-fun stonefish_N : N ;
-fun snipefish_N : N ;
-fun pipefish_N : N ;
-fun goosefish_N : N ;
-fun rosefish_N : N ;
-fun whitefish_N : N ;
-fun tonguefish_N : N ;
-fun bluefish_N : N ;
-fun wolffish_N : N ;
-fun hagfish_N : N ;
-fun flagfish_N : N ;
-fun pigfish_N : N ;
-fun kingfish_N : N ;
-fun clingfish_N : N ;
-fun lungfish_N : N ;
-fun hogfish_N : N ;
-fun frogfish_N : N ;
-fun conchfish_N : N ;
-fun killifish_N : N ;
-fun weakfish_N : N ;
-fun blackfish_N : N ;
-fun rockfish_N : N ;
-fun monkfish_N : N ;
-fun porkfish_N : N ;
-fun dealfish_N : N ;
-fun cardinalfish_N : N ;
-fun angelfish_N : N ;
-fun barrelfish_N : N ;
-fun squirrelfish_N : N ;
-fun damselfish_N : N ;
-fun snailfish_N : N ;
-fun sailfish_N : N ;
-fun oilfish_N : N ;
-fun billfish_N : N ;
-fun pearlfish_N : N ;
-fun panfish_N : N ;
-fun dolphinfish_N : N ;
-fun pinfish_N : N ;
-fun ribbonfish_N : N ;
-fun surgeonfish_N : N ;
-fun lionfish_N : N ;
-fun scorpionfish_N : N ;
-fun balloonfish_N : N ;
-fun moonfish_N : N ;
-fun lanternfish_N : N ;
-fun buffalofish_N : N ;
-fun mosquitofish_N : N ;
-fun soapfish_N : N ;
-fun shrimpfish_N : N ;
-fun lumpfish_N : N ;
-fun spearfish_N : N ;
-fun dollarfish_N : N ;
-fun oarfish_N : N ;
-fun boarfish_N : N ;
-fun guitarfish_N : N ;
-fun rudderfish_N : N ;
-fun triggerfish_N : N ;
-fun archerfish_N : N ;
-fun soldierfish_N : N ;
-fun butterfish_N : N ;
-fun silverfish_N : N ;
-fun alligatorfish_N : N ;
-fun doctorfish_N : N ;
-fun burrfish_N : N ;
-fun cutlassfish_N : N ;
-fun batfish_N : N ;
-fun goatfish_N : N ;
-fun lancetfish_N : N ;
-fun cornetfish_N : N ;
-fun trumpetfish_N : N ;
-fun driftfish_N : N ;
-fun rabbitfish_N : N ;
-fun pilotfish_N : N ;
-fun parrotfish_N : N ;
-fun harvestfish_N : N ;
-fun jawfish_N : N ;
-fun crawfish_N : N ;
-fun sawfish_N : N ;
-fun jewfish_N : N ;
-fun cowfish_N : N ;
-fun blowfish_N : N ;
-fun boxfish_N : N ;
-fun crayfish_N : N ;
-fun ladyfish_N : N ;
-fun hashish_N : N ;
-fun Turkish_N : N ;
-fun relish_N : N ;
-fun English_N : N ;
-fun Polish_N : N ;
-fun polish_N : N ;
-fun 'nail-polish_N' : N ;
-fun blemish_N : N ;
-fun flemish_N : N ;
-fun skirmish_N : N ;
-fun Danish_N : N ;
-fun Spanish_N : N ;
-fun finish_N : N ;
-fun knish_N : N ;
-fun Finnish_N : N ;
-fun garnish_N : N ;
-fun tarnish_N : N ;
-fun varnish_N : N ;
-fun 'nail-varnish_N' : N ;
-fun Irish_N : N ;
-fun parish_N : N ;
-fun gibberish_N : N ;
-fun flourish_N : N ;
-fun fetish_N : N ;
-fun anguish_N : N ;
-fun squish_N : N ;
-fun dervish_N : N ;
-fun wish_N : N ;
-fun swish_N : N ;
-fun welsh_N : N ;
-fun bosh_N : N ;
-fun cosh_N : N ;
-fun galosh_N : N ;
-fun golosh_N : N ;
-fun nosh_N : N ;
-fun tarboosh_N : N ;
-fun swoosh_N : N ;
-fun tosh_N : N ;
-fun macintosh_N : N ;
-fun mackintosh_N : N ;
-fun marsh_N : N ;
-fun bush_N : N ;
-fun spicebush_N : N ;
-fun minniebush_N : N ;
-fun needlebush_N : N ;
-fun tanglebush_N : N ;
-fun brittlebush_N : N ;
-fun flannelbush_N : N ;
-fun ambush_N : N ;
-fun goldenbush_N : N ;
-fun staggerbush_N : N ;
-fun fetterbush_N : N ;
-fun lawyerbush_N : N ;
-fun saltbush_N : N ;
-fun squawbush_N : N ;
-fun daisybush_N : N ;
-fun gush_N : N ;
-fun hush_N : N ;
-fun lush_N : N ;
-fun blush_N : N ;
-fun flush_N : N ;
-fun plush_N : N ;
-fun slush_N : N ;
-fun mush_N : N ;
-fun push_N : N ;
-fun 'bell-push_N' : N ;
-fun rush_N : N ;
-fun 'gold-rush_N' : N ;
-fun brush_N : N ;
-fun 'scrubbing-brush_N' : N ;
-fun 'shaving-brush_N' : N ;
-fun sagebrush_N : N ;
-fun bottlebrush_N : N ;
-fun toothbrush_N : N ;
-fun nailbrush_N : N ;
-fun underbrush_N : N ;
-fun airbrush_N : N ;
-fun hairbrush_N : N ;
-fun clothesbrush_N : N ;
-fun paintbrush_N : N ;
-fun crush_N : N ;
-fun thrush_N : N ;
-fun bulrush_N : N ;
-fun inrush_N : N ;
-fun onrush_N : N ;
-fun qurush_N : N ;
-fun bath_N : N ;
-fun 'blood-bath_N' : N ;
-fun 'mud-bath_N' : N ;
-fun 'swimming-bath_N' : N ;
-fun 'hip-bath_N' : N ;
-fun 'shower-bath_N' : N ;
-fun 'vapour-bath_N' : N ;
-fun 'foot-bath_N' : N ;
-fun sabbath_N : N ;
-fun bloodbath_N : N ;
-fun birdbath_N : N ;
-fun eyebath_N : N ;
-fun footbath_N : N ;
-fun death_N : N ;
-fun megadeath_N : N ;
-fun heath_N : N ;
-fun sheath_N : N ;
-fun breath_N : N ;
-fun wreath_N : N ;
-fun 'bay-wreath_N' : N ;
-fun goliath_N : N ;
-fun lath_N : N ;
-fun philomath_N : N ;
-fun aftermath_N : N ;
-fun polymath_N : N ;
-fun toxicognath_N : N ;
-fun plectognath_N : N ;
-fun oath_N : N ;
-fun path_N : N ;
-fun 'bridle-path_N' : N ;
-fun 'flare-path_N' : N ;
-fun 'towing-path_N' : N ;
-fun naprapath_N : N ;
-fun homeopath_N : N ;
-fun homoeopath_N : N ;
-fun osteopath_N : N ;
-fun psychopath_N : N ;
-fun sociopath_N : N ;
-fun naturopath_N : N ;
-fun warpath_N : N ;
-fun footpath_N : N ;
-fun towpath_N : N ;
-fun bypath_N : N ;
-fun wrath_N : N ;
-fun swath_N : N ;
-fun breadth_N : N ;
-fun 'hair-breadth_N' : N ;
-fun 'hair\'s-breadth_N' : N ;
-fun handbreadth_N : N ;
-fun width_N : N ;
-fun bandwidth_N : N ;
-fun beth_N : N ;
-fun heth_N : N ;
-fun daleth_N : N ;
-fun shibboleth_N : N ;
-fun teth_N : N ;
-fun length_N : N ;
-fun 'cable-length_N' : N ;
-fun 'cable\'s-length_N' : N ;
-fun wavelength_N : N ;
-fun strength_N : N ;
-fun faith_N : N ;
-fun wraith_N : N ;
-fun kith_N : N ;
-fun megalith_N : N ;
-fun ptyalith_N : N ;
-fun eolith_N : N ;
-fun paleolith_N : N ;
-fun neolith_N : N ;
-fun batholith_N : N ;
-fun sialolith_N : N ;
-fun xenolith_N : N ;
-fun monolith_N : N ;
-fun enterolith_N : N ;
-fun coprolith_N : N ;
-fun urolith_N : N ;
-fun smith_N : N ;
-fun goldsmith_N : N ;
-fun wordsmith_N : N ;
-fun blacksmith_N : N ;
-fun locksmith_N : N ;
-fun clocksmith_N : N ;
-fun tinsmith_N : N ;
-fun gunsmith_N : N ;
-fun coppersmith_N : N ;
-fun silversmith_N : N ;
-fun arrowsmith_N : N ;
-fun zenith_N : N ;
-fun pith_N : N ;
-fun crith_N : N ;
-fun health_N : N ;
-fun stealth_N : N ;
-fun wealth_N : N ;
-fun commonwealth_N : N ;
-fun filth_N : N ;
-fun tilth_N : N ;
-fun warmth_N : N ;
-fun tragacanth_N : N ;
-fun coelacanth_N : N ;
-fun perianth_N : N ;
-fun amaranth_N : N ;
-fun tenth_N : N ;
-fun terebinth_N : N ;
-fun hyacinth_N : N ;
-fun waterhyacinth_N : N ;
-fun plinth_N : N ;
-fun helminth_N : N ;
-fun ninth_N : N ;
-fun labyrinth_N : N ;
-fun absinth_N : N ;
-fun billionth_N : N ;
-fun millionth_N : N ;
-fun trillionth_N : N ;
-fun month_N : N ;
-fun twelvemonth_N : N ;
-fun goth_N : N ;
-fun cloth_N : N ;
-fun 'tea-cloth_N' : N ;
-fun 'face-cloth_N' : N ;
-fun 'pilot-cloth_N' : N ;
-fun 'tray-cloth_N' : N ;
-fun broadcloth_N : N ;
-fun tablecloth_N : N ;
-fun cerecloth_N : N ;
-fun cheesecloth_N : N ;
-fun horsecloth_N : N ;
-fun breechcloth_N : N ;
-fun washcloth_N : N ;
-fun dishcloth_N : N ;
-fun backcloth_N : N ;
-fun sackcloth_N : N ;
-fun neckcloth_N : N ;
-fun sailcloth_N : N ;
-fun oilcloth_N : N ;
-fun loincloth_N : N ;
-fun haircloth_N : N ;
-fun dustcloth_N : N ;
-fun sloth_N : N ;
-fun moth_N : N ;
-fun 'clothes-moth_N' : N ;
-fun hawkmoth_N : N ;
-fun mammoth_N : N ;
-fun booth_N : N ;
-fun 'polling-booth_N' : N ;
-fun phonebooth_N : N ;
-fun tollbooth_N : N ;
-fun smooth_N : N ;
-fun sooth_N : N ;
-fun 'dog\'s-tooth_N' : N ;
-fun dogtooth_N : N ;
-fun sawtooth_N : N ;
-fun broth_N : N ;
-fun froth_N : N ;
-fun troth_N : N ;
-fun depth_N : N ;
-fun earth_N : N ;
-fun dearth_N : N ;
-fun hearth_N : N ;
-fun berth_N : N ;
-fun 'sick-berth_N' : N ;
-fun birth_N : N ;
-fun 'live-birth_N' : N ;
-fun childbirth_N : N ;
-fun rebirth_N : N ;
-fun stillbirth_N : N ;
-fun afterbirth_N : N ;
-fun firth_N : N ;
-fun girth_N : N ;
-fun mirth_N : N ;
-fun penn'orth_N : N ;
-fun ha'p'orth_N : N ;
-fun North_N : N ;
-fun worth_N : N ;
-fun pennyworth_N : N ;
-fun halfpennyworth_N : N ;
-fun musth_N : N ;
-fun sleuth_N : N ;
-fun azimuth_N : N ;
-fun altazimuth_N : N ;
-fun bismuth_N : N ;
-fun South_N : N ;
-fun mouth_N : N ;
-fun 'foot-and-mouth_N' : N ;
-fun loudmouth_N : N ;
-fun largemouth_N : N ;
-fun frogmouth_N : N ;
-fun goalmouth_N : N ;
-fun smallmouth_N : N ;
-fun blabbermouth_N : N ;
-fun vermouth_N : N ;
-fun motormouth_N : N ;
-fun wrymouth_N : N ;
-fun youth_N : N ;
-fun truth_N : N ;
-fun 'half-truth_N' : N ;
-fun untruth_N : N ;
-fun growth_N : N ;
-fun ingrowth_N : N ;
-fun undergrowth_N : N ;
-fun overgrowth_N : N ;
-fun outgrowth_N : N ;
-fun myth_N : N ;
-fun 'genius loci_N' : N ;
-fun 'modus operandi_N' : N ;
-fun 'modus vivendi_N' : N ;
-fun 'fait accompli_N' : N ;
-fun 'vox populi_N' : N ;
-fun mi_N : N ;
-fun 'decree nisi_N' : N ;
-fun ti_N : N ;
-fun samurai_N : N ;
-fun 'casus belli_N' : N ;
-fun zucchini_N : N ;
-fun confetti_N : N ;
-fun assagai_N : N ;
-fun assegai_N : N ;
-fun nilgai_N : N ;
-fun thai_N : N ;
-fun kowhai_N : N ;
-fun salai_N : N ;
-fun lanai_N : N ;
-fun caravanserai_N : N ;
-fun bonsai_N : N ;
-fun matai_N : N ;
-fun chigetai_N : N ;
-fun banzai_N : N ;
-fun niqaabi_N : N ;
-fun kohlrabi_N : N ;
-fun wasabi_N : N ;
-fun tabi_N : N ;
-fun rabbi_N : N ;
-fun cbi_N : N ;
-fun alibi_N : N ;
-fun bilimbi_N : N ;
-fun zombi_N : N ;
-fun obi_N : N ;
-fun krubi_N : N ;
-fun khadi_N : N ;
-fun qadi_N : N ;
-fun wadi_N : N ;
-fun gaddi_N : N ;
-fun cedi_N : N ;
-fun garibaldi_N : N ;
-fun effendi_N : N ;
-fun hindi_N : N ;
-fun salmagundi_N : N ;
-fun barramundi_N : N ;
-fun jaguarundi_N : N ;
-fun lei_N : N ;
-fun lwei_N : N ;
-fun 'sci fi_N' : N ;
-fun 'hi-fi_N' : N ;
-fun naafi_N : N ;
-fun gi_N : N ;
-fun nagi_N : N ;
-fun yagi_N : N ;
-fun lungi_N : N ;
-fun shogi_N : N ;
-fun pirogi_N : N ;
-fun yogi_N : N ;
-fun corgi_N : N ;
-fun chi_N : N ;
-fun hibachi_N : N ;
-fun mariachi_N : N ;
-fun gnocchi_N : N ;
-fun chichi_N : N ;
-fun lichi_N : N ;
-fun pichi_N : N ;
-fun litchi_N : N ;
-fun sandhi_N : N ;
-fun phi_N : N ;
-fun bangladeshi_N : N ;
-fun sushi_N : N ;
-fun lathi_N : N ;
-fun aalii_N : N ;
-fun hadji_N : N ;
-fun hajji_N : N ;
-fun basenji_N : N ;
-fun shoji_N : N ;
-fun fuji_N : N ;
-fun khaki_N : N ;
-fun kaki_N : N ;
-fun souvlaki_N : N ;
-fun saki_N : N ;
-fun sukiyaki_N : N ;
-fun teriyaki_N : N ;
-fun dashiki_N : N ;
-fun ski_N : N ;
-fun baronduki_N : N ;
-fun chilli_N : N ;
-fun li_N : N ;
-fun bengali_N : N ;
-fun argali_N : N ;
-fun alkali_N : N ;
-fun Somali_N : N ;
-fun nepali_N : N ;
-fun israeli_N : N ;
-fun swahili_N : N ;
-fun chili_N : N ;
-fun vermicelli_N : N ;
-fun piccalilli_N : N ;
-fun broccoli_N : N ;
-fun aioli_N : N ;
-fun mostaccioli_N : N ;
-fun ravioli_N : N ;
-fun muesli_N : N ;
-fun douroucouli_N : N ;
-fun patchouli_N : N ;
-fun 'lapis lazuli_N' : N ;
-fun nagami_N : N ;
-fun origami_N : N ;
-fun salami_N : N ;
-fun tsunami_N : N ;
-fun pastrami_N : N ;
-fun swami_N : N ;
-fun elemi_N : N ;
-fun sashimi_N : N ;
-fun salmi_N : N ;
-fun marumi_N : N ;
-fun ani_N : N ;
-fun Afghani_N : N ;
-fun omani_N : N ;
-fun frangipani_N : N ;
-fun rani_N : N ;
-fun maharani_N : N ;
-fun guarani_N : N ;
-fun Pakistani_N : N ;
-fun afghanistani_N : N ;
-fun hindustani_N : N ;
-fun bhutani_N : N ;
-fun biryani_N : N ;
-fun lilangeni_N : N ;
-fun yemeni_N : N ;
-fun bahraini_N : N ;
-fun malahini_N : N ;
-fun tahini_N : N ;
-fun bikini_N : N ;
-fun blini_N : N ;
-fun tortellini_N : N ;
-fun konini_N : N ;
-fun martini_N : N ;
-fun spaghettini_N : N ;
-fun penni_N : N ;
-fun cannelloni_N : N ;
-fun macaroni_N : N ;
-fun pepperoni_N : N ;
-fun rigatoni_N : N ;
-fun poi_N : N ;
-fun octroi_N : N ;
-fun envoi_N : N ;
-fun borzoi_N : N ;
-fun pi_N : N ;
-fun okapi_N : N ;
-fun kepi_N : N ;
-fun scampi_N : N ;
-fun topi_N : N ;
-fun qi_N : N ;
-fun iraqi_N : N ;
-fun safari_N : N ;
-fun hegari_N : N ;
-fun uakari_N : N ;
-fun lari_N : N ;
-fun certiorari_N : N ;
-fun sari_N : N ;
-fun qatari_N : N ;
-fun mapinguari_N : N ;
-fun souari_N : N ;
-fun charivari_N : N ;
-fun indri_N : N ;
-fun 'beri-beri_N' : N ;
-fun beriberi_N : N ;
-fun peri_N : N ;
-fun grigri_N : N ;
-fun 'hara-kiri_N' : N ;
-fun harakiri_N : N ;
-fun kashmiri_N : N ;
-fun cassiri_N : N ;
-fun daiquiri_N : N ;
-fun maori_N : N ;
-fun satori_N : N ;
-fun potpourri_N : N ;
-fun tetri_N : N ;
-fun kauri_N : N ;
-fun khukuri_N : N ;
-fun houri_N : N ;
-fun venturi_N : N ;
-fun dalasi_N : N ;
-fun sannyasi_N : N ;
-fun pachisi_N : N ;
-fun psi_N : N ;
-fun farsi_N : N ;
-fun jati_N : N ;
-fun coati_N : N ;
-fun jupati_N : N ;
-fun literati_N : N ;
-fun culturati_N : N ;
-fun siswati_N : N ;
-fun dti_N : N ;
-fun spermaceti_N : N ;
-fun yeti_N : N ;
-fun shufti_N : N ;
-fun mufti_N : N ;
-fun kuwaiti_N : N ;
-fun seniti_N : N ;
-fun wapiti_N : N ;
-fun titi_N : N ;
-fun ziti_N : N ;
-fun bhakti_N : N ;
-fun bolti_N : N ;
-fun anti_N : N ;
-fun chianti_N : N ;
-fun inti_N : N ;
-fun dhoti_N : N ;
-fun loti_N : N ;
-fun ghatti_N : N ;
-fun chapatti_N : N ;
-fun spaghetti_N : N ;
-fun manicotti_N : N ;
-fun 'tutti-frutti_N' : N ;
-fun agouti_N : N ;
-fun ennui_N : N ;
-fun jiqui_N : N ;
-fun etui_N : N ;
-fun wi_N : N ;
-fun kiwi_N : N ;
-fun xi_N : N ;
-fun maxi_N : N ;
-fun taxi_N : N ;
-fun nazi_N : N ;
-fun swazi_N : N ;
-fun raj_N : N ;
-fun dj_N : N ;
-fun hajj_N : N ;
-fun munj_N : N ;
-fun outback_N : N ;
-fun haddock_N : N ;
-fun duck_N : N ;
-fun wk_N : N ;
-fun beak_N : N ;
-fun halfbeak_N : N ;
-fun grosbeak_N : N ;
-fun leak_N : N ;
-fun sneak_N : N ;
-fun peak_N : N ;
-fun doublespeak_N : N ;
-fun doctorspeak_N : N ;
-fun newspeak_N : N ;
-fun break_N : N ;
-fun 'tea-break_N' : N ;
-fun windbreak_N : N ;
-fun firebreak_N : N ;
-fun gaolbreak_N : N ;
-fun heartbreak_N : N ;
-fun outbreak_N : N ;
-fun daybreak_N : N ;
-fun creak_N : N ;
-fun freak_N : N ;
-fun streak_N : N ;
-fun hairstreak_N : N ;
-fun teak_N : N ;
-fun steak_N : N ;
-fun 'rump-steak_N' : N ;
-fun beefsteak_N : N ;
-fun squeak_N : N ;
-fun pipsqueak_N : N ;
-fun tweak_N : N ;
-fun dhak_N : N ;
-fun flak_N : N ;
-fun tokamak_N : N ;
-fun yashmak_N : N ;
-fun oak_N : N ;
-fun 'holm-oak_N' : N ;
-fun cloak_N : N ;
-fun 'opera-cloak_N' : N ;
-fun croak_N : N ;
-fun soak_N : N ;
-fun anorak_N : N ;
-fun slovak_N : N ;
-fun Czechoslovak_N : N ;
-fun yak_N : N ;
-fun kayak_N : N ;
-fun 'ack-ack_N' : N ;
-fun back_N : N ;
-fun huckaback_N : N ;
-fun feedback_N : N ;
-fun biofeedback_N : N ;
-fun diamondback_N : N ;
-fun hardback_N : N ;
-fun dieback_N : N ;
-fun zwieback_N : N ;
-fun saddleback_N : N ;
-fun prickleback_N : N ;
-fun stickleback_N : N ;
-fun comeback_N : N ;
-fun horseback_N : N ;
-fun halfback_N : N ;
-fun slingback_N : N ;
-fun wingback_N : N ;
-fun hogback_N : N ;
-fun hunchback_N : N ;
-fun hatchback_N : N ;
-fun touchback_N : N ;
-fun flashback_N : N ;
-fun kickback_N : N ;
-fun tailback_N : N ;
-fun rollback_N : N ;
-fun fullback_N : N ;
-fun pullback_N : N ;
-fun greenback_N : N ;
-fun finback_N : N ;
-fun humpback_N : N ;
-fun cornerback_N : N ;
-fun paperback_N : N ;
-fun quarterback_N : N ;
-fun silverback_N : N ;
-fun razorback_N : N ;
-fun canvasback_N : N ;
-fun mossback_N : N ;
-fun fatback_N : N ;
-fun setback_N : N ;
-fun cutback_N : N ;
-fun clawback_N : N ;
-fun drawback_N : N ;
-fun blowback_N : N ;
-fun throwback_N : N ;
-fun playback_N : N ;
-fun payback_N : N ;
-fun greyback_N : N ;
-fun piggyback_N : N ;
-fun hack_N : N ;
-fun shack_N : N ;
-fun whack_N : N ;
-fun jack_N : N ;
-fun steeplejack_N : N ;
-fun applejack_N : N ;
-fun supplejack_N : N ;
-fun highjack_N : N ;
-fun hijack_N : N ;
-fun blackjack_N : N ;
-fun cheapjack_N : N ;
-fun flapjack_N : N ;
-fun skipjack_N : N ;
-fun amberjack_N : N ;
-fun lumberjack_N : N ;
-fun natterjack_N : N ;
-fun crossjack_N : N ;
-fun bootjack_N : N ;
-fun lack_N : N ;
-fun black_N : N ;
-fun 'lamp-black_N' : N ;
-fun shoeblack_N : N ;
-fun bootblack_N : N ;
-fun clack_N : N ;
-fun pollack_N : N ;
-fun polack_N : N ;
-fun slack_N : N ;
-fun smack_N : N ;
-fun knack_N : N ;
-fun 'knick-knack_N' : N ;
-fun nicknack_N : N ;
-fun knickknack_N : N ;
-fun snack_N : N ;
-fun pack_N : N ;
-fun 'face-pack_N' : N ;
-fun icepack_N : N ;
-fun backpack_N : N ;
-fun rack_N : N ;
-fun 'luggage-rack_N' : N ;
-fun 'pipe-rack_N' : N ;
-fun 'plate-rack_N' : N ;
-fun 'towel-rack_N' : N ;
-fun barmbrack_N : N ;
-fun crack_N : N ;
-fun wisecrack_N : N ;
-fun hitchrack_N : N ;
-fun rickrack_N : N ;
-fun arrack_N : N ;
-fun barrack_N : N ;
-fun carrack_N : N ;
-fun track_N : N ;
-fun 'half-track_N' : N ;
-fun 'cinder-track_N' : N ;
-fun 'cart-track_N' : N ;
-fun 'dirt-track_N' : N ;
-fun coatrack_N : N ;
-fun soundtrack_N : N ;
-fun racetrack_N : N ;
-fun sidetrack_N : N ;
-fun toastrack_N : N ;
-fun wrack_N : N ;
-fun bladderwrack_N : N ;
-fun hayrack_N : N ;
-fun sack_N : N ;
-fun rucksack_N : N ;
-fun knapsack_N : N ;
-fun gripsack_N : N ;
-fun haversack_N : N ;
-fun gunnysack_N : N ;
-fun tack_N : N ;
-fun thumbtack_N : N ;
-fun hardtack_N : N ;
-fun ticktack_N : N ;
-fun tintack_N : N ;
-fun stack_N : N ;
-fun smokestack_N : N ;
-fun haystack_N : N ;
-fun chimneystack_N : N ;
-fun attack_N : N ;
-fun counterattack_N : N ;
-fun quack_N : N ;
-fun 'quack-quack_N' : N ;
-fun thwack_N : N ;
-fun beck_N : N ;
-fun pinchbeck_N : N ;
-fun deck_N : N ;
-fun 'quarter-deck_N' : N ;
-fun foredeck_N : N ;
-fun afterdeck_N : N ;
-fun quarterdeck_N : N ;
-fun heck_N : N ;
-fun check_N : N ;
-fun countercheck_N : N ;
-fun crosscheck_N : N ;
-fun paycheck_N : N ;
-fun fleck_N : N ;
-fun neck_N : N ;
-fun 'bull-neck_N' : N ;
-fun 'crew-neck_N' : N ;
-fun redneck_N : N ;
-fun fiddleneck_N : N ;
-fun turtleneck_N : N ;
-fun littleneck_N : N ;
-fun bottleneck_N : N ;
-fun gooseneck_N : N ;
-fun roughneck_N : N ;
-fun crookneck_N : N ;
-fun rubberneck_N : N ;
-fun leatherneck_N : N ;
-fun wryneck_N : N ;
-fun peck_N : N ;
-fun copeck_N : N ;
-fun kopeck_N : N ;
-fun speck_N : N ;
-fun flyspeck_N : N ;
-fun wreck_N : N ;
-fun shipwreck_N : N ;
-fun dick_N : N ;
-fun benedick_N : N ;
-fun hick_N : N ;
-fun chick_N : N ;
-fun 'pea-chick_N' : N ;
-fun peachick_N : N ;
-fun dabchick_N : N ;
-fun thick_N : N ;
-fun kick_N : N ;
-fun 'goal-kick_N' : N ;
-fun 'drop-kick_N' : N ;
-fun 'corner-kick_N' : N ;
-fun dropkick_N : N ;
-fun lick_N : N ;
-fun 'salt-lick_N' : N ;
-fun niblick_N : N ;
-fun click_N : N ;
-fun flick_N : N ;
-fun slick_N : N ;
-fun 'oil-slick_N' : N ;
-fun cowlick_N : N ;
-fun gimmick_N : N ;
-fun nick_N : N ;
-fun snick_N : N ;
-fun pick_N : N ;
-fun icepick_N : N ;
-fun toothpick_N : N ;
-fun rick_N : N ;
-fun brick_N : N ;
-fun goldbrick_N : N ;
-fun firebrick_N : N ;
-fun crick_N : N ;
-fun limerick_N : N ;
-fun maverick_N : N ;
-fun prick_N : N ;
-fun pinprick_N : N ;
-fun derrick_N : N ;
-fun trick_N : N ;
-fun wrick_N : N ;
-fun hayrick_N : N ;
-fun sick_N : N ;
-fun tick_N : N ;
-fun bluetick_N : N ;
-fun downtick_N : N ;
-fun uptick_N : N ;
-fun stick_N : N ;
-fun 'swizzle-stick_N' : N ;
-fun 'shooting-stick_N' : N ;
-fun 'joss-stick_N' : N ;
-fun 'joy-stick_N' : N ;
-fun breadstick_N : N ;
-fun yardstick_N : N ;
-fun swordstick_N : N ;
-fun fiddlestick_N : N ;
-fun candlestick_N : N ;
-fun singlestick_N : N ;
-fun matchstick_N : N ;
-fun maulstick_N : N ;
-fun broomstick_N : N ;
-fun drumstick_N : N ;
-fun slapstick_N : N ;
-fun dipstick_N : N ;
-fun lipstick_N : N ;
-fun chopstick_N : N ;
-fun meterstick_N : N ;
-fun joystick_N : N ;
-fun quick_N : N ;
-fun wick_N : N ;
-fun candlewick_N : N ;
-fun bailiwick_N : N ;
-fun cottonwick_N : N ;
-fun bock_N : N ;
-fun cock_N : N ;
-fun peacock_N : N ;
-fun woodcock_N : N ;
-fun shuttlecock_N : N ;
-fun gamecock_N : N ;
-fun spatchcock_N : N ;
-fun blackcock_N : N ;
-fun ballcock_N : N ;
-fun turncock_N : N ;
-fun stopcock_N : N ;
-fun weathercock_N : N ;
-fun moorcock_N : N ;
-fun petcock_N : N ;
-fun haycock_N : N ;
-fun poppycock_N : N ;
-fun dock_N : N ;
-fun 'graving dock_N' : N ;
-fun 'finnan haddock_N' : N ;
-fun shaddock_N : N ;
-fun paddock_N : N ;
-fun piddock_N : N ;
-fun spatterdock_N : N ;
-fun airdock_N : N ;
-fun burdock_N : N ;
-fun hock_N : N ;
-fun chock_N : N ;
-fun shock_N : N ;
-fun 'shell-shock_N' : N ;
-fun foreshock_N : N ;
-fun aftershock_N : N ;
-fun hollyhock_N : N ;
-fun lock_N : N ;
-fun 'combination-lock_N' : N ;
-fun 'safety-lock_N' : N ;
-fun block_N : N ;
-fun 'wood-block_N' : N ;
-fun 'office-block_N' : N ;
-fun 'scribbling-block_N' : N ;
-fun 'stumbling-block_N' : N ;
-fun 'breech-block_N' : N ;
-fun 'sketch-block_N' : N ;
-fun 'tower-block_N' : N ;
-fun 'pulley-block_N' : N ;
-fun roadblock_N : N ;
-fun breechblock_N : N ;
-fun cellblock_N : N ;
-fun clock_N : N ;
-fun 'alarm-clock_N' : N ;
-fun 'cuckoo-clock_N' : N ;
-fun deadlock_N : N ;
-fun headlock_N : N ;
-fun dreadlock_N : N ;
-fun padlock_N : N ;
-fun wedlock_N : N ;
-fun gridlock_N : N ;
-fun forelock_N : N ;
-fun havelock_N : N ;
-fun flock_N : N ;
-fun schlock_N : N ;
-fun matchlock_N : N ;
-fun ballock_N : N ;
-fun hillock_N : N ;
-fun bollock_N : N ;
-fun bullock_N : N ;
-fun hemlock_N : N ;
-fun gunlock_N : N ;
-fun charlock_N : N ;
-fun warlock_N : N ;
-fun hammerlock_N : N ;
-fun interlock_N : N ;
-fun airlock_N : N ;
-fun doorlock_N : N ;
-fun fetlock_N : N ;
-fun flintlock_N : N ;
-fun rowlock_N : N ;
-fun mock_N : N ;
-fun hammock_N : N ;
-fun hummock_N : N ;
-fun smock_N : N ;
-fun knock_N : N ;
-fun antiknock_N : N ;
-fun bannock_N : N ;
-fun pock_N : N ;
-fun rock_N : N ;
-fun crock_N : N ;
-fun bedrock_N : N ;
-fun frock_N : N ;
-fun shamrock_N : N ;
-fun sock_N : N ;
-fun windsock_N : N ;
-fun cassock_N : N ;
-fun hassock_N : N ;
-fun tussock_N : N ;
-fun 'tick-tock_N' : N ;
-fun ticktock_N : N ;
-fun stock_N : N ;
-fun 'laughing-stock_N' : N ;
-fun 'rolling-stock_N' : N ;
-fun headstock_N : N ;
-fun feedstock_N : N ;
-fun bloodstock_N : N ;
-fun diestock_N : N ;
-fun livestock_N : N ;
-fun tailstock_N : N ;
-fun penstock_N : N ;
-fun alpenstock_N : N ;
-fun linstock_N : N ;
-fun rootstock_N : N ;
-fun mattock_N : N ;
-fun buttock_N : N ;
-fun buck_N : N ;
-fun roebuck_N : N ;
-fun bushbuck_N : N ;
-fun blackbuck_N : N ;
-fun waterbuck_N : N ;
-fun shelduck_N : N ;
-fun geoduck_N : N ;
-fun fuck_N : N ;
-fun huck_N : N ;
-fun chuck_N : N ;
-fun shuck_N : N ;
-fun luck_N : N ;
-fun cluck_N : N ;
-fun pluck_N : N ;
-fun potluck_N : N ;
-fun muck_N : N ;
-fun schmuck_N : N ;
-fun canuck_N : N ;
-fun puck_N : N ;
-fun ruck_N : N ;
-fun truck_N : N ;
-fun 'garden-truck_N' : N ;
-fun suck_N : N ;
-fun tuck_N : N ;
-fun hacek_N : N ;
-fun geek_N : N ;
-fun cheek_N : N ;
-fun leek_N : N ;
-fun peek_N : N ;
-fun reek_N : N ;
-fun Greek_N : N ;
-fun creek_N : N ;
-fun fenugreek_N : N ;
-fun seek_N : N ;
-fun 'hide-and-seek_N' : N ;
-fun week_N : N ;
-fun midweek_N : N ;
-fun workweek_N : N ;
-fun shriek_N : N ;
-fun lek_N : N ;
-fun fartlek_N : N ;
-fun kopek_N : N ;
-fun trek_N : N ;
-fun haik_N : N ;
-fun hygrodeik_N : N ;
-fun sheik_N : N ;
-fun apparatchik_N : N ;
-fun muzhik_N : N ;
-fun moujik_N : N ;
-fun malik_N : N ;
-fun suslik_N : N ;
-fun chutzpanik_N : N ;
-fun nudnik_N : N ;
-fun beatnik_N : N ;
-fun sputnik_N : N ;
-fun kolkhoznik_N : N ;
-fun kibbutznik_N : N ;
-fun tupik_N : N ;
-fun tugrik_N : N ;
-fun batik_N : N ;
-fun shtik_N : N ;
-fun realpolitik_N : N ;
-fun bolshevik_N : N ;
-fun balk_N : N ;
-fun calk_N : N ;
-fun chalk_N : N ;
-fun nitrochalk_N : N ;
-fun talk_N : N ;
-fun 'table-talk_N' : N ;
-fun 'double-talk_N' : N ;
-fun 'baby-talk_N' : N ;
-fun backtalk_N : N ;
-fun stalk_N : N ;
-fun beanstalk_N : N ;
-fun cornstalk_N : N ;
-fun crosstalk_N : N ;
-fun walk_N : N ;
-fun boardwalk_N : N ;
-fun sidewalk_N : N ;
-fun cakewalk_N : N ;
-fun ropewalk_N : N ;
-fun moonwalk_N : N ;
-fun sheepwalk_N : N ;
-fun crosswalk_N : N ;
-fun catwalk_N : N ;
-fun skywalk_N : N ;
-fun elk_N : N ;
-fun whelk_N : N ;
-fun ilk_N : N ;
-fun milk_N : N ;
-fun 'skimmed-milk_N' : N ;
-fun buttermilk_N : N ;
-fun silk_N : N ;
-fun 'oil-silk_N' : N ;
-fun cornsilk_N : N ;
-fun folk_N : N ;
-fun gentlefolk_N : N ;
-fun homefolk_N : N ;
-fun yolk_N : N ;
-fun baulk_N : N ;
-fun caulk_N : N ;
-fun bulk_N : N ;
-fun hulk_N : N ;
-fun sulk_N : N ;
-fun bank_N : N ;
-fun 'cloud-bank_N' : N ;
-fun 'oyster-bank_N' : N ;
-fun 'savings-bank_N' : N ;
-fun sandbank_N : N ;
-fun mountebank_N : N ;
-fun fogbank_N : N ;
-fun riverbank_N : N ;
-fun snowbank_N : N ;
-fun hank_N : N ;
-fun shank_N : N ;
-fun redshank_N : N ;
-fun hindshank_N : N ;
-fun foreshank_N : N ;
-fun greenshank_N : N ;
-fun sheepshank_N : N ;
-fun skank_N : N ;
-fun blank_N : N ;
-fun clank_N : N ;
-fun flank_N : N ;
-fun plank_N : N ;
-fun gangplank_N : N ;
-fun spank_N : N ;
-fun rank_N : N ;
-fun 'cab-rank_N' : N ;
-fun crank_N : N ;
-fun frank_N : N ;
-fun prank_N : N ;
-fun tank_N : N ;
-fun 'think-tank_N' : N ;
-fun wank_N : N ;
-fun swank_N : N ;
-fun yank_N : N ;
-fun ink_N : N ;
-fun 'pen-and-ink_N' : N ;
-fun 'marking-ink_N' : N ;
-fun 'writing-ink_N' : N ;
-fun 'printing-ink_N' : N ;
-fun fink_N : N ;
-fun chink_N : N ;
-fun think_N : N ;
-fun 'double-think_N' : N ;
-fun doublethink_N : N ;
-fun rethink_N : N ;
-fun groupthink_N : N ;
-fun kink_N : N ;
-fun skink_N : N ;
-fun link_N : N ;
-fun blink_N : N ;
-fun clink_N : N ;
-fun cufflink_N : N ;
-fun bobolink_N : N ;
-fun uplink_N : N ;
-fun hyperlink_N : N ;
-fun mink_N : N ;
-fun pink_N : N ;
-fun rink_N : N ;
-fun 'skating-rink_N' : N ;
-fun brink_N : N ;
-fun drink_N : N ;
-fun icerink_N : N ;
-fun shrink_N : N ;
-fun sink_N : N ;
-fun countersink_N : N ;
-fun stink_N : N ;
-fun wink_N : N ;
-fun chewink_N : N ;
-fun conk_N : N ;
-fun honk_N : N ;
-fun plonk_N : N ;
-fun monk_N : N ;
-fun honkytonk_N : N ;
-fun bunk_N : N ;
-fun dunk_N : N ;
-fun funk_N : N ;
-fun hunk_N : N ;
-fun chunk_N : N ;
-fun thunk_N : N ;
-fun junk_N : N ;
-fun skunk_N : N ;
-fun clunk_N : N ;
-fun plunk_N : N ;
-fun chipmunk_N : N ;
-fun punk_N : N ;
-fun cyberpunk_N : N ;
-fun spunk_N : N ;
-fun drunk_N : N ;
-fun trunk_N : N ;
-fun springbok_N : N ;
-fun steenbok_N : N ;
-fun gemsbok_N : N ;
-fun book_N : N ;
-fun 'road-book_N' : N ;
-fun 'picture-book_N' : N ;
-fun 'phrase-book_N' : N ;
-fun 'minute-book_N' : N ;
-fun 'statute-book_N' : N ;
-fun 'sketch-book_N' : N ;
-fun 'bank-book_N' : N ;
-fun 'order-book_N' : N ;
-fun 'prayer-book_N' : N ;
-fun 'pocket-book_N' : N ;
-fun 'cookery-book_N' : N ;
-fun roadbook_N : N ;
-fun handbook_N : N ;
-fun wordbook_N : N ;
-fun studbook_N : N ;
-fun guidebook_N : N ;
-fun phonebook_N : N ;
-fun scorebook_N : N ;
-fun casebook_N : N ;
-fun notebook_N : N ;
-fun chequebook_N : N ;
-fun songbook_N : N ;
-fun logbook_N : N ;
-fun matchbook_N : N ;
-fun sketchbook_N : N ;
-fun checkbook_N : N ;
-fun bankbook_N : N ;
-fun cookbook_N : N ;
-fun workbook_N : N ;
-fun schoolbook_N : N ;
-fun hornbook_N : N ;
-fun scrapbook_N : N ;
-fun yearbook_N : N ;
-fun passbook_N : N ;
-fun pocketbook_N : N ;
-fun promptbook_N : N ;
-fun textbook_N : N ;
-fun daybook_N : N ;
-fun playbook_N : N ;
-fun copybook_N : N ;
-fun storybook_N : N ;
-fun cook_N : N ;
-fun 'pastry-cook_N' : N ;
-fun gook_N : N ;
-fun gobbledygook_N : N ;
-fun hook_N : N ;
-fun 'pruning-hook_N' : N ;
-fun 'reaping-hook_N' : N ;
-fun 'fish-hook_N' : N ;
-fun 'boat-hook_N' : N ;
-fun 'crochet-hook_N' : N ;
-fun ravehook_N : N ;
-fun fishhook_N : N ;
-fun billhook_N : N ;
-fun buttonhook_N : N ;
-fun tenterhook_N : N ;
-fun shook_N : N ;
-fun pothook_N : N ;
-fun skyhook_N : N ;
-fun kook_N : N ;
-fun look_N : N ;
-fun overlook_N : N ;
-fun outlook_N : N ;
-fun nook_N : N ;
-fun 'ingle-nook_N' : N ;
-fun schnook_N : N ;
-fun chinook_N : N ;
-fun snook_N : N ;
-fun spook_N : N ;
-fun rook_N : N ;
-fun brook_N : N ;
-fun crook_N : N ;
-fun nainsook_N : N ;
-fun kapok_N : N ;
-fun bitok_N : N ;
-fun wok_N : N ;
-fun ark_N : N ;
-fun bark_N : N ;
-fun lacebark_N : N ;
-fun shagbark_N : N ;
-fun smoothbark_N : N ;
-fun tanbark_N : N ;
-fun stringybark_N : N ;
-fun dark_N : N ;
-fun shark_N : N ;
-fun lark_N : N ;
-fun titlark_N : N ;
-fun meadowlark_N : N ;
-fun skylark_N : N ;
-fun mark_N : N ;
-fun 'question-mark_N' : N ;
-fun 'stress-mark_N' : N ;
-fun landmark_N : N ;
-fun trademark_N : N ;
-fun tidemark_N : N ;
-fun telemark_N : N ;
-fun remark_N : N ;
-fun benchmark_N : N ;
-fun deutschmark_N : N ;
-fun birthmark_N : N ;
-fun pockmark_N : N ;
-fun bookmark_N : N ;
-fun hallmark_N : N ;
-fun earmark_N : N ;
-fun fingermark_N : N ;
-fun watermark_N : N ;
-fun pressmark_N : N ;
-fun mintmark_N : N ;
-fun footmark_N : N ;
-fun postmark_N : N ;
-fun nark_N : N ;
-fun park_N : N ;
-fun ballpark_N : N ;
-fun spark_N : N ;
-fun quark_N : N ;
-fun antiquark_N : N ;
-fun aardvark_N : N ;
-fun bulwark_N : N ;
-fun berk_N : N ;
-fun hauberk_N : N ;
-fun jerk_N : N ;
-fun clerk_N : N ;
-fun 'tally-clerk_N' : N ;
-fun salesclerk_N : N ;
-fun perk_N : N ;
-fun dirk_N : N ;
-fun kirk_N : N ;
-fun smirk_N : N ;
-fun stirk_N : N ;
-fun quirk_N : N ;
-fun cork_N : N ;
-fun fork_N : N ;
-fun 'tuning-fork_N' : N ;
-fun 'toasting-fork_N' : N ;
-fun 'carving-fork_N' : N ;
-fun tablefork_N : N ;
-fun pitchfork_N : N ;
-fun hayfork_N : N ;
-fun pork_N : N ;
-fun stork_N : N ;
-fun work_N : N ;
-fun 'life-work_N' : N ;
-fun 'social-work_N' : N ;
-fun 'donkey-work_N' : N ;
-fun fieldwork_N : N ;
-fun handwork_N : N ;
-fun groundwork_N : N ;
-fun woodwork_N : N ;
-fun lacework_N : N ;
-fun piecework_N : N ;
-fun spadework_N : N ;
-fun lifework_N : N ;
-fun needlework_N : N ;
-fun trestlework_N : N ;
-fun framework_N : N ;
-fun timework_N : N ;
-fun homework_N : N ;
-fun stonework_N : N ;
-fun pipework_N : N ;
-fun firework_N : N ;
-fun wirework_N : N ;
-fun casework_N : N ;
-fun coursework_N : N ;
-fun housework_N : N ;
-fun patchwork_N : N ;
-fun brushwork_N : N ;
-fun earthwork_N : N ;
-fun handiwork_N : N ;
-fun hackwork_N : N ;
-fun brickwork_N : N ;
-fun clockwork_N : N ;
-fun metalwork_N : N ;
-fun wheelwork_N : N ;
-fun crewelwork_N : N ;
-fun millwork_N : N ;
-fun teamwork_N : N ;
-fun openwork_N : N ;
-fun ironwork_N : N ;
-fun drawnwork_N : N ;
-fun leatherwork_N : N ;
-fun wickerwork_N : N ;
-fun paperwork_N : N ;
-fun silverwork_N : N ;
-fun overwork_N : N ;
-fun classwork_N : N ;
-fun guesswork_N : N ;
-fun flatwork_N : N ;
-fun network_N : N ;
-fun cabinetwork_N : N ;
-fun fretwork_N : N ;
-fun nightwork_N : N ;
-fun footwork_N : N ;
-fun artwork_N : N ;
-fun breastwork_N : N ;
-fun cutwork_N : N ;
-fun outwork_N : N ;
-fun waxwork_N : N ;
-fun bodywork_N : N ;
-fun busywork_N : N ;
-fun Turk_N : N ;
-fun murk_N : N ;
-fun cask_N : N ;
-fun flask_N : N ;
-fun 'hip-flask_N' : N ;
-fun 'powder-flask_N' : N ;
-fun hipflask_N : N ;
-fun mask_N : N ;
-fun 'death-mask_N' : N ;
-fun 'gas-mask_N' : N ;
-fun damask_N : N ;
-fun gasmask_N : N ;
-fun task_N : N ;
-fun desk_N : N ;
-fun 'writing-desk_N' : N ;
-fun 'reception-desk_N' : N ;
-fun disk_N : N ;
-fun videodisk_N : N ;
-fun lutefisk_N : N ;
-fun whisk_N : N ;
-fun 'egg-whisk_N' : N ;
-fun obelisk_N : N ;
-fun basilisk_N : N ;
-fun risk_N : N ;
-fun tamarisk_N : N ;
-fun bassarisk_N : N ;
-fun asterisk_N : N ;
-fun frisk_N : N ;
-fun bosk_N : N ;
-fun kiosk_N : N ;
-fun abelmosk_N : N ;
-fun cusk_N : N ;
-fun dusk_N : N ;
-fun husk_N : N ;
-fun cornhusk_N : N ;
-fun mollusk_N : N ;
-fun musk_N : N ;
-fun rusk_N : N ;
-fun tusk_N : N ;
-fun auk_N : N ;
-fun padauk_N : N ;
-fun dybbuk_N : N ;
-fun gerenuk_N : N ;
-fun souk_N : N ;
-fun gawk_N : N ;
-fun hawk_N : N ;
-fun tomahawk_N : N ;
-fun mohawk_N : N ;
-fun goshawk_N : N ;
-fun nighthawk_N : N ;
-fun squawk_N : N ;
-fun 'sea-level_N' : N ;
-fun 'end-all_N' : N ;
-fun knell_N : N ;
-fun sell_N : N ;
-fun kill_N : N ;
-fun 'john bull_N' : N ;
-fun whirl_N : N ;
-fun teal_N : N ;
-fun 'court-martial_N' : N ;
-fun mackerel_N : N ;
-fun pickerel_N : N ;
-fun brill_N : N ;
-fun ml_N : N ;
-fun 'guinea-fowl_N' : N ;
-fun kraal_N : N ;
-fun cabal_N : N ;
-fun cannibal_N : N ;
-fun gimbal_N : N ;
-fun cymbal_N : N ;
-fun caracal_N : N ;
-fun decal_N : N ;
-fun radical_N : N ;
-fun medical_N : N ;
-fun periodical_N : N ;
-fun pontifical_N : N ;
-fun encyclical_N : N ;
-fun chemical_N : N ;
-fun 'petro-chemical_N' : N ;
-fun petrochemical_N : N ;
-fun neurochemical_N : N ;
-fun phytochemical_N : N ;
-fun botanical_N : N ;
-fun arsenical_N : N ;
-fun technical_N : N ;
-fun theatrical_N : N ;
-fun musical_N : N ;
-fun sabbatical_N : N ;
-fun hypothetical_N : N ;
-fun metical_N : N ;
-fun vertical_N : N ;
-fun pharmaceutical_N : N ;
-fun radiopharmaceutical_N : N ;
-fun local_N : N ;
-fun reciprocal_N : N ;
-fun pascal_N : N ;
-fun rascal_N : N ;
-fun mescal_N : N ;
-fun coucal_N : N ;
-fun medal_N : N ;
-fun pedal_N : N ;
-fun bridal_N : N ;
-fun scandal_N : N ;
-fun sandal_N : N ;
-fun vandal_N : N ;
-fun poundal_N : N ;
-fun antipodal_N : N ;
-fun deal_N : N ;
-fun ideal_N : N ;
-fun ordeal_N : N ;
-fun misdeal_N : N ;
-fun antidiarrheal_N : N ;
-fun meal_N : N ;
-fun wholemeal_N : N ;
-fun bonemeal_N : N ;
-fun cornmeal_N : N ;
-fun watermeal_N : N ;
-fun oatmeal_N : N ;
-fun hymeneal_N : N ;
-fun cochineal_N : N ;
-fun peal_N : N ;
-fun repeal_N : N ;
-fun appeal_N : N ;
-fun real_N : N ;
-fun cereal_N : N ;
-fun seal_N : N ;
-fun goldenseal_N : N ;
-fun underseal_N : N ;
-fun lacteal_N : N ;
-fun steal_N : N ;
-fun squeal_N : N ;
-fun veal_N : N ;
-fun weal_N : N ;
-fun zeal_N : N ;
-fun offal_N : N ;
-fun gal_N : N ;
-fun agal_N : N ;
-fun paralegal_N : N ;
-fun prodigal_N : N ;
-fun madrigal_N : N ;
-fun warrigal_N : N ;
-fun galangal_N : N ;
-fun antifungal_N : N ;
-fun seneschal_N : N ;
-fun marshal_N : N ;
-fun wherewithal_N : N ;
-fun betrothal_N : N ;
-fun narwhal_N : N ;
-fun bilabial_N : N ;
-fun adverbial_N : N ;
-fun facial_N : N ;
-fun special_N : N ;
-fun official_N : N ;
-fun provincial_N : N ;
-fun uncial_N : N ;
-fun social_N : N ;
-fun commercial_N : N ;
-fun infomercial_N : N ;
-fun dial_N : N ;
-fun 'clock-dial_N' : N ;
-fun radial_N : N ;
-fun sundial_N : N ;
-fun cordial_N : N ;
-fun phial_N : N ;
-fun binomial_N : N ;
-fun polynomial_N : N ;
-fun denial_N : N ;
-fun 'self-denial_N' : N ;
-fun menial_N : N ;
-fun finial_N : N ;
-fun biennial_N : N ;
-fun triennial_N : N ;
-fun perennial_N : N ;
-fun centennial_N : N ;
-fun bicentennial_N : N ;
-fun semicentennial_N : N ;
-fun sesquicentennial_N : N ;
-fun quincentennial_N : N ;
-fun tercentennial_N : N ;
-fun quatercentennial_N : N ;
-fun colonial_N : N ;
-fun ceremonial_N : N ;
-fun testimonial_N : N ;
-fun marsupial_N : N ;
-fun antimalarial_N : N ;
-fun aerial_N : N ;
-fun imperial_N : N ;
-fun serial_N : N ;
-fun material_N : N ;
-fun antibacterial_N : N ;
-fun memorial_N : N ;
-fun equatorial_N : N ;
-fun factorial_N : N ;
-fun pictorial_N : N ;
-fun editorial_N : N ;
-fun territorial_N : N ;
-fun advertorial_N : N ;
-fun tutorial_N : N ;
-fun trial_N : N ;
-fun patrial_N : N ;
-fun retrial_N : N ;
-fun pretrial_N : N ;
-fun mistrial_N : N ;
-fun urial_N : N ;
-fun burial_N : N ;
-fun sial_N : N ;
-fun initial_N : N ;
-fun exponential_N : N ;
-fun differential_N : N ;
-fun essential_N : N ;
-fun inessential_N : N ;
-fun potential_N : N ;
-fun vial_N : N ;
-fun gavial_N : N ;
-fun jackal_N : N ;
-fun halal_N : N ;
-fun salal_N : N ;
-fun decimal_N : N ;
-fun animal_N : N ;
-fun 'sea-animal_N' : N ;
-fun 'pack-animal_N' : N ;
-fun planetesimal_N : N ;
-fun infinitesimal_N : N ;
-fun mammal_N : N ;
-fun thermal_N : N ;
-fun normal_N : N ;
-fun subnormal_N : N ;
-fun canal_N : N ;
-fun 'ship-canal_N' : N ;
-fun bacchanal_N : N ;
-fun propanal_N : N ;
-fun propenal_N : N ;
-fun arsenal_N : N ;
-fun signal_N : N ;
-fun 'time-signal_N' : N ;
-fun 'storm-signal_N' : N ;
-fun fogsignal_N : N ;
-fun cardinal_N : N ;
-fun ordinal_N : N ;
-fun final_N : N ;
-fun 'cup-final_N' : N ;
-fun semifinal_N : N ;
-fun quarterfinal_N : N ;
-fun original_N : N ;
-fun aboriginal_N : N ;
-fun virginal_N : N ;
-fun trigeminal_N : N ;
-fun criminal_N : N ;
-fun abdominal_N : N ;
-fun terminal_N : N ;
-fun urinal_N : N ;
-fun hymnal_N : N ;
-fun diagonal_N : N ;
-fun recessional_N : N ;
-fun processional_N : N ;
-fun confessional_N : N ;
-fun professional_N : N ;
-fun paraprofessional_N : N ;
-fun semiprofessional_N : N ;
-fun national_N : N ;
-fun international_N : N ;
-fun sectional_N : N ;
-fun devotional_N : N ;
-fun proportional_N : N ;
-fun constitutional_N : N ;
-fun monal_N : N ;
-fun personal_N : N ;
-fun infernal_N : N ;
-fun external_N : N ;
-fun journal_N : N ;
-fun tribunal_N : N ;
-fun coal_N : N ;
-fun 'sea-coal_N' : N ;
-fun 'steam-coal_N' : N ;
-fun charcoal_N : N ;
-fun foal_N : N ;
-fun goal_N : N ;
-fun shoal_N : N ;
-fun antiprotozoal_N : N ;
-fun pal_N : N ;
-fun sepal_N : N ;
-fun tepal_N : N ;
-fun principal_N : N ;
-fun pipal_N : N ;
-fun opal_N : N ;
-fun copal_N : N ;
-fun nopal_N : N ;
-fun carpal_N : N ;
-fun metacarpal_N : N ;
-fun cathedral_N : N ;
-fun liberal_N : N ;
-fun neoliberal_N : N ;
-fun folderal_N : N ;
-fun peripheral_N : N ;
-fun numeral_N : N ;
-fun general_N : N ;
-fun 'quartermaster-general_N' : N ;
-fun 'major-general_N' : N ;
-fun 'governor-general_N' : N ;
-fun 'solicitor-general_N' : N ;
-fun 'secretary-general_N' : N ;
-fun mineral_N : N ;
-fun funeral_N : N ;
-fun quadrilateral_N : N ;
-fun equilateral_N : N ;
-fun collateral_N : N ;
-fun literal_N : N ;
-fun integral_N : N ;
-fun admiral_N : N ;
-fun 'rear-admiral_N' : N ;
-fun spiral_N : N ;
-fun antiviral_N : N ;
-fun oral_N : N ;
-fun coral_N : N ;
-fun goral_N : N ;
-fun moral_N : N ;
-fun balmoral_N : N ;
-fun corporal_N : N ;
-fun 'lance-corporal_N' : N ;
-fun pectoral_N : N ;
-fun postdoctoral_N : N ;
-fun pastoral_N : N ;
-fun littoral_N : N ;
-fun deferral_N : N ;
-fun referral_N : N ;
-fun corral_N : N ;
-fun triquetral_N : N ;
-fun central_N : N ;
-fun mistral_N : N ;
-fun austral_N : N ;
-fun neutral_N : N ;
-fun furfural_N : N ;
-fun inaugural_N : N ;
-fun plural_N : N ;
-fun mural_N : N ;
-fun natural_N : N ;
-fun supernatural_N : N ;
-fun guttural_N : N ;
-fun nasal_N : N ;
-fun appraisal_N : N ;
-fun reappraisal_N : N ;
-fun diflunisal_N : N ;
-fun despisal_N : N ;
-fun reprisal_N : N ;
-fun sisal_N : N ;
-fun devisal_N : N ;
-fun commensal_N : N ;
-fun proposal_N : N ;
-fun counterproposal_N : N ;
-fun disposal_N : N ;
-fun 'mine-disposal_N' : N ;
-fun thimerosal_N : N ;
-fun rehearsal_N : N ;
-fun tarsal_N : N ;
-fun metatarsal_N : N ;
-fun dispersal_N : N ;
-fun traversal_N : N ;
-fun reversal_N : N ;
-fun universal_N : N ;
-fun vassal_N : N ;
-fun missal_N : N ;
-fun dismissal_N : N ;
-fun dossal_N : N ;
-fun hypoglossal_N : N ;
-fun refusal_N : N ;
-fun espousal_N : N ;
-fun arousal_N : N ;
-fun carousal_N : N ;
-fun perusal_N : N ;
-fun palatal_N : N ;
-fun fractal_N : N ;
-fun acetal_N : N ;
-fun hemiacetal_N : N ;
-fun varietal_N : N ;
-fun metal_N : N ;
-fun 'road-metal_N' : N ;
-fun 'bell-metal_N' : N ;
-fun bimetal_N : N ;
-fun nonmetal_N : N ;
-fun gunmetal_N : N ;
-fun petal_N : N ;
-fun barbital_N : N ;
-fun mephobarbital_N : N ;
-fun amobarbital_N : N ;
-fun metharbital_N : N ;
-fun recital_N : N ;
-fun commital_N : N ;
-fun capital_N : N ;
-fun hospital_N : N ;
-fun 'field-hospital_N' : N ;
-fun requital_N : N ;
-fun placental_N : N ;
-fun accidental_N : N ;
-fun occidental_N : N ;
-fun incidental_N : N ;
-fun oriental_N : N ;
-fun fundamental_N : N ;
-fun ornamental_N : N ;
-fun thiopental_N : N ;
-fun rental_N : N ;
-fun quintal_N : N ;
-fun frontal_N : N ;
-fun horizontal_N : N ;
-fun buntal_N : N ;
-fun total_N : N ;
-fun subtotal_N : N ;
-fun mortal_N : N ;
-fun immortal_N : N ;
-fun portal_N : N ;
-fun pedestal_N : N ;
-fun vestal_N : N ;
-fun intercostal_N : N ;
-fun borstal_N : N ;
-fun crystal_N : N ;
-fun 'rock-crystal_N' : N ;
-fun acquittal_N : N ;
-fun rebuttal_N : N ;
-fun gradual_N : N ;
-fun residual_N : N ;
-fun individual_N : N ;
-fun lingual_N : N ;
-fun bilingual_N : N ;
-fun monolingual_N : N ;
-fun manual_N : N ;
-fun annual_N : N ;
-fun equal_N : N ;
-fun rorqual_N : N ;
-fun construal_N : N ;
-fun misconstrual_N : N ;
-fun audiovisual_N : N ;
-fun intellectual_N : N ;
-fun victual_N : N ;
-fun ritual_N : N ;
-fun spiritual_N : N ;
-fun bisexual_N : N ;
-fun pansexual_N : N ;
-fun homosexual_N : N ;
-fun heterosexual_N : N ;
-fun transsexual_N : N ;
-fun upheaval_N : N ;
-fun retrieval_N : N ;
-fun coeval_N : N ;
-fun carnival_N : N ;
-fun rival_N : N ;
-fun arrival_N : N ;
-fun festival_N : N ;
-fun revival_N : N ;
-fun survival_N : N ;
-fun oval_N : N ;
-fun removal_N : N ;
-fun approval_N : N ;
-fun disapproval_N : N ;
-fun serval_N : N ;
-fun interval_N : N ;
-fun withdrawal_N : N ;
-fun renewal_N : N ;
-fun bestowal_N : N ;
-fun avowal_N : N ;
-fun disavowal_N : N ;
-fun gayal_N : N ;
-fun defrayal_N : N ;
-fun betrayal_N : N ;
-fun portrayal_N : N ;
-fun royal_N : N ;
-fun pennyroyal_N : N ;
-fun quetzal_N : N ;
-fun dirndl_N : N ;
-fun groenendael_N : N ;
-fun gael_N : N ;
-fun tael_N : N ;
-fun babel_N : N ;
-fun label_N : N ;
-fun rebel_N : N ;
-fun jezebel_N : N ;
-fun decibel_N : N ;
-fun libel_N : N ;
-fun umbel_N : N ;
-fun barbel_N : N ;
-fun corbel_N : N ;
-fun rubel_N : N ;
-fun pedicel_N : N ;
-fun lenticel_N : N ;
-fun chancel_N : N ;
-fun pennoncel_N : N ;
-fun marcel_N : N ;
-fun parcel_N : N ;
-fun tiercel_N : N ;
-fun citadel_N : N ;
-fun seidel_N : N ;
-fun infidel_N : N ;
-fun zinfandel_N : N ;
-fun rondel_N : N ;
-fun roundel_N : N ;
-fun asphodel_N : N ;
-fun model_N : N ;
-fun supermodel_N : N ;
-fun yodel_N : N ;
-fun fardel_N : N ;
-fun strudel_N : N ;
-fun eel_N : N ;
-fun 'conger-eel_N' : N ;
-fun feel_N : N ;
-fun heel_N : N ;
-fun wheel_N : N ;
-fun 'balance-wheel_N' : N ;
-fun 'paddle-wheel_N' : N ;
-fun 'nose-wheel_N' : N ;
-fun 'spinning-wheel_N' : N ;
-fun 'steering-wheel_N' : N ;
-fun 'driving-wheel_N' : N ;
-fun 'water-wheel_N' : N ;
-fun 'prayer-wheel_N' : N ;
-fun 'sprocket-wheel_N' : N ;
-fun handwheel_N : N ;
-fun freewheel_N : N ;
-fun paddlewheel_N : N ;
-fun nosewheel_N : N ;
-fun cogwheel_N : N ;
-fun millwheel_N : N ;
-fun pinwheel_N : N ;
-fun waterwheel_N : N ;
-fun cartwheel_N : N ;
-fun flywheel_N : N ;
-fun keel_N : N ;
-fun kneel_N : N ;
-fun peel_N : N ;
-fun reel_N : N ;
-fun creel_N : N ;
-fun newsreel_N : N ;
-fun cockateel_N : N ;
-fun steel_N : N ;
-fun falafel_N : N ;
-fun rijsttaffel_N : N ;
-fun duffel_N : N ;
-fun gel_N : N ;
-fun bagel_N : N ;
-fun cudgel_N : N ;
-fun angel_N : N ;
-fun archangel_N : N ;
-fun hydrogel_N : N ;
-fun lorchel_N : N ;
-fun hatchel_N : N ;
-fun satchel_N : N ;
-fun isohel_N : N ;
-fun bushel_N : N ;
-fun bethel_N : N ;
-fun brothel_N : N ;
-fun schlemiel_N : N ;
-fun daniel_N : N ;
-fun spaniel_N : N ;
-fun 'water-spaniel_N' : N ;
-fun spiel_N : N ;
-fun glockenspiel_N : N ;
-fun riel_N : N ;
-fun materiel_N : N ;
-fun oriel_N : N ;
-fun seckel_N : N ;
-fun nickel_N : N ;
-fun 'cupro-nickel_N' : N ;
-fun cupronickel_N : N ;
-fun pumpernickel_N : N ;
-fun shekel_N : N ;
-fun yokel_N : N ;
-fun schnorkel_N : N ;
-fun snorkel_N : N ;
-fun parallel_N : N ;
-fun camel_N : N ;
-fun enamel_N : N ;
-fun caramel_N : N ;
-fun gimel_N : N ;
-fun trammel_N : N ;
-fun stammel_N : N ;
-fun pommel_N : N ;
-fun kümmel_N : N ;
-fun calomel_N : N ;
-fun oenomel_N : N ;
-fun hydromel_N : N ;
-fun panel_N : N ;
-fun crenel_N : N ;
-fun spinel_N : N ;
-fun sentinel_N : N ;
-fun simnel_N : N ;
-fun channel_N : N ;
-fun flannel_N : N ;
-fun fennel_N : N ;
-fun kennel_N : N ;
-fun personnel_N : N ;
-fun funnel_N : N ;
-fun gunnel_N : N ;
-fun chunnel_N : N ;
-fun runnel_N : N ;
-fun tunnel_N : N ;
-fun 'wind-tunnel_N' : N ;
-fun colonel_N : N ;
-fun grapnel_N : N ;
-fun shrapnel_N : N ;
-fun darnel_N : N ;
-fun kernel_N : N ;
-fun pimpernel_N : N ;
-fun blastocoel_N : N ;
-fun noel_N : N ;
-fun chapel_N : N ;
-fun 'side-chapel_N' : N ;
-fun 'lady-chapel_N' : N ;
-fun lapel_N : N ;
-fun scalpel_N : N ;
-fun sapropel_N : N ;
-fun rappel_N : N ;
-fun estoppel_N : N ;
-fun carpel_N : N ;
-fun gospel_N : N ;
-fun apparel_N : N ;
-fun gambrel_N : N ;
-fun timbrel_N : N ;
-fun tumbrel_N : N ;
-fun spandrel_N : N ;
-fun scoundrel_N : N ;
-fun norethynodrel_N : N ;
-fun doggerel_N : N ;
-fun cockerel_N : N ;
-fun dotterel_N : N ;
-fun mongrel_N : N ;
-fun morel_N : N ;
-fun barrel_N : N ;
-fun 'pork-barrel_N' : N ;
-fun carrel_N : N ;
-fun quarrel_N : N ;
-fun squirrel_N : N ;
-fun sorrel_N : N ;
-fun petrel_N : N ;
-fun wastrel_N : N ;
-fun norgestrel_N : N ;
-fun kestrel_N : N ;
-fun minstrel_N : N ;
-fun laurel_N : N ;
-fun easel_N : N ;
-fun teasel_N : N ;
-fun weasel_N : N ;
-fun groundsel_N : N ;
-fun diesel_N : N ;
-fun chisel_N : N ;
-fun damsel_N : N ;
-fun tinsel_N : N ;
-fun counsel_N : N ;
-fun morsel_N : N ;
-fun tassel_N : N ;
-fun vessel_N : N ;
-fun 'blood-vessel_N' : N ;
-fun 'sailing-vessel_N' : N ;
-fun mussel_N : N ;
-fun streusel_N : N ;
-fun carousel_N : N ;
-fun muscatel_N : N ;
-fun ratel_N : N ;
-fun betel_N : N ;
-fun mantel_N : N ;
-fun overmantel_N : N ;
-fun lintel_N : N ;
-fun hotel_N : N ;
-fun motel_N : N ;
-fun cartel_N : N ;
-fun pastel_N : N ;
-fun canistel_N : N ;
-fun hostel_N : N ;
-fun chattel_N : N ;
-fun duel_N : N ;
-fun fuel_N : N ;
-fun sequel_N : N ;
-fun gruel_N : N ;
-fun 'pari-mutuel_N' : N ;
-fun parimutuel_N : N ;
-fun gavel_N : N ;
-fun navel_N : N ;
-fun gravel_N : N ;
-fun travel_N : N ;
-fun bevel_N : N ;
-fun level_N : N ;
-fun 'a-level_N' : N ;
-fun 'o-level_N' : N ;
-fun 'water-level_N' : N ;
-fun 'spirit-level_N' : N ;
-fun revel_N : N ;
-fun snivel_N : N ;
-fun drivel_N : N ;
-fun swivel_N : N ;
-fun hovel_N : N ;
-fun shovel_N : N ;
-fun novel_N : N ;
-fun marvel_N : N ;
-fun knawel_N : N ;
-fun jewel_N : N ;
-fun newel_N : N ;
-fun bowel_N : N ;
-fun dowel_N : N ;
-fun rowel_N : N ;
-fun trowel_N : N ;
-fun towel_N : N ;
-fun 'tea-towel_N' : N ;
-fun dishtowel_N : N ;
-fun vowel_N : N ;
-fun semivowel_N : N ;
-fun pixel_N : N ;
-fun teazel_N : N ;
-fun hazel_N : N ;
-fun 'witch-hazel_N' : N ;
-fun schlimazel_N : N ;
-fun bezel_N : N ;
-fun 'mangel-wurzel_N' : N ;
-fun pretzel_N : N ;
-fun schnitzel_N : N ;
-fun ouzel_N : N ;
-fun kohl_N : N ;
-fun buhl_N : N ;
-fun sprachgefuhl_N : N ;
-fun bail_N : N ;
-fun fail_N : N ;
-fun hail_N : N ;
-fun jail_N : N ;
-fun kail_N : N ;
-fun flail_N : N ;
-fun mail_N : N ;
-fun 'e-mail_N' : N ;
-fun 'ring-mail_N' : N ;
-fun 'chain-mail_N' : N ;
-fun camail_N : N ;
-fun freemail_N : N ;
-fun blackmail_N : N ;
-fun greenmail_N : N ;
-fun airmail_N : N ;
-fun nail_N : N ;
-fun thumbnail_N : N ;
-fun hobnail_N : N ;
-fun treenail_N : N ;
-fun toenail_N : N ;
-fun agnail_N : N ;
-fun hangnail_N : N ;
-fun fingernail_N : N ;
-fun doornail_N : N ;
-fun snail_N : N ;
-fun seasnail_N : N ;
-fun pail_N : N ;
-fun 'slop-pail_N' : N ;
-fun rail_N : N ;
-fun 'towel-rail_N' : N ;
-fun brail_N : N ;
-fun handrail_N : N ;
-fun guardrail_N : N ;
-fun frail_N : N ;
-fun taffrail_N : N ;
-fun grail_N : N ;
-fun monorail_N : N ;
-fun trail_N : N ;
-fun contrail_N : N ;
-fun sail_N : N ;
-fun parasail_N : N ;
-fun headsail_N : N ;
-fun foresail_N : N ;
-fun gaffsail_N : N ;
-fun lugsail_N : N ;
-fun mainsail_N : N ;
-fun topsail_N : N ;
-fun wassail_N : N ;
-fun spritsail_N : N ;
-fun staysail_N : N ;
-fun skysail_N : N ;
-fun tail_N : N ;
-fun bobtail_N : N ;
-fun broadtail_N : N ;
-fun redtail_N : N ;
-fun swordtail_N : N ;
-fun detail_N : N ;
-fun freetail_N : N ;
-fun tripletail_N : N ;
-fun bristletail_N : N ;
-fun retail_N : N ;
-fun squaretail_N : N ;
-fun horsetail_N : N ;
-fun dovetail_N : N ;
-fun wagtail_N : N ;
-fun pigtail_N : N ;
-fun ringtail_N : N ;
-fun cocktail_N : N ;
-fun fantail_N : N ;
-fun entail_N : N ;
-fun pentail_N : N ;
-fun pintail_N : N ;
-fun cottontail_N : N ;
-fun browntail_N : N ;
-fun whiptail_N : N ;
-fun flickertail_N : N ;
-fun scissortail_N : N ;
-fun cattail_N : N ;
-fun coattail_N : N ;
-fun shirttail_N : N ;
-fun yellowtail_N : N ;
-fun oxtail_N : N ;
-fun foxtail_N : N ;
-fun ponytail_N : N ;
-fun quail_N : N ;
-fun avail_N : N ;
-fun travail_N : N ;
-fun wail_N : N ;
-fun bulbil_N : N ;
-fun gerbil_N : N ;
-fun uracil_N : N ;
-fun thiouracil_N : N ;
-fun propylthiouracil_N : N ;
-fun fluorouracil_N : N ;
-fun codicil_N : N ;
-fun verticil_N : N ;
-fun pencil_N : N ;
-fun 'slate-pencil_N' : N ;
-fun stencil_N : N ;
-fun council_N : N ;
-fun chlorambucil_N : N ;
-fun minoxidil_N : N ;
-fun daffodil_N : N ;
-fun nonpareil_N : N ;
-fun veil_N : N ;
-fun tadalafil_N : N ;
-fun sildenafil_N : N ;
-fun vardenafil_N : N ;
-fun vigil_N : N ;
-fun argil_N : N ;
-fun kanchil_N : N ;
-fun archil_N : N ;
-fun orchil_N : N ;
-fun nihil_N : N ;
-fun dphil_N : N ;
-fun acidophil_N : N ;
-fun anglophil_N : N ;
-fun eosinophil_N : N ;
-fun neutrophil_N : N ;
-fun basophil_N : N ;
-fun mil_N : N ;
-fun verapamil_N : N ;
-fun tamil_N : N ;
-fun nil_N : N ;
-fun anil_N : N ;
-fun oil_N : N ;
-fun 'cod-liver oil_N' : N ;
-fun 'castor oil_N' : N ;
-fun 'salad-oil_N' : N ;
-fun 'shale-oil_N' : N ;
-fun 'tung-oil_N' : N ;
-fun 'palm-oil_N' : N ;
-fun 'hair-oil_N' : N ;
-fun boil_N : N ;
-fun gumboil_N : N ;
-fun coil_N : N ;
-fun recoil_N : N ;
-fun foil_N : N ;
-fun 'gold-foil_N' : N ;
-fun trefoil_N : N ;
-fun cinquefoil_N : N ;
-fun tinfoil_N : N ;
-fun hydrofoil_N : N ;
-fun featherfoil_N : N ;
-fun counterfoil_N : N ;
-fun airfoil_N : N ;
-fun turmoil_N : N ;
-fun spoil_N : N ;
-fun broil_N : N ;
-fun soil_N : N ;
-fun 'night-soil_N' : N ;
-fun subsoil_N : N ;
-fun topsoil_N : N ;
-fun toil_N : N ;
-fun neuropil_N : N ;
-fun pupil_N : N ;
-fun aril_N : N ;
-fun courbaril_N : N ;
-fun fibril_N : N ;
-fun myofibril_N : N ;
-fun nombril_N : N ;
-fun tumbril_N : N ;
-fun tendril_N : N ;
-fun peril_N : N ;
-fun zoril_N : N ;
-fun April_N : N ;
-fun enalapril_N : N ;
-fun trandolapril_N : N ;
-fun ramipril_N : N ;
-fun lisinopril_N : N ;
-fun captopril_N : N ;
-fun nostril_N : N ;
-fun bovril_N : N ;
-fun basil_N : N ;
-fun utensil_N : N ;
-fun tonsil_N : N ;
-fun fossil_N : N ;
-fun microfossil_N : N ;
-fun fusil_N : N ;
-fun lentil_N : N ;
-fun pistil_N : N ;
-fun fauteuil_N : N ;
-fun jonquil_N : N ;
-fun evil_N : N ;
-fun devil_N : N ;
-fun daredevil_N : N ;
-fun weevil_N : N ;
-fun anvil_N : N ;
-fun chervil_N : N ;
-fun axil_N : N ;
-fun cefadroxil_N : N ;
-fun gemfibrozil_N : N ;
-fun shtikl_N : N ;
-fun 'cure-all_N' : N ;
-fun 'fuck-all_N' : N ;
-fun 'bugger-all_N' : N ;
-fun 'free-for-all_N' : N ;
-fun 'know-all_N' : N ;
-fun ball_N : N ;
-fun 'time-ball_N' : N ;
-fun 'medicine-ball_N' : N ;
-fun 'golf-ball_N' : N ;
-fun 'punching-ball_N' : N ;
-fun 'no-ball_N' : N ;
-fun 'brandy-ball_N' : N ;
-fun handball_N : N ;
-fun hardball_N : N ;
-fun knuckleball_N : N ;
-fun fireball_N : N ;
-fun baseball_N : N ;
-fun eyeball_N : N ;
-fun puffball_N : N ;
-fun punchball_N : N ;
-fun highball_N : N ;
-fun fishball_N : N ;
-fun pushball_N : N ;
-fun mothball_N : N ;
-fun earthball_N : N ;
-fun trackball_N : N ;
-fun stickball_N : N ;
-fun beanball_N : N ;
-fun pinball_N : N ;
-fun cannonball_N : N ;
-fun tetherball_N : N ;
-fun hairball_N : N ;
-fun sourball_N : N ;
-fun meatball_N : N ;
-fun basketball_N : N ;
-fun netball_N : N ;
-fun racquetball_N : N ;
-fun softball_N : N ;
-fun spitball_N : N ;
-fun paintball_N : N ;
-fun football_N : N ;
-fun fastball_N : N ;
-fun screwball_N : N ;
-fun snowball_N : N ;
-fun brandyball_N : N ;
-fun volleyball_N : N ;
-fun call_N : N ;
-fun 'trunk-call_N' : N ;
-fun 'roll-call_N' : N ;
-fun 'curtain-call_N' : N ;
-fun birdcall_N : N ;
-fun phonecall_N : N ;
-fun recall_N : N ;
-fun catcall_N : N ;
-fun holdall_N : N ;
-fun fall_N : N ;
-fun landfall_N : N ;
-fun windfall_N : N ;
-fun icefall_N : N ;
-fun rainfall_N : N ;
-fun downfall_N : N ;
-fun waterfall_N : N ;
-fun pratfall_N : N ;
-fun nightfall_N : N ;
-fun pitfall_N : N ;
-fun footfall_N : N ;
-fun shortfall_N : N ;
-fun outfall_N : N ;
-fun snowfall_N : N ;
-fun gall_N : N ;
-fun hall_N : N ;
-fun 'music-hall_N' : N ;
-fun 'guild-hall_N' : N ;
-fun 'dance-hall_N' : N ;
-fun 'concert-hall_N' : N ;
-fun catchall_N : N ;
-fun gildhall_N : N ;
-fun guildhall_N : N ;
-fun small_N : N ;
-fun pall_N : N ;
-fun spall_N : N ;
-fun overall_N : N ;
-fun coverall_N : N ;
-fun thrall_N : N ;
-fun tall_N : N ;
-fun stall_N : N ;
-fun 'coffee-stall_N' : N ;
-fun thumbstall_N : N ;
-fun headstall_N : N ;
-fun bookstall_N : N ;
-fun fingerstall_N : N ;
-fun squall_N : N ;
-fun wall_N : N ;
-fun 'sea-wall_N' : N ;
-fun 'party-wall_N' : N ;
-fun sidewall_N : N ;
-fun firewall_N : N ;
-fun footwall_N : N ;
-fun carryall_N : N ;
-fun ell_N : N ;
-fun bell_N : N ;
-fun 'diving-bell_N' : N ;
-fun 'sleigh-bell_N' : N ;
-fun 'shop-bell_N' : N ;
-fun 'night-bell_N' : N ;
-fun dumbbell_N : N ;
-fun handbell_N : N ;
-fun harebell_N : N ;
-fun bluebell_N : N ;
-fun barbell_N : N ;
-fun doorbell_N : N ;
-fun cowbell_N : N ;
-fun snowbell_N : N ;
-fun cell_N : N ;
-fun 'nerve-cell_N' : N ;
-fun dell_N : N ;
-fun fell_N : N ;
-fun hell_N : N ;
-fun shell_N : N ;
-fun 'scallop-shell_N' : N ;
-fun seashell_N : N ;
-fun bombshell_N : N ;
-fun cockleshell_N : N ;
-fun tortoiseshell_N : N ;
-fun eggshell_N : N ;
-fun clamshell_N : N ;
-fun nutshell_N : N ;
-fun smell_N : N ;
-fun spell_N : N ;
-fun well_N : N ;
-fun 'tube-well_N' : N ;
-fun 'oil-well_N' : N ;
-fun 'ne\'er-do-well_N' : N ;
-fun speedwell_N : N ;
-fun farewell_N : N ;
-fun inkwell_N : N ;
-fun gromwell_N : N ;
-fun stairwell_N : N ;
-fun swell_N : N ;
-fun maxwell_N : N ;
-fun yell_N : N ;
-fun ill_N : N ;
-fun bill_N : N ;
-fun 'bank-bill_N' : N ;
-fun broadbill_N : N ;
-fun handbill_N : N ;
-fun saddlebill_N : N ;
-fun shoebill_N : N ;
-fun openbill_N : N ;
-fun spoonbill_N : N ;
-fun hornbill_N : N ;
-fun thornbill_N : N ;
-fun razorbill_N : N ;
-fun cranesbill_N : N ;
-fun storksbill_N : N ;
-fun crossbill_N : N ;
-fun boatbill_N : N ;
-fun playbill_N : N ;
-fun waybill_N : N ;
-fun ivorybill_N : N ;
-fun dill_N : N ;
-fun fill_N : N ;
-fun landfill_N : N ;
-fun refill_N : N ;
-fun gill_N : N ;
-fun bluegill_N : N ;
-fun aspergill_N : N ;
-fun hill_N : N ;
-fun 'ant-hill_N' : N ;
-fun chill_N : N ;
-fun molehill_N : N ;
-fun dunghill_N : N ;
-fun downhill_N : N ;
-fun uphill_N : N ;
-fun shill_N : N ;
-fun thill_N : N ;
-fun anthill_N : N ;
-fun foothill_N : N ;
-fun roadkill_N : N ;
-fun overkill_N : N ;
-fun skill_N : N ;
-fun mill_N : N ;
-fun 'coffee-mill_N' : N ;
-fun 'rolling-mill_N' : N ;
-fun 'lumber-mill_N' : N ;
-fun 'pepper-mill_N' : N ;
-fun treadmill_N : N ;
-fun windmill_N : N ;
-fun spicemill_N : N ;
-fun lumbermill_N : N ;
-fun papermill_N : N ;
-fun watermill_N : N ;
-fun gristmill_N : N ;
-fun sawmill_N : N ;
-fun pill_N : N ;
-fun 'sleeping-pill_N' : N ;
-fun spill_N : N ;
-fun overspill_N : N ;
-fun rill_N : N ;
-fun drill_N : N ;
-fun 'burr-drill_N' : N ;
-fun mandrill_N : N ;
-fun frill_N : N ;
-fun grill_N : N ;
-fun thrill_N : N ;
-fun krill_N : N ;
-fun trill_N : N ;
-fun sill_N : N ;
-fun doorsill_N : N ;
-fun windowsill_N : N ;
-fun till_N : N ;
-fun still_N : N ;
-fun standstill_N : N ;
-fun quill_N : N ;
-fun squill_N : N ;
-fun will_N : N ;
-fun 'self-will_N' : N ;
-fun goodwill_N : N ;
-fun nimblewill_N : N ;
-fun poorwill_N : N ;
-fun whippoorwill_N : N ;
-fun swill_N : N ;
-fun pigswill_N : N ;
-fun twill_N : N ;
-fun zill_N : N ;
-fun boll_N : N ;
-fun doll_N : N ;
-fun moll_N : N ;
-fun knoll_N : N ;
-fun poll_N : N ;
-fun deedpoll_N : N ;
-fun redpoll_N : N ;
-fun blackpoll_N : N ;
-fun roll_N : N ;
-fun 'sausage-roll_N' : N ;
-fun 'death-roll_N' : N ;
-fun 'rock-\'n-roll_N' : N ;
-fun 'toilet-roll_N' : N ;
-fun 'rent-roll_N' : N ;
-fun scroll_N : N ;
-fun bedroll_N : N ;
-fun bankroll_N : N ;
-fun troll_N : N ;
-fun stroll_N : N ;
-fun payroll_N : N ;
-fun jellyroll_N : N ;
-fun plimsoll_N : N ;
-fun toll_N : N ;
-fun atoll_N : N ;
-fun bull_N : N ;
-fun cull_N : N ;
-fun scull_N : N ;
-fun gull_N : N ;
-fun seagull_N : N ;
-fun hull_N : N ;
-fun skull_N : N ;
-fun numskull_N : N ;
-fun lull_N : N ;
-fun mull_N : N ;
-fun pull_N : N ;
-fun 'leg-pull_N' : N ;
-fun bellpull_N : N ;
-fun idyll_N : N ;
-fun argyll_N : N ;
-fun cataphyll_N : N ;
-fun xanthophyll_N : N ;
-fun chlorophyll_N : N ;
-fun bacteriochlorophyll_N : N ;
-fun sporophyll_N : N ;
-fun megasporophyll_N : N ;
-fun microsporophyll_N : N ;
-fun prophyll_N : N ;
-fun foryml_N : N ;
-fun gaol_N : N ;
-fun gambol_N : N ;
-fun symbol_N : N ;
-fun col_N : N ;
-fun chloramphenicol_N : N ;
-fun protocol_N : N ;
-fun dol_N : N ;
-fun idol_N : N ;
-fun haloperidol_N : N ;
-fun aldol_N : N ;
-fun acetaldol_N : N ;
-fun mongol_N : N ;
-fun googol_N : N ;
-fun alcohol_N : N ;
-fun gasohol_N : N ;
-fun naphthol_N : N ;
-fun menthol_N : N ;
-fun diol_N : N ;
-fun estradiol_N : N ;
-fun pregnanediol_N : N ;
-fun vitriol_N : N ;
-fun estriol_N : N ;
-fun viol_N : N ;
-fun salol_N : N ;
-fun labetalol_N : N ;
-fun carvedilol_N : N ;
-fun pyrogallol_N : N ;
-fun nadolol_N : N ;
-fun pindolol_N : N ;
-fun timolol_N : N ;
-fun esmolol_N : N ;
-fun propanolol_N : N ;
-fun atenolol_N : N ;
-fun metoprolol_N : N ;
-fun acebutolol_N : N ;
-fun methocarbamol_N : N ;
-fun thymol_N : N ;
-fun methanol_N : N ;
-fun tribromoethanol_N : N ;
-fun propanol_N : N ;
-fun mestranol_N : N ;
-fun cyclohexanol_N : N ;
-fun enol_N : N ;
-fun phenol_N : N ;
-fun metaproterenol_N : N ;
-fun isoproterenol_N : N ;
-fun tetrahydrocannabinol_N : N ;
-fun dronabinol_N : N ;
-fun resorcinol_N : N ;
-fun allopurinol_N : N ;
-fun ethchlorvynol_N : N ;
-fun cool_N : N ;
-fun fool_N : N ;
-fun tomfool_N : N ;
-fun school_N : N ;
-fun 'riding-school_N' : N ;
-fun 'boarding-school_N' : N ;
-fun 'choir-school_N' : N ;
-fun 'day-school_N' : N ;
-fun preschool_N : N ;
-fun playschool_N : N ;
-fun linalool_N : N ;
-fun pool_N : N ;
-fun 'swimming-pool_N' : N ;
-fun whirlpool_N : N ;
-fun spool_N : N ;
-fun cesspool_N : N ;
-fun drool_N : N ;
-fun tool_N : N ;
-fun stool_N : N ;
-fun 'music-stool_N' : N ;
-fun 'ducking-stool_N' : N ;
-fun 'camp-stool_N' : N ;
-fun toadstool_N : N ;
-fun campstool_N : N ;
-fun footstool_N : N ;
-fun wool_N : N ;
-fun 'cotton-wool_N' : N ;
-fun 'glass-wool_N' : N ;
-fun longwool_N : N ;
-fun carol_N : N ;
-fun dicumarol_N : N ;
-fun glycerol_N : N ;
-fun folderol_N : N ;
-fun gingerol_N : N ;
-fun sterol_N : N ;
-fun diethylstilbesterol_N : N ;
-fun cholesterol_N : N ;
-fun ergosterol_N : N ;
-fun albuterol_N : N ;
-fun patrol_N : N ;
-fun petrol_N : N ;
-fun control_N : N ;
-fun 'price-control_N' : N ;
-fun 'fire-control_N' : N ;
-fun 'self-control_N' : N ;
-fun 'birth-control_N' : N ;
-fun diethylstilbestrol_N : N ;
-fun megestrol_N : N ;
-fun hexestrol_N : N ;
-fun sol_N : N ;
-fun parasol_N : N ;
-fun cresol_N : N ;
-fun creosol_N : N ;
-fun regosol_N : N ;
-fun aerosol_N : N ;
-fun cytosol_N : N ;
-fun lysol_N : N ;
-fun mannitol_N : N ;
-fun capitol_N : N ;
-fun pentaerythritol_N : N ;
-fun inositol_N : N ;
-fun pistol_N : N ;
-fun wittol_N : N ;
-fun vol_N : N ;
-fun coyol_N : N ;
-fun pentylenetetrazol_N : N ;
-fun podzol_N : N ;
-fun benzol_N : N ;
-fun earl_N : N ;
-fun pearl_N : N ;
-fun 'mother-of-pearl_N' : N ;
-fun marl_N : N ;
-fun snarl_N : N ;
-fun girl_N : N ;
-fun 'nautch-girl_N' : N ;
-fun 'call-girl_N' : N ;
-fun 'mill-girl_N' : N ;
-fun 'shop-girl_N' : N ;
-fun 'flower-girl_N' : N ;
-fun 'chorus-girl_N' : N ;
-fun 'street-girl_N' : N ;
-fun homegirl_N : N ;
-fun schoolgirl_N : N ;
-fun salesgirl_N : N ;
-fun cowgirl_N : N ;
-fun showgirl_N : N ;
-fun daygirl_N : N ;
-fun skirl_N : N ;
-fun swirl_N : N ;
-fun twirl_N : N ;
-fun schorl_N : N ;
-fun whorl_N : N ;
-fun burl_N : N ;
-fun curl_N : N ;
-fun hurl_N : N ;
-fun churl_N : N ;
-fun purl_N : N ;
-fun axolotl_N : N ;
-fun rotl_N : N ;
-fun caul_N : N ;
-fun gaul_N : N ;
-fun haul_N : N ;
-fun overhaul_N : N ;
-fun maul_N : N ;
-fun caterwaul_N : N ;
-fun bulbul_N : N ;
-fun cul_N : N ;
-fun picul_N : N ;
-fun tubful_N : N ;
-fun headful_N : N ;
-fun handful_N : N ;
-fun spadeful_N : N ;
-fun thimbleful_N : N ;
-fun shoeful_N : N ;
-fun pipeful_N : N ;
-fun houseful_N : N ;
-fun plateful_N : N ;
-fun eyeful_N : N ;
-fun shelfful_N : N ;
-fun jugful_N : N ;
-fun dishful_N : N ;
-fun faithful_N : N ;
-fun mouthful_N : N ;
-fun shovelful_N : N ;
-fun pailful_N : N ;
-fun roomful_N : N ;
-fun armful_N : N ;
-fun skinful_N : N ;
-fun spoonful_N : N ;
-fun teaspoonful_N : N ;
-fun tablespoonful_N : N ;
-fun dessertspoonful_N : N ;
-fun barnful_N : N ;
-fun capful_N : N ;
-fun lapful_N : N ;
-fun skepful_N : N ;
-fun scoopful_N : N ;
-fun cupful_N : N ;
-fun carful_N : N ;
-fun earful_N : N ;
-fun jarful_N : N ;
-fun containerful_N : N ;
-fun glassful_N : N ;
-fun hatful_N : N ;
-fun pocketful_N : N ;
-fun bucketful_N : N ;
-fun boxful_N : N ;
-fun bellyful_N : N ;
-fun mogul_N : N ;
-fun manul_N : N ;
-fun foul_N : N ;
-fun ghoul_N : N ;
-fun soul_N : N ;
-fun pul_N : N ;
-fun peepul_N : N ;
-fun consul_N : N ;
-fun proconsul_N : N ;
-fun awl_N : N ;
-fun bradawl_N : N ;
-fun shawl_N : N ;
-fun pawl_N : N ;
-fun brawl_N : N ;
-fun crawl_N : N ;
-fun 'pub-crawl_N' : N ;
-fun scrawl_N : N ;
-fun drawl_N : N ;
-fun sprawl_N : N ;
-fun trawl_N : N ;
-fun yawl_N : N ;
-fun owl_N : N ;
-fun 'screech-owl_N' : N ;
-fun bowl_N : N ;
-fun 'finger-bowl_N' : N ;
-fun 'dust-bowl_N' : N ;
-fun punchbowl_N : N ;
-fun washbowl_N : N ;
-fun fishbowl_N : N ;
-fun cowl_N : N ;
-fun scowl_N : N ;
-fun fowl_N : N ;
-fun peafowl_N : N ;
-fun wildfowl_N : N ;
-fun waterfowl_N : N ;
-fun moorfowl_N : N ;
-fun howl_N : N ;
-fun jowl_N : N ;
-fun growl_N : N ;
-fun prowl_N : N ;
-fun sibyl_N : N ;
-fun acyl_N : N ;
-fun cacodyl_N : N ;
-fun ethyl_N : N ;
-fun methyl_N : N ;
-fun hydroxymethyl_N : N ;
-fun anesthyl_N : N ;
-fun alkyl_N : N ;
-fun allyl_N : N ;
-fun amyl_N : N ;
-fun uranyl_N : N ;
-fun vinyl_N : N ;
-fun carbonyl_N : N ;
-fun propyl_N : N ;
-fun beryl_N : N ;
-fun chrysoberyl_N : N ;
-fun glyceryl_N : N ;
-fun tetryl_N : N ;
-fun dactyl_N : N ;
-fun pterodactyl_N : N ;
-fun acetyl_N : N ;
-fun butyl_N : N ;
-fun carboxyl_N : N ;
-fun hydroxyl_N : N ;
-fun benzyl_N : N ;
-fun ma'am_N : N ;
-fun sham_N : N ;
-fun random_N : N ;
-fun modicum_N : N ;
-fun addendum_N : N ;
-fun corrigendum_N : N ;
-fun 'reductio ad absurdum_N' : N ;
-fun millennium_N : N ;
-fun solarium_N : N ;
-fun bacterium_N : N ;
-fun consortium_N : N ;
-fun candelabrum_N : N ;
-fun simulacrum_N : N ;
-fun spectrum_N : N ;
-fun datum_N : N ;
-fun desideratum_N : N ;
-fun erratum_N : N ;
-fun stratum_N : N ;
-fun substratum_N : N ;
-fun 'obiter dictum_N' : N ;
-fun quantum_N : N ;
-fun ovum_N : N ;
-fun bream_N : N ;
-fun 'sea-bream_N' : N ;
-fun cm_N : N ;
-fun dm_N : N ;
-fun km_N : N ;
-fun mm_N : N ;
-fun rpm_N : N ;
-fun wpm_N : N ;
-fun salaam_N : N ;
-fun cam_N : N ;
-fun webcam_N : N ;
-fun piroxicam_N : N ;
-fun scam_N : N ;
-fun dam_N : N ;
-fun 'mill-dam_N' : N ;
-fun 'coffer-dam_N' : N ;
-fun macadam_N : N ;
-fun 'tar-macadam_N' : N ;
-fun tarmacadam_N : N ;
-fun madam_N : N ;
-fun beldam_N : N ;
-fun milldam_N : N ;
-fun beam_N : N ;
-fun moonbeam_N : N ;
-fun hornbeam_N : N ;
-fun sunbeam_N : N ;
-fun crossbeam_N : N ;
-fun gleam_N : N ;
-fun ream_N : N ;
-fun cream_N : N ;
-fun 'ice cream_N' : N ;
-fun 'face-cream_N' : N ;
-fun 'ice-cream_N' : N ;
-fun scream_N : N ;
-fun dream_N : N ;
-fun pipedream_N : N ;
-fun daydream_N : N ;
-fun stream_N : N ;
-fun headstream_N : N ;
-fun midstream_N : N ;
-fun bloodstream_N : N ;
-fun mainstream_N : N ;
-fun slipstream_N : N ;
-fun airstream_N : N ;
-fun seam_N : N ;
-fun 'coal-seam_N' : N ;
-fun team_N : N ;
-fun steam_N : N ;
-fun gam_N : N ;
-fun amalgam_N : N ;
-fun lingam_N : N ;
-fun cryptogam_N : N ;
-fun ham_N : N ;
-fun gingham_N : N ;
-fun brougham_N : N ;
-fun sealyham_N : N ;
-fun jam_N : N ;
-fun 'log-jam_N' : N ;
-fun logjam_N : N ;
-fun clam_N : N ;
-fun bedlam_N : N ;
-fun midazolam_N : N ;
-fun triazolam_N : N ;
-fun alprazolam_N : N ;
-fun estazolam_N : N ;
-fun slam_N : N ;
-fun Islam_N : N ;
-fun imam_N : N ;
-fun aztreonam_N : N ;
-fun jeroboam_N : N ;
-fun foam_N : N ;
-fun polyfoam_N : N ;
-fun loam_N : N ;
-fun diazepam_N : N ;
-fun temazepam_N : N ;
-fun lorazepam_N : N ;
-fun nitrazepam_N : N ;
-fun flurazepam_N : N ;
-fun oxazepam_N : N ;
-fun spam_N : N ;
-fun ram_N : N ;
-fun avaram_N : N ;
-fun dram_N : N ;
-fun fluidram_N : N ;
-fun wolfram_N : N ;
-fun gram_N : N ;
-fun diagram_N : N ;
-fun myriagram_N : N ;
-fun dekagram_N : N ;
-fun anagram_N : N ;
-fun tetragram_N : N ;
-fun hexagram_N : N ;
-fun cablegram_N : N ;
-fun telegram_N : N ;
-fun bigram_N : N ;
-fun decigram_N : N ;
-fun milligram_N : N ;
-fun epigram_N : N ;
-fun trigram_N : N ;
-fun antigram_N : N ;
-fun tangram_N : N ;
-fun engram_N : N ;
-fun cladogram_N : N ;
-fun ideogram_N : N ;
-fun hysterosalpingogram_N : N ;
-fun logogram_N : N ;
-fun tachogram_N : N ;
-fun radiogram_N : N ;
-fun echocardiogram_N : N ;
-fun angiocardiogram_N : N ;
-fun electrocardiogram_N : N ;
-fun ballistocardiogram_N : N ;
-fun audiogram_N : N ;
-fun angiogram_N : N ;
-fun lymphangiogram_N : N ;
-fun heliogram_N : N ;
-fun arteriogram_N : N ;
-fun encephalogram_N : N ;
-fun echoencephalogram_N : N ;
-fun electroencephalogram_N : N ;
-fun parallelogram_N : N ;
-fun myelogram_N : N ;
-fun pyelogram_N : N ;
-fun kilogram_N : N ;
-fun oscillogram_N : N ;
-fun bologram_N : N ;
-fun hologram_N : N ;
-fun mammogram_N : N ;
-fun nomogram_N : N ;
-fun thermogram_N : N ;
-fun seismogram_N : N ;
-fun nanogram_N : N ;
-fun roentgenogram_N : N ;
-fun venogram_N : N ;
-fun electroretinogram_N : N ;
-fun phonogram_N : N ;
-fun monogram_N : N ;
-fun sonogram_N : N ;
-fun lipogram_N : N ;
-fun microgram_N : N ;
-fun grogram_N : N ;
-fun arthrogram_N : N ;
-fun spirogram_N : N ;
-fun program_N : N ;
-fun spectrogram_N : N ;
-fun isogram_N : N ;
-fun chromatogram_N : N ;
-fun hectogram_N : N ;
-fun cryptogram_N : N ;
-fun histogram_N : N ;
-fun myogram_N : N ;
-fun electromyogram_N : N ;
-fun ashram_N : N ;
-fun disulfiram_N : N ;
-fun buckram_N : N ;
-fun foram_N : N ;
-fun marjoram_N : N ;
-fun pram_N : N ;
-fun tram_N : N ;
-fun balsam_N : N ;
-fun jetsam_N : N ;
-fun flotsam_N : N ;
-fun tam_N : N ;
-fun bantam_N : N ;
-fun wigwam_N : N ;
-fun exam_N : N ;
-fun yam_N : N ;
-fun icbm_N : N ;
-fun em_N : N ;
-fun diadem_N : N ;
-fun tandem_N : N ;
-fun modem_N : N ;
-fun neem_N : N ;
-fun esteem_N : N ;
-fun 'self-esteem_N' : N ;
-fun disesteem_N : N ;
-fun gem_N : N ;
-fun stratagem_N : N ;
-fun dodgem_N : N ;
-fun hem_N : N ;
-fun sachem_N : N ;
-fun anthem_N : N ;
-fun enanthem_N : N ;
-fun exanthem_N : N ;
-fun mayhem_N : N ;
-fun requiem_N : N ;
-fun emblem_N : N ;
-fun problem_N : N ;
-fun phellem_N : N ;
-fun golem_N : N ;
-fun moslem_N : N ;
-fun ylem_N : N ;
-fun xylem_N : N ;
-fun mem_N : N ;
-fun phloem_N : N ;
-fun pseudophloem_N : N ;
-fun poem_N : N ;
-fun 'tone-poem_N' : N ;
-fun harem_N : N ;
-fun theorem_N : N ;
-fun categorem_N : N ;
-fun syncategorem_N : N ;
-fun retem_N : N ;
-fun item_N : N ;
-fun totem_N : N ;
-fun 'post-mortem_N' : N ;
-fun postmortem_N : N ;
-fun stem_N : N ;
-fun bluestem_N : N ;
-fun wingstem_N : N ;
-fun meristem_N : N ;
-fun brainstem_N : N ;
-fun system_N : N ;
-fun subsystem_N : N ;
-fun ecosystem_N : N ;
-fun diltiazem_N : N ;
-fun fm_N : N ;
-fun agm_N : N ;
-fun diaphragm_N : N ;
-fun apophthegm_N : N ;
-fun apothegm_N : N ;
-fun phlegm_N : N ;
-fun paradigm_N : N ;
-fun drachm_N : N ;
-fun ohm_N : N ;
-fun abohm_N : N ;
-fun megohm_N : N ;
-fun logarithm_N : N ;
-fun antilogarithm_N : N ;
-fun algorithm_N : N ;
-fun rhythm_N : N ;
-fun aim_N : N ;
-fun claim_N : N ;
-fun 'wage-claim_N' : N ;
-fun 'pay-claim_N' : N ;
-fun acclaim_N : N ;
-fun counterclaim_N : N ;
-fun quitclaim_N : N ;
-fun shim_N : N ;
-fun whim_N : N ;
-fun hakim_N : N ;
-fun skim_N : N ;
-fun angelim_N : N ;
-fun prelim_N : N ;
-fun Muslim_N : N ;
-fun nim_N : N ;
-fun denim_N : N ;
-fun minim_N : N ;
-fun paynim_N : N ;
-fun rim_N : N ;
-fun brim_N : N ;
-fun scrim_N : N ;
-fun interim_N : N ;
-fun megrim_N : N ;
-fun pilgrim_N : N ;
-fun trim_N : N ;
-fun alastrim_N : N ;
-fun victim_N : N ;
-fun vim_N : N ;
-fun swim_N : N ;
-fun maxim_N : N ;
-fun balm_N : N ;
-fun calm_N : N ;
-fun realm_N : N ;
-fun palm_N : N ;
-fun 'oil-palm_N' : N ;
-fun napalm_N : N ;
-fun psalm_N : N ;
-fun qualm_N : N ;
-fun elm_N : N ;
-fun 'witch-elm_N' : N ;
-fun helm_N : N ;
-fun film_N : N ;
-fun 'sound-film_N' : N ;
-fun 'cine-film_N' : N ;
-fun telefilm_N : N ;
-fun microfilm_N : N ;
-fun olm_N : N ;
-fun haulm_N : N ;
-fun culm_N : N ;
-fun intercom_N : N ;
-fun princedom_N : N ;
-fun freedom_N : N ;
-fun dukedom_N : N ;
-fun boredom_N : N ;
-fun fiefdom_N : N ;
-fun serfdom_N : N ;
-fun kingdom_N : N ;
-fun subkingdom_N : N ;
-fun sheikhdom_N : N ;
-fun sheikdom_N : N ;
-fun officialdom_N : N ;
-fun thraldom_N : N ;
-fun cuckoldom_N : N ;
-fun earldom_N : N ;
-fun filmdom_N : N ;
-fun fandom_N : N ;
-fun christendom_N : N ;
-fun condom_N : N ;
-fun corundom_N : N ;
-fun sodom_N : N ;
-fun stardom_N : N ;
-fun martyrdom_N : N ;
-fun wisdom_N : N ;
-fun 'topsy-turvydom_N' : N ;
-fun fathom_N : N ;
-fun idiom_N : N ;
-fun axiom_N : N ;
-fun slalom_N : N ;
-fun celom_N : N ;
-fun cardamom_N : N ;
-fun supermom_N : N ;
-fun venom_N : N ;
-fun boom_N : N ;
-fun 'jib-boom_N' : N ;
-fun naboom_N : N ;
-fun jibboom_N : N ;
-fun keurboom_N : N ;
-fun doom_N : N ;
-fun loom_N : N ;
-fun bloom_N : N ;
-fun checkerbloom_N : N ;
-fun broadloom_N : N ;
-fun handloom_N : N ;
-fun gloom_N : N ;
-fun heirloom_N : N ;
-fun simoom_N : N ;
-fun room_N : N ;
-fun 'billiard-room_N' : N ;
-fun 'reading-room_N' : N ;
-fun 'smoking-room_N' : N ;
-fun 'dining-room_N' : N ;
-fun 'morning-room_N' : N ;
-fun 'seating-room_N' : N ;
-fun 'waiting-room_N' : N ;
-fun 'sitting-room_N' : N ;
-fun 'bedsitting-room_N' : N ;
-fun 'cutting-room_N' : N ;
-fun 'living-room_N' : N ;
-fun 'drawing-room_N' : N ;
-fun 'sick-room_N' : N ;
-fun 'still-room_N' : N ;
-fun 'common-room_N' : N ;
-fun 'pump-room_N' : N ;
-fun 'powder-room_N' : N ;
-fun tearoom_N : N ;
-fun broom_N : N ;
-fun clubroom_N : N ;
-fun headroom_N : N ;
-fun bedroom_N : N ;
-fun cardroom_N : N ;
-fun boardroom_N : N ;
-fun guardroom_N : N ;
-fun wardroom_N : N ;
-fun saleroom_N : N ;
-fun storeroom_N : N ;
-fun houseroom_N : N ;
-fun stateroom_N : N ;
-fun anteroom_N : N ;
-fun groom_N : N ;
-fun bridegroom_N : N ;
-fun strongroom_N : N ;
-fun lunchroom_N : N ;
-fun washroom_N : N ;
-fun mushroom_N : N ;
-fun bathroom_N : N ;
-fun cloakroom_N : N ;
-fun backroom_N : N ;
-fun checkroom_N : N ;
-fun sickroom_N : N ;
-fun stockroom_N : N ;
-fun darkroom_N : N ;
-fun workroom_N : N ;
-fun ballroom_N : N ;
-fun grillroom_N : N ;
-fun stillroom_N : N ;
-fun schoolroom_N : N ;
-fun poolroom_N : N ;
-fun greenroom_N : N ;
-fun gunroom_N : N ;
-fun taproom_N : N ;
-fun barroom_N : N ;
-fun lumberroom_N : N ;
-fun classroom_N : N ;
-fun newsroom_N : N ;
-fun courtroom_N : N ;
-fun guestroom_N : N ;
-fun vroom_N : N ;
-fun showroom_N : N ;
-fun playroom_N : N ;
-fun zoom_N : N ;
-fun pom_N : N ;
-fun carom_N : N ;
-fun pogrom_N : N ;
-fun prom_N : N ;
-fun angstrom_N : N ;
-fun maelstrom_N : N ;
-fun som_N : N ;
-fun besom_N : N ;
-fun hansom_N : N ;
-fun ransom_N : N ;
-fun transom_N : N ;
-fun bosom_N : N ;
-fun blossom_N : N ;
-fun tom_N : N ;
-fun atom_N : N ;
-fun diatom_N : N ;
-fun tomtom_N : N ;
-fun phantom_N : N ;
-fun symptom_N : N ;
-fun custom_N : N ;
-fun bottom_N : N ;
-fun 'rock-bottom_N' : N ;
-fun rm_N : N ;
-fun arm_N : N ;
-fun barm_N : N ;
-fun yardarm_N : N ;
-fun firearm_N : N ;
-fun forearm_N : N ;
-fun farm_N : N ;
-fun 'stud-farm_N' : N ;
-fun 'sewage-farm_N' : N ;
-fun 'home-farm_N' : N ;
-fun 'dairy-farm_N' : N ;
-fun harm_N : N ;
-fun charm_N : N ;
-fun alarm_N : N ;
-fun 'fire-alarm_N' : N ;
-fun 'burglar-alarm_N' : N ;
-fun schoolmarm_N : N ;
-fun swarm_N : N ;
-fun berm_N : N ;
-fun placoderm_N : N ;
-fun ostracoderm_N : N ;
-fun endoderm_N : N ;
-fun echinoderm_N : N ;
-fun mesoderm_N : N ;
-fun chordamesoderm_N : N ;
-fun ectoderm_N : N ;
-fun blastoderm_N : N ;
-fun pachyderm_N : N ;
-fun germ_N : N ;
-fun herm_N : N ;
-fun therm_N : N ;
-fun homeotherm_N : N ;
-fun poikilotherm_N : N ;
-fun isotherm_N : N ;
-fun exotherm_N : N ;
-fun perm_N : N ;
-fun sperm_N : N ;
-fun perisperm_N : N ;
-fun endosperm_N : N ;
-fun angiosperm_N : N ;
-fun gymnosperm_N : N ;
-fun progymnosperm_N : N ;
-fun term_N : N ;
-fun midterm_N : N ;
-fun firm_N : N ;
-fun squirm_N : N ;
-fun corm_N : N ;
-fun form_N : N ;
-fun 'order-form_N' : N ;
-fun reform_N : N ;
-fun cuneiform_N : N ;
-fun uniform_N : N ;
-fun pisiform_N : N ;
-fun iodoform_N : N ;
-fun haloform_N : N ;
-fun bromoform_N : N ;
-fun chloroform_N : N ;
-fun fluoroform_N : N ;
-fun platform_N : N ;
-fun cairngorm_N : N ;
-fun norm_N : N ;
-fun storm_N : N ;
-fun sandstorm_N : N ;
-fun windstorm_N : N ;
-fun firestorm_N : N ;
-fun hailstorm_N : N ;
-fun rainstorm_N : N ;
-fun brainstorm_N : N ;
-fun thunderstorm_N : N ;
-fun snowstorm_N : N ;
-fun worm_N : N ;
-fun 'glow-worm_N' : N ;
-fun 'slow-worm_N' : N ;
-fun webworm_N : N ;
-fun blindworm_N : N ;
-fun bloodworm_N : N ;
-fun woodworm_N : N ;
-fun cabbageworm_N : N ;
-fun tapeworm_N : N ;
-fun wireworm_N : N ;
-fun caseworm_N : N ;
-fun ringworm_N : N ;
-fun lugworm_N : N ;
-fun earthworm_N : N ;
-fun silkworm_N : N ;
-fun bookworm_N : N ;
-fun hookworm_N : N ;
-fun mealworm_N : N ;
-fun eelworm_N : N ;
-fun bollworm_N : N ;
-fun pinworm_N : N ;
-fun shipworm_N : N ;
-fun cankerworm_N : N ;
-fun caddisworm_N : N ;
-fun wheatworm_N : N ;
-fun flatworm_N : N ;
-fun cutworm_N : N ;
-fun strawworm_N : N ;
-fun glowworm_N : N ;
-fun arrowworm_N : N ;
-fun armyworm_N : N ;
-fun sarcasm_N : N ;
-fun orgasm_N : N ;
-fun chasm_N : N ;
-fun enthusiasm_N : N ;
-fun iconoclasm_N : N ;
-fun plasm_N : N ;
-fun sarcoplasm_N : N ;
-fun endoplasm_N : N ;
-fun nucleoplasm_N : N ;
-fun neoplasm_N : N ;
-fun hyaloplasm_N : N ;
-fun piroplasm_N : N ;
-fun ectoplasm_N : N ;
-fun protoplasm_N : N ;
-fun cytoplasm_N : N ;
-fun pleonasm_N : N ;
-fun spasm_N : N ;
-fun laryngospasm_N : N ;
-fun bronchospasm_N : N ;
-fun cardiospasm_N : N ;
-fun blepharospasm_N : N ;
-fun phantasm_N : N ;
-fun ism_N : N ;
-fun judaism_N : N ;
-fun archaism_N : N ;
-fun cubism_N : N ;
-fun lambdacism_N : N ;
-fun supremacism_N : N ;
-fun racism_N : N ;
-fun ostracism_N : N ;
-fun solecism_N : N ;
-fun mosaicism_N : N ;
-fun logicism_N : N ;
-fun ethicism_N : N ;
-fun anglicism_N : N ;
-fun gallicism_N : N ;
-fun catholicism_N : N ;
-fun organicism_N : N ;
-fun laconicism_N : N ;
-fun cynicism_N : N ;
-fun stoicism_N : N ;
-fun hypericism_N : N ;
-fun empiricism_N : N ;
-fun historicism_N : N ;
-fun lyricism_N : N ;
-fun classicism_N : N ;
-fun neoclassicism_N : N ;
-fun fanaticism_N : N ;
-fun didacticism_N : N ;
-fun eclecticism_N : N ;
-fun asceticism_N : N ;
-fun athleticism_N : N ;
-fun geneticism_N : N ;
-fun criticism_N : N ;
-fun romanticism_N : N ;
-fun neoromanticism_N : N ;
-fun eroticism_N : N ;
-fun autoeroticism_N : N ;
-fun exoticism_N : N ;
-fun scepticism_N : N ;
-fun skepticism_N : N ;
-fun ecclesiasticism_N : N ;
-fun scholasticism_N : N ;
-fun monasticism_N : N ;
-fun agnosticism_N : N ;
-fun mysticism_N : N ;
-fun witticism_N : N ;
-fun exorcism_N : N ;
-fun fascism_N : N ;
-fun tribadism_N : N ;
-fun hypogonadism_N : N ;
-fun sadism_N : N ;
-fun ophidism_N : N ;
-fun invalidism_N : N ;
-fun hypoparathyroidism_N : N ;
-fun hyperparathyroidism_N : N ;
-fun hypothyroidism_N : N ;
-fun hyperthyroidism_N : N ;
-fun druidism_N : N ;
-fun gourmandism_N : N ;
-fun methodism_N : N ;
-fun nudism_N : N ;
-fun deism_N : N ;
-fun absenteeism_N : N ;
-fun ageism_N : N ;
-fun theism_N : N ;
-fun atheism_N : N ;
-fun tritheism_N : N ;
-fun pantheism_N : N ;
-fun monotheism_N : N ;
-fun polytheism_N : N ;
-fun ableism_N : N ;
-fun misoneism_N : N ;
-fun pacifism_N : N ;
-fun dwarfism_N : N ;
-fun imagism_N : N ;
-fun suffragism_N : N ;
-fun meningism_N : N ;
-fun paralogism_N : N ;
-fun syllogism_N : N ;
-fun neologism_N : N ;
-fun biologism_N : N ;
-fun synergism_N : N ;
-fun catechism_N : N ;
-fun masochism_N : N ;
-fun sadomasochism_N : N ;
-fun anarchism_N : N ;
-fun monarchism_N : N ;
-fun anorchism_N : N ;
-fun monorchism_N : N ;
-fun schism_N : N ;
-fun buddhism_N : N ;
-fun diastrophism_N : N ;
-fun sophism_N : N ;
-fun theosophism_N : N ;
-fun anamorphism_N : N ;
-fun katamorphism_N : N ;
-fun metamorphism_N : N ;
-fun dimorphism_N : N ;
-fun pleomorphism_N : N ;
-fun enantiomorphism_N : N ;
-fun homomorphism_N : N ;
-fun zoomorphism_N : N ;
-fun anthropomorphism_N : N ;
-fun isomorphism_N : N ;
-fun polymorphism_N : N ;
-fun fetishism_N : N ;
-fun prognathism_N : N ;
-fun erethism_N : N ;
-fun obiism_N : N ;
-fun kabbalism_N : N ;
-fun cannibalism_N : N ;
-fun tribalism_N : N ;
-fun radicalism_N : N ;
-fun syndicalism_N : N ;
-fun evangelicalism_N : N ;
-fun clericalism_N : N ;
-fun localism_N : N ;
-fun bipedalism_N : N ;
-fun vandalism_N : N ;
-fun feudalism_N : N ;
-fun idealism_N : N ;
-fun realism_N : N ;
-fun surrealism_N : N ;
-fun legalism_N : N ;
-fun racialism_N : N ;
-fun specialism_N : N ;
-fun provincialism_N : N ;
-fun socialism_N : N ;
-fun commercialism_N : N ;
-fun parochialism_N : N ;
-fun colonialism_N : N ;
-fun neocolonialism_N : N ;
-fun imperialism_N : N ;
-fun serialism_N : N ;
-fun materialism_N : N ;
-fun industrialism_N : N ;
-fun existentialism_N : N ;
-fun colloquialism_N : N ;
-fun animalism_N : N ;
-fun minimalism_N : N ;
-fun formalism_N : N ;
-fun originalism_N : N ;
-fun criminalism_N : N ;
-fun nominalism_N : N ;
-fun regionalism_N : N ;
-fun professionalism_N : N ;
-fun nationalism_N : N ;
-fun denominationalism_N : N ;
-fun internationalism_N : N ;
-fun rationalism_N : N ;
-fun operationalism_N : N ;
-fun sensationalism_N : N ;
-fun sectionalism_N : N ;
-fun functionalism_N : N ;
-fun traditionalism_N : N ;
-fun constitutionalism_N : N ;
-fun maternalism_N : N ;
-fun paternalism_N : N ;
-fun journalism_N : N ;
-fun photojournalism_N : N ;
-fun communalism_N : N ;
-fun liberalism_N : N ;
-fun neoliberalism_N : N ;
-fun federalism_N : N ;
-fun bilateralism_N : N ;
-fun unilateralism_N : N ;
-fun literalism_N : N ;
-fun moralism_N : N ;
-fun amoralism_N : N ;
-fun centralism_N : N ;
-fun neutralism_N : N ;
-fun pluralism_N : N ;
-fun ruralism_N : N ;
-fun naturalism_N : N ;
-fun supernaturalism_N : N ;
-fun structuralism_N : N ;
-fun multiculturalism_N : N ;
-fun commensalism_N : N ;
-fun universalism_N : N ;
-fun fatalism_N : N ;
-fun capitalism_N : N ;
-fun vitalism_N : N ;
-fun occidentalism_N : N ;
-fun transcendentalism_N : N ;
-fun orientalism_N : N ;
-fun mentalism_N : N ;
-fun fundamentalism_N : N ;
-fun ornamentalism_N : N ;
-fun experimentalism_N : N ;
-fun sentimentalism_N : N ;
-fun environmentalism_N : N ;
-fun instrumentalism_N : N ;
-fun sacerdotalism_N : N ;
-fun pentecostalism_N : N ;
-fun dualism_N : N ;
-fun individualism_N : N ;
-fun bilingualism_N : N ;
-fun sensualism_N : N ;
-fun ritualism_N : N ;
-fun spiritualism_N : N ;
-fun conceptualism_N : N ;
-fun contextualism_N : N ;
-fun transsexualism_N : N ;
-fun revivalism_N : N ;
-fun royalism_N : N ;
-fun ptyalism_N : N ;
-fun evangelism_N : N ;
-fun televangelism_N : N ;
-fun parallelism_N : N ;
-fun autotelism_N : N ;
-fun probabilism_N : N ;
-fun pugilism_N : N ;
-fun nihilism_N : N ;
-fun virilism_N : N ;
-fun mercantilism_N : N ;
-fun infantilism_N : N ;
-fun bimetallism_N : N ;
-fun pointillism_N : N ;
-fun diabolism_N : N ;
-fun anabolism_N : N ;
-fun catabolism_N : N ;
-fun metabolism_N : N ;
-fun holometabolism_N : N ;
-fun heterometabolism_N : N ;
-fun embolism_N : N ;
-fun thromboembolism_N : N ;
-fun symbolism_N : N ;
-fun mongolism_N : N ;
-fun holism_N : N ;
-fun workaholism_N : N ;
-fun alcoholism_N : N ;
-fun sciolism_N : N ;
-fun somnambulism_N : N ;
-fun funambulism_N : N ;
-fun oculism_N : N ;
-fun populism_N : N ;
-fun botulism_N : N ;
-fun dynamism_N : N ;
-fun dysphemism_N : N ;
-fun euphemism_N : N ;
-fun extremism_N : N ;
-fun totemism_N : N ;
-fun animism_N : N ;
-fun pessimism_N : N ;
-fun optimism_N : N ;
-fun momism_N : N ;
-fun atomism_N : N ;
-fun alarmism_N : N ;
-fun reformism_N : N ;
-fun nonconformism_N : N ;
-fun republicanism_N : N ;
-fun americanism_N : N ;
-fun volcanism_N : N ;
-fun muhammadanism_N : N ;
-fun epicureanism_N : N ;
-fun paganism_N : N ;
-fun hooliganism_N : N ;
-fun organism_N : N ;
-fun 'micro-organism_N' : N ;
-fun microorganism_N : N ;
-fun mechanism_N : N ;
-fun lesbianism_N : N ;
-fun ruffianism_N : N ;
-fun bohemianism_N : N ;
-fun antinomianism_N : N ;
-fun pianism_N : N ;
-fun millenarianism_N : N ;
-fun predestinarianism_N : N ;
-fun sectarianism_N : N ;
-fun vegetarianism_N : N ;
-fun hereditarianism_N : N ;
-fun egalitarianism_N : N ;
-fun totalitarianism_N : N ;
-fun utilitarianism_N : N ;
-fun humanitarianism_N : N ;
-fun unitarianism_N : N ;
-fun authoritarianism_N : N ;
-fun establishmentarianism_N : N ;
-fun antiestablishmentarianism_N : N ;
-fun libertarianism_N : N ;
-fun presbyterianism_N : N ;
-fun shamanism_N : N ;
-fun humanism_N : N ;
-fun charlatanism_N : N ;
-fun puritanism_N : N ;
-fun ultramontanism_N : N ;
-fun galvanism_N : N ;
-fun hoydenism_N : N ;
-fun alienism_N : N ;
-fun philhellenism_N : N ;
-fun hypersplenism_N : N ;
-fun ecumenism_N : N ;
-fun albinism_N : N ;
-fun jacobinism_N : N ;
-fun caffeinism_N : N ;
-fun feminism_N : N ;
-fun determinism_N : N ;
-fun luminism_N : N ;
-fun actinism_N : N ;
-fun cretinism_N : N ;
-fun philistinism_N : N ;
-fun calvinism_N : N ;
-fun chauvinism_N : N ;
-fun laconism_N : N ;
-fun hedonism_N : N ;
-fun antagonism_N : N ;
-fun religionism_N : N ;
-fun unionism_N : N ;
-fun 'trade-unionism_N' : N ;
-fun revisionism_N : N ;
-fun expansionism_N : N ;
-fun secessionism_N : N ;
-fun impressionism_N : N ;
-fun expressionism_N : N ;
-fun neoexpressionism_N : N ;
-fun creationism_N : N ;
-fun segregationism_N : N ;
-fun associationism_N : N ;
-fun deviationism_N : N ;
-fun isolationism_N : N ;
-fun reincarnationism_N : N ;
-fun separationism_N : N ;
-fun moderationism_N : N ;
-fun reactionism_N : N ;
-fun abstractionism_N : N ;
-fun perfectionism_N : N ;
-fun insurrectionism_N : N ;
-fun protectionism_N : N ;
-fun reductionism_N : N ;
-fun obstructionism_N : N ;
-fun exhibitionism_N : N ;
-fun abolitionism_N : N ;
-fun intuitionism_N : N ;
-fun revolutionism_N : N ;
-fun zionism_N : N ;
-fun monism_N : N ;
-fun eudemonism_N : N ;
-fun Mormonism_N : N ;
-fun aldosteronism_N : N ;
-fun anachronism_N : N ;
-fun synchronism_N : N ;
-fun asynchronism_N : N ;
-fun modernism_N : N ;
-fun postmodernism_N : N ;
-fun southernism_N : N ;
-fun communism_N : N ;
-fun opportunism_N : N ;
-fun maoism_N : N ;
-fun egoism_N : N ;
-fun jingoism_N : N ;
-fun voodooism_N : N ;
-fun heroism_N : N ;
-fun dichroism_N : N ;
-fun trichroism_N : N ;
-fun pleochroism_N : N ;
-fun escapism_N : N ;
-fun priapism_N : N ;
-fun theanthropism_N : N ;
-fun malapropism_N : N ;
-fun tropism_N : N ;
-fun geotropism_N : N ;
-fun ergotropism_N : N ;
-fun trophotropism_N : N ;
-fun heliotropism_N : N ;
-fun thermotropism_N : N ;
-fun neurotropism_N : N ;
-fun phototropism_N : N ;
-fun meteortropism_N : N ;
-fun barbarism_N : N ;
-fun vulgarism_N : N ;
-fun blepharism_N : N ;
-fun incendiarism_N : N ;
-fun plagiarism_N : N ;
-fun secularism_N : N ;
-fun particularism_N : N ;
-fun popularism_N : N ;
-fun insularism_N : N ;
-fun monetarism_N : N ;
-fun militarism_N : N ;
-fun hyperpituitarism_N : N ;
-fun careerism_N : N ;
-fun wellerism_N : N ;
-fun allomerism_N : N ;
-fun isomerism_N : N ;
-fun mesmerism_N : N ;
-fun consumerism_N : N ;
-fun mannerism_N : N ;
-fun spoonerism_N : N ;
-fun pauperism_N : N ;
-fun asterism_N : N ;
-fun chrism_N : N ;
-fun vampirism_N : N ;
-fun algorism_N : N ;
-fun aphorism_N : N ;
-fun meliorism_N : N ;
-fun behaviorism_N : N ;
-fun terrorism_N : N ;
-fun ecoterrorism_N : N ;
-fun narcoterrorism_N : N ;
-fun theoterrorism_N : N ;
-fun bioterrorism_N : N ;
-fun counterterrorism_N : N ;
-fun prism_N : N ;
-fun biprism_N : N ;
-fun centrism_N : N ;
-fun ethnocentrism_N : N ;
-fun anthropocentrism_N : N ;
-fun epicurism_N : N ;
-fun amateurism_N : N ;
-fun voyeurism_N : N ;
-fun behaviourism_N : N ;
-fun tourism_N : N ;
-fun ecotourism_N : N ;
-fun purism_N : N ;
-fun naturism_N : N ;
-fun adventurism_N : N ;
-fun futurism_N : N ;
-fun solipsism_N : N ;
-fun narcissism_N : N ;
-fun bossism_N : N ;
-fun defeatism_N : N ;
-fun cataphatism_N : N ;
-fun apophatism_N : N ;
-fun suprematism_N : N ;
-fun systematism_N : N ;
-fun pragmatism_N : N ;
-fun stigmatism_N : N ;
-fun astigmatism_N : N ;
-fun dogmatism_N : N ;
-fun animatism_N : N ;
-fun chromatism_N : N ;
-fun automatism_N : N ;
-fun rheumatism_N : N ;
-fun separatism_N : N ;
-fun corporatism_N : N ;
-fun conservatism_N : N ;
-fun neoconservatism_N : N ;
-fun synthetism_N : N ;
-fun quietism_N : N ;
-fun magnetism_N : N ;
-fun diamagnetism_N : N ;
-fun paramagnetism_N : N ;
-fun ferrimagnetism_N : N ;
-fun ferromagnetism_N : N ;
-fun antiferromagnetism_N : N ;
-fun electromagnetism_N : N ;
-fun concretism_N : N ;
-fun syncretism_N : N ;
-fun leftism_N : N ;
-fun rightism_N : N ;
-fun hermaphroditism_N : N ;
-fun pseudohermaphroditism_N : N ;
-fun asynclitism_N : N ;
-fun elitism_N : N ;
-fun eremitism_N : N ;
-fun 'anti-semitism_N' : N ;
-fun favoritism_N : N ;
-fun favouritism_N : N ;
-fun parasitism_N : N ;
-fun cultism_N : N ;
-fun occultism_N : N ;
-fun gigantism_N : N ;
-fun giantism_N : N ;
-fun vigilantism_N : N ;
-fun tarantism_N : N ;
-fun obscurantism_N : N ;
-fun protestantism_N : N ;
-fun irredentism_N : N ;
-fun irridentism_N : N ;
-fun presentism_N : N ;
-fun egotism_N : N ;
-fun ergotism_N : N ;
-fun patriotism_N : N ;
-fun hypnotism_N : N ;
-fun nepotism_N : N ;
-fun despotism_N : N ;
-fun baptism_N : N ;
-fun chartism_N : N ;
-fun transvestism_N : N ;
-fun fattism_N : N ;
-fun autism_N : N ;
-fun absolutism_N : N ;
-fun mutism_N : N ;
-fun proselytism_N : N ;
-fun hinduism_N : N ;
-fun euphuism_N : N ;
-fun ventriloquism_N : N ;
-fun truism_N : N ;
-fun altruism_N : N ;
-fun favism_N : N ;
-fun atavism_N : N ;
-fun recidivism_N : N ;
-fun progressivism_N : N ;
-fun relativism_N : N ;
-fun nativism_N : N ;
-fun activism_N : N ;
-fun subjectivism_N : N ;
-fun collectivism_N : N ;
-fun constructivism_N : N ;
-fun deconstructivism_N : N ;
-fun primitivism_N : N ;
-fun positivism_N : N ;
-fun descriptivism_N : N ;
-fun prescriptivism_N : N ;
-fun fauvism_N : N ;
-fun sexism_N : N ;
-fun heterosexism_N : N ;
-fun marxism_N : N ;
-fun bruxism_N : N ;
-fun hobbyism_N : N ;
-fun lobbyism_N : N ;
-fun grundyism_N : N ;
-fun rowdyism_N : N ;
-fun mccarthyism_N : N ;
-fun cronyism_N : N ;
-fun nazism_N : N ;
-fun paracosm_N : N ;
-fun macrocosm_N : N ;
-fun microcosm_N : N ;
-fun abysm_N : N ;
-fun cataclysm_N : N ;
-fun aneurysm_N : N ;
-fun paroxysm_N : N ;
-fun meerschaum_N : N ;
-fun bum_N : N ;
-fun stumblebum_N : N ;
-fun sebum_N : N ;
-fun album_N : N ;
-fun 'stamp-album_N' : N ;
-fun guaiacum_N : N ;
-fun cecum_N : N ;
-fun 'vade-mecum_N' : N ;
-fun angrecum_N : N ;
-fun capsicum_N : N ;
-fun talcum_N : N ;
-fun cynancum_N : N ;
-fun locum_N : N ;
-fun scum_N : N ;
-fun molluscum_N : N ;
-fun sedum_N : N ;
-fun pallidum_N : N ;
-fun dumdum_N : N ;
-fun explicandum_N : N ;
-fun memorandum_N : N ;
-fun pudendum_N : N ;
-fun referendum_N : N ;
-fun alundum_N : N ;
-fun carborundum_N : N ;
-fun corundum_N : N ;
-fun athenaeum_N : N ;
-fun lyceum_N : N ;
-fun 'te deum_N' : N ;
-fun geum_N : N ;
-fun rheum_N : N ;
-fun ileum_N : N ;
-fun linoleum_N : N ;
-fun petroleum_N : N ;
-fun mausoleum_N : N ;
-fun succedaneum_N : N ;
-fun perineum_N : N ;
-fun peritoneum_N : N ;
-fun mezereum_N : N ;
-fun museum_N : N ;
-fun endosteum_N : N ;
-fun periosteum_N : N ;
-fun gum_N : N ;
-fun 'chewing-gum_N' : N ;
-fun begum_N : N ;
-fun hum_N : N ;
-fun chum_N : N ;
-fun sorghum_N : N ;
-fun labium_N : N ;
-fun cambium_N : N ;
-fun columbium_N : N ;
-fun ununbium_N : N ;
-fun niobium_N : N ;
-fun ammobium_N : N ;
-fun dendrobium_N : N ;
-fun erbium_N : N ;
-fun terbium_N : N ;
-fun ytterbium_N : N ;
-fun euphorbium_N : N ;
-fun aecium_N : N ;
-fun perithecium_N : N ;
-fun apothecium_N : N ;
-fun cleistothecium_N : N ;
-fun paramecium_N : N ;
-fun gynoecium_N : N ;
-fun androecium_N : N ;
-fun gametoecium_N : N ;
-fun americium_N : N ;
-fun calcium_N : N ;
-fun francium_N : N ;
-fun lawrencium_N : N ;
-fun caladium_N : N ;
-fun palladium_N : N ;
-fun vanadium_N : N ;
-fun radium_N : N ;
-fun stadium_N : N ;
-fun ununquadium_N : N ;
-fun medium_N : N ;
-fun tedium_N : N ;
-fun rubidium_N : N ;
-fun coccidium_N : N ;
-fun oncidium_N : N ;
-fun glochidium_N : N ;
-fun regnellidium_N : N ;
-fun pycnidium_N : N ;
-fun ctenidium_N : N ;
-fun conidium_N : N ;
-fun antheridium_N : N ;
-fun peridium_N : N ;
-fun iridium_N : N ;
-fun osmiridium_N : N ;
-fun clostridium_N : N ;
-fun basidium_N : N ;
-fun hypobasidium_N : N ;
-fun praesidium_N : N ;
-fun presidium_N : N ;
-fun ommatidium_N : N ;
-fun pyxidium_N : N ;
-fun scandium_N : N ;
-fun compendium_N : N ;
-fun indium_N : N ;
-fun odium_N : N ;
-fun rhodium_N : N ;
-fun plasmodium_N : N ;
-fun podium_N : N ;
-fun parapodium_N : N ;
-fun stylopodium_N : N ;
-fun sodium_N : N ;
-fun epicardium_N : N ;
-fun pericardium_N : N ;
-fun endocardium_N : N ;
-fun myocardium_N : N ;
-fun precordium_N : N ;
-fun rutherfordium_N : N ;
-fun primordium_N : N ;
-fun exordium_N : N ;
-fun florilegium_N : N ;
-fun gynostegium_N : N ;
-fun sporangium_N : N ;
-fun megasporangium_N : N ;
-fun tetrasporangium_N : N ;
-fun microsporangium_N : N ;
-fun leptosporangium_N : N ;
-fun eusporangium_N : N ;
-fun gametangium_N : N ;
-fun seaborgium_N : N ;
-fun uropygium_N : N ;
-fun pterygium_N : N ;
-fun brachium_N : N ;
-fun ischium_N : N ;
-fun promethium_N : N ;
-fun lithium_N : N ;
-fun hypanthium_N : N ;
-fun pythium_N : N ;
-fun nobelium_N : N ;
-fun mycelium_N : N ;
-fun promycelium_N : N ;
-fun helium_N : N ;
-fun epithelium_N : N ;
-fun neuroepithelium_N : N ;
-fun perithelium_N : N ;
-fun endothelium_N : N ;
-fun mesothelium_N : N ;
-fun berkelium_N : N ;
-fun ilium_N : N ;
-fun cilium_N : N ;
-fun gallium_N : N ;
-fun thallium_N : N ;
-fun pallium_N : N ;
-fun archipallium_N : N ;
-fun neopallium_N : N ;
-fun bdellium_N : N ;
-fun verticillium_N : N ;
-fun trillium_N : N ;
-fun beryllium_N : N ;
-fun folium_N : N ;
-fun scholium_N : N ;
-fun thulium_N : N ;
-fun dictostylium_N : N ;
-fun epithalamium_N : N ;
-fun cadmium_N : N ;
-fun premium_N : N ;
-fun holmium_N : N ;
-fun encomium_N : N ;
-fun chromium_N : N ;
-fun fermium_N : N ;
-fun trichodesmium_N : N ;
-fun osmium_N : N ;
-fun neodymium_N : N ;
-fun praseodymium_N : N ;
-fun germanium_N : N ;
-fun cranium_N : N ;
-fun epicranium_N : N ;
-fun endocranium_N : N ;
-fun geranium_N : N ;
-fun uranium_N : N ;
-fun titanium_N : N ;
-fun dubnium_N : N ;
-fun proscenium_N : N ;
-fun roentgenium_N : N ;
-fun rhenium_N : N ;
-fun ruthenium_N : N ;
-fun selenium_N : N ;
-fun hymenium_N : N ;
-fun hafnium_N : N ;
-fun einsteinium_N : N ;
-fun delphinium_N : N ;
-fun triclinium_N : N ;
-fun pollinium_N : N ;
-fun gadolinium_N : N ;
-fun condominium_N : N ;
-fun aluminium_N : N ;
-fun actinium_N : N ;
-fun protactinium_N : N ;
-fun bimillennium_N : N ;
-fun quadrennium_N : N ;
-fun quinquennium_N : N ;
-fun meconium_N : N ;
-fun zirconium_N : N ;
-fun syconium_N : N ;
-fun archegonium_N : N ;
-fun euphonium_N : N ;
-fun polonium_N : N ;
-fun pandemonium_N : N ;
-fun polemonium_N : N ;
-fun ammonium_N : N ;
-fun harmonium_N : N ;
-fun plutonium_N : N ;
-fun diazonium_N : N ;
-fun californium_N : N ;
-fun neptunium_N : N ;
-fun opium_N : N ;
-fun europium_N : N ;
-fun marsupium_N : N ;
-fun barium_N : N ;
-fun columbarium_N : N ;
-fun herbarium_N : N ;
-fun samarium_N : N ;
-fun honorarium_N : N ;
-fun terrarium_N : N ;
-fun planetarium_N : N ;
-fun armamentarium_N : N ;
-fun aquarium_N : N ;
-fun vivarium_N : N ;
-fun equilibrium_N : N ;
-fun disequilibrium_N : N ;
-fun opprobrium_N : N ;
-fun manubrium_N : N ;
-fun scolopendrium_N : N ;
-fun hypochondrium_N : N ;
-fun cerium_N : N ;
-fun ferrocerium_N : N ;
-fun meitnerium_N : N ;
-fun imperium_N : N ;
-fun puerperium_N : N ;
-fun corynebacterium_N : N ;
-fun nitrobacterium_N : N ;
-fun psalterium_N : N ;
-fun deuterium_N : N ;
-fun bohrium_N : N ;
-fun delirium_N : N ;
-fun phoenicophorium_N : N ;
-fun thorium_N : N ;
-fun emporium_N : N ;
-fun sensorium_N : N ;
-fun aspersorium_N : N ;
-fun sudatorium_N : N ;
-fun crematorium_N : N ;
-fun sanatorium_N : N ;
-fun moratorium_N : N ;
-fun praetorium_N : N ;
-fun auditorium_N : N ;
-fun tentorium_N : N ;
-fun scriptorium_N : N ;
-fun haustorium_N : N ;
-fun atrium_N : N ;
-fun endometrium_N : N ;
-fun myometrium_N : N ;
-fun ununtrium_N : N ;
-fun epigastrium_N : N ;
-fun yttrium_N : N ;
-fun curium_N : N ;
-fun perineurium_N : N ;
-fun endoneurium_N : N ;
-fun anthurium_N : N ;
-fun tellurium_N : N ;
-fun gymnasium_N : N ;
-fun cesium_N : N ;
-fun magnesium_N : N ;
-fun symposium_N : N ;
-fun dysprosium_N : N ;
-fun hassium_N : N ;
-fun potassium_N : N ;
-fun indusium_N : N ;
-fun perimysium_N : N ;
-fun domatium_N : N ;
-fun darmstadtium_N : N ;
-fun podetium_N : N ;
-fun technetium_N : N ;
-fun lutetium_N : N ;
-fun tritium_N : N ;
-fun ununpentium_N : N ;
-fun dracontium_N : N ;
-fun strontium_N : N ;
-fun sclerotium_N : N ;
-fun nasturtium_N : N ;
-fun syncytium_N : N ;
-fun colloquium_N : N ;
-fun mendelevium_N : N ;
-fun quadrivium_N : N ;
-fun trivium_N : N ;
-fun effluvium_N : N ;
-fun ununhexium_N : N ;
-fun trapezium_N : N ;
-fun oakum_N : N ;
-fun bunkum_N : N ;
-fun alum_N : N ;
-fun tantalum_N : N ;
-fun hoodlum_N : N ;
-fun hilum_N : N ;
-fun cerebellum_N : N ;
-fun paleocerebellum_N : N ;
-fun flagellum_N : N ;
-fun vellum_N : N ;
-fun spirillum_N : N ;
-fun spathiphyllum_N : N ;
-fun epiphyllum_N : N ;
-fun doliolum_N : N ;
-fun plum_N : N ;
-fun peplum_N : N ;
-fun sugarplum_N : N ;
-fun slum_N : N ;
-fun pabulum_N : N ;
-fun acetabulum_N : N ;
-fun infundibulum_N : N ;
-fun speculum_N : N ;
-fun curriculum_N : N ;
-fun reticulum_N : N ;
-fun diverticulum_N : N ;
-fun operculum_N : N ;
-fun pendulum_N : N ;
-fun cingulum_N : N ;
-fun capitulum_N : N ;
-fun phylum_N : N ;
-fun subphylum_N : N ;
-fun superphylum_N : N ;
-fun asylum_N : N ;
-fun mum_N : N ;
-fun helianthemum_N : N ;
-fun xeranthemum_N : N ;
-fun chrysanthemum_N : N ;
-fun extremum_N : N ;
-fun minimum_N : N ;
-fun optimum_N : N ;
-fun maximum_N : N ;
-fun galbanum_N : N ;
-fun labdanum_N : N ;
-fun laudanum_N : N ;
-fun origanum_N : N ;
-fun lanthanum_N : N ;
-fun tympanum_N : N ;
-fun molybdenum_N : N ;
-fun duodenum_N : N ;
-fun plenum_N : N ;
-fun sangapenum_N : N ;
-fun sphagnum_N : N ;
-fun magnum_N : N ;
-fun interregnum_N : N ;
-fun lignum_N : N ;
-fun antirrhinum_N : N ;
-fun aluminum_N : N ;
-fun platinum_N : N ;
-fun mediastinum_N : N ;
-fun annum_N : N ;
-fun eriogonum_N : N ;
-fun sternum_N : N ;
-fun laburnum_N : N ;
-fun jejunum_N : N ;
-fun khoum_N : N ;
-fun wampum_N : N ;
-fun rum_N : N ;
-fun arum_N : N ;
-fun 'harum-scarum_N' : N ;
-fun cerebrum_N : N ;
-fun ambulacrum_N : N ;
-fun sacrum_N : N ;
-fun fulcrum_N : N ;
-fun scrum_N : N ;
-fun drum_N : N ;
-fun 'side-drum_N' : N ;
-fun 'snare-drum_N' : N ;
-fun kettledrum_N : N ;
-fun panjandrum_N : N ;
-fun conundrum_N : N ;
-fun eardrum_N : N ;
-fun serum_N : N ;
-fun antiserum_N : N ;
-fun thrum_N : N ;
-fun pyrethrum_N : N ;
-fun decorum_N : N ;
-fun indecorum_N : N ;
-fun forum_N : N ;
-fun variorum_N : N ;
-fun jorum_N : N ;
-fun quorum_N : N ;
-fun electrum_N : N ;
-fun plectrum_N : N ;
-fun chetrum_N : N ;
-fun ngultrum_N : N ;
-fun antrum_N : N ;
-fun tantrum_N : N ;
-fun centrum_N : N ;
-fun strum_N : N ;
-fun hippeastrum_N : N ;
-fun colostrum_N : N ;
-fun nostrum_N : N ;
-fun rostrum_N : N ;
-fun claustrum_N : N ;
-fun lustrum_N : N ;
-fun durum_N : N ;
-fun sum_N : N ;
-fun abomasum_N : N ;
-fun checksum_N : N ;
-fun gypsum_N : N ;
-fun dorsum_N : N ;
-fun odontoglossum_N : N ;
-fun possum_N : N ;
-fun opossum_N : N ;
-fun alyssum_N : N ;
-fun relatum_N : N ;
-fun petrolatum_N : N ;
-fun ultimatum_N : N ;
-fun designatum_N : N ;
-fun ageratum_N : N ;
-fun denotatum_N : N ;
-fun rectum_N : N ;
-fun dictum_N : N ;
-fun sanctum_N : N ;
-fun punctum_N : N ;
-fun acetum_N : N ;
-fun gnetum_N : N ;
-fun pinetum_N : N ;
-fun combretum_N : N ;
-fun arboretum_N : N ;
-fun mentum_N : N ;
-fun cementum_N : N ;
-fun omentum_N : N ;
-fun momentum_N : N ;
-fun tomentum_N : N ;
-fun indumentum_N : N ;
-fun scrotum_N : N ;
-fun factotum_N : N ;
-fun teetotum_N : N ;
-fun septum_N : N ;
-fun frustum_N : N ;
-fun sputum_N : N ;
-fun vacuum_N : N ;
-fun continuum_N : N ;
-fun menstruum_N : N ;
-fun bvm_N : N ;
-fun shawm_N : N ;
-fun sawm_N : N ;
-fun gym_N : N ;
-fun pertainym_N : N ;
-fun pseudonym_N : N ;
-fun holonym_N : N ;
-fun homonym_N : N ;
-fun synonym_N : N ;
-fun eponym_N : N ;
-fun troponym_N : N ;
-fun hyponym_N : N ;
-fun acronym_N : N ;
-fun meronym_N : N ;
-fun heteronym_N : N ;
-fun retronym_N : N ;
-fun metonym_N : N ;
-fun antonym_N : N ;
-fun hypernym_N : N ;
-fun empyrean_N : N ;
-fun sudden_N : N ;
-fun 'whipper-in_N' : N ;
-fun welkin_N : N ;
-fun 'dail eireann_N' : N ;
-fun 'looker-on_N' : N ;
-fun criterion_1_N : N ;
-fun 'sine qua non_N' : N ;
-fun phenomenon_N : N ;
-fun spermatozoon_N : N ;
-fun repairman_N : N ;
-fun man_N : N ;
-fun 'ad-man_N' : N ;
-fun 'he-man_N' : N ;
-fun 'medicine-man_N' : N ;
-fun 'g-man_N' : N ;
-fun 'muffin-man_N' : N ;
-fun 'con-man_N' : N ;
-fun 'barrow-man_N' : N ;
-fun 'property-man_N' : N ;
-fun seaman_N : N ;
-fun indiaman_N : N ;
-fun militiaman_N : N ;
-fun cameraman_N : N ;
-fun cabman_N : N ;
-fun headman_N : N ;
-fun madman_N : N ;
-fun roadman_N : N ;
-fun freedman_N : N ;
-fun husbandman_N : N ;
-fun sandman_N : N ;
-fun bondman_N : N ;
-fun soundman_N : N ;
-fun woodman_N : N ;
-fun placeman_N : N ;
-fun iceman_N : N ;
-fun policeman_N : N ;
-fun serviceman_N : N ;
-fun 'ex-serviceman_N' : N ;
-fun freeman_N : N ;
-fun committeeman_N : N ;
-fun baggageman_N : N ;
-fun liegeman_N : N ;
-fun orangeman_N : N ;
-fun brakeman_N : N ;
-fun stableman_N : N ;
-fun nobleman_N : N ;
-fun muscleman_N : N ;
-fun middleman_N : N ;
-fun rifleman_N : N ;
-fun gentleman_N : N ;
-fun cattleman_N : N ;
-fun lineman_N : N ;
-fun fireman_N : N ;
-fun wireman_N : N ;
-fun foreman_N : N ;
-fun longshoreman_N : N ;
-fun exciseman_N : N ;
-fun horseman_N : N ;
-fun houseman_N : N ;
-fun minuteman_N : N ;
-fun caveman_N : N ;
-fun gagman_N : N ;
-fun hangman_N : N ;
-fun wingman_N : N ;
-fun strongman_N : N ;
-fun frogman_N : N ;
-fun coachman_N : N ;
-fun sandwichman_N : N ;
-fun henchman_N : N ;
-fun frenchman_N : N ;
-fun churchman_N : N ;
-fun watchman_N : N ;
-fun 'night-watchman_N' : N ;
-fun pitchman_N : N ;
-fun switchman_N : N ;
-fun scotchman_N : N ;
-fun dutchman_N : N ;
-fun ploughman_N : N ;
-fun washman_N : N ;
-fun freshman_N : N ;
-fun englishman_N : N ;
-fun irishman_N : N ;
-fun welshman_N : N ;
-fun bushman_N : N ;
-fun northman_N : N ;
-fun milkman_N : N ;
-fun linkman_N : N ;
-fun workman_N : N ;
-fun signalman_N : N ;
-fun coalman_N : N ;
-fun mailman_N : N ;
-fun councilman_N : N ;
-fun oilman_N : N ;
-fun schoolman_N : N ;
-fun patrolman_N : N ;
-fun trainman_N : N ;
-fun gunman_N : N ;
-fun yeoman_N : N ;
-fun woman_N : N ;
-fun madwoman_N : N ;
-fun bondwoman_N : N ;
-fun policewoman_N : N ;
-fun committeewoman_N : N ;
-fun needlewoman_N : N ;
-fun gentlewoman_N : N ;
-fun forewoman_N : N ;
-fun horsewoman_N : N ;
-fun frenchwoman_N : N ;
-fun scotchwoman_N : N ;
-fun washwoman_N : N ;
-fun englishwoman_N : N ;
-fun irishwoman_N : N ;
-fun councilwoman_N : N ;
-fun beggarwoman_N : N ;
-fun charwoman_N : N ;
-fun washerwoman_N : N ;
-fun airwoman_N : N ;
-fun saleswoman_N : N ;
-fun stateswoman_N : N ;
-fun kinswoman_N : N ;
-fun oarswoman_N : N ;
-fun outdoorswoman_N : N ;
-fun congresswoman_N : N ;
-fun scotswoman_N : N ;
-fun selectwoman_N : N ;
-fun laundrywoman_N : N ;
-fun countrywoman_N : N ;
-fun vestrywoman_N : N ;
-fun chapman_N : N ;
-fun sheepman_N : N ;
-fun midshipman_N : N ;
-fun barman_N : N ;
-fun beggarman_N : N ;
-fun lumberman_N : N ;
-fun alderman_N : N ;
-fun trencherman_N : N ;
-fun washerman_N : N ;
-fun fisherman_N : N ;
-fun weatherman_N : N ;
-fun merman_N : N ;
-fun newspaperman_N : N ;
-fun superman_N : N ;
-fun waterman_N : N ;
-fun lobsterman_N : N ;
-fun airman_N : N ;
-fun chairman_N : N ;
-fun anchorman_N : N ;
-fun doorman_N : N ;
-fun motorman_N : N ;
-fun seedsman_N : N ;
-fun fieldsman_N : N ;
-fun bandsman_N : N ;
-fun trainbandsman_N : N ;
-fun landsman_N : N ;
-fun bondsman_N : N ;
-fun roundsman_N : N ;
-fun groundsman_N : N ;
-fun woodsman_N : N ;
-fun backwoodsman_N : N ;
-fun guardsman_N : N ;
-fun coastguardsman_N : N ;
-fun herdsman_N : N ;
-fun swordsman_N : N ;
-fun ombudsman_N : N ;
-fun tribesman_N : N ;
-fun tradesman_N : N ;
-fun sidesman_N : N ;
-fun plainclothesman_N : N ;
-fun spokesman_N : N ;
-fun dalesman_N : N ;
-fun salesman_N : N ;
-fun linesman_N : N ;
-fun statesman_N : N ;
-fun cragsman_N : N ;
-fun cracksman_N : N ;
-fun marksman_N : N ;
-fun helmsman_N : N ;
-fun clansman_N : N ;
-fun plainsman_N : N ;
-fun kinsman_N : N ;
-fun townsman_N : N ;
-fun oarsman_N : N ;
-fun steersman_N : N ;
-fun frontiersman_N : N ;
-fun outdoorsman_N : N ;
-fun lowerclassman_N : N ;
-fun chessman_N : N ;
-fun businessman_N : N ;
-fun congressman_N : N ;
-fun pressman_N : N ;
-fun batsman_N : N ;
-fun raftsman_N : N ;
-fun craftsman_N : N ;
-fun draftsman_N : N ;
-fun yachtsman_N : N ;
-fun draughtsman_N : N ;
-fun pointsman_N : N ;
-fun huntsman_N : N ;
-fun scotsman_N : N ;
-fun sportsman_N : N ;
-fun busman_N : N ;
-fun batman_N : N ;
-fun boatman_N : N ;
-fun selectman_N : N ;
-fun aircraftman_N : N ;
-fun liftman_N : N ;
-fun pitman_N : N ;
-fun merchantman_N : N ;
-fun footman_N : N ;
-fun potman_N : N ;
-fun harvestman_N : N ;
-fun postman_N : N ;
-fun dustman_N : N ;
-fun lawman_N : N ;
-fun bowman_N : N ;
-fun longbowman_N : N ;
-fun cowman_N : N ;
-fun showman_N : N ;
-fun plowman_N : N ;
-fun snowman_N : N ;
-fun layman_N : N ;
-fun highwayman_N : N ;
-fun railwayman_N : N ;
-fun handyman_N : N ;
-fun bogeyman_N : N ;
-fun journeyman_N : N ;
-fun clergyman_N : N ;
-fun tallyman_N : N ;
-fun laundryman_N : N ;
-fun nurseryman_N : N ;
-fun liveryman_N : N ;
-fun deliveryman_N : N ;
-fun dairyman_N : N ;
-fun cavalryman_N : N ;
-fun quarryman_N : N ;
-fun ferryman_N : N ;
-fun poultryman_N : N ;
-fun infantryman_N : N ;
-fun pantryman_N : N ;
-fun countryman_N : N ;
-fun vestryman_N : N ;
-fun juryman_N : N ;
-fun yen_N : N ;
-fun beduin_N : N ;
-fun bedouin_N : N ;
-fun 'hanger-on_N' : N ;
-fun salmon_N : N ;
-fun 'rock-salmon_N' : N ;
-fun bison_N : N ;
-fun ban_N : N ;
-fun turban_N : N ;
-fun cuban_N : N ;
-fun can_N : N ;
-fun 'garbage-can_N' : N ;
-fun 'watering-can_N' : N ;
-fun 'ash-can_N' : N ;
-fun osteostracan_N : N ;
-fun heterostracan_N : N ;
-fun moroccan_N : N ;
-fun pecan_N : N ;
-fun ashcan_N : N ;
-fun jamaican_N : N ;
-fun mozambican_N : N ;
-fun barbican_N : N ;
-fun publican_N : N ;
-fun republican_N : N ;
-fun pelican_N : N ;
-fun anglican_N : N ;
-fun pemmican_N : N ;
-fun dominican_N : N ;
-fun 'costa rican_N' : N ;
-fun American_N : N ;
-fun 'Afro-American_N' : N ;
-fun African_N : N ;
-fun vatican_N : N ;
-fun mexican_N : N ;
-fun oilcan_N : N ;
-fun cancan_N : N ;
-fun scan_N : N ;
-fun madagascan_N : N ;
-fun franciscan_N : N ;
-fun toucan_N : N ;
-fun ramadan_N : N ;
-fun muhammadan_N : N ;
-fun mohammedan_N : N ;
-fun sedan_N : N ;
-fun harridan_N : N ;
-fun ugandan_N : N ;
-fun rwandan_N : N ;
-fun bermudan_N : N ;
-fun paean_N : N ;
-fun bean_N : N ;
-fun 'cacao-bean_N' : N ;
-fun 'kidney-bean_N' : N ;
-fun butterbean_N : N ;
-fun cetacean_N : N ;
-fun testacean_N : N ;
-fun crustacean_N : N ;
-fun larvacean_N : N ;
-fun ocean_N : N ;
-fun dean_N : N ;
-fun proboscidean_N : N ;
-fun gean_N : N ;
-fun kampuchean_N : N ;
-fun jean_N : N ;
-fun lean_N : N ;
-fun clean_N : N ;
-fun 'spring-clean_N' : N ;
-fun chilean_N : N ;
-fun tyrolean_N : N ;
-fun mean_N : N ;
-fun platyctenean_N : N ;
-fun guinean_N : N ;
-fun European_N : N ;
-fun zairean_N : N ;
-fun salvadorean_N : N ;
-fun korean_N : N ;
-fun Singaporean_N : N ;
-fun eritrean_N : N ;
-fun epicurean_N : N ;
-fun Zimbabwean_N : N ;
-fun fan_N : N ;
-fun lagan_N : N ;
-fun balagan_N : N ;
-fun pagan_N : N ;
-fun suffragan_N : N ;
-fun vegan_N : N ;
-fun balbriggan_N : N ;
-fun toboggan_N : N ;
-fun cardigan_N : N ;
-fun hooligan_N : N ;
-fun ptarmigan_N : N ;
-fun longan_N : N ;
-fun tongan_N : N ;
-fun hogan_N : N ;
-fun slogan_N : N ;
-fun brogan_N : N ;
-fun organ_N : N ;
-fun 'hand-organ_N' : N ;
-fun 'pipe-organ_N' : N ;
-fun 'sense-organ_N' : N ;
-fun 'mouth-organ_N' : N ;
-fun ortygan_N : N ;
-fun sabahan_N : N ;
-fun yataghan_N : N ;
+fun 'd.o.a._A' : A ;
+fun 'i.e._Adv' : Adv ;
+fun 'ibid._Adv' : Adv ;
+fun 'vs._Prep' : Prep ;
+fun Afghan_A : A ;
fun Afghan_N : N ;
-fun khan_N : N ;
-fun astrakhan_N : N ;
-fun tryptophan_N : N ;
-fun orphan_N : N ;
-fun levallorphan_N : N ;
-fun leviathan_N : N ;
-fun elizabethan_N : N ;
-fun ghanaian_N : N ;
-fun fabian_N : N ;
-fun Arabian_N : N ;
-fun 'saudi arabian_N' : N ;
-fun amphibian_N : N ;
-fun Namibian_N : N ;
-fun gambian_N : N ;
-fun zambian_N : N ;
-fun colombian_N : N ;
-fun lesbian_N : N ;
-fun magician_N : N ;
-fun logician_N : N ;
-fun academician_N : N ;
-fun technician_N : N ;
-fun clinician_N : N ;
-fun rhetorician_N : N ;
-fun pediatrician_N : N ;
-fun geriatrician_N : N ;
-fun patrician_N : N ;
-fun electrician_N : N ;
-fun econometrician_N : N ;
-fun trigonometrician_N : N ;
-fun obstetrician_N : N ;
-fun musician_N : N ;
-fun physician_N : N ;
-fun mathematician_N : N ;
-fun practician_N : N ;
-fun tactician_N : N ;
-fun dialectician_N : N ;
-fun esthetician_N : N ;
-fun dietician_N : N ;
-fun arithmetician_N : N ;
-fun cosmetician_N : N ;
-fun phonetician_N : N ;
-fun theoretician_N : N ;
-fun politician_N : N ;
-fun optician_N : N ;
-fun mortician_N : N ;
-fun statistician_N : N ;
-fun diagnostician_N : N ;
-fun acoustician_N : N ;
-fun beautician_N : N ;
-fun confucian_N : N ;
-fun barbadian_N : N ;
-fun arcadian_N : N ;
-fun trinidadian_N : N ;
-fun chadian_N : N ;
-fun Canadian_N : N ;
-fun grenadian_N : N ;
-fun radian_N : N ;
-fun steradian_N : N ;
-fun milliradian_N : N ;
-fun microradian_N : N ;
-fun tragedian_N : N ;
-fun median_N : N ;
-fun comedian_N : N ;
-fun ascidian_N : N ;
-fun meridian_N : N ;
-fun sarcosporidian_N : N ;
-fun haplosporidian_N : N ;
-fun haemosporidian_N : N ;
-fun microsporidian_N : N ;
-fun myxosporidian_N : N ;
-fun obsidian_N : N ;
-fun actinomyxidian_N : N ;
-fun Indian_N : N ;
-fun 'anglo-indian_N' : N ;
-fun burundian_N : N ;
-fun cambodian_N : N ;
-fun custodian_N : N ;
-fun guardian_N : N ;
-fun edwardian_N : N ;
-fun plebeian_N : N ;
-fun bruneian_N : N ;
-fun ruffian_N : N ;
-fun collegian_N : N ;
-fun norwegian_N : N ;
-fun glaswegian_N : N ;
-fun belgian_N : N ;
-fun theologian_N : N ;
-fun georgian_N : N ;
-fun crossopterygian_N : N ;
-fun ornithischian_N : N ;
-fun saurischian_N : N ;
-fun corinthian_N : N ;
-fun fijian_N : N ;
-fun Czechoslovakian_N : N ;
-fun sarawakian_N : N ;
-fun sesquipedalian_N : N ;
-fun malian_N : N ;
-fun Somalian_N : N ;
-fun episcopalian_N : N ;
-fun australian_N : N ;
-fun Italian_N : N ;
-fun liverpudlian_N : N ;
-fun carnelian_N : N ;
-fun cornelian_N : N ;
-fun caecilian_N : N ;
-fun sicilian_N : N ;
-fun reptilian_N : N ;
-fun civilian_N : N ;
-fun Brazilian_N : N ;
-fun vaudevillian_N : N ;
-fun mongolian_N : N ;
-fun bahamian_N : N ;
-fun bohemian_N : N ;
-fun simian_N : N ;
-fun prosimian_N : N ;
-fun antinomian_N : N ;
-fun banian_N : N ;
+fun Afghani_N : N ;
+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 Albanian_A : A ;
fun Albanian_N : N ;
-fun Jordanian_N : N ;
-fun panamanian_N : N ;
-fun Romanian_N : N ;
-fun Iranian_N : N ;
-fun mauritanian_N : N ;
-fun tanzanian_N : N ;
-fun athenian_N : N ;
+fun American_A : A ;
+fun American_N : N ;
+fun April_N : N ;
+fun Arab_N : N ;
+fun Arabian_A : A ;
+fun Arabian_N : N ;
+fun Arabic_A : A ;
+fun Arabic_N : N ;
fun Armenian_N : N ;
-fun slovenian_N : N ;
-fun peridinian_N : N ;
-fun sarcodinian_N : N ;
-fun argentinian_N : N ;
-fun palestinian_N : N ;
-fun Macedonian_N : N ;
-fun 'sierra leonian_N' : N ;
-fun tobagonian_N : N ;
-fun gorgonian_N : N ;
-fun chelonian_N : N ;
-fun cameroonian_N : N ;
-fun newtonian_N : N ;
-fun oxonian_N : N ;
-fun californian_N : N ;
-fun mancunian_N : N ;
-fun olympian_N : N ;
-fun ethiopian_N : N ;
-fun thespian_N : N ;
-fun barbarian_N : N ;
-fun abecedarian_N : N ;
-fun Bulgarian_N : N ;
-fun vulgarian_N : N ;
-fun Hungarian_N : N ;
-fun radiolarian_N : N ;
-fun sertularian_N : N ;
-fun grammarian_N : N ;
-fun planarian_N : N ;
-fun nonagenarian_N : N ;
-fun septuagenarian_N : N ;
-fun sexagenarian_N : N ;
-fun octogenarian_N : N ;
-fun millenarian_N : N ;
-fun centenarian_N : N ;
-fun valetudinarian_N : N ;
-fun latitudinarian_N : N ;
-fun platitudinarian_N : N ;
-fun disciplinarian_N : N ;
-fun seminarian_N : N ;
-fun veterinarian_N : N ;
-fun librarian_N : N ;
-fun contrarian_N : N ;
-fun sabbatarian_N : N ;
-fun sectarian_N : N ;
-fun vegetarian_N : N ;
-fun proletarian_N : N ;
-fun egalitarian_N : N ;
-fun totalitarian_N : N ;
-fun equalitarian_N : N ;
-fun utilitarian_N : N ;
-fun humanitarian_N : N ;
-fun unitarian_N : N ;
-fun authoritarian_N : N ;
-fun necessitarian_N : N ;
-fun gibraltarian_N : N ;
-fun parliamentarian_N : N ;
-fun rotarian_N : N ;
-fun libertarian_N : N ;
-fun antiquarian_N : N ;
-fun liberian_N : N ;
-fun nigerian_N : N ;
-fun algerian_N : N ;
-fun megatherian_N : N ;
-fun metatherian_N : N ;
-fun prototherian_N : N ;
-fun valerian_N : N ;
-fun presbyterian_N : N ;
-fun ecuadorian_N : N ;
-fun infusorian_N : N ;
-fun salutatorian_N : N ;
-fun valedictorian_N : N ;
-fun victorian_N : N ;
-fun historian_N : N ;
-fun lancastrian_N : N ;
-fun pedestrian_N : N ;
-fun equestrian_N : N ;
-fun austrian_N : N ;
-fun saurian_N : N ;
-fun durian_N : N ;
-fun tellurian_N : N ;
-fun Syrian_N : N ;
+fun Asian_A : A ;
fun Asian_N : N ;
-fun caucasian_N : N ;
-fun eurasian_N : N ;
-fun indonesian_N : N ;
-fun tunisian_N : N ;
-fun parisian_N : N ;
-fun ceratopsian_N : N ;
-fun Persian_N : N ;
-fun hessian_N : N ;
-fun Russian_N : N ;
-fun Prussian_N : N ;
-fun malaysian_N : N ;
-fun dalmatian_N : N ;
-fun montserratian_N : N ;
-fun alsatian_N : N ;
-fun haitian_N : N ;
-fun tahitian_N : N ;
-fun mauritian_N : N ;
-fun dietitian_N : N ;
-fun gentian_N : N ;
-fun laotian_N : N ;
-fun egyptian_N : N ;
-fun martian_N : N ;
-fun christian_N : N ;
-fun fustian_N : N ;
-fun djiboutian_N : N ;
-fun lilliputian_N : N ;
-fun shavian_N : N ;
-fun yugoslavian_N : N ;
-fun Scandinavian_N : N ;
-fun bolivian_N : N ;
-fun antediluvian_N : N ;
-fun postdiluvian_N : N ;
-fun peruvian_N : N ;
-fun malawian_N : N ;
-fun trojan_N : N ;
-fun 'sri lankan_N' : N ;
-fun acanthocephalan_N : N ;
-fun holocephalan_N : N ;
-fun melphalan_N : N ;
-fun guatemalan_N : N ;
-fun catalan_N : N ;
-fun clan_N : N ;
-fun gamelan_N : N ;
-fun venezuelan_N : N ;
-fun flan_N : N ;
-fun raglan_N : N ;
-fun anguillan_N : N ;
-fun collembolan_N : N ;
-fun angolan_N : N ;
-fun solan_N : N ;
-fun ortolan_N : N ;
-fun plan_N : N ;
-fun 'ground-plan_N' : N ;
-fun courlan_N : N ;
-fun élan_N : N ;
-fun shaman_N : N ;
-fun yardman_N : N ;
-fun fugleman_N : N ;
-fun posseman_N : N ;
-fun bagman_N : N ;
-fun swagman_N : N ;
-fun brahman_N : N ;
-fun caiman_N : N ;
-fun liman_N : N ;
-fun ceriman_N : N ;
-fun stockman_N : N ;
-fun pullman_N : N ;
-fun dolman_N : N ;
-fun dragoman_N : N ;
-fun roman_N : N ;
-fun soman_N : N ;
-fun ottoman_N : N ;
-fun spokeswoman_N : N ;
-fun frontierswoman_N : N ;
-fun businesswoman_N : N ;
-fun newswoman_N : N ;
-fun assemblywoman_N : N ;
+fun August_N : N ;
+fun Brazilian_A : A ;
+fun Brazilian_N : N ;
+fun British_A : A ;
+fun Britisher_N : N ;
+fun Bulgarian_A : A ;
+fun Bulgarian_N : N ;
+fun Canadian_A : A ;
+fun Canadian_N : N ;
+fun Carmelite_A : A ;
+fun Carmelite_N : N ;
+fun Catholic_A : A ;
+fun Catholic_N : N ;
+fun Champagne_N : N ;
+fun Chinese_A : A ;
+fun Chinese_N : N ;
+fun Christianity_N : N ;
+fun Christmas_N : N ;
+fun Czech_A : A ;
+fun Czech_N : N ;
+fun Czechoslovak_N : N ;
+fun Czechoslovakian_A : A ;
+fun Czechoslovakian_N : N ;
+fun DJ_N : N ;
+fun DNA_N : N ;
+fun Danish_A : A ;
+fun Danish_N : N ;
+fun December_N : N ;
+fun Dutch_A : A ;
+fun Dutch_N : N ;
+fun East_A : A ;
+fun East_Adv : Adv ;
+fun East_N : N ;
+fun Eastern_A : A ;
+fun English_A : A ;
+fun English_N : N ;
+fun European_A : A ;
+fun European_N : N ;
+fun February_N : N ;
+fun Finnish_A : A ;
+fun Finnish_N : N ;
+fun French_A : A ;
+fun Friday_N : N ;
+fun GCSE_N : N ;
+fun GNP_N : N ;
+fun German_A : A ;
fun German_N : N ;
-fun timberman_N : N ;
-fun lighterman_N : N ;
-fun letterman_N : N ;
-fun norman_N : N ;
-fun gasman_N : N ;
-fun beadsman_N : N ;
-fun headsman_N : N ;
-fun talisman_N : N ;
-fun groomsman_N : N ;
-fun aircraftsman_N : N ;
-fun human_N : N ;
-fun crewman_N : N ;
-fun aircrewman_N : N ;
-fun cayman_N : N ;
-fun assemblyman_N : N ;
-fun artilleryman_N : N ;
-fun everyman_N : N ;
-fun nan_N : N ;
-fun finnan_N : N ;
-fun koan_N : N ;
-fun loan_N : N ;
-fun moan_N : N ;
-fun samoan_N : N ;
-fun roan_N : N ;
-fun groan_N : N ;
-fun metazoan_N : N ;
-fun scyphozoan_N : N ;
-fun anthozoan_N : N ;
-fun heliozoan_N : N ;
-fun hydrozoan_N : N ;
-fun sporozoan_N : N ;
-fun protozoan_N : N ;
-fun leucocytozoan_N : N ;
-fun bryozoan_N : N ;
-fun pan_N : N ;
-fun 'warming-pan_N' : N ;
-fun 'dripping-pan_N' : N ;
-fun 'frying-pan_N' : N ;
-fun 'ash-pan_N' : N ;
-fun 'fry-pan_N' : N ;
-fun 'patty-pan_N' : N ;
-fun japan_N : N ;
-fun bedpan_N : N ;
-fun skidpan_N : N ;
-fun saucepan_N : N ;
-fun trepan_N : N ;
-fun flunitrazepan_N : N ;
-fun dishpan_N : N ;
-fun taipan_N : N ;
-fun marzipan_N : N ;
-fun jampan_N : N ;
-fun sampan_N : N ;
-fun tragopan_N : N ;
-fun tarpan_N : N ;
-fun kirpan_N : N ;
-fun span_N : N ;
-fun 'life-span_N' : N ;
-fun wingspan_N : N ;
-fun saltpan_N : N ;
-fun dustpan_N : N ;
-fun 'also-ran_N' : N ;
-fun catamaran_N : N ;
-fun trimaran_N : N ;
-fun saran_N : N ;
-fun bran_N : N ;
-fun cran_N : N ;
-fun lutheran_N : N ;
-fun moneran_N : N ;
-fun veteran_N : N ;
-fun mecopteran_N : N ;
-fun onychophoran_N : N ;
-fun koran_N : N ;
-fun andorran_N : N ;
-fun sporran_N : N ;
-fun sumatran_N : N ;
-fun pesantran_N : N ;
-fun honduran_N : N ;
-fun furan_N : N ;
-fun nitrofuran_N : N ;
-fun benzofuran_N : N ;
-fun proturan_N : N ;
-fun brachyuran_N : N ;
-fun pulasan_N : N ;
-fun diocesan_N : N ;
-fun parmesan_N : N ;
-fun courtesan_N : N ;
-fun artisan_N : N ;
-fun partisan_N : N ;
-fun nonpartisan_N : N ;
-fun tan_N : N ;
-fun charlatan_N : N ;
-fun ratan_N : N ;
-fun satan_N : N ;
-fun Tibetan_N : N ;
-fun caftan_N : N ;
-fun shaitan_N : N ;
-fun neapolitan_N : N ;
-fun cosmopolitan_N : N ;
-fun metropolitan_N : N ;
-fun samaritan_N : N ;
-fun puritan_N : N ;
-fun titan_N : N ;
-fun anatotitan_N : N ;
-fun sultan_N : N ;
-fun fantan_N : N ;
-fun constantan_N : N ;
-fun suntan_N : N ;
-fun spartan_N : N ;
-fun valsartan_N : N ;
-fun tartan_N : N ;
-fun quartan_N : N ;
-fun sacristan_N : N ;
-fun capstan_N : N ;
-fun harmattan_N : N ;
-fun rattan_N : N ;
-fun 'orang-utan_N' : N ;
-fun rambutan_N : N ;
-fun orangutan_N : N ;
-fun 'orang-outan_N' : N ;
-fun guan_N : N ;
-fun nicaraguan_N : N ;
-fun taguan_N : N ;
-fun antiguan_N : N ;
-fun papuan_N : N ;
-fun nauruan_N : N ;
-fun yuan_N : N ;
-fun van_N : N ;
-fun 'luggage-van_N' : N ;
-fun caravan_N : N ;
-fun divan_N : N ;
-fun minivan_N : N ;
-fun sylvan_N : N ;
-fun cordovan_N : N ;
-fun jawan_N : N ;
-fun rowan_N : N ;
-fun swan_N : N ;
-fun texan_N : N ;
-fun malayan_N : N ;
-fun paraguayan_N : N ;
-fun uruguayan_N : N ;
-fun libyan_N : N ;
-fun cyan_N : N ;
-fun wesleyan_N : N ;
-fun banyan_N : N ;
-fun kenyan_N : N ;
-fun minyan_N : N ;
-fun aryan_N : N ;
-fun en_N : N ;
-fun hallowe'en_N : N ;
-fun ben_N : N ;
-fun saracen_N : N ;
-fun den_N : N ;
-fun 'gambling-den_N' : N ;
-fun 'opium-den_N' : N ;
-fun menhaden_N : N ;
-fun midden_N : N ;
-fun pudden_N : N ;
-fun maiden_N : N ;
-fun gulden_N : N ;
-fun linden_N : N ;
-fun wiesenboden_N : N ;
-fun garden_N : N ;
-fun 'tea-garden_N' : N ;
-fun 'roof-garden_N' : N ;
-fun 'rock-garden_N' : N ;
-fun 'hop-garden_N' : N ;
-fun 'market-garden_N' : N ;
-fun warden_N : N ;
-fun churchwarden_N : N ;
-fun burden_N : N ;
-fun overburden_N : N ;
-fun hoyden_N : N ;
-fun 'might-have-been_N' : N ;
-fun 'has-been_N' : N ;
-fun shebeen_N : N ;
-fun dudeen_N : N ;
-fun sheen_N : N ;
-fun keen_N : N ;
-fun palankeen_N : N ;
-fun nankeen_N : N ;
-fun colleen_N : N ;
-fun spleen_N : N ;
-fun peen_N : N ;
-fun screen_N : N ;
-fun 'smoke-screen_N' : N ;
-fun windscreen_N : N ;
-fun silkscreen_N : N ;
-fun sunscreen_N : N ;
-fun green_N : N ;
-fun 'pea-green_N' : N ;
-fun 'sea-green_N' : N ;
-fun 'sage-green_N' : N ;
-fun 'bowling-green_N' : N ;
-fun 'putting-green_N' : N ;
-fun tendergreen_N : N ;
-fun wintergreen_N : N ;
-fun evergreen_N : N ;
-fun moreen_N : N ;
-fun tureen_N : N ;
-fun unseen_N : N ;
-fun lateen_N : N ;
-fun sateen_N : N ;
-fun preteen_N : N ;
-fun velveteen_N : N ;
-fun canteen_N : N ;
-fun poteen_N : N ;
-fun mangosteen_N : N ;
-fun queen_N : N ;
-fun 'go-between_N' : N ;
-fun fedayeen_N : N ;
-fun fen_N : N ;
-fun flurbiprofen_N : N ;
-fun fenoprofen_N : N ;
-fun ketoprofen_N : N ;
-fun ibuprofen_N : N ;
-fun gen_N : N ;
-fun collagen_N : N ;
-fun mutagen_N : N ;
-fun antigen_N : N ;
-fun glycogen_N : N ;
-fun pathogen_N : N ;
-fun halogen_N : N ;
-fun chromogen_N : N ;
-fun methanogen_N : N ;
-fun cyanogen_N : N ;
-fun carcinogen_N : N ;
-fun hallucinogen_N : N ;
-fun urobilinogen_N : N ;
-fun plasminogen_N : N ;
-fun fibrinogen_N : N ;
-fun pepsinogen_N : N ;
-fun trypsinogen_N : N ;
-fun agglutinogen_N : N ;
-fun isoagglutinogen_N : N ;
-fun immunogen_N : N ;
-fun acrogen_N : N ;
-fun androgen_N : N ;
-fun hydrogen_N : N ;
-fun nitrogen_N : N ;
-fun goitrogen_N : N ;
-fun estrogen_N : N ;
-fun pyrogen_N : N ;
-fun teratogen_N : N ;
-fun lactogen_N : N ;
-fun mitogen_N : N ;
-fun cryogen_N : N ;
-fun allergen_N : N ;
-fun morgen_N : N ;
-fun roentgen_N : N ;
-fun röntgen_N : N ;
-fun oxygen_N : N ;
-fun hen_N : N ;
-fun 'brood-hen_N' : N ;
-fun peahen_N : N ;
-fun lichen_N : N ;
-fun ascolichen_N : N ;
-fun basidiolichen_N : N ;
-fun groschen_N : N ;
-fun kitchen_N : N ;
-fun 'soup-kitchen_N' : N ;
-fun pfannkuchen_N : N ;
-fun acetaminophen_N : N ;
-fun hyphen_N : N ;
-fun waterhen_N : N ;
-fun moorhen_N : N ;
-fun then_N : N ;
-fun heathen_N : N ;
-fun burthen_N : N ;
-fun greyhen_N : N ;
-fun lien_N : N ;
-fun alien_N : N ;
-fun mien_N : N ;
-fun nigerien_N : N ;
-fun ken_N : N ;
-fun bracken_N : N ;
-fun chicken_N : N ;
-fun token_N : N ;
-fun 'love-token_N' : N ;
-fun magdalen_N : N ;
-fun glen_N : N ;
-fun pollen_N : N ;
-fun cyclamen_N : N ;
-fun flamen_N : N ;
-fun foramen_N : N ;
-fun stamen_N : N ;
-fun putamen_N : N ;
-fun examen_N : N ;
-fun semen_N : N ;
-fun specimen_N : N ;
-fun regimen_N : N ;
-fun dolmen_N : N ;
-fun omen_N : N ;
-fun abdomen_N : N ;
-fun praenomen_N : N ;
-fun agnomen_N : N ;
-fun cognomen_N : N ;
-fun albumen_N : N ;
-fun acumen_N : N ;
-fun catechumen_N : N ;
-fun lumen_N : N ;
-fun numen_N : N ;
-fun rumen_N : N ;
-fun cerumen_N : N ;
-fun bitumen_N : N ;
-fun hymen_N : N ;
-fun linen_N : N ;
-fun 'table-linen_N' : N ;
-fun pen_N : N ;
-fun 'fountain-pen_N' : N ;
-fun 'ballpoint-pen_N' : N ;
-fun ballpen_N : N ;
-fun bullpen_N : N ;
-fun open_N : N ;
-fun aspen_N : N ;
-fun playpen_N : N ;
-fun bren_N : N ;
-fun brethren_N : N ;
-fun siren_N : N ;
-fun barren_N : N ;
-fun warren_N : N ;
-fun 'rabbit-warren_N' : N ;
-fun wren_N : N ;
-fun sen_N : N ;
-fun spiegeleisen_N : N ;
-fun greisen_N : N ;
-fun samisen_N : N ;
-fun bunsen_N : N ;
-fun chosen_N : N ;
-fun lederhosen_N : N ;
-fun delicatessen_N : N ;
-fun drusen_N : N ;
-fun platen_N : N ;
-fun sauerbraten_N : N ;
-fun kindergarten_N : N ;
-fun marten_N : N ;
-fun tungsten_N : N ;
-fun batten_N : N ;
-fun latten_N : N ;
-fun patten_N : N ;
-fun kitten_N : N ;
-fun mitten_N : N ;
-fun gluten_N : N ;
-fun heaven_N : N ;
-fun leaven_N : N ;
-fun haven_N : N ;
-fun raven_N : N ;
-fun craven_N : N ;
-fun even_N : N ;
-fun given_N : N ;
-fun oven_N : N ;
-fun 'gas-oven_N' : N ;
-fun coven_N : N ;
-fun sloven_N : N ;
-fun wen_N : N ;
-fun woodwaxen_N : N ;
-fun vixen_N : N ;
-fun naproxen_N : N ;
-fun doyen_N : N ;
-fun zen_N : N ;
-fun mizen_N : N ;
-fun denizen_N : N ;
-fun citizen_N : N ;
-fun dozen_N : N ;
-fun mizzen_N : N ;
-fun campaign_N : N ;
-fun reign_N : N ;
-fun sovereign_N : N ;
-fun coign_N : N ;
-fun sign_N : N ;
-fun design_N : N ;
-fun ensign_N : N ;
-fun countersign_N : N ;
-fun autobahn_N : N ;
-fun fohn_N : N ;
-fun demijohn_N : N ;
-fun in_N : N ;
-fun 'lead-in_N' : N ;
-fun 'stand-in_N' : N ;
-fun 'trade-in_N' : N ;
-fun 'lie-in_N' : N ;
-fun 'phone-in_N' : N ;
-fun 'cave-in_N' : N ;
-fun 'drive-in_N' : N ;
-fun 'teach-in_N' : N ;
-fun 'break-in_N' : N ;
-fun 'tuck-in_N' : N ;
-fun 'work-in_N' : N ;
-fun 'pull-in_N' : N ;
-fun 'sit-in_N' : N ;
-fun 'throw-in_N' : N ;
-fun marocain_N : N ;
-fun disdain_N : N ;
-fun gain_N : N ;
-fun bargain_N : N ;
-fun chain_N : N ;
-fun 'watch-chain_N' : N ;
-fun blain_N : N ;
-fun chilblain_N : N ;
-fun porcelain_N : N ;
-fun villain_N : N ;
-fun plain_N : N ;
-fun chaplain_N : N ;
-fun floodplain_N : N ;
-fun peneplain_N : N ;
-fun chamberlain_N : N ;
-fun slain_N : N ;
-fun main_N : N ;
-fun 'water-main_N' : N ;
-fun legerdemain_N : N ;
-fun domain_N : N ;
-fun pearmain_N : N ;
-fun mortmain_N : N ;
-fun pain_N : N ;
-fun papain_N : N ;
-fun rain_N : N ;
-fun brain_N : N ;
-fun midbrain_N : N ;
-fun hindbrain_N : N ;
-fun forebrain_N : N ;
-fun scatterbrain_N : N ;
-fun drain_N : N ;
-fun suzerain_N : N ;
-fun refrain_N : N ;
-fun grain_N : N ;
-fun grosgrain_N : N ;
-fun sprain_N : N ;
-fun terrain_N : N ;
-fun murrain_N : N ;
-fun train_N : N ;
-fun 'mail-train_N' : N ;
-fun 'liner-train_N' : N ;
-fun 'boat-train_N' : N ;
-fun 'freight-train_N' : N ;
-fun quatrain_N : N ;
-fun strain_N : N ;
-fun eyestrain_N : N ;
-fun overstrain_N : N ;
-fun chieftain_N : N ;
-fun plantain_N : N ;
-fun fountain_N : N ;
-fun 'soda-fountain_N' : N ;
-fun 'drinking-fountain_N' : N ;
-fun mountain_N : N ;
-fun chevrotain_N : N ;
-fun captain_N : N ;
-fun 'flag-captain_N' : N ;
-fun curtain_N : N ;
-fun 'drop-curtain_N' : N ;
-fun 'safety-curtain_N' : N ;
-fun stain_N : N ;
-fun bloodstain_N : N ;
-fun counterstain_N : N ;
-fun wain_N : N ;
-fun swain_N : N ;
-fun boatswain_N : N ;
-fun coxswain_N : N ;
-fun twain_N : N ;
-fun bin_N : N ;
-fun 'ash-bin_N' : N ;
-fun cabin_N : N ;
-fun 'log-cabin_N' : N ;
-fun cannabin_N : N ;
-fun sabin_N : N ;
-fun bobbin_N : N ;
-fun dobbin_N : N ;
-fun dubbin_N : N ;
-fun nubbin_N : N ;
-fun wastebin_N : N ;
-fun coalbin_N : N ;
-fun mombin_N : N ;
-fun thrombin_N : N ;
-fun prothrombin_N : N ;
-fun jacobin_N : N ;
-fun globin_N : N ;
-fun haemoglobin_N : N ;
-fun hemoglobin_N : N ;
-fun oxyhemoglobin_N : N ;
-fun haptoglobin_N : N ;
-fun myoglobin_N : N ;
-fun robin_N : N ;
-fun litterbin_N : N ;
-fun dustbin_N : N ;
-fun bilirubin_N : N ;
-fun psilocybin_N : N ;
-fun loonybin_N : N ;
-fun indomethacin_N : N ;
-fun niacin_N : N ;
-fun characin_N : N ;
-fun bacitracin_N : N ;
-fun ciprofloxacin_N : N ;
-fun capsaicin_N : N ;
-fun doxorubicin_N : N ;
-fun gentamicin_N : N ;
-fun ricin_N : N ;
-fun amphotericin_N : N ;
-fun tyrothricin_N : N ;
-fun streptothricin_N : N ;
-fun novobiocin_N : N ;
-fun oxytocin_N : N ;
-fun mucin_N : N ;
-fun cephaloglycin_N : N ;
-fun kanamycin_N : N ;
-fun tobramycin_N : N ;
-fun mithramycin_N : N ;
-fun antimycin_N : N ;
-fun carbomycin_N : N ;
-fun vancomycin_N : N ;
-fun lincomycin_N : N ;
-fun mycomycin_N : N ;
-fun neomycin_N : N ;
-fun viomycin_N : N ;
-fun actinomycin_N : N ;
-fun spectinomycin_N : N ;
-fun azithromycin_N : N ;
-fun erythromycin_N : N ;
-fun mitomycin_N : N ;
-fun streptomycin_N : N ;
-fun dihydrostreptomycin_N : N ;
-fun din_N : N ;
-fun paladin_N : N ;
-fun gramicidin_N : N ;
-fun mujahidin_N : N ;
-fun acetophenetidin_N : N ;
-fun prostaglandin_N : N ;
-fun verdin_N : N ;
-fun fluorescein_N : N ;
-fun skein_N : N ;
-fun phenolphthalein_N : N ;
-fun villein_N : N ;
-fun mullein_N : N ;
-fun triolein_N : N ;
-fun terreplein_N : N ;
-fun fräulein_N : N ;
-fun rein_N : N ;
-fun 'leading-rein_N' : N ;
-fun turnverein_N : N ;
-fun casein_N : N ;
-fun protein_N : N ;
-fun glycoprotein_N : N ;
-fun iodoprotein_N : N ;
-fun nucleoprotein_N : N ;
-fun phosphoprotein_N : N ;
-fun hemoprotein_N : N ;
-fun lipoprotein_N : N ;
-fun scleroprotein_N : N ;
-fun thyroprotein_N : N ;
-fun fetoprotein_N : N ;
-fun vein_N : N ;
-fun fin_N : N ;
-fun threadfin_N : N ;
-fun bluefin_N : N ;
-fun paraffin_N : N ;
-fun griffin_N : N ;
-fun boffin_N : N ;
-fun coffin_N : N ;
-fun muffin_N : N ;
-fun ragamuffin_N : N ;
-fun puffin_N : N ;
-fun bowfin_N : N ;
-fun yellowfin_N : N ;
-fun gin_N : N ;
-fun 'sloe-gin_N' : N ;
-fun reagin_N : N ;
-fun pidgin_N : N ;
-fun biggin_N : N ;
-fun noggin_N : N ;
-fun origin_N : N ;
-fun algin_N : N ;
-fun margin_N : N ;
-fun 'profit-margin_N' : N ;
-fun virgin_N : N ;
-fun hin_N : N ;
-fun chin_N : N ;
-fun baldachin_N : N ;
-fun catechin_N : N ;
-fun cochin_N : N ;
-fun urchin_N : N ;
-fun 'sea-urchin_N' : N ;
-fun 'street-urchin_N' : N ;
-fun capuchin_N : N ;
-fun dolphin_N : N ;
-fun endorphin_N : N ;
-fun dauphin_N : N ;
-fun shin_N : N ;
-fun lecithin_N : N ;
-fun strophanthin_N : N ;
-fun zeaxanthin_N : N ;
-fun cephalothin_N : N ;
-fun whin_N : N ;
-fun kin_N : N ;
-fun manakin_N : N ;
-fun takin_N : N ;
-fun lambkin_N : N ;
-fun bodkin_N : N ;
-fun ramekin_N : N ;
-fun mutchkin_N : N ;
-fun manikin_N : N ;
-fun cannikin_N : N ;
-fun pannikin_N : N ;
-fun napkin_N : N ;
-fun limpkin_N : N ;
-fun bumpkin_N : N ;
-fun pumpkin_N : N ;
-fun kilderkin_N : N ;
-fun gherkin_N : N ;
-fun jerkin_N : N ;
-fun firkin_N : N ;
-fun skin_N : N ;
-fun 'water-skin_N' : N ;
-fun gaskin_N : N ;
-fun lambskin_N : N ;
-fun redskin_N : N ;
-fun moleskin_N : N ;
-fun wineskin_N : N ;
-fun doeskin_N : N ;
-fun foreskin_N : N ;
-fun pigskin_N : N ;
-fun siskin_N : N ;
-fun buckskin_N : N ;
-fun sharkskin_N : N ;
-fun sealskin_N : N ;
-fun oilskin_N : N ;
-fun onionskin_N : N ;
-fun sheepskin_N : N ;
-fun bearskin_N : N ;
-fun deerskin_N : N ;
-fun waterskin_N : N ;
-fun goatskin_N : N ;
-fun buskin_N : N ;
-fun cowskin_N : N ;
-fun catkin_N : N ;
-fun interleukin_N : N ;
-fun amygdalin_N : N ;
-fun enkephalin_N : N ;
-fun formalin_N : N ;
-fun adrenalin_N : N ;
-fun keratohyalin_N : N ;
-fun ptyalin_N : N ;
-fun goblin_N : N ;
-fun hobgoblin_N : N ;
-fun capelin_N : N ;
-fun zeppelin_N : N ;
-fun ghrelin_N : N ;
-fun glutelin_N : N ;
-fun javelin_N : N ;
-fun myelin_N : N ;
-fun metheglin_N : N ;
-fun phycobilin_N : N ;
-fun urobilin_N : N ;
-fun subtilin_N : N ;
-fun motilin_N : N ;
-fun franklin_N : N ;
-fun gibberellin_N : N ;
-fun piperacillin_N : N ;
-fun oxacillin_N : N ;
-fun dicloxacillin_N : N ;
-fun nafcillin_N : N ;
-fun methicillin_N : N ;
-fun penicillin_N : N ;
-fun ampicillin_N : N ;
-fun amoxicillin_N : N ;
-fun vanillin_N : N ;
-fun gremlin_N : N ;
-fun kremlin_N : N ;
-fun drumlin_N : N ;
-fun kaolin_N : N ;
-fun mandolin_N : N ;
-fun pangolin_N : N ;
-fun violin_N : N ;
-fun lanolin_N : N ;
-fun complin_N : N ;
-fun poplin_N : N ;
-fun marlin_N : N ;
-fun berlin_N : N ;
-fun muslin_N : N ;
-fun ratlin_N : N ;
-fun tarpaulin_N : N ;
-fun globulin_N : N ;
-fun immunoglobulin_N : N ;
-fun thyroglobulin_N : N ;
-fun tuberculin_N : N ;
-fun inulin_N : N ;
-fun capulin_N : N ;
-fun insulin_N : N ;
-fun botulin_N : N ;
-fun pyroxylin_N : N ;
-fun min_N : N ;
-fun vitamin_N : N ;
-fun multivitamin_N : N ;
-fun provitamin_N : N ;
-fun hemin_N : N ;
-fun theremin_N : N ;
-fun brahmin_N : N ;
-fun vermin_N : N ;
-fun metformin_N : N ;
-fun plasmin_N : N ;
-fun albumin_N : N ;
-fun lactalbumin_N : N ;
-fun cumin_N : N ;
-fun humin_N : N ;
-fun melanin_N : N ;
-fun phycocyanin_N : N ;
-fun pyocyanin_N : N ;
-fun carrageenin_N : N ;
-fun renin_N : N ;
-fun antivenin_N : N ;
-fun lignin_N : N ;
-fun kinin_N : N ;
-fun cholecystokinin_N : N ;
-fun linin_N : N ;
-fun agglutinin_N : N ;
-fun isoagglutinin_N : N ;
-fun tannin_N : N ;
-fun rennin_N : N ;
-fun saponin_N : N ;
-fun opsonin_N : N ;
-fun melatonin_N : N ;
-fun calcitonin_N : N ;
-fun serotonin_N : N ;
-fun coin_N : N ;
-fun sainfoin_N : N ;
-fun join_N : N ;
-fun loin_N : N ;
-fun tenderloin_N : N ;
-fun sirloin_N : N ;
-fun ganoin_N : N ;
-fun talapoin_N : N ;
-fun heroin_N : N ;
-fun groin_N : N ;
-fun hydantoin_N : N ;
-fun diphenylhydantoin_N : N ;
-fun nitrofurantoin_N : N ;
-fun mephenytoin_N : N ;
-fun quoin_N : N ;
-fun benzoin_N : N ;
-fun pin_N : N ;
-fun 'skittle-pin_N' : N ;
-fun 'scarf-pin_N' : N ;
-fun 'rolling-pin_N' : N ;
-fun 'drawing-pin_N' : N ;
-fun 'belaying-pin_N' : N ;
-fun 'clothes-pin_N' : N ;
-fun 'safety-pin_N' : N ;
-fun chincapin_N : N ;
-fun lapin_N : N ;
-fun terrapin_N : N ;
-fun headpin_N : N ;
-fun candlepin_N : N ;
-fun tholepin_N : N ;
-fun ninepin_N : N ;
-fun doxepin_N : N ;
-fun kingpin_N : N ;
-fun linchpin_N : N ;
-fun lynchpin_N : N ;
-fun stickpin_N : N ;
-fun duckpin_N : N ;
-fun sculpin_N : N ;
-fun rifampin_N : N ;
-fun tenpin_N : N ;
-fun gonadotropin_N : N ;
-fun thyrotropin_N : N ;
-fun somatotropin_N : N ;
-fun pippin_N : N ;
-fun hairpin_N : N ;
-fun spin_N : N ;
-fun clothespin_N : N ;
-fun backspin_N : N ;
-fun tailspin_N : N ;
-fun downspin_N : N ;
-fun topspin_N : N ;
-fun hatpin_N : N ;
-fun lupin_N : N ;
-fun mandarin_N : N ;
-fun stearin_N : N ;
-fun tristearin_N : N ;
-fun warfarin_N : N ;
-fun margarin_N : N ;
-fun saccharin_N : N ;
-fun tamarin_N : N ;
-fun heparin_N : N ;
-fun sarin_N : N ;
-fun savarin_N : N ;
-fun alizarin_N : N ;
-fun fibrin_N : N ;
-fun chloropicrin_N : N ;
-fun chondrin_N : N ;
-fun cyanohydrin_N : N ;
-fun nitroglycerin_N : N ;
-fun hemosiderin_N : N ;
-fun luciferin_N : N ;
-fun gorgerin_N : N ;
-fun proaccelerin_N : N ;
-fun piperin_N : N ;
-fun serin_N : N ;
-fun culverin_N : N ;
-fun grin_N : N ;
-fun chagrin_N : N ;
-fun filaggrin_N : N ;
-fun phycoerythrin_N : N ;
-fun aspirin_N : N ;
-fun ribavirin_N : N ;
-fun florin_N : N ;
-fun salvinorin_N : N ;
-fun cephalosporin_N : N ;
-fun transferrin_N : N ;
-fun gastrin_N : N ;
-fun dextrin_N : N ;
-fun burin_N : N ;
-fun porphyrin_N : N ;
-fun butyrin_N : N ;
-fun tributyrin_N : N ;
-fun sin_N : N ;
-fun basin_N : N ;
-fun 'wash-hand-basin_N' : N ;
-fun 'drainage-basin_N' : N ;
-fun 'slop-basin_N' : N ;
-fun 'river-basin_N' : N ;
-fun 'catchment-basin_N' : N ;
-fun washbasin_N : N ;
-fun moccasin_N : N ;
-fun tocsin_N : N ;
-fun resin_N : N ;
-fun ceresin_N : N ;
-fun oleoresin_N : N ;
-fun raisin_N : N ;
-fun khamsin_N : N ;
-fun angiotensin_N : N ;
-fun eosin_N : N ;
-fun thymosin_N : N ;
-fun rosin_N : N ;
-fun myosin_N : N ;
-fun actomyosin_N : N ;
-fun terazosin_N : N ;
-fun prazosin_N : N ;
-fun doxazosin_N : N ;
-fun pepsin_N : N ;
-fun opsin_N : N ;
-fun iodopsin_N : N ;
-fun trypsin_N : N ;
-fun assassin_N : N ;
-fun vasopressin_N : N ;
-fun lypressin_N : N ;
-fun cousin_N : N ;
-fun lysin_N : N ;
-fun hemolysin_N : N ;
-fun streptolysin_N : N ;
-fun cytolysin_N : N ;
-fun tin_N : N ;
-fun pancreatin_N : N ;
-fun latin_N : N ;
-fun gelatin_N : N ;
-fun glycerogelatin_N : N ;
-fun chromatin_N : N ;
-fun achromatin_N : N ;
-fun keratin_N : N ;
-fun satin_N : N ;
-fun pravastatin_N : N ;
-fun cerivastatin_N : N ;
-fun simvastatin_N : N ;
-fun lovastatin_N : N ;
-fun atorvastatin_N : N ;
-fun fluvastatin_N : N ;
-fun nystatin_N : N ;
-fun actin_N : N ;
-fun prolactin_N : N ;
-fun lectin_N : N ;
-fun pectin_N : N ;
-fun acetin_N : N ;
-fun erythropoietin_N : N ;
-fun bulletin_N : N ;
-fun cretin_N : N ;
-fun secretin_N : N ;
-fun azadirachtin_N : N ;
-fun chitin_N : N ;
-fun palmitin_N : N ;
-fun tripalmitin_N : N ;
-fun precipitin_N : N ;
-fun ferritin_N : N ;
-fun gabapentin_N : N ;
-fun biotin_N : N ;
-fun martin_N : N ;
-fun proconvertin_N : N ;
-fun elastin_N : N ;
-fun thromboplastin_N : N ;
-fun progestin_N : N ;
-fun cutin_N : N ;
-fun penguin_N : N ;
-fun quin_N : N ;
-fun harlequin_N : N ;
-fun mannequin_N : N ;
-fun lambrequin_N : N ;
-fun sequin_N : N ;
-fun palanquin_N : N ;
-fun iodochlorhydroxyquin_N : N ;
-fun ruin_N : N ;
-fun bruin_N : N ;
-fun flavin_N : N ;
-fun riboflavin_N : N ;
-fun spavin_N : N ;
-fun kelvin_N : N ;
-fun griseofulvin_N : N ;
-fun win_N : N ;
-fun twin_N : N ;
-fun relaxin_N : N ;
-fun cephalexin_N : N ;
-fun digoxin_N : N ;
-fun dioxin_N : N ;
-fun toxin_N : N ;
-fun aflatoxin_N : N ;
-fun anatoxin_N : N ;
-fun digitoxin_N : N ;
-fun antitoxin_N : N ;
-fun saxitoxin_N : N ;
-fun mycotoxin_N : N ;
-fun endotoxin_N : N ;
-fun tetrodotoxin_N : N ;
-fun enterotoxin_N : N ;
-fun nephrotoxin_N : N ;
-fun neurotoxin_N : N ;
-fun hepatotoxin_N : N ;
-fun cytotoxin_N : N ;
-fun exotoxin_N : N ;
-fun auxin_N : N ;
-fun polymyxin_N : N ;
-fun yin_N : N ;
-fun ayin_N : N ;
-fun zayin_N : N ;
-fun tiyin_N : N ;
-fun oxaprozin_N : N ;
-fun hoatzin_N : N ;
-fun muezzin_N : N ;
-fun kiln_N : N ;
-fun limekiln_N : N ;
-fun brickkiln_N : N ;
-fun damn_N : N ;
-fun column_N : N ;
-fun autumn_N : N ;
-fun hymn_N : N ;
-fun inn_N : N ;
-fun finn_N : N ;
-fun jinn_N : N ;
-fun djinn_N : N ;
-fun 'mid-on_N' : N ;
-fun 'come-on_N' : N ;
-fun 'knock-on_N' : N ;
-fun 'roll-on_N' : N ;
-fun 'turn-on_N' : N ;
-fun 'put-on_N' : N ;
-fun 'follow-on_N' : N ;
-fun 'try-on_N' : N ;
-fun kaon_N : N ;
-fun gibbon_N : N ;
-fun ribbon_N : N ;
-fun bonbon_N : N ;
-fun carbon_N : N ;
-fun radiocarbon_N : N ;
-fun halocarbon_N : N ;
-fun hydrocarbon_N : N ;
-fun fluorocarbon_N : N ;
-fun hydrofluorocarbon_N : N ;
-fun chlorofluorocarbon_N : N ;
-fun hydrochlorofluorocarbon_N : N ;
-fun perfluorocarbon_N : N ;
-fun bourbon_N : N ;
-fun con_N : N ;
-fun 'mod con_N' : N ;
-fun bacon_N : N ;
-fun 'chaw-bacon_N' : N ;
-fun beacon_N : N ;
-fun deacon_N : N ;
-fun subdeacon_N : N ;
-fun archdeacon_N : N ;
-fun macon_N : N ;
-fun icon_N : N ;
-fun rubicon_N : N ;
-fun orthicon_N : N ;
-fun helicon_N : N ;
-fun silicon_N : N ;
-fun pantechnicon_N : N ;
-fun emoticon_N : N ;
-fun panopticon_N : N ;
-fun onomasticon_N : N ;
-fun lexicon_N : N ;
-fun falcon_N : N ;
-fun gyrfalcon_N : N ;
-fun zircon_N : N ;
-fun don_N : N ;
-fun radon_N : N ;
-fun boustrophedon_N : N ;
-fun cotyledon_N : N ;
-fun myrmidon_N : N ;
-fun gueridon_N : N ;
-fun abandon_N : N ;
-fun tendon_N : N ;
-fun codon_N : N ;
-fun trachodon_N : N ;
-fun mylodon_N : N ;
-fun iguanodon_N : N ;
-fun dimetrodon_N : N ;
-fun chaetodon_N : N ;
-fun dicamptodon_N : N ;
-fun mastodon_N : N ;
-fun bombardon_N : N ;
-fun pardon_N : N ;
-fun guerdon_N : N ;
-fun cordon_N : N ;
-fun eon_N : N ;
-fun aeon_N : N ;
-fun widgeon_N : N ;
-fun dudgeon_N : N ;
-fun gudgeon_N : N ;
-fun bludgeon_N : N ;
-fun curmudgeon_N : N ;
-fun pigeon_N : N ;
-fun 'carrier-pigeon_N' : N ;
-fun dungeon_N : N ;
-fun habergeon_N : N ;
-fun surgeon_N : N ;
-fun neurosurgeon_N : N ;
-fun sturgeon_N : N ;
-fun luncheon_N : N ;
-fun truncheon_N : N ;
-fun scutcheon_N : N ;
-fun escutcheon_N : N ;
-fun pantheon_N : N ;
-fun nucleon_N : N ;
-fun chameleon_N : N ;
-fun galleon_N : N ;
-fun napoleon_N : N ;
-fun neon_N : N ;
-fun bandoneon_N : N ;
-fun peon_N : N ;
-fun mezereon_N : N ;
-fun chiffon_N : N ;
-fun griffon_N : N ;
-fun agon_N : N ;
-fun decagon_N : N ;
-fun undecagon_N : N ;
-fun dodecagon_N : N ;
-fun glucagon_N : N ;
-fun flagon_N : N ;
-fun nonagon_N : N ;
-fun paragon_N : N ;
-fun dragon_N : N ;
-fun pendragon_N : N ;
-fun snapdragon_N : N ;
-fun tarragon_N : N ;
-fun octagon_N : N ;
-fun pentagon_N : N ;
-fun heptagon_N : N ;
-fun wagon_N : N ;
-fun 'tea-wagon_N' : N ;
-fun 'water-wagon_N' : N ;
-fun 'paddy-wagon_N' : N ;
-fun bandwagon_N : N ;
-fun hexagon_N : N ;
-fun waggon_N : N ;
-fun 'station-waggon_N' : N ;
-fun 'water-waggon_N' : N ;
-fun perigon_N : N ;
-fun trigon_N : N ;
-fun pteropogon_N : N ;
-fun trogon_N : N ;
-fun isogon_N : N ;
-fun argon_N : N ;
-fun jargon_N : N ;
-fun gorgon_N : N ;
-fun polygon_N : N ;
-fun chon_N : N ;
-fun cabochon_N : N ;
-fun phon_N : N ;
-fun siphon_N : N ;
-fun antiphon_N : N ;
-fun colophon_N : N ;
-fun gryphon_N : N ;
-fun syphon_N : N ;
-fun marathon_N : N ;
-fun autochthon_N : N ;
-fun python_N : N ;
-fun ion_N : N ;
-fun suspicion_N : N ;
-fun coercion_N : N ;
-fun scion_N : N ;
-fun collodion_N : N ;
-fun accordion_N : N ;
-fun contagion_N : N ;
-fun legion_N : N ;
-fun region_N : N ;
-fun religion_N : N ;
-fun logion_N : N ;
-fun trichion_N : N ;
-fun falchion_N : N ;
-fun stanchion_N : N ;
-fun crotaphion_N : N ;
-fun fashion_N : N ;
-fun refashion_N : N ;
-fun cushion_N : N ;
-fun pincushion_N : N ;
-fun gnathion_N : N ;
-fun parathion_N : N ;
-fun acanthion_N : N ;
-fun prosthion_N : N ;
-fun lion_N : N ;
-fun 'sea-lion_N' : N ;
-fun tatterdemalion_N : N ;
-fun battalion_N : N ;
-fun obelion_N : N ;
-fun dandelion_N : N ;
-fun perihelion_N : N ;
-fun aphelion_N : N ;
-fun parhelion_N : N ;
-fun tetraskelion_N : N ;
-fun triskelion_N : N ;
-fun ganglion_N : N ;
-fun vermilion_N : N ;
-fun cotilion_N : N ;
-fun postilion_N : N ;
-fun pavilion_N : N ;
-fun rapscallion_N : N ;
-fun medallion_N : N ;
-fun stallion_N : N ;
-fun rebellion_N : N ;
-fun hellion_N : N ;
-fun billion_N : N ;
-fun modillion_N : N ;
-fun million_N : N ;
-fun pillion_N : N ;
-fun quadrillion_N : N ;
-fun trillion_N : N ;
-fun octillion_N : N ;
-fun quintillion_N : N ;
-fun cotillion_N : N ;
-fun septillion_N : N ;
-fun postillion_N : N ;
-fun sextillion_N : N ;
-fun bullion_N : N ;
-fun scullion_N : N ;
-fun slumgullion_N : N ;
-fun mullion_N : N ;
-fun scolion_N : N ;
-fun condylion_N : N ;
-fun camion_N : N ;
-fun prothalamion_N : N ;
-fun acromion_N : N ;
-fun entomion_N : N ;
-fun fermion_N : N ;
-fun thermion_N : N ;
-fun anion_N : N ;
-fun fanion_N : N ;
-fun stephanion_N : N ;
-fun companion_N : N ;
-fun 'stable-companion_N' : N ;
-fun sphenion_N : N ;
-fun inion_N : N ;
-fun rhinion_N : N ;
-fun minion_N : N ;
-fun dominion_N : N ;
-fun pinion_N : N ;
-fun opinion_N : N ;
-fun amnion_N : N ;
-fun onion_N : N ;
-fun gonion_N : N ;
-fun pogonion_N : N ;
-fun coronion_N : N ;
-fun union_N : N ;
-fun 'trade-union_N' : N ;
-fun 'trades-union_N' : N ;
-fun bunion_N : N ;
-fun reunion_N : N ;
-fun communion_N : N ;
-fun 'self-communion_N' : N ;
-fun intercommunion_N : N ;
-fun disunion_N : N ;
-fun pion_N : N ;
-fun campion_N : N ;
-fun champion_N : N ;
-fun rampion_N : N ;
-fun tampion_N : N ;
-fun metopion_N : N ;
-fun scorpion_N : N ;
-fun clarion_N : N ;
-fun mitochondrion_N : N ;
-fun kerion_N : N ;
-fun criterion_2_N : N ;
-fun pterion_N : N ;
-fun asterion_N : N ;
-fun virion_N : N ;
-fun chorion_N : N ;
-fun morion_N : N ;
-fun prion_N : N ;
-fun carrion_N : N ;
-fun centurion_N : N ;
-fun occasion_N : N ;
-fun nasion_N : N ;
-fun abrasion_N : N ;
-fun dermabrasion_N : N ;
-fun suasion_N : N ;
-fun persuasion_N : N ;
-fun dissuasion_N : N ;
-fun evasion_N : N ;
-fun invasion_N : N ;
-fun pervasion_N : N ;
-fun adhesion_N : N ;
-fun cohesion_N : N ;
-fun lesion_N : N ;
-fun decision_N : N ;
-fun indecision_N : N ;
-fun precision_N : N ;
-fun imprecision_N : N ;
-fun circumcision_N : N ;
-fun incision_N : N ;
-fun excision_N : N ;
-fun elision_N : N ;
-fun collision_N : N ;
-fun derision_N : N ;
-fun vision_N : N ;
-fun television_N : N ;
-fun revision_N : N ;
-fun prevision_N : N ;
-fun division_N : N ;
-fun 'word-division_N' : N ;
-fun 'cross-division_N' : N ;
-fun subdivision_N : N ;
-fun provision_N : N ;
-fun retrovision_N : N ;
-fun supervision_N : N ;
-fun emulsion_N : N ;
-fun repulsion_N : N ;
-fun impulsion_N : N ;
-fun compulsion_N : N ;
-fun propulsion_N : N ;
-fun expulsion_N : N ;
-fun avulsion_N : N ;
-fun revulsion_N : N ;
-fun convulsion_N : N ;
-fun scansion_N : N ;
-fun mansion_N : N ;
-fun expansion_N : N ;
-fun ascension_N : N ;
-fun condescension_N : N ;
-fun comprehension_N : N ;
-fun incomprehension_N : N ;
-fun apprehension_N : N ;
-fun misapprehension_N : N ;
-fun declension_N : N ;
-fun dimension_N : N ;
-fun pension_N : N ;
-fun suspension_N : N ;
-fun resuspension_N : N ;
-fun dissension_N : N ;
-fun tension_N : N ;
-fun pretension_N : N ;
-fun intension_N : N ;
-fun hypotension_N : N ;
-fun distension_N : N ;
-fun extension_N : N ;
-fun coextension_N : N ;
-fun hyperextension_N : N ;
-fun plosion_N : N ;
-fun implosion_N : N ;
-fun explosion_N : N ;
-fun erosion_N : N ;
-fun corrosion_N : N ;
-fun submersion_N : N ;
-fun immersion_N : N ;
-fun aspersion_N : N ;
-fun dispersion_N : N ;
-fun interspersion_N : N ;
-fun version_N : N ;
-fun aversion_N : N ;
-fun extraversion_N : N ;
-fun subversion_N : N ;
-fun countersubversion_N : N ;
-fun animadversion_N : N ;
-fun eversion_N : N ;
-fun reversion_N : N ;
-fun ambiversion_N : N ;
-fun diversion_N : N ;
-fun inversion_N : N ;
-fun conversion_N : N ;
-fun retroversion_N : N ;
-fun introversion_N : N ;
-fun extroversion_N : N ;
-fun perversion_N : N ;
-fun torsion_N : N ;
-fun recursion_N : N ;
-fun incursion_N : N ;
-fun excursion_N : N ;
-fun passion_N : N ;
-fun compassion_N : N ;
-fun dispassion_N : N ;
-fun cession_N : N ;
-fun accession_N : N ;
-fun succession_N : N ;
-fun recession_N : N ;
-fun precession_N : N ;
-fun secession_N : N ;
-fun concession_N : N ;
-fun procession_N : N ;
-fun intercession_N : N ;
-fun confession_N : N ;
-fun profession_N : N ;
-fun regression_N : N ;
-fun aggression_N : N ;
-fun nonaggression_N : N ;
-fun digression_N : N ;
-fun progression_N : N ;
-fun retrogression_N : N ;
-fun transgression_N : N ;
-fun depression_N : N ;
-fun repression_N : N ;
-fun impression_N : N ;
-fun compression_N : N ;
-fun decompression_N : N ;
-fun oppression_N : N ;
-fun suppression_N : N ;
-fun immunosuppression_N : N ;
-fun expression_N : N ;
-fun session_N : N ;
-fun obsession_N : N ;
-fun supersession_N : N ;
-fun possession_N : N ;
-fun 'self-possession_N' : N ;
-fun repossession_N : N ;
-fun prepossession_N : N ;
-fun dispossession_N : N ;
-fun recission_N : N ;
-fun scission_N : N ;
-fun abscission_N : N ;
-fun fission_N : N ;
-fun mission_N : N ;
-fun submission_N : N ;
-fun admission_N : N ;
-fun readmission_N : N ;
-fun emission_N : N ;
-fun photoemission_N : N ;
-fun remission_N : N ;
-fun commission_N : N ;
-fun omission_N : N ;
-fun permission_N : N ;
-fun pretermission_N : N ;
-fun intermission_N : N ;
-fun transmission_N : N ;
-fun manumission_N : N ;
-fun succussion_N : N ;
-fun concussion_N : N ;
-fun percussion_N : N ;
-fun repercussion_N : N ;
-fun discussion_N : N ;
-fun fusion_N : N ;
-fun affusion_N : N ;
-fun effusion_N : N ;
-fun diffusion_N : N ;
-fun rediffusion_N : N ;
-fun suffusion_N : N ;
-fun infusion_N : N ;
-fun confusion_N : N ;
-fun profusion_N : N ;
-fun perfusion_N : N ;
-fun transfusion_N : N ;
-fun 'blood-transfusion_N' : N ;
-fun occlusion_N : N ;
-fun abocclusion_N : N ;
-fun malocclusion_N : N ;
-fun preclusion_N : N ;
-fun seclusion_N : N ;
-fun inclusion_N : N ;
-fun conclusion_N : N ;
-fun exclusion_N : N ;
-fun delusion_N : N ;
-fun allusion_N : N ;
-fun illusion_N : N ;
-fun disillusion_N : N ;
-fun collusion_N : N ;
-fun intrusion_N : N ;
-fun protrusion_N : N ;
-fun extrusion_N : N ;
-fun contusion_N : N ;
-fun symphysion_N : N ;
-fun libation_N : N ;
-fun probation_N : N ;
-fun reprobation_N : N ;
-fun approbation_N : N ;
-fun disapprobation_N : N ;
-fun exacerbation_N : N ;
-fun conurbation_N : N ;
-fun perturbation_N : N ;
-fun masturbation_N : N ;
-fun incubation_N : N ;
-fun cation_N : N ;
-fun placation_N : N ;
-fun vacation_N : N ;
-fun defecation_N : N ;
-fun deprecation_N : N ;
-fun imprecation_N : N ;
-fun syllabication_N : N ;
-fun eradication_N : N ;
-fun abdication_N : N ;
-fun dedication_N : N ;
-fun rededication_N : N ;
-fun medication_N : N ;
-fun indication_N : N ;
-fun contraindication_N : N ;
-fun vindication_N : N ;
-fun syndication_N : N ;
-fun adjudication_N : N ;
-fun syllabification_N : N ;
-fun pacification_N : N ;
-fun opacification_N : N ;
-fun specification_N : N ;
-fun calcification_N : N ;
-fun decalcification_N : N ;
-fun edification_N : N ;
-fun acidification_N : N ;
-fun solidification_N : N ;
-fun codification_N : N ;
-fun modification_N : N ;
-fun deification_N : N ;
-fun preachification_N : N ;
-fun qualification_N : N ;
-fun disqualification_N : N ;
-fun vilification_N : N ;
-fun jollification_N : N ;
-fun mollification_N : N ;
-fun nullification_N : N ;
-fun amplification_N : N ;
-fun exemplification_N : N ;
-fun simplification_N : N ;
-fun oversimplification_N : N ;
-fun ramification_N : N ;
-fun mummification_N : N ;
-fun humification_N : N ;
-fun organification_N : N ;
-fun magnification_N : N ;
-fun signification_N : N ;
-fun cartilaginification_N : N ;
-fun vinification_N : N ;
-fun indemnification_N : N ;
-fun ammonification_N : N ;
-fun saponification_N : N ;
-fun personification_N : N ;
-fun unification_N : N ;
-fun reunification_N : N ;
-fun typification_N : N ;
-fun clarification_N : N ;
-fun verification_N : N ;
-fun transmogrification_N : N ;
-fun glorification_N : N ;
-fun electrification_N : N ;
-fun metrification_N : N ;
-fun nitrification_N : N ;
-fun vitrification_N : N ;
-fun gentrification_N : N ;
-fun purification_N : N ;
-fun gasification_N : N ;
-fun falsification_N : N ;
-fun phacoemulsification_N : N ;
-fun intensification_N : N ;
-fun versification_N : N ;
-fun diversification_N : N ;
-fun classification_N : N ;
-fun declassification_N : N ;
-fun reclassification_N : N ;
-fun ossification_N : N ;
-fun deossification_N : N ;
-fun beatification_N : N ;
-fun ratification_N : N ;
-fun gratification_N : N ;
-fun stratification_N : N ;
-fun objectification_N : N ;
-fun rectification_N : N ;
-fun sanctification_N : N ;
-fun fructification_N : N ;
-fun stultification_N : N ;
-fun quantification_N : N ;
-fun identification_N : N ;
-fun notification_N : N ;
-fun certification_N : N ;
-fun desertification_N : N ;
-fun fortification_N : N ;
-fun mortification_N : N ;
-fun justification_N : N ;
-fun mystification_N : N ;
-fun beautification_N : N ;
-fun vivification_N : N ;
-fun detoxification_N : N ;
-fun denazification_N : N ;
-fun eutrophication_N : N ;
-fun publication_N : N ;
-fun republication_N : N ;
-fun plication_N : N ;
-fun replication_N : N ;
-fun multiplication_N : N ;
-fun implication_N : N ;
-fun complication_N : N ;
-fun application_N : N ;
-fun misapplication_N : N ;
-fun supplication_N : N ;
-fun duplication_N : N ;
-fun reduplication_N : N ;
-fun explication_N : N ;
-fun formication_N : N ;
-fun fornication_N : N ;
-fun communication_N : N ;
-fun telecommunication_N : N ;
-fun intercommunication_N : N ;
-fun excommunication_N : N ;
-fun prevarication_N : N ;
-fun divarication_N : N ;
-fun fabrication_N : N ;
-fun prefabrication_N : N ;
-fun imbrication_N : N ;
-fun lubrication_N : N ;
-fun affrication_N : N ;
-fun metrication_N : N ;
-fun extrication_N : N ;
-fun viatication_N : N ;
-fun authentication_N : N ;
-fun decortication_N : N ;
-fun urtication_N : N ;
-fun mastication_N : N ;
-fun domestication_N : N ;
-fun sophistication_N : N ;
-fun prognostication_N : N ;
-fun rustication_N : N ;
-fun intoxication_N : N ;
-fun defalcation_N : N ;
-fun inculcation_N : N ;
-fun truncation_N : N ;
-fun suffocation_N : N ;
-fun location_N : N ;
-fun 'radio-location_N' : N ;
-fun relocation_N : N ;
-fun bilocation_N : N ;
-fun allocation_N : N ;
-fun reallocation_N : N ;
-fun collocation_N : N ;
-fun echolocation_N : N ;
-fun dislocation_N : N ;
-fun translocation_N : N ;
-fun embrocation_N : N ;
-fun reciprocation_N : N ;
-fun vocation_N : N ;
-fun avocation_N : N ;
-fun evocation_N : N ;
-fun revocation_N : N ;
-fun equivocation_N : N ;
-fun invocation_N : N ;
-fun convocation_N : N ;
-fun provocation_N : N ;
-fun demarcation_N : N ;
-fun altercation_N : N ;
-fun furcation_N : N ;
-fun bifurcation_N : N ;
-fun trifurcation_N : N ;
-fun confiscation_N : N ;
-fun obfuscation_N : N ;
-fun coruscation_N : N ;
-fun education_N : N ;
-fun coeducation_N : N ;
-fun gradation_N : N ;
-fun degradation_N : N ;
-fun predation_N : N ;
-fun depredation_N : N ;
-fun sedation_N : N ;
-fun elucidation_N : N ;
-fun validation_N : N ;
-fun invalidation_N : N ;
-fun consolidation_N : N ;
-fun intimidation_N : N ;
-fun dilapidation_N : N ;
-fun trepidation_N : N ;
-fun cuspidation_N : N ;
-fun fluoridation_N : N ;
-fun liquidation_N : N ;
-fun oxidation_N : N ;
-fun emendation_N : N ;
-fun commendation_N : N ;
-fun recommendation_N : N ;
-fun superfecundation_N : N ;
-fun inundation_N : N ;
-fun foundation_N : N ;
-fun accommodation_N : N ;
-fun retardation_N : N ;
-fun denudation_N : N ;
-fun exudation_N : N ;
-fun ideation_N : N ;
-fun enucleation_N : N ;
-fun permeation_N : N ;
-fun lineation_N : N ;
-fun delineation_N : N ;
-fun creation_N : N ;
-fun recreation_N : N ;
-fun procreation_N : N ;
-fun propagation_N : N ;
-fun divagation_N : N ;
-fun variegation_N : N ;
-fun legation_N : N ;
-fun delegation_N : N ;
-fun relegation_N : N ;
-fun allegation_N : N ;
-fun negation_N : N ;
-fun abnegation_N : N ;
-fun 'self-abnegation_N' : N ;
-fun segregation_N : N ;
-fun desegregation_N : N ;
-fun aggregation_N : N ;
-fun congregation_N : N ;
-fun ligation_N : N ;
-fun obligation_N : N ;
-fun colligation_N : N ;
-fun fumigation_N : N ;
-fun irrigation_N : N ;
-fun litigation_N : N ;
-fun mitigation_N : N ;
-fun castigation_N : N ;
-fun investigation_N : N ;
-fun instigation_N : N ;
-fun navigation_N : N ;
-fun circumnavigation_N : N ;
-fun promulgation_N : N ;
-fun elongation_N : N ;
-fun prolongation_N : N ;
-fun rogation_N : N ;
-fun abrogation_N : N ;
-fun subrogation_N : N ;
-fun derogation_N : N ;
-fun supererogation_N : N ;
-fun prorogation_N : N ;
-fun interrogation_N : N ;
-fun objurgation_N : N ;
-fun purgation_N : N ;
-fun expurgation_N : N ;
-fun centrifugation_N : N ;
-fun ultracentrifugation_N : N ;
-fun subjugation_N : N ;
-fun conjugation_N : N ;
-fun corrugation_N : N ;
-fun glaciation_N : N ;
-fun emaciation_N : N ;
-fun speciation_N : N ;
-fun depreciation_N : N ;
-fun appreciation_N : N ;
-fun officiation_N : N ;
-fun enunciation_N : N ;
-fun denunciation_N : N ;
-fun renunciation_N : N ;
-fun annunciation_N : N ;
-fun pronunciation_N : N ;
-fun mispronunciation_N : N ;
-fun association_N : N ;
-fun disassociation_N : N ;
-fun dissociation_N : N ;
-fun radiation_N : N ;
-fun irradiation_N : N ;
-fun mediation_N : N ;
-fun bioremediation_N : N ;
-fun repudiation_N : N ;
-fun brachiation_N : N ;
-fun retaliation_N : N ;
-fun conciliation_N : N ;
-fun reconciliation_N : N ;
-fun affiliation_N : N ;
-fun reaffiliation_N : N ;
-fun humiliation_N : N ;
-fun palliation_N : N ;
-fun foliation_N : N ;
-fun defoliation_N : N ;
-fun exfoliation_N : N ;
-fun spoliation_N : N ;
-fun columniation_N : N ;
-fun expiation_N : N ;
-fun variation_N : N ;
-fun covariation_N : N ;
-fun inebriation_N : N ;
-fun excoriation_N : N ;
-fun appropriation_N : N ;
-fun misappropriation_N : N ;
-fun expropriation_N : N ;
-fun repatriation_N : N ;
-fun infuriation_N : N ;
-fun luxuriation_N : N ;
-fun expatiation_N : N ;
-fun ingratiation_N : N ;
-fun satiation_N : N ;
-fun initiation_N : N ;
-fun propitiation_N : N ;
-fun vitiation_N : N ;
-fun substantiation_N : N ;
-fun transubstantiation_N : N ;
-fun consubstantiation_N : N ;
-fun instantiation_N : N ;
-fun exponentiation_N : N ;
-fun differentiation_N : N ;
-fun dedifferentiation_N : N ;
-fun potentiation_N : N ;
-fun negotiation_N : N ;
-fun aviation_N : N ;
-fun obviation_N : N ;
-fun deviation_N : N ;
-fun alleviation_N : N ;
-fun abbreviation_N : N ;
-fun asphyxiation_N : N ;
-fun debarkation_N : N ;
-fun embarkation_N : N ;
-fun disembarkation_N : N ;
-fun escalation_N : N ;
-fun 'de-escalation_N' : N ;
-fun inhalation_N : N ;
-fun exhalation_N : N ;
-fun ablation_N : N ;
-fun oblation_N : N ;
-fun elation_N : N ;
-fun chelation_N : N ;
-fun crenelation_N : N ;
-fun relation_N : N ;
-fun 'blood-relation_N' : N ;
-fun interrelation_N : N ;
-fun correlation_N : N ;
-fun revelation_N : N ;
-fun deflation_N : N ;
-fun reflation_N : N ;
-fun insufflation_N : N ;
-fun stagflation_N : N ;
-fun inflation_N : N ;
-fun hyperinflation_N : N ;
-fun disinflation_N : N ;
-fun sibilation_N : N ;
-fun assibilation_N : N ;
-fun jubilation_N : N ;
-fun dilation_N : N ;
-fun vasodilation_N : N ;
-fun invigilation_N : N ;
-fun annihilation_N : N ;
-fun assimilation_N : N ;
-fun dissimilation_N : N ;
-fun epilation_N : N ;
-fun depilation_N : N ;
-fun compilation_N : N ;
-fun ventilation_N : N ;
-fun hyperventilation_N : N ;
-fun mutilation_N : N ;
-fun lallation_N : N ;
-fun spallation_N : N ;
-fun installation_N : N ;
-fun cancellation_N : N ;
-fun parcellation_N : N ;
-fun flagellation_N : N ;
-fun appellation_N : N ;
-fun interpellation_N : N ;
-fun tessellation_N : N ;
-fun constellation_N : N ;
-fun vacillation_N : N ;
-fun oscillation_N : N ;
-fun fibrillation_N : N ;
-fun defibrillation_N : N ;
-fun titillation_N : N ;
-fun cantillation_N : N ;
-fun scintillation_N : N ;
-fun distillation_N : N ;
-fun instillation_N : N ;
-fun collation_N : N ;
-fun machicolation_N : N ;
-fun percolation_N : N ;
-fun variolation_N : N ;
-fun etiolation_N : N ;
-fun violation_N : N ;
-fun immolation_N : N ;
-fun extrapolation_N : N ;
-fun interpolation_N : N ;
-fun desolation_N : N ;
-fun isolation_N : N ;
-fun insolation_N : N ;
-fun consolation_N : N ;
-fun contemplation_N : N ;
-fun legislation_N : N ;
-fun translation_N : N ;
-fun mistranslation_N : N ;
-fun confabulation_N : N ;
-fun tintinnabulation_N : N ;
-fun tabulation_N : N ;
-fun tribulation_N : N ;
-fun ambulation_N : N ;
-fun perambulation_N : N ;
-fun ejaculation_N : N ;
-fun flocculation_N : N ;
-fun peculation_N : N ;
-fun speculation_N : N ;
-fun fasciculation_N : N ;
-fun pandiculation_N : N ;
-fun vermiculation_N : N ;
-fun matriculation_N : N ;
-fun vesiculation_N : N ;
-fun reticulation_N : N ;
-fun articulation_N : N ;
-fun abarticulation_N : N ;
-fun gesticulation_N : N ;
-fun calculation_N : N ;
-fun recalculation_N : N ;
-fun miscalculation_N : N ;
-fun inoculation_N : N ;
-fun circulation_N : N ;
-fun recirculation_N : N ;
-fun emasculation_N : N ;
-fun osculation_N : N ;
-fun adulation_N : N ;
-fun stridulation_N : N ;
-fun undulation_N : N ;
-fun modulation_N : N ;
-fun demodulation_N : N ;
-fun coagulation_N : N ;
-fun anticoagulation_N : N ;
-fun thermocoagulation_N : N ;
-fun photocoagulation_N : N ;
-fun regulation_N : N ;
-fun deregulation_N : N ;
-fun autoregulation_N : N ;
-fun angulation_N : N ;
-fun triangulation_N : N ;
-fun strangulation_N : N ;
-fun pullulation_N : N ;
-fun ululation_N : N ;
-fun emulation_N : N ;
-fun simulation_N : N ;
-fun dissimulation_N : N ;
-fun stimulation_N : N ;
-fun formulation_N : N ;
-fun accumulation_N : N ;
-fun granulation_N : N ;
-fun cannulation_N : N ;
-fun manipulation_N : N ;
-fun stipulation_N : N ;
-fun copulation_N : N ;
-fun population_N : N ;
-fun subpopulation_N : N ;
-fun depopulation_N : N ;
-fun overpopulation_N : N ;
-fun gastrulation_N : N ;
-fun insulation_N : N ;
-fun encapsulation_N : N ;
-fun congratulation_N : N ;
-fun capitulation_N : N ;
-fun recapitulation_N : N ;
-fun postulation_N : N ;
-fun expostulation_N : N ;
-fun ovulation_N : N ;
-fun anovulation_N : N ;
-fun acylation_N : N ;
-fun acetylation_N : N ;
-fun decarboxylation_N : N ;
-fun defamation_N : N ;
-fun amalgamation_N : N ;
-fun acclamation_N : N ;
-fun declamation_N : N ;
-fun reclamation_N : N ;
-fun proclamation_N : N ;
-fun exclamation_N : N ;
-fun desquamation_N : N ;
-fun cremation_N : N ;
-fun decimation_N : N ;
-fun sublimation_N : N ;
-fun acclimation_N : N ;
-fun collimation_N : N ;
-fun animation_N : N ;
-fun lacrimation_N : N ;
-fun legitimation_N : N ;
-fun intimation_N : N ;
-fun estimation_N : N ;
-fun underestimation_N : N ;
-fun approximation_N : N ;
-fun inflammation_N : N ;
-fun summation_N : N ;
-fun consummation_N : N ;
-fun automation_N : N ;
-fun affirmation_N : N ;
-fun confirmation_N : N ;
-fun formation_N : N ;
-fun 're-formation_N' : N ;
-fun 'back-formation_N' : N ;
-fun deformation_N : N ;
-fun reformation_N : N ;
-fun preformation_N : N ;
-fun counterreformation_N : N ;
-fun malformation_N : N ;
-fun information_N : N ;
-fun disinformation_N : N ;
-fun misinformation_N : N ;
-fun conformation_N : N ;
-fun transformation_N : N ;
-fun exhumation_N : N ;
-fun nation_N : N ;
-fun profanation_N : N ;
-fun planation_N : N ;
-fun explanation_N : N ;
-fun emanation_N : N ;
-fun miscegenation_N : N ;
-fun hydrogenation_N : N ;
-fun oxygenation_N : N ;
-fun hyphenation_N : N ;
-fun alienation_N : N ;
-fun concatenation_N : N ;
-fun venation_N : N ;
-fun rejuvenation_N : N ;
-fun stagnation_N : N ;
-fun impregnation_N : N ;
-fun indignation_N : N ;
-fun designation_N : N ;
-fun resignation_N : N ;
-fun assignation_N : N ;
-fun combination_N : N ;
-fun recombination_N : N ;
-fun vaccination_N : N ;
-fun calcination_N : N ;
-fun ratiocination_N : N ;
-fun fascination_N : N ;
-fun hallucination_N : N ;
-fun pseudohallucination_N : N ;
-fun iodination_N : N ;
-fun ordination_N : N ;
-fun subordination_N : N ;
-fun insubordination_N : N ;
-fun coordination_N : N ;
-fun incoordination_N : N ;
-fun imagination_N : N ;
-fun pagination_N : N ;
-fun invagination_N : N ;
-fun machination_N : N ;
-fun trephination_N : N ;
-fun desalination_N : N ;
-fun declination_N : N ;
-fun inclination_N : N ;
-fun disinclination_N : N ;
-fun demyelination_N : N ;
-fun pollination_N : N ;
-fun deamination_N : N ;
-fun lamination_N : N ;
-fun transamination_N : N ;
-fun contamination_N : N ;
-fun decontamination_N : N ;
-fun examination_N : N ;
-fun 'self-examination_N' : N ;
-fun 'cross-examination_N' : N ;
-fun gemination_N : N ;
-fun insemination_N : N ;
-fun dissemination_N : N ;
-fun elimination_N : N ;
-fun recrimination_N : N ;
-fun incrimination_N : N ;
-fun discrimination_N : N ;
-fun culmination_N : N ;
-fun fulmination_N : N ;
-fun commination_N : N ;
-fun abomination_N : N ;
-fun domination_N : N ;
-fun predomination_N : N ;
-fun nomination_N : N ;
-fun denomination_N : N ;
-fun germination_N : N ;
-fun termination_N : N ;
-fun determination_N : N ;
-fun 'self-determination_N' : N ;
-fun redetermination_N : N ;
-fun predetermination_N : N ;
-fun extermination_N : N ;
-fun illumination_N : N ;
-fun rumination_N : N ;
-fun supination_N : N ;
-fun peregrination_N : N ;
-fun chlorination_N : N ;
-fun prechlorination_N : N ;
-fun indoctrination_N : N ;
-fun assassination_N : N ;
-fun plastination_N : N ;
-fun procrastination_N : N ;
-fun destination_N : N ;
-fun predestination_N : N ;
-fun festination_N : N ;
-fun agglutination_N : N ;
-fun hemagglutination_N : N ;
-fun isoagglutination_N : N ;
-fun ruination_N : N ;
-fun divination_N : N ;
-fun damnation_N : N ;
-fun condemnation_N : N ;
-fun perennation_N : N ;
-fun cachinnation_N : N ;
-fun carbonation_N : N ;
-fun donation_N : N ;
-fun condonation_N : N ;
-fun fractionation_N : N ;
-fun coronation_N : N ;
-fun pronation_N : N ;
-fun personation_N : N ;
-fun impersonation_N : N ;
-fun detonation_N : N ;
-fun intonation_N : N ;
-fun carnation_N : N ;
-fun incarnation_N : N ;
-fun reincarnation_N : N ;
-fun hibernation_N : N ;
-fun alternation_N : N ;
-fun consternation_N : N ;
-fun vernation_N : N ;
-fun subornation_N : N ;
-fun eburnation_N : N ;
-fun anticipation_N : N ;
-fun participation_N : N ;
-fun emancipation_N : N ;
-fun dissipation_N : N ;
-fun obstipation_N : N ;
-fun constipation_N : N ;
-fun palpation_N : N ;
-fun exculpation_N : N ;
-fun syncopation_N : N ;
-fun extirpation_N : N ;
-fun usurpation_N : N ;
-fun occupation_N : N ;
-fun preoccupation_N : N ;
-fun ration_N : N ;
-fun declaration_N : N ;
-fun exhilaration_N : N ;
-fun reparation_N : N ;
-fun preparation_N : N ;
-fun separation_N : N ;
-fun celebration_N : N ;
-fun palpebration_N : N ;
-fun cerebration_N : N ;
-fun libration_N : N ;
-fun calibration_N : N ;
-fun equilibration_N : N ;
-fun vibration_N : N ;
-fun adumbration_N : N ;
-fun lucubration_N : N ;
-fun desecration_N : N ;
-fun consecration_N : N ;
-fun execration_N : N ;
-fun hydration_N : N ;
-fun dehydration_N : N ;
-fun aeration_N : N ;
-fun liberation_N : N ;
-fun deliberation_N : N ;
-fun reverberation_N : N ;
-fun laceration_N : N ;
-fun maceration_N : N ;
-fun ulceration_N : N ;
-fun incarceration_N : N ;
-fun evisceration_N : N ;
-fun federation_N : N ;
-fun confederation_N : N ;
-fun consideration_N : N ;
-fun reconsideration_N : N ;
-fun inconsideration_N : N ;
-fun moderation_N : N ;
-fun immoderation_N : N ;
-fun vociferation_N : N ;
-fun proliferation_N : N ;
-fun nonproliferation_N : N ;
-fun exaggeration_N : N ;
-fun refrigeration_N : N ;
-fun acceleration_N : N ;
-fun deceleration_N : N ;
-fun toleration_N : N ;
-fun agglomeration_N : N ;
-fun conglomeration_N : N ;
-fun numeration_N : N ;
-fun enumeration_N : N ;
-fun generation_N : N ;
-fun degeneration_N : N ;
-fun regeneration_N : N ;
-fun veneration_N : N ;
-fun incineration_N : N ;
-fun itineration_N : N ;
-fun exoneration_N : N ;
-fun remuneration_N : N ;
-fun operation_N : N ;
-fun cooperation_N : N ;
-fun exasperation_N : N ;
-fun desperation_N : N ;
-fun recuperation_N : N ;
-fun vituperation_N : N ;
-fun commiseration_N : N ;
-fun iteration_N : N ;
-fun reiteration_N : N ;
-fun obliteration_N : N ;
-fun alliteration_N : N ;
-fun transliteration_N : N ;
-fun alteration_N : N ;
-fun adulteration_N : N ;
-fun exenteration_N : N ;
-fun perseveration_N : N ;
-fun asseveration_N : N ;
-fun deflagration_N : N ;
-fun conflagration_N : N ;
-fun integration_N : N ;
-fun reintegration_N : N ;
-fun disintegration_N : N ;
-fun migration_N : N ;
-fun emigration_N : N ;
-fun immigration_N : N ;
-fun transmigration_N : N ;
-fun denigration_N : N ;
-fun admiration_N : N ;
-fun aspiration_N : N ;
-fun respiration_N : N ;
-fun transpiration_N : N ;
-fun inspiration_N : N ;
-fun perspiration_N : N ;
-fun expiration_N : N ;
-fun oration_N : N ;
-fun elaboration_N : N ;
-fun collaboration_N : N ;
-fun corroboration_N : N ;
-fun decoration_N : N ;
-fun adoration_N : N ;
-fun perforation_N : N ;
-fun melioration_N : N ;
-fun amelioration_N : N ;
-fun deterioration_N : N ;
-fun defloration_N : N ;
-fun coloration_N : N ;
-fun discoloration_N : N ;
-fun exploration_N : N ;
-fun commemoration_N : N ;
-fun evaporation_N : N ;
-fun pervaporation_N : N ;
-fun corporation_N : N ;
-fun incorporation_N : N ;
-fun peroration_N : N ;
-fun proration_N : N ;
-fun expectoration_N : N ;
-fun restoration_N : N ;
-fun narration_N : N ;
-fun aberration_N : N ;
-fun serration_N : N ;
-fun susurration_N : N ;
-fun penetration_N : N ;
-fun interpenetration_N : N ;
-fun perpetration_N : N ;
-fun arbitration_N : N ;
-fun titration_N : N ;
-fun filtration_N : N ;
-fun infiltration_N : N ;
-fun concentration_N : N ;
-fun eventration_N : N ;
-fun castration_N : N ;
-fun orchestration_N : N ;
-fun fenestration_N : N ;
-fun defenestration_N : N ;
-fun sequestration_N : N ;
-fun registration_N : N ;
-fun ministration_N : N ;
-fun administration_N : N ;
-fun demonstration_N : N ;
-fun counterdemonstration_N : N ;
-fun prostration_N : N ;
-fun illustration_N : N ;
-fun frustration_N : N ;
-fun duration_N : N ;
-fun figuration_N : N ;
-fun prefiguration_N : N ;
-fun configuration_N : N ;
-fun reconfiguration_N : N ;
-fun transfiguration_N : N ;
-fun inauguration_N : N ;
-fun abjuration_N : N ;
-fun adjuration_N : N ;
-fun conjuration_N : N ;
-fun discolouration_N : N ;
-fun suppuration_N : N ;
-fun mensuration_N : N ;
-fun maturation_N : N ;
-fun saturation_N : N ;
-fun acculturation_N : N ;
-fun gyration_N : N ;
-fun intravasation_N : N ;
-fun extravasation_N : N ;
-fun globalisation_N : N ;
-fun legalisation_N : N ;
-fun industrialisation_N : N ;
-fun normalisation_N : N ;
-fun marginalisation_N : N ;
-fun denationalisation_N : N ;
-fun institutionalisation_N : N ;
-fun liberalisation_N : N ;
-fun decentralisation_N : N ;
-fun digitalisation_N : N ;
-fun capitalisation_N : N ;
-fun destabilisation_N : N ;
-fun mobilisation_N : N ;
-fun demobilisation_N : N ;
-fun optimisation_N : N ;
-fun organisation_N : N ;
-fun reorganisation_N : N ;
-fun modernisation_N : N ;
-fun demilitarisation_N : N ;
-fun characterisation_N : N ;
-fun computerisation_N : N ;
-fun democratisation_N : N ;
-fun privatisation_N : N ;
-fun improvisation_N : N ;
-fun pulsation_N : N ;
-fun condensation_N : N ;
-fun compensation_N : N ;
-fun overcompensation_N : N ;
-fun dispensation_N : N ;
-fun sensation_N : N ;
-fun tergiversation_N : N ;
-fun malversation_N : N ;
-fun conversation_N : N ;
-fun cessation_N : N ;
-fun inspissation_N : N ;
-fun causation_N : N ;
-fun accusation_N : N ;
-fun recusation_N : N ;
-fun dilatation_N : N ;
-fun floatation_N : N ;
-fun lactation_N : N ;
-fun ablactation_N : N ;
-fun affectation_N : N ;
-fun delectation_N : N ;
-fun expectation_N : N ;
-fun dictation_N : N ;
-fun coarctation_N : N ;
-fun eructation_N : N ;
-fun superfetation_N : N ;
-fun vegetation_N : N ;
-fun interpretation_N : N ;
-fun reinterpretation_N : N ;
-fun misinterpretation_N : N ;
-fun habitation_N : N ;
-fun cohabitation_N : N ;
-fun citation_N : N ;
-fun recitation_N : N ;
-fun elicitation_N : N ;
-fun felicitation_N : N ;
-fun solicitation_N : N ;
-fun incitation_N : N ;
-fun resuscitation_N : N ;
-fun excitation_N : N ;
-fun meditation_N : N ;
-fun premeditation_N : N ;
-fun accreditation_N : N ;
-fun agitation_N : N ;
-fun prestidigitation_N : N ;
-fun cogitation_N : N ;
-fun excogitation_N : N ;
-fun regurgitation_N : N ;
-fun rehabilitation_N : N ;
-fun debilitation_N : N ;
-fun facilitation_N : N ;
-fun imitation_N : N ;
-fun limitation_N : N ;
-fun delimitation_N : N ;
-fun sanitation_N : N ;
-fun blaxploitation_N : N ;
-fun exploitation_N : N ;
-fun overexploitation_N : N ;
-fun sexploitation_N : N ;
-fun capitation_N : N ;
-fun decapitation_N : N ;
-fun crepitation_N : N ;
-fun decrepitation_N : N ;
-fun precipitation_N : N ;
-fun palpitation_N : N ;
-fun irritation_N : N ;
-fun hesitation_N : N ;
-fun visitation_N : N ;
-fun jactitation_N : N ;
-fun gravitation_N : N ;
-fun levitation_N : N ;
-fun invitation_N : N ;
-fun saltation_N : N ;
-fun exaltation_N : N ;
-fun auscultation_N : N ;
-fun consultation_N : N ;
-fun exultation_N : N ;
-fun decantation_N : N ;
-fun recantation_N : N ;
-fun incantation_N : N ;
-fun plantation_N : N ;
-fun implantation_N : N ;
-fun transplantation_N : N ;
-fun placentation_N : N ;
-fun indentation_N : N ;
-fun orientation_N : N ;
-fun reorientation_N : N ;
-fun disorientation_N : N ;
-fun lamentation_N : N ;
-fun ornamentation_N : N ;
-fun implementation_N : N ;
-fun complementation_N : N ;
-fun supplementation_N : N ;
-fun fragmentation_N : N ;
-fun segmentation_N : N ;
-fun pigmentation_N : N ;
-fun depigmentation_N : N ;
-fun hypopigmentation_N : N ;
-fun hyperpigmentation_N : N ;
-fun augmentation_N : N ;
-fun regimentation_N : N ;
-fun experimentation_N : N ;
-fun fomentation_N : N ;
-fun fermentation_N : N ;
-fun documentation_N : N ;
-fun argumentation_N : N ;
-fun instrumentation_N : N ;
-fun presentation_N : N ;
-fun representation_N : N ;
-fun misrepresentation_N : N ;
-fun ostentation_N : N ;
-fun confrontation_N : N ;
-fun flotation_N : N ;
-fun notation_N : N ;
-fun annotation_N : N ;
-fun connotation_N : N ;
-fun potation_N : N ;
-fun rotation_N : N ;
-fun dextrorotation_N : N ;
-fun levorotation_N : N ;
-fun quotation_N : N ;
-fun misquotation_N : N ;
-fun adaptation_N : N ;
-fun acceptation_N : N ;
-fun septation_N : N ;
-fun temptation_N : N ;
-fun dissertation_N : N ;
-fun flirtation_N : N ;
-fun exhortation_N : N ;
-fun deportation_N : N ;
-fun teleportation_N : N ;
-fun importation_N : N ;
-fun transportation_N : N ;
-fun exportation_N : N ;
-fun station_N : N ;
-fun 'police-station_N' : N ;
-fun 'coaling-station_N' : N ;
-fun 'polling-station_N' : N ;
-fun 'weather-station_N' : N ;
-fun 'power-station_N' : N ;
-fun 'gas-station_N' : N ;
-fun 'pay-station_N' : N ;
-fun devastation_N : N ;
-fun substation_N : N ;
-fun manifestation_N : N ;
-fun infestation_N : N ;
-fun disinfestation_N : N ;
-fun gestation_N : N ;
-fun molestation_N : N ;
-fun deforestation_N : N ;
-fun reforestation_N : N ;
-fun afforestation_N : N ;
-fun 're-afforestation_N' : N ;
-fun detestation_N : N ;
-fun protestation_N : N ;
-fun attestation_N : N ;
-fun workstation_N : N ;
-fun outstation_N : N ;
-fun gustation_N : N ;
-fun incrustation_N : N ;
-fun refutation_N : N ;
-fun confutation_N : N ;
-fun salutation_N : N ;
-fun mutation_N : N ;
-fun commutation_N : N ;
-fun permutation_N : N ;
-fun transmutation_N : N ;
-fun nutation_N : N ;
-fun deputation_N : N ;
-fun reputation_N : N ;
-fun amputation_N : N ;
-fun imputation_N : N ;
-fun computation_N : N ;
-fun disputation_N : N ;
-fun evacuation_N : N ;
-fun graduation_N : N ;
-fun disambiguation_N : N ;
-fun valuation_N : N ;
-fun evaluation_N : N ;
-fun devaluation_N : N ;
-fun reevaluation_N : N ;
-fun revaluation_N : N ;
-fun underevaluation_N : N ;
-fun undervaluation_N : N ;
-fun overvaluation_N : N ;
-fun attenuation_N : N ;
-fun extenuation_N : N ;
-fun insinuation_N : N ;
-fun continuation_N : N ;
-fun superannuation_N : N ;
-fun equation_N : N ;
-fun menstruation_N : N ;
-fun infatuation_N : N ;
-fun punctuation_N : N ;
-fun fluctuation_N : N ;
-fun perpetuation_N : N ;
-fun habituation_N : N ;
-fun situation_N : N ;
-fun accentuation_N : N ;
-fun excavation_N : N ;
-fun aggravation_N : N ;
-fun elevation_N : N ;
-fun salivation_N : N ;
-fun derivation_N : N ;
-fun privation_N : N ;
-fun deprivation_N : N ;
-fun activation_N : N ;
-fun deactivation_N : N ;
-fun inactivation_N : N ;
-fun titivation_N : N ;
-fun cultivation_N : N ;
-fun motivation_N : N ;
-fun captivation_N : N ;
-fun estivation_N : N ;
-fun salvation_N : N ;
-fun solvation_N : N ;
-fun ovation_N : N ;
-fun novation_N : N ;
-fun renovation_N : N ;
-fun innovation_N : N ;
-fun starvation_N : N ;
-fun enervation_N : N ;
-fun innervation_N : N ;
-fun observation_N : N ;
-fun reservation_N : N ;
-fun preservation_N : N ;
-fun 'self-preservation_N' : N ;
-fun conservation_N : N ;
-fun incurvation_N : N ;
-fun relaxation_N : N ;
-fun taxation_N : N ;
-fun indexation_N : N ;
-fun annexation_N : N ;
-fun vexation_N : N ;
-fun fixation_N : N ;
-fun prefixation_N : N ;
-fun affixation_N : N ;
-fun suffixation_N : N ;
-fun luxation_N : N ;
-fun subluxation_N : N ;
-fun ruggedization_N : N ;
-fun hybridization_N : N ;
-fun fluoridization_N : N ;
-fun subsidization_N : N ;
-fun oxidization_N : N ;
-fun standardization_N : N ;
-fun bastardization_N : N ;
-fun marbleization_N : N ;
-fun mythologization_N : N ;
-fun demythologization_N : N ;
-fun tribalization_N : N ;
-fun detribalization_N : N ;
-fun globalization_N : N ;
-fun verbalization_N : N ;
-fun topicalization_N : N ;
-fun lexicalization_N : N ;
-fun focalization_N : N ;
-fun localization_N : N ;
-fun scandalization_N : N ;
-fun idealization_N : N ;
-fun realization_N : N ;
-fun legalization_N : N ;
-fun specialization_N : N ;
-fun socialization_N : N ;
-fun commercialization_N : N ;
-fun serialization_N : N ;
-fun materialization_N : N ;
-fun territorialization_N : N ;
-fun industrialization_N : N ;
-fun decimalization_N : N ;
-fun animalization_N : N ;
-fun formalization_N : N ;
-fun normalization_N : N ;
-fun canalization_N : N ;
-fun penalization_N : N ;
-fun signalization_N : N ;
-fun finalization_N : N ;
-fun marginalization_N : N ;
-fun criminalization_N : N ;
-fun decriminalization_N : N ;
-fun diagonalization_N : N ;
-fun professionalization_N : N ;
-fun nationalization_N : N ;
-fun denationalization_N : N ;
-fun internationalization_N : N ;
-fun rationalization_N : N ;
-fun fictionalization_N : N ;
-fun conventionalization_N : N ;
-fun institutionalization_N : N ;
-fun depersonalization_N : N ;
-fun internalization_N : N ;
-fun externalization_N : N ;
-fun liberalization_N : N ;
-fun federalization_N : N ;
-fun generalization_N : N ;
-fun demineralization_N : N ;
-fun lateralization_N : N ;
-fun moralization_N : N ;
-fun demoralization_N : N ;
-fun centralization_N : N ;
-fun decentralization_N : N ;
-fun neutralization_N : N ;
-fun pluralization_N : N ;
-fun naturalization_N : N ;
-fun nasalization_N : N ;
-fun digitalization_N : N ;
-fun capitalization_N : N ;
-fun overcapitalization_N : N ;
-fun hospitalization_N : N ;
-fun vitalization_N : N ;
-fun devitalization_N : N ;
-fun revitalization_N : N ;
-fun sentimentalization_N : N ;
-fun compartmentalization_N : N ;
-fun brutalization_N : N ;
-fun individualization_N : N ;
-fun equalization_N : N ;
-fun visualization_N : N ;
-fun intellectualization_N : N ;
-fun spiritualization_N : N ;
-fun conceptualization_N : N ;
-fun channelization_N : N ;
-fun novelization_N : N ;
-fun stabilization_N : N ;
-fun destabilization_N : N ;
-fun mobilization_N : N ;
-fun demobilization_N : N ;
-fun immobilization_N : N ;
-fun sterilization_N : N ;
-fun fossilization_N : N ;
-fun fertilization_N : N ;
-fun 'cross-fertilization_N' : N ;
-fun utilization_N : N ;
-fun civilization_N : N ;
-fun crystallization_N : N ;
-fun symbolization_N : N ;
-fun idolization_N : N ;
-fun monopolization_N : N ;
-fun vacuolization_N : N ;
-fun stylization_N : N ;
-fun minimization_N : N ;
-fun victimization_N : N ;
-fun optimization_N : N ;
-fun maximization_N : N ;
-fun solmization_N : N ;
-fun randomization_N : N ;
-fun atomization_N : N ;
-fun dichotomization_N : N ;
-fun urbanization_N : N ;
-fun vulcanization_N : N ;
-fun organization_N : N ;
-fun reorganization_N : N ;
-fun disorganization_N : N ;
-fun mechanization_N : N ;
-fun humanization_N : N ;
-fun dehumanization_N : N ;
-fun galvanization_N : N ;
-fun homogenization_N : N ;
-fun lysogenization_N : N ;
-fun desalinization_N : N ;
-fun destalinization_N : N ;
-fun hyalinization_N : N ;
-fun myelinization_N : N ;
-fun masculinization_N : N ;
-fun feminization_N : N ;
-fun keratinization_N : N ;
-fun solemnization_N : N ;
-fun carbonization_N : N ;
-fun ionization_N : N ;
-fun unionization_N : N ;
-fun colonization_N : N ;
-fun decolonization_N : N ;
-fun demonization_N : N ;
-fun harmonization_N : N ;
-fun reharmonization_N : N ;
-fun canonization_N : N ;
-fun synchronization_N : N ;
-fun opsonization_N : N ;
-fun modernization_N : N ;
-fun fraternization_N : N ;
-fun westernization_N : N ;
-fun immunization_N : N ;
-fun communization_N : N ;
-fun barbarization_N : N ;
-fun vulgarization_N : N ;
-fun familiarization_N : N ;
-fun polarization_N : N ;
-fun depolarization_N : N ;
-fun solarization_N : N ;
-fun secularization_N : N ;
-fun particularization_N : N ;
-fun circularization_N : N ;
-fun vascularization_N : N ;
-fun regularization_N : N ;
-fun popularization_N : N ;
-fun summarization_N : N ;
-fun demilitarization_N : N ;
-fun remilitarization_N : N ;
-fun tenderization_N : N ;
-fun bowdlerization_N : N ;
-fun isomerization_N : N ;
-fun polymerization_N : N ;
-fun pauperization_N : N ;
-fun characterization_N : N ;
-fun catheterization_N : N ;
-fun computerization_N : N ;
-fun pulverization_N : N ;
-fun theorization_N : N ;
-fun categorization_N : N ;
-fun authorization_N : N ;
-fun glamorization_N : N ;
-fun memorization_N : N ;
-fun vaporization_N : N ;
-fun extemporization_N : N ;
-fun terrorization_N : N ;
-fun factorization_N : N ;
-fun motorization_N : N ;
-fun pasteurization_N : N ;
-fun miniaturization_N : N ;
-fun dramatization_N : N ;
-fun schematization_N : N ;
-fun anathematization_N : N ;
-fun systematization_N : N ;
-fun stigmatization_N : N ;
-fun acclimatization_N : N ;
-fun democratization_N : N ;
-fun hypostatization_N : N ;
-fun privatization_N : N ;
-fun alphabetization_N : N ;
-fun magnetization_N : N ;
-fun demagnetization_N : N ;
-fun monetization_N : N ;
-fun demonetization_N : N ;
-fun digitization_N : N ;
-fun unitization_N : N ;
-fun sensitization_N : N ;
-fun desensitization_N : N ;
-fun quantization_N : N ;
-fun peptization_N : N ;
-fun amortization_N : N ;
-fun collectivization_N : N ;
-fun action_N : N ;
-fun 'delayed-action_N' : N ;
-fun redaction_N : N ;
-fun reaction_N : N ;
-fun overreaction_N : N ;
-fun faction_N : N ;
-fun calefaction_N : N ;
-fun tumefaction_N : N ;
-fun benefaction_N : N ;
-fun stupefaction_N : N ;
-fun rarefaction_N : N ;
-fun putrefaction_N : N ;
-fun liquefaction_N : N ;
-fun petrifaction_N : N ;
-fun satisfaction_N : N ;
-fun dissatisfaction_N : N ;
-fun inaction_N : N ;
-fun impaction_N : N ;
-fun compaction_N : N ;
-fun interaction_N : N ;
-fun counteraction_N : N ;
-fun fraction_N : N ;
-fun refraction_N : N ;
-fun diffraction_N : N ;
-fun infraction_N : N ;
-fun traction_N : N ;
-fun subtraction_N : N ;
-fun detraction_N : N ;
-fun retraction_N : N ;
-fun contraction_N : N ;
-fun protraction_N : N ;
-fun abstraction_N : N ;
-fun distraction_N : N ;
-fun attraction_N : N ;
-fun counterattraction_N : N ;
-fun extraction_N : N ;
-fun transaction_N : N ;
-fun exaction_N : N ;
-fun defection_N : N ;
-fun refection_N : N ;
-fun affection_N : N ;
-fun disaffection_N : N ;
-fun infection_N : N ;
-fun suprainfection_N : N ;
-fun superinfection_N : N ;
-fun disinfection_N : N ;
-fun confection_N : N ;
-fun perfection_N : N ;
-fun imperfection_N : N ;
-fun abjection_N : N ;
-fun objection_N : N ;
-fun subjection_N : N ;
-fun ejection_N : N ;
-fun dejection_N : N ;
-fun rejection_N : N ;
-fun injection_N : N ;
-fun projection_N : N ;
-fun introjection_N : N ;
-fun interjection_N : N ;
-fun election_N : N ;
-fun 'by-election_N' : N ;
-fun reelection_N : N ;
-fun selection_N : N ;
-fun deflection_N : N ;
-fun reflection_N : N ;
-fun interreflection_N : N ;
-fun inflection_N : N ;
-fun retroflection_N : N ;
-fun genuflection_N : N ;
-fun predilection_N : N ;
-fun collection_N : N ;
-fun 'loan-collection_N' : N ;
-fun recollection_N : N ;
-fun connection_N : N ;
-fun interconnection_N : N ;
-fun disconnection_N : N ;
-fun circumspection_N : N ;
-fun inspection_N : N ;
-fun retrospection_N : N ;
-fun introspection_N : N ;
-fun erection_N : N ;
-fun direction_N : N ;
-fun indirection_N : N ;
-fun misdirection_N : N ;
-fun correction_N : N ;
-fun resurrection_N : N ;
-fun insurrection_N : N ;
-fun section_N : N ;
-fun 'cross-section_N' : N ;
-fun subsection_N : N ;
-fun venesection_N : N ;
-fun resection_N : N ;
-fun bisection_N : N ;
-fun vivisection_N : N ;
-fun intersection_N : N ;
-fun dissection_N : N ;
-fun detection_N : N ;
-fun protection_N : N ;
-fun radioprotection_N : N ;
-fun advection_N : N ;
-fun convection_N : N ;
-fun diction_N : N ;
-fun contradiction_N : N ;
-fun addiction_N : N ;
-fun malediction_N : N ;
-fun valediction_N : N ;
-fun benediction_N : N ;
-fun prediction_N : N ;
-fun indiction_N : N ;
-fun interdiction_N : N ;
-fun jurisdiction_N : N ;
-fun fiction_N : N ;
-fun nonfiction_N : N ;
-fun dereliction_N : N ;
-fun affliction_N : N ;
-fun infliction_N : N ;
-fun depiction_N : N ;
-fun friction_N : N ;
-fun restriction_N : N ;
-fun constriction_N : N ;
-fun vasoconstriction_N : N ;
-fun eviction_N : N ;
-fun conviction_N : N ;
-fun sanction_N : N ;
-fun distinction_N : N ;
-fun contradistinction_N : N ;
-fun extinction_N : N ;
-fun unction_N : N ;
-fun function_N : N ;
-fun malfunction_N : N ;
-fun dysfunction_N : N ;
-fun junction_N : N ;
-fun 't-junction_N' : N ;
-fun injunction_N : N ;
-fun conjunction_N : N ;
-fun thermojunction_N : N ;
-fun disjunction_N : N ;
-fun nondisjunction_N : N ;
-fun compunction_N : N ;
-fun expunction_N : N ;
-fun decoction_N : N ;
-fun concoction_N : N ;
-fun auction_N : N ;
-fun abduction_N : N ;
-fun subduction_N : N ;
-fun adduction_N : N ;
-fun deduction_N : N ;
-fun reduction_N : N ;
-fun seduction_N : N ;
-fun circumduction_N : N ;
-fun induction_N : N ;
-fun conduction_N : N ;
-fun production_N : N ;
-fun reproduction_N : N ;
-fun coproduction_N : N ;
-fun underproduction_N : N ;
-fun overproduction_N : N ;
-fun introduction_N : N ;
-fun reintroduction_N : N ;
-fun transduction_N : N ;
-fun obstruction_N : N ;
-fun destruction_N : N ;
-fun instruction_N : N ;
-fun construction_N : N ;
-fun deconstruction_N : N ;
-fun reconstruction_N : N ;
-fun misconstruction_N : N ;
-fun suction_N : N ;
-fun liposuction_N : N ;
-fun deletion_N : N ;
-fun depletion_N : N ;
-fun repletion_N : N ;
-fun completion_N : N ;
-fun accretion_N : N ;
-fun secretion_N : N ;
-fun hypersecretion_N : N ;
-fun concretion_N : N ;
-fun discretion_N : N ;
-fun indiscretion_N : N ;
-fun excretion_N : N ;
-fun imbibition_N : N ;
-fun inhibition_N : N ;
-fun prohibition_N : N ;
-fun exhibition_N : N ;
-fun ambition_N : N ;
-fun tradition_N : N ;
-fun extradition_N : N ;
-fun addition_N : N ;
-fun edition_N : N ;
-fun expedition_N : N ;
-fun sedition_N : N ;
-fun rendition_N : N ;
-fun condition_N : N ;
-fun precondition_N : N ;
-fun perdition_N : N ;
-fun audition_N : N ;
-fun erudition_N : N ;
-fun coalition_N : N ;
-fun abolition_N : N ;
-fun demolition_N : N ;
-fun volition_N : N ;
-fun inanition_N : N ;
-fun ignition_N : N ;
-fun cognition_N : N ;
-fun recognition_N : N ;
-fun precognition_N : N ;
-fun definition_N : N ;
-fun redefinition_N : N ;
-fun monition_N : N ;
-fun admonition_N : N ;
-fun premonition_N : N ;
-fun munition_N : N ;
-fun ammunition_N : N ;
-fun coition_N : N ;
-fun apparition_N : N ;
-fun contrition_N : N ;
-fun attrition_N : N ;
-fun nutrition_N : N ;
-fun malnutrition_N : N ;
-fun micturition_N : N ;
-fun parturition_N : N ;
-fun acquisition_N : N ;
-fun requisition_N : N ;
-fun inquisition_N : N ;
-fun disquisition_N : N ;
-fun transition_N : N ;
-fun position_N : N ;
-fun juxtaposition_N : N ;
-fun deposition_N : N ;
-fun redeposition_N : N ;
-fun antiredeposition_N : N ;
-fun electrodeposition_N : N ;
-fun preposition_N : N ;
-fun malposition_N : N ;
-fun imposition_N : N ;
-fun reimposition_N : N ;
-fun composition_N : N ;
-fun decomposition_N : N ;
-fun proposition_N : N ;
-fun apposition_N : N ;
-fun opposition_N : N ;
-fun supposition_N : N ;
-fun presupposition_N : N ;
-fun superposition_N : N ;
-fun interposition_N : N ;
-fun disposition_N : N ;
-fun redisposition_N : N ;
-fun predisposition_N : N ;
-fun indisposition_N : N ;
-fun transposition_N : N ;
-fun postposition_N : N ;
-fun exposition_N : N ;
-fun petition_N : N ;
-fun repetition_N : N ;
-fun competition_N : N ;
-fun dentition_N : N ;
-fun partition_N : N ;
-fun superstition_N : N ;
-fun fruition_N : N ;
-fun tuition_N : N ;
-fun intuition_N : N ;
-fun mention_N : N ;
-fun detention_N : N ;
-fun retention_N : N ;
-fun intention_N : N ;
-fun contention_N : N ;
-fun abstention_N : N ;
-fun distention_N : N ;
-fun attention_N : N ;
-fun inattention_N : N ;
-fun contravention_N : N ;
-fun subvention_N : N ;
-fun prevention_N : N ;
-fun circumvention_N : N ;
-fun invention_N : N ;
-fun convention_N : N ;
-fun supervention_N : N ;
-fun intervention_N : N ;
-fun nonintervention_N : N ;
-fun lotion_N : N ;
-fun motion_N : N ;
-fun emotion_N : N ;
-fun demotion_N : N ;
-fun commotion_N : N ;
-fun locomotion_N : N ;
-fun promotion_N : N ;
-fun notion_N : N ;
-fun potion_N : N ;
-fun 'love-potion_N' : N ;
-fun devotion_N : N ;
-fun caption_N : N ;
-fun contraption_N : N ;
-fun contraception_N : N ;
-fun deception_N : N ;
-fun reception_N : N ;
-fun inception_N : N ;
-fun conception_N : N ;
-fun preconception_N : N ;
-fun misconception_N : N ;
-fun proprioception_N : N ;
-fun interoception_N : N ;
-fun exteroception_N : N ;
-fun perception_N : N ;
-fun apperception_N : N ;
-fun interception_N : N ;
-fun intussusception_N : N ;
-fun exception_N : N ;
-fun ascription_N : N ;
-fun subscription_N : N ;
-fun description_N : N ;
-fun prescription_N : N ;
-fun circumscription_N : N ;
-fun transcription_N : N ;
-fun inscription_N : N ;
-fun conscription_N : N ;
-fun proscription_N : N ;
-fun superscription_N : N ;
-fun 'pre-emption_N' : N ;
-fun redemption_N : N ;
-fun preemption_N : N ;
-fun exemption_N : N ;
-fun gumption_N : N ;
-fun subsumption_N : N ;
-fun resumption_N : N ;
-fun presumption_N : N ;
-fun consumption_N : N ;
-fun assumption_N : N ;
-fun option_N : N ;
-fun adoption_N : N ;
-fun sorption_N : N ;
-fun absorption_N : N ;
-fun malabsorption_N : N ;
-fun adsorption_N : N ;
-fun desorption_N : N ;
-fun resorption_N : N ;
-fun chemisorption_N : N ;
-fun eruption_N : N ;
-fun interruption_N : N ;
-fun irruption_N : N ;
-fun corruption_N : N ;
-fun disruption_N : N ;
-fun desertion_N : N ;
-fun insertion_N : N ;
-fun assertion_N : N ;
-fun 'self-assertion_N' : N ;
-fun reassertion_N : N ;
-fun exertion_N : N ;
-fun overexertion_N : N ;
-fun abortion_N : N ;
-fun portion_N : N ;
-fun proportion_N : N ;
-fun disproportion_N : N ;
-fun contortion_N : N ;
-fun distortion_N : N ;
-fun extortion_N : N ;
-fun bastion_N : N ;
-fun suggestion_N : N ;
-fun autosuggestion_N : N ;
-fun digestion_N : N ;
-fun indigestion_N : N ;
-fun congestion_N : N ;
-fun question_N : N ;
-fun exhaustion_N : N ;
-fun combustion_N : N ;
-fun caution_N : N ;
-fun precaution_N : N ;
-fun incaution_N : N ;
-fun retribution_N : N ;
-fun contribution_N : N ;
-fun distribution_N : N ;
-fun redistribution_N : N ;
-fun equidistribution_N : N ;
-fun attribution_N : N ;
-fun prosecution_N : N ;
-fun persecution_N : N ;
-fun execution_N : N ;
-fun locution_N : N ;
-fun elocution_N : N ;
-fun allocution_N : N ;
-fun circumlocution_N : N ;
-fun electrocution_N : N ;
-fun ablution_N : N ;
-fun elution_N : N ;
-fun dilution_N : N ;
-fun pollution_N : N ;
-fun solution_N : N ;
-fun absolution_N : N ;
-fun resolution_N : N ;
-fun irresolution_N : N ;
-fun dissolution_N : N ;
-fun volution_N : N ;
-fun evolution_N : N ;
-fun devolution_N : N ;
-fun macroevolution_N : N ;
-fun microevolution_N : N ;
-fun revolution_N : N ;
-fun 'counter-revolution_N' : N ;
-fun counterrevolution_N : N ;
-fun circumvolution_N : N ;
-fun involution_N : N ;
-fun convolution_N : N ;
-fun diminution_N : N ;
-fun substitution_N : N ;
-fun destitution_N : N ;
-fun restitution_N : N ;
-fun institution_N : N ;
-fun constitution_N : N ;
-fun prostitution_N : N ;
-fun oblivion_N : N ;
-fun alluvion_N : N ;
-fun flexion_N : N ;
-fun reflexion_N : N ;
-fun dorsiflexion_N : N ;
-fun inflexion_N : N ;
-fun genuflexion_N : N ;
-fun complexion_N : N ;
-fun connexion_N : N ;
-fun crucifixion_N : N ;
-fun zion_N : N ;
-fun chalazion_N : N ;
-fun donjon_N : N ;
-fun ikon_N : N ;
-fun halon_N : N ;
-fun paleencephalon_N : N ;
-fun neencephalon_N : N ;
-fun diencephalon_N : N ;
-fun telencephalon_N : N ;
-fun myelencephalon_N : N ;
-fun rhinencephalon_N : N ;
-fun metencephalon_N : N ;
-fun salon_N : N ;
-fun 'beauty-salon_N' : N ;
-fun talon_N : N ;
-fun schizopetalon_N : N ;
-fun felon_N : N ;
-fun echelon_N : N ;
-fun melon_N : N ;
-fun pademelon_N : N ;
-fun muskmelon_N : N ;
-fun watermelon_N : N ;
-fun mouflon_N : N ;
-fun tiglon_N : N ;
-fun decathlon_N : N ;
-fun pentathlon_N : N ;
-fun epsilon_N : N ;
-fun upsilon_N : N ;
-fun gallon_N : N ;
-fun papillon_N : N ;
-fun carillon_N : N ;
-fun bouillon_N : N ;
-fun colon_N : N ;
-fun megacolon_N : N ;
-fun semicolon_N : N ;
-fun mesocolon_N : N ;
-fun stolon_N : N ;
-fun merlon_N : N ;
-fun nylon_N : N ;
-fun pylon_N : N ;
-fun cinnamon_N : N ;
-fun daemon_N : N ;
-fun demon_N : N ;
-fun cacodemon_N : N ;
-fun eudemon_N : N ;
-fun hegemon_N : N ;
-fun lemon_N : N ;
-fun gammon_N : N ;
-fun backgammon_N : N ;
-fun mammon_N : N ;
-fun persimmon_N : N ;
-fun common_N : N ;
-fun gnomon_N : N ;
-fun sermon_N : N ;
+fun Greek_A : A ;
+fun Greek_N : N ;
+fun Hungarian_A : A ;
+fun Hungarian_N : N ;
+fun IOU_N : N ;
+fun Indian_A : A ;
+fun Indian_N : N ;
+fun Iranian_A : A ;
+fun Iranian_N : N ;
+fun Irish_A : A ;
+fun Irish_N : N ;
+fun Islam_N : N ;
+fun Islamic_A : A ;
+fun Italian_A : A ;
+fun Italian_N : N ;
+fun January_N : N ;
+fun Japanese_A : A ;
+fun Japanese_N : N ;
+fun Jew_N : N ;
+fun Jordanian_A : A ;
+fun Jordanian_N : N ;
+fun June_N : N ;
+fun Kurd_N : N ;
+fun Lebanese_A : A ;
+fun Lebanese_N : N ;
+fun Macedonian_A : A ;
+fun Macedonian_N : N ;
+fun Magyar_A : A ;
+fun Magyar_N : N ;
+fun March_N : N ;
+fun May_N : N ;
+fun Monday_N : N ;
+fun Mormon_A : A ;
fun Mormon_N : N ;
-fun ichneumon_N : N ;
-fun etymon_N : N ;
-fun canon_N : N ;
-fun organon_N : N ;
-fun olecranon_N : N ;
-fun paregmenon_N : N ;
-fun prolegomenon_N : N ;
-fun epiphenomenon_N : N ;
-fun noumenon_N : N ;
-fun tenon_N : N ;
-fun guenon_N : N ;
-fun xenon_N : N ;
-fun chignon_N : N ;
-fun bourguignon_N : N ;
-fun ninon_N : N ;
-fun pinon_N : N ;
-fun cannon_N : N ;
-fun watercannon_N : N ;
-fun pennon_N : N ;
-fun boon_N : N ;
-fun baboon_N : N ;
-fun coon_N : N ;
-fun racoon_N : N ;
-fun raccoon_N : N ;
-fun puccoon_N : N ;
-fun cocoon_N : N ;
-fun tycoon_N : N ;
-fun bridoon_N : N ;
-fun cardoon_N : N ;
-fun buffoon_N : N ;
-fun goon_N : N ;
-fun lagoon_N : N ;
-fun dragoon_N : N ;
-fun jargoon_N : N ;
-fun typhoon_N : N ;
-fun dioon_N : N ;
-fun loon_N : N ;
-fun saloon_N : N ;
-fun pantaloon_N : N ;
-fun doubloon_N : N ;
-fun balloon_N : N ;
-fun 'kite-balloon_N' : N ;
-fun moon_N : N ;
-fun simoon_N : N ;
-fun honeymoon_N : N ;
-fun noon_N : N ;
-fun forenoon_N : N ;
-fun afternoon_N : N ;
-fun midafternoon_N : N ;
-fun poon_N : N ;
-fun lampoon_N : N ;
-fun harpoon_N : N ;
-fun spoon_N : N ;
-fun teaspoon_N : N ;
-fun tablespoon_N : N ;
-fun soupspoon_N : N ;
-fun dessertspoon_N : N ;
-fun macaroon_N : N ;
-fun maroon_N : N ;
-fun quadroon_N : N ;
-fun kroon_N : N ;
-fun tenoroon_N : N ;
-fun octoroon_N : N ;
-fun vinegarroon_N : N ;
-fun poltroon_N : N ;
-fun monsoon_N : N ;
-fun bassoon_N : N ;
-fun contrabassoon_N : N ;
-fun saskatoon_N : N ;
-fun platoon_N : N ;
-fun pontoon_N : N ;
-fun cartoon_N : N ;
-fun festoon_N : N ;
-fun spittoon_N : N ;
-fun swoon_N : N ;
-fun capon_N : N ;
-fun weapon_N : N ;
-fun bioweapon_N : N ;
-fun slipon_N : N ;
-fun crampon_N : N ;
-fun tampon_N : N ;
-fun pompon_N : N ;
-fun tarpon_N : N ;
-fun coupon_N : N ;
-fun baron_N : N ;
-fun macron_N : N ;
-fun micron_N : N ;
-fun omicron_N : N ;
-fun chylomicron_N : N ;
-fun hadron_N : N ;
-fun squadron_N : N ;
-fun decahedron_N : N ;
-fun dodecahedron_N : N ;
-fun tetrahedron_N : N ;
-fun icosahedron_N : N ;
-fun octahedron_N : N ;
-fun pentahedron_N : N ;
-fun hexahedron_N : N ;
-fun rhombohedron_N : N ;
-fun trapezohedron_N : N ;
-fun polyhedron_N : N ;
-fun caldron_N : N ;
-fun chaldron_N : N ;
-fun cauldron_N : N ;
-fun epidendron_N : N ;
-fun rhododendron_N : N ;
-fun philodendron_N : N ;
-fun interferon_N : N ;
-fun heron_N : N ;
-fun aileron_N : N ;
-fun ephemeron_N : N ;
-fun chaperon_N : N ;
-fun operon_N : N ;
-fun hyperon_N : N ;
-fun enteron_N : N ;
-fun archenteron_N : N ;
-fun coelenteron_N : N ;
-fun neuropteron_N : N ;
-fun deuteron_N : N ;
-fun saffron_N : N ;
-fun chanfron_N : N ;
-fun nephron_N : N ;
-fun iron_N : N ;
-fun 'angle-iron_N' : N ;
-fun 'pig-iron_N' : N ;
-fun 'branding-iron_N' : N ;
-fun 'smoothing-iron_N' : N ;
-fun 'grappling-iron_N' : N ;
-fun 'searing-iron_N' : N ;
-fun 'soldering-iron_N' : N ;
-fun 'putting-iron_N' : N ;
-fun 'scrap-iron_N' : N ;
-fun 'cramp-iron_N' : N ;
-fun 'flat-iron_N' : N ;
-fun midiron_N : N ;
-fun gridiron_N : N ;
-fun andiron_N : N ;
-fun flatiron_N : N ;
-fun boron_N : N ;
-fun moron_N : N ;
-fun oxymoron_N : N ;
-fun apron_N : N ;
-fun matron_N : N ;
-fun patron_N : N ;
-fun betatron_N : N ;
-fun bevatron_N : N ;
-fun electron_N : N ;
-fun photoelectron_N : N ;
-fun magnetron_N : N ;
-fun citron_N : N ;
-fun quercitron_N : N ;
-fun positron_N : N ;
-fun intron_N : N ;
-fun cyclotron_N : N ;
-fun synchrocyclotron_N : N ;
-fun cosmotron_N : N ;
-fun synchrotron_N : N ;
-fun plastron_N : N ;
-fun klystron_N : N ;
-fun neutron_N : N ;
-fun antineutron_N : N ;
-fun linuron_N : N ;
-fun chevron_N : N ;
-fun son_N : N ;
-fun reason_N : N ;
-fun treason_N : N ;
-fun season_N : N ;
-fun preseason_N : N ;
-fun mason_N : N ;
-fun freemason_N : N ;
-fun stonemason_N : N ;
-fun diapason_N : N ;
-fun dobson_N : N ;
-fun grandson_N : N ;
-fun godson_N : N ;
-fun meson_N : N ;
-fun antimeson_N : N ;
-fun liaison_N : N ;
-fun benison_N : N ;
-fun venison_N : N ;
-fun unison_N : N ;
-fun poison_N : N ;
-fun caparison_N : N ;
-fun comparison_N : N ;
-fun grison_N : N ;
-fun orison_N : N ;
-fun prison_N : N ;
-fun garrison_N : N ;
-fun keelson_N : N ;
-fun nelson_N : N ;
-fun damson_N : N ;
-fun crimson_N : N ;
-fun boson_N : N ;
-fun transposon_N : N ;
-fun stepson_N : N ;
-fun arson_N : N ;
-fun parson_N : N ;
-fun person_N : N ;
-fun foreperson_N : N ;
-fun nonperson_N : N ;
-fun counterperson_N : N ;
-fun spokesperson_N : N ;
-fun salesperson_N : N ;
-fun businessperson_N : N ;
-fun lesson_N : N ;
-fun caisson_N : N ;
-fun frisson_N : N ;
-fun stetson_N : N ;
-fun advowson_N : N ;
-fun hyson_N : N ;
-fun ton_N : N ;
-fun baton_N : N ;
-fun hyperbaton_N : N ;
-fun megaton_N : N ;
-fun automaton_N : N ;
-fun craton_N : N ;
-fun sheraton_N : N ;
-fun phaeton_N : N ;
-fun asyndeton_N : N ;
-fun polysyndeton_N : N ;
-fun halogeton_N : N ;
-fun doubleton_N : N ;
-fun skeleton_N : N ;
-fun endoskeleton_N : N ;
-fun cytoskeleton_N : N ;
-fun exoskeleton_N : N ;
-fun singleton_N : N ;
-fun simpleton_N : N ;
-fun magneton_N : N ;
-fun wellington_N : N ;
-fun chiton_N : N ;
-fun soliton_N : N ;
-fun piton_N : N ;
-fun briton_N : N ;
-fun triton_N : N ;
-fun graviton_N : N ;
-fun nekton_N : N ;
-fun plankton_N : N ;
-fun zooplankton_N : N ;
-fun phytoplankton_N : N ;
-fun stilton_N : N ;
-fun wilton_N : N ;
-fun canton_N : N ;
-fun wanton_N : N ;
-fun badminton_N : N ;
-fun photon_N : N ;
-fun kiloton_N : N ;
-fun croton_N : N ;
-fun proton_N : N ;
-fun antiproton_N : N ;
-fun polyptoton_N : N ;
-fun alkapton_N : N ;
-fun lepton_N : N ;
-fun antilepton_N : N ;
-fun krypton_N : N ;
-fun carton_N : N ;
-fun burton_N : N ;
-fun charleston_N : N ;
-fun phlogiston_N : N ;
-fun piston_N : N ;
-fun cotton_N : N ;
-fun guncotton_N : N ;
-fun button_N : N ;
-fun glutton_N : N ;
-fun mutton_N : N ;
-fun teuton_N : N ;
-fun futon_N : N ;
-fun muton_N : N ;
-fun mouton_N : N ;
-fun crouton_N : N ;
-fun newton_N : N ;
-fun sexton_N : N ;
-fun psilophyton_N : N ;
-fun tauon_N : N ;
-fun antitauon_N : N ;
-fun gluon_N : N ;
-fun muon_N : N ;
-fun antimuon_N : N ;
-fun axon_N : N ;
-fun klaxon_N : N ;
-fun saxon_N : N ;
-fun 'anglo-saxon_N' : N ;
-fun exon_N : N ;
-fun rayon_N : N ;
-fun crayon_N : N ;
-fun halcyon_N : N ;
-fun canyon_N : N ;
-fun toyon_N : N ;
-fun baryon_N : N ;
-fun antibaryon_N : N ;
-fun dacryon_N : N ;
-fun ophryon_N : N ;
-fun blazon_N : N ;
-fun amazon_N : N ;
-fun horizon_N : N ;
-fun soupçon_N : N ;
-fun cañon_N : N ;
-fun rn_N : N ;
-fun barn_N : N ;
-fun 'tithe-barn_N' : N ;
-fun cowbarn_N : N ;
-fun darn_N : N ;
-fun 'pay-as-you-earn_N' : N ;
-fun tarn_N : N ;
-fun yarn_N : N ;
-fun 'rope-yarn_N' : N ;
-fun ern_N : N ;
-fun concern_N : N ;
-fun unconcern_N : N ;
-fun modern_N : N ;
-fun fern_N : N ;
-fun 'tree-fern_N' : N ;
-fun kern_N : N ;
-fun casern_N : N ;
-fun tern_N : N ;
-fun lectern_N : N ;
-fun subaltern_N : N ;
-fun lantern_N : N ;
-fun 'jack-o\'-lantern_N' : N ;
-fun 'storm-lantern_N' : N ;
-fun intern_N : N ;
-fun stern_N : N ;
-fun pastern_N : N ;
-fun western_N : N ;
-fun cistern_N : N ;
-fun postern_N : N ;
-fun slattern_N : N ;
-fun pattern_N : N ;
-fun 'willow-pattern_N' : N ;
-fun bittern_N : N ;
-fun cittern_N : N ;
-fun extern_N : N ;
-fun quern_N : N ;
-fun cavern_N : N ;
-fun klavern_N : N ;
-fun tavern_N : N ;
-fun wyvern_N : N ;
-fun bairn_N : N ;
-fun cairn_N : N ;
-fun firstborn_N : N ;
-fun corn_N : N ;
-fun 'seed-corn_N' : N ;
-fun acorn_N : N ;
-fun bicorn_N : N ;
-fun unicorn_N : N ;
-fun tricorn_N : N ;
-fun broomcorn_N : N ;
-fun popcorn_N : N ;
-fun peppercorn_N : N ;
-fun scorn_N : N ;
-fun barleycorn_N : N ;
-fun horn_N : N ;
-fun 'powder-horn_N' : N ;
-fun shoehorn_N : N ;
-fun leghorn_N : N ;
-fun bighorn_N : N ;
-fun longhorn_N : N ;
-fun pronghorn_N : N ;
-fun foghorn_N : N ;
-fun stinkhorn_N : N ;
-fun flugelhorn_N : N ;
-fun bullhorn_N : N ;
-fun krummhorn_N : N ;
-fun greenhorn_N : N ;
-fun thorn_N : N ;
-fun whitethorn_N : N ;
-fun blackthorn_N : N ;
-fun buckthorn_N : N ;
-fun shorthorn_N : N ;
-fun hawthorn_N : N ;
-fun saxhorn_N : N ;
-fun morn_N : N ;
-fun porn_N : N ;
-fun srn_N : N ;
-fun urn_N : N ;
-fun 'tea-urn_N' : N ;
-fun burn_N : N ;
-fun windburn_N : N ;
-fun sideburn_N : N ;
-fun sunburn_N : N ;
-fun heartburn_N : N ;
-fun churn_N : N ;
-fun 'milk-churn_N' : N ;
-fun bourn_N : N ;
-fun sojourn_N : N ;
-fun turn_N : N ;
-fun 'right-turn_N' : N ;
-fun 'u-turn_N' : N ;
-fun return_N : N ;
-fun 'day-return_N' : N ;
-fun downturn_N : N ;
-fun upturn_N : N ;
-fun overturn_N : N ;
-fun bo'sn_N : N ;
-fun usn_N : N ;
-fun un_N : N ;
-fun faun_N : N ;
-fun leprechaun_N : N ;
-fun bun_N : N ;
-fun tabun_N : N ;
-fun oyabun_N : N ;
-fun dun_N : N ;
-fun fun_N : N ;
-fun gun_N : N ;
-fun 'machine-gun_N' : N ;
-fun 'grease-gun_N' : N ;
-fun 'minute-gun_N' : N ;
-fun 'whaling-gun_N' : N ;
-fun 'spring-gun_N' : N ;
-fun 'bren-gun_N' : N ;
-fun 'spray-gun_N' : N ;
-fun 'tommy-gun_N' : N ;
-fun flashgun_N : N ;
-fun shogun_N : N ;
-fun popgun_N : N ;
-fun shotgun_N : N ;
-fun blowgun_N : N ;
-fun hun_N : N ;
-fun nun_N : N ;
-fun noun_N : N ;
-fun adnoun_N : N ;
-fun pronoun_N : N ;
-fun pun_N : N ;
-fun homespun_N : N ;
-fun run_N : N ;
-fun 'fowl-run_N' : N ;
-fun 'chicken-run_N' : N ;
-fun rerun_N : N ;
-fun funrun_N : N ;
-fun sheeprun_N : N ;
-fun sun_N : N ;
-fun bo'sun_N : N ;
-fun whitsun_N : N ;
-fun tun_N : N ;
-fun awn_N : N ;
-fun dawn_N : N ;
-fun fawn_N : N ;
-fun lawn_N : N ;
-fun pawn_N : N ;
-fun spawn_N : N ;
-fun brawn_N : N ;
-fun prawn_N : N ;
-fun yawn_N : N ;
-fun down_N : N ;
-fun 'climb-down_N' : N ;
-fun 'rub-down_N' : N ;
-fun 'hand-me-down_N' : N ;
-fun 'close-down_N' : N ;
-fun 'dressing-down_N' : N ;
-fun 'back-down_N' : N ;
-fun 'crack-down_N' : N ;
-fun 'clamp-down_N' : N ;
-fun 'swan\'s-down_N' : N ;
-fun 'let-down_N' : N ;
-fun 'put-down_N' : N ;
-fun rubdown_N : N ;
-fun standdown_N : N ;
-fun shakedown_N : N ;
-fun takedown_N : N ;
-fun thistledown_N : N ;
-fun comedown_N : N ;
-fun touchdown_N : N ;
-fun splashdown_N : N ;
-fun breakdown_N : N ;
-fun crackdown_N : N ;
-fun lockdown_N : N ;
-fun knockdown_N : N ;
-fun lookdown_N : N ;
-fun rundown_N : N ;
-fun sundown_N : N ;
-fun godown_N : N ;
-fun clampdown_N : N ;
-fun eiderdown_N : N ;
-fun meltdown_N : N ;
-fun countdown_N : N ;
-fun shutdown_N : N ;
-fun showdown_N : N ;
-fun slowdown_N : N ;
-fun gown_N : N ;
-fun 'dressing-gown_N' : N ;
-fun nightgown_N : N ;
-fun clown_N : N ;
-fun renown_N : N ;
-fun unknown_N : N ;
-fun brown_N : N ;
-fun crown_N : N ;
-fun 'half-crown_N' : N ;
-fun frown_N : N ;
-fun town_N : N ;
-fun 'market-town_N' : N ;
-fun hometown_N : N ;
-fun uptown_N : N ;
-fun shantytown_N : N ;
-fun tyiyn_N : N ;
-fun selsyn_N : N ;
-fun do_N : N ;
-fun bastinado_N : N ;
-fun 'el dorado_N' : N ;
-fun go_N : N ;
-fun 'sentry-go_N' : N ;
-fun 'billy-ho_N' : N ;
-fun dekko_N : N ;
-fun mo_N : N ;
-fun intro_N : N ;
-fun so_N : N ;
-fun 'stand-to_N' : N ;
-fun graffito_N : N ;
-fun ditto_N : N ;
-fun 'quid pro quo_N' : N ;
-fun 'status quo_N' : N ;
-fun buffalo_N : N ;
-fun 'billy-o_N' : N ;
-fun carabao_N : N ;
-fun fao_N : N ;
-fun hao_N : N ;
-fun jiao_N : N ;
-fun lao_N : N ;
-fun curaçao_N : N ;
-fun cacao_N : N ;
-fun gazebo_N : N ;
-fun ceibo_N : N ;
-fun angwantibo_N : N ;
-fun mambo_N : N ;
-fun bimbo_N : N ;
-fun umbo_N : N ;
-fun 'mumbo-jumbo_N' : N ;
-fun columbo_N : N ;
-fun adobo_N : N ;
-fun bubo_N : N ;
+fun Mormonism_N : N ;
+fun Muslim_N : N ;
+fun Namibian_A : A ;
+fun Namibian_N : N ;
+fun North_A : A ;
+fun North_Adv : Adv ;
+fun North_N : N ;
+fun Northern_A : A ;
+fun November_N : N ;
+fun OAP_N : N ;
+fun October_N : N ;
+fun Pakistani_A : A ;
+fun Pakistani_N : N ;
+fun Persian_A : A ;
+fun Persian_N : N ;
+fun Philippine_A : A ;
+fun Philippine_N : N ;
+fun Pole_N : N ;
+fun Polish_A : A ;
+fun Polish_N : N ;
+fun Portuguese_A : A ;
+fun Portuguese_N : N ;
+fun Prussian_A : A ;
+fun Prussian_N : N ;
+fun Romanian_A : A ;
+fun Romanian_N : N ;
+fun Russian_A : A ;
+fun Russian_N : N ;
+fun Saturday_N : N ;
+fun Scandinavian_A : A ;
+fun Scandinavian_N : N ;
+fun September_N : N ;
+fun Singaporean_A : A ;
+fun Singaporean_N : N ;
+fun Somali_A : A ;
+fun Somali_N : N ;
+fun Somalian_A : A ;
+fun Somalian_N : N ;
+fun South_A : A ;
+fun South_Adv : Adv ;
+fun South_N : N ;
+fun Southern_A : A ;
+fun Soviet_A : A ;
+fun Soviet_N : N ;
+fun Spanish_A : A ;
+fun Spanish_N : N ;
+fun Sunday_N : N ;
+fun Swede_A : A ;
+fun Swede_N : N ;
+fun Swedish_A : A ;
+fun Swedish_N : N ;
+fun Swiss_A : A ;
+fun Syrian_A : A ;
+fun Syrian_N : N ;
+fun TV_N : N ;
+fun Taiwanese_A : A ;
+fun Taiwanese_N : N ;
+fun Thai_A : A ;
+fun Thursday_N : N ;
+fun Tibetan_A : A ;
+fun Tibetan_N : N ;
+fun Tuesday_N : N ;
+fun Turk_N : N ;
+fun Turkey_N : N ;
+fun Turkish_A : A ;
+fun Turkish_N : N ;
+fun UFO_N : N ;
+fun Vietnamese_A : A ;
+fun Vietnamese_N : N ;
+fun WC_N : N ;
+fun Wednesday_N : N ;
+fun West_A : A ;
+fun West_Adv : Adv ;
+fun West_N : N ;
+fun Western_A : A ;
+fun Zimbabwean_A : A ;
+fun Zimbabwean_N : N ;
+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 aalii_N : N ;
+fun aardvark_N : N ;
+fun aardwolf_N : N ;
+fun ab_initio_Adv : Adv ;
+fun aba_N : N ;
+fun abaca_N : N ;
+fun aback_Adv : Adv ;
+fun abactinal_A : A ;
+fun abacus_N : N ;
+fun abaft_Adv : Adv ;
+fun abaft_Prep : Prep ;
+fun abalone_N : N ;
+fun abampere_N : N ;
+fun abandon_N : N ;
+fun abandon_V : V ;
+fun abandonment_N : N ;
+fun abarticulation_N : N ;
+fun abase_V : V ;
+fun abasement_N : N ;
+fun abash_V : V ;
+fun abashment_N : N ;
+fun abasia_N : N ;
+fun abasic_A : A ;
+fun abatable_A : A ;
+fun abate_V : V ;
+fun abatement_N : N ;
+fun abator_N : N ;
+fun abattis_N : N ;
+fun abattoir_N : N ;
+fun abaxial_A : A ;
+fun abaya_N : N ;
+fun abbacy_N : N ;
+fun abbatial_A : A ;
+fun abbe_N : N ;
+fun abbess_N : N ;
+fun abbey_N : N ;
+fun abbot_N : N ;
+fun abbreviate_V : V ;
+fun abbreviation_N : N ;
+fun abbé_N : N ;
+fun abc_N : N ;
+fun abcoulomb_N : N ;
+fun abdicable_A : A ;
+fun abdicate_V : V ;
+fun abdication_N : N ;
+fun abdicator_N : N ;
+fun abdomen_N : N ;
+fun abdominal_A : A ;
+fun abdominal_N : N ;
+fun abdominocentesis_N : N ;
+fun abdominoplasty_N : N ;
+fun abdominous_A : A ;
+fun abdominousness_N : N ;
+fun abdominovesical_A : A ;
+fun abducent_A : A ;
+fun abducent_N : N ;
+fun abduct_V : V ;
+fun abduction_N : N ;
+fun abductor_N : N ;
+fun abeam_Adv : Adv ;
+fun abecedarian_A : A ;
+fun abecedarian_N : N ;
+fun abecedarius_N : N ;
+fun abed_Adv : Adv ;
+fun abelia_N : N ;
+fun abelmosk_N : N ;
+fun aberrance_N : N ;
+fun aberrant_A : A ;
+fun aberrant_N : N ;
+fun aberration_N : N ;
+fun abet_V : V ;
+fun abetalipoproteinemia_N : N ;
+fun abetment_N : N ;
+fun abettor_N : N ;
+fun abeyance_N : N ;
+fun abeyant_A : A ;
+fun abfarad_N : N ;
+fun abhenry_N : N ;
+fun abhor_V : V ;
+fun abhorrence_N : N ;
+fun abhorrent_A : A ;
+fun abhorrer_N : N ;
+fun abidance_N : N ;
+fun abide_V : V ;
+fun abience_N : N ;
+fun abient_A : A ;
+fun ability_N : N ;
+fun abiogenesis_N : N ;
+fun abiogenetic_A : A ;
+fun abiogenist_N : N ;
+fun abiotrophy_N : N ;
+fun abject_A : A ;
+fun abjection_N : N ;
+fun abjuration_N : N ;
+fun abjure_V : V ;
+fun abjurer_N : N ;
+fun ablactation_N : N ;
+fun ablated_A : A ;
+fun ablation_N : N ;
+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 ableism_N : N ;
+fun ablepharia_N : N ;
+fun abloom_A : A ;
+fun ablution_N : N ;
+fun ablutionary_A : A ;
+fun abnegation_N : N ;
+fun abnegator_N : N ;
+fun abnormal_A : A ;
+fun abnormality_N : N ;
fun abo_N : N ;
-fun placebo_N : N ;
-fun limbo_N : N ;
-fun gumbo_N : N ;
-fun hobo_N : N ;
-fun kobo_N : N ;
-fun yobo_N : N ;
-fun co_N : N ;
-fun guanaco_N : N ;
-fun touraco_N : N ;
-fun taco_N : N ;
-fun morocco_N : N ;
-fun deco_N : N ;
-fun zydeco_N : N ;
-fun magnifico_N : N ;
-fun calico_N : N ;
-fun nco_N : N ;
-fun flamenco_N : N ;
-fun bunco_N : N ;
-fun junco_N : N ;
-fun rococo_N : N ;
-fun tabasco_N : N ;
-fun barbasco_N : N ;
-fun cisco_N : N ;
-fun pachuco_N : N ;
-fun basuco_N : N ;
-fun tobacco_N : N ;
-fun sirocco_N : N ;
-fun stucco_N : N ;
-fun medico_N : N ;
-fun portico_N : N ;
-fun bronco_N : N ;
-fun coco_N : N ;
-fun fiasco_N : N ;
-fun fresco_N : N ;
-fun disco_N : N ;
-fun 'derring-do_N' : N ;
-fun ado_N : N ;
-fun fado_N : N ;
-fun carbonado_N : N ;
-fun aficionado_N : N ;
-fun tornado_N : N ;
-fun strappado_N : N ;
-fun desperado_N : N ;
-fun albedo_N : N ;
-fun torpedo_N : N ;
-fun teredo_N : N ;
-fun livedo_N : N ;
-fun aikido_N : N ;
-fun dildo_N : N ;
-fun glissando_N : N ;
-fun sforzando_N : N ;
-fun decrescendo_N : N ;
-fun innuendo_N : N ;
-fun secondo_N : N ;
-fun judo_N : N ;
-fun ludo_N : N ;
-fun peludo_N : N ;
-fun testudo_N : N ;
-fun 'how-d\'ye-do_N' : N ;
-fun 'to-do_N' : N ;
-fun avocado_N : N ;
-fun dado_N : N ;
-fun mikado_N : N ;
-fun bravado_N : N ;
-fun credo_N : N ;
-fun tuxedo_N : N ;
-fun libido_N : N ;
-fun lido_N : N ;
-fun commando_N : N ;
+fun aboard_Adv : Adv ;
+fun aboard_Prep : Prep ;
+fun abocclusion_N : N ;
+fun abode_N : N ;
+fun abohm_N : N ;
+fun abolish_V : V ;
+fun abolishable_A : A ;
+fun abolition_N : N ;
+fun abolitionary_A : A ;
+fun abolitionism_N : N ;
+fun abolitionist_N : N ;
+fun abomasal_A : A ;
+fun abomasum_N : N ;
+fun abominable_A : A ;
+fun abominate_V : V ;
+fun abomination_N : N ;
+fun abominator_N : N ;
+fun aborad_Adv : Adv ;
+fun aboral_A : A ;
+fun aboriginal_A : A ;
+fun aboriginal_N : N ;
+fun aborigine_N : N ;
+fun abort_N : N ;
+fun abort_V : V ;
+fun aborticide_N : N ;
+fun abortifacient_A : A ;
+fun abortifacient_N : N ;
+fun abortion_N : N ;
+fun abortionist_N : N ;
+fun abortive_A : A ;
+fun abortus_N : N ;
+fun abound_V : V ;
+fun about_Adv : Adv ;
+fun about_Prep : Prep ;
+fun about_face_N : N ;
+fun about_face_V : V ;
+fun above_A : A ;
+fun above_Adv : Adv ;
+fun above_N : N ;
+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 aboveboard_A : A ;
+fun aboveground_A : A ;
+fun abracadabra_N : N ;
+fun abrachia_N : N ;
+fun abrade_V : V ;
+fun abrader_N : N ;
+fun abranchiate_A : A ;
+fun abrasion_N : N ;
+fun abrasive_A : A ;
+fun abrasive_N : N ;
+fun abrasiveness_N : N ;
+fun abreast_Adv : Adv ;
+fun abridge_V : V ;
+fun abridgement_N : N ;
+fun abridger_N : N ;
+fun abridgment_N : N ;
+fun abroach_A : A ;
+fun abroad_A : A ;
+fun abroad_Adv : Adv ;
+fun abrocome_N : N ;
+fun abrogate_V : V ;
+fun abrogation_N : N ;
+fun abrogator_N : N ;
+fun abrupt_A : A ;
+fun abruptness_N : N ;
+fun abscess_N : N ;
+fun abscessed_A : A ;
+fun abscissa_N : N ;
+fun abscission_N : N ;
+fun abscond_V : V ;
+fun absconder_N : N ;
+fun abscondment_N : N ;
+fun abseiler_N : N ;
+fun absence_N : N ;
+fun absent_A : A ;
+fun absent_Prep : Prep ;
+fun absent_V : V ;
+fun absent_minded_A : A ;
+fun absent_mindedness_N : N ;
+fun absentee_N : N ;
+fun absenteeism_N : N ;
+fun absentmindedness_N : N ;
+fun absinth_N : N ;
+fun absinthe_N : N ;
+fun absolute_A : A ;
+fun absolute_N : N ;
+fun absoluteness_N : N ;
+fun absolution_N : N ;
+fun absolutism_N : N ;
+fun absolutist_A : A ;
+fun absolutist_N : N ;
+fun absolve_V : V ;
+fun absolver_N : N ;
+fun absolvitory_A : A ;
+fun absorb_V : V ;
+fun absorbable_A : A ;
+fun absorbate_N : N ;
+fun absorbefacient_A : A ;
+fun absorbency_N : N ;
+fun absorbent_A : A ;
+fun absorbent_N : N ;
+fun absorber_N : N ;
+fun absorbing_A : A ;
+fun absorption_N : N ;
+fun absorptivity_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 abstinent_A : A ;
+fun abstract_A : A ;
+fun abstract_N : N ;
+fun abstract_V : V ;
+fun abstractedness_N : N ;
+fun abstraction_N : N ;
+fun abstractionism_N : N ;
+fun abstractionist_N : N ;
+fun abstractive_A : A ;
+fun abstractness_N : N ;
+fun abstractor_N : N ;
+fun abstruse_A : A ;
+fun abstruseness_N : N ;
+fun absurd_A : A ;
+fun absurd_N : N ;
+fun absurdity_N : N ;
+fun abulia_N : N ;
+fun abulic_A : A ;
+fun abundance_N : N ;
+fun abundant_A : A ;
+fun abuse_N : N ;
+fun abuse_V : V ;
+fun abuser_N : N ;
+fun abusive_A : A ;
+fun abut_V : V ;
+fun abutment_N : N ;
+fun abutter_N : N ;
+fun abuzz_A : A ;
+fun abvolt_N : N ;
+fun abwatt_N : N ;
+fun abysm_N : N ;
+fun abysmal_A : A ;
+fun abyss_N : N ;
+fun abyssal_A : A ;
+fun acacia_N : N ;
+fun academia_N : N ;
+fun academic_A : A ;
+fun academic_N : N ;
+fun academically_Adv : Adv ;
+fun academician_N : N ;
+fun academicianship_N : N ;
+fun academy_N : N ;
+fun acanthion_N : N ;
+fun acanthocephalan_N : N ;
+fun acanthocyte_N : N ;
+fun acanthocytosis_N : N ;
+fun acanthoid_A : A ;
+fun acantholysis_N : N ;
+fun acanthoma_N : N ;
+fun acanthosis_N : N ;
+fun acanthotic_A : A ;
+fun acanthus_N : N ;
+fun acapnic_A : A ;
+fun acardia_N : N ;
+fun acariasis_N : N ;
+fun acaricide_N : N ;
+fun acarid_N : N ;
+fun acarine_N : N ;
+fun acarophobia_N : N ;
+fun acarpelous_A : A ;
+fun acarpous_A : A ;
+fun acarus_N : N ;
+fun acatalectic_A : A ;
+fun acatalectic_N : N ;
+fun acataphasia_N : N ;
+fun acathexia_N : N ;
+fun acathexis_N : N ;
+fun acaudate_A : A ;
+fun acaulescent_A : A ;
+fun accede_V : V ;
+fun accelerando_A : A ;
+fun accelerando_Adv : Adv ;
fun accelerando_N : N ;
-fun crescendo_N : N ;
-fun diminuendo_N : N ;
-fun rondo_N : N ;
-fun dodo_N : N ;
-fun hairdo_N : N ;
-fun escudo_N : N ;
-fun pseudo_N : N ;
-fun maleo_N : N ;
-fun vireo_N : N ;
-fun oreo_N : N ;
-fun video_N : N ;
-fun rodeo_N : N ;
-fun cameo_N : N ;
-fun roneo_N : N ;
-fun stereo_N : N ;
-fun fo_N : N ;
-fun info_N : N ;
-fun bufo_N : N ;
-fun lumbago_N : N ;
-fun pichiciago_N : N ;
-fun galago_N : N ;
-fun imago_N : N ;
-fun sago_N : N ;
-fun 'pearl-sago_N' : N ;
-fun sapsago_N : N ;
-fun superego_N : N ;
-fun indigo_N : N ;
-fun vitiligo_N : N ;
-fun loligo_N : N ;
-fun amigo_N : N ;
-fun intertrigo_N : N ;
-fun prurigo_N : N ;
-fun impetigo_N : N ;
-fun vertigo_N : N ;
-fun ginkgo_N : N ;
-fun sango_N : N ;
-fun pengo_N : N ;
-fun bingo_N : N ;
-fun dingo_N : N ;
-fun jingo_N : N ;
-fun lingo_N : N ;
-fun gringo_N : N ;
-fun mongo_N : N ;
-fun eryngo_N : N ;
-fun logo_N : N ;
-fun embargo_N : N ;
-fun cargo_N : N ;
-fun supercargo_N : N ;
-fun sorgo_N : N ;
-fun outgo_N : N ;
-fun lanugo_N : N ;
-fun plumbago_N : N ;
-fun dago_N : N ;
-fun archipelago_N : N ;
-fun virago_N : N ;
-fun farrago_N : N ;
-fun ego_N : N ;
-fun 'alter ego_N' : N ;
-fun fandango_N : N ;
-fun mango_N : N ;
-fun tango_N : N ;
-fun quango_N : N ;
-fun flamingo_N : N ;
-fun bongo_N : N ;
-fun largo_N : N ;
-fun macho_N : N ;
-fun nacho_N : N ;
-fun gazpacho_N : N ;
-fun echo_N : N ;
-fun 're-echo_N' : N ;
-fun mho_N : N ;
-fun coho_N : N ;
-fun rho_N : N ;
-fun sesotho_N : N ;
-fun who_N : N ;
-fun poncho_N : N ;
-fun gaucho_N : N ;
-fun nympho_N : N ;
-fun sotho_N : N ;
-fun capriccio_N : N ;
-fun nuncio_N : N ;
-fun internuncio_N : N ;
-fun braggadocio_N : N ;
-fun radio_N : N ;
-fun presidio_N : N ;
-fun audio_N : N ;
-fun studio_N : N ;
-fun agio_N : N ;
+fun accelerate_V : V ;
+fun acceleration_N : N ;
+fun accelerative_A : A ;
+fun accelerator_N : N ;
+fun accelerometer_N : N ;
+fun accent_N : N ;
+fun accent_V : V ;
+fun accentor_N : N ;
+fun accentual_A : A ;
+fun accentuate_V : V ;
+fun accentuation_N : N ;
+fun accept_V : V ;
+fun acceptability_N : N ;
+fun acceptable_A : A ;
+fun acceptance_N : N ;
+fun acceptation_N : N ;
+fun acceptive_A : A ;
+fun acceptor_N : N ;
+fun access_N : N ;
+fun access_V : V ;
+fun accessary_A : A ;
+fun accessary_N : N ;
+fun accessibility_N : N ;
+fun accessible_A : A ;
+fun accession_N : N ;
+fun accessional_A : A ;
+fun accessorial_A : A ;
+fun accessory_A : A ;
+fun accessory_N : N ;
+fun accidence_N : N ;
+fun accident_N : N ;
+fun accident_prone_A : A ;
+fun accidental_A : A ;
+fun accidental_N : N ;
+fun accipitrine_A : A ;
+fun acclaim_N : N ;
+fun acclaim_V : V ;
+fun acclamation_N : N ;
+fun acclimate_V : V ;
+fun acclimation_N : N ;
+fun acclimatization_N : N ;
+fun acclimatize_V : V ;
+fun acclivitous_A : A ;
+fun acclivity_N : N ;
+fun accolade_N : N ;
+fun accommodate_V : V ;
+fun accommodation_N : N ;
+fun accommodational_A : A ;
+fun accommodative_A : A ;
+fun accompaniment_N : N ;
+fun accompanist_N : N ;
+fun accompany_V : V ;
+fun accomplice_N : N ;
+fun accomplish_V : V ;
+fun accomplishable_A : A ;
+fun accomplishment_N : N ;
+fun accord_N : N ;
+fun accord_V : V ;
+fun accordance_N : N ;
+fun accordant_A : A ;
+fun according_to_Prep : Prep ;
+fun accordingly_Adv : Adv ;
+fun accordion_N : N ;
+fun accordionist_N : N ;
+fun accost_V : V ;
+fun accouchement_N : N ;
+fun account_N : N ;
+fun account_V : V ;
+fun accountability_N : N ;
+fun accountable_A : A ;
+fun accountancy_N : N ;
+fun accountant_N : N ;
+fun accountantship_N : N ;
+fun accounting_N : N ;
+fun accoutered_A : A ;
+fun accredit_V : V ;
+fun accreditation_N : N ;
+fun accretion_N : N ;
+fun accretionary_A : A ;
+fun accretive_A : A ;
+fun accrue_V : V ;
+fun acculturation_N : N ;
+fun acculturational_A : A ;
+fun accumbent_A : A ;
+fun accumulate_V : V ;
+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 accusatorial_A : A ;
+fun accuse_V : V ;
+fun accused_N : N ;
+fun accuser_N : N ;
+fun accusingly_Adv : Adv ;
+fun accustom_V : V ;
+fun ace_A : A ;
+fun ace_N : N ;
+fun acebutolol_N : N ;
+fun acentric_A : A ;
+fun acephalia_N : N ;
+fun acephalous_A : A ;
+fun acerate_A : A ;
+fun acerb_A : A ;
+fun acerbity_N : N ;
+fun acerola_N : N ;
+fun acervate_A : A ;
+fun acervulus_N : N ;
+fun acetabular_A : A ;
+fun acetabulum_N : N ;
+fun acetal_N : N ;
+fun acetaldehyde_N : N ;
+fun acetaldol_N : N ;
+fun acetamide_N : N ;
+fun acetaminophen_N : N ;
+fun acetanilide_N : N ;
+fun acetate_N : N ;
+fun acetic_A : A ;
+fun acetin_N : N ;
+fun acetone_N : N ;
+fun acetonic_A : A ;
+fun acetophenetidin_N : N ;
+fun acetose_A : A ;
+fun acetum_N : N ;
+fun acetyl_N : N ;
+fun acetylation_N : N ;
+fun acetylcholine_N : N ;
+fun acetylene_N : N ;
+fun acetylenic_A : A ;
+fun acetylic_A : A ;
+fun ache_N : N ;
+fun ache_V : V ;
+fun achene_N : N ;
+fun achenial_A : A ;
+fun achievability_N : N ;
+fun achievable_A : A ;
+fun achieve_V : V ;
+fun achievement_N : N ;
+fun achiever_N : N ;
+fun achillea_N : N ;
+fun achimenes_N : N ;
+fun achira_N : N ;
+fun achlamydeous_A : A ;
+fun achlorhydria_N : N ;
+fun achlorhydric_A : A ;
+fun acholia_N : N ;
+fun achondrite_N : N ;
+fun achondritic_A : A ;
+fun achondroplasia_N : N ;
+fun achondroplastic_A : A ;
+fun achromatic_A : A ;
+fun achromatin_N : N ;
+fun achromatinic_A : A ;
+fun achromatous_A : A ;
+fun achromia_N : N ;
+fun achromic_A : A ;
+fun achylia_N : N ;
+fun acicula_N : N ;
+fun aciculate_A : A ;
+fun acid_A : A ;
+fun acid_N : N ;
+fun acidemia_N : N ;
+fun acidic_A : A ;
+fun acidification_N : N ;
+fun acidify_V : V ;
+fun acidimetric_A : A ;
+fun acidimetry_N : N ;
+fun acidity_N : N ;
+fun acidophil_N : N ;
+fun acidophilic_A : A ;
+fun acidophilus_N : N ;
+fun acidosis_N : N ;
+fun acidotic_A : A ;
+fun acidulated_A : A ;
+fun acidulous_A : A ;
+fun acinar_A : A ;
+fun acinus_N : N ;
+fun ack_ack_N : N ;
+fun ackee_N : N ;
+fun acknowledge_V : V ;
+fun acknowledgeable_A : A ;
+fun acknowledgement_N : N ;
+fun acknowledgment_N : N ;
+fun acme_N : N ;
+fun acne_N : N ;
+fun acned_A : A ;
+fun acneiform_A : A ;
+fun acold_A : A ;
+fun acolyte_N : N ;
+fun aconite_N : N ;
+fun acorea_N : N ;
+fun acorn_N : N ;
+fun acorn_cup_N : N ;
+fun acoustic_A : A ;
+fun acoustic_N : N ;
+fun acoustically_Adv : Adv ;
+fun acoustician_N : N ;
+fun acoustics_N : N ;
+fun acquaint_V : V ;
+fun acquaintance_N : N ;
+fun acquaintanceship_N : N ;
+fun acquiesce_V : V ;
+fun acquiescence_N : N ;
+fun acquiescent_A : A ;
+fun acquirable_A : A ;
+fun acquire_V : V ;
+fun acquirement_N : N ;
+fun acquirer_N : N ;
+fun acquiring_N : N ;
+fun acquisition_N : N ;
+fun acquisitive_A : A ;
+fun acquisitiveness_N : N ;
+fun acquit_V : V ;
+fun acquittal_N : N ;
+fun acquittance_N : N ;
+fun acre_N : N ;
+fun acreage_N : N ;
+fun acrid_A : A ;
+fun acridity_N : N ;
+fun acrimonious_A : A ;
+fun acrimony_N : N ;
+fun acritical_A : A ;
+fun acroanesthesia_N : N ;
+fun acrobat_N : N ;
+fun acrobatic_A : A ;
+fun acrobatics_N : N ;
+fun acrocarp_N : N ;
+fun acrocarpous_A : A ;
+fun acrocentric_A : A ;
+fun acrocyanosis_N : N ;
+fun acrodont_N : N ;
+fun acrogen_N : N ;
+fun acrogenic_A : A ;
+fun acromegalic_A : A ;
+fun acromegaly_N : N ;
+fun acromicria_N : N ;
+fun acromion_N : N ;
+fun acromphalus_N : N ;
+fun acromyotonia_N : N ;
+fun acronym_N : N ;
+fun acronymic_A : A ;
+fun acropetal_A : A ;
+fun acrophobia_N : N ;
+fun acrophobic_A : A ;
+fun acrophony_N : N ;
+fun acropolis_N : N ;
+fun acroscopic_A : A ;
+fun acrosome_N : N ;
+fun across_Adv : Adv ;
+fun across_Prep : Prep ;
+fun acrostic_N : N ;
+fun acrylamide_N : N ;
+fun acrylic_N : N ;
+fun act_N : N ;
+fun act_V : V ;
+fun actable_A : A ;
+fun actin_N : N ;
+fun actinal_A : A ;
+fun acting_N : N ;
+fun actinia_N : N ;
+fun actinic_A : A ;
+fun actinism_N : N ;
+fun actinium_N : N ;
+fun actinoid_A : A ;
+fun actinoid_N : N ;
+fun actinolite_N : N ;
+fun actinometer_N : N ;
+fun actinometric_A : A ;
+fun actinometry_N : N ;
+fun actinomorphic_A : A ;
+fun actinomyces_N : N ;
+fun actinomycetal_A : A ;
+fun actinomycete_N : N ;
+fun actinomycin_N : N ;
+fun actinomycosis_N : N ;
+fun actinomycotic_A : A ;
+fun actinomyxidian_N : N ;
+fun actinopod_N : N ;
+fun action_N : N ;
+fun actionable_A : A ;
+fun activate_V : V ;
+fun activation_N : N ;
+fun activator_N : N ;
+fun active_A : A ;
+fun active_N : N ;
+fun activeness_N : N ;
+fun activism_N : N ;
+fun activist_A : A ;
+fun activist_N : N ;
+fun activity_N : N ;
+fun actomyosin_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_V : V ;
+fun actuator_N : N ;
+fun acuate_A : A ;
+fun acuity_N : N ;
+fun aculea_N : N ;
+fun aculeate_A : A ;
+fun aculeus_N : N ;
+fun acumen_N : N ;
+fun acuminate_A : A ;
+fun acupressure_N : N ;
+fun acupuncture_N : N ;
+fun acute_A : A ;
+fun acuteness_N : N ;
+fun acyclic_A : A ;
+fun acyclovir_N : N ;
+fun acyl_N : N ;
+fun acylation_N : N ;
+fun ad_N : N ;
+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 adactylia_N : N ;
+fun adactylous_A : A ;
+fun adage_N : N ;
+fun adagio_A : A ;
+fun adagio_Adv : Adv ;
fun adagio_N : N ;
+fun adamance_N : N ;
+fun adamant_A : A ;
+fun adamant_N : N ;
+fun adamantine_A : A ;
+fun adapt_V : V ;
+fun adaptability_N : N ;
+fun adaptable_A : A ;
+fun adaptation_N : N ;
+fun adaptational_A : A ;
+fun adapter_N : N ;
+fun adaptive_A : A ;
+fun adaptor_N : N ;
+fun adaxial_A : A ;
+fun add_V : V ;
+fun addable_A : A ;
+fun addax_N : N ;
+fun addend_N : N ;
+fun addendum_N : N ;
+fun adder_N : N ;
+fun addict_N : N ;
+fun addict_V : V ;
+fun addiction_N : N ;
+fun addictive_A : A ;
+fun adding_machine_N : N ;
+fun addition_N : N ;
+fun additional_A : A ;
+fun additive_A : A ;
+fun additive_N : N ;
+fun addle_A : A ;
+fun addle_V : V ;
+fun addle_brained_A : A ;
+fun addle_head_N : N ;
+fun addle_pated_A : A ;
+fun addlebrained_A : A ;
+fun address_N : N ;
+fun address_V : V ;
+fun addressable_A : A ;
+fun addressee_N : N ;
+fun addressograph_N : N ;
+fun adduce_V : V ;
+fun adducent_A : A ;
+fun adducer_N : N ;
+fun adducing_N : N ;
+fun adduct_N : N ;
+fun adduction_N : N ;
+fun adductor_N : N ;
+fun adelgid_N : N ;
+fun adenine_N : N ;
+fun adenitis_N : N ;
+fun adenocarcinoma_N : N ;
+fun adenocarcinomatous_A : A ;
+fun adenoid_A : A ;
+fun adenoidal_A : A ;
+fun adenoidectomy_N : N ;
+fun adenoma_N : N ;
+fun adenomegaly_N : N ;
+fun adenopathy_N : N ;
+fun adenosine_N : N ;
+fun adenovirus_N : N ;
+fun adept_A : A ;
+fun adept_N : N ;
+fun adeptness_N : N ;
+fun adequacy_N : N ;
+fun adequate_A : A ;
+fun adesite_N : N ;
+fun adhere_V : V ;
+fun adherence_N : N ;
+fun adherent_A : A ;
+fun adherent_N : N ;
+fun adhesion_N : N ;
+fun adhesive_A : A ;
+fun adhesive_N : N ;
+fun adhesiveness_N : N ;
+fun adhocracy_N : N ;
+fun adiabatic_A : A ;
+fun adience_N : N ;
+fun adient_A : A ;
+fun adieu_N : N ;
+fun adipose_A : A ;
+fun adiposity_N : N ;
+fun adit_N : N ;
+fun adjacency_N : N ;
+fun adjacent_A : A ;
+fun adjectival_A : A ;
+fun adjective_A : A ;
+fun adjective_N : N ;
+fun adjoin_V : V ;
+fun adjourn_V : V ;
+fun adjournment_N : N ;
+fun adjudge_V : V ;
+fun adjudicate_V : V ;
+fun adjudication_N : N ;
+fun adjudicative_A : A ;
+fun adjudicator_N : N ;
+fun adjunct_A : A ;
+fun adjunct_N : N ;
+fun adjunctive_A : A ;
+fun adjuration_N : N ;
+fun adjuratory_A : A ;
+fun adjure_V : V ;
+fun adjust_V : V ;
+fun adjustable_A : A ;
+fun adjuster_N : N ;
+fun adjustive_A : A ;
+fun adjustment_N : N ;
+fun adjutant_N : N ;
+fun adjuvant_A : A ;
+fun adjuvant_N : N ;
+fun admass_N : N ;
+fun administer_V : V ;
+fun administrable_A : A ;
+fun administration_N : N ;
+fun administrative_A : A ;
+fun administrator_N : N ;
+fun administrivia_N : N ;
+fun admirability_N : N ;
+fun admirable_A : A ;
+fun admiral_N : N ;
+fun admiralty_N : N ;
+fun admiration_N : N ;
+fun admire_V : V ;
+fun admirer_N : N ;
+fun admiringly_Adv : Adv ;
+fun admissibility_N : N ;
+fun admissible_A : A ;
+fun admission_N : N ;
+fun admissive_A : A ;
+fun admit_V : V ;
+fun admittable_A : A ;
+fun admittance_N : N ;
+fun admittedly_Adv : Adv ;
+fun admix_V : V ;
+fun admixture_N : N ;
+fun admonish_V : V ;
+fun admonisher_N : N ;
+fun admonition_N : N ;
+fun admonitory_A : A ;
+fun adnate_A : A ;
+fun adnexa_N : N ;
+fun adnexal_A : A ;
+fun adnoun_N : N ;
+fun ado_N : N ;
+fun adobe_N : N ;
+fun adobo_N : N ;
+fun adolescence_N : N ;
+fun adolescent_A : A ;
+fun adolescent_N : N ;
+fun adonis_N : N ;
+fun adopt_V : V ;
+fun adoptable_A : A ;
+fun adoptee_N : N ;
+fun adoption_N : N ;
+fun adoptive_A : A ;
+fun adorability_N : N ;
+fun adorable_A : A ;
+fun adoration_N : N ;
+fun adore_V : V ;
+fun adorer_N : N ;
+fun adoring_A : A ;
+fun adorn_V : V ;
+fun adornment_N : N ;
+fun adoxography_N : N ;
+fun adrenal_A : A ;
+fun adrenalectomy_N : N ;
+fun adrenalin_N : N ;
+fun adrenarche_N : N ;
+fun adrenergic_A : A ;
+fun adrenergic_N : N ;
+fun adrenocortical_A : A ;
+fun adrenocorticotropic_A : A ;
+fun adrenosterone_N : N ;
+fun adrift_A : A ;
+fun adrift_Adv : Adv ;
+fun adroit_A : A ;
+fun adroitness_N : N ;
+fun adscititious_A : A ;
+fun adscript_A : A ;
+fun adsorbable_A : A ;
+fun adsorbate_N : N ;
+fun adsorbent_A : A ;
+fun adsorbent_N : N ;
+fun adsorption_N : N ;
+fun adulation_N : N ;
+fun adulatory_A : A ;
+fun adult_A : A ;
+fun adult_N : N ;
+fun adulterant_N : N ;
+fun adulterate_A : A ;
+fun adulterate_V : V ;
+fun adulterating_A : A ;
+fun adulteration_N : N ;
+fun adulterator_N : N ;
+fun adulterer_N : N ;
+fun adulteress_N : N ;
+fun adulterine_A : A ;
+fun adulterous_A : A ;
+fun adultery_N : N ;
+fun adulthood_N : N ;
+fun adumbrate_V : V ;
+fun adumbration_N : N ;
+fun adumbrative_A : A ;
+fun adust_A : A ;
+fun advance_N : N ;
+fun advance_V : V ;
+fun advancement_N : N ;
+fun advancer_N : N ;
+fun advantage_N : N ;
+fun advantage_V : V ;
+fun advantageous_A : A ;
+fun advection_N : N ;
+fun advective_A : A ;
+fun advent_N : N ;
+fun adventist_N : N ;
+fun adventitial_A : A ;
+fun adventitious_A : A ;
+fun adventive_A : A ;
+fun adventure_N : N ;
+fun adventure_V : V ;
+fun adventurer_N : N ;
+fun adventuresome_A : A ;
+fun adventuress_N : N ;
+fun adventurism_N : N ;
+fun adventuristic_A : A ;
+fun adventurous_A : A ;
+fun adventurousness_N : N ;
+fun adverb_N : N ;
+fun adverbial_A : A ;
+fun adverbial_N : N ;
+fun adversary_N : N ;
+fun adversative_A : A ;
+fun adverse_A : A ;
+fun adversity_N : N ;
+fun advert_N : N ;
+fun advert_V : V ;
+fun advertence_N : N ;
+fun advertent_A : A ;
+fun advertise_V : V ;
+fun advertisement_N : N ;
+fun advertiser_N : N ;
+fun advertising_N : N ;
+fun advertorial_N : N ;
+fun advice_N : N ;
+fun advisability_N : N ;
+fun advisable_A : A ;
+fun advise_V : V ;
+fun advisee_N : N ;
+fun adviser_N : N ;
+fun advisory_A : A ;
+fun advisory_N : N ;
+fun advocacy_N : N ;
+fun advocate_N : N ;
+fun advocate_V : V ;
+fun advowson_N : N ;
+fun adynamia_N : N ;
+fun adynamic_A : A ;
+fun adz_N : N ;
+fun adze_N : N ;
+fun aecial_A : A ;
+fun aeciospore_N : N ;
+fun aecium_N : N ;
+fun aegis_N : N ;
+fun aeolotropic_A : A ;
+fun aeon_N : N ;
+fun aerate_V : V ;
+fun aeration_N : N ;
+fun aerator_N : N ;
+fun aerial_A : A ;
+fun aerial_N : N ;
+fun aerialist_N : N ;
+fun aerides_N : N ;
+fun aerie_N : N ;
+fun aeriferous_A : A ;
+fun aeriform_A : A ;
+fun aerobatics_N : N ;
+fun aerobe_N : N ;
+fun aerobic_A : A ;
+fun aerobics_N : N ;
+fun aerobiosis_N : N ;
+fun aerobiotic_A : A ;
+fun aerodontalgia_N : N ;
+fun aerodrome_N : N ;
+fun aerodynamic_A : A ;
+fun aerodynamics_N : N ;
+fun aerolite_N : N ;
+fun aerolitic_A : A ;
+fun aerological_A : A ;
+fun aerology_N : N ;
+fun aeromechanic_A : A ;
+fun aeromechanics_N : N ;
+fun aeromedical_A : A ;
+fun aeromedicine_N : N ;
+fun aeronaut_N : N ;
+fun aeronautical_A : A ;
+fun aeronautics_N : N ;
+fun aerophagia_N : N ;
+fun aerophilatelic_A : A ;
+fun aerophilately_N : N ;
+fun aerophile_N : N ;
+fun aeroplane_N : N ;
+fun aerosol_N : N ;
+fun aerosolized_A : A ;
+fun aerospace_N : N ;
+fun aertex_N : N ;
+fun aery_N : N ;
+fun aeschynanthus_N : N ;
+fun aesculapian_A : A ;
+fun aesthete_N : N ;
+fun aesthetic_A : A ;
+fun aesthetic_N : N ;
+fun aesthetical_A : A ;
+fun aesthetics_N : N ;
+fun aestival_A : A ;
+fun aether_N : N ;
+fun aetiology_N : N ;
+fun afar_Adv : Adv ;
+fun afebrile_A : A ;
+fun affability_N : N ;
+fun affable_A : A ;
+fun affair_N : N ;
+fun affairs_N : N ;
+fun affect_N : N ;
+fun affect_V : V ;
+fun affectation_N : N ;
+fun affectedly_Adv : Adv ;
+fun affectedness_N : N ;
+fun affecting_A : A ;
+fun affection_N : N ;
+fun affectional_A : A ;
+fun affectionate_A : A ;
+fun affectionateness_N : N ;
+fun affenpinscher_N : N ;
+fun afferent_A : A ;
+fun affiance_V : V ;
+fun affiant_N : N ;
+fun affidavit_N : N ;
+fun affiliate_N : N ;
+fun affiliate_V : V ;
+fun affiliation_N : N ;
+fun affinal_A : A ;
+fun affine_A : A ;
+fun affine_N : N ;
+fun affined_A : A ;
+fun affinity_N : N ;
+fun affirm_V : V ;
+fun affirmable_A : A ;
+fun affirmation_N : N ;
+fun affirmative_A : A ;
+fun affirmative_N : N ;
+fun affirmativeness_N : N ;
+fun affix_N : N ;
+fun affix_V : V ;
+fun affixal_A : A ;
+fun affixation_N : N ;
+fun afflatus_N : N ;
+fun afflict_V : V ;
+fun affliction_N : N ;
+fun afflictive_A : A ;
+fun affluence_N : N ;
+fun affluent_A : A ;
+fun affluent_N : N ;
+fun afford_V : V ;
+fun afforest_V : V ;
+fun afforestation_N : N ;
+fun affranchise_V : V ;
+fun affray_N : N ;
+fun affricate_N : N ;
+fun affrication_N : N ;
+fun affront_N : N ;
+fun affront_V : V ;
+fun affusion_N : N ;
+fun afghanistani_A : A ;
+fun afghanistani_N : N ;
+fun afibrinogenemia_N : N ;
+fun aficionado_N : N ;
+fun afield_Adv : Adv ;
+fun afire_A : A ;
+fun aflame_A : A ;
+fun aflare_A : A ;
+fun aflatoxin_N : N ;
+fun afloat_A : A ;
+fun aflutter_A : A ;
+fun afoot_A : A ;
+fun afoot_Adv : Adv ;
+fun afore_Adv : Adv ;
+fun afore_Prep : Prep ;
+fun aforesaid_A : A ;
+fun aforethought_Adv : Adv ;
+fun afoul_Adv : Adv ;
+fun afraid_A : A ;
+fun afresh_Adv : Adv ;
+fun afro_wig_N : N ;
+fun afropavo_N : N ;
+fun aft_Adv : Adv ;
+fun after_A : A ;
+fun after_Adv : Adv ;
+fun after_Prep : Prep ;
+fun afterbirth_N : N ;
+fun afterburner_N : N ;
+fun aftercare_N : N ;
+fun afterdamp_N : N ;
+fun afterdeck_N : N ;
+fun aftereffect_N : N ;
+fun afterglow_N : N ;
+fun afterimage_N : N ;
+fun afterlife_N : N ;
+fun aftermath_N : N ;
+fun aftermost_A : A ;
+fun afternoon_N : N ;
+fun afterpains_N : N ;
+fun afterpiece_N : N ;
+fun aftershaft_N : N ;
+fun aftershafted_A : A ;
+fun aftershock_N : N ;
+fun aftertaste_N : N ;
+fun afterthought_N : N ;
+fun afterwards_Adv : Adv ;
+fun afterworld_N : N ;
+fun again_Adv : Adv ;
+fun against_Prep : Prep ;
+fun agal_N : N ;
+fun agalactia_N : N ;
+fun agama_N : N ;
+fun agamete_N : N ;
+fun agamic_A : A ;
+fun agamid_N : N ;
+fun agammaglobulinemia_N : N ;
+fun agapanthus_N : N ;
+fun agape_A : A ;
+fun agape_N : N ;
+fun agar_N : N ;
+fun agar_agar_N : N ;
+fun agaric_N : N ;
+fun agate_N : N ;
+fun agateware_N : N ;
+fun agave_N : N ;
+fun agaze_A : A ;
+fun age_N : N ;
+fun age_V : V ;
+fun age_bracket_N : N ;
+fun age_group_N : N ;
+fun age_long_A : A ;
+fun age_old_A : A ;
+fun aged_N : N ;
+fun agedness_N : N ;
+fun ageing_N : N ;
+fun ageism_N : N ;
+fun ageless_A : A ;
+fun agelessness_N : N ;
+fun agelong_A : A ;
+fun agency_N : N ;
+fun agenda_N : N ;
+fun agenesis_N : N ;
+fun agent_N : N ;
+fun agent_provocateur_N : N ;
+fun agential_A : A ;
+fun agerasia_N : N ;
+fun ageratum_N : N ;
+fun agglomerate_A : A ;
+fun agglomerate_N : N ;
+fun agglomerate_V : V ;
+fun agglomeration_N : N ;
+fun agglomerator_N : N ;
+fun agglutinate_A : A ;
+fun agglutinate_V : V ;
+fun agglutination_N : N ;
+fun agglutinative_A : A ;
+fun agglutinin_N : N ;
+fun agglutinogen_N : N ;
+fun aggrandize_V : V ;
+fun aggrandizement_N : N ;
+fun aggravate_V : V ;
+fun aggravating_A : A ;
+fun aggravation_N : N ;
+fun aggravator_N : N ;
+fun aggregate_A : A ;
+fun aggregate_N : N ;
+fun aggregate_V : V ;
+fun aggregation_N : N ;
+fun aggression_N : N ;
+fun aggressive_A : A ;
+fun aggressiveness_N : N ;
+fun aggressor_N : N ;
+fun aggrieve_V : V ;
+fun aggro_N : N ;
+fun aghast_A : A ;
+fun agile_A : A ;
+fun agility_N : N ;
+fun agin_Prep : Prep ;
+fun aging_N : N ;
+fun agio_N : N ;
+fun agitate_V : V ;
+fun agitation_N : N ;
+fun agitative_A : A ;
+fun agitator_N : N ;
+fun agitprop_N : N ;
+fun agleam_A : A ;
+fun aglet_N : N ;
+fun aglow_A : A ;
+fun agm_N : N ;
+fun agnail_N : N ;
+fun agnate_A : A ;
+fun agnate_N : N ;
+fun agnomen_N : N ;
+fun agnosia_N : N ;
+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 agon_N : N ;
+fun agonadal_A : A ;
+fun agonal_A : A ;
+fun agonist_N : N ;
+fun agonistic_A : A ;
+fun agonize_V : V ;
+fun agonized_A : A ;
+fun agonizingly_Adv : Adv ;
+fun agony_N : N ;
+fun agora_N : N ;
+fun agoraphobia_N : N ;
+fun agoraphobic_A : A ;
+fun agouti_N : N ;
+fun agranulocytic_A : A ;
+fun agranulocytosis_N : N ;
+fun agrapha_N : N ;
+fun agraphia_N : N ;
+fun agraphic_A : A ;
+fun agrarian_A : A ;
+fun agree_V : V ;
+fun agreeable_A : A ;
+fun agreeableness_N : N ;
+fun agreement_N : N ;
+fun agrestic_A : A ;
+fun agribusiness_N : N ;
+fun agricultural_A : A ;
+fun agriculture_N : N ;
+fun agriculturist_N : N ;
+fun agrimonia_N : N ;
+fun agrobiologic_A : A ;
+fun agrobiology_N : N ;
+fun agrologic_A : A ;
+fun agrology_N : N ;
+fun agromania_N : N ;
+fun agronomic_A : A ;
+fun agronomist_N : N ;
+fun agronomy_N : N ;
+fun aground_A : A ;
+fun aground_Adv : Adv ;
+fun agrypnia_N : N ;
+fun agrypnotic_A : A ;
+fun agua_N : N ;
+fun ague_N : N ;
+fun agueweed_N : N ;
+fun aguish_A : A ;
+fun ahead_Adv : Adv ;
+fun ahead_of_Prep : Prep ;
+fun ahimsa_N : N ;
+fun ahistorical_A : A ;
+fun aid_N : N ;
+fun aid_V : V ;
+fun aide_N : N ;
+fun aide_de_camp_N : N ;
+fun aide_mémoire_N : N ;
+fun aids_N : N ;
+fun aigret_N : N ;
+fun aigrette_N : N ;
+fun aikido_N : N ;
+fun ail_V : V ;
+fun ailanthus_N : N ;
+fun aileron_N : N ;
+fun ailment_N : N ;
+fun ailurophobia_N : N ;
+fun aim_N : N ;
+fun aim_V : V ;
+fun aimless_A : A ;
+fun aioli_N : N ;
+fun air_N : N ;
+fun air_V : V ;
+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 airbrush_N : N ;
+fun airburst_N : N ;
+fun airbus_N : N ;
+fun aircraft_N : N ;
+fun aircraftman_N : N ;
+fun aircraftsman_N : N ;
+fun aircrew_N : N ;
+fun aircrewman_N : N ;
+fun airdock_N : N ;
+fun airdrome_N : N ;
+fun airdrop_N : N ;
+fun airedale_N : N ;
+fun airfare_N : N ;
+fun airfield_N : N ;
+fun airflow_N : N ;
+fun airfoil_N : N ;
+fun airforce_N : N ;
+fun airframe_N : N ;
+fun airhead_N : N ;
+fun airheaded_A : A ;
+fun airiness_N : N ;
+fun airing_N : N ;
+fun airing_cupboard_N : N ;
+fun airless_A : A ;
+fun airlift_N : N ;
+fun airline_N : N ;
+fun airliner_N : N ;
+fun airlock_N : N ;
+fun airmail_N : N ;
+fun airmailer_N : N ;
+fun airman_N : N ;
+fun airplane_N : N ;
+fun airport_N : N ;
+fun airs_N : N ;
+fun airscrew_N : N ;
+fun airship_N : N ;
+fun airsick_A : A ;
+fun airsickness_N : N ;
+fun airspace_N : N ;
+fun airspeed_N : N ;
+fun airstream_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 aitchbone_N : N ;
+fun ajar_A : A ;
+fun akaryocyte_N : N ;
+fun akee_N : N ;
+fun akimbo_Adv : Adv ;
+fun akin_A : A ;
+fun akinesis_N : N ;
+fun ala_N : N ;
+fun alabaster_A : A ;
+fun alabaster_N : N ;
+fun alacritous_A : A ;
+fun alacrity_N : N ;
+fun alalia_N : N ;
+fun alanine_N : N ;
+fun alar_A : A ;
+fun alarm_N : N ;
+fun alarm_V : V ;
+fun alarm_clock_N : N ;
+fun alarming_A : A ;
+fun alarmism_N : N ;
+fun alarmist_N : N ;
+fun alastrim_N : N ;
+fun alate_A : A ;
+fun alb_N : N ;
+fun albacore_N : N ;
+fun albatross_N : N ;
+fun albedo_N : N ;
+fun albescent_A : A ;
+fun albinal_A : A ;
+fun albinism_N : N ;
+fun albino_N : N ;
+fun albite_N : N ;
+fun albitic_A : A ;
+fun albizzia_N : N ;
+fun albuca_N : N ;
+fun albuginea_N : N ;
+fun album_N : N ;
+fun albumen_N : N ;
+fun albumin_N : N ;
+fun albuminous_A : A ;
+fun albuminuria_N : N ;
+fun albuminuric_A : A ;
+fun albuterol_N : N ;
+fun alcalde_N : N ;
+fun alcazar_N : N ;
+fun alchemic_A : A ;
+fun alchemist_N : N ;
+fun alchemistic_A : A ;
+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 aldehyde_N : N ;
+fun aldehydic_A : A ;
+fun alder_N : N ;
+fun alderfly_N : N ;
+fun alderman_N : N ;
+fun aldermanic_A : A ;
+fun aldohexose_N : N ;
+fun aldol_N : N ;
+fun aldose_N : N ;
+fun aldosterone_N : N ;
+fun aldosteronism_N : N ;
+fun ale_N : N ;
+fun ale_house_N : N ;
+fun aleatory_A : A ;
+fun alee_A : A ;
+fun alee_Adv : Adv ;
+fun alehouse_N : N ;
+fun alembic_N : N ;
+fun alendronate_N : N ;
+fun aleph_N : N ;
+fun alert_A : A ;
+fun alert_N : N ;
+fun alert_V : V ;
+fun alertness_N : N ;
+fun aleurone_N : N ;
+fun aleuronic_A : A ;
+fun alewife_N : N ;
+fun alexandrine_N : N ;
+fun alexandrite_N : N ;
+fun alexia_N : N ;
+fun alexic_A : A ;
+fun alexic_N : N ;
+fun alfalfa_N : N ;
+fun alfresco_A : A ;
+fun alfresco_Adv : Adv ;
+fun alga_N : N ;
+fun algal_A : A ;
+fun algarroba_N : N ;
+fun algebra_N : N ;
+fun algebraic_A : A ;
+fun algebraical_A : A ;
+fun algebraist_N : N ;
+fun algerian_A : A ;
+fun algerian_N : N ;
+fun algid_A : A ;
+fun algidity_N : N ;
+fun algin_N : N ;
+fun algoid_A : A ;
+fun algolagnia_N : N ;
+fun algolagnic_A : A ;
+fun algometer_N : N ;
+fun algometric_A : A ;
+fun algometry_N : N ;
+fun algophobia_N : N ;
+fun algophobic_A : A ;
+fun algorism_N : N ;
+fun algorithm_N : N ;
+fun algorithmic_A : A ;
+fun alias_Adv : Adv ;
+fun alias_N : N ;
+fun alibi_N : N ;
+fun alidade_N : N ;
+fun alien_A : A ;
+fun alien_N : N ;
+fun alienable_A : A ;
+fun alienage_N : N ;
+fun alienate_V : V ;
+fun alienating_A : A ;
+fun alienation_N : N ;
+fun alienator_N : N ;
+fun alienee_N : N ;
+fun alienism_N : N ;
+fun alienist_N : N ;
+fun alienor_N : N ;
+fun alight_A : A ;
+fun alight_V : V ;
+fun align_V : V ;
+fun alignment_N : N ;
+fun alike_A : A ;
+fun alike_Adv : Adv ;
+fun alimentary_A : A ;
+fun alimentative_A : A ;
+fun alimony_N : N ;
+fun aliphatic_A : A ;
+fun aliquant_N : N ;
+fun aliquot_A : A ;
+fun aliquot_N : N ;
+fun aliterate_N : N ;
+fun alive_A : A ;
+fun aliyah_N : N ;
+fun alizarin_N : N ;
+fun alkahest_N : N ;
+fun alkahestic_A : A ;
+fun alkalemia_N : N ;
+fun alkalescent_A : A ;
+fun alkali_N : N ;
+fun alkalimetry_N : N ;
+fun alkaline_A : A ;
+fun alkalinity_N : N ;
+fun alkalinuria_N : N ;
+fun alkaloid_N : N ;
+fun alkaloidal_A : A ;
+fun alkalosis_N : N ;
+fun alkalotic_A : A ;
+fun alkapton_N : N ;
+fun alkaptonuria_N : N ;
+fun alkene_N : N ;
+fun alkyd_N : N ;
+fun alkyl_N : N ;
+fun alkylbenzene_N : N ;
+fun alkylbenzenesulfonate_N : N ;
+fun alkylic_A : A ;
+fun all_A : A ;
+fun all_mains_A : A ;
+fun all_round_A : A ;
+fun all_rounder_N : N ;
+fun allamanda_N : N ;
+fun allantoic_A : A ;
+fun allantoid_A : A ;
+fun allantois_N : N ;
+fun allargando_A : A ;
+fun allay_V : V ;
+fun allegation_N : N ;
+fun allege_V : V ;
+fun allegiance_N : N ;
+fun allegiant_A : A ;
+fun allegoric_A : A ;
+fun allegorical_A : A ;
+fun allegorizer_N : N ;
+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 allele_N : N ;
+fun allelic_A : A ;
+fun allemande_N : N ;
+fun allergen_N : N ;
+fun allergenic_A : A ;
+fun allergic_A : A ;
+fun allergist_N : N ;
+fun allergology_N : N ;
+fun allergy_N : N ;
+fun alleviate_V : V ;
+fun alleviation_N : N ;
+fun alleviative_A : A ;
+fun alleviator_N : N ;
+fun alley_N : N ;
+fun alleyway_N : N ;
+fun alliaceous_A : A ;
+fun alliance_N : N ;
+fun allies_N : N ;
+fun alligator_N : N ;
+fun alligatored_A : A ;
+fun alligatorfish_N : N ;
+fun alliteration_N : N ;
+fun alliterative_A : A ;
+fun alliterator_N : N ;
+fun allocable_A : A ;
+fun allocate_V : V ;
+fun allocation_N : N ;
+fun allocator_N : N ;
+fun allochronic_A : A ;
+fun allochthonous_A : A ;
+fun allocution_N : N ;
+fun allogamous_A : A ;
+fun allogamy_N : N ;
+fun allogeneic_A : A ;
+fun allograph_N : N ;
+fun allographic_A : A ;
+fun allomerism_N : N ;
+fun allomerous_A : A ;
+fun allometric_A : A ;
+fun allometry_N : N ;
+fun allomorph_N : N ;
+fun allomorphic_A : A ;
+fun allopathic_A : A ;
+fun allopathy_N : N ;
+fun allopatric_A : A ;
+fun allopatry_N : N ;
+fun allophone_N : N ;
+fun allophonic_A : A ;
+fun allopurinol_N : N ;
+fun allosaur_N : N ;
+fun allot_V : V ;
+fun allotment_N : N ;
+fun allotrope_N : N ;
+fun allotropic_A : A ;
+fun allotropy_N : N ;
+fun allover_A : A ;
+fun allow_V : V ;
+fun allowable_A : A ;
+fun allowance_N : N ;
+fun alloy_N : N ;
+fun alloy_V : V ;
+fun allspice_N : N ;
+fun allude_V : V ;
+fun allure_N : N ;
+fun allure_V : V ;
+fun allurement_N : N ;
+fun alluring_A : A ;
+fun allusion_N : N ;
+fun allusive_A : A ;
+fun allusiveness_N : N ;
+fun alluvial_A : A ;
+fun alluvion_N : N ;
+fun ally_N : N ;
+fun ally_V : V ;
+fun allyl_N : N ;
+fun allylic_A : A ;
+fun alma_mater_N : N ;
+fun almanac_N : N ;
+fun almandine_N : N ;
+fun almandite_N : N ;
+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_N : N ;
+fun alms_box_N : N ;
+fun alms_giving_N : N ;
+fun alms_house_N : N ;
+fun almsgiver_N : N ;
+fun alocasia_N : N ;
+fun aloe_N : N ;
+fun aloes_N : N ;
+fun aloft_Adv : Adv ;
+fun aloha_N : N ;
+fun alone_A : A ;
+fun aloneness_N : N ;
+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 alopecia_N : N ;
+fun alopecic_A : A ;
+fun aloud_Adv : Adv ;
+fun alp_N : N ;
+fun alpaca_N : N ;
+fun alpenstock_N : N ;
+fun alpestrine_A : A ;
+fun alpha_A : A ;
+fun alpha_N : N ;
+fun alphabet_N : N ;
+fun alphabetic_A : A ;
+fun alphabetical_A : A ;
+fun alphabetization_N : N ;
+fun alphabetized_A : A ;
+fun alphabetizer_N : N ;
+fun alphanumeric_A : A ;
+fun alphanumerics_N : N ;
+fun alphavirus_N : N ;
+fun alpine_A : A ;
+fun alpinist_N : N ;
+fun alprazolam_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 alstroemeria_N : N ;
+fun altar_N : N ;
+fun altar_piece_N : N ;
+fun altarpiece_N : N ;
+fun altazimuth_N : N ;
+fun alter_V : V ;
+fun alter_ego_N : N ;
+fun alterability_N : N ;
+fun alterable_A : A ;
+fun alteration_N : N ;
+fun altercation_N : N ;
+fun alternate_A : A ;
+fun alternate_V : V ;
+fun alternation_N : N ;
+fun alternative_A : A ;
+fun alternative_N : N ;
+fun alternator_N : N ;
+fun althea_N : N ;
+fun altimeter_N : N ;
+fun altissimo_A : A ;
+fun altitude_N : N ;
+fun altitudinal_A : A ;
+fun altitudinous_A : A ;
+fun alto_A : A ;
+fun alto_N : N ;
+fun altocumulus_N : N ;
+fun altogether_Adv : Adv ;
+fun altostratus_N : N ;
+fun altricial_A : A ;
+fun altruism_N : N ;
+fun altruist_N : N ;
+fun altruistic_A : A ;
+fun altruistically_Adv : Adv ;
+fun alula_N : N ;
+fun alular_A : A ;
+fun alum_N : N ;
+fun alumina_N : N ;
+fun aluminate_N : N ;
+fun aluminiferous_A : A ;
+fun aluminium_N : N ;
+fun aluminous_A : A ;
+fun aluminum_N : N ;
+fun alumna_N : N ;
+fun alumnus_N : N ;
+fun alumroot_N : N ;
+fun alundum_N : N ;
+fun alveolar_A : A ;
+fun alveolar_N : N ;
+fun alveolate_A : A ;
+fun alveolitis_N : N ;
+fun alveolus_N : N ;
+fun alvine_A : A ;
+fun alyssum_N : N ;
+fun amah_N : N ;
+fun amain_Adv : Adv ;
+fun amalgam_N : N ;
+fun amalgamate_A : A ;
+fun amalgamate_V : V ;
+fun amalgamation_N : N ;
+fun amalgamative_A : A ;
+fun amalgamator_N : N ;
+fun amanuensis_N : N ;
+fun amaranth_N : N ;
+fun amaranthine_A : A ;
+fun amarelle_N : N ;
+fun amaretto_N : N ;
+fun amaryllis_N : N ;
+fun amass_V : V ;
+fun amastia_N : N ;
+fun amateur_A : A ;
+fun amateur_N : N ;
+fun amateurish_A : A ;
+fun amateurishness_N : N ;
+fun amateurism_N : N ;
+fun amative_A : A ;
+fun amatory_A : A ;
+fun amaurosis_N : N ;
+fun amaurotic_A : A ;
+fun amaze_V : V ;
+fun amazement_N : N ;
+fun amazing_A : A ;
+fun amazon_N : N ;
+fun ambages_N : N ;
+fun ambassador_N : N ;
+fun ambassadorial_A : A ;
+fun ambassadorship_N : N ;
+fun ambassadress_N : N ;
+fun amber_A : A ;
+fun amber_N : N ;
+fun ambergris_N : N ;
+fun amberjack_N : N ;
+fun ambiance_N : N ;
+fun ambidexterity_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 ambiversion_N : N ;
+fun ambiversive_A : A ;
+fun amble_N : N ;
+fun amble_V : V ;
+fun amblygonite_N : N ;
+fun amblyopia_N : N ;
+fun amblyopic_A : A ;
+fun amboyna_N : N ;
+fun ambrosia_N : N ;
+fun ambrosial_A : A ;
+fun ambulacral_A : A ;
+fun ambulacrum_N : N ;
+fun ambulance_N : N ;
+fun ambulant_A : A ;
+fun ambulation_N : N ;
+fun ambulatory_A : A ;
+fun ambulatory_N : N ;
+fun ambuscade_N : N ;
+fun ambuscade_V : V ;
+fun ambush_N : N ;
+fun ambush_V : V ;
+fun ambusher_N : N ;
+fun ambystomid_N : N ;
+fun ameba_N : N ;
+fun amebiasis_N : N ;
+fun ameboid_A : A ;
+fun ameer_N : N ;
+fun amelia_N : N ;
+fun ameliorate_V : V ;
+fun amelioration_N : N ;
+fun ameloblast_N : N ;
+fun amelogenesis_N : N ;
+fun amenability_N : N ;
+fun amenable_A : A ;
+fun amend_V : V ;
+fun amendable_A : A ;
+fun amendatory_A : A ;
+fun amendment_N : N ;
+fun amenity_N : N ;
+fun amenorrhea_N : N ;
+fun amenorrheic_A : A ;
+fun amentiferous_A : A ;
+fun amerciable_A : A ;
+fun americanism_N : N ;
+fun americanize_V : V ;
+fun americium_N : N ;
+fun ametabolic_A : A ;
+fun amethyst_A : A ;
+fun amethyst_N : N ;
+fun amethystine_A : A ;
+fun ametria_N : N ;
+fun ametropia_N : N ;
+fun ametropic_A : A ;
+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 amide_N : N ;
+fun amidship_A : A ;
+fun amidship_Adv : Adv ;
+fun amidships_Adv : Adv ;
+fun amidst_Prep : Prep ;
+fun amigo_N : N ;
+fun amine_N : N ;
+fun amino_A : A ;
+fun amino_N : N ;
+fun aminoaciduria_N : N ;
+fun aminomethane_N : N ;
+fun aminophylline_N : N ;
+fun aminopyrine_N : N ;
+fun amiodarone_N : N ;
+fun amir_N : N ;
+fun amiss_A : A ;
+fun amiss_Adv : Adv ;
+fun amitosis_N : N ;
+fun amitotic_A : A ;
+fun amitriptyline_N : N ;
+fun amity_N : N ;
+fun ammeter_N : N ;
+fun ammine_N : N ;
+fun ammino_A : A ;
+fun ammobium_N : N ;
+fun ammonia_N : N ;
+fun ammoniac_A : A ;
+fun ammoniac_N : N ;
+fun ammoniated_A : A ;
+fun ammonification_N : N ;
+fun ammonite_N : N ;
+fun ammonitic_A : A ;
+fun ammonium_N : N ;
+fun ammoniuria_N : N ;
+fun ammunition_N : N ;
+fun amnesia_N : N ;
+fun amnesic_A : A ;
+fun amnesic_N : N ;
+fun amnestic_A : A ;
+fun amnesty_N : N ;
+fun amniocentesis_N : N ;
+fun amnion_N : N ;
+fun amniote_N : N ;
+fun amniotic_A : A ;
+fun amobarbital_N : N ;
+fun amoeba_N : N ;
+fun amoebic_A : A ;
+fun amok_Adv : Adv ;
+fun among_Prep : Prep ;
+fun amongst_Prep : Prep ;
+fun amora_N : N ;
+fun amoral_A : A ;
+fun amoralism_N : N ;
+fun amoralist_N : N ;
+fun amorality_N : N ;
+fun amorist_N : N ;
+fun amoristic_A : A ;
+fun amorous_A : A ;
+fun amorousness_N : N ;
+fun amorpha_N : N ;
+fun amorphophallus_N : N ;
+fun amorphous_A : A ;
+fun amort_A : A ;
+fun amortization_N : N ;
+fun amortize_V : V ;
+fun amount_N : N ;
+fun amount_V : V ;
+fun amour_N : N ;
+fun amour_propre_N : N ;
+fun amoxicillin_N : N ;
+fun amp_N : N ;
+fun amperage_N : N ;
+fun ampere_N : N ;
+fun ampersand_N : N ;
+fun amphetamine_N : N ;
+fun amphibia_N : N ;
+fun amphibian_N : N ;
+fun amphibiotic_A : A ;
+fun amphibious_A : A ;
+fun amphibole_N : N ;
+fun amphibolite_N : N ;
+fun amphibology_N : N ;
+fun amphibrach_N : N ;
+fun amphictyony_N : N ;
+fun amphidiploid_N : N ;
+fun amphidiploidy_N : N ;
+fun amphigory_N : N ;
+fun amphimixis_N : N ;
+fun amphipod_N : N ;
+fun amphiprostylar_A : A ;
+fun amphisbaena_N : N ;
+fun amphistylar_A : A ;
+fun amphitheater_N : N ;
+fun amphitheatre_N : N ;
+fun amphitheatric_A : A ;
+fun amphitropous_A : A ;
+fun amphiuma_N : N ;
+fun amphora_N : N ;
+fun amphoric_A : A ;
+fun amphoteric_A : A ;
+fun amphotericin_N : N ;
+fun ampicillin_N : N ;
+fun ample_A : A ;
+fun ampleness_N : N ;
+fun amplification_N : N ;
+fun amplifier_N : N ;
+fun amplify_V : V ;
+fun amplitude_N : N ;
+fun ampoule_N : N ;
+fun ampulla_N : N ;
+fun ampullar_A : A ;
+fun amputate_V : V ;
+fun amputation_N : N ;
+fun amputator_N : N ;
+fun amputee_N : N ;
+fun amrinone_N : N ;
+fun amuck_A : A ;
+fun amuck_Adv : Adv ;
+fun amulet_N : N ;
+fun amuse_V : V ;
+fun amusement_N : N ;
+fun amusing_A : A ;
+fun amygdala_N : N ;
+fun amygdalin_N : N ;
+fun amygdaline_A : A ;
+fun amygdaloid_N : N ;
+fun amygdalotomy_N : N ;
+fun amyl_N : N ;
+fun amylase_N : N ;
+fun amyloid_N : N ;
+fun amyloidosis_N : N ;
+fun amylolysis_N : N ;
+fun amylolytic_A : A ;
+fun amyotrophia_N : N ;
+fun amyxia_N : N ;
+fun ana_N : N ;
+fun anabatic_A : A ;
+fun anabiosis_N : N ;
+fun anabiotic_A : A ;
+fun anabolic_A : A ;
+fun anabolism_N : N ;
+fun anachronic_A : A ;
+fun anachronism_N : N ;
+fun anachronistic_A : A ;
+fun anachronistically_Adv : Adv ;
+fun anaclinal_A : A ;
+fun anaclisis_N : N ;
+fun anaclitic_A : A ;
+fun anacoluthia_N : N ;
+fun anacoluthic_A : A ;
+fun anaconda_N : N ;
+fun anadiplosis_N : N ;
+fun anadromous_A : A ;
+fun anaemia_N : N ;
+fun anaemic_A : A ;
+fun anaerobe_N : N ;
+fun anaerobic_A : A ;
+fun anaesthesia_N : N ;
+fun anaesthetic_A : A ;
+fun anaesthetic_N : N ;
+fun anaesthetist_N : N ;
+fun anaesthetize_V : V ;
+fun anaglyph_N : N ;
+fun anaglyphic_A : A ;
+fun anaglyphy_N : N ;
+fun anagnost_N : N ;
+fun anagoge_N : N ;
+fun anagogic_A : A ;
+fun anagram_N : N ;
+fun anagrammatic_A : A ;
+fun anagrams_N : N ;
+fun anal_A : A ;
+fun analbuminemia_N : N ;
+fun analects_N : N ;
+fun analeptic_A : A ;
+fun analeptic_N : N ;
+fun analgesia_N : N ;
+fun analgesic_A : A ;
+fun analgesic_N : N ;
+fun analog_N : N ;
+fun analogical_A : A ;
+fun analogist_N : N ;
+fun analogous_A : A ;
+fun analogue_A : A ;
+fun analogue_N : N ;
+fun analogy_N : N ;
+fun analphabet_N : N ;
+fun analphabetic_A : A ;
+fun analysand_N : N ;
+fun analyse_V : V ;
+fun analysis_N : N ;
+fun analyst_N : N ;
+fun analytic_A : A ;
+fun analytical_A : A ;
+fun analyticity_N : N ;
+fun analyzable_A : A ;
+fun analyze_V : V ;
+fun analyzer_N : N ;
+fun anamnestic_A : A ;
+fun anamorphic_A : A ;
+fun anamorphism_N : N ;
+fun anamorphosis_N : N ;
+fun anapaest_N : N ;
+fun anapaestic_A : A ;
+fun anapest_N : N ;
+fun anapestic_A : A ;
+fun anaphase_N : N ;
+fun anaphasic_A : A ;
+fun anaphor_N : N ;
+fun anaphora_N : N ;
+fun anaphoric_A : A ;
+fun anaphrodisia_N : N ;
+fun anaphrodisiac_A : A ;
+fun anaphylactic_A : A ;
+fun anaphylaxis_N : N ;
+fun anaplasia_N : N ;
+fun anaplasmosis_N : N ;
+fun anaplastic_A : A ;
+fun anapsid_N : N ;
+fun anarchic_A : A ;
+fun anarchically_Adv : Adv ;
+fun anarchism_N : N ;
+fun anarchist_N : N ;
+fun anarchistic_A : A ;
+fun anarchy_N : N ;
+fun anarthria_N : N ;
+fun anasarca_N : N ;
+fun anasarcous_A : A ;
+fun anaspid_N : N ;
+fun anastalsis_N : N ;
+fun anastigmat_N : N ;
+fun anastigmatic_A : A ;
+fun anastomosis_N : N ;
+fun anastomotic_A : A ;
+fun anastrophe_N : N ;
+fun anastylosis_N : N ;
+fun anathema_N : N ;
+fun anathematization_N : N ;
+fun anathematize_V : V ;
+fun anatomic_A : A ;
+fun anatomical_A : A ;
+fun anatomist_N : N ;
+fun anatomy_N : N ;
+fun anatotitan_N : N ;
+fun anatoxin_N : N ;
+fun anatropous_A : A ;
+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 anchorage_N : N ;
+fun anchorite_N : N ;
+fun anchoritic_A : A ;
+fun anchorman_N : N ;
+fun anchovy_N : N ;
+fun anchusa_N : N ;
+fun ancient_A : A ;
+fun ancient_N : N ;
+fun ancientness_N : N ;
+fun ancients_N : N ;
+fun ancillary_A : A ;
+fun andante_A : A ;
+fun andante_Adv : Adv ;
+fun andante_N : N ;
+fun andantino_A : A ;
+fun andesite_N : N ;
+fun andiron_N : N ;
+fun andorran_A : A ;
+fun andorran_N : N ;
+fun andradite_N : N ;
+fun andrena_N : N ;
+fun androecium_N : N ;
+fun androgen_N : N ;
+fun androgenesis_N : N ;
+fun androgenetic_A : A ;
+fun androgenic_A : A ;
+fun androglossia_N : N ;
+fun androgynous_A : A ;
+fun androgyny_N : N ;
+fun android_N : N ;
+fun andromeda_N : N ;
+fun androphobia_N : N ;
+fun androsterone_N : N ;
+fun andryala_N : N ;
+fun anecdotal_A : A ;
+fun anecdote_N : N ;
+fun anecdotic_A : A ;
+fun anecdotist_N : N ;
+fun anechoic_A : A ;
+fun anemia_N : N ;
+fun anemic_A : A ;
+fun anemographic_A : A ;
+fun anemography_N : N ;
+fun anemometer_N : N ;
+fun anemometric_A : A ;
+fun anemometry_N : N ;
+fun anemone_N : N ;
+fun anemophilous_A : A ;
+fun anencephalic_A : A ;
+fun anencephaly_N : N ;
+fun anenst_Prep : Prep ;
+fun anent_Prep : Prep ;
+fun anergy_N : N ;
+fun aneroid_A : A ;
+fun aneroid_N : N ;
+fun anesthesia_N : N ;
+fun anesthesiologist_N : N ;
+fun anesthesiology_N : N ;
+fun anesthetic_A : A ;
+fun anesthetic_N : N ;
+fun anesthetist_N : N ;
+fun anesthetize_V : V ;
+fun anesthyl_N : N ;
+fun anestrous_A : A ;
+fun anestrus_N : N ;
+fun aneuploid_A : A ;
+fun aneuploidy_N : N ;
+fun aneurysm_N : N ;
+fun aneurysmal_A : A ;
+fun anew_Adv : Adv ;
+fun anfractuous_A : A ;
+fun angel_N : N ;
+fun angelfish_N : N ;
+fun angelic_A : A ;
+fun angelica_N : N ;
+fun angelically_Adv : Adv ;
+fun angelim_N : N ;
+fun angelology_N : N ;
+fun angelus_N : N ;
+fun anger_N : N ;
+fun anger_V : V ;
+fun angiitis_N : N ;
+fun angina_N : N ;
+fun anginal_A : A ;
+fun angiocardiogram_N : N ;
+fun angiocarp_N : N ;
+fun angiocarpic_A : A ;
+fun angioedema_N : N ;
+fun angiogenesis_N : N ;
+fun angiogram_N : N ;
+fun angiography_N : N ;
+fun angiologist_N : N ;
+fun angiology_N : N ;
+fun angioma_N : N ;
+fun angiomatous_A : A ;
+fun angiopathy_N : N ;
+fun angioplasty_N : N ;
+fun angiopteris_N : N ;
+fun angiosarcoma_N : N ;
+fun angioscope_N : N ;
+fun angiosperm_N : N ;
+fun angiospermous_A : A ;
+fun angiotelectasia_N : N ;
+fun angiotensin_N : N ;
+fun angle_N : N ;
+fun angle_V : V ;
+fun angle_dozer_N : N ;
+fun angle_iron_N : N ;
+fun angle_park_V : V ;
+fun angledozer_N : N ;
+fun angler_N : N ;
+fun anglewing_N : N ;
+fun anglican_A : A ;
+fun anglican_N : N ;
+fun anglicism_N : N ;
+fun anglicize_V : V ;
+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 angolan_A : A ;
+fun angolan_N : N ;
+fun angora_N : N ;
+fun angostura_N : N ;
+fun angrecum_N : N ;
+fun angry_A : A ;
+fun angst_N : N ;
+fun angstrom_N : N ;
+fun anguillan_A : A ;
+fun anguillan_N : N ;
+fun anguine_A : A ;
+fun anguish_N : N ;
+fun anguished_A : A ;
+fun angular_A : A ;
+fun angularity_N : N ;
+fun angulation_N : N ;
+fun angwantibo_N : N ;
+fun anhedonia_N : N ;
+fun anhidrosis_N : N ;
+fun anhydride_N : N ;
+fun anhydrous_A : A ;
+fun ani_N : N ;
+fun anicteric_A : A ;
+fun anil_N : N ;
+fun anile_A : A ;
+fun aniline_N : N ;
+fun anima_N : N ;
+fun animadversion_N : N ;
+fun animadvert_V : V ;
+fun animal_N : N ;
+fun animalcule_N : N ;
+fun animalism_N : N ;
+fun animalistic_A : A ;
+fun animality_N : N ;
+fun animalization_N : N ;
+fun animate_A : A ;
+fun animate_V : V ;
+fun animatedly_A : A ;
+fun animatedly_Adv : Adv ;
+fun animateness_N : N ;
+fun animating_A : A ;
+fun animation_N : N ;
+fun animatism_N : N ;
+fun animatistic_A : A ;
+fun animator_N : N ;
+fun animatronics_N : N ;
+fun anime_N : N ;
+fun animism_N : N ;
+fun animist_A : A ;
+fun animist_N : N ;
+fun animosity_N : N ;
+fun animus_N : N ;
+fun anion_N : N ;
+fun anionic_A : A ;
+fun anise_N : N ;
+fun aniseed_N : N ;
+fun aniseikonia_N : N ;
+fun aniseikonic_A : A ;
+fun anisette_N : N ;
+fun anisogamete_N : N ;
+fun anisogametic_A : A ;
+fun anisogamic_A : A ;
+fun anisogamy_N : N ;
+fun anisometric_A : A ;
+fun anisometropia_N : N ;
+fun anisometropic_A : A ;
+fun anisotropic_A : A ;
+fun anisotropically_Adv : Adv ;
+fun anisotropy_N : N ;
+fun anjou_N : N ;
+fun ankle_N : N ;
+fun anklebone_N : N ;
+fun anklet_N : N ;
+fun ankus_N : N ;
+fun ankylosaur_N : N ;
+fun ankylosis_N : N ;
+fun ankylotic_A : A ;
+fun anna_N : N ;
+fun annalist_N : N ;
+fun annalistic_A : A ;
+fun annals_N : N ;
+fun anneal_V : V ;
+fun annealing_N : N ;
+fun annelid_A : A ;
+fun annelid_N : N ;
+fun annex_N : N ;
+fun annex_V : V ;
+fun annexation_N : N ;
+fun annexational_A : A ;
+fun annexe_N : N ;
+fun annihilate_V : V ;
+fun annihilating_A : A ;
+fun annihilation_N : N ;
+fun annihilative_A : A ;
+fun annihilator_N : N ;
+fun anniversary_N : N ;
+fun annotate_V : V ;
+fun annotation_N : N ;
+fun annotator_N : N ;
+fun announce_V : V ;
+fun announcement_N : N ;
+fun announcer_N : N ;
+fun annoy_V : V ;
+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_V : V ;
+fun annular_A : A ;
+fun annulet_N : N ;
+fun annulment_N : N ;
+fun annulus_N : N ;
+fun annum_N : N ;
+fun annunciate_V : V ;
+fun annunciation_N : N ;
+fun annunciator_N : N ;
+fun annunciatory_A : A ;
+fun anoa_N : N ;
+fun anode_N : N ;
+fun anodic_A : A ;
+fun anodyne_A : A ;
+fun anodyne_N : N ;
+fun anoint_V : V ;
+fun anointer_N : N ;
+fun anointing_N : N ;
+fun anointment_N : N ;
+fun anomalist_N : N ;
+fun anomalops_N : N ;
+fun anomalopteryx_N : N ;
+fun anomalous_A : A ;
+fun anomaly_N : N ;
+fun anomie_N : N ;
+fun anon_Adv : Adv ;
+fun anonymity_N : N ;
+fun anonymous_A : A ;
+fun anoperineal_A : A ;
+fun anopheles_N : N ;
+fun anopheline_A : A ;
+fun anopheline_N : N ;
+fun anopia_N : N ;
+fun anorak_N : N ;
+fun anorchism_N : N ;
+fun anorectal_A : A ;
+fun anorectic_A : A ;
+fun anorexia_N : N ;
+fun anorexic_A : A ;
+fun anorexic_N : N ;
+fun anorgasmia_N : N ;
+fun anorthite_N : N ;
+fun anorthitic_A : A ;
+fun anorthopia_N : N ;
+fun anosmia_N : N ;
+fun anosmic_A : A ;
+fun anovulation_N : N ;
+fun anoxemia_N : N ;
+fun anoxemic_A : A ;
+fun anoxia_N : N ;
+fun anoxic_A : A ;
+fun anserine_A : A ;
+fun answer_N : N ;
+fun answer_V : V ;
+fun answerable_A : A ;
+fun ant_N : N ;
+fun ant_eater_N : N ;
+fun ant_hill_N : N ;
+fun antacid_A : A ;
+fun antacid_N : N ;
+fun antagonism_N : N ;
+fun antagonist_N : N ;
+fun antagonistic_A : A ;
+fun antagonistically_Adv : Adv ;
+fun antagonize_V : V ;
+fun antapex_N : N ;
+fun antarctic_A : A ;
+fun antbird_N : N ;
+fun ante_N : N ;
+fun ante_meridiem_Adv : Adv ;
+fun anteater_N : N ;
+fun antebellum_A : A ;
+fun antecedence_N : N ;
+fun antecedent_A : A ;
+fun antecedent_N : N ;
+fun antechamber_N : N ;
+fun antecubital_A : A ;
+fun antedate_V : V ;
+fun antediluvian_A : A ;
+fun antediluvian_N : N ;
+fun antefix_N : N ;
+fun antelope_N : N ;
+fun antemeridian_A : A ;
+fun antemortem_A : A ;
+fun antenatal_A : A ;
+fun antenna_N : N ;
+fun antennal_A : A ;
+fun antenuptial_A : A ;
+fun antepenult_N : N ;
+fun antepenultimate_A : A ;
+fun anterior_A : A ;
+fun anteriority_N : N ;
+fun anterograde_A : A ;
+fun anteroom_N : N ;
+fun anthelmintic_A : A ;
+fun anthem_N : N ;
+fun anther_N : N ;
+fun antheral_A : A ;
+fun antheridial_A : A ;
+fun antheridiophore_N : N ;
+fun antheridium_N : N ;
+fun antherozoid_N : N ;
+fun anthill_N : N ;
+fun anthologist_N : N ;
+fun anthology_N : N ;
+fun anthophagous_A : A ;
+fun anthophyllite_N : N ;
+fun anthozoan_N : N ;
+fun anthracite_N : N ;
+fun anthracitic_A : A ;
+fun anthracosis_N : N ;
+fun anthrax_N : N ;
+fun anthropic_A : A ;
+fun anthropocentric_A : A ;
+fun anthropocentrism_N : N ;
+fun anthropogenesis_N : N ;
+fun anthropogenetic_A : A ;
+fun anthropoid_A : A ;
+fun anthropoid_N : N ;
+fun anthropolatry_N : N ;
+fun anthropological_A : A ;
+fun anthropologist_N : N ;
+fun anthropology_N : N ;
+fun anthropometric_A : A ;
+fun anthropometry_N : N ;
+fun anthropomorphic_A : A ;
+fun anthropomorphism_N : N ;
+fun anthropophagous_A : A ;
+fun anthropophagy_N : N ;
+fun anthroposophy_N : N ;
+fun anthurium_N : N ;
+fun anti_A : A ;
+fun anti_N : N ;
+fun anti_Prep : Prep ;
+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 antiadrenergic_A : A ;
+fun antiaircraft_A : A ;
+fun antiaircraft_N : N ;
+fun antialiasing_N : N ;
+fun antiapartheid_A : A ;
+fun antiarrhythmic_N : N ;
+fun antiauthoritarian_A : A ;
+fun antibacterial_A : A ;
+fun antibacterial_N : N ;
+fun antibaryon_N : N ;
+fun antibiosis_N : N ;
+fun antibiotic_A : A ;
+fun antibiotic_N : N ;
+fun antibody_N : N ;
+fun antic_A : A ;
+fun antic_N : N ;
+fun anticancer_A : A ;
+fun anticatalyst_N : N ;
+fun anticholinergic_A : A ;
+fun anticholinergic_N : N ;
+fun anticholinesterase_N : N ;
+fun anticipant_A : A ;
+fun anticipate_V : V ;
+fun anticipation_N : N ;
+fun anticipator_N : N ;
+fun anticipatory_A : A ;
+fun anticlimactic_A : A ;
+fun anticlimax_N : N ;
+fun anticlinal_A : A ;
+fun anticlockwise_Adv : Adv ;
+fun anticoagulant_N : N ;
+fun anticoagulation_N : N ;
+fun anticoagulative_A : A ;
+fun anticonvulsant_N : N ;
+fun anticyclone_N : N ;
+fun anticyclonic_A : A ;
+fun antidepressant_N : N ;
+fun antidiabetic_N : N ;
+fun antidiarrheal_N : N ;
+fun antidiuretic_N : N ;
+fun antidotal_A : A ;
+fun antidote_N : N ;
+fun antidromic_A : A ;
+fun antiemetic_N : N ;
+fun antiestablishmentarianism_N : N ;
+fun antifeminist_N : N ;
+fun antiferromagnetic_A : A ;
+fun antiferromagnetism_N : N ;
+fun antiflatulent_N : N ;
+fun antifreeze_N : N ;
+fun antifungal_N : N ;
+fun antigen_N : N ;
+fun antigenic_A : A ;
+fun antigram_N : N ;
+fun antiguan_A : A ;
+fun antiguan_N : N ;
+fun antiheretical_A : A ;
+fun antihero_N : N ;
+fun antihistamine_N : N ;
+fun antihypertensive_N : N ;
+fun antiknock_A : A ;
+fun antiknock_N : N ;
+fun antilepton_N : N ;
+fun antilogarithm_N : N ;
+fun antimacassar_N : N ;
+fun antimagnetic_A : A ;
+fun antimalarial_N : N ;
+fun antimatter_N : N ;
+fun antimeson_N : N ;
+fun antimetabolite_N : N ;
+fun antimicrobial_A : A ;
+fun antimonial_A : A ;
+fun antimonic_A : A ;
+fun antimonopoly_A : A ;
+fun antimony_N : N ;
+fun antimuon_N : N ;
+fun antimycin_N : N ;
+fun antineoplastic_N : N ;
+fun antineutrino_N : N ;
+fun antineutron_N : N ;
+fun antinode_N : N ;
+fun antinomasia_N : N ;
+fun antinomian_A : A ;
+fun antinomian_N : N ;
+fun antinomianism_N : N ;
+fun antinomy_N : N ;
+fun antioxidant_N : N ;
+fun antiparallel_A : A ;
+fun antiparticle_N : N ;
+fun antipasto_N : N ;
+fun antipathetic_A : A ;
+fun antipathy_N : N ;
+fun antipersonnel_A : A ;
+fun antiperspirant_N : N ;
+fun antiphlogistic_A : A ;
+fun antiphon_N : N ;
+fun antiphonary_A : A ;
+fun antiphonary_N : N ;
+fun antiphony_N : N ;
+fun antiphrasis_N : N ;
+fun antipodal_A : A ;
+fun antipodal_N : N ;
+fun antipode_N : N ;
+fun antipodes_N : N ;
+fun antipollution_A : A ;
+fun antipope_N : N ;
+fun antiproton_N : N ;
+fun antiprotozoal_N : N ;
+fun antipruritic_N : N ;
+fun antipyresis_N : N ;
+fun antipyretic_A : A ;
+fun antipyretic_N : N ;
+fun antiquarian_A : A ;
+fun antiquarian_N : N ;
+fun antiquark_N : N ;
+fun antiquary_N : N ;
+fun antiquated_A : A ;
+fun antique_A : A ;
+fun antique_N : N ;
+fun antiquity_N : N ;
+fun antiredeposition_N : N ;
+fun antirrhinum_N : N ;
+fun antisatellite_A : A ;
+fun antisepsis_N : N ;
+fun antiseptic_A : A ;
+fun antiseptic_N : N ;
+fun antiserum_N : N ;
+fun antisocial_A : A ;
+fun antispasmodic_N : N ;
+fun antistrophe_N : N ;
+fun antistrophic_A : A ;
+fun antisubmarine_A : A ;
+fun antisyphilitic_N : N ;
+fun antitank_A : A ;
+fun antitauon_N : N ;
+fun antithesis_N : N ;
+fun antithetic_A : A ;
+fun antithetical_A : A ;
+fun antithyroid_A : A ;
+fun antitoxic_A : A ;
+fun antitoxin_N : N ;
+fun antitrade_A : A ;
+fun antitrade_N : N ;
+fun antitrades_N : N ;
+fun antitussive_N : N ;
+fun antitype_N : N ;
+fun antitypic_A : A ;
+fun antivenin_N : N ;
+fun antiviral_A : A ;
+fun antiviral_N : N ;
+fun antler_N : N ;
+fun antlered_A : A ;
+fun antonym_N : N ;
+fun antonymous_A : A ;
+fun antonymy_N : N ;
+fun antrorse_A : A ;
+fun antrum_N : N ;
+fun antsy_A : A ;
+fun anuran_A : A ;
+fun anuresis_N : N ;
+fun anuretic_A : A ;
+fun anurous_A : A ;
+fun anus_N : N ;
+fun anvil_N : N ;
+fun anxiety_N : N ;
+fun anxiolytic_A : A ;
+fun anxious_A : A ;
+fun anxiousness_N : N ;
+fun any_Adv : Adv ;
+fun anyhow_Adv : Adv ;
+fun anymore_Adv : Adv ;
+fun anyplace_Adv : Adv ;
+fun anyway_Adv : Adv ;
+fun anywhere_Adv : Adv ;
+fun aorist_N : N ;
+fun aoristic_A : A ;
+fun aorta_N : N ;
+fun aortal_A : A ;
+fun aortitis_N : N ;
+fun aoudad_N : N ;
+fun apace_Adv : Adv ;
+fun apache_N : N ;
+fun apadana_N : N ;
+fun apanage_N : N ;
+fun apar_N : N ;
+fun apart_Adv : Adv ;
+fun apart_from_Prep : Prep ;
+fun apartheid_N : N ;
+fun apartment_N : N ;
+fun apathetic_A : A ;
+fun apathetically_Adv : Adv ;
+fun apathy_N : N ;
+fun apatite_N : N ;
+fun apatosaur_N : N ;
+fun ape_N : N ;
+fun ape_V : V ;
+fun apercu_N : N ;
+fun aperea_N : N ;
+fun aperient_A : A ;
+fun aperient_N : N ;
+fun aperiodic_A : A ;
+fun aperitif_N : N ;
+fun aperture_N : N ;
+fun apery_N : N ;
+fun apetalous_A : A ;
+fun apex_N : N ;
+fun aphaeresis_N : N ;
+fun aphaeretic_A : A ;
+fun aphagia_N : N ;
+fun aphakia_N : N ;
+fun aphakic_A : A ;
+fun aphakic_N : N ;
+fun aphanite_N : N ;
+fun aphanitic_A : A ;
+fun aphasia_N : N ;
+fun aphasic_A : A ;
+fun aphasic_N : N ;
+fun aphelion_N : N ;
+fun apheresis_N : N ;
+fun aphesis_N : N ;
+fun aphetic_A : A ;
+fun aphid_N : N ;
+fun aphis_N : N ;
+fun aphonia_N : N ;
+fun aphonic_A : A ;
+fun aphorism_N : N ;
+fun aphorist_N : N ;
+fun aphoristic_A : A ;
+fun aphotic_A : A ;
+fun aphrodisia_N : N ;
+fun aphrodisiac_A : A ;
+fun aphrodisiac_N : N ;
+fun aphyllous_A : A ;
+fun apian_A : A ;
+fun apiarian_A : A ;
+fun apiarist_N : N ;
+fun apiary_N : N ;
+fun apical_A : A ;
+fun apiculate_A : A ;
+fun apicultural_A : A ;
+fun apiculture_N : N ;
+fun apiece_Adv : Adv ;
+fun apish_A : A ;
+fun apishamore_N : N ;
+fun apivorous_A : A ;
+fun aplacental_A : A ;
+fun aplanatic_A : A ;
+fun aplasia_N : N ;
+fun aplite_N : N ;
+fun aplitic_A : A ;
+fun aplomb_N : N ;
+fun apnea_N : N ;
+fun apneic_A : A ;
+fun apoapsis_N : N ;
+fun apocalypse_N : N ;
+fun apocalyptic_A : A ;
+fun apocarpous_A : A ;
+fun apochromatic_A : A ;
+fun apocope_N : N ;
+fun apocrine_A : A ;
+fun apocrypha_N : N ;
+fun apocryphal_A : A ;
+fun apocynaceous_A : A ;
+fun apodal_A : A ;
+fun apodeme_N : N ;
+fun apodictic_A : A ;
+fun apoenzyme_N : N ;
+fun apogamic_A : A ;
+fun apogamy_N : N ;
+fun apogean_A : A ;
+fun apogee_N : N ;
+fun apojove_N : N ;
+fun apolemia_N : N ;
+fun apolitical_A : A ;
+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 apomict_N : N ;
+fun apomictic_A : A ;
+fun apomixis_N : N ;
+fun apomorphine_N : N ;
+fun aponeurosis_N : N ;
+fun aponeurotic_A : A ;
+fun apopemptic_A : A ;
+fun apophasis_N : N ;
+fun apophatic_A : A ;
+fun apophatism_N : N ;
+fun apophthegm_N : N ;
+fun apophyseal_A : A ;
+fun apophysis_N : N ;
+fun apoplectic_A : A ;
+fun apoplectiform_A : A ;
+fun apoplexy_N : N ;
+fun apoptosis_N : N ;
+fun aposelene_N : N ;
+fun aposiopesis_N : N ;
+fun aposiopetic_A : A ;
+fun apostasy_N : N ;
+fun apostate_A : A ;
+fun apostate_N : N ;
+fun apostle_N : N ;
+fun apostleship_N : N ;
+fun apostolic_A : A ;
+fun apostrophe_N : N ;
+fun apostrophic_A : A ;
+fun apostrophize_V : V ;
+fun apothecary_N : N ;
+fun apothecial_A : A ;
+fun apothecium_N : N ;
+fun apothegm_N : N ;
+fun apothegmatic_A : A ;
+fun apotheosis_N : N ;
+fun apotropaic_A : A ;
+fun appal_V : V ;
+fun appalling_A : A ;
+fun appalling_N : N ;
+fun appanage_N : N ;
+fun apparatchik_N : N ;
+fun apparatus_N : N ;
+fun apparel_N : N ;
+fun apparel_V : V ;
+fun appareled_A : A ;
+fun apparent_A : A ;
+fun apparentness_N : N ;
+fun apparition_N : N ;
+fun apparitional_A : A ;
+fun appeal_N : N ;
+fun appeal_V : V ;
+fun appealable_A : A ;
+fun appealingly_Adv : Adv ;
+fun appear_V : V ;
+fun appearance_N : N ;
+fun appeasable_A : A ;
+fun appease_V : V ;
+fun appeasement_N : N ;
+fun appeaser_N : N ;
+fun appellant_A : A ;
+fun appellant_N : N ;
+fun appellate_A : A ;
+fun appellation_N : N ;
+fun appellative_A : A ;
+fun append_V : V ;
+fun appendage_N : N ;
+fun appendaged_A : A ;
+fun appendant_A : A ;
+fun appendectomy_N : N ;
+fun appendicitis_N : N ;
+fun appendicle_N : N ;
+fun appendicular_A : A ;
+fun appendicularia_N : N ;
+fun appendix_N : N ;
+fun apperception_N : N ;
+fun apperceptive_A : A ;
+fun appertain_V : V ;
+fun appetent_A : A ;
+fun appetite_N : N ;
+fun appetitive_A : A ;
+fun appetizer_N : N ;
+fun appetizing_A : A ;
+fun appetizingness_N : N ;
+fun applaud_V : V ;
+fun applaudable_A : A ;
+fun applause_N : N ;
+fun apple_N : N ;
+fun applecart_N : N ;
+fun applejack_N : N ;
+fun applesauce_N : N ;
+fun applet_N : N ;
+fun applewood_N : N ;
+fun appliance_N : N ;
+fun applicability_N : N ;
+fun applicable_A : A ;
+fun applicant_N : N ;
+fun application_N : N ;
+fun applicative_A : A ;
+fun applicator_N : N ;
+fun appliqué_N : N ;
+fun appliqué_V : V ;
+fun apply_V : V ;
+fun appoint_V : V ;
+fun appointee_N : N ;
+fun appointive_A : A ;
+fun appointment_N : N ;
+fun apportion_V : V ;
+fun apportionment_N : N ;
+fun apposite_A : A ;
+fun apposition_N : N ;
+fun appositional_A : A ;
+fun appositively_Adv : Adv ;
+fun appraisal_N : N ;
+fun appraise_V : V ;
+fun appraiser_N : N ;
+fun appreciable_A : A ;
+fun appreciate_V : V ;
+fun appreciation_N : N ;
+fun appreciative_A : A ;
+fun appreciator_N : N ;
+fun apprehend_V : V ;
+fun apprehender_N : N ;
+fun apprehensible_A : A ;
+fun apprehension_N : N ;
+fun apprehensive_A : A ;
+fun apprentice_N : N ;
+fun apprentice_V : V ;
+fun apprenticeship_N : N ;
+fun appressed_A : A ;
+fun apprise_V : V ;
+fun appro_N : N ;
+fun approach_N : N ;
+fun approach_V : V ;
+fun approachability_N : N ;
+fun approachable_A : A ;
+fun approbation_N : N ;
+fun appropriable_A : A ;
+fun appropriate_A : A ;
+fun appropriate_V : V ;
+fun appropriateness_N : N ;
+fun appropriation_N : N ;
+fun appropriative_A : A ;
+fun appropriator_N : N ;
+fun approval_N : N ;
+fun approve_V : V ;
+fun approver_N : N ;
+fun approvingly_Adv : Adv ;
+fun approximate_A : A ;
+fun approximate_V : V ;
+fun approximation_N : N ;
+fun appurtenance_N : N ;
+fun apractic_A : A ;
+fun apraxia_N : N ;
+fun apricot_N : N ;
+fun apron_N : N ;
+fun apropos_A : A ;
+fun apropos_Adv : Adv ;
+fun apropos_Prep : Prep ;
+fun après_ski_A : A ;
+fun apse_N : N ;
+fun apsidal_A : A ;
+fun apt_A : A ;
+fun apteral_A : A ;
+fun apterous_A : A ;
+fun aptitude_N : N ;
+fun aptitudinal_A : A ;
+fun aptness_N : N ;
+fun apud_Prep : Prep ;
+fun aquaculture_N : N ;
+fun aqualung_N : N ;
+fun aquamarine_N : N ;
+fun aquanaut_N : N ;
+fun aquaphobia_N : N ;
+fun aquaplane_N : N ;
+fun aquaplane_V : V ;
+fun aquarium_N : N ;
+fun aquatic_A : A ;
+fun aquatic_N : N ;
+fun aquatint_N : N ;
+fun aquavit_N : N ;
+fun aqueduct_N : N ;
+fun aqueous_A : A ;
+fun aquicultural_A : A ;
+fun aquifer_N : N ;
+fun aquiferous_A : A ;
+fun aquiline_A : A ;
+fun arabesque_N : N ;
+fun arability_N : N ;
+fun arabist_N : N ;
+fun arable_A : A ;
+fun arachnid_N : N ;
+fun arachnoid_A : A ;
+fun arachnoid_N : N ;
+fun arachnophobia_N : N ;
+fun aragonite_N : N ;
+fun aralia_N : N ;
+fun arame_N : N ;
+fun araneidal_A : A ;
+fun arariba_N : N ;
+fun araroba_N : N ;
+fun araucaria_N : N ;
+fun arbiter_N : N ;
+fun arbitrable_A : A ;
+fun arbitrage_N : N ;
+fun arbitrager_N : N ;
+fun arbitrageur_N : N ;
+fun arbitral_A : A ;
+fun arbitrament_N : N ;
+fun arbitrary_A : A ;
+fun arbitrate_V : V ;
+fun arbitration_N : N ;
+fun arbitrative_A : A ;
+fun arbitrator_N : N ;
+fun arbor_N : N ;
+fun arboraceous_A : A ;
+fun arboreal_A : A ;
+fun arboretum_N : N ;
+fun arborical_A : A ;
+fun arboriculture_N : N ;
+fun arborolatry_N : N ;
+fun arborvitae_N : N ;
+fun arbour_N : N ;
+fun arbovirus_N : N ;
+fun arbutus_N : N ;
+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 arced_A : A ;
+fun arcella_N : N ;
+fun arch_A : A ;
+fun arch_N : N ;
+fun arch_V : V ;
+fun archaebacteria_N : N ;
+fun archaeological_A : A ;
+fun archaeologist_N : N ;
+fun archaeology_N : N ;
+fun archaeopteryx_N : N ;
+fun archaeornis_N : N ;
+fun archaic_A : A ;
+fun archaism_N : N ;
+fun archaist_N : N ;
+fun archaistic_A : A ;
+fun archangel_N : N ;
+fun archangelic_A : A ;
+fun archbishop_N : N ;
+fun archbishopric_N : N ;
+fun archdeacon_N : N ;
+fun archdeaconry_N : N ;
+fun archdiocesan_A : A ;
+fun archdiocese_N : N ;
+fun archducal_A : A ;
+fun archduchess_N : N ;
+fun archduchy_N : N ;
+fun archduke_N : N ;
+fun archean_A : A ;
+fun archegonial_A : A ;
+fun archegonium_N : N ;
+fun archenteron_N : N ;
+fun archeologist_N : N ;
+fun archeology_N : N ;
+fun archeozoic_A : A ;
+fun archer_N : N ;
+fun archerfish_N : N ;
+fun archery_N : N ;
+fun archespore_N : N ;
+fun archesporial_A : A ;
+fun archetypal_A : A ;
+fun archetype_N : N ;
+fun archiannelid_N : N ;
+fun archidiaconal_A : A ;
+fun archidiaconate_N : N ;
+fun archiepiscopal_A : A ;
+fun archil_N : N ;
+fun archimandrite_N : N ;
+fun archine_N : N ;
+fun archipallium_N : N ;
+fun archipelagic_A : A ;
+fun archipelago_N : N ;
+fun architect_N : N ;
+fun architectonics_N : N ;
+fun architectural_A : A ;
+fun architecture_N : N ;
+fun architeuthis_N : N ;
+fun architrave_N : N ;
+fun archival_A : A ;
+fun archive_N : N ;
+fun archives_N : N ;
+fun archivist_N : N ;
+fun archosaur_N : N ;
+fun archosaurian_A : A ;
+fun archpriest_N : N ;
+fun archway_N : N ;
+fun arco_A : A ;
+fun arctic_A : A ;
+fun arctic_N : N ;
+fun arctiid_N : N ;
+fun arcus_N : N ;
+fun ardeb_N : N ;
+fun ardent_A : A ;
+fun ardor_N : N ;
+fun ardour_N : N ;
+fun arduous_A : A ;
+fun arduousness_N : N ;
+fun are_N : N ;
+fun area_N : N ;
+fun areal_A : A ;
+fun areaway_N : N ;
+fun areca_N : N ;
+fun areflexia_N : N ;
+fun arena_N : N ;
+fun arenaceous_A : A ;
+fun arenavirus_N : N ;
+fun arenicolous_A : A ;
+fun areola_N : N ;
+fun areolar_A : A ;
+fun arethusa_N : N ;
+fun argali_N : N ;
+fun argent_A : A ;
+fun argent_N : N ;
+fun argentic_A : A ;
+fun argentiferous_A : A ;
+fun argentine_N : N ;
+fun argentinian_A : A ;
+fun argentinian_N : N ;
+fun argentinosaur_N : N ;
+fun argentite_N : N ;
+fun argentous_A : A ;
+fun argil_N : N ;
+fun argillaceous_A : A ;
+fun argillite_N : N ;
+fun arginine_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 argument_N : N ;
+fun argumentation_N : N ;
+fun argumentative_A : A ;
+fun argus_N : N ;
+fun argus_eyed_A : A ;
+fun argyle_N : N ;
+fun argyll_N : N ;
+fun argyrodite_N : N ;
+fun aria_N : N ;
+fun arianist_N : N ;
+fun arid_A : A ;
+fun aridity_N : N ;
+fun arietta_N : N ;
+fun aright_Adv : Adv ;
+fun aril_N : N ;
+fun ariled_A : A ;
+fun ariose_A : A ;
+fun arioso_N : N ;
+fun arise_V : V ;
+fun arista_N : N ;
+fun aristocracy_N : N ;
+fun aristocrat_N : N ;
+fun aristocratic_A : A ;
+fun aristocratically_Adv : Adv ;
+fun arithmancy_N : N ;
+fun arithmetic_N : N ;
+fun arithmetical_A : A ;
+fun arithmetician_N : N ;
+fun arity_N : N ;
+fun ark_N : N ;
+fun arm_N : N ;
+fun arm_V : V ;
+fun arm_hole_N : N ;
+fun armada_N : N ;
+fun armadillo_N : N ;
+fun armament_N : N ;
+fun armamentarium_N : N ;
+fun armature_N : N ;
+fun armband_N : N ;
+fun armchair_N : N ;
+fun armet_N : N ;
+fun armful_N : N ;
+fun armhole_N : N ;
+fun armiger_N : N ;
+fun armilla_N : N ;
+fun armillary_A : A ;
+fun arming_N : N ;
+fun armistice_N : N ;
+fun armless_A : A ;
+fun armlet_N : N ;
+fun armlike_A : A ;
+fun armoire_N : N ;
+fun armor_N : N ;
+fun armored_A : A ;
+fun armorer_N : N ;
+fun armorial_A : A ;
+fun armory_N : N ;
+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 armrest_N : N ;
+fun arms_race_N : N ;
+fun arms_runner_N : N ;
+fun army_N : N ;
+fun armyworm_N : N ;
+fun arnica_N : N ;
+fun aroid_A : A ;
+fun aroma_N : N ;
+fun aromatherapy_N : N ;
+fun aromatic_A : A ;
+fun arose_V : V ;
+fun around_Adv : Adv ;
+fun around_Prep : Prep ;
+fun arousal_N : N ;
+fun arouse_V : V ;
fun arpeggio_N : N ;
-fun pistachio_N : N ;
-fun mustachio_N : N ;
-fun radicchio_N : N ;
-fun seraglio_N : N ;
-fun intaglio_N : N ;
-fun imbroglio_N : N ;
-fun punctilio_N : N ;
-fun folio_N : N ;
-fun portfolio_N : N ;
-fun polio_N : N ;
+fun arpent_N : N ;
+fun arquebus_N : N ;
+fun arrack_N : N ;
+fun arraign_V : V ;
+fun arraignment_N : N ;
+fun arrange_V : V ;
+fun arrangement_N : N ;
+fun arranger_N : N ;
+fun arrant_A : A ;
+fun arras_N : N ;
+fun array_N : N ;
+fun array_V : V ;
+fun arrears_N : N ;
+fun arrest_N : N ;
+fun arrest_V : V ;
+fun arrester_N : N ;
+fun arresting_A : A ;
+fun arrhythmic_A : A ;
+fun arrival_N : N ;
+fun arrive_V : V ;
+fun arrière_pensée_N : N ;
+fun arroba_N : N ;
+fun arrogance_N : N ;
+fun arrogant_A : A ;
+fun arrogate_V : V ;
+fun arrogator_N : N ;
+fun arrow_N : N ;
+fun arrowhead_N : N ;
+fun arrowroot_N : N ;
+fun arrowsmith_N : N ;
+fun arrowworm_N : N ;
+fun arroyo_N : N ;
+fun arse_N : N ;
+fun arsehole_N : N ;
+fun arsenal_N : N ;
+fun arsenate_N : N ;
+fun arsenic_N : N ;
+fun arsenical_A : A ;
+fun arsenical_N : N ;
+fun arsenide_N : N ;
+fun arsenious_A : A ;
+fun arsenopyrite_N : N ;
+fun arsine_N : N ;
+fun arson_N : N ;
+fun arsonist_N : N ;
+fun art_N : N ;
+fun artefact_N : N ;
+fun artemisia_N : N ;
+fun arterial_A : A ;
+fun arteriectasis_N : N ;
+fun arteriogram_N : N ;
+fun arteriography_N : N ;
+fun arteriolar_A : A ;
+fun arteriole_N : N ;
+fun arteriolosclerosis_N : N ;
+fun arteriosclerosis_N : N ;
+fun arteriosclerotic_A : A ;
+fun arteriovenous_A : A ;
+fun arteritis_N : N ;
+fun artery_N : N ;
+fun artesian_A : A ;
+fun artful_A : A ;
+fun artfulness_N : N ;
+fun arthralgia_N : N ;
+fun arthralgic_A : A ;
+fun arthritic_A : A ;
+fun arthritic_N : N ;
+fun arthritis_N : N ;
+fun arthrocentesis_N : N ;
+fun arthrodesis_N : N ;
+fun arthrogram_N : N ;
+fun arthrography_N : N ;
+fun arthromere_N : N ;
+fun arthromeric_A : A ;
+fun arthropathy_N : N ;
+fun arthroplasty_N : N ;
+fun arthropod_N : N ;
+fun arthropodal_A : A ;
+fun arthroscope_N : N ;
+fun arthroscopy_N : N ;
+fun arthrospore_N : N ;
+fun arthrosporic_A : A ;
+fun artichoke_N : N ;
+fun article_N : N ;
+fun article_V : V ;
+fun articular_A : A ;
+fun articulate_A : A ;
+fun articulate_V : V ;
+fun articulation_N : N ;
+fun articulator_N : N ;
+fun articulatory_A : A ;
+fun artifact_N : N ;
+fun artifactual_A : A ;
+fun artifice_N : N ;
+fun artificer_N : N ;
+fun artificial_A : A ;
+fun artificiality_N : N ;
+fun artillery_N : N ;
+fun artilleryman_N : N ;
+fun artiodactyl_A : A ;
+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 artwork_N : N ;
+fun arty_A : A ;
+fun arty_crafty_A : A ;
+fun arum_N : N ;
+fun arundinaceous_A : A ;
+fun aryan_A : A ;
+fun aryan_N : N ;
+fun arytenoid_N : N ;
+fun arête_N : N ;
+fun as_Prep : Prep ;
+fun as_for_Prep : Prep ;
+fun as_of_Prep : Prep ;
+fun as_opposed_to_Prep : Prep ;
+fun as_per_Prep : Prep ;
+fun as_regards_Prep : Prep ;
+fun as_well_Adv : Adv ;
+fun asafetida_N : N ;
+fun asana_N : N ;
+fun asarabacca_N : N ;
+fun asbestos_N : N ;
+fun asbestosis_N : N ;
+fun ascariasis_N : N ;
+fun ascend_V : V ;
+fun ascendable_A : A ;
+fun ascendancy_N : N ;
+fun ascendant_A : A ;
+fun ascendant_N : N ;
+fun ascendency_N : N ;
+fun ascendent_N : N ;
+fun ascender_N : N ;
+fun ascension_N : N ;
+fun ascensional_A : A ;
+fun ascent_N : N ;
+fun ascertain_V : V ;
+fun ascertainable_A : A ;
+fun ascetic_A : A ;
+fun ascetic_N : N ;
+fun ascetically_Adv : Adv ;
+fun asceticism_N : N ;
+fun ascidian_N : N ;
+fun ascites_N : N ;
+fun ascitic_A : A ;
+fun asclepiad_N : N ;
+fun asclepiadaceous_A : A ;
+fun ascocarp_N : N ;
+fun ascocarpous_A : A ;
+fun ascolichen_N : N ;
+fun ascoma_N : N ;
+fun ascomycete_N : N ;
+fun ascomycetous_A : A ;
+fun ascorbic_A : A ;
+fun ascospore_N : N ;
+fun ascosporic_A : A ;
+fun ascot_N : N ;
+fun ascribable_A : A ;
+fun ascribe_V : V ;
+fun ascription_N : N ;
+fun ascus_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 ashcake_N : N ;
+fun ashcan_N : N ;
+fun ashen_A : A ;
+fun ashlar_N : N ;
+fun ashore_Adv : Adv ;
+fun ashram_N : N ;
+fun ashtray_N : N ;
+fun ashy_A : A ;
+fun asiatic_A : A ;
+fun asiatic_N : N ;
+fun aside_Adv : Adv ;
+fun aside_N : N ;
+fun aside_from_Prep : Prep ;
+fun asinine_A : A ;
+fun asininity_N : N ;
+fun ask_V : V ;
+fun askance_A : A ;
+fun askance_Adv : Adv ;
+fun askew_A : A ;
+fun askew_Adv : Adv ;
+fun asking_N : N ;
+fun aslant_A : A ;
+fun aslant_Adv : Adv ;
+fun asleep_A : A ;
+fun asleep_Adv : Adv ;
+fun asocial_A : A ;
+fun asp_N : N ;
+fun asparaginase_N : N ;
+fun asparagine_N : N ;
+fun asparagus_N : N ;
+fun aspartame_N : N ;
+fun aspect_N : N ;
+fun aspectual_A : A ;
+fun aspen_N : N ;
+fun asper_N : N ;
+fun aspergill_N : N ;
+fun aspergillosis_N : N ;
+fun asperity_N : N ;
+fun asperse_V : V ;
+fun aspersion_N : N ;
+fun aspersorium_N : N ;
+fun asphalt_N : N ;
+fun asphalt_V : V ;
+fun asphaltic_A : A ;
+fun aspheric_A : A ;
+fun asphodel_N : N ;
+fun asphyxia_N : N ;
+fun asphyxiate_V : V ;
+fun asphyxiating_A : A ;
+fun asphyxiation_N : N ;
+fun aspic_N : N ;
+fun aspidistra_N : N ;
+fun aspirant_A : A ;
+fun aspirant_N : N ;
+fun aspirate_N : N ;
+fun aspirate_V : V ;
+fun aspiration_N : N ;
+fun aspirator_N : N ;
+fun aspire_V : V ;
+fun aspirin_N : N ;
+fun ass_N : N ;
+fun assagai_N : N ;
+fun assail_V : V ;
+fun assailability_N : N ;
+fun assailable_A : A ;
+fun assailant_N : N ;
+fun assassin_N : N ;
+fun assassinate_V : V ;
+fun assassination_N : N ;
+fun assault_N : N ;
+fun assault_V : V ;
+fun assaultive_A : A ;
+fun assay_N : N ;
+fun assay_V : V ;
+fun assayer_N : N ;
+fun assegai_N : N ;
+fun assemblage_N : N ;
+fun assemble_V : V ;
+fun assembler_N : N ;
+fun assembly_N : N ;
+fun assemblyman_N : N ;
+fun assemblywoman_N : N ;
+fun assent_N : N ;
+fun assent_V : V ;
+fun assenter_N : N ;
+fun assentient_A : A ;
+fun assert_V : V ;
+fun asserter_N : N ;
+fun assertion_N : N ;
+fun assertive_A : A ;
+fun assertiveness_N : N ;
+fun assess_V : V ;
+fun assessable_A : A ;
+fun assessee_N : N ;
+fun assessment_N : N ;
+fun assessor_N : N ;
+fun asset_N : N ;
+fun assets_N : N ;
+fun asseverate_V : V ;
+fun asseveration_N : N ;
+fun asshole_N : N ;
+fun assibilation_N : N ;
+fun assiduity_N : N ;
+fun assiduous_A : A ;
+fun assign_V : V ;
+fun assignable_A : A ;
+fun assignation_N : N ;
+fun assignee_N : N ;
+fun assignment_N : N ;
+fun assignor_N : N ;
+fun assimilable_A : A ;
+fun assimilate_V : V ;
+fun assimilation_N : N ;
+fun assimilative_A : A ;
+fun assist_N : N ;
+fun assist_V : V ;
+fun assistance_N : N ;
+fun assistant_N : N ;
+fun assistive_A : A ;
+fun assize_N : N ;
+fun assizes_N : N ;
+fun assoc_N : N ;
+fun associability_N : N ;
+fun associable_A : A ;
+fun associate_A : A ;
+fun associate_N : N ;
+fun associate_V : V ;
+fun associateship_N : N ;
+fun association_N : N ;
+fun associational_A : A ;
+fun associationism_N : N ;
+fun associative_A : A ;
+fun assonance_N : N ;
+fun assonant_A : A ;
+fun assorted_A : A ;
+fun assortment_N : N ;
+fun asst_N : N ;
+fun assuage_V : V ;
+fun assuasive_A : A ;
+fun assume_V : V ;
+fun assumption_N : N ;
+fun assumptive_A : A ;
+fun assurance_N : N ;
+fun assure_V : V ;
+fun assuredly_Adv : Adv ;
+fun assuredness_N : N ;
+fun assurgent_A : A ;
+fun assuring_A : A ;
+fun astasia_N : N ;
+fun astatic_A : A ;
+fun astatine_N : N ;
+fun aster_N : N ;
+fun astereognosis_N : N ;
+fun asteriated_A : A ;
+fun asterion_N : N ;
+fun asterisk_N : N ;
+fun asterisked_A : A ;
+fun asterism_N : N ;
+fun asterismal_A : A ;
+fun astern_Adv : Adv ;
+fun asternal_A : A ;
+fun asteroid_A : A ;
+fun asteroid_N : N ;
+fun asteroidal_A : A ;
+fun asthenia_N : N ;
+fun asthenic_A : A ;
+fun asthenosphere_N : N ;
+fun asthma_N : N ;
+fun asthmatic_A : A ;
+fun asthmatic_N : N ;
+fun astigmatic_A : A ;
+fun astigmatism_N : N ;
+fun astilbe_N : N ;
+fun astir_A : A ;
+fun astir_Adv : Adv ;
+fun astomatal_A : A ;
+fun astomatous_A : A ;
+fun astonish_V : V ;
+fun astonishing_A : A ;
+fun astonishment_N : N ;
+fun astound_V : V ;
+fun astounding_A : A ;
+fun astragalar_A : A ;
+fun astrakhan_N : N ;
+fun astral_A : A ;
+fun astrantia_N : N ;
+fun astraphobia_N : N ;
+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 astrocyte_N : N ;
+fun astrocytic_A : A ;
+fun astrodome_N : N ;
+fun astrodynamics_N : N ;
+fun astrogator_N : N ;
+fun astroglia_N : N ;
+fun astrolabe_N : N ;
+fun astrolatry_N : N ;
+fun astrologer_N : N ;
+fun astrological_A : A ;
+fun astrology_N : N ;
+fun astrometry_N : N ;
+fun astronaut_N : N ;
+fun astronautic_A : A ;
+fun astronautics_N : N ;
+fun astronomer_N : N ;
+fun astronomic_A : A ;
+fun astronomical_A : A ;
+fun astronomy_N : N ;
+fun astrophysical_A : A ;
+fun astrophysicist_N : N ;
+fun astrophysics_N : N ;
+fun astute_A : A ;
+fun astuteness_N : N ;
+fun astylar_A : A ;
+fun asunder_Adv : Adv ;
+fun asylum_N : N ;
+fun asymmetric_A : A ;
+fun asymmetrical_A : A ;
+fun asymmetry_N : N ;
+fun asymptomatic_A : A ;
+fun asymptote_N : N ;
+fun asymptotic_A : A ;
+fun asymptotically_Adv : Adv ;
+fun asynchronism_N : N ;
+fun asynchronous_A : A ;
+fun asynclitism_N : N ;
+fun asyndetic_A : A ;
+fun asyndeton_N : N ;
+fun asynergic_A : A ;
+fun asynergy_N : N ;
+fun asystole_N : N ;
+fun at_N : N ;
+fun at_Prep : Prep ;
+fun at_all_Adv : Adv ;
+fun at_home_Adv : Adv ;
+fun at_home_N : N ;
+fun at_the_behest_of_Prep : Prep ;
+fun atabrine_N : N ;
+fun ataractic_A : A ;
+fun ataraxia_N : N ;
+fun atavism_N : N ;
+fun atavist_N : N ;
+fun atavistic_A : A ;
+fun ataxia_N : N ;
+fun ataxic_A : A ;
+fun atelectasis_N : N ;
+fun ateleiosis_N : N ;
+fun ateleiotic_A : A ;
+fun atelier_N : N ;
+fun atenolol_N : N ;
+fun athanor_N : N ;
+fun atheism_N : N ;
+fun atheist_A : A ;
+fun atheist_N : N ;
+fun atheistic_A : A ;
+fun athenaeum_N : N ;
+fun athenian_A : A ;
+fun athenian_N : N ;
+fun atherogenesis_N : N ;
+fun atheroma_N : N ;
+fun atheromatous_A : A ;
+fun atherosclerosis_N : N ;
+fun atherosclerotic_A : A ;
+fun athetosis_N : N ;
+fun athirst_A : A ;
+fun athlete_N : N ;
+fun athletic_A : A ;
+fun athleticism_N : N ;
+fun athletics_N : N ;
+fun athwart_Adv : Adv ;
+fun athwart_Prep : Prep ;
+fun atilt_A : A ;
+fun atlas_N : N ;
+fun atmometer_N : N ;
+fun atmosphere_N : N ;
+fun atmospheric_A : A ;
+fun atmospherics_N : N ;
+fun atole_N : N ;
+fun atoll_N : N ;
+fun atom_N : N ;
+fun atomic_A : A ;
+fun atomism_N : N ;
+fun atomistic_A : A ;
+fun atomization_N : N ;
+fun atomize_V : V ;
+fun atomizer_N : N ;
+fun atonal_A : A ;
+fun atonalistic_A : A ;
+fun atonality_N : N ;
+fun atone_V : V ;
+fun atonement_N : N ;
+fun atonic_A : A ;
+fun atonicity_N : N ;
+fun atop_Adv : Adv ;
+fun atop_Prep : Prep ;
+fun atopognosia_N : N ;
+fun atorvastatin_N : N ;
+fun atrabilious_A : A ;
+fun atrazine_N : N ;
+fun atresia_N : N ;
+fun atrial_A : A ;
+fun atrioventricular_A : A ;
+fun atrium_N : N ;
+fun atrocious_A : A ;
+fun atrocity_N : N ;
+fun atrophic_A : A ;
+fun atrophy_N : N ;
+fun atrophy_V : V ;
+fun atropine_N : N ;
+fun attach_V : V ;
+fun attachable_A : A ;
+fun attachment_N : N ;
+fun attaché_N : N ;
+fun attack_N : N ;
+fun attack_V : V ;
+fun attacker_N : N ;
+fun attain_V : V ;
+fun attainable_A : A ;
+fun attainder_N : N ;
+fun attainment_N : N ;
+fun attar_N : N ;
+fun attempt_N : N ;
+fun attempt_V : V ;
+fun attend_V : V ;
+fun attendance_N : N ;
+fun attendant_A : A ;
+fun attendant_N : N ;
+fun attention_N : N ;
+fun attentional_A : A ;
+fun attentive_A : A ;
+fun attentiveness_N : N ;
+fun attenuate_A : A ;
+fun attenuate_V : V ;
+fun attenuation_N : N ;
+fun attenuator_N : N ;
+fun attest_V : V ;
+fun attestation_N : N ;
+fun attester_N : N ;
+fun attic_A : A ;
+fun attic_N : N ;
+fun attire_N : N ;
+fun attire_V : V ;
+fun attitude_N : N ;
+fun attitudinal_A : A ;
+fun attitudinize_V : V ;
+fun attorney_N : N ;
+fun attorneyship_N : N ;
+fun attosecond_N : N ;
+fun attract_V : V ;
+fun attractable_A : A ;
+fun attraction_N : N ;
+fun attractive_A : A ;
+fun attractiveness_N : N ;
+fun attractor_N : N ;
+fun attributable_A : A ;
+fun attribute_N : N ;
+fun attribute_V : V ;
+fun attribution_N : N ;
+fun attributive_A : A ;
+fun attrited_A : A ;
+fun attrition_N : N ;
+fun attritional_A : A ;
+fun attune_V : V ;
+fun atypical_A : A ;
+fun atypicality_N : N ;
+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 auction_N : N ;
+fun auction_auctioned_V : V ;
+fun auction_auctionned_V : V ;
+fun auctioneer_N : N ;
+fun audacious_A : A ;
+fun audacity_N : N ;
+fun audibility_N : N ;
+fun audible_A : A ;
+fun audible_N : N ;
+fun audience_N : N ;
+fun audile_N : N ;
+fun audio_N : N ;
+fun audio_lingual_A : A ;
+fun audiocassette_N : N ;
+fun audiogram_N : N ;
+fun audiology_N : N ;
+fun audiometer_N : N ;
+fun audiometric_A : A ;
+fun audiometry_N : N ;
+fun audiotape_N : N ;
+fun audiovisual_A : A ;
+fun audiovisual_N : N ;
+fun audit_N : N ;
+fun audit_V : V ;
+fun audition_N : N ;
+fun audition_auditioned_V : V ;
+fun audition_auditionned_V : V ;
+fun auditor_N : N ;
+fun auditorium_N : N ;
+fun auditory_A : A ;
+fun augend_N : N ;
+fun auger_N : N ;
+fun aught_N : N ;
+fun augite_N : N ;
+fun augitic_A : A ;
+fun augment_V : V ;
+fun augmentation_N : N ;
+fun augmentative_A : A ;
+fun augur_N : N ;
+fun augur_V : V ;
+fun augury_N : N ;
+fun august_A : A ;
+fun augustan_A : A ;
+fun auk_N : N ;
+fun auklet_N : N ;
+fun auld_A : A ;
+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 aureate_A : A ;
+fun aureole_N : N ;
+fun auricle_N : N ;
+fun auricula_N : N ;
+fun auricular_A : A ;
+fun auriculare_N : N ;
+fun auriculate_A : A ;
+fun auriferous_A : A ;
+fun auriform_A : A ;
+fun aurochs_N : N ;
+fun aurora_N : N ;
+fun auroral_A : A ;
+fun aurous_A : A ;
+fun auscultation_N : N ;
+fun auscultatory_A : A ;
+fun auspice_N : N ;
+fun auspices_N : N ;
+fun auspicious_A : A ;
+fun auspiciousness_N : N ;
+fun aussie_N : N ;
+fun austenite_N : N ;
+fun austenitic_A : A ;
+fun austere_A : A ;
+fun austereness_N : N ;
+fun austerity_N : N ;
+fun austral_A : A ;
+fun austral_N : N ;
+fun australian_A : A ;
+fun australian_N : N ;
+fun australopithecine_A : A ;
+fun australopithecine_N : N ;
+fun austrian_A : A ;
+fun austrian_N : N ;
+fun autacoid_N : N ;
+fun autacoidal_A : A ;
+fun autarchic_A : A ;
+fun autarchy_N : N ;
+fun autarkic_A : A ;
+fun autarky_N : N ;
+fun auteur_N : N ;
+fun authentic_A : A ;
+fun authentically_Adv : Adv ;
+fun authenticate_V : V ;
+fun authentication_N : N ;
+fun authenticity_N : N ;
+fun author_N : N ;
+fun authore_V : V ;
+fun authoress_N : N ;
+fun authorial_A : A ;
+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_V : V ;
+fun authorizer_N : N ;
+fun authorship_N : N ;
+fun autism_N : N ;
+fun autistic_A : A ;
+fun auto_N : N ;
+fun auto_changer_N : N ;
+fun auto_da_fé_auto_de_fés_N : N ;
+fun auto_da_fé_autos_de_fé_N : N ;
+fun autoantibody_N : N ;
+fun autobahn_N : N ;
+fun autobiographer_N : N ;
+fun autobiographic_A : A ;
+fun autobiographical_A : A ;
+fun autobiography_N : N ;
+fun autocatalysis_N : N ;
+fun autocatalytic_A : A ;
+fun autochthon_N : N ;
+fun autochthonal_A : A ;
+fun autochthonous_A : A ;
+fun autoclave_N : N ;
+fun autocracy_N : N ;
+fun autocrat_N : N ;
+fun autocratic_A : A ;
+fun autocratically_Adv : Adv ;
+fun autodidact_N : N ;
+fun autodidactic_A : A ;
+fun autoecious_A : A ;
+fun autoerotic_A : A ;
+fun autoeroticism_N : N ;
+fun autofluorescence_N : N ;
+fun autofluorescent_A : A ;
+fun autofocus_N : N ;
+fun autogamous_A : A ;
+fun autogamy_N : N ;
+fun autogenetic_A : A ;
+fun autogenous_A : A ;
+fun autogiro_N : N ;
+fun autograft_N : N ;
+fun autograph_N : N ;
+fun autograph_V : V ;
+fun autographic_A : A ;
+fun autogyro_N : N ;
+fun autoicous_A : A ;
+fun autoimmune_A : A ;
+fun autoimmunity_N : N ;
+fun autoinjector_N : N ;
+fun autoloader_N : N ;
+fun autologous_A : A ;
+fun autolysis_N : N ;
+fun autolytic_A : A ;
+fun automat_N : N ;
+fun automate_V : V ;
+fun automatic_A : A ;
+fun automatic_N : N ;
+fun automatically_Adv : Adv ;
+fun automation_N : N ;
+fun automatism_N : N ;
+fun automaton_N : N ;
+fun automobile_N : N ;
+fun automotive_A : A ;
+fun automysophobia_N : N ;
+fun autonomic_A : A ;
+fun autonomous_A : A ;
+fun autonomy_N : N ;
+fun autophyte_N : N ;
+fun autopilot_N : N ;
+fun autoplastic_A : A ;
+fun autoplasty_N : N ;
+fun autopsy_N : N ;
+fun autoradiograph_N : N ;
+fun autoradiographic_A : A ;
+fun autoradiography_N : N ;
+fun autoregulation_N : N ;
+fun autosemantic_A : A ;
+fun autosexing_N : N ;
+fun autosomal_A : A ;
+fun autosome_N : N ;
+fun autostrada_N : N ;
+fun autosuggestion_N : N ;
+fun autotelic_A : A ;
+fun autotelism_N : N ;
+fun autotomic_A : A ;
+fun autotomy_N : N ;
+fun autotrophic_A : A ;
+fun autotype_N : N ;
+fun autotypic_A : A ;
+fun autumn_N : N ;
+fun autumnal_A : A ;
+fun auxesis_N : N ;
+fun auxetic_A : A ;
+fun auxiliary_A : A ;
+fun auxiliary_N : N ;
+fun auxin_N : N ;
+fun auxinic_A : A ;
+fun avadavat_N : N ;
+fun avail_N : N ;
+fun avail_V : V ;
+fun availability_N : N ;
+fun available_A : A ;
+fun avalanche_N : N ;
+fun avant_garde_N : N ;
+fun avaram_N : N ;
+fun avarice_N : N ;
+fun avaricious_A : A ;
+fun avascular_A : A ;
+fun avatar_N : N ;
+fun avellan_A : A ;
+fun avenge_V : V ;
+fun avenger_N : N ;
+fun avens_N : N ;
+fun avenue_N : N ;
+fun aver_V : V ;
+fun average_A : A ;
+fun average_N : N ;
+fun average_V : V ;
+fun averageness_N : N ;
+fun averse_A : A ;
+fun aversion_N : N ;
+fun aversive_A : A ;
+fun avert_V : V ;
+fun averting_N : N ;
+fun avian_A : A ;
+fun aviary_N : N ;
+fun aviation_N : N ;
+fun aviator_N : N ;
+fun aviatrix_N : N ;
+fun avid_A : A ;
+fun avidity_N : N ;
+fun avifauna_N : N ;
+fun avifaunal_A : A ;
+fun avionic_A : A ;
+fun avionics_N : N ;
+fun avirulent_A : A ;
+fun avitaminosis_N : N ;
+fun avitaminotic_A : A ;
+fun avo_N : N ;
+fun avocado_A : A ;
+fun avocado_N : N ;
+fun avocation_N : N ;
+fun avocational_A : A ;
+fun avocet_N : N ;
+fun avoid_V : V ;
+fun avoidable_A : A ;
+fun avoidance_N : N ;
+fun avoirdupois_N : N ;
+fun avouch_V : V ;
+fun avow_V : V ;
+fun avowal_N : N ;
+fun avowedly_Adv : Adv ;
+fun avower_N : N ;
+fun avulsion_N : N ;
+fun avuncular_A : A ;
+fun await_V : V ;
+fun awake_A : A ;
+fun awake_V : V ;
+fun awaken_V : V ;
+fun awakening_N : N ;
+fun award_N : N ;
+fun award_V : V ;
+fun aware_A : A ;
+fun awareness_N : N ;
+fun awash_A : A ;
+fun away_A : A ;
+fun away_Adv : Adv ;
+fun awayness_N : N ;
+fun awe_N : N ;
+fun awe_V : V ;
+fun awe_inspiring_A : A ;
+fun awe_stricken_A : A ;
+fun awe_struck_A : A ;
+fun aweary_A : A ;
+fun aweigh_A : A ;
+fun aweigh_Adv : Adv ;
+fun aweless_A : A ;
+fun awesome_A : A ;
+fun awful_A : A ;
+fun awfulness_N : N ;
+fun awheel_A : A ;
+fun awhile_Adv : Adv ;
+fun awkward_A : A ;
+fun awkwardness_N : N ;
+fun awl_N : N ;
+fun awlwort_N : N ;
+fun awn_N : N ;
+fun awned_A : A ;
+fun awning_N : N ;
+fun awninged_A : A ;
+fun awnless_A : A ;
+fun awry_A : A ;
+fun awry_Adv : Adv ;
+fun ax_N : N ;
+fun ax_V : V ;
+fun axe_N : N ;
+fun axe_V : V ;
+fun axenic_A : A ;
+fun axial_A : A ;
+fun axil_N : N ;
+fun axile_A : A ;
+fun axillary_A : A ;
+fun axiological_A : A ;
+fun axiology_N : N ;
+fun axiom_N : N ;
+fun axiomatic_A : A ;
+fun axiomatically_Adv : Adv ;
+fun axis_N : N ;
+fun axle_N : N ;
+fun axletree_N : N ;
+fun axolemma_N : N ;
+fun axolotl_N : N ;
+fun axon_N : N ;
+fun axonal_A : A ;
+fun axseed_N : N ;
+fun ay_Adv : Adv ;
+fun ayah_N : N ;
+fun ayapana_N : N ;
+fun ayatollah_N : N ;
+fun aye_Adv : Adv ;
+fun ayin_N : N ;
+fun azadirachtin_N : N ;
+fun azalea_N : N ;
+fun azathioprine_N : N ;
+fun azide_N : N ;
+fun azido_A : A ;
+fun azimuth_N : N ;
+fun azimuthal_A : A ;
+fun azithromycin_N : N ;
+fun azo_A : A ;
+fun azoic_A : A ;
+fun azonal_A : A ;
+fun azonic_A : A ;
+fun azote_N : N ;
+fun azotemic_A : A ;
+fun azotic_A : A ;
+fun azoturia_N : N ;
+fun aztreonam_N : N ;
+fun azure_A : A ;
+fun azure_N : N ;
+fun azurite_N : N ;
+fun azygous_A : A ;
+fun azymia_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 baba_N : N ;
+fun babassu_N : N ;
+fun babbitting_N : N ;
+fun babble_N : N ;
+fun babble_V : V ;
+fun babbler_N : N ;
+fun babe_N : N ;
+fun babel_N : N ;
+fun babelike_A : A ;
+fun babirusa_N : N ;
+fun babka_N : N ;
+fun baboo_N : N ;
+fun baboon_N : N ;
+fun baboonish_A : A ;
+fun babu_N : N ;
+fun babushka_N : N ;
+fun baby_N : N ;
+fun baby_V : V ;
+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 babyminder_N : N ;
+fun babysit_V : V ;
+fun babysitter_N : N ;
+fun babysitting_N : N ;
+fun baccalaureate_N : N ;
+fun baccarat_N : N ;
+fun baccate_A : A ;
+fun bacchanal_A : A ;
+fun bacchanal_N : N ;
+fun bacchanalian_A : A ;
+fun bacchant_N : N ;
+fun bacchante_N : N ;
+fun bacchantic_A : A ;
+fun baccivorous_A : A ;
+fun baccy_N : N ;
+fun bachelor_N : N ;
+fun bachelorhood_N : N ;
+fun bacillar_A : A ;
+fun bacillus_N : N ;
+fun bacitracin_N : N ;
+fun back_Adv : Adv ;
+fun back_N : N ;
+fun back_V : V ;
+fun back_breaking_A : A ;
+fun back_down_N : N ;
+fun back_formation_N : N ;
+fun back_to_Prep : Prep ;
+fun back_up_N : N ;
+fun backache_N : N ;
+fun backband_N : N ;
+fun backbeat_N : N ;
+fun backbench_N : N ;
+fun backbencher_N : N ;
+fun backbend_N : N ;
+fun backbite_V : V ;
+fun backbiter_N : N ;
+fun backblast_N : N ;
+fun backboard_N : N ;
+fun backbone_N : N ;
+fun backchat_N : N ;
+fun backcloth_N : N ;
+fun backdate_V : V ;
+fun backdoor_N : N ;
+fun backdrop_N : N ;
+fun backer_N : N ;
+fun backfield_N : N ;
+fun backfire_N : N ;
+fun backfire_V : V ;
+fun backflow_N : N ;
+fun backgammon_N : N ;
+fun background_N : N ;
+fun backgrounder_N : N ;
+fun backhand_A : A ;
+fun backhand_N : N ;
+fun backhanded_A : A ;
+fun backhander_N : N ;
+fun backhoe_N : N ;
+fun backing_N : N ;
+fun backlash_N : N ;
+fun backless_A : A ;
+fun backlighting_N : N ;
+fun backlog_N : N ;
+fun backmost_A : A ;
+fun backpack_N : N ;
+fun backpacker_N : N ;
+fun backpedal_V : V ;
+fun backpedaling_V : V ;
+fun backplate_N : N ;
+fun backroom_N : N ;
+fun backsaw_N : N ;
+fun backscratcher_N : N ;
+fun backseat_N : N ;
+fun backsheesh_N : N ;
+fun backside_N : N ;
+fun backslapper_N : N ;
+fun backslide_V : V ;
+fun backsliding_N : N ;
+fun backspace_V : V ;
+fun backspin_N : N ;
+fun backstage_Adv : Adv ;
+fun backstair_A : A ;
+fun backstairs_N : N ;
+fun backstay_N : N ;
+fun backstitch_N : N ;
+fun backstop_N : N ;
+fun backstroke_N : N ;
+fun backstroker_N : N ;
+fun backswept_A : A ;
+fun backswimmer_N : N ;
+fun backsword_N : N ;
+fun backtalk_N : N ;
+fun backup_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 backwoods_N : N ;
+fun backwoodsman_N : N ;
+fun backyard_N : N ;
+fun bacon_N : N ;
+fun bacteremia_N : N ;
+fun bacteremic_A : A ;
+fun bacteria_N : N ;
+fun bacterial_A : A ;
+fun bactericidal_A : A ;
+fun bactericide_N : N ;
+fun bacteriochlorophyll_N : N ;
+fun bacteriological_A : A ;
+fun bacteriologist_N : N ;
+fun bacteriology_N : N ;
+fun bacteriolysis_N : N ;
+fun bacteriolytic_A : A ;
+fun bacteriophage_N : N ;
+fun bacteriophagic_A : A ;
+fun bacteriostasis_N : N ;
+fun bacteriostat_N : N ;
+fun bacteriostatic_A : A ;
+fun bacterium_N : N ;
+fun bacteroid_N : N ;
+fun bacteroidal_A : A ;
+fun bad_A : A ;
+fun bad_N : N ;
+fun baddeleyite_N : N ;
+fun badge_N : N ;
+fun badger_N : N ;
+fun badger_V : V ;
+fun badgering_N : N ;
+fun badinage_N : N ;
+fun badlands_N : N ;
+fun badly_behaved_A : A ;
+fun badminton_N : N ;
+fun badness_N : N ;
+fun baedeker_N : N ;
+fun baffle_N : N ;
+fun baffle_V : V ;
+fun baffled_N : N ;
+fun baffling_A : A ;
+fun bag_N : N ;
+fun bag_V : V ;
+fun bagasse_N : N ;
+fun bagassosis_N : N ;
+fun bagatelle_N : N ;
+fun bagel_N : N ;
+fun baggage_N : N ;
+fun baggageman_N : N ;
+fun bagger_N : N ;
+fun baggy_A : A ;
+fun bagman_N : N ;
fun bagnio_N : N ;
-fun scenario_N : N ;
-fun impresario_N : N ;
-fun vibrio_N : N ;
-fun oratorio_N : N ;
-fun barrio_N : N ;
-fun trio_N : N ;
-fun curio_N : N ;
-fun fellatio_N : N ;
-fun patio_N : N ;
-fun ratio_N : N ;
-fun mojo_N : N ;
+fun bagpipe_N : N ;
+fun baguet_N : N ;
+fun bahamian_A : A ;
+fun bahamian_N : N ;
+fun bahasa_N : N ;
+fun bahraini_A : A ;
+fun bahraini_N : N ;
+fun baht_N : N ;
+fun bail_N : N ;
+fun bail_V : V ;
+fun bailable_A : A ;
+fun bailee_N : N ;
+fun bailey_N : N ;
+fun bailiff_N : N ;
+fun bailiffship_N : N ;
+fun bailiwick_N : N ;
+fun bailment_N : N ;
+fun bailor_N : N ;
+fun bairn_N : N ;
+fun bait_N : N ;
+fun bait_V : V ;
+fun baiting_N : N ;
+fun baiza_N : N ;
+fun baize_N : N ;
+fun bake_V : V ;
+fun bakelite_N : N ;
+fun baker_N : N ;
+fun bakery_N : N ;
+fun baking_N : N ;
+fun baking_hot_A : A ;
+fun baking_powder_N : N ;
+fun baklava_N : N ;
+fun baksheesh_N : N ;
+fun balaclava_N : N ;
+fun balagan_N : N ;
+fun balalaika_N : N ;
+fun balance_N : N ;
+fun balance_V : V ;
+fun balance_sheet_N : N ;
+fun balance_wheel_N : N ;
+fun balancer_N : N ;
+fun balanitis_N : N ;
+fun balanoposthitis_N : N ;
+fun balas_N : N ;
+fun balata_N : N ;
+fun balboa_N : N ;
+fun balbriggan_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 baldachin_N : N ;
+fun balderdash_N : N ;
+fun baldhead_N : N ;
+fun balding_A : A ;
+fun baldness_N : N ;
+fun baldric_N : N ;
+fun bale_N : N ;
+fun bale_V : V ;
+fun baleful_A : A ;
+fun balk_N : N ;
+fun balk_V : V ;
+fun balker_N : N ;
+fun balkiness_N : N ;
+fun balkline_N : N ;
+fun ball_N : N ;
+fun ball_V : V ;
+fun ball_cartridge_N : N ;
+fun ball_dress_N : N ;
+fun ballad_N : N ;
+fun ballade_N : N ;
+fun ballast_N : N ;
+fun ballast_V : V ;
+fun ballbearing_N : N ;
+fun ballcock_N : N ;
+fun balldress_N : N ;
+fun ballerina_N : N ;
+fun ballet_N : N ;
+fun ballet_dancer_N : N ;
+fun ballet_skirt_N : N ;
+fun balletic_A : A ;
+fun balletomane_N : N ;
+fun balletomania_N : N ;
+fun ballgame_N : N ;
+fun ballistic_A : A ;
+fun ballistics_N : N ;
+fun ballistocardiogram_N : N ;
+fun ballistocardiograph_N : N ;
+fun ballock_N : N ;
+fun balloon_N : N ;
+fun balloon_V : V ;
+fun balloonfish_N : N ;
+fun ballooning_N : N ;
+fun balloonist_N : N ;
+fun ballot_N : N ;
+fun ballot_V : V ;
+fun ballot_box_N : N ;
+fun ballottement_N : N ;
+fun ballpark_N : N ;
+fun ballpen_N : N ;
+fun ballplayer_N : N ;
+fun ballpoint_N : N ;
+fun ballpoint_pen_N : N ;
+fun ballroom_N : N ;
+fun balls_V : V ;
+fun balls_up_N : N ;
+fun ballup_N : N ;
+fun bally_A : A ;
+fun bally_Adv : Adv ;
+fun ballyhoo_N : N ;
+fun balm_N : N ;
+fun balminess_N : N ;
+fun balmoral_N : N ;
+fun balmy_A : A ;
+fun baloney_N : N ;
+fun balsa_N : N ;
+fun balsam_N : N ;
+fun balsamic_A : A ;
+fun balsamroot_N : N ;
+fun baluster_N : N ;
+fun balustrade_N : N ;
+fun bambino_N : N ;
+fun bamboo_N : N ;
+fun bamboozle_V : V ;
+fun ban_N : N ;
+fun ban_V : V ;
+fun banal_A : A ;
+fun banality_N : N ;
+fun banana_N : N ;
+fun banausic_A : A ;
+fun band_N : N ;
+fun band_V : V ;
+fun band_saw_N : N ;
+fun bandage_N : N ;
+fun bandage_V : V ;
+fun bandanna_N : N ;
+fun bandbox_N : N ;
+fun bandeau_N : N ;
+fun banderilla_N : N ;
+fun banderillero_N : N ;
+fun bandicoot_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 bandoneon_N : N ;
+fun bandsaw_N : N ;
+fun bandsman_N : N ;
+fun bandstand_N : N ;
+fun bandwagon_N : N ;
+fun bandwidth_N : N ;
+fun bandy_A : A ;
+fun bandy_V : V ;
+fun bandy_legged_A : A ;
+fun bane_N : N ;
+fun baneberry_N : N ;
+fun baneful_A : A ;
+fun bang_Adv : Adv ;
+fun bang_N : N ;
+fun bang_V : V ;
+fun banger_N : N ;
+fun banging_N : N ;
+fun bangladeshi_A : A ;
+fun bangladeshi_N : N ;
+fun bangle_N : N ;
+fun banian_N : N ;
+fun banian_tree_N : N ;
+fun banish_V : V ;
+fun banishment_N : N ;
+fun banister_N : N ;
fun banjo_N : N ;
+fun bank_N : N ;
+fun bank_V : V ;
+fun bank_bill_N : N ;
+fun bank_book_N : N ;
+fun bank_draft_N : N ;
+fun bank_rate_N : N ;
+fun bankable_A : A ;
+fun bankbook_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_V : V ;
+fun bankruptcy_N : N ;
+fun banksia_N : N ;
+fun banner_A : A ;
+fun banner_N : N ;
+fun bannerlike_Adv : Adv ;
+fun banning_order_N : N ;
+fun bannister_N : N ;
+fun bannock_N : N ;
+fun banns_N : N ;
+fun banquet_N : N ;
+fun banquet_V : V ;
+fun banquette_N : N ;
+fun banshee_N : N ;
+fun bant_V : V ;
+fun bantam_A : A ;
+fun bantam_N : N ;
+fun bantamweight_N : N ;
+fun banteng_N : N ;
+fun banter_N : N ;
+fun banter_V : V ;
+fun banteringly_Adv : Adv ;
+fun banting_N : N ;
+fun bantu_A : A ;
+fun bantu_N : N ;
+fun banyan_N : N ;
+fun banzai_N : N ;
+fun baobab_N : N ;
+fun bap_N : N ;
+fun baptism_N : N ;
+fun baptismal_A : A ;
+fun baptist_A : A ;
+fun baptist_N : N ;
+fun baptize_V : V ;
+fun bar_N : N ;
+fun bar_Prep : Prep ;
+fun bar_V : V ;
+fun barb_N : N ;
+fun barbadian_A : A ;
+fun barbadian_N : N ;
+fun barbarian_A : A ;
+fun barbarian_N : N ;
+fun barbaric_A : A ;
+fun barbarism_N : N ;
+fun barbarity_N : N ;
+fun barbarization_N : N ;
+fun barbarize_V : V ;
+fun barbarous_A : A ;
+fun barbasco_N : N ;
+fun barbecue_N : N ;
+fun barbecue_V : V ;
+fun barbecuing_N : N ;
+fun barbed_A : A ;
+fun barbel_N : N ;
+fun barbell_N : N ;
+fun barber_N : N ;
+fun barberry_N : N ;
+fun barbershop_N : N ;
+fun barbet_N : N ;
+fun barbette_N : N ;
+fun barbican_N : N ;
+fun barbital_N : N ;
+fun barbitone_N : N ;
+fun barbiturate_N : N ;
+fun barbu_N : N ;
+fun barcarole_N : N ;
+fun barcarolle_N : N ;
+fun bard_N : N ;
+fun bardic_A : A ;
+fun bardolatry_N : N ;
+fun bare_A : A ;
+fun bare_V : V ;
+fun bareback_A : A ;
+fun bareback_Adv : Adv ;
+fun barebacked_A : A ;
+fun barebacked_Adv : Adv ;
+fun bareboat_N : N ;
+fun bareboating_N : N ;
+fun barefaced_A : A ;
+fun barefoot_A : A ;
+fun barefoot_Adv : Adv ;
+fun barefooted_A : A ;
+fun barefooted_Adv : Adv ;
+fun barehanded_A : A ;
+fun bareheaded_A : A ;
+fun barelegged_A : A ;
+fun bareness_N : N ;
+fun bargain_N : N ;
+fun bargain_V : V ;
+fun bargainer_N : N ;
+fun bargaining_N : N ;
+fun barge_N : N ;
+fun barge_V : V ;
+fun bargee_N : N ;
+fun bargello_N : N ;
+fun bargepole_N : N ;
+fun baric_A : A ;
+fun barilla_N : N ;
+fun baritone_A : A ;
+fun baritone_N : N ;
+fun barium_N : N ;
+fun bark_N : N ;
+fun bark_V : V ;
+fun barker_N : N ;
+fun barky_A : A ;
+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 barmbrack_N : N ;
+fun barmy_A : A ;
+fun barn_N : N ;
+fun barn_door_N : N ;
+fun barnacle_N : N ;
+fun barnburner_N : N ;
+fun barndoor_N : N ;
+fun barnful_N : N ;
+fun barnstorm_V : V ;
+fun barnstormer_N : N ;
+fun barnyard_N : N ;
+fun barograph_N : N ;
+fun barographic_A : A ;
+fun barometer_N : N ;
+fun barometric_A : A ;
+fun baron_N : N ;
+fun baronage_N : N ;
+fun baronduki_N : N ;
+fun baroness_N : N ;
+fun baronet_N : N ;
+fun baronetage_N : N ;
+fun baronetcy_N : N ;
+fun barong_N : N ;
+fun baronial_A : A ;
+fun barony_N : N ;
+fun baroque_A : A ;
+fun baroque_N : N ;
+fun baroreceptor_N : N ;
+fun barosaur_N : N ;
+fun barouche_N : N ;
+fun barque_N : N ;
+fun barrack_N : N ;
+fun barrack_V : V ;
+fun barracking_N : N ;
+fun barracouta_N : N ;
+fun barracuda_N : N ;
+fun barrage_N : N ;
+fun barramundi_N : N ;
+fun barrator_N : N ;
+fun barratry_N : N ;
+fun barrel_N : N ;
+fun barrel_V : V ;
+fun barreled_A : A ;
+fun barrelfish_N : N ;
+fun barrelhouse_N : N ;
+fun barrels_N : N ;
+fun barren_A : A ;
+fun barren_N : N ;
+fun barrenness_N : N ;
+fun barrenwort_N : N ;
+fun barrette_N : N ;
+fun barricade_N : N ;
+fun barricade_V : V ;
+fun barrier_N : N ;
+fun barring_N : N ;
+fun barrio_N : N ;
+fun barrister_N : N ;
+fun barroom_N : N ;
+fun barrow_N : N ;
+fun barrow_boy_N : N ;
+fun barrow_man_N : N ;
+fun bartender_N : N ;
+fun barter_N : N ;
+fun barter_V : V ;
+fun barterer_N : N ;
+fun bartlett_N : N ;
+fun bartonia_N : N ;
+fun barycenter_N : N ;
+fun barye_N : N ;
+fun baryon_N : N ;
+fun baryta_N : N ;
+fun barytic_A : A ;
+fun bas_relief_N : N ;
+fun basal_A : A ;
+fun basalt_N : N ;
+fun basaltic_A : A ;
+fun bascule_N : N ;
+fun base_A : A ;
+fun base_N : N ;
+fun base_V : V ;
+fun baseball_N : N ;
+fun baseboard_N : N ;
+fun baseless_A : A ;
+fun baseline_N : N ;
+fun basement_N : N ;
+fun baseness_N : N ;
+fun basenji_N : N ;
+fun bash_N : N ;
+fun bash_V : V ;
+fun bashful_A : A ;
+fun basic_A : A ;
+fun basic_N : N ;
+fun basically_Adv : Adv ;
+fun basics_N : N ;
+fun basidial_A : A ;
+fun basidiocarp_N : N ;
+fun basidiolichen_N : N ;
+fun basidiomycete_N : N ;
+fun basidiomycetous_A : A ;
+fun basidiospore_N : N ;
+fun basidiosporous_A : A ;
+fun basidium_N : N ;
+fun basifixed_A : A ;
+fun basil_N : N ;
+fun basilar_A : A ;
+fun basileus_N : N ;
+fun basilica_N : N ;
+fun basilican_A : A ;
+fun basilisk_N : N ;
+fun basin_N : N ;
+fun basinal_A : A ;
+fun basined_A : A ;
+fun basinet_N : N ;
+fun basipetal_A : A ;
+fun basis_N : N ;
+fun basiscopic_A : A ;
+fun bask_V : V ;
+fun basket_N : N ;
+fun basketball_N : N ;
+fun basketry_N : N ;
+fun basketweaver_N : N ;
+fun basophil_N : N ;
+fun basophilia_N : N ;
+fun basophilic_A : A ;
+fun bass_A : A ;
+fun bass_N : N ;
+fun bassarisk_N : N ;
+fun basset_N : N ;
+fun bassine_N : N ;
+fun bassinet_N : N ;
+fun bassist_N : N ;
+fun bassoon_N : N ;
+fun bassoonist_N : N ;
+fun basswood_N : N ;
+fun bast_N : N ;
+fun bastard_N : N ;
+fun bastardization_N : N ;
+fun bastardize_V : V ;
+fun bastardly_A : A ;
+fun bastardy_N : N ;
+fun baste_N : N ;
+fun baste_V : V ;
+fun baster_N : N ;
+fun bastille_N : N ;
+fun bastinado_N : N ;
+fun bastinado_V : V ;
+fun basting_N : N ;
+fun bastion_N : N ;
+fun bastioned_A : A ;
+fun bastnasite_N : N ;
+fun basuco_N : N ;
+fun bat_N : N ;
+fun bat_V : V ;
+fun batch_N : N ;
+fun bate_V : V ;
+fun batfish_N : N ;
+fun bath_N : N ;
+fun bath_V : V ;
+fun bath_chair_N : N ;
+fun bathe_N : N ;
+fun bathe_V : V ;
+fun bather_N : N ;
+fun bathetic_A : A ;
+fun bathhouse_N : N ;
+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 batholith_N : N ;
+fun batholithic_A : A ;
+fun bathos_N : N ;
+fun bathrobe_N : N ;
+fun bathroom_N : N ;
+fun bathtub_N : N ;
+fun bathyal_A : A ;
+fun bathymeter_N : N ;
+fun bathymetric_A : A ;
+fun bathymetry_N : N ;
+fun bathyscaphe_N : N ;
+fun bathysphere_N : N ;
+fun batik_N : N ;
+fun batiste_N : N ;
+fun batman_N : N ;
+fun baton_N : N ;
+fun batrachomyomachia_N : N ;
+fun bats_A : A ;
+fun batsman_N : N ;
+fun battalion_N : N ;
+fun batten_N : N ;
+fun batten_V : V ;
+fun batter_N : N ;
+fun batter_V : V ;
+fun battering_N : N ;
+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 battlefront_N : N ;
+fun battleful_A : A ;
+fun battleground_N : N ;
+fun battlement_N : N ;
+fun battlemented_A : A ;
+fun battleship_N : N ;
+fun battue_N : N ;
+fun batty_A : A ;
+fun batwing_A : A ;
+fun batwing_N : N ;
+fun bauble_N : N ;
+fun baud_N : N ;
+fun baulk_N : N ;
+fun baulk_V : V ;
+fun bauxite_N : N ;
+fun bauxitic_A : A ;
+fun bawbee_N : N ;
+fun bawd_N : N ;
+fun bawdry_N : N ;
+fun bawdy_A : A ;
+fun bawdy_N : N ;
+fun bawl_V : V ;
+fun bawler_N : N ;
+fun bay_A : A ;
+fun bay_N : N ;
+fun bay_V : V ;
+fun bay_wreath_N : N ;
+fun baya_N : N ;
+fun bayat_N : N ;
+fun bayberry_N : N ;
+fun bayonet_N : N ;
+fun bayonet_V : V ;
+fun bayou_N : N ;
+fun bazaar_N : N ;
+fun bazooka_N : N ;
+fun bdellium_N : N ;
+fun beach_N : N ;
+fun beach_V : V ;
+fun beachcomber_N : N ;
+fun beachfront_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 bead_N : N ;
+fun beaded_A : A ;
+fun beading_N : N ;
+fun beadle_N : N ;
+fun beads_N : N ;
+fun beadsman_N : N ;
+fun beady_A : A ;
+fun beagle_N : N ;
+fun beagling_N : N ;
+fun beak_N : N ;
+fun beaked_A : A ;
+fun beaker_N : N ;
+fun beakless_A : A ;
+fun beaklike_A : A ;
+fun beam_N : N ;
+fun beam_V : V ;
+fun beamish_A : A ;
+fun beamy_A : A ;
+fun bean_N : N ;
+fun beanbag_N : N ;
+fun beanball_N : N ;
+fun beanfeast_N : N ;
+fun beanie_N : N ;
+fun beano_N : N ;
+fun beanstalk_N : N ;
+fun bear_N : N ;
+fun bear_V : V ;
+fun bearable_A : A ;
+fun bearberry_N : N ;
+fun beard_N : N ;
+fun beard_V : V ;
+fun beardless_A : A ;
+fun bearer_N : N ;
+fun bearing_N : N ;
+fun bearish_A : A ;
+fun bearnaise_N : N ;
+fun bearskin_N : N ;
+fun beast_N : N ;
+fun beastliness_N : N ;
+fun beastly_A : A ;
+fun beastly_Adv : Adv ;
+fun beat_N : N ;
+fun beat_beat_V : V ;
+fun beat_beated_V : V ;
+fun beatable_A : A ;
+fun beaten_A : A ;
+fun beater_N : N ;
+fun beatific_A : A ;
+fun beatification_N : N ;
+fun beatify_V : V ;
+fun beating_N : N ;
+fun beatitude_N : N ;
+fun beatnik_N : N ;
+fun beau_N : N ;
+fun beaugregory_N : N ;
+fun beaujolais_N : N ;
+fun beauteous_A : A ;
+fun beautician_N : N ;
+fun beautification_N : N ;
+fun beautiful_A : A ;
+fun beautify_V : V ;
+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 becalmed_A : A ;
+fun because_of_Prep : Prep ;
+fun beck_N : N ;
+fun becket_N : N ;
+fun beckon_V : V ;
+fun become_V : V ;
+fun becomingly_Adv : Adv ;
+fun becomingness_N : N ;
+fun bed_N : N ;
+fun bed_V : V ;
+fun bedaubed_A : A ;
+fun bedbug_N : N ;
+fun bedclothes_N : N ;
+fun bedder_N : N ;
+fun bedding_N : N ;
+fun bedecked_A : A ;
+fun bedevil_V : V ;
+fun bedevilment_N : N ;
+fun bedewed_A : A ;
+fun bedfast_A : A ;
+fun bedfellow_N : N ;
+fun bedimmed_A : A ;
+fun bedlam_N : N ;
+fun bedlamite_N : N ;
+fun bedless_A : A ;
+fun bedouin_N : N ;
+fun bedpan_N : N ;
+fun bedpost_N : N ;
+fun bedraggled_A : A ;
+fun bedrest_N : N ;
+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 bedspring_N : N ;
+fun bedstead_N : N ;
+fun bedstraw_N : N ;
+fun bedtime_N : N ;
+fun beduin_N : N ;
+fun bedwetter_N : N ;
+fun bee_N : N ;
+fun beebread_N : N ;
+fun beech_N : N ;
+fun beechen_A : A ;
+fun beechnut_N : N ;
+fun beef_N : N ;
+fun beef_V : V ;
+fun beefcake_N : N ;
+fun beefeater_N : N ;
+fun beefsteak_N : N ;
+fun beefwood_N : N ;
+fun beefy_A : A ;
+fun beehive_N : N ;
+fun beekeeper_N : N ;
+fun beekeeping_N : N ;
+fun beeline_N : N ;
+fun beep_N : N ;
+fun beeper_N : N ;
+fun beer_N : N ;
+fun beery_A : A ;
+fun beeswax_N : N ;
+fun beeswax_V : V ;
+fun beet_N : N ;
+fun beetle_A : A ;
+fun beetle_N : N ;
+fun beetle_V : V ;
+fun beetle_browed_A : A ;
+fun beetroot_N : N ;
+fun befall_V : V ;
+fun befit_V : V ;
+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_V : V ;
+fun befoulment_N : N ;
+fun befriend_V : V ;
+fun beg_V : V ;
+fun beget_V : V ;
+fun begetter_N : N ;
+fun beggar_N : N ;
+fun beggar_V : V ;
+fun beggarly_A : A ;
+fun beggarman_N : N ;
+fun beggarweed_N : N ;
+fun beggarwoman_N : N ;
+fun beggary_N : N ;
+fun begin_began_V : V ;
+fun begin_beginned_V : V ;
+fun beginner_N : N ;
+fun beginning_N : N ;
+fun begonia_N : N ;
+fun begrimed_A : A ;
+fun begrudge_V : V ;
+fun beguile_V : V ;
+fun beguilement_N : N ;
+fun beguiling_A : A ;
+fun beguine_N : N ;
+fun begum_N : N ;
+fun behalf_N : N ;
+fun behave_V : V ;
+fun behaved_A : A ;
+fun behavior_N : N ;
+fun behavioral_A : A ;
+fun behaviorism_N : N ;
+fun behaviorist_N : N ;
+fun behavioristic_A : A ;
+fun behaviour_N : N ;
+fun behaviourism_N : N ;
+fun behaviourist_N : N ;
+fun behead_V : V ;
+fun behest_N : N ;
+fun behind_Adv : Adv ;
+fun behind_N : N ;
+fun behind_Prep : Prep ;
+fun behindhand_A : A ;
+fun behither_Prep : Prep ;
+fun behold_V : V ;
+fun beholden_A : A ;
+fun beholder_N : N ;
+fun behove_V : V ;
+fun beige_A : A ;
+fun beige_N : N ;
+fun being_N : N ;
+fun bejewelled_A : A ;
+fun belabour_V : V ;
+fun belated_A : A ;
+fun belay_N : N ;
+fun belay_V : V ;
+fun belaying_pin_N : N ;
+fun belch_N : N ;
+fun belch_V : V ;
+fun belching_N : N ;
+fun beldam_N : N ;
+fun beldame_N : N ;
+fun beleaguer_V : V ;
+fun belemnite_N : N ;
+fun belemnitic_A : A ;
+fun belfry_N : N ;
+fun belgian_A : A ;
+fun belgian_N : N ;
+fun belie_V : V ;
+fun belief_N : N ;
+fun believable_A : A ;
+fun believe_V : V ;
+fun believer_N : N ;
+fun believing_N : N ;
+fun belike_Adv : Adv ;
+fun belittle_V : V ;
+fun belittling_A : A ;
+fun belittling_N : N ;
+fun bell_N : N ;
+fun bell_V : V ;
+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 belladonna_N : N ;
+fun bellarmine_N : N ;
+fun bellbird_N : N ;
+fun bellboy_N : N ;
+fun belle_N : N ;
+fun belletristic_A : A ;
+fun bellhop_N : N ;
+fun bellicose_A : A ;
+fun bellicosity_N : N ;
+fun belligerence_N : N ;
+fun belligerency_N : N ;
+fun belligerent_A : A ;
+fun belligerent_N : N ;
+fun bellow_N : N ;
+fun bellow_V : V ;
+fun bellows_N : N ;
+fun bellpull_N : N ;
+fun bellwether_N : N ;
+fun bellwort_N : N ;
+fun belly_N : N ;
+fun belly_V : V ;
+fun bellyache_N : N ;
+fun bellyache_V : V ;
+fun bellyband_N : N ;
+fun bellyflop_N : N ;
+fun bellyful_N : N ;
+fun bellyland_V : V ;
+fun bellylaugh_N : N ;
+fun bellylaugh_V : V ;
+fun bellyless_A : A ;
+fun belong_V : V ;
+fun belonging_N : N ;
+fun beloved_A : A ;
+fun beloved_N : N ;
+fun below_Adv : Adv ;
+fun below_Prep : Prep ;
+fun belowground_A : A ;
+fun belt_N : N ;
+fun belt_V : V ;
+fun belting_N : N ;
+fun beltlike_A : A ;
+fun beltway_N : N ;
+fun beluga_N : N ;
+fun belvedere_N : N ;
+fun bemoan_V : V ;
+fun bemused_A : A ;
+fun ben_N : N ;
+fun bench_N : N ;
+fun benchmark_N : N ;
+fun bend_N : N ;
+fun bend_bended_V : V ;
+fun bend_bent_V : V ;
+fun bendability_N : N ;
+fun bendable_A : A ;
+fun bender_N : N ;
+fun bending_N : N ;
+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 benedictory_A : A ;
+fun benefaction_N : N ;
+fun benefactor_N : N ;
+fun benefactress_N : N ;
+fun benefic_A : A ;
+fun benefice_N : N ;
+fun beneficed_A : A ;
+fun beneficence_N : N ;
+fun beneficent_A : A ;
+fun beneficial_A : A ;
+fun beneficiary_A : A ;
+fun beneficiary_N : N ;
+fun benefit_N : N ;
+fun benefit_V : V ;
+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 beninese_A : A ;
+fun beninese_N : N ;
+fun benison_N : N ;
+fun bennet_N : N ;
+fun bent_A : A ;
+fun bent_N : N ;
+fun benthic_A : A ;
+fun benthos_N : N ;
+fun bentonite_N : N ;
+fun bentonitic_A : A ;
+fun bentwood_N : N ;
+fun benumbed_A : A ;
+fun benzedrine_N : N ;
+fun benzene_N : N ;
+fun benzenoid_A : A ;
+fun benzine_N : N ;
+fun benzoate_N : N ;
+fun benzocaine_N : N ;
+fun benzodiazepine_N : N ;
+fun benzofuran_N : N ;
+fun benzoic_A : A ;
+fun benzoin_N : N ;
+fun benzol_N : N ;
+fun benzyl_N : N ;
+fun benzylic_A : A ;
+fun bequeath_V : V ;
+fun bequest_N : N ;
+fun berate_V : V ;
+fun berating_N : N ;
+fun bereave_V : V ;
+fun bereaved_N : N ;
+fun bereavement_N : N ;
+fun bereft_A : A ;
+fun beret_N : N ;
+fun berg_N : N ;
+fun bergamot_N : N ;
+fun bergenia_N : N ;
+fun beri_beri_N : N ;
+fun beriberi_N : N ;
+fun berk_N : N ;
+fun berkelium_N : N ;
+fun berlin_N : N ;
+fun berm_N : N ;
+fun bermudan_A : A ;
+fun bermudan_N : N ;
+fun beroe_N : N ;
+fun berried_A : A ;
+fun berry_N : N ;
+fun berserk_A : A ;
+fun berserker_N : N ;
+fun berth_N : N ;
+fun berth_V : V ;
+fun beryl_N : N ;
+fun beryllium_N : N ;
+fun beseech_V : V ;
+fun beseeching_A : A ;
+fun beseem_V : V ;
+fun beset_V : V ;
+fun beshrew_V : V ;
+fun beside_Prep : Prep ;
+fun besides_Adv : Adv ;
+fun besides_Prep : Prep ;
+fun besiege_V : V ;
+fun besieger_N : N ;
+fun besmear_V : V ;
+fun besmirch_V : V ;
+fun besom_N : N ;
+fun besotted_A : A ;
+fun bespangled_A : A ;
+fun bespattered_A : A ;
+fun bespeak_V : V ;
+fun bespectacled_A : A ;
+fun bespoke_A : A ;
+fun besprent_A : A ;
+fun best_A : A ;
+fun best_Adv : Adv ;
+fun best_N : N ;
+fun best_V : V ;
+fun best_seller_N : N ;
+fun bestial_A : A ;
+fun bestiality_N : N ;
+fun bestiary_N : N ;
+fun bestir_V : V ;
+fun bestow_V : V ;
+fun bestowal_N : N ;
+fun bestrew_V : V ;
+fun bestride_V : V ;
+fun bestubbled_A : A ;
+fun bet_N : N ;
+fun bet_V : V ;
+fun beta_A : A ;
+fun beta_N : N ;
+fun betaine_N : N ;
+fun betake_V : V ;
+fun betatron_N : N ;
+fun betel_N : N ;
+fun betel_nut_N : N ;
+fun beth_N : N ;
+fun bethel_N : N ;
+fun bethink_V : V ;
+fun betide_V : V ;
+fun betimes_Adv : Adv ;
+fun betoken_V : V ;
+fun betray_V : V ;
+fun betrayal_N : N ;
+fun betrayer_N : N ;
+fun betroth_V : V ;
+fun betrothal_N : N ;
+fun betrothed_N : N ;
+fun better_A : A ;
+fun better_Adv : Adv ;
+fun better_N : N ;
+fun better_V : V ;
+fun bettering_A : A ;
+fun betterment_N : N ;
+fun bettong_N : N ;
+fun bettor_N : N ;
+fun betulaceous_A : A ;
+fun between_Adv : Adv ;
+fun between_Prep : Prep ;
+fun betwixen_Prep : Prep ;
+fun betwixt_Prep : Prep ;
+fun bevatron_N : N ;
+fun bevel_N : N ;
+fun bevel_V : V ;
+fun beverage_N : N ;
+fun bevy_N : N ;
+fun bewail_V : V ;
+fun beware_V : V ;
+fun bewilder_V : V ;
+fun bewilderedly_Adv : Adv ;
+fun bewildering_A : A ;
+fun bewilderment_N : N ;
+fun bewitch_V : V ;
+fun bewitchery_N : N ;
+fun bewitching_A : A ;
+fun bey_N : N ;
+fun beyond_Adv : Adv ;
+fun beyond_Prep : Prep ;
+fun bezant_N : N ;
+fun bezel_N : N ;
+fun bezique_N : N ;
+fun bhakti_N : N ;
+fun bhang_N : N ;
+fun bhutani_A : A ;
+fun bhutani_N : N ;
+fun bialy_N : N ;
+fun biannually_Adv : Adv ;
+fun bias_A : A ;
+fun bias_N : N ;
+fun bias_V : V ;
+fun biauricular_A : A ;
+fun biaxial_A : A ;
+fun bib_N : N ;
+fun bib_V : V ;
+fun bibbed_A : A ;
+fun bible_N : N ;
+fun bibless_A : A ;
+fun biblical_A : A ;
+fun bibliographer_N : N ;
+fun bibliographic_A : A ;
+fun bibliography_N : N ;
+fun bibliolatrous_A : A ;
+fun bibliolatry_N : N ;
+fun bibliomania_N : N ;
+fun bibliomaniacal_A : A ;
+fun bibliophile_N : N ;
+fun bibliophilic_A : A ;
+fun bibliopole_N : N ;
+fun bibliopolic_A : A ;
+fun bibliotheca_N : N ;
+fun bibliothecal_A : A ;
+fun bibliotic_A : A ;
+fun bibliotics_N : N ;
+fun bibliotist_N : N ;
+fun bibulous_A : A ;
+fun bicameral_A : A ;
+fun bicapsular_A : A ;
+fun bicarbonate_N : N ;
+fun bicentenary_N : N ;
+fun bicentennial_A : A ;
+fun bicentennial_N : N ;
+fun bicentric_A : A ;
+fun bicephalous_A : A ;
+fun biceps_N : N ;
+fun bichromate_N : N ;
+fun bichromated_A : A ;
+fun bicipital_A : A ;
+fun bicker_N : N ;
+fun bicker_V : V ;
+fun bicolor_A : A ;
+fun biconcave_A : A ;
+fun biconvex_A : A ;
+fun bicorn_A : A ;
+fun bicorn_N : N ;
+fun bicuspid_A : A ;
+fun bicycle_N : N ;
+fun bicycle_V : V ;
+fun bicyclic_A : A ;
+fun bicycling_N : N ;
+fun bicylindrical_A : A ;
+fun bid_N : N ;
+fun bid_bade_bid_V : V ;
+fun bid_bade_bidden_V : V ;
+fun bid_bid_bid_V : V ;
+fun bid_bid_bidden_V : V ;
+fun bid_bidded_bidded_V : V ;
+fun biddable_A : A ;
+fun bidder_N : N ;
+fun bidding_N : N ;
+fun bide_V : V ;
+fun bidentate_A : A ;
+fun bidet_N : N ;
+fun bidirectional_A : A ;
+fun biennial_A : A ;
+fun biennial_N : N ;
+fun bier_N : N ;
+fun biface_A : A ;
+fun biff_N : N ;
+fun biff_V : V ;
+fun bifid_A : A ;
+fun bifilar_A : A ;
+fun biflagellate_A : A ;
+fun bifocal_A : A ;
+fun bifocals_N : N ;
+fun bifoliate_A : A ;
+fun biform_A : A ;
+fun bifurcate_A : A ;
+fun bifurcate_V : V ;
+fun bifurcation_N : N ;
+fun big_A : A ;
+fun big_V : V ;
+fun big_boned_A : A ;
+fun bigamist_N : N ;
+fun bigamous_A : A ;
+fun bigamy_N : N ;
+fun bigeminal_A : A ;
+fun bigeneric_A : A ;
+fun bigeye_N : N ;
+fun biggin_N : N ;
+fun biggish_A : A ;
+fun bighead_N : N ;
+fun bigheaded_A : A ;
+fun bigheartedness_N : N ;
+fun bighorn_N : N ;
+fun bight_N : N ;
+fun bigmouthed_A : A ;
+fun bignoniaceous_A : A ;
+fun bignoniad_N : N ;
+fun bigos_N : N ;
+fun bigot_N : N ;
+fun bigoted_A : A ;
+fun bigotry_N : N ;
+fun bigram_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 bilabiate_A : A ;
+fun bilateral_A : A ;
+fun bilateralism_N : N ;
+fun bilaterality_N : N ;
+fun bilberry_N : N ;
+fun bile_N : N ;
+fun bile_duct_N : N ;
+fun bilge_N : N ;
+fun bilge_water_N : N ;
+fun bilges_N : N ;
+fun bilgy_A : A ;
+fun bilharzia_N : N ;
+fun biliary_A : A ;
+fun bilimbi_N : N ;
+fun bilinear_A : A ;
+fun bilingual_A : A ;
+fun bilingual_N : N ;
+fun bilingualism_N : N ;
+fun bilious_A : A ;
+fun biliousness_N : N ;
+fun bilirubin_N : N ;
+fun bilk_V : V ;
+fun bill_N : N ;
+fun bill_V : V ;
+fun bill_poster_N : N ;
+fun bill_sticker_N : N ;
+fun billabong_N : N ;
+fun billboard_N : N ;
+fun billet_N : N ;
+fun billet_V : V ;
+fun billet_doux_N : N ;
+fun billfish_N : N ;
+fun billfold_N : N ;
+fun billhook_N : N ;
+fun billiard_A : A ;
+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 billion_A : A ;
+fun billion_N : N ;
+fun billionaire_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_goat_N : N ;
+fun billy_ho_N : N ;
+fun billy_o_N : N ;
+fun billyo_N : N ;
+fun bilobate_A : A ;
+fun bilocation_N : N ;
+fun bilocular_A : A ;
+fun biltong_N : N ;
+fun bimbo_N : N ;
+fun bimester_N : N ;
+fun bimestrial_A : A ;
+fun bimetal_A : A ;
+fun bimetal_N : N ;
+fun bimetallic_A : A ;
+fun bimetallism_N : N ;
+fun bimetallist_N : N ;
+fun bimetallistic_A : A ;
+fun bimillenial_A : A ;
+fun bimillennium_N : N ;
+fun bimodal_A : A ;
+fun bimolecular_A : A ;
+fun bimonthly_A : A ;
+fun bimonthly_Adv : Adv ;
+fun bimonthly_N : N ;
+fun bimorphemic_A : A ;
+fun bimotored_A : A ;
+fun bin_N : N ;
+fun binary_A : A ;
+fun binary_N : N ;
+fun binate_A : A ;
+fun binaural_A : A ;
+fun bind_N : N ;
+fun bind_V : V ;
+fun bindable_A : A ;
+fun binder_N : N ;
+fun bindery_N : N ;
+fun binding_N : N ;
+fun bindweed_N : N ;
+fun bine_N : N ;
+fun binge_N : N ;
+fun bingo_N : N ;
+fun binnacle_N : N ;
+fun binocular_A : A ;
+fun binoculars_N : N ;
+fun binomial_A : A ;
+fun binomial_N : N ;
+fun binturong_N : N ;
+fun binucleate_A : A ;
+fun bioassay_N : N ;
+fun biocatalyst_N : N ;
+fun biocatalytic_A : A ;
+fun biochemical_A : A ;
+fun biochemist_N : N ;
+fun biochemistry_N : N ;
+fun biochip_N : N ;
+fun bioclimatic_A : A ;
+fun bioclimatology_N : N ;
+fun biodegradable_A : A ;
+fun biodiversity_N : N ;
+fun bioelectricity_N : N ;
+fun bioethics_N : N ;
+fun biofeedback_N : N ;
+fun biogenesis_N : N ;
+fun biogenetic_A : A ;
+fun biogenic_A : A ;
+fun biogenous_A : A ;
+fun biogeographic_A : A ;
+fun biogeography_N : N ;
+fun biograph_N : N ;
+fun biographer_N : N ;
+fun biographic_A : A ;
+fun biographical_A : A ;
+fun biography_N : N ;
+fun biohazard_N : N ;
+fun biological_A : A ;
+fun biologism_N : N ;
+fun biologist_N : N ;
+fun biologistic_A : A ;
+fun biology_N : N ;
+fun bioluminescence_N : N ;
+fun bioluminescent_A : A ;
+fun biomass_N : N ;
+fun biome_N : N ;
+fun biomedical_A : A ;
+fun biomedicine_N : N ;
+fun biometrics_N : N ;
+fun bionic_A : A ;
+fun bionics_N : N ;
+fun biont_N : N ;
+fun biophysicist_N : N ;
+fun biophysics_N : N ;
+fun biopiracy_N : N ;
+fun biopsy_N : N ;
+fun bioremediation_N : N ;
+fun biosafety_N : N ;
+fun bioscope_N : N ;
+fun biosphere_N : N ;
+fun biosynthesis_N : N ;
+fun biosynthetic_A : A ;
+fun biosystematic_A : A ;
+fun biosystematics_N : N ;
+fun biota_N : N ;
+fun biotechnology_N : N ;
+fun bioterrorism_N : N ;
+fun biotic_A : A ;
+fun biotin_N : N ;
+fun biotite_N : N ;
+fun biotitic_A : A ;
+fun biotype_N : N ;
+fun biotypic_A : A ;
+fun bioweapon_N : N ;
+fun biparous_A : A ;
+fun bipartisan_A : A ;
+fun bipartite_A : A ;
+fun biped_N : N ;
+fun bipedal_A : A ;
+fun bipedalism_N : N ;
+fun bipinnate_A : A ;
+fun bipinnatifid_A : A ;
+fun biplane_N : N ;
+fun bipolar_A : A ;
+fun biprism_N : N ;
+fun biquadrate_N : N ;
+fun biquadratic_A : A ;
+fun biquadratic_N : N ;
+fun biracial_A : A ;
+fun biradial_A : A ;
+fun birch_A : A ;
+fun birch_N : N ;
+fun birch_V : V ;
+fun birch_rod_N : N ;
+fun bird's_eye_A : A ;
+fun bird_N : N ;
+fun bird_fancier_N : N ;
+fun birdbath_N : N ;
+fun birdcage_N : N ;
+fun birdcall_N : N ;
+fun birdhouse_N : N ;
+fun birdie_N : N ;
+fun birdlime_N : N ;
+fun birdnesting_N : N ;
+fun birdwatcher_N : N ;
+fun birefringent_A : A ;
+fun biretta_N : N ;
+fun birling_N : N ;
+fun biro_N : N ;
+fun birr_N : N ;
+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 birthwort_N : N ;
+fun biryani_N : N ;
+fun biscuit_N : N ;
+fun bise_N : N ;
+fun bisect_V : V ;
+fun bisection_N : N ;
+fun bisectional_A : A ;
+fun biserrate_A : A ;
+fun bisexual_A : A ;
+fun bisexual_N : N ;
+fun bisexuality_N : N ;
+fun bishop_N : N ;
+fun bishopric_N : N ;
+fun bishopry_N : N ;
+fun bismuth_N : N ;
+fun bismuthal_A : A ;
+fun bismuthic_A : A ;
+fun bison_N : N ;
+fun bisontine_A : A ;
+fun bisque_N : N ;
+fun bister_N : N ;
+fun bistered_A : A ;
+fun bistro_N : N ;
+fun bistroic_A : A ;
+fun bit_N : N ;
+fun bitartrate_N : N ;
+fun bitch_N : N ;
+fun bitch_V : V ;
+fun bitchery_N : N ;
+fun bitchy_A : A ;
+fun bite_N : N ;
+fun bite_V : V ;
+fun biter_N : N ;
+fun bitewing_N : N ;
+fun biting_A : A ;
+fun bitmap_N : N ;
+fun bitok_N : N ;
+fun bitter_A : A ;
+fun bitter_N : N ;
+fun bitter_sweet_A : A ;
+fun bittercress_N : N ;
+fun bitterish_A : A ;
+fun bittern_N : N ;
+fun bitterness_N : N ;
+fun bitternut_N : N ;
+fun bitterroot_N : N ;
+fun bitters_N : N ;
+fun bittersweet_A : A ;
+fun bittersweet_N : N ;
+fun bitthead_N : N ;
+fun bitty_A : A ;
+fun bitumastic_N : N ;
+fun bitumen_N : N ;
+fun bituminoid_A : A ;
+fun bituminous_A : A ;
+fun bivalent_A : A ;
+fun bivalve_A : A ;
+fun bivalve_N : N ;
+fun bivariate_A : A ;
+fun bivouac_N : N ;
+fun bivouac_V : V ;
+fun biweekly_N : N ;
+fun biz_N : N ;
+fun bizarre_A : A ;
+fun bizonal_A : A ;
+fun blab_V : V ;
+fun blabber_V : V ;
+fun blabbermouth_N : N ;
+fun blabbermouthed_A : A ;
+fun black_A : A ;
+fun black_N : N ;
+fun black_V : V ;
+fun black_beetle_N : N ;
+fun black_lead_N : N ;
+fun black_lead_V : V ;
+fun blackamoor_N : N ;
+fun blackball_V : V ;
+fun blackberry_N : N ;
+fun blackbird_N : N ;
+fun blackboard_N : N ;
+fun blackbuck_N : N ;
+fun blackcap_N : N ;
+fun blackcock_N : N ;
+fun blackcurrant_N : N ;
+fun blacken_V : V ;
+fun blackening_N : N ;
+fun blackface_N : N ;
+fun blackfish_N : N ;
+fun blackfly_N : N ;
+fun blackguard_N : N ;
+fun blackguard_V : V ;
+fun blackguardly_A : A ;
+fun blackhead_N : N ;
+fun blackheart_N : N ;
+fun blacking_N : N ;
+fun blackish_A : A ;
+fun blackjack_N : N ;
+fun blackleg_N : N ;
+fun blackleg_V : V ;
+fun blacklist_N : N ;
+fun blacklist_V : V ;
+fun blackmail_N : N ;
+fun blackmail_V : V ;
+fun blackmailer_N : N ;
+fun blackness_N : N ;
+fun blackout_N : N ;
+fun blackpoll_N : N ;
+fun blackshirt_N : N ;
+fun blacksmith_N : N ;
+fun blacksnake_N : N ;
+fun blackthorn_N : N ;
+fun blacktop_N : N ;
+fun blackwash_N : N ;
+fun blackwater_A : A ;
+fun blackwater_N : N ;
+fun blackwood_N : N ;
+fun bladder_N : N ;
+fun bladderpod_N : N ;
+fun bladderwort_N : N ;
+fun bladderwrack_N : N ;
+fun bladdery_A : A ;
+fun blade_N : N ;
+fun bladed_A : A ;
+fun blae_A : A ;
+fun blaeberry_N : N ;
+fun blah_N : N ;
+fun blahs_N : N ;
+fun blain_N : N ;
+fun blame_N : N ;
+fun blame_V : V ;
+fun blameless_A : A ;
+fun blamelessness_N : N ;
+fun blameworthiness_N : N ;
+fun blameworthy_A : A ;
+fun blanc_N : N ;
+fun blanch_V : V ;
+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 blank_V : V ;
+fun blanket_N : N ;
+fun blanket_V : V ;
+fun blankness_N : N ;
+fun blanquillo_N : N ;
+fun blare_N : N ;
+fun blare_V : V ;
+fun blarney_N : N ;
+fun blaspheme_V : V ;
+fun blasphemer_N : N ;
+fun blasphemous_A : A ;
+fun blasphemy_N : N ;
+fun blast_N : N ;
+fun blast_V : V ;
+fun blast_furnace_N : N ;
+fun blast_off_N : N ;
+fun blastema_N : N ;
+fun blastemal_A : A ;
+fun blaster_N : N ;
+fun blastocoel_N : N ;
+fun blastocoelic_A : A ;
+fun blastocyst_N : N ;
+fun blastocyte_N : N ;
+fun blastoderm_N : N ;
+fun blastodermatic_A : A ;
+fun blastoff_N : N ;
+fun blastogenesis_N : N ;
+fun blastogenetic_A : A ;
+fun blastoma_N : N ;
+fun blastomere_N : N ;
+fun blastomeric_A : A ;
+fun blastomycete_N : N ;
+fun blastomycosis_N : N ;
+fun blastomycotic_A : A ;
+fun blastoporal_A : A ;
+fun blastopore_N : N ;
+fun blastospheric_A : A ;
+fun blastula_N : N ;
+fun blasé_A : A ;
+fun blatancy_N : N ;
+fun blatant_A : A ;
+fun blather_N : N ;
+fun blather_V : V ;
+fun blaxploitation_N : N ;
+fun blaze_N : N ;
+fun blaze_V : V ;
+fun blazer_N : N ;
+fun blazon_N : N ;
+fun blazon_V : V ;
+fun blazonry_N : N ;
+fun bleach_N : N ;
+fun bleach_V : V ;
+fun bleacher_N : N ;
+fun bleachers_N : N ;
+fun bleaching_powder_N : N ;
+fun bleak_A : A ;
+fun bleakness_N : N ;
+fun bleary_A : A ;
+fun bleary_eyed_A : A ;
+fun bleat_N : N ;
+fun bleat_V : V ;
+fun blebbed_A : A ;
+fun blebby_A : A ;
+fun bleed_bled_V : V ;
+fun bleed_bleeded_V : V ;
+fun bleeding_N : N ;
+fun bleep_N : N ;
+fun bleep_V : V ;
+fun blemish_N : N ;
+fun blemish_V : V ;
+fun blench_V : V ;
+fun blend_N : N ;
+fun blend_V : V ;
+fun blender_N : N ;
+fun blenny_N : N ;
+fun blepharism_N : N ;
+fun blepharitis_N : N ;
+fun blepharospasm_N : N ;
+fun bless_V : V ;
+fun blessedly_Adv : Adv ;
+fun blessedness_N : N ;
+fun blessing_N : N ;
+fun blether_N : N ;
+fun blether_V : V ;
+fun bletia_N : N ;
+fun bleu_N : N ;
+fun blewits_N : N ;
+fun blight_N : N ;
+fun blight_V : V ;
+fun blighter_N : N ;
+fun blighty_N : N ;
+fun blimp_N : N ;
+fun blimpish_A : A ;
+fun blind_A : A ;
+fun blind_N : N ;
+fun blind_V : V ;
+fun blindfold_A : A ;
+fun blindfold_N : N ;
+fun blindfold_V : V ;
+fun blindman's_buff_N : N ;
+fun blindness_N : N ;
+fun blindworm_N : N ;
+fun bling_N : N ;
+fun blini_N : N ;
+fun blink_N : N ;
+fun blink_V : V ;
+fun blinker_N : N ;
+fun blinks_N : N ;
+fun blintz_N : N ;
+fun blip_N : N ;
+fun bliss_N : N ;
+fun bliss_V : V ;
+fun blissful_A : A ;
+fun blister_N : N ;
+fun blister_V : V ;
+fun blithe_A : A ;
+fun blithering_A : A ;
+fun blithesome_A : A ;
+fun blitz_N : N ;
+fun blitz_V : V ;
+fun blizzard_N : N ;
+fun bloat_N : N ;
+fun bloated_A : A ;
+fun bloater_N : N ;
+fun blob_N : N ;
+fun bloc_N : N ;
+fun block_N : N ;
+fun block_V : V ;
+fun blockade_N : N ;
+fun blockade_V : V ;
+fun blockade_runner_N : N ;
+fun blockading_A : A ;
+fun blockage_N : N ;
+fun blockbuster_N : N ;
+fun blocker_N : N ;
+fun blockhead_N : N ;
+fun blockheaded_A : A ;
+fun blockhouse_N : N ;
+fun blocking_N : N ;
+fun blockish_A : A ;
+fun blogger_N : N ;
+fun bloke_N : N ;
+fun blolly_N : N ;
+fun blond_A : A ;
+fun blond_N : N ;
+fun blonde_A : A ;
+fun blonde_N : N ;
+fun blood_N : N ;
+fun blood_bath_N : N ;
+fun blood_blooded_V : V ;
+fun blood_bloodied_V : V ;
+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 bloodbath_N : N ;
+fun bloodberry_N : N ;
+fun bloodcurdling_A : A ;
+fun bloodguilt_N : N ;
+fun bloodguilty_A : A ;
+fun bloodhound_N : N ;
+fun bloodiness_N : N ;
+fun bloodleaf_N : N ;
+fun bloodless_A : A ;
+fun bloodletting_N : N ;
+fun bloodlust_N : N ;
+fun bloodmobile_N : N ;
+fun bloodroot_N : N ;
+fun bloodshed_N : N ;
+fun bloodshot_A : A ;
+fun bloodstain_N : N ;
+fun bloodstained_A : A ;
+fun bloodstock_N : N ;
+fun bloodstone_N : N ;
+fun bloodstream_N : N ;
+fun bloodsucker_N : N ;
+fun bloodsucking_A : A ;
+fun bloodthirstiness_N : N ;
+fun bloodthirsty_A : A ;
+fun bloodworm_N : N ;
+fun bloodwort_N : N ;
+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 bloomers_N : N ;
+fun blooming_N : N ;
+fun blossom_N : N ;
+fun blossom_V : V ;
+fun blossoming_N : N ;
+fun blot_N : N ;
+fun blot_V : V ;
+fun blotch_N : N ;
+fun blotched_A : A ;
+fun blotchy_A : A ;
+fun blotter_N : N ;
+fun blotting_paper_N : N ;
+fun blotto_A : A ;
+fun blouse_N : N ;
+fun blow_N : N ;
+fun blow_blew_V : V ;
+fun blow_blowed_V : V ;
+fun blow_dry_V : V ;
+fun blow_up_N : N ;
+fun blowback_N : N ;
+fun blower_N : N ;
+fun blowfish_N : N ;
+fun blowfly_N : N ;
+fun blowgun_N : N ;
+fun blowhole_N : N ;
+fun blowing_N : N ;
+fun blowing_up_N : N ;
+fun blowlamp_N : N ;
+fun blowout_N : N ;
+fun blowpipe_N : N ;
+fun blowsy_A : A ;
+fun blowtorch_N : N ;
+fun blowtube_N : N ;
+fun blowy_A : A ;
+fun blowzy_A : A ;
+fun blubber_N : N ;
+fun blubber_V : V ;
+fun blubberer_N : N ;
+fun blubbery_A : A ;
+fun blucher_N : N ;
+fun bludgeon_N : N ;
+fun bludgeon_V : V ;
+fun bludgeoner_N : N ;
+fun blue_A : A ;
+fun blue_N : N ;
+fun blue_V : V ;
+fun blue_collar_A : A ;
+fun blue_jacket_N : N ;
+fun blue_pencil_V : V ;
+fun bluebell_N : N ;
+fun blueberry_N : N ;
+fun bluebird_N : N ;
+fun bluebonnet_N : N ;
+fun bluebottle_N : N ;
+fun bluecoat_N : N ;
+fun bluefin_N : N ;
+fun bluefish_N : N ;
+fun bluegill_N : N ;
+fun bluegrass_N : N ;
+fun bluehead_N : N ;
+fun bluejacket_N : N ;
+fun bluepoint_N : N ;
+fun blueprint_N : N ;
+fun blues_N : N ;
+fun bluestem_N : N ;
+fun bluestocking_N : N ;
+fun bluestone_N : N ;
+fun bluethroat_N : N ;
+fun bluetick_N : N ;
+fun bluetongue_N : N ;
+fun blueweed_N : N ;
+fun bluewing_N : N ;
+fun bluff_A : A ;
+fun bluff_N : N ;
+fun bluff_V : V ;
+fun bluffer_N : N ;
+fun bluffness_N : N ;
+fun bluing_N : N ;
+fun bluish_A : A ;
+fun blunder_N : N ;
+fun blunder_V : V ;
+fun blunderbuss_N : N ;
+fun blunderer_N : N ;
+fun blunt_A : A ;
+fun blunt_V : V ;
+fun bluntness_N : N ;
+fun blur_N : N ;
+fun blur_V : V ;
+fun blurb_N : N ;
+fun blurt_V : V ;
+fun blush_N : N ;
+fun blush_V : V ;
+fun blushful_A : A ;
+fun bluster_N : N ;
+fun bluster_V : V ;
+fun blustery_A : A ;
+fun blvd_N : N ;
+fun bma_N : N ;
+fun bmus_N : N ;
+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 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 boards_N : N ;
+fun boardwalk_N : N ;
+fun boarfish_N : N ;
+fun boarhound_N : N ;
+fun boast_N : N ;
+fun boast_V : V ;
+fun boaster_N : N ;
+fun boastful_A : A ;
+fun boastfulness_N : N ;
+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 boatbill_N : N ;
+fun boatbuilder_N : N ;
+fun boater_N : N ;
+fun boathouse_N : N ;
+fun boating_N : N ;
+fun boatload_N : N ;
+fun boatman_N : N ;
+fun boatmanship_N : N ;
+fun boatswain_N : N ;
+fun boatyard_N : N ;
+fun bob_N : N ;
+fun bob_V : V ;
+fun bobbin_N : N ;
+fun bobble_N : N ;
+fun bobby_N : N ;
+fun bobby_soxer_N : N ;
+fun bobbysoxer_N : N ;
+fun bobcat_N : N ;
+fun bobolink_N : N ;
+fun bobsled_N : N ;
+fun bobsledding_N : N ;
+fun bobsleigh_N : N ;
+fun bobtail_A : A ;
+fun bobtail_N : N ;
+fun bobwhite_N : N ;
+fun bocce_N : N ;
+fun bocconia_N : N ;
+fun boche_A : A ;
+fun bock_N : N ;
+fun bodacious_A : A ;
+fun bode_V : V ;
+fun bodega_N : N ;
+fun bodice_N : N ;
+fun bodied_A : A ;
+fun bodiless_A : A ;
+fun bodily_A : A ;
+fun bodily_Adv : Adv ;
+fun boding_N : N ;
+fun bodkin_N : N ;
+fun body_N : N ;
+fun body_servant_N : N ;
+fun body_snatcher_N : N ;
+fun bodybuilder_N : N ;
+fun bodybuilding_N : N ;
+fun bodyguard_N : N ;
+fun bodywork_N : N ;
+fun boer_A : A ;
+fun boer_N : N ;
+fun boffin_N : N ;
+fun boffo_A : A ;
+fun bog_N : N ;
+fun bog_V : V ;
+fun bogey_N : N ;
+fun bogeyman_N : N ;
+fun boggle_V : V ;
+fun boggy_A : A ;
+fun bogie_N : N ;
+fun bogus_A : A ;
+fun bogy_N : N ;
+fun bohemia_N : N ;
+fun bohemian_A : A ;
+fun bohemian_N : N ;
+fun bohemianism_N : N ;
+fun bohrium_N : N ;
+fun boil_N : N ;
+fun boil_V : V ;
+fun boiler_N : N ;
+fun boilerplate_N : N ;
+fun boilersuit_N : N ;
+fun boiling_Adv : Adv ;
+fun boiling_N : N ;
+fun boiling_point_N : N ;
+fun boisterous_A : A ;
+fun boisterousness_N : N ;
+fun bola_N : N ;
+fun bold_A : A ;
+fun boldface_N : N ;
+fun boldness_N : N ;
+fun bole_N : N ;
+fun bolero_N : N ;
+fun bolete_N : N ;
+fun bolide_N : N ;
+fun bolivar_N : N ;
+fun bolivia_N : N ;
+fun bolivian_A : A ;
+fun bolivian_N : N ;
+fun boliviano_N : N ;
+fun boll_N : N ;
+fun bollard_N : N ;
+fun bollock_N : N ;
+fun bollworm_N : N ;
+fun bolo_N : N ;
+fun bologna_N : N ;
+fun bologram_N : N ;
+fun bolographic_A : A ;
+fun bolometer_N : N ;
+fun bolometric_A : A ;
+fun boloney_N : N ;
+fun bolshevik_N : N ;
+fun bolshy_A : A ;
+fun bolster_N : N ;
+fun bolster_V : V ;
+fun bolt_Adv : Adv ;
+fun bolt_N : N ;
+fun bolt_V : V ;
+fun bolt_hole_N : N ;
+fun bolti_N : N ;
+fun bolus_N : N ;
+fun bomb_N : N ;
+fun bomb_V : V ;
+fun bomb_proof_A : A ;
+fun bomb_sight_N : N ;
+fun bomb_site_N : N ;
+fun bombard_V : V ;
+fun bombardier_N : N ;
+fun bombardment_N : N ;
+fun bombardon_N : N ;
+fun bombast_N : N ;
+fun bombastic_A : A ;
+fun bombastically_Adv : Adv ;
+fun bombazine_N : N ;
+fun bomber_N : N ;
+fun bombie_N : N ;
+fun bombing_N : N ;
+fun bomblet_N : N ;
+fun bombproof_A : A ;
+fun bombshell_N : N ;
+fun bombsight_N : N ;
+fun bombycid_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_V : V ;
+fun bond_holder_N : N ;
+fun bondable_A : A ;
+fun bondage_N : N ;
+fun bondholder_N : N ;
+fun bonding_N : N ;
+fun bondman_N : N ;
+fun bondsman_N : N ;
+fun bonduc_N : N ;
+fun bondwoman_N : N ;
+fun bone_A : A ;
+fun bone_N : N ;
+fun bone_V : V ;
+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 bonefish_N : N ;
+fun boneless_A : A ;
+fun bonelike_A : A ;
+fun bonemeal_N : N ;
+fun boner_N : N ;
+fun bones_N : N ;
+fun boneset_N : N ;
+fun bonesetter_N : N ;
+fun boneshaker_N : N ;
+fun bonfire_N : N ;
+fun bong_N : N ;
+fun bongo_N : N ;
+fun bonheur_N : N ;
+fun bonhomie_N : N ;
+fun bonito_N : N ;
+fun bonkers_A : A ;
+fun bonnet_N : N ;
+fun bonny_A : A ;
+fun bonsai_N : N ;
+fun bonus_N : N ;
+fun bony_A : A ;
+fun bonyness_N : N ;
+fun bonzer_A : A ;
+fun boo_N : N ;
+fun boo_V : V ;
+fun boob_N : N ;
+fun boob_V : V ;
+fun booboisie_N : N ;
+fun booby_N : N ;
+fun booby_trap_N : N ;
+fun boodle_N : N ;
+fun booger_N : N ;
+fun boogie_N : N ;
+fun boogie_woogie_N : N ;
+fun book_N : N ;
+fun book_V : V ;
+fun book_end_N : N ;
+fun book_keeper_N : N ;
+fun bookable_A : A ;
+fun bookbinder_N : N ;
+fun bookbindery_N : N ;
+fun bookbinding_N : N ;
+fun bookcase_N : N ;
+fun bookclub_N : N ;
+fun bookdealer_N : N ;
+fun bookend_N : N ;
+fun booker_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 booklouse_N : N ;
+fun bookmaker_N : N ;
+fun bookmark_N : N ;
+fun bookmarker_N : N ;
+fun bookmobile_N : N ;
+fun bookplate_N : N ;
+fun bookseller_N : N ;
+fun bookshelf_N : N ;
+fun bookshop_N : N ;
+fun bookstall_N : N ;
+fun bookworm_N : N ;
+fun boom_N : N ;
+fun boom_V : V ;
+fun boomerang_N : N ;
+fun boon_A : A ;
+fun boon_N : N ;
+fun boondoggle_N : N ;
+fun boor_N : N ;
+fun boorish_A : A ;
+fun boorishness_N : N ;
+fun boost_N : N ;
+fun boost_V : V ;
+fun booster_N : N ;
+fun boot_N : N ;
+fun boot_V : V ;
+fun bootblack_N : N ;
+fun bootee_N : N ;
+fun booth_N : N ;
+fun boothose_N : N ;
+fun bootjack_N : N ;
+fun bootlace_N : N ;
+fun bootleg_A : A ;
+fun bootleg_N : N ;
+fun bootleg_V : V ;
+fun bootlegger_N : N ;
+fun bootlegging_N : N ;
+fun bootless_A : A ;
+fun bootlicking_A : A ;
+fun bootmaker_N : N ;
+fun bootstrap_N : N ;
+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 bop_N : N ;
+fun bopeep_N : N ;
+fun boracic_A : A ;
+fun borage_N : N ;
+fun borate_N : N ;
+fun borated_A : A ;
+fun borax_N : N ;
+fun bordeaux_N : N ;
+fun bordelaise_N : N ;
+fun border_N : N ;
+fun border_V : V ;
+fun borderer_N : N ;
+fun borderland_N : N ;
+fun borderline_A : A ;
+fun borderline_N : N ;
+fun bore_N : N ;
+fun bore_V : V ;
+fun bore_hole_N : N ;
+fun boreal_A : A ;
+fun boredom_N : N ;
+fun borer_N : N ;
+fun boric_A : A ;
+fun boring_A : A ;
+fun boring_N : N ;
+fun boringness_N : N ;
+fun bornite_N : N ;
+fun boron_N : N ;
+fun boronic_A : A ;
+fun borosilicate_N : N ;
+fun borough_N : N ;
+fun borrelia_N : N ;
+fun borrow_V : V ;
+fun borrower_N : N ;
+fun borrowing_N : N ;
+fun borsch_N : N ;
+fun borstal_N : N ;
+fun bortsch_N : N ;
+fun borzoi_N : N ;
+fun bosa_N : N ;
+fun bosc_N : N ;
+fun bosh_N : N ;
+fun bosk_N : N ;
+fun boskopoid_A : A ;
+fun bosky_A : A ;
+fun bosom_N : N ;
+fun bosomed_A : A ;
+fun bosomy_A : A ;
+fun boson_N : N ;
+fun boss_A : A ;
+fun boss_N : N ;
+fun boss_V : V ;
+fun boss_eyed_A : A ;
+fun bossism_N : N ;
+fun bossy_A : A ;
+fun bot_N : N ;
+fun bota_N : N ;
+fun botanic_A : A ;
+fun botanical_A : A ;
+fun botanical_N : N ;
+fun botanist_N : N ;
+fun botanize_V : V ;
+fun botany_N : N ;
+fun botch_N : N ;
+fun botch_V : V ;
+fun botcher_N : N ;
+fun botchy_A : A ;
+fun botfly_N : N ;
+fun both_Adv : Adv ;
+fun bother_N : N ;
+fun bother_V : V ;
+fun bothersome_A : A ;
+fun botonee_A : A ;
+fun botryoid_A : A ;
+fun bottle_N : N ;
+fun bottle_V : V ;
+fun bottle_fed_A : A ;
+fun bottle_green_A : A ;
+fun bottlebrush_N : N ;
+fun bottlecap_N : N ;
+fun bottleneck_N : N ;
+fun bottler_N : N ;
+fun bottom_A : A ;
+fun bottom_N : N ;
+fun bottom_bottomed_V : V ;
+fun bottom_bottommed_V : V ;
+fun bottomed_A : A ;
+fun bottomland_N : N ;
+fun bottomless_A : A ;
+fun bottomlessness_N : N ;
+fun bottommost_A : A ;
+fun botuliform_A : A ;
+fun botulin_N : N ;
+fun botulinal_A : A ;
+fun botulinus_N : N ;
+fun botulism_N : N ;
+fun boucle_N : N ;
+fun boudoir_N : N ;
+fun bouffant_A : A ;
+fun bouffant_N : N ;
+fun bougainvillea_N : N ;
+fun bough_N : N ;
+fun boughed_A : A ;
+fun boughless_A : A ;
+fun boughten_A : A ;
+fun bouillabaisse_N : N ;
+fun bouillon_N : N ;
+fun boulder_N : N ;
+fun boulevard_N : N ;
+fun boulevardier_N : N ;
+fun boulle_N : N ;
+fun bounce_N : N ;
+fun bounce_V : V ;
+fun bouncer_N : N ;
+fun bouncy_A : A ;
+fun bound_N : N ;
+fun bound_V : V ;
+fun boundary_N : N ;
+fun bounden_A : A ;
+fun bounder_N : N ;
+fun boundless_A : A ;
+fun bounteous_A : A ;
+fun bountied_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 bourguignon_N : N ;
+fun bourn_N : N ;
+fun bourne_N : N ;
+fun bourse_N : N ;
+fun bourtree_N : N ;
+fun boustrophedon_N : N ;
+fun boustrophedonic_A : A ;
+fun bout_N : N ;
+fun boutique_N : N ;
+fun boutonniere_N : N ;
+fun bovid_N : N ;
+fun bovine_A : A ;
+fun bovine_N : N ;
+fun bovril_N : N ;
+fun bow_N : N ;
+fun bow_V : V ;
+fun bow_wow_N : N ;
+fun bowdlerization_N : N ;
+fun bowdlerize_V : V ;
+fun bowel_N : N ;
+fun bowels_N : N ;
+fun bower_N : N ;
+fun bowerbird_N : N ;
+fun bowery_A : A ;
+fun bowfin_N : N ;
+fun bowfront_A : A ;
+fun bowhead_N : N ;
+fun bowie_knife_N : N ;
+fun bowing_N : N ;
+fun bowl_N : N ;
+fun bowl_V : V ;
+fun bowleg_N : N ;
+fun bowler_N : N ;
+fun bowline_N : N ;
+fun bowling_N : N ;
+fun bowling_green_N : N ;
+fun bowls_N : N ;
+fun bowman_N : N ;
+fun bowsprit_N : N ;
+fun bowstring_N : N ;
+fun box_N : N ;
+fun box_V : V ;
+fun box_kite_N : N ;
+fun box_number_N : N ;
+fun box_office_N : N ;
+fun boxcar_N : N ;
+fun boxcars_N : N ;
+fun boxer_N : N ;
+fun boxfish_N : N ;
+fun boxful_N : N ;
+fun boxing_N : N ;
+fun boxing_day_N : N ;
+fun boxing_glove_N : N ;
+fun boxing_match_N : N ;
+fun boxlike_A : A ;
+fun boxwood_N : N ;
+fun boy_N : N ;
+fun boycott_N : N ;
+fun boycott_V : V ;
+fun boyfriend_N : N ;
+fun boyhood_N : N ;
+fun boyish_A : A ;
+fun boyishness_N : N ;
+fun boysenberry_N : N ;
+fun boza_N : N ;
+fun bra_N : N ;
+fun brace_N : N ;
+fun brace_V : V ;
+fun bracelet_N : N ;
+fun bracer_N : N ;
+fun bracero_N : N ;
+fun brachial_A : A ;
+fun brachiate_A : A ;
+fun brachiation_N : N ;
+fun brachiopod_A : A ;
+fun brachiopod_N : N ;
+fun brachium_N : N ;
+fun brachycephalic_A : A ;
+fun brachycephalic_N : N ;
+fun brachycephaly_N : N ;
+fun brachydactylic_A : A ;
+fun brachydactyly_N : N ;
+fun brachypterous_A : A ;
+fun brachyuran_N : N ;
+fun brachyurous_A : A ;
+fun bracken_N : N ;
+fun bracket_N : N ;
+fun bracket_V : V ;
+fun brackish_A : A ;
+fun brackishness_N : N ;
+fun bract_N : N ;
+fun bracteal_A : A ;
+fun bracteate_A : A ;
+fun bracteolate_A : A ;
+fun bracteole_N : N ;
+fun brad_N : N ;
+fun bradawl_N : N ;
+fun bradycardia_N : N ;
+fun brae_N : N ;
+fun brag_N : N ;
+fun brag_V : V ;
+fun braggadocio_N : N ;
+fun braggart_N : N ;
+fun bragger_N : N ;
+fun bragging_N : N ;
+fun brahman_N : N ;
+fun brahmin_N : N ;
+fun brahminic_A : A ;
+fun braid_N : N ;
+fun braid_V : V ;
+fun brail_N : N ;
+fun braille_N : N ;
+fun brain_N : N ;
+fun brain_V : V ;
+fun brain_fag_N : N ;
+fun brain_teaser_N : N ;
+fun brainchild_N : N ;
+fun brainless_A : A ;
+fun brainsick_A : A ;
+fun brainstem_N : N ;
+fun brainstorm_N : N ;
+fun brainstorming_N : N ;
+fun brainwash_V : V ;
+fun brainwashing_N : N ;
+fun brainwave_N : N ;
+fun brainworker_N : N ;
+fun brainy_A : A ;
+fun braise_V : V ;
+fun braising_N : N ;
+fun brake_N : N ;
+fun brake_V : V ;
+fun brakeman_N : N ;
+fun braky_A : A ;
+fun bramble_N : N ;
+fun brambling_N : N ;
+fun bran_N : N ;
+fun bran_new_A : A ;
+fun branch_N : N ;
+fun branch_V : V ;
+fun branched_A : A ;
+fun branchial_A : A ;
+fun branchiate_A : A ;
+fun branching_N : N ;
+fun branchiopod_A : A ;
+fun branchless_A : A ;
+fun branchlet_N : N ;
+fun branchy_A : A ;
+fun brand_N : N ;
+fun brand_V : V ;
+fun brand_new_A : A ;
+fun branding_iron_N : N ;
+fun brandish_V : V ;
+fun brandy_N : N ;
+fun brandy_ball_N : N ;
+fun brandy_snap_N : N ;
+fun brandyball_N : N ;
+fun brandysnap_N : N ;
+fun brant_N : N ;
+fun brash_A : A ;
+fun brashness_N : N ;
+fun brass_N : N ;
+fun brassard_N : N ;
+fun brassavola_N : N ;
+fun brassbound_A : A ;
+fun brasserie_N : N ;
+fun brassie_N : N ;
+fun brassiere_N : N ;
+fun brassière_N : N ;
+fun brassy_A : A ;
+fun brat_N : N ;
+fun brattice_N : N ;
+fun bratty_A : A ;
+fun bratwurst_N : N ;
+fun bravado_N : N ;
+fun brave_A : A ;
+fun brave_N : N ;
+fun brave_V : V ;
+fun bravery_N : N ;
+fun bravo_N : N ;
+fun bravura_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_V : V ;
+fun braze_V : V ;
+fun brazen_A : A ;
+fun brazen_V : V ;
+fun brazen_faced_A : A ;
+fun brazier_N : N ;
+fun brazilwood_N : N ;
+fun breach_N : N ;
+fun breach_V : V ;
+fun bread_N : N ;
+fun breadbasket_N : N ;
+fun breadboard_N : N ;
+fun breadcrumb_N : N ;
+fun breadfruit_N : N ;
+fun breadline_N : N ;
+fun breadroot_N : N ;
+fun breadstick_N : N ;
+fun breadstuff_N : N ;
+fun breadth_N : N ;
+fun breadthways_Adv : Adv ;
+fun breadthwise_Adv : Adv ;
+fun breadwinner_N : N ;
+fun break_N : N ;
+fun break_breaked_V : V ;
+fun break_broke_V : V ;
+fun break_in_N : N ;
+fun break_up_N : N ;
+fun breakable_A : A ;
+fun breakable_N : N ;
+fun breakableness_N : N ;
+fun breakage_N : N ;
+fun breakaway_A : A ;
+fun breakaway_N : N ;
+fun breakaways_N : N ;
+fun breakax_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_V : V ;
+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 breastless_A : A ;
+fun breastplate_N : N ;
+fun breaststroke_N : N ;
+fun breaststroker_N : N ;
+fun breastwork_N : N ;
+fun breath_N : N ;
+fun breathalyser_N : N ;
+fun breathalyzer_N : N ;
+fun breathe_V : V ;
+fun breather_N : N ;
+fun breathing_N : N ;
+fun breathing_space_N : N ;
+fun breathless_A : A ;
+fun breathtaking_A : A ;
+fun breccia_N : N ;
+fun breech_N : N ;
+fun breech_block_N : N ;
+fun breechblock_N : N ;
+fun breechcloth_N : N ;
+fun breeched_A : A ;
+fun breeches_N : N ;
+fun breeches_buoy_N : N ;
+fun breechloader_N : N ;
+fun breed_N : N ;
+fun breed_V : V ;
+fun breeder_N : N ;
+fun breeding_N : N ;
+fun breeze_N : N ;
+fun breeze_V : V ;
+fun breeziness_N : N ;
+fun breezy_A : A ;
+fun bregma_N : N ;
+fun bregmatic_A : A ;
+fun bren_N : N ;
+fun bren_gun_N : N ;
+fun brethren_N : N ;
+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 brewer_N : N ;
+fun brewery_N : N ;
+fun brewing_N : N ;
+fun brewpub_N : N ;
+fun briar_N : N ;
+fun briard_N : N ;
+fun briarroot_N : N ;
+fun briarwood_N : N ;
+fun bribable_A : A ;
+fun bribe_N : N ;
+fun bribe_V : V ;
+fun briber_N : N ;
+fun bribery_N : N ;
+fun bric_a_brac_N : N ;
+fun brick_N : N ;
+fun brick_V : V ;
+fun brick_field_N : N ;
+fun brickbat_N : N ;
+fun brickkiln_N : N ;
+fun bricklayer_N : N ;
+fun bricklaying_N : N ;
+fun brickwork_N : N ;
+fun brickyard_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_V : V ;
+fun bridgeable_A : A ;
+fun bridgehead_N : N ;
+fun bridle_N : N ;
+fun bridle_V : V ;
+fun bridle_path_N : N ;
+fun bridle_road_N : N ;
+fun bridoon_N : N ;
+fun brief_A : A ;
+fun brief_N : N ;
+fun brief_V : V ;
+fun briefcase_N : N ;
+fun briefing_N : N ;
+fun briefless_A : A ;
+fun briefness_N : N ;
+fun brier_N : N ;
+fun brig_N : N ;
+fun brigade_N : N ;
+fun brigadier_N : N ;
+fun brigand_N : N ;
+fun brigandine_N : N ;
+fun brigantine_N : N ;
+fun bright_A : A ;
+fun bright_Adv : Adv ;
+fun brighten_brightened_V : V ;
+fun brighten_brightenned_V : V ;
+fun brightness_N : N ;
+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 brimless_A : A ;
+fun brimstone_N : N ;
+fun brindled_A : A ;
+fun brine_N : N ;
+fun bring_V : V ;
+fun brininess_N : N ;
+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 brisance_N : N ;
+fun brisant_A : A ;
+fun brisk_A : A ;
+fun brisket_N : N ;
+fun brisling_N : N ;
+fun bristle_N : N ;
+fun bristle_V : V ;
+fun bristlegrass_N : N ;
+fun bristlelike_A : A ;
+fun bristletail_N : N ;
+fun bristly_A : A ;
+fun brit_N : N ;
+fun britannic_A : A ;
+fun britches_N : N ;
+fun briton_A : A ;
+fun briton_N : N ;
+fun brittle_A : A ;
+fun brittle_N : N ;
+fun brittlebush_N : N ;
+fun brittleness_N : N ;
+fun broach_V : V ;
+fun broad_A : A ;
+fun broad_N : N ;
+fun broad_minded_A : A ;
+fun broad_mindedness_N : N ;
+fun broadax_N : N ;
+fun broadband_A : A ;
+fun broadbill_N : N ;
+fun broadcast_Adv : Adv ;
+fun broadcast_N : N ;
+fun broadcast_V : V ;
+fun broadcaster_N : N ;
+fun broadcasting_N : N ;
+fun broadcloth_N : N ;
+fun broaden_V : V ;
+fun broadening_N : N ;
+fun broadleaf_A : A ;
+fun broadloom_A : A ;
+fun broadloom_N : N ;
+fun broadness_N : N ;
+fun broadsheet_N : N ;
+fun broadside_A : A ;
+fun broadside_Adv : Adv ;
+fun broadside_N : N ;
+fun broadsword_N : N ;
+fun broadtail_N : N ;
+fun broadways_Adv : Adv ;
+fun broadwise_Adv : Adv ;
+fun brocade_N : N ;
+fun brocade_V : V ;
+fun broccoli_N : N ;
+fun brochette_N : N ;
+fun brochure_N : N ;
+fun brocket_N : N ;
+fun brodiaea_N : N ;
+fun brogan_N : N ;
+fun brogue_N : N ;
+fun broil_N : N ;
+fun broil_V : V ;
+fun broiler_N : N ;
+fun broke_A : A ;
+fun broken_hearted_A : A ;
+fun brokenhearted_A : A ;
+fun broker_N : N ;
+fun brokerage_N : N ;
+fun brolly_N : N ;
+fun brome_N : N ;
+fun bromic_A : A ;
+fun bromide_N : N ;
+fun bromidic_A : A ;
+fun bromine_N : N ;
+fun bromoform_N : N ;
+fun bronchial_A : A ;
+fun bronchiolar_A : A ;
+fun bronchiole_N : N ;
+fun bronchiolitis_N : N ;
+fun bronchitic_A : A ;
+fun bronchitis_N : N ;
+fun bronchodilator_N : N ;
+fun bronchopneumonia_N : N ;
+fun bronchoscope_N : N ;
+fun bronchoscopic_A : A ;
+fun bronchospasm_N : N ;
+fun bronchus_N : N ;
+fun bronco_N : N ;
+fun bronze_A : A ;
+fun bronze_N : N ;
+fun bronze_V : V ;
+fun brooch_N : N ;
+fun brood_N : N ;
+fun brood_V : V ;
+fun brood_hen_N : N ;
+fun brood_mare_N : N ;
+fun brooding_N : N ;
+fun broodmare_N : N ;
+fun broody_A : A ;
+fun brook_N : N ;
+fun brook_V : V ;
+fun brooklet_N : N ;
+fun brooklime_N : N ;
+fun brookweed_N : N ;
+fun broom_N : N ;
+fun broomcorn_N : N ;
+fun broomstick_N : N ;
+fun broomweed_N : N ;
+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 brotherly_Adv : Adv ;
+fun brotula_N : N ;
+fun brougham_N : N ;
+fun brought_V : V ;
+fun brouhaha_N : N ;
+fun brow_N : N ;
+fun browbeat_V : V ;
+fun brown_A : A ;
+fun brown_N : N ;
+fun brown_V : V ;
+fun brownie_N : N ;
+fun brownish_A : A ;
+fun brownstone_N : N ;
+fun browntail_N : N ;
+fun browse_N : N ;
+fun browse_V : V ;
+fun browser_N : N ;
+fun brucellosis_N : N ;
+fun brucine_N : N ;
+fun bruin_N : N ;
+fun bruise_N : N ;
+fun bruise_V : V ;
+fun bruiser_N : N ;
+fun bruit_V : V ;
+fun brumal_A : A ;
+fun brumous_A : A ;
+fun brunch_N : N ;
+fun bruneian_A : A ;
+fun bruneian_N : N ;
+fun brunet_A : A ;
+fun brunet_N : N ;
+fun brunette_N : N ;
+fun brunt_N : N ;
+fun brush_N : N ;
+fun brush_V : V ;
+fun brush_off_N : N ;
+fun brush_up_N : N ;
+fun brushlike_A : A ;
+fun brushwood_N : N ;
+fun brushwork_N : N ;
+fun brusque_A : A ;
+fun brusqueness_N : N ;
+fun brut_A : A ;
+fun brutal_A : A ;
+fun brutality_N : N ;
+fun brutalization_N : N ;
+fun brutalize_V : V ;
+fun brute_N : N ;
+fun brutish_A : A ;
+fun bruxism_N : N ;
+fun bryanthus_N : N ;
+fun bryony_N : N ;
+fun bryophyte_N : N ;
+fun bryophytic_A : A ;
+fun bryozoan_N : N ;
+fun bsc_N : N ;
+fun bubaline_A : A ;
+fun bubble_N : N ;
+fun bubble_V : V ;
+fun bubbler_N : N ;
+fun bubbliness_N : N ;
+fun bubbly_A : A ;
+fun bubbly_N : N ;
+fun bubo_N : N ;
+fun bubonic_A : A ;
+fun buccal_A : A ;
+fun buccaneer_N : N ;
+fun buck_N : N ;
+fun buck_V : V ;
+fun buckboard_N : N ;
+fun bucket_N : N ;
+fun bucket_bucketed_V : V ;
+fun bucket_bucketted_V : V ;
+fun bucketful_N : N ;
+fun buckeye_N : N ;
+fun buckle_N : N ;
+fun buckle_V : V ;
+fun buckler_N : N ;
+fun buckleya_N : N ;
+fun buckminsterfullerene_N : N ;
+fun buckram_N : N ;
+fun bucksaw_N : N ;
+fun buckshee_A : A ;
+fun buckshot_N : N ;
+fun buckskin_N : N ;
+fun buckskins_N : N ;
+fun buckthorn_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 buddhism_N : N ;
+fun buddhist_N : N ;
+fun budding_N : N ;
+fun buddy_N : N ;
+fun budge_V : V ;
+fun budgerigar_N : N ;
+fun budget_N : N ;
+fun budget_V : V ;
+fun budgetary_A : A ;
+fun budgie_N : N ;
+fun buff_A : A ;
+fun buff_N : N ;
+fun buff_V : V ;
+fun buffalo_N : N ;
+fun buffalofish_N : N ;
+fun buffer_N : N ;
+fun buffer_V : V ;
+fun buffet_N : N ;
+fun buffet_V : V ;
+fun bufflehead_N : N ;
+fun buffoon_N : N ;
+fun buffoonery_N : N ;
+fun buffoonish_A : A ;
+fun bufo_N : N ;
+fun bug_N : N ;
+fun bug_V : V ;
+fun bug_hunter_N : N ;
+fun bugaboo_N : N ;
+fun bugbane_N : N ;
+fun bugbear_N : N ;
+fun bugger_N : N ;
+fun bugger_V : V ;
+fun bugger_all_N : N ;
+fun buggery_N : N ;
+fun bugginess_N : N ;
+fun buggy_A : A ;
+fun buggy_N : N ;
+fun bugle_N : N ;
+fun bugler_N : N ;
+fun bugleweed_N : N ;
+fun bugloss_N : N ;
+fun buhl_N : N ;
+fun build_N : N ;
+fun build_V : V ;
+fun build_up_N : N ;
+fun builder_N : N ;
+fun building_N : N ;
+fun building_society_N : N ;
+fun buildup_N : N ;
+fun built_in_A : A ;
+fun built_up_A : A ;
+fun bulb_N : N ;
+fun bulbaceous_A : A ;
+fun bulbar_A : A ;
+fun bulbed_A : A ;
+fun bulbil_N : N ;
+fun bulblike_A : A ;
+fun bulbous_A : A ;
+fun bulbul_N : N ;
+fun bulge_N : N ;
+fun bulge_V : V ;
+fun bulgur_N : N ;
+fun bulimarexia_N : N ;
+fun bulimia_N : N ;
+fun bulimic_A : A ;
+fun bulimic_N : N ;
+fun bulk_N : N ;
+fun bulk_V : V ;
+fun bulkhead_N : N ;
+fun bulkiness_N : N ;
+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 bulla_N : N ;
+fun bullace_N : N ;
+fun bullate_A : A ;
+fun bullbrier_N : N ;
+fun bulldog_N : N ;
+fun bulldoze_V : V ;
+fun bulldozer_N : N ;
+fun bullet_N : N ;
+fun bullet_headed_A : A ;
+fun bullethead_N : N ;
+fun bulletin_N : N ;
+fun bulletproof_A : A ;
+fun bullfight_N : N ;
+fun bullfighter_N : N ;
+fun bullfighting_N : N ;
+fun bullfinch_N : N ;
+fun bullfrog_N : N ;
+fun bullhead_N : N ;
+fun bullheaded_A : A ;
+fun bullhorn_N : N ;
+fun bullion_N : N ;
+fun bullish_A : A ;
+fun bullnecked_A : A ;
+fun bullnose_N : N ;
+fun bullock_N : N ;
+fun bullocky_A : A ;
+fun bullpen_N : N ;
+fun bullring_N : N ;
+fun bullshit_N : N ;
+fun bullshit_V : V ;
+fun bullshot_N : N ;
+fun bullterrier_N : N ;
+fun bully_A : A ;
+fun bully_N : N ;
+fun bully_V : V ;
+fun bullyboy_N : N ;
+fun bullying_N : N ;
+fun bulrush_N : N ;
+fun bulwark_N : N ;
+fun bum_A : A ;
+fun bum_N : N ;
+fun bum_V : V ;
+fun bumblebee_N : N ;
+fun bumbling_A : A ;
+fun bumboat_N : N ;
+fun bumf_N : N ;
+fun bummer_N : N ;
+fun bump_Adv : Adv ;
+fun bump_N : N ;
+fun bump_V : V ;
+fun bumper_N : N ;
+fun bumpiness_N : N ;
+fun bumpkin_N : N ;
+fun bumpkinly_A : A ;
+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 bunchberry_N : N ;
+fun bunchgrass_N : N ;
+fun bunchy_A : A ;
+fun bunco_N : N ;
+fun bundle_N : N ;
+fun bundle_V : V ;
+fun bundling_N : N ;
+fun bunfight_N : N ;
+fun bung_N : N ;
+fun bung_V : V ;
+fun bung_hole_N : N ;
+fun bungaloid_A : A ;
+fun bungalow_N : N ;
+fun bungee_N : N ;
+fun bunghole_N : N ;
+fun bungle_N : N ;
+fun bungle_V : V ;
+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 bunkmate_N : N ;
+fun bunkum_N : N ;
+fun bunny_N : N ;
+fun bunsen_N : N ;
+fun bunt_N : N ;
+fun buntal_N : N ;
+fun bunter_N : N ;
+fun bunting_N : N ;
+fun bunyavirus_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 burbot_N : N ;
+fun burden_N : N ;
+fun burden_V : V ;
+fun burdenless_A : A ;
+fun burdensome_A : A ;
+fun burdensomeness_N : N ;
+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 burger_N : N ;
+fun burgess_N : N ;
+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 burglarproof_A : A ;
+fun burglary_N : N ;
+fun burgle_V : V ;
+fun burgomaster_N : N ;
+fun burgoo_N : N ;
+fun burgrass_N : N ;
+fun burgrave_N : N ;
+fun burgundy_N : N ;
+fun burial_N : N ;
+fun burial_ground_N : N ;
+fun burin_N : N ;
+fun burke_V : V ;
+fun burl_N : N ;
+fun burlap_N : N ;
+fun burled_A : A ;
+fun burlesque_A : A ;
+fun burlesque_N : N ;
+fun burlesque_V : V ;
+fun burly_A : A ;
+fun burmese_A : A ;
+fun burmese_N : N ;
+fun burn_N : N ;
+fun burn_burned_burned_V : V ;
+fun burn_burned_burnt_V : V ;
+fun burn_burnt_burned_V : V ;
+fun burn_burnt_burnt_V : V ;
+fun burn_up_N : N ;
+fun burnable_A : A ;
+fun burner_N : N ;
+fun burning_N : N ;
+fun burnish_V : V ;
+fun burnous_N : N ;
+fun burnouse_N : N ;
+fun burnup_N : N ;
+fun burp_N : N ;
+fun burp_V : V ;
+fun burqa_N : N ;
+fun burr_N : N ;
+fun burr_drill_N : N ;
+fun burrawong_N : N ;
+fun burrfish_N : N ;
+fun burrito_N : N ;
+fun burrlike_A : A ;
+fun burro_N : N ;
+fun burrow_N : N ;
+fun burrow_V : V ;
+fun bursa_N : N ;
+fun bursal_A : A ;
+fun bursar_N : N ;
+fun bursary_N : N ;
+fun bursiform_A : A ;
+fun bursitis_N : N ;
+fun burst_N : N ;
+fun burst_V : V ;
+fun burthen_N : N ;
+fun burthen_V : V ;
+fun burton_N : N ;
+fun burundian_A : A ;
+fun burundian_N : N ;
+fun bury_V : V ;
+fun burying_N : N ;
+fun burying_ground_N : N ;
+fun bus_N : N ;
+fun bus_V : V ;
+fun busbar_N : N ;
+fun busboy_N : N ;
+fun busby_N : N ;
+fun bush_N : N ;
+fun bushbuck_N : N ;
+fun bushel_N : N ;
+fun bushing_N : N ;
+fun bushman_N : N ;
+fun bushtit_N : N ;
+fun bushwhacker_N : N ;
+fun bushwhacking_A : A ;
+fun bushy_A : A ;
+fun business_N : N ;
+fun businesslike_A : A ;
+fun businessman_N : N ;
+fun businessperson_N : N ;
+fun businesswoman_N : N ;
+fun busker_N : N ;
+fun buskin_N : N ;
+fun busload_N : N ;
+fun busman_N : N ;
+fun buspirone_N : N ;
+fun bust_N : N ;
+fun bust_V : V ;
+fun bust_up_N : N ;
+fun bustard_N : N ;
+fun buster_N : N ;
+fun bustier_N : N ;
+fun bustle_N : N ;
+fun bustle_V : V ;
+fun busy_A : A ;
+fun busy_V : V ;
+fun busybody_N : N ;
+fun busyness_N : N ;
+fun busywork_N : N ;
+fun but_Adv : Adv ;
+fun but_Prep : Prep ;
+fun butacaine_N : N ;
+fun butadiene_N : N ;
+fun butane_N : N ;
+fun butanone_N : N ;
+fun butch_A : A ;
+fun butch_N : N ;
+fun butcher_N : N ;
+fun butcher_V : V ;
+fun butcherbird_N : N ;
+fun butchery_N : N ;
+fun buteonine_A : A ;
+fun buteonine_N : N ;
+fun butler_N : N ;
+fun butt_N : N ;
+fun butt_V : V ;
+fun butte_N : N ;
+fun butter_N : N ;
+fun butter_V : V ;
+fun butterbean_N : N ;
+fun butterbur_N : N ;
+fun buttercrunch_N : N ;
+fun buttercup_N : N ;
+fun butterfat_N : N ;
+fun butterfingers_N : N ;
+fun butterfish_N : N ;
+fun butterfly_N : N ;
+fun buttermilk_N : N ;
+fun butternut_N : N ;
+fun butterscotch_N : N ;
+fun butterweed_N : N ;
+fun butterwort_N : N ;
+fun buttery_A : A ;
+fun buttery_N : N ;
+fun buttinsky_N : N ;
+fun buttock_N : N ;
+fun buttocks_N : N ;
+fun button_N : N ;
+fun button_V : V ;
+fun buttoned_up_A : A ;
+fun buttonhole_N : N ;
+fun buttonhole_V : V ;
+fun buttonhook_N : N ;
+fun buttonwood_N : N ;
+fun buttony_A : A ;
+fun buttress_N : N ;
+fun buttress_V : V ;
+fun butty_N : N ;
+fun butut_N : N ;
+fun butyl_N : N ;
+fun butylene_N : N ;
+fun butyraceous_A : A ;
+fun butyric_A : A ;
+fun butyrin_N : N ;
+fun buxom_A : A ;
+fun buxomness_N : N ;
+fun buy_N : N ;
+fun buy_bought_V : V ;
+fun buy_buyed_V : V ;
+fun buyer_N : N ;
+fun buying_N : N ;
+fun buyout_N : N ;
+fun buzz_N : N ;
+fun buzz_V : V ;
+fun buzzard_N : N ;
+fun buzzer_N : N ;
+fun buzzword_N : N ;
+fun bvm_N : N ;
+fun by_Adv : Adv ;
+fun by_Prep : Prep ;
+fun by_election_N : N ;
+fun by_means_of_Prep : Prep ;
+fun by_virtue_of_Prep : Prep ;
+fun bye_law_N : N ;
+fun bygone_A : A ;
+fun bygone_N : N ;
+fun bylaw_N : N ;
+fun bypass_N : N ;
+fun bypass_V : V ;
+fun bypath_N : N ;
+fun byplay_N : N ;
+fun byproduct_N : N ;
+fun byroad_N : N ;
+fun byssus_N : N ;
+fun bystander_N : N ;
+fun byte_N : N ;
+fun byway_N : N ;
+fun byword_N : N ;
+fun bête_noire_N : N ;
+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 cabala_N : N ;
+fun cabalist_N : N ;
+fun cabalistic_A : A ;
+fun cabana_N : N ;
+fun cabaret_N : N ;
+fun cabbage_N : N ;
+fun cabbageworm_N : N ;
+fun cabby_N : N ;
+fun caber_N : N ;
+fun cabin_N : N ;
+fun cabinet_N : N ;
+fun cabinet_maker_N : N ;
+fun cabinetmaker_N : N ;
+fun cabinetmaking_N : N ;
+fun cabinetwork_N : N ;
+fun cable's_length_N : N ;
+fun cable_N : N ;
+fun cable_V : V ;
+fun cable_car_N : N ;
+fun cable_length_N : N ;
+fun cable_railway_N : N ;
+fun cablegram_N : N ;
+fun cabman_N : N ;
+fun cabochon_N : N ;
+fun caboodle_N : N ;
+fun caboose_N : N ;
+fun cabotage_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_V : V ;
+fun cachectic_A : A ;
+fun cachet_N : N ;
+fun cachexia_N : N ;
+fun cachinnation_N : N ;
+fun cachou_N : N ;
+fun cacique_N : N ;
+fun cackle_N : N ;
+fun cackle_V : V ;
+fun cackler_N : N ;
+fun cackly_A : A ;
+fun cacodemon_N : N ;
+fun cacodemonic_A : A ;
+fun cacodyl_N : N ;
+fun cacodylic_A : A ;
+fun cacogenesis_N : N ;
+fun cacophonous_A : A ;
+fun cacophony_N : N ;
+fun cactus_N : N ;
+fun cacuminal_A : A ;
+fun cad_N : N ;
+fun cadaster_N : N ;
+fun cadastral_A : A ;
+fun cadaver_N : N ;
+fun cadaverine_N : N ;
+fun cadaverous_A : A ;
+fun caddie_N : N ;
+fun caddish_A : A ;
+fun caddisworm_N : N ;
+fun caddy_N : N ;
+fun cadence_N : N ;
+fun cadenced_A : A ;
+fun cadenza_N : N ;
+fun cadet_N : N ;
+fun cadetship_N : N ;
+fun cadge_V : V ;
+fun cadger_N : N ;
+fun cadmium_N : N ;
+fun cadre_N : N ;
+fun caducean_A : A ;
+fun caduceus_N : N ;
+fun caducous_A : A ;
+fun caecilian_A : A ;
+fun caecilian_N : N ;
+fun caesar_N : N ;
+fun caesarian_A : A ;
+fun caespitose_A : A ;
+fun caesura_N : N ;
+fun caesural_A : A ;
+fun cafe_au_lait_N : N ;
+fun cafeteria_N : N ;
+fun caff_N : N ;
+fun caffeine_N : N ;
+fun caffeinic_A : A ;
+fun caffeinism_N : N ;
+fun caftan_N : N ;
+fun café_N : N ;
+fun cage_N : N ;
+fun cage_V : V ;
+fun cagey_A : A ;
+fun cagily_Adv : Adv ;
+fun cagoule_N : N ;
+fun cahoot_N : N ;
+fun caiman_N : N ;
+fun cairn_N : N ;
+fun cairned_A : A ;
+fun cairngorm_N : N ;
+fun caisson_N : N ;
+fun caitiff_A : A ;
+fun caitiff_N : N ;
+fun cajole_V : V ;
+fun cajolery_N : N ;
+fun cake_N : N ;
+fun cake_V : V ;
+fun cakewalk_N : N ;
+fun calaba_N : N ;
+fun calabash_N : N ;
+fun caladenia_N : N ;
+fun caladium_N : N ;
+fun calamint_N : N ;
+fun calamitous_A : A ;
+fun calamity_N : N ;
+fun calamus_N : N ;
+fun calando_A : A ;
+fun calanthe_N : N ;
+fun calash_N : N ;
+fun calcaneal_A : A ;
+fun calcareous_A : A ;
+fun calced_A : A ;
+fun calceolaria_N : N ;
+fun calceolate_A : A ;
+fun calceus_N : N ;
+fun calcic_A : A ;
+fun calcicolous_A : A ;
+fun calciferous_A : A ;
+fun calcific_A : A ;
+fun calcification_N : N ;
+fun calcifugous_A : A ;
+fun calcify_V : V ;
+fun calcimine_N : N ;
+fun calcination_N : N ;
+fun calcine_V : V ;
+fun calcite_N : N ;
+fun calcitic_A : A ;
+fun calcitonin_N : N ;
+fun calcium_N : N ;
+fun calculable_A : A ;
+fun calculate_V : V ;
+fun calculatingly_Adv : Adv ;
+fun calculation_N : N ;
+fun calculator_N : N ;
+fun calculous_A : A ;
+fun calculus_N : N ;
+fun caldera_N : N ;
+fun caldron_N : N ;
+fun calefacient_A : A ;
+fun calefaction_N : N ;
+fun calefactory_A : A ;
+fun calendar_N : N ;
+fun calender_N : N ;
+fun calender_V : V ;
+fun calendric_A : A ;
+fun calendula_N : N ;
+fun calf_N : N ;
+fun calf_love_N : N ;
+fun calibrate_V : V ;
+fun calibration_N : N ;
+fun calibre_N : N ;
+fun caliche_N : N ;
+fun calico_A : A ;
+fun calico_N : N ;
+fun calif_N : N ;
+fun californian_A : A ;
+fun californian_N : N ;
+fun californium_N : N ;
+fun caliginous_A : A ;
+fun caliper_N : N ;
+fun caliph_N : N ;
+fun caliphate_N : N ;
+fun calisaya_N : N ;
+fun calisthenic_A : A ;
+fun calisthenics_N : N ;
+fun calk_N : N ;
+fun calk_V : V ;
+fun call_N : N ;
+fun call_V : V ;
+fun call_box_N : N ;
+fun call_girl_N : N ;
+fun call_over_N : N ;
+fun call_up_N : N ;
+fun callable_A : A ;
+fun caller_A : A ;
+fun caller_N : N ;
+fun calliandra_N : N ;
+fun calligrapher_N : N ;
+fun calligraphic_A : A ;
+fun calligraphy_N : N ;
+fun calling_N : N ;
+fun calliope_N : N ;
+fun calliopsis_N : N ;
+fun callipygian_A : A ;
+fun callisthenics_N : N ;
+fun callithump_N : N ;
+fun callithumpian_A : A ;
+fun callosity_N : N ;
+fun callosotomy_N : N ;
+fun callous_A : A ;
+fun calloused_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 calme_V : V ;
+fun calmness_N : N ;
+fun calomel_N : N ;
+fun caloric_A : A ;
+fun calorie_N : N ;
+fun calorifacient_A : A ;
+fun calorific_A : A ;
+fun calorimeter_N : N ;
+fun calorimetric_A : A ;
+fun calorimetry_N : N ;
+fun calosoma_N : N ;
+fun calpac_N : N ;
+fun calque_N : N ;
+fun caltrop_N : N ;
+fun calumet_N : N ;
+fun calumniate_V : V ;
+fun calumniatory_A : A ;
+fun calumny_N : N ;
+fun calvaria_N : N ;
+fun calvary_N : N ;
+fun calve_V : V ;
+fun calving_N : N ;
+fun calvinism_N : N ;
+fun calvinist_N : N ;
+fun calyceal_A : A ;
+fun calycular_A : A ;
+fun calyculate_A : A ;
+fun calyculus_N : N ;
+fun calypso_N : N ;
+fun calyptra_N : N ;
+fun calyptrate_A : A ;
+fun calyx_N : N ;
+fun cam_N : N ;
+fun camail_N : N ;
+fun camaraderie_N : N ;
+fun camas_N : N ;
+fun camber_N : N ;
+fun camber_V : V ;
+fun cambial_A : A ;
+fun cambium_N : N ;
+fun cambodian_A : A ;
+fun cambodian_N : N ;
+fun cambric_N : N ;
+fun camcorder_N : N ;
+fun camel_N : N ;
+fun camel_hair_N : N ;
+fun camellia_N : N ;
+fun camelpox_N : N ;
+fun camembert_N : N ;
+fun cameo_N : N ;
+fun camera_N : N ;
+fun cameraman_N : N ;
+fun cameroonian_A : A ;
+fun cameroonian_N : N ;
+fun camion_N : N ;
+fun camise_N : N ;
+fun camisole_N : N ;
+fun camlet_N : N ;
+fun camomile_N : N ;
+fun camouflage_N : N ;
+fun camouflage_V : V ;
+fun camp_A : A ;
+fun camp_N : N ;
+fun camp_V : V ;
+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 campaigning_N : N ;
+fun campanile_N : N ;
+fun campanula_N : N ;
+fun campanulate_A : A ;
+fun camper_N : N ;
+fun campestral_A : A ;
+fun campfire_N : N ;
+fun camphor_N : N ;
+fun camphoraceous_A : A ;
+fun camphorated_A : A ;
+fun camphoric_A : A ;
+fun camping_N : N ;
+fun campion_N : N ;
+fun campmate_N : N ;
+fun campsite_N : N ;
+fun campstool_N : N ;
+fun campus_N : N ;
+fun campylotropous_A : A ;
+fun camshaft_N : N ;
+fun camwood_N : N ;
+fun can_N : N ;
+fun can_V : V ;
+fun canal_N : N ;
+fun canalicular_A : A ;
+fun canaliculate_A : A ;
+fun canaliculus_N : N ;
+fun canalization_N : N ;
+fun canalize_V : V ;
+fun canapé_N : N ;
+fun canard_N : N ;
+fun canary_A : A ;
+fun canary_N : N ;
+fun canary_bird_N : N ;
+fun canary_wine_N : N ;
+fun canasta_N : N ;
+fun canavanine_N : N ;
+fun cancan_N : N ;
+fun cancel_canceled_V : V ;
+fun cancel_cancelled_V : V ;
+fun cancellate_A : A ;
+fun cancellation_N : N ;
+fun cancer_N : N ;
+fun cancerous_A : A ;
+fun cancerweed_N : N ;
+fun cancroid_A : A ;
+fun cancroid_N : N ;
+fun candelabrum_N : N ;
+fun candelilla_N : N ;
+fun candescent_A : A ;
+fun candid_A : A ;
+fun candida_N : N ;
+fun candidacy_N : N ;
+fun candidate_N : N ;
+fun candidature_N : N ;
+fun candidiasis_N : N ;
+fun candle_N : N ;
+fun candle_power_N : N ;
+fun candlelight_N : N ;
+fun candlemaker_N : N ;
+fun candlenut_N : N ;
+fun candlepin_N : N ;
+fun candlepins_N : N ;
+fun candlepower_N : N ;
+fun candlesnuffer_N : N ;
+fun candlestick_N : N ;
+fun candlewick_N : N ;
+fun candlewood_N : N ;
+fun candor_N : N ;
+fun candour_N : N ;
+fun candy_N : N ;
+fun candy_V : V ;
+fun candy_floss_N : N ;
+fun candytuft_N : N ;
+fun cane_N : N ;
+fun cane_V : V ;
+fun canebrake_N : N ;
+fun canella_N : N ;
+fun canescent_A : A ;
+fun canfield_N : N ;
+fun cangue_N : N ;
+fun canicular_A : A ;
+fun canine_A : A ;
+fun canine_N : N ;
+fun canistel_N : N ;
+fun canister_N : N ;
+fun canker_N : N ;
+fun canker_V : V ;
+fun cankerous_A : A ;
+fun cankerworm_N : N ;
+fun canna_N : N ;
+fun cannabin_N : N ;
+fun cannabis_N : N ;
+fun cannelloni_N : N ;
+fun cannery_N : N ;
+fun cannibal_N : N ;
+fun cannibalic_A : A ;
+fun cannibalism_N : N ;
+fun cannibalistic_A : A ;
+fun cannibalize_V : V ;
+fun cannikin_N : N ;
+fun cannon_N : N ;
+fun cannon_fodder_N : N ;
+fun cannonade_N : N ;
+fun cannonball_N : N ;
+fun cannula_N : N ;
+fun cannulation_N : N ;
+fun canny_A : A ;
+fun canoe_N : N ;
+fun canoe_V : V ;
+fun canoeist_N : N ;
+fun canon_N : N ;
+fun canonic_A : A ;
+fun canonical_A : A ;
+fun canonist_A : A ;
+fun canonist_N : N ;
+fun canonization_N : N ;
+fun canonize_V : V ;
+fun canopied_A : A ;
+fun canopy_N : N ;
+fun canorous_A : A ;
+fun cant_N : N ;
+fun cant_V : V ;
+fun cantabile_A : A ;
+fun cantala_N : N ;
+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 canthus_N : N ;
+fun canticle_N : N ;
+fun cantilever_N : N ;
+fun cantillation_N : N ;
+fun cantle_N : N ;
+fun canto_N : N ;
+fun canton_N : N ;
+fun cantonal_A : A ;
+fun cantonment_N : N ;
+fun cantor_N : N ;
+fun canty_A : A ;
+fun canuck_N : N ;
+fun canvas_N : N ;
+fun canvasback_N : N ;
+fun canvass_N : N ;
+fun canvass_V : V ;
+fun canvasser_N : N ;
+fun canyon_N : N ;
+fun canyonside_N : N ;
+fun cap_N : N ;
+fun cap_V : V ;
+fun cap_à_pie_Adv : Adv ;
+fun capability_N : N ;
+fun capable_A : A ;
+fun capacious_A : A ;
+fun capaciousness_N : N ;
+fun capacitance_N : N ;
+fun capacitive_A : A ;
+fun capacitor_N : N ;
+fun capacity_N : N ;
+fun caparison_N : N ;
+fun caparison_V : V ;
+fun cape_N : N ;
+fun capelin_N : N ;
+fun caper_N : N ;
+fun caper_V : V ;
+fun capercaillie_N : N ;
+fun capful_N : N ;
+fun capillarity_N : N ;
+fun capillary_A : A ;
+fun capillary_N : N ;
+fun capital_A : A ;
+fun capital_N : N ;
+fun capitalisation_N : N ;
+fun capitalism_A : A ;
+fun capitalism_N : N ;
+fun capitalist_A : A ;
+fun capitalist_N : N ;
+fun capitalistic_A : A ;
+fun capitalization_N : N ;
+fun capitalize_V : V ;
+fun capitate_A : A ;
+fun capitate_N : N ;
+fun capitation_N : N ;
+fun capitol_N : N ;
+fun capitular_A : A ;
+fun capitulate_V : V ;
+fun capitulation_N : N ;
+fun capitulum_N : N ;
+fun capo_N : N ;
+fun capon_N : N ;
+fun capote_N : N ;
+fun cappuccino_N : N ;
+fun capriccio_N : N ;
+fun caprice_N : N ;
+fun capricious_A : A ;
+fun capriciousness_N : N ;
+fun caprifig_N : N ;
+fun caprine_A : A ;
+fun capriole_N : N ;
+fun capsaicin_N : N ;
+fun capsicum_N : N ;
+fun capsid_N : N ;
+fun capsize_V : V ;
+fun capsizing_N : N ;
+fun capstan_N : N ;
+fun capstone_N : N ;
+fun capsular_A : A ;
+fun capsulate_A : A ;
+fun capsule_N : N ;
+fun captain_N : N ;
+fun captain_V : V ;
+fun captainship_N : N ;
+fun caption_N : N ;
+fun captious_A : A ;
+fun captivate_V : V ;
+fun captivation_N : N ;
+fun captive_A : A ;
+fun captive_N : N ;
+fun captivity_N : N ;
+fun captopril_N : N ;
+fun captor_N : N ;
+fun capture_N : N ;
+fun capture_V : V ;
+fun capuchin_N : N ;
+fun capulin_N : N ;
+fun caput_N : N ;
+fun capybara_N : N ;
+fun car_N : N ;
+fun car_ferry_N : N ;
+fun carabao_N : N ;
+fun carabiner_N : N ;
+fun caracal_N : N ;
+fun caracara_N : N ;
+fun caracolito_N : N ;
+fun carafe_N : N ;
+fun carambola_N : N ;
+fun caramel_A : A ;
+fun caramel_N : N ;
+fun carancha_N : N ;
+fun caranday_N : N ;
+fun carangid_A : A ;
+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 carbamate_N : N ;
+fun carbide_N : N ;
+fun carbine_N : N ;
+fun carbineer_N : N ;
+fun carbocyclic_A : A ;
+fun carbohydrate_N : N ;
+fun carbolated_A : A ;
+fun carbolic_A : A ;
+fun carbomycin_N : N ;
+fun carbon_N : N ;
+fun carbon_paper_N : N ;
+fun carbonaceous_A : A ;
+fun carbonado_N : N ;
+fun carbonara_N : N ;
+fun carbonate_N : N ;
+fun carbonated_A : A ;
+fun carbonation_N : N ;
+fun carbonic_A : A ;
+fun carboniferous_A : A ;
+fun carbonization_N : N ;
+fun carbonize_V : V ;
+fun carbonyl_A : A ;
+fun carbonyl_N : N ;
+fun carborundum_N : N ;
+fun carboxyl_A : A ;
+fun carboxyl_N : N ;
+fun carboy_N : N ;
+fun carbuncle_N : N ;
+fun carbuncled_A : A ;
+fun carburetor_N : N ;
+fun carburettor_N : N ;
+fun carcase_N : N ;
+fun carcass_N : N ;
+fun carcinogen_N : N ;
+fun carcinogenic_A : A ;
+fun carcinoid_N : N ;
+fun carcinoma_N : N ;
+fun carcinomatous_A : A ;
+fun carcinosarcoma_N : N ;
+fun card_N : N ;
+fun card_V : V ;
+fun card_sharper_N : N ;
+fun cardamom_N : N ;
+fun cardboard_A : A ;
+fun cardboard_N : N ;
+fun cardcase_N : N ;
+fun cardholder_N : N ;
+fun cardia_N : N ;
+fun cardiac_A : A ;
+fun cardigan_N : N ;
+fun cardinal_A : A ;
+fun cardinal_N : N ;
+fun cardinalate_N : N ;
+fun cardinalfish_N : N ;
+fun cardinality_N : N ;
+fun cardinalship_N : N ;
+fun cardiograph_N : N ;
+fun cardiographic_A : A ;
+fun cardiography_N : N ;
+fun cardioid_N : N ;
+fun cardiologic_A : A ;
+fun cardiologist_N : N ;
+fun cardiology_N : N ;
+fun cardiomegaly_N : N ;
+fun cardiomyopathy_N : N ;
+fun cardiopulmonary_A : A ;
+fun cardiospasm_N : N ;
+fun cardiovascular_A : A ;
+fun carditis_N : N ;
+fun cardoon_N : N ;
+fun cardroom_N : N ;
+fun cardsharp_N : N ;
+fun care_N : N ;
+fun care_V : V ;
+fun careen_V : V ;
+fun career_N : N ;
+fun career_V : V ;
+fun careerism_N : N ;
+fun careerist_N : N ;
+fun carefree_A : A ;
+fun carefreeness_N : N ;
+fun careful_A : A ;
+fun carefulness_N : N ;
+fun caregiver_N : N ;
+fun careladen_A : A ;
+fun careless_A : A ;
+fun carelessness_N : N ;
+fun caress_N : N ;
+fun caress_V : V ;
+fun caressing_A : A ;
+fun caressing_N : N ;
+fun caret_N : N ;
+fun caretaker_N : N ;
+fun careworn_A : A ;
+fun carful_N : N ;
+fun cargo_N : N ;
+fun carhop_N : N ;
+fun caribou_N : N ;
+fun caricature_N : N ;
+fun caricature_V : V ;
+fun caricaturist_N : N ;
+fun caries_N : N ;
+fun carillon_N : N ;
+fun carillonneur_N : N ;
+fun carina_N : N ;
+fun carinal_A : A ;
+fun carinate_N : N ;
+fun carioca_N : N ;
+fun carious_A : A ;
+fun carissa_N : N ;
+fun carjacking_N : N ;
+fun carload_N : N ;
+fun carminative_A : A ;
+fun carminative_N : N ;
+fun carmine_A : A ;
+fun carmine_N : N ;
+fun carnage_N : N ;
+fun carnal_A : A ;
+fun carnallite_N : N ;
+fun carnassial_A : A ;
+fun carnation_A : A ;
+fun carnation_N : N ;
+fun carnauba_N : N ;
+fun carnelian_N : N ;
+fun carnival_N : N ;
+fun carnivore_N : N ;
+fun carnivorous_A : A ;
+fun carnosaur_N : N ;
+fun carnotite_N : N ;
+fun carob_N : N ;
+fun caroche_N : N ;
+fun carol_N : N ;
+fun carol_V : V ;
+fun caroler_N : N ;
+fun caroling_N : N ;
+fun caroller_N : N ;
+fun carom_N : N ;
+fun carotene_N : N ;
+fun carotenemia_N : N ;
+fun carotenoid_N : N ;
+fun carotid_A : A ;
+fun carousal_N : N ;
+fun carouse_N : N ;
+fun carouse_V : V ;
+fun carousel_N : N ;
+fun carp_N : N ;
+fun carp_V : V ;
+fun carpal_A : A ;
+fun carpal_N : N ;
+fun carpel_N : N ;
+fun carpellary_A : A ;
+fun carpellate_A : A ;
+fun carpenter_N : N ;
+fun carpenteria_N : N ;
+fun carpentry_N : N ;
+fun carper_N : N ;
+fun carpet_N : N ;
+fun carpet_V : V ;
+fun carpet_beater_N : N ;
+fun carpet_knight_N : N ;
+fun carpet_sweeper_N : N ;
+fun carpetbag_A : A ;
+fun carpetbag_N : N ;
+fun carpetbagger_N : N ;
+fun carpetweed_N : N ;
+fun carpophagous_A : A ;
+fun carpophore_N : N ;
+fun carport_N : N ;
+fun carpospore_N : N ;
+fun carposporic_A : A ;
+fun carposporous_A : A ;
+fun carrack_N : N ;
+fun carrageenin_N : N ;
+fun carrel_N : N ;
+fun carriage_N : N ;
+fun carriageway_N : N ;
+fun carried_V : V ;
+fun carrier_N : N ;
+fun carrier_bag_N : N ;
+fun carrier_pigeon_N : N ;
+fun carrion_N : N ;
+fun carrion_crow_N : N ;
+fun carrot_N : N ;
+fun carroty_A : A ;
+fun carry_N : N ;
+fun carry_V : V ;
+fun carryall_N : N ;
+fun carrycot_N : N ;
+fun carsick_A : A ;
+fun carsickness_N : N ;
+fun cart_N : N ;
+fun cart_V : V ;
+fun cart_track_N : N ;
+fun cartage_N : N ;
+fun carte_blanche_N : N ;
+fun cartel_N : N ;
+fun carter_N : N ;
+fun carthorse_N : N ;
+fun cartilage_N : N ;
+fun cartilaginification_N : N ;
+fun cartilaginous_A : A ;
+fun cartload_N : N ;
+fun cartographer_N : N ;
+fun cartographic_A : A ;
+fun cartography_N : N ;
+fun carton_N : N ;
+fun cartoon_N : N ;
+fun cartoon_V : V ;
+fun cartoonist_N : N ;
+fun cartouche_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 cartwright_N : N ;
+fun caruncle_N : N ;
+fun caruncular_A : A ;
+fun carunculate_A : A ;
+fun carve_V : V ;
+fun carvedilol_N : N ;
+fun carver_N : N ;
+fun carving_N : N ;
+fun carving_fork_N : N ;
+fun carving_knife_N : N ;
+fun caryatid_N : N ;
+fun caryophyllaceous_A : A ;
+fun casaba_N : N ;
+fun cascade_N : N ;
+fun cascade_V : V ;
+fun cascara_N : N ;
+fun cascarilla_N : N ;
+fun case_N : N ;
+fun case_V : V ;
+fun case_hardened_A : A ;
+fun case_history_N : N ;
+fun case_law_N : N ;
+fun casebook_A : A ;
+fun casebook_N : N ;
+fun casein_N : N ;
+fun casement_N : N ;
+fun caseous_A : A ;
+fun casern_N : N ;
+fun casework_N : N ;
+fun caseworm_N : N ;
+fun cash_N : N ;
+fun cash_V : V ;
+fun cashable_A : A ;
+fun cashbox_N : N ;
+fun cashew_N : N ;
+fun cashier_N : N ;
+fun cashier_V : V ;
+fun cashmere_N : N ;
+fun casing_N : N ;
+fun casino_N : N ;
+fun cask_N : N ;
+fun casket_N : N ;
+fun caspase_N : N ;
+fun casque_N : N ;
+fun casquet_N : N ;
+fun cassareep_N : N ;
+fun cassava_N : N ;
+fun casserole_N : N ;
+fun cassette_N : N ;
+fun cassia_N : N ;
+fun cassiri_N : N ;
+fun cassiterite_N : N ;
+fun cassock_N : N ;
+fun cassocked_A : A ;
+fun cassowary_N : N ;
+fun cast_N : N ;
+fun cast_cast_V : V ;
+fun cast_casted_V : V ;
+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_V : V ;
+fun castigation_N : N ;
+fun casting_N : N ;
+fun castle_N : N ;
+fun castle_V : V ;
+fun castor_N : N ;
+fun castor_oil_N : N ;
+fun castrate_V : V ;
+fun castration_N : N ;
+fun castrato_N : N ;
+fun casual_A : A ;
+fun casualness_N : N ;
+fun casualty_N : N ;
+fun casuarina_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 catabiosis_N : N ;
+fun catabolic_A : A ;
+fun catabolism_N : N ;
+fun catachresis_N : N ;
+fun catachrestic_A : A ;
+fun cataclinal_A : A ;
+fun cataclysm_N : N ;
+fun cataclysmal_A : A ;
+fun cataclysmic_A : A ;
+fun catacomb_N : N ;
+fun catacorner_A : A ;
+fun catadromous_A : A ;
+fun catafalque_N : N ;
+fun catalan_A : A ;
+fun catalan_N : N ;
+fun catalase_N : N ;
+fun catalatic_A : A ;
+fun catalectic_A : A ;
+fun catalectic_N : N ;
+fun catalepsy_N : N ;
+fun cataleptic_A : A ;
+fun cataleptic_N : N ;
+fun catalexis_N : N ;
+fun catalog_N : N ;
+fun catalog_V : V ;
+fun cataloger_N : N ;
+fun catalogue_N : N ;
+fun catalogue_V : V ;
+fun catalpa_N : N ;
+fun catalufa_N : N ;
+fun catalysis_N : N ;
+fun catalyst_N : N ;
+fun catalytic_A : A ;
+fun catalytically_Adv : Adv ;
+fun catamaran_N : N ;
+fun catamite_N : N ;
+fun catananche_N : N ;
+fun cataphasia_N : N ;
+fun cataphatic_A : A ;
+fun cataphatism_N : N ;
+fun cataphyll_N : N ;
+fun cataplasia_N : N ;
+fun cataplastic_A : A ;
+fun catapult_N : N ;
+fun catapult_V : V ;
+fun catapultic_A : A ;
+fun cataract_N : N ;
+fun catarrh_N : N ;
+fun catarrhal_A : A ;
+fun catarrhine_A : A ;
+fun catastrophe_N : N ;
+fun catastrophic_A : A ;
+fun catastrophically_Adv : Adv ;
+fun catatonia_N : N ;
+fun catatonic_A : A ;
+fun catbird_N : N ;
+fun catboat_N : N ;
+fun catcall_N : N ;
+fun catcall_V : V ;
+fun catch_N : N ;
+fun catch_V : V ;
+fun catch_crop_N : N ;
+fun catchall_N : N ;
+fun catcher_N : N ;
+fun catching_N : N ;
+fun catchment_N : N ;
+fun catchment_area_N : N ;
+fun catchment_basin_N : N ;
+fun catchpenny_A : A ;
+fun catchphrase_N : N ;
+fun catchup_N : N ;
+fun catchword_N : N ;
+fun catchy_A : A ;
+fun catechesis_N : N ;
+fun catechetical_A : A ;
+fun catechin_N : N ;
+fun catechism_N : N ;
+fun catechismal_A : A ;
+fun catechist_N : N ;
+fun catechistic_A : A ;
+fun catechize_V : V ;
+fun catecholamine_N : N ;
+fun catechu_N : N ;
+fun catechumen_N : N ;
+fun categorem_N : N ;
+fun categorematic_A : A ;
+fun categorial_A : A ;
+fun categoric_A : A ;
+fun categorical_A : A ;
+fun categorization_N : N ;
+fun categorize_V : V ;
+fun category_N : N ;
+fun catena_N : N ;
+fun catenary_N : N ;
+fun catenulate_A : A ;
+fun cater_V : V ;
+fun caterer_N : N ;
+fun catering_N : N ;
+fun caterpillar_N : N ;
+fun caterwaul_N : N ;
+fun caterwaul_V : V ;
+fun catfish_N : N ;
+fun catgut_N : N ;
+fun catharsis_N : N ;
+fun cathartic_A : A ;
+fun cathartic_N : N ;
+fun cathectic_A : A ;
+fun cathedra_N : N ;
+fun cathedral_A : A ;
+fun cathedral_N : N ;
+fun catheter_N : N ;
+fun catheterization_N : N ;
+fun cathexis_N : N ;
+fun cathode_N : N ;
+fun cathodic_A : A ;
+fun catholicism_N : N ;
+fun catholicity_N : N ;
+fun cation_N : N ;
+fun cationic_A : A ;
+fun catkin_N : N ;
+fun catkinate_A : A ;
+fun catling_N : N ;
+fun catmint_N : N ;
+fun catoptric_A : A ;
+fun catoptrics_N : N ;
+fun catostomid_N : N ;
+fun catsup_N : N ;
+fun cattail_N : N ;
+fun cattalo_N : N ;
+fun cattiness_N : N ;
+fun cattish_A : A ;
+fun cattle_N : N ;
+fun cattle_cake_N : N ;
+fun cattleman_N : N ;
+fun cattleship_N : N ;
+fun cattleya_N : N ;
+fun catty_A : A ;
+fun catty_N : N ;
+fun catwalk_N : N ;
+fun caucasian_A : A ;
+fun caucasian_N : N ;
+fun caucus_N : N ;
+fun cauda_N : N ;
+fun caudal_A : A ;
+fun caudate_A : A ;
+fun caudex_N : N ;
+fun caul_N : N ;
+fun cauldron_N : N ;
+fun caulescent_A : A ;
+fun cauliflower_N : N ;
+fun cauline_A : A ;
+fun caulk_N : N ;
+fun caulk_V : V ;
+fun causal_A : A ;
+fun causalgia_N : N ;
+fun causality_N : N ;
+fun causation_N : N ;
+fun causative_A : A ;
+fun cause_N : N ;
+fun cause_V : V ;
+fun causeless_A : A ;
+fun causerie_N : N ;
+fun causeway_N : N ;
+fun causing_N : N ;
+fun caustic_A : A ;
+fun caustic_N : N ;
+fun caustically_Adv : Adv ;
+fun cauterize_V : V ;
+fun cautery_N : N ;
+fun caution_N : N ;
+fun caution_V : V ;
+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 cave_N : N ;
+fun cave_V : V ;
+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 cavetto_N : N ;
+fun caviar_N : N ;
+fun caviare_N : N ;
+fun cavil_V : V ;
+fun cavity_N : N ;
+fun cavort_V : V ;
+fun cavy_N : N ;
+fun caw_N : N ;
+fun caw_V : V ;
+fun cayenne_N : N ;
+fun cayenne_pepper_N : N ;
+fun cayman_N : N ;
+fun cayuse_N : N ;
+fun cañon_N : N ;
+fun cbi_N : N ;
+fun cc_N : N ;
+fun cd_N : N ;
+fun cease_N : N ;
+fun cease_V : V ;
+fun cease_fire_N : N ;
+fun ceaseless_A : A ;
+fun cecal_A : A ;
+fun cecropia_N : N ;
+fun cecum_N : N ;
+fun cedar_N : N ;
+fun cedarn_A : A ;
+fun cede_V : V ;
+fun cedi_N : N ;
+fun cedilla_N : N ;
+fun cefadroxil_N : N ;
+fun cefoperazone_N : N ;
+fun cefotaxime_N : N ;
+fun ceftazidime_N : N ;
+fun ceftriaxone_N : N ;
+fun cefuroxime_N : N ;
+fun ceibo_N : N ;
+fun ceilidh_N : N ;
+fun ceiling_N : N ;
+fun ceilinged_A : A ;
+fun celandine_N : N ;
+fun celebrant_N : N ;
+fun celebrate_A : A ;
+fun celebrate_V : V ;
+fun celebration_N : N ;
+fun celebratory_A : A ;
+fun celebrity_N : N ;
+fun celecoxib_N : N ;
+fun celeriac_N : N ;
+fun celerity_N : N ;
+fun celery_N : N ;
+fun celesta_N : N ;
+fun celestial_A : A ;
+fun celestite_N : N ;
+fun celiac_A : A ;
+fun celibacy_N : N ;
+fun celibate_A : A ;
+fun celibate_N : N ;
+fun celiocentesis_N : N ;
+fun celioma_N : N ;
+fun celioscopy_N : N ;
+fun cell_N : N ;
+fun cellar_N : N ;
+fun cellarage_N : N ;
+fun cellblock_N : N ;
+fun cellist_N : N ;
+fun cello_N : N ;
+fun cellophane_N : N ;
+fun cellular_A : A ;
+fun cellularity_N : N ;
+fun cellulite_N : N ;
+fun cellulitis_N : N ;
+fun celluloid_A : A ;
+fun celluloid_N : N ;
+fun cellulose_N : N ;
+fun cellulosic_N : N ;
+fun cellulosid_A : A ;
+fun celom_N : N ;
+fun celt_N : N ;
+fun celtic_A : A ;
+fun celtic_N : N ;
+fun celtuce_N : N ;
+fun cement_N : N ;
+fun cement_V : V ;
+fun cement_mixer_N : N ;
+fun cementite_N : N ;
+fun cementitious_A : A ;
+fun cementum_N : N ;
+fun cemetery_N : N ;
+fun cenobite_N : N ;
+fun cenobitic_A : A ;
+fun cenogenesis_N : N ;
+fun cenogenetic_A : A ;
+fun cenotaph_N : N ;
+fun censer_N : N ;
+fun censor_N : N ;
+fun censor_V : V ;
+fun censorial_A : A ;
+fun censoring_N : N ;
+fun censorious_A : A ;
+fun censorship_N : N ;
+fun censure_N : N ;
+fun censure_V : V ;
+fun census_N : N ;
+fun cent_N : N ;
+fun centas_N : N ;
+fun centaur_N : N ;
+fun centaury_N : N ;
+fun centavo_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_A : A ;
+fun center_N : N ;
+fun center_V : V ;
+fun centerboard_N : N ;
+fun centered_A : A ;
+fun centerfold_N : N ;
+fun centering_N : N ;
+fun centerline_N : N ;
+fun centerpiece_N : N ;
+fun centesimal_A : A ;
+fun centesimo_N : N ;
+fun centesis_N : N ;
+fun centigrade_A : A ;
+fun centiliter_N : N ;
+fun centime_N : N ;
+fun centimeter_N : N ;
+fun centimetre_N : N ;
+fun centimo_N : N ;
+fun centipede_N : N ;
+fun centner_N : N ;
+fun central_A : A ;
+fun central_N : N ;
+fun centralism_N : N ;
+fun centralist_A : A ;
+fun centrality_N : N ;
+fun centralization_N : N ;
+fun centralize_V : V ;
+fun centre_N : N ;
+fun centre_V : V ;
+fun centre_bit_N : N ;
+fun centre_board_N : N ;
+fun centrepiece_N : N ;
+fun centrex_N : N ;
+fun centric_A : A ;
+fun centrifugal_A : A ;
+fun centrifugation_N : N ;
+fun centrifuge_N : N ;
+fun centriole_N : N ;
+fun centripetal_A : A ;
+fun centrism_N : N ;
+fun centrist_A : A ;
+fun centrist_N : N ;
+fun centroid_N : N ;
+fun centroidal_A : A ;
+fun centromere_N : N ;
+fun centromeric_A : A ;
+fun centrosome_N : N ;
+fun centrosomic_A : A ;
+fun centrum_N : N ;
+fun centurion_N : N ;
+fun century_N : N ;
+fun cephalexin_N : N ;
+fun cephalhematoma_N : N ;
+fun cephalic_A : A ;
+fun cephalochordate_N : N ;
+fun cephaloglycin_N : N ;
+fun cephalometry_N : N ;
+fun cephalopod_A : A ;
+fun cephalopod_N : N ;
+fun cephaloridine_N : N ;
+fun cephalosporin_N : N ;
+fun cephalothin_N : N ;
+fun ceramic_A : A ;
+fun ceramic_N : N ;
+fun ceramics_N : N ;
+fun ceras_N : N ;
+fun cerate_N : N ;
+fun ceratodus_N : N ;
+fun ceratopsian_N : N ;
+fun ceratosaur_N : N ;
+fun ceratozamia_N : N ;
+fun cercaria_N : N ;
+fun cercarial_A : A ;
+fun cere_N : N ;
+fun cereal_A : A ;
+fun cereal_N : N ;
+fun cerebellar_A : A ;
+fun cerebellum_N : N ;
+fun cerebral_A : A ;
+fun cerebration_N : N ;
+fun cerebrospinal_A : A ;
+fun cerebrovascular_A : A ;
+fun cerebrum_N : N ;
+fun cerecloth_N : N ;
+fun ceremonial_A : A ;
+fun ceremonial_N : N ;
+fun ceremonious_A : A ;
+fun ceremoniousness_N : N ;
+fun ceremony_N : N ;
+fun ceresin_N : N ;
+fun ceric_A : A ;
+fun ceriman_N : N ;
+fun cerise_A : A ;
+fun cerise_N : N ;
+fun cerium_N : N ;
+fun cerivastatin_N : N ;
+fun cernuous_A : A ;
+fun cero_N : N ;
+fun cerous_A : A ;
+fun cert_N : N ;
+fun certain_A : A ;
+fun certainty_N : N ;
+fun certifiable_A : A ;
+fun certificate_N : N ;
+fun certificate_V : V ;
+fun certification_N : N ;
+fun certificatory_A : A ;
+fun certify_V : V ;
+fun certiorari_N : N ;
+fun certitude_N : N ;
+fun cerulean_A : A ;
+fun cerumen_N : N ;
+fun ceruminous_A : A ;
+fun cerussite_N : N ;
+fun cervical_A : A ;
+fun cervicitis_N : N ;
+fun cervine_A : A ;
+fun cervix_N : N ;
+fun cesarean_A : A ;
+fun cesium_N : N ;
+fun cessation_N : N ;
+fun cession_N : N ;
+fun cesspit_N : N ;
+fun cesspool_N : N ;
+fun cetacean_A : A ;
+fun cetacean_N : N ;
+fun cetrimide_N : N ;
+fun cgs_N : N ;
+fun chabazite_N : N ;
+fun chachalaca_N : N ;
+fun chachka_N : N ;
+fun chacma_N : N ;
+fun chad_N : N ;
+fun chadian_A : A ;
+fun chadian_N : N ;
+fun chador_N : N ;
+fun chaenactis_N : N ;
+fun chaeta_N : N ;
+fun chaetal_A : A ;
+fun chaetodon_N : N ;
+fun chaetognathan_A : A ;
+fun chafe_N : N ;
+fun chafe_V : V ;
+fun chafeweed_N : N ;
+fun chaff_N : N ;
+fun chaff_V : V ;
+fun chaffinch_N : N ;
+fun chaffweed_N : N ;
+fun chaffy_A : A ;
+fun chafing_N : N ;
+fun chafing_dish_N : N ;
+fun chagrin_N : N ;
+fun chagrin_V : V ;
+fun chain_N : N ;
+fun chain_V : V ;
+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_V : V ;
+fun chair_lift_N : N ;
+fun chairlift_N : N ;
+fun chairman_N : N ;
+fun chairmanship_N : N ;
+fun chaise_N : N ;
+fun chaise_longue_N : N ;
+fun chaja_N : N ;
+fun chalaza_N : N ;
+fun chalazion_N : N ;
+fun chalcedony_N : N ;
+fun chalcocite_N : N ;
+fun chalcopyrite_N : N ;
+fun chaldron_N : N ;
+fun chalet_N : N ;
+fun chalice_N : N ;
+fun chalk_N : N ;
+fun chalk_V : V ;
+fun chalkpit_N : N ;
+fun chalky_A : A ;
+fun challah_N : N ;
+fun challenge_N : N ;
+fun challenge_V : V ;
+fun challengeable_A : A ;
+fun challenger_N : N ;
+fun challis_N : N ;
+fun chalybeate_A : A ;
+fun chamber_N : N ;
+fun chambered_A : A ;
+fun chamberlain_N : N ;
+fun chambermaid_N : N ;
+fun chamberpot_N : N ;
+fun chambray_N : N ;
+fun chameleon_N : N ;
+fun chammy_leather_N : N ;
+fun chamois_N : N ;
+fun chamois_leather_N : N ;
+fun chamomile_N : N ;
+fun chamosite_N : N ;
+fun champ_N : N ;
+fun champ_V : V ;
+fun champerty_N : N ;
+fun champion_A : A ;
+fun champion_Adv : Adv ;
+fun champion_N : N ;
+fun champion_V : V ;
+fun championship_N : N ;
+fun champleve_A : A ;
+fun chanar_N : N ;
+fun chance_N : N ;
+fun chance_V : V ;
+fun chancel_N : N ;
+fun chancellery_N : N ;
+fun chancellor_N : N ;
+fun chancellorship_N : N ;
+fun chancery_N : N ;
+fun chancre_N : N ;
+fun chancroid_N : N ;
+fun chancroidal_A : A ;
+fun chancrous_A : A ;
+fun chancy_A : A ;
+fun chandelier_N : N ;
+fun chandelle_N : N ;
+fun chandler_N : N ;
+fun chandlery_N : N ;
+fun chanfron_N : N ;
+fun change_N : N ;
+fun change_V : V ;
+fun changeable_A : A ;
+fun changeableness_N : N ;
+fun changeful_A : A ;
+fun changeless_A : A ;
+fun changelessness_N : N ;
+fun changeling_N : N ;
+fun changeover_N : N ;
+fun changer_N : N ;
+fun channel_N : N ;
+fun channel_V : V ;
+fun channelization_N : N ;
+fun channels_N : N ;
+fun chant_N : N ;
+fun chant_V : V ;
+fun chanter_N : N ;
+fun chanterelle_N : N ;
+fun chantey_N : N ;
+fun chantlike_A : A ;
+fun chantry_N : N ;
+fun chaos_N : N ;
+fun chaotic_A : A ;
+fun chaotically_Adv : Adv ;
+fun chap_N : N ;
+fun chap_V : V ;
+fun chapatti_N : N ;
+fun chapel_N : N ;
+fun chapelgoer_N : N ;
+fun chaperon_N : N ;
+fun chaperon_V : V ;
+fun chapfallen_A : A ;
+fun chaplain_N : N ;
+fun chaplaincy_N : N ;
+fun chaplet_N : N ;
+fun chapleted_A : A ;
+fun chapman_N : N ;
+fun chapter_N : N ;
+fun chapterhouse_N : N ;
+fun char_N : N ;
+fun char_V : V ;
+fun charabanc_N : N ;
+fun characin_N : N ;
+fun character_N : N ;
+fun characterisation_N : N ;
+fun characteristic_A : A ;
+fun characteristic_N : N ;
+fun characteristically_Adv : Adv ;
+fun characterization_N : N ;
+fun characterize_V : V ;
+fun characterless_A : A ;
+fun charade_N : N ;
+fun charades_N : N ;
+fun charcoal_A : A ;
+fun charcoal_N : N ;
+fun charcoal_burner_N : N ;
+fun charcuterie_N : N ;
+fun chard_N : N ;
+fun charge_N : N ;
+fun charge_V : V ;
+fun charge_account_N : N ;
+fun charge_sheet_N : N ;
+fun chargeable_A : A ;
+fun charger_N : N ;
+fun chargé_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 charitableness_N : N ;
+fun charity_N : N ;
+fun charivari_N : N ;
+fun charlady_N : N ;
+fun charlatan_N : N ;
+fun charlatanism_N : N ;
+fun charleston_N : N ;
+fun charlock_N : N ;
+fun charlotte_N : N ;
+fun charm_N : N ;
+fun charm_V : V ;
+fun charmer_N : N ;
+fun charmingly_Adv : Adv ;
+fun charnel_A : A ;
+fun charnel_house_N : N ;
+fun chart_N : N ;
+fun chart_V : V ;
+fun chartaceous_A : A ;
+fun charter_N : N ;
+fun charter_V : V ;
+fun charter_party_N : N ;
+fun charterhouse_N : N ;
+fun chartism_N : N ;
+fun chartist_N : N ;
+fun chartless_A : A ;
+fun chartreuse_A : A ;
+fun chartreuse_N : N ;
+fun charwoman_N : N ;
+fun chary_A : A ;
+fun charàbanc_N : N ;
+fun chase_N : N ;
+fun chase_V : V ;
+fun chaser_N : N ;
+fun chasm_N : N ;
+fun chasse_N : N ;
+fun chassis_N : N ;
+fun chaste_A : A ;
+fun chasten_V : V ;
+fun chasteness_N : N ;
+fun chastise_V : V ;
+fun chastisement_N : N ;
+fun chastity_N : N ;
+fun chasuble_N : N ;
+fun chat_N : N ;
+fun chat_V : V ;
+fun chatelaine_N : N ;
+fun chattel_N : N ;
+fun chatter_N : N ;
+fun chatter_V : V ;
+fun chatterbox_N : N ;
+fun chatterer_N : N ;
+fun chatty_A : A ;
+fun chauffeur_N : N ;
+fun chauffeur_V : V ;
+fun chauffeuse_N : N ;
+fun chaulmoogra_N : N ;
+fun chauvinism_N : N ;
+fun chauvinist_N : N ;
+fun chauvinistic_A : A ;
+fun chaw_N : N ;
+fun chaw_V : V ;
+fun chaw_bacon_N : N ;
+fun cheap_A : A ;
+fun cheapen_V : V ;
+fun cheapjack_A : A ;
+fun cheapjack_N : N ;
+fun cheapness_N : N ;
+fun cheapskate_N : N ;
+fun cheat_N : N ;
+fun cheat_V : V ;
+fun chebab_N : N ;
+fun check_N : N ;
+fun check_V : V ;
+fun checkbook_N : N ;
+fun checker_N : N ;
+fun checker_V : V ;
+fun checkerbloom_N : N ;
+fun checkerboard_N : N ;
+fun checkers_N : N ;
+fun checklist_N : N ;
+fun checkmate_N : N ;
+fun checkmate_V : V ;
+fun checkout_N : N ;
+fun checkpoint_N : N ;
+fun checkroom_N : N ;
+fun checksum_N : N ;
+fun checkup_N : N ;
+fun cheddar_N : N ;
+fun cheek_N : N ;
+fun cheek_V : V ;
+fun cheekbone_N : N ;
+fun cheekpiece_N : N ;
+fun cheeky_A : A ;
+fun cheep_N : N ;
+fun cheep_V : V ;
+fun cheer_N : N ;
+fun cheer_V : V ;
+fun cheerer_N : N ;
+fun cheerful_A : A ;
+fun cheerfulness_N : N ;
+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 cheeseboard_N : N ;
+fun cheeseburger_N : N ;
+fun cheesecake_N : N ;
+fun cheesecloth_N : N ;
+fun cheeselike_A : A ;
+fun cheesemonger_N : N ;
+fun cheeseparing_A : A ;
+fun cheetah_N : N ;
+fun chef_N : N ;
+fun chef_d'oeuvre_N : N ;
+fun cheilitis_N : N ;
+fun cheilosis_N : N ;
+fun chela_N : N ;
+fun chelate_A : A ;
+fun chelate_N : N ;
+fun chelation_N : N ;
+fun chelicera_N : N ;
+fun cheliceral_A : A ;
+fun chelicerous_A : A ;
+fun cheliferous_A : A ;
+fun chelonian_A : A ;
+fun chelonian_N : N ;
+fun chemical_A : A ;
+fun chemical_N : N ;
+fun chemiluminescence_N : N ;
+fun chemiluminescent_A : A ;
+fun chemise_N : N ;
+fun chemisorption_N : N ;
+fun chemisorptive_A : A ;
+fun chemist_N : N ;
+fun chemistry_N : N ;
+fun chemoreceptive_A : A ;
+fun chemoreceptor_N : N ;
+fun chemosis_N : N ;
+fun chemosurgery_N : N ;
+fun chemosynthesis_N : N ;
+fun chemotaxis_N : N ;
+fun chemotherapeutic_A : A ;
+fun chemotherapy_N : N ;
+fun chenille_N : N ;
+fun cheque_N : N ;
+fun chequebook_N : N ;
+fun chequer_V : V ;
+fun cherimoya_N : N ;
+fun cherish_V : V ;
+fun cheroot_N : N ;
+fun cherry_A : A ;
+fun cherry_N : N ;
+fun cherrystone_N : N ;
+fun chert_N : N ;
+fun cherty_A : A ;
+fun cherub_N : N ;
+fun cherubic_A : A ;
+fun chervil_N : N ;
+fun chess_N : N ;
+fun chessboard_N : N ;
+fun chessman_N : N ;
+fun chest_N : N ;
+fun chesterfield_N : N ;
+fun chestnut_A : A ;
+fun chestnut_N : N ;
+fun chetrum_N : N ;
+fun cheval_glass_N : N ;
+fun chevron_N : N ;
+fun chevrotain_N : N ;
+fun chew_N : N ;
+fun chew_V : V ;
+fun chewable_A : A ;
+fun chewer_N : N ;
+fun chewing_gum_N : N ;
+fun chewink_N : N ;
+fun chewy_A : A ;
+fun chez_Prep : Prep ;
+fun chi_N : N ;
+fun chianti_N : N ;
+fun chiaroscuro_N : N ;
+fun chiasma_N : N ;
+fun chiasmal_A : A ;
+fun chiasmus_N : N ;
+fun chic_A : A ;
+fun chic_N : N ;
+fun chicane_N : N ;
+fun chicanery_N : N ;
+fun chichi_A : A ;
+fun chichi_N : N ;
+fun chichipe_N : N ;
+fun chick_N : N ;
+fun chickadee_N : N ;
+fun chicken_A : A ;
+fun chicken_N : N ;
+fun chicken_V : V ;
+fun chicken_hearted_A : A ;
+fun chicken_run_N : N ;
+fun chickenfeed_N : N ;
+fun chickenpox_N : N ;
+fun chickenshit_N : N ;
+fun chickeree_N : N ;
+fun chickpea_N : N ;
+fun chickweed_N : N ;
+fun chicle_N : N ;
+fun chicory_N : N ;
+fun chide_V : V ;
+fun chiding_N : N ;
+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 chigetai_N : N ;
+fun chignon_N : N ;
+fun chigoe_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 childbearing_A : A ;
+fun childbirth_N : N ;
+fun childcare_N : N ;
+fun childhood_N : N ;
+fun childish_A : A ;
+fun childishness_N : N ;
+fun childless_A : A ;
+fun childlessness_N : N ;
+fun childlike_A : A ;
+fun chilean_A : A ;
+fun chilean_N : N ;
+fun chili_N : N ;
+fun chill_A : A ;
+fun chill_N : N ;
+fun chill_V : V ;
+fun chilli_N : N ;
+fun chilliness_N : N ;
+fun chilly_A : A ;
+fun chilly_N : N ;
+fun chimaera_N : N ;
+fun chime_N : N ;
+fun chime_V : V ;
+fun chimera_N : N ;
+fun chimeric_A : A ;
+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_closet_N : N ;
+fun chinaberry_N : N ;
+fun chinaware_N : N ;
+fun chincapin_N : N ;
+fun chincherinchee_N : N ;
+fun chinchilla_N : N ;
+fun chine_N : N ;
+fun chink_N : N ;
+fun chink_V : V ;
+fun chinless_A : A ;
+fun chino_N : N ;
+fun chinoiserie_N : N ;
+fun chinook_N : N ;
+fun chintz_N : N ;
+fun chip_N : N ;
+fun chip_V : V ;
+fun chipboard_N : N ;
+fun chipmunk_N : N ;
+fun chipolata_N : N ;
+fun chipotle_N : N ;
+fun chippendale_N : N ;
+fun chipper_A : A ;
+fun chips_N : N ;
+fun chiralgia_N : N ;
+fun chiromantic_A : A ;
+fun chiropodist_N : N ;
+fun chiropody_N : N ;
+fun chiropractic_N : N ;
+fun chiropractor_N : N ;
+fun chirp_N : N ;
+fun chirp_V : V ;
+fun chirpiness_N : N ;
+fun chirpy_A : A ;
+fun chirrup_N : N ;
+fun chirrup_V : V ;
+fun chisel_N : N ;
+fun chisel_V : V ;
+fun chiseled_A : A ;
+fun chiseller_N : N ;
+fun chit_N : N ;
+fun chit_chat_N : N ;
+fun chitchat_N : N ;
+fun chitin_N : N ;
+fun chitinous_A : A ;
+fun chiton_N : N ;
+fun chitterlings_N : N ;
+fun chivalric_A : A ;
+fun chivalrous_A : A ;
+fun chivalry_N : N ;
+fun chive_N : N ;
+fun chives_N : N ;
+fun chivvy_V : V ;
+fun chivy_V : V ;
+fun chlamydeous_A : A ;
+fun chlamydia_N : N ;
+fun chlamydial_A : A ;
+fun chlamydospore_N : N ;
+fun chlamys_N : N ;
+fun chloasma_N : N ;
+fun chlorambucil_N : N ;
+fun chloramine_N : N ;
+fun chloramphenicol_N : N ;
+fun chlorate_N : N ;
+fun chlordiazepoxide_N : N ;
+fun chlorella_N : N ;
+fun chlorenchyma_N : N ;
+fun chlorhexidine_N : N ;
+fun chloride_N : N ;
+fun chlorinate_V : V ;
+fun chlorination_N : N ;
+fun chlorine_N : N ;
+fun chlorinity_N : N ;
+fun chlorite_N : N ;
+fun chloroacetophenone_N : N ;
+fun chlorobenzene_N : N ;
+fun chlorobenzylidenemalononitrile_N : N ;
+fun chlorofluorocarbon_N : N ;
+fun chloroform_N : N ;
+fun chlorophyll_N : N ;
+fun chlorophyllose_A : A ;
+fun chloropicrin_N : N ;
+fun chloroplast_N : N ;
+fun chloroprene_N : N ;
+fun chloroquine_N : N ;
+fun chlorosis_N : N ;
+fun chlorothiazide_N : N ;
+fun chlorotic_A : A ;
+fun chlorpromazine_N : N ;
+fun chlorpyrifos_N : N ;
+fun chlortetracycline_N : N ;
+fun chlorthalidone_N : N ;
+fun choanocyte_N : N ;
+fun choc_N : N ;
+fun choc_ice_N : N ;
+fun chock_Adv : Adv ;
+fun chock_N : N ;
+fun chock_V : V ;
+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 choirmaster_N : N ;
+fun choke_N : N ;
+fun choke_V : V ;
+fun choke_damp_N : N ;
+fun chokecherry_N : N ;
+fun chokedamp_N : N ;
+fun chokehold_N : N ;
+fun chokepoint_N : N ;
+fun choker_N : N ;
+fun chokey_N : N ;
+fun choking_N : N ;
+fun choky_A : A ;
+fun choky_N : N ;
+fun cholangiography_N : N ;
+fun cholangitis_N : N ;
+fun cholecystectomy_N : N ;
+fun cholecystitis_N : N ;
+fun cholecystokinin_N : N ;
+fun cholelithiasis_N : N ;
+fun cholelithotomy_N : N ;
+fun choler_N : N ;
+fun cholera_N : N ;
+fun choleraic_A : A ;
+fun choleric_A : A ;
+fun cholesterol_N : N ;
+fun choline_N : N ;
+fun cholinergic_A : A ;
+fun cholinesterase_N : N ;
+fun cholla_N : N ;
+fun chomping_N : N ;
+fun chon_N : N ;
+fun chondrin_N : N ;
+fun chondrite_N : N ;
+fun chondritic_A : A ;
+fun chondroma_N : N ;
+fun chondrosarcoma_N : N ;
+fun chondrule_N : N ;
+fun choose_V : V ;
+fun choosey_A : A ;
+fun choosy_A : A ;
+fun chop_N : N ;
+fun chop_V : V ;
+fun chop_chop_Adv : Adv ;
+fun chop_house_N : N ;
+fun chop_suey_N : N ;
+fun chopine_N : N ;
+fun chopper_N : N ;
+fun choppiness_N : N ;
+fun choppy_A : A ;
+fun chopstick_N : N ;
+fun choragic_A : A ;
+fun choragus_N : N ;
+fun choral_A : A ;
+fun chorale_N : N ;
+fun chord_N : N ;
+fun chordal_A : A ;
+fun chordamesoderm_N : N ;
+fun chordate_A : A ;
+fun chordate_N : N ;
+fun chorditis_N : N ;
+fun chordophone_N : N ;
+fun chore_N : N ;
+fun chorea_N : N ;
+fun choreographer_N : N ;
+fun choreographic_A : A ;
+fun choreography_N : N ;
+fun choric_A : A ;
+fun chorioallantois_N : N ;
+fun choriomeningitis_N : N ;
+fun chorion_N : N ;
+fun chorionic_A : A ;
+fun chorioretinitis_N : N ;
+fun chorister_N : N ;
+fun chorizo_N : N ;
+fun choroid_N : N ;
+fun chortle_N : N ;
+fun chortle_V : V ;
+fun chorus_N : N ;
+fun chorus_V : V ;
+fun chorus_girl_N : N ;
+fun chosen_N : N ;
+fun chough_N : N ;
+fun chow_N : N ;
+fun chow_V : V ;
+fun chowchow_N : N ;
+fun chowder_N : N ;
+fun chrestomathy_N : N ;
+fun chrism_N : N ;
+fun christella_N : N ;
+fun christen_V : V ;
+fun christendom_N : N ;
+fun christening_N : N ;
+fun christian_A : A ;
+fun christian_N : N ;
+fun christianly_A : A ;
+fun christless_A : A ;
+fun christlike_A : A ;
+fun christmas_box_N : N ;
+fun christmas_tree_N : N ;
+fun christmastide_N : N ;
+fun christmastime_N : N ;
+fun chromate_N : N ;
+fun chromatic_A : A ;
+fun chromatically_Adv : Adv ;
+fun chromatid_N : N ;
+fun chromatin_N : N ;
+fun chromatinic_A : A ;
+fun chromatism_N : N ;
+fun chromatogram_N : N ;
+fun chromatographic_A : A ;
+fun chromatographically_Adv : Adv ;
+fun chromatography_N : N ;
+fun chrome_N : N ;
+fun chromesthesia_N : N ;
+fun chromite_N : N ;
+fun chromium_N : N ;
+fun chromoblastomycosis_N : N ;
+fun chromogen_N : N ;
+fun chromolithography_N : N ;
+fun chromophore_N : N ;
+fun chromoplast_N : N ;
+fun chromosomal_A : A ;
+fun chromosome_N : N ;
+fun chromosphere_N : N ;
+fun chronic_A : A ;
+fun chronically_Adv : Adv ;
+fun chronicle_N : N ;
+fun chronicle_V : V ;
+fun chronicler_N : N ;
+fun chronograph_N : N ;
+fun chronological_A : A ;
+fun chronology_N : N ;
+fun chronometer_N : N ;
+fun chronoscope_N : N ;
+fun chrysalis_N : N ;
+fun chrysanthemum_N : N ;
+fun chrysoberyl_N : N ;
+fun chrysolite_N : N ;
+fun chrysoprase_N : N ;
+fun chrysotherapy_N : N ;
+fun chrysotile_N : N ;
+fun chthonian_A : A ;
+fun chub_N : N ;
+fun chubbiness_N : N ;
+fun chubby_A : A ;
+fun chuck_N : N ;
+fun chuck_V : V ;
+fun chucker_out_N : N ;
+fun chuckle_N : N ;
+fun chuckle_V : V ;
+fun chuckwalla_N : N ;
+fun chufa_N : N ;
+fun chuffed_A : A ;
+fun chug_N : N ;
+fun chug_V : V ;
+fun chukka_N : N ;
+fun chukker_N : N ;
+fun chum_N : N ;
+fun chum_V : V ;
+fun chumminess_N : N ;
+fun chummy_A : A ;
+fun chump_N : N ;
+fun chunga_N : N ;
+fun chunk_N : N ;
+fun chunky_A : A ;
+fun chunnel_N : N ;
+fun church_N : N ;
+fun churchgoer_N : N ;
+fun churchgoing_A : A ;
+fun churchly_A : A ;
+fun churchman_N : N ;
+fun churchwarden_N : N ;
+fun churchyard_N : N ;
+fun churidars_N : N ;
+fun churl_N : N ;
+fun churlish_A : A ;
+fun churn_N : N ;
+fun churn_V : V ;
+fun chute_N : N ;
+fun chutney_N : N ;
+fun chutzpa_N : N ;
+fun chutzpanik_N : N ;
+fun chylaceous_A : A ;
+fun chyle_N : N ;
+fun chyliferous_A : A ;
+fun chylific_A : A ;
+fun chylomicron_N : N ;
+fun chyme_N : N ;
+fun château_N : N ;
+fun cia_N : N ;
+fun cicada_N : N ;
+fun cicala_N : N ;
+fun cicatrice_N : N ;
+fun cicatrix_N : N ;
+fun cicero_N : N ;
+fun cicerone_N : N ;
+fun cichlid_N : N ;
+fun cid_N : N ;
+fun cider_N : N ;
+fun ciderpress_N : N ;
+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 cigarillo_N : N ;
+fun ciliary_A : A ;
+fun ciliate_A : A ;
+fun ciliate_N : N ;
+fun cilium_N : N ;
+fun cimetidine_N : N ;
+fun cinch_N : N ;
+fun cinch_V : V ;
+fun cinchona_N : N ;
+fun cinchonine_N : N ;
+fun cincture_N : N ;
+fun cinder_N : N ;
+fun cinder_track_N : N ;
+fun cinderella_N : N ;
+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 cineraria_N : N ;
+fun cinerary_A : A ;
+fun cingulum_N : N ;
+fun cinnabar_N : N ;
+fun cinnamon_N : N ;
+fun cinquefoil_N : N ;
+fun cipher_N : N ;
+fun cipher_V : V ;
+fun ciprofloxacin_N : N ;
+fun circa_Prep : Prep ;
+fun circadian_A : A ;
+fun circle_N : N ;
+fun circle_V : V ;
+fun circlet_N : N ;
+fun circuit_N : N ;
+fun circuitous_A : A ;
+fun circuitry_N : N ;
+fun circular_A : A ;
+fun circular_N : N ;
+fun circularity_N : N ;
+fun circularization_N : N ;
+fun circularize_V : V ;
+fun circulate_V : V ;
+fun circulation_N : N ;
+fun circulative_A : A ;
+fun circulatory_A : A ;
+fun circumcise_V : V ;
+fun circumcision_N : N ;
+fun circumduction_N : N ;
+fun circumference_N : N ;
+fun circumferential_A : A ;
+fun circumflex_N : N ;
+fun circumlocution_N : N ;
+fun circumlocutious_A : A ;
+fun circumnavigate_V : V ;
+fun circumnavigation_N : N ;
+fun circumpolar_A : A ;
+fun circumscribe_V : V ;
+fun circumscription_N : N ;
+fun circumspect_A : A ;
+fun circumspection_N : N ;
+fun circumstance_N : N ;
+fun circumstances_N : N ;
+fun circumstantial_A : A ;
+fun circumvent_V : V ;
+fun circumvention_N : N ;
+fun circumvolution_N : N ;
+fun circus_N : N ;
+fun cirque_N : N ;
+fun cirrhosis_N : N ;
+fun cirrocumulus_N : N ;
+fun cirrostratus_N : N ;
+fun cirrus_N : N ;
+fun cisalpine_A : A ;
+fun cisco_N : N ;
+fun cismontane_A : A ;
+fun cissy_A : A ;
+fun cissy_N : N ;
+fun cistern_N : N ;
+fun cisterna_N : N ;
+fun citadel_N : N ;
+fun citation_N : N ;
+fun cite_V : V ;
+fun citified_A : A ;
+fun citizen_N : N ;
+fun citizenry_N : N ;
+fun citizenship_N : N ;
+fun citrange_N : N ;
+fun citrate_N : N ;
+fun citric_A : A ;
+fun citrine_N : N ;
+fun citron_N : N ;
+fun citronwood_N : N ;
+fun citrous_A : A ;
+fun citrulline_N : N ;
+fun citrus_N : N ;
+fun cittern_N : N ;
+fun city_N : N ;
+fun cityscape_N : N ;
+fun citywide_A : A ;
+fun civet_N : N ;
+fun civet_cat_N : N ;
+fun civic_A : A ;
+fun civics_N : N ;
+fun civies_N : N ;
+fun civil_A : A ;
+fun civilian_A : A ;
+fun civilian_N : N ;
+fun civility_N : N ;
+fun civilization_N : N ;
+fun civilize_V : V ;
+fun clabber_N : N ;
+fun clack_N : N ;
+fun clack_V : V ;
+fun clad_V : V ;
+fun clade_N : N ;
+fun cladistics_N : N ;
+fun cladode_N : N ;
+fun cladogram_N : N ;
+fun clag_V : V ;
+fun claim_N : N ;
+fun claim_V : V ;
+fun claimant_N : N ;
+fun clairvoyance_N : N ;
+fun clairvoyant_A : A ;
+fun clairvoyant_N : N ;
+fun clam_N : N ;
+fun clam_V : V ;
+fun clamant_A : A ;
+fun clamatorial_A : A ;
+fun clambake_N : N ;
+fun clamber_N : N ;
+fun clamber_V : V ;
+fun clammy_A : A ;
+fun clammyweed_N : N ;
+fun clamor_N : N ;
+fun clamorous_A : A ;
+fun clamour_N : N ;
+fun clamour_V : V ;
+fun clamp_N : N ;
+fun clamp_V : V ;
+fun clamp_down_N : N ;
+fun clampdown_N : N ;
+fun clamshell_N : N ;
+fun clan_N : N ;
+fun clandestine_A : A ;
+fun clang_N : N ;
+fun clang_V : V ;
+fun clanger_N : N ;
+fun clangorous_A : A ;
+fun clangour_N : N ;
+fun clank_N : N ;
+fun clank_V : V ;
+fun clannish_A : A ;
+fun clannishness_N : N ;
+fun clansman_N : N ;
+fun clap_N : N ;
+fun clap_V : V ;
+fun clapboard_N : N ;
+fun clapper_N : N ;
+fun clapperboard_N : N ;
+fun claptrap_N : N ;
+fun claque_N : N ;
+fun clarence_N : N ;
+fun claret_N : N ;
+fun clarification_N : N ;
+fun clarify_V : V ;
+fun clarinet_N : N ;
+fun clarinetist_N : N ;
+fun clarinettist_N : N ;
+fun clarion_A : A ;
+fun clarion_N : N ;
+fun clarity_N : N ;
+fun claro_N : N ;
+fun clary_N : N ;
+fun clash_N : N ;
+fun clash_V : V ;
+fun clasp_N : N ;
+fun clasp_V : V ;
+fun clasp_knife_N : N ;
+fun class_N : N ;
+fun class_V : V ;
+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 classicistic_A : A ;
+fun classics_N : N ;
+fun classifiable_A : A ;
+fun classification_N : N ;
+fun classificatory_A : A ;
+fun classifier_N : N ;
+fun classify_V : V ;
+fun classless_A : A ;
+fun classmate_N : N ;
+fun classroom_N : N ;
+fun classwork_N : N ;
+fun classy_A : A ;
+fun clast_N : N ;
+fun clastic_A : A ;
+fun clathrate_A : A ;
+fun clatter_N : N ;
+fun clatter_V : V ;
+fun clattery_A : A ;
+fun clausal_A : A ;
+fun clause_N : N ;
+fun claustrophobe_N : N ;
+fun claustrophobia_N : N ;
+fun claustrophobic_A : A ;
+fun claustrum_N : N ;
+fun clavichord_N : N ;
+fun clavicle_N : N ;
+fun clavier_N : N ;
+fun claw_N : N ;
+fun claw_V : V ;
+fun clawback_N : N ;
+fun clawfoot_N : N ;
+fun clawhammer_N : N ;
+fun clawlike_A : A ;
+fun clay_N : N ;
+fun clayey_A : A ;
+fun claymore_N : N ;
+fun claystone_N : N ;
+fun clean_A : A ;
+fun clean_Adv : Adv ;
+fun clean_N : N ;
+fun clean_V : V ;
+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 cleanable_A : A ;
+fun cleaner_N : N ;
+fun cleaners_N : N ;
+fun cleaning_N : N ;
+fun cleanliness_N : N ;
+fun cleanly_A : A ;
+fun cleanness_N : N ;
+fun cleanse_V : V ;
+fun cleanser_N : N ;
+fun cleansing_A : A ;
+fun cleanup_N : N ;
+fun clear_A : A ;
+fun clear_Adv : Adv ;
+fun clear_N : N ;
+fun clear_V : V ;
+fun clear_cut_Adv : Adv ;
+fun clear_headed_A : A ;
+fun clear_sighted_A : A ;
+fun clearance_N : N ;
+fun clearheaded_A : A ;
+fun clearing_N : N ;
+fun clearing_house_N : N ;
+fun clearness_N : N ;
+fun clearway_N : N ;
+fun cleat_N : N ;
+fun cleats_N : N ;
+fun cleavable_A : A ;
+fun cleavage_N : N ;
+fun cleave_V : V ;
+fun cleaver_N : N ;
+fun cleavers_N : N ;
+fun clef_N : N ;
+fun cleft_A : A ;
+fun cleft_N : N ;
+fun cleistogamous_A : A ;
+fun cleistogamy_N : N ;
+fun cleistothecium_N : N ;
+fun clematis_N : N ;
+fun clemency_N : N ;
+fun clement_A : A ;
+fun clementine_N : N ;
+fun clench_V : V ;
+fun clerestory_N : N ;
+fun clergy_N : N ;
+fun clergyman_N : N ;
+fun cleric_N : N ;
+fun clerical_A : A ;
+fun clericalism_N : N ;
+fun clericalist_N : N ;
+fun clerihew_N : N ;
+fun clerk_N : N ;
+fun clerk_V : V ;
+fun clerkship_N : N ;
+fun clever_A : A ;
+fun cleverness_N : N ;
+fun clevis_N : N ;
+fun clew_N : N ;
+fun clew_V : V ;
+fun clews_N : N ;
+fun cliched_A : A ;
+fun cliché_N : N ;
+fun click_N : N ;
+fun click_V : V ;
+fun client_N : N ;
+fun clientage_N : N ;
+fun clientele_N : N ;
+fun cliff_N : N ;
+fun cliff_hanger_N : N ;
+fun cliffhanger_N : N ;
+fun climacteric_N : N ;
+fun climactic_A : A ;
+fun climate_N : N ;
+fun climatic_A : A ;
+fun climatically_Adv : Adv ;
+fun climatologist_N : N ;
+fun climatology_N : N ;
+fun climax_N : N ;
+fun climax_V : V ;
+fun climb_N : N ;
+fun climb_V : V ;
+fun climb_down_N : N ;
+fun climber_N : N ;
+fun clime_N : N ;
+fun clinch_N : N ;
+fun clinch_V : V ;
+fun clincher_N : N ;
+fun cling_N : N ;
+fun cling_V : V ;
+fun clingfish_N : N ;
+fun clinic_N : N ;
+fun clinical_A : A ;
+fun clinician_N : N ;
+fun clinid_N : N ;
+fun clink_N : N ;
+fun clink_V : V ;
+fun clinker_N : N ;
+fun clinker_built_A : A ;
+fun clinocephaly_N : N ;
+fun clinodactyly_N : N ;
+fun clinometer_N : N ;
+fun clinquant_A : A ;
+fun clintonia_N : N ;
+fun clip_N : N ;
+fun clip_V : V ;
+fun clip_joint_N : N ;
+fun clip_on_A : A ;
+fun clipboard_N : N ;
+fun clipper_N : N ;
+fun clipping_N : N ;
+fun clique_N : N ;
+fun cliquish_A : A ;
+fun clitoral_A : A ;
+fun clitoridectomy_N : N ;
+fun clitoris_N : N ;
+fun cloaca_N : N ;
+fun cloak_N : N ;
+fun cloak_V : V ;
+fun cloakmaker_N : N ;
+fun cloakroom_N : N ;
+fun clobber_N : N ;
+fun clobber_V : V ;
+fun cloche_N : N ;
+fun clock_N : N ;
+fun clock_V : V ;
+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 clocking_N : N ;
+fun clocksmith_N : N ;
+fun clockwise_A : A ;
+fun clockwise_Adv : Adv ;
+fun clockwork_N : N ;
+fun clod_N : N ;
+fun cloddish_A : A ;
+fun clodhopper_N : N ;
+fun clofibrate_N : N ;
+fun clog_N : N ;
+fun clog_V : V ;
+fun clog_dance_N : N ;
+fun cloggy_A : A ;
+fun cloisonné_N : N ;
+fun cloister_N : N ;
+fun cloister_V : V ;
+fun clomiphene_N : N ;
+fun clomipramine_N : N ;
+fun clonal_A : A ;
+fun clone_N : N ;
+fun clone_V : V ;
+fun clonic_A : A ;
+fun clonidine_N : N ;
+fun cloning_N : N ;
+fun clonus_N : N ;
+fun close_A : A ;
+fun close_Adv : Adv ;
+fun close_N : N ;
+fun close_V : V ;
+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_to_Prep : Prep ;
+fun close_up_N : N ;
+fun closefisted_A : A ;
+fun closeness_N : N ;
+fun closeout_N : N ;
+fun closer_N : N ;
+fun closet_A : A ;
+fun closet_N : N ;
+fun closet_V : V ;
+fun closeup_N : N ;
+fun closing_N : N ;
+fun clostridium_N : N ;
+fun closure_N : N ;
+fun clot_N : N ;
+fun clot_V : V ;
+fun cloth_N : N ;
+fun clothe_V : V ;
+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 clothesbrush_N : N ;
+fun clotheshorse_N : N ;
+fun clothesless_A : A ;
+fun clothesline_N : N ;
+fun clothespin_N : N ;
+fun clothier_N : N ;
+fun clothing_N : N ;
+fun cloud_N : N ;
+fun cloud_V : V ;
+fun cloud_bank_N : N ;
+fun cloud_capped_A : A ;
+fun cloud_cuckoo_land_N : N ;
+fun cloudberry_N : N ;
+fun cloudburst_N : N ;
+fun cloudiness_N : N ;
+fun clouding_N : N ;
+fun cloudless_A : A ;
+fun cloudlessness_N : N ;
+fun cloudlike_A : A ;
+fun cloudy_A : A ;
+fun clout_N : N ;
+fun clout_V : V ;
+fun clove_N : N ;
+fun clove_hitch_N : N ;
+fun cloven_A : A ;
+fun clover_N : N ;
+fun cloverleaf_N : N ;
+fun clowder_N : N ;
+fun clown_N : N ;
+fun clown_V : V ;
+fun clownish_A : A ;
+fun cloy_V : V ;
+fun cloyingly_Adv : Adv ;
+fun clozapine_N : N ;
+fun cloze_A : A ;
+fun club_N : N ;
+fun club_V : V ;
+fun club_footed_A : A ;
+fun clubbable_A : A ;
+fun clubbing_N : N ;
+fun clubbish_A : A ;
+fun clubfoot_N : N ;
+fun clubfooted_A : A ;
+fun clubhouse_N : N ;
+fun clubroom_N : N ;
+fun cluck_N : N ;
+fun cluck_V : V ;
+fun clue_N : N ;
+fun clueless_A : A ;
+fun clumber_N : N ;
+fun clump_N : N ;
+fun clump_V : V ;
+fun clumsiness_N : N ;
+fun clumsy_A : A ;
+fun clunch_N : N ;
+fun clunk_N : N ;
+fun clunk_V : V ;
+fun clunky_A : A ;
+fun clusia_N : N ;
+fun cluster_N : N ;
+fun cluster_V : V ;
+fun clutch_N : N ;
+fun clutch_V : V ;
+fun clutter_N : N ;
+fun clutter_V : V ;
+fun clypeus_N : N ;
+fun cm_N : N ;
+fun co_N : N ;
+fun co_author_V : V ;
+fun co_ed_N : N ;
+fun co_edit_V : V ;
+fun co_exist_V : V ;
+fun co_found_V : V ;
+fun co_manage_V : V ;
+fun co_op_N : N ;
+fun co_opt_V : V ;
+fun co_respondent_N : N ;
+fun co_sponsor_V : V ;
+fun co_star_N : N ;
+fun co_star_V : V ;
+fun coach_N : N ;
+fun coach_V : V ;
+fun coach_builder_N : N ;
+fun coachbuilder_N : N ;
+fun coaching_N : N ;
+fun coachman_N : N ;
+fun coachwhip_N : N ;
+fun coadjutor_N : N ;
+fun coagulable_A : A ;
+fun coagulant_N : N ;
+fun coagulase_N : N ;
+fun coagulate_A : A ;
+fun coagulate_V : V ;
+fun coagulation_N : N ;
+fun coal_N : N ;
+fun coal_V : V ;
+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 coalbin_N : N ;
+fun coalesce_V : V ;
+fun coalescence_N : N ;
+fun coalescent_A : A ;
+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 coaming_N : N ;
+fun coarctate_A : A ;
+fun coarctation_N : N ;
+fun coarse_A : A ;
+fun coarsen_V : V ;
+fun coarseness_N : N ;
+fun coast_N : N ;
+fun coast_V : V ;
+fun coastal_A : A ;
+fun coaster_N : N ;
+fun coastguard_N : N ;
+fun coastguardsman_N : N ;
+fun coastland_N : N ;
+fun coastline_N : N ;
+fun coastward_Adv : Adv ;
+fun coastwise_A : A ;
+fun coastwise_Adv : Adv ;
+fun coat_N : N ;
+fun coat_V : V ;
+fun coat_hanger_N : N ;
+fun coatdress_N : N ;
+fun coatee_N : N ;
+fun coati_N : N ;
+fun coating_N : N ;
+fun coatrack_N : N ;
+fun coattail_N : N ;
+fun coauthor_N : N ;
+fun coax_V : V ;
+fun coaxial_A : A ;
+fun coaxing_N : N ;
+fun coaxingly_Adv : Adv ;
+fun cob_N : N ;
+fun cob_nut_N : N ;
+fun cobalt_N : N ;
+fun cobaltite_N : N ;
+fun cobber_N : N ;
+fun cobble_N : N ;
+fun cobble_V : V ;
+fun cobbler_N : N ;
+fun cobblers_N : N ;
+fun cobblestone_N : N ;
+fun cobia_N : N ;
+fun cobnut_N : N ;
+fun cobra_N : N ;
+fun cobweb_N : N ;
+fun cobwebby_A : A ;
+fun coca_N : N ;
+fun coca_cola_N : N ;
+fun cocaine_N : N ;
+fun cocarboxylase_N : N ;
+fun coccal_A : A ;
+fun coccidioidomycosis_N : N ;
+fun coccidiosis_N : N ;
+fun coccidium_N : N ;
+fun coccobacillus_N : N ;
+fun coccoid_A : A ;
+fun coccus_N : N ;
+fun coccygeal_A : A ;
+fun coccyx_N : N ;
+fun cochin_N : N ;
+fun cochineal_N : N ;
+fun cochlea_N : N ;
+fun cochlear_A : A ;
+fun cock_N : N ;
+fun cock_V : V ;
+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 cockamamie_A : A ;
+fun cockateel_N : N ;
+fun cockatoo_N : N ;
+fun cockatrice_N : N ;
+fun cockchafer_N : N ;
+fun cocker_N : N ;
+fun cockerel_N : N ;
+fun cockeyed_A : A ;
+fun cockfight_N : N ;
+fun cockfighting_N : N ;
+fun cockhorse_N : N ;
+fun cockle_N : N ;
+fun cocklebur_N : N ;
+fun cockleshell_N : N ;
+fun cockloft_N : N ;
+fun cockney_A : A ;
+fun cockney_N : N ;
+fun cockpit_N : N ;
+fun cockroach_N : N ;
+fun cockscomb_N : N ;
+fun cockspur_N : N ;
+fun cocksucker_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 cocobolo_N : N ;
+fun coconut_N : N ;
+fun cocoon_N : N ;
+fun cocoon_V : V ;
+fun cocooning_N : N ;
+fun cocotte_N : N ;
+fun cocozelle_N : N ;
+fun cocuswood_N : N ;
+fun cod_N : N ;
+fun cod_V : V ;
+fun cod_liver_oil_N : N ;
+fun coda_N : N ;
+fun coddle_V : V ;
+fun code_N : N ;
+fun code_V : V ;
+fun codefendant_N : N ;
+fun codeine_N : N ;
+fun codetalker_N : N ;
+fun codex_N : N ;
+fun codfish_N : N ;
+fun codger_N : N ;
+fun codicil_N : N ;
+fun codification_N : N ;
+fun codify_V : V ;
+fun codling_N : N ;
+fun codon_N : N ;
+fun codpiece_N : N ;
+fun coeducation_N : N ;
+fun coeducational_A : A ;
+fun coefficient_N : N ;
+fun coelacanth_N : N ;
+fun coelenterate_N : N ;
+fun coelenteron_N : N ;
+fun coeliac_A : A ;
+fun coelogyne_N : N ;
+fun coelophysis_N : N ;
+fun coelostat_N : N ;
+fun coenzyme_N : N ;
+fun coequal_A : A ;
+fun coerce_V : V ;
+fun coercion_N : N ;
+fun coercive_A : A ;
+fun coetaneous_A : A ;
+fun coeval_A : A ;
+fun coeval_N : N ;
+fun coevals_N : N ;
+fun coexist_V : V ;
+fun coexistence_N : N ;
+fun coexistent_A : A ;
+fun coextension_N : N ;
+fun coextensive_A : A ;
+fun coextrude_V : V ;
+fun cofactor_N : N ;
+fun coffee_N : N ;
+fun coffee_house_N : N ;
+fun coffee_mill_N : N ;
+fun coffee_stall_N : N ;
+fun coffeeberry_N : N ;
+fun coffeecake_N : N ;
+fun coffeepot_N : N ;
+fun coffer_N : N ;
+fun coffer_dam_N : N ;
+fun coffin_N : N ;
+fun cofounder_N : N ;
+fun cog_N : N ;
+fun cogency_N : N ;
+fun cogent_A : A ;
+fun cogged_A : A ;
+fun cogitable_A : A ;
+fun cogitate_V : V ;
+fun cogitation_N : N ;
+fun cogitative_A : A ;
+fun cognac_N : N ;
+fun cognate_A : A ;
+fun cognate_N : N ;
+fun cognition_N : N ;
+fun cognitive_A : A ;
+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 cohesiveness_N : N ;
+fun coho_N : N ;
+fun cohort_N : N ;
+fun coif_N : N ;
+fun coiffeur_N : N ;
+fun coiffeuse_N : N ;
+fun coiffure_N : N ;
+fun coign_N : N ;
+fun coil_N : N ;
+fun coil_V : V ;
+fun coin_N : N ;
+fun coin_V : V ;
+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 coinsurance_N : N ;
+fun coir_N : N ;
+fun coital_A : A ;
+fun coition_N : N ;
+fun coitus_N : N ;
+fun coke_N : N ;
+fun coke_V : V ;
+fun col_N : N ;
+fun cola_N : N ;
+fun colander_N : N ;
+fun colchicine_N : N ;
+fun cold_A : A ;
+fun cold_N : N ;
+fun cold_blooded_A : A ;
+fun cold_hearted_A : A ;
+fun cold_shoulder_V : V ;
+fun coldhearted_A : A ;
+fun coldness_N : N ;
+fun coleslaw_N : N ;
+fun coleus_N : N ;
+fun colic_N : N ;
+fun colicky_A : A ;
+fun colicroot_N : N ;
+fun coliphage_N : N ;
+fun colitis_N : N ;
+fun collaborate_V : V ;
+fun collaboration_N : N ;
+fun collaborationist_N : N ;
+fun collaborative_A : A ;
+fun collaborator_N : N ;
+fun collage_N : N ;
+fun collagen_N : N ;
+fun collagenase_N : N ;
+fun collagenous_A : A ;
+fun collapsable_A : A ;
+fun collapse_N : N ;
+fun collapse_V : V ;
+fun collapsible_A : A ;
+fun collar_N : N ;
+fun collar_V : V ;
+fun collarbone_N : N ;
+fun collard_N : N ;
+fun collards_N : N ;
+fun collarless_A : A ;
+fun collate_V : V ;
+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 collectedly_Adv : Adv ;
+fun collectible_A : A ;
+fun collectible_N : N ;
+fun collection_N : N ;
+fun collective_A : A ;
+fun collective_N : N ;
+fun collectivism_N : N ;
+fun collectivist_A : A ;
+fun collectivist_N : N ;
+fun collectivization_N : N ;
+fun collectivize_V : V ;
+fun collector_N : N ;
+fun colleen_N : N ;
+fun college_N : N ;
+fun collegial_A : A ;
+fun collegian_N : N ;
+fun collegiate_A : A ;
+fun collembolan_N : N ;
+fun collet_N : N ;
+fun collide_V : V ;
+fun collider_N : N ;
+fun collie_N : N ;
+fun collier_N : N ;
+fun colliery_N : N ;
+fun colligation_N : N ;
+fun collimation_N : N ;
+fun collimator_N : N ;
+fun collinear_A : A ;
+fun collins_N : N ;
+fun collision_N : N ;
+fun collocate_V : V ;
+fun collocation_N : N ;
+fun collodion_N : N ;
+fun colloid_N : N ;
+fun colloidal_A : A ;
+fun colloquial_A : A ;
+fun colloquialism_N : N ;
+fun colloquium_N : N ;
+fun colloquy_N : N ;
+fun collotype_N : N ;
+fun collusion_N : N ;
+fun collusive_A : A ;
+fun colobus_N : N ;
+fun cologne_N : N ;
+fun colombian_A : A ;
+fun colombian_N : N ;
+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 colonic_A : A ;
+fun colonist_N : N ;
+fun colonization_N : N ;
+fun colonize_V : V ;
+fun colonizer_N : N ;
+fun colonnade_N : N ;
+fun colonnaded_A : A ;
+fun colonoscope_N : N ;
+fun colonoscopy_N : N ;
+fun colony_N : N ;
+fun colophon_N : N ;
+fun colophony_N : N ;
+fun color_A : A ;
+fun color_N : N ;
+fun color_bar_N : N ;
+fun color_blind_A : A ;
+fun color_code_V : V ;
+fun color_colored_V : V ;
+fun color_colorred_V : V ;
+fun color_wash_N : N ;
+fun coloration_N : N ;
+fun coloratura_N : N ;
+fun colorcast_N : N ;
+fun colorectal_A : A ;
+fun colored_A : A ;
+fun colorfast_A : A ;
+fun colorful_A : A ;
+fun colorimeter_N : N ;
+fun colorimetric_A : A ;
+fun colorimetry_N : N ;
+fun coloring_N : N ;
+fun colorist_N : N ;
+fun colorless_A : A ;
+fun colorlessness_N : N ;
+fun colossal_A : A ;
+fun colossus_N : N ;
+fun colostomy_N : N ;
+fun colostrum_N : N ;
+fun colour_N : N ;
+fun colour_V : V ;
+fun colour_bar_N : N ;
+fun colour_blind_A : A ;
+fun colour_code_V : V ;
+fun colour_wash_N : N ;
+fun colourful_A : A ;
+fun colouring_N : N ;
+fun colourless_A : A ;
+fun colourlessness_N : N ;
+fun colpitis_N : N ;
+fun colpocele_N : N ;
+fun colpocystitis_N : N ;
+fun colpoxerosis_N : N ;
+fun colt_N : N ;
+fun colter_N : N ;
+fun coltish_A : A ;
+fun coltsfoot_N : N ;
+fun columbarium_N : N ;
+fun columbine_N : N ;
+fun columbium_N : N ;
+fun columbo_N : N ;
+fun columella_N : N ;
+fun column_N : N ;
+fun columnar_A : A ;
+fun columnea_N : N ;
+fun columned_A : A ;
+fun columniation_N : N ;
+fun columniform_A : A ;
+fun columnist_N : N ;
+fun coma_N : N ;
+fun comate_A : A ;
+fun comatose_A : A ;
+fun comb_N : N ;
+fun comb_V : V ;
+fun comb_out_N : N ;
+fun combat_N : N ;
+fun combat_V : V ;
+fun combatant_A : A ;
+fun combatant_N : N ;
+fun combative_A : A ;
+fun combativeness_N : N ;
+fun comber_N : N ;
+fun combinable_A : A ;
+fun combination_N : N ;
+fun combination_lock_N : N ;
+fun combinative_A : A ;
+fun combinatorial_A : A ;
+fun combine_N : N ;
+fun combine_V : V ;
+fun combining_N : N ;
+fun combretum_N : N ;
+fun comburent_A : A ;
+fun combustibility_N : N ;
+fun combustible_A : A ;
+fun combustible_N : N ;
+fun combustion_N : N ;
+fun come_at_able_A : A ;
+fun come_came_V : V ;
+fun come_comed_V : V ;
+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 cometary_A : A ;
+fun comfit_N : N ;
+fun comfort_N : N ;
+fun comfort_V : V ;
+fun comfortable_A : A ;
+fun comfortableness_N : N ;
+fun comforter_N : N ;
+fun comforting_A : A ;
+fun comfortless_A : A ;
+fun comforts_N : N ;
+fun comfrey_N : N ;
+fun comfy_A : A ;
+fun comic_A : A ;
+fun comic_N : N ;
+fun comical_A : A ;
+fun comicality_N : N ;
+fun coming_N : N ;
+fun comity_N : N ;
+fun comma_N : N ;
+fun command_N : N ;
+fun command_V : V ;
+fun commandant_N : N ;
+fun commandeer_V : V ;
+fun commander_N : N ;
+fun commandership_N : N ;
+fun commandment_N : N ;
+fun commando_N : N ;
+fun commelina_N : N ;
+fun commemorate_V : V ;
+fun commemoration_N : N ;
+fun commemorative_A : A ;
+fun commemorative_N : N ;
+fun commence_V : V ;
+fun commencement_N : N ;
+fun commend_V : V ;
+fun commendable_A : A ;
+fun commendation_N : N ;
+fun commensal_A : A ;
+fun commensal_N : N ;
+fun commensalism_N : N ;
+fun commensurable_A : A ;
+fun commensurate_A : A ;
+fun commensurateness_N : N ;
+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 commercialization_N : N ;
+fun commercialize_V : V ;
+fun commination_N : N ;
+fun comminatory_A : A ;
+fun commingle_V : V ;
+fun commiserate_V : V ;
+fun commiseration_N : N ;
+fun commiserative_A : A ;
+fun commissar_N : N ;
+fun commissariat_N : N ;
+fun commissary_N : N ;
+fun commission_N : N ;
+fun commission_V : V ;
+fun commissionaire_N : N ;
+fun commissioner_N : N ;
+fun commissure_N : N ;
+fun commit_V : V ;
+fun commital_N : N ;
+fun commitment_N : N ;
+fun committedness_N : N ;
+fun committee_N : N ;
+fun committeeman_N : N ;
+fun committeewoman_N : N ;
+fun commode_N : N ;
+fun commodious_A : A ;
+fun commodity_N : N ;
+fun commodore_N : N ;
+fun common_DUMMY_A : A ;
+fun common_N : N ;
+fun common_commoner_A : A ;
+fun common_room_N : N ;
+fun commonage_N : N ;
+fun commonality_N : N ;
+fun commonalty_N : N ;
+fun commoner_N : N ;
+fun commonness_N : N ;
+fun commonplace_A : A ;
+fun commonplace_N : N ;
+fun commons_N : N ;
+fun commonsense_A : A ;
+fun commonwealth_N : N ;
+fun commotion_N : N ;
+fun communal_A : A ;
+fun communalism_N : N ;
+fun commune_N : N ;
+fun commune_V : V ;
+fun communicable_A : A ;
+fun communicant_N : N ;
+fun communicate_V : V ;
+fun communication_N : N ;
+fun communicational_A : A ;
+fun communications_N : N ;
+fun communicative_A : A ;
+fun communicativeness_N : N ;
+fun communicator_N : N ;
+fun communion_N : N ;
+fun communiqué_N : N ;
+fun communism_N : N ;
+fun communist_A : A ;
+fun communist_N : N ;
+fun community_N : N ;
+fun communization_N : N ;
+fun commutability_N : N ;
+fun commutable_A : A ;
+fun commutation_N : N ;
+fun commutative_A : A ;
+fun commutator_N : N ;
+fun commute_N : N ;
+fun commute_V : V ;
+fun commuter_N : N ;
+fun compact_A : A ;
+fun compact_N : N ;
+fun compact_V : V ;
+fun compaction_N : N ;
+fun compactness_N : N ;
+fun companion_N : N ;
+fun companionability_N : N ;
+fun companionable_A : A ;
+fun companionate_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 comparison_N : N ;
+fun compartment_N : N ;
+fun compartmental_A : A ;
+fun compartmentalization_N : N ;
+fun compartmentalize_V : V ;
+fun compartmented_A : A ;
+fun compass_N : N ;
+fun compass_V : V ;
+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_V : V ;
+fun compelling_A : A ;
+fun compendious_A : A ;
+fun compendium_N : N ;
+fun compensable_A : A ;
+fun compensate_V : V ;
+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_V : V ;
+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_V : V ;
+fun complemental_A : A ;
+fun complementarity_N : N ;
+fun complementary_A : A ;
+fun complementation_N : N ;
+fun complete_A : A ;
+fun complete_V : V ;
+fun completeness_N : N ;
+fun completion_N : N ;
+fun complex_A : A ;
+fun complex_N : N ;
+fun complexifier_N : N ;
+fun complexion_N : N ;
+fun complexity_N : N ;
+fun compliance_N : N ;
+fun compliant_A : A ;
+fun complicate_V : V ;
+fun complicatedness_N : N ;
+fun complication_N : N ;
+fun complicity_N : N ;
+fun compliment_N : N ;
+fun compliment_V : V ;
+fun complimentary_A : A ;
+fun complin_N : N ;
+fun compline_N : N ;
+fun comply_V : V ;
+fun component_A : A ;
+fun component_N : N ;
+fun comport_V : V ;
+fun comportment_N : N ;
+fun compos_mentis_A : A ;
+fun compose_V : V ;
+fun composer_N : N ;
+fun composing_N : N ;
+fun composite_A : A ;
+fun composite_N : N ;
+fun compositeness_N : N ;
+fun composition_N : N ;
+fun compositional_A : A ;
+fun compositor_N : N ;
+fun compost_N : N ;
+fun compost_V : V ;
+fun composure_N : N ;
+fun compote_N : N ;
+fun compound_A : A ;
+fun compound_N : N ;
+fun compound_V : V ;
+fun comprehend_V : V ;
+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_V : V ;
+fun compressibility_N : N ;
+fun compressible_A : A ;
+fun compression_N : N ;
+fun compressor_N : N ;
+fun comprise_V : V ;
+fun compromise_N : N ;
+fun compromise_V : V ;
+fun compromiser_N : N ;
+fun compsognathus_N : N ;
+fun comptroller_N : N ;
+fun comptrollership_N : N ;
+fun compulsion_N : N ;
+fun compulsive_A : A ;
+fun compulsive_N : N ;
+fun compulsiveness_N : N ;
+fun compulsory_A : A ;
+fun compunction_N : N ;
+fun computable_A : A ;
+fun computation_N : N ;
+fun computational_A : A ;
+fun compute_V : V ;
+fun computer_N : N ;
+fun computer_science_N : N ;
+fun computerisation_N : N ;
+fun computerization_N : N ;
+fun computerize_V : V ;
+fun compère_N : N ;
+fun compère_V : V ;
+fun comrade_N : N ;
+fun comradely_A : A ;
+fun comradely_Adv : Adv ;
+fun comradeship_N : N ;
+fun con_Adv : Adv ;
+fun con_N : N ;
+fun con_V : V ;
+fun con_man_N : N ;
+fun conacaste_N : N ;
+fun concatenation_N : N ;
+fun concave_A : A ;
+fun concavity_N : N ;
+fun conceal_V : V ;
+fun conceale_V : V ;
+fun concealment_N : N ;
+fun concede_V : V ;
+fun conceit_N : N ;
+fun conceited_A : A ;
+fun conceivable_A : A ;
+fun conceivableness_N : N ;
+fun conceive_V : V ;
+fun concentrate_N : N ;
+fun concentrate_V : V ;
+fun concentration_N : N ;
+fun concentric_A : A ;
+fun concentricity_N : N ;
+fun concept_N : N ;
+fun conception_N : N ;
+fun conceptional_A : A ;
+fun conceptive_A : A ;
+fun conceptual_A : A ;
+fun conceptualism_N : N ;
+fun conceptualistic_A : A ;
+fun conceptualization_N : N ;
+fun concern_N : N ;
+fun concern_V : V ;
+fun concernedly_Adv : Adv ;
+fun concert_N : N ;
+fun concert_V : V ;
+fun concert_hall_N : N ;
+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 concha_N : N ;
+fun conchfish_N : N ;
+fun conchologist_N : N ;
+fun conchology_N : N ;
+fun concierge_N : N ;
+fun conciliate_V : V ;
+fun conciliation_N : N ;
+fun conciliator_N : N ;
+fun conciliatory_A : A ;
+fun concise_A : A ;
+fun conciseness_N : N ;
+fun conclave_N : N ;
+fun conclude_V : V ;
+fun conclusion_N : N ;
+fun conclusive_A : A ;
+fun concoct_V : V ;
+fun concoction_N : N ;
+fun concomitance_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 concreteness_N : N ;
+fun concretion_N : N ;
+fun concretism_N : N ;
+fun concretistic_A : A ;
+fun concubinage_N : N ;
+fun concubine_N : N ;
+fun concupiscence_N : N ;
+fun concur_V : V ;
+fun concurrence_N : N ;
+fun concurrent_A : A ;
+fun concurrentness_N : N ;
+fun concuss_V : V ;
+fun concussion_N : N ;
+fun condemn_V : V ;
+fun condemnable_A : A ;
+fun condemnation_N : N ;
+fun condemnatory_A : A ;
+fun condensate_N : N ;
+fun condensation_N : N ;
+fun condense_V : V ;
+fun condenser_N : N ;
+fun condensing_N : N ;
+fun condescend_V : V ;
+fun condescendingly_Adv : Adv ;
+fun condescension_N : N ;
+fun condign_A : A ;
+fun condiment_N : N ;
+fun condition_N : N ;
+fun condition_V : V ;
+fun conditional_A : A ;
+fun conditionality_N : N ;
+fun conditioner_N : N ;
+fun conditioning_N : N ;
+fun conditions_N : N ;
+fun condole_V : V ;
+fun condolence_N : N ;
+fun condolent_A : A ;
+fun condom_N : N ;
+fun condominium_N : N ;
+fun condonation_N : N ;
+fun condone_V : V ;
+fun condor_N : N ;
+fun conduce_V : V ;
+fun conducive_A : A ;
+fun conduct_N : N ;
+fun conduct_V : V ;
+fun conductance_N : N ;
+fun conducting_N : N ;
+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 condylar_A : A ;
+fun condyle_N : N ;
+fun condylion_N : N ;
+fun cone_N : N ;
+fun cone_V : V ;
+fun coneflower_N : N ;
+fun conenose_N : N ;
+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 confederation_N : N ;
+fun confer_V : V ;
+fun conferee_N : N ;
+fun conference_N : N ;
+fun conferment_N : N ;
+fun conferrer_N : N ;
+fun conferva_N : N ;
+fun confess_V : V ;
+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 confidante_N : N ;
+fun confide_V : V ;
+fun confidence_N : N ;
+fun confident_A : A ;
+fun confidential_A : A ;
+fun confidentiality_N : N ;
+fun configuration_N : N ;
+fun configurational_A : A ;
+fun configure_V : V ;
+fun confine_N : N ;
+fun confine_V : V ;
+fun confinement_N : N ;
+fun confining_A : A ;
+fun confirm_V : V ;
+fun confirmable_A : A ;
+fun confirmation_N : N ;
+fun confiscate_A : A ;
+fun confiscate_V : V ;
+fun confiscation_N : N ;
+fun confit_N : N ;
+fun confiture_N : N ;
+fun conflagration_N : N ;
+fun conflict_N : N ;
+fun conflict_V : V ;
+fun confluence_N : N ;
+fun confluent_A : A ;
+fun conform_V : V ;
+fun conformable_A : A ;
+fun conformation_N : N ;
+fun conformist_A : A ;
+fun conformist_N : N ;
+fun conformity_N : N ;
+fun confound_V : V ;
+fun confounding_A : A ;
+fun confront_V : V ;
+fun confrontation_N : N ;
+fun confrontational_A : A ;
+fun confrère_N : N ;
+fun confucian_A : A ;
+fun confucian_N : N ;
+fun confusable_A : A ;
+fun confuse_V : V ;
+fun confusedly_Adv : Adv ;
+fun confusing_A : A ;
+fun confusion_N : N ;
+fun confutation_N : N ;
+fun confute_V : V ;
+fun conga_N : N ;
+fun congeal_V : V ;
+fun congealment_N : N ;
+fun congee_N : N ;
+fun congener_N : N ;
+fun congeneric_A : A ;
+fun congenial_A : A ;
+fun congeniality_N : N ;
+fun congenialness_N : N ;
+fun congenital_A : A ;
+fun conger_N : N ;
+fun conger_eel_N : N ;
+fun congested_A : A ;
+fun congestion_N : N ;
+fun congestive_A : A ;
+fun conglomerate_A : A ;
+fun conglomerate_N : N ;
+fun conglomerate_V : V ;
+fun conglomeration_N : N ;
+fun congolese_A : A ;
+fun congolese_N : N ;
+fun congou_N : N ;
+fun congratulate_V : V ;
+fun congratulation_N : N ;
+fun congratulatory_A : A ;
+fun congregant_N : N ;
+fun congregate_V : V ;
+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 congruity_N : N ;
+fun congruous_A : A ;
+fun congé_N : N ;
+fun conic_A : A ;
+fun conical_A : A ;
+fun conidiophore_N : N ;
+fun conidium_N : N ;
+fun conifer_N : N ;
+fun coniferous_A : A ;
+fun conima_N : N ;
+fun conjectural_A : A ;
+fun conjecture_N : N ;
+fun conjecture_V : V ;
+fun conjoin_V : V ;
+fun conjoint_A : A ;
+fun conjugal_A : A ;
+fun conjugate_A : A ;
+fun conjugate_V : V ;
+fun conjugation_N : N ;
+fun conjunct_A : A ;
+fun conjunction_N : N ;
+fun conjunctiva_N : N ;
+fun conjunctival_A : A ;
+fun conjunctive_A : A ;
+fun conjunctive_N : N ;
+fun conjunctivitis_N : N ;
+fun conjuncture_N : N ;
+fun conjuration_N : N ;
+fun conjure_V : V ;
+fun conjurer_N : N ;
+fun conjuring_N : N ;
+fun conjuror_N : N ;
+fun conk_N : N ;
+fun conk_V : V ;
+fun conker_N : N ;
+fun connate_A : A ;
+fun connatural_A : A ;
+fun connect_V : V ;
+fun connection_N : N ;
+fun connective_A : A ;
+fun connective_N : N ;
+fun connectivity_N : N ;
+fun connexion_N : N ;
+fun conning_A : A ;
+fun connivance_N : N ;
+fun connive_V : V ;
+fun connoisseur_N : N ;
+fun connotation_N : N ;
+fun connotational_A : A ;
+fun connotative_A : A ;
+fun connote_V : V ;
+fun connubial_A : A ;
+fun conodont_N : N ;
+fun conquer_V : V ;
+fun conquerable_A : A ;
+fun conqueror_N : N ;
+fun conquest_N : N ;
+fun conquistador_N : N ;
+fun consanguinity_N : N ;
+fun conscience_N : N ;
+fun conscience_smitten_A : A ;
+fun conscienceless_A : A ;
+fun conscientious_A : A ;
+fun conscientiousness_N : N ;
+fun conscionable_A : A ;
+fun conscious_A : A ;
+fun consciousness_N : N ;
+fun conscript_N : N ;
+fun conscript_V : V ;
+fun conscription_N : N ;
+fun consecrate_V : V ;
+fun consecration_N : N ;
+fun consecutive_A : A ;
+fun consecutive_Adv : Adv ;
+fun consensual_A : A ;
+fun consensus_N : N ;
+fun consent_N : N ;
+fun consent_V : V ;
+fun consentaneous_A : A ;
+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 conservator_N : N ;
+fun conservatory_N : N ;
+fun conserve_N : N ;
+fun conserve_V : V ;
+fun consider_V : V ;
+fun considerable_A : A ;
+fun considerate_A : A ;
+fun considerateness_N : N ;
+fun consideration_N : N ;
+fun consign_V : V ;
+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_V : V ;
+fun consolidate_V : V ;
+fun consolidation_N : N ;
+fun consolidative_A : A ;
+fun consommé_N : N ;
+fun consonance_N : N ;
+fun consonant_A : A ;
+fun consonant_N : N ;
+fun consonantal_A : A ;
+fun consort_N : N ;
+fun consort_V : V ;
+fun consortium_N : N ;
+fun conspecific_A : A ;
+fun conspecific_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 constable_N : N ;
+fun constabulary_N : N ;
+fun constancy_N : N ;
+fun constant_A : A ;
+fun constant_N : N ;
+fun constantan_N : N ;
+fun constellation_N : N ;
+fun consternation_N : N ;
+fun constipate_V : V ;
+fun constipation_N : N ;
+fun constituency_N : N ;
+fun constituent_A : A ;
+fun constituent_N : N ;
+fun constitute_V : V ;
+fun constitution_N : N ;
+fun constitutional_A : A ;
+fun constitutional_N : N ;
+fun constitutionalism_N : N ;
+fun constitutionalist_N : N ;
+fun constitutionalize_V : V ;
+fun constitutive_A : A ;
+fun constrain_V : V ;
+fun constrainedly_Adv : Adv ;
+fun constraint_N : N ;
+fun constrict_V : V ;
+fun constricting_A : A ;
+fun constriction_N : N ;
+fun constrictor_N : N ;
+fun construal_N : N ;
+fun construct_V : V ;
+fun construction_N : N ;
+fun constructional_A : A ;
+fun constructive_A : A ;
+fun constructiveness_N : N ;
+fun constructivism_N : N ;
+fun constructivist_N : N ;
+fun constructor_N : N ;
+fun construe_V : V ;
+fun consubstantial_A : A ;
+fun consubstantiation_N : N ;
+fun consuetude_N : N ;
+fun consuetudinary_N : N ;
+fun consul_N : N ;
+fun consular_A : A ;
+fun consulate_N : N ;
+fun consulship_N : N ;
+fun consult_V : V ;
+fun consultancy_N : N ;
+fun consultant_N : N ;
+fun consultation_N : N ;
+fun consultative_A : A ;
+fun consumable_A : A ;
+fun consume_V : V ;
+fun consumer_N : N ;
+fun consumerism_N : N ;
+fun consummate_A : A ;
+fun consummate_V : V ;
+fun consummation_N : N ;
+fun consumption_N : N ;
+fun consumptive_A : A ;
+fun consumptive_N : N ;
+fun contact_N : N ;
+fun contact_V : V ;
+fun contadino_N : N ;
+fun contagion_N : N ;
+fun contagious_A : A ;
+fun contain_V : V ;
+fun container_N : N ;
+fun containerful_N : N ;
+fun containment_N : N ;
+fun contaminant_N : N ;
+fun contaminate_V : V ;
+fun contamination_N : N ;
+fun contaminative_A : A ;
+fun contemn_V : V ;
+fun contemplate_V : V ;
+fun contemplation_N : N ;
+fun contemplative_A : A ;
+fun contemplative_N : N ;
+fun contemporaneity_N : N ;
+fun contemporaneous_A : A ;
+fun contemporary_A : A ;
+fun contemporary_N : N ;
+fun contempt_N : N ;
+fun contemptible_A : A ;
+fun contemptuousness_N : N ;
+fun contend_V : V ;
+fun contender_N : N ;
+fun content_A : A ;
+fun content_N : N ;
+fun content_V : V ;
+fun contentedly_Adv : Adv ;
+fun contentedness_N : N ;
+fun contention_N : N ;
+fun contentious_A : A ;
+fun contentment_N : N ;
+fun contents_N : N ;
+fun conterminous_A : A ;
+fun contest_N : N ;
+fun contest_V : V ;
+fun contestable_A : A ;
+fun contestant_N : N ;
+fun contestee_N : N ;
+fun contester_N : N ;
+fun context_N : N ;
+fun contextual_A : A ;
+fun contextualism_N : N ;
+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 continuity_N : N ;
+fun continuous_A : A ;
+fun continuousness_N : N ;
+fun continuum_N : N ;
+fun conto_N : N ;
+fun contort_V : V ;
+fun contortion_N : N ;
+fun contortionist_N : N ;
+fun contour_N : N ;
+fun contour_V : V ;
+fun contra_Prep : Prep ;
+fun contraband_N : N ;
+fun contrabass_A : A ;
+fun contrabass_N : N ;
+fun contrabassoon_N : N ;
+fun contraception_N : N ;
+fun contraceptive_A : A ;
+fun contraceptive_N : N ;
+fun contract_N : N ;
+fun contract_V : V ;
+fun contractible_A : A ;
+fun contractile_A : A ;
+fun contractility_N : N ;
+fun contraction_N : N ;
+fun contractor_N : N ;
+fun contractual_A : A ;
+fun contracture_N : N ;
+fun contradict_V : V ;
+fun contradiction_N : N ;
+fun contradictoriness_N : N ;
+fun contradictory_A : A ;
+fun contradictory_N : N ;
+fun contradistinction_N : N ;
+fun contradistinguish_V : V ;
+fun contrail_N : N ;
+fun contraindication_N : N ;
+fun contralateral_A : A ;
+fun contralto_N : N ;
+fun contraption_N : N ;
+fun contrapuntal_A : A ;
+fun contrapuntist_N : N ;
+fun contrarian_N : N ;
+fun contrariety_N : N ;
+fun contrariness_N : N ;
+fun contrarious_A : A ;
+fun contrariwise_Adv : Adv ;
+fun contrary_A : A ;
+fun contrary_N : N ;
+fun contrast_N : N ;
+fun contrast_V : V ;
+fun contrastingly_Adv : Adv ;
+fun contrastive_A : A ;
+fun contrasty_A : A ;
+fun contravene_V : V ;
+fun contravention_N : N ;
+fun contretemps_N : N ;
+fun contribute_V : V ;
+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 contriver_N : N ;
+fun control_N : N ;
+fun control_controled_V : V ;
+fun control_controlled_V : V ;
+fun controllable_A : A ;
+fun controller_N : N ;
+fun controllership_N : N ;
+fun controlling_A : A ;
+fun controversial_A : A ;
+fun controversialist_N : N ;
+fun controversy_N : N ;
+fun controvert_V : V ;
+fun contumacious_A : A ;
+fun contumacy_N : N ;
+fun contumelious_A : A ;
+fun contumely_N : N ;
+fun contuse_V : V ;
+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 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 conventionalization_N : N ;
+fun conventionalized_A : A ;
+fun conventioneer_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 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_V : V ;
+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_V : V ;
+fun conviction_N : N ;
+fun convince_V : V ;
+fun convincible_A : A ;
+fun convincing_A : A ;
+fun convincingness_N : N ;
+fun convivial_A : A ;
+fun conviviality_N : N ;
+fun convocation_N : N ;
+fun convoke_V : V ;
+fun convolute_A : A ;
+fun convoluted_A : A ;
+fun convolution_N : N ;
+fun convolvulus_N : N ;
+fun convoy_N : N ;
+fun convoy_V : V ;
+fun convulse_V : V ;
+fun convulsion_N : N ;
+fun convulsive_A : A ;
+fun cony_N : N ;
+fun coo_N : N ;
+fun coo_V : V ;
+fun cook_N : N ;
+fun cook_V : V ;
+fun cookbook_N : N ;
+fun cooker_N : N ;
+fun cookery_N : N ;
+fun cookery_book_N : N ;
+fun cookfire_N : N ;
+fun cookhouse_N : N ;
+fun cookie_N : N ;
+fun cooking_N : N ;
+fun cookout_N : N ;
+fun cookstove_N : N ;
+fun cooky_N : N ;
+fun cool_A : A ;
+fun cool_N : N ;
+fun cool_V : V ;
+fun cool_headed_A : A ;
+fun coolant_N : N ;
+fun cooler_N : N ;
+fun coolie_N : N ;
+fun cooling_N : N ;
+fun cooling_tower_N : N ;
+fun coolness_N : N ;
+fun coon_N : N ;
+fun coondog_N : N ;
+fun coonhound_N : N ;
+fun coontie_N : N ;
+fun coop_N : N ;
+fun coop_V : V ;
+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 coordination_N : N ;
+fun coordinator_N : N ;
+fun coot_N : N ;
+fun cooter_N : N ;
+fun cop_N : N ;
+fun cop_V : V ;
+fun cop_out_N : N ;
+fun copacetic_A : A ;
+fun copaiba_N : N ;
+fun copal_N : N ;
+fun copalite_N : N ;
+fun copartner_N : N ;
+fun copartnership_N : N ;
+fun cope_N : N ;
+fun cope_V : V ;
+fun copeck_N : N ;
+fun copepod_N : N ;
+fun copernican_A : A ;
+fun copilot_N : N ;
+fun coping_N : N ;
+fun coping_stone_N : N ;
+fun copious_A : A ;
+fun coplanar_A : A ;
+fun copolymer_N : N ;
+fun copout_N : N ;
+fun copper_N : N ;
+fun copper_V : V ;
+fun copper_bottom_V : V ;
+fun copper_bottomed_A : A ;
+fun copperhead_N : N ;
+fun copperplate_N : N ;
+fun coppersmith_N : N ;
+fun copperware_N : N ;
+fun coppery_A : A ;
+fun coppice_N : N ;
+fun copra_N : N ;
+fun coproduction_N : N ;
+fun coprolalia_N : N ;
+fun coprolite_N : N ;
+fun coprolith_N : N ;
+fun coprophagy_N : N ;
+fun copse_N : N ;
+fun copt_A : A ;
+fun copt_N : N ;
+fun coptic_N : N ;
+fun copula_N : N ;
+fun copular_A : A ;
+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 copybook_N : N ;
+fun copycat_N : N ;
+fun copyhold_N : N ;
+fun copyholder_N : N ;
+fun copying_N : N ;
+fun copyist_N : N ;
+fun copyright_N : N ;
+fun copyright_V : V ;
+fun copywriter_N : N ;
+fun coquetry_N : N ;
+fun coquette_N : N ;
+fun coquettish_A : A ;
+fun coquille_N : N ;
+fun cor_anglais_N : N ;
+fun coracle_N : N ;
+fun coral_A : A ;
+fun coral_N : N ;
+fun coral_reef_N : N ;
+fun coralbells_N : N ;
+fun coralberry_N : N ;
+fun coralwood_N : N ;
+fun corbel_N : N ;
+fun corbelled_A : A ;
+fun corbina_N : N ;
+fun corchorus_N : N ;
+fun cord_N : N ;
+fun cord_V : V ;
+fun cordage_N : N ;
+fun cordate_A : A ;
+fun cordgrass_N : N ;
+fun cordial_A : A ;
+fun cordial_N : N ;
+fun cordiality_N : N ;
+fun cordierite_N : N ;
+fun cordite_N : N ;
+fun corditis_N : N ;
+fun cordless_A : A ;
+fun cordoba_N : N ;
+fun cordon_N : N ;
+fun cordon_V : V ;
+fun cordon_bleu_A : A ;
+fun cordovan_N : N ;
+fun cords_N : N ;
+fun corduroy_N : N ;
+fun cordwood_N : N ;
+fun core_N : N ;
+fun core_V : V ;
+fun coreference_N : N ;
+fun coreferent_A : A ;
+fun coreferential_A : A ;
+fun coreligionist_N : N ;
+fun coreopsis_N : N ;
+fun corer_N : N ;
+fun corespondent_N : N ;
+fun corgi_N : N ;
+fun coriaceous_A : A ;
+fun coriander_N : N ;
+fun corinthian_A : A ;
+fun corinthian_N : N ;
+fun cork_N : N ;
+fun cork_V : V ;
+fun corkage_N : N ;
+fun corkboard_N : N ;
+fun corker_N : N ;
+fun corkscrew_N : N ;
+fun corkwood_N : N ;
+fun corm_N : N ;
+fun cormorant_N : N ;
+fun cormous_A : A ;
+fun corn_N : N ;
+fun corn_V : V ;
+fun corn_exchange_N : N ;
+fun cornbread_N : N ;
+fun corncob_N : N ;
+fun corncrake_N : N ;
+fun corncrib_N : N ;
+fun cornea_N : N ;
+fun corneal_A : A ;
+fun cornelian_N : N ;
+fun corneous_A : A ;
+fun corner_N : N ;
+fun corner_V : V ;
+fun corner_kick_N : N ;
+fun cornerback_N : N ;
+fun cornerstone_N : N ;
+fun cornet_N : N ;
+fun cornetfish_N : N ;
+fun cornfield_N : N ;
+fun cornflake_N : N ;
+fun cornflour_N : N ;
+fun cornflower_N : N ;
+fun cornhusk_N : N ;
+fun cornhusker_N : N ;
+fun cornhusking_N : N ;
+fun cornice_N : N ;
+fun cornmeal_N : N ;
+fun cornpone_N : N ;
+fun cornsilk_N : N ;
+fun cornsmut_N : N ;
+fun cornstalk_N : N ;
+fun cornstarch_N : N ;
+fun cornu_N : N ;
+fun cornucopia_N : N ;
+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 coroneted_A : A ;
+fun coronilla_N : N ;
+fun coronion_N : N ;
+fun corozo_N : N ;
+fun corporal_A : A ;
+fun corporal_N : N ;
+fun corporate_A : A ;
+fun corporation_N : N ;
+fun corporatism_N : N ;
+fun corporatist_A : A ;
+fun corporatist_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 corpuscular_A : A ;
+fun corral_N : N ;
+fun corral_V : V ;
+fun correct_A : A ;
+fun correct_V : V ;
+fun correctable_A : A ;
+fun correction_N : N ;
+fun correctional_A : A ;
+fun corrections_N : N ;
+fun correctitude_N : N ;
+fun corrective_A : A ;
+fun corrective_N : N ;
+fun correctness_N : N ;
+fun correlate_N : N ;
+fun correlate_V : V ;
+fun correlation_N : N ;
+fun correlational_A : A ;
+fun correlative_A : A ;
+fun correlative_N : N ;
+fun correspond_V : V ;
+fun correspondence_N : N ;
+fun correspondent_N : N ;
+fun correspondingly_Adv : Adv ;
+fun corridor_N : N ;
+fun corrie_N : N ;
+fun corrigenda_N : N ;
+fun corrigendum_N : N ;
+fun corrigible_A : A ;
+fun corroborant_A : A ;
+fun corroborate_V : V ;
+fun corroboration_N : N ;
+fun corroborative_A : A ;
+fun corrode_V : V ;
+fun corrosion_N : N ;
+fun corrosive_A : A ;
+fun corrosive_N : N ;
+fun corrugate_V : V ;
+fun corrugation_N : N ;
+fun corrupt_A : A ;
+fun corrupt_V : V ;
+fun corruptibility_N : N ;
+fun corruptible_A : A ;
+fun corruption_N : N ;
+fun corruptive_A : A ;
+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 corslet_N : N ;
+fun cortege_N : N ;
+fun cortex_N : N ;
+fun cortical_A : A ;
+fun corticoafferent_A : A ;
+fun corticoefferent_A : A ;
+fun corticosteroid_N : N ;
+fun corticosterone_N : N ;
+fun cortina_N : N ;
+fun cortisone_N : N ;
+fun cortège_N : N ;
+fun corundom_N : N ;
+fun corundum_N : N ;
+fun coruscate_V : V ;
+fun coruscation_N : N ;
+fun corvette_N : N ;
+fun corvine_A : A ;
+fun corvée_N : N ;
+fun corydalis_N : N ;
+fun corymb_N : N ;
+fun corymbose_A : A ;
+fun corynebacterium_N : N ;
+fun coryphantha_N : N ;
+fun corythosaur_N : N ;
+fun cos_N : N ;
+fun coscoroba_N : N ;
+fun cosecant_N : N ;
+fun coseismic_A : A ;
+fun cosh_N : N ;
+fun cosh_V : V ;
+fun cosher_A : A ;
+fun cosignatory_A : A ;
+fun cosignatory_N : N ;
+fun cosigner_N : N ;
+fun cosine_N : N ;
+fun cosiness_N : N ;
+fun cosmetic_A : A ;
+fun cosmetic_N : N ;
+fun cosmetically_Adv : Adv ;
+fun cosmetician_N : N ;
+fun cosmetologist_N : N ;
+fun cosmetology_N : N ;
+fun cosmic_A : A ;
+fun cosmid_N : N ;
+fun cosmogony_N : N ;
+fun cosmographer_N : N ;
+fun cosmography_N : N ;
+fun cosmolatry_N : N ;
+fun cosmologic_A : A ;
+fun cosmologist_N : N ;
+fun cosmology_N : N ;
+fun cosmonaut_N : N ;
+fun cosmopolitan_A : A ;
+fun cosmopolitan_N : N ;
+fun cosmos_cosmoi_N : N ;
+fun cosmos_cosmoses_N : N ;
+fun cosmotron_N : N ;
+fun cosset_V : V ;
+fun cost_N : N ;
+fun cost_cost_V : V ;
+fun cost_costed_V : V ;
+fun costa_N : N ;
+fun costa_rican_A : A ;
+fun costa_rican_N : N ;
+fun costal_A : A ;
+fun costate_A : A ;
+fun costermonger_N : N ;
+fun costia_N : N ;
+fun costiasis_N : N ;
+fun costing_N : N ;
+fun costive_A : A ;
+fun costliness_N : N ;
+fun costly_A : A ;
+fun costmary_N : N ;
+fun costochondritis_N : N ;
+fun costs_N : N ;
+fun costum_V : V ;
+fun costume_N : N ;
+fun costumed_A : A ;
+fun costumier_N : N ;
+fun costusroot_N : N ;
+fun cosy_A : A ;
+fun cosy_N : N ;
+fun cot_N : N ;
+fun cotangent_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 cotinga_N : N ;
+fun cotoneaster_N : N ;
+fun cottage_N : N ;
+fun cottager_N : N ;
+fun cottar_N : N ;
+fun cotter_N : N ;
+fun cotton_N : N ;
+fun cotton_cake_N : N ;
+fun cotton_cottoned_V : V ;
+fun cotton_cottonned_V : V ;
+fun cotton_plant_N : N ;
+fun cotton_wool_N : N ;
+fun cottonseed_N : N ;
+fun cottontail_N : N ;
+fun cottonweed_N : N ;
+fun cottonwick_N : N ;
+fun cottonwood_N : N ;
+fun cottony_A : A ;
+fun cotyledon_N : N ;
+fun coucal_N : N ;
+fun couch_N : N ;
+fun couch_V : V ;
+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 coulisse_N : N ;
+fun coulomb_N : N ;
+fun coulter_N : N ;
+fun council_N : N ;
+fun council_board_N : N ;
+fun council_chamber_N : N ;
+fun councillor_N : N ;
+fun councillorship_N : N ;
+fun councilman_N : N ;
+fun councilwoman_N : N ;
+fun counsel_N : N ;
+fun counsel_V : V ;
+fun counsellor_N : N ;
+fun counselor_N : N ;
+fun counselorship_N : N ;
+fun count_N : N ;
+fun count_V : V ;
+fun countable_A : A ;
+fun countdown_N : N ;
+fun countenance_N : N ;
+fun countenance_V : V ;
+fun counter_Adv : Adv ;
+fun counter_N : N ;
+fun counter_V : V ;
+fun counter_example_N : N ;
+fun counter_revolution_N : N ;
+fun counter_revolutionary_A : A ;
+fun counter_revolutionary_N : N ;
+fun counteract_V : V ;
+fun counteraction_N : N ;
+fun counteractive_A : A ;
+fun counterargument_N : N ;
+fun counterattack_N : N ;
+fun counterattack_V : V ;
+fun counterattraction_N : N ;
+fun counterbalance_N : N ;
+fun counterbalance_V : V ;
+fun counterblast_N : N ;
+fun counterblow_N : N ;
+fun counterbombardment_N : N ;
+fun counterbore_N : N ;
+fun countercharge_N : N ;
+fun countercheck_N : N ;
+fun counterclaim_N : N ;
+fun counterclockwise_A : A ;
+fun counterclockwise_Adv : Adv ;
+fun countercoup_N : N ;
+fun counterculture_N : N ;
+fun countercurrent_N : N ;
+fun counterdemonstration_N : N ;
+fun counterdemonstrator_N : N ;
+fun counterespionage_N : N ;
+fun counterexample_N : N ;
+fun counterfactual_A : A ;
+fun counterfactuality_N : N ;
+fun counterfeit_A : A ;
+fun counterfeit_N : N ;
+fun counterfeit_V : V ;
+fun counterfeiter_N : N ;
+fun counterfire_N : N ;
+fun counterfoil_N : N ;
+fun counterglow_N : N ;
+fun counterinsurgent_A : A ;
+fun counterintelligence_N : N ;
+fun counterintuitive_A : A ;
+fun counterirritant_N : N ;
+fun countermand_N : N ;
+fun countermand_V : V ;
+fun countermarch_N : N ;
+fun countermeasure_N : N ;
+fun countermine_N : N ;
+fun countermine_V : V ;
+fun counteroffensive_N : N ;
+fun counteroffer_N : N ;
+fun counterpane_N : N ;
+fun counterpart_N : N ;
+fun counterperson_N : N ;
+fun counterplea_N : N ;
+fun counterplot_N : N ;
+fun counterplot_V : V ;
+fun counterpoint_N : N ;
+fun counterpoise_N : N ;
+fun counterpoise_V : V ;
+fun counterproductive_A : A ;
+fun counterproposal_N : N ;
+fun counterpunch_N : N ;
+fun counterreformation_N : N ;
+fun counterrevolution_N : N ;
+fun counterrevolutionary_A : A ;
+fun counterrevolutionist_N : N ;
+fun countershot_N : N ;
+fun countersign_N : N ;
+fun countersign_V : V ;
+fun countersignature_N : N ;
+fun countersink_N : N ;
+fun countersink_V : V ;
+fun counterspy_N : N ;
+fun counterstain_N : N ;
+fun countersubversion_N : N ;
+fun countersuing_V : V ;
+fun countersuit_N : N ;
+fun countertenor_A : A ;
+fun countertenor_N : N ;
+fun counterterror_A : A ;
+fun counterterrorism_N : N ;
+fun counterterrorist_N : N ;
+fun countertop_N : N ;
+fun countertransference_N : N ;
+fun countervail_V : V ;
+fun counterweight_N : N ;
+fun countess_N : N ;
+fun counting_house_N : N ;
+fun countinghouse_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 countryseat_N : N ;
+fun countryside_N : N ;
+fun countrywide_A : A ;
+fun countrywoman_N : N ;
+fun county_N : N ;
+fun countywide_A : A ;
+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 couplet_N : N ;
+fun coupling_N : N ;
+fun coupon_N : N ;
+fun coupé_N : N ;
+fun courage_N : N ;
+fun courageous_A : A ;
+fun courante_N : N ;
+fun courbaril_N : N ;
+fun courgette_N : N ;
+fun courier_N : N ;
+fun courlan_N : N ;
+fun course_N : N ;
+fun course_V : V ;
+fun courser_N : N ;
+fun coursework_N : N ;
+fun coursing_N : N ;
+fun court_N : N ;
+fun court_V : V ;
+fun court_card_N : N ;
+fun court_martial_N : N ;
+fun court_martial_V : V ;
+fun courteous_A : A ;
+fun courtesan_N : N ;
+fun courtesy_N : N ;
+fun courthouse_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 couscous_N : N ;
+fun cousin_N : N ;
+fun cousinly_A : A ;
+fun couth_A : A ;
+fun couthie_A : A ;
+fun couture_N : N ;
+fun couturier_N : N ;
+fun couvade_N : N ;
+fun couverture_N : N ;
+fun covalence_N : N ;
+fun covalent_A : A ;
+fun covariance_N : N ;
+fun covariant_A : A ;
+fun covariation_N : N ;
+fun cove_N : N ;
+fun coven_N : N ;
+fun covenant_N : N ;
+fun covenant_V : V ;
+fun cover_N : N ;
+fun cover_V : V ;
+fun cover_up_N : N ;
+fun coverage_N : N ;
+fun coverall_N : N ;
+fun covering_A : A ;
+fun covering_N : N ;
+fun coverlet_N : N ;
+fun covert_A : A ;
+fun covert_N : N ;
+fun covet_V : V ;
+fun covetous_A : A ;
+fun covetousness_N : N ;
+fun covey_N : N ;
+fun cow_N : N ;
+fun cow_V : V ;
+fun cowage_N : N ;
+fun coward_N : N ;
+fun cowardice_N : N ;
+fun cowardly_A : A ;
+fun cowbarn_N : N ;
+fun cowbell_N : N ;
+fun cowberry_N : N ;
+fun cowbird_N : N ;
+fun cowboy_N : N ;
+fun cowcatcher_N : N ;
+fun cower_V : V ;
+fun cowfish_N : N ;
+fun cowgirl_N : N ;
+fun cowhand_N : N ;
+fun cowherb_N : N ;
+fun cowherd_N : N ;
+fun cowhide_N : N ;
+fun cowhouse_N : N ;
+fun cowl_N : N ;
+fun cowled_A : A ;
+fun cowlick_N : N ;
+fun cowling_N : N ;
+fun cowman_N : N ;
+fun coworker_N : N ;
+fun cowpea_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 coxcomb_N : N ;
+fun coxsackievirus_N : N ;
+fun coxswain_N : N ;
+fun coy_A : A ;
+fun coydog_N : N ;
+fun coyly_Adv : Adv ;
+fun coyness_N : N ;
+fun coyol_N : N ;
+fun coyote_N : N ;
+fun coypu_N : N ;
+fun cozen_V : V ;
+fun coziness_N : N ;
+fun cozy_A : A ;
+fun cozy_V : V ;
+fun crab_N : N ;
+fun crab_V : V ;
+fun crab_apple_N : N ;
+fun crabbiness_N : N ;
+fun crabgrass_N : N ;
+fun crabwise_A : A ;
+fun crack_N : N ;
+fun crack_V : V ;
+fun crack_down_N : N ;
+fun crack_up_N : N ;
+fun crackbrained_A : A ;
+fun crackdown_N : N ;
+fun cracker_N : N ;
+fun crackers_A : A ;
+fun cracking_N : N ;
+fun crackle_A : A ;
+fun crackle_N : N ;
+fun crackle_V : V ;
+fun crackle_china_N : N ;
+fun crackleware_N : N ;
+fun crackling_N : N ;
+fun cracklings_N : N ;
+fun crackpot_N : N ;
+fun cracksman_N : N ;
+fun cradle_N : N ;
+fun cradle_V : V ;
+fun craft_N : N ;
+fun craft_V : V ;
+fun craftiness_N : N ;
+fun craftsman_N : N ;
+fun craftsmanship_N : N ;
+fun crafty_A : A ;
+fun crag_N : N ;
+fun cragfast_A : A ;
+fun cragged_A : A ;
+fun craggy_A : A ;
+fun cragsman_N : N ;
+fun crake_N : N ;
+fun cram_V : V ;
+fun cram_full_A : A ;
+fun cram_full_Adv : Adv ;
+fun crammer_N : N ;
+fun cramp_N : N ;
+fun cramp_V : V ;
+fun cramp_iron_N : N ;
+fun crampon_N : N ;
+fun cran_N : N ;
+fun cranberry_N : N ;
+fun crane_N : N ;
+fun crane_V : V ;
+fun crane_fly_N : N ;
+fun cranesbill_N : N ;
+fun cranial_A : A ;
+fun craniology_N : N ;
+fun craniometer_N : N ;
+fun craniometric_A : A ;
+fun craniometry_N : N ;
+fun craniotomy_N : N ;
+fun cranium_N : N ;
+fun crank_A : A ;
+fun crank_N : N ;
+fun crank_V : V ;
+fun crankcase_N : N ;
+fun crankiness_N : N ;
+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 crapaud_N : N ;
+fun crape_N : N ;
+fun crappie_N : N ;
+fun craps_N : N ;
+fun crapshoot_N : N ;
+fun crapshooter_N : N ;
+fun crapulent_A : A ;
+fun crapulous_A : A ;
+fun crash_Adv : Adv ;
+fun crash_N : N ;
+fun crash_V : V ;
+fun crash_dive_N : N ;
+fun crash_dive_V : V ;
+fun crash_helmet_N : N ;
+fun crash_land_V : V ;
+fun crash_landing_N : N ;
+fun crass_A : A ;
+fun crassness_N : N ;
+fun crate_N : N ;
+fun crate_V : V ;
+fun crater_N : N ;
+fun crater_cratered_V : V ;
+fun crater_craterred_V : V ;
+fun craton_N : N ;
+fun cravat_N : N ;
+fun crave_V : V ;
+fun craven_A : A ;
+fun craven_N : N ;
+fun cravenness_N : N ;
+fun craving_N : N ;
+fun craw_N : N ;
+fun crawfish_N : N ;
+fun crawl_N : N ;
+fun crawl_V : V ;
+fun crawler_N : N ;
+fun crawlspace_N : N ;
+fun crayfish_N : N ;
+fun crayon_N : N ;
+fun crayon_V : V ;
+fun craze_N : N ;
+fun crazed_A : A ;
+fun craziness_N : N ;
+fun crazy_A : A ;
+fun crazy_N : N ;
+fun creak_N : N ;
+fun creak_V : V ;
+fun creaky_A : A ;
+fun cream_N : N ;
+fun cream_V : V ;
+fun creamcups_N : N ;
+fun creamery_N : N ;
+fun creaminess_N : N ;
+fun creamy_A : A ;
+fun crease_N : N ;
+fun crease_V : V ;
+fun creaseless_A : A ;
+fun creaseproof_A : A ;
+fun create_V : V ;
+fun creatine_N : N ;
+fun creation_N : N ;
+fun creationism_N : N ;
+fun creative_A : A ;
+fun creativeness_N : N ;
+fun creativity_N : N ;
+fun creator_N : N ;
+fun creature_N : N ;
+fun credence_N : N ;
+fun credentialled_A : A ;
+fun credenza_N : N ;
+fun credibility_N : N ;
+fun credible_A : A ;
+fun credit_N : N ;
+fun credit_V : V ;
+fun credit_side_N : N ;
+fun credit_worthiness_N : N ;
+fun credit_worthy_A : A ;
+fun creditable_A : A ;
+fun creditor_N : N ;
+fun credits_N : N ;
+fun creditworthiness_N : N ;
+fun creditworthy_A : A ;
+fun credo_N : N ;
+fun credulity_N : N ;
+fun credulous_A : A ;
+fun credulousness_N : N ;
+fun creed_N : N ;
+fun creedal_A : A ;
+fun creek_N : N ;
+fun creel_N : N ;
+fun creep_N : N ;
+fun creep_creeped_V : V ;
+fun creep_crept_V : V ;
+fun creeper_N : N ;
+fun creepiness_N : N ;
+fun creeps_N : N ;
+fun creepy_A : A ;
+fun cremains_N : N ;
+fun cremate_V : V ;
+fun cremation_N : N ;
+fun crematorium_N : N ;
+fun crematory_N : N ;
+fun crenate_A : A ;
+fun crenel_N : N ;
+fun crenelation_N : N ;
+fun crenellated_A : A ;
+fun crenulate_A : A ;
+fun creole_A : A ;
+fun creole_N : N ;
+fun creosol_N : N ;
+fun creosote_N : N ;
+fun crepe_N : N ;
+fun crepitate_V : V ;
+fun crepitation_N : N ;
+fun crepuscular_A : A ;
+fun crescendo_A : A ;
+fun crescendo_N : N ;
+fun crescent_N : N ;
+fun cresol_N : N ;
+fun cress_N : N ;
+fun crest_N : N ;
+fun crest_V : V ;
+fun crestfallen_A : A ;
+fun cretaceous_A : A ;
+fun cretin_N : N ;
+fun cretinism_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 crewelwork_N : N ;
+fun crewman_N : N ;
+fun crib_N : N ;
+fun crib_V : V ;
+fun cribbage_N : N ;
+fun cribbage_board_N : N ;
+fun crick_N : N ;
+fun crick_V : V ;
+fun cricket_N : N ;
+fun cricketer_N : N ;
+fun crier_N : N ;
+fun crime_N : N ;
+fun crime_V : V ;
+fun criminal_A : A ;
+fun criminal_N : N ;
+fun criminalism_N : N ;
+fun criminalization_N : N ;
+fun criminalize_V : V ;
+fun criminative_A : A ;
+fun criminological_A : A ;
+fun criminologist_N : N ;
+fun criminology_N : N ;
+fun crimp_N : N ;
+fun crimp_V : V ;
+fun crimson_A : A ;
+fun crimson_N : N ;
+fun crimson_V : V ;
+fun cringe_V : V ;
+fun cringle_N : N ;
+fun crinkle_N : N ;
+fun crinkle_V : V ;
+fun crinkleroot_N : N ;
+fun crinkly_A : A ;
+fun crinoid_A : A ;
+fun crinoid_N : N ;
+fun crinoline_N : N ;
+fun criollo_N : N ;
+fun cripple_N : N ;
+fun cripple_V : V ;
+fun crippling_A : A ;
+fun crisis_N : N ;
+fun crisp_A : A ;
+fun crisp_N : N ;
+fun crisp_V : V ;
+fun crispate_A : A ;
+fun crispness_N : N ;
+fun criss_cross_V : V ;
+fun crisscross_A : A ;
+fun crisscross_Adv : Adv ;
+fun crisscross_N : N ;
+fun crisscross_V : V ;
+fun cristobalite_N : N ;
+fun criterial_A : A ;
+fun criterion_criteria_N : N ;
+fun criterion_criterions_N : N ;
+fun crith_N : N ;
+fun critic_N : N ;
+fun critical_A : A ;
+fun criticality_N : N ;
+fun criticism_N : N ;
+fun criticize_V : V ;
+fun critique_N : N ;
+fun critter_N : N ;
+fun croak_N : N ;
+fun croak_V : V ;
+fun croaker_N : N ;
+fun croaky_A : A ;
+fun crochet_N : N ;
+fun crochet_V : V ;
+fun crochet_hook_N : N ;
+fun crocheting_N : N ;
+fun crock_N : N ;
+fun crock_V : V ;
+fun crockery_N : N ;
+fun crocket_N : N ;
+fun crocketed_A : A ;
+fun crocodile_N : N ;
+fun crocolite_N : N ;
+fun crocus_N : N ;
+fun croft_N : N ;
+fun crofter_N : N ;
+fun cromlech_N : N ;
+fun crone_N : N ;
+fun crony_N : N ;
+fun cronyism_N : N ;
+fun crook_N : N ;
+fun crook_V : V ;
+fun crook_back_A : A ;
+fun crook_backed_A : A ;
+fun crookback_A : A ;
+fun crookedness_N : N ;
+fun crookneck_N : N ;
+fun croon_V : V ;
+fun crooner_N : N ;
+fun crooning_N : N ;
+fun crop_N : N ;
+fun crop_V : V ;
+fun crop_dusting_N : N ;
+fun cropper_N : N ;
+fun croquet_N : N ;
+fun croquette_N : N ;
+fun crore_N : N ;
+fun crosier_N : N ;
+fun cross_A : A ;
+fun cross_N : N ;
+fun cross_V : V ;
+fun cross_bench_N : N ;
+fun cross_bencher_N : N ;
+fun cross_division_N : N ;
+fun cross_examination_N : N ;
+fun cross_examine_V : V ;
+fun cross_examiner_N : N ;
+fun cross_fertilization_N : N ;
+fun cross_fertilize_V : V ;
+fun cross_grained_A : A ;
+fun cross_heading_N : N ;
+fun cross_index_N : N ;
+fun cross_index_V : V ;
+fun cross_legged_Adv : Adv ;
+fun cross_question_V : V ;
+fun cross_reference_N : N ;
+fun cross_section_N : N ;
+fun cross_stitch_N : N ;
+fun crossbar_N : N ;
+fun crossbeam_N : N ;
+fun crossbench_N : N ;
+fun crossbencher_N : N ;
+fun crossbill_N : N ;
+fun crossbones_N : N ;
+fun crossbow_N : N ;
+fun crossbreed_N : N ;
+fun crossbreed_V : V ;
+fun crosscheck_N : N ;
+fun crosscheck_V : V ;
+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 crosshairs_N : N ;
+fun crosshead_N : N ;
+fun crossheading_N : N ;
+fun crossing_N : N ;
+fun crossjack_N : N ;
+fun crossness_N : N ;
+fun crossopterygian_N : N ;
+fun crossover_N : N ;
+fun crosspatch_N : N ;
+fun crosspiece_N : N ;
+fun crossroad_N : N ;
+fun crossroads_N : N ;
+fun crosstalk_N : N ;
+fun crosstown_A : A ;
+fun crosstown_Adv : Adv ;
+fun crosswalk_N : N ;
+fun crosswind_N : N ;
+fun crosswise_A : A ;
+fun crosswise_Adv : Adv ;
+fun crossword_N : N ;
+fun crotalaria_N : N ;
+fun crotaphion_N : N ;
+fun crotch_N : N ;
+fun crotchet_N : N ;
+fun crotchety_A : A ;
+fun croton_N : N ;
+fun crottle_N : N ;
+fun crouch_N : N ;
+fun crouch_V : V ;
+fun croup_N : N ;
+fun croupier_N : N ;
+fun croupy_A : A ;
+fun crouton_N : N ;
+fun crow's_nest_N : N ;
+fun crow_N : N ;
+fun crow_V : V ;
+fun crowbait_N : N ;
+fun crowbar_N : N ;
+fun crowberry_N : N ;
+fun crowd_N : N ;
+fun crowd_V : V ;
+fun crowding_N : N ;
+fun crown_N : N ;
+fun crown_V : V ;
+fun crown_land_N : N ;
+fun crownbeard_N : N ;
+fun crowning_A : A ;
+fun crozier_N : N ;
+fun crucial_A : A ;
+fun cruciate_A : A ;
+fun crucible_N : N ;
+fun crucifer_N : N ;
+fun cruciferous_A : A ;
+fun crucifix_N : N ;
+fun crucifixion_N : N ;
+fun cruciform_A : A ;
+fun crucify_V : V ;
+fun crud_N : N ;
+fun cruddy_A : A ;
+fun crude_A : A ;
+fun crudeness_N : N ;
+fun crudites_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 cruller_N : N ;
+fun crumb_N : N ;
+fun crumb_V : V ;
+fun crumble_V : V ;
+fun crumbliness_N : N ;
+fun crumbly_A : A ;
+fun crumpet_N : N ;
+fun crumple_V : V ;
+fun crunch_N : N ;
+fun crunch_V : V ;
+fun crupper_N : N ;
+fun crural_A : A ;
+fun crus_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 crusher_N : N ;
+fun crushingly_Adv : Adv ;
+fun crust_N : N ;
+fun crust_V : V ;
+fun crustacean_N : N ;
+fun crustaceous_A : A ;
+fun crustal_A : A ;
+fun crustose_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 crybaby_N : N ;
+fun cryesthesia_N : N ;
+fun crying_N : N ;
+fun cryoanesthesia_N : N ;
+fun cryobiology_N : N ;
+fun cryocautery_N : N ;
+fun cryogen_N : N ;
+fun cryogenic_A : A ;
+fun cryogenics_N : N ;
+fun cryolite_N : N ;
+fun cryometer_N : N ;
+fun cryonic_A : A ;
+fun cryonics_N : N ;
+fun cryophobia_N : N ;
+fun cryoscope_N : N ;
+fun cryostat_N : N ;
+fun cryosurgery_N : N ;
+fun crypt_N : N ;
+fun cryptanalysis_N : N ;
+fun cryptanalyst_N : N ;
+fun cryptanalytic_A : A ;
+fun cryptic_A : A ;
+fun cryptically_Adv : Adv ;
+fun cryptobiosis_N : N ;
+fun cryptobiotic_A : A ;
+fun cryptococcosis_N : N ;
+fun cryptocoryne_N : N ;
+fun cryptogam_N : N ;
+fun cryptogamic_A : A ;
+fun cryptogram_N : N ;
+fun cryptograph_N : N ;
+fun cryptographically_Adv : Adv ;
+fun cryptography_N : N ;
+fun cryptomonad_N : N ;
+fun cryptorchidy_N : N ;
+fun crystal_N : N ;
+fun crystal_gazing_N : N ;
+fun crystalline_A : A ;
+fun crystallite_N : N ;
+fun crystallization_N : N ;
+fun crystallize_V : V ;
+fun crystallographer_N : N ;
+fun crystallography_N : N ;
+fun crèche_N : N ;
+fun crème_de_menthe_N : N ;
+fun crêpe_N : N ;
+fun ctene_N : N ;
+fun ctenidium_N : N ;
+fun ctenoid_A : A ;
+fun ctenophore_N : N ;
+fun cub_N : N ;
+fun cuban_A : A ;
+fun cuban_N : N ;
+fun cubby_N : N ;
+fun cubbyhole_N : N ;
+fun cube_N : N ;
+fun cube_V : V ;
+fun cubeb_N : N ;
+fun cubelike_A : A ;
+fun cubic_A : A ;
+fun cubical_A : A ;
+fun cubicity_N : N ;
+fun cubicle_N : N ;
+fun cubism_N : N ;
+fun cubist_A : A ;
+fun cubist_N : N ;
+fun cubit_N : N ;
+fun cubital_A : A ;
+fun cubitiere_N : N ;
+fun cubitus_N : N ;
+fun cuboid_N : N ;
+fun cuckold_N : N ;
+fun cuckold_V : V ;
+fun cuckoldom_N : N ;
+fun cuckoldry_N : N ;
+fun cuckoo_N : N ;
+fun cuckoo_clock_N : N ;
+fun cuckoopint_N : N ;
+fun cucumber_N : N ;
+fun cucurbit_N : N ;
+fun cucurbitaceous_A : A ;
+fun cud_N : N ;
+fun cuddle_N : N ;
+fun cuddle_V : V ;
+fun cuddlesome_A : A ;
+fun cuddly_A : A ;
+fun cuddy_N : N ;
+fun cudgel_N : N ;
+fun cudgel_V : V ;
+fun cudweed_N : N ;
+fun cue_N : N ;
+fun cuff_N : N ;
+fun cuff_V : V ;
+fun cufflink_N : N ;
+fun cuirass_N : N ;
+fun cuirassier_N : N ;
+fun cuisine_N : N ;
+fun cuisse_N : N ;
+fun cul_N : N ;
+fun cul_de_sac_N : N ;
+fun culdoscope_N : N ;
+fun culdoscopy_N : N ;
+fun culinary_A : A ;
+fun cull_N : N ;
+fun cull_V : V ;
+fun cullender_N : N ;
+fun cullis_N : N ;
+fun culm_N : N ;
+fun culminate_V : V ;
+fun culmination_N : N ;
+fun culotte_N : N ;
+fun culpability_N : N ;
+fun culpable_A : A ;
+fun culprit_N : N ;
+fun cult_N : N ;
+fun cultism_N : N ;
+fun cultist_N : N ;
+fun cultivable_A : A ;
+fun cultivar_N : N ;
+fun cultivate_V : V ;
+fun cultivation_N : N ;
+fun cultivator_N : N ;
+fun cultural_A : A ;
+fun culturati_N : N ;
+fun culture_N : N ;
+fun cultured_A : A ;
+fun culverin_N : N ;
+fun culvert_N : N ;
+fun cum_Prep : Prep ;
+fun cumber_V : V ;
+fun cumbersome_A : A ;
+fun cumbrous_A : A ;
+fun cumin_N : N ;
+fun cummerbund_N : N ;
+fun cummings_N : N ;
+fun cumulative_A : A ;
+fun cumuliform_A : A ;
+fun cumulonimbus_N : N ;
+fun cumulous_A : A ;
+fun cumulus_N : N ;
+fun cuneate_A : A ;
+fun cuneiform_A : A ;
+fun cuneiform_N : N ;
+fun cunner_N : N ;
+fun cunnilingus_N : N ;
+fun cunning_A : A ;
+fun cunning_N : N ;
+fun cunt_N : N ;
+fun cup_N : N ;
+fun cup_V : V ;
+fun cup_bearer_N : N ;
+fun cup_final_N : N ;
+fun cup_tie_N : N ;
+fun cupbearer_N : N ;
+fun cupboard_N : N ;
+fun cupboard_love_N : N ;
+fun cupcake_N : N ;
+fun cupflower_N : N ;
+fun cupful_N : N ;
+fun cupid_N : N ;
+fun cupidity_N : N ;
+fun cuplike_A : A ;
+fun cupola_N : N ;
+fun cuppa_N : N ;
+fun cupping_N : N ;
+fun cupric_A : A ;
+fun cuprite_N : N ;
+fun cupro_nickel_N : N ;
+fun cupronickel_N : N ;
+fun cupular_A : A ;
+fun cupule_N : N ;
+fun cur_N : N ;
+fun curability_N : N ;
+fun curable_A : A ;
+fun curacy_N : N ;
+fun curandera_N : N ;
+fun curandero_N : N ;
+fun curassow_N : N ;
+fun curate_N : N ;
+fun curative_A : A ;
+fun curator_N : N ;
+fun curatorial_A : A ;
+fun curatorship_N : N ;
+fun curaçao_N : N ;
+fun curaçoa_N : N ;
+fun curb_N : N ;
+fun curb_V : V ;
+fun curbside_N : N ;
+fun curbstone_N : N ;
+fun curd_N : N ;
+fun curdle_V : V ;
+fun curdling_N : N ;
+fun cure_N : N ;
+fun cure_V : V ;
+fun cure_all_N : N ;
+fun curettage_N : N ;
+fun curette_N : N ;
+fun curfew_N : N ;
+fun curie_N : N ;
+fun curio_N : N ;
+fun curiosa_N : N ;
+fun curiosity_N : N ;
+fun curious_A : A ;
+fun curiousness_N : N ;
+fun curium_N : N ;
+fun curl_N : N ;
+fun curl_V : V ;
+fun curler_N : N ;
+fun curlew_N : N ;
+fun curliness_N : N ;
+fun curling_N : N ;
+fun curly_A : A ;
+fun curmudgeon_N : N ;
+fun currant_N : N ;
+fun currawong_N : N ;
+fun currency_N : N ;
+fun current_A : A ;
+fun current_N : N ;
+fun currentness_N : N ;
+fun curricular_A : A ;
+fun curriculum_N : N ;
+fun curriculum_vitae_N : N ;
+fun currier_N : N ;
+fun currish_A : A ;
+fun curry_N : N ;
+fun curry_V : V ;
+fun curry_powder_N : N ;
+fun currycomb_N : N ;
+fun curse_N : N ;
+fun curse_V : V ;
+fun cursive_A : A ;
+fun cursor_N : N ;
+fun cursorial_A : A ;
+fun cursory_A : A ;
+fun curst_A : A ;
+fun curt_A : A ;
+fun curtail_V : V ;
+fun curtailment_N : N ;
+fun curtain_N : N ;
+fun curtain_V : V ;
+fun curtain_call_N : N ;
+fun curtain_lecture_N : N ;
+fun curtain_raiser_N : N ;
+fun curtainless_A : A ;
+fun curtal_A : A ;
+fun curtness_N : N ;
+fun curtsey_N : N ;
+fun curtsey_V : V ;
+fun curtsy_N : N ;
+fun curtsy_V : V ;
+fun curvaceously_Adv : Adv ;
+fun curvaceousness_N : N ;
+fun curvature_N : N ;
+fun curve_N : N ;
+fun curve_V : V ;
+fun curvet_N : N ;
+fun curvilineal_A : A ;
+fun curvy_A : A ;
+fun curé_N : N ;
+fun cuscus_N : N ;
+fun cushaw_N : N ;
+fun cushion_N : N ;
+fun cushion_V : V ;
+fun cushy_A : A ;
+fun cusk_N : N ;
+fun cusp_N : N ;
+fun cuspate_A : A ;
+fun cuspidation_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 custodianship_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 customhouse_N : N ;
+fun customize_V : V ;
+fun customs_N : N ;
+fun cut_N : N ;
+fun cut_cut_V : V ;
+fun cut_cutted_V : V ;
+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 cutaneous_A : A ;
+fun cutaway_N : N ;
+fun cutback_N : N ;
+fun cutch_N : N ;
+fun cute_A : A ;
+fun cuteness_N : N ;
+fun cuticle_N : N ;
+fun cuticula_N : N ;
+fun cuticular_A : A ;
+fun cutin_N : N ;
+fun cutlas_N : N ;
+fun cutlass_N : N ;
+fun cutlassfish_N : N ;
+fun cutler_N : N ;
+fun cutlery_N : N ;
+fun cutlet_N : N ;
+fun cutoff_N : N ;
+fun cutout_N : N ;
+fun cutpurse_N : N ;
+fun cutter_N : N ;
+fun cutthroat_A : A ;
+fun cutthroat_N : N ;
+fun cutting_N : N ;
+fun cutting_room_N : N ;
+fun cuttingly_Adv : Adv ;
+fun cuttlefish_N : N ;
+fun cutwork_N : N ;
+fun cutworm_N : N ;
+fun cwt_N : N ;
+fun cyan_N : N ;
+fun cyanamide_N : N ;
+fun cyanide_N : N ;
+fun cyanobacteria_N : N ;
+fun cyanobacterial_A : A ;
+fun cyanogen_N : N ;
+fun cyanogenetic_A : A ;
+fun cyanohydrin_N : N ;
+fun cyanosis_N : N ;
+fun cyberart_N : N ;
+fun cybercafe_N : N ;
+fun cybercrime_N : N ;
+fun cyberculture_N : N ;
+fun cybernaut_N : N ;
+fun cybernetic_A : A ;
+fun cybernetics_N : N ;
+fun cyberphobia_N : N ;
+fun cyberpunk_N : N ;
+fun cybersex_N : N ;
+fun cyborg_N : N ;
+fun cycad_N : N ;
+fun cyclamen_N : N ;
+fun cycle_N : N ;
+fun cycle_V : V ;
+fun cyclic_A : A ;
+fun cyclical_A : A ;
+fun cyclicity_N : N ;
+fun cycling_N : N ;
+fun cyclist_N : N ;
+fun cyclobenzaprine_N : N ;
+fun cyclohexanol_N : N ;
+fun cycloid_A : A ;
+fun cycloid_N : N ;
+fun cyclone_N : N ;
+fun cyclonic_A : A ;
+fun cyclooxygenase_N : N ;
+fun cyclopaedia_N : N ;
+fun cyclopean_A : A ;
+fun cyclopia_N : N ;
+fun cyclopropane_N : N ;
+fun cyclops_N : N ;
+fun cycloserine_N : N ;
+fun cyclosis_N : N ;
+fun cyclostome_N : N ;
+fun cyclostyle_N : N ;
+fun cyclostyle_V : V ;
+fun cyclothymia_N : N ;
+fun cyclothymic_A : A ;
+fun cyclotron_N : N ;
+fun cyder_N : N ;
+fun cygnet_N : N ;
+fun cylinder_N : N ;
+fun cylindrical_A : A ;
+fun cylindricality_N : N ;
+fun cyma_N : N ;
+fun cymbal_N : N ;
+fun cymbalist_N : N ;
+fun cymbid_N : N ;
+fun cyme_N : N ;
+fun cymene_N : N ;
+fun cymling_N : N ;
+fun cymose_A : A ;
+fun cymule_N : N ;
+fun cynancum_N : N ;
+fun cynic_N : N ;
+fun cynical_A : A ;
+fun cynicism_N : N ;
+fun cynodont_N : N ;
+fun cynophobia_N : N ;
+fun cynosure_N : N ;
+fun cypher_N : N ;
+fun cypher_V : V ;
+fun cypress_N : N ;
+fun cyprian_A : A ;
+fun cyprinid_A : A ;
+fun cyprinid_N : N ;
+fun cyprinodont_N : N ;
+fun cypriot_A : A ;
+fun cypriot_N : N ;
+fun cypripedia_N : N ;
+fun cyproheptadine_N : N ;
+fun cyrilla_N : N ;
+fun cyrillic_A : A ;
+fun cyst_N : N ;
+fun cysteine_N : N ;
+fun cystic_A : A ;
+fun cystine_N : N ;
+fun cystitis_N : N ;
+fun cystocele_N : N ;
+fun cystoplegia_N : N ;
+fun cytoarchitectural_A : A ;
+fun cytoarchitecture_N : N ;
+fun cytochrome_N : N ;
+fun cytogenesis_N : N ;
+fun cytogenetic_A : A ;
+fun cytogeneticist_N : N ;
+fun cytogenetics_N : N ;
+fun cytokine_N : N ;
+fun cytokinesis_N : N ;
+fun cytokinetic_A : A ;
+fun cytological_A : A ;
+fun cytologist_N : N ;
+fun cytology_N : N ;
+fun cytolysin_N : N ;
+fun cytolysis_N : N ;
+fun cytolytic_A : A ;
+fun cytomegalic_A : A ;
+fun cytomegalovirus_N : N ;
+fun cytopathogenic_A : A ;
+fun cytopenia_N : N ;
+fun cytophotometer_N : N ;
+fun cytophotometric_A : A ;
+fun cytophotometrically_Adv : Adv ;
+fun cytophotometry_N : N ;
+fun cytoplasm_N : N ;
+fun cytoplasmic_A : A ;
+fun cytoplasmically_Adv : Adv ;
+fun cytoplast_N : N ;
+fun cytoplastic_A : A ;
+fun cytosine_N : N ;
+fun cytoskeleton_N : N ;
+fun cytosol_N : N ;
+fun cytostome_N : N ;
+fun cytotoxic_A : A ;
+fun cytotoxicity_N : N ;
+fun cytotoxin_N : N ;
+fun czar_N : N ;
+fun czarina_N : N ;
+fun czarist_A : A ;
+fun czechoslovak_A : A ;
+fun da'wah_N : N ;
+fun dab_N : N ;
+fun dab_V : V ;
+fun dabble_V : V ;
+fun dabbler_N : N ;
+fun dabchick_N : N ;
+fun dace_N : N ;
+fun dacha_N : N ;
+fun dachshund_N : N ;
+fun dacite_N : N ;
+fun dacitic_A : A ;
+fun dacoit_N : N ;
+fun dacoity_N : N ;
+fun dacryocystitis_N : N ;
+fun dacryon_N : N ;
+fun dactyl_N : N ;
+fun dactylic_A : A ;
+fun dactylomegaly_N : N ;
+fun dad_N : N ;
+fun dada_N : N ;
+fun daddy_N : N ;
+fun daddy_longlegs_N : N ;
+fun dado_N : N ;
+fun daedal_A : A ;
+fun daemon_N : N ;
+fun daffodil_N : N ;
+fun daft_A : A ;
+fun dagame_N : N ;
+fun dagga_N : N ;
+fun dagger_N : N ;
+fun daggerboard_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 daintiness_N : N ;
+fun dainty_A : A ;
+fun dainty_N : N ;
+fun daiquiri_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 daisybush_N : N ;
+fun daisylike_A : A ;
+fun dalasi_N : N ;
+fun dale_N : N ;
+fun dalesman_N : N ;
+fun daleth_N : N ;
+fun dalliance_N : N ;
+fun dallier_N : N ;
+fun dallisgrass_N : N ;
+fun dally_V : V ;
+fun dalmatian_N : N ;
+fun dam_N : N ;
+fun dam_V : V ;
+fun damage_N : N ;
+fun damage_V : V ;
+fun damages_N : N ;
+fun damaging_A : A ;
+fun damascene_A : A ;
+fun damascene_N : N ;
+fun damascene_V : V ;
+fun damask_A : A ;
+fun damask_N : N ;
+fun dame_N : N ;
+fun dammar_N : N ;
+fun damn_A : A ;
+fun damn_N : N ;
+fun damn_V : V ;
+fun damnable_A : A ;
+fun damnation_N : N ;
+fun damnatory_A : A ;
+fun damned_Adv : Adv ;
+fun damned_N : N ;
+fun damourite_N : N ;
+fun damp_A : A ;
+fun damp_N : N ;
+fun damp_V : V ;
+fun dampen_V : V ;
+fun dampener_N : N ;
+fun damper_N : N ;
+fun dampish_A : A ;
+fun dampness_N : N ;
+fun damsel_N : N ;
+fun damselfish_N : N ;
+fun damselfly_N : N ;
+fun damson_N : N ;
+fun danaid_N : N ;
+fun dance_N : N ;
+fun dance_V : V ;
+fun dance_band_N : N ;
+fun dance_hall_N : N ;
+fun dance_orchestra_N : N ;
+fun danceable_A : A ;
+fun dancer_N : N ;
+fun dancing_N : N ;
+fun dandelion_N : N ;
+fun dander_N : N ;
+fun dandified_A : A ;
+fun dandle_V : V ;
+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 dangerousness_N : N ;
+fun dangle_V : V ;
+fun dangleberry_N : N ;
+fun daniel_N : N ;
+fun dank_A : A ;
+fun dankness_N : N ;
+fun danse_macabre_N : N ;
+fun danseur_N : N ;
+fun daphne_N : N ;
+fun daphnia_N : N ;
+fun dapper_A : A ;
+fun dapple_V : V ;
+fun dapple_grey_A : A ;
+fun dapple_grey_N : N ;
+fun dapsone_N : N ;
+fun daraf_N : N ;
+fun dare_N : N ;
+fun dare_V : V ;
+fun daredevil_A : A ;
+fun daredevil_N : N ;
+fun daredevilry_N : N ;
+fun daring_N : N ;
+fun daringly_Adv : Adv ;
+fun dark_A : A ;
+fun dark_N : N ;
+fun darken_V : V ;
+fun darkey_N : N ;
+fun darkie_N : N ;
+fun darkish_A : A ;
+fun darkling_A : A ;
+fun darkness_N : N ;
+fun darkroom_N : N ;
+fun darky_N : N ;
+fun darling_N : N ;
+fun darmstadtium_N : N ;
+fun darn_N : N ;
+fun darn_V : V ;
+fun darnel_N : N ;
+fun darner_N : N ;
+fun darning_N : N ;
+fun darning_needle_N : N ;
+fun dart_N : N ;
+fun dart_V : V ;
+fun dartboard_N : N ;
+fun darter_N : N ;
+fun darts_N : N ;
+fun dash_N : N ;
+fun dash_V : V ;
+fun dashboard_N : N ;
+fun dashiki_N : N ;
+fun dashingly_Adv : Adv ;
+fun dastard_N : N ;
+fun dastardliness_N : N ;
+fun dastardly_A : A ;
+fun dasymeter_N : N ;
+fun dasyure_N : N ;
+fun data_N : N ;
+fun database_N : N ;
+fun datable_A : A ;
+fun date_N : N ;
+fun date_V : V ;
+fun dateless_A : A ;
+fun dateline_N : N ;
+fun dating_N : N ;
+fun dative_A : A ;
+fun dative_N : N ;
+fun datum_N : N ;
+fun daub_N : N ;
+fun daub_V : V ;
+fun dauber_N : N ;
+fun daughter_N : N ;
+fun daughter_in_law_N : N ;
+fun daughterly_A : A ;
+fun daunt_V : V ;
+fun daunting_A : A ;
+fun dauntless_A : A ;
+fun dauntlessness_N : N ;
+fun dauphin_N : N ;
+fun davallia_N : N ;
+fun davenport_N : N ;
+fun davit_N : N ;
+fun daw_N : N ;
+fun dawdle_V : V ;
+fun dawdler_N : N ;
+fun dawn_N : N ;
+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 daybed_N : N ;
+fun daybook_N : N ;
+fun dayboy_N : N ;
+fun daybreak_N : N ;
+fun daycare_N : N ;
+fun daydream_N : N ;
+fun daydream_V : V ;
+fun daydreamer_N : N ;
+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 days_N : N ;
+fun dayspring_N : N ;
+fun daytime_N : N ;
+fun daze_N : N ;
+fun daze_V : V ;
+fun dazedly_Adv : Adv ;
+fun dazzle_N : N ;
+fun dazzle_V : V ;
+fun dazzling_A : A ;
+fun ddt_N : N ;
+fun deVries_N : N ;
+fun de_emphasize_V : V ;
+fun de_escalate_V : V ;
+fun de_escalation_N : N ;
+fun de_facto_A : A ;
+fun de_facto_Adv : Adv ;
+fun de_ice_V : V ;
+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_V : V ;
+fun deactivation_N : N ;
+fun dead_A : A ;
+fun dead_Adv : Adv ;
+fun dead_N : N ;
+fun deaden_V : V ;
+fun deadeye_N : N ;
+fun deadhead_N : N ;
+fun deadlight_N : N ;
+fun deadline_N : N ;
+fun deadliness_N : N ;
+fun deadlock_N : N ;
+fun deadlock_V : V ;
+fun deadlocked_A : A ;
+fun deadly_A : A ;
+fun deadness_N : N ;
+fun deadpan_A : A ;
+fun deadpan_Adv : Adv ;
+fun deadwood_N : N ;
+fun deaf_A : A ;
+fun deaf_N : N ;
+fun deaf_aid_N : N ;
+fun deaf_mute_N : N ;
+fun deafen_V : V ;
+fun deafening_A : A ;
+fun deafness_N : N ;
+fun deal_Adv : Adv ;
+fun deal_N : N ;
+fun deal_V : V ;
+fun dealer_N : N ;
+fun dealfish_N : N ;
+fun dealignment_N : N ;
+fun dealing_N : N ;
+fun dealings_N : N ;
+fun deamination_N : N ;
+fun dean_N : N ;
+fun deanery_N : N ;
+fun deanship_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 deathrate_N : N ;
+fun deathtrap_N : N ;
+fun deb_N : N ;
+fun debag_V : V ;
+fun debar_V : V ;
+fun debark_V : V ;
+fun debarkation_N : N ;
+fun debarment_N : N ;
+fun debase_V : V ;
+fun debasement_N : N ;
+fun debaser_N : N ;
+fun debasing_A : A ;
+fun debatable_A : A ;
+fun debate_N : N ;
+fun debate_V : V ;
+fun debater_N : N ;
+fun debauch_N : N ;
+fun debauch_V : V ;
+fun debauchee_N : N ;
+fun debauchery_N : N ;
+fun debenture_N : N ;
+fun debilitate_V : V ;
+fun debilitating_A : A ;
+fun debilitation_N : N ;
+fun debilitative_A : A ;
+fun debility_N : N ;
+fun debit_N : N ;
+fun debit_V : V ;
+fun debit_side_N : N ;
+fun debonair_A : A ;
+fun debouch_V : V ;
+fun debridement_N : N ;
+fun debrief_V : V ;
+fun debriefing_N : N ;
+fun debris_N : N ;
+fun debt_N : N ;
+fun debtor_N : N ;
+fun debug_V : V ;
+fun debugger_N : N ;
+fun debunk_V : V ;
+fun debut_N : N ;
+fun debut_V : V ;
+fun debutante_N : N ;
+fun decade_N : N ;
+fun decadence_N : N ;
+fun decadent_A : A ;
+fun decadent_N : N ;
+fun decagon_N : N ;
+fun decahedron_N : N ;
+fun decal_N : N ;
+fun decalcification_N : N ;
+fun decalcomania_N : N ;
+fun decalescence_N : N ;
+fun decalescent_A : A ;
+fun decalogue_N : N ;
+fun decameter_N : N ;
+fun decamp_V : V ;
+fun decampment_N : N ;
+fun decant_V : V ;
+fun decantation_N : N ;
+fun decanter_N : N ;
+fun decapitate_V : V ;
+fun decapitation_N : N ;
+fun decapod_N : N ;
+fun decarbonize_V : V ;
+fun decarboxylase_N : N ;
+fun decarboxylation_N : N ;
+fun decasyllabic_A : A ;
+fun decasyllable_N : N ;
+fun decathlon_N : N ;
+fun decay_N : N ;
+fun decay_V : V ;
+fun decayable_A : A ;
+fun decayed_A : A ;
+fun decease_N : N ;
+fun decease_V : V ;
+fun deceit_N : N ;
+fun deceitful_A : A ;
+fun deceitfulness_N : N ;
+fun deceive_V : V ;
+fun deceiver_N : N ;
+fun deceivingly_Adv : Adv ;
+fun decelerate_V : V ;
+fun deceleration_N : N ;
+fun decency_N : N ;
+fun decent_A : A ;
+fun decentralisation_N : N ;
+fun decentralization_N : N ;
+fun decentralize_V : V ;
+fun deception_N : N ;
+fun deceptive_A : A ;
+fun deceptiveness_N : N ;
+fun decibel_N : N ;
+fun decide_V : V ;
+fun decided_A : A ;
+fun decidua_N : N ;
+fun deciduous_A : A ;
+fun decigram_N : N ;
+fun decile_N : N ;
+fun deciliter_N : N ;
+fun decimal_A : A ;
+fun decimal_N : N ;
+fun decimalization_N : N ;
+fun decimalize_V : V ;
+fun decimate_V : V ;
+fun decimation_N : N ;
+fun decimeter_N : N ;
+fun decipher_V : V ;
+fun decipherable_A : A ;
+fun decipherer_N : N ;
+fun decision_N : N ;
+fun decisive_A : A ;
+fun decisiveness_N : N ;
+fun deck_N : N ;
+fun deck_V : V ;
+fun decker_N : N ;
+fun deckhand_N : N ;
+fun deckle_N : N ;
+fun deckle_edged_A : A ;
+fun deckled_A : A ;
+fun declaim_V : V ;
+fun declamation_N : N ;
+fun declamatory_A : A ;
+fun declarable_A : A ;
+fun declaration_N : N ;
+fun declarative_A : A ;
+fun declare_V : V ;
+fun declassification_N : N ;
+fun declassify_V : V ;
+fun declension_N : N ;
+fun declination_N : N ;
+fun decline_N : N ;
+fun decline_V : V ;
+fun declinometer_N : N ;
+fun declivitous_A : A ;
+fun declivity_N : N ;
+fun declutch_V : V ;
+fun deco_N : N ;
+fun decoction_N : N ;
+fun decode_V : V ;
+fun decoder_N : N ;
+fun decoding_N : N ;
+fun decoke_V : V ;
+fun decolletage_N : N ;
+fun decolonization_N : N ;
+fun decolonize_V : V ;
+fun decompose_V : V ;
+fun decomposition_N : N ;
+fun decompositional_A : A ;
+fun decompound_A : A ;
+fun decompress_V : V ;
+fun decompression_N : N ;
+fun decongestant_N : N ;
+fun deconsecrated_A : A ;
+fun deconstruction_N : N ;
+fun deconstructionist_A : A ;
+fun deconstructivism_N : N ;
+fun decontaminate_V : V ;
+fun decontamination_N : N ;
+fun decontrol_V : V ;
+fun decorate_V : V ;
+fun decoration_N : N ;
+fun decorative_A : A ;
+fun decorativeness_N : N ;
+fun decorator_N : N ;
+fun decorous_A : A ;
+fun decortication_N : N ;
+fun decorum_N : N ;
+fun decoupage_N : N ;
+fun decoy_N : N ;
+fun decoy_V : V ;
+fun decrease_N : N ;
+fun decrease_V : V ;
+fun decree_N : N ;
+fun decree_V : V ;
+fun decree_nisi_N : N ;
+fun decrepit_A : A ;
+fun decrepitation_N : N ;
+fun decrepitude_N : N ;
+fun decrescendo_A : A ;
+fun decrescendo_N : N ;
+fun decribe_V : V ;
+fun decriminalization_N : N ;
+fun decry_V : V ;
+fun decubitus_N : N ;
+fun decumary_N : N ;
+fun decurved_A : A ;
+fun decussate_A : A ;
+fun dedicate_V : V ;
+fun dedication_N : N ;
+fun dedifferentiated_A : A ;
+fun dedifferentiation_N : N ;
+fun deduce_V : V ;
+fun deducible_A : A ;
+fun deduct_V : V ;
+fun deductible_A : A ;
+fun deductible_N : N ;
+fun deduction_N : N ;
+fun deductive_A : A ;
+fun deed_N : N ;
+fun deed_box_N : N ;
+fun deedpoll_N : N ;
+fun deem_V : V ;
+fun deep_A : A ;
+fun deep_Adv : Adv ;
+fun deep_N : N ;
+fun deep_freeze_N : N ;
+fun deep_freeze_V : V ;
+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 deepening_N : N ;
+fun deepness_N : N ;
+fun deer_N : N ;
+fun deerberry_N : N ;
+fun deerskin_N : N ;
+fun deerstalker_N : N ;
+fun deerstalking_N : N ;
+fun deface_V : V ;
+fun defacement_N : N ;
+fun defalcation_N : N ;
+fun defamation_N : N ;
+fun defamatory_A : A ;
+fun defame_V : V ;
+fun defamer_N : N ;
+fun default_N : N ;
+fun default_V : V ;
+fun defaulter_N : N ;
+fun defeasible_A : A ;
+fun defeat_N : N ;
+fun defeat_V : V ;
+fun defeated_N : N ;
+fun defeatism_N : N ;
+fun defeatist_N : N ;
+fun defecate_V : V ;
+fun defecation_N : N ;
+fun defecator_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 defendable_A : A ;
+fun defendant_N : N ;
+fun defender_N : N ;
+fun defenestration_N : N ;
+fun defense_N : N ;
+fun defenseless_A : A ;
+fun defenseless_Adv : Adv ;
+fun defenselessness_N : N ;
+fun defensibility_N : N ;
+fun defensible_A : A ;
+fun defensive_A : A ;
+fun defensive_N : N ;
+fun defensiveness_N : N ;
+fun defer_V : V ;
+fun deference_N : N ;
+fun deferent_A : A ;
+fun deferential_A : A ;
+fun deferment_N : N ;
+fun deferral_N : N ;
+fun defervescence_N : N ;
+fun defervescent_A : A ;
+fun defiance_N : N ;
+fun defiant_A : A ;
+fun defibrillation_N : N ;
+fun defibrillator_N : N ;
+fun deficiency_N : N ;
+fun deficient_A : A ;
+fun deficit_N : N ;
+fun defilade_N : N ;
+fun defile_N : N ;
+fun defile_V : V ;
+fun defilement_N : N ;
+fun definable_A : A ;
+fun define_V : V ;
+fun definite_A : A ;
+fun definition_N : N ;
+fun definitive_A : A ;
+fun deflagration_N : N ;
+fun deflate_V : V ;
+fun deflation_N : N ;
+fun deflationary_A : A ;
+fun deflator_N : N ;
+fun deflect_V : V ;
+fun deflection_N : N ;
+fun deflective_A : A ;
+fun deflector_N : N ;
+fun defloration_N : N ;
+fun deflower_V : V ;
+fun defoliant_N : N ;
+fun defoliate_A : A ;
+fun defoliate_V : V ;
+fun defoliation_N : N ;
+fun defoliator_N : N ;
+fun deforest_V : V ;
+fun deforestation_N : N ;
+fun deform_V : V ;
+fun deformation_N : N ;
+fun deformational_A : A ;
+fun deformity_N : N ;
+fun defraud_V : V ;
+fun defray_V : V ;
+fun defrayal_N : N ;
+fun defrayment_N : N ;
+fun defrock_V : V ;
+fun defrost_V : V ;
+fun defroster_N : N ;
+fun deft_A : A ;
+fun deftness_N : N ;
+fun defunct_A : A ;
+fun defuse_V : V ;
+fun defy_V : V ;
+fun degage_A : A ;
+fun degauss_V : V ;
+fun degaussing_N : N ;
+fun degeneracy_N : N ;
+fun degenerate_A : A ;
+fun degenerate_N : N ;
+fun degenerate_V : V ;
+fun degeneration_N : N ;
+fun degenerative_A : A ;
+fun degradation_N : N ;
+fun degrade_V : V ;
+fun degree_N : N ;
+fun degressive_A : A ;
+fun dehiscence_N : N ;
+fun dehiscent_A : A ;
+fun dehorn_V : V ;
+fun dehumanization_N : N ;
+fun dehumanize_V : V ;
+fun dehydrate_V : V ;
+fun dehydration_N : N ;
+fun deictic_A : A ;
+fun deictic_N : N ;
+fun deific_A : A ;
+fun deification_N : N ;
+fun deify_V : V ;
+fun deign_V : V ;
+fun deinocheirus_N : N ;
+fun deinonychus_N : N ;
+fun deipnosophist_N : N ;
+fun deism_N : N ;
+fun deist_A : A ;
+fun deist_N : N ;
+fun deity_N : N ;
+fun deixis_N : N ;
+fun deject_V : V ;
+fun dejectedly_Adv : Adv ;
+fun dejection_N : N ;
+fun dekagram_N : N ;
+fun dekaliter_N : N ;
+fun dekko_N : N ;
+fun delavirdine_N : N ;
+fun delay_N : N ;
+fun delay_V : V ;
+fun delayed_action_A : A ;
+fun delayed_action_N : N ;
+fun delayer_N : N ;
+fun delectability_N : N ;
+fun delectable_A : A ;
+fun delectation_N : N ;
+fun delegacy_N : N ;
+fun delegate_N : N ;
+fun delegate_V : V ;
+fun delegating_N : N ;
+fun delegation_N : N ;
+fun delete_V : V ;
+fun deleterious_A : A ;
+fun deletion_N : N ;
+fun delf_N : N ;
+fun delft_N : N ;
+fun deliberate_A : A ;
+fun deliberate_V : V ;
+fun deliberation_N : N ;
+fun deliberative_A : A ;
+fun delible_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 delightedly_Adv : Adv ;
+fun delightful_A : A ;
+fun delimit_V : V ;
+fun delimitate_V : V ;
+fun delimitation_N : N ;
+fun delineate_V : V ;
+fun delineation_N : N ;
+fun delineative_A : A ;
+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 deliverable_A : A ;
+fun deliverable_N : N ;
+fun deliverance_N : N ;
+fun deliverer_N : N ;
+fun delivery_N : N ;
+fun deliveryman_N : N ;
+fun dell_N : N ;
+fun delouse_V : V ;
+fun delphic_A : A ;
+fun delphinium_N : N ;
+fun delta_N : N ;
+fun deltoid_A : A ;
+fun deltoid_N : N ;
+fun delude_V : V ;
+fun deluge_N : N ;
+fun deluge_V : V ;
+fun delusion_N : N ;
+fun delusional_A : A ;
+fun delusive_A : A ;
+fun deluxe_A : A ;
+fun delve_V : V ;
+fun demagnetization_N : N ;
+fun demagnetize_V : V ;
+fun demagogic_A : A ;
+fun demagogue_N : N ;
+fun demagoguery_N : N ;
+fun demagogy_N : N ;
+fun demand_N : N ;
+fun demand_V : V ;
+fun demander_N : N ;
+fun demanding_A : A ;
+fun demantoid_N : N ;
+fun demarcate_V : V ;
+fun demarcation_N : N ;
+fun demean_V : V ;
+fun demeaning_A : A ;
+fun demeanor_N : N ;
+fun demeanour_N : N ;
+fun demented_A : A ;
+fun dementia_N : N ;
+fun demerara_N : N ;
+fun demerit_N : N ;
+fun demesne_N : N ;
+fun demiglace_N : N ;
+fun demigod_N : N ;
+fun demijohn_N : N ;
+fun demilitarisation_N : N ;
+fun demilitarization_N : N ;
+fun demilitarize_V : V ;
+fun demimondaine_N : N ;
+fun demimonde_N : N ;
+fun demineralization_N : N ;
+fun demise_N : N ;
+fun demist_V : V ;
+fun demister_N : N ;
+fun demitasse_N : N ;
+fun demiurge_N : N ;
+fun demo_N : N ;
+fun demob_V : V ;
+fun demobilisation_N : N ;
+fun demobilization_N : N ;
+fun demobilize_V : V ;
+fun democracy_N : N ;
+fun democrat_N : N ;
+fun democratic_A : A ;
+fun democratically_Adv : Adv ;
+fun democratisation_N : N ;
+fun democratization_N : N ;
+fun democratize_V : V ;
+fun demodulation_N : N ;
+fun demographer_N : N ;
+fun demographic_A : A ;
+fun demographic_N : N ;
+fun demography_N : N ;
+fun demolish_V : V ;
+fun demolition_N : N ;
+fun demon_N : N ;
+fun demonetization_N : N ;
+fun demonetize_V : V ;
+fun demoniac_A : A ;
+fun demoniac_N : N ;
+fun demoniacal_A : A ;
+fun demonic_A : A ;
+fun demonization_N : N ;
+fun demonize_V : V ;
+fun demonstrability_N : N ;
+fun demonstrable_A : A ;
+fun demonstrate_V : V ;
+fun demonstration_N : N ;
+fun demonstrative_A : A ;
+fun demonstrativeness_N : N ;
+fun demonstrator_N : N ;
+fun demoralization_N : N ;
+fun demoralize_V : V ;
+fun demoralizing_A : A ;
+fun demote_V : V ;
+fun demotic_A : A ;
+fun demotion_N : N ;
+fun demulcent_A : A ;
+fun demulcent_N : N ;
+fun demur_N : N ;
+fun demur_V : V ;
+fun demure_A : A ;
+fun demureness_N : N ;
+fun demurrage_N : N ;
+fun demurrer_N : N ;
+fun demyelination_N : N ;
+fun demythologization_N : N ;
+fun demythologized_A : A ;
+fun den_N : N ;
+fun denar_N : N ;
+fun denary_A : A ;
+fun denationalisation_N : N ;
+fun denationalization_N : N ;
+fun denationalize_V : V ;
+fun denaturant_N : N ;
+fun denatured_A : A ;
+fun denazification_N : N ;
+fun dendrite_N : N ;
+fun dendritic_A : A ;
+fun dendrobium_N : N ;
+fun dengue_N : N ;
+fun deniable_A : A ;
+fun denial_N : N ;
+fun denier_N : N ;
+fun denigrate_V : V ;
+fun denigration_N : N ;
+fun denim_N : N ;
+fun denizen_N : N ;
+fun denominate_V : V ;
+fun denomination_N : N ;
+fun denominational_A : A ;
+fun denominationalism_N : N ;
+fun denominator_N : N ;
+fun denotative_A : A ;
+fun denotatum_N : N ;
+fun denote_V : V ;
+fun denounce_V : V ;
+fun dense_A : A ;
+fun denseness_N : N ;
+fun densimeter_N : N ;
+fun densitometer_N : N ;
+fun densitometry_N : N ;
+fun density_N : N ;
+fun dent_N : N ;
+fun dent_V : V ;
+fun dental_A : A ;
+fun dentate_A : A ;
+fun denticle_N : N ;
+fun denticulate_A : A ;
+fun dentifrice_N : N ;
+fun dentine_N : N ;
+fun dentist_N : N ;
+fun dentistry_N : N ;
+fun dentition_N : N ;
+fun denture_N : N ;
+fun denudation_N : N ;
+fun denude_V : V ;
+fun denunciation_N : N ;
+fun deny_V : V ;
+fun deodar_N : N ;
+fun deodorant_N : N ;
+fun deodorize_V : V ;
+fun deossification_N : N ;
+fun deoxyadenosine_N : N ;
+fun deoxycytidine_N : N ;
+fun deoxyguanosine_N : N ;
+fun deoxyribose_N : N ;
+fun deoxythymidine_N : N ;
+fun depart_V : V ;
+fun departed_A : A ;
+fun departed_N : N ;
+fun departer_N : N ;
+fun department_N : N ;
+fun departmental_A : A ;
+fun departure_N : N ;
+fun depend_V : V ;
+fun dependability_N : N ;
+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 depersonalization_N : N ;
+fun depict_V : V ;
+fun depicting_N : N ;
+fun depiction_N : N ;
+fun depigmentation_N : N ;
+fun depilation_N : N ;
+fun depilatory_A : A ;
+fun depilatory_N : N ;
+fun depilous_A : A ;
+fun deplane_V : V ;
+fun depletable_A : A ;
+fun deplete_V : V ;
+fun depletion_N : N ;
+fun deplorable_A : A ;
+fun deplore_V : V ;
+fun deploy_V : V ;
+fun deployment_N : N ;
+fun depolarization_N : N ;
+fun deponent_N : N ;
+fun depopulate_V : V ;
+fun depopulation_N : N ;
+fun deport_V : V ;
+fun deportation_N : N ;
+fun deportee_N : N ;
+fun deportment_N : N ;
+fun depose_V : V ;
+fun deposit_N : N ;
+fun deposit_V : V ;
+fun deposition_N : N ;
+fun depositor_N : N ;
+fun depository_N : N ;
+fun depot_N : N ;
+fun deprave_V : V ;
+fun depravity_N : N ;
+fun deprecate_V : V ;
+fun deprecation_N : N ;
+fun deprecative_A : A ;
+fun depreciate_V : V ;
+fun depreciation_N : N ;
+fun depreciatory_A : A ;
+fun depredation_N : N ;
+fun depress_V : V ;
+fun depressant_A : A ;
+fun depressing_A : A ;
+fun depression_N : N ;
+fun depressive_A : A ;
+fun depressive_N : N ;
+fun depressor_N : N ;
+fun deprivation_N : N ;
+fun deprive_V : V ;
+fun depth_N : N ;
+fun depth_bomb_N : N ;
+fun depth_charge_N : N ;
+fun deputation_N : N ;
+fun depute_V : V ;
+fun deputize_V : V ;
+fun deputy_N : N ;
+fun derail_V : V ;
+fun derailment_N : N ;
+fun derange_V : V ;
+fun derangement_N : N ;
+fun derate_V : V ;
+fun derby_N : N ;
+fun deregulate_V : V ;
+fun deregulation_N : N ;
+fun derelict_A : A ;
+fun derelict_N : N ;
+fun dereliction_N : N ;
+fun derequisition_V : V ;
+fun derestrict_V : V ;
+fun deride_V : V ;
+fun derision_N : N ;
+fun derisive_A : A ;
+fun derisory_A : A ;
+fun derivable_A : A ;
+fun derivation_N : N ;
+fun derivational_A : A ;
+fun derivative_A : A ;
+fun derivative_N : N ;
+fun derive_V : V ;
+fun deriving_N : N ;
+fun dermabrasion_N : N ;
+fun dermal_A : A ;
+fun dermatitis_N : N ;
+fun dermatoglyphic_N : N ;
+fun dermatoglyphics_N : N ;
+fun dermatologic_A : A ;
+fun dermatologist_N : N ;
+fun dermatology_N : N ;
+fun dermatome_N : N ;
+fun dermatomycosis_N : N ;
+fun dermatomyositis_N : N ;
+fun dermatosis_N : N ;
+fun dermis_N : N ;
+fun derogate_V : V ;
+fun derogation_N : N ;
+fun derogative_A : A ;
+fun derogatory_A : A ;
+fun derrick_N : N ;
+fun derring_do_N : N ;
+fun derringer_N : N ;
+fun derris_N : N ;
+fun derv_N : N ;
+fun dervish_N : N ;
+fun des_N : N ;
+fun desalinate_V : V ;
+fun desalination_N : N ;
+fun desalinization_N : N ;
+fun desalinize_V : V ;
+fun desalt_V : V ;
+fun descale_V : V ;
+fun descant_N : N ;
+fun descant_V : V ;
+fun descend_V : V ;
+fun descendant_A : A ;
+fun descendant_N : N ;
+fun descendants_N : N ;
+fun descender_N : N ;
+fun descent_N : N ;
+fun describable_A : A ;
+fun describe_V : V ;
+fun description_N : N ;
+fun descriptive_A : A ;
+fun descriptivism_N : N ;
+fun descriptor_N : N ;
+fun descry_V : V ;
+fun desecrate_V : V ;
+fun desecration_N : N ;
+fun desegrated_A : A ;
+fun desegregate_V : V ;
+fun desegregation_N : N ;
+fun desensitization_N : N ;
+fun desensitize_V : V ;
+fun desensitizing_A : A ;
+fun desert_A : A ;
+fun desert_N : N ;
+fun desert_V : V ;
+fun deserter_N : N ;
+fun desertification_N : N ;
+fun desertion_N : N ;
+fun deserts_N : N ;
+fun deserve_V : V ;
+fun deservedly_Adv : Adv ;
+fun deservingness_N : N ;
+fun desiccant_N : N ;
+fun desiccate_V : V ;
+fun desideratum_N : N ;
+fun design_N : N ;
+fun design_V : V ;
+fun designate_A : A ;
+fun designate_V : V ;
+fun designation_N : N ;
+fun designative_A : A ;
+fun designatum_N : N ;
+fun designedly_Adv : Adv ;
+fun designer_N : N ;
+fun designing_N : N ;
+fun desipramine_N : N ;
+fun desirability_N : N ;
+fun desirable_A : A ;
+fun desire_N : N ;
+fun desire_V : V ;
+fun desirous_A : A ;
+fun desist_V : V ;
+fun desk_N : N ;
+fun desktop_N : N ;
+fun desmid_N : N ;
+fun desolate_A : A ;
+fun desolate_V : V ;
+fun desolation_N : N ;
+fun desorption_N : N ;
+fun despair_N : N ;
+fun despair_V : V ;
+fun despairingly_Adv : Adv ;
+fun despatch_N : N ;
+fun despatch_V : V ;
+fun desperado_N : N ;
+fun desperate_A : A ;
+fun desperate_N : N ;
+fun desperation_N : N ;
+fun despicable_A : A ;
+fun despisal_N : N ;
+fun despise_V : V ;
+fun despite_N : N ;
+fun despite_Prep : Prep ;
+fun despiteful_A : A ;
+fun despoil_V : V ;
+fun despondency_N : N ;
+fun despondent_A : A ;
+fun despot_N : N ;
+fun despotic_A : A ;
+fun despotism_N : N ;
+fun desquamation_N : N ;
+fun dessert_N : N ;
+fun dessertspoon_N : N ;
+fun dessertspoonful_N : N ;
+fun dessiatine_N : N ;
+fun destabilisation_N : N ;
+fun destabilization_N : N ;
+fun destalinization_N : N ;
+fun destination_N : N ;
+fun destine_V : V ;
+fun destiny_N : N ;
+fun destitute_A : A ;
+fun destitution_N : N ;
+fun destroy_V : V ;
+fun destroyable_A : A ;
+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_V : V ;
+fun detachable_A : A ;
+fun detachment_N : N ;
+fun detail_N : N ;
+fun detail_V : V ;
+fun detain_V : V ;
+fun detainee_N : N ;
+fun detect_V : V ;
+fun detectable_A : A ;
+fun detection_N : N ;
+fun detective_N : N ;
+fun detector_N : N ;
+fun detention_N : N ;
+fun deter_V : V ;
+fun detergency_N : N ;
+fun detergent_A : A ;
+fun detergent_N : N ;
+fun deteriorate_V : V ;
+fun deterioration_N : N ;
+fun determent_N : N ;
+fun determinable_A : A ;
+fun determinant_A : A ;
+fun determinant_N : N ;
+fun determinate_A : A ;
+fun determinateness_N : N ;
+fun determination_N : N ;
+fun determinative_A : A ;
+fun determinative_N : N ;
+fun determine_V : V ;
+fun determinedly_Adv : Adv ;
+fun determiner_N : N ;
+fun determinism_N : N ;
+fun deterministic_A : A ;
+fun deterrence_N : N ;
+fun deterrent_A : A ;
+fun deterrent_N : N ;
+fun detest_V : V ;
+fun detestable_A : A ;
+fun detestation_N : N ;
+fun dethrone_V : V ;
+fun dethronement_N : N ;
+fun detonate_V : V ;
+fun detonation_N : N ;
+fun detonative_A : A ;
+fun detonator_N : N ;
+fun detour_N : N ;
+fun detour_V : V ;
+fun detox_N : N ;
+fun detoxification_N : N ;
+fun detract_V : V ;
+fun detraction_N : N ;
+fun detractive_A : A ;
+fun detractor_N : N ;
+fun detrain_V : V ;
+fun detribalization_N : N ;
+fun detribalize_V : V ;
+fun detriment_N : N ;
+fun detrimental_A : A ;
+fun detritus_N : N ;
+fun detumescence_N : N ;
+fun deuce_N : N ;
+fun deuced_A : A ;
+fun deuteranopia_N : N ;
+fun deuteranopic_A : A ;
+fun deuterium_N : N ;
+fun deuteron_N : N ;
+fun deutschmark_N : N ;
+fun deutzia_N : N ;
+fun devaluate_V : V ;
+fun devaluation_N : N ;
+fun devalue_V : V ;
+fun devastate_V : V ;
+fun devastation_N : N ;
+fun develop_V : V ;
+fun developer_N : N ;
+fun development_N : N ;
+fun developmental_A : A ;
+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_may_care_A : A ;
+fun devilish_A : A ;
+fun devilish_Adv : Adv ;
+fun devilment_N : N ;
+fun devilry_N : N ;
+fun deviltry_N : N ;
+fun devilwood_N : N ;
+fun devious_A : A ;
+fun deviousness_N : N ;
+fun devisal_N : N ;
+fun devise_N : N ;
+fun devise_V : V ;
+fun devisee_N : N ;
+fun devising_N : N ;
+fun devisor_N : N ;
+fun devitalization_N : N ;
+fun devitalize_V : V ;
+fun devoid_A : A ;
+fun devoir_N : N ;
+fun devolution_N : N ;
+fun devolve_V : V ;
+fun devote_V : V ;
+fun devotedly_Adv : Adv ;
+fun devotee_N : N ;
+fun devotion_N : N ;
+fun devotional_A : A ;
+fun devotional_N : N ;
+fun devour_V : V ;
+fun devourer_N : N ;
+fun devout_A : A ;
+fun devoutness_N : N ;
+fun dew_N : N ;
+fun dewberry_N : N ;
+fun dewdrop_N : N ;
+fun dewlap_N : N ;
+fun dewy_A : A ;
+fun dexamethasone_N : N ;
+fun dexter_A : A ;
+fun dexterity_N : N ;
+fun dexterous_A : A ;
+fun dextral_A : A ;
+fun dextrin_N : N ;
+fun dextrocardia_N : N ;
+fun dextrorotary_A : A ;
+fun dextrorotation_N : N ;
+fun dextrorse_A : A ;
+fun dextrose_N : N ;
+fun dextrous_A : A ;
+fun dhak_N : N ;
+fun dhawa_N : N ;
+fun dhole_N : N ;
+fun dhoti_N : N ;
+fun dhow_N : N ;
+fun diabatic_A : A ;
+fun diabetes_N : N ;
+fun diabetic_A : A ;
+fun diabetic_N : N ;
+fun diabolatry_N : N ;
+fun diabolic_A : A ;
+fun diabolical_A : A ;
+fun diabolism_N : N ;
+fun diachronic_A : A ;
+fun diacritic_A : A ;
+fun diacritic_N : N ;
+fun diacritical_A : A ;
+fun diadem_N : N ;
+fun diadromous_A : A ;
+fun diaeresis_N : N ;
+fun diagnosable_A : A ;
+fun diagnose_V : V ;
+fun diagnosis_N : N ;
+fun diagnostic_A : A ;
+fun diagnostician_N : N ;
+fun diagonal_A : A ;
+fun diagonal_N : N ;
+fun diagonalizable_A : A ;
+fun diagonalization_N : N ;
+fun diagram_N : N ;
+fun diagrammatic_A : A ;
+fun diagrammatical_A : A ;
+fun diakinesis_N : N ;
+fun dial_N : N ;
+fun dial_dialed_V : V ;
+fun dial_dialled_V : V ;
+fun dialect_N : N ;
+fun dialectal_A : A ;
+fun dialectic_A : A ;
+fun dialectic_N : N ;
+fun dialectical_A : A ;
+fun dialectician_N : N ;
+fun dialectics_N : N ;
+fun dialectology_N : N ;
+fun dialogue_N : N ;
+fun dialysis_N : N ;
+fun dialyzer_N : N ;
+fun diamagnet_N : N ;
+fun diamagnetic_A : A ;
+fun diamagnetism_N : N ;
+fun diamante_N : N ;
+fun diamantine_A : A ;
+fun diameter_N : N ;
+fun diametral_A : A ;
+fun diametric_A : A ;
+fun diametrically_Adv : Adv ;
+fun diamine_N : N ;
+fun diamond_N : N ;
+fun diamondback_N : N ;
+fun dianoetic_A : A ;
+fun diapason_N : N ;
+fun diapedesis_N : N ;
+fun diapensia_N : N ;
+fun diaper_N : N ;
+fun diaphanous_A : A ;
+fun diapheromera_N : N ;
+fun diaphone_N : N ;
+fun diaphoretic_A : A ;
+fun diaphoretic_N : N ;
+fun diaphragm_N : N ;
+fun diaphyseal_A : A ;
+fun diaphysis_N : N ;
+fun diapir_N : N ;
+fun diapsid_N : N ;
+fun diarchy_N : N ;
+fun diarist_N : N ;
+fun diarrhea_N : N ;
+fun diarrheal_A : A ;
+fun diarrhoea_N : N ;
+fun diary_N : N ;
+fun diaspora_N : N ;
+fun diastasis_N : N ;
+fun diastema_N : N ;
+fun diastole_N : N ;
+fun diastolic_A : A ;
+fun diastrophism_N : N ;
+fun diathermy_N : N ;
+fun diathesis_N : N ;
+fun diatom_N : N ;
+fun diatomic_A : A ;
+fun diatonic_A : A ;
+fun diatribe_N : N ;
+fun diazepam_N : N ;
+fun diazo_A : A ;
+fun diazonium_N : N ;
+fun diazoxide_N : N ;
+fun dibber_N : N ;
+fun dibble_N : N ;
+fun dibble_V : V ;
+fun dibranchiate_N : N ;
+fun dibs_N : N ;
+fun dibucaine_N : N ;
+fun dicamptodon_N : N ;
+fun dicarboxylic_A : A ;
+fun dice_N : N ;
+fun dice_V : V ;
+fun dice_box_N : N ;
+fun dicer_N : N ;
+fun dicey_A : A ;
+fun dichloride_N : N ;
+fun dichlorodiphenyltrichloroethane_N : N ;
+fun dichondra_N : N ;
+fun dichotomization_N : N ;
+fun dichotomous_A : A ;
+fun dichotomy_N : N ;
+fun dichroism_N : N ;
+fun dichromacy_N : N ;
+fun dichromat_N : N ;
+fun dichromatic_A : A ;
+fun dick_N : N ;
+fun dickens_N : N ;
+fun dicker_V : V ;
+fun dickey_N : N ;
+fun dickeybird_N : N ;
+fun dicky_A : A ;
+fun dicky_N : N ;
+fun dicky_seat_N : N ;
+fun dickybird_N : N ;
+fun diclinous_A : A ;
+fun dicloxacillin_N : N ;
+fun dicot_N : N ;
+fun dicotyledonous_A : A ;
+fun dictaphone_N : N ;
+fun dictate_N : N ;
+fun dictate_V : V ;
+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 dictostylium_N : N ;
+fun dictum_N : N ;
+fun dictyopteran_A : A ;
+fun dicumarol_N : N ;
+fun dicynodont_N : N ;
+fun didactic_A : A ;
+fun didactically_Adv : Adv ;
+fun didacticism_N : N ;
+fun diddle_V : V ;
+fun dideoxycytosine_N : N ;
+fun dideoxyinosine_N : N ;
+fun die_N : N ;
+fun die_V : V ;
+fun die_cast_A : A ;
+fun die_hard_N : N ;
+fun dieback_N : N ;
+fun diemaker_N : N ;
+fun diencephalon_N : N ;
+fun dieresis_N : N ;
+fun diesel_N : N ;
+fun diestock_N : N ;
+fun diestrous_A : A ;
+fun diestrus_N : N ;
+fun diet_N : N ;
+fun diet_V : V ;
+fun dietary_A : A ;
+fun dietary_N : N ;
+fun dieter_N : N ;
+fun dietetics_N : N ;
+fun diethylstilbesterol_N : N ;
+fun diethylstilbestrol_N : N ;
+fun dietician_N : N ;
+fun dietitian_N : N ;
+fun differ_V : V ;
+fun difference_N : N ;
+fun different_A : A ;
+fun differentia_N : N ;
+fun differentiable_A : A ;
+fun differential_A : A ;
+fun differential_N : N ;
+fun differentiate_V : V ;
+fun differentiation_N : N ;
+fun differentiator_N : N ;
+fun difficult_A : A ;
+fun difficulty_N : N ;
+fun diffidence_N : N ;
+fun diffident_A : A ;
+fun difflugia_N : N ;
+fun diffract_V : V ;
+fun diffraction_N : N ;
+fun diffuse_A : A ;
+fun diffuse_V : V ;
+fun diffuseness_N : N ;
+fun diffuser_N : N ;
+fun diffusion_N : N ;
+fun diflunisal_N : N ;
+fun dig_N : N ;
+fun dig_V : V ;
+fun digest_N : N ;
+fun digest_V : V ;
+fun digester_N : N ;
+fun digestibility_N : N ;
+fun digestible_A : A ;
+fun digestion_N : N ;
+fun digestive_A : A ;
+fun digestive_N : N ;
+fun digger_N : N ;
+fun digging_N : N ;
+fun diggings_N : N ;
+fun dighted_A : A ;
+fun digit_N : N ;
+fun digital_A : A ;
+fun digitalis_N : N ;
+fun digitalisation_N : N ;
+fun digitalization_N : N ;
+fun digitate_A : A ;
+fun digitigrade_A : A ;
+fun digitization_N : N ;
+fun digitizer_N : N ;
+fun digitoxin_N : N ;
+fun diglyceride_N : N ;
+fun dignify_V : V ;
+fun dignifying_A : A ;
+fun dignitary_N : N ;
+fun dignity_N : N ;
+fun digoxin_N : N ;
+fun digraph_N : N ;
+fun digress_V : V ;
+fun digression_N : N ;
+fun digressive_A : A ;
+fun dihybrid_N : N ;
+fun dihydrostreptomycin_N : N ;
+fun dike_N : N ;
+fun dike_V : V ;
+fun dilapidated_A : A ;
+fun dilapidation_N : N ;
+fun dilatation_N : N ;
+fun dilate_V : V ;
+fun dilation_N : N ;
+fun dilator_N : N ;
+fun dilatoriness_N : N ;
+fun dilatory_A : A ;
+fun dildo_N : N ;
+fun dilemma_N : N ;
+fun dilettante_A : A ;
+fun dilettante_N : N ;
+fun diligence_N : N ;
+fun diligent_A : A ;
+fun dill_N : N ;
+fun dillenia_N : N ;
+fun dilly_dally_V : V ;
+fun diltiazem_N : N ;
+fun dilutant_N : N ;
+fun dilute_A : A ;
+fun dilute_V : V ;
+fun dilution_N : N ;
+fun diluvian_A : A ;
+fun dim_A : A ;
+fun dim_V : V ;
+fun dime_N : N ;
+fun dimenhydrinate_N : N ;
+fun dimension_N : N ;
+fun dimensional_A : A ;
+fun dimensionality_N : N ;
+fun dimensioning_A : A ;
+fun dimer_N : N ;
+fun dimethylglyoxime_N : N ;
+fun dimetrodon_N : N ;
+fun diminish_V : V ;
+fun diminuendo_N : N ;
+fun diminution_N : N ;
+fun diminutive_A : A ;
+fun diminutive_N : N ;
+fun diminutiveness_N : N ;
+fun dimity_N : N ;
+fun dimmer_N : N ;
+fun dimness_N : N ;
+fun dimorphic_A : A ;
+fun dimorphism_N : N ;
+fun dimple_N : N ;
+fun dimple_V : V ;
+fun dimwit_N : N ;
+fun din_N : N ;
+fun din_V : V ;
+fun dinar_N : N ;
+fun dine_V : V ;
+fun diner_N : N ;
+fun dinette_N : N ;
+fun ding_N : N ;
+fun ding_dong_Adv : Adv ;
+fun ding_dong_N : N ;
+fun dingbat_N : N ;
+fun dingdong_Adv : Adv ;
+fun dinghy_N : N ;
+fun dinginess_N : N ;
+fun dingle_N : N ;
+fun dingo_N : N ;
+fun dingy_A : A ;
+fun dining_N : N ;
+fun dining_car_N : N ;
+fun dining_room_N : N ;
+fun dining_table_N : N ;
+fun dinky_A : A ;
+fun dinky_N : N ;
+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 dinnertime_N : N ;
+fun dinnerware_N : N ;
+fun dinoceras_N : N ;
+fun dinocerate_N : N ;
+fun dinoflagellate_N : N ;
+fun dinosaur_N : N ;
+fun dint_N : N ;
+fun diocesan_A : A ;
+fun diocesan_N : N ;
+fun diocese_N : N ;
+fun diode_N : N ;
+fun dioecious_A : A ;
+fun diol_N : N ;
+fun dioon_N : N ;
+fun diopter_N : N ;
+fun diorite_N : N ;
+fun dioxide_N : N ;
+fun dioxin_N : N ;
+fun dip_N : N ;
+fun dip_V : V ;
+fun dip_ed_N : N ;
+fun diphenhydramine_N : N ;
+fun diphenylhydantoin_N : N ;
+fun diphtheria_N : N ;
+fun diphthong_N : N ;
+fun diplegia_N : N ;
+fun diplococcus_N : N ;
+fun diplodocus_N : N ;
+fun diploid_A : A ;
+fun diploid_N : N ;
+fun diploidy_N : N ;
+fun diploma_N : N ;
+fun diplomacy_N : N ;
+fun diplomat_N : N ;
+fun diplomate_N : N ;
+fun diplomatic_A : A ;
+fun diplomatist_N : N ;
+fun diplopia_N : N ;
+fun diplotene_N : N ;
+fun dipolar_A : A ;
+fun dipole_N : N ;
+fun dipper_N : N ;
+fun dipsomania_N : N ;
+fun dipsomaniac_N : N ;
+fun dipstick_N : N ;
+fun dipterocarp_N : N ;
+fun dipterous_A : A ;
+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 direction_N : N ;
+fun direction_finder_N : N ;
+fun directional_A : A ;
+fun directionality_N : N ;
+fun directive_N : N ;
+fun directivity_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_A : A ;
+fun dirt_N : N ;
+fun dirt_cheap_A : A ;
+fun dirt_track_N : N ;
+fun dirtiness_N : N ;
+fun dirty_A : A ;
+fun dirty_V : V ;
+fun disa_N : N ;
+fun disability_N : N ;
+fun disable_V : V ;
+fun disabled_N : N ;
+fun disablement_N : N ;
+fun disabling_A : A ;
+fun disabuse_V : V ;
+fun disaccharidase_N : N ;
+fun disaccharide_N : N ;
+fun disadvantage_N : N ;
+fun disadvantageous_A : A ;
+fun disaffected_A : A ;
+fun disaffection_N : N ;
+fun disafforest_V : V ;
+fun disagree_V : V ;
+fun disagreeable_A : A ;
+fun disagreeableness_N : N ;
+fun disagreement_N : N ;
+fun disallow_V : V ;
+fun disambiguation_N : N ;
+fun disambiguator_N : N ;
+fun disappear_V : V ;
+fun disappearance_N : N ;
+fun disappoint_V : V ;
+fun disappointedly_Adv : Adv ;
+fun disappointing_A : A ;
+fun disappointment_N : N ;
+fun disapprobation_N : N ;
+fun disapproval_N : N ;
+fun disapprove_V : V ;
+fun disapprovingly_Adv : Adv ;
+fun disarm_V : V ;
+fun disarmament_N : N ;
+fun disarming_N : N ;
+fun disarrange_V : V ;
+fun disarrangement_N : N ;
+fun disarray_N : N ;
+fun disarray_V : V ;
+fun disassociate_V : V ;
+fun disassociation_N : N ;
+fun disaster_N : N ;
+fun disastrous_A : A ;
+fun disavow_V : V ;
+fun disavowable_A : A ;
+fun disavowal_N : N ;
+fun disband_V : V ;
+fun disbandment_N : N ;
+fun disbarment_N : N ;
+fun disbelief_N : N ;
+fun disbelieve_V : V ;
+fun disbeliever_N : N ;
+fun disbelievingly_Adv : Adv ;
+fun disbud_V : V ;
+fun disburden_V : V ;
+fun disburse_V : V ;
+fun disbursement_N : N ;
+fun disc_N : N ;
+fun discalced_A : A ;
+fun discard_N : N ;
+fun discard_V : V ;
+fun discern_V : V ;
+fun discernability_N : N ;
+fun discernible_A : A ;
+fun discerning_A : A ;
+fun discernment_N : N ;
+fun discharge_N : N ;
+fun discharge_V : V ;
+fun disciform_A : A ;
+fun discina_N : N ;
+fun disciple_N : N ;
+fun discipleship_N : N ;
+fun disciplinarian_N : N ;
+fun disciplinary_A : A ;
+fun discipline_N : N ;
+fun discipline_V : V ;
+fun disclaim_V : V ;
+fun disclaimer_N : N ;
+fun disclose_V : V ;
+fun disclosure_N : N ;
+fun disco_N : N ;
+fun discography_N : N ;
+fun discoid_A : A ;
+fun discoloration_N : N ;
+fun discolour_V : V ;
+fun discolouration_N : N ;
+fun discombobulated_A : A ;
+fun discomfit_V : V ;
+fun discomfiture_N : N ;
+fun discomfort_N : N ;
+fun discommode_V : V ;
+fun discompose_V : V ;
+fun discomposure_N : N ;
+fun discomycete_N : N ;
+fun discomycetous_A : A ;
+fun disconcert_V : V ;
+fun disconcerting_A : A ;
+fun disconfirming_A : A ;
+fun disconnect_V : V ;
+fun disconnection_N : N ;
+fun disconsolate_A : A ;
+fun discontent_N : N ;
+fun discontent_V : V ;
+fun discontentedly_Adv : Adv ;
+fun discontentment_N : N ;
+fun discontinuance_N : N ;
+fun discontinue_V : V ;
+fun discontinuity_N : N ;
+fun discontinuous_A : A ;
+fun discord_N : N ;
+fun discordance_N : N ;
+fun discordant_A : A ;
+fun discorporate_A : A ;
+fun discotheque_N : N ;
+fun discount_N : N ;
+fun discount_V : V ;
+fun discountenance_V : V ;
+fun discourage_V : V ;
+fun discouragement_N : N ;
+fun discouraging_A : A ;
+fun discourse_N : N ;
+fun discourse_V : V ;
+fun discourteous_A : A ;
+fun discourtesy_N : N ;
+fun discover_V : V ;
+fun discoverer_N : N ;
+fun discovery_N : N ;
+fun discredit_N : N ;
+fun discredit_V : V ;
+fun discreditable_A : A ;
+fun discreet_A : A ;
+fun discrepancy_N : N ;
+fun discrepant_A : A ;
+fun discrete_A : A ;
+fun discreteness_N : N ;
+fun discretion_N : N ;
+fun discretionary_A : A ;
+fun discriminable_A : A ;
+fun discriminate_A : A ;
+fun discriminate_V : V ;
+fun discrimination_N : N ;
+fun discriminative_A : A ;
+fun discriminatory_A : A ;
+fun discursive_A : A ;
+fun discursiveness_N : N ;
+fun discus_N : N ;
+fun discuss_V : V ;
+fun discussant_N : N ;
+fun discussion_N : N ;
+fun disdain_N : N ;
+fun disdain_V : V ;
+fun disdainful_A : A ;
+fun disease_N : N ;
+fun diseased_A : A ;
+fun disembark_V : V ;
+fun disembarkation_N : N ;
+fun disembarrass_V : V ;
+fun disembarrassment_N : N ;
+fun disembody_V : V ;
+fun disembowel_V : V ;
+fun disembowelment_N : N ;
+fun disenchant_V : V ;
+fun disenchanting_A : A ;
+fun disenchantment_N : N ;
+fun disencumber_V : V ;
+fun disenfranchise_V : V ;
+fun disenfranchisement_N : N ;
+fun disengage_V : V ;
+fun disengagement_N : N ;
+fun disentangle_V : V ;
+fun disentanglement_N : N ;
+fun disentangler_N : N ;
+fun disequilibrium_N : N ;
+fun disestablish_V : V ;
+fun disestablishment_N : N ;
+fun disesteem_N : N ;
+fun disfavor_N : N ;
+fun disfavour_N : N ;
+fun disfavour_V : V ;
+fun disfigure_V : V ;
+fun disfigurement_N : N ;
+fun disfluency_N : N ;
+fun disforest_V : V ;
+fun disfranchise_V : V ;
+fun disfranchisement_N : N ;
+fun disgorge_V : V ;
+fun disgrace_N : N ;
+fun disgrace_V : V ;
+fun disgraceful_A : A ;
+fun disgruntled_A : A ;
+fun disgruntlement_N : N ;
+fun disguise_N : N ;
+fun disguise_V : V ;
+fun disgust_N : N ;
+fun disgust_V : V ;
+fun disgustedly_Adv : Adv ;
+fun disgusting_A : A ;
+fun disgustingness_N : N ;
+fun dish_N : N ;
+fun dish_V : V ;
+fun dishabille_N : N ;
+fun disharmonious_A : A ;
+fun disharmony_N : N ;
+fun dishcloth_N : N ;
+fun dishearten_V : V ;
+fun disheartenment_N : N ;
+fun disheveled_A : A ;
+fun dishevelled_A : A ;
+fun dishful_N : N ;
+fun dishonest_A : A ;
+fun dishonesty_N : N ;
+fun dishonor_N : N ;
+fun dishonorable_A : A ;
+fun dishonorableness_N : N ;
+fun dishonour_N : N ;
+fun dishonour_V : V ;
+fun dishonourable_A : A ;
+fun dishpan_N : N ;
+fun dishrag_N : N ;
+fun dishtowel_N : N ;
+fun dishwasher_N : N ;
+fun dishwashing_N : N ;
+fun dishwater_N : N ;
+fun dishy_A : A ;
+fun disillusion_N : N ;
+fun disillusion_V : V ;
+fun disillusionment_N : N ;
+fun disincentive_N : N ;
+fun disinclination_N : N ;
+fun disincline_V : V ;
+fun disinfect_V : V ;
+fun disinfectant_A : A ;
+fun disinfectant_N : N ;
+fun disinfection_N : N ;
+fun disinfest_V : V ;
+fun disinfestation_N : N ;
+fun disinflation_N : N ;
+fun disinformation_N : N ;
+fun disingenuous_A : A ;
+fun disingenuousness_N : N ;
+fun disinherit_V : V ;
+fun disinheritance_N : N ;
+fun disintegrate_V : V ;
+fun disintegration_N : N ;
+fun disintegrative_A : A ;
+fun disinter_V : V ;
+fun disinterest_N : N ;
+fun disinterested_A : A ;
+fun disinterestedness_N : N ;
+fun disinterment_N : N ;
+fun disinvestment_N : N ;
+fun disjoined_A : A ;
+fun disjoint_A : A ;
+fun disjoint_V : V ;
+fun disjointedly_Adv : Adv ;
+fun disjointedness_N : N ;
+fun disjunct_A : A ;
+fun disjunction_N : N ;
+fun disjunctive_A : A ;
+fun disk_N : N ;
+fun diskette_N : N ;
+fun dislikable_A : A ;
+fun dislike_N : N ;
+fun dislike_V : V ;
+fun dislocate_V : V ;
+fun dislocation_N : N ;
+fun dislodge_V : V ;
+fun dislodgement_N : N ;
+fun dislodgment_N : N ;
+fun disloyal_A : A ;
+fun disloyalty_N : N ;
+fun dismal_A : A ;
+fun dismantle_V : V ;
+fun dismantlement_N : N ;
+fun dismantling_N : N ;
+fun dismay_N : N ;
+fun dismay_V : V ;
+fun dismember_V : V ;
+fun dismemberment_N : N ;
+fun dismiss_V : V ;
+fun dismissal_N : N ;
+fun dismissible_A : A ;
+fun dismissive_A : A ;
+fun dismount_N : N ;
+fun dismount_V : V ;
+fun disobedience_N : N ;
+fun disobedient_A : A ;
+fun disobey_V : V ;
+fun disoblige_V : V ;
+fun disobliging_A : A ;
+fun disorder_N : N ;
+fun disorder_V : V ;
+fun disorderliness_N : N ;
+fun disorderly_A : A ;
+fun disorganization_N : N ;
+fun disorganize_V : V ;
+fun disorient_V : V ;
+fun disorientate_V : V ;
+fun disorientation_N : N ;
+fun disorienting_A : A ;
+fun disown_V : V ;
+fun disownment_N : N ;
+fun disparage_V : V ;
+fun disparagement_N : N ;
+fun disparagingly_Adv : Adv ;
+fun disparate_A : A ;
+fun disparateness_N : N ;
+fun disparity_N : N ;
+fun dispassion_N : N ;
+fun dispassionate_A : A ;
+fun dispassionateness_N : N ;
+fun dispatch_N : N ;
+fun dispatch_V : V ;
+fun dispatch_box_N : N ;
+fun dispatch_rider_N : N ;
+fun dispatcher_N : N ;
+fun dispel_V : V ;
+fun dispensability_N : N ;
+fun dispensable_A : A ;
+fun dispensary_N : N ;
+fun dispensation_N : N ;
+fun dispense_V : V ;
+fun dispenser_N : N ;
+fun dispersal_N : N ;
+fun disperse_V : V ;
+fun dispersion_N : N ;
+fun dispirit_V : V ;
+fun dispiritedly_Adv : Adv ;
+fun displace_V : V ;
+fun displacement_N : N ;
+fun display_N : N ;
+fun display_V : V ;
+fun displease_V : V ;
+fun displeasing_A : A ;
+fun displeasure_N : N ;
+fun disport_V : V ;
+fun disposable_A : A ;
+fun disposable_N : N ;
+fun disposal_N : N ;
+fun dispose_V : V ;
+fun disposition_N : N ;
+fun dispossess_V : V ;
+fun dispossession_N : N ;
+fun disproof_N : N ;
+fun disproportion_N : N ;
+fun disproportionate_A : A ;
+fun disprove_V : V ;
+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 disqualification_N : N ;
+fun disqualify_V : V ;
+fun disquiet_N : N ;
+fun disquiet_V : V ;
+fun disquieting_A : A ;
+fun disquietude_N : N ;
+fun disquisition_N : N ;
+fun disregard_N : N ;
+fun disregard_V : V ;
+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 disrupt_V : V ;
+fun disruption_N : N ;
+fun disruptive_A : A ;
+fun dissatisfaction_N : N ;
+fun dissatisfy_V : V ;
+fun dissect_V : V ;
+fun dissection_N : N ;
+fun dissemble_V : V ;
+fun dissembler_N : N ;
+fun disseminate_V : V ;
+fun dissemination_N : N ;
+fun dissension_N : N ;
+fun dissent_N : N ;
+fun dissent_V : V ;
+fun dissenter_N : N ;
+fun dissentient_A : A ;
+fun dissentious_A : A ;
+fun dissertation_N : N ;
+fun disservice_N : N ;
+fun dissever_V : V ;
+fun dissidence_N : N ;
+fun dissident_A : A ;
+fun dissident_N : N ;
+fun dissilience_N : N ;
+fun dissilient_A : A ;
+fun dissimilar_A : A ;
+fun dissimilarity_N : N ;
+fun dissimilation_N : N ;
+fun dissimilitude_N : N ;
+fun dissimulate_V : V ;
+fun dissimulation_N : N ;
+fun dissimulative_A : A ;
+fun dissipate_V : V ;
+fun dissipation_N : N ;
+fun dissociable_A : A ;
+fun dissociate_V : V ;
+fun dissociation_N : N ;
+fun dissociative_A : A ;
+fun dissolubility_N : N ;
+fun dissoluble_A : A ;
+fun dissolute_A : A ;
+fun dissoluteness_N : N ;
+fun dissolution_N : N ;
+fun dissolvable_A : A ;
+fun dissolve_N : N ;
+fun dissolve_V : V ;
+fun dissolving_N : N ;
+fun dissonance_N : N ;
+fun dissonant_A : A ;
+fun dissuade_V : V ;
+fun dissuasion_N : N ;
+fun dissuasive_A : A ;
+fun dissyllable_N : N ;
+fun distaff_N : N ;
+fun distal_A : A ;
+fun distance_N : N ;
+fun distance_V : V ;
+fun distant_A : A ;
+fun distaste_N : N ;
+fun distasteful_A : A ;
+fun distastefulness_N : N ;
+fun distemper_N : N ;
+fun distemper_V : V ;
+fun distend_V : V ;
+fun distensible_A : A ;
+fun distension_N : N ;
+fun distention_N : N ;
+fun distil_V : V ;
+fun distillate_N : N ;
+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 distinguishable_A : A ;
+fun distort_V : V ;
+fun distortable_A : A ;
+fun distortion_N : N ;
+fun distortionist_N : N ;
+fun distract_V : V ;
+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_V : V ;
+fun distressful_A : A ;
+fun distressing_A : A ;
+fun distributary_N : N ;
+fun distribute_V : V ;
+fun distribution_N : N ;
+fun distributional_A : A ;
+fun distributive_A : A ;
+fun distributor_N : N ;
+fun district_N : N ;
+fun distrust_N : N ;
+fun distrust_V : V ;
+fun distrustful_A : A ;
+fun distrustfulness_N : N ;
+fun disturb_V : V ;
+fun disturbance_N : N ;
+fun disturber_N : N ;
+fun disturbingly_Adv : Adv ;
+fun disulfiram_N : N ;
+fun disunion_N : N ;
+fun disunite_V : V ;
+fun disunity_N : N ;
+fun disuse_N : N ;
+fun disused_A : A ;
+fun disyllabic_A : A ;
+fun disyllable_N : N ;
+fun dita_N : N ;
+fun ditch_N : N ;
+fun ditch_V : V ;
+fun dither_N : N ;
+fun dither_V : V ;
+fun dithering_N : N ;
+fun dithyramb_N : N ;
+fun dithyrambic_A : A ;
+fun ditto_N : N ;
+fun ditty_N : N ;
+fun diuresis_N : N ;
+fun diurnal_A : A ;
+fun divagate_V : V ;
+fun divagation_N : N ;
+fun divan_N : N ;
+fun divan_bed_N : N ;
+fun divarication_N : N ;
+fun dive_N : N ;
+fun dive_bomb_V : V ;
+fun dive_bomber_N : N ;
+fun dive_dived_V : V ;
+fun dive_dove_V : V ;
+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 diverseness_N : N ;
+fun diversification_N : N ;
+fun diversify_V : V ;
+fun diversion_N : N ;
+fun diversionary_A : A ;
+fun diversionist_N : N ;
+fun diversity_N : N ;
+fun divert_V : V ;
+fun diverticulitis_N : N ;
+fun diverticulosis_N : N ;
+fun diverticulum_N : N ;
+fun divertimento_N : N ;
+fun divest_V : V ;
+fun divestiture_N : N ;
+fun dividable_A : A ;
+fun divide_N : N ;
+fun divide_V : V ;
+fun dividend_N : N ;
+fun dividend_warrant_N : N ;
+fun divider_N : N ;
+fun divination_N : N ;
+fun divinatory_A : A ;
+fun divine_A : A ;
+fun divine_N : N ;
+fun divine_V : V ;
+fun diviner_N : N ;
+fun diving_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 divisibility_N : N ;
+fun divisible_A : A ;
+fun division_N : N ;
+fun divisional_A : A ;
+fun divisor_N : N ;
+fun divorce_N : N ;
+fun divorce_V : V ;
+fun divorcee_N : N ;
+fun divot_N : N ;
+fun divulge_V : V ;
+fun divulgence_N : N ;
+fun divvy_N : N ;
+fun divvy_V : V ;
+fun dixie_N : N ;
+fun diy_N : N ;
+fun dizygotic_A : A ;
+fun dizziness_N : N ;
+fun dizzy_A : A ;
+fun dizzy_V : V ;
+fun dj_N : N ;
+fun djiboutian_A : A ;
+fun djiboutian_N : N ;
+fun djinn_N : N ;
+fun dlitt_N : N ;
+fun dm_N : N ;
+fun do_N : N ;
+fun do_V : V ;
+fun do_gooder_N : N ;
+fun dob_V : V ;
+fun dobbin_N : N ;
+fun dobra_N : N ;
+fun dobson_N : N ;
+fun docent_N : N ;
+fun docile_A : A ;
+fun docility_N : N ;
+fun dock_N : N ;
+fun dock_V : V ;
+fun dockage_N : N ;
+fun docker_N : N ;
+fun docket_N : N ;
+fun docket_V : V ;
+fun docking_N : N ;
+fun dockside_N : N ;
+fun dockyard_N : N ;
+fun doctor_N : N ;
+fun doctor_V : V ;
+fun doctoral_A : A ;
+fun doctorate_N : N ;
+fun doctorfish_N : N ;
+fun doctorspeak_N : N ;
+fun doctrinaire_A : A ;
+fun doctrinaire_N : N ;
+fun doctrinal_A : A ;
+fun doctrine_N : N ;
+fun document_N : N ;
+fun document_V : V ;
+fun documentary_A : A ;
+fun documentary_N : N ;
+fun documentation_N : N ;
+fun dodder_N : N ;
+fun dodder_V : V ;
+fun dodderer_N : N ;
+fun doddery_A : A ;
+fun doddle_N : N ;
+fun dodecagon_N : N ;
+fun dodecahedron_N : N ;
+fun dodge_N : N ;
+fun dodge_V : V ;
+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 doeskin_N : N ;
+fun doff_V : V ;
+fun dog's_tooth_N : N ;
+fun dog_N : N ;
+fun dog_V : V ;
+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 dogbane_N : N ;
+fun dogcart_N : N ;
+fun doge_N : N ;
+fun dogfight_N : N ;
+fun dogfighter_N : N ;
+fun dogfish_N : N ;
+fun doggedly_Adv : Adv ;
+fun doggedness_N : N ;
+fun doggerel_N : N ;
+fun doggie_N : N ;
+fun dogging_A : A ;
+fun doggo_Adv : Adv ;
+fun doggy_N : N ;
+fun doghouse_N : N ;
+fun dogie_N : N ;
+fun dogleg_N : N ;
+fun doglike_A : A ;
+fun dogma_N : N ;
+fun dogmatic_A : A ;
+fun dogmatically_Adv : Adv ;
+fun dogmatism_N : N ;
+fun dogmatist_N : N ;
+fun dogmatize_V : V ;
+fun dogsbody_N : N ;
+fun dogsled_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 dol_N : N ;
+fun dolabriform_A : A ;
+fun dolce_Adv : Adv ;
+fun doldrums_N : N ;
+fun dole_N : N ;
+fun dole_V : V ;
+fun doleful_A : A ;
+fun dolefulness_N : N ;
+fun dolichocephalic_A : A ;
+fun dolichocephalic_N : N ;
+fun dolichocephaly_N : N ;
+fun doliolum_N : N ;
+fun doll_N : N ;
+fun doll_V : V ;
+fun dollar_N : N ;
+fun dollarfish_N : N ;
+fun dollhouse_N : N ;
+fun dollop_N : N ;
+fun dolly_N : N ;
+fun dolman_N : N ;
+fun dolmas_N : N ;
+fun dolmen_N : N ;
+fun dolomite_N : N ;
+fun dolomitic_A : A ;
+fun dolor_N : N ;
+fun dolorous_A : A ;
+fun dolour_N : N ;
+fun dolourous_A : A ;
+fun dolphin_N : N ;
+fun dolphinfish_N : N ;
+fun dolt_N : N ;
+fun doltish_A : A ;
+fun domain_N : N ;
+fun domatium_N : N ;
+fun dombeya_N : N ;
+fun dome_N : N ;
+fun domed_A : A ;
+fun domestic_A : A ;
+fun domestic_N : N ;
+fun domestically_Adv : Adv ;
+fun domesticate_V : V ;
+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 dominant_N : N ;
+fun dominate_V : V ;
+fun domination_N : N ;
+fun dominatrix_N : N ;
+fun domineer_V : V ;
+fun domineeringly_Adv : Adv ;
+fun dominical_A : A ;
+fun dominican_A : A ;
+fun dominican_N : N ;
+fun dominie_N : N ;
+fun dominion_N : N ;
+fun domino_N : N ;
+fun dominoes_N : N ;
+fun dominus_N : N ;
+fun don't_know_N : N ;
+fun don_N : N ;
+fun don_V : V ;
+fun donate_V : V ;
+fun donation_N : N ;
+fun dong_N : N ;
+fun dongle_N : N ;
+fun donjon_N : N ;
+fun donkey_N : N ;
+fun donkey_jacket_N : N ;
+fun donkey_work_N : N ;
+fun donna_N : N ;
+fun donnish_A : A ;
+fun donor_N : N ;
+fun doodad_N : N ;
+fun doodia_N : N ;
+fun doodle_V : V ;
+fun doodlebug_N : N ;
+fun doom_N : N ;
+fun doom_V : V ;
+fun doomed_N : N ;
+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 doorjamb_N : N ;
+fun doorkeeper_N : N ;
+fun doorknob_N : N ;
+fun doorknocker_N : N ;
+fun doorlock_N : N ;
+fun doorman_N : N ;
+fun doormat_N : N ;
+fun doornail_N : N ;
+fun doorplate_N : N ;
+fun doorpost_N : N ;
+fun doorsill_N : N ;
+fun doorstep_N : N ;
+fun doorstop_N : N ;
+fun doorstopper_N : N ;
+fun doorway_N : N ;
+fun dooryard_N : N ;
+fun dopa_N : N ;
+fun dopamine_N : N ;
+fun dope_N : N ;
+fun dope_V : V ;
+fun dopey_A : A ;
+fun doppelganger_N : N ;
+fun dorbeetle_N : N ;
+fun doric_A : A ;
+fun dormancy_N : N ;
+fun dormant_A : A ;
+fun dormer_N : N ;
+fun dormer_window_N : N ;
+fun dormie_A : A ;
+fun dormitory_N : N ;
+fun dormouse_N : N ;
+fun dorsal_A : A ;
+fun dorsiflexion_N : N ;
+fun dorsoventral_A : A ;
+fun dorsum_N : N ;
+fun dory_N : N ;
+fun dosage_N : N ;
+fun dose_N : N ;
+fun dose_V : V ;
+fun dosemeter_N : N ;
+fun dosimetry_N : N ;
+fun doss_V : V ;
+fun doss_house_N : N ;
+fun dossal_N : N ;
+fun dosser_N : N ;
+fun dossier_N : N ;
+fun dot_N : N ;
+fun dot_V : V ;
+fun dotage_N : N ;
+fun dotard_N : N ;
+fun dote_V : V ;
+fun dotterel_N : N ;
+fun dottle_N : N ;
+fun dotty_A : A ;
+fun double_A : A ;
+fun double_Adv : Adv ;
+fun double_N : N ;
+fun double_V : V ;
+fun double_barrelled_A : A ;
+fun double_bass_N : N ;
+fun double_bedded_A : A ;
+fun double_breasted_A : A ;
+fun double_check_V : V ;
+fun double_cross_N : N ;
+fun double_cross_V : V ;
+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_quick_A : A ;
+fun double_quick_Adv : Adv ;
+fun double_spacing_N : N ;
+fun double_talk_N : N ;
+fun double_think_N : N ;
+fun doubler_N : N ;
+fun doubles_N : N ;
+fun doublespeak_N : N ;
+fun doublet_N : N ;
+fun doublethink_N : N ;
+fun doubleton_N : N ;
+fun doubletree_N : N ;
+fun doubling_N : N ;
+fun doubloon_N : N ;
+fun doubt_N : N ;
+fun doubt_V : V ;
+fun doubtful_A : A ;
+fun doubting_A : A ;
+fun doubtless_Adv : Adv ;
+fun douche_N : N ;
+fun dough_N : N ;
+fun doughboy_N : N ;
+fun doughnut_N : N ;
+fun doughty_A : A ;
+fun doughy_A : A ;
+fun dour_A : A ;
+fun douroucouli_N : N ;
+fun douse_V : V ;
+fun dove_N : N ;
+fun dovecote_N : N ;
+fun dovetail_N : N ;
+fun dovetail_V : V ;
+fun dovishness_N : N ;
+fun dowager_N : N ;
+fun dowdiness_N : N ;
+fun dowdy_A : A ;
+fun dowdy_N : N ;
+fun dowel_N : N ;
+fun doweling_N : N ;
+fun dower_N : N ;
+fun dower_V : V ;
+fun dowerless_A : A ;
+fun dowitcher_N : N ;
+fun down_A : A ;
+fun down_Adv : Adv ;
+fun down_N : N ;
+fun down_Prep : Prep ;
+fun down_V : V ;
+fun down_and_out_N : N ;
+fun down_market_A : A ;
+fun down_to_earth_A : A ;
+fun downbeat_N : N ;
+fun downbound_A : A ;
+fun downcast_A : A ;
+fun downcast_N : N ;
+fun downdraft_N : N ;
+fun downfall_N : N ;
+fun downfield_A : A ;
+fun downfield_Adv : Adv ;
+fun downgrade_N : N ;
+fun downgrade_V : V ;
+fun downhearted_A : A ;
+fun downheartedness_N : N ;
+fun downhill_Adv : Adv ;
+fun downhill_N : N ;
+fun downiness_N : N ;
+fun downmarket_A : A ;
+fun downplay_V : V ;
+fun downpour_N : N ;
+fun downright_A : A ;
+fun downright_Adv : Adv ;
+fun downrightness_N : N ;
+fun downriver_Adv : Adv ;
+fun downscale_A : A ;
+fun downshift_N : N ;
+fun downside_N : N ;
+fun downsize_V : V ;
+fun downspin_N : N ;
+fun downstage_A : A ;
+fun downstage_Adv : Adv ;
+fun downstage_N : N ;
+fun downstair_A : A ;
+fun downstairs_A : A ;
+fun downstairs_Adv : Adv ;
+fun downstream_A : A ;
+fun downstream_Adv : Adv ;
+fun downstroke_N : N ;
+fun downswing_N : N ;
+fun downtick_N : N ;
+fun downtime_N : N ;
+fun downtown_A : A ;
+fun downtown_Adv : Adv ;
+fun downtrodden_A : A ;
+fun downturn_N : N ;
+fun downward_A : A ;
+fun downward_Adv : Adv ;
+fun downwards_Adv : Adv ;
+fun downwind_A : A ;
+fun downwind_Adv : Adv ;
+fun downy_A : A ;
+fun dowry_N : N ;
+fun dowse_N : N ;
+fun dowse_V : V ;
+fun dowser_N : N ;
+fun dowsing_N : N ;
+fun doxazosin_N : N ;
+fun doxepin_N : N ;
+fun doxology_N : N ;
+fun doxorubicin_N : N ;
+fun doxycycline_N : N ;
+fun doyen_N : N ;
+fun doyenne_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 drab_A : A ;
+fun draba_N : N ;
+fun drabness_N : N ;
+fun dracaena_N : N ;
+fun drachm_N : N ;
+fun drachma_N : N ;
+fun draconian_A : A ;
+fun dracontium_N : N ;
+fun draft_N : N ;
+fun draft_V : V ;
+fun draftee_N : N ;
+fun drafter_N : N ;
+fun drafting_N : N ;
+fun draftsman_N : N ;
+fun drafty_A : A ;
+fun drag_N : N ;
+fun drag_V : V ;
+fun dragee_N : N ;
+fun draggingly_Adv : Adv ;
+fun draggled_A : A ;
+fun dragnet_N : N ;
+fun dragoman_N : N ;
+fun dragon_N : N ;
+fun dragonet_N : N ;
+fun dragonfly_N : N ;
+fun dragonhead_N : N ;
+fun dragoon_N : N ;
+fun dragoon_V : V ;
+fun drain_N : N ;
+fun drain_V : V ;
+fun drainage_N : N ;
+fun drainage_basin_N : N ;
+fun drainboard_N : N ;
+fun draining_board_N : N ;
+fun drainpipe_N : N ;
+fun drainplug_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_V : V ;
+fun dramaturgic_A : A ;
+fun dramaturgy_N : N ;
+fun drape_N : N ;
+fun drape_V : V ;
+fun draper_N : N ;
+fun drapery_N : N ;
+fun drastic_A : A ;
+fun drastically_Adv : Adv ;
+fun drat_V : V ;
+fun draught_N : N ;
+fun draught_V : V ;
+fun draught_horse_N : N ;
+fun draughts_N : N ;
+fun draughtsman_N : N ;
+fun draughty_A : A ;
+fun draw_N : N ;
+fun draw_drawed_V : V ;
+fun draw_drew_V : V ;
+fun drawback_N : N ;
+fun drawbar_N : N ;
+fun drawbridge_N : N ;
+fun drawee_N : N ;
+fun drawer_N : N ;
+fun drawers_N : N ;
+fun drawing_N : N ;
+fun drawing_board_N : N ;
+fun drawing_pin_N : N ;
+fun drawing_room_N : N ;
+fun drawknife_N : N ;
+fun drawl_N : N ;
+fun drawl_V : V ;
+fun drawler_N : N ;
+fun drawnwork_N : N ;
+fun drawstring_N : N ;
+fun dray_N : N ;
+fun dread_N : N ;
+fun dread_V : V ;
+fun dreadful_A : A ;
+fun dreadfulness_N : N ;
+fun dreadlock_N : N ;
+fun dreadnought_N : N ;
+fun dream_N : N ;
+fun dream_dreamed_dreamed_V : V ;
+fun dream_dreamed_dreamt_V : V ;
+fun dream_dreamt_dreamed_V : V ;
+fun dream_dreamt_dreamt_V : V ;
+fun dreamer_N : N ;
+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 dreariness_N : N ;
+fun dreary_A : A ;
+fun dredge_N : N ;
+fun dredge_V : V ;
+fun dredger_N : N ;
+fun dreg_N : N ;
+fun dregs_N : N ;
+fun drench_V : V ;
+fun drenching_N : N ;
+fun dress_A : A ;
+fun dress_N : N ;
+fun dress_V : V ;
+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 drey_N : N ;
+fun dribble_N : N ;
+fun dribble_V : V ;
+fun dribbler_N : N ;
+fun driblet_N : N ;
+fun drier_N : N ;
+fun drift_N : N ;
+fun drift_V : V ;
+fun drift_ice_N : N ;
+fun drift_net_N : N ;
+fun drift_wood_N : N ;
+fun driftage_N : N ;
+fun drifter_N : N ;
+fun driftfish_N : N ;
+fun drifting_N : N ;
+fun driftwood_N : N ;
+fun drill_N : N ;
+fun drill_V : V ;
+fun drilling_N : N ;
+fun drink_N : N ;
+fun drink_V : V ;
+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_dry_A : A ;
+fun drip_dry_V : V ;
+fun dripless_A : A ;
+fun drippiness_N : N ;
+fun dripping_N : N ;
+fun dripping_pan_N : N ;
+fun drippings_N : N ;
+fun drippy_A : A ;
+fun dripstone_N : N ;
+fun drive_N : N ;
+fun drive_drived_V : V ;
+fun drive_drove_V : V ;
+fun drive_in_N : N ;
+fun drivel_N : N ;
+fun drivel_V : V ;
+fun driveller_N : N ;
+fun driver_N : N ;
+fun driveshaft_N : N ;
+fun driveway_N : N ;
+fun driving_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 drogue_N : N ;
+fun droll_A : A ;
+fun drollery_N : N ;
+fun dromaeosaur_N : N ;
+fun dromedary_N : N ;
+fun dronabinol_N : N ;
+fun drone_N : N ;
+fun drone_V : V ;
+fun drool_N : N ;
+fun drool_V : V ;
+fun droop_N : N ;
+fun droop_V : V ;
+fun droopingly_Adv : Adv ;
+fun drop_N : N ;
+fun drop_V : V ;
+fun drop_curtain_N : N ;
+fun drop_kick_N : N ;
+fun dropkick_N : N ;
+fun dropkicker_N : N ;
+fun droplet_N : N ;
+fun dropline_N : N ;
+fun dropout_N : N ;
+fun dropper_N : N ;
+fun dropping_zone_N : N ;
+fun droppings_N : N ;
+fun dropseed_N : N ;
+fun dropsical_A : A ;
+fun dropsy_N : N ;
+fun droshky_N : N ;
+fun drosophila_N : N ;
+fun dross_N : N ;
+fun drought_N : N ;
+fun drove_N : N ;
+fun drover_N : N ;
+fun drown_V : V ;
+fun drowse_N : N ;
+fun drowse_V : V ;
+fun drowsiness_N : N ;
+fun drowsy_A : A ;
+fun drub_V : V ;
+fun drubbing_N : N ;
+fun drudge_N : N ;
+fun drudge_V : V ;
+fun drudgery_N : N ;
+fun drug_N : N ;
+fun drug_V : V ;
+fun drugget_N : N ;
+fun druggist_N : N ;
+fun drugless_A : A ;
+fun drugstore_N : N ;
+fun druid_N : N ;
+fun druidism_N : N ;
+fun drum_N : N ;
+fun drum_V : V ;
+fun drum_major_N : N ;
+fun drum_majorette_N : N ;
+fun drumbeat_N : N ;
+fun drumfire_N : N ;
+fun drumhead_A : A ;
+fun drumhead_N : N ;
+fun drumlin_N : N ;
+fun drummer_N : N ;
+fun drumming_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 drupaceous_A : A ;
+fun drupe_N : N ;
+fun drupelet_N : N ;
+fun drusen_N : N ;
+fun dry_A : A ;
+fun dry_N : N ;
+fun dry_V : V ;
+fun dry_clean_V : V ;
+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 drygoods_N : N ;
+fun dryness_N : N ;
+fun dryopithecine_N : N ;
+fun drypis_N : N ;
+fun dscDNA_N : N ;
+fun dsc_N : N ;
+fun dss_N : N ;
+fun dti_N : N ;
+fun dual_A : A ;
+fun dualism_N : N ;
+fun dualist_N : N ;
+fun dualistic_A : A ;
+fun duality_N : N ;
+fun dub_N : N ;
+fun dub_V : V ;
+fun dubbin_N : N ;
+fun dubbing_N : N ;
+fun dubiety_N : N ;
+fun dubious_A : A ;
+fun dubiousness_N : N ;
+fun dubliner_N : N ;
+fun dubnium_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 duckbill_A : A ;
+fun duckbilled_A : A ;
+fun duckboard_N : N ;
+fun ducking_N : N ;
+fun ducking_stool_N : N ;
+fun duckling_N : N ;
+fun duckpin_N : N ;
+fun duckpins_N : N ;
+fun duckweed_N : N ;
+fun ducky_N : N ;
+fun duct_N : N ;
+fun ductile_A : A ;
+fun ductility_N : N ;
+fun ductless_A : A ;
+fun ductule_N : N ;
+fun dud_A : A ;
+fun dud_N : N ;
+fun dude_N : N ;
+fun dudeen_N : N ;
+fun dudgeon_N : N ;
+fun due_A : A ;
+fun due_Adv : Adv ;
+fun due_N : N ;
+fun due_to_Prep : Prep ;
+fun duel_N : N ;
+fun duel_V : V ;
+fun dueler_N : N ;
+fun duelist_N : N ;
+fun duellist_N : N ;
+fun duenna_N : N ;
+fun duet_N : N ;
+fun duff_N : N ;
+fun duff_V : V ;
+fun duffel_N : N ;
+fun duffer_N : N ;
+fun duffle_N : N ;
+fun dug_N : N ;
+fun dug_V : V ;
+fun dugong_N : N ;
+fun dugout_N : N ;
+fun duke_N : N ;
+fun dukedom_N : N ;
+fun dulcet_A : A ;
+fun dulciana_N : N ;
+fun dulcimer_N : N ;
+fun dull_A : A ;
+fun dull_V : V ;
+fun dullard_N : N ;
+fun dullness_N : N ;
+fun dulse_N : N ;
+fun dumb_A : A ;
+fun dumb_V : V ;
+fun dumbbell_N : N ;
+fun dumbfound_V : V ;
+fun dumbness_N : N ;
+fun dumbwaiter_N : N ;
+fun dumdum_N : N ;
+fun dummy_A : A ;
+fun dummy_N : N ;
+fun dump_N : N ;
+fun dump_V : V ;
+fun dumpcart_N : N ;
+fun dumper_N : N ;
+fun dumpiness_N : N ;
+fun dumping_N : N ;
+fun dumpling_N : N ;
+fun dumps_N : N ;
+fun dumpy_A : A ;
+fun dun_A : A ;
+fun dun_N : N ;
+fun dun_V : V ;
+fun dunce_N : N ;
+fun dunderhead_N : N ;
+fun dune_N : N ;
+fun dung_N : N ;
+fun dungeon_N : N ;
+fun dunghill_N : N ;
+fun dunk_N : N ;
+fun dunk_V : V ;
+fun dunker_N : N ;
+fun duodecimal_A : A ;
+fun duodenal_A : A ;
+fun duodenum_N : N ;
+fun duologue_N : N ;
+fun dupe_N : N ;
+fun dupe_V : V ;
+fun duplex_A : A ;
+fun duplicable_A : A ;
+fun duplicate_A : A ;
+fun duplicate_N : N ;
+fun duplicate_V : V ;
+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 durables_N : N ;
+fun dural_A : A ;
+fun durance_N : N ;
+fun duration_N : N ;
+fun durative_N : N ;
+fun durbar_N : N ;
+fun duress_N : N ;
+fun durian_N : N ;
+fun during_Prep : Prep ;
+fun durmast_N : N ;
+fun durra_N : N ;
+fun durum_N : N ;
+fun dusk_N : N ;
+fun dusky_A : A ;
+fun dust_N : N ;
+fun dust_V : V ;
+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 dustcloth_N : N ;
+fun duster_N : N ;
+fun dustiness_N : N ;
+fun dustlike_A : A ;
+fun dustman_N : N ;
+fun dustmop_N : N ;
+fun dustpan_N : N ;
+fun dusty_A : A ;
+fun dutchman_N : N ;
+fun duteous_A : A ;
+fun dutiable_A : A ;
+fun dutiful_A : A ;
+fun dutifulness_N : N ;
+fun duty_N : N ;
+fun duty_free_A : A ;
+fun duvet_N : N ;
+fun dwarf_N : N ;
+fun dwarf_V : V ;
+fun dwarfish_A : A ;
+fun dwarfishness_N : N ;
+fun dwarfism_N : N ;
+fun dwell_dwelled_V : V ;
+fun dwell_dwelt_V : V ;
+fun dweller_N : N ;
+fun dwelling_N : N ;
+fun dwelling_house_N : N ;
+fun dwindle_V : V ;
+fun dwindling_N : N ;
+fun dyadic_A : A ;
+fun dyarchy_N : N ;
+fun dybbuk_N : N ;
+fun dye_N : N ;
+fun dye_V : V ;
+fun dye_works_N : N ;
+fun dyed_in_the_wool_A : A ;
+fun dyeing_N : N ;
+fun dyer_N : N ;
+fun dyestuff_N : N ;
+fun dyewood_N : N ;
+fun dyke_N : N ;
+fun dyke_V : V ;
+fun dynamic_A : A ;
+fun dynamic_N : N ;
+fun dynamically_Adv : Adv ;
+fun dynamics_N : N ;
+fun dynamism_N : N ;
+fun dynamite_N : N ;
+fun dynamite_V : V ;
+fun dynamiter_N : N ;
+fun dynamo_N : N ;
+fun dynamometer_N : N ;
+fun dynast_N : N ;
+fun dynastic_A : A ;
+fun dynasty_N : N ;
+fun dyne_N : N ;
+fun dysaphia_N : N ;
+fun dysarthria_N : N ;
+fun dyscalculia_N : N ;
+fun dyschezia_N : N ;
+fun dyscrasia_N : N ;
+fun dysentery_N : N ;
+fun dysfunction_N : N ;
+fun dysfunctional_A : A ;
+fun dysgenesis_N : N ;
+fun dysgenic_A : A ;
+fun dysgenics_N : N ;
+fun dysgraphia_N : N ;
+fun dyskinesia_N : N ;
+fun dyslectic_A : A ;
+fun dyslectic_N : N ;
+fun dyslexia_N : N ;
+fun dyslexic_A : A ;
+fun dyslogia_N : N ;
+fun dyslogistic_A : A ;
+fun dysmenorrhea_N : N ;
+fun dysomia_N : N ;
+fun dysosmia_N : N ;
+fun dyspepsia_N : N ;
+fun dyspeptic_A : A ;
+fun dyspeptic_N : N ;
+fun dysphagia_N : N ;
+fun dysphasia_N : N ;
+fun dysphemism_N : N ;
+fun dysphemistic_A : A ;
+fun dysphonia_N : N ;
+fun dysphoria_N : N ;
+fun dysphoric_A : A ;
+fun dysplasia_N : N ;
+fun dysplastic_A : A ;
+fun dyspnea_N : N ;
+fun dysprosium_N : N ;
+fun dysthymia_N : N ;
+fun dystopia_N : N ;
+fun dystopian_A : A ;
+fun dystrophy_N : N ;
+fun dysuria_N : N ;
+fun débris_N : N ;
+fun début_N : N ;
+fun débutante_N : N ;
+fun débâcle_N : N ;
+fun décolleté_A : A ;
+fun décor_N : N ;
+fun démarche_N : N ;
+fun démodé_A : A ;
+fun dénouement_N : N ;
+fun déshabillé_N : N ;
+fun détente_N : N ;
+fun e'en_Adv : Adv ;
+fun e'er_Adv : Adv ;
+fun e_mail_N : N ;
+fun each_Adv : Adv ;
+fun eager_A : A ;
+fun eagerness_N : N ;
+fun eagle_N : N ;
+fun eagle_eyed_A : A ;
+fun eaglet_N : N ;
+fun ear_N : N ;
+fun ear_trumpet_N : N ;
+fun earache_N : N ;
+fun eardrop_N : N ;
+fun eardrum_N : N ;
+fun eared_A : A ;
+fun earflap_N : N ;
+fun earful_N : N ;
+fun earl_N : N ;
+fun earldom_N : N ;
+fun earless_A : A ;
+fun earlier_A : A ;
+fun earlier_Adv : Adv ;
+fun earliness_N : N ;
+fun earlobe_N : N ;
+fun early_A : A ;
+fun early_Adv : Adv ;
+fun early_on_Adv : Adv ;
+fun early_warning_A : A ;
+fun earlyish_A : A ;
+fun earmark_N : N ;
+fun earmark_V : V ;
+fun earmuff_N : N ;
+fun earn_V : V ;
+fun earner_N : N ;
+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 earplug_N : N ;
+fun earring_N : N ;
+fun earshot_N : N ;
+fun earth_N : N ;
+fun earth_V : V ;
+fun earth_closet_N : N ;
+fun earthball_N : N ;
+fun earthborn_A : A ;
+fun earthbound_A : A ;
+fun earthen_A : A ;
+fun earthenware_N : N ;
+fun earthlike_A : A ;
+fun earthly_A : A ;
+fun earthnut_N : N ;
+fun earthquake_N : N ;
+fun earthshaking_A : A ;
+fun earthstar_N : N ;
+fun earthtongue_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 easel_N : N ;
+fun easement_N : N ;
+fun easiness_N : N ;
+fun easing_N : N ;
+fun eastbound_A : A ;
+fun easter_N : N ;
+fun easterly_A : A ;
+fun easterly_Adv : Adv ;
+fun easterner_N : N ;
+fun easternmost_A : A ;
+fun eastside_A : A ;
+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 easygoingness_N : N ;
+fun eat_V : V ;
+fun eatable_A : A ;
+fun eatable_N : N ;
+fun eatage_N : N ;
+fun eater_N : N ;
+fun eating_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 eaves_N : N ;
+fun eavesdrop_V : V ;
+fun eavesdropper_N : N ;
+fun ebb_N : N ;
+fun ebb_V : V ;
+fun ebbtide_N : N ;
+fun eblis_N : N ;
+fun ebon_A : A ;
+fun ebonite_N : N ;
+fun ebony_A : A ;
+fun ebony_N : N ;
+fun ebracteate_A : A ;
+fun ebullience_N : N ;
+fun ebullient_A : A ;
+fun eburnation_N : N ;
+fun ec_N : N ;
+fun ecarte_N : N ;
+fun eccentric_A : A ;
+fun eccentric_N : N ;
+fun eccentrically_Adv : Adv ;
+fun eccentricity_N : N ;
+fun ecchymosis_N : N ;
+fun ecclesiastic_N : N ;
+fun ecclesiastical_A : A ;
+fun ecclesiasticism_N : N ;
+fun ecclesiology_N : N ;
+fun eccrine_A : A ;
+fun ecdemic_A : A ;
+fun echelon_N : N ;
+fun echidna_N : N ;
+fun echinocactus_N : N ;
+fun echinococcosis_N : N ;
+fun echinococcus_N : N ;
+fun echinoderm_N : N ;
+fun echinus_N : N ;
+fun echo_N : N ;
+fun echo_V : V ;
+fun echo_sounder_N : N ;
+fun echo_sounding_N : N ;
+fun echocardiogram_N : N ;
+fun echocardiograph_N : N ;
+fun echocardiography_N : N ;
+fun echoencephalogram_N : N ;
+fun echoencephalograph_N : N ;
+fun echoencephalography_N : N ;
+fun echoic_A : A ;
+fun echolalia_N : N ;
+fun echoless_A : A ;
+fun echolocation_N : N ;
+fun echovirus_N : N ;
+fun eclampsia_N : N ;
+fun eclectic_A : A ;
+fun eclectic_N : N ;
+fun eclecticism_N : N ;
+fun eclipse_N : N ;
+fun eclipse_V : V ;
+fun ecliptic_N : N ;
+fun eclogue_N : N ;
+fun ecobabble_N : N ;
+fun ecological_A : A ;
+fun ecologist_N : N ;
+fun ecology_N : N ;
+fun econometric_A : A ;
+fun econometrician_N : N ;
+fun econometrics_N : N ;
+fun economic_A : A ;
+fun economical_A : A ;
+fun economics_N : N ;
+fun economist_N : N ;
+fun economize_V : V ;
+fun economizer_N : N ;
+fun economy_N : N ;
+fun ecosystem_N : N ;
+fun ecoterrorism_N : N ;
+fun ecotourism_N : N ;
+fun ecphonesis_N : N ;
+fun ecstasy_N : N ;
+fun ecstatic_A : A ;
+fun ecstatically_Adv : Adv ;
+fun ectasia_N : N ;
+fun ectoderm_N : N ;
+fun ectodermal_A : A ;
+fun ectomorph_N : N ;
+fun ectomorphic_A : A ;
+fun ectoparasite_N : N ;
+fun ectopia_N : N ;
+fun ectopic_A : A ;
+fun ectoplasm_N : N ;
+fun ectoproct_N : N ;
+fun ectrodactyly_N : N ;
+fun ecuadorian_A : A ;
+fun ecuadorian_N : N ;
+fun ecumenic_A : A ;
+fun ecumenical_A : A ;
+fun ecumenism_N : N ;
+fun eczema_N : N ;
+fun edacious_A : A ;
+fun edacity_N : N ;
+fun edaphosaurus_N : N ;
+fun eddy_N : N ;
+fun eddy_V : V ;
+fun edelweiss_N : N ;
+fun edema_N : N ;
+fun edematous_A : A ;
+fun edental_A : A ;
+fun edentate_N : N ;
+fun edentulous_A : A ;
+fun edge_N : N ;
+fun edge_V : V ;
+fun edgeless_A : A ;
+fun edger_N : N ;
+fun edgeways_Adv : Adv ;
+fun edgewise_Adv : Adv ;
+fun edginess_N : N ;
+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_V : V ;
+fun edifying_A : A ;
+fun edit_V : V ;
+fun editing_N : N ;
+fun edition_N : N ;
+fun editor_N : N ;
+fun editorial_A : A ;
+fun editorial_N : N ;
+fun editorship_N : N ;
+fun edmontosaurus_N : N ;
+fun edp_N : N ;
+fun educate_V : V ;
+fun education_N : N ;
+fun educational_A : A ;
+fun educationalist_N : N ;
+fun educationist_N : N ;
+fun educative_A : A ;
+fun educator_N : N ;
+fun educe_V : V ;
+fun edutainment_N : N ;
+fun edwardian_A : A ;
+fun edwardian_N : N ;
+fun eec_N : N ;
+fun eeg_N : N ;
+fun eel_N : N ;
+fun eelblenny_N : N ;
+fun eelgrass_N : N ;
+fun eellike_A : A ;
+fun eelpout_N : N ;
+fun eelworm_N : N ;
+fun eerie_A : A ;
+fun eeriness_N : N ;
+fun eery_A : A ;
+fun eff_V : V ;
+fun efface_V : V ;
+fun effaceable_A : A ;
+fun effacement_N : N ;
+fun effect_N : N ;
+fun effect_V : V ;
+fun effecter_N : N ;
+fun effective_A : A ;
+fun effectiveness_N : N ;
+fun effector_N : N ;
+fun effects_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 efferent_A : A ;
+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 effleurage_N : N ;
+fun efflorescence_N : N ;
+fun efflorescent_A : A ;
+fun effluent_A : A ;
+fun effluent_N : N ;
+fun effluvium_N : N ;
+fun efflux_N : N ;
+fun effort_N : N ;
+fun effortful_A : A ;
+fun effortfulness_N : N ;
+fun effortless_A : A ;
+fun effortlessness_N : N ;
+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 egalitarian_A : A ;
+fun egalitarian_N : N ;
+fun egalitarianism_N : N ;
+fun egality_N : N ;
+fun egg_N : N ;
+fun egg_V : V ;
+fun egg_beater_N : N ;
+fun egg_cup_N : N ;
+fun egg_whisk_N : N ;
+fun eggar_N : N ;
+fun eggbeater_N : N ;
+fun eggcup_N : N ;
+fun egghead_N : N ;
+fun eggnog_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 egocentric_N : N ;
+fun egoism_N : N ;
+fun egoist_N : N ;
+fun egoistic_A : A ;
+fun egoistical_A : A ;
+fun egomania_N : N ;
+fun egomaniac_N : N ;
+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 egress_N : N ;
+fun egret_N : N ;
+fun egyptian_A : A ;
+fun egyptian_N : N ;
+fun eider_N : N ;
+fun eiderdown_N : N ;
+fun eidetic_A : A ;
+fun eidos_N : N ;
+fun eigenvalue_N : N ;
+fun eightpence_N : N ;
+fun eightpenny_A : A ;
+fun eightsome_N : N ;
+fun einsteinium_N : N ;
+fun eisegesis_N : N ;
+fun eisteddfod_N : N ;
+fun either_Adv : Adv ;
+fun ejaculate_V : V ;
+fun ejaculation_N : N ;
+fun ejaculator_N : N ;
+fun eject_V : V ;
+fun ejection_N : N ;
+fun ejector_N : N ;
+fun ejector_seat_N : N ;
+fun eke_V : V ;
+fun el_dorado_N : N ;
+fun elaborate_A : A ;
+fun elaborate_V : V ;
+fun elaborateness_N : N ;
+fun elaboration_N : N ;
+fun eland_N : N ;
+fun elapid_N : N ;
+fun elapse_V : V ;
+fun elapsed_A : A ;
+fun elasmobranch_N : N ;
+fun elastance_N : N ;
+fun elastase_N : N ;
+fun elastic_A : A ;
+fun elastic_N : N ;
+fun elasticity_N : N ;
+fun elasticized_A : A ;
+fun elastin_N : N ;
+fun elastomer_N : N ;
+fun elastoplast_N : N ;
+fun elastosis_N : N ;
+fun elate_V : V ;
+fun elating_A : A ;
+fun elation_N : N ;
+fun elbow_N : N ;
+fun elbow_V : V ;
+fun elbowing_N : N ;
+fun elder_A : A ;
+fun elder_N : N ;
+fun elderberry_N : N ;
+fun elderly_A : A ;
+fun eldership_N : N ;
+fun eldritch_A : A ;
+fun elecampane_N : N ;
+fun elect_A : A ;
+fun elect_V : V ;
+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 electric_N : N ;
+fun electrical_A : A ;
+fun electrician_N : N ;
+fun electricity_N : N ;
+fun electrification_N : N ;
+fun electrify_V : V ;
+fun electrifying_A : A ;
+fun electrocardiogram_N : N ;
+fun electrocardiograph_N : N ;
+fun electrocardiographic_A : A ;
+fun electrocautery_N : N ;
+fun electrochemical_A : A ;
+fun electrochemistry_N : N ;
+fun electrocute_V : V ;
+fun electrocution_N : N ;
+fun electrocutioner_N : N ;
+fun electrode_N : N ;
+fun electrodeposition_N : N ;
+fun electrodynamometer_N : N ;
+fun electroencephalogram_N : N ;
+fun electroencephalograph_N : N ;
+fun electroencephalographic_A : A ;
+fun electrograph_N : N ;
+fun electrologist_N : N ;
+fun electrolysis_N : N ;
+fun electrolyte_N : N ;
+fun electrolytic_A : A ;
+fun electrolytic_N : N ;
+fun electromagnet_N : N ;
+fun electromagnetic_A : A ;
+fun electromagnetism_N : N ;
+fun electromechanical_A : A ;
+fun electrometer_N : N ;
+fun electromotive_A : A ;
+fun electromyogram_N : N ;
+fun electromyograph_N : N ;
+fun electromyography_N : N ;
+fun electron_N : N ;
+fun electronegativity_N : N ;
+fun electronic_A : A ;
+fun electronically_Adv : Adv ;
+fun electronics_N : N ;
+fun electrophoresis_N : N ;
+fun electrophoretic_A : A ;
+fun electrophorus_N : N ;
+fun electroplate_N : N ;
+fun electroplate_V : V ;
+fun electroplater_N : N ;
+fun electroretinogram_N : N ;
+fun electroscope_N : N ;
+fun electrosleep_N : N ;
+fun electrostatic_A : A ;
+fun electrostatically_Adv : Adv ;
+fun electrostatics_N : N ;
+fun electrosurgery_N : N ;
+fun electrotherapist_N : N ;
+fun electrotherapy_N : N ;
+fun electrum_N : N ;
+fun eleemosynary_A : A ;
+fun elegance_N : N ;
+fun elegant_A : A ;
+fun elegiac_A : A ;
+fun elegist_N : N ;
+fun elegy_N : N ;
+fun element_N : N ;
+fun elemental_A : A ;
+fun elementary_A : A ;
+fun elemi_N : N ;
+fun elephant_N : N ;
+fun elephantiasis_N : N ;
+fun elephantine_A : A ;
+fun elevate_V : V ;
+fun elevation_N : N ;
+fun elevator_N : N ;
+fun elf_N : N ;
+fun elfin_A : A ;
+fun elfish_A : A ;
+fun elicit_V : V ;
+fun elicitation_N : N ;
+fun elide_V : V ;
+fun eligibility_N : N ;
+fun eligible_A : A ;
+fun eliminate_V : V ;
+fun elimination_N : N ;
+fun eliminator_N : N ;
+fun elision_N : N ;
+fun elite_N : N ;
+fun elitism_N : N ;
+fun elitist_N : N ;
+fun elixir_N : N ;
+fun elizabethan_A : A ;
+fun elizabethan_N : N ;
+fun elk_N : N ;
+fun ell_N : N ;
+fun ellipse_N : N ;
+fun ellipsis_N : N ;
+fun ellipsoid_A : A ;
+fun ellipsoid_N : N ;
+fun elliptic_A : A ;
+fun elliptical_A : A ;
+fun elm_N : N ;
+fun elocution_N : N ;
+fun elocutionary_A : A ;
+fun elocutionist_N : N ;
+fun elongate_A : A ;
+fun elongate_V : V ;
+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 elsholtzia_N : N ;
+fun eluate_N : N ;
+fun elucidate_V : V ;
+fun elucidation_N : N ;
+fun elude_V : V ;
+fun elusive_A : A ;
+fun elusiveness_N : N ;
+fun elution_N : N ;
+fun elver_N : N ;
+fun elves_N : N ;
+fun elvish_A : A ;
+fun elysian_A : A ;
+fun em_N : N ;
+fun emaciate_V : V ;
+fun emaciation_N : N ;
+fun emanate_V : V ;
+fun emanation_N : N ;
+fun emancipate_V : V ;
+fun emancipation_N : N ;
+fun emancipative_A : A ;
+fun emancipator_N : N ;
+fun emarginate_A : A ;
+fun emasculate_V : V ;
+fun emasculation_N : N ;
+fun embalm_V : V ;
+fun embalmer_N : N ;
+fun embalmment_N : N ;
+fun embankment_N : N ;
+fun embargo_N : N ;
+fun embargo_V : V ;
+fun embark_V : V ;
+fun embarkation_N : N ;
+fun embarrass_V : V ;
+fun embarrassing_A : A ;
+fun embarrassment_N : N ;
+fun embassy_N : N ;
+fun embattled_A : A ;
+fun embed_V : V ;
+fun embellish_V : V ;
+fun embellishment_N : N ;
+fun ember_N : N ;
+fun embezzle_V : V ;
+fun embezzlement_N : N ;
+fun embezzler_N : N ;
+fun embitter_V : V ;
+fun embitterment_N : N ;
+fun emblazon_V : V ;
+fun emblem_N : N ;
+fun emblematic_A : A ;
+fun embodiment_N : N ;
+fun embody_V : V ;
+fun embolden_V : V ;
+fun embolectomy_N : N ;
+fun embolic_A : A ;
+fun embolism_N : N ;
+fun embolus_N : N ;
+fun embonpoint_A : A ;
+fun embonpoint_N : N ;
+fun emboss_V : V ;
+fun embrace_N : N ;
+fun embrace_V : V ;
+fun embrasure_N : N ;
+fun embrocation_N : N ;
+fun embroider_V : V ;
+fun embroiderer_N : N ;
+fun embroideress_N : N ;
+fun embroidery_N : N ;
+fun embroil_V : V ;
+fun embryo_N : N ;
+fun embryologist_N : N ;
+fun embryology_N : N ;
+fun embryonic_A : A ;
+fun emeer_N : N ;
+fun emend_V : V ;
+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 emeritus_N : N ;
+fun emery_N : N ;
+fun emetic_N : N ;
+fun emigrant_N : N ;
+fun emigrate_V : V ;
+fun emigration_N : N ;
+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_V : V ;
+fun emitter_N : N ;
+fun emmenagogue_N : N ;
+fun emmer_N : N ;
+fun emmetropia_N : N ;
+fun emmetropic_A : A ;
+fun emolument_N : N ;
+fun emoticon_N : N ;
+fun emotion_N : N ;
+fun emotional_A : A ;
+fun emotionality_N : N ;
+fun emotionless_A : A ;
+fun emotionlessness_N : N ;
+fun emotive_A : A ;
+fun empale_V : V ;
+fun empanel_V : V ;
+fun empathic_A : A ;
+fun empathize_V : V ;
+fun empathy_N : N ;
+fun emperor_N : N ;
+fun emphasis_N : N ;
+fun emphasize_V : V ;
+fun emphasizing_N : N ;
+fun emphatic_A : A ;
+fun emphatically_Adv : Adv ;
+fun emphysema_N : N ;
+fun emphysematous_A : A ;
+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 employ_N : N ;
+fun employ_V : V ;
+fun employable_A : A ;
+fun employable_N : N ;
+fun employee_N : N ;
+fun employer_N : N ;
+fun employment_N : N ;
+fun emporium_N : N ;
+fun empower_V : V ;
+fun empress_N : N ;
+fun emptiness_N : N ;
+fun empty_A : A ;
+fun empty_N : N ;
+fun empty_V : V ;
+fun empty_handed_A : A ;
+fun empty_headed_A : A ;
+fun emptying_N : N ;
+fun empurpled_A : A ;
+fun empyema_N : N ;
+fun empyreal_A : A ;
+fun empyrean_A : A ;
+fun empyrean_N : N ;
+fun emu_N : N ;
+fun emulate_V : V ;
+fun emulation_N : N ;
+fun emulous_A : A ;
+fun emulsifier_N : N ;
+fun emulsify_V : V ;
+fun emulsion_N : N ;
+fun en_N : N ;
+fun en_clair_Adv : Adv ;
+fun en_famille_Adv : Adv ;
+fun en_masse_Adv : Adv ;
+fun en_route_Adv : Adv ;
+fun enable_V : V ;
+fun enabling_A : A ;
+fun enact_V : V ;
+fun enactment_N : N ;
+fun enalapril_N : N ;
+fun enallage_N : N ;
+fun enamel_N : N ;
+fun enamel_V : V ;
+fun enamelware_N : N ;
+fun enamine_N : N ;
+fun enamored_A : A ;
+fun enamour_V : V ;
+fun enanthem_N : N ;
+fun enantiomorph_N : N ;
+fun enantiomorphism_N : N ;
+fun enate_A : A ;
+fun enate_N : N ;
+fun encainide_N : N ;
+fun encamp_V : V ;
+fun encampment_N : N ;
+fun encapsulation_N : N ;
+fun encase_V : V ;
+fun encasement_N : N ;
+fun encaustic_A : A ;
+fun encaustic_N : N ;
+fun encephalartos_N : N ;
+fun encephalitis_N : N ;
+fun encephalocele_N : N ;
+fun encephalogram_N : N ;
+fun encephalography_N : N ;
+fun encephalomyelitis_N : N ;
+fun enchain_V : V ;
+fun enchant_V : V ;
+fun enchanter_N : N ;
+fun enchantingly_Adv : Adv ;
+fun enchantment_N : N ;
+fun enchantress_N : N ;
+fun enchilada_N : N ;
+fun enchondroma_N : N ;
+fun encircle_V : V ;
+fun encirclement_N : N ;
+fun enclave_N : N ;
+fun enclose_V : V ;
+fun enclosure_N : N ;
+fun encode_V : V ;
+fun encoding_N : N ;
+fun encolure_N : N ;
+fun encomiastic_A : A ;
+fun encomium_N : N ;
+fun encompass_V : V ;
+fun encompassment_N : N ;
+fun encopresis_N : N ;
+fun encore_N : N ;
+fun encore_V : V ;
+fun encounter_N : N ;
+fun encounter_V : V ;
+fun encourage_V : V ;
+fun encouragement_N : N ;
+fun encouraging_A : A ;
+fun encroach_V : V ;
+fun encroachment_N : N ;
+fun encrust_V : V ;
+fun encrypt_V : V ;
+fun encumber_V : V ;
+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 encyclopedist_N : N ;
+fun encysted_A : A ;
+fun end_N : N ;
+fun end_V : V ;
+fun end_all_N : N ;
+fun end_tail_V : V ;
+fun endameba_N : N ;
+fun endanger_V : V ;
+fun endarterectomy_N : N ;
+fun endarteritis_N : N ;
+fun endear_V : V ;
+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 endergonic_A : A ;
+fun endermic_A : A ;
+fun endgame_N : N ;
+fun ending_N : N ;
+fun endive_N : N ;
+fun endless_A : A ;
+fun endlessness_N : N ;
+fun endocarditis_N : N ;
+fun endocardium_N : N ;
+fun endocentric_A : A ;
+fun endocervicitis_N : N ;
+fun endocranium_N : N ;
+fun endocrine_A : A ;
+fun endocrinologist_N : N ;
+fun endocrinology_N : N ;
+fun endoderm_N : N ;
+fun endodontic_A : A ;
+fun endodontics_N : N ;
+fun endodontist_N : N ;
+fun endoergic_A : A ;
+fun endogamous_A : A ;
+fun endogamy_N : N ;
+fun endogenic_A : A ;
+fun endogenous_A : A ;
+fun endogeny_N : N ;
+fun endolymph_N : N ;
+fun endometrial_A : A ;
+fun endometriosis_N : N ;
+fun endometrium_N : N ;
+fun endomorph_N : N ;
+fun endomorphic_A : A ;
+fun endomorphy_N : N ;
+fun endoneurium_N : N ;
+fun endonuclease_N : N ;
+fun endoparasite_N : N ;
+fun endoparasitic_A : A ;
+fun endoplasm_N : N ;
+fun endorphin_N : N ;
+fun endorse_V : V ;
+fun endorsement_N : N ;
+fun endorser_N : N ;
+fun endoscope_N : N ;
+fun endoscopic_A : A ;
+fun endoscopy_N : N ;
+fun endoskeleton_N : N ;
+fun endosperm_N : N ;
+fun endospore_N : N ;
+fun endosteum_N : N ;
+fun endothelial_A : A ;
+fun endothelium_N : N ;
+fun endothermic_A : A ;
+fun endotoxin_N : N ;
+fun endow_V : V ;
+fun endowment_N : N ;
+fun endue_V : V ;
+fun endurable_A : A ;
+fun endurance_N : N ;
+fun endure_V : V ;
+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 energid_N : N ;
+fun energizer_N : N ;
+fun energizing_A : A ;
+fun energizing_N : N ;
+fun energy_N : N ;
+fun enervate_V : V ;
+fun enervation_N : N ;
+fun enfant_terrible_N : N ;
+fun enfeeble_V : V ;
+fun enfeoffment_N : N ;
+fun enfilade_N : N ;
+fun enflurane_N : N ;
+fun enfold_V : V ;
+fun enforce_V : V ;
+fun enforceable_A : A ;
+fun enforcement_N : N ;
+fun enfranchise_V : V ;
+fun enfranchisement_N : N ;
+fun engage_V : V ;
+fun engagement_N : N ;
+fun engelmannia_N : N ;
+fun engender_V : V ;
+fun engine_N : N ;
+fun engine_driver_N : N ;
+fun engineer_N : N ;
+fun engineer_V : V ;
+fun engineering_N : N ;
+fun enginery_N : N ;
+fun englishman_N : N ;
+fun englishwoman_N : N ;
+fun engorgement_N : N ;
+fun engraft_V : V ;
+fun engram_N : N ;
+fun engrave_V : V ;
+fun engraver_N : N ;
+fun engraving_N : N ;
+fun engross_V : V ;
+fun engulf_V : V ;
+fun enhance_V : V ;
+fun enhancement_N : N ;
+fun enigma_N : N ;
+fun enigmatic_A : A ;
+fun enigmatically_Adv : Adv ;
+fun enjambment_N : N ;
+fun enjoin_V : V ;
+fun enjoy_V : V ;
+fun enjoyable_A : A ;
+fun enjoyableness_N : N ;
+fun enjoyer_N : N ;
+fun enjoyment_N : N ;
+fun enkephalin_N : N ;
+fun enkindle_V : V ;
+fun enlarge_V : V ;
+fun enlargement_N : N ;
+fun enlarger_N : N ;
+fun enlighten_V : V ;
+fun enlightening_A : A ;
+fun enlightenment_N : N ;
+fun enlist_V : V ;
+fun enlistment_N : N ;
+fun enliven_V : V ;
+fun enmesh_V : V ;
+fun enmity_N : N ;
+fun ennoble_V : V ;
+fun ennoblement_N : N ;
+fun ennobling_A : A ;
+fun ennui_N : N ;
+fun ennumerate_V : V ;
+fun enol_N : N ;
+fun enolic_A : A ;
+fun enologist_N : N ;
+fun enology_N : N ;
+fun enophile_N : N ;
+fun enormity_N : N ;
+fun enormous_A : A ;
+fun enormousness_N : N ;
+fun enosis_N : N ;
+fun enough_A : A ;
+fun enough_N : N ;
+fun enplane_V : V ;
+fun enquire_V : V ;
+fun enquirer_N : N ;
+fun enquiringly_Adv : Adv ;
+fun enquiry_N : N ;
+fun enrage_V : V ;
+fun enrapture_V : V ;
+fun enrich_V : V ;
+fun enrichment_N : N ;
+fun enrol_V : V ;
+fun enroll_V : V ;
+fun enrollee_N : N ;
+fun enrolment_N : N ;
+fun ensconce_V : V ;
+fun ensemble_N : N ;
+fun enshrine_V : V ;
+fun enshroud_V : V ;
+fun ensiform_A : A ;
+fun ensign_N : N ;
+fun ensilage_N : N ;
+fun enslave_V : V ;
+fun enslavement_N : N ;
+fun ensnare_V : V ;
+fun ensue_V : V ;
+fun ensure_V : V ;
+fun entablature_N : N ;
+fun entail_N : N ;
+fun entail_V : V ;
+fun entangle_V : V ;
+fun entanglement_N : N ;
+fun entasis_N : N ;
+fun entelechy_N : N ;
+fun entellus_N : N ;
+fun entente_N : N ;
+fun entente_cordiale_N : N ;
+fun enter_V : V ;
+fun enteric_A : A ;
+fun enteritis_N : N ;
+fun enterobiasis_N : N ;
+fun enterokinase_N : N ;
+fun enterolith_N : N ;
+fun enterolithiasis_N : N ;
+fun enteron_N : N ;
+fun enteropathy_N : N ;
+fun enteroptosis_N : N ;
+fun enterostenosis_N : N ;
+fun enterostomy_N : N ;
+fun enterotoxemia_N : N ;
+fun enterotoxin_N : N ;
+fun enterovirus_N : N ;
+fun enterprise_N : N ;
+fun enterprising_A : A ;
+fun entertain_V : V ;
+fun entertainer_N : N ;
+fun entertaining_A : A ;
+fun entertainment_N : N ;
+fun enthral_V : V ;
+fun enthrall_V : V ;
+fun enthrone_V : V ;
+fun enthronement_N : N ;
+fun enthuse_V : V ;
+fun enthusiasm_N : N ;
+fun enthusiast_N : N ;
+fun enthusiastic_enthusiastically_A : A ;
+fun enthusiastic_enthusiasticly_A : A ;
+fun entice_V : V ;
+fun enticement_N : N ;
+fun entire_A : A ;
+fun entirety_N : N ;
+fun entitle_V : V ;
+fun entitlement_N : N ;
+fun entity_N : N ;
+fun entomb_V : V ;
+fun entomion_N : N ;
+fun entomological_A : A ;
+fun entomologist_N : N ;
+fun entomology_N : N ;
+fun entomophilous_A : A ;
+fun entomophobia_N : N ;
+fun entoproct_N : N ;
+fun entourage_N : N ;
+fun entozoan_A : A ;
+fun entozoic_A : A ;
+fun entr'acte_N : N ;
+fun entrain_V : V ;
+fun entrance_N : N ;
+fun entrance_V : V ;
+fun entrance_fee_N : N ;
+fun entrance_money_N : N ;
+fun entrancement_N : N ;
+fun entrant_N : N ;
+fun entrap_V : V ;
+fun entrapment_N : N ;
+fun entreat_V : V ;
+fun entreatingly_Adv : Adv ;
+fun entreaty_N : N ;
+fun entrecote_N : N ;
+fun entrench_V : V ;
+fun entrenchment_N : N ;
+fun entrepot_N : N ;
+fun entrepreneur_N : N ;
+fun entrepreneurial_A : A ;
+fun entrust_V : V ;
+fun entry_N : N ;
+fun entrée_N : N ;
+fun entwin_V : V ;
+fun entwine_V : V ;
+fun enucleation_N : N ;
+fun enumerate_V : V ;
+fun enumeration_N : N ;
+fun enunciate_V : V ;
+fun enunciation_N : N ;
+fun enured_A : A ;
+fun enuresis_N : N ;
+fun envelop_V : V ;
+fun envelope_N : N ;
+fun envelopment_N : N ;
+fun envenom_V : V ;
+fun enviable_A : A ;
+fun envious_A : A ;
+fun environ_V : V ;
+fun environment_N : N ;
+fun environmental_A : A ;
+fun environmentalism_N : N ;
+fun environmentalist_N : N ;
+fun environs_N : N ;
+fun envisage_V : V ;
+fun envision_V : V ;
+fun envisioned_A : A ;
+fun envoi_N : N ;
+fun envoy_N : N ;
+fun envy_N : N ;
+fun envy_V : V ;
+fun enwrap_V : V ;
+fun enzootic_A : A ;
+fun enzymatic_A : A ;
+fun enzyme_N : N ;
+fun enzymologist_N : N ;
+fun enzymology_N : N ;
+fun eohippus_N : N ;
+fun eolith_N : N ;
+fun eolithic_A : A ;
+fun eon_N : N ;
+fun eonian_A : A ;
+fun eoraptor_N : N ;
+fun eosin_N : N ;
+fun eosinopenia_N : N ;
+fun eosinophil_N : N ;
+fun eosinophilia_N : N ;
+fun eosinophilic_A : A ;
+fun epacris_N : N ;
+fun epanalepsis_N : N ;
+fun epanaphora_N : N ;
+fun epanodos_N : N ;
+fun epanorthosis_N : N ;
+fun eparch_N : N ;
+fun eparchial_A : A ;
+fun eparchy_N : N ;
+fun epaulet_N : N ;
+fun epaulette_N : N ;
+fun epauliere_N : N ;
+fun ependyma_N : N ;
+fun epenthesis_N : N ;
+fun epenthetic_A : A ;
+fun epergne_N : N ;
+fun ephah_N : N ;
+fun ephedra_N : N ;
+fun ephedrine_N : N ;
+fun ephemera_N : N ;
+fun ephemeral_A : A ;
+fun ephemerality_N : N ;
+fun ephemerid_N : N ;
+fun ephemeris_N : N ;
+fun ephemeron_N : N ;
+fun epic_A : A ;
+fun epic_N : N ;
+fun epicalyx_N : N ;
+fun epicanthus_N : N ;
+fun epicardia_N : N ;
+fun epicardium_N : N ;
+fun epicarp_N : N ;
+fun epicarpal_A : A ;
+fun epicenter_N : N ;
+fun epicentre_N : N ;
+fun epicondyle_N : N ;
+fun epicondylitis_N : N ;
+fun epicranium_N : N ;
+fun epicure_N : N ;
+fun epicurean_A : A ;
+fun epicurean_N : N ;
+fun epicureanism_N : N ;
+fun epicurism_N : N ;
+fun epicycle_N : N ;
+fun epicyclic_A : A ;
+fun epicycloid_N : N ;
+fun epideictic_A : A ;
+fun epidemic_A : A ;
+fun epidemic_N : N ;
+fun epidemiologic_A : A ;
+fun epidemiologist_N : N ;
+fun epidemiology_N : N ;
+fun epidendron_N : N ;
+fun epidermis_N : N ;
+fun epidiascope_N : N ;
+fun epididymis_N : N ;
+fun epididymitis_N : N ;
+fun epidural_A : A ;
+fun epigastric_A : A ;
+fun epigastrium_N : N ;
+fun epigenesis_N : N ;
+fun epiglottis_N : N ;
+fun epiglottitis_N : N ;
+fun epigone_N : N ;
+fun epigram_N : N ;
+fun epigrammatic_A : A ;
+fun epigraph_N : N ;
+fun epigraphy_N : N ;
+fun epikeratophakia_N : N ;
+fun epilation_N : N ;
+fun epilepsy_N : N ;
+fun epileptic_A : A ;
+fun epileptic_N : N ;
+fun epilithic_A : A ;
+fun epilogue_N : N ;
+fun epimorphic_A : A ;
+fun epinephrine_N : N ;
+fun epiphany_N : N ;
+fun epiphenomenon_N : N ;
+fun epiphora_N : N ;
+fun epiphyllum_N : N ;
+fun epiphyseal_A : A ;
+fun epiphysis_N : N ;
+fun epiphytic_A : A ;
+fun epiphytotic_A : A ;
+fun epiplexis_N : N ;
+fun episcia_N : N ;
+fun episcleritis_N : N ;
+fun episcopacy_N : N ;
+fun episcopal_A : A ;
+fun episcopalian_A : A ;
+fun episcopalian_N : N ;
+fun episcopate_N : N ;
+fun episiotomy_N : N ;
+fun episode_N : N ;
+fun episodic_A : A ;
+fun episodically_Adv : Adv ;
+fun episome_N : N ;
+fun epispadias_N : N ;
+fun episteme_N : N ;
+fun epistemic_A : A ;
+fun epistemologist_N : N ;
+fun epistemology_N : N ;
+fun epistle_N : N ;
+fun epistolary_A : A ;
+fun epitaph_N : N ;
+fun epitaxy_N : N ;
+fun epithalamium_N : N ;
+fun epithelial_A : A ;
+fun epitheliod_A : A ;
+fun epithelioma_N : N ;
+fun epithelium_N : N ;
+fun epithet_N : N ;
+fun epitome_N : N ;
+fun epitomize_V : V ;
+fun epizoan_A : A ;
+fun epizoic_A : A ;
+fun epizootic_A : A ;
+fun epoch_N : N ;
+fun epoch_making_A : A ;
+fun epochal_A : A ;
+fun eponym_N : N ;
+fun eponymous_A : A ;
+fun eponymy_N : N ;
+fun epos_N : N ;
+fun epoxy_N : N ;
+fun epsilon_N : N ;
+fun eptatretus_N : N ;
+fun equable_A : A ;
+fun equal_A : A ;
+fun equal_N : N ;
+fun equal_equaled_V : V ;
+fun equal_equalled_V : V ;
+fun equalitarian_N : N ;
+fun equality_N : N ;
+fun equalization_N : N ;
+fun equalize_V : V ;
+fun equalizer_N : N ;
+fun equanimity_N : N ;
+fun equatability_N : N ;
+fun equate_V : V ;
+fun equation_N : N ;
+fun equator_N : N ;
+fun equatorial_A : A ;
+fun equatorial_N : N ;
+fun equerry_N : N ;
+fun equestrian_A : A ;
+fun equestrian_N : N ;
+fun equiangular_A : A ;
+fun equidistant_A : A ;
+fun equidistribution_N : N ;
+fun equilateral_A : A ;
+fun equilateral_N : N ;
+fun equilibration_N : N ;
+fun equilibrium_N : N ;
+fun equine_A : A ;
+fun equine_N : N ;
+fun equinoctial_A : A ;
+fun equinox_N : N ;
+fun equip_V : V ;
+fun equipage_N : N ;
+fun equipment_N : N ;
+fun equipoise_N : N ;
+fun equipoised_A : A ;
+fun equipotent_A : A ;
+fun equiprobable_A : A ;
+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 eradicable_A : A ;
+fun eradicate_V : V ;
+fun eradication_N : N ;
+fun erase_V : V ;
+fun eraser_N : N ;
+fun erasure_N : N ;
+fun erbium_N : N ;
+fun ere_Adv : Adv ;
+fun ere_Prep : Prep ;
+fun erect_A : A ;
+fun erect_V : V ;
+fun erectile_A : A ;
+fun erecting_N : N ;
+fun erection_N : N ;
+fun erectness_N : N ;
+fun eremite_N : N ;
+fun eremitic_A : A ;
+fun eremitism_N : N ;
+fun erethism_N : N ;
+fun erg_N : N ;
+fun ergo_Adv : Adv ;
+fun ergodic_A : A ;
+fun ergodicity_N : N ;
+fun ergonomic_A : A ;
+fun ergonomics_N : N ;
+fun ergonovine_N : N ;
+fun ergosterol_N : N ;
+fun ergot_N : N ;
+fun ergotamine_N : N ;
+fun ergotic_A : A ;
+fun ergotism_N : N ;
+fun ergotropic_A : A ;
+fun ergotropism_N : N ;
+fun erica_N : N ;
+fun eriogonum_N : N ;
+fun eristic_A : A ;
+fun eristic_N : N ;
+fun eritrean_A : A ;
+fun eritrean_N : N ;
+fun ermine_N : N ;
+fun ern_N : N ;
+fun erode_V : V ;
+fun erogenous_A : A ;
+fun erose_A : A ;
+fun erosion_N : N ;
+fun erosive_A : A ;
+fun erotic_A : A ;
+fun erotic_N : N ;
+fun erotically_Adv : Adv ;
+fun eroticism_N : N ;
+fun err_V : V ;
+fun errancy_N : N ;
+fun errand_N : N ;
+fun errant_A : A ;
+fun erratic_A : A ;
+fun erratically_Adv : Adv ;
+fun erratum_N : N ;
+fun errhine_A : A ;
+fun erroneous_A : A ;
+fun erroneousness_N : N ;
+fun error_N : N ;
+fun errorless_A : A ;
+fun ersatz_A : A ;
+fun ersatz_N : N ;
+fun erse_N : N ;
+fun eructation_N : N ;
+fun erudite_A : A ;
+fun eruditeness_N : N ;
+fun erudition_N : N ;
+fun erupt_V : V ;
+fun eruption_N : N ;
+fun eruptive_A : A ;
+fun erwinia_N : N ;
+fun eryngo_N : N ;
+fun erysipelas_N : N ;
+fun erythema_N : N ;
+fun erythematous_A : A ;
+fun erythrite_N : N ;
+fun erythroblast_N : N ;
+fun erythroblastosis_N : N ;
+fun erythroderma_N : N ;
+fun erythroid_A : A ;
+fun erythromycin_N : N ;
+fun erythropoiesis_N : N ;
+fun erythropoietic_A : A ;
+fun erythropoietin_N : N ;
+fun escadrille_N : N ;
+fun escalade_N : N ;
+fun escalader_N : N ;
+fun escalate_V : V ;
+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 escapee_N : N ;
+fun escapement_N : N ;
+fun escapism_N : N ;
+fun escapist_N : N ;
+fun escapologist_N : N ;
+fun escapology_N : N ;
+fun escargot_N : N ;
+fun escarpment_N : N ;
+fun eschar_N : N ;
+fun eschatological_A : A ;
+fun eschatologist_N : N ;
+fun eschatology_N : N ;
+fun escheat_N : N ;
+fun escherichia_N : N ;
+fun eschew_V : V ;
+fun escolar_N : N ;
+fun escort_N : N ;
+fun escort_V : V ;
+fun escritoire_N : N ;
+fun escrow_N : N ;
+fun escudo_N : N ;
+fun escutcheon_N : N ;
+fun esker_N : N ;
+fun eskimo_N : N ;
+fun esmolol_N : N ;
+fun esophageal_A : A ;
+fun esophagitis_N : N ;
+fun esophagoscope_N : N ;
+fun esophagus_N : N ;
+fun esoteric_A : A ;
+fun esoterica_N : N ;
+fun esp_N : N ;
+fun espadrille_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_V : V ;
+fun espresso_N : N ;
+fun esprit_N : N ;
+fun esprit_de_corps_N : N ;
+fun espy_V : V ;
+fun esquire_N : N ;
+fun essay_N : N ;
+fun essay_V : V ;
+fun essayist_N : N ;
+fun essence_N : N ;
+fun essential_A : A ;
+fun essential_N : N ;
+fun essentiality_N : N ;
+fun establish_V : V ;
+fun establishment_N : N ;
+fun establishmentarianism_N : N ;
+fun estaminet_N : N ;
+fun estate_N : N ;
+fun estazolam_N : N ;
+fun esteem_N : N ;
+fun esteem_V : V ;
+fun ester_N : N ;
+fun esthete_N : N ;
+fun esthetic_A : A ;
+fun esthetic_N : N ;
+fun esthetical_A : A ;
+fun esthetician_N : N ;
+fun esthetics_N : N ;
+fun estimable_A : A ;
+fun estimate_N : N ;
+fun estimate_V : V ;
+fun estimation_N : N ;
+fun estivation_N : N ;
+fun estoppel_N : N ;
+fun estradiol_N : N ;
+fun estrange_V : V ;
+fun estrangement_N : N ;
+fun estranging_A : A ;
+fun estriol_N : N ;
+fun estrogen_N : N ;
+fun estrogenic_A : A ;
+fun estrone_N : N ;
+fun estrous_A : A ;
+fun estrus_N : N ;
+fun estuarine_A : A ;
+fun estuary_N : N ;
+fun eta_N : N ;
+fun etagere_N : N ;
+fun etamine_N : N ;
+fun etanercept_N : N ;
+fun etcetera_N : N ;
+fun etch_V : V ;
+fun etcher_N : N ;
+fun etching_N : N ;
+fun etd_N : N ;
+fun eternal_A : A ;
+fun eternity_N : N ;
+fun ethane_N : N ;
+fun ethchlorvynol_N : N ;
+fun ether_N : N ;
+fun ethereal_A : A ;
+fun ethernet_N : N ;
+fun ethic_N : N ;
+fun ethical_A : A ;
+fun ethicism_N : N ;
+fun ethicist_N : N ;
+fun ethics_N : N ;
+fun ethiopian_A : A ;
+fun ethiopian_N : N ;
+fun ethmoid_N : N ;
+fun ethnarch_N : N ;
+fun ethnic_A : A ;
+fun ethnic_N : N ;
+fun ethnically_Adv : Adv ;
+fun ethnicity_N : N ;
+fun ethnocentric_A : A ;
+fun ethnocentrism_N : N ;
+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 ethologist_N : N ;
+fun ethology_N : N ;
+fun ethos_ethe_N : N ;
+fun ethos_ethea_N : N ;
+fun ethosuximide_N : N ;
+fun ethyl_N : N ;
+fun ethylene_N : N ;
+fun etiolate_A : A ;
+fun etiolation_N : N ;
+fun etiological_A : A ;
+fun etiologist_N : N ;
+fun etiology_N : N ;
+fun etiquette_N : N ;
+fun etodolac_N : N ;
+fun etude_N : N ;
+fun etui_N : N ;
+fun etymological_A : A ;
+fun etymologist_N : N ;
+fun etymology_N : N ;
+fun etymon_N : N ;
+fun eubacteria_N : N ;
+fun eucalyptus_N : N ;
+fun eucharist_N : N ;
+fun euchre_N : N ;
+fun euclidean_A : A ;
+fun euclidian_A : A ;
+fun eudemon_N : N ;
+fun eudemonic_A : A ;
+fun eudemonism_N : N ;
+fun eudiometer_N : N ;
+fun eugenic_A : A ;
+fun eugenics_N : N ;
+fun euglena_N : N ;
+fun euglenoid_N : N ;
+fun eukaryote_N : N ;
+fun eukaryotic_A : A ;
+fun eulogist_N : N ;
+fun eulogistic_A : A ;
+fun eulogize_V : V ;
+fun eulogy_N : N ;
+fun eunuch_N : N ;
+fun euphemism_N : N ;
+fun euphemistic_A : A ;
+fun euphemistically_Adv : Adv ;
+fun euphonic_A : A ;
+fun euphonious_A : A ;
+fun euphonium_N : N ;
+fun euphony_N : N ;
+fun euphorbium_N : N ;
+fun euphoria_N : N ;
+fun euphoriant_A : A ;
+fun euphoriant_N : N ;
+fun euphoric_A : A ;
+fun euphuism_N : N ;
+fun eupnea_N : N ;
+fun eurasian_A : A ;
+fun eurasian_N : N ;
+fun eurhythmics_N : N ;
+fun euro_N : N ;
+fun eurodollar_N : N ;
+fun europium_N : N ;
+fun eurypterid_N : N ;
+fun eurythmics_N : N ;
+fun eurythmy_N : N ;
+fun eusporangiate_A : A ;
+fun eusporangium_N : N ;
+fun eustachian_A : A ;
+fun eutectic_N : N ;
+fun euthanasia_N : N ;
+fun euthenics_N : N ;
+fun eutherian_A : A ;
+fun eutrophic_A : A ;
+fun eutrophication_N : N ;
+fun evacuate_V : V ;
+fun evacuation_N : N ;
+fun evacuee_N : N ;
+fun evade_V : V ;
+fun evaluate_V : V ;
+fun evaluation_N : N ;
+fun evaluative_A : A ;
+fun evaluator_N : N ;
+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 evaporable_A : A ;
+fun evaporate_V : V ;
+fun evaporation_N : N ;
+fun evaporative_A : A ;
+fun evaporite_N : N ;
+fun evasion_N : N ;
+fun evasive_A : A ;
+fun evasiveness_N : N ;
+fun eve_N : N ;
+fun even_A : A ;
+fun even_Adv : Adv ;
+fun even_N : N ;
+fun even_evened_V : V ;
+fun even_evenned_V : V ;
+fun even_handed_A : A ;
+fun evenhanded_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 eventration_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 everlasting_N : N ;
+fun everlastingness_N : N ;
+fun evermore_Adv : Adv ;
+fun eversion_N : N ;
+fun everyday_A : A ;
+fun everyman_N : N ;
+fun everyplace_Adv : Adv ;
+fun everywhere_Adv : Adv ;
+fun evict_V : V ;
+fun eviction_N : N ;
+fun evidence_N : N ;
+fun evidence_V : V ;
+fun evident_A : A ;
+fun evidential_A : A ;
+fun evidentiary_A : A ;
+fun evil_A : A ;
+fun evil_N : N ;
+fun evil_doer_N : N ;
+fun evil_minded_A : A ;
+fun evince_V : V ;
+fun eviscerate_A : A ;
+fun eviscerate_V : V ;
+fun evisceration_N : N ;
+fun evitable_A : A ;
+fun evocation_N : N ;
+fun evocative_A : A ;
+fun evoke_V : V ;
+fun evolution_N : N ;
+fun evolutionary_A : A ;
+fun evolutionist_N : N ;
+fun evolve_V : V ;
+fun ewe_N : N ;
+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 exabit_N : N ;
+fun exabyte_N : N ;
+fun exacerbate_V : V ;
+fun exacerbation_N : N ;
+fun exact_A : A ;
+fun exact_V : V ;
+fun exacta_N : N ;
+fun exacting_A : A ;
+fun exaction_N : N ;
+fun exactitude_N : N ;
+fun exactness_N : N ;
+fun exaggerate_V : V ;
+fun exaggeration_N : N ;
+fun exalt_V : V ;
+fun exaltation_N : N ;
+fun exam_N : N ;
+fun examen_N : N ;
+fun examination_N : N ;
+fun examine_V : V ;
+fun examiner_N : N ;
+fun example_N : N ;
+fun exanthem_N : N ;
+fun exarch_N : N ;
+fun exasperate_V : V ;
+fun exasperating_A : A ;
+fun exasperation_N : N ;
+fun exaugural_A : A ;
+fun exbibit_N : N ;
+fun excavate_V : V ;
+fun excavation_N : N ;
+fun excavator_N : N ;
+fun exceed_V : V ;
+fun exceedance_N : N ;
+fun exceeding_A : A ;
+fun excel_V : V ;
+fun excellence_N : N ;
+fun excellency_N : N ;
+fun excellent_A : A ;
+fun excelsior_N : N ;
+fun except_Prep : Prep ;
+fun except_V : V ;
+fun except_for_Prep : Prep ;
+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_V : V ;
+fun exchangeability_N : N ;
+fun exchangeable_A : A ;
+fun exchanger_N : N ;
+fun exchequer_N : N ;
+fun excise_N : N ;
+fun excise_V : V ;
+fun exciseman_N : N ;
+fun excision_N : N ;
+fun excitability_N : N ;
+fun excitable_A : A ;
+fun excitant_A : A ;
+fun excitation_N : N ;
+fun excite_V : V ;
+fun excitedly_Adv : Adv ;
+fun excitement_N : N ;
+fun exciting_A : A ;
+fun exclaim_V : V ;
+fun exclamation_N : N ;
+fun exclamatory_A : A ;
+fun exclude_V : V ;
+fun exclusion_N : N ;
+fun exclusive_A : A ;
+fun exclusive_N : N ;
+fun excogitate_V : V ;
+fun excogitation_N : N ;
+fun excogitative_A : A ;
+fun excogitator_N : N ;
+fun excommunicate_V : V ;
+fun excommunication_N : N ;
+fun excoriate_V : V ;
+fun excoriation_N : N ;
+fun excrement_N : N ;
+fun excrescence_N : N ;
+fun excrescent_A : A ;
+fun excrete_V : V ;
+fun excretion_N : N ;
+fun excretory_A : A ;
+fun excruciating_A : A ;
+fun exculpate_V : V ;
+fun exculpation_N : N ;
+fun exculpatory_A : A ;
+fun excursion_N : N ;
+fun excursionist_N : N ;
+fun excusable_A : A ;
+fun excuse_N : N ;
+fun excuse_V : V ;
+fun execrable_A : A ;
+fun execrate_V : V ;
+fun execration_N : N ;
+fun executability_N : N ;
+fun executant_N : N ;
+fun execute_V : V ;
+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 exegete_N : N ;
+fun exegetic_A : A ;
+fun exemplar_N : N ;
+fun exemplary_A : A ;
+fun exemplification_N : N ;
+fun exemplify_V : V ;
+fun exemplifying_A : A ;
+fun exempt_A : A ;
+fun exempt_V : V ;
+fun exemption_N : N ;
+fun exenteration_N : N ;
+fun exercise_N : N ;
+fun exercise_V : V ;
+fun exergonic_A : A ;
+fun exert_V : V ;
+fun exertion_N : N ;
+fun exfoliation_N : N ;
+fun exhalation_N : N ;
+fun exhale_V : V ;
+fun exhaust_N : N ;
+fun exhaust_V : V ;
+fun exhaust_pipe_N : N ;
+fun exhaustible_A : A ;
+fun exhausting_A : A ;
+fun exhaustion_N : N ;
+fun exhaustive_A : A ;
+fun exhibit_N : N ;
+fun exhibit_V : V ;
+fun exhibition_N : N ;
+fun exhibitioner_N : N ;
+fun exhibitionism_N : N ;
+fun exhibitionist_N : N ;
+fun exhibitionistic_A : A ;
+fun exhibitor_N : N ;
+fun exhilarate_V : V ;
+fun exhilarating_A : A ;
+fun exhilaration_N : N ;
+fun exhort_V : V ;
+fun exhortation_N : N ;
+fun exhortative_A : A ;
+fun exhumation_N : N ;
+fun exhume_V : V ;
+fun exigency_N : N ;
+fun exigent_A : A ;
+fun exiguous_A : A ;
+fun exile_N : N ;
+fun exile_V : V ;
+fun exilic_A : A ;
+fun exist_V : V ;
+fun existence_N : N ;
+fun existent_A : A ;
+fun existential_A : A ;
+fun existentialism_N : N ;
+fun existentialist_A : A ;
+fun existentialist_N : N ;
+fun exit_N : N ;
+fun exit_V : V ;
+fun exobiology_N : N ;
+fun exocentric_A : A ;
+fun exocrine_A : A ;
+fun exode_N : N ;
+fun exodontic_A : A ;
+fun exodontics_N : N ;
+fun exodontist_N : N ;
+fun exodus_N : N ;
+fun exoergic_A : A ;
+fun exogamous_A : A ;
+fun exogamy_N : N ;
+fun exogenous_A : A ;
+fun exomphalos_N : N ;
+fun exon_N : N ;
+fun exonerate_V : V ;
+fun exoneration_N : N ;
+fun exonuclease_N : N ;
+fun exophthalmos_N : N ;
+fun exorbitance_N : N ;
+fun exorbitant_A : A ;
+fun exorcise_V : V ;
+fun exorcism_N : N ;
+fun exorcist_N : N ;
+fun exorcize_V : V ;
+fun exordium_N : N ;
+fun exoskeleton_N : N ;
+fun exosphere_N : N ;
+fun exostosis_N : N ;
+fun exoteric_A : A ;
+fun exotherm_N : N ;
+fun exothermic_A : A ;
+fun exotic_A : A ;
+fun exoticism_N : N ;
+fun exotoxin_N : N ;
+fun expand_V : V ;
+fun expandable_A : A ;
+fun expanse_N : N ;
+fun expansion_N : N ;
+fun expansionism_N : N ;
+fun expansionist_A : A ;
+fun expansive_A : A ;
+fun expansiveness_N : N ;
+fun expatiate_V : V ;
+fun expatiation_N : N ;
+fun expatriate_N : N ;
+fun expatriate_V : V ;
+fun expect_V : V ;
+fun expectable_A : A ;
+fun expectancy_N : N ;
+fun expectant_A : A ;
+fun expectation_N : N ;
+fun expectedness_N : N ;
+fun expectorant_N : N ;
+fun expectorate_V : V ;
+fun expectoration_N : N ;
+fun expedience_N : N ;
+fun expediency_N : N ;
+fun expedient_A : A ;
+fun expedient_N : N ;
+fun expedite_V : V ;
+fun expedition_N : N ;
+fun expeditionary_A : A ;
+fun expeditious_A : A ;
+fun expel_V : V ;
+fun expend_V : V ;
+fun expendable_A : A ;
+fun expending_N : N ;
+fun expenditure_N : N ;
+fun expense_N : N ;
+fun expensive_A : A ;
+fun expensiveness_N : N ;
+fun experience_N : N ;
+fun experience_V : V ;
+fun experienced_A : A ;
+fun experiential_A : A ;
+fun experiment_N : N ;
+fun experiment_V : V ;
+fun experimental_A : A ;
+fun experimentalism_N : N ;
+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 expiable_A : A ;
+fun expiate_V : V ;
+fun expiation_N : N ;
+fun expiatory_A : A ;
+fun expiration_N : N ;
+fun expiratory_A : A ;
+fun expire_V : V ;
+fun expiry_N : N ;
+fun explain_V : V ;
+fun explainable_A : A ;
+fun explanans_N : N ;
+fun explanation_N : N ;
+fun explanatory_A : A ;
+fun expletive_N : N ;
+fun explicable_A : A ;
+fun explicandum_N : N ;
+fun explicate_V : V ;
+fun explication_N : N ;
+fun explicit_A : A ;
+fun explicitness_N : N ;
+fun explode_V : V ;
+fun exploit_N : N ;
+fun exploit_V : V ;
+fun exploitation_N : N ;
+fun exploitative_A : A ;
+fun exploiter_N : N ;
+fun exploration_N : N ;
+fun exploratory_A : A ;
+fun explore_V : V ;
+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 exponentiation_N : N ;
+fun export_N : N ;
+fun export_V : V ;
+fun exportable_A : A ;
+fun exportation_N : N ;
+fun exporter_N : N ;
+fun exporting_N : N ;
+fun expose_V : V ;
+fun exposition_N : N ;
+fun expositor_N : N ;
+fun expository_A : A ;
+fun expostulate_V : V ;
+fun expostulation_N : N ;
+fun exposure_N : N ;
+fun exposé_N : N ;
+fun expound_V : V ;
+fun express_A : A ;
+fun express_Adv : Adv ;
+fun express_N : N ;
+fun express_V : V ;
+fun expressible_A : A ;
+fun expression_N : N ;
+fun expressionism_N : N ;
+fun expressionist_A : A ;
+fun expressionist_N : N ;
+fun expressionless_A : A ;
+fun expressive_A : A ;
+fun expressiveness_N : N ;
+fun expressway_N : N ;
+fun expropriate_V : V ;
+fun expropriation_N : N ;
+fun expulsion_N : N ;
+fun expunction_N : N ;
+fun expunge_V : V ;
+fun expurgate_V : V ;
+fun expurgation_N : N ;
+fun expurgator_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 extemporization_N : N ;
+fun extemporize_V : V ;
+fun extend_V : V ;
+fun extendible_A : A ;
+fun extensile_A : A ;
+fun extension_N : N ;
+fun extensional_A : A ;
+fun extensive_A : A ;
+fun extent_N : N ;
+fun extenuate_V : V ;
+fun extenuating_A : A ;
+fun extenuation_N : N ;
+fun exterior_A : A ;
+fun exterior_N : N ;
+fun exteriorize_V : V ;
+fun exterminable_A : A ;
+fun exterminate_V : V ;
+fun extermination_N : N ;
+fun exterminator_N : N ;
+fun extern_N : N ;
+fun external_A : A ;
+fun external_N : N ;
+fun externalization_N : N ;
+fun externalize_V : V ;
+fun exteroception_N : N ;
+fun exteroceptive_A : A ;
+fun exteroceptor_N : N ;
+fun exterritorial_A : A ;
+fun extinct_A : A ;
+fun extinction_N : N ;
+fun extinguish_V : V ;
+fun extinguishable_A : A ;
+fun extinguisher_N : N ;
+fun extirpate_V : V ;
+fun extirpation_N : N ;
+fun extol_V : V ;
+fun extort_V : V ;
+fun extortion_N : N ;
+fun extortionate_A : A ;
+fun extra_A : A ;
+fun extra_Adv : Adv ;
+fun extra_N : N ;
+fun extracellular_A : A ;
+fun extract_N : N ;
+fun extract_V : V ;
+fun extractable_A : A ;
+fun extraction_N : N ;
+fun extractor_N : N ;
+fun extracurricular_A : A ;
+fun extradite_V : V ;
+fun extradition_N : N ;
+fun extrados_N : N ;
+fun extragalactic_A : A ;
+fun extrajudicial_A : A ;
+fun extralegal_A : A ;
+fun extralinguistic_A : A ;
+fun extramarital_A : A ;
+fun extramural_A : A ;
+fun extraneous_A : A ;
+fun extraneousness_N : N ;
+fun extraordinariness_N : N ;
+fun extraordinary_A : A ;
+fun extrapolate_V : V ;
+fun extrapolation_N : N ;
+fun extrasensory_A : A ;
+fun extrasystole_N : N ;
+fun extrasystolic_A : A ;
+fun extraterrestrial_A : A ;
+fun extraterritorial_A : A ;
+fun extravagance_N : N ;
+fun extravagant_A : A ;
+fun extravaganza_N : N ;
+fun extravasation_N : N ;
+fun extraversion_N : N ;
+fun extreme_A : A ;
+fun extreme_N : N ;
+fun extremeness_N : N ;
+fun extremism_N : N ;
+fun extremist_A : A ;
+fun extremist_N : N ;
+fun extremity_N : N ;
+fun extremum_N : N ;
+fun extricable_A : A ;
+fun extricate_V : V ;
+fun extrication_N : N ;
+fun extrinsic_A : A ;
+fun extropic_A : A ;
+fun extropy_N : N ;
+fun extrospective_A : A ;
+fun extroversion_N : N ;
+fun extroversive_A : A ;
+fun extrovert_A : A ;
+fun extrovert_N : N ;
+fun extroverted_A : A ;
+fun extrovertish_A : A ;
+fun extrude_V : V ;
+fun extrusion_N : N ;
+fun extrusive_A : A ;
+fun exuberance_N : N ;
+fun exuberant_A : A ;
+fun exudate_N : N ;
+fun exudation_N : N ;
+fun exude_V : V ;
+fun exult_V : V ;
+fun exultant_A : A ;
+fun exultation_N : N ;
+fun exurbia_N : N ;
+fun exuviae_N : N ;
+fun exuvial_A : A ;
+fun eyas_N : N ;
+fun eye_N : N ;
+fun eye_V : V ;
+fun eye_catching_A : A ;
+fun eye_opener_N : N ;
+fun eye_shadow_N : N ;
+fun eyeball_N : N ;
+fun eyeball_V : V ;
+fun eyebath_N : N ;
+fun eyebrow_N : N ;
+fun eyecatching_A : A ;
+fun eyecup_N : N ;
+fun eyedness_N : N ;
+fun eyedrop_N : N ;
+fun eyeful_N : N ;
+fun eyeglass_N : N ;
+fun eyelash_N : N ;
+fun eyeless_A : A ;
+fun eyelessness_N : N ;
+fun eyelet_N : N ;
+fun eyelid_N : N ;
+fun eyelike_A : A ;
+fun eyeliner_N : N ;
+fun eyepatch_N : N ;
+fun eyepiece_N : N ;
+fun eyes_N : N ;
+fun eyeshadow_N : N ;
+fun eyeshot_N : N ;
+fun eyesight_N : N ;
+fun eyesore_N : N ;
+fun eyespot_N : N ;
+fun eyestrain_N : N ;
+fun eyetooth_N : N ;
+fun eyewash_N : N ;
+fun eyewitness_N : N ;
+fun eyrie_N : N ;
+fun eyrir_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_V : V ;
+fun fabrication_N : N ;
+fun fabulist_N : N ;
+fun fabulous_A : A ;
+fun facade_N : N ;
+fun face_N : N ;
+fun face_V : V ;
+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 faceplate_N : N ;
+fun facer_N : N ;
+fun facet_N : N ;
+fun faceted_A : A ;
+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_V : V ;
+fun facilitation_N : N ;
+fun facilitative_A : A ;
+fun facilitator_N : N ;
+fun facilitatory_A : A ;
+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 factoid_N : N ;
+fun factor_N : N ;
+fun factor_V : V ;
+fun factorial_A : A ;
+fun factorial_N : N ;
+fun factorization_N : N ;
+fun factorize_V : V ;
+fun factory_N : N ;
+fun factotum_N : N ;
+fun factual_A : A ;
+fun factuality_N : N ;
+fun facula_N : N ;
+fun facultative_A : A ;
+fun faculty_N : N ;
+fun fad_N : N ;
+fun faddish_A : A ;
+fun faddist_N : N ;
+fun faddy_A : A ;
+fun fade_N : N ;
+fun fade_V : V ;
+fun fadeout_N : N ;
+fun fado_N : N ;
+fun faecal_A : A ;
+fun faerie_N : N ;
+fun faery_N : N ;
+fun faff_V : V ;
+fun fag_N : N ;
+fun fag_V : V ;
+fun fag_end_N : N ;
+fun faggot_N : N ;
+fun fagot_N : N ;
+fun fagoting_N : N ;
+fun faience_N : N ;
+fun fail_N : N ;
+fun fail_V : V ;
+fun fail_safe_A : A ;
+fun failing_N : N ;
+fun faille_N : N ;
+fun failure_N : N ;
+fun fain_Adv : Adv ;
+fun faineance_N : N ;
+fun faineant_A : A ;
+fun faint_A : A ;
+fun faint_N : N ;
+fun faint_V : V ;
+fun faint_hearted_A : A ;
+fun faintheartedness_N : N ;
+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 fairlead_N : N ;
+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 faithful_N : N ;
+fun faithfulness_N : N ;
+fun faithless_A : A ;
+fun faithlessness_N : N ;
+fun fake_A : A ;
+fun fake_N : N ;
+fun fake_V : V ;
+fun fakery_N : N ;
+fun fakir_N : N ;
+fun falafel_N : N ;
+fun falangist_N : N ;
+fun falcate_A : A ;
+fun falchion_N : N ;
+fun falcon_N : N ;
+fun falconer_N : N ;
+fun falconine_A : A ;
+fun falconry_N : N ;
+fun fall_N : N ;
+fun fall_V : V ;
+fun fallacious_A : A ;
+fun fallaciousness_N : N ;
+fun fallacy_N : N ;
+fun fallboard_N : N ;
+fun faller_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 falls_N : N ;
+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 falsie_N : N ;
+fun falsification_N : N ;
+fun falsifier_N : N ;
+fun falsify_V : V ;
+fun falsity_N : N ;
+fun falter_V : V ;
+fun falteringly_Adv : Adv ;
+fun fame_N : N ;
+fun fame_V : V ;
+fun familial_A : A ;
+fun familiar_A : A ;
+fun familiar_N : N ;
+fun familiarity_N : N ;
+fun familiarization_N : N ;
+fun familiarize_V : V ;
+fun familiarizing_A : A ;
+fun family_N : N ;
+fun famine_N : N ;
+fun famish_V : V ;
+fun famotidine_N : N ;
+fun famous_A : A ;
+fun famulus_N : N ;
+fun fan_N : N ;
+fun fan_V : V ;
+fun fan_belt_N : N ;
+fun fanaloka_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_V : V ;
+fun fancy_free_A : A ;
+fun fandango_N : N ;
+fun fandom_N : N ;
+fun fanfare_N : N ;
+fun fang_N : N ;
+fun fanged_A : A ;
+fun fanion_N : N ;
+fun fanjet_N : N ;
+fun fanlight_N : N ;
+fun fanlike_A : A ;
+fun fanny_N : N ;
+fun fantail_N : N ;
+fun fantan_N : N ;
+fun fantasia_N : N ;
+fun fantasist_N : N ;
+fun fantasize_V : V ;
+fun fantast_N : N ;
+fun fantastic_A : A ;
+fun fantastically_Adv : Adv ;
+fun fantasy_N : N ;
+fun fantods_N : N ;
+fun fao_N : N ;
+fun far_A : A ;
+fun far_V : V ;
+fun far_famed_A : A ;
+fun far_fetched_A : A ;
+fun far_flung_A : A ;
+fun far_from_Prep : Prep ;
+fun far_off_A : A ;
+fun far_reaching_A : A ;
+fun far_seeing_A : A ;
+fun far_sighted_A : A ;
+fun farad_N : N ;
+fun farandole_N : N ;
+fun faraway_A : A ;
+fun farce_N : N ;
+fun farcical_A : A ;
+fun fardel_N : N ;
+fun fare_N : N ;
+fun fare_V : V ;
+fun fare_stage_N : N ;
+fun farewell_N : N ;
+fun farfalle_N : N ;
+fun farfetched_A : A ;
+fun farina_N : N ;
+fun farinaceous_A : A ;
+fun farkleberry_N : N ;
+fun farm_N : N ;
+fun farm_V : V ;
+fun farmer_N : N ;
+fun farmerette_N : N ;
+fun farmhand_N : N ;
+fun farmhouse_N : N ;
+fun farming_N : N ;
+fun farmland_N : N ;
+fun farmplace_N : N ;
+fun farmstead_N : N ;
+fun farmyard_N : N ;
+fun farness_N : N ;
+fun faro_N : N ;
+fun farrago_N : N ;
+fun farrier_N : N ;
+fun farrow_N : N ;
+fun farrow_V : V ;
+fun farseeing_A : A ;
+fun farsi_N : N ;
+fun farsighted_A : A ;
+fun fart_N : N ;
+fun fart_V : V ;
+fun farther_A : A ;
+fun farther_Adv : Adv ;
+fun farthermost_A : A ;
+fun farthest_Adv : Adv ;
+fun farthing_N : N ;
+fun farthingale_N : N ;
+fun fartlek_N : N ;
+fun fasces_N : N ;
+fun fascia_N : N ;
+fun fascicle_N : N ;
+fun fasciculation_N : N ;
+fun fascinate_V : V ;
+fun fascinating_A : A ;
+fun fascination_N : N ;
+fun fascioliasis_N : N ;
+fun fasciolopsiasis_N : N ;
+fun fascism_N : N ;
+fun fascist_A : A ;
+fun fascist_N : N ;
+fun fascista_N : N ;
+fun fashion_N : N ;
+fun fashion_V : V ;
+fun fashionable_A : A ;
+fun fast_A : A ;
+fun fast_Adv : Adv ;
+fun fast_N : N ;
+fun fast_V : V ;
+fun fastball_N : N ;
+fun fasten_fastened_V : V ;
+fun fasten_fastenned_V : V ;
+fun fastener_N : N ;
+fun fastening_N : N ;
+fun fastidious_A : A ;
+fun fastidiousness_N : N ;
+fun fastigiate_A : A ;
+fun fastnacht_N : N ;
+fun fastness_N : N ;
+fun fat_A : A ;
+fun fat_N : N ;
+fun fat_V : V ;
+fun fatal_A : A ;
+fun fatalism_N : N ;
+fun fatalist_A : A ;
+fun fatalist_N : N ;
+fun fatalistic_A : A ;
+fun fatality_N : N ;
+fun fatback_N : N ;
+fun fate_N : N ;
+fun fate_V : V ;
+fun fateful_A : A ;
+fun fathead_N : N ;
+fun father_N : N ;
+fun father_V : V ;
+fun father_in_law_N : N ;
+fun fatherhood_N : N ;
+fun fatherland_N : N ;
+fun fatherless_A : A ;
+fun fatherliness_N : N ;
+fun fatherly_A : A ;
+fun fathom_N : N ;
+fun fathom_fathomed_V : V ;
+fun fathom_fathommed_V : V ;
+fun fathomable_A : A ;
+fun fathomless_A : A ;
+fun fatigability_N : N ;
+fun fatigue_N : N ;
+fun fatigue_V : V ;
+fun fatigue_party_N : N ;
+fun fatigues_N : N ;
+fun fatless_A : A ;
+fun fatness_N : N ;
+fun fatso_N : N ;
+fun fatten_fattened_V : V ;
+fun fatten_fattenned_V : V ;
+fun fattish_A : A ;
+fun fattism_N : N ;
+fun fatty_A : A ;
+fun fatuity_N : N ;
+fun fatuous_A : A ;
+fun fatuousness_N : N ;
+fun fatwa_N : N ;
+fun fatwah_N : N ;
+fun faubourg_N : N ;
+fun faucal_A : A ;
+fun fauces_N : N ;
+fun faucet_N : N ;
+fun fauld_N : N ;
+fun fault_N : N ;
+fun fault_V : V ;
+fun fault_finder_N : N ;
+fun fault_finding_N : N ;
+fun faultfinding_N : N ;
+fun faultless_A : A ;
+fun faultlessness_N : N ;
+fun faulty_A : A ;
+fun faun_N : N ;
+fun fauna_N : N ;
+fun fauteuil_N : N ;
+fun fauvism_N : N ;
+fun faux_pas_N : N ;
+fun favism_N : N ;
+fun favor_N : N ;
+fun favor_V : V ;
+fun favorable_A : A ;
+fun favorableness_N : N ;
+fun favorite_A : A ;
+fun favorite_N : N ;
+fun favoritism_N : N ;
+fun favour_N : N ;
+fun favour_V : V ;
+fun favourable_A : A ;
+fun favourite_A : A ;
+fun favourite_N : N ;
+fun favouritism_N : N ;
+fun favus_N : N ;
+fun fawn_N : N ;
+fun fawn_V : V ;
+fun façade_N : N ;
+fun fealty_N : N ;
+fun fear_N : N ;
+fun fear_V : V ;
+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_day_N : N ;
+fun feasting_N : N ;
+fun feat_N : N ;
+fun feather_N : N ;
+fun feather_V : V ;
+fun feather_boa_N : N ;
+fun featherbed_N : N ;
+fun featherbed_V : V ;
+fun featherbedding_N : N ;
+fun featherbrained_A : A ;
+fun featheredge_N : N ;
+fun featherfoil_N : N ;
+fun featherlike_A : A ;
+fun feathertop_N : N ;
+fun featherweight_N : N ;
+fun feathery_A : A ;
+fun feature_N : N ;
+fun feature_V : V ;
+fun featureless_A : A ;
+fun febrile_A : A ;
+fun feckless_A : A ;
+fun fecklessness_N : N ;
+fun fecula_N : N ;
+fun feculence_N : N ;
+fun feculent_A : A ;
+fun fecund_A : A ;
+fun fecundity_N : N ;
+fun fed_N : N ;
+fun fed_V : V ;
+fun fedayeen_N : N ;
+fun fedelline_N : N ;
+fun federal_A : A ;
+fun federalism_N : N ;
+fun federalist_N : N ;
+fun federalization_N : N ;
+fun federate_A : A ;
+fun federate_V : V ;
+fun federation_N : N ;
+fun fedora_N : N ;
+fun fee_N : N ;
+fun fee_V : V ;
+fun feeble_A : A ;
+fun feeble_minded_A : A ;
+fun feeblemindedness_N : N ;
+fun feebleness_N : N ;
+fun feed_N : N ;
+fun feed_V : V ;
+fun feedback_N : N ;
+fun feeder_N : N ;
+fun feeding_N : N ;
+fun feeding_bottle_N : N ;
+fun feedlot_N : N ;
+fun feedstock_N : N ;
+fun feel_N : N ;
+fun feel_feeled_V : V ;
+fun feel_felt_V : V ;
+fun feeler_N : N ;
+fun feeling_N : N ;
+fun feelingly_Adv : Adv ;
+fun feelings_N : N ;
+fun feetfirst_Adv : Adv ;
+fun feign_V : V ;
+fun feijoa_N : N ;
+fun feint_N : N ;
+fun feint_V : V ;
+fun feist_N : N ;
+fun feisty_A : A ;
+fun feldspar_N : N ;
+fun felicitate_V : V ;
+fun felicitation_N : N ;
+fun felicitous_A : A ;
+fun felicity_N : N ;
+fun feline_A : A ;
+fun feline_N : N ;
+fun fell_A : A ;
+fun fell_N : N ;
+fun fell_V : V ;
+fun fellah_fellaheen_N : N ;
+fun fellah_fellahin_N : N ;
+fun fellatio_N : N ;
+fun felloe_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 felted_A : A ;
+fun felucca_N : N ;
+fun felwort_N : N ;
+fun female_A : A ;
+fun female_N : N ;
+fun femaleness_N : N ;
+fun feminine_A : A ;
+fun feminine_N : N ;
+fun femininity_N : N ;
+fun feminism_N : N ;
+fun feminist_A : A ;
+fun feminist_N : N ;
+fun feminization_N : N ;
+fun femoral_A : A ;
+fun femtochemistry_N : N ;
+fun femtometer_N : N ;
+fun femtosecond_N : N ;
+fun femtovolt_N : N ;
+fun femur_N : N ;
+fun fen_N : N ;
+fun fence_N : N ;
+fun fence_V : V ;
+fun fencelike_A : A ;
+fun fencer_N : N ;
+fun fencing_N : N ;
+fun fend_V : V ;
+fun fender_N : N ;
+fun fenestra_N : N ;
+fun fenestral_A : A ;
+fun fenestration_N : N ;
+fun fennel_N : N ;
+fun fenoprofen_N : N ;
+fun fenugreek_N : N ;
+fun feoff_N : N ;
+fun feral_A : A ;
+fun fergusonite_N : N ;
+fun feria_N : N ;
+fun ferial_A : A ;
+fun fermata_N : N ;
+fun ferment_N : N ;
+fun ferment_V : V ;
+fun fermentable_A : A ;
+fun fermentation_N : N ;
+fun fermion_N : N ;
+fun fermium_N : N ;
+fun fern_N : N ;
+fun ferned_A : A ;
+fun fernless_A : A ;
+fun fernlike_A : A ;
+fun ferny_A : A ;
+fun ferocious_A : A ;
+fun ferociousness_N : N ;
+fun ferocity_N : N ;
+fun ferret_N : N ;
+fun ferret_ferreted_V : V ;
+fun ferret_ferretted_V : V ;
+fun ferric_A : A ;
+fun ferricyanide_N : N ;
+fun ferrimagnetism_N : N ;
+fun ferrite_N : N ;
+fun ferritin_N : N ;
+fun ferrocerium_N : N ;
+fun ferroconcrete_N : N ;
+fun ferrocyanide_N : N ;
+fun ferromagnetic_A : A ;
+fun ferromagnetism_N : N ;
+fun ferrous_A : A ;
+fun ferrule_N : N ;
+fun ferry_N : N ;
+fun ferry_V : V ;
+fun ferryboat_N : N ;
+fun ferryman_N : N ;
+fun fertile_A : A ;
+fun fertility_N : N ;
+fun fertilizable_A : A ;
+fun fertilization_N : N ;
+fun fertilize_V : V ;
+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 fescue_N : N ;
+fun fess_V : V ;
+fun fesse_N : N ;
+fun festal_A : A ;
+fun fester_N : N ;
+fun fester_V : V ;
+fun festering_N : N ;
+fun festination_N : N ;
+fun festival_N : N ;
+fun festive_A : A ;
+fun festivity_N : N ;
+fun festoon_N : N ;
+fun festoon_V : V ;
+fun festschrift_N : N ;
+fun fetal_A : A ;
+fun fetch_N : N ;
+fun fetch_V : V ;
+fun fetching_A : A ;
+fun fete_day_N : N ;
+fun feterita_N : N ;
+fun fetid_A : A ;
+fun fetish_N : N ;
+fun fetishism_N : N ;
+fun fetishist_N : N ;
+fun fetlock_N : N ;
+fun fetology_N : N ;
+fun fetometry_N : N ;
+fun fetoprotein_N : N ;
+fun fetoscope_N : N ;
+fun fetoscopy_N : N ;
+fun fetter_N : N ;
+fun fetter_V : V ;
+fun fetterbush_N : N ;
+fun fettle_N : N ;
+fun fettuccine_N : N ;
+fun fetus_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 feverfew_N : N ;
+fun feverish_A : A ;
+fun feverroot_N : N ;
+fun few_A : A ;
+fun few_N : N ;
+fun fewer_A : A ;
+fun fewness_N : N ;
+fun fey_A : A ;
+fun fez_N : N ;
+fun fiance_N : N ;
+fun fiancee_N : N ;
+fun fiancé_N : N ;
+fun fiancée_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 fiber_N : N ;
+fun fiberboard_N : N ;
+fun fiberglass_N : N ;
+fun fiberscope_N : N ;
+fun fibre_N : N ;
+fun fibreboard_N : N ;
+fun fibreglass_N : N ;
+fun fibril_N : N ;
+fun fibrillation_N : N ;
+fun fibrillose_A : A ;
+fun fibrin_N : N ;
+fun fibrinase_N : N ;
+fun fibrinogen_N : N ;
+fun fibrinolysis_N : N ;
+fun fibrinopeptide_N : N ;
+fun fibrinous_A : A ;
+fun fibroadenoma_N : N ;
+fun fibroblast_N : N ;
+fun fibrocalcific_A : A ;
+fun fibrocartilage_N : N ;
+fun fibrocartilaginous_A : A ;
+fun fibroma_N : N ;
+fun fibromyositis_N : N ;
+fun fibrosis_N : N ;
+fun fibrositis_N : N ;
+fun fibrosity_N : N ;
+fun fibrous_A : A ;
+fun fibula_N : N ;
+fun fichu_N : N ;
+fun fickle_A : A ;
+fun fickleness_N : N ;
+fun fictile_A : A ;
+fun fiction_N : N ;
+fun fictional_A : A ;
+fun fictionalization_N : N ;
+fun fictitious_A : A ;
+fun fictive_A : A ;
+fun fiddle_N : N ;
+fun fiddle_V : V ;
+fun fiddleneck_N : N ;
+fun fiddler_N : N ;
+fun fiddlestick_N : N ;
+fun fidelity_N : N ;
+fun fidget_N : N ;
+fun fidget_V : V ;
+fun fidgety_A : A ;
+fun fiducial_A : A ;
+fun fiduciary_A : A ;
+fun fiduciary_N : N ;
+fun fief_N : N ;
+fun fiefdom_N : N ;
+fun field_N : N ;
+fun field_V : V ;
+fun field_hospital_N : N ;
+fun field_officer_N : N ;
+fun fielder_N : N ;
+fun fieldfare_N : N ;
+fun fielding_N : N ;
+fun fieldsman_N : N ;
+fun fieldstone_N : N ;
+fun fieldwork_N : N ;
+fun fieldworker_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 fig_N : N ;
+fun fig_leaf_N : N ;
+fun fight_N : N ;
+fun fight_V : V ;
+fun fighter_N : N ;
+fun fighting_N : N ;
+fun figment_N : N ;
+fun figural_A : A ;
+fun figuration_N : N ;
+fun figurative_A : A ;
+fun figure_N : N ;
+fun figure_V : V ;
+fun figurehead_N : N ;
+fun figurine_N : N ;
+fun figwort_N : N ;
+fun fijian_A : A ;
+fun fijian_N : N ;
+fun filaggrin_N : N ;
+fun filament_N : N ;
+fun filamentous_A : A ;
+fun filar_A : A ;
+fun filaria_N : N ;
+fun filarial_A : A ;
+fun filariasis_N : N ;
+fun filariid_A : A ;
+fun filature_N : N ;
+fun filbert_N : N ;
+fun filch_V : V ;
+fun file_N : N ;
+fun file_V : V ;
+fun filefish_N : N ;
+fun filename_N : N ;
+fun filer_N : N ;
+fun filet_N : N ;
+fun filial_A : A ;
+fun filibuster_N : N ;
+fun filibuster_V : V ;
+fun filicide_N : N ;
+fun filigree_N : N ;
+fun filing_N : N ;
+fun filipino_A : A ;
+fun filipino_N : N ;
+fun fill_N : N ;
+fun fill_V : V ;
+fun filler_N : N ;
+fun fillet_N : N ;
+fun fillet_V : V ;
+fun filling_N : N ;
+fun fillip_N : N ;
+fun filly_N : N ;
+fun film_N : N ;
+fun film_V : V ;
+fun film_star_N : N ;
+fun filmable_A : A ;
+fun filmdom_N : N ;
+fun filming_N : N ;
+fun filmy_A : A ;
+fun filovirus_N : N ;
+fun fils_N : N ;
+fun filter_N : N ;
+fun filter_V : V ;
+fun filtertipped_A : A ;
+fun filth_N : N ;
+fun filthiness_N : N ;
+fun filthy_A : A ;
+fun filtrate_N : N ;
+fun filtrate_V : V ;
+fun filtration_N : N ;
+fun fimbria_N : N ;
+fun fimbriate_A : A ;
+fun fin_N : N ;
+fun finable_A : A ;
+fun finagle_V : V ;
+fun finagler_N : N ;
+fun final_A : A ;
+fun final_N : N ;
+fun finale_N : N ;
+fun finalist_N : N ;
+fun finality_N : N ;
+fun finalization_N : N ;
+fun finalize_V : V ;
+fun finance_N : N ;
+fun finance_V : V ;
+fun financial_A : A ;
+fun financier_N : N ;
+fun financing_N : N ;
+fun finback_N : N ;
+fun finch_N : N ;
+fun find_N : N ;
+fun find_V : V ;
+fun finder_N : N ;
+fun finding_N : N ;
+fun findings_N : N ;
+fun fine_A : A ;
+fun fine_Adv : Adv ;
+fun fine_N : N ;
+fun fine_V : V ;
+fun fine_tooth_A : A ;
+fun fineable_A : A ;
+fun fineness_N : N ;
+fun finer_A : A ;
+fun finery_N : N ;
+fun finespun_A : A ;
+fun finesse_N : N ;
+fun finesse_V : V ;
+fun finger_N : N ;
+fun finger_V : V ;
+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 fingering_N : N ;
+fun fingerless_A : A ;
+fun fingerling_N : N ;
+fun fingermark_N : N ;
+fun fingernail_N : N ;
+fun fingerpost_N : N ;
+fun fingerprint_N : N ;
+fun fingerprinting_N : N ;
+fun fingerstall_N : N ;
+fun fingertip_N : N ;
+fun finial_N : N ;
+fun finical_A : A ;
+fun finicky_A : A ;
+fun finis_N : N ;
+fun finish_N : N ;
+fun finish_V : V ;
+fun finisher_N : N ;
+fun finite_A : A ;
+fun finiteness_N : N ;
+fun fink_N : N ;
+fun fink_V : V ;
+fun finn_N : N ;
+fun finnan_N : N ;
+fun finnan_haddie_N : N ;
+fun finnan_haddock_N : N ;
+fun fiord_N : N ;
+fun fipple_N : N ;
+fun fir_N : N ;
+fun fir_cone_N : N ;
+fun fire_N : N ;
+fun fire_V : V ;
+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 firebase_N : N ;
+fun firebird_N : N ;
+fun fireboat_N : N ;
+fun firebomb_N : N ;
+fun firebox_N : N ;
+fun firebrand_N : N ;
+fun firebrat_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 fireplace_N : N ;
+fun fireplug_N : N ;
+fun firepower_N : N ;
+fun fireproof_A : A ;
+fun fireside_N : N ;
+fun firestone_N : N ;
+fun firestorm_N : N ;
+fun firetrap_N : N ;
+fun firewall_N : N ;
+fun firewater_N : N ;
+fun fireweed_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 firmament_N : N ;
+fun firmamental_A : A ;
+fun firmness_N : N ;
+fun firmware_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 firstborn_A : A ;
+fun firstborn_N : N ;
+fun firsthand_A : A ;
+fun firsthand_Adv : Adv ;
+fun firth_N : N ;
+fun fisc_N : N ;
+fun fiscal_A : A ;
+fun fish_N : N ;
+fun fish_V : V ;
+fun fish_hook_N : N ;
+fun fish_knife_N : N ;
+fun fish_slice_N : N ;
+fun fishball_N : N ;
+fun fishbone_N : N ;
+fun fishbowl_N : N ;
+fun fishcake_N : N ;
+fun fisher_N : N ;
+fun fisherman_N : N ;
+fun fishery_N : N ;
+fun fisheye_A : A ;
+fun fishhook_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 fishnet_N : N ;
+fun fishpaste_N : N ;
+fun fishplate_N : N ;
+fun fishpond_N : N ;
+fun fishwife_N : N ;
+fun fishy_A : A ;
+fun fissile_A : A ;
+fun fission_N : N ;
+fun fissionable_A : A ;
+fun fissiparity_N : N ;
+fun fissiparous_A : A ;
+fun fissure_N : N ;
+fun fist_N : N ;
+fun fistfight_N : N ;
+fun fistmele_N : N ;
+fun fistula_N : N ;
+fun fistular_A : A ;
+fun fistulous_A : A ;
+fun fit_A : A ;
+fun fit_N : N ;
+fun fit_fit_V : V ;
+fun fit_fitted_V : V ;
+fun fitful_A : A ;
+fun fitfulness_N : N ;
+fun fitment_N : N ;
+fun fitness_N : N ;
+fun fitter_A : A ;
+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 fixate_V : V ;
+fun fixation_N : N ;
+fun fixative_N : N ;
+fun fixedly_Adv : Adv ;
+fun fixedness_N : N ;
+fun fixer_N : N ;
+fun fixings_N : N ;
+fun fixture_N : N ;
+fun fizgig_N : N ;
+fun fizz_N : N ;
+fun fizz_V : V ;
+fun fizzle_V : V ;
+fun fizzy_A : A ;
+fun fjord_N : N ;
+fun flab_N : N ;
+fun flabbergast_V : V ;
+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_captain_N : N ;
+fun flag_day_N : N ;
+fun flagellant_N : N ;
+fun flagellate_A : A ;
+fun flagellate_N : N ;
+fun flagellate_V : V ;
+fun flagellation_N : N ;
+fun flagellum_N : N ;
+fun flageolet_N : N ;
+fun flagfish_N : N ;
+fun flagging_N : N ;
+fun flagitious_A : A ;
+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_V : V ;
+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 flamen_N : N ;
+fun flamenco_N : N ;
+fun flameproof_A : A ;
+fun flamethrower_N : N ;
+fun flamingo_N : N ;
+fun flammability_N : N ;
+fun flammable_A : A ;
+fun flan_N : N ;
+fun flange_N : N ;
+fun flank_N : N ;
+fun flank_V : V ;
+fun flanker_N : N ;
+fun flannel_N : N ;
+fun flannelbush_N : N ;
+fun flannelette_N : N ;
+fun flap_N : N ;
+fun flap_V : V ;
+fun flapjack_N : N ;
+fun flapper_N : N ;
+fun flare_N : N ;
+fun flare_V : V ;
+fun flare_path_N : N ;
+fun flare_up_N : N ;
+fun flash_N : N ;
+fun flash_V : V ;
+fun flashback_N : N ;
+fun flashboard_N : N ;
+fun flashbulb_N : N ;
+fun flasher_N : N ;
+fun flashgun_N : N ;
+fun flashiness_N : N ;
+fun flashing_N : N ;
+fun flashlight_N : N ;
+fun flashover_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 flatbed_N : N ;
+fun flatbottom_A : A ;
+fun flatbread_N : N ;
+fun flatbrod_N : N ;
+fun flatcar_N : N ;
+fun flatfish_N : N ;
+fun flatfoot_N : N ;
+fun flathead_N : N ;
+fun flatiron_N : N ;
+fun flatlet_N : N ;
+fun flatmate_N : N ;
+fun flatness_N : N ;
+fun flats_N : N ;
+fun flatten_V : V ;
+fun flatter_V : V ;
+fun flatterer_N : N ;
+fun flattering_A : A ;
+fun flattery_N : N ;
+fun flattop_N : N ;
+fun flatulence_N : N ;
+fun flatulent_A : A ;
+fun flatware_N : N ;
+fun flatwork_N : N ;
+fun flatworm_N : N ;
+fun flaunt_N : N ;
+fun flaunt_V : V ;
+fun flaunty_A : A ;
+fun flautist_N : N ;
+fun flavin_N : N ;
+fun flavivirus_N : N ;
+fun flavone_N : N ;
+fun flavonoid_N : N ;
+fun flavor_N : N ;
+fun flavorer_N : N ;
+fun flavorful_A : A ;
+fun flavorlessness_N : N ;
+fun flavorsomeness_N : N ;
+fun flavour_N : N ;
+fun flavour_V : V ;
+fun flavouring_N : N ;
+fun flavourless_A : A ;
+fun flaw_N : N ;
+fun flaw_V : V ;
+fun flawless_A : A ;
+fun flax_N : N ;
+fun flaxen_A : A ;
+fun flay_V : V ;
+fun flea_N : N ;
+fun flea_bite_N : N ;
+fun flea_bitten_A : A ;
+fun fleabag_N : N ;
+fun fleabane_N : N ;
+fun fleapit_N : N ;
+fun fleawort_N : N ;
+fun flecainide_N : N ;
+fun fleck_N : N ;
+fun fleck_V : V ;
+fun fledged_A : A ;
+fun fledgeling_N : N ;
+fun fledgling_A : A ;
+fun fledgling_N : N ;
+fun flee_V : V ;
+fun fleece_N : N ;
+fun fleece_V : V ;
+fun fleeceable_A : A ;
+fun fleecy_A : A ;
+fun fleer_N : N ;
+fun fleet_A : A ;
+fun fleet_N : N ;
+fun fleeting_A : A ;
+fun fleetness_N : N ;
+fun flemish_A : A ;
+fun flemish_N : N ;
+fun flesh_N : N ;
+fun flesh_V : V ;
+fun flesh_wound_N : N ;
+fun fleshiness_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_V : V ;
+fun flexibility_N : N ;
+fun flexible_A : A ;
+fun flexion_N : N ;
+fun flexuous_A : A ;
+fun flexure_N : N ;
+fun flibbertigibbet_N : N ;
+fun flick_N : N ;
+fun flick_V : V ;
+fun flick_knife_N : N ;
+fun flicker_N : N ;
+fun flicker_V : V ;
+fun flickertail_N : N ;
+fun flier_N : N ;
+fun flies_N : N ;
+fun flight_N : N ;
+fun flight_V : V ;
+fun flightiness_N : N ;
+fun flightless_A : A ;
+fun flighty_A : A ;
+fun flimsiness_N : N ;
+fun flimsy_A : A ;
+fun flimsy_N : N ;
+fun flinch_V : V ;
+fun flinders_N : N ;
+fun fling_N : N ;
+fun fling_V : V ;
+fun flint_N : N ;
+fun flintlock_N : N ;
+fun flintstone_N : N ;
+fun flinty_A : A ;
+fun flip_A : A ;
+fun flip_N : N ;
+fun flip_V : V ;
+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 flitch_N : N ;
+fun float_N : N ;
+fun float_V : V ;
+fun floatation_N : N ;
+fun floater_N : N ;
+fun floating_N : N ;
+fun floatplane_N : N ;
+fun floccose_A : A ;
+fun flocculation_N : N ;
+fun floccule_N : N ;
+fun flocculent_A : A ;
+fun flock_N : N ;
+fun flock_V : V ;
+fun floe_N : N ;
+fun flog_V : V ;
+fun flogger_N : N ;
+fun flogging_N : N ;
+fun flood_N : N ;
+fun flood_V : V ;
+fun flood_tide_N : N ;
+fun floodgate_N : N ;
+fun floodhead_N : N ;
+fun floodlight_V : V ;
+fun floodlit_A : A ;
+fun floodplain_N : N ;
+fun floor_N : N ;
+fun floor_V : V ;
+fun floor_walker_N : N ;
+fun floorboard_N : N ;
+fun flooring_N : N ;
+fun floorwalker_N : N ;
+fun floozie_N : N ;
+fun floozy_N : N ;
+fun flop_Adv : Adv ;
+fun flop_N : N ;
+fun flop_V : V ;
+fun flophouse_N : N ;
+fun floppy_A : A ;
+fun floral_A : A ;
+fun floret_N : N ;
+fun floricultural_A : A ;
+fun floriculture_N : N ;
+fun florid_A : A ;
+fun florilegium_N : N ;
+fun florin_N : N ;
+fun florist_N : N ;
+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 flounder_N : N ;
+fun flounder_V : V ;
+fun flour_N : N ;
+fun flour_V : V ;
+fun flourish_N : N ;
+fun flourish_V : V ;
+fun floury_A : A ;
+fun flout_V : V ;
+fun flow_N : N ;
+fun flow_V : V ;
+fun flowage_N : N ;
+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 floxuridine_N : N ;
+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_V : V ;
+fun fluffy_A : A ;
+fun flugelhorn_N : N ;
+fun fluid_A : A ;
+fun fluid_N : N ;
+fun fluidity_N : N ;
+fun fluidounce_N : N ;
+fun fluidram_N : N ;
+fun fluke_N : N ;
+fun flume_N : N ;
+fun flummery_N : N ;
+fun flummox_V : V ;
+fun flunitrazepan_N : N ;
+fun flunk_V : V ;
+fun flunkey_N : N ;
+fun flunky_N : N ;
+fun fluorapatite_N : N ;
+fun fluorescein_N : N ;
+fun fluorescence_N : N ;
+fun fluorescent_A : A ;
+fun fluorescent_N : N ;
+fun fluoridate_V : V ;
+fun fluoridation_N : N ;
+fun fluoride_N : N ;
+fun fluoridization_N : N ;
+fun fluoridize_V : V ;
+fun fluorine_N : N ;
+fun fluorite_N : N ;
+fun fluoroboride_N : N ;
+fun fluorocarbon_N : N ;
+fun fluorochrome_N : N ;
+fun fluoroform_N : N ;
+fun fluoroscope_N : N ;
+fun fluoroscopy_N : N ;
+fun fluorosis_N : N ;
+fun fluorouracil_N : N ;
+fun fluosilicate_N : N ;
+fun fluoxetine_N : N ;
+fun fluphenazine_N : N ;
+fun flurazepam_N : N ;
+fun flurbiprofen_N : N ;
+fun flurry_N : N ;
+fun flurry_V : V ;
+fun flush_A : A ;
+fun flush_Adv : Adv ;
+fun flush_N : N ;
+fun flush_V : V ;
+fun fluster_N : N ;
+fun fluster_V : V ;
+fun flute_N : N ;
+fun flute_V : V ;
+fun fluting_N : N ;
+fun flutist_N : N ;
+fun flutter_N : N ;
+fun flutter_V : V ;
+fun fluvastatin_N : N ;
+fun fluvial_A : A ;
+fun flux_N : N ;
+fun fluxmeter_N : N ;
+fun fly_A : A ;
+fun fly_N : N ;
+fun fly_fish_V : V ;
+fun fly_fishing_N : N ;
+fun fly_flew_V : V ;
+fun fly_flied_V : V ;
+fun fly_swat_N : N ;
+fun fly_swatter_N : N ;
+fun flyaway_A : A ;
+fun flyblown_A : A ;
+fun flycatcher_N : N ;
+fun flyer_N : N ;
+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 flyspeck_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 foamflower_N : N ;
+fun foaminess_N : N ;
+fun foamy_A : A ;
+fun fob_N : N ;
+fun fob_V : V ;
+fun focal_A : A ;
+fun focalization_N : N ;
+fun focus_N : N ;
+fun focus_V : V ;
+fun fodder_N : N ;
+fun foe_N : N ;
+fun foetal_A : A ;
+fun foetus_N : N ;
+fun fog_N : N ;
+fun fog_V : V ;
+fun fogbank_N : N ;
+fun fogbound_A : A ;
+fun fogey_N : N ;
+fun foggy_A : A ;
+fun foghorn_N : N ;
+fun foglamp_N : N ;
+fun fogsignal_N : N ;
+fun fogyish_A : A ;
+fun fohn_N : N ;
+fun foible_N : N ;
+fun foil_N : N ;
+fun foil_V : V ;
+fun foist_V : V ;
+fun fold_N : N ;
+fun fold_V : V ;
+fun foldable_A : A ;
+fun folder_N : N ;
+fun folderal_N : N ;
+fun folderol_N : N ;
+fun foldout_N : N ;
+fun foliaceous_A : A ;
+fun foliage_N : N ;
+fun foliate_A : A ;
+fun foliation_N : N ;
+fun folio_N : N ;
+fun foliolate_A : A ;
+fun folium_N : N ;
+fun folk_N : N ;
+fun folk_dance_N : N ;
+fun folklore_N : N ;
+fun folks_N : N ;
+fun folksong_N : N ;
+fun folksy_A : A ;
+fun folktale_N : N ;
+fun follicle_N : N ;
+fun follicular_A : A ;
+fun folliculitis_N : N ;
+fun follies_N : N ;
+fun follow_V : V ;
+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_V : V ;
+fun fomentation_N : N ;
+fun fomite_N : N ;
+fun fond_A : A ;
+fun fondant_N : N ;
+fun fondle_V : V ;
+fun fondler_N : N ;
+fun fondness_N : N ;
+fun fondue_N : N ;
+fun font_N : N ;
+fun fontanelle_N : N ;
+fun food_N : N ;
+fun foodless_A : A ;
+fun foodstuff_N : N ;
+fun fool_N : N ;
+fun fool_V : V ;
+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_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 footbath_N : N ;
+fun footboard_N : N ;
+fun footbridge_N : N ;
+fun footcandle_N : N ;
+fun footedness_N : N ;
+fun footer_N : N ;
+fun footfall_N : N ;
+fun footfault_N : N ;
+fun foothill_N : N ;
+fun foothold_N : N ;
+fun footing_N : N ;
+fun footle_V : V ;
+fun footless_A : A ;
+fun footlights_N : N ;
+fun footlocker_N : N ;
+fun footloose_A : A ;
+fun footman_N : N ;
+fun footmark_N : N ;
+fun footnote_N : N ;
+fun footpad_N : N ;
+fun footpath_N : N ;
+fun footplate_N : N ;
+fun footprint_N : N ;
+fun footrace_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 footwall_N : N ;
+fun footwear_N : N ;
+fun footwork_N : N ;
+fun fop_N : N ;
+fun foppish_A : A ;
+fun foppishness_N : N ;
+fun for_Prep : Prep ;
+fun for_example_Adv : Adv ;
+fun for_instance_Adv : Adv ;
+fun for_starters_Adv : Adv ;
+fun for_sure_Adv : Adv ;
+fun for_the_sake_of_Prep : Prep ;
+fun forage_N : N ;
+fun forage_V : V ;
+fun forager_N : N ;
+fun foraging_N : N ;
+fun foram_N : N ;
+fun foramen_N : N ;
+fun foray_N : N ;
+fun foray_V : V ;
+fun forbear_N : N ;
+fun forbear_V : V ;
+fun forbearance_N : N ;
+fun forbid_V : V ;
+fun forbidding_A : A ;
+fun forby_Prep : Prep ;
+fun force_N : N ;
+fun force_V : V ;
+fun force_feed_V : V ;
+fun force_land_V : V ;
+fun force_majeure_N : N ;
+fun forceful_A : A ;
+fun forcefulness_N : N ;
+fun forceless_A : A ;
+fun forcemeat_N : N ;
+fun forceps_N : N ;
+fun forcible_A : A ;
+fun forcipate_A : A ;
+fun ford_N : N ;
+fun ford_V : V ;
+fun fordable_A : A ;
+fun fore_A : A ;
+fun fore_Adv : Adv ;
+fun fore_N : N ;
+fun forearm_N : N ;
+fun forearm_V : V ;
+fun forebear_N : N ;
+fun forebode_V : V ;
+fun foreboding_N : N ;
+fun forebrain_N : N ;
+fun forecast_N : N ;
+fun forecast_V : V ;
+fun forecaster_N : N ;
+fun forecastle_N : N ;
+fun foreclose_V : V ;
+fun foreclosure_N : N ;
+fun forecourt_N : N ;
+fun foredeck_N : N ;
+fun foredoom_V : V ;
+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 foreground_N : N ;
+fun forehand_A : A ;
+fun forehand_N : N ;
+fun forehanded_A : A ;
+fun forehead_N : N ;
+fun foreign_A : A ;
+fun foreigner_N : N ;
+fun foreignness_N : N ;
+fun foreknow_V : V ;
+fun foreknowledge_N : N ;
+fun foreland_N : N ;
+fun foreleg_N : N ;
+fun forelimb_N : N ;
+fun forelock_N : N ;
+fun foreman_N : N ;
+fun foremanship_N : N ;
+fun foremast_N : N ;
+fun foremost_A : A ;
+fun foremost_Adv : Adv ;
+fun foremother_N : N ;
+fun forename_N : N ;
+fun forenenst_Prep : Prep ;
+fun forenoon_N : N ;
+fun forensic_A : A ;
+fun forensics_N : N ;
+fun foreordain_V : V ;
+fun forepaw_N : N ;
+fun foreperson_N : N ;
+fun foreplay_N : N ;
+fun forequarter_N : N ;
+fun forerunner_N : N ;
+fun foresail_N : N ;
+fun foresee_V : V ;
+fun foreseeable_A : A ;
+fun foreshadow_V : V ;
+fun foreshank_N : N ;
+fun foreshock_N : N ;
+fun foreshore_N : N ;
+fun foreshorten_V : V ;
+fun foresight_N : N ;
+fun foreskin_N : N ;
+fun forest_N : N ;
+fun forestall_V : V ;
+fun forestay_N : N ;
+fun forested_A : A ;
+fun forester_N : N ;
+fun forestiera_N : N ;
+fun forestry_N : N ;
+fun foreswear_V : V ;
+fun foretaste_N : N ;
+fun foretell_V : V ;
+fun forethought_N : N ;
+fun forethoughtful_A : A ;
+fun foretop_N : N ;
+fun forever_Adv : Adv ;
+fun forewarn_V : V ;
+fun forewarning_N : N ;
+fun forewing_N : N ;
+fun forewoman_N : N ;
+fun foreword_N : N ;
+fun forfeit_N : N ;
+fun forfeit_V : V ;
+fun forfeiture_N : N ;
+fun forgather_V : V ;
+fun forge_N : N ;
+fun forge_V : V ;
+fun forger_N : N ;
+fun forgery_N : N ;
+fun forget_V : V ;
+fun forget_me_not_N : N ;
+fun forgetful_A : A ;
+fun forgetfulness_N : N ;
+fun forgettable_A : A ;
+fun forging_N : N ;
+fun forgivable_A : A ;
+fun forgive_V : V ;
+fun forgiveness_N : N ;
+fun forgivingly_Adv : Adv ;
+fun forgivingness_N : N ;
+fun forgo_V : V ;
+fun forint_N : N ;
+fun fork_N : N ;
+fun fork_V : V ;
+fun forklift_N : N ;
+fun forlorn_A : A ;
+fun forlornness_N : N ;
+fun form_N : N ;
+fun form_V : V ;
+fun formal_A : A ;
+fun formaldehyde_N : N ;
+fun formalin_N : N ;
+fun formalism_N : N ;
+fun formalistic_A : A ;
+fun formality_N : N ;
+fun formalization_N : N ;
+fun formalize_V : V ;
+fun formalwear_N : N ;
+fun format_N : N ;
+fun formation_N : N ;
+fun formative_A : A ;
+fun formative_N : N ;
+fun former_A : A ;
+fun former_N : N ;
+fun formic_A : A ;
+fun formica_N : N ;
+fun formication_N : N ;
+fun formidability_N : N ;
+fun formidable_A : A ;
+fun formless_A : A ;
+fun formula_N : N ;
+fun formulaic_A : A ;
+fun formulary_A : A ;
+fun formulary_N : N ;
+fun formulate_V : V ;
+fun formulation_N : N ;
+fun fornenst_Prep : Prep ;
+fun fornent_Prep : Prep ;
+fun fornicate_V : V ;
+fun fornication_N : N ;
+fun fornix_N : N ;
+fun forrader_Adv : Adv ;
+fun forsake_V : V ;
+fun forsaking_N : N ;
+fun forsooth_Adv : Adv ;
+fun forswear_V : V ;
+fun forsythia_N : N ;
+fun fort_N : N ;
+fun forte_A : A ;
+fun forte_Adv : Adv ;
+fun forte_N : N ;
+fun fortemente_A : A ;
+fun forth_Adv : Adv ;
+fun forthcoming_A : A ;
+fun forthright_A : A ;
+fun forthwith_Adv : Adv ;
+fun fortification_N : N ;
+fun fortify_V : V ;
+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 fortuitousness_N : N ;
+fun fortunate_A : A ;
+fun fortune_N : N ;
+fun fortuneteller_N : N ;
+fun fortunetelling_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_V : V ;
+fun forwarding_N : N ;
+fun forwardness_N : N ;
+fun forwards_Adv : Adv ;
+fun foryml_N : N ;
+fun fossa_N : N ;
+fun fosse_N : N ;
+fun fossil_A : A ;
+fun fossil_N : N ;
+fun fossiliferous_A : A ;
+fun fossilization_N : N ;
+fun fossilize_V : V ;
+fun fossorial_A : A ;
+fun foster_A : A ;
+fun foster_V : V ;
+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 fostering_N : N ;
+fun fothergilla_N : N ;
+fun foul_A : A ;
+fun foul_N : N ;
+fun foul_V : V ;
+fun foul_mouthed_A : A ;
+fun foul_spoken_A : A ;
+fun foulard_N : N ;
+fun foulness_N : N ;
+fun found_N : N ;
+fun found_V : V ;
+fun foundation_N : N ;
+fun foundation_stone_N : N ;
+fun founder_N : N ;
+fun founder_V : V ;
+fun foundering_N : N ;
+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 fountainhead_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 fourhanded_A : A ;
+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 foursquare_Adv : Adv ;
+fun fovea_N : N ;
+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_V : V ;
+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 foxtail_N : N ;
+fun foxtrot_N : N ;
+fun foxy_A : A ;
+fun foyer_N : N ;
+fun fracas_fracas_N : N ;
+fun fracas_fracases_N : N ;
+fun fractal_N : N ;
+fun fraction_N : N ;
+fun fractional_A : A ;
+fun fractionation_N : N ;
+fun fractious_A : A ;
+fun fractiousness_N : N ;
+fun fracture_N : N ;
+fun fracture_V : V ;
+fun fragile_A : A ;
+fun fragility_N : N ;
+fun fragment_N : N ;
+fun fragment_V : V ;
+fun fragmental_A : A ;
+fun fragmentary_A : A ;
+fun fragmentation_N : N ;
+fun fragrance_N : N ;
+fun fragrant_A : A ;
+fun frail_A : A ;
+fun frail_N : N ;
+fun frailty_N : N ;
+fun fraise_N : N ;
+fun frame_N : N ;
+fun frame_V : V ;
+fun frame_up_N : N ;
+fun framer_N : N ;
+fun framework_N : N ;
+fun framing_N : N ;
+fun franc_N : N ;
+fun franchise_N : N ;
+fun franciscan_A : A ;
+fun franciscan_N : N ;
+fun francium_N : N ;
+fun frangible_A : A ;
+fun frangipane_N : N ;
+fun frangipani_N : N ;
+fun frank_A : A ;
+fun frank_N : N ;
+fun frank_V : V ;
+fun frankfurter_N : N ;
+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 frappe_N : N ;
+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 fraudulence_N : N ;
+fun fraudulent_A : A ;
+fun fraught_A : A ;
+fun fraxinella_N : N ;
+fun fray_N : N ;
+fun fray_V : V ;
+fun frazzle_N : N ;
+fun freak_N : N ;
+fun freak_V : V ;
+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 free_A : A ;
+fun free_N : N ;
+fun free_V : V ;
+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 freebie_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_A : A ;
+fun freelance_N : N ;
+fun freelance_V : V ;
+fun freelancer_N : N ;
+fun freeloader_N : N ;
+fun freemail_N : N ;
+fun freeman_N : N ;
+fun freemason_N : N ;
+fun freemasonry_N : N ;
+fun freesia_N : N ;
+fun freestanding_A : A ;
+fun freestone_N : N ;
+fun freestyle_N : N ;
+fun freetail_N : N ;
+fun freeware_N : N ;
+fun freeway_N : N ;
+fun freewheel_N : N ;
+fun freewheel_V : V ;
+fun freewill_A : A ;
+fun freeze_N : N ;
+fun freeze_freezed_V : V ;
+fun freeze_froze_V : V ;
+fun freezer_N : N ;
+fun freezing_mixture_N : N ;
+fun freezing_point_N : N ;
+fun freight_N : N ;
+fun freight_V : V ;
+fun freight_train_N : N ;
+fun freighter_N : N ;
+fun freightliner_N : N ;
+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_V : V ;
+fun frequentative_N : N ;
+fun fresco_N : N ;
+fun fresco_V : V ;
+fun fresh_A : A ;
+fun fresh_Adv : Adv ;
+fun freshen_freshened_V : V ;
+fun freshen_freshenned_V : V ;
+fun freshener_N : N ;
+fun fresher_N : N ;
+fun freshet_N : N ;
+fun freshman_A : A ;
+fun freshman_N : N ;
+fun freshness_N : N ;
+fun freshwater_A : A ;
+fun fret_N : N ;
+fun fret_V : V ;
+fun fretful_A : A ;
+fun fretsaw_N : N ;
+fun fretwork_N : N ;
+fun freudian_A : A ;
+fun friability_N : N ;
+fun friable_A : A ;
+fun friar_N : N ;
+fun friary_N : N ;
+fun fricandeau_N : N ;
+fun fricassee_N : N ;
+fun fricassee_V : V ;
+fun fricative_A : A ;
+fun fricative_N : N ;
+fun friction_N : N ;
+fun frictional_A : A ;
+fun frictionless_A : A ;
+fun fridge_N : N ;
+fun friedcake_N : N ;
+fun friend_N : N ;
+fun friendless_A : A ;
+fun friendlessness_N : N ;
+fun friendliness_N : N ;
+fun friendly_A : A ;
+fun friendly_N : N ;
+fun friendship_N : N ;
+fun frier_N : N ;
+fun frieze_N : N ;
+fun frigate_N : N ;
+fun fright_N : N ;
+fun fright_V : V ;
+fun frighten_frightened_V : V ;
+fun frighten_frightenned_V : V ;
+fun frightening_A : A ;
+fun frightful_A : A ;
+fun frightfulness_N : N ;
+fun frigid_A : A ;
+fun frigidity_N : N ;
+fun frigorific_A : A ;
+fun frijole_N : N ;
+fun frill_N : N ;
+fun frilled_A : A ;
+fun frilly_A : A ;
+fun fringe_N : N ;
+fun fringe_V : V ;
+fun fringepod_N : N ;
+fun fringy_A : A ;
+fun frippery_N : N ;
+fun frisk_N : N ;
+fun frisk_V : V ;
+fun friskiness_N : N ;
+fun frisky_A : A ;
+fun frisson_N : N ;
+fun fritillary_N : N ;
+fun frittata_N : N ;
+fun fritter_N : N ;
+fun fritter_V : V ;
+fun frivol_V : V ;
+fun frivolity_N : N ;
+fun frivolous_A : A ;
+fun frizz_N : N ;
+fun frizz_V : V ;
+fun frizzle_V : V ;
+fun frizzy_A : A ;
+fun fro_Adv : Adv ;
+fun frock_N : N ;
+fun frock_coat_N : N ;
+fun frog_N : N ;
+fun frogbit_N : N ;
+fun frogfish_N : N ;
+fun froghopper_N : N ;
+fun frogman_N : N ;
+fun frogmarch_V : V ;
+fun frogmouth_N : N ;
+fun frolic_N : N ;
+fun frolic_V : V ;
+fun frolicsome_A : A ;
+fun from_Prep : Prep ;
+fun from_home_Adv : Adv ;
+fun fromward_Prep : Prep ;
+fun frond_N : N ;
+fun front_N : N ;
+fun front_V : V ;
+fun front_bench_N : N ;
+fun front_bencher_N : N ;
+fun frontage_N : N ;
+fun frontal_A : A ;
+fun frontal_N : N ;
+fun frontbencher_N : N ;
+fun frontier_N : N ;
+fun frontiersman_N : N ;
+fun frontierswoman_N : N ;
+fun frontispiece_N : N ;
+fun frontlet_N : N ;
+fun frore_A : A ;
+fun frost_N : N ;
+fun frost_V : V ;
+fun frost_bound_A : A ;
+fun frostbite_N : N ;
+fun frostbitten_A : A ;
+fun frostiness_N : N ;
+fun frosting_N : N ;
+fun frostweed_N : N ;
+fun frosty_A : A ;
+fun froth_N : N ;
+fun froth_V : V ;
+fun frothiness_N : N ;
+fun frothy_A : A ;
+fun frottage_N : N ;
+fun frotteur_N : N ;
+fun froward_A : A ;
+fun froward_Prep : Prep ;
+fun frowards_Prep : Prep ;
+fun frown_N : N ;
+fun frown_V : V ;
+fun frowningly_Adv : Adv ;
+fun frowsty_A : A ;
+fun frowsy_A : A ;
+fun frowzy_A : A ;
+fun frs_N : N ;
+fun fructification_N : N ;
+fun fructify_V : V ;
+fun fructose_N : N ;
+fun fructosuria_N : N ;
+fun frugal_A : A ;
+fun frugality_N : N ;
+fun fruit_N : N ;
+fun fruit_V : V ;
+fun fruit_fly_N : N ;
+fun fruitage_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 fruitlet_N : N ;
+fun fruitwood_N : N ;
+fun fruity_A : A ;
+fun frumenty_N : N ;
+fun frump_N : N ;
+fun frumpish_A : A ;
+fun frumpy_A : A ;
+fun frustrate_V : V ;
+fun frustrating_A : A ;
+fun frustration_N : N ;
+fun frustum_N : N ;
+fun fry_N : N ;
+fun fry_V : V ;
+fun fry_pan_N : N ;
+fun fryer_N : N ;
+fun frying_N : N ;
+fun frying_pan_N : N ;
+fun fräulein_N : N ;
+fun fuchsia_N : N ;
+fun fuck_N : N ;
+fun fuck_V : V ;
+fun fuck_all_N : N ;
+fun fucker_N : N ;
+fun fucking_Adv : Adv ;
+fun fucoid_N : N ;
+fun fucus_N : N ;
+fun fuddle_V : V ;
+fun fuddy_duddy_N : N ;
+fun fudge_N : N ;
+fun fudge_V : V ;
+fun fuel_N : N ;
+fun fuel_fueled_V : V ;
+fun fuel_fuelled_V : V ;
+fun fueling_N : N ;
+fun fug_N : N ;
+fun fugacity_N : N ;
+fun fugal_A : A ;
+fun fuggy_A : A ;
+fun fugitive_A : A ;
+fun fugitive_N : N ;
+fun fugleman_N : N ;
+fun fugly_A : A ;
+fun fugu_N : N ;
+fun fugue_N : N ;
+fun fuji_N : N ;
+fun fulcrum_N : N ;
+fun fulfil_V : V ;
+fun fulfill_V : V ;
+fun fulfillment_N : N ;
+fun fulfilment_N : N ;
+fun fulgurating_A : A ;
+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 fullerene_N : N ;
+fun fullness_N : N ;
+fun fully_fashioned_A : A ;
+fun fully_fledged_A : A ;
+fun fully_grown_A : A ;
+fun fulmar_N : N ;
+fun fulminant_A : A ;
+fun fulminate_N : N ;
+fun fulminate_V : V ;
+fun fulmination_N : N ;
+fun fulsome_A : A ;
+fun fulsomeness_N : N ;
+fun fumble_N : N ;
+fun fumble_V : V ;
+fun fumbler_N : N ;
+fun fume_N : N ;
+fun fume_V : V ;
+fun fumewort_N : N ;
+fun fumigant_N : N ;
+fun fumigate_V : V ;
+fun fumigation_N : N ;
+fun fumigator_N : N ;
+fun fumitory_N : N ;
+fun fun_N : N ;
+fun funambulism_N : N ;
+fun funambulist_N : N ;
+fun function_N : N ;
+fun function_V : V ;
+fun functional_A : A ;
+fun functionalism_N : N ;
+fun functionalist_N : N ;
+fun functionality_N : N ;
+fun functionary_N : N ;
+fun fund_N : N ;
+fun fund_V : V ;
+fun fundamental_A : A ;
+fun fundamental_N : N ;
+fun fundamentalism_N : N ;
+fun fundamentalist_A : A ;
+fun fundamentalist_N : N ;
+fun fundamentals_N : N ;
+fun fundraiser_N : N ;
+fun funds_N : N ;
+fun fundus_N : N ;
+fun funeral_N : N ;
+fun funerary_A : A ;
+fun funereal_A : A ;
+fun funfair_N : N ;
+fun fungal_A : A ;
+fun fungible_A : A ;
+fun fungible_N : N ;
+fun fungicidal_A : A ;
+fun fungicide_N : N ;
+fun fungoid_A : A ;
+fun fungous_A : A ;
+fun fungus_N : N ;
+fun funicle_N : N ;
+fun funicular_A : A ;
+fun funicular_N : N ;
+fun funiculitis_N : N ;
+fun funiculus_N : N ;
+fun funk_N : N ;
+fun funk_V : V ;
+fun funky_A : A ;
+fun funnel_N : N ;
+fun funnel_V : V ;
+fun funniness_N : N ;
+fun funny_A : A ;
+fun funny_bone_N : N ;
+fun funrun_N : N ;
+fun fur_N : N ;
+fun furan_N : N ;
+fun furbelow_N : N ;
+fun furbish_V : V ;
+fun furcation_N : N ;
+fun furcula_N : N ;
+fun furfural_N : N ;
+fun furious_A : A ;
+fun furl_V : V ;
+fun furlike_A : A ;
+fun furlong_N : N ;
+fun furlough_N : N ;
+fun furnace_N : N ;
+fun furnish_V : V ;
+fun furnishing_N : N ;
+fun furniture_N : N ;
+fun furor_N : N ;
+fun furore_N : N ;
+fun furosemide_N : N ;
+fun furred_A : A ;
+fun furrier_N : N ;
+fun furring_N : N ;
+fun furrow_N : N ;
+fun furrow_V : V ;
+fun furry_A : A ;
+fun further_A : A ;
+fun further_Adv : Adv ;
+fun further_V : V ;
+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 furunculosis_N : N ;
+fun fury_N : N ;
+fun furze_N : N ;
+fun fuschia_N : N ;
+fun fuscous_A : A ;
+fun fuse_N : N ;
+fun fuse_V : V ;
+fun fusee_N : N ;
+fun fuselage_N : N ;
+fun fusible_A : A ;
+fun fusiform_A : A ;
+fun fusil_N : N ;
+fun fusilier_N : N ;
+fun fusillade_N : N ;
+fun fusion_N : N ;
+fun fuss_N : N ;
+fun fuss_V : V ;
+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 futon_N : N ;
+fun future_A : A ;
+fun future_N : N ;
+fun futureless_A : A ;
+fun futurism_N : N ;
+fun futurist_N : N ;
+fun futuristic_A : A ;
+fun futurity_N : N ;
+fun futurology_N : N ;
+fun fuze_N : N ;
+fun fuzz_N : N ;
+fun fuzzed_A : A ;
+fun fuzzy_A : A ;
+fun fête_N : N ;
+fun fête_V : V ;
+fun führer_N : N ;
+fun g_N : N ;
+fun g_man_N : N ;
+fun gab_N : N ;
+fun gabapentin_N : N ;
+fun gabardine_N : N ;
+fun gabble_N : N ;
+fun gabble_V : V ;
+fun gabbro_N : N ;
+fun gaberdine_N : N ;
+fun gable_N : N ;
+fun gabled_A : A ;
+fun gabonese_A : A ;
+fun gabonese_N : N ;
+fun gad_V : V ;
+fun gadabout_N : N ;
+fun gaddi_N : N ;
+fun gadfly_N : N ;
+fun gadget_N : N ;
+fun gadgeteer_N : N ;
+fun gadgetry_N : N ;
+fun gadoid_N : N ;
+fun gadolinite_N : N ;
+fun gadolinium_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 gaffsail_N : N ;
+fun gag_N : N ;
+fun gag_V : V ;
+fun gaga_A : A ;
+fun gage_N : N ;
+fun gage_V : V ;
+fun gaggle_N : N ;
+fun gagman_N : N ;
+fun gaiety_N : N ;
+fun gaillardia_N : N ;
+fun gain_N : N ;
+fun gain_V : V ;
+fun gainer_N : N ;
+fun gainful_A : A ;
+fun gainly_A : A ;
+fun gainsay_V : V ;
+fun gainsborough_N : N ;
+fun gait_N : N ;
+fun gaiter_N : N ;
+fun gal_N : N ;
+fun gala_N : N ;
+fun galactagogue_N : N ;
+fun galactic_A : A ;
+fun galactocele_N : N ;
+fun galactose_N : N ;
+fun galactosemia_N : N ;
+fun galactosis_N : N ;
+fun galago_N : N ;
+fun galangal_N : N ;
+fun galantine_N : N ;
+fun galax_N : N ;
+fun galaxy_N : N ;
+fun galbanum_N : N ;
+fun galbulus_N : N ;
+fun gale_N : N ;
+fun galea_N : N ;
+fun galena_N : N ;
+fun galere_N : N ;
+fun galingale_N : N ;
+fun gall_N : N ;
+fun gall_V : V ;
+fun gallamine_N : N ;
+fun gallant_A : A ;
+fun gallant_N : N ;
+fun gallantry_N : N ;
+fun gallbladder_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 gallfly_N : N ;
+fun gallic_A : A ;
+fun gallicism_N : N ;
+fun gallinaceous_A : A ;
+fun gallinule_N : N ;
+fun gallium_N : N ;
+fun gallivant_V : V ;
+fun gallon_N : N ;
+fun gallop_N : N ;
+fun gallop_V : V ;
+fun gallows_N : N ;
+fun gallows_bird_N : N ;
+fun gallstone_N : N ;
+fun galoot_N : N ;
+fun galore_Adv : Adv ;
+fun galosh_N : N ;
+fun galumph_V : V ;
+fun galvanic_A : A ;
+fun galvanism_N : N ;
+fun galvanization_N : N ;
+fun galvanize_V : V ;
+fun galvanizer_N : N ;
+fun galvanometer_N : N ;
+fun gam_N : N ;
+fun gambian_A : A ;
+fun gambian_N : N ;
+fun gambist_N : N ;
+fun gambit_N : N ;
+fun gamble_N : N ;
+fun gamble_V : V ;
+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 gambrel_N : N ;
+fun game_A : A ;
+fun game_N : N ;
+fun game_V : V ;
+fun game_bag_N : N ;
+fun game_bird_N : N ;
+fun game_licence_N : N ;
+fun gamebag_N : N ;
+fun gamecock_N : N ;
+fun gamekeeper_N : N ;
+fun gamelan_N : N ;
+fun games_master_N : N ;
+fun games_mistress_N : N ;
+fun gamesmanship_N : N ;
+fun gametangium_N : N ;
+fun gamete_N : N ;
+fun gametocyte_N : N ;
+fun gametoecium_N : N ;
+fun gametogenesis_N : N ;
+fun gametophore_N : N ;
+fun gametophyte_N : N ;
+fun gamey_A : A ;
+fun gamine_N : N ;
+fun gaminess_N : N ;
+fun gaming_house_N : N ;
+fun gaming_table_N : N ;
+fun gamma_N : N ;
+fun gammon_N : N ;
+fun gammopathy_N : N ;
+fun gammy_A : A ;
+fun gamopetalous_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 gangrenous_A : A ;
+fun gangsaw_N : N ;
+fun gangsta_N : N ;
+fun gangster_N : N ;
+fun gangway_N : N ;
+fun gannet_N : N ;
+fun ganoid_N : N ;
+fun ganoin_N : N ;
+fun gantlet_N : N ;
+fun gantry_N : N ;
+fun gaol_N : N ;
+fun gaol_V : V ;
+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 gar_N : N ;
+fun garage_N : N ;
+fun garage_V : V ;
+fun garambulla_N : N ;
+fun garb_N : N ;
+fun garb_V : V ;
+fun garbage_N : N ;
+fun garbage_can_N : N ;
+fun garble_V : V ;
+fun garboard_N : N ;
+fun garbology_N : N ;
+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 garganey_N : N ;
+fun gargantuan_A : A ;
+fun gargle_N : N ;
+fun gargle_V : V ;
+fun gargoyle_N : N ;
+fun garibaldi_N : N ;
+fun garish_A : A ;
+fun garishness_N : N ;
+fun garland_N : N ;
+fun garland_V : V ;
+fun garlic_N : N ;
+fun garlicky_A : A ;
+fun garment_N : N ;
+fun garmentmaker_N : N ;
+fun garner_N : N ;
+fun garner_V : V ;
+fun garnet_N : N ;
+fun garnierite_N : N ;
+fun garnish_N : N ;
+fun garnish_V : V ;
+fun garnishee_N : N ;
+fun garnishment_N : N ;
+fun garotte_N : N ;
+fun garotte_V : V ;
+fun garret_N : N ;
+fun garrison_N : N ;
+fun garrison_V : V ;
+fun garrote_N : N ;
+fun garroter_N : N ;
+fun garrotte_N : N ;
+fun garrotte_V : V ;
+fun garrulity_N : N ;
+fun garrulous_A : A ;
+fun garter_N : N ;
+fun gas_N : N ;
+fun gas_V : V ;
+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 gaseousness_N : N ;
+fun gasfield_N : N ;
+fun gash_N : N ;
+fun gash_V : V ;
+fun gasification_N : N ;
+fun gasify_V : V ;
+fun gasket_N : N ;
+fun gaskin_N : N ;
+fun gaslight_N : N ;
+fun gasman_N : N ;
+fun gasmask_N : N ;
+fun gasohol_N : N ;
+fun gasolene_N : N ;
+fun gasoline_N : N ;
+fun gasometer_N : N ;
+fun gasp_N : N ;
+fun gasp_V : V ;
+fun gassing_N : N ;
+fun gassy_A : A ;
+fun gasteromycete_N : N ;
+fun gastrectomy_N : N ;
+fun gastric_A : A ;
+fun gastrin_N : N ;
+fun gastritis_N : N ;
+fun gastrocnemius_N : N ;
+fun gastroduodenal_A : A ;
+fun gastroenteritis_N : N ;
+fun gastroenterologist_N : N ;
+fun gastroenterology_N : N ;
+fun gastroenterostomy_N : N ;
+fun gastroesophageal_A : A ;
+fun gastrogavage_N : N ;
+fun gastrointestinal_A : A ;
+fun gastromy_N : N ;
+fun gastronomic_A : A ;
+fun gastronomy_N : N ;
+fun gastropod_N : N ;
+fun gastroscope_N : N ;
+fun gastroscopy_N : N ;
+fun gastrostomy_N : N ;
+fun gastrula_N : N ;
+fun gastrulation_N : N ;
+fun gasworks_N : N ;
+fun gat_N : N ;
+fun gate_N : N ;
+fun gate_V : V ;
+fun gatecrash_V : V ;
+fun gatecrasher_N : N ;
+fun gatehouse_N : N ;
+fun gatekeeper_N : N ;
+fun gatepost_N : N ;
+fun gateway_N : N ;
+fun gather_N : N ;
+fun gather_V : V ;
+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 gaudery_N : N ;
+fun gaudy_A : A ;
+fun gaudy_N : N ;
+fun gauge_N : N ;
+fun gauge_V : V ;
+fun gaul_N : N ;
+fun gaumless_A : A ;
+fun gaunt_A : A ;
+fun gauntlet_N : N ;
+fun gauntleted_A : A ;
+fun gauntness_N : N ;
+fun gaur_N : N ;
+fun gauss_N : N ;
+fun gauze_N : N ;
+fun gauzy_A : A ;
+fun gavel_N : N ;
+fun gavial_N : N ;
+fun gavotte_N : N ;
+fun gawk_N : N ;
+fun gawker_N : N ;
+fun gawkiness_N : N ;
+fun gawky_A : A ;
+fun gawp_V : V ;
+fun gay_A : A ;
+fun gay_N : N ;
+fun gayal_N : N ;
+fun gayness_N : N ;
+fun gazania_N : N ;
+fun gaze_N : N ;
+fun gaze_V : V ;
+fun gazebo_N : N ;
+fun gazelle_N : N ;
+fun gazette_N : N ;
+fun gazette_V : V ;
+fun gazetteer_N : N ;
+fun gazpacho_N : N ;
+fun gazump_V : V ;
+fun gcse_N : N ;
+fun gean_N : N ;
+fun gear_N : N ;
+fun gear_V : V ;
+fun gear_case_N : N ;
+fun gearbox_N : N ;
+fun gearing_N : N ;
+fun gearset_N : N ;
+fun gearshift_N : N ;
+fun gecko_N : N ;
+fun gee_gee_N : N ;
+fun geebung_N : N ;
+fun geek_N : N ;
+fun geek_V : V ;
+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 gelatinousness_N : N ;
+fun geld_V : V ;
+fun gelding_N : N ;
+fun gelechiid_N : N ;
+fun gelignite_N : N ;
+fun gem_N : N ;
+fun gemfibrozil_N : N ;
+fun geminate_N : N ;
+fun gemination_N : N ;
+fun gemma_N : N ;
+fun gemmed_A : A ;
+fun gemmiferous_A : A ;
+fun gemmule_N : N ;
+fun gempylid_N : N ;
+fun gemsbok_N : N ;
+fun gen_N : N ;
+fun gen_V : V ;
+fun gendarme_N : N ;
+fun gendarmerie_N : N ;
+fun gender_N : N ;
+fun gene_N : N ;
+fun genealogic_A : A ;
+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 generalship_N : N ;
+fun generate_V : V ;
+fun generation_N : N ;
+fun generational_A : A ;
+fun generative_A : A ;
+fun generator_N : N ;
+fun generic_A : A ;
+fun generic_N : N ;
+fun generically_Adv : Adv ;
+fun generosity_N : N ;
+fun generous_A : A ;
+fun genesis_N : N ;
+fun genet_N : N ;
+fun genetic_A : A ;
+fun genetically_Adv : Adv ;
+fun geneticism_N : N ;
+fun geneticist_N : N ;
+fun genetics_N : N ;
+fun geneva_N : N ;
+fun genial_A : A ;
+fun geniality_N : N ;
+fun genic_A : A ;
+fun geniculate_A : A ;
+fun genie_N : N ;
+fun genip_N : N ;
+fun genipa_N : N ;
+fun genipap_N : N ;
+fun genital_A : A ;
+fun genitalia_N : N ;
+fun genitive_A : A ;
+fun genitive_N : N ;
+fun genitor_N : N ;
+fun genitourinary_A : A ;
+fun genius_N : N ;
+fun genius_loci_N : N ;
+fun genlisea_N : N ;
+fun genocide_N : N ;
+fun genoise_N : N ;
+fun genome_N : N ;
+fun genomics_N : N ;
+fun genotype_N : N ;
+fun genotypical_A : A ;
+fun genre_N : N ;
+fun genre_painting_N : N ;
+fun gent_N : N ;
+fun gentamicin_N : N ;
+fun genteel_A : A ;
+fun gentian_N : N ;
+fun gentianella_N : N ;
+fun gentile_A : A ;
+fun gentile_N : N ;
+fun gentility_N : N ;
+fun gentle_A : A ;
+fun gentlefolk_N : N ;
+fun gentleman_N : N ;
+fun gentleman_at_arms_N : N ;
+fun gentlemanlike_A : A ;
+fun gentlemanly_A : A ;
+fun gentleness_N : N ;
+fun gentlewoman_N : N ;
+fun gently_Adv : Adv ;
+fun gentrification_N : N ;
+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 geochemistry_N : N ;
+fun geode_N : N ;
+fun geodesic_N : N ;
+fun geodesy_N : N ;
+fun geodetic_A : A ;
+fun geoduck_N : N ;
+fun geographer_N : N ;
+fun geographic_A : A ;
+fun geographical_A : A ;
+fun geography_N : N ;
+fun geological_A : A ;
+fun geologist_N : N ;
+fun geology_N : N ;
+fun geomancer_N : N ;
+fun geomancy_N : N ;
+fun geometer_N : N ;
+fun geometric_A : A ;
+fun geometrical_A : A ;
+fun geometrid_N : N ;
+fun geometry_N : N ;
+fun geomorphologic_A : A ;
+fun geophagy_N : N ;
+fun geophysical_A : A ;
+fun geophysicist_N : N ;
+fun geophysics_N : N ;
+fun geophyte_N : N ;
+fun geophytic_A : A ;
+fun geopolitical_A : A ;
+fun geopolitics_N : N ;
+fun geordie_N : N ;
+fun georgette_N : N ;
+fun georgian_A : A ;
+fun georgian_N : N ;
+fun geostationary_A : A ;
+fun geostrategic_A : A ;
+fun geostrategy_N : N ;
+fun geosynchronous_A : A ;
+fun geothermal_A : A ;
+fun geotropism_N : N ;
+fun geranium_N : N ;
+fun gerardia_N : N ;
+fun gerbil_N : N ;
+fun gerenuk_N : N ;
+fun geriatric_A : A ;
+fun geriatrician_N : N ;
+fun geriatrics_N : N ;
+fun germ_N : N ;
+fun germander_N : N ;
+fun germane_A : A ;
+fun germaneness_N : N ;
+fun germanic_A : A ;
+fun germanite_N : N ;
+fun germanium_N : N ;
+fun germfree_A : A ;
+fun germicide_N : N ;
+fun germinal_A : A ;
+fun germinate_V : V ;
+fun germination_N : N ;
+fun germy_A : A ;
+fun gerontocracy_N : N ;
+fun gerontologist_N : N ;
+fun gerontology_N : N ;
+fun gerrymander_N : N ;
+fun gerrymander_V : V ;
+fun gerund_N : N ;
+fun gerundial_A : A ;
+fun gesneria_N : N ;
+fun gesneriad_N : N ;
+fun gesso_N : N ;
+fun gestalt_N : N ;
+fun gestapo_N : N ;
+fun gestation_N : N ;
+fun gestational_A : A ;
+fun gesticulate_V : V ;
+fun gesticulation_N : N ;
+fun gestural_A : A ;
+fun gesture_N : N ;
+fun gesture_V : V ;
+fun get_N : N ;
+fun get_at_able_A : A ;
+fun get_getted_V : V ;
+fun get_got_V : V ;
+fun get_together_N : N ;
+fun get_up_N : N ;
+fun getaway_N : N ;
+fun gettable_A : A ;
+fun geum_N : N ;
+fun geyser_N : N ;
+fun ghanaian_A : A ;
+fun ghanaian_N : N ;
+fun gharry_N : N ;
+fun ghastliness_N : N ;
+fun ghastly_A : A ;
+fun ghat_N : N ;
+fun ghatti_N : N ;
+fun ghee_N : N ;
+fun gherkin_N : N ;
+fun ghetto_N : N ;
+fun ghillie_N : N ;
+fun ghost_N : N ;
+fun ghost_V : V ;
+fun ghost_writer_N : N ;
+fun ghostliness_N : N ;
+fun ghostly_A : A ;
+fun ghostwriter_N : N ;
+fun ghoul_N : N ;
+fun ghoulish_A : A ;
+fun ghrelin_N : N ;
+fun gi_N : N ;
+fun giant_N : N ;
+fun giantess_N : N ;
+fun giantism_N : N ;
+fun giardia_N : N ;
+fun giardiasis_N : N ;
+fun gib_N : N ;
+fun gibber_V : V ;
+fun gibberellin_N : N ;
+fun gibberish_N : N ;
+fun gibbet_N : N ;
+fun gibbet_V : V ;
+fun gibbon_N : N ;
+fun gibbous_A : A ;
+fun gibbsite_N : N ;
+fun gibe_N : N ;
+fun gibe_V : V ;
+fun gibibit_N : N ;
+fun gibingly_Adv : Adv ;
+fun giblet_N : N ;
+fun gibraltarian_A : A ;
+fun gibraltarian_N : N ;
+fun giddiness_N : N ;
+fun giddy_A : A ;
+fun gidgee_N : N ;
+fun gift_N : N ;
+fun gift_V : V ;
+fun gig_N : N ;
+fun gigabit_N : N ;
+fun gigabyte_N : N ;
+fun gigahertz_N : N ;
+fun gigantic_A : A ;
+fun gigantism_N : N ;
+fun giggle_N : N ;
+fun giggle_V : V ;
+fun gigolo_N : N ;
+fun gilbert_N : N ;
+fun gilbertian_A : A ;
+fun gild_N : N ;
+fun gild_V : V ;
+fun gilder_N : N ;
+fun gildhall_N : N ;
+fun gilding_N : N ;
+fun gill_N : N ;
+fun gillie_N : N ;
+fun gilt_N : N ;
+fun gilt_edged_A : A ;
+fun gimbal_N : N ;
+fun gimbaled_A : A ;
+fun gimcrack_A : A ;
+fun gimel_N : N ;
+fun gimlet_N : N ;
+fun gimmick_N : N ;
+fun gimmickry_N : N ;
+fun gin_N : N ;
+fun gin_V : V ;
+fun ginger_A : A ;
+fun ginger_N : N ;
+fun ginger_V : V ;
+fun gingerbread_N : N ;
+fun gingerly_A : A ;
+fun gingerol_N : N ;
+fun gingersnap_N : N ;
+fun gingery_A : A ;
+fun gingham_N : N ;
+fun gingiva_N : N ;
+fun gingival_A : A ;
+fun gingivitis_N : N ;
+fun gingko_N : N ;
+fun ginkgo_N : N ;
+fun ginseng_N : N ;
+fun gipsy_N : N ;
+fun gipsywort_N : N ;
+fun giraffe_N : N ;
+fun girandole_N : N ;
+fun gird_V : V ;
+fun girder_N : N ;
+fun girdle_N : N ;
+fun girdle_V : V ;
+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 gist_N : N ;
+fun gitana_N : N ;
+fun gitano_N : N ;
+fun give_N : N ;
+fun give_gave_V : V ;
+fun give_gived_V : V ;
+fun giveaway_N : N ;
+fun given_N : N ;
+fun givenness_N : N ;
+fun giver_N : N ;
+fun giveth_V : V ;
+fun giving_N : N ;
+fun gizzard_N : N ;
+fun glabella_N : N ;
+fun glabellar_A : A ;
+fun glabrescent_A : A ;
+fun glabrous_A : A ;
+fun glacial_A : A ;
+fun glaciated_A : A ;
+fun glaciation_N : N ;
+fun glacier_N : N ;
+fun glacé_A : A ;
+fun glad_A : A ;
+fun gladden_V : V ;
+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 glamor_N : N ;
+fun glamorization_N : N ;
+fun glamorize_V : V ;
+fun glamorous_A : A ;
+fun glamour_N : N ;
+fun glance_N : N ;
+fun glance_V : V ;
+fun gland_N : N ;
+fun glanders_N : N ;
+fun glandular_A : A ;
+fun glans_N : N ;
+fun glare_N : N ;
+fun glare_V : V ;
+fun glaring_A : A ;
+fun glasnost_N : N ;
+fun glass_N : N ;
+fun glass_V : V ;
+fun glass_blower_N : N ;
+fun glass_cutter_N : N ;
+fun glass_wool_N : N ;
+fun glassblower_N : N ;
+fun glassful_N : N ;
+fun glasshouse_N : N ;
+fun glassmaker_N : N ;
+fun glassware_N : N ;
+fun glassworks_N : N ;
+fun glasswort_N : N ;
+fun glassy_A : A ;
+fun glaswegian_A : A ;
+fun glaswegian_N : N ;
+fun glaucoma_N : N ;
+fun glauconite_N : N ;
+fun glaucous_A : A ;
+fun glaze_N : N ;
+fun glaze_V : V ;
+fun glazier_N : N ;
+fun gleam_N : N ;
+fun gleam_V : V ;
+fun glean_V : V ;
+fun gleaner_N : N ;
+fun gleba_N : N ;
+fun glebe_N : N ;
+fun glee_N : N ;
+fun gleeful_A : A ;
+fun gleet_N : N ;
+fun glen_N : N ;
+fun glengarry_N : N ;
+fun glial_A : A ;
+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 glimmery_A : A ;
+fun glimpse_N : N ;
+fun glimpse_V : V ;
+fun glint_N : N ;
+fun glint_V : V ;
+fun glioblastoma_N : N ;
+fun glioma_N : N ;
+fun glipizide_N : N ;
+fun gliricidia_N : N ;
+fun glissade_N : N ;
+fun glissade_V : V ;
+fun glissando_A : A ;
+fun glissando_Adv : Adv ;
+fun glissando_N : N ;
+fun glisten_V : V ;
+fun glister_N : N ;
+fun glister_V : V ;
+fun glitter_N : N ;
+fun glitter_V : V ;
+fun gloaming_N : N ;
+fun gloat_N : N ;
+fun gloat_V : V ;
+fun gloatingly_Adv : Adv ;
+fun global_A : A ;
+fun globalisation_N : N ;
+fun globalization_N : N ;
+fun globe_N : N ;
+fun globeflower_N : N ;
+fun globetrot_V : V ;
+fun globetrotter_N : N ;
+fun globigerina_N : N ;
+fun globin_N : N ;
+fun globular_A : A ;
+fun globule_N : N ;
+fun globulin_N : N ;
+fun glochidium_N : N ;
+fun glockenspiel_N : N ;
+fun glogg_N : N ;
+fun glomerular_A : A ;
+fun glomerule_N : N ;
+fun glomerulonephritis_N : N ;
+fun glomerulus_N : N ;
+fun gloom_N : N ;
+fun gloominess_N : N ;
+fun glooming_A : A ;
+fun gloomy_A : A ;
+fun glop_N : N ;
+fun glorification_N : N ;
+fun glorify_V : V ;
+fun gloriosa_N : N ;
+fun glorious_A : A ;
+fun glory_N : N ;
+fun glory_V : V ;
+fun glory_hole_N : N ;
+fun gloss_N : N ;
+fun gloss_V : V ;
+fun glossalgia_N : N ;
+fun glossarist_N : N ;
+fun glossary_N : N ;
+fun glossiness_N : N ;
+fun glossitis_N : N ;
+fun glossolalia_N : N ;
+fun glossopharyngeal_A : A ;
+fun glossoptosis_N : N ;
+fun glossy_A : A ;
+fun glossy_N : N ;
+fun glottal_A : A ;
+fun glottis_N : N ;
+fun glottochronological_A : A ;
+fun glottochronology_N : N ;
+fun glove_N : N ;
+fun glove_compartment_N : N ;
+fun gloved_A : A ;
+fun gloveless_A : A ;
+fun glow_N : N ;
+fun glow_V : V ;
+fun glow_worm_N : N ;
+fun glower_V : V ;
+fun gloweringly_Adv : Adv ;
+fun glowingly_Adv : Adv ;
+fun glowworm_N : N ;
+fun gloxinia_N : N ;
+fun glucagon_N : N ;
+fun glucocorticoid_N : N ;
+fun glucosamine_N : N ;
+fun glucose_N : N ;
+fun glucoside_N : N ;
+fun glucosuria_N : N ;
+fun glue_IRREG_V : V ;
+fun glue_N : N ;
+fun glue_glued_V : V ;
+fun glued_A : A ;
+fun gluey_A : A ;
+fun glum_A : A ;
+fun glume_N : N ;
+fun glumness_N : N ;
+fun gluon_N : N ;
+fun glut_N : N ;
+fun glut_V : V ;
+fun glutamate_N : N ;
+fun glutamine_N : N ;
+fun gluteal_A : A ;
+fun glutelin_N : N ;
+fun gluten_N : N ;
+fun glutethimide_N : N ;
+fun gluteus_N : N ;
+fun glutinous_A : A ;
+fun glutton_N : N ;
+fun gluttonous_A : A ;
+fun gluttony_N : N ;
+fun glyburide_N : N ;
+fun glyceraldehyde_N : N ;
+fun glyceride_N : N ;
+fun glycerine_N : N ;
+fun glycerite_N : N ;
+fun glycerogelatin_N : N ;
+fun glycerol_N : N ;
+fun glyceryl_N : N ;
+fun glycine_N : N ;
+fun glycogen_N : N ;
+fun glycogenesis_N : N ;
+fun glycogenic_A : A ;
+fun glycolysis_N : N ;
+fun glycoprotein_N : N ;
+fun glycoside_N : N ;
+fun glycosuria_N : N ;
+fun glyph_N : N ;
+fun glyptics_N : N ;
+fun glyptography_N : N ;
+fun gnarled_A : A ;
+fun gnash_V : V ;
+fun gnat_N : N ;
+fun gnatcatcher_N : N ;
+fun gnathion_N : N ;
+fun gnathostome_N : N ;
+fun gnaw_V : V ;
+fun gneiss_N : N ;
+fun gnetum_N : N ;
+fun gnocchi_N : N ;
+fun gnome_N : N ;
+fun gnomic_A : A ;
+fun gnomish_A : A ;
+fun gnomon_N : N ;
+fun gnosis_N : N ;
+fun gnostic_A : A ;
+fun gnu_N : N ;
+fun go_A : A ;
+fun go_N : N ;
+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_goed_V : V ;
+fun go_kart_N : N ;
+fun go_slow_N : N ;
+fun go_to_meeting_A : A ;
+fun go_went_V : V ;
+fun goad_N : N ;
+fun goad_V : V ;
+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 goalpost_N : N ;
+fun goat_N : N ;
+fun goatee_N : N ;
+fun goateed_A : A ;
+fun goatfish_N : N ;
+fun goatherd_N : N ;
+fun goatsfoot_N : N ;
+fun goatskin_N : N ;
+fun goatsucker_N : N ;
+fun gob_N : N ;
+fun gobbet_N : N ;
+fun gobble_N : N ;
+fun gobble_V : V ;
+fun gobbledygook_N : N ;
+fun gobbler_N : N ;
+fun goblet_N : N ;
+fun goblin_N : N ;
+fun gobsmacked_A : A ;
+fun goby_N : N ;
+fun god_N : N ;
+fun god_damn_A : A ;
+fun god_damned_A : A ;
+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 godhead_N : N ;
+fun godless_A : A ;
+fun godlessness_N : N ;
+fun godlike_A : A ;
+fun godliness_N : N ;
+fun godly_A : A ;
+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 godwit_N : N ;
+fun goethite_N : N ;
+fun gofer_N : N ;
+fun goffer_N : N ;
+fun goggle_V : V ;
+fun goggle_box_N : N ;
+fun goggle_eyed_A : A ;
+fun goggles_N : N ;
+fun going_N : N ;
+fun going_over_N : N ;
+fun goiter_N : N ;
+fun goitre_N : N ;
+fun goitrogen_N : N ;
+fun gold_A : A ;
+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 goldbeater_N : N ;
+fun goldbrick_N : N ;
+fun goldcrest_N : N ;
+fun golden_A : A ;
+fun goldenbush_N : N ;
+fun goldeneye_N : N ;
+fun goldenrod_N : N ;
+fun goldenseal_N : N ;
+fun goldfield_N : N ;
+fun goldfields_N : N ;
+fun goldfinch_N : N ;
+fun goldfish_N : N ;
+fun goldilocks_N : N ;
+fun goldmine_N : N ;
+fun goldsmith_N : N ;
+fun goldstone_N : N ;
+fun goldthread_N : N ;
+fun golem_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 golfcart_N : N ;
+fun golfer_N : N ;
+fun golfing_N : N ;
+fun goliard_N : N ;
+fun goliath_N : N ;
+fun golliwog_N : N ;
+fun golosh_N : N ;
+fun gomphothere_N : N ;
+fun gonad_N : N ;
+fun gonadal_A : A ;
+fun gonadotropic_A : A ;
+fun gonadotropin_N : N ;
+fun gondola_N : N ;
+fun gondolier_N : N ;
+fun goner_N : N ;
+fun gong_N : N ;
+fun gong_V : V ;
+fun gonif_N : N ;
+fun goniometer_N : N ;
+fun gonion_N : N ;
+fun gonioscopy_N : N ;
+fun gonococcus_N : N ;
+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 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 goofy_A : A ;
+fun googly_N : N ;
+fun googol_N : N ;
+fun googolplex_N : N ;
+fun gook_N : N ;
+fun goon_N : N ;
+fun goosander_N : N ;
+fun goose_N : N ;
+fun goose_flesh_N : N ;
+fun goose_step_N : N ;
+fun gooseberry_N : N ;
+fun goosefish_N : N ;
+fun goosefoot_N : N ;
+fun gooseneck_N : N ;
+fun gopher_N : N ;
+fun goral_N : N ;
+fun gordian_A : A ;
+fun gore_N : N ;
+fun gore_V : V ;
+fun gorge_N : N ;
+fun gorge_V : V ;
+fun gorgeous_A : A ;
+fun gorgerin_N : N ;
+fun gorget_N : N ;
+fun gorgon_N : N ;
+fun gorgonian_N : N ;
+fun gorgonzola_N : N ;
+fun gorilla_N : N ;
+fun gormandize_V : V ;
+fun gormless_A : A ;
+fun gorse_N : N ;
+fun gory_A : A ;
+fun goshawk_N : N ;
+fun gosling_N : N ;
+fun gospel_N : N ;
+fun gossamer_N : N ;
+fun gossip_N : N ;
+fun gossip_V : V ;
+fun gossiping_N : N ;
+fun goth_N : N ;
+fun gothic_A : A ;
+fun gothic_N : N ;
+fun gouache_N : N ;
+fun gouge_N : N ;
+fun gouge_V : V ;
+fun gouger_N : N ;
+fun goulash_N : N ;
+fun gourd_N : N ;
+fun gourde_N : N ;
+fun gourmand_N : N ;
+fun gourmandism_N : N ;
+fun gourmet_N : N ;
+fun gout_N : N ;
+fun gouty_A : A ;
+fun govern_V : V ;
+fun governance_N : N ;
+fun governed_N : N ;
+fun governess_N : N ;
+fun government_N : N ;
+fun governmental_A : A ;
+fun governor_N : N ;
+fun governor_general_N : N ;
+fun governorship_N : N ;
+fun govt_N : N ;
+fun gown_N : N ;
+fun gown_V : V ;
+fun gp_N : N ;
+fun grab_N : N ;
+fun grab_V : V ;
+fun grabber_N : N ;
+fun grace_N : N ;
+fun grace_V : V ;
+fun graceful_A : A ;
+fun gracefulness_N : N ;
+fun graceless_A : A ;
+fun gracelessness_N : N ;
+fun gracilariid_N : N ;
+fun gracile_A : A ;
+fun gracious_A : A ;
+fun graciousness_N : N ;
+fun grackle_N : N ;
+fun grad_N : N ;
+fun gradable_A : A ;
+fun gradation_N : N ;
+fun gradational_A : A ;
+fun grade_N : N ;
+fun grade_V : V ;
+fun grader_N : N ;
+fun gradient_N : N ;
+fun grading_N : N ;
+fun gradual_A : A ;
+fun gradual_N : N ;
+fun graduality_N : N ;
+fun gradualness_N : N ;
+fun graduate_N : N ;
+fun graduate_V : V ;
+fun graduation_N : N ;
+fun graffito_N : N ;
+fun graft_N : N ;
+fun graft_V : V ;
+fun grail_N : N ;
+fun grain_N : N ;
+fun grained_A : A ;
+fun grainfield_N : N ;
+fun graining_N : N ;
+fun gram_N : N ;
+fun grama_N : N ;
+fun gramicidin_N : N ;
+fun grammar_N : N ;
+fun grammarian_N : N ;
+fun grammatical_A : A ;
+fun gramme_N : N ;
+fun gramophone_N : N ;
+fun grampus_N : N ;
+fun granadilla_N : N ;
+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 grandiosity_N : N ;
+fun grandma_N : N ;
+fun grandmaster_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 grandstander_N : N ;
+fun granduncle_N : N ;
+fun grange_N : N ;
+fun granite_N : N ;
+fun graniteware_N : N ;
+fun granitic_A : A ;
+fun grannie_N : N ;
+fun granny_N : N ;
+fun granola_N : N ;
+fun grant_N : N ;
+fun grant_V : V ;
+fun grantee_N : N ;
+fun granter_N : N ;
+fun grantor_N : N ;
+fun granular_A : A ;
+fun granularity_N : N ;
+fun granulate_V : V ;
+fun granulation_N : N ;
+fun granule_N : N ;
+fun granuliferous_A : A ;
+fun granulocyte_N : N ;
+fun granulocytic_A : A ;
+fun granuloma_N : N ;
+fun granulomatous_A : A ;
+fun grape_N : N ;
+fun grape_sugar_N : N ;
+fun grapefruit_N : N ;
+fun grapelike_A : A ;
+fun grapeshot_N : N ;
+fun grapevine_N : N ;
+fun grapey_A : A ;
+fun graph_N : N ;
+fun graphic_A : A ;
+fun graphic_N : N ;
+fun graphical_A : A ;
+fun graphics_N : N ;
+fun graphite_N : N ;
+fun graphologist_N : N ;
+fun graphology_N : N ;
+fun grapnel_N : N ;
+fun grappa_N : N ;
+fun grapple_V : V ;
+fun grappling_iron_N : N ;
+fun grasp_N : N ;
+fun grasp_V : V ;
+fun grasping_N : N ;
+fun grass_N : N ;
+fun grass_V : V ;
+fun grassfinch_N : N ;
+fun grassfire_N : N ;
+fun grasshopper_N : N ;
+fun grassland_N : N ;
+fun grassless_A : A ;
+fun grasslike_A : A ;
+fun grassroots_A : A ;
+fun grassy_A : A ;
+fun grate_N : N ;
+fun grate_V : V ;
+fun grateful_A : A ;
+fun gratefulness_N : N ;
+fun grater_N : N ;
+fun gratification_N : N ;
+fun gratify_V : V ;
+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_V : V ;
+fun gravedigger_N : N ;
+fun gravel_N : N ;
+fun gravel_V : V ;
+fun gravelly_A : A ;
+fun gravelweed_N : N ;
+fun graven_A : A ;
+fun graveness_N : N ;
+fun graver_N : N ;
+fun graverobber_N : N ;
+fun gravestone_N : N ;
+fun graveyard_N : N ;
+fun gravida_N : N ;
+fun gravidity_N : N ;
+fun gravimeter_N : N ;
+fun graving_dock_N : N ;
+fun gravitate_V : V ;
+fun gravitation_N : N ;
+fun gravitational_A : A ;
+fun graviton_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 grayly_Adv : Adv ;
+fun graze_N : N ;
+fun graze_V : V ;
+fun grazier_N : N ;
+fun grazing_N : N ;
+fun grazing_land_N : N ;
+fun grease_N : N ;
+fun grease_V : V ;
+fun grease_gun_N : N ;
+fun greasepaint_N : N ;
+fun greaseproof_A : A ;
+fun greaser_N : N ;
+fun greasewood_N : N ;
+fun greasiness_N : N ;
+fun greasy_A : A ;
+fun great_A : A ;
+fun great_N : N ;
+fun greatcoat_N : N ;
+fun greater_A : A ;
+fun greatest_A : A ;
+fun greathearted_A : A ;
+fun greatness_N : N ;
+fun greave_N : N ;
+fun greaves_N : N ;
+fun grebe_N : N ;
+fun grecian_A : A ;
+fun greed_N : N ;
+fun greediness_N : N ;
+fun greedy_A : A ;
+fun green_A : A ;
+fun green_N : N ;
+fun greenback_N : N ;
+fun greenbelt_N : N ;
+fun greenbottle_N : N ;
+fun greenery_N : N ;
+fun greeneye_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_A : A ;
+fun greenhouse_N : N ;
+fun greenish_A : A ;
+fun greenishness_N : N ;
+fun greenling_N : N ;
+fun greenmail_N : N ;
+fun greenness_N : N ;
+fun greenockite_N : N ;
+fun greenroom_N : N ;
+fun greens_N : N ;
+fun greensand_N : N ;
+fun greenshank_N : N ;
+fun greenside_A : A ;
+fun greenskeeper_N : N ;
+fun greensward_N : N ;
+fun greenwing_N : N ;
+fun greenwood_N : N ;
+fun greet_V : V ;
+fun greeter_N : N ;
+fun greeting_N : N ;
+fun gregarine_N : N ;
+fun gregarious_A : A ;
+fun gregariousness_N : N ;
+fun gregorian_A : A ;
+fun greisen_N : N ;
+fun gremlin_N : N ;
+fun grenade_N : N ;
+fun grenadian_A : A ;
+fun grenadian_N : N ;
+fun grenadier_N : N ;
+fun grenadine_N : N ;
+fun grevillea_N : N ;
+fun grey_A : A ;
+fun grey_N : N ;
+fun grey_V : V ;
+fun grey_headed_A : A ;
+fun greyback_N : N ;
+fun greybeard_N : N ;
+fun greyhen_N : N ;
+fun greyhound_N : N ;
+fun greyish_A : A ;
+fun greylag_N : N ;
+fun grid_N : N ;
+fun griddle_N : N ;
+fun gridiron_N : N ;
+fun gridlock_N : N ;
+fun grief_N : N ;
+fun grievance_N : N ;
+fun grieve_V : V ;
+fun grievous_A : A ;
+fun griffin_N : N ;
+fun griffon_N : N ;
+fun grigri_N : N ;
+fun grill_N : N ;
+fun grill_V : V ;
+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_V : V ;
+fun griminess_N : N ;
+fun grimness_N : N ;
+fun grimoire_N : N ;
+fun grimy_A : A ;
+fun grin_N : N ;
+fun grin_V : V ;
+fun grind_N : N ;
+fun grind_V : V ;
+fun grinder_N : N ;
+fun grinding_N : N ;
+fun grindstone_N : N ;
+fun gringo_N : N ;
+fun grinner_N : N ;
+fun griot_N : N ;
+fun grip_N : N ;
+fun grip_V : V ;
+fun gripe_N : N ;
+fun grippe_N : N ;
+fun gripsack_N : N ;
+fun grisaille_N : N ;
+fun griseofulvin_N : N ;
+fun grisly_A : A ;
+fun grison_N : N ;
+fun grissino_N : N ;
+fun grist_N : N ;
+fun gristle_N : N ;
+fun gristmill_N : N ;
+fun grit_N : N ;
+fun grit_V : V ;
+fun grits_N : N ;
+fun gritty_A : A ;
+fun grivet_N : N ;
+fun grizzle_N : N ;
+fun grizzle_V : V ;
+fun grizzled_A : A ;
+fun grizzly_N : N ;
+fun groan_N : N ;
+fun groan_V : V ;
+fun groaner_N : N ;
+fun groat_N : N ;
+fun groats_N : N ;
+fun grocer_N : N ;
+fun grocery_N : N ;
+fun groenendael_N : N ;
+fun grog_N : N ;
+fun grogginess_N : N ;
+fun groggy_A : A ;
+fun grogram_N : N ;
+fun groin_N : N ;
+fun groin_V : V ;
+fun gromwell_N : N ;
+fun groom_N : N ;
+fun groom_V : V ;
+fun groomsman_N : N ;
+fun groove_N : N ;
+fun groove_V : V ;
+fun groover_N : N ;
+fun grooving_N : N ;
+fun groovy_A : A ;
+fun grope_N : N ;
+fun grope_V : V ;
+fun gropingly_Adv : Adv ;
+fun grosbeak_N : N ;
+fun groschen_N : N ;
+fun grosgrain_N : N ;
+fun gross_A : A ;
+fun gross_N : N ;
+fun gross_V : V ;
+fun grossness_N : N ;
+fun grosz_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_bait_N : N ;
+fun ground_fish_N : N ;
+fun ground_plan_N : N ;
+fun ground_rent_N : N ;
+fun groundbreaking_N : N ;
+fun groundcover_N : N ;
+fun grounder_N : N ;
+fun groundfish_N : N ;
+fun groundhog_N : N ;
+fun grounding_N : N ;
+fun groundless_A : A ;
+fun groundlessness_N : N ;
+fun groundling_N : N ;
+fun groundmass_N : N ;
+fun groundnut_N : N ;
+fun grounds_N : N ;
+fun groundsel_N : N ;
+fun groundsheet_N : N ;
+fun groundsman_N : N ;
+fun groundspeed_N : N ;
+fun groundwork_N : N ;
+fun group_N : N ;
+fun group_V : V ;
+fun grouper_N : N ;
+fun groupie_N : N ;
+fun grouping_N : N ;
+fun groupthink_N : N ;
+fun groupware_N : N ;
+fun grouse_N : N ;
+fun grouse_V : V ;
+fun grouseberry_N : N ;
+fun grout_N : N ;
+fun grove_N : N ;
+fun grovel_V : V ;
+fun groveller_N : N ;
+fun grow_V : V ;
+fun grower_N : N ;
+fun growing_N : N ;
+fun growl_N : N ;
+fun growl_V : V ;
+fun growler_N : N ;
+fun growling_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 grubbiness_N : N ;
+fun grubby_A : A ;
+fun grubby_N : N ;
+fun grubstake_N : N ;
+fun grudge_N : N ;
+fun grudge_V : V ;
+fun grudging_A : A ;
+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 grugru_N : N ;
+fun grumble_N : N ;
+fun grumble_V : V ;
+fun grumbler_N : N ;
+fun grume_N : N ;
+fun grumpiness_N : N ;
+fun grumpy_A : A ;
+fun grundyism_N : N ;
+fun grunt_N : N ;
+fun grunt_V : V ;
+fun grunter_N : N ;
+fun gryphon_N : N ;
+fun guacamole_N : N ;
+fun guaiacum_N : N ;
+fun guama_N : N ;
+fun guan_N : N ;
+fun guanabenz_N : N ;
+fun guanaco_N : N ;
+fun guanine_N : N ;
+fun guano_N : N ;
+fun guar_N : N ;
+fun guarani_N : N ;
+fun guarantee_N : N ;
+fun guarantee_V : V ;
+fun guarantor_N : N ;
+fun guaranty_N : N ;
+fun guard_N : N ;
+fun guard_V : V ;
+fun guard_boat_N : N ;
+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 guatemalan_A : A ;
+fun guatemalan_N : N ;
+fun guava_N : N ;
+fun guayule_N : N ;
+fun gubernatorial_A : A ;
+fun gudgeon_N : N ;
+fun guelder_rose_N : N ;
+fun guenon_N : N ;
+fun guerdon_N : N ;
+fun guereza_N : N ;
+fun gueridon_N : N ;
+fun guerilla_N : N ;
+fun guerrilla_N : N ;
+fun guess_N : N ;
+fun guess_V : V ;
+fun guesser_N : N ;
+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_V : V ;
+fun guidebook_N : N ;
+fun guideline_N : N ;
+fun guidepost_N : N ;
+fun guiding_A : A ;
+fun guild_N : N ;
+fun guild_hall_N : N ;
+fun guilder_N : N ;
+fun guildhall_N : N ;
+fun guile_N : N ;
+fun guileful_A : A ;
+fun guileless_A : A ;
+fun guillemot_N : N ;
+fun guilloche_N : N ;
+fun guillotine_N : N ;
+fun guillotine_V : V ;
+fun guilt_N : N ;
+fun guiltiness_N : N ;
+fun guiltless_A : A ;
+fun guilty_A : A ;
+fun guimpe_N : N ;
+fun guinea_N : N ;
+fun guinea_fowl_N : N ;
+fun guinea_pig_N : N ;
+fun guinean_A : A ;
+fun guinean_N : N ;
+fun guinness_N : N ;
+fun guise_N : N ;
+fun guitar_N : N ;
+fun guitarfish_N : N ;
+fun guitarist_N : N ;
+fun gulag_N : N ;
+fun gulch_N : N ;
+fun gulden_N : N ;
+fun gulf_N : N ;
+fun gulfweed_N : N ;
+fun gull_N : N ;
+fun gull_V : V ;
+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 gulper_N : N ;
+fun gulping_N : N ;
+fun gum_N : N ;
+fun gum_V : V ;
+fun gumbo_N : N ;
+fun gumboil_N : N ;
+fun gumboot_N : N ;
+fun gumdrop_N : N ;
+fun gumma_N : N ;
+fun gummite_N : N ;
+fun gummosis_N : N ;
+fun gummy_A : A ;
+fun gumption_N : N ;
+fun gumshoe_N : N ;
+fun gumweed_N : N ;
+fun gumwood_N : N ;
+fun gun_N : N ;
+fun gun_V : V ;
+fun gun_carriage_N : N ;
+fun gunboat_N : N ;
+fun guncotton_N : N ;
+fun gundog_N : N ;
+fun gunfight_N : N ;
+fun gunfire_N : N ;
+fun gunflint_N : N ;
+fun gunite_N : N ;
+fun gunlock_N : N ;
+fun gunman_N : N ;
+fun gunmetal_N : N ;
+fun gunnel_N : N ;
+fun gunner_N : N ;
+fun gunnery_N : N ;
+fun gunny_N : N ;
+fun gunnysack_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 gunsight_N : N ;
+fun gunsmith_N : N ;
+fun gunwale_N : N ;
+fun guppy_N : N ;
+fun gurgle_N : N ;
+fun gurgle_V : V ;
+fun gurkha_N : N ;
+fun gurnard_N : N ;
+fun gurney_N : N ;
+fun guru_N : N ;
+fun gush_N : N ;
+fun gush_V : V ;
+fun gusher_N : N ;
+fun gushingly_Adv : Adv ;
+fun gusset_N : N ;
+fun gusseted_A : A ;
+fun gussy_V : V ;
+fun gust_N : N ;
+fun gustation_N : N ;
+fun gustatory_A : A ;
+fun gusto_N : N ;
+fun gusty_A : A ;
+fun gut_N : N ;
+fun gut_V : V ;
+fun gutless_A : A ;
+fun gutlessness_N : N ;
+fun gutsiness_N : N ;
+fun gutsy_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_N : N ;
+fun guy_V : V ;
+fun guyanese_A : A ;
+fun guyanese_N : N ;
+fun guyot_N : N ;
+fun guzzle_V : V ;
+fun guzzler_N : N ;
+fun gybe_V : V ;
+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 gymnosophical_A : A ;
+fun gymnosophist_N : N ;
+fun gymnosophy_N : N ;
+fun gymnosperm_N : N ;
+fun gymnospermous_A : A ;
+fun gymslip_N : N ;
+fun gynaecological_A : A ;
+fun gynaecologist_N : N ;
+fun gynaecology_N : N ;
+fun gynandromorphic_A : A ;
+fun gynecocracy_N : N ;
+fun gynecological_A : A ;
+fun gynecologist_N : N ;
+fun gynecology_N : N ;
+fun gynecomastia_N : N ;
+fun gyneolatry_N : N ;
+fun gynobase_N : N ;
+fun gynoecium_N : N ;
+fun gynogenesis_N : N ;
+fun gynophobia_N : N ;
+fun gynophore_N : N ;
+fun gynostegium_N : N ;
+fun gyp_N : N ;
+fun gyp_V : V ;
+fun gypsum_N : N ;
+fun gypsy_N : N ;
+fun gyral_A : A ;
+fun gyrate_V : V ;
+fun gyration_N : N ;
+fun gyrfalcon_N : N ;
+fun gyro_N : N ;
+fun gyrocompass_N : N ;
+fun gyromitra_N : N ;
+fun gyroscope_N : N ;
+fun gyroscopic_A : A ;
+fun gyrostabilizer_N : N ;
+fun gyrus_N : N ;
+fun gâteau_N : N ;
+fun h'm_V : V ;
+fun h_bomb_N : N ;
+fun ha'p'orth_N : N ;
+fun ha'penny_N : N ;
+fun habanera_N : N ;
+fun habeas_corpus_N : N ;
+fun haberdasher_N : N ;
+fun haberdashery_N : N ;
+fun habergeon_N : N ;
+fun habit_N : N ;
+fun habitability_N : N ;
+fun habitable_A : A ;
+fun habitat_N : N ;
+fun habitation_N : N ;
+fun habited_A : A ;
+fun habitual_A : A ;
+fun habituate_V : V ;
+fun habituation_N : N ;
+fun habitude_N : N ;
+fun habitus_N : N ;
+fun habitué_N : N ;
+fun hacek_N : N ;
+fun hacienda_N : N ;
+fun hack_N : N ;
+fun hack_V : V ;
+fun hackberry_N : N ;
+fun hacker_N : N ;
+fun hackle_N : N ;
+fun hackney_N : N ;
+fun hackneyed_A : A ;
+fun hacksaw_N : N ;
+fun hackwork_N : N ;
+fun hadal_A : A ;
+fun haddock_N : N ;
+fun hadji_N : N ;
+fun hadron_N : N ;
+fun hadrosaur_N : N ;
+fun haematite_N : N ;
+fun haemoglobin_N : N ;
+fun haemophilia_N : N ;
+fun haemophiliac_N : N ;
+fun haemophilic_A : A ;
+fun haemoproteid_N : N ;
+fun haemorrhage_N : N ;
+fun haemosporidian_N : N ;
+fun hafnium_N : N ;
+fun haft_N : N ;
+fun hag_N : N ;
+fun hag_ridden_A : A ;
+fun hagberry_N : N ;
+fun hagfish_N : N ;
+fun haggard_A : A ;
+fun haggis_N : N ;
+fun haggle_N : N ;
+fun haggle_V : V ;
+fun haggler_N : N ;
+fun hagiographer_N : N ;
+fun hagiography_N : N ;
+fun hagiolatry_N : N ;
+fun hagiology_N : N ;
+fun haha_N : N ;
+fun haik_N : N ;
+fun haiku_N : N ;
+fun hail_N : N ;
+fun hail_V : V ;
+fun hailstone_N : N ;
+fun hailstorm_N : N ;
+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 hairball_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 hairlessness_N : N ;
+fun hairlike_A : A ;
+fun hairline_N : N ;
+fun hairnet_N : N ;
+fun hairpiece_N : N ;
+fun hairpin_N : N ;
+fun hairsplitter_N : N ;
+fun hairsplitting_A : A ;
+fun hairsplitting_N : N ;
+fun hairspring_N : N ;
+fun hairstreak_N : N ;
+fun hairstyle_N : N ;
+fun hairstylist_N : N ;
+fun hairweaving_N : N ;
+fun hairy_A : A ;
+fun haitian_A : A ;
+fun haitian_N : N ;
+fun hajj_N : N ;
+fun hajji_N : N ;
+fun hake_N : N ;
+fun hakim_N : N ;
+fun halal_A : A ;
+fun halal_N : N ;
+fun halberd_N : N ;
+fun halberdier_N : N ;
+fun halcyon_A : A ;
+fun halcyon_N : N ;
+fun hale_A : A ;
+fun haler_N : N ;
+fun half_A : A ;
+fun half_Adv : Adv ;
+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 halfbeak_N : N ;
+fun halfhearted_A : A ;
+fun halfpenny_N : N ;
+fun halfpennyworth_N : N ;
+fun halftime_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 halide_N : N ;
+fun halite_N : N ;
+fun halitosis_N : N ;
+fun halitus_N : N ;
+fun hall_N : N ;
+fun hall_stand_N : N ;
+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_V : V ;
+fun hallowe'en_N : N ;
+fun hallstand_N : N ;
+fun hallucination_N : N ;
+fun hallucinatory_A : A ;
+fun hallucinogen_N : N ;
+fun hallucinogenic_A : A ;
+fun hallucinosis_N : N ;
+fun hallway_N : N ;
+fun halma_N : N ;
+fun halo_N : N ;
+fun halobacteria_N : N ;
+fun halocarbon_N : N ;
+fun haloform_N : N ;
+fun halogen_N : N ;
+fun halogeton_N : N ;
+fun halon_N : N ;
+fun haloperidol_N : N ;
+fun halophile_N : N ;
+fun halophyte_N : N ;
+fun halothane_N : N ;
+fun halt_A : A ;
+fun halt_N : N ;
+fun halt_V : V ;
+fun halter_N : N ;
+fun haltingly_Adv : Adv ;
+fun halve_V : V ;
+fun halyard_N : N ;
+fun ham_N : N ;
+fun ham_V : V ;
+fun ham_fisted_A : A ;
+fun ham_handed_A : A ;
+fun hamadryad_N : N ;
+fun hamartoma_N : N ;
+fun hamate_N : N ;
+fun hamburger_N : N ;
+fun hame_N : N ;
+fun hamelia_N : N ;
+fun hamlet_N : N ;
+fun hammer_N : N ;
+fun hammer_V : V ;
+fun hammerhead_N : N ;
+fun hammerlock_N : N ;
+fun hammertoe_N : N ;
+fun hamming_N : N ;
+fun hammock_N : N ;
+fun hammy_A : A ;
+fun hamper_N : N ;
+fun hamper_V : V ;
+fun hamster_N : N ;
+fun hamstring_N : N ;
+fun hamstring_V : V ;
+fun hand_N : N ;
+fun hand_V : V ;
+fun hand_barrow_N : N ;
+fun hand_carry_V : V ;
+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 handball_N : N ;
+fun handbarrow_N : N ;
+fun handbell_N : N ;
+fun handbill_N : N ;
+fun handbook_N : N ;
+fun handbow_N : N ;
+fun handbrake_N : N ;
+fun handbreadth_N : N ;
+fun handcar_N : N ;
+fun handcart_N : N ;
+fun handclap_N : N ;
+fun handcuff_N : N ;
+fun handcuff_V : V ;
+fun handedness_N : N ;
+fun handful_N : N ;
+fun handhold_N : N ;
+fun handicap_N : N ;
+fun handicap_V : V ;
+fun handicraft_N : N ;
+fun handiness_N : N ;
+fun handiwork_N : N ;
+fun handkerchief_N : N ;
+fun handle_N : N ;
+fun handle_V : V ;
+fun handlebar_N : N ;
+fun handleless_A : A ;
+fun handler_N : N ;
+fun handless_A : A ;
+fun handline_N : N ;
+fun handling_N : N ;
+fun handloom_N : N ;
+fun handmade_A : A ;
+fun handmaid_N : N ;
+fun handoff_N : N ;
+fun handout_N : N ;
+fun handover_N : N ;
+fun handrail_N : N ;
+fun handrest_N : N ;
+fun hands_N : N ;
+fun handsaw_N : N ;
+fun handset_N : N ;
+fun handsewn_A : A ;
+fun handshake_N : N ;
+fun handshaking_N : N ;
+fun handsome_A : A ;
+fun handsomeness_N : N ;
+fun handspike_N : N ;
+fun handspring_N : N ;
+fun handstamp_N : N ;
+fun handstand_N : N ;
+fun handwear_N : N ;
+fun handwheel_N : N ;
+fun handwork_N : N ;
+fun handwriting_N : N ;
+fun handwritten_A : A ;
+fun handy_A : A ;
+fun handyman_N : N ;
+fun hang_N : N ;
+fun hang_hanged_V : V ;
+fun hang_hung_V : V ;
+fun hang_up_N : N ;
+fun hangar_N : N ;
+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 hansard_N : N ;
+fun hansom_N : N ;
+fun hao_N : N ;
+fun hap_N : N ;
+fun hap_V : V ;
+fun haphazard_A : A ;
+fun haphazard_Adv : Adv ;
+fun hapless_A : A ;
+fun haploid_A : A ;
+fun haploid_N : N ;
+fun haploidy_N : N ;
+fun haplosporidian_N : N ;
+fun haplotype_N : N ;
+fun haply_Adv : Adv ;
+fun happen_V : V ;
+fun happening_N : N ;
+fun happiness_N : N ;
+fun happy_A : A ;
+fun happy_go_lucky_A : A ;
+fun haptic_A : A ;
+fun haptoglobin_N : N ;
+fun hara_kiri_N : N ;
+fun harakiri_N : N ;
+fun harangue_N : N ;
+fun harangue_V : V ;
+fun haranguer_N : N ;
+fun harass_V : V ;
+fun harasser_N : N ;
+fun harassment_N : N ;
+fun harbinger_N : N ;
+fun harbour_N : N ;
+fun harbour_V : V ;
+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 hardbake_N : N ;
+fun hardball_N : N ;
+fun hardboard_N : N ;
+fun hardbound_A : A ;
+fun hardcover_N : N ;
+fun hardcovered_A : A ;
+fun harden_V : V ;
+fun hardening_N : N ;
+fun hardheaded_A : A ;
+fun hardhearted_A : A ;
+fun hardhitting_A : A ;
+fun hardihood_N : N ;
+fun hardiness_N : N ;
+fun hardinggrass_N : N ;
+fun hardliner_N : N ;
+fun hardness_N : N ;
+fun hardscrabble_A : A ;
+fun hardship_N : N ;
+fun hardtack_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 hark_V : V ;
+fun harlequin_N : N ;
+fun harlequinade_N : N ;
+fun harlot_N : N ;
+fun harm_N : N ;
+fun harm_V : V ;
+fun harmattan_N : N ;
+fun harmful_A : A ;
+fun harmfulness_N : N ;
+fun harmless_A : A ;
+fun harmonic_A : A ;
+fun harmonic_N : N ;
+fun harmonica_N : N ;
+fun harmonically_Adv : Adv ;
+fun harmonics_N : N ;
+fun harmonious_A : A ;
+fun harmonium_N : N ;
+fun harmonizable_A : A ;
+fun harmonization_N : N ;
+fun harmonize_V : V ;
+fun harmonizer_N : N ;
+fun harmony_N : N ;
+fun harness_N : N ;
+fun harness_V : V ;
+fun harp_N : N ;
+fun harp_V : V ;
+fun harper_N : N ;
+fun harpist_N : N ;
+fun harpoon_N : N ;
+fun harpoon_V : V ;
+fun harpooner_N : N ;
+fun harpsichord_N : N ;
+fun harpsichordist_N : N ;
+fun harpulla_N : N ;
+fun harpullia_N : N ;
+fun harpy_N : N ;
+fun harridan_N : N ;
+fun harrier_N : N ;
+fun harrow_N : N ;
+fun harrow_V : V ;
+fun harry_V : V ;
+fun harsh_A : A ;
+fun harshness_N : N ;
+fun hart_N : N ;
+fun hartebeest_N : N ;
+fun harum_scarum_A : A ;
+fun harum_scarum_N : N ;
+fun harvest_N : N ;
+fun harvest_V : V ;
+fun harvester_N : N ;
+fun harvestfish_N : N ;
+fun harvestman_N : N ;
+fun has_been_N : N ;
+fun hash_N : N ;
+fun hash_V : V ;
+fun hashish_N : N ;
+fun haslet_N : N ;
+fun hasp_N : N ;
+fun hassium_N : N ;
+fun hassle_N : N ;
+fun hassle_V : V ;
+fun hassock_N : N ;
+fun hastate_A : A ;
+fun haste_N : N ;
+fun hasten_V : V ;
+fun hastiness_N : N ;
+fun hasty_A : A ;
+fun hat_N : N ;
+fun hatband_N : N ;
+fun hatbox_N : N ;
+fun hatch_N : N ;
+fun hatch_V : V ;
+fun hatchback_N : N ;
+fun hatchel_N : N ;
+fun hatchery_N : N ;
+fun hatchet_N : N ;
+fun hatching_N : N ;
+fun hatchling_N : N ;
+fun hatchway_N : N ;
+fun hate_N : N ;
+fun hate_V : V ;
+fun hateful_A : A ;
+fun hatefulness_N : N ;
+fun hatemonger_N : N ;
+fun hater_N : N ;
+fun hatful_N : N ;
+fun hatless_A : A ;
+fun hatmaker_N : N ;
+fun hatpin_N : N ;
+fun hatred_N : N ;
+fun hatted_A : A ;
+fun hatter_N : N ;
+fun hauberk_N : N ;
+fun haughtiness_N : N ;
+fun haughty_A : A ;
+fun haul_N : N ;
+fun haul_V : V ;
+fun haulage_N : N ;
+fun hauler_N : N ;
+fun haulier_N : N ;
+fun hauling_N : N ;
+fun haulm_N : N ;
+fun haunch_N : N ;
+fun haunt_N : N ;
+fun haunt_V : V ;
+fun haunting_A : A ;
+fun hausmannite_N : N ;
+fun haustorium_N : N ;
+fun hautboy_N : N ;
+fun hauteur_N : N ;
+fun havana_N : N ;
+fun have_V : V ;
+fun havelock_N : N ;
+fun haven_N : N ;
+fun haversack_N : N ;
+fun havoc_N : N ;
+fun haw_N : N ;
+fun haw_V : V ;
+fun haw_haw_N : N ;
+fun hawala_N : N ;
+fun hawfinch_N : N ;
+fun hawk_N : N ;
+fun hawk_V : V ;
+fun hawk_eyed_A : A ;
+fun hawkbit_N : N ;
+fun hawker_N : N ;
+fun hawkishness_N : N ;
+fun hawkmoth_N : N ;
+fun hawkweed_N : N ;
+fun hawse_N : N ;
+fun hawser_N : N ;
+fun hawthorn_N : N ;
+fun hay_N : N ;
+fun haycock_N : N ;
+fun hayfield_N : N ;
+fun hayfork_N : N ;
+fun haying_N : N ;
+fun hayloft_N : N ;
+fun haymaker_N : N ;
+fun haymaking_N : N ;
+fun haymow_N : N ;
+fun hayrack_N : N ;
+fun hayrick_N : N ;
+fun haystack_N : N ;
+fun haywire_A : A ;
+fun haywire_N : N ;
+fun hazard_N : N ;
+fun hazard_V : V ;
+fun hazardous_A : A ;
+fun hazardousness_N : N ;
+fun haze_N : N ;
+fun haze_V : V ;
+fun hazel_A : A ;
+fun hazel_N : N ;
+fun hazelnut_N : N ;
+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_hunter_N : N ;
+fun head_on_A : A ;
+fun head_on_Adv : Adv ;
+fun headache_N : N ;
+fun headband_N : N ;
+fun headboard_N : N ;
+fun headcheese_N : N ;
+fun headdress_N : N ;
+fun header_N : N ;
+fun headfast_N : N ;
+fun headfirst_A : A ;
+fun headful_N : N ;
+fun headgear_N : N ;
+fun headhunter_N : N ;
+fun heading_N : N ;
+fun headlamp_N : N ;
+fun headland_N : N ;
+fun headless_A : A ;
+fun headlight_N : N ;
+fun headlike_A : A ;
+fun headline_N : N ;
+fun headliner_N : N ;
+fun headlinese_N : N ;
+fun headlock_N : N ;
+fun headlong_A : A ;
+fun headlong_Adv : Adv ;
+fun headman_N : N ;
+fun headmaster_N : N ;
+fun headmastership_N : N ;
+fun headmistress_N : N ;
+fun headmistressship_N : N ;
+fun headpiece_N : N ;
+fun headpin_N : N ;
+fun headquarter_N : N ;
+fun headrace_N : N ;
+fun headrest_N : N ;
+fun headroom_N : N ;
+fun headsail_N : N ;
+fun headscarf_N : N ;
+fun headset_N : N ;
+fun headshake_N : N ;
+fun headship_N : N ;
+fun headshot_N : N ;
+fun headsman_N : N ;
+fun headspace_N : N ;
+fun headstall_N : N ;
+fun headstand_N : N ;
+fun headstock_N : N ;
+fun headstone_N : N ;
+fun headstream_N : N ;
+fun headstrong_A : A ;
+fun headwater_N : N ;
+fun headway_N : N ;
+fun headwind_N : N ;
+fun headword_N : N ;
+fun heady_A : A ;
+fun heal_V : V ;
+fun healer_N : N ;
+fun healing_N : N ;
+fun health_N : N ;
+fun healthcare_N : N ;
+fun healthful_A : A ;
+fun healthfulness_N : N ;
+fun healthy_A : A ;
+fun heap_N : N ;
+fun heap_V : V ;
+fun heaps_Adv : Adv ;
+fun hear_V : V ;
+fun hearer_N : N ;
+fun hearing_N : N ;
+fun hearing_aid_N : N ;
+fun hearken_V : V ;
+fun hearsay_A : A ;
+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 heartbreaker_N : N ;
+fun heartbreaking_A : A ;
+fun heartbroken_A : A ;
+fun heartburn_N : N ;
+fun heartburning_N : N ;
+fun hearted_A : A ;
+fun hearten_V : V ;
+fun heartening_A : A ;
+fun heartfelt_A : A ;
+fun hearth_N : N ;
+fun hearthrug_N : N ;
+fun hearthstone_N : N ;
+fun heartiness_N : N ;
+fun heartland_N : N ;
+fun heartleaf_N : N ;
+fun heartless_A : A ;
+fun heartlessness_N : N ;
+fun heartrot_N : N ;
+fun hearts_N : N ;
+fun heartseed_N : N ;
+fun heartsick_A : A ;
+fun heartstrings_N : N ;
+fun heartthrob_N : N ;
+fun heartwarming_A : A ;
+fun heartwood_N : N ;
+fun hearty_A : A ;
+fun heat_N : N ;
+fun heat_V : V ;
+fun heat_flash_N : N ;
+fun heatable_A : A ;
+fun heated_A : A ;
+fun heater_N : N ;
+fun heath_N : N ;
+fun heathen_A : A ;
+fun heathen_N : N ;
+fun heathenish_A : A ;
+fun heather_N : N ;
+fun heather_mixture_N : N ;
+fun heathlike_A : A ;
+fun heating_N : N ;
+fun heatless_A : A ;
+fun heatspot_N : N ;
+fun heatstroke_N : N ;
+fun heatwave_N : N ;
+fun heaume_N : N ;
+fun heave_N : N ;
+fun heave_V : V ;
+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 heaver_N : N ;
+fun heaves_N : N ;
+fun heaviness_N : N ;
+fun heavy_A : A ;
+fun heavy_Adv : Adv ;
+fun heavy_N : N ;
+fun heavy_handed_A : A ;
+fun heavy_hearted_A : A ;
+fun heavy_laden_A : A ;
+fun heavyhearted_A : A ;
+fun heavyheartedness_N : N ;
+fun heavyweight_N : N ;
+fun hebdomadal_A : A ;
+fun hebephrenia_N : N ;
+fun hebephrenic_A : A ;
+fun hebetude_N : N ;
+fun hebraic_A : A ;
+fun hebrew_A : A ;
+fun hebrew_N : N ;
+fun hecatomb_N : N ;
+fun heck_N : N ;
+fun heckelphone_N : N ;
+fun heckle_V : V ;
+fun heckler_N : N ;
+fun heckling_N : N ;
+fun hectare_N : N ;
+fun hectic_A : A ;
+fun hectogram_N : N ;
+fun hectograph_N : N ;
+fun hectoliter_N : N ;
+fun hectometer_N : N ;
+fun hector_V : V ;
+fun hedge_N : N ;
+fun hedge_V : V ;
+fun hedge_sparrow_N : N ;
+fun hedgehog_N : N ;
+fun hedgehop_V : V ;
+fun hedger_N : N ;
+fun hedgerow_N : N ;
+fun hedonic_A : A ;
+fun hedonism_N : N ;
+fun hedonist_N : N ;
+fun hedonistic_A : A ;
+fun heed_N : N ;
+fun heed_V : V ;
+fun heedful_A : A ;
+fun heedless_A : A ;
+fun heedlessness_N : N ;
+fun heehaw_N : N ;
+fun heel_N : N ;
+fun heel_V : V ;
+fun heelbone_N : N ;
+fun heft_N : N ;
+fun hefty_A : A ;
+fun hegari_N : N ;
+fun hegemon_N : N ;
+fun hegemony_N : N ;
+fun hegira_N : N ;
+fun heifer_N : N ;
+fun height_N : N ;
+fun heighten_V : V ;
+fun heinous_A : A ;
+fun heinousness_N : N ;
+fun heir_N : N ;
+fun heiress_N : N ;
+fun heirloom_N : N ;
+fun heist_N : N ;
+fun hejira_N : N ;
+fun heliacal_A : A ;
+fun helianthemum_N : N ;
+fun helicon_N : N ;
+fun helicopter_N : N ;
+fun heliocentric_A : A ;
+fun heliogram_N : N ;
+fun heliograph_N : N ;
+fun heliograph_V : V ;
+fun heliolatry_N : N ;
+fun heliometer_N : N ;
+fun heliopause_N : N ;
+fun heliophila_N : N ;
+fun heliopsis_N : N ;
+fun heliosphere_N : N ;
+fun heliotherapy_N : N ;
+fun heliotrope_N : N ;
+fun heliotropism_N : N ;
+fun heliozoan_N : N ;
+fun heliport_N : N ;
+fun helium_N : N ;
+fun helix_N : N ;
+fun hell_N : N ;
+fun hellbender_N : N ;
+fun hellcat_N : N ;
+fun hellebore_N : N ;
+fun helleborine_N : N ;
+fun hellene_N : N ;
+fun hellenic_A : A ;
+fun hellfire_N : N ;
+fun hellgrammiate_N : N ;
+fun hellhound_N : N ;
+fun hellion_N : N ;
+fun hellish_A : A ;
+fun helm_N : N ;
+fun helmet_N : N ;
+fun helmeted_A : A ;
+fun helmetflower_N : N ;
+fun helminth_N : N ;
+fun helminthiasis_N : N ;
+fun helmsman_N : N ;
+fun helot_N : N ;
+fun help_N : N ;
+fun help_V : V ;
+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 helter_skelter_Adv : Adv ;
+fun helter_skelter_N : N ;
+fun helve_N : N ;
+fun helvella_N : N ;
+fun hem_N : N ;
+fun hem_V : V ;
+fun hemagglutination_N : N ;
+fun hemal_A : A ;
+fun hemangioma_N : N ;
+fun hematemesis_N : N ;
+fun hematinic_N : N ;
+fun hematite_N : N ;
+fun hematocele_N : N ;
+fun hematochezia_N : N ;
+fun hematochrome_N : N ;
+fun hematocolpometra_N : N ;
+fun hematocolpos_N : N ;
+fun hematocrit_N : N ;
+fun hematocytopenia_N : N ;
+fun hematocyturia_N : N ;
+fun hematologic_A : A ;
+fun hematologist_N : N ;
+fun hematology_N : N ;
+fun hematoma_N : N ;
+fun hematopoiesis_N : N ;
+fun hematopoietic_A : A ;
+fun hematuria_N : N ;
+fun heme_N : N ;
+fun hemeralopia_N : N ;
+fun hemiacetal_N : N ;
+fun hemianopia_N : N ;
+fun hemic_A : A ;
+fun hemiepiphyte_N : N ;
+fun hemimetabolous_A : A ;
+fun hemimetamorphosis_N : N ;
+fun hemimorphite_N : N ;
+fun hemin_N : N ;
+fun hemiparasite_N : N ;
+fun hemiparasitic_A : A ;
+fun hemiplegia_N : N ;
+fun hemiplegic_N : N ;
+fun hemisphere_N : N ;
+fun hemispheric_A : A ;
+fun hemispherical_A : A ;
+fun hemline_N : N ;
+fun hemlock_N : N ;
+fun hemming_stitch_N : N ;
+fun hemochromatosis_N : N ;
+fun hemodialysis_N : N ;
+fun hemodynamic_A : A ;
+fun hemodynamics_N : N ;
+fun hemoglobin_N : N ;
+fun hemoglobinemia_N : N ;
+fun hemoglobinopathy_N : N ;
+fun hemoglobinuria_N : N ;
+fun hemolysin_N : N ;
+fun hemolysis_N : N ;
+fun hemolytic_A : A ;
+fun hemophilia_N : N ;
+fun hemophiliac_N : N ;
+fun hemoprotein_N : N ;
+fun hemoptysis_N : N ;
+fun hemorrhage_N : N ;
+fun hemorrhage_V : V ;
+fun hemorrhagic_A : A ;
+fun hemorrhoid_N : N ;
+fun hemorrhoidectomy_N : N ;
+fun hemosiderin_N : N ;
+fun hemosiderosis_N : N ;
+fun hemostasis_N : N ;
+fun hemostat_N : N ;
+fun hemothorax_N : N ;
+fun hemp_N : N ;
+fun hempen_A : A ;
+fun hemstitch_N : N ;
+fun hemstitch_V : V ;
+fun hen_N : N ;
+fun hen_party_N : N ;
+fun henbane_N : N ;
+fun henbit_N : N ;
+fun hence_Adv : Adv ;
+fun henceforth_Adv : Adv ;
+fun henceforward_Adv : Adv ;
+fun henchman_N : N ;
+fun hencoop_N : N ;
+fun hendiadys_N : N ;
+fun henhouse_N : N ;
+fun henna_N : N ;
+fun hennaed_A : A ;
+fun henpecked_A : A ;
+fun henroost_N : N ;
+fun henry_N : N ;
+fun hep_A : A ;
+fun hepadnavirus_N : N ;
+fun heparin_N : N ;
+fun hepatic_A : A ;
+fun hepatica_N : N ;
+fun hepatitis_N : N ;
+fun hepatoma_N : N ;
+fun hepatomegaly_N : N ;
+fun hepatotoxic_A : A ;
+fun hepatotoxin_N : N ;
+fun heptagon_N : N ;
+fun heptane_N : N ;
+fun herald_N : N ;
+fun herald_V : V ;
+fun heraldic_A : A ;
+fun heraldry_N : N ;
+fun herb_N : N ;
+fun herbaceous_A : A ;
+fun herbage_N : N ;
+fun herbal_A : A ;
+fun herbalist_N : N ;
+fun herbarium_N : N ;
+fun herbicide_N : N ;
+fun herbivore_N : N ;
+fun herbivorous_A : A ;
+fun herculean_A : A ;
+fun herd_N : N ;
+fun herd_V : V ;
+fun herder_N : N ;
+fun herdsman_N : N ;
+fun here_Adv : Adv ;
+fun hereabout_Adv : Adv ;
+fun hereabouts_Adv : Adv ;
+fun hereafter_Adv : Adv ;
+fun hereafter_N : N ;
+fun hereby_Adv : Adv ;
+fun hereditament_N : N ;
+fun hereditarianism_N : N ;
+fun hereditary_A : A ;
+fun heredity_N : N ;
+fun herein_Adv : Adv ;
+fun hereinafter_Adv : Adv ;
+fun hereinbefore_Adv : Adv ;
+fun hereness_N : N ;
+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 hereunder_Adv : Adv ;
+fun hereupon_Adv : Adv ;
+fun herewith_Adv : Adv ;
+fun heritable_A : A ;
+fun heritage_N : N ;
+fun herm_N : N ;
+fun hermaphrodite_N : N ;
+fun hermaphroditic_A : A ;
+fun hermaphroditism_N : N ;
+fun hermeneutic_A : A ;
+fun hermeneutics_N : N ;
+fun hermetic_A : A ;
+fun hermetically_Adv : Adv ;
+fun hermit_N : N ;
+fun hermitage_N : N ;
+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 herpangia_N : N ;
+fun herpes_N : N ;
+fun herpetologist_N : N ;
+fun herpetology_N : N ;
+fun herr_N : N ;
+fun herrerasaur_N : N ;
+fun herring_N : N ;
+fun herringbone_N : N ;
+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 heterocercal_A : A ;
+fun heterocyclic_A : A ;
+fun heterodactyl_A : A ;
+fun heterodox_A : A ;
+fun heterodoxy_N : N ;
+fun heterodyne_A : A ;
+fun heteroecious_A : A ;
+fun heterogeneity_N : N ;
+fun heterogeneous_A : A ;
+fun heterogenous_A : A ;
+fun heterograft_N : N ;
+fun heteroicous_A : A ;
+fun heterologous_A : A ;
+fun heterology_N : N ;
+fun heterometabolism_N : N ;
+fun heterometabolous_A : A ;
+fun heteronym_N : N ;
+fun heteroploid_N : N ;
+fun heteroploidy_N : N ;
+fun heterosexism_N : N ;
+fun heterosexual_A : A ;
+fun heterosexual_N : N ;
+fun heterosexuality_N : N ;
+fun heterosis_N : N ;
+fun heterosporous_A : A ;
+fun heterospory_N : N ;
+fun heterostracan_N : N ;
+fun heterotroph_N : N ;
+fun heterotrophic_A : A ;
+fun heterozygosity_N : N ;
+fun heterozygote_N : N ;
+fun heterozygous_A : A ;
+fun heth_N : N ;
+fun heulandite_N : N ;
+fun heuristic_A : A ;
+fun heuristic_N : N ;
+fun heuristics_N : N ;
+fun hew_V : V ;
+fun hewer_N : N ;
+fun hewn_A : A ;
+fun hex_N : N ;
+fun hexachlorophene_N : N ;
+fun hexadecimal_A : A ;
+fun hexagon_N : N ;
+fun hexagonal_A : A ;
+fun hexagram_N : N ;
+fun hexahedron_N : N ;
+fun hexameter_N : N ;
+fun hexane_N : N ;
+fun hexangular_A : A ;
+fun hexapod_N : N ;
+fun hexed_A : A ;
+fun hexestrol_N : N ;
+fun hexose_N : N ;
+fun heyday_N : N ;
+fun hi_fi_A : A ;
+fun hi_fi_N : N ;
+fun hiatus_N : N ;
+fun hibachi_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 hickey_N : N ;
+fun hickory_N : N ;
+fun hiddenite_N : N ;
+fun hiddenness_N : N ;
+fun hide_N : N ;
+fun hide_V : V ;
+fun hide_and_seek_N : N ;
+fun hide_out_N : N ;
+fun hideaway_N : N ;
+fun hidebound_A : A ;
+fun hideous_A : A ;
+fun hideousness_N : N ;
+fun hideout_N : N ;
+fun hiding_N : N ;
+fun hiding_place_N : N ;
+fun hidrotic_A : A ;
+fun hie_V : V ;
+fun hierarch_N : N ;
+fun hierarchic_A : A ;
+fun hierarchical_A : A ;
+fun hierarchy_N : N ;
+fun hieratic_A : A ;
+fun hieratic_N : N ;
+fun hierocracy_N : N ;
+fun hieroglyph_N : N ;
+fun hieroglyphic_A : A ;
+fun hieroglyphically_Adv : Adv ;
+fun hieroglyphics_N : N ;
+fun higgledy_piggledy_A : A ;
+fun higgledy_piggledy_Adv : Adv ;
+fun high_A : A ;
+fun high_Adv : Adv ;
+fun high_N : N ;
+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_spirited_A : A ;
+fun high_tension_A : A ;
+fun high_toned_A : A ;
+fun high_up_N : N ;
+fun highball_N : N ;
+fun highbinder_N : N ;
+fun highboard_N : N ;
+fun highborn_A : A ;
+fun highboy_N : N ;
+fun highbrow_A : A ;
+fun highbrow_N : N ;
+fun highchair_N : N ;
+fun highflier_N : N ;
+fun highflown_A : A ;
+fun highflyer_N : N ;
+fun highflying_A : A ;
+fun highjack_N : N ;
+fun highjack_V : V ;
+fun highjacker_N : N ;
+fun highjacking_N : N ;
+fun highland_N : N ;
+fun highlander_N : N ;
+fun highlight_N : N ;
+fun highlight_V : V ;
+fun highlighter_N : N ;
+fun highness_N : N ;
+fun highroad_N : N ;
+fun highway_N : N ;
+fun highwayman_N : N ;
+fun hijab_N : N ;
+fun hijack_N : N ;
+fun hijack_V : V ;
+fun hijacker_N : N ;
+fun hike_N : N ;
+fun hike_V : V ;
+fun hiker_N : N ;
+fun hilar_A : A ;
+fun hilarious_A : A ;
+fun hilarity_N : N ;
+fun hill_N : N ;
+fun hill_billy_N : N ;
+fun hillbilly_N : N ;
+fun hilliness_N : N ;
+fun hillock_N : N ;
+fun hillside_N : N ;
+fun hilltop_N : N ;
+fun hilly_A : A ;
+fun hilt_N : N ;
+fun hilum_N : N ;
+fun hilus_N : N ;
+fun hin_N : N ;
+fun hind_A : A ;
+fun hind_N : N ;
+fun hindbrain_N : N ;
+fun hinder_V : V ;
+fun hindfoot_N : N ;
+fun hindgut_N : N ;
+fun hindi_A : A ;
+fun hindi_N : N ;
+fun hindmost_A : A ;
+fun hindquarter_N : N ;
+fun hindquarters_N : N ;
+fun hindrance_N : N ;
+fun hindshank_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 hinny_N : N ;
+fun hint_N : N ;
+fun hint_V : V ;
+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 hipbone_N : N ;
+fun hipflask_N : N ;
+fun hiplength_A : A ;
+fun hipless_A : A ;
+fun hipline_N : N ;
+fun hippeastrum_N : N ;
+fun hipped_A : A ;
+fun hippie_N : N ;
+fun hippo_N : N ;
+fun hippocampus_N : N ;
+fun hippocratic_A : A ;
+fun hippodrome_N : N ;
+fun hippopotamus_N : N ;
+fun hippy_N : N ;
+fun hircine_A : A ;
+fun hire_N : N ;
+fun hire_V : V ;
+fun hireling_N : N ;
+fun hirsute_A : A ;
+fun hirsuteness_N : N ;
+fun hispid_A : A ;
+fun hiss_N : N ;
+fun hiss_V : V ;
+fun hisser_N : N ;
+fun histaminase_N : N ;
+fun histamine_N : N ;
+fun histidine_N : N ;
+fun histiocyte_N : N ;
+fun histiocytosis_N : N ;
+fun histocompatibility_N : N ;
+fun histogram_N : N ;
+fun histoincompatibility_N : N ;
+fun histological_A : A ;
+fun histologist_N : N ;
+fun histology_N : N ;
+fun histone_N : N ;
+fun historian_N : N ;
+fun historic_A : A ;
+fun historical_A : A ;
+fun historicalness_N : N ;
+fun historicism_N : N ;
+fun historicize_V : V ;
+fun historiography_N : N ;
+fun history_N : N ;
+fun histrionic_A : A ;
+fun histrionics_N : N ;
+fun hit_N : N ;
+fun hit_V : V ;
+fun hit_and_run_A : A ;
+fun hitch_N : N ;
+fun hitch_V : V ;
+fun hitchhike_V : V ;
+fun hitchhiker_N : N ;
+fun hitchrack_N : N ;
+fun hither_Adv : Adv ;
+fun hitherto_Adv : Adv ;
+fun hitless_A : A ;
+fun hitter_N : N ;
+fun hive_N : N ;
+fun hive_V : V ;
+fun hoar_A : A ;
+fun hoard_N : N ;
+fun hoard_V : V ;
+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 hoatzin_N : N ;
+fun hoax_N : N ;
+fun hoax_V : V ;
+fun hoaxer_N : N ;
+fun hob_N : N ;
+fun hobbit_N : N ;
+fun hobble_N : N ;
+fun hobble_V : V ;
+fun hobble_skirt_N : N ;
+fun hobbledehoy_N : N ;
+fun hobbler_N : N ;
+fun hobby_N : N ;
+fun hobbyhorse_N : N ;
+fun hobbyism_N : N ;
+fun hobbyist_N : N ;
+fun hobgoblin_N : N ;
+fun hobnail_N : N ;
+fun hobnailed_A : A ;
+fun hobnob_V : V ;
+fun hobo_N : N ;
+fun hock_N : N ;
+fun hock_V : V ;
+fun hockey_N : N ;
+fun hocus_pocus_N : N ;
+fun hod_N : N ;
+fun hodgepodge_N : N ;
+fun hodoscope_N : N ;
+fun hoe_N : N ;
+fun hoe_V : V ;
+fun hoecake_N : N ;
+fun hog_N : N ;
+fun hog_V : V ;
+fun hogan_N : N ;
+fun hogback_N : N ;
+fun hogchoker_N : N ;
+fun hogfish_N : N ;
+fun hoggish_A : A ;
+fun hogmanay_N : N ;
+fun hogshead_N : N ;
+fun hogwash_N : N ;
+fun hoist_N : N ;
+fun hoist_V : V ;
+fun hoister_N : N ;
+fun hoity_toity_A : A ;
+fun hold_N : N ;
+fun hold_V : V ;
+fun hold_up_N : N ;
+fun holdall_N : N ;
+fun holder_N : N ;
+fun holding_N : N ;
+fun holdout_N : N ;
+fun holdover_N : N ;
+fun holdup_N : N ;
+fun hole_N : N ;
+fun hole_V : V ;
+fun hole_and_corner_A : A ;
+fun holey_A : A ;
+fun holiday_N : N ;
+fun holiday_V : V ;
+fun holiday_maker_N : N ;
+fun holiness_N : N ;
+fun holism_N : N ;
+fun holistic_A : A ;
+fun hollandaise_N : N ;
+fun hollander_A : A ;
+fun hollander_N : N ;
+fun holler_V : V ;
+fun holloa_N : N ;
+fun hollow_A : A ;
+fun hollow_N : N ;
+fun hollow_V : V ;
+fun hollowness_N : N ;
+fun hollowware_N : N ;
+fun holly_N : N ;
+fun hollyhock_N : N ;
+fun holm_oak_N : N ;
+fun holmium_N : N ;
+fun holocaust_N : N ;
+fun holocephalan_N : N ;
+fun hologram_N : N ;
+fun holograph_N : N ;
+fun holographic_A : A ;
+fun holography_N : N ;
+fun holometabola_N : N ;
+fun holometabolic_A : A ;
+fun holometabolism_N : N ;
+fun holonym_N : N ;
+fun holonymy_N : N ;
+fun holophyte_N : N ;
+fun holophytic_A : A ;
+fun holozoic_A : A ;
+fun holster_N : N ;
+fun holy_A : A ;
+fun holy_N : N ;
+fun holystone_N : N ;
+fun holystone_V : V ;
+fun homage_N : N ;
+fun home_A : A ;
+fun home_Adv : Adv ;
+fun home_N : N ;
+fun home_V : V ;
+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 homebound_A : A ;
+fun homebound_N : N ;
+fun homeboy_N : N ;
+fun homebuilder_N : N ;
+fun homecoming_N : N ;
+fun homefolk_N : N ;
+fun homegirl_N : N ;
+fun homegrown_A : A ;
+fun homeland_N : N ;
+fun homeless_A : A ;
+fun homeless_N : N ;
+fun homelessness_N : N ;
+fun homelike_A : A ;
+fun homeliness_N : N ;
+fun homely_A : A ;
+fun homemade_A : A ;
+fun homemaking_N : N ;
+fun homeobox_N : N ;
+fun homeopath_N : N ;
+fun homeopathic_A : A ;
+fun homeopathy_N : N ;
+fun homeostasis_N : N ;
+fun homeostatic_A : A ;
+fun homeostatically_Adv : Adv ;
+fun homeotherm_N : N ;
+fun homeowner_N : N ;
+fun homer_N : N ;
+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 homestretch_N : N ;
+fun hometown_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 hominal_A : A ;
+fun homing_A : A ;
+fun hominian_A : A ;
+fun hominid_N : N ;
+fun hominine_A : A ;
+fun hominoid_N : N ;
+fun hominy_N : N ;
+fun homo_N : N ;
+fun homo_sapiens_N : N ;
+fun homocercal_A : A ;
+fun homocyclic_A : A ;
+fun homoeopath_N : N ;
+fun homoeopathy_N : N ;
+fun homoerotic_A : A ;
+fun homogenate_N : N ;
+fun homogeneity_N : N ;
+fun homogeneous_A : A ;
+fun homogenization_N : N ;
+fun homogenize_V : V ;
+fun homogeny_N : N ;
+fun homograft_N : N ;
+fun homograph_N : N ;
+fun homoiothermic_A : A ;
+fun homologic_A : A ;
+fun homologous_A : A ;
+fun homology_N : N ;
+fun homomorphism_N : N ;
+fun homonym_N : N ;
+fun homonymic_A : A ;
+fun homonymy_N : N ;
+fun homophobe_N : N ;
+fun homophobia_N : N ;
+fun homophobic_A : A ;
+fun homophone_N : N ;
+fun homophonic_A : A ;
+fun homophonous_A : A ;
+fun homophony_N : N ;
+fun homosexual_A : A ;
+fun homosexual_N : N ;
+fun homosexuality_N : N ;
+fun homosporous_A : A ;
+fun homospory_N : N ;
+fun homostylous_A : A ;
+fun homozygosity_N : N ;
+fun homozygote_N : N ;
+fun homozygous_A : A ;
+fun homunculus_N : N ;
+fun honduran_A : A ;
+fun honduran_N : N ;
+fun hone_N : N ;
+fun hone_V : V ;
+fun honest_A : A ;
+fun honesty_N : N ;
+fun honey_A : A ;
+fun honey_N : N ;
+fun honeybee_N : N ;
+fun honeycomb_N : N ;
+fun honeycomb_V : V ;
+fun honeycreeper_N : N ;
+fun honeydew_N : N ;
+fun honeyed_A : A ;
+fun honeyflower_N : N ;
+fun honeylike_A : A ;
+fun honeymoon_N : N ;
+fun honeymoon_V : V ;
+fun honeypot_N : N ;
+fun honeysuckle_N : N ;
+fun honk_N : N ;
+fun honk_V : V ;
+fun honker_N : N ;
+fun honkytonk_N : N ;
+fun honor_N : N ;
+fun honor_V : V ;
+fun honorable_A : A ;
+fun honorableness_N : N ;
+fun honorarium_N : N ;
+fun honorary_A : A ;
+fun honoree_N : N ;
+fun honorific_A : A ;
+fun honorific_N : N ;
+fun honoring_N : N ;
+fun honour_N : N ;
+fun honour_V : V ;
+fun honourable_A : A ;
+fun honourableness_N : N ;
+fun hooch_N : N ;
+fun hood_N : N ;
+fun hood_V : V ;
+fun hoodlum_N : N ;
+fun hoodoo_N : N ;
+fun hoodoo_V : V ;
+fun hoodwink_V : V ;
+fun hooey_N : N ;
+fun hoof_N : N ;
+fun hoofer_N : N ;
+fun hooflike_A : A ;
+fun hoofprint_N : N ;
+fun hook_N : N ;
+fun hook_V : V ;
+fun hook_nosed_A : A ;
+fun hook_up_N : N ;
+fun hookah_N : N ;
+fun hooker_N : N ;
+fun hooklike_A : A ;
+fun hooks_N : N ;
+fun hookup_N : N ;
+fun hookworm_N : N ;
+fun hooky_N : N ;
+fun hooligan_N : N ;
+fun hooliganism_N : N ;
+fun hoon_V : V ;
+fun hoop_N : N ;
+fun hoop_V : V ;
+fun hoop_la_N : N ;
+fun hoopla_N : N ;
+fun hoopoe_N : N ;
+fun hoopskirt_N : N ;
+fun hoosegow_N : N ;
+fun hoot_N : N ;
+fun hoot_V : V ;
+fun hooter_N : N ;
+fun hoover_N : N ;
+fun hoover_V : V ;
+fun hop_N : N ;
+fun hop_V : V ;
+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_V : V ;
+fun hopeful_A : A ;
+fun hopefulness_N : N ;
+fun hopeless_A : A ;
+fun hopelessness_N : N ;
+fun hoper_N : N ;
+fun hopped_up_A : A ;
+fun hopper_N : N ;
+fun hopsacking_N : N ;
+fun hopscotch_N : N ;
+fun hopscotch_V : V ;
+fun horary_A : A ;
+fun horde_N : N ;
+fun horehound_N : N ;
+fun horizon_N : N ;
+fun horizontal_A : A ;
+fun horizontal_N : N ;
+fun horizontality_N : N ;
+fun hormonal_A : A ;
+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 hornblende_N : N ;
+fun hornbook_N : N ;
+fun horned_A : A ;
+fun hornet_N : N ;
+fun hornfels_N : N ;
+fun horniness_N : N ;
+fun hornist_N : N ;
+fun hornless_A : A ;
+fun hornlike_A : A ;
+fun hornpipe_N : N ;
+fun hornwort_N : N ;
+fun horny_A : A ;
+fun horology_N : N ;
+fun horoscope_N : N ;
+fun horoscopy_N : N ;
+fun horrible_A : A ;
+fun horrid_A : A ;
+fun horridness_N : N ;
+fun horrific_A : A ;
+fun horrify_V : V ;
+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_V : V ;
+fun horse_chestnut_N : N ;
+fun horse_laugh_N : N ;
+fun horse_pond_N : N ;
+fun horse_sense_N : N ;
+fun horseback_Adv : Adv ;
+fun horseback_N : N ;
+fun horsebox_N : N ;
+fun horsecar_N : N ;
+fun horsecloth_N : N ;
+fun horseflesh_N : N ;
+fun horsefly_N : N ;
+fun horsehair_N : N ;
+fun horsehide_N : N ;
+fun horseleech_N : N ;
+fun horseman_N : N ;
+fun horsemanship_N : N ;
+fun horsemeat_N : N ;
+fun horsemint_N : N ;
+fun horseplay_N : N ;
+fun horsepond_N : N ;
+fun horsepower_N : N ;
+fun horserace_N : N ;
+fun horseracing_N : N ;
+fun horseradish_N : N ;
+fun horseshoe_N : N ;
+fun horseshow_N : N ;
+fun horsetail_N : N ;
+fun horseweed_N : N ;
+fun horsewhip_N : N ;
+fun horsewhip_V : V ;
+fun horsewhipping_N : N ;
+fun horsewoman_N : N ;
+fun horst_N : N ;
+fun horsy_A : A ;
+fun hortative_A : A ;
+fun hortensia_N : N ;
+fun horticultural_A : A ;
+fun horticulture_N : N ;
+fun horticulturist_N : N ;
+fun hosanna_N : N ;
+fun hose_N : N ;
+fun hose_V : V ;
+fun hosepipe_N : N ;
+fun hosier_N : N ;
+fun hosiery_N : N ;
+fun hospice_N : N ;
+fun hospitable_A : A ;
+fun hospitableness_N : N ;
+fun hospital_N : N ;
+fun hospitality_N : N ;
+fun hospitalization_N : N ;
+fun hospitalize_V : V ;
+fun host_N : N ;
+fun host_V : V ;
+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 hostile_N : N ;
+fun hostilities_N : N ;
+fun hostility_N : N ;
+fun hot_A : A ;
+fun hot_V : V ;
+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 hotbox_N : N ;
+fun hotchpotch_N : N ;
+fun hotdog_N : N ;
+fun hotel_N : N ;
+fun hotelier_N : N ;
+fun hotfoot_Adv : Adv ;
+fun hotfoot_N : N ;
+fun hotfoot_V : V ;
+fun hothead_N : N ;
+fun hotheaded_A : A ;
+fun hothouse_N : N ;
+fun hotness_N : N ;
+fun hotplate_N : N ;
+fun hotspur_N : N ;
+fun hottish_A : A ;
+fun hound_N : N ;
+fun hound_V : V ;
+fun hour_N : N ;
+fun hourglass_N : N ;
+fun houri_N : N ;
+fun hourlong_A : A ;
+fun hourly_A : A ;
+fun hourly_Adv : Adv ;
+fun hours_N : N ;
+fun house_N : N ;
+fun house_V : V ;
+fun house_party_N : N ;
+fun house_warming_N : N ;
+fun houseboat_N : N ;
+fun housebound_A : A ;
+fun housebreaker_N : N ;
+fun housebreaking_N : N ;
+fun housebroken_A : A ;
+fun housecleaning_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 houselights_N : N ;
+fun housemaid_N : N ;
+fun houseman_N : N ;
+fun housemaster_N : N ;
+fun housemate_N : N ;
+fun housemother_N : N ;
+fun houseplant_N : N ;
+fun houseproud_A : A ;
+fun houseroom_N : N ;
+fun housetop_N : N ;
+fun housetrained_A : A ;
+fun housewarming_N : N ;
+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 hovea_N : N ;
+fun hovel_N : N ;
+fun hover_V : V ;
+fun hovercraft_N : N ;
+fun how_d'ye_do_N : N ;
+fun howdah_N : N ;
+fun however_Adv : Adv ;
+fun howitzer_N : N ;
+fun howl_N : N ;
+fun howl_V : V ;
+fun howler_N : N ;
+fun hoya_N : N ;
+fun hoyden_N : N ;
+fun hoydenish_A : A ;
+fun hoydenism_N : N ;
+fun hp_N : N ;
+fun hryvnia_N : N ;
+fun huarache_N : N ;
+fun hub_N : N ;
+fun hubble_bubble_N : N ;
+fun hubbub_N : N ;
+fun hubby_N : N ;
+fun hubcap_N : N ;
+fun hubris_N : N ;
+fun huck_N : N ;
+fun huckaback_N : N ;
+fun huckleberry_N : N ;
+fun huckster_N : N ;
+fun huddle_N : N ;
+fun huddle_V : V ;
+fun huddler_N : N ;
+fun hudud_N : N ;
+fun hue_N : N ;
+fun hued_A : A ;
+fun hueless_A : A ;
+fun huff_N : N ;
+fun huff_V : V ;
+fun huffiness_N : N ;
+fun huffish_A : A ;
+fun huffy_A : A ;
+fun hug_N : N ;
+fun hug_V : V ;
+fun huge_A : A ;
+fun hugger_N : N ;
+fun hugger_mugger_A : A ;
+fun hugger_mugger_Adv : Adv ;
+fun hugger_mugger_N : N ;
+fun huguenot_N : N ;
+fun huisache_N : N ;
+fun huitre_N : N ;
+fun hula_N : N ;
+fun hulk_N : N ;
+fun hulking_A : A ;
+fun hull_N : N ;
+fun hull_V : V ;
+fun hullabaloo_N : N ;
+fun hum_N : N ;
+fun hum_V : V ;
+fun human_A : A ;
+fun human_N : N ;
+fun humane_A : A ;
+fun humaneness_N : N ;
+fun humanism_N : N ;
+fun humanist_A : A ;
+fun humanist_N : N ;
+fun humanistic_A : A ;
+fun humanitarian_A : A ;
+fun humanitarian_N : N ;
+fun humanitarianism_N : N ;
+fun humanity_N : N ;
+fun humanization_N : N ;
+fun humanize_V : V ;
+fun humankind_N : N ;
+fun humanness_N : N ;
+fun humate_N : N ;
+fun humble_A : A ;
+fun humble_V : V ;
+fun humbleness_N : N ;
+fun humbug_N : N ;
+fun humbug_V : V ;
+fun humdinger_N : N ;
+fun humdrum_A : A ;
+fun humectant_N : N ;
+fun humerus_N : N ;
+fun humic_A : A ;
+fun humid_A : A ;
+fun humidify_V : V ;
+fun humidity_N : N ;
+fun humification_N : N ;
+fun humified_A : A ;
+fun humiliate_V : V ;
+fun humiliatingly_Adv : Adv ;
+fun humiliation_N : N ;
+fun humility_N : N ;
+fun humin_N : N ;
+fun hummer_N : N ;
+fun humming_N : N ;
+fun humming_top_N : N ;
+fun hummingbird_N : N ;
+fun hummock_N : N ;
+fun hummus_N : N ;
+fun humongous_A : A ;
+fun humor_N : N ;
+fun humoral_A : A ;
+fun humorist_N : N ;
+fun humorless_A : A ;
+fun humorous_A : A ;
+fun humour_N : N ;
+fun humour_V : V ;
+fun humourist_N : N ;
+fun humourless_A : A ;
+fun hump_N : N ;
+fun hump_V : V ;
+fun humpback_N : N ;
+fun humpbacked_A : A ;
+fun humus_N : N ;
+fun hun_N : N ;
+fun hunch_N : N ;
+fun hunch_V : V ;
+fun hunchback_A : A ;
+fun hunchback_N : N ;
+fun hunchbacked_A : A ;
+fun hundredfold_Adv : Adv ;
+fun hundredweight_N : N ;
+fun hung_V : V ;
+fun hunger_N : N ;
+fun hunger_V : V ;
+fun hunger_march_N : N ;
+fun hunger_marcher_N : N ;
+fun hungry_A : A ;
+fun hunk_N : N ;
+fun hunker_V : V ;
+fun hunt_N : N ;
+fun hunt_V : V ;
+fun hunter_N : N ;
+fun hunting_N : N ;
+fun hunting_crop_N : N ;
+fun huntress_N : N ;
+fun huntsman_N : N ;
+fun hurdle_N : N ;
+fun hurdle_V : V ;
+fun hurdler_N : N ;
+fun hurdles_N : N ;
+fun hurdy_gurdy_N : N ;
+fun hurl_N : N ;
+fun hurl_V : V ;
+fun hurling_N : N ;
+fun hurly_burly_N : N ;
+fun hurrah_N : N ;
+fun hurrah_V : V ;
+fun hurricane_N : N ;
+fun hurried_A : A ;
+fun hurry_N : N ;
+fun hurry_V : V ;
+fun hurt_N : N ;
+fun hurt_V : V ;
+fun hurtful_A : A ;
+fun hurtle_V : V ;
+fun husband_N : N ;
+fun husband_V : V ;
+fun husbandly_A : A ;
+fun husbandman_N : N ;
+fun husbandry_N : N ;
+fun hush_N : N ;
+fun hush_V : V ;
+fun hush_hush_A : A ;
+fun hush_money_N : N ;
+fun husk_N : N ;
+fun husk_V : V ;
+fun huskiness_N : N ;
+fun husky_A : A ;
+fun husky_N : N ;
+fun hussar_N : N ;
+fun hussy_N : N ;
+fun hustings_N : N ;
+fun hustle_N : N ;
+fun hustle_V : V ;
+fun hustler_N : N ;
+fun hut_N : N ;
+fun hutch_N : N ;
+fun hutment_N : N ;
+fun hutted_A : A ;
+fun hyacinth_N : N ;
+fun hyaena_N : N ;
+fun hyaline_A : A ;
+fun hyaline_N : N ;
+fun hyalinization_N : N ;
+fun hyaloplasm_N : N ;
+fun hyaloplasmic_A : A ;
+fun hyaluronidase_N : N ;
+fun hybrid_A : A ;
+fun hybrid_N : N ;
+fun hybridization_N : N ;
+fun hybridize_V : V ;
+fun hybridoma_N : N ;
+fun hydantoin_N : N ;
+fun hydathode_N : N ;
+fun hydatid_N : N ;
+fun hydra_N : N ;
+fun hydralazine_N : N ;
+fun hydramnios_N : N ;
+fun hydrangea_N : N ;
+fun hydrant_N : N ;
+fun hydrarthrosis_N : N ;
+fun hydrate_N : N ;
+fun hydrate_V : V ;
+fun hydration_N : N ;
+fun hydraulic_A : A ;
+fun hydraulically_Adv : Adv ;
+fun hydraulics_N : N ;
+fun hydrazine_N : N ;
+fun hydrazoite_N : N ;
+fun hydremia_N : N ;
+fun hydric_A : A ;
+fun hydride_N : N ;
+fun hydrilla_N : N ;
+fun hydrocarbon_N : N ;
+fun hydrocele_N : N ;
+fun hydrocephalic_A : A ;
+fun hydrocephalus_N : N ;
+fun hydrochloric_A : A ;
+fun hydrochloride_N : N ;
+fun hydrochlorofluorocarbon_N : N ;
+fun hydrochlorothiazide_N : N ;
+fun hydrocolloid_N : N ;
+fun hydrocortisone_N : N ;
+fun hydrocracking_N : N ;
+fun hydrodynamic_A : A ;
+fun hydrodynamics_N : N ;
+fun hydroelectric_A : A ;
+fun hydroelectricity_N : N ;
+fun hydroflumethiazide_N : N ;
+fun hydrofluorocarbon_N : N ;
+fun hydrofoil_N : N ;
+fun hydrogel_N : N ;
+fun hydrogen_N : N ;
+fun hydrogenation_N : N ;
+fun hydrographic_A : A ;
+fun hydrography_N : N ;
+fun hydrokinetic_A : A ;
+fun hydrologist_N : N ;
+fun hydrology_N : N ;
+fun hydrolysate_N : N ;
+fun hydrolysis_N : N ;
+fun hydrolyzable_A : A ;
+fun hydromancer_N : N ;
+fun hydromancy_N : N ;
+fun hydromel_N : N ;
+fun hydrometer_N : N ;
+fun hydrometric_A : A ;
+fun hydrometry_N : N ;
+fun hydronephrosis_N : N ;
+fun hydropathic_A : A ;
+fun hydropathy_N : N ;
+fun hydrophilic_A : A ;
+fun hydrophobia_N : N ;
+fun hydrophobic_A : A ;
+fun hydrophobicity_N : N ;
+fun hydrophytic_A : A ;
+fun hydroplane_N : N ;
+fun hydroponics_N : N ;
+fun hydrosphere_N : N ;
+fun hydrostatic_A : A ;
+fun hydrostatics_N : N ;
+fun hydrothorax_N : N ;
+fun hydrous_A : A ;
+fun hydroxide_N : N ;
+fun hydroxy_A : A ;
+fun hydroxychloroquine_N : N ;
+fun hydroxyl_N : N ;
+fun hydroxymethyl_N : N ;
+fun hydroxyproline_N : N ;
+fun hydrozoan_N : N ;
+fun hyena_N : N ;
+fun hygiene_N : N ;
+fun hygienic_A : A ;
+fun hygienically_Adv : Adv ;
+fun hygienist_N : N ;
+fun hygrodeik_N : N ;
+fun hygrometer_N : N ;
+fun hygrophyte_N : N ;
+fun hygrophytic_A : A ;
+fun hygroscope_N : N ;
+fun hygroscopic_A : A ;
+fun hymen_N : N ;
+fun hymenal_A : A ;
+fun hymeneal_A : A ;
+fun hymeneal_N : N ;
+fun hymenium_N : N ;
+fun hymenopterous_A : A ;
+fun hymn_N : N ;
+fun hymn_V : V ;
+fun hymnal_N : N ;
+fun hyoid_A : A ;
+fun hyoid_N : N ;
+fun hyoscyamine_N : N ;
+fun hypaethral_A : A ;
+fun hypallage_N : N ;
+fun hypanthium_N : N ;
+fun hype_V : V ;
+fun hyperacidity_N : N ;
+fun hyperactive_A : A ;
+fun hyperactivity_N : N ;
+fun hyperacusis_N : N ;
+fun hyperbaton_N : N ;
+fun hyperbetalipoproteinemia_N : N ;
+fun hyperbilirubinemia_N : N ;
+fun hyperbola_N : N ;
+fun hyperbole_N : N ;
+fun hyperbolic_A : A ;
+fun hyperbolically_Adv : Adv ;
+fun hyperboloid_N : N ;
+fun hyperboloidal_A : A ;
+fun hypercalcemia_N : N ;
+fun hypercalciuria_N : N ;
+fun hypercapnia_N : N ;
+fun hypercatalectic_A : A ;
+fun hypercatalectic_N : N ;
+fun hypercellularity_N : N ;
+fun hypercholesterolemia_N : N ;
+fun hypercoaster_N : N ;
+fun hypercritical_A : A ;
+fun hyperemesis_N : N ;
+fun hyperemia_N : N ;
+fun hyperemic_A : A ;
+fun hyperextension_N : N ;
+fun hyperfine_A : A ;
+fun hyperglycemia_N : N ;
+fun hyperhidrosis_N : N ;
+fun hypericism_N : N ;
+fun hyperinflation_N : N ;
+fun hyperkalemia_N : N ;
+fun hyperlink_N : N ;
+fun hyperlipoproteinemia_N : N ;
+fun hypermarket_N : N ;
+fun hypermastigote_N : N ;
+fun hypermedia_N : N ;
+fun hypermotility_N : N ;
+fun hypernatremia_N : N ;
+fun hypernym_N : N ;
+fun hypernymy_N : N ;
+fun hyperon_N : N ;
+fun hyperope_N : N ;
+fun hyperopia_N : N ;
+fun hyperopic_A : A ;
+fun hyperparathyroidism_N : N ;
+fun hyperpigmentation_N : N ;
+fun hyperpituitarism_N : N ;
+fun hyperplasia_N : N ;
+fun hyperpnea_N : N ;
+fun hyperpyrexia_N : N ;
+fun hypersecretion_N : N ;
+fun hypersensitive_A : A ;
+fun hypersensitivity_N : N ;
+fun hypersomnia_N : N ;
+fun hypersplenism_N : N ;
+fun hypertensive_A : A ;
+fun hypertensive_N : N ;
+fun hypertext_N : N ;
+fun hyperthermal_A : A ;
+fun hyperthermia_N : N ;
+fun hyperthyroidism_N : N ;
+fun hypertonia_N : N ;
+fun hypertonic_A : A ;
+fun hypertonicity_N : N ;
+fun hypertrophied_A : A ;
+fun hypertrophy_N : N ;
+fun hypervelocity_N : N ;
+fun hyperventilation_N : N ;
+fun hypervitaminosis_N : N ;
+fun hypervolemia_N : N ;
+fun hypha_N : N ;
+fun hyphema_N : N ;
+fun hyphen_N : N ;
+fun hyphen_V : V ;
+fun hyphenate_V : V ;
+fun hyphenation_N : N ;
+fun hypnagogue_N : N ;
+fun hypnoanalysis_N : N ;
+fun hypnogenesis_N : N ;
+fun hypnoid_A : A ;
+fun hypnophobia_N : N ;
+fun hypnosis_N : N ;
+fun hypnotherapy_N : N ;
+fun hypnotic_A : A ;
+fun hypnotically_Adv : Adv ;
+fun hypnotism_N : N ;
+fun hypnotist_N : N ;
+fun hypnotize_V : V ;
+fun hypo_N : N ;
+fun hypoactive_A : A ;
+fun hypobasidium_N : N ;
+fun hypobetalipoproteinemia_N : N ;
+fun hypocalcemia_N : N ;
+fun hypocapnia_N : N ;
+fun hypocellularity_N : N ;
+fun hypochlorite_N : N ;
+fun hypochondria_N : N ;
+fun hypochondriac_A : A ;
+fun hypochondriac_N : N ;
+fun hypochondriacal_A : A ;
+fun hypochondrium_N : N ;
+fun hypocrisy_N : N ;
+fun hypocrite_N : N ;
+fun hypocritical_A : A ;
+fun hypocycloid_N : N ;
+fun hypodermal_A : A ;
+fun hypodermic_A : A ;
+fun hypodermic_N : N ;
+fun hypodermis_N : N ;
+fun hypoesthesia_N : N ;
+fun hypogammaglobulinemia_N : N ;
+fun hypoglossal_N : N ;
+fun hypoglycemia_N : N ;
+fun hypoglycemic_A : A ;
+fun hypogonadism_N : N ;
+fun hypokalemia_N : N ;
+fun hypolipoproteinemia_N : N ;
+fun hyponatremia_N : N ;
+fun hyponym_N : N ;
+fun hyponymy_N : N ;
+fun hypoparathyroidism_N : N ;
+fun hypophyseal_A : A ;
+fun hypophysectomized_A : A ;
+fun hypophysectomy_N : N ;
+fun hypopigmentation_N : N ;
+fun hypoplasia_N : N ;
+fun hypopnea_N : N ;
+fun hypoproteinemia_N : N ;
+fun hyposmia_N : N ;
+fun hypospadias_N : N ;
+fun hypostasis_N : N ;
+fun hypostatization_N : N ;
+fun hypotension_N : N ;
+fun hypotensive_A : A ;
+fun hypotensive_N : N ;
+fun hypotenuse_N : N ;
+fun hypothalamic_A : A ;
+fun hypothalamically_Adv : Adv ;
+fun hypothalamus_N : N ;
+fun hypothecate_V : V ;
+fun hypothermia_N : N ;
+fun hypothermic_A : A ;
+fun hypothesis_N : N ;
+fun hypothesize_V : V ;
+fun hypothetical_A : A ;
+fun hypothetical_N : N ;
+fun hypothrombinemia_N : N ;
+fun hypothyroidism_N : N ;
+fun hypotonia_N : N ;
+fun hypotonic_A : A ;
+fun hypotonicity_N : N ;
+fun hypovolemia_N : N ;
+fun hypovolemic_A : A ;
+fun hypoxia_N : N ;
+fun hypozeugma_N : N ;
+fun hypozeuxis_N : N ;
+fun hypsography_N : N ;
+fun hypsometer_N : N ;
+fun hypsometry_N : N ;
+fun hyrax_N : N ;
+fun hyson_N : N ;
+fun hyssop_N : N ;
+fun hysterectomy_N : N ;
+fun hysteresis_N : N ;
+fun hysteria_N : N ;
+fun hysteric_A : A ;
+fun hysteric_N : N ;
+fun hysterical_A : A ;
+fun hysterics_N : N ;
+fun hysterocatalepsy_N : N ;
+fun hysterosalpingogram_N : N ;
+fun hysteroscopy_N : N ;
+fun hysterotomy_N : N ;
+fun iPod_N : N ;
+fun iamb_N : N ;
+fun iambic_A : A ;
+fun iambic_N : N ;
+fun iambics_N : N ;
+fun iambus_N : N ;
+fun iatrogenic_A : A ;
+fun iba_N : N ;
+fun ibex_N : N ;
+fun ibidem_Adv : Adv ;
+fun ibis_N : N ;
+fun ibuprofen_N : N ;
+fun icbm_N : N ;
+fun ice_N : N ;
+fun ice_V : V ;
+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 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 icetray_N : N ;
+fun ichneumon_N : N ;
+fun ichneumon_fly_N : N ;
+fun ichor_N : N ;
+fun ichorous_A : A ;
+fun ichthyolatry_N : N ;
+fun ichthyologist_N : N ;
+fun ichthyology_N : N ;
+fun ichthyosaur_N : N ;
+fun ichthyosaurus_N : N ;
+fun ichthyosis_N : N ;
+fun icicle_N : N ;
+fun icing_N : N ;
+fun icky_A : A ;
+fun icon_N : N ;
+fun iconic_A : A ;
+fun iconoclasm_N : N ;
+fun iconoclast_N : N ;
+fun iconoclastic_A : A ;
+fun iconography_N : N ;
+fun iconolatry_N : N ;
+fun iconology_N : N ;
+fun iconoscope_N : N ;
+fun icosahedral_A : A ;
+fun icosahedron_N : N ;
+fun ictal_A : A ;
+fun icterogenic_A : A ;
+fun ictodosaur_N : N ;
+fun icy_A : A ;
+fun id_N : N ;
+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 ideality_N : N ;
+fun idealization_N : N ;
+fun idealize_V : V ;
+fun ideation_N : N ;
+fun idempotent_A : A ;
+fun identical_A : A ;
+fun identifiable_A : A ;
+fun identification_N : N ;
+fun identifier_N : N ;
+fun identify_V : V ;
+fun identikit_N : N ;
+fun identity_N : N ;
+fun ideogram_N : N ;
+fun ideograph_N : N ;
+fun ideographic_A : A ;
+fun ideographically_Adv : Adv ;
+fun ideography_N : N ;
+fun ideological_A : A ;
+fun ideologist_N : N ;
+fun ideology_N : N ;
+fun ides_N : N ;
+fun idesia_N : N ;
+fun idiocy_N : N ;
+fun idiographic_A : A ;
+fun idiolatry_N : N ;
+fun idiolect_N : N ;
+fun idiom_N : N ;
+fun idiomatic_A : A ;
+fun idiomatically_Adv : Adv ;
+fun idiopathic_A : A ;
+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_N : N ;
+fun idle_V : V ;
+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_V : V ;
+fun idolizer_N : N ;
+fun idyll_N : N ;
+fun idyllic_A : A ;
+fun idyllically_Adv : Adv ;
+fun igloo_N : N ;
+fun igneous_A : A ;
+fun ignescent_A : A ;
+fun ignis_fatuus_N : N ;
+fun ignite_V : V ;
+fun igniter_N : N ;
+fun ignition_N : N ;
+fun ignoble_A : A ;
+fun ignobleness_N : N ;
+fun ignominious_A : A ;
+fun ignominy_N : N ;
+fun ignoramus_N : N ;
+fun ignorance_N : N ;
+fun ignorant_A : A ;
+fun ignorantness_N : N ;
+fun ignore_V : V ;
+fun iguana_N : N ;
+fun iguanid_N : N ;
+fun iguanodon_N : N ;
+fun ijtihad_N : N ;
+fun ikon_N : N ;
+fun ilama_N : N ;
+fun ileitis_N : N ;
+fun ileostomy_N : N ;
+fun ileum_N : N ;
+fun ilex_N : N ;
+fun iliac_A : A ;
+fun ilium_N : N ;
+fun ilk_N : N ;
+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_V : V ;
+fun ill_treatment_N : N ;
+fun ill_usage_N : N ;
+fun ill_use_V : V ;
+fun illative_A : A ;
+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 illicitness_N : N ;
+fun illimitable_A : A ;
+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_V : V ;
+fun illuminance_N : N ;
+fun illuminant_N : N ;
+fun illuminate_V : V ;
+fun illumination_N : N ;
+fun illumine_V : V ;
+fun illusion_N : N ;
+fun illusional_A : A ;
+fun illusionist_N : N ;
+fun illusive_A : A ;
+fun illusory_A : A ;
+fun illustrate_V : V ;
+fun illustration_N : N ;
+fun illustrative_A : A ;
+fun illustrator_N : N ;
+fun illustrious_A : A ;
+fun ilmenite_N : N ;
+fun ilo_N : N ;
+fun image_N : N ;
+fun image_V : V ;
+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 imaging_N : N ;
+fun imagism_N : N ;
+fun imago_N : N ;
+fun imam_N : N ;
+fun imaret_N : N ;
+fun imbalance_N : N ;
+fun imbecile_A : A ;
+fun imbecile_N : N ;
+fun imbecility_N : N ;
+fun imbed_V : V ;
+fun imbibe_V : V ;
+fun imbibition_N : N ;
+fun imbricate_A : A ;
+fun imbrication_N : N ;
+fun imbroglio_N : N ;
+fun imbue_V : V ;
+fun imf_N : N ;
+fun imidazole_N : N ;
+fun imide_N : N ;
+fun imipramine_N : N ;
+fun imitate_V : V ;
+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 immateriality_N : N ;
+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_V : V ;
+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 immiscible_A : A ;
+fun immobile_A : A ;
+fun immobility_N : N ;
+fun immobilization_N : N ;
+fun immobilize_V : V ;
+fun immoderate_A : A ;
+fun immoderation_N : N ;
+fun immodest_A : A ;
+fun immodesty_N : N ;
+fun immolate_V : V ;
+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_V : V ;
+fun immortelle_N : N ;
+fun immotility_N : N ;
+fun immovability_N : N ;
+fun immovable_A : A ;
+fun immune_A : A ;
+fun immune_N : N ;
+fun immunity_N : N ;
+fun immunization_N : N ;
+fun immunize_V : V ;
+fun immunoassay_N : N ;
+fun immunochemical_A : A ;
+fun immunochemistry_N : N ;
+fun immunocompetence_N : N ;
+fun immunocompetent_A : A ;
+fun immunocompromised_A : A ;
+fun immunodeficiency_N : N ;
+fun immunodeficient_A : A ;
+fun immunoelectrophoresis_N : N ;
+fun immunofluorescence_N : N ;
+fun immunogen_N : N ;
+fun immunogenic_A : A ;
+fun immunogenicity_N : N ;
+fun immunoglobulin_N : N ;
+fun immunohistochemistry_N : N ;
+fun immunological_A : A ;
+fun immunologist_N : N ;
+fun immunology_N : N ;
+fun immunopathology_N : N ;
+fun immunosuppressant_N : N ;
+fun immunosuppressed_A : A ;
+fun immunosuppression_N : N ;
+fun immunosuppressive_A : A ;
+fun immunotherapeutic_A : A ;
+fun immunotherapy_N : N ;
+fun immure_V : V ;
+fun immutability_N : N ;
+fun immutable_A : A ;
+fun imp_N : N ;
+fun impact_N : N ;
+fun impact_V : V ;
+fun impaction_N : N ;
+fun impair_V : V ;
+fun impairer_N : N ;
+fun impairment_N : N ;
+fun impala_N : N ;
+fun impale_V : V ;
+fun impalement_N : N ;
+fun impalpable_A : A ;
+fun impanel_V : V ;
+fun impart_V : V ;
+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 impasto_N : N ;
+fun impatience_N : N ;
+fun impatient_A : A ;
+fun impeach_V : V ;
+fun impeachability_N : N ;
+fun impeachment_N : N ;
+fun impeccability_N : N ;
+fun impeccable_A : A ;
+fun impeccant_A : A ;
+fun impecunious_A : A ;
+fun impecuniousness_N : N ;
+fun impede_V : V ;
+fun impediment_N : N ;
+fun impedimenta_N : N ;
+fun impel_V : V ;
+fun impellent_A : A ;
+fun impeller_N : N ;
+fun impelling_A : A ;
+fun impend_V : V ;
+fun impenetrability_N : N ;
+fun impenetrable_A : A ;
+fun impenitence_N : N ;
+fun impenitent_A : A ;
+fun imperative_A : A ;
+fun imperative_N : N ;
+fun imperativeness_N : N ;
+fun imperceptibility_N : N ;
+fun imperceptible_A : A ;
+fun imperfect_A : A ;
+fun imperfect_N : N ;
+fun imperfectibility_N : N ;
+fun imperfectible_A : A ;
+fun imperfection_N : N ;
+fun imperfective_N : N ;
+fun imperforate_A : A ;
+fun imperial_A : A ;
+fun imperial_N : N ;
+fun imperialism_N : N ;
+fun imperialist_N : N ;
+fun imperialistic_A : A ;
+fun imperil_V : V ;
+fun imperile_V : V ;
+fun imperious_A : A ;
+fun imperiousness_N : N ;
+fun imperishability_N : N ;
+fun imperishable_A : A ;
+fun imperium_N : N ;
+fun impermanence_N : N ;
+fun impermanent_A : A ;
+fun impermeability_N : N ;
+fun impermeable_A : A ;
+fun impermissibility_N : N ;
+fun impermissible_A : A ;
+fun impersonal_A : A ;
+fun impersonate_V : V ;
+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 impetiginous_A : A ;
+fun impetigo_N : N ;
+fun impetuosity_N : N ;
+fun impetuous_A : A ;
+fun impetuousness_N : N ;
+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_N : N ;
+fun implant_V : V ;
+fun implantation_N : N ;
+fun implausibility_N : N ;
+fun implausible_A : A ;
+fun implement_N : N ;
+fun implement_V : V ;
+fun implemental_A : A ;
+fun implementation_N : N ;
+fun implicate_V : V ;
+fun implication_N : N ;
+fun implicational_A : A ;
+fun implicative_A : A ;
+fun implicit_A : A ;
+fun implicitness_N : N ;
+fun implore_V : V ;
+fun imploringly_Adv : Adv ;
+fun implosion_N : N ;
+fun imply_V : V ;
+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_V : V ;
+fun importance_N : N ;
+fun important_A : A ;
+fun importation_N : N ;
+fun importer_N : N ;
+fun importing_N : N ;
+fun importunate_A : A ;
+fun importune_V : V ;
+fun importunity_N : N ;
+fun impose_V : V ;
+fun imposition_N : N ;
+fun impossibility_N : N ;
+fun impossible_A : A ;
+fun impossible_N : N ;
+fun imposter_N : N ;
+fun impostor_N : N ;
+fun imposture_N : N ;
+fun impotence_N : N ;
+fun impotent_A : A ;
+fun impound_V : V ;
+fun impoundment_N : N ;
+fun impoverish_V : V ;
+fun impoverishment_N : N ;
+fun impracticability_N : N ;
+fun impracticable_A : A ;
+fun impracticableness_N : N ;
+fun impractical_A : A ;
+fun impracticality_N : N ;
+fun imprecate_V : V ;
+fun imprecation_N : N ;
+fun imprecise_A : A ;
+fun impreciseness_N : N ;
+fun imprecision_N : N ;
+fun impregnability_N : N ;
+fun impregnable_A : A ;
+fun impregnate_V : V ;
+fun impregnation_N : N ;
+fun impresario_N : N ;
+fun impress_N : N ;
+fun impress_V : V ;
+fun impression_N : N ;
+fun impressionable_A : A ;
+fun impressionism_N : N ;
+fun impressionist_A : A ;
+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_V : V ;
+fun imprinting_N : N ;
+fun imprison_V : V ;
+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 improvable_A : A ;
+fun improve_V : V ;
+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 imprudence_N : N ;
+fun imprudent_A : A ;
+fun impudence_N : N ;
+fun impudent_A : A ;
+fun impugn_V : V ;
+fun impugnable_A : A ;
+fun impuissant_A : A ;
+fun impulse_N : N ;
+fun impulse_buy_V : V ;
+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_V : V ;
+fun imputrescible_A : A ;
+fun in_A : A ;
+fun in_Adv : Adv ;
+fun in_N : N ;
+fun in_Prep : Prep ;
+fun in_accordance_with_Prep : Prep ;
+fun in_addition_Adv : Adv ;
+fun in_addition_to_Prep : Prep ;
+fun in_case_of_Prep : Prep ;
+fun in_chief_A : A ;
+fun in_fighting_N : N ;
+fun in_front_of_Prep : Prep ;
+fun in_general_Adv : Adv ;
+fun in_lieu_of_Prep : Prep ;
+fun in_loco_parentis_Adv : Adv ;
+fun in_order_to_Prep : Prep ;
+fun in_particular_Adv : Adv ;
+fun in_patient_N : N ;
+fun in_place_of_Prep : Prep ;
+fun in_point_of_Prep : Prep ;
+fun in_re_Prep : Prep ;
+fun in_service_A : A ;
+fun in_situ_Adv : Adv ;
+fun in_spite_of_Prep : Prep ;
+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_V : V ;
+fun inactivation_N : N ;
+fun inactive_A : A ;
+fun inactiveness_N : N ;
+fun inactivity_N : N ;
+fun inadequacy_N : N ;
+fun inadequate_A : A ;
+fun inadmissibility_N : N ;
+fun inadmissible_A : A ;
+fun inadvertence_N : N ;
+fun inadvertent_A : A ;
+fun inadvisability_N : N ;
+fun inadvisable_A : A ;
+fun inaesthetic_A : A ;
+fun inalienable_A : A ;
+fun inamorata_N : N ;
+fun inamorato_N : N ;
+fun inane_A : A ;
+fun inanimate_A : A ;
+fun inanimateness_N : N ;
+fun inanition_N : N ;
+fun inanity_N : N ;
+fun inapplicability_N : N ;
+fun inapplicable_A : A ;
+fun inapposite_A : A ;
+fun inappreciable_A : A ;
+fun inappropriate_A : A ;
+fun inappropriateness_N : N ;
+fun inapt_A : A ;
+fun inaptitude_N : N ;
+fun inaptness_N : N ;
+fun inarguable_A : A ;
+fun inarticulate_A : A ;
+fun inartistic_A : A ;
+fun inasmuch_as_Adv : Adv ;
+fun inattention_N : N ;
+fun inattentive_A : A ;
+fun inattentiveness_N : N ;
+fun inaudibility_N : N ;
+fun inaudible_A : A ;
+fun inaugural_A : A ;
+fun inaugural_N : N ;
+fun inaugurate_V : V ;
+fun inauguration_N : N ;
+fun inauspicious_A : A ;
+fun inauspiciousness_N : N ;
+fun inauthentic_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 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_V : V ;
+fun incapacity_N : N ;
+fun incarcerate_V : V ;
+fun incarceration_N : N ;
+fun incarnate_A : A ;
+fun incarnate_V : V ;
+fun incarnation_N : N ;
+fun incaution_N : N ;
+fun incautious_A : A ;
+fun incendiarism_N : N ;
+fun incendiary_A : A ;
+fun incendiary_N : N ;
+fun incense_N : N ;
+fun incense_V : V ;
+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 inchoate_A : A ;
+fun inchoative_A : A ;
+fun inchoative_N : N ;
+fun incidence_N : N ;
+fun incident_A : A ;
+fun incident_N : N ;
+fun incidental_A : A ;
+fun incidental_N : N ;
+fun incinerate_V : V ;
+fun incineration_N : N ;
+fun incinerator_N : N ;
+fun incipiency_N : N ;
+fun incipient_A : A ;
+fun incise_V : V ;
+fun incision_N : N ;
+fun incisive_A : A ;
+fun incisiveness_N : N ;
+fun incisor_N : N ;
+fun incisure_N : N ;
+fun incitation_N : N ;
+fun incite_V : V ;
+fun incitement_N : N ;
+fun incivility_N : N ;
+fun inclemency_N : N ;
+fun inclement_A : A ;
+fun inclination_N : N ;
+fun incline_N : N ;
+fun incline_V : V ;
+fun inclinometer_N : N ;
+fun inclose_V : V ;
+fun inclosure_N : N ;
+fun include_V : V ;
+fun inclusion_N : N ;
+fun inclusive_A : A ;
+fun incognito_A : A ;
+fun incognito_Adv : Adv ;
+fun incognizable_A : A ;
+fun incognizance_N : N ;
+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_V : V ;
+fun incommodious_A : A ;
+fun incommunicado_A : A ;
+fun incommutability_N : N ;
+fun incommutable_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 incompetent_N : N ;
+fun incomplete_A : A ;
+fun incompleteness_N : N ;
+fun incomprehensibility_N : N ;
+fun incomprehensible_A : A ;
+fun incomprehension_N : N ;
+fun incompressibility_N : N ;
+fun incompressible_A : A ;
+fun incomputable_A : A ;
+fun inconceivability_N : N ;
+fun inconceivable_A : A ;
+fun inconclusive_A : A ;
+fun inconclusiveness_N : N ;
+fun incongruent_A : A ;
+fun incongruity_N : N ;
+fun incongruous_A : A ;
+fun inconsequence_N : N ;
+fun inconsequent_A : A ;
+fun inconsequential_A : A ;
+fun inconsiderable_A : A ;
+fun inconsiderate_A : A ;
+fun inconsideration_N : N ;
+fun inconsistency_N : N ;
+fun inconsistent_A : A ;
+fun inconsolable_A : A ;
+fun inconspicuous_A : A ;
+fun inconspicuousness_N : N ;
+fun inconstancy_N : N ;
+fun inconstant_A : A ;
+fun incontestable_A : A ;
+fun incontinence_N : N ;
+fun incontinent_A : A ;
+fun incontrovertibility_N : N ;
+fun incontrovertible_A : A ;
+fun inconvenience_N : N ;
+fun inconvenience_V : V ;
+fun inconvenient_A : A ;
+fun inconvertibility_N : N ;
+fun inconvertible_A : A ;
+fun incoordination_N : N ;
+fun incorporate_A : A ;
+fun incorporate_V : V ;
+fun incorporation_N : N ;
+fun incorporative_A : A ;
+fun incorporeal_A : A ;
+fun incorrect_A : A ;
+fun incorrectness_N : N ;
+fun incorrigible_A : A ;
+fun incorrupt_A : A ;
+fun incorruptibility_N : N ;
+fun incorruptible_A : A ;
+fun incorruptness_N : N ;
+fun increase_N : N ;
+fun increase_V : V ;
+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_V : V ;
+fun incriminatingly_Adv : Adv ;
+fun incrimination_N : N ;
+fun incrustation_N : N ;
+fun incubate_V : V ;
+fun incubation_N : N ;
+fun incubator_N : N ;
+fun incubus_N : N ;
+fun inculcate_V : V ;
+fun inculcation_N : N ;
+fun inculpate_V : V ;
+fun inculpatory_A : A ;
+fun incumbency_N : N ;
+fun incumbent_A : A ;
+fun incumbent_N : N ;
+fun incur_V : V ;
+fun incurability_N : N ;
+fun incurable_A : A ;
+fun incurable_N : N ;
+fun incurious_A : A ;
+fun incurrence_N : N ;
+fun incurring_N : N ;
+fun incursion_N : N ;
+fun incursive_A : A ;
+fun incurvate_A : A ;
+fun incurvation_N : N ;
+fun incurved_A : A ;
+fun incus_N : N ;
+fun indaba_N : N ;
+fun indapamide_N : N ;
+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 indecisiveness_N : N ;
+fun indecorous_A : A ;
+fun indecorum_N : N ;
+fun indeed_Adv : Adv ;
+fun indefatigability_N : N ;
+fun indefatigable_A : A ;
+fun indefeasible_A : A ;
+fun indefensible_A : A ;
+fun indefinable_A : A ;
+fun indefinite_A : A ;
+fun indefiniteness_N : N ;
+fun indehiscent_A : A ;
+fun indelible_A : A ;
+fun indelicacy_N : N ;
+fun indelicate_A : A ;
+fun indemnification_N : N ;
+fun indemnify_V : V ;
+fun indemnity_N : N ;
+fun indene_N : N ;
+fun indent_N : N ;
+fun indent_V : V ;
+fun indentation_N : N ;
+fun indenture_N : N ;
+fun indenture_V : V ;
+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_V : V ;
+fun indexation_N : N ;
+fun indexer_N : N ;
+fun indexical_A : A ;
+fun indexing_N : N ;
+fun indexless_A : A ;
+fun india_rubber_N : N ;
+fun indiaman_N : N ;
+fun indicate_V : V ;
+fun indication_N : N ;
+fun indicative_A : A ;
+fun indicator_N : N ;
+fun indict_V : V ;
+fun indictable_A : A ;
+fun indiction_N : N ;
+fun indictment_N : N ;
+fun indie_A : A ;
+fun indie_N : N ;
+fun indifference_N : N ;
+fun indifferent_A : A ;
+fun indigence_N : N ;
+fun indigenous_A : A ;
+fun indigenousness_N : N ;
+fun indigent_A : A ;
+fun indigestibility_N : N ;
+fun indigestible_A : A ;
+fun indigestion_N : N ;
+fun indignant_A : A ;
+fun indignation_N : N ;
+fun indignity_N : N ;
+fun indigo_A : A ;
+fun indigo_N : N ;
+fun indinavir_N : N ;
+fun indirect_A : A ;
+fun indirection_N : N ;
+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 indisputability_N : N ;
+fun indisputable_A : A ;
+fun indissoluble_A : A ;
+fun indistinct_A : A ;
+fun indistinctness_N : N ;
+fun indistinguishable_A : A ;
+fun indite_V : V ;
+fun indium_N : N ;
+fun individual_A : A ;
+fun individual_N : N ;
+fun individualism_N : N ;
+fun individualist_A : A ;
+fun individualist_N : N ;
+fun individualistic_A : A ;
+fun individualistically_Adv : Adv ;
+fun individuality_N : N ;
+fun individualization_N : N ;
+fun individualize_V : V ;
+fun indivisible_A : A ;
+fun indo_european_A : A ;
+fun indocile_A : A ;
+fun indoctrinate_V : V ;
+fun indoctrination_N : N ;
+fun indolence_N : N ;
+fun indolent_A : A ;
+fun indomethacin_N : N ;
+fun indomitability_N : N ;
+fun indomitable_A : A ;
+fun indonesian_A : A ;
+fun indonesian_N : N ;
+fun indoor_A : A ;
+fun indoors_Adv : Adv ;
+fun indorse_V : V ;
+fun indrawn_A : A ;
+fun indri_N : N ;
+fun indubitable_A : A ;
+fun induce_V : V ;
+fun inducement_N : N ;
+fun inducer_N : N ;
+fun induct_V : V ;
+fun inductee_N : N ;
+fun induction_N : N ;
+fun inductive_A : A ;
+fun inductor_N : N ;
+fun indue_V : V ;
+fun indulge_V : V ;
+fun indulgence_N : N ;
+fun indulgent_A : A ;
+fun indumentum_N : N ;
+fun indusial_A : A ;
+fun indusium_N : N ;
+fun industrial_A : A ;
+fun industrialisation_N : N ;
+fun industrialism_N : N ;
+fun industrialist_N : N ;
+fun industrialization_N : N ;
+fun industrialize_V : V ;
+fun industrious_A : A ;
+fun industry_N : N ;
+fun indweller_N : N ;
+fun indwelling_A : A ;
+fun inebriate_A : A ;
+fun inebriate_N : N ;
+fun inebriate_V : V ;
+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 inefficacious_A : A ;
+fun inefficacy_N : N ;
+fun inefficiency_N : N ;
+fun inefficient_A : A ;
+fun inelaborate_A : A ;
+fun inelastic_A : A ;
+fun inelasticity_N : N ;
+fun inelegance_N : N ;
+fun inelegant_A : A ;
+fun ineligibility_N : N ;
+fun ineligible_A : A ;
+fun ineloquently_Adv : Adv ;
+fun ineluctability_N : N ;
+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 inerrable_A : A ;
+fun inerrancy_N : N ;
+fun inert_A : A ;
+fun inertia_N : N ;
+fun inertial_A : A ;
+fun inertness_N : N ;
+fun inescapable_A : A ;
+fun inessential_A : A ;
+fun inessential_N : N ;
+fun inessentiality_N : N ;
+fun inestimable_A : A ;
+fun inevitability_N : N ;
+fun inevitable_A : A ;
+fun inevitable_N : N ;
+fun inexact_A : A ;
+fun inexactitude_N : N ;
+fun inexactness_N : N ;
+fun inexcusable_A : A ;
+fun inexhaustible_A : A ;
+fun inexorable_A : A ;
+fun inexpedience_N : N ;
+fun inexpediency_N : N ;
+fun inexpedient_A : A ;
+fun inexpensive_A : A ;
+fun inexpensiveness_N : N ;
+fun inexperience_N : N ;
+fun inexperienced_A : A ;
+fun inexpert_A : A ;
+fun inexpiable_A : A ;
+fun inexplicable_A : A ;
+fun inexplicitness_N : N ;
+fun inexpressible_A : A ;
+fun inexpressive_A : A ;
+fun inexpungible_A : A ;
+fun inexterminable_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 infarct_N : N ;
+fun infatuate_V : V ;
+fun infatuation_N : N ;
+fun infeasibility_N : N ;
+fun infect_V : V ;
+fun infection_N : N ;
+fun infectious_A : A ;
+fun infective_A : A ;
+fun infelicitous_A : A ;
+fun infelicity_N : N ;
+fun infer_V : V ;
+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 infernal_N : N ;
+fun inferno_N : N ;
+fun infertile_A : A ;
+fun infertility_N : N ;
+fun infest_V : V ;
+fun infestation_N : N ;
+fun infidel_N : N ;
+fun infidelity_N : N ;
+fun infield_N : N ;
+fun infielder_N : N ;
+fun infiltrate_V : V ;
+fun infiltration_N : N ;
+fun infiltrator_N : N ;
+fun infinite_A : A ;
+fun infiniteness_N : N ;
+fun infinitesimal_A : A ;
+fun infinitesimal_N : N ;
+fun infinitival_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 infix_N : N ;
+fun inflame_V : V ;
+fun inflammable_A : A ;
+fun inflammation_N : N ;
+fun inflammatory_A : A ;
+fun inflatable_A : A ;
+fun inflate_V : V ;
+fun inflater_N : N ;
+fun inflation_N : N ;
+fun inflationary_A : A ;
+fun inflect_V : V ;
+fun inflection_N : N ;
+fun inflectional_A : A ;
+fun inflexibility_N : N ;
+fun inflexible_A : A ;
+fun inflexion_N : N ;
+fun inflict_V : V ;
+fun infliction_N : N ;
+fun infliximab_N : N ;
+fun inflorescence_N : N ;
+fun inflow_N : N ;
+fun inflowing_A : A ;
+fun influence_N : N ;
+fun influence_V : V ;
+fun influential_A : A ;
+fun influenza_N : N ;
+fun influx_N : N ;
+fun info_N : N ;
+fun infomercial_N : N ;
+fun inform_V : V ;
+fun informal_A : A ;
+fun informality_N : N ;
+fun informant_N : N ;
+fun information_N : N ;
+fun informational_A : A ;
+fun informative_A : A ;
+fun informer_N : N ;
+fun informing_N : N ;
+fun infra_Adv : Adv ;
+fun infra_dig_A : A ;
+fun infra_red_A : A ;
+fun infraction_N : N ;
+fun infrahuman_A : A ;
+fun infrangible_A : A ;
+fun infrared_A : A ;
+fun infrared_N : N ;
+fun infrasonic_A : A ;
+fun infrastructure_N : N ;
+fun infrequency_N : N ;
+fun infrequent_A : A ;
+fun infringe_V : V ;
+fun infringement_N : N ;
+fun infructescence_N : N ;
+fun infundibulum_N : N ;
+fun infuriate_V : V ;
+fun infuriation_N : N ;
+fun infuse_V : V ;
+fun infusion_N : N ;
+fun infusorian_N : N ;
+fun inga_N : N ;
+fun ingathering_N : N ;
+fun ingenious_A : A ;
+fun ingenuity_N : N ;
+fun ingenuous_A : A ;
+fun ingenuousness_N : N ;
+fun ingest_V : V ;
+fun ingesta_N : N ;
+fun ingle_nook_N : N ;
+fun inglorious_A : A ;
+fun ingoing_A : A ;
+fun ingot_N : N ;
+fun ingraft_V : V ;
+fun ingrained_A : A ;
+fun ingrate_N : N ;
+fun ingratiate_V : V ;
+fun ingratiating_A : A ;
+fun ingratiation_N : N ;
+fun ingratitude_N : N ;
+fun ingredient_N : N ;
+fun ingress_N : N ;
+fun ingrowing_A : A ;
+fun ingrowth_N : N ;
+fun inguinal_A : A ;
+fun ingénue_N : N ;
+fun inhabit_V : V ;
+fun inhabitable_A : A ;
+fun inhabitancy_N : N ;
+fun inhabitant_N : N ;
+fun inhalant_A : A ;
+fun inhalant_N : N ;
+fun inhalation_N : N ;
+fun inhale_V : V ;
+fun inhaler_N : N ;
+fun inharmonious_A : A ;
+fun inherence_N : N ;
+fun inherent_A : A ;
+fun inherit_V : V ;
+fun inheritable_A : A ;
+fun inheritance_N : N ;
+fun inheritor_N : N ;
+fun inhibit_V : V ;
+fun inhibition_N : N ;
+fun inhibitor_N : N ;
+fun inhibitory_A : A ;
+fun inhomogeneity_N : N ;
+fun inhomogeneous_A : A ;
+fun inhospitable_A : A ;
+fun inhospitableness_N : N ;
+fun inhospitality_N : N ;
+fun inhuman_A : A ;
+fun inhumane_A : A ;
+fun inhumaneness_N : N ;
+fun inhumanity_N : N ;
+fun inimical_A : A ;
+fun inimitable_A : A ;
+fun inion_N : N ;
+fun iniquitous_A : A ;
+fun iniquity_N : N ;
+fun initial_A : A ;
+fun initial_N : N ;
+fun initial_V : V ;
+fun initiate_A : A ;
+fun initiate_N : N ;
+fun initiate_V : V ;
+fun initiation_N : N ;
+fun initiative_N : N ;
+fun inject_V : V ;
+fun injectable_A : A ;
+fun injection_N : N ;
+fun injector_N : N ;
+fun injudicious_A : A ;
+fun injudiciousness_N : N ;
+fun injunction_N : N ;
+fun injure_V : V ;
+fun injurious_A : A ;
+fun injury_N : N ;
+fun injustice_N : N ;
+fun ink_N : N ;
+fun ink_V : V ;
+fun ink_bottle_N : N ;
+fun ink_pad_N : N ;
+fun ink_pot_N : N ;
+fun inkberry_N : N ;
+fun inkblot_N : N ;
+fun inkle_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_V : V ;
+fun inlet_N : N ;
+fun inmate_N : N ;
+fun inmost_A : A ;
+fun inn_N : N ;
+fun innate_A : A ;
+fun innateness_N : N ;
+fun inner_A : A ;
+fun innermost_A : A ;
+fun innervation_N : N ;
+fun inning_N : N ;
+fun innings_N : N ;
+fun innkeeper_N : N ;
+fun innocence_N : N ;
+fun innocency_N : N ;
+fun innocent_A : A ;
+fun innocent_N : N ;
+fun innocuous_A : A ;
+fun innovate_V : V ;
+fun innovation_N : N ;
+fun innovative_A : A ;
+fun innovativeness_N : N ;
+fun innovator_N : N ;
+fun innoxious_A : A ;
+fun innuendo_N : N ;
+fun innumerable_A : A ;
+fun innumerableness_N : N ;
+fun innumerate_A : A ;
+fun inoculant_N : N ;
+fun inoculate_V : V ;
+fun inoculating_N : N ;
+fun inoculation_N : N ;
+fun inoculator_N : N ;
+fun inoffensive_A : A ;
+fun inoperable_A : A ;
+fun inoperative_A : A ;
+fun inopportune_A : A ;
+fun inopportuneness_N : N ;
+fun inordinate_A : A ;
+fun inorganic_A : A ;
+fun inorganically_Adv : Adv ;
+fun inosine_N : N ;
+fun inositol_N : N ;
+fun inpatient_N : N ;
+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 inquirer_N : N ;
+fun inquiringly_Adv : Adv ;
+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 inquisitory_A : A ;
+fun inroad_N : N ;
+fun inrush_N : N ;
+fun insalubrious_A : A ;
+fun insalubrity_N : N ;
+fun insane_A : A ;
+fun insanitary_A : A ;
+fun insanity_N : N ;
+fun insatiable_A : A ;
+fun insatiate_A : A ;
+fun inscribe_V : V ;
+fun inscription_N : N ;
+fun inscriptive_A : A ;
+fun inscrutability_N : N ;
+fun inscrutable_A : A ;
+fun insect_N : N ;
+fun insect_powder_N : N ;
+fun insectan_A : A ;
+fun insecticidal_A : A ;
+fun insecticide_N : N ;
+fun insectifuge_N : N ;
+fun insectivore_N : N ;
+fun insectivorous_A : A ;
+fun insecure_A : A ;
+fun insecureness_N : N ;
+fun insecurity_N : N ;
+fun inseminate_V : V ;
+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 insentience_N : N ;
+fun insentient_A : A ;
+fun inseparable_A : A ;
+fun insert_N : N ;
+fun insert_V : V ;
+fun insertion_N : N ;
+fun inset_N : N ;
+fun inset_V : V ;
+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 inside_of_Prep : Prep ;
+fun insider_N : N ;
+fun insidious_A : A ;
+fun insidiousness_N : N ;
+fun insight_N : N ;
+fun insightful_A : A ;
+fun insightfulness_N : N ;
+fun insignia_N : N ;
+fun insignificance_N : N ;
+fun insignificant_A : A ;
+fun insincere_A : A ;
+fun insincerity_N : N ;
+fun insinuate_V : V ;
+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 insistence_N : N ;
+fun insistent_A : A ;
+fun insofar_Adv : Adv ;
+fun insolation_N : N ;
+fun insole_N : N ;
+fun insolence_N : N ;
+fun insolent_A : A ;
+fun insolubility_N : N ;
+fun insoluble_A : A ;
+fun insolvable_A : A ;
+fun insolvency_N : N ;
+fun insolvent_A : A ;
+fun insolvent_N : N ;
+fun insomnia_N : N ;
+fun insomniac_A : A ;
+fun insomniac_N : N ;
+fun insomuch_Adv : Adv ;
+fun insouciance_N : N ;
+fun insouciant_A : A ;
+fun inspan_V : V ;
+fun inspect_V : V ;
+fun inspection_N : N ;
+fun inspector_N : N ;
+fun inspectorate_N : N ;
+fun inspectorship_N : N ;
+fun inspiration_N : N ;
+fun inspirational_A : A ;
+fun inspiratory_A : A ;
+fun inspire_V : V ;
+fun inspiring_A : A ;
+fun inspissation_N : N ;
+fun instability_N : N ;
+fun install_V : V ;
+fun installation_N : N ;
+fun installment_N : N ;
+fun instalment_N : N ;
+fun instance_N : N ;
+fun instance_V : V ;
+fun instant_A : A ;
+fun instant_N : N ;
+fun instantaneous_A : A ;
+fun instantiation_N : N ;
+fun instar_N : N ;
+fun instead_Adv : Adv ;
+fun instead_of_Prep : Prep ;
+fun instep_N : N ;
+fun instigate_V : V ;
+fun instigation_N : N ;
+fun instigator_N : N ;
+fun instil_V : V ;
+fun instillation_N : N ;
+fun instillator_N : N ;
+fun instinct_A : A ;
+fun instinct_N : N ;
+fun instinctive_A : A ;
+fun institute_N : N ;
+fun institute_V : V ;
+fun institution_N : N ;
+fun institutional_A : A ;
+fun institutionalisation_N : N ;
+fun institutionalization_N : N ;
+fun institutionalize_V : V ;
+fun instroke_N : N ;
+fun instruct_V : V ;
+fun instruction_N : N ;
+fun instructional_A : A ;
+fun instructive_A : A ;
+fun instructor_N : N ;
+fun instructorship_N : N ;
+fun instructress_N : N ;
+fun instrument_N : N ;
+fun instrumental_A : A ;
+fun instrumentalism_N : N ;
+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 insubstantiality_N : N ;
+fun insufferable_A : A ;
+fun insufficiency_N : N ;
+fun insufficient_A : A ;
+fun insufflation_N : N ;
+fun insular_A : A ;
+fun insularism_N : N ;
+fun insularity_N : N ;
+fun insulate_V : V ;
+fun insulation_N : N ;
+fun insulator_N : N ;
+fun insulin_N : N ;
+fun insult_N : N ;
+fun insult_V : V ;
+fun insulting_A : A ;
+fun insuperable_A : A ;
+fun insupportable_A : A ;
+fun insurability_N : N ;
+fun insurable_A : A ;
+fun insurance_N : N ;
+fun insure_V : V ;
+fun insured_N : N ;
+fun insurgency_N : N ;
+fun insurgent_A : A ;
+fun insurgent_N : N ;
+fun insurmountable_A : A ;
+fun insurrection_N : N ;
+fun insurrectional_A : A ;
+fun insurrectionism_N : N ;
+fun intact_A : A ;
+fun intactness_N : N ;
+fun intaglio_N : N ;
+fun intake_N : N ;
+fun intangibility_N : N ;
+fun intangible_A : A ;
+fun intangible_N : N ;
+fun intangibles_N : N ;
+fun integer_N : N ;
+fun integral_A : A ;
+fun integral_N : N ;
+fun integrate_V : V ;
+fun integration_N : N ;
+fun integrative_A : A ;
+fun integrator_N : N ;
+fun integrity_N : N ;
+fun integument_N : N ;
+fun integumentary_A : A ;
+fun intellect_N : N ;
+fun intellectual_A : A ;
+fun intellectual_N : N ;
+fun intellectualization_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 intense_A : A ;
+fun intensification_N : N ;
+fun intensifier_N : N ;
+fun intensify_V : V ;
+fun intension_N : N ;
+fun intensional_A : A ;
+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 intentionality_N : N ;
+fun intentness_N : N ;
+fun inter_V : V ;
+fun inter_alia_Adv : Adv ;
+fun interact_V : V ;
+fun interaction_N : N ;
+fun interactional_A : A ;
+fun interactive_A : A ;
+fun interbreed_V : V ;
+fun intercalary_A : A ;
+fun intercede_V : V ;
+fun intercellular_A : A ;
+fun intercept_N : N ;
+fun intercept_V : V ;
+fun interception_N : N ;
+fun interceptor_N : N ;
+fun intercession_N : N ;
+fun interchange_N : N ;
+fun interchange_V : V ;
+fun interchangeable_A : A ;
+fun interchurch_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 interconnectedness_N : N ;
+fun interconnection_N : N ;
+fun intercontinental_A : A ;
+fun intercostal_A : A ;
+fun intercostal_N : N ;
+fun intercourse_N : N ;
+fun interdenominational_A : A ;
+fun interdepartmental_A : A ;
+fun interdepartmental_Adv : Adv ;
+fun interdependence_N : N ;
+fun interdependent_A : A ;
+fun interdict_N : N ;
+fun interdict_V : V ;
+fun interdiction_N : N ;
+fun interdisciplinary_A : A ;
+fun interest_N : N ;
+fun interest_V : V ;
+fun interested_A : A ;
+fun interestedness_N : N ;
+fun interesting_A : A ;
+fun interface_N : N ;
+fun interfacial_A : A ;
+fun interfaith_A : A ;
+fun interfere_V : V ;
+fun interference_N : N ;
+fun interferometer_N : N ;
+fun interferon_N : N ;
+fun intergalactic_A : A ;
+fun interim_A : A ;
+fun interim_N : N ;
+fun interior_A : A ;
+fun interior_N : N ;
+fun interject_V : V ;
+fun interjection_N : N ;
+fun interlace_V : V ;
+fun interlard_V : V ;
+fun interlayer_N : N ;
+fun interleaf_N : N ;
+fun interleave_V : V ;
+fun interleukin_N : N ;
+fun interlinear_A : A ;
+fun interlink_V : V ;
+fun interlobular_A : A ;
+fun interlock_N : N ;
+fun interlock_V : V ;
+fun interlocutor_N : N ;
+fun interlocutory_A : A ;
+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 intermission_N : N ;
+fun intermittence_N : N ;
+fun intermittent_A : A ;
+fun intermix_V : V ;
+fun intermixture_N : N ;
+fun intermolecular_A : A ;
+fun intermural_A : A ;
+fun intern_N : N ;
+fun intern_V : V ;
+fun internal_A : A ;
+fun internalization_N : N ;
+fun internalize_V : V ;
+fun international_A : A ;
+fun international_N : N ;
+fun internationale_N : N ;
+fun internationalism_N : N ;
+fun internationalist_A : A ;
+fun internationalist_N : N ;
+fun internationality_N : N ;
+fun internationalization_N : N ;
+fun internationalize_V : V ;
+fun interne_N : N ;
+fun internecine_A : A ;
+fun internee_N : N ;
+fun internet_N : N ;
+fun internist_N : N ;
+fun internment_N : N ;
+fun internode_N : N ;
+fun internship_N : N ;
+fun internuncio_N : N ;
+fun interoception_N : N ;
+fun interoceptive_A : A ;
+fun interoceptor_N : N ;
+fun interoperability_N : N ;
+fun interoperable_A : A ;
+fun interpellate_V : V ;
+fun interpellation_N : N ;
+fun interpenetration_N : N ;
+fun interpersonal_A : A ;
+fun interphone_N : N ;
+fun interplanetary_A : A ;
+fun interplay_N : N ;
+fun interpolate_V : V ;
+fun interpolation_N : N ;
+fun interpose_V : V ;
+fun interposition_N : N ;
+fun interpret_V : V ;
+fun interpretation_N : N ;
+fun interpretative_A : A ;
+fun interpreter_N : N ;
+fun interracial_A : A ;
+fun interreflection_N : N ;
+fun interregnum_N : N ;
+fun interrelate_V : V ;
+fun interrelation_N : N ;
+fun interrelationship_N : N ;
+fun interrogate_V : V ;
+fun interrogation_N : N ;
+fun interrogative_A : A ;
+fun interrogative_N : N ;
+fun interrogator_N : N ;
+fun interrogatory_A : A ;
+fun interrupt_N : N ;
+fun interrupt_V : V ;
+fun interrupter_N : N ;
+fun interruption_N : N ;
+fun interscholastic_A : A ;
+fun intersect_V : V ;
+fun intersection_N : N ;
+fun intersexual_A : A ;
+fun interspecies_A : A ;
+fun intersperse_V : V ;
+fun interspersion_N : N ;
+fun interstate_A : A ;
+fun interstate_N : N ;
+fun interstellar_A : A ;
+fun interstice_N : N ;
+fun interstitial_A : A ;
+fun intertidal_A : A ;
+fun intertribal_A : A ;
+fun intertrigo_N : N ;
+fun intertwine_V : V ;
+fun interval_N : N ;
+fun intervene_V : V ;
+fun intervenor_N : N ;
+fun intervention_N : N ;
+fun intervertebral_A : A ;
+fun interview_N : N ;
+fun interview_V : V ;
+fun interviewee_N : N ;
+fun interviewer_N : N ;
+fun interweave_interweaved_interweaved_V : V ;
+fun interweave_interweaved_interwoven_V : V ;
+fun interweave_interwove_interweaved_V : V ;
+fun interweave_interwove_interwoven_V : V ;
+fun intestacy_N : N ;
+fun intestate_A : A ;
+fun intestinal_A : A ;
+fun intestine_N : N ;
+fun inti_N : N ;
+fun intifada_N : N ;
+fun intima_N : N ;
+fun intimacy_N : N ;
+fun intimal_A : A ;
+fun intimate_A : A ;
+fun intimate_N : N ;
+fun intimate_V : V ;
+fun intimation_N : N ;
+fun intimidate_V : V ;
+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 intoxicant_A : A ;
+fun intoxicant_N : N ;
+fun intoxicate_V : V ;
+fun intoxication_N : N ;
+fun intra_uterine_A : A ;
+fun intracellular_A : A ;
+fun intracerebral_A : A ;
+fun intracranial_A : A ;
+fun intractability_N : N ;
+fun intractable_A : A ;
+fun intradepartmental_A : A ;
+fun intradermal_A : A ;
+fun intrados_N : N ;
+fun intralinguistic_A : A ;
+fun intralobular_A : A ;
+fun intramolecular_A : A ;
+fun intramural_A : A ;
+fun intramuscular_A : A ;
+fun intranet_N : N ;
+fun intransigence_N : N ;
+fun intransigency_N : N ;
+fun intransigent_A : A ;
+fun intransitive_A : A ;
+fun intransitivity_N : N ;
+fun intrapulmonary_A : A ;
+fun intrasentential_A : A ;
+fun intraspecies_A : A ;
+fun intrastate_A : A ;
+fun intrauterine_A : A ;
+fun intravasation_N : N ;
+fun intravenous_A : A ;
+fun intraventricular_A : A ;
+fun intrench_V : V ;
+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 intrinsic_A : A ;
+fun intrinsically_Adv : Adv ;
+fun intro_N : N ;
+fun introduce_V : V ;
+fun introduction_N : N ;
+fun introductory_A : A ;
+fun introit_N : N ;
+fun introitus_N : N ;
+fun introject_N : N ;
+fun introjected_A : A ;
+fun introjection_N : N ;
+fun intron_N : N ;
+fun introspect_V : V ;
+fun introspection_N : N ;
+fun introspective_A : A ;
+fun introspectiveness_N : N ;
+fun introuvable_A : A ;
+fun introversion_N : N ;
+fun introversive_A : A ;
+fun introvert_N : N ;
+fun introvert_V : V ;
+fun introvertish_A : A ;
+fun intrude_V : V ;
+fun intruder_N : N ;
+fun intrusion_N : N ;
+fun intrusive_A : A ;
+fun intrusiveness_N : N ;
+fun intrust_V : V ;
+fun intuit_V : V ;
+fun intuition_N : N ;
+fun intuitionism_N : N ;
+fun intuitionist_A : A ;
+fun intuitive_A : A ;
+fun intumescence_N : N ;
+fun intussusception_N : N ;
+fun inula_N : N ;
+fun inulin_N : N ;
+fun inundate_V : V ;
+fun inundation_N : N ;
+fun inure_V : V ;
+fun inutile_A : A ;
+fun inutility_N : N ;
+fun invade_V : V ;
+fun invader_N : N ;
+fun invagination_N : N ;
+fun invalid_A : A ;
+fun invalid_N : N ;
+fun invalid_V : V ;
+fun invalidate_V : V ;
+fun invalidation_N : N ;
+fun invalidator_N : N ;
+fun invalidism_N : N ;
+fun invalidity_N : N ;
+fun invaluable_A : A ;
+fun invaluableness_N : N ;
+fun invariability_N : N ;
+fun invariable_A : A ;
+fun invariance_N : N ;
+fun invariant_A : A ;
+fun invariant_N : N ;
+fun invasion_N : N ;
+fun invasive_A : A ;
+fun invective_N : N ;
+fun inveigh_V : V ;
+fun inveigle_V : V ;
+fun invent_V : V ;
+fun invention_N : N ;
+fun inventive_A : A ;
+fun inventiveness_N : N ;
+fun inventor_N : N ;
+fun inventory_N : N ;
+fun inverse_A : A ;
+fun inverse_N : N ;
+fun inversion_N : N ;
+fun invert_V : V ;
+fun invertase_N : N ;
+fun invertebrate_A : A ;
+fun invertebrate_N : N ;
+fun inverter_N : N ;
+fun invertible_A : A ;
+fun invest_V : V ;
+fun investigate_V : V ;
+fun investigation_N : N ;
+fun investigator_N : N ;
+fun investing_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_V : V ;
+fun invigorating_A : A ;
+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 invitational_A : A ;
+fun invitatory_A : A ;
+fun invite_N : N ;
+fun invite_V : V ;
+fun invocation_N : N ;
+fun invoice_N : N ;
+fun invoice_V : V ;
+fun invoke_V : V ;
+fun involucrate_A : A ;
+fun involucre_N : N ;
+fun involuntary_A : A ;
+fun involute_A : A ;
+fun involution_N : N ;
+fun involve_V : V ;
+fun involvement_N : N ;
+fun invulnerability_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 iodide_N : N ;
+fun iodinated_A : A ;
+fun iodinating_A : A ;
+fun iodination_N : N ;
+fun iodine_N : N ;
+fun iodochlorhydroxyquin_N : N ;
+fun iodocompound_N : N ;
+fun iodoform_N : N ;
+fun iodoprotein_N : N ;
+fun iodopsin_N : N ;
+fun iodothyronine_N : N ;
+fun iodotyrosine_N : N ;
+fun ion_N : N ;
+fun ionic_A : A ;
+fun ionization_N : N ;
+fun ionize_V : V ;
+fun ionosphere_N : N ;
+fun iontophoresis_N : N ;
+fun iota_N : N ;
+fun ipecac_N : N ;
+fun iproclozide_N : N ;
+fun ipse_dixit_N : N ;
+fun ipsilateral_A : A ;
+fun ipso_facto_Adv : Adv ;
+fun iq_N : N ;
+fun ira_N : N ;
+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 irenic_A : A ;
+fun iridaceous_A : A ;
+fun iridectomy_N : N ;
+fun iridescence_N : N ;
+fun iridescent_A : A ;
+fun iridic_A : A ;
+fun iridium_N : N ;
+fun iridocyclitis_N : N ;
+fun iridokeratitis_N : N ;
+fun iridoncus_N : N ;
+fun iridotomy_N : N ;
+fun iris_N : N ;
+fun irishman_N : N ;
+fun irishwoman_N : N ;
+fun iritic_A : A ;
+fun iritis_N : N ;
+fun irk_V : V ;
+fun irksome_A : A ;
+fun iron_N : N ;
+fun iron_foundry_N : N ;
+fun iron_grey_A : A ;
+fun iron_grey_N : N ;
+fun iron_ironed_V : V ;
+fun iron_ironned_V : V ;
+fun ironclad_A : A ;
+fun ironclad_N : N ;
+fun ironic_A : A ;
+fun ironical_A : A ;
+fun ironing_N : N ;
+fun ironing_board_N : N ;
+fun ironlike_A : A ;
+fun ironmonger_N : N ;
+fun ironmongery_N : N ;
+fun ironmould_N : N ;
+fun irons_N : N ;
+fun ironshod_A : A ;
+fun ironside_N : N ;
+fun ironware_N : N ;
+fun ironweed_N : N ;
+fun ironwood_N : N ;
+fun ironwork_N : N ;
+fun ironworker_N : N ;
+fun ironworks_N : N ;
+fun irony_N : N ;
+fun irradiate_V : V ;
+fun irradiation_N : N ;
+fun irrational_A : A ;
+fun irrationality_N : N ;
+fun irreclaimable_A : A ;
+fun irreconcilable_A : A ;
+fun irrecoverable_A : A ;
+fun irredeemable_A : A ;
+fun irredenta_N : N ;
+fun irredentism_N : N ;
+fun irredentist_N : N ;
+fun irreducible_A : A ;
+fun irrefutable_A : A ;
+fun irregardless_Adv : Adv ;
+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 irreligionist_N : N ;
+fun irreligious_A : A ;
+fun irreligiousness_N : N ;
+fun irremediable_A : A ;
+fun irremovable_A : A ;
+fun irreparable_A : A ;
+fun irreplaceable_A : A ;
+fun irreplaceableness_N : N ;
+fun irrepressibility_N : N ;
+fun irrepressible_A : A ;
+fun irreproachable_A : A ;
+fun irreproducibility_N : N ;
+fun irresistibility_N : N ;
+fun irresistible_A : A ;
+fun irresolute_A : A ;
+fun irresoluteness_N : N ;
+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_V : V ;
+fun irrigation_N : N ;
+fun irritability_N : N ;
+fun irritable_A : A ;
+fun irritant_A : A ;
+fun irritant_N : N ;
+fun irritate_V : V ;
+fun irritating_A : A ;
+fun irritation_N : N ;
+fun irruption_N : N ;
+fun irruptive_A : A ;
+fun ischemia_N : N ;
+fun ischemic_A : A ;
+fun ischium_N : N ;
+fun isentropic_A : A ;
+fun isinglass_N : N ;
+fun island_N : N ;
+fun islander_N : N ;
+fun isle_N : N ;
+fun islet_N : N ;
+fun ism_N : N ;
+fun isoagglutination_N : N ;
+fun isoagglutinin_N : N ;
+fun isoagglutinogen_N : N ;
+fun isoantibody_N : N ;
+fun isobar_N : N ;
+fun isobutylene_N : N ;
+fun isocarboxazid_N : N ;
+fun isochronal_A : A ;
+fun isochrone_N : N ;
+fun isoclinal_A : A ;
+fun isocyanate_N : N ;
+fun isoflurane_N : N ;
+fun isogamete_N : N ;
+fun isogamy_N : N ;
+fun isogon_N : N ;
+fun isogonic_A : A ;
+fun isogram_N : N ;
+fun isohel_N : N ;
+fun isolable_A : A ;
+fun isolate_V : V ;
+fun isolation_N : N ;
+fun isolationism_N : N ;
+fun isolationist_A : A ;
+fun isolationist_N : N ;
+fun isoleucine_N : N ;
+fun isomer_N : N ;
+fun isomerase_N : N ;
+fun isomeric_A : A ;
+fun isomerism_N : N ;
+fun isomerization_N : N ;
+fun isometric_A : A ;
+fun isometrics_N : N ;
+fun isometropia_N : N ;
+fun isometry_N : N ;
+fun isomorphism_N : N ;
+fun isomorphous_A : A ;
+fun isoniazid_N : N ;
+fun isopod_N : N ;
+fun isoproterenol_N : N ;
+fun isopteran_A : A ;
+fun isosceles_A : A ;
+fun isosorbide_N : N ;
+fun isostasy_N : N ;
+fun isotherm_N : N ;
+fun isothermal_A : A ;
+fun isothermic_A : A ;
+fun isothiocyanate_N : N ;
+fun isotonic_A : A ;
+fun isotope_N : N ;
+fun isotopic_A : A ;
+fun isotropic_A : A ;
+fun isotropically_Adv : Adv ;
+fun isotropy_N : N ;
+fun israeli_A : A ;
+fun israeli_N : N ;
+fun issue_N : N ;
+fun issue_V : V ;
+fun issuer_N : N ;
+fun isthmian_A : A ;
+fun isthmus_N : N ;
+fun italic_A : A ;
+fun italic_N : N ;
+fun italicize_V : V ;
+fun itch_N : N ;
+fun itch_V : V ;
+fun itchy_A : A ;
+fun item_Adv : Adv ;
+fun item_N : N ;
+fun itemize_V : V ;
+fun iterate_V : V ;
+fun iteration_N : N ;
+fun iterative_A : A ;
+fun iterative_N : N ;
+fun itinerant_A : A ;
+fun itinerant_N : N ;
+fun itinerary_N : N ;
+fun itineration_N : N ;
+fun itraconazole_N : N ;
+fun itv_N : N ;
+fun iud_N : N ;
+fun ivied_A : A ;
+fun ivory_N : N ;
+fun ivorybill_N : N ;
+fun ivy_N : N ;
+fun izar_N : N ;
+fun jab_N : N ;
+fun jab_V : V ;
+fun jabber_N : N ;
+fun jabber_V : V ;
+fun jabberer_N : N ;
+fun jabberwocky_N : N ;
+fun jabiru_N : N ;
+fun jabot_N : N ;
+fun jaboticaba_N : N ;
+fun jacamar_N : N ;
+fun jack_N : N ;
+fun jack_V : V ;
+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 jackfruit_N : N ;
+fun jackknife_N : N ;
+fun jacklight_N : N ;
+fun jackpot_N : N ;
+fun jackrabbit_N : N ;
+fun jacks_N : N ;
+fun jackscrew_N : N ;
+fun jacksmelt_N : N ;
+fun jacksnipe_N : N ;
+fun jackstraw_N : N ;
+fun jackstraws_N : N ;
+fun jacobean_A : A ;
+fun jacobin_A : A ;
+fun jacobin_N : N ;
+fun jacobinism_N : N ;
+fun jacobite_N : N ;
+fun jaconet_N : N ;
+fun jacquard_N : N ;
+fun jactitation_N : N ;
+fun jade_A : A ;
+fun jade_N : N ;
+fun jaded_A : A ;
+fun jadeite_N : N ;
+fun jaeger_N : N ;
+fun jag_N : N ;
+fun jag_V : V ;
+fun jaggedness_N : N ;
+fun jaggery_N : N ;
+fun jaggy_A : A ;
+fun jaguar_N : N ;
+fun jaguarundi_N : N ;
+fun jail_N : N ;
+fun jail_V : V ;
+fun jailer_N : N ;
+fun jailor_N : N ;
+fun jakes_N : N ;
+fun jalapeno_N : N ;
+fun jalopy_N : N ;
+fun jalousie_N : N ;
+fun jam_N : N ;
+fun jam_V : V ;
+fun jamaican_A : A ;
+fun jamaican_N : N ;
+fun jamb_N : N ;
+fun jambalaya_N : N ;
+fun jamboree_N : N ;
+fun jamjar_N : N ;
+fun jammer_N : N ;
+fun jamming_N : N ;
+fun jampack_V : V ;
+fun jampan_N : N ;
+fun jampot_N : N ;
+fun jangle_N : N ;
+fun jangle_V : V ;
+fun janissary_N : N ;
+fun janitor_N : N ;
+fun japan_N : N ;
+fun japan_V : V ;
+fun jape_N : N ;
+fun japonica_N : N ;
+fun jar_N : N ;
+fun jar_V : V ;
+fun jarful_N : N ;
+fun jargon_N : N ;
+fun jargoon_N : N ;
+fun jarringly_Adv : Adv ;
+fun jasmine_N : N ;
+fun jasper_N : N ;
+fun jassid_N : N ;
+fun jati_N : N ;
+fun jaundice_N : N ;
+fun jaundice_V : V ;
+fun jaunt_N : N ;
+fun jaunt_V : V ;
+fun jauntiness_N : N ;
+fun jaunting_car_N : N ;
+fun jaunty_A : A ;
+fun javanese_A : A ;
+fun javanese_N : N ;
+fun javelin_N : N ;
+fun jaw_N : N ;
+fun jaw_V : V ;
+fun jawan_N : N ;
+fun jawbone_N : N ;
+fun jawbreaker_N : N ;
+fun jawed_A : A ;
+fun jawfish_N : N ;
+fun jawless_A : A ;
+fun jay_N : N ;
+fun jaywalk_V : V ;
+fun jaywalker_N : N ;
+fun jazz_N : N ;
+fun jazz_V : V ;
+fun jazzy_A : A ;
+fun jealous_A : A ;
+fun jealousy_N : N ;
+fun jean_N : N ;
+fun jeep_N : N ;
+fun jeer_N : N ;
+fun jeer_V : V ;
+fun jeeringly_Adv : Adv ;
+fun jejune_A : A ;
+fun jejuneness_N : N ;
+fun jejunitis_N : N ;
+fun jejunity_N : N ;
+fun jejunoileitis_N : N ;
+fun jejunostomy_N : N ;
+fun jejunum_N : N ;
+fun jell_V : V ;
+fun jellaba_N : N ;
+fun jello_N : N ;
+fun jelly_N : N ;
+fun jelly_V : V ;
+fun jellyfish_N : N ;
+fun jellyroll_N : N ;
+fun jemmy_N : N ;
+fun jennet_N : N ;
+fun jenny_N : N ;
+fun jeopardize_V : V ;
+fun jeopardy_N : N ;
+fun jerboa_N : N ;
+fun jeremiad_N : N ;
+fun jerk_N : N ;
+fun jerk_V : V ;
+fun jerkin_N : N ;
+fun jerkiness_N : N ;
+fun jerkwater_A : A ;
+fun jerky_A : A ;
+fun jerky_N : N ;
+fun jeroboam_N : N ;
+fun jerry_N : N ;
+fun jerry_builder_N : N ;
+fun jerry_building_N : N ;
+fun jerry_built_A : A ;
+fun jersey_N : N ;
+fun jest_N : N ;
+fun jest_V : V ;
+fun jester_N : N ;
+fun jesuit_N : N ;
+fun jesuitical_A : A ;
+fun jet_N : N ;
+fun jet_V : V ;
+fun jet_black_A : A ;
+fun jet_propelled_A : A ;
+fun jetliner_N : N ;
+fun jetsam_N : N ;
+fun jettison_V : V ;
+fun jetty_N : N ;
+fun jewel_N : N ;
+fun jewel_V : V ;
+fun jeweler_N : N ;
+fun jeweller_N : N ;
+fun jewellery_N : N ;
+fun jewelry_N : N ;
+fun jewelweed_N : N ;
+fun jewess_N : N ;
+fun jewfish_N : N ;
+fun jewish_A : A ;
+fun jezebel_N : N ;
+fun jiao_N : N ;
+fun jib_N : N ;
+fun jib_V : V ;
+fun jib_boom_N : N ;
+fun jibboom_N : N ;
+fun jibe_N : N ;
+fun jibe_V : V ;
+fun jiffy_N : N ;
+fun jig_N : N ;
+fun jig_V : V ;
+fun jigger_N : N ;
+fun jiggered_A : A ;
+fun jiggermast_N : N ;
+fun jiggery_pokery_N : N ;
+fun jiggle_N : N ;
+fun jiggle_V : V ;
+fun jigsaw_N : N ;
+fun jihad_N : N ;
+fun jihadi_A : A ;
+fun jilt_N : N ;
+fun jilt_V : V ;
+fun jim_crow_N : N ;
+fun jimdandy_N : N ;
+fun jimmies_N : N ;
+fun jimmy_N : N ;
+fun jimsonweed_N : N ;
+fun jingle_N : N ;
+fun jingle_V : V ;
+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 jinrikisha_N : N ;
+fun jinx_N : N ;
+fun jiqui_N : N ;
+fun jird_N : N ;
+fun jitney_N : N ;
+fun jitter_N : N ;
+fun jitterbug_N : N ;
+fun jitteriness_N : N ;
+fun jittering_A : A ;
+fun jitters_N : N ;
+fun jittery_A : A ;
+fun jive_N : N ;
+fun jive_V : V ;
+fun job_N : N ;
+fun job_V : V ;
+fun jobber_N : N ;
+fun jobbery_N : N ;
+fun jobcentre_N : N ;
+fun jobholder_N : N ;
+fun jockey_N : N ;
+fun jockey_V : V ;
+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 jodhpur_N : N ;
+fun jodhpurs_N : N ;
+fun jog_N : N ;
+fun jog_V : V ;
+fun jog_trot_N : N ;
+fun jogger_N : N ;
+fun jogging_N : N ;
+fun joggle_N : N ;
+fun joggle_V : V ;
+fun john_bull_N : N ;
+fun johnnycake_N : N ;
+fun joie_de_vivre_N : N ;
+fun join_N : N ;
+fun join_V : V ;
+fun joiner_N : N ;
+fun joinery_N : N ;
+fun joining_N : N ;
+fun joint_A : A ;
+fun joint_N : N ;
+fun joint_V : V ;
+fun jointer_N : N ;
+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_N : N ;
+fun jolly_V : V ;
+fun jollyboat_N : N ;
+fun jolt_N : N ;
+fun jolt_V : V ;
+fun jolty_A : A ;
+fun jonah_N : N ;
+fun jonquil_N : N ;
+fun jorum_N : N ;
+fun joss_N : N ;
+fun joss_house_N : N ;
+fun joss_stick_N : N ;
+fun jostle_N : N ;
+fun jostle_V : V ;
+fun jot_N : N ;
+fun jot_V : V ;
+fun jotter_N : N ;
+fun jotting_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 jovial_A : A ;
+fun joviality_N : N ;
+fun jowl_N : N ;
+fun jowly_A : A ;
+fun joy_N : N ;
+fun joy_V : V ;
+fun joy_ride_N : N ;
+fun joy_stick_N : N ;
+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 joyride_N : N ;
+fun joystick_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 judder_V : V ;
+fun judge_N : N ;
+fun judge_V : V ;
+fun judgement_N : N ;
+fun judgeship_N : N ;
+fun judgment_N : N ;
+fun judgmental_A : A ;
+fun judicable_A : A ;
+fun judicature_N : N ;
+fun judicial_A : A ;
+fun judiciary_N : N ;
+fun judicious_A : A ;
+fun judiciousness_N : N ;
+fun judo_N : N ;
+fun jug_N : N ;
+fun jug_V : V ;
+fun jugale_N : N ;
+fun jugful_N : N ;
+fun juggernaut_N : N ;
+fun juggle_N : N ;
+fun juggle_V : V ;
+fun juggler_N : N ;
+fun jugglery_N : N ;
+fun jugular_A : A ;
+fun jugular_N : N ;
+fun juice_N : N ;
+fun juice_V : V ;
+fun juiceless_A : A ;
+fun juiciness_N : N ;
+fun juicy_A : A ;
+fun juju_N : N ;
+fun jujube_N : N ;
+fun jujutsu_N : N ;
+fun juke_N : N ;
+fun jukebox_N : N ;
+fun julep_N : N ;
+fun julian_A : A ;
+fun julienne_N : N ;
+fun jumble_N : N ;
+fun jumble_V : V ;
+fun jumble_sale_N : N ;
+fun jumbo_A : A ;
+fun jumbojet_N : N ;
+fun jumentous_A : A ;
+fun jump_N : N ;
+fun jump_V : V ;
+fun jumped_up_A : A ;
+fun jumper_N : N ;
+fun jumpiness_N : N ;
+fun jumping_N : N ;
+fun jumpstart_N : N ;
+fun jumpy_A : A ;
+fun junco_N : N ;
+fun junction_N : N ;
+fun juncture_N : N ;
+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_V : V ;
+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 junkyard_N : N ;
+fun junoesque_A : A ;
+fun junta_N : N ;
+fun jupati_N : N ;
+fun jural_A : A ;
+fun juridical_A : A ;
+fun jurisdiction_N : N ;
+fun jurisdictional_A : A ;
+fun jurisprudence_N : N ;
+fun jurisprudential_A : A ;
+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_V : V ;
+fun juryman_N : N ;
+fun just_A : A ;
+fun just_Adv : Adv ;
+fun justice_N : N ;
+fun justiciar_N : N ;
+fun justiciary_N : N ;
+fun justifiable_A : A ;
+fun justification_N : N ;
+fun justificative_A : A ;
+fun justify_V : V ;
+fun justness_N : N ;
+fun jut_V : V ;
+fun jute_N : N ;
+fun juvenescence_N : N ;
+fun juvenile_A : A ;
+fun juvenile_N : N ;
+fun juxtapose_V : V ;
+fun juxtaposition_N : N ;
+fun kabbalism_N : N ;
+fun kabob_N : N ;
+fun kachina_N : N ;
+fun kaffir_N : N ;
+fun kaffiyeh_N : N ;
+fun kafkaesque_A : A ;
+fun kahikatea_N : N ;
+fun kail_N : N ;
+fun kainite_N : N ;
+fun kaiser_N : N ;
+fun kakemono_N : N ;
+fun kaki_N : N ;
+fun kalansuwa_N : N ;
+fun kale_N : N ;
+fun kaleidoscope_N : N ;
+fun kaleidoscopic_A : A ;
+fun kalemia_N : N ;
+fun kaliuresis_N : N ;
+fun kalmia_N : N ;
+fun kalumpang_N : N ;
+fun kameez_N : N ;
+fun kamikaze_N : N ;
+fun kampong_N : N ;
+fun kampuchean_A : A ;
+fun kampuchean_N : N ;
+fun kanamycin_N : N ;
+fun kanchil_N : N ;
+fun kangaroo_N : N ;
+fun kanzu_N : N ;
+fun kaoliang_N : N ;
+fun kaolin_N : N ;
+fun kaolinite_N : N ;
+fun kaon_N : N ;
+fun kapeika_N : N ;
+fun kaph_N : N ;
+fun kapok_N : N ;
+fun kappa_N : N ;
+fun kapuka_N : N ;
+fun kaput_A : A ;
+fun karaoke_N : N ;
+fun karat_N : N ;
+fun karate_N : N ;
+fun karma_N : N ;
+fun karyokinesis_N : N ;
+fun karyokinetic_A : A ;
+fun karyolymph_N : N ;
+fun karyolysis_N : N ;
+fun karyotype_N : N ;
+fun kasbah_N : N ;
+fun kasha_N : N ;
+fun kashmiri_A : A ;
+fun kashmiri_N : N ;
+fun kat_N : N ;
+fun katabatic_A : A ;
+fun katamorphism_N : N ;
+fun katharobe_N : N ;
+fun katharobic_A : A ;
+fun katharometer_N : N ;
+fun katydid_N : N ;
+fun kauri_N : N ;
+fun kava_N : N ;
+fun kawaka_N : N ;
+fun kayak_N : N ;
+fun kazoo_N : N ;
+fun kea_N : N ;
+fun kebab_N : N ;
+fun kedgeree_N : N ;
+fun keel_N : N ;
+fun keel_V : V ;
+fun keelboat_N : N ;
+fun keelson_N : N ;
+fun keen_A : A ;
+fun keen_N : N ;
+fun keen_V : V ;
+fun keenness_N : N ;
+fun keep_N : N ;
+fun keep_keeped_V : V ;
+fun keep_kept_V : V ;
+fun keeper_N : N ;
+fun keeping_N : N ;
+fun keepsake_N : N ;
+fun keeshond_N : N ;
+fun keg_N : N ;
+fun keloid_N : N ;
+fun kelp_N : N ;
+fun kelpie_N : N ;
+fun kelpy_N : N ;
+fun kelt_N : N ;
+fun kelvin_N : N ;
+fun kempt_A : A ;
+fun ken_N : N ;
+fun ken_V : V ;
+fun kenaf_N : N ;
+fun kennel_N : N ;
+fun kennel_V : V ;
+fun kenning_N : N ;
+fun kenyan_A : A ;
+fun kenyan_N : N ;
+fun kepi_N : N ;
+fun keratalgia_N : N ;
+fun keratectasia_N : N ;
+fun keratin_N : N ;
+fun keratinization_N : N ;
+fun keratitis_N : N ;
+fun keratoacanthoma_N : N ;
+fun keratocele_N : N ;
+fun keratoconjunctivitis_N : N ;
+fun keratoconus_N : N ;
+fun keratoderma_N : N ;
+fun keratohyalin_N : N ;
+fun keratoiritis_N : N ;
+fun keratomalacia_N : N ;
+fun keratomycosis_N : N ;
+fun keratonosis_N : N ;
+fun keratonosus_N : N ;
+fun keratoplasty_N : N ;
+fun keratoscleritis_N : N ;
+fun keratoscope_N : N ;
+fun keratoscopy_N : N ;
+fun keratosis_N : N ;
+fun keratotomy_N : N ;
+fun kerb_N : N ;
+fun kerbstone_N : N ;
+fun kerchief_N : N ;
+fun kerion_N : N ;
+fun kern_N : N ;
+fun kernel_N : N ;
+fun kernicterus_N : N ;
+fun kernite_N : N ;
+fun kerosene_N : N ;
+fun kerygma_N : N ;
+fun kestrel_N : N ;
+fun ketamine_N : N ;
+fun ketch_N : N ;
+fun ketchup_N : N ;
+fun keteleeria_N : N ;
+fun ketembilla_N : N ;
+fun ketoacidosis_N : N ;
+fun ketohexose_N : N ;
+fun ketone_N : N ;
+fun ketonemia_N : N ;
+fun ketonuria_N : N ;
+fun ketoprofen_N : N ;
+fun ketorolac_N : N ;
+fun ketose_N : N ;
+fun ketosteroid_N : N ;
+fun kettle_N : N ;
+fun kettledrum_N : N ;
+fun keurboom_N : N ;
+fun key_A : A ;
+fun key_N : N ;
+fun key_V : V ;
+fun keyboard_N : N ;
+fun keyboardist_N : N ;
+fun keycard_N : N ;
+fun keyhole_N : N ;
+fun keyless_A : A ;
+fun keynote_N : N ;
+fun keyring_N : N ;
+fun keystone_N : N ;
+fun keystroke_N : N ;
+fun keyword_N : N ;
+fun kg_N : N ;
+fun kgb_N : N ;
+fun khadi_N : N ;
+fun khaki_A : A ;
+fun khaki_N : N ;
+fun khakis_N : N ;
+fun khalka_N : N ;
+fun khamsin_N : N ;
+fun khan_N : N ;
+fun khanate_N : N ;
+fun khimar_N : N ;
+fun khmer_N : N ;
+fun khoum_N : N ;
+fun khukuri_N : N ;
+fun kiang_N : N ;
+fun kibble_N : N ;
+fun kibbutz_N : N ;
+fun kibbutznik_N : N ;
+fun kibe_N : N ;
+fun kibibit_N : N ;
+fun kibitzer_N : N ;
+fun kick_N : N ;
+fun kick_V : V ;
+fun kick_start_N : N ;
+fun kick_starter_N : N ;
+fun kickback_N : N ;
+fun kicker_N : N ;
+fun kickoff_N : N ;
+fun kicksorter_N : N ;
+fun kickstand_N : N ;
+fun kid_N : N ;
+fun kid_V : V ;
+fun kiddy_N : N ;
+fun kidnap_V : V ;
+fun kidnapper_N : N ;
+fun kidnapping_N : N ;
+fun kidney_N : N ;
+fun kidney_bean_N : N ;
+fun kieserite_N : N ;
+fun kike_N : N ;
+fun kilderkin_N : N ;
+fun kill_N : N ;
+fun kill_V : V ;
+fun killable_A : A ;
+fun killdeer_N : N ;
+fun killer_N : N ;
+fun killifish_N : N ;
+fun killing_N : N ;
+fun killingly_Adv : Adv ;
+fun killjoy_N : N ;
+fun kiln_N : N ;
+fun kilo_N : N ;
+fun kilobit_N : N ;
+fun kilobyte_N : N ;
+fun kilocycle_N : N ;
+fun kilogram_N : N ;
+fun kilogramme_N : N ;
+fun kilohertz_N : N ;
+fun kiloliter_N : N ;
+fun kilolitre_N : N ;
+fun kilometer_N : N ;
+fun kilometre_N : N ;
+fun kiloton_N : N ;
+fun kilovolt_N : N ;
+fun kilowatt_N : N ;
+fun kilt_N : N ;
+fun kilter_N : N ;
+fun kimberlite_N : N ;
+fun kimono_N : N ;
+fun kin_N : N ;
+fun kina_N : N ;
+fun kinanesthesia_N : N ;
+fun kinase_N : N ;
+fun kind_A : A ;
+fun kind_N : N ;
+fun kind_hearted_A : A ;
+fun kinda_Adv : Adv ;
+fun kindergarten_N : N ;
+fun kindhearted_A : A ;
+fun kindheartedness_N : N ;
+fun kindle_V : V ;
+fun kindliness_N : N ;
+fun kindling_N : N ;
+fun kindly_A : A ;
+fun kindness_N : N ;
+fun kindred_A : A ;
+fun kindred_N : N ;
+fun kinematics_N : N ;
+fun kinescope_N : N ;
+fun kinesiology_N : N ;
+fun kinesis_N : N ;
+fun kinesthesia_N : N ;
+fun kinesthesis_N : N ;
+fun kinesthetic_A : A ;
+fun kinesthetically_Adv : Adv ;
+fun kinetic_A : A ;
+fun kinetics_N : N ;
+fun king_N : N ;
+fun king_size_A : A ;
+fun king_sized_A : A ;
+fun kingbird_N : N ;
+fun kingbolt_N : N ;
+fun kingcup_N : N ;
+fun kingdom_N : N ;
+fun kingfish_N : N ;
+fun kingfisher_N : N ;
+fun kinglet_N : N ;
+fun kinglike_A : A ;
+fun kingly_A : A ;
+fun kingmaker_N : N ;
+fun kingpin_N : N ;
+fun kingship_N : N ;
+fun kingwood_N : N ;
+fun kinin_N : N ;
+fun kink_N : N ;
+fun kink_V : V ;
+fun kinkajou_N : N ;
+fun kinky_A : A ;
+fun kino_N : N ;
+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 kipper_N : N ;
+fun kirk_N : N ;
+fun kirpan_N : N ;
+fun kirsch_N : N ;
+fun kirtle_N : N ;
+fun kishke_N : N ;
+fun kismet_N : N ;
+fun kiss_N : N ;
+fun kiss_V : V ;
+fun kisser_N : N ;
+fun kit_N : N ;
+fun kit_V : V ;
+fun kitbag_N : N ;
+fun kitchen_N : N ;
+fun kitchenette_N : N ;
+fun kitchenware_N : N ;
+fun kite_N : N ;
+fun kite_balloon_N : N ;
+fun kith_N : N ;
+fun kitsch_A : A ;
+fun kitsch_N : N ;
+fun kittee_N : N ;
+fun kitten_N : N ;
+fun kittenish_A : A ;
+fun kittiwake_N : N ;
+fun kitty_N : N ;
+fun kiwi_N : N ;
+fun klavern_N : N ;
+fun klaxon_N : N ;
+fun klebsiella_N : N ;
+fun kleenex_N : N ;
+fun kleptomania_N : N ;
+fun kleptomaniac_N : N ;
+fun klondike_N : N ;
+fun kludge_N : N ;
+fun klutz_N : N ;
+fun klystron_N : N ;
+fun km_N : N ;
+fun knack_N : N ;
+fun knacker_N : N ;
+fun knackered_A : A ;
+fun knackwurst_N : N ;
+fun knap_V : V ;
+fun knapsack_N : N ;
+fun knapweed_N : N ;
+fun knave_N : N ;
+fun knavery_N : N ;
+fun knavish_A : A ;
+fun knawel_N : N ;
+fun knead_V : V ;
+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_N : N ;
+fun kneel_V : V ;
+fun kneeler_N : N ;
+fun knell_N : N ;
+fun knesset_N : N ;
+fun knick_knack_N : N ;
+fun knickknack_N : N ;
+fun knife_N : N ;
+fun knife_V : V ;
+fun knife_edge_N : N ;
+fun knifelike_A : A ;
+fun knight_N : N ;
+fun knight_V : V ;
+fun knight_errant_N : N ;
+fun knighthood_N : N ;
+fun knightly_A : A ;
+fun kniphofia_N : N ;
+fun knish_N : N ;
+fun knit_N : N ;
+fun knit_V : V ;
+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 knobby_A : A ;
+fun knobkerrie_N : N ;
+fun knock_N : N ;
+fun knock_V : V ;
+fun knock_kneed_A : A ;
+fun knock_on_N : N ;
+fun knockabout_A : A ;
+fun knockabout_N : N ;
+fun knockdown_A : A ;
+fun knockdown_N : N ;
+fun knocker_N : N ;
+fun knockoff_N : N ;
+fun knockout_A : A ;
+fun knockout_N : N ;
+fun knoll_N : N ;
+fun knot_N : N ;
+fun knot_V : V ;
+fun knotgrass_N : N ;
+fun knothole_N : N ;
+fun knotty_A : A ;
+fun knout_N : N ;
+fun know_N : N ;
+fun know_V : V ;
+fun know_all_N : N ;
+fun know_how_N : N ;
+fun knowable_A : A ;
+fun knower_N : N ;
+fun knowing_N : N ;
+fun knowingness_N : N ;
+fun knowledge_N : N ;
+fun knowledgeability_N : N ;
+fun knowledgeable_A : A ;
+fun knuckle_N : N ;
+fun knuckle_V : V ;
+fun knuckleball_N : N ;
fun ko_N : N ;
+fun koala_N : N ;
+fun koan_N : N ;
+fun kob_N : N ;
+fun kobo_N : N ;
+fun kohl_N : N ;
+fun kohleria_N : N ;
+fun kohlrabi_N : N ;
+fun koinonia_N : N ;
+fun kola_N : N ;
+fun kola_nut_N : N ;
+fun kolkhoz_N : N ;
+fun kolkhoznik_N : N ;
+fun komondor_N : N ;
+fun konini_N : N ;
+fun kook_N : N ;
+fun kookaburra_N : N ;
+fun kopeck_N : N ;
+fun kopek_N : N ;
+fun kopiyka_N : N ;
+fun kopje_N : N ;
+fun koppie_N : N ;
+fun koran_N : N ;
+fun koranic_A : A ;
+fun korean_A : A ;
+fun korean_N : N ;
+fun koruna_N : N ;
+fun kos_N : N ;
+fun kosher_A : A ;
+fun kosher_N : N ;
+fun koto_N : N ;
+fun kotow_N : N ;
+fun kotow_V : V ;
+fun koumiss_N : N ;
+fun kowhai_N : N ;
+fun kowtow_N : N ;
+fun kowtow_V : V ;
+fun kraal_N : N ;
+fun kraft_N : N ;
+fun krait_N : N ;
+fun kraurosis_N : N ;
+fun kremlin_N : N ;
+fun krigia_N : N ;
+fun krill_N : N ;
+fun kris_N : N ;
+fun krona_N : N ;
+fun krone_N : N ;
+fun kroon_N : N ;
+fun krubi_N : N ;
+fun krummhorn_N : N ;
+fun krypton_N : N ;
+fun kudos_N : N ;
+fun kudu_N : N ;
+fun kudzu_N : N ;
+fun kumis_N : N ;
+fun kumquat_N : N ;
+fun kung_fu_N : N ;
+fun kunzite_N : N ;
+fun kurrajong_N : N ;
+fun kurta_N : N ;
+fun kuru_N : N ;
+fun kurus_N : N ;
+fun kuvasz_N : N ;
+fun kuwaiti_A : A ;
+fun kuwaiti_N : N ;
+fun kvass_N : N ;
+fun kvetch_N : N ;
+fun kw_N : N ;
+fun kwacha_N : N ;
+fun kwanza_N : N ;
+fun kwashiorkor_N : N ;
+fun kwela_N : N ;
+fun kyanite_N : N ;
+fun kyat_N : N ;
+fun kylie_N : N ;
+fun kylix_N : N ;
+fun kymograph_N : N ;
+fun kyphosis_N : N ;
+fun kümmel_N : N ;
+fun l_plate_N : N ;
+fun la_N : N ;
+fun la_di_da_A : A ;
+fun laager_N : N ;
+fun lab_N : N ;
+fun labdanum_N : N ;
+fun label_N : N ;
+fun label_labeled_V : V ;
+fun label_labelled_V : V ;
+fun labeled_A : A ;
+fun labetalol_N : N ;
+fun labial_A : A ;
+fun labiate_A : A ;
+fun labile_A : A ;
+fun labium_N : N ;
+fun labor_N : N ;
+fun labor_V : V ;
+fun laboratory_N : N ;
+fun labored_A : A ;
+fun laborer_N : N ;
+fun laborious_A : A ;
+fun laboriousness_N : N ;
+fun laborsaving_A : A ;
+fun labour_N : N ;
+fun labour_V : V ;
+fun labour_saving_A : A ;
+fun labourer_N : N ;
+fun labourite_N : N ;
+fun laburnum_N : N ;
+fun labyrinth_N : N ;
+fun labyrinthine_A : A ;
+fun labyrinthitis_N : N ;
+fun labyrinthodont_N : N ;
+fun lac_N : N ;
+fun lace_N : N ;
+fun lace_V : V ;
+fun lacebark_N : N ;
+fun lacer_N : N ;
+fun lacerate_A : A ;
+fun lacerate_V : V ;
+fun laceration_N : N ;
+fun lacewing_N : N ;
+fun lacework_N : N ;
+fun lachrymal_A : A ;
+fun lachrymose_A : A ;
+fun lacing_N : N ;
+fun lack_N : N ;
+fun lack_V : V ;
+fun lack_lustre_A : A ;
+fun lackadaisical_A : A ;
+fun lackey_N : N ;
+fun lackluster_A : A ;
+fun laconic_A : A ;
+fun laconically_Adv : Adv ;
+fun laconicism_N : N ;
+fun laconism_N : N ;
+fun lacquer_N : N ;
+fun lacquer_V : V ;
+fun lacquerware_N : N ;
+fun lacrimal_A : A ;
+fun lacrimation_N : N ;
+fun lacrimatory_A : A ;
+fun lacrosse_N : N ;
+fun lactalbumin_N : N ;
+fun lactase_N : N ;
+fun lactate_N : N ;
+fun lactation_N : N ;
+fun lacteal_A : A ;
+fun lacteal_N : N ;
+fun lactic_A : A ;
+fun lactifuge_N : N ;
+fun lactobacillus_N : N ;
+fun lactogen_N : N ;
+fun lactogenic_A : A ;
+fun lactose_N : N ;
+fun lactosuria_N : N ;
+fun lacuna_N : N ;
+fun lacustrine_A : A ;
+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_V : V ;
+fun laden_A : A ;
+fun lading_N : N ;
+fun ladle_N : N ;
+fun ladle_V : V ;
+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 ladybug_N : N ;
+fun ladyfinger_N : N ;
+fun ladyfish_N : N ;
+fun ladylike_A : A ;
+fun ladylikeness_N : N ;
+fun ladylove_N : N ;
+fun ladyship_N : N ;
+fun laelia_N : N ;
+fun laetrile_N : N ;
+fun lag_N : N ;
+fun lag_V : V ;
+fun lagan_N : N ;
+fun lager_N : N ;
+fun lagerphone_N : N ;
+fun laggard_N : N ;
+fun lagging_N : N ;
+fun lagniappe_N : N ;
+fun lagomorph_N : N ;
+fun lagoon_N : N ;
+fun lagophthalmos_N : N ;
+fun lahar_N : N ;
+fun laic_A : A ;
+fun laicize_V : V ;
+fun lair_N : N ;
+fun laird_N : N ;
+fun laissez_faire_N : N ;
+fun laity_N : N ;
+fun lake_N : N ;
+fun lakefront_N : N ;
+fun lakeside_N : N ;
+fun lakh_N : N ;
+fun lallation_N : N ;
+fun lally_N : N ;
+fun lam_V : V ;
+fun lama_N : N ;
+fun lamasery_N : N ;
+fun lamb_N : N ;
+fun lamb_V : V ;
+fun lambaste_V : V ;
+fun lambda_N : N ;
+fun lambdacism_N : N ;
+fun lambency_N : N ;
+fun lambent_A : A ;
+fun lambert_N : N ;
+fun lambkin_N : N ;
+fun lamblike_A : A ;
+fun lambrequin_N : N ;
+fun lambskin_N : N ;
+fun lame_A : A ;
+fun lame_V : V ;
+fun lamedh_N : N ;
+fun lamella_N : N ;
+fun lamellibranch_A : A ;
+fun lameness_N : N ;
+fun lament_N : N ;
+fun lament_V : V ;
+fun lamentable_A : A ;
+fun lamentation_N : N ;
+fun lamina_N : N ;
+fun laminar_A : A ;
+fun laminate_N : N ;
+fun laminate_V : V ;
+fun lamination_N : N ;
+fun laminator_N : N ;
+fun laminectomy_N : N ;
+fun laminitis_N : N ;
+fun lamivudine_N : N ;
+fun lammas_N : N ;
+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_V : V ;
+fun lamppost_N : N ;
+fun lamprey_N : N ;
+fun lampshade_N : N ;
+fun lamé_N : N ;
+fun lanai_N : N ;
+fun lanate_A : A ;
+fun lancastrian_A : A ;
+fun lancastrian_N : N ;
+fun lance_N : N ;
+fun lance_V : V ;
+fun lance_corporal_N : N ;
+fun lancelet_N : N ;
+fun lanceolate_A : A ;
+fun lancer_N : N ;
+fun lancers_N : N ;
+fun lancet_N : N ;
+fun lancetfish_N : N ;
+fun lancewood_N : N ;
+fun land_N : N ;
+fun land_V : V ;
+fun land_agent_N : N ;
+fun landau_N : N ;
+fun lander_N : N ;
+fun landfall_N : N ;
+fun landfill_N : N ;
+fun landgrave_N : N ;
+fun landholder_N : N ;
+fun landholding_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 landler_N : N ;
+fun landless_A : A ;
+fun landlocked_A : A ;
+fun landlord_N : N ;
+fun landlubber_N : N ;
+fun landmark_N : N ;
+fun landmass_N : N ;
+fun landmine_N : N ;
+fun landowner_N : N ;
+fun landrover_N : N ;
+fun landscape_N : N ;
+fun landscape_V : V ;
+fun landscaping_N : N ;
+fun landscapist_N : N ;
+fun landside_N : N ;
+fun landslide_N : N ;
+fun landslip_N : N ;
+fun landsman_N : N ;
+fun landward_Adv : Adv ;
+fun lane_N : N ;
+fun langbeinite_N : N ;
+fun langlaufer_N : N ;
+fun langley_N : N ;
+fun langsyne_Adv : Adv ;
+fun langsyne_N : N ;
+fun language_N : N ;
+fun languid_A : A ;
+fun languish_V : V ;
+fun languisher_N : N ;
+fun languor_N : N ;
+fun languorous_A : A ;
+fun langur_N : N ;
+fun lank_A : A ;
+fun lankiness_N : N ;
+fun lanky_A : A ;
+fun lanolin_N : N ;
+fun lanseh_N : N ;
+fun lansoprazole_N : N ;
+fun lantana_N : N ;
+fun lantern_N : N ;
+fun lantern_jawed_A : A ;
+fun lanternfish_N : N ;
+fun lanthanum_N : N ;
+fun lanugo_N : N ;
+fun lanyard_N : N ;
+fun lao_N : N ;
+fun laotian_A : A ;
+fun laotian_N : N ;
+fun lap_N : N ;
+fun lap_V : V ;
+fun lap_dog_N : N ;
+fun laparocele_N : N ;
+fun laparoscope_N : N ;
+fun laparoscopy_N : N ;
+fun laparotomy_N : N ;
+fun lapboard_N : N ;
+fun lapdog_N : N ;
+fun lapel_N : N ;
+fun lapful_N : N ;
+fun lapidarian_A : A ;
+fun lapidary_A : A ;
+fun lapidary_N : N ;
+fun lapin_N : N ;
+fun lapis_lazuli_N : N ;
+fun lappet_N : N ;
+fun lapse_N : N ;
+fun lapse_V : V ;
+fun lapsed_A : A ;
+fun laptop_N : N ;
+fun lapwing_N : N ;
+fun larboard_A : A ;
+fun larboard_N : N ;
+fun larcenist_N : N ;
+fun larceny_N : N ;
+fun larch_N : N ;
+fun lard_N : N ;
+fun lard_V : V ;
+fun larder_N : N ;
+fun large_A : A ;
+fun large_Adv : Adv ;
+fun large_N : N ;
+fun large_V : V ;
+fun large_scale_A : A ;
+fun largemouth_N : N ;
+fun largeness_N : N ;
+fun largess_N : N ;
+fun largesse_N : N ;
+fun larghetto_A : A ;
+fun larghetto_N : N ;
+fun larghissimo_A : A ;
+fun largish_A : A ;
+fun largo_A : A ;
+fun largo_Adv : Adv ;
+fun largo_N : N ;
+fun lari_N : N ;
+fun lariat_N : N ;
+fun larid_N : N ;
+fun lark_N : N ;
+fun lark_V : V ;
+fun larkspur_N : N ;
+fun larn_V : V ;
+fun larva_N : N ;
+fun larvacean_N : N ;
+fun larvacide_N : N ;
+fun larval_A : A ;
+fun larvicide_N : N ;
+fun laryngeal_A : A ;
+fun laryngectomy_N : N ;
+fun laryngismus_N : N ;
+fun laryngitis_N : N ;
+fun laryngopharyngeal_A : A ;
+fun laryngopharyngitis_N : N ;
+fun laryngopharynx_N : N ;
+fun laryngoscope_N : N ;
+fun laryngospasm_N : N ;
+fun laryngostenosis_N : N ;
+fun laryngotracheobronchitis_N : N ;
+fun larynx_N : N ;
+fun lasagna_N : N ;
+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_up_N : N ;
+fun lasher_N : N ;
+fun lashing_N : N ;
+fun lasiocampid_N : N ;
+fun lass_N : N ;
+fun lassie_N : N ;
+fun lassitude_N : N ;
+fun lasso_N : N ;
+fun lasso_V : V ;
+fun last_A : A ;
+fun last_N : N ;
+fun last_V : V ;
+fun lasting_A : A ;
+fun lastingness_N : N ;
+fun lat_N : N ;
+fun latakia_N : N ;
+fun latanier_N : N ;
+fun latch_N : N ;
+fun latch_V : V ;
+fun latchet_N : N ;
+fun latchkey_N : N ;
+fun latchstring_N : N ;
+fun late_A : A ;
+fun late_Adv : Adv ;
+fun latecomer_N : N ;
+fun lateen_A : A ;
+fun lateen_N : N ;
+fun latency_N : N ;
+fun lateness_N : N ;
+fun latent_A : A ;
+fun later_Adv : Adv ;
+fun lateral_A : A ;
+fun laterality_N : N ;
+fun lateralization_N : N ;
+fun laterite_N : N ;
+fun latest_A : A ;
+fun latest_N : N ;
+fun latex_N : N ;
+fun lath_N : N ;
+fun lathe_N : N ;
+fun lather_N : N ;
+fun lather_V : V ;
+fun lathery_A : A ;
+fun lathi_N : N ;
+fun laticifer_N : N ;
+fun latin_A : A ;
+fun latin_N : N ;
+fun latinate_A : A ;
+fun latinist_N : N ;
+fun latinize_V : V ;
+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 lats_N : N ;
+fun latten_N : N ;
+fun latter_A : A ;
+fun latter_N : N ;
+fun latter_day_A : A ;
+fun lattice_N : N ;
+fun latticed_A : A ;
+fun laud_V : V ;
+fun laudable_A : A ;
+fun laudanum_N : N ;
+fun laudator_N : N ;
+fun laudatory_A : A ;
+fun laugh_N : N ;
+fun laugh_V : V ;
+fun laughable_A : A ;
+fun laugher_N : N ;
+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 launcher_N : N ;
+fun launching_N : N ;
+fun launching_pad_N : N ;
+fun launching_site_N : N ;
+fun launder_V : V ;
+fun launderette_N : N ;
+fun laundering_N : N ;
+fun laundress_N : N ;
+fun laundry_N : N ;
+fun laundryman_N : N ;
+fun laundrywoman_N : N ;
+fun laureate_A : A ;
+fun laureate_N : N ;
+fun laurel_N : N ;
+fun laureled_A : A ;
+fun laurelled_A : A ;
+fun laurelwood_N : N ;
+fun lav_N : N ;
+fun lava_N : N ;
+fun lavage_N : N ;
+fun lavalava_N : N ;
+fun lavaliere_N : N ;
+fun lavatory_N : N ;
+fun lave_V : V ;
+fun lavender_A : A ;
+fun lavender_N : N ;
+fun laver_N : N ;
+fun lavish_A : A ;
+fun lavish_V : V ;
+fun lavishness_N : N ;
+fun law_N : N ;
+fun law_abiding_A : A ;
+fun law_officer_N : N ;
+fun lawbreaker_N : N ;
+fun lawful_A : A ;
+fun lawfulness_N : N ;
+fun lawgiver_N : N ;
+fun lawless_A : A ;
+fun lawlessness_N : N ;
+fun lawmaker_N : N ;
+fun lawmaking_N : N ;
+fun lawman_N : N ;
+fun lawn_N : N ;
+fun lawn_mower_N : N ;
+fun lawrencium_N : N ;
+fun lawsuit_N : N ;
+fun lawyer_N : N ;
+fun lawyerbush_N : N ;
+fun lax_A : A ;
+fun laxative_A : A ;
+fun laxative_N : N ;
+fun laxity_N : N ;
+fun laxness_N : N ;
+fun lay_A : A ;
+fun lay_N : N ;
+fun lay_figure_N : N ;
+fun lay_laid_V : V ;
+fun lay_layed_V : V ;
+fun lay_off_N : N ;
+fun lay_out_N : N ;
+fun layabout_N : N ;
+fun layby_N : N ;
+fun layer_N : N ;
+fun layer_V : V ;
+fun layer_cake_N : N ;
+fun layette_N : N ;
+fun laying_N : N ;
+fun layman_N : N ;
+fun layoff_N : N ;
+fun layout_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 laze_V : V ;
+fun laziness_N : N ;
+fun lazy_A : A ;
+fun lazybones_N : N ;
+fun lb_N : N ;
+fun lea_N : N ;
+fun leach_N : N ;
+fun leach_V : V ;
+fun lead_N : N ;
+fun lead_in_N : N ;
+fun lead_leaded_V : V ;
+fun lead_led_V : V ;
+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_N : N ;
+fun leading_rein_N : N ;
+fun leadplant_N : N ;
+fun leadwort_N : N ;
+fun leaf_N : N ;
+fun leaf_V : V ;
+fun leaf_bud_N : N ;
+fun leaf_mould_N : N ;
+fun leafed_A : A ;
+fun leafhopper_N : N ;
+fun leafless_A : A ;
+fun leaflet_N : N ;
+fun leaflike_A : A ;
+fun leafy_A : A ;
+fun league_N : N ;
+fun league_V : V ;
+fun leak_N : N ;
+fun leak_V : V ;
+fun leakage_N : N ;
+fun leaker_N : N ;
+fun leakiness_N : N ;
+fun leakproof_A : A ;
+fun leaky_A : A ;
+fun leal_A : A ;
+fun lean_A : A ;
+fun lean_N : N ;
+fun lean_V : V ;
+fun lean_to_N : N ;
+fun leaner_N : N ;
+fun leaning_N : N ;
+fun leanness_N : N ;
+fun leap_N : N ;
+fun leap_leaped_leaped_V : V ;
+fun leap_leaped_lept_V : V ;
+fun leap_lept_leaped_V : V ;
+fun leap_lept_lept_V : V ;
+fun leap_year_N : N ;
+fun leapfrog_N : N ;
+fun leapfrog_V : V ;
+fun learn_V : V ;
+fun learner_N : N ;
+fun learning_N : N ;
+fun lease_N : N ;
+fun lease_V : V ;
+fun lease_lend_N : N ;
+fun leasehold_A : A ;
+fun leasehold_N : N ;
+fun leaseholder_N : N ;
+fun leash_N : N ;
+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 leatherjacket_N : N ;
+fun leatherleaf_N : N ;
+fun leatherneck_N : N ;
+fun leatherwood_N : N ;
+fun leatherwork_N : N ;
+fun leathery_A : A ;
+fun leave_N : N ;
+fun leave_leaved_V : V ;
+fun leave_left_V : V ;
+fun leave_taking_N : N ;
+fun leaven_N : N ;
+fun leaven_V : V ;
+fun lecanopteris_N : N ;
+fun lecanora_N : N ;
+fun lecher_N : N ;
+fun lecherous_A : A ;
+fun lecherousness_N : N ;
+fun lechery_N : N ;
+fun lechwe_N : N ;
+fun lecithin_N : N ;
+fun lectern_N : N ;
+fun lectin_N : N ;
+fun lector_N : N ;
+fun lecture_N : N ;
+fun lecture_V : V ;
+fun lecturer_N : N ;
+fun lectureship_N : N ;
+fun lederhosen_N : N ;
+fun ledge_N : N ;
+fun ledger_N : N ;
+fun lee_N : N ;
+fun leech_N : N ;
+fun leek_N : N ;
+fun leer_N : N ;
+fun leer_V : V ;
+fun leery_A : A ;
+fun lees_N : N ;
+fun leeward_A : A ;
+fun leeward_Adv : Adv ;
+fun leeward_N : N ;
+fun leeway_N : N ;
+fun leflunomide_N : N ;
+fun left_A : A ;
+fun left_N : N ;
+fun left_hand_A : A ;
+fun left_handed_A : A ;
+fun left_of_Prep : Prep ;
+fun left_wing_N : N ;
+fun left_winger_N : N ;
+fun leftish_A : A ;
+fun leftism_N : N ;
+fun leftist_A : A ;
+fun leftist_N : N ;
+fun leftmost_A : A ;
+fun leftover_A : A ;
+fun leftover_N : N ;
+fun leftovers_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 legalese_N : N ;
+fun legalisation_N : N ;
+fun legalism_N : N ;
+fun legalistic_A : A ;
+fun legality_N : N ;
+fun legalization_N : N ;
+fun legalize_V : V ;
+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 legionnaire_N : N ;
+fun legislate_V : V ;
+fun legislation_N : N ;
+fun legislative_A : A ;
+fun legislator_N : N ;
+fun legislatorship_N : N ;
+fun legislature_N : N ;
+fun legitimacy_N : N ;
+fun legitimate_A : A ;
+fun legitimation_N : N ;
+fun legitimatize_V : V ;
+fun legitimize_V : V ;
+fun legless_A : A ;
+fun leglike_A : A ;
+fun legs_N : N ;
+fun legume_N : N ;
+fun leguminous_A : A ;
+fun lei_N : N ;
+fun leiomyoma_N : N ;
+fun leiomyosarcoma_N : N ;
+fun leishmaniasis_N : N ;
+fun leister_N : N ;
+fun leisure_N : N ;
+fun leisured_A : A ;
+fun leisureliness_N : N ;
+fun leisurely_A : A ;
+fun leisurely_Adv : Adv ;
+fun leitmotiv_N : N ;
+fun lek_N : N ;
+fun lekvar_N : N ;
+fun lemma_N : N ;
+fun lemming_N : N ;
+fun lemniscus_N : N ;
+fun lemon_N : N ;
+fun lemonade_N : N ;
+fun lemongrass_N : N ;
+fun lemonwood_N : N ;
+fun lemony_A : A ;
+fun lempira_N : N ;
+fun lemur_N : N ;
+fun lend_lended_V : V ;
+fun lend_lent_V : V ;
+fun lendable_A : A ;
+fun lender_N : N ;
+fun lending_N : N ;
+fun lending_library_N : N ;
+fun length_N : N ;
+fun lengthen_V : V ;
+fun lengthiness_N : N ;
+fun lengthways_A : A ;
+fun lengthways_Adv : Adv ;
+fun lengthwise_A : A ;
+fun lengthwise_Adv : Adv ;
+fun lengthy_A : A ;
+fun lenience_N : N ;
+fun leniency_N : N ;
+fun lenient_A : A ;
+fun lenitive_N : N ;
+fun lenity_N : N ;
+fun lens_N : N ;
+fun lent_N : N ;
+fun lenten_A : A ;
+fun lentic_A : A ;
+fun lenticel_N : N ;
+fun lentil_N : N ;
+fun lentissimo_A : A ;
+fun lento_A : A ;
+fun lento_Adv : Adv ;
+fun leone_N : N ;
+fun leonine_A : A ;
+fun leopard_N : N ;
+fun leopardess_N : N ;
+fun leotard_N : N ;
+fun leper_N : N ;
+fun lepidobotrys_N : N ;
+fun lepidocrocite_N : N ;
+fun lepidolite_N : N ;
+fun lepidomelane_N : N ;
+fun lepidophobia_N : N ;
+fun lepidopterist_N : N ;
+fun lepidopterology_N : N ;
+fun lepidote_A : A ;
+fun lepiota_N : N ;
+fun leporid_N : N ;
+fun leprechaun_N : N ;
+fun leprosy_N : N ;
+fun leprous_A : A ;
+fun leptocephalus_N : N ;
+fun leptomeninges_N : N ;
+fun leptomeningitis_N : N ;
+fun lepton_N : N ;
+fun leptorrhine_A : A ;
+fun leptospira_N : N ;
+fun leptosporangiate_A : A ;
+fun leptosporangium_N : N ;
+fun leptotene_N : N ;
+fun leresis_N : N ;
+fun lerot_N : N ;
+fun lesbian_A : A ;
+fun lesbian_N : N ;
+fun lesbianism_N : N ;
+fun lese_majesty_N : N ;
+fun lesion_N : N ;
+fun less_A : A ;
+fun less_Adv : Adv ;
+fun lessee_N : N ;
+fun lessen_V : V ;
+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_down_N : N ;
+fun let_up_N : N ;
+fun lethal_A : A ;
+fun lethargic_A : A ;
+fun lethargically_Adv : Adv ;
+fun lethargy_N : N ;
+fun letter_N : N ;
+fun letter_box_N : N ;
+fun letter_card_N : N ;
+fun letter_case_N : N ;
+fun lettercard_N : N ;
+fun lettered_A : A ;
+fun letterer_N : N ;
+fun letterhead_N : N ;
+fun lettering_N : N ;
+fun letterman_N : N ;
+fun letterpress_N : N ;
+fun letters_N : N ;
+fun letting_N : N ;
+fun lettuce_N : N ;
+fun letup_N : N ;
+fun leu_N : N ;
+fun leucine_N : N ;
+fun leucocyte_N : N ;
+fun leucocytozoan_N : N ;
+fun leucothoe_N : N ;
+fun leukaemia_N : N ;
+fun leukemia_N : N ;
+fun leukocyte_N : N ;
+fun leukocytosis_N : N ;
+fun leukoderma_N : N ;
+fun leukoencephalitis_N : N ;
+fun leukoma_N : N ;
+fun leukopenia_N : N ;
+fun leukorrhea_N : N ;
+fun lev_N : N ;
+fun levallorphan_N : N ;
+fun levant_V : V ;
+fun levanter_N : N ;
+fun levantine_A : A ;
+fun levantine_N : N ;
+fun levator_N : N ;
+fun levee_N : N ;
+fun level_A : A ;
+fun level_N : N ;
+fun level_headed_A : A ;
+fun level_leveled_V : V ;
+fun level_levelled_V : V ;
+fun leveler_N : N ;
+fun leveller_N : N ;
+fun lever_N : N ;
+fun lever_V : V ;
+fun leverage_N : N ;
+fun leveret_N : N ;
+fun leviathan_N : N ;
+fun levirate_N : N ;
+fun levitate_V : V ;
+fun levitation_N : N ;
+fun levity_N : N ;
+fun levorotary_A : A ;
+fun levorotation_N : N ;
+fun levy_N : N ;
+fun levy_V : V ;
+fun lewd_A : A ;
+fun lewdness_N : N ;
+fun lexeme_N : N ;
+fun lexical_A : A ;
+fun lexicalization_N : N ;
+fun lexicalized_A : A ;
+fun lexicographer_N : N ;
+fun lexicographic_A : A ;
+fun lexicography_N : N ;
+fun lexicology_N : N ;
+fun lexicon_N : N ;
+fun lexicostatistic_A : A ;
+fun lexicostatistics_N : N ;
+fun lexis_N : N ;
+fun ley_N : N ;
+fun li_N : N ;
+fun liabilities_N : N ;
+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 libation_N : N ;
+fun libel_N : N ;
+fun libel_V : V ;
+fun libellous_A : A ;
+fun liberal_A : A ;
+fun liberal_N : N ;
+fun liberalisation_N : N ;
+fun liberalism_N : N ;
+fun liberalistic_A : A ;
+fun liberality_N : N ;
+fun liberalization_N : N ;
+fun liberalize_V : V ;
+fun liberate_V : V ;
+fun liberation_N : N ;
+fun liberator_N : N ;
+fun liberian_A : A ;
+fun liberian_N : N ;
+fun libertarian_N : N ;
+fun libertarianism_N : N ;
+fun libertine_N : N ;
+fun liberty_N : N ;
+fun libidinal_A : A ;
+fun libidinous_A : A ;
+fun libido_N : N ;
+fun librarian_N : N ;
+fun librarianship_N : N ;
+fun library_N : N ;
+fun libration_N : N ;
+fun librettist_N : N ;
+fun libretto_N : N ;
+fun libyan_A : A ;
+fun libyan_N : N ;
+fun licence_N : N ;
+fun licence_V : V ;
+fun license_N : N ;
+fun license_V : V ;
+fun licensee_N : N ;
+fun licenser_N : N ;
+fun licentiate_N : N ;
+fun licentious_A : A ;
+fun licentiousness_N : N ;
+fun lichee_N : N ;
+fun lichen_N : N ;
+fun lichgate_N : N ;
+fun lichi_N : N ;
+fun licit_A : A ;
+fun licitness_N : N ;
+fun lick_N : N ;
+fun lick_V : V ;
+fun licking_N : N ;
+fun licorice_N : N ;
+fun lid_N : N ;
+fun lidar_N : N ;
+fun lidded_A : A ;
+fun lidless_A : A ;
+fun lido_N : N ;
+fun lie_N : N ;
+fun lie_abed_N : N ;
+fun lie_detector_N : N ;
+fun lie_in_N : N ;
+fun lie_lay_V : V ;
+fun lie_lied_V : V ;
+fun liebfraumilch_N : N ;
+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 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 lifesaving_N : N ;
+fun lifetime_N : N ;
+fun lifework_N : N ;
+fun lift_N : N ;
+fun lift_V : V ;
+fun lift_off_N : N ;
+fun liftman_N : N ;
+fun liftoff_N : N ;
+fun ligament_N : N ;
+fun ligand_N : N ;
+fun ligation_N : N ;
+fun ligature_N : N ;
+fun liger_N : N ;
+fun light_A : A ;
+fun light_Adv : Adv ;
+fun light_N : N ;
+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_lighted_V : V ;
+fun light_lit_V : V ;
+fun light_minded_A : A ;
+fun light_mindedness_N : N ;
+fun light_o'_love_N : N ;
+fun lighten_lightened_V : V ;
+fun lighten_lightenned_V : V ;
+fun lightening_N : N ;
+fun lighter_N : N ;
+fun lighter_V : V ;
+fun lighterage_N : N ;
+fun lighterman_N : N ;
+fun lightheadedness_N : N ;
+fun lighthouse_N : N ;
+fun lighting_N : N ;
+fun lighting_up_A : A ;
+fun lightless_A : A ;
+fun lightness_N : N ;
+fun lightning_N : N ;
+fun lightning_conductor_N : N ;
+fun lightning_rod_N : N ;
+fun lightproof_A : A ;
+fun lightship_N : N ;
+fun lightsome_A : A ;
+fun lightsomeness_N : N ;
+fun lightweight_A : A ;
+fun lightweight_N : N ;
+fun lightwood_N : N ;
+fun ligne_N : N ;
+fun ligneous_A : A ;
+fun lignin_N : N ;
+fun lignite_N : N ;
+fun lignosae_N : N ;
+fun lignum_N : N ;
+fun ligule_N : N ;
+fun likable_A : A ;
+fun like_A : A ;
+fun like_Adv : Adv ;
+fun like_N : N ;
+fun like_Prep : Prep ;
+fun like_V : V ;
+fun like_minded_A : A ;
+fun likeable_A : A ;
+fun likelihood_N : N ;
+fun likely_A : A ;
+fun liken_V : V ;
+fun likeness_N : N ;
+fun likening_N : N ;
+fun likewise_Adv : Adv ;
+fun liking_N : N ;
+fun likuta_N : N ;
+fun lilac_N : N ;
+fun lilangeni_N : N ;
+fun liliaceous_A : A ;
+fun lilliputian_A : A ;
+fun lilliputian_N : N ;
+fun lilt_N : N ;
+fun lilt_V : V ;
+fun lily_N : N ;
+fun lily_livered_A : A ;
+fun lily_white_A : A ;
+fun lilyturf_N : N ;
+fun limacine_A : A ;
+fun liman_N : N ;
+fun limb_N : N ;
+fun limbed_A : A ;
+fun limber_A : A ;
+fun limber_N : N ;
+fun limber_V : V ;
+fun limbers_N : N ;
+fun limbic_A : A ;
+fun limbless_A : A ;
+fun limbo_N : N ;
+fun limbus_N : N ;
+fun lime_N : N ;
+fun lime_V : V ;
+fun lime_tree_N : N ;
+fun limeade_N : N ;
+fun limejuice_N : N ;
+fun limekiln_N : N ;
+fun limelight_N : N ;
+fun limerick_N : N ;
+fun limestone_N : N ;
+fun limewater_N : N ;
+fun limey_N : N ;
+fun limit_N : N ;
+fun limit_V : V ;
+fun limitation_N : N ;
+fun limitedly_Adv : Adv ;
+fun limiter_N : N ;
+fun limiting_A : A ;
+fun limitless_A : A ;
+fun limn_V : V ;
+fun limnological_A : A ;
+fun limnologist_N : N ;
+fun limnology_N : N ;
+fun limonene_N : N ;
+fun limonite_N : N ;
+fun limousine_N : N ;
+fun limp_A : A ;
+fun limp_N : N ;
+fun limp_V : V ;
+fun limpa_N : N ;
+fun limpet_N : N ;
+fun limpid_A : A ;
+fun limpidity_N : N ;
+fun limpkin_N : N ;
+fun limpness_N : N ;
+fun linage_N : N ;
+fun linalool_N : N ;
+fun linchpin_N : N ;
+fun lincomycin_N : N ;
+fun lindane_N : N ;
+fun linden_N : N ;
+fun linden_tree_N : N ;
+fun lindy_N : N ;
+fun line_N : N ;
+fun line_V : V ;
+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 lineation_N : N ;
+fun linebacker_N : N ;
+fun linecut_N : N ;
+fun linelike_A : A ;
+fun lineman_N : N ;
+fun linen_N : N ;
+fun linen_draper_N : N ;
+fun linendraper_N : N ;
+fun liner_N : N ;
+fun liner_train_N : N ;
+fun linesman_N : N ;
+fun lineup_N : N ;
+fun ling_N : N ;
+fun lingam_N : N ;
+fun lingcod_N : N ;
+fun linger_V : V ;
+fun lingerer_N : N ;
+fun lingerie_N : N ;
+fun lingeringly_Adv : Adv ;
+fun lingo_N : N ;
+fun lingonberry_N : N ;
+fun lingua_franca_N : N ;
+fun lingual_A : A ;
+fun lingual_N : N ;
+fun linguica_N : N ;
+fun linguine_N : N ;
+fun linguist_N : N ;
+fun linguistic_A : A ;
+fun linguistically_Adv : Adv ;
+fun linguistics_N : N ;
+fun lingulate_A : A ;
+fun liniment_N : N ;
+fun linin_N : N ;
+fun lining_N : N ;
+fun link_N : N ;
+fun link_V : V ;
+fun link_up_N : N ;
+fun linkage_N : N ;
+fun linkboy_N : N ;
+fun linkman_N : N ;
+fun links_N : N ;
+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 linstock_N : N ;
+fun lint_N : N ;
+fun lintel_N : N ;
+fun linuron_N : N ;
+fun lion_N : N ;
+fun lion_hearted_A : A ;
+fun lion_hunter_N : N ;
+fun lioness_N : N ;
+fun lionet_N : N ;
+fun lionfish_N : N ;
+fun lionhearted_A : A ;
+fun lionize_V : V ;
+fun lip_N : N ;
+fun lip_read_V : V ;
+fun lip_reading_N : N ;
+fun liparis_N : N ;
+fun lipase_N : N ;
+fun lipectomy_N : N ;
+fun lipemia_N : N ;
+fun lipid_N : N ;
+fun lipidosis_N : N ;
+fun lipless_A : A ;
+fun lipogram_N : N ;
+fun lipoma_N : N ;
+fun lipomatosis_N : N ;
+fun lipophilic_A : A ;
+fun lipoprotein_N : N ;
+fun liposarcoma_N : N ;
+fun liposome_N : N ;
+fun liposuction_N : N ;
+fun lipped_A : A ;
+fun lipreading_N : N ;
+fun lipstick_N : N ;
+fun liquefaction_N : N ;
+fun liquefiable_A : A ;
+fun liquefy_V : V ;
+fun liquescent_A : A ;
+fun liqueur_N : N ;
+fun liquid_A : A ;
+fun liquid_N : N ;
+fun liquidambar_N : N ;
+fun liquidate_V : V ;
+fun liquidation_N : N ;
+fun liquidator_N : N ;
+fun liquidity_N : N ;
+fun liquidize_V : V ;
+fun liquidizer_N : N ;
+fun liquor_N : N ;
+fun liquorice_N : N ;
+fun lira_N : N ;
+fun lisinopril_N : N ;
+fun lisle_N : N ;
+fun lisp_N : N ;
+fun lisp_V : V ;
+fun lisper_N : N ;
+fun lispingly_Adv : Adv ;
+fun lissom_A : A ;
+fun lissome_A : A ;
+fun lissomeness_N : N ;
+fun lissomness_N : N ;
+fun list_N : N ;
+fun list_V : V ;
+fun list_price_N : N ;
+fun listen_listened_V : V ;
+fun listen_listenned_V : V ;
+fun listener_N : N ;
+fun listening_N : N ;
+fun lister_N : N ;
+fun listeria_N : N ;
+fun listeriosis_N : N ;
+fun listing_N : N ;
+fun listless_A : A ;
+fun listlessness_N : N ;
+fun lit_V : V ;
+fun litany_N : N ;
+fun litas_N : N ;
+fun litchee_N : N ;
+fun litchi_N : N ;
+fun literacy_N : N ;
+fun literal_A : A ;
+fun literal_N : N ;
+fun literalism_N : N ;
+fun literalness_N : N ;
+fun literary_A : A ;
+fun literate_A : A ;
+fun literate_N : N ;
+fun literati_N : N ;
+fun literatim_Adv : Adv ;
+fun literature_N : N ;
+fun lithe_A : A ;
+fun lithiasis_N : N ;
+fun lithic_A : A ;
+fun lithium_N : N ;
+fun lithograph_N : N ;
+fun lithograph_V : V ;
+fun lithographer_N : N ;
+fun lithographic_A : A ;
+fun lithography_N : N ;
+fun lithomancer_N : N ;
+fun lithomancy_N : N ;
+fun lithomantic_A : A ;
+fun lithophyte_N : N ;
+fun lithophytic_A : A ;
+fun lithops_N : N ;
+fun lithosphere_N : N ;
+fun lithotomy_N : N ;
+fun lithuresis_N : N ;
+fun litigant_N : N ;
+fun litigate_V : V ;
+fun litigation_N : N ;
+fun litigious_A : A ;
+fun litigiousness_N : N ;
+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_basket_N : N ;
+fun litter_lout_N : N ;
+fun litterbin_N : N ;
+fun litterer_N : N ;
+fun little_N : N ;
+fun little_less_A : A ;
+fun little_lesser_A : A ;
+fun little_littler_A : A ;
+fun littleneck_N : N ;
+fun littleness_N : N ;
+fun littoral_A : A ;
+fun littoral_N : N ;
+fun liturgical_A : A ;
+fun liturgics_N : N ;
+fun liturgist_N : N ;
+fun liturgy_N : N ;
+fun livable_A : A ;
+fun live_A : A ;
+fun live_Adv : Adv ;
+fun live_V : V ;
+fun live_birth_N : N ;
+fun liveable_A : A ;
+fun liveborn_A : A ;
+fun livedo_N : N ;
+fun livelihood_N : N ;
+fun liveliness_N : N ;
+fun livelong_A : A ;
+fun lively_A : A ;
+fun liven_V : V ;
+fun liver_N : N ;
+fun liveried_A : A ;
+fun liverish_A : A ;
+fun liverpudlian_A : A ;
+fun liverpudlian_N : N ;
+fun liverwort_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 lividity_N : N ;
+fun lividness_N : N ;
+fun living_A : A ;
+fun living_N : N ;
+fun living_room_N : N ;
+fun living_space_N : N ;
+fun liza_N : N ;
+fun lizard_N : N ;
+fun lizardfish_N : N ;
+fun llama_N : N ;
+fun llano_N : N ;
+fun llb_N : N ;
+fun loach_N : N ;
+fun load_N : N ;
+fun load_V : V ;
+fun load_line_N : N ;
+fun load_shedding_N : N ;
+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_sugar_N : N ;
+fun loafer_N : N ;
+fun loam_N : N ;
+fun loamless_A : A ;
+fun loamy_A : A ;
+fun loan_N : N ;
+fun loan_V : V ;
+fun loan_collection_N : N ;
+fun loan_office_N : N ;
+fun loanblend_N : N ;
+fun loaner_N : N ;
+fun loanword_N : N ;
+fun loasa_N : N ;
+fun loath_A : A ;
+fun loathe_V : V ;
+fun loathing_N : N ;
+fun loathly_A : A ;
+fun loathsome_A : A ;
+fun loathsomeness_N : N ;
+fun lob_N : N ;
+fun lob_V : V ;
+fun lobar_A : A ;
+fun lobate_A : A ;
+fun lobby_N : N ;
+fun lobby_V : V ;
+fun lobbyism_N : N ;
+fun lobbyist_N : N ;
+fun lobe_N : N ;
+fun lobectomy_N : N ;
+fun lobed_A : A ;
+fun lobelia_N : N ;
+fun lobeliaceous_A : A ;
+fun loblolly_N : N ;
+fun lobotomy_N : N ;
+fun lobscouse_N : N ;
+fun lobster_N : N ;
+fun lobster_pot_N : N ;
+fun lobsterman_N : N ;
+fun lobular_A : A ;
+fun lobularity_N : N ;
+fun lobule_N : N ;
+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_V : V ;
+fun locate_V : V ;
+fun location_N : N ;
+fun locator_N : N ;
+fun loch_N : N ;
+fun lochia_N : N ;
+fun lock_N : N ;
+fun lock_V : V ;
+fun lock_gate_N : N ;
+fun lock_keeper_N : N ;
+fun lockage_N : N ;
+fun lockdown_N : N ;
+fun locker_N : N ;
+fun locket_N : N ;
+fun locking_N : N ;
+fun lockjaw_N : N ;
+fun lockmaster_N : N ;
+fun locknut_N : N ;
+fun lockout_N : N ;
+fun lockring_N : N ;
+fun locksmith_N : N ;
+fun lockstep_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 locoweed_N : N ;
+fun locule_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 lodgement_N : N ;
+fun lodger_N : N ;
+fun lodging_N : N ;
+fun lodging_house_N : N ;
+fun lodgment_N : N ;
+fun loess_N : N ;
+fun loft_N : N ;
+fun loft_V : V ;
+fun loftiness_N : N ;
+fun lofty_A : A ;
+fun log_N : N ;
+fun log_V : V ;
+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 loge_N : N ;
+fun loggerhead_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 logicism_N : N ;
+fun loginess_N : N ;
+fun logion_N : N ;
+fun logistic_A : A ;
+fun logistics_N : N ;
+fun logjam_N : N ;
+fun logo_N : N ;
+fun logogram_N : N ;
+fun logogrammatic_A : A ;
+fun logogrammatically_Adv : Adv ;
+fun logomach_N : N ;
+fun logomachy_N : N ;
+fun logorrhea_N : N ;
+fun logrolling_N : N ;
+fun logwood_N : N ;
+fun loin_N : N ;
+fun loincloth_N : N ;
+fun loins_N : N ;
+fun loir_N : N ;
+fun loiter_V : V ;
+fun loiterer_N : N ;
+fun loligo_N : N ;
+fun loll_V : V ;
+fun lollipop_N : N ;
+fun lolly_N : N ;
+fun lomatia_N : N ;
+fun loment_N : N ;
+fun lomustine_N : N ;
+fun londoner_N : N ;
+fun lone_A : A ;
+fun loneliness_N : N ;
+fun lonely_A : A ;
+fun loner_N : N ;
+fun lonesome_A : A ;
+fun long_A : A ;
+fun long_N : N ;
+fun long_V : V ;
+fun long_distance_A : A ;
+fun long_drawn_out_A : A ;
+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 longan_N : N ;
+fun longanberry_N : N ;
+fun longboat_N : N ;
+fun longbow_N : N ;
+fun longbowman_N : N ;
+fun longer_Adv : Adv ;
+fun longer_N : N ;
+fun longest_Adv : Adv ;
+fun longevity_N : N ;
+fun longhand_A : A ;
+fun longhand_N : N ;
+fun longhorn_N : N ;
+fun longing_N : N ;
+fun longingly_Adv : Adv ;
+fun longish_A : A ;
+fun longitude_N : N ;
+fun longitudinal_A : A ;
+fun longness_N : N ;
+fun longshoreman_N : N ;
+fun longshot_N : N ;
+fun longstanding_A : A ;
+fun longueur_N : N ;
+fun longways_Adv : Adv ;
+fun longways_N : N ;
+fun longwise_Adv : Adv ;
+fun longwool_N : N ;
+fun loo_N : N ;
+fun loofa_N : N ;
+fun loofah_N : N ;
+fun look_N : N ;
+fun look_V : V ;
+fun look_over_N : N ;
+fun lookdown_N : N ;
+fun looker_N : N ;
+fun looker_on_N : N ;
+fun looking_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_line_N : N ;
+fun loophole_N : N ;
+fun loopy_A : A ;
+fun loose_A : A ;
+fun loose_Adv : Adv ;
+fun loose_V : V ;
+fun loose_leaf_A : A ;
+fun looseleaf_A : A ;
+fun loosen_loosened_V : V ;
+fun loosen_loosenned_V : V ;
+fun looseness_N : N ;
+fun loosening_N : N ;
+fun loosestrife_N : N ;
+fun loot_N : N ;
+fun loot_V : V ;
+fun looter_N : N ;
+fun looting_N : N ;
+fun lop_V : V ;
+fun lop_eared_A : A ;
+fun lope_N : N ;
+fun lope_V : V ;
+fun lopsided_A : A ;
+fun lopsidedness_N : N ;
+fun loquacious_A : A ;
+fun loquaciousness_N : N ;
+fun loquacity_N : N ;
+fun loquat_N : N ;
+fun lorazepam_N : N ;
+fun lorchel_N : N ;
+fun lord_N : N ;
+fun lord_V : V ;
+fun lordless_A : A ;
+fun lordliness_N : N ;
+fun lordly_A : A ;
+fun lordolatry_N : N ;
+fun lordosis_N : N ;
+fun lordship_N : N ;
+fun lore_N : N ;
+fun lorgnette_N : N ;
+fun lorica_N : N ;
+fun lorikeet_N : N ;
+fun lorn_A : A ;
+fun lorry_N : N ;
+fun lory_N : N ;
+fun lose_losed_V : V ;
+fun lose_lost_V : V ;
+fun loser_N : N ;
+fun losings_N : N ;
+fun loss_N : N ;
+fun loss_leader_N : N ;
+fun lossless_A : A ;
+fun lossy_A : A ;
+fun lot_N : N ;
+fun lota_N : N ;
+fun loth_A : A ;
+fun loti_N : N ;
+fun lotic_A : A ;
+fun lotion_N : N ;
+fun lottery_N : N ;
+fun lotto_N : N ;
+fun lotus_N : N ;
+fun lotus_eater_N : N ;
+fun lotusland_N : N ;
+fun louche_A : A ;
+fun loud_A : A ;
+fun loud_Adv : Adv ;
+fun loud_hailer_N : N ;
+fun loudmouth_N : N ;
+fun loudness_N : N ;
+fun loudspeaker_N : N ;
+fun lough_N : N ;
+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 loungewear_N : N ;
+fun loupe_N : N ;
+fun lour_V : V ;
+fun louringly_Adv : Adv ;
+fun louse_N : N ;
+fun lousy_A : A ;
+fun lout_N : N ;
+fun loutish_A : A ;
+fun louvar_N : N ;
+fun louver_N : N ;
+fun louvered_A : A ;
+fun louvre_N : N ;
+fun lovable_A : A ;
+fun lovage_N : N ;
+fun lovastatin_N : N ;
+fun love_N : N ;
+fun love_V : V ;
+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 lovesickness_N : N ;
+fun loving_A : A ;
+fun loving_cup_N : N ;
+fun loving_kindness_N : N ;
+fun lovingness_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 lowboy_N : N ;
+fun lowbred_A : A ;
+fun lowbrow_A : A ;
+fun lowbrow_N : N ;
+fun lower_Adv : Adv ;
+fun lower_V : V ;
+fun lowercase_A : A ;
+fun lowerclassman_N : N ;
+fun lowering_N : N ;
+fun loweringly_Adv : Adv ;
+fun lowermost_A : A ;
+fun lowest_Adv : Adv ;
+fun lowland_A : A ;
+fun lowland_N : N ;
+fun lowlander_N : N ;
+fun lowliness_N : N ;
+fun lowly_A : A ;
+fun lowness_N : N ;
+fun lowset_A : A ;
+fun lox_N : N ;
+fun loxapine_N : N ;
+fun loyal_A : A ;
+fun loyalist_N : N ;
+fun loyalty_N : N ;
+fun lozenge_N : N ;
+fun lp_N : N ;
+fun lsd_N : N ;
+fun luau_N : N ;
+fun lubber_N : N ;
+fun lubberly_A : A ;
+fun lubricant_N : N ;
+fun lubricate_V : V ;
+fun lubrication_N : N ;
+fun lubricious_A : A ;
+fun lucent_A : A ;
+fun lucerne_N : N ;
+fun lucid_A : A ;
+fun lucidity_N : N ;
+fun lucifer_N : N ;
+fun luciferin_N : N ;
+fun lucifugous_A : A ;
+fun luck_N : N ;
+fun luck_V : V ;
+fun luckless_A : A ;
+fun lucky_A : A ;
+fun lucrative_A : A ;
+fun lucre_N : N ;
+fun lucubration_N : N ;
+fun luddite_N : N ;
+fun ludicrous_A : A ;
+fun ludo_N : N ;
+fun luff_N : N ;
+fun luff_V : V ;
+fun luffa_N : N ;
+fun lug_N : N ;
+fun lug_V : V ;
+fun luge_N : N ;
+fun luger_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 luging_N : N ;
+fun lugsail_N : N ;
+fun lugubrious_A : A ;
+fun lugubriousness_N : N ;
+fun lugworm_N : N ;
+fun lukewarm_A : A ;
+fun lukewarmness_N : N ;
+fun lull_N : N ;
+fun lull_V : V ;
+fun lullaby_N : N ;
+fun lumbago_N : N ;
+fun lumbar_A : A ;
+fun lumber_N : N ;
+fun lumber_V : V ;
+fun lumber_mill_N : N ;
+fun lumbering_N : N ;
+fun lumberjack_N : N ;
+fun lumberman_N : N ;
+fun lumbermill_N : N ;
+fun lumberroom_N : N ;
+fun lumberyard_N : N ;
+fun lumbosacral_A : A ;
+fun lumen_N : N ;
+fun luminary_N : N ;
+fun luminescence_N : N ;
+fun luminescent_A : A ;
+fun luminism_N : N ;
+fun luminosity_N : N ;
+fun luminous_A : A ;
+fun lumma_N : N ;
+fun lump_N : N ;
+fun lump_V : V ;
+fun lumpectomy_N : N ;
+fun lumpenproletariat_N : N ;
+fun lumper_N : N ;
+fun lumpfish_N : N ;
+fun lumpish_A : A ;
+fun lumpsucker_N : N ;
+fun lumpy_A : A ;
+fun lunacy_N : N ;
+fun lunar_A : A ;
+fun lunatic_A : A ;
+fun lunatic_N : N ;
+fun lunch_N : N ;
+fun lunch_V : V ;
+fun luncheon_N : N ;
+fun luncher_N : N ;
+fun lunching_N : N ;
+fun lunchroom_N : N ;
+fun lunchtime_N : N ;
+fun lunette_N : N ;
+fun lung_N : N ;
+fun lung_power_N : N ;
+fun lunge_N : N ;
+fun lunge_V : V ;
+fun lunger_N : N ;
+fun lungfish_N : N ;
+fun lungi_N : N ;
+fun lunisolar_A : A ;
+fun lunula_N : N ;
+fun lupin_N : N ;
+fun lupine_A : A ;
+fun lupine_N : N ;
+fun lupus_N : N ;
+fun lurch_N : N ;
+fun lurch_V : V ;
+fun lurcher_N : N ;
+fun lure_N : N ;
+fun lure_V : V ;
+fun lurid_A : A ;
+fun luridness_N : N ;
+fun lurk_V : V ;
+fun lurker_N : N ;
+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 luster_N : N ;
+fun lusterware_N : N ;
+fun lustful_A : A ;
+fun lustre_N : N ;
+fun lustrous_A : A ;
+fun lustrum_N : N ;
+fun lusty_A : A ;
+fun lutanist_N : N ;
+fun lute_N : N ;
+fun luteal_A : A ;
+fun lutefisk_N : N ;
+fun lutenist_N : N ;
+fun lutetium_N : N ;
+fun lutheran_A : A ;
+fun lutheran_N : N ;
+fun luthier_N : N ;
+fun lutist_N : N ;
+fun lux_N : N ;
+fun luxation_N : N ;
+fun luxe_A : A ;
+fun luxemburger_A : A ;
+fun luxemburger_N : N ;
+fun luxuriance_N : N ;
+fun luxuriant_A : A ;
+fun luxuriate_V : V ;
+fun luxuriation_N : N ;
+fun luxurious_A : A ;
+fun luxury_N : N ;
+fun lwei_N : N ;
+fun lycaenid_N : N ;
+fun lycanthropy_N : N ;
+fun lyceum_N : N ;
+fun lychee_N : N ;
+fun lychgate_N : N ;
+fun lychnis_N : N ;
+fun lycopene_N : N ;
+fun lycée_N : N ;
+fun lye_N : N ;
+fun lygaeid_N : N ;
+fun lying_N : N ;
+fun lying_in_A : A ;
+fun lymantriid_N : N ;
+fun lymph_N : N ;
+fun lymphadenitis_N : N ;
+fun lymphadenoma_N : N ;
+fun lymphadenopathy_N : N ;
+fun lymphangiectasia_N : N ;
+fun lymphangiogram_N : N ;
+fun lymphangiography_N : N ;
+fun lymphangioma_N : N ;
+fun lymphangitis_N : N ;
+fun lymphatic_A : A ;
+fun lymphedema_N : N ;
+fun lymphoblast_N : N ;
+fun lymphocyte_N : N ;
+fun lymphocytic_A : A ;
+fun lymphocytopenia_N : N ;
+fun lymphocytosis_N : N ;
+fun lymphogranuloma_N : N ;
+fun lymphoid_A : A ;
+fun lymphokine_N : N ;
+fun lymphoma_N : N ;
+fun lymphopoiesis_N : N ;
+fun lymphuria_N : N ;
+fun lynch_N : N ;
+fun lynch_V : V ;
+fun lynching_N : N ;
+fun lynchpin_N : N ;
+fun lynx_N : N ;
+fun lynx_eyed_A : A ;
+fun lyonnaise_A : A ;
+fun lyophilized_A : A ;
+fun lypressin_N : N ;
+fun lyrate_A : A ;
+fun lyre_N : N ;
+fun lyre_bird_N : N ;
+fun lyrebird_N : N ;
+fun lyric_A : A ;
+fun lyric_N : N ;
+fun lyrical_A : A ;
+fun lyricality_N : N ;
+fun lyricism_N : N ;
+fun lyricist_N : N ;
+fun lysin_N : N ;
+fun lysine_N : N ;
+fun lysinemia_N : N ;
+fun lysis_N : N ;
+fun lysogenic_A : A ;
+fun lysogenization_N : N ;
+fun lysogeny_N : N ;
+fun lysol_N : N ;
+fun lysosome_N : N ;
+fun lysozyme_N : N ;
+fun lyssavirus_N : N ;
+fun ma'am_N : N ;
+fun ma_N : N ;
+fun maar_N : N ;
+fun mac_N : N ;
+fun macabre_A : A ;
+fun macadam_N : N ;
+fun macadamia_N : N ;
+fun macadamize_V : V ;
+fun macaque_N : N ;
+fun macaroni_N : N ;
+fun macaronic_A : A ;
+fun macaroon_N : N ;
+fun macaw_N : N ;
+fun mace_N : N ;
+fun mace_bearer_N : N ;
+fun macebearer_N : N ;
+fun macedoine_N : N ;
+fun macerate_V : V ;
+fun maceration_N : N ;
+fun macerative_A : A ;
+fun machete_N : N ;
+fun machiavellian_A : A ;
+fun machicolation_N : N ;
+fun machination_N : N ;
+fun machine_N : N ;
+fun machine_V : V ;
+fun machine_gun_N : N ;
+fun machine_made_A : A ;
+fun machinery_N : N ;
+fun machinist_N : N ;
+fun machismo_N : N ;
+fun machmeter_N : N ;
+fun macho_N : N ;
+fun macintosh_N : N ;
+fun mackerel_N : N ;
+fun mackinaw_N : N ;
+fun mackintosh_N : N ;
+fun mackle_N : N ;
+fun macon_N : N ;
+fun macrame_N : N ;
+fun macrencephalic_A : A ;
+fun macrencephaly_N : N ;
+fun macro_A : A ;
+fun macro_N : N ;
+fun macrobiotic_A : A ;
+fun macrobiotics_N : N ;
+fun macrocephalic_A : A ;
+fun macrocephaly_N : N ;
+fun macrocosm_N : N ;
+fun macrocosmic_A : A ;
+fun macrocytosis_N : N ;
+fun macroeconomic_A : A ;
+fun macroeconomics_N : N ;
+fun macroeconomist_N : N ;
+fun macroevolution_N : N ;
+fun macroglossia_N : N ;
+fun macromolecular_A : A ;
+fun macromolecule_N : N ;
+fun macron_N : N ;
+fun macrophage_N : N ;
+fun macroscopic_A : A ;
+fun macroscopically_Adv : Adv ;
+fun macrotus_N : N ;
+fun macrozamia_N : N ;
+fun macula_N : N ;
+fun maculate_A : A ;
+fun macule_N : N ;
+fun macumba_N : N ;
+fun macushla_N : N ;
+fun mad_A : A ;
+fun madagascan_A : A ;
+fun madagascan_N : N ;
+fun madam_N : N ;
+fun madame_N : N ;
+fun madcap_N : N ;
+fun madden_V : V ;
+fun madder_N : N ;
+fun madderwort_N : N ;
+fun madeira_N : N ;
+fun mademoiselle_N : N ;
+fun madhouse_N : N ;
+fun madman_N : N ;
+fun madness_N : N ;
+fun madonna_N : N ;
+fun madras_N : N ;
+fun madrasa_N : N ;
+fun madrigal_N : N ;
+fun madrigalist_N : N ;
+fun madrilene_N : N ;
+fun madrona_N : N ;
+fun madwoman_N : N ;
+fun maelstrom_N : N ;
+fun maenad_N : N ;
+fun maestro_N : N ;
+fun maffick_V : V ;
+fun mafia_N : N ;
+fun mafioso_N : N ;
+fun mag_N : N ;
+fun magazine_N : N ;
+fun magdalen_N : N ;
+fun magenta_A : A ;
+fun magenta_N : N ;
+fun maggot_N : N ;
+fun maggoty_A : A ;
+fun magic_A : A ;
+fun magic_N : N ;
+fun magic_V : V ;
+fun magical_A : A ;
+fun magician_N : N ;
+fun magisterial_A : A ;
+fun magistracy_N : N ;
+fun magistrate_N : N ;
+fun magma_N : N ;
+fun magnanimity_N : N ;
+fun magnanimous_A : A ;
+fun magnate_N : N ;
+fun magnesia_N : N ;
+fun magnesite_N : N ;
+fun magnesium_N : N ;
+fun magnet_N : N ;
+fun magnetic_A : A ;
+fun magnetically_Adv : Adv ;
+fun magnetism_N : N ;
+fun magnetite_N : N ;
+fun magnetization_N : N ;
+fun magnetize_V : V ;
+fun magneto_N : N ;
+fun magnetograph_N : N ;
+fun magnetohydrodynamics_N : N ;
+fun magnetometer_N : N ;
+fun magneton_N : N ;
+fun magnetosphere_N : N ;
+fun magnetron_N : N ;
+fun magnificat_N : N ;
+fun magnification_N : N ;
+fun magnificence_N : N ;
+fun magnificent_A : A ;
+fun magnifico_N : N ;
+fun magnifier_N : N ;
+fun magnify_V : V ;
+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 maguey_N : N ;
+fun magus_N : N ;
+fun maharaja_N : N ;
+fun maharajah_N : N ;
+fun maharanee_N : N ;
+fun maharani_N : N ;
+fun mahatma_N : N ;
+fun mahjong_N : N ;
+fun mahoe_N : N ;
+fun mahogany_N : N ;
+fun mahout_N : N ;
+fun mahuang_N : N ;
+fun maid_N : N ;
+fun maiden_A : A ;
+fun maiden_N : N ;
+fun maidenhair_N : N ;
+fun maidenhead_N : N ;
+fun maidenhood_N : N ;
+fun maidenlike_A : A ;
+fun maidenliness_N : N ;
+fun maidenly_A : A ;
+fun maidservant_N : N ;
+fun maigre_N : N ;
+fun mail_N : N ;
+fun mail_V : V ;
+fun mail_train_N : N ;
+fun mailbag_N : N ;
+fun mailboat_N : N ;
+fun mailbox_N : N ;
+fun maildrop_N : N ;
+fun mailer_N : N ;
+fun mailing_N : N ;
+fun mailing_card_N : N ;
+fun mailing_list_N : N ;
+fun maillot_N : N ;
+fun mailman_N : N ;
+fun mailsorter_N : N ;
+fun maim_V : V ;
+fun main_A : A ;
+fun main_N : N ;
+fun mainframe_N : N ;
+fun mainland_N : N ;
+fun mainmast_N : N ;
+fun mainsail_N : N ;
+fun mainspring_N : N ;
+fun mainstay_N : N ;
+fun mainstream_N : N ;
+fun mainstreamed_A : A ;
+fun maintain_V : V ;
+fun maintainable_A : A ;
+fun maintenance_N : N ;
+fun maisonette_N : N ;
+fun maisonnette_N : N ;
+fun maize_N : N ;
+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 majuscular_A : A ;
+fun majuscule_A : A ;
+fun make_N : N ;
+fun make_V : V ;
+fun make_believe_N : N ;
+fun make_up_N : N ;
+fun makeover_N : N ;
+fun maker_N : N ;
+fun makeready_N : N ;
+fun makeshift_N : N ;
+fun makeup_N : N ;
+fun makeweight_N : N ;
+fun making_N : N ;
fun mako_N : N ;
fun makomako_N : N ;
-fun nameko_N : N ;
-fun pachinko_N : N ;
-fun pinko_N : N ;
-fun gecko_N : N ;
-fun gingko_N : N ;
-fun robalo_N : N ;
-fun cattalo_N : N ;
-fun tangelo_N : N ;
-fun tupelo_N : N ;
-fun ilo_N : N ;
-fun milo_N : N ;
-fun smilo_N : N ;
-fun bargello_N : N ;
-fun jello_N : N ;
-fun trompillo_N : N ;
-fun cigarillo_N : N ;
-fun tomatillo_N : N ;
-fun ocotillo_N : N ;
-fun blanquillo_N : N ;
-fun criollo_N : N ;
-fun phyllo_N : N ;
-fun bolo_N : N ;
-fun cocobolo_N : N ;
-fun polo_N : N ;
-fun 'water-polo_N' : N ;
-fun ovolo_N : N ;
-fun 'water-buffalo_N' : N ;
-fun halo_N : N ;
-fun pueblo_N : N ;
-fun pomelo_N : N ;
-fun kilo_N : N ;
-fun silo_N : N ;
-fun cello_N : N ;
-fun morello_N : N ;
-fun peccadillo_N : N ;
-fun armadillo_N : N ;
-fun piccolo_N : N ;
-fun gigolo_N : N ;
-fun tremolo_N : N ;
-fun solo_N : N ;
-fun mamo_N : N ;
-fun supremo_N : N ;
-fun primo_N : N ;
-fun centesimo_N : N ;
-fun centimo_N : N ;
-fun machismo_N : N ;
-fun sumo_N : N ;
-fun dynamo_N : N ;
-fun demo_N : N ;
-fun memo_N : N ;
-fun eskimo_N : N ;
-fun generalissimo_N : N ;
-fun 'major-domo_N' : N ;
-fun homo_N : N ;
-fun oregano_N : N ;
-fun boliviano_N : N ;
-fun llano_N : N ;
-fun pompano_N : N ;
-fun gitano_N : N ;
-fun jalapeno_N : N ;
-fun segno_N : N ;
-fun techno_N : N ;
-fun cappuccino_N : N ;
-fun contadino_N : N ;
-fun chino_N : N ;
-fun kino_N : N ;
-fun lino_N : N ;
-fun amino_N : N ;
-fun palomino_N : N ;
-fun solferino_N : N ;
-fun merino_N : N ;
-fun virino_N : N ;
-fun neutrino_N : N ;
-fun antineutrino_N : N ;
-fun grissino_N : N ;
-fun vino_N : N ;
-fun pruno_N : N ;
-fun volcano_N : N ;
-fun beano_N : N ;
-fun piano_N : N ;
-fun 'player-piano_N' : N ;
-fun soprano_N : N ;
-fun 'mezzo-soprano_N' : N ;
-fun guano_N : N ;
-fun albino_N : N ;
-fun bambino_N : N ;
-fun maraschino_N : N ;
-fun rhino_N : N ;
-fun domino_N : N ;
-fun filipino_N : N ;
-fun casino_N : N ;
-fun kakemono_N : N ;
-fun kimono_N : N ;
-fun inferno_N : N ;
-fun boo_N : N ;
-fun 'peek-a-boo_N' : N ;
-fun baboo_N : N ;
-fun bugaboo_N : N ;
-fun peekaboo_N : N ;
-fun taboo_N : N ;
-fun bamboo_N : N ;
-fun coo_N : N ;
-fun 'cock-a-doodle-doo_N' : N ;
-fun hoodoo_N : N ;
-fun voodoo_N : N ;
-fun nardoo_N : N ;
-fun goo_N : N ;
-fun burgoo_N : N ;
-fun wahoo_N : N ;
-fun yahoo_N : N ;
-fun ballyhoo_N : N ;
-fun cuckoo_N : N ;
-fun loo_N : N ;
-fun hullabaloo_N : N ;
-fun igloo_N : N ;
-fun halloo_N : N ;
-fun waterloo_N : N ;
-fun purloo_N : N ;
-fun moo_N : N ;
-fun shampoo_N : N ;
-fun kangaroo_N : N ;
-fun switcheroo_N : N ;
-fun potoroo_N : N ;
-fun sissoo_N : N ;
-fun cockatoo_N : N ;
-fun tattoo_N : N ;
-fun zoo_N : N ;
-fun kazoo_N : N ;
-fun po_N : N ;
-fun capo_N : N ;
-fun hypo_N : N ;
-fun gestapo_N : N ;
-fun tempo_N : N ;
-fun hippo_N : N ;
-fun expo_N : N ;
-fun faro_N : N ;
-fun claro_N : N ;
-fun saguaro_N : N ;
-fun gabbro_N : N ;
-fun macro_N : N ;
-fun cero_N : N ;
-fun bracero_N : N ;
-fun cicero_N : N ;
-fun curandero_N : N ;
-fun hero_N : N ;
-fun 'anti-hero_N' : N ;
-fun antihero_N : N ;
-fun banderillero_N : N ;
-fun novillero_N : N ;
-fun torero_N : N ;
-fun vaquero_N : N ;
-fun negro_N : N ;
-fun aggro_N : N ;
-fun giro_N : N ;
-fun miro_N : N ;
-fun appro_N : N ;
-fun burro_N : N ;
-fun retro_N : N ;
-fun chiaroscuro_N : N ;
-fun taro_N : N ;
-fun bolero_N : N ;
-fun sombrero_N : N ;
-fun zero_N : N ;
-fun allegro_N : N ;
-fun biro_N : N ;
-fun cruzeiro_N : N ;
-fun autogiro_N : N ;
-fun tiro_N : N ;
-fun pro_N : N ;
-fun metro_N : N ;
-fun maestro_N : N ;
-fun bistro_N : N ;
-fun politburo_N : N ;
-fun euro_N : N ;
-fun gyro_N : N ;
-fun autogyro_N : N ;
-fun tyro_N : N ;
-fun miso_N : N ;
-fun mafioso_N : N ;
-fun arioso_N : N ;
-fun gesso_N : N ;
-fun fatso_N : N ;
-fun 'so-and-so_N' : N ;
-fun peso_N : N ;
-fun proviso_N : N ;
-fun virtuoso_N : N ;
-fun calypso_N : N ;
-fun verso_N : N ;
-fun torso_N : N ;
-fun lasso_N : N ;
-fun espresso_N : N ;
-fun rabato_N : N ;
-fun rubato_N : N ;
-fun spiccato_N : N ;
-fun pizzicato_N : N ;
-fun tomato_N : N ;
-fun ostinato_N : N ;
-fun inamorato_N : N ;
-fun castrato_N : N ;
-fun potato_N : N ;
-fun veto_N : N ;
-fun pashto_N : N ;
-fun sgraffito_N : N ;
-fun caracolito_N : N ;
-fun burrito_N : N ;
-fun mosquito_N : N ;
-fun esperanto_N : N ;
-fun pentimento_N : N ;
-fun divertimento_N : N ;
-fun pinto_N : N ;
-fun conto_N : N ;
-fun telephoto_N : N ;
-fun koto_N : N ;
-fun antipasto_N : N ;
-fun impasto_N : N ;
-fun pesto_N : N ;
-fun gusto_N : N ;
-fun larghetto_N : N ;
-fun amaretto_N : N ;
-fun cavetto_N : N ;
-fun lotto_N : N ;
-fun potto_N : N ;
-fun prosciutto_N : N ;
-fun razbliuto_N : N ;
-fun 'talking-to_N' : N ;
-fun 'lean-to_N' : N ;
-fun 'set-to_N' : N ;
-fun obbligato_N : N ;
-fun vibrato_N : N ;
-fun recto_N : N ;
-fun magneto_N : N ;
-fun bonito_N : N ;
-fun alto_N : N ;
-fun contralto_N : N ;
-fun canto_N : N ;
-fun panto_N : N ;
-fun quattrocento_N : N ;
-fun pronunciamento_N : N ;
-fun memento_N : N ;
-fun pimento_N : N ;
-fun photo_N : N ;
-fun quarto_N : N ;
-fun concerto_N : N ;
-fun manifesto_N : N ;
-fun mulatto_N : N ;
-fun ghetto_N : N ;
-fun stiletto_N : N ;
-fun palmetto_N : N ;
-fun lazaretto_N : N ;
-fun libretto_N : N ;
-fun allegretto_N : N ;
-fun falsetto_N : N ;
-fun motto_N : N ;
-fun grotto_N : N ;
-fun risotto_N : N ;
-fun auto_N : N ;
-fun avo_N : N ;
-fun afropavo_N : N ;
-fun centavo_N : N ;
-fun 'multum in parvo_N' : N ;
-fun servo_N : N ;
-fun bravo_N : N ;
-fun octavo_N : N ;
-fun salvo_N : N ;
-fun billyo_N : N ;
-fun arroyo_N : N ;
-fun 'yo-yo_N' : N ;
-fun embryo_N : N ;
-fun chorizo_N : N ;
-fun mestizo_N : N ;
-fun rebozo_N : N ;
-fun corozo_N : N ;
-fun orzo_N : N ;
-fun matzo_N : N ;
-fun ouzo_N : N ;
-fun paparazzo_N : N ;
-fun scherzo_N : N ;
-fun intermezzo_N : N ;
-fun 'runner-up_N' : N ;
-fun p_N : N ;
-fun sheep_N : N ;
-fun 'merino-sheep_N' : N ;
-fun carp_N : N ;
-fun bap_N : N ;
-fun cap_N : N ;
-fun 'wishing-cap_N' : N ;
-fun 'bathing-cap_N' : N ;
-fun mobcap_N : N ;
-fun hubcap_N : N ;
-fun madcap_N : N ;
-fun redcap_N : N ;
-fun icecap_N : N ;
-fun kneecap_N : N ;
-fun bottlecap_N : N ;
-fun toecap_N : N ;
-fun recap_N : N ;
-fun whitecap_N : N ;
-fun handicap_N : N ;
-fun blackcap_N : N ;
-fun milkcap_N : N ;
-fun skullcap_N : N ;
-fun foolscap_N : N ;
-fun nightcap_N : N ;
-fun snowcap_N : N ;
-fun skycap_N : N ;
-fun waxycap_N : N ;
-fun heap_N : N ;
-fun 'slag-heap_N' : N ;
-fun 'muck-heap_N' : N ;
-fun slagheap_N : N ;
-fun scrapheap_N : N ;
-fun leap_N : N ;
-fun neap_N : N ;
-fun gap_N : N ;
-fun stopgap_N : N ;
-fun hap_N : N ;
-fun chap_N : N ;
-fun mishap_N : N ;
-fun lap_N : N ;
-fun clap_N : N ;
-fun handclap_N : N ;
-fun thunderclap_N : N ;
-fun flap_N : N ;
-fun earflap_N : N ;
-fun overlap_N : N ;
-fun burlap_N : N ;
-fun slap_N : N ;
-fun dewlap_N : N ;
-fun map_N : N ;
-fun 'sketch-map_N' : N ;
-fun 'weather-map_N' : N ;
-fun bitmap_N : N ;
-fun nap_N : N ;
-fun 'cat-nap_N' : N ;
-fun snap_N : N ;
-fun 'brandy-snap_N' : N ;
-fun gingersnap_N : N ;
-fun brandysnap_N : N ;
-fun soap_N : N ;
-fun pap_N : N ;
-fun genipap_N : N ;
-fun rap_N : N ;
-fun crap_N : N ;
-fun scrap_N : N ;
-fun trap_N : N ;
-fun 'booby-trap_N' : N ;
-fun satrap_N : N ;
-fun firetrap_N : N ;
-fun mousetrap_N : N ;
-fun deathtrap_N : N ;
-fun mantrap_N : N ;
-fun suntrap_N : N ;
-fun claptrap_N : N ;
-fun strap_N : N ;
-fun 'chin-strap_N' : N ;
-fun 'shoulder-strap_N' : N ;
-fun bootstrap_N : N ;
-fun rattrap_N : N ;
-fun flytrap_N : N ;
-fun wrap_N : N ;
-fun sap_N : N ;
-fun pinesap_N : N ;
-fun tap_N : N ;
-fun wiretap_N : N ;
-fun swap_N : N ;
-fun yap_N : N ;
-fun zap_N : N ;
-fun edp_N : N ;
-fun beep_N : N ;
-fun deep_N : N ;
-fun cheep_N : N ;
-fun jeep_N : N ;
-fun keep_N : N ;
-fun upkeep_N : N ;
-fun bleep_N : N ;
-fun sleep_N : N ;
-fun 'cat-sleep_N' : N ;
-fun 'beauty-sleep_N' : N ;
-fun electrosleep_N : N ;
-fun peep_N : N ;
-fun bopeep_N : N ;
-fun cassareep_N : N ;
-fun creep_N : N ;
-fun steep_N : N ;
-fun sweep_N : N ;
-fun 'chimney-sweep_N' : N ;
-fun chimneysweep_N : N ;
-fun skep_N : N ;
-fun schlep_N : N ;
-fun julep_N : N ;
-fun stoep_N : N ;
-fun pep_N : N ;
-fun rep_N : N ;
-fun prep_N : N ;
-fun step_N : N ;
-fun 'one-step_N' : N ;
-fun 'goose-step_N' : N ;
-fun 'two-step_N' : N ;
-fun sidestep_N : N ;
-fun quickstep_N : N ;
-fun lockstep_N : N ;
-fun instep_N : N ;
-fun doorstep_N : N ;
-fun footstep_N : N ;
-fun gp_N : N ;
-fun hp_N : N ;
-fun dip_N : N ;
-fun hip_N : N ;
-fun chip_N : N ;
-fun biochip_N : N ;
-fun ship_N : N ;
-fun 'sailing-ship_N' : N ;
-fun 'training-ship_N' : N ;
-fun 'weather-ship_N' : N ;
-fun headship_N : N ;
-fun friendship_N : N ;
-fun hardship_N : N ;
-fun guardship_N : N ;
-fun stewardship_N : N ;
-fun lordship_N : N ;
-fun overlordship_N : N ;
-fun spaceship_N : N ;
-fun apprenticeship_N : N ;
-fun acquaintanceship_N : N ;
-fun comradeship_N : N ;
-fun traineeship_N : N ;
-fun trusteeship_N : N ;
-fun judgeship_N : N ;
-fun discipleship_N : N ;
-fun apostleship_N : N ;
-fun battleship_N : N ;
-fun cattleship_N : N ;
-fun thaneship_N : N ;
-fun tribuneship_N : N ;
-fun lectureship_N : N ;
-fun associateship_N : N ;
-fun primateship_N : N ;
-fun bailiffship_N : N ;
-fun flagship_N : N ;
-fun kingship_N : N ;
-fun messiahship_N : N ;
-fun clerkship_N : N ;
-fun marshalship_N : N ;
-fun cardinalship_N : N ;
-fun principalship_N : N ;
-fun generalship_N : N ;
-fun consulship_N : N ;
-fun proconsulship_N : N ;
-fun steamship_N : N ;
-fun deanship_N : N ;
-fun academicianship_N : N ;
-fun musicianship_N : N ;
-fun custodianship_N : N ;
-fun guardianship_N : N ;
-fun librarianship_N : N ;
-fun seamanship_N : N ;
-fun foremanship_N : N ;
-fun horsemanship_N : N ;
-fun brinkmanship_N : N ;
-fun workmanship_N : N ;
-fun penmanship_N : N ;
-fun 'one-upmanship_N' : N ;
-fun chairmanship_N : N ;
-fun swordsmanship_N : N ;
-fun salesmanship_N : N ;
-fun gamesmanship_N : N ;
-fun statesmanship_N : N ;
-fun marksmanship_N : N ;
-fun oarsmanship_N : N ;
-fun craftsmanship_N : N ;
-fun sportsmanship_N : N ;
-fun boatmanship_N : N ;
-fun showmanship_N : N ;
-fun partisanship_N : N ;
-fun wardenship_N : N ;
-fun citizenship_N : N ;
-fun captainship_N : N ;
-fun kinship_N : N ;
-fun companionship_N : N ;
-fun championship_N : N ;
-fun relationship_N : N ;
-fun steprelationship_N : N ;
-fun interrelationship_N : N ;
-fun internship_N : N ;
-fun township_N : N ;
-fun troopship_N : N ;
-fun scholarship_N : N ;
-fun starship_N : N ;
-fun warship_N : N ;
-fun membership_N : N ;
-fun leadership_N : N ;
-fun readership_N : N ;
-fun eldership_N : N ;
-fun commandership_N : N ;
-fun wardership_N : N ;
-fun managership_N : N ;
-fun teachership_N : N ;
-fun premiership_N : N ;
-fun viziership_N : N ;
-fun speakership_N : N ;
-fun controllership_N : N ;
-fun comptrollership_N : N ;
-fun rulership_N : N ;
-fun partnership_N : N ;
-fun copartnership_N : N ;
-fun ownership_N : N ;
-fun treasurership_N : N ;
-fun mastership_N : N ;
-fun headmastership_N : N ;
-fun receivership_N : N ;
-fun airship_N : N ;
-fun ambassadorship_N : N ;
-fun authorship_N : N ;
-fun priorship_N : N ;
-fun counselorship_N : N ;
-fun chancellorship_N : N ;
-fun councillorship_N : N ;
-fun governorship_N : N ;
-fun censorship_N : N ;
-fun sponsorship_N : N ;
-fun professorship_N : N ;
-fun legislatorship_N : N ;
-fun senatorship_N : N ;
-fun moderatorship_N : N ;
-fun curatorship_N : N ;
-fun dictatorship_N : N ;
-fun inspectorship_N : N ;
-fun rectorship_N : N ;
-fun directorship_N : N ;
-fun protectorship_N : N ;
-fun proctorship_N : N ;
-fun instructorship_N : N ;
-fun praetorship_N : N ;
-fun proprietorship_N : N ;
-fun solicitorship_N : N ;
-fun editorship_N : N ;
-fun precentorship_N : N ;
-fun preceptorship_N : N ;
-fun pastorship_N : N ;
-fun tutorship_N : N ;
-fun worship_N : N ;
-fun 'sun-worship_N' : N ;
-fun headmistressship_N : N ;
-fun cadetship_N : N ;
-fun lightship_N : N ;
-fun accountantship_N : N ;
-fun studentship_N : N ;
-fun courtship_N : N ;
-fun fellowship_N : N ;
-fun 'good-fellowship_N' : N ;
-fun ladyship_N : N ;
-fun attorneyship_N : N ;
-fun viceroyship_N : N ;
-fun secretaryship_N : N ;
-fun whip_N : N ;
-fun horsewhip_N : N ;
-fun coachwhip_N : N ;
-fun kip_N : N ;
-fun skip_N : N ;
-fun lip_N : N ;
-fun blip_N : N ;
-fun clip_N : N ;
-fun paperclip_N : N ;
-fun harelip_N : N ;
-fun flip_N : N ;
-fun fillip_N : N ;
-fun underlip_N : N ;
-fun overlip_N : N ;
-fun slip_N : N ;
-fun 'side-slip_N' : N ;
-fun landslip_N : N ;
-fun gymslip_N : N ;
-fun cowslip_N : N ;
-fun pillowslip_N : N ;
-fun payslip_N : N ;
-fun tulip_N : N ;
-fun oxlip_N : N ;
-fun nip_N : N ;
-fun genip_N : N ;
-fun turnip_N : N ;
-fun snip_N : N ;
-fun parsnip_N : N ;
-fun pip_N : N ;
-fun rip_N : N ;
-fun scrip_N : N ;
-fun drip_N : N ;
-fun grip_N : N ;
-fun trip_N : N ;
-fun egotrip_N : N ;
-fun strip_N : N ;
-fun 'landing-strip_N' : N ;
-fun airstrip_N : N ;
-fun sip_N : N ;
-fun gossip_N : N ;
-fun tip_N : N ;
-fun fingertip_N : N ;
-fun quip_N : N ;
-fun vip_N : N ;
-fun yip_N : N ;
-fun zip_N : N ;
-fun jp_N : N ;
-fun lp_N : N ;
-fun alp_N : N ;
-fun scalp_N : N ;
-fun salp_N : N ;
-fun help_N : N ;
-fun 'self-help_N' : N ;
-fun whelp_N : N ;
-fun kelp_N : N ;
-fun megilp_N : N ;
-fun gulp_N : N ;
-fun pulp_N : N ;
-fun 'wood-pulp_N' : N ;
-fun mp_N : N ;
-fun amp_N : N ;
-fun camp_N : N ;
-fun 'aide-de-camp_N' : N ;
-fun scamp_N : N ;
-fun damp_N : N ;
-fun 'choke-damp_N' : N ;
-fun chokedamp_N : N ;
-fun firedamp_N : N ;
-fun afterdamp_N : N ;
-fun gamp_N : N ;
-fun champ_N : N ;
-fun lamp_N : N ;
-fun 'arc-lamp_N' : N ;
-fun 'reading-lamp_N' : N ;
-fun 'riding-lamp_N' : N ;
-fun 'spirit-lamp_N' : N ;
-fun 'safety-lamp_N' : N ;
-fun clamp_N : N ;
-fun headlamp_N : N ;
-fun foglamp_N : N ;
-fun sunlamp_N : N ;
-fun blowlamp_N : N ;
-fun ramp_N : N ;
-fun cramp_N : N ;
-fun tramp_N : N ;
-fun tamp_N : N ;
-fun stamp_N : N ;
-fun 'postage-stamp_N' : N ;
-fun handstamp_N : N ;
-fun vamp_N : N ;
-fun swamp_N : N ;
-fun hemp_N : N ;
-fun temp_N : N ;
-fun imp_N : N ;
-fun chimp_N : N ;
-fun limp_N : N ;
-fun blimp_N : N ;
-fun pimp_N : N ;
-fun crimp_N : N ;
-fun shrimp_N : N ;
-fun wimp_N : N ;
-fun pomp_N : N ;
-fun psychopomp_N : N ;
-fun romp_N : N ;
-fun stomp_N : N ;
-fun bump_N : N ;
-fun dump_N : N ;
-fun hump_N : N ;
-fun chump_N : N ;
-fun thump_N : N ;
-fun callithump_N : N ;
-fun jump_N : N ;
-fun 'ski-jump_N' : N ;
-fun lump_N : N ;
-fun clump_N : N ;
-fun plump_N : N ;
-fun sugarlump_N : N ;
-fun slump_N : N ;
-fun pump_N : N ;
-fun 'stomach-pump_N' : N ;
-fun 'air-pump_N' : N ;
-fun rump_N : N ;
-fun frump_N : N ;
-fun trump_N : N ;
-fun sump_N : N ;
-fun stump_N : N ;
-fun mugwump_N : N ;
-fun 'co-op_N' : N ;
-fun bop_N : N ;
-fun cop_N : N ;
-fun 'speed-cop_N' : N ;
-fun fop_N : N ;
-fun hop_N : N ;
-fun chop_N : N ;
-fun porkchop_N : N ;
-fun bellhop_N : N ;
-fun carhop_N : N ;
-fun shop_N : N ;
-fun 'tuck-shop_N' : N ;
-fun 'junk-shop_N' : N ;
-fun 'slop-shop_N' : N ;
-fun 'print-shop_N' : N ;
-fun teashop_N : N ;
-fun bishop_N : N ;
-fun archbishop_N : N ;
-fun bookshop_N : N ;
-fun workshop_N : N ;
-fun pawnshop_N : N ;
-fun slopshop_N : N ;
-fun barbershop_N : N ;
-fun sweatshop_N : N ;
-fun thriftshop_N : N ;
-fun toyshop_N : N ;
-fun flop_N : N ;
-fun megaflop_N : N ;
-fun teraflop_N : N ;
-fun bellyflop_N : N ;
-fun glop_N : N ;
-fun scallop_N : N ;
-fun gallop_N : N ;
-fun wallop_N : N ;
-fun scollop_N : N ;
-fun dollop_N : N ;
-fun trollop_N : N ;
-fun plop_N : N ;
-fun orlop_N : N ;
-fun slop_N : N ;
-fun mop_N : N ;
-fun dustmop_N : N ;
-fun coop_N : N ;
-fun hencoop_N : N ;
-fun scoop_N : N ;
-fun hoop_N : N ;
-fun whoop_N : N ;
-fun loop_N : N ;
-fun sloop_N : N ;
-fun snoop_N : N ;
-fun poop_N : N ;
-fun nincompoop_N : N ;
-fun droop_N : N ;
-fun troop_N : N ;
-fun stoop_N : N ;
-fun swoop_N : N ;
-fun pop_N : N ;
-fun lollipop_N : N ;
-fun maypop_N : N ;
-fun crop_N : N ;
-fun 'hunting-crop_N' : N ;
-fun 'catch-crop_N' : N ;
-fun stonecrop_N : N ;
-fun outcrop_N : N ;
-fun drop_N : N ;
-fun 'tear-drop_N' : N ;
-fun eyedrop_N : N ;
-fun backdrop_N : N ;
-fun maildrop_N : N ;
-fun gumdrop_N : N ;
-fun raindrop_N : N ;
-fun eardrop_N : N ;
-fun teardrop_N : N ;
-fun airdrop_N : N ;
-fun dewdrop_N : N ;
-fun snowdrop_N : N ;
-fun prop_N : N ;
-fun 'pit-prop_N' : N ;
-fun turboprop_N : N ;
-fun agitprop_N : N ;
-fun pitprop_N : N ;
-fun caltrop_N : N ;
-fun strop_N : N ;
-fun sop_N : N ;
-fun milksop_N : N ;
-fun soursop_N : N ;
-fun hyssop_N : N ;
-fun sweetsop_N : N ;
-fun top_N : N ;
-fun 'humming-top_N' : N ;
-fun 'whipping-top_N' : N ;
-fun hardtop_N : N ;
-fun tabletop_N : N ;
-fun foretop_N : N ;
-fun housetop_N : N ;
-fun rooftop_N : N ;
-fun blacktop_N : N ;
-fun desktop_N : N ;
-fun hilltop_N : N ;
-fun laptop_N : N ;
-fun tiptop_N : N ;
-fun feathertop_N : N ;
-fun countertop_N : N ;
-fun stop_N : N ;
-fun 'whistle-stop_N' : N ;
-fun 'night-stop_N' : N ;
-fun backstop_N : N ;
-fun doorstop_N : N ;
-fun shortstop_N : N ;
-fun flattop_N : N ;
-fun screwtop_N : N ;
-fun wop_N : N ;
-fun swop_N : N ;
-fun repp_N : N ;
-fun epicarp_N : N ;
-fun mericarp_N : N ;
-fun pericarp_N : N ;
-fun ascocarp_N : N ;
-fun podocarp_N : N ;
-fun basidiocarp_N : N ;
-fun angiocarp_N : N ;
-fun monocarp_N : N ;
-fun acrocarp_N : N ;
-fun dipterocarp_N : N ;
-fun sporocarp_N : N ;
-fun pleurocarp_N : N ;
-fun mesocarp_N : N ;
-fun schizocarp_N : N ;
-fun scarp_N : N ;
-fun harp_N : N ;
-fun sharp_N : N ;
-fun cardsharp_N : N ;
-fun warp_N : N ;
-fun twerp_N : N ;
-fun chirp_N : N ;
-fun burp_N : N ;
-fun asp_N : N ;
-fun gasp_N : N ;
-fun hasp_N : N ;
-fun clasp_N : N ;
-fun rasp_N : N ;
-fun grasp_N : N ;
-fun wasp_N : N ;
-fun esp_N : N ;
-fun lisp_N : N ;
-fun crisp_N : N ;
-fun wisp_N : N ;
-fun 'will-o\'-the-wisp_N' : N ;
-fun cusp_N : N ;
-fun 'rub-up_N' : N ;
-fun 'speed-up_N' : N ;
-fun 'build-up_N' : N ;
-fun 'hold-up_N' : N ;
-fun 'send-up_N' : N ;
-fun 'tie-up_N' : N ;
-fun 'shake-up_N' : N ;
-fun 'make-up_N' : N ;
-fun 'take-up_N' : N ;
-fun 'pile-up_N' : N ;
-fun 'pick-me-up_N' : N ;
-fun 'frame-up_N' : N ;
-fun 'line-up_N' : N ;
-fun 'flare-up_N' : N ;
-fun 'close-up_N' : N ;
-fun 'write-up_N' : N ;
-fun 'paste-up_N' : N ;
-fun 'rave-up_N' : N ;
-fun 'booze-up_N' : N ;
-fun 'hang-up_N' : N ;
-fun 'washing-up_N' : N ;
-fun 'summing-up_N' : N ;
-fun 'blowing-up_N' : N ;
-fun 'punch-up_N' : N ;
-fun 'high-up_N' : N ;
-fun 'lash-up_N' : N ;
-fun 'smash-up_N' : N ;
-fun 'nosh-up_N' : N ;
-fun 'brush-up_N' : N ;
-fun 'break-up_N' : N ;
-fun 'back-up_N' : N ;
-fun 'crack-up_N' : N ;
-fun 'pick-up_N' : N ;
-fun 'stick-up_N' : N ;
-fun 'mock-up_N' : N ;
-fun 'link-up_N' : N ;
-fun 'hook-up_N' : N ;
-fun 'mark-up_N' : N ;
-fun 'call-up_N' : N ;
-fun 'pull-up_N' : N ;
-fun 'snarl-up_N' : N ;
-fun 'clean-up_N' : N ;
-fun 'pin-up_N' : N ;
-fun 'burn-up_N' : N ;
-fun 'turn-up_N' : N ;
-fun 'run-up_N' : N ;
-fun 'sun-up_N' : N ;
-fun 'grown-up_N' : N ;
-fun 'slip-up_N' : N ;
-fun 'cover-up_N' : N ;
-fun 'balls-up_N' : N ;
-fun 'mess-up_N' : N ;
-fun 'press-up_N' : N ;
-fun 'toss-up_N' : N ;
-fun 'get-up_N' : N ;
-fun 'let-up_N' : N ;
-fun 'set-up_N' : N ;
-fun 'bust-up_N' : N ;
-fun 'dust-up_N' : N ;
-fun 'blow-up_N' : N ;
-fun 'follow-up_N' : N ;
-fun 'mix-up_N' : N ;
-fun scaup_N : N ;
-fun cup_N : N ;
-fun 'egg-cup_N' : N ;
-fun 'loving-cup_N' : N ;
-fun 'acorn-cup_N' : N ;
-fun 'stirrup-cup_N' : N ;
-fun teacup_N : N ;
-fun hiccup_N : N ;
-fun whitecup_N : N ;
-fun eyecup_N : N ;
-fun eggcup_N : N ;
-fun kingcup_N : N ;
-fun buttercup_N : N ;
-fun scup_N : N ;
-fun buildup_N : N ;
-fun holdup_N : N ;
-fun roundup_N : N ;
-fun makeup_N : N ;
-fun pileup_N : N ;
-fun lineup_N : N ;
-fun closeup_N : N ;
-fun catchup_N : N ;
-fun ketchup_N : N ;
-fun washup_N : N ;
-fun pushup_N : N ;
-fun wickiup_N : N ;
-fun backup_N : N ;
-fun stackup_N : N ;
-fun checkup_N : N ;
-fun pickup_N : N ;
-fun cockup_N : N ;
-fun lockup_N : N ;
-fun hookup_N : N ;
-fun markup_N : N ;
-fun ballup_N : N ;
-fun cleanup_N : N ;
-fun sannup_N : N ;
-fun burnup_N : N ;
-fun runup_N : N ;
-fun coup_N : N ;
-fun countercoup_N : N ;
-fun cantaloup_N : N ;
-fun croup_N : N ;
-fun group_N : N ;
-fun 'blood-group_N' : N ;
-fun 'age-group_N' : N ;
-fun 'skiffle-group_N' : N ;
-fun subgroup_N : N ;
-fun playgroup_N : N ;
-fun soup_N : N ;
-fun 'pea-soup_N' : N ;
-fun stoup_N : N ;
-fun pup_N : N ;
-fun sirup_N : N ;
-fun chirrup_N : N ;
-fun stirrup_N : N ;
-fun syrup_N : N ;
-fun sup_N : N ;
-fun tossup_N : N ;
-fun catsup_N : N ;
-fun tup_N : N ;
-fun letup_N : N ;
-fun setup_N : N ;
-fun startup_N : N ;
-fun screwup_N : N ;
-fun vp_N : N ;
-fun gyp_N : N ;
-fun polyp_N : N ;
-fun iq_N : N ;
-fun qepiq_N : N ;
-fun dander_N : N ;
-fun 'hugger-mugger_N' : N ;
-fun smother_N : N ;
-fun 'pis aller_N' : N ;
-fun simmer_N : N ;
-fun hereafter_N : N ;
-fun welter_N : N ;
-fun whir_N : N ;
-fun señor_N : N ;
-fun herr_N : N ;
-fun whirr_N : N ;
-fun monsieur_N : N ;
-fun 'man-of-war_N' : N ;
-fun deer_N : N ;
-fun 'musk-deer_N' : N ;
-fun 'fallow-deer_N' : N ;
-fun reindeer_N : N ;
-fun denier_N : N ;
-fun horsepower_N : N ;
-fun maar_N : N ;
-fun bazaar_N : N ;
-fun bar_N : N ;
-fun 'sand-bar_N' : N ;
-fun 'space-bar_N' : N ;
-fun 'snack-bar_N' : N ;
-fun 'oyster-bar_N' : N ;
-fun 'color-bar_N' : N ;
-fun 'colour-bar_N' : N ;
-fun cinnabar_N : N ;
-fun sandbar_N : N ;
-fun sidebar_N : N ;
-fun handlebar_N : N ;
-fun millibar_N : N ;
-fun minibar_N : N ;
-fun milkbar_N : N ;
-fun tollbar_N : N ;
-fun liquidambar_N : N ;
-fun sambar_N : N ;
-fun isobar_N : N ;
-fun durbar_N : N ;
-fun crossbar_N : N ;
-fun busbar_N : N ;
-fun drawbar_N : N ;
-fun crowbar_N : N ;
-fun car_N : N ;
-fun 'cable-car_N' : N ;
-fun 'smoking-car_N' : N ;
-fun 'dining-car_N' : N ;
-fun 'sleeping-car_N' : N ;
-fun 'jaunting-car_N' : N ;
-fun 'tank-car_N' : N ;
-fun 'tram-car_N' : N ;
-fun 'parlour-car_N' : N ;
-fun 'sports-car_N' : N ;
-fun 'flat-car_N' : N ;
-fun 'trolley-car_N' : N ;
-fun handcar_N : N ;
-fun sidecar_N : N ;
-fun horsecar_N : N ;
-fun minicar_N : N ;
-fun vicar_N : N ;
-fun stockcar_N : N ;
-fun railcar_N : N ;
-fun tramcar_N : N ;
-fun motorcar_N : N ;
-fun scar_N : N ;
-fun lascar_N : N ;
-fun oscar_N : N ;
-fun flatcar_N : N ;
-fun streetcar_N : N ;
-fun boxcar_N : N ;
-fun radar_N : N ;
-fun cheddar_N : N ;
-fun cedar_N : N ;
-fun lidar_N : N ;
-fun calendar_N : N ;
-fun deodar_N : N ;
-fun sirdar_N : N ;
-fun ear_N : N ;
-fun bear_N : N ;
-fun forebear_N : N ;
-fun bugbear_N : N ;
-fun forbear_N : N ;
-fun dear_N : N ;
-fun fear_N : N ;
-fun gear_N : N ;
-fun 'landing-gear_N' : N ;
-fun 'steering-gear_N' : N ;
-fun 'worm-gear_N' : N ;
-fun headgear_N : N ;
-fun shear_N : N ;
-fun clear_N : N ;
-fun trochlear_N : N ;
-fun smear_N : N ;
-fun pear_N : N ;
-fun spear_N : N ;
-fun rear_N : N ;
-fun tear_N : N ;
-fun wheatear_N : N ;
-fun wear_N : N ;
-fun handwear_N : N ;
-fun loungewear_N : N ;
-fun beachwear_N : N ;
-fun neckwear_N : N ;
-fun workwear_N : N ;
-fun formalwear_N : N ;
-fun underwear_N : N ;
-fun outerwear_N : N ;
-fun sportswear_N : N ;
-fun nightwear_N : N ;
-fun knitwear_N : N ;
-fun footwear_N : N ;
-fun year_N : N ;
-fun 'leap-year_N' : N ;
-fun shofar_N : N ;
-fun gar_N : N ;
-fun agar_N : N ;
-fun 'agar-agar_N' : N ;
-fun vinegar_N : N ;
-fun eggar_N : N ;
-fun beggar_N : N ;
-fun cigar_N : N ;
-fun budgerigar_N : N ;
-fun realgar_N : N ;
-fun hangar_N : N ;
-fun cougar_N : N ;
-fun sugar_N : N ;
-fun 'grape-sugar_N' : N ;
-fun 'loaf-sugar_N' : N ;
-fun 'barley-sugar_N' : N ;
-fun lahar_N : N ;
-fun char_N : N ;
-fun eschar_N : N ;
-fun justiciar_N : N ;
-fun liar_N : N ;
-fun familiar_N : N ;
-fun briar_N : N ;
-fun sweetbriar_N : N ;
-fun friar_N : N ;
-fun caviar_N : N ;
-fun jar_N : N ;
-fun jamjar_N : N ;
-fun nightjar_N : N ;
-fun scalar_N : N ;
-fun medlar_N : N ;
-fun pedlar_N : N ;
-fun velar_N : N ;
-fun burglar_N : N ;
-fun ashlar_N : N ;
-fun cellar_N : N ;
-fun 'salt-cellar_N' : N ;
-fun saltcellar_N : N ;
-fun pillar_N : N ;
-fun caterpillar_N : N ;
-fun collar_N : N ;
-fun 'dog-collar_N' : N ;
-fun dollar_N : N ;
-fun eurodollar_N : N ;
-fun escolar_N : N ;
-fun alveolar_N : N ;
-fun scholar_N : N ;
-fun molar_N : N ;
-fun premolar_N : N ;
-fun exemplar_N : N ;
-fun poplar_N : N ;
-fun vernacular_N : N ;
-fun spectacular_N : N ;
-fun perpendicular_N : N ;
-fun funicular_N : N ;
-fun particular_N : N ;
-fun circular_N : N ;
-fun regular_N : N ;
-fun irregular_N : N ;
-fun singular_N : N ;
-fun jugular_N : N ;
-fun scapular_N : N ;
-fun jacamar_N : N ;
-fun khimar_N : N ;
-fun fulmar_N : N ;
-fun dammar_N : N ;
-fun grammar_N : N ;
-fun chanar_N : N ;
-fun denar_N : N ;
-fun thenar_N : N ;
-fun dinar_N : N ;
-fun seminar_N : N ;
-fun sonar_N : N ;
-fun oar_N : N ;
-fun boar_N : N ;
-fun roar_N : N ;
-fun uproar_N : N ;
-fun soar_N : N ;
-fun par_N : N ;
-fun apar_N : N ;
-fun spar_N : N ;
-fun feldspar_N : N ;
-fun felspar_N : N ;
-fun registrar_N : N ;
-fun quasar_N : N ;
-fun caesar_N : N ;
-fun pulsar_N : N ;
-fun bursar_N : N ;
-fun antimacassar_N : N ;
-fun commissar_N : N ;
-fun hussar_N : N ;
-fun tsar_N : N ;
-fun tar_N : N ;
-fun 'coal-tar_N' : N ;
-fun avatar_N : N ;
-fun nectar_N : N ;
-fun scimitar_N : N ;
-fun sitar_N : N ;
-fun guitar_N : N ;
-fun altar_N : N ;
-fun tartar_N : N ;
-fun mortar_N : N ;
-fun star_N : N ;
-fun 'pole-star_N' : N ;
-fun 'film-star_N' : N ;
-fun 'co-star_N' : N ;
-fun loadstar_N : N ;
-fun lodestar_N : N ;
-fun earthstar_N : N ;
-fun instar_N : N ;
-fun attar_N : N ;
-fun cottar_N : N ;
-fun guar_N : N ;
-fun jaguar_N : N ;
-fun bolivar_N : N ;
-fun cultivar_N : N ;
-fun lekvar_N : N ;
-fun samovar_N : N ;
-fun louvar_N : N ;
-fun war_N : N ;
-fun salwar_N : N ;
-fun Magyar_N : N ;
-fun alcazar_N : N ;
-fun lazar_N : N ;
-fun czar_N : N ;
-fun izar_N : N ;
-fun tzar_N : N ;
-fun nebuchadnezzar_N : N ;
-fun caber_N : N ;
-fun saber_N : N ;
-fun jabber_N : N ;
-fun clabber_N : N ;
-fun grabber_N : N ;
-fun stabber_N : N ;
-fun dibber_N : N ;
-fun fibber_N : N ;
-fun cobber_N : N ;
-fun jobber_N : N ;
-fun stockjobber_N : N ;
-fun clobber_N : N ;
-fun slobber_N : N ;
-fun robber_N : N ;
-fun graverobber_N : N ;
-fun lubber_N : N ;
-fun blubber_N : N ;
-fun landlubber_N : N ;
-fun rubber_N : N ;
-fun 'india-rubber_N' : N ;
-fun 'foam-rubber_N' : N ;
-fun scrubber_N : N ;
-fun 'money-grubber_N' : N ;
-fun moneygrubber_N : N ;
-fun weber_N : N ;
-fun fiber_N : N ;
-fun briber_N : N ;
-fun scriber_N : N ;
-fun subscriber_N : N ;
-fun transcriber_N : N ;
-fun amber_N : N ;
-fun camber_N : N ;
-fun chamber_N : N ;
-fun 'council-chamber_N' : N ;
-fun antechamber_N : N ;
-fun clamber_N : N ;
-fun ember_N : N ;
-fun December_N : N ;
-fun member_N : N ;
-fun nonmember_N : N ;
-fun September_N : N ;
-fun November_N : N ;
-fun limber_N : N ;
-fun climber_N : N ;
-fun timber_N : N ;
-fun bomber_N : N ;
-fun 'dive-bomber_N' : N ;
-fun comber_N : N ;
-fun beachcomber_N : N ;
-fun umber_N : N ;
-fun cucumber_N : N ;
-fun lumber_N : N ;
-fun clumber_N : N ;
-fun plumber_N : N ;
-fun slumber_N : N ;
-fun number_N : N ;
-fun 'box-number_N' : N ;
-fun October_N : N ;
-fun barber_N : N ;
-fun absorber_N : N ;
-fun disturber_N : N ;
-fun dauber_N : N ;
-fun tuber_N : N ;
-fun facer_N : N ;
-fun lacer_N : N ;
-fun placer_N : N ;
-fun pacer_N : N ;
-fun racer_N : N ;
-fun bracer_N : N ;
-fun tracer_N : N ;
-fun soccer_N : N ;
-fun dicer_N : N ;
-fun officer_N : N ;
-fun 'field-officer_N' : N ;
-fun 'police-officer_N' : N ;
-fun 'law-officer_N' : N ;
-fun sacrificer_N : N ;
-fun artificer_N : N ;
-fun splicer_N : N ;
-fun slicer_N : N ;
-fun voicer_N : N ;
-fun ricer_N : N ;
-fun noticer_N : N ;
-fun ulcer_N : N ;
-fun cancer_N : N ;
-fun dancer_N : N ;
-fun 'rope-dancer_N' : N ;
-fun 'ballet-dancer_N' : N ;
-fun lancer_N : N ;
-fun balancer_N : N ;
-fun freelancer_N : N ;
-fun geomancer_N : N ;
-fun lithomancer_N : N ;
-fun onomancer_N : N ;
-fun necromancer_N : N ;
-fun hydromancer_N : N ;
-fun oneiromancer_N : N ;
-fun pyromancer_N : N ;
-fun prancer_N : N ;
-fun advancer_N : N ;
-fun conveyancer_N : N ;
-fun fencer_N : N ;
-fun silencer_N : N ;
-fun sequencer_N : N ;
-fun mincer_N : N ;
-fun pincer_N : N ;
-fun bouncer_N : N ;
-fun announcer_N : N ;
-fun grocer_N : N ;
-fun greengrocer_N : N ;
-fun mercer_N : N ;
-fun saucer_N : N ;
-fun traducer_N : N ;
-fun adducer_N : N ;
-fun reducer_N : N ;
-fun seducer_N : N ;
-fun inducer_N : N ;
-fun producer_N : N ;
-fun reproducer_N : N ;
-fun transducer_N : N ;
-fun header_N : N ;
-fun leader_N : N ;
-fun 'strike-leader_N' : N ;
-fun 'loss-leader_N' : N ;
-fun bandleader_N : N ;
-fun ringleader_N : N ;
-fun cheerleader_N : N ;
-fun misleader_N : N ;
-fun reader_N : N ;
-fun 'mind-reader_N' : N ;
-fun 'map-reader_N' : N ;
-fun 'thought-reader_N' : N ;
-fun proofreader_N : N ;
-fun nonreader_N : N ;
-fun spreader_N : N ;
-fun newsreader_N : N ;
-fun sightreader_N : N ;
-fun escalader_N : N ;
-fun rollerblader_N : N ;
-fun loader_N : N ;
-fun freeloader_N : N ;
-fun breechloader_N : N ;
-fun autoloader_N : N ;
-fun abrader_N : N ;
-fun masquerader_N : N ;
-fun grader_N : N ;
-fun trader_N : N ;
-fun 'free-trader_N' : N ;
-fun crusader_N : N ;
-fun persuader_N : N ;
-fun invader_N : N ;
-fun wader_N : N ;
-fun adder_N : N ;
-fun ladder_N : N ;
-fun 'rope-ladder_N' : N ;
-fun 'scaling-ladder_N' : N ;
-fun bladder_N : N ;
-fun 'air-bladder_N' : N ;
-fun gallbladder_N : N ;
-fun stepladder_N : N ;
-fun madder_N : N ;
-fun bedder_N : N ;
-fun shedder_N : N ;
-fun sledder_N : N ;
-fun shredder_N : N ;
-fun bidder_N : N ;
-fun skidder_N : N ;
-fun dodder_N : N ;
-fun fodder_N : N ;
-fun 'cannon-fodder_N' : N ;
-fun plodder_N : N ;
-fun udder_N : N ;
-fun shudder_N : N ;
-fun mudder_N : N ;
-fun rudder_N : N ;
-fun feeder_N : N ;
-fun speeder_N : N ;
-fun breeder_N : N ;
-fun mouthbreeder_N : N ;
-fun stockbreeder_N : N ;
-fun seeder_N : N ;
-fun weeder_N : N ;
-fun raider_N : N ;
-fun upbraider_N : N ;
-fun cider_N : N ;
-fun eider_N : N ;
-fun glider_N : N ;
-fun collider_N : N ;
-fun slider_N : N ;
-fun voider_N : N ;
-fun spider_N : N ;
-fun rider_N : N ;
-fun 'dispatch-rider_N' : N ;
-fun roughrider_N : N ;
-fun strider_N : N ;
-fun outrider_N : N ;
-fun insider_N : N ;
-fun outsider_N : N ;
-fun divider_N : N ;
-fun subdivider_N : N ;
-fun provider_N : N ;
-fun alder_N : N ;
-fun elder_N : N ;
-fun fielder_N : N ;
-fun infielder_N : N ;
-fun outfielder_N : N ;
-fun welder_N : N ;
-fun gilder_N : N ;
-fun builder_N : N ;
-fun 'coach-builder_N' : N ;
-fun 'jerry-builder_N' : N ;
-fun homebuilder_N : N ;
-fun coachbuilder_N : N ;
-fun shipbuilder_N : N ;
-fun boatbuilder_N : N ;
-fun bodybuilder_N : N ;
-fun guilder_N : N ;
-fun folder_N : N ;
-fun holder_N : N ;
-fun 'bond-holder_N' : N ;
-fun 'office-holder_N' : N ;
-fun 'stake-holder_N' : N ;
-fun 'cigarette-holder_N' : N ;
-fun 'gas-holder_N' : N ;
-fun jobholder_N : N ;
-fun landholder_N : N ;
-fun bondholder_N : N ;
-fun cardholder_N : N ;
-fun beholder_N : N ;
-fun placeholder_N : N ;
-fun officeholder_N : N ;
-fun freeholder_N : N ;
-fun stakeholder_N : N ;
-fun shareholder_N : N ;
-fun leaseholder_N : N ;
-fun householder_N : N ;
-fun slaveholder_N : N ;
-fun withholder_N : N ;
-fun stockholder_N : N ;
-fun smallholder_N : N ;
-fun upholder_N : N ;
-fun potholder_N : N ;
-fun policyholder_N : N ;
-fun copyholder_N : N ;
-fun polder_N : N ;
-fun solder_N : N ;
-fun 'soft-solder_N' : N ;
-fun boulder_N : N ;
-fun shoulder_N : N ;
-fun smoulder_N : N ;
-fun oleander_N : N ;
-fun meander_N : N ;
-fun gander_N : N ;
-fun 'right-hander_N' : N ;
-fun backhander_N : N ;
-fun coriander_N : N ;
-fun lander_N : N ;
-fun zealander_N : N ;
-fun icelander_N : N ;
-fun highlander_N : N ;
-fun hollander_N : N ;
-fun colander_N : N ;
-fun netherlander_N : N ;
-fun slander_N : N ;
-fun islander_N : N ;
-fun lowlander_N : N ;
-fun salamander_N : N ;
-fun demander_N : N ;
-fun commander_N : N ;
-fun 'wing-commander_N' : N ;
-fun germander_N : N ;
-fun gerrymander_N : N ;
-fun pander_N : N ;
-fun goosander_N : N ;
-fun stander_N : N ;
-fun grandstander_N : N ;
-fun withstander_N : N ;
-fun bystander_N : N ;
-fun bender_N : N ;
-fun hellbender_N : N ;
-fun ascender_N : N ;
-fun descender_N : N ;
-fun fender_N : N ;
-fun defender_N : N ;
-fun offender_N : N ;
-fun gender_N : N ;
-fun apprehender_N : N ;
-fun weekender_N : N ;
-fun lender_N : N ;
-fun calender_N : N ;
-fun blender_N : N ;
-fun cullender_N : N ;
-fun moneylender_N : N ;
-fun mender_N : N ;
-fun roadmender_N : N ;
-fun spender_N : N ;
-fun suspender_N : N ;
-fun render_N : N ;
-fun surrender_N : N ;
-fun sender_N : N ;
-fun tender_N : N ;
-fun pretender_N : N ;
-fun contender_N : N ;
-fun bartender_N : N ;
-fun vender_N : N ;
-fun lavender_N : N ;
-fun provender_N : N ;
-fun remainder_N : N ;
-fun attainder_N : N ;
-fun binder_N : N ;
-fun highbinder_N : N ;
-fun bookbinder_N : N ;
-fun spellbinder_N : N ;
-fun cinder_N : N ;
-fun finder_N : N ;
-fun 'path-finder_N' : N ;
-fun 'direction-finder_N' : N ;
-fun 'water-finder_N' : N ;
-fun 'fault-finder_N' : N ;
-fun rangefinder_N : N ;
-fun viewfinder_N : N ;
-fun cylinder_N : N ;
-fun minder_N : N ;
-fun 'baby-minder_N' : N ;
-fun reminder_N : N ;
-fun babyminder_N : N ;
-fun rejoinder_N : N ;
-fun surrejoinder_N : N ;
-fun grinder_N : N ;
-fun 'organ-grinder_N' : N ;
-fun tinder_N : N ;
-fun winder_N : N ;
-fun sidewinder_N : N ;
-fun seconder_N : N ;
-fun absconder_N : N ;
-fun transponder_N : N ;
-fun wonder_N : N ;
-fun thunder_N : N ;
-fun blunder_N : N ;
-fun plunder_N : N ;
-fun bounder_N : N ;
-fun founder_N : N ;
-fun 'bell-founder_N' : N ;
-fun cofounder_N : N ;
-fun flounder_N : N ;
-fun pounder_N : N ;
-fun 'four-pounder_N' : N ;
-fun rounder_N : N ;
-fun 'all-rounder_N' : N ;
-fun grounder_N : N ;
-fun backgrounder_N : N ;
-fun sounder_N : N ;
-fun 'echo-sounder_N' : N ;
-fun sunder_N : N ;
-fun decoder_N : N ;
-fun 'do-gooder_N' : N ;
-fun larder_N : N ;
-fun boarder_N : N ;
-fun 'day-boarder_N' : N ;
-fun skateboarder_N : N ;
-fun snowboarder_N : N ;
-fun hoarder_N : N ;
-fun warder_N : N ;
-fun yarder_N : N ;
-fun herder_N : N ;
-fun sheepherder_N : N ;
-fun girder_N : N ;
-fun order_N : N ;
-fun 'banning-order_N' : N ;
-fun 'money-order_N' : N ;
-fun border_N : N ;
-fun suborder_N : N ;
-fun recorder_N : N ;
-fun 'tape-recorder_N' : N ;
-fun camcorder_N : N ;
-fun reorder_N : N ;
-fun superorder_N : N ;
-fun disorder_N : N ;
-fun murder_N : N ;
-fun marauder_N : N ;
-fun intruder_N : N ;
-fun chowder_N : N ;
-fun clowder_N : N ;
-fun powder_N : N ;
-fun 'face-powder_N' : N ;
-fun 'plate-powder_N' : N ;
-fun 'bleaching-powder_N' : N ;
-fun 'baking-powder_N' : N ;
-fun 'milk-powder_N' : N ;
-fun 'insect-powder_N' : N ;
-fun 'toilet-powder_N' : N ;
-fun 'curry-powder_N' : N ;
-fun toothpowder_N : N ;
-fun gunpowder_N : N ;
-fun cyder_N : N ;
-fun beer_N : N ;
-fun killdeer_N : N ;
-fun cheer_N : N ;
-fun jeer_N : N ;
-fun leer_N : N ;
-fun fleer_N : N ;
-fun bandoleer_N : N ;
-fun pistoleer_N : N ;
-fun ameer_N : N ;
-fun emeer_N : N ;
-fun schmeer_N : N ;
-fun buccaneer_N : N ;
-fun sloganeer_N : N ;
-fun veneer_N : N ;
-fun mountaineer_N : N ;
-fun carbineer_N : N ;
-fun engineer_N : N ;
-fun mutineer_N : N ;
-fun scrutineer_N : N ;
-fun pioneer_N : N ;
-fun auctioneer_N : N ;
-fun conventioneer_N : N ;
-fun sneer_N : N ;
-fun peer_N : N ;
-fun compeer_N : N ;
-fun career_N : N ;
-fun seer_N : N ;
-fun overseer_N : N ;
-fun sightseer_N : N ;
-fun privateer_N : N ;
-fun gadgeteer_N : N ;
-fun racketeer_N : N ;
-fun musketeer_N : N ;
-fun pamphleteer_N : N ;
-fun muleteer_N : N ;
-fun sonneteer_N : N ;
-fun puppeteer_N : N ;
-fun profiteer_N : N ;
-fun volunteer_N : N ;
-fun charioteer_N : N ;
-fun steer_N : N ;
-fun gazetteer_N : N ;
-fun queer_N : N ;
-fun cockchafer_N : N ;
-fun loafer_N : N ;
-fun strafer_N : N ;
-fun wafer_N : N ;
-fun reefer_N : N ;
-fun gaffer_N : N ;
-fun quaffer_N : N ;
-fun whiffer_N : N ;
-fun sniffer_N : N ;
-fun offer_N : N ;
-fun coffer_N : N ;
-fun scoffer_N : N ;
-fun goffer_N : N ;
-fun counteroffer_N : N ;
-fun proffer_N : N ;
-fun buffer_N : N ;
-fun scuffer_N : N ;
-fun duffer_N : N ;
-fun bluffer_N : N ;
-fun snuffer_N : N ;
-fun candlesnuffer_N : N ;
-fun puffer_N : N ;
-fun stuffer_N : N ;
-fun laticifer_N : N ;
-fun lucifer_N : N ;
-fun crucifer_N : N ;
-fun heifer_N : N ;
-fun lifer_N : N ;
-fun umbellifer_N : N ;
-fun conifer_N : N ;
-fun thurifer_N : N ;
-fun rotifer_N : N ;
-fun aquifer_N : N ;
-fun telfer_N : N ;
-fun golfer_N : N ;
-fun gofer_N : N ;
-fun hoofer_N : N ;
-fun roofer_N : N ;
-fun woofer_N : N ;
-fun subwoofer_N : N ;
-fun twofer_N : N ;
-fun surfer_N : N ;
-fun transfer_N : N ;
-fun titfer_N : N ;
-fun langlaufer_N : N ;
-fun laager_N : N ;
-fun lager_N : N ;
-fun pillager_N : N ;
-fun villager_N : N ;
-fun manager_N : N ;
-fun tanager_N : N ;
-fun teenager_N : N ;
-fun onager_N : N ;
-fun forager_N : N ;
-fun arbitrager_N : N ;
-fun massager_N : N ;
-fun vintager_N : N ;
-fun stager_N : N ;
-fun upstager_N : N ;
-fun cottager_N : N ;
-fun salvager_N : N ;
-fun wager_N : N ;
-fun dowager_N : N ;
-fun voyager_N : N ;
-fun badger_N : N ;
-fun cadger_N : N ;
-fun edger_N : N ;
-fun hedger_N : N ;
-fun ledger_N : N ;
-fun pledger_N : N ;
-fun dredger_N : N ;
-fun abridger_N : N ;
-fun codger_N : N ;
-fun dodger_N : N ;
-fun lodger_N : N ;
-fun nudger_N : N ;
-fun trudger_N : N ;
-fun jaeger_N : N ;
-fun besieger_N : N ;
-fun integer_N : N ;
-fun bagger_N : N ;
-fun sandbagger_N : N ;
-fun carpetbagger_N : N ;
-fun dagger_N : N ;
-fun nagger_N : N ;
-fun bragger_N : N ;
-fun tagger_N : N ;
-fun stagger_N : N ;
-fun swagger_N : N ;
-fun bootlegger_N : N ;
-fun digger_N : N ;
-fun 'gold-digger_N' : N ;
-fun gravedigger_N : N ;
-fun jigger_N : N ;
-fun nigger_N : N ;
-fun snigger_N : N ;
-fun rigger_N : N ;
-fun trigger_N : N ;
-fun 'hair-trigger_N' : N ;
-fun outrigger_N : N ;
-fun jogger_N : N ;
-fun blogger_N : N ;
-fun flogger_N : N ;
-fun slogger_N : N ;
-fun footslogger_N : N ;
-fun bugger_N : N ;
-fun debugger_N : N ;
-fun hugger_N : N ;
-fun lugger_N : N ;
-fun slugger_N : N ;
-fun mugger_N : N ;
-fun rugger_N : N ;
-fun geiger_N : N ;
-fun liger_N : N ;
-fun obliger_N : N ;
-fun armiger_N : N ;
-fun tiger_N : N ;
-fun anger_N : N ;
-fun banger_N : N ;
-fun danger_N : N ;
-fun ganger_N : N ;
-fun doppelganger_N : N ;
-fun hanger_N : N ;
-fun 'cliff-hanger_N' : N ;
-fun 'clothes-hanger_N' : N ;
-fun 'dress-hanger_N' : N ;
-fun 'coat-hanger_N' : N ;
-fun changer_N : N ;
-fun 'auto-changer_N' : N ;
-fun exchanger_N : N ;
-fun moneychanger_N : N ;
-fun cliffhanger_N : N ;
-fun straphanger_N : N ;
-fun paperhanger_N : N ;
-fun phalanger_N : N ;
-fun clanger_N : N ;
-fun manger_N : N ;
-fun ranger_N : N ;
-fun arranger_N : N ;
-fun stranger_N : N ;
-fun challenger_N : N ;
-fun passenger_N : N ;
-fun messenger_N : N ;
-fun avenger_N : N ;
-fun scavenger_N : N ;
-fun harbinger_N : N ;
-fun humdinger_N : N ;
-fun finger_N : N ;
-fun 'ring-finger_N' : N ;
-fun forefinger_N : N ;
-fun ladyfinger_N : N ;
-fun ginger_N : N ;
-fun slinger_N : N ;
-fun mudslinger_N : N ;
-fun pinger_N : N ;
-fun ringer_N : N ;
-fun 'bell-ringer_N' : N ;
-fun springer_N : N ;
-fun derringer_N : N ;
-fun porringer_N : N ;
-fun stringer_N : N ;
-fun wringer_N : N ;
-fun singer_N : N ;
-fun 'torch-singer_N' : N ;
-fun 'lieder-singer_N' : N ;
-fun stinger_N : N ;
-fun winger_N : N ;
-fun 'left-winger_N' : N ;
-fun 'right-winger_N' : N ;
-fun swinger_N : N ;
-fun zinger_N : N ;
-fun conger_N : N ;
-fun longer_N : N ;
-fun monger_N : N ;
-fun 'rumour-monger_N' : N ;
-fun wordmonger_N : N ;
-fun scaremonger_N : N ;
-fun whoremonger_N : N ;
-fun cheesemonger_N : N ;
-fun hatemonger_N : N ;
-fun fishmonger_N : N ;
-fun scandalmonger_N : N ;
-fun ironmonger_N : N ;
-fun warmonger_N : N ;
-fun costermonger_N : N ;
-fun newsmonger_N : N ;
-fun sponger_N : N ;
-fun hunger_N : N ;
-fun lunger_N : N ;
-fun plunger_N : N ;
-fun lounger_N : N ;
-fun scrounger_N : N ;
-fun cataloger_N : N ;
-fun astrologer_N : N ;
-fun booger_N : N ;
-fun charger_N : N ;
-fun supercharger_N : N ;
-fun enlarger_N : N ;
-fun merger_N : N ;
-fun serger_N : N ;
-fun verger_N : N ;
-fun forger_N : N ;
-fun burger_N : N ;
-fun tunaburger_N : N ;
-fun cheeseburger_N : N ;
-fun hamburger_N : N ;
-fun luxemburger_N : N ;
-fun auger_N : N ;
-fun luger_N : N ;
-fun gouger_N : N ;
-fun bleacher_N : N ;
-fun preacher_N : N ;
-fun teacher_N : N ;
-fun schoolteacher_N : N ;
-fun stomacher_N : N ;
-fun poacher_N : N ;
-fun lecher_N : N ;
-fun welcher_N : N ;
-fun rancher_N : N ;
-fun 'cross-bencher_N' : N ;
-fun 'front-bencher_N' : N ;
-fun backbencher_N : N ;
-fun crossbencher_N : N ;
-fun frontbencher_N : N ;
-fun trencher_N : N ;
-fun wencher_N : N ;
-fun clincher_N : N ;
-fun launcher_N : N ;
-fun luncher_N : N ;
-fun muncher_N : N ;
-fun puncher_N : N ;
-fun ocher_N : N ;
-fun moocher_N : N ;
-fun archer_N : N ;
-fun searcher_N : N ;
-fun researcher_N : N ;
-fun marcher_N : N ;
-fun 'hunger-marcher_N' : N ;
-fun percher_N : N ;
-fun scorcher_N : N ;
-fun lurcher_N : N ;
-fun pinscher_N : N ;
-fun affenpinscher_N : N ;
-fun catcher_N : N ;
-fun 'oyster-catcher_N' : N ;
-fun oystercatcher_N : N ;
-fun gnatcatcher_N : N ;
-fun cowcatcher_N : N ;
-fun flycatcher_N : N ;
-fun thatcher_N : N ;
-fun snatcher_N : N ;
-fun 'body-snatcher_N' : N ;
-fun dispatcher_N : N ;
-fun scratcher_N : N ;
-fun backscratcher_N : N ;
-fun watcher_N : N ;
-fun 'fire-watcher_N' : N ;
-fun birdwatcher_N : N ;
-fun portwatcher_N : N ;
-fun etcher_N : N ;
-fun sketcher_N : N ;
-fun stretcher_N : N ;
-fun pitcher_N : N ;
-fun stitcher_N : N ;
-fun dowitcher_N : N ;
-fun switcher_N : N ;
-fun botcher_N : N ;
-fun butcher_N : N ;
-fun 'pork-butcher_N' : N ;
-fun blucher_N : N ;
-fun sloucher_N : N ;
-fun toucher_N : N ;
-fun voucher_N : N ;
-fun weigher_N : N ;
-fun burgher_N : N ;
-fun laugher_N : N ;
-fun paragrapher_N : N ;
-fun telegrapher_N : N ;
-fun calligrapher_N : N ;
-fun lexicographer_N : N ;
-fun geographer_N : N ;
-fun paleographer_N : N ;
-fun choreographer_N : N ;
-fun lithographer_N : N ;
-fun biographer_N : N ;
-fun autobiographer_N : N ;
-fun radiographer_N : N ;
-fun hagiographer_N : N ;
-fun bibliographer_N : N ;
-fun crystallographer_N : N ;
-fun demographer_N : N ;
-fun cosmographer_N : N ;
-fun oceanographer_N : N ;
-fun stenographer_N : N ;
-fun ethnographer_N : N ;
-fun pornographer_N : N ;
-fun typographer_N : N ;
-fun pyrographer_N : N ;
-fun photographer_N : N ;
-fun 'press-photographer_N' : N ;
-fun cartographer_N : N ;
-fun cipher_N : N ;
-fun telpher_N : N ;
-fun gopher_N : N ;
-fun philosopher_N : N ;
-fun cypher_N : N ;
-fun haberdasher_N : N ;
-fun lasher_N : N ;
-fun flasher_N : N ;
-fun splasher_N : N ;
-fun slasher_N : N ;
-fun masher_N : N ;
-fun smasher_N : N ;
-fun rasher_N : N ;
-fun gatecrasher_N : N ;
-fun thrasher_N : N ;
-fun washer_N : N ;
-fun dishwasher_N : N ;
-fun fresher_N : N ;
-fun refresher_N : N ;
-fun thresher_N : N ;
-fun fisher_N : N ;
-fun kingfisher_N : N ;
-fun publisher_N : N ;
-fun polisher_N : N ;
-fun skirmisher_N : N ;
-fun vanisher_N : N ;
-fun finisher_N : N ;
-fun refinisher_N : N ;
-fun admonisher_N : N ;
-fun varnisher_N : N ;
-fun perisher_N : N ;
-fun Britisher_N : N ;
-fun languisher_N : N ;
-fun extinguisher_N : N ;
-fun 'fire-extinguisher_N' : N ;
-fun 'well-wisher_N' : N ;
-fun welsher_N : N ;
-fun kosher_N : N ;
-fun nosher_N : N ;
-fun usher_N : N ;
-fun ambusher_N : N ;
-fun gusher_N : N ;
-fun musher_N : N ;
-fun pusher_N : N ;
-fun 'pen-pusher_N' : N ;
-fun penpusher_N : N ;
-fun rusher_N : N ;
-fun crusher_N : N ;
-fun bather_N : N ;
-fun sunbather_N : N ;
-fun feather_N : N ;
-fun 'quill-feather_N' : N ;
-fun heather_N : N ;
-fun leather_N : N ;
-fun 'shoe-leather_N' : N ;
-fun 'wash-leather_N' : N ;
-fun 'chamois-leather_N' : N ;
-fun 'chammy-leather_N' : N ;
-fun breather_N : N ;
-fun weather_N : N ;
-fun father_N : N ;
-fun 'foster-father_N' : N ;
-fun grandfather_N : N ;
-fun godfather_N : N ;
-fun forefather_N : N ;
-fun housefather_N : N ;
-fun stepfather_N : N ;
-fun gather_N : N ;
-fun lather_N : N ;
-fun blather_N : N ;
-fun ether_N : N ;
-fun aether_N : N ;
-fun 'get-together_N' : N ;
-fun blether_N : N ;
-fun tether_N : N ;
-fun wether_N : N ;
-fun bellwether_N : N ;
-fun dither_N : N ;
-fun tither_N : N ;
-fun zither_N : N ;
-fun anther_N : N ;
-fun panther_N : N ;
-fun other_N : N ;
-fun bother_N : N ;
-fun mother_N : N ;
-fun 'foster-mother_N' : N ;
-fun grandmother_N : N ;
-fun godmother_N : N ;
-fun foremother_N : N ;
-fun housemother_N : N ;
-fun stepmother_N : N ;
-fun pother_N : N ;
-fun brother_N : N ;
-fun 'half-brother_N' : N ;
-fun 'foster-brother_N' : N ;
-fun stepbrother_N : N ;
-fun shanghaier_N : N ;
-fun bier_N : N ;
-fun ribier_N : N ;
-fun glacier_N : N ;
-fun fancier_N : N ;
-fun 'bird-fancier_N' : N ;
-fun financier_N : N ;
-fun brigadier_N : N ;
-fun grenadier_N : N ;
-fun soldier_N : N ;
-fun bombardier_N : N ;
-fun boulevardier_N : N ;
-fun halberdier_N : N ;
-fun pacifier_N : N ;
-fun specifier_N : N ;
-fun modifier_N : N ;
-fun qualifier_N : N ;
-fun nullifier_N : N ;
-fun amplifier_N : N ;
-fun magnifier_N : N ;
-fun purifier_N : N ;
-fun falsifier_N : N ;
-fun emulsifier_N : N ;
-fun intensifier_N : N ;
-fun versifier_N : N ;
-fun classifier_N : N ;
-fun rectifier_N : N ;
-fun quantifier_N : N ;
-fun identifier_N : N ;
-fun testifier_N : N ;
-fun complexifier_N : N ;
-fun satisfier_N : N ;
-fun cashier_N : N ;
-fun clothier_N : N ;
-fun luthier_N : N ;
-fun skier_N : N ;
-fun espalier_N : N ;
-fun cavalier_N : N ;
-fun chandelier_N : N ;
-fun sommelier_N : N ;
-fun atelier_N : N ;
-fun hotelier_N : N ;
-fun flier_N : N ;
-fun highflier_N : N ;
-fun fusilier_N : N ;
-fun dallier_N : N ;
-fun collier_N : N ;
-fun bandolier_N : N ;
-fun gondolier_N : N ;
-fun plier_N : N ;
-fun multiplier_N : N ;
-fun supplier_N : N ;
-fun outlier_N : N ;
-fun haulier_N : N ;
-fun premier_N : N ;
-fun costumier_N : N ;
-fun latanier_N : N ;
-fun pannier_N : N ;
-fun chiffonier_N : N ;
-fun pier_N : N ;
-fun rapier_N : N ;
-fun photocopier_N : N ;
-fun occupier_N : N ;
-fun 'owner-occupier_N' : N ;
-fun croupier_N : N ;
-fun brier_N : N ;
-fun bullbrier_N : N ;
-fun sweetbrier_N : N ;
-fun crier_N : N ;
-fun 'town-crier_N' : N ;
-fun drier_N : N ;
-fun 'spin-drier_N' : N ;
-fun frier_N : N ;
-fun barrier_N : N ;
-fun carrier_N : N ;
-fun 'luggage-carrier_N' : N ;
-fun 'troop-carrier_N' : N ;
-fun farrier_N : N ;
-fun harrier_N : N ;
-fun terrier_N : N ;
-fun 'bull-terrier_N' : N ;
-fun 'fox-terrier_N' : N ;
-fun bullterrier_N : N ;
-fun worrier_N : N ;
-fun currier_N : N ;
-fun furrier_N : N ;
-fun trier_N : N ;
-fun courier_N : N ;
-fun couturier_N : N ;
-fun osier_N : N ;
-fun hosier_N : N ;
-fun crosier_N : N ;
-fun tarsier_N : N ;
-fun cuirassier_N : N ;
-fun dossier_N : N ;
-fun tier_N : N ;
-fun rentier_N : N ;
-fun frontier_N : N ;
-fun courtier_N : N ;
-fun bustier_N : N ;
-fun métier_N : N ;
-fun clavier_N : N ;
-fun glazier_N : N ;
-fun brazier_N : N ;
-fun grazier_N : N ;
-fun vizier_N : N ;
-fun crozier_N : N ;
-fun baker_N : N ;
-fun beaker_N : N ;
-fun leaker_N : N ;
-fun speaker_N : N ;
-fun loudspeaker_N : N ;
-fun breaker_N : N ;
-fun 'ship-breaker_N' : N ;
-fun windbreaker_N : N ;
-fun icebreaker_N : N ;
-fun safebreaker_N : N ;
-fun tiebreaker_N : N ;
-fun strikebreaker_N : N ;
-fun stonebreaker_N : N ;
-fun housebreaker_N : N ;
-fun heartbreaker_N : N ;
-fun jawbreaker_N : N ;
-fun lawbreaker_N : N ;
-fun streaker_N : N ;
-fun squeaker_N : N ;
-fun shaker_N : N ;
-fun boneshaker_N : N ;
-fun saltshaker_N : N ;
-fun maker_N : N ;
-fun 'mischief-maker_N' : N ;
-fun 'cabinet-maker_N' : N ;
-fun 'holiday-maker_N' : N ;
-fun peacemaker_N : N ;
-fun pacemaker_N : N ;
-fun diemaker_N : N ;
-fun troublemaker_N : N ;
-fun candlemaker_N : N ;
-fun shoemaker_N : N ;
-fun ropemaker_N : N ;
-fun noisemaker_N : N ;
-fun wigmaker_N : N ;
-fun kingmaker_N : N ;
-fun matchmaker_N : N ;
-fun watchmaker_N : N ;
-fun cloakmaker_N : N ;
-fun bookmaker_N : N ;
-fun steelmaker_N : N ;
-fun sailmaker_N : N ;
-fun toolmaker_N : N ;
-fun rainmaker_N : N ;
-fun patternmaker_N : N ;
-fun glassmaker_N : N ;
-fun dressmaker_N : N ;
-fun hatmaker_N : N ;
-fun cabinetmaker_N : N ;
-fun garmentmaker_N : N ;
-fun tentmaker_N : N ;
-fun printmaker_N : N ;
-fun bootmaker_N : N ;
-fun shirtmaker_N : N ;
-fun lawmaker_N : N ;
-fun haymaker_N : N ;
-fun playmaker_N : N ;
-fun moneymaker_N : N ;
-fun merrymaker_N : N ;
-fun spinnaker_N : N ;
-fun croaker_N : N ;
-fun soaker_N : N ;
-fun muckraker_N : N ;
-fun taker_N : N ;
-fun caretaker_N : N ;
-fun stocktaker_N : N ;
-fun partaker_N : N ;
-fun undertaker_N : N ;
-fun quaker_N : N ;
-fun waker_N : N ;
-fun backer_N : N ;
-fun linebacker_N : N ;
-fun hacker_N : N ;
-fun whacker_N : N ;
-fun bushwhacker_N : N ;
-fun highjacker_N : N ;
-fun hijacker_N : N ;
-fun slacker_N : N ;
-fun smacker_N : N ;
-fun knacker_N : N ;
-fun packer_N : N ;
-fun backpacker_N : N ;
-fun racker_N : N ;
-fun cracker_N : N ;
-fun 'soda-cracker_N' : N ;
-fun safecracker_N : N ;
-fun firecracker_N : N ;
-fun nutcracker_N : N ;
-fun tracker_N : N ;
-fun tacker_N : N ;
-fun stacker_N : N ;
-fun attacker_N : N ;
-fun decker_N : N ;
-fun 'three-decker_N' : N ;
-fun 'double-decker_N' : N ;
-fun checker_N : N ;
-fun necker_N : N ;
-fun pecker_N : N ;
-fun woodpecker_N : N ;
-fun wrecker_N : N ;
-fun housewrecker_N : N ;
-fun bicker_N : N ;
-fun trafficker_N : N ;
-fun kicker_N : N ;
-fun dropkicker_N : N ;
-fun flicker_N : N ;
-fun slicker_N : N ;
-fun picnicker_N : N ;
-fun snicker_N : N ;
-fun picker_N : N ;
-fun 'hop-picker_N' : N ;
-fun ragpicker_N : N ;
-fun nitpicker_N : N ;
-fun pricker_N : N ;
-fun ticker_N : N ;
-fun sticker_N : N ;
-fun 'bill-sticker_N' : N ;
-fun wicker_N : N ;
-fun cocker_N : N ;
-fun docker_N : N ;
-fun shocker_N : N ;
-fun locker_N : N ;
-fun blocker_N : N ;
-fun footlocker_N : N ;
-fun mocker_N : N ;
-fun knocker_N : N ;
-fun doorknocker_N : N ;
-fun rocker_N : N ;
-fun stocker_N : N ;
-fun fucker_N : N ;
-fun pucker_N : N ;
-fun sucker_N : N ;
-fun bloodsucker_N : N ;
-fun cocksucker_N : N ;
-fun sharksucker_N : N ;
-fun sapsucker_N : N ;
-fun lumpsucker_N : N ;
-fun seersucker_N : N ;
-fun goatsucker_N : N ;
-fun tucker_N : N ;
-fun baedeker_N : N ;
-fun seeker_N : N ;
-fun 'self-seeker_N' : N ;
-fun placeseeker_N : N ;
-fun hiker_N : N ;
-fun hitchhiker_N : N ;
-fun striker_N : N ;
-fun trekker_N : N ;
-fun chukker_N : N ;
-fun balker_N : N ;
-fun talker_N : N ;
-fun codetalker_N : N ;
-fun stalker_N : N ;
-fun deerstalker_N : N ;
-fun walker_N : N ;
-fun 'fire-walker_N' : N ;
-fun 'floor-walker_N' : N ;
-fun spacewalker_N : N ;
-fun ropewalker_N : N ;
-fun sleepwalker_N : N ;
-fun shopwalker_N : N ;
-fun floorwalker_N : N ;
-fun streetwalker_N : N ;
-fun jaywalker_N : N ;
-fun skulker_N : N ;
-fun banker_N : N ;
-fun canker_N : N ;
-fun scrimshanker_N : N ;
-fun flanker_N : N ;
-fun spanker_N : N ;
-fun ranker_N : N ;
-fun tanker_N : N ;
-fun 'oil-tanker_N' : N ;
-fun supertanker_N : N ;
-fun yanker_N : N ;
-fun thinker_N : N ;
-fun 'free-thinker_N' : N ;
-fun blinker_N : N ;
-fun clinker_N : N ;
-fun drinker_N : N ;
-fun sinker_N : N ;
-fun tinker_N : N ;
-fun stinker_N : N ;
-fun winker_N : N ;
-fun conker_N : N ;
-fun honker_N : N ;
-fun bunker_N : N ;
-fun dunker_N : N ;
-fun choker_N : N ;
-fun hogchoker_N : N ;
-fun joker_N : N ;
-fun smoker_N : N ;
-fun 'chain-smoker_N' : N ;
-fun nonsmoker_N : N ;
-fun booker_N : N ;
-fun cooker_N : N ;
-fun 'pressure-cooker_N' : N ;
-fun 'gas-cooker_N' : N ;
-fun hooker_N : N ;
-fun looker_N : N ;
-fun onlooker_N : N ;
-fun snooker_N : N ;
-fun poker_N : N ;
-fun 'strip-poker_N' : N ;
-fun broker_N : N ;
-fun stockbroker_N : N ;
-fun pawnbroker_N : N ;
-fun shipbroker_N : N ;
-fun backstroker_N : N ;
-fun breaststroker_N : N ;
-fun stoker_N : N ;
-fun barker_N : N ;
-fun marker_N : N ;
-fun 'billiard-marker_N' : N ;
-fun bookmarker_N : N ;
-fun tearjerker_N : N ;
-fun berserker_N : N ;
-fun shirker_N : N ;
-fun smirker_N : N ;
-fun corker_N : N ;
-fun porker_N : N ;
-fun worker_N : N ;
-fun 'shock-worker_N' : N ;
-fun fieldworker_N : N ;
-fun woodworker_N : N ;
-fun needleworker_N : N ;
-fun mineworker_N : N ;
-fun metalworker_N : N ;
-fun brainworker_N : N ;
-fun nonworker_N : N ;
-fun ironworker_N : N ;
-fun coworker_N : N ;
-fun lurker_N : N ;
-fun esker_N : N ;
-fun whisker_N : N ;
-fun busker_N : N ;
-fun cornhusker_N : N ;
-fun tusker_N : N ;
-fun gawker_N : N ;
-fun hawker_N : N ;
-fun squawker_N : N ;
-fun scaler_N : N ;
-fun pedaler_N : N ;
-fun dealer_N : N ;
-fun 'double-dealer_N' : N ;
-fun 'stamp-dealer_N' : N ;
-fun bookdealer_N : N ;
-fun newsdealer_N : N ;
-fun healer_N : N ;
-fun sealer_N : N ;
-fun squealer_N : N ;
-fun haler_N : N ;
-fun inhaler_N : N ;
-fun whaler_N : N ;
-fun signaler_N : N ;
-fun wholesaler_N : N ;
-fun teetotaler_N : N ;
-fun victualer_N : N ;
-fun babbler_N : N ;
-fun dabbler_N : N ;
-fun squabbler_N : N ;
-fun nibbler_N : N ;
-fun scribbler_N : N ;
-fun dribbler_N : N ;
-fun quibbler_N : N ;
-fun cobbler_N : N ;
-fun gobbler_N : N ;
-fun hobbler_N : N ;
-fun wobbler_N : N ;
-fun bubbler_N : N ;
-fun gambler_N : N ;
-fun rambler_N : N ;
-fun scrambler_N : N ;
-fun assembler_N : N ;
-fun dissembler_N : N ;
-fun fumbler_N : N ;
-fun grumbler_N : N ;
-fun tumbler_N : N ;
-fun stumbler_N : N ;
-fun warbler_N : N ;
-fun doubler_N : N ;
-fun chronicler_N : N ;
-fun saddler_N : N ;
-fun waddler_N : N ;
-fun twaddler_N : N ;
-fun meddler_N : N ;
-fun peddler_N : N ;
-fun fiddler_N : N ;
-fun tiddler_N : N ;
-fun twiddler_N : N ;
-fun toddler_N : N ;
-fun huddler_N : N ;
-fun puddler_N : N ;
-fun wheedler_N : N ;
-fun idler_N : N ;
-fun handler_N : N ;
-fun chandler_N : N ;
-fun 'ship\'s-chandler_N' : N ;
-fun 'wax-chandler_N' : N ;
-fun panhandler_N : N ;
-fun landler_N : N ;
-fun swindler_N : N ;
-fun fondler_N : N ;
-fun hurdler_N : N ;
-fun dawdler_N : N ;
-fun modeler_N : N ;
-fun feeler_N : N ;
-fun wheeler_N : N ;
-fun 'four-wheeler_N' : N ;
-fun sternwheeler_N : N ;
-fun kneeler_N : N ;
-fun peeler_N : N ;
-fun reeler_N : N ;
-fun quarreler_N : N ;
-fun dueler_N : N ;
-fun traveler_N : N ;
-fun leveler_N : N ;
-fun reveler_N : N ;
-fun shoveler_N : N ;
-fun jeweler_N : N ;
-fun waffler_N : N ;
-fun sniffler_N : N ;
-fun shuffler_N : N ;
-fun muffler_N : N ;
-fun snuffler_N : N ;
-fun trifler_N : N ;
-fun stifler_N : N ;
-fun finagler_N : N ;
-fun haggler_N : N ;
-fun straggler_N : N ;
-fun wriggler_N : N ;
-fun wiggler_N : N ;
-fun juggler_N : N ;
-fun smuggler_N : N ;
-fun struggler_N : N ;
-fun angler_N : N ;
-fun strangler_N : N ;
-fun wrangler_N : N ;
-fun disentangler_N : N ;
-fun shingler_N : N ;
-fun bungler_N : N ;
-fun ogler_N : N ;
-fun bugler_N : N ;
-fun 'loud-hailer_N' : N ;
-fun jailer_N : N ;
-fun mailer_N : N ;
-fun blackmailer_N : N ;
-fun airmailer_N : N ;
-fun nailer_N : N ;
-fun trailer_N : N ;
-fun semitrailer_N : N ;
-fun wassailer_N : N ;
-fun retailer_N : N ;
-fun wailer_N : N ;
-fun abseiler_N : N ;
-fun filer_N : N ;
-fun miler_N : N ;
-fun smiler_N : N ;
-fun oiler_N : N ;
-fun boiler_N : N ;
-fun 'steam-boiler_N' : N ;
-fun potboiler_N : N ;
-fun spoiler_N : N ;
-fun broiler_N : N ;
-fun toiler_N : N ;
-fun compiler_N : N ;
-fun tiler_N : N ;
-fun cackler_N : N ;
-fun tackler_N : N ;
-fun heckler_N : N ;
-fun tickler_N : N ;
-fun stickler_N : N ;
-fun buckler_N : N ;
-fun swashbuckler_N : N ;
-fun sprinkler_N : N ;
-fun twinkler_N : N ;
-fun sparkler_N : N ;
-fun footballer_N : N ;
-fun screwballer_N : N ;
-fun caller_N : N ;
-fun faller_N : N ;
-fun signaller_N : N ;
-fun teetotaller_N : N ;
-fun victualler_N : N ;
-fun stonewaller_N : N ;
-fun modeller_N : N ;
-fun yodeller_N : N ;
-fun sheller_N : N ;
-fun rathskeller_N : N ;
-fun impeller_N : N ;
-fun propeller_N : N ;
-fun speller_N : N ;
-fun seller_N : N ;
-fun 'print-seller_N' : N ;
-fun 'best-seller_N' : N ;
-fun chiseller_N : N ;
-fun bookseller_N : N ;
-fun slopseller_N : N ;
-fun underseller_N : N ;
-fun teller_N : N ;
-fun 'tale-teller_N' : N ;
-fun fortuneteller_N : N ;
-fun hosteller_N : N ;
-fun storyteller_N : N ;
-fun traveller_N : N ;
-fun 'fellow-traveller_N' : N ;
-fun leveller_N : N ;
-fun reveller_N : N ;
-fun sniveller_N : N ;
-fun driveller_N : N ;
-fun groveller_N : N ;
-fun dweller_N : N ;
-fun 'cave-dweller_N' : N ;
-fun indweller_N : N ;
-fun jeweller_N : N ;
-fun filler_N : N ;
-fun killer_N : N ;
-fun 'lady-killer_N' : N ;
-fun weedkiller_N : N ;
-fun painkiller_N : N ;
-fun miller_N : N ;
-fun thriller_N : N ;
-fun tiller_N : N ;
-fun distiller_N : N ;
-fun roller_N : N ;
-fun caroller_N : N ;
-fun steamroller_N : N ;
-fun patroller_N : N ;
-fun controller_N : N ;
-fun comptroller_N : N ;
-fun stroller_N : N ;
-fun toller_N : N ;
-fun sculler_N : N ;
-fun fuller_N : N ;
-fun muller_N : N ;
-fun puller_N : N ;
-fun wirepuller_N : N ;
-fun cruller_N : N ;
-fun gaoler_N : N ;
-fun choler_N : N ;
-fun potholer_N : N ;
-fun cooler_N : N ;
-fun preschooler_N : N ;
-fun pooler_N : N ;
-fun caroler_N : N ;
-fun stapler_N : N ;
-fun trampler_N : N ;
-fun sampler_N : N ;
-fun tippler_N : N ;
-fun stippler_N : N ;
-fun whirler_N : N ;
-fun curler_N : N ;
-fun antler_N : N ;
-fun turtler_N : N ;
-fun wrestler_N : N ;
-fun whistler_N : N ;
-fun ostler_N : N ;
-fun hustler_N : N ;
-fun rustler_N : N ;
-fun rattler_N : N ;
-fun prattler_N : N ;
-fun tattler_N : N ;
-fun settler_N : N ;
-fun whittler_N : N ;
-fun bottler_N : N ;
-fun butler_N : N ;
-fun cutler_N : N ;
-fun sutler_N : N ;
-fun hauler_N : N ;
-fun mauler_N : N ;
-fun scheduler_N : N ;
-fun ruler_N : N ;
-fun bawler_N : N ;
-fun brawler_N : N ;
-fun crawler_N : N ;
-fun scrawler_N : N ;
-fun drawler_N : N ;
-fun sprawler_N : N ;
-fun trawler_N : N ;
-fun bowler_N : N ;
-fun fowler_N : N ;
-fun howler_N : N ;
-fun growler_N : N ;
-fun prowler_N : N ;
-fun embezzler_N : N ;
-fun guzzler_N : N ;
-fun muzzler_N : N ;
-fun puzzler_N : N ;
-fun reamer_N : N ;
-fun screamer_N : N ;
-fun dreamer_N : N ;
-fun daydreamer_N : N ;
-fun streamer_N : N ;
-fun steamer_N : N ;
-fun 'paddle-steamer_N' : N ;
-fun 'tramp-steamer_N' : N ;
-fun defamer_N : N ;
-fun namer_N : N ;
-fun framer_N : N ;
-fun gossamer_N : N ;
-fun tamer_N : N ;
-fun redeemer_N : N ;
-fun schemer_N : N ;
-fun blasphemer_N : N ;
-fun khmer_N : N ;
-fun disclaimer_N : N ;
-fun dulcimer_N : N ;
-fun dimer_N : N ;
-fun primer_N : N ;
-fun trimer_N : N ;
-fun timer_N : N ;
-fun 'old-timer_N' : N ;
-fun 'part-timer_N' : N ;
-fun embalmer_N : N ;
-fun palmer_N : N ;
-fun hammer_N : N ;
-fun sledgehammer_N : N ;
-fun triphammer_N : N ;
-fun clawhammer_N : N ;
-fun yellowhammer_N : N ;
-fun jammer_N : N ;
-fun windjammer_N : N ;
-fun slammer_N : N ;
-fun spammer_N : N ;
-fun rammer_N : N ;
-fun crammer_N : N ;
-fun programmer_N : N ;
-fun stammer_N : N ;
-fun emmer_N : N ;
-fun stemmer_N : N ;
-fun dimmer_N : N ;
-fun shimmer_N : N ;
-fun skimmer_N : N ;
-fun glimmer_N : N ;
-fun trimmer_N : N ;
-fun swimmer_N : N ;
-fun backswimmer_N : N ;
-fun bummer_N : N ;
-fun hummer_N : N ;
-fun mummer_N : N ;
-fun rummer_N : N ;
-fun drummer_N : N ;
-fun summer_N : N ;
-fun midsummer_N : N ;
-fun comer_N : N ;
-fun latecomer_N : N ;
-fun newcomer_N : N ;
-fun homer_N : N ;
-fun monomer_N : N ;
-fun astronomer_N : N ;
-fun misnomer_N : N ;
-fun bloomer_N : N ;
-fun roomer_N : N ;
-fun isomer_N : N ;
-fun elastomer_N : N ;
-fun customer_N : N ;
-fun vomer_N : N ;
-fun farmer_N : N ;
-fun 'stock-farmer_N' : N ;
-fun 'baby-farmer_N' : N ;
-fun charmer_N : N ;
-fun 'snake-charmer_N' : N ;
-fun warmer_N : N ;
-fun termer_N : N ;
-fun ormer_N : N ;
-fun dormer_N : N ;
-fun former_N : N ;
-fun 'sixth-former_N' : N ;
-fun reformer_N : N ;
-fun informer_N : N ;
-fun performer_N : N ;
-fun underperformer_N : N ;
-fun transformer_N : N ;
-fun barnstormer_N : N ;
-fun perfumer_N : N ;
-fun consumer_N : N ;
-fun rhymer_N : N ;
-fun polymer_N : N ;
-fun copolymer_N : N ;
-fun leaner_N : N ;
-fun cleaner_N : N ;
-fun 'dry-cleaner_N' : N ;
-fun gleaner_N : N ;
-fun Afrikaner_N : N ;
-fun loaner_N : N ;
-fun groaner_N : N ;
-fun gardener_N : N ;
-fun screener_N : N ;
-fun stiffener_N : N ;
-fun congener_N : N ;
-fun freshener_N : N ;
-fun strengthener_N : N ;
-fun weakener_N : N ;
-fun quickener_N : N ;
-fun dampener_N : N ;
-fun opener_N : N ;
-fun 'eye-opener_N' : N ;
-fun 'tin-opener_N' : N ;
-fun 'pew-opener_N' : N ;
-fun sharpener_N : N ;
-fun warrener_N : N ;
-fun softener_N : N ;
-fun 'water-softener_N' : N ;
-fun straightener_N : N ;
-fun shortener_N : N ;
-fun fastener_N : N ;
-fun 'snap-fastener_N' : N ;
-fun 'zip-fastener_N' : N ;
-fun listener_N : N ;
-fun scrivener_N : N ;
-fun convener_N : N ;
-fun campaigner_N : N ;
-fun foreigner_N : N ;
-fun signer_N : N ;
-fun designer_N : N ;
-fun consigner_N : N ;
-fun cosigner_N : N ;
-fun ordainer_N : N ;
-fun gainer_N : N ;
-fun bargainer_N : N ;
-fun trainer_N : N ;
-fun strainer_N : N ;
-fun 'tea-strainer_N' : N ;
-fun restrainer_N : N ;
-fun retainer_N : N ;
-fun container_N : N ;
-fun entertainer_N : N ;
-fun stainer_N : N ;
-fun abstainer_N : N ;
-fun carabiner_N : N ;
-fun diner_N : N ;
-fun liechtensteiner_N : N ;
-fun refiner_N : N ;
-fun shiner_N : N ;
-fun whiner_N : N ;
-fun liner_N : N ;
-fun dubliner_N : N ;
-fun recliner_N : N ;
-fun headliner_N : N ;
-fun hardliner_N : N ;
-fun eyeliner_N : N ;
-fun milliner_N : N ;
-fun streamliner_N : N ;
-fun airliner_N : N ;
-fun jetliner_N : N ;
-fun freightliner_N : N ;
-fun miner_N : N ;
-fun examiner_N : N ;
-fun 'cross-examiner_N' : N ;
-fun determiner_N : N ;
-fun coiner_N : N ;
-fun joiner_N : N ;
-fun mariner_N : N ;
-fun submariner_N : N ;
-fun diviner_N : N ;
-fun twiner_N : N ;
-fun banner_N : N ;
-fun scanner_N : N ;
-fun planner_N : N ;
-fun manner_N : N ;
-fun spanner_N : N ;
-fun tanner_N : N ;
-fun tenner_N : N ;
-fun dinner_N : N ;
-fun beginner_N : N ;
-fun skinner_N : N ;
-fun pinner_N : N ;
-fun spinner_N : N ;
-fun 'money-spinner_N' : N ;
-fun grinner_N : N ;
-fun sinner_N : N ;
-fun winner_N : N ;
-fun breadwinner_N : N ;
-fun cunner_N : N ;
-fun scunner_N : N ;
-fun gunner_N : N ;
-fun runner_N : N ;
-fun 'blockade-runner_N' : N ;
-fun 'rum-runner_N' : N ;
-fun 'arms-runner_N' : N ;
-fun roadrunner_N : N ;
-fun racerunner_N : N ;
-fun forerunner_N : N ;
-fun rumrunner_N : N ;
-fun gunrunner_N : N ;
-fun stunner_N : N ;
-fun boner_N : N ;
-fun falconer_N : N ;
-fun londoner_N : N ;
-fun pardoner_N : N ;
-fun bludgeoner_N : N ;
-fun goner_N : N ;
-fun wagoner_N : N ;
-fun waggoner_N : N ;
-fun marathoner_N : N ;
-fun parishioner_N : N ;
-fun pensioner_N : N ;
-fun reversioner_N : N ;
-fun commissioner_N : N ;
-fun probationer_N : N ;
-fun vacationer_N : N ;
-fun stationer_N : N ;
-fun confectioner_N : N ;
-fun exhibitioner_N : N ;
-fun conditioner_N : N ;
-fun practitioner_N : N ;
-fun petitioner_N : N ;
-fun mentioner_N : N ;
-fun questioner_N : N ;
-fun executioner_N : N ;
-fun electrocutioner_N : N ;
-fun reckoner_N : N ;
-fun loner_N : N ;
-fun almoner_N : N ;
-fun commoner_N : N ;
-fun schooner_N : N ;
-fun harpooner_N : N ;
-fun crooner_N : N ;
-fun coroner_N : N ;
-fun reasoner_N : N ;
-fun seasoner_N : N ;
-fun poisoner_N : N ;
-fun prisoner_N : N ;
-fun toner_N : N ;
-fun stoner_N : N ;
-fun darner_N : N ;
-fun earner_N : N ;
-fun 'wage-earner_N' : N ;
-fun learner_N : N ;
-fun garner_N : N ;
-fun warner_N : N ;
-fun northerner_N : N ;
-fun southerner_N : N ;
-fun easterner_N : N ;
-fun westerner_N : N ;
-fun corner_N : N ;
-fun burner_N : N ;
-fun 'charcoal-burner_N' : N ;
-fun 'oil-burner_N' : N ;
-fun 'pilot-burner_N' : N ;
-fun barnburner_N : N ;
-fun afterburner_N : N ;
-fun sojourner_N : N ;
-fun mourner_N : N ;
-fun spurner_N : N ;
-fun turner_N : N ;
-fun centner_N : N ;
-fun vintner_N : N ;
-fun partner_N : N ;
-fun 'sparring-partner_N' : N ;
-fun copartner_N : N ;
-fun pruner_N : N ;
-fun tuner_N : N ;
-fun spawner_N : N ;
-fun yawner_N : N ;
-fun owner_N : N ;
-fun 'part-owner_N' : N ;
-fun landowner_N : N ;
-fun sundowner_N : N ;
-fun homeowner_N : N ;
-fun shipowner_N : N ;
-fun boer_N : N ;
-fun doer_N : N ;
-fun 'evil-doer_N' : N ;
-fun 'well-doer_N' : N ;
-fun wrongdoer_N : N ;
-fun undoer_N : N ;
-fun operagoer_N : N ;
-fun moviegoer_N : N ;
-fun theatregoer_N : N ;
-fun churchgoer_N : N ;
-fun chapelgoer_N : N ;
-fun playgoer_N : N ;
-fun partygoer_N : N ;
-fun wooer_N : N ;
-fun caper_N : N ;
-fun reaper_N : N ;
-fun shaper_N : N ;
-fun diaper_N : N ;
-fun paper_N : N ;
-fun 'rice-paper_N' : N ;
-fun 'cartridge-paper_N' : N ;
-fun 'cigarette-paper_N' : N ;
-fun 'tracing-paper_N' : N ;
-fun 'writing-paper_N' : N ;
-fun 'blotting-paper_N' : N ;
-fun 'oil-paper_N' : N ;
-fun 'carbon-paper_N' : N ;
-fun 'order-paper_N' : N ;
-fun 'litmus-paper_N' : N ;
-fun 'toilet-paper_N' : N ;
-fun 'wax-paper_N' : N ;
-fun sandpaper_N : N ;
-fun notepaper_N : N ;
-fun oilpaper_N : N ;
-fun wallpaper_N : N ;
-fun newspaper_N : N ;
-fun flypaper_N : N ;
-fun raper_N : N ;
-fun scraper_N : N ;
-fun skyscraper_N : N ;
-fun draper_N : N ;
-fun 'linen-draper_N' : N ;
-fun linendraper_N : N ;
-fun taper_N : N ;
-fun beeper_N : N ;
-fun keeper_N : N ;
-fun 'lock-keeper_N' : N ;
-fun 'book-keeper_N' : N ;
-fun 'wicket-keeper_N' : N ;
-fun peacekeeper_N : N ;
-fun beekeeper_N : N ;
-fun gamekeeper_N : N ;
-fun timekeeper_N : N ;
-fun scorekeeper_N : N ;
-fun housekeeper_N : N ;
-fun gatekeeper_N : N ;
-fun bookkeeper_N : N ;
-fun goalkeeper_N : N ;
-fun tollkeeper_N : N ;
-fun innkeeper_N : N ;
-fun shopkeeper_N : N ;
-fun doorkeeper_N : N ;
-fun greenskeeper_N : N ;
-fun sleeper_N : N ;
-fun peeper_N : N ;
-fun creeper_N : N ;
-fun honeycreeper_N : N ;
-fun steeper_N : N ;
-fun weeper_N : N ;
-fun sweeper_N : N ;
-fun 'carpet-sweeper_N' : N ;
-fun minesweeper_N : N ;
-fun chimneysweeper_N : N ;
-fun leper_N : N ;
-fun worshiper_N : N ;
-fun caliper_N : N ;
-fun sniper_N : N ;
-fun juniper_N : N ;
-fun piper_N : N ;
-fun sandpiper_N : N ;
-fun striper_N : N ;
-fun viper_N : N ;
-fun wiper_N : N ;
-fun 'windscreen-wiper_N' : N ;
-fun scalper_N : N ;
-fun helper_N : N ;
-fun gulper_N : N ;
-fun camper_N : N ;
-fun scamper_N : N ;
-fun damper_N : N ;
-fun hamper_N : N ;
-fun stamper_N : N ;
-fun temper_N : N ;
-fun distemper_N : N ;
-fun whimper_N : N ;
-fun shrimper_N : N ;
-fun simper_N : N ;
-fun romper_N : N ;
-fun bumper_N : N ;
-fun dumper_N : N ;
-fun 'tub-thumper_N' : N ;
-fun jumper_N : N ;
-fun lumper_N : N ;
-fun stumper_N : N ;
-fun hoper_N : N ;
-fun developer_N : N ;
-fun walloper_N : N ;
-fun interloper_N : N ;
-fun cooper_N : N ;
-fun whooper_N : N ;
-fun snooper_N : N ;
-fun trooper_N : N ;
-fun 'storm-trooper_N' : N ;
-fun paratrooper_N : N ;
-fun stooper_N : N ;
-fun roper_N : N ;
-fun toper_N : N ;
-fun clapper_N : N ;
-fun flapper_N : N ;
-fun slapper_N : N ;
-fun backslapper_N : N ;
-fun kidnapper_N : N ;
-fun snapper_N : N ;
-fun whippersnapper_N : N ;
-fun rapper_N : N ;
-fun 'spirit-rapper_N' : N ;
-fun trapper_N : N ;
-fun wrapper_N : N ;
-fun 'dust-wrapper_N' : N ;
-fun sapper_N : N ;
-fun tapper_N : N ;
-fun zapper_N : N ;
-fun schlepper_N : N ;
-fun pepper_N : N ;
-fun 'cayenne pepper_N' : N ;
-fun stepper_N : N ;
-fun dipper_N : N ;
-fun shipper_N : N ;
-fun worshipper_N : N ;
-fun kipper_N : N ;
-fun skipper_N : N ;
-fun mudskipper_N : N ;
-fun clipper_N : N ;
-fun flipper_N : N ;
-fun slipper_N : N ;
-fun nipper_N : N ;
-fun ripper_N : N ;
-fun tripper_N : N ;
-fun stripper_N : N ;
-fun sipper_N : N ;
-fun tipper_N : N ;
-fun zipper_N : N ;
-fun copper_N : N ;
-fun hopper_N : N ;
-fun chopper_N : N ;
-fun clodhopper_N : N ;
-fun treehopper_N : N ;
-fun leafhopper_N : N ;
-fun froghopper_N : N ;
-fun shopper_N : N ;
-fun grasshopper_N : N ;
-fun whopper_N : N ;
-fun mopper_N : N ;
-fun popper_N : N ;
-fun cropper_N : N ;
-fun sharecropper_N : N ;
-fun dropper_N : N ;
-fun eavesdropper_N : N ;
-fun topper_N : N ;
-fun stopper_N : N ;
-fun doorstopper_N : N ;
-fun upper_N : N ;
-fun scupper_N : N ;
-fun crupper_N : N ;
-fun supper_N : N ;
-fun carper_N : N ;
-fun harper_N : N ;
-fun sharper_N : N ;
-fun 'card-sharper_N' : N ;
-fun usurper_N : N ;
-fun asper_N : N ;
-fun jasper_N : N ;
-fun vesper_N : N ;
-fun whisper_N : N ;
-fun 'stage-whisper_N' : N ;
-fun lisper_N : N ;
-fun scauper_N : N ;
-fun pauper_N : N ;
-fun grouper_N : N ;
-fun trouper_N : N ;
-fun peasouper_N : N ;
-fun super_N : N ;
-fun bearer_N : N ;
-fun 'standard-bearer_N' : N ;
-fun 'mace-bearer_N' : N ;
-fun 'office-bearer_N' : N ;
-fun 'tale-bearer_N' : N ;
-fun 'cup-bearer_N' : N ;
-fun 'stretcher-bearer_N' : N ;
-fun macebearer_N : N ;
-fun torchbearer_N : N ;
-fun pallbearer_N : N ;
-fun trainbearer_N : N ;
-fun cupbearer_N : N ;
-fun hearer_N : N ;
-fun shearer_N : N ;
-fun wearer_N : N ;
-fun swearer_N : N ;
-fun seafarer_N : N ;
-fun wayfarer_N : N ;
-fun snarer_N : N ;
-fun roarer_N : N ;
-fun parer_N : N ;
-fun sparer_N : N ;
-fun starer_N : N ;
-fun jabberer_N : N ;
-fun blubberer_N : N ;
-fun slumberer_N : N ;
-fun sorcerer_N : N ;
-fun dodderer_N : N ;
-fun embroiderer_N : N ;
-fun solderer_N : N ;
-fun philanderer_N : N ;
-fun slanderer_N : N ;
-fun panderer_N : N ;
-fun wanderer_N : N ;
-fun surrenderer_N : N ;
-fun wonderer_N : N ;
-fun thunderer_N : N ;
-fun blunderer_N : N ;
-fun plunderer_N : N ;
-fun orderer_N : N ;
-fun borderer_N : N ;
-fun murderer_N : N ;
-fun powderer_N : N ;
-fun cheerer_N : N ;
-fun sneerer_N : N ;
-fun offerer_N : N ;
-fun sufferer_N : N ;
-fun pilferer_N : N ;
-fun transferer_N : N ;
-fun staggerer_N : N ;
-fun swaggerer_N : N ;
-fun lingerer_N : N ;
-fun malingerer_N : N ;
-fun decipherer_N : N ;
-fun gatherer_N : N ;
-fun tinkerer_N : N ;
-fun stammerer_N : N ;
-fun wallpaperer_N : N ;
-fun pamperer_N : N ;
-fun simperer_N : N ;
-fun whisperer_N : N ;
-fun caterer_N : N ;
-fun waterer_N : N ;
-fun slaughterer_N : N ;
-fun loiterer_N : N ;
-fun fruiterer_N : N ;
-fun adulterer_N : N ;
-fun poulterer_N : N ;
-fun saunterer_N : N ;
-fun barterer_N : N ;
-fun plasterer_N : N ;
-fun roisterer_N : N ;
-fun upholsterer_N : N ;
-fun chatterer_N : N ;
-fun flatterer_N : N ;
-fun letterer_N : N ;
-fun litterer_N : N ;
-fun titterer_N : N ;
-fun twitterer_N : N ;
-fun potterer_N : N ;
-fun utterer_N : N ;
-fun mutterer_N : N ;
-fun putterer_N : N ;
-fun stutterer_N : N ;
-fun waverer_N : N ;
-fun deliverer_N : N ;
-fun discoverer_N : N ;
-fun maneuverer_N : N ;
-fun führer_N : N ;
-fun repairer_N : N ;
-fun impairer_N : N ;
-fun admirer_N : N ;
-fun perspirer_N : N ;
-fun acquirer_N : N ;
-fun enquirer_N : N ;
-fun inquirer_N : N ;
-fun wirer_N : N ;
-fun borer_N : N ;
-fun laborer_N : N ;
-fun woodborer_N : N ;
-fun corer_N : N ;
-fun succorer_N : N ;
-fun scorer_N : N ;
-fun adorer_N : N ;
-fun explorer_N : N ;
-fun armorer_N : N ;
-fun snorer_N : N ;
-fun restorer_N : N ;
-fun flavorer_N : N ;
-fun conferrer_N : N ;
-fun stirrer_N : N ;
-fun abhorrer_N : N ;
-fun schnorrer_N : N ;
-fun demurrer_N : N ;
-fun procurer_N : N ;
-fun abjurer_N : N ;
-fun conjurer_N : N ;
-fun perjurer_N : N ;
-fun labourer_N : N ;
-fun 'day-labourer_N' : N ;
-fun scourer_N : N ;
-fun armourer_N : N ;
-fun devourer_N : N ;
-fun measurer_N : N ;
-fun treasurer_N : N ;
-fun usurer_N : N ;
-fun manufacturer_N : N ;
-fun lecturer_N : N ;
-fun venturer_N : N ;
-fun adventurer_N : N ;
-fun torturer_N : N ;
-fun posturer_N : N ;
-fun manoeuvrer_N : N ;
-fun debaser_N : N ;
-fun pleaser_N : N ;
-fun appeaser_N : N ;
-fun greaser_N : N ;
-fun teaser_N : N ;
-fun 'brain-teaser_N' : N ;
-fun chaser_N : N ;
-fun steeplechaser_N : N ;
-fun purchaser_N : N ;
-fun laser_N : N ;
-fun maser_N : N ;
-fun eraser_N : N ;
-fun kaiser_N : N ;
-fun raiser_N : N ;
-fun 'curtain-raiser_N' : N ;
-fun fundraiser_N : N ;
-fun appraiser_N : N ;
-fun miser_N : N ;
-fun promiser_N : N ;
-fun compromiser_N : N ;
-fun organiser_N : N ;
-fun riser_N : N ;
-fun surpriser_N : N ;
-fun advertiser_N : N ;
-fun bruiser_N : N ;
-fun cruiser_N : N ;
-fun 'battle-cruiser_N' : N ;
-fun adviser_N : N ;
-fun reviser_N : N ;
-fun cleanser_N : N ;
-fun merganser_N : N ;
-fun censer_N : N ;
-fun licenser_N : N ;
-fun condenser_N : N ;
-fun dispenser_N : N ;
-fun loser_N : N ;
-fun closer_N : N ;
-fun poser_N : N ;
-fun composer_N : N ;
-fun proposer_N : N ;
-fun parser_N : N ;
-fun traverser_N : N ;
-fun endorser_N : N ;
-fun nurser_N : N ;
-fun courser_N : N ;
-fun purser_N : N ;
-fun passer_N : N ;
-fun trespasser_N : N ;
-fun harasser_N : N ;
-fun canvasser_N : N ;
-fun dresser_N : N ;
-fun hairdresser_N : N ;
-fun guesser_N : N ;
-fun hisser_N : N ;
-fun kisser_N : N ;
-fun pisser_N : N ;
-fun dosser_N : N ;
-fun tosser_N : N ;
-fun user_N : N ;
-fun abuser_N : N ;
-fun accuser_N : N ;
-fun diffuser_N : N ;
-fun muser_N : N ;
-fun warehouser_N : N ;
-fun mouser_N : N ;
-fun trouser_N : N ;
-fun hawser_N : N ;
-fun dowser_N : N ;
-fun browser_N : N ;
-fun geyser_N : N ;
-fun breathalyser_N : N ;
-fun debater_N : N ;
-fun eater_N : N ;
-fun 'fire-eater_N' : N ;
-fun 'man-eater_N' : N ;
-fun 'lotus-eater_N' : N ;
-fun 'ant-eater_N' : N ;
-fun beater_N : N ;
-fun 'gold-beater_N' : N ;
-fun 'egg-beater_N' : N ;
-fun 'carpet-beater_N' : N ;
-fun goldbeater_N : N ;
-fun eggbeater_N : N ;
-fun beefeater_N : N ;
-fun heater_N : N ;
-fun 'space-heater_N' : N ;
-fun windcheater_N : N ;
-fun theater_N : N ;
-fun amphitheater_N : N ;
-fun repeater_N : N ;
-fun 'two-seater_N' : N ;
-fun anteater_N : N ;
-fun sweater_N : N ;
-fun tailgater_N : N ;
-fun hater_N : N ;
-fun skater_N : N ;
-fun speedskater_N : N ;
-fun inflater_N : N ;
-fun idolater_N : N ;
-fun plater_N : N ;
-fun electroplater_N : N ;
-fun mater_N : N ;
-fun 'alma mater_N' : N ;
-fun boater_N : N ;
-fun bloater_N : N ;
-fun floater_N : N ;
-fun pater_N : N ;
-fun 'second-rater_N' : N ;
-fun 'third-rater_N' : N ;
-fun crater_N : N ;
-fun grater_N : N ;
-fun stater_N : N ;
-fun water_N : N ;
-fun 'soda-water_N' : N ;
-fun 'sea-water_N' : N ;
-fun 'bilge-water_N' : N ;
-fun 'rose-water_N' : N ;
-fun 'drinking-water_N' : N ;
-fun 'well-water_N' : N ;
-fun 'barley-water_N' : N ;
-fun seawater_N : N ;
-fun headwater_N : N ;
-fun tidewater_N : N ;
-fun limewater_N : N ;
-fun firewater_N : N ;
-fun dishwater_N : N ;
-fun breakwater_N : N ;
-fun backwater_N : N ;
-fun blackwater_N : N ;
-fun rainwater_N : N ;
-fun shearwater_N : N ;
-fun saltwater_N : N ;
-fun meltwater_N : N ;
-fun character_N : N ;
-fun subtracter_N : N ;
-fun effecter_N : N ;
-fun perfecter_N : N ;
-fun neglecter_N : N ;
-fun respecter_N : N ;
-fun sphincter_N : N ;
-fun greeter_N : N ;
-fun tweeter_N : N ;
-fun catheter_N : N ;
-fun dieter_N : N ;
-fun cricketer_N : N ;
-fun supermarketer_N : N ;
-fun meter_N : N ;
-fun 'gas-meter_N' : N ;
-fun decameter_N : N ;
-fun diameter_N : N ;
-fun semidiameter_N : N ;
-fun myriameter_N : N ;
-fun parameter_N : N ;
-fun tetrameter_N : N ;
-fun octameter_N : N ;
-fun pentameter_N : N ;
-fun hexameter_N : N ;
-fun telemeter_N : N ;
-fun dosemeter_N : N ;
-fun machmeter_N : N ;
-fun decimeter_N : N ;
-fun millimeter_N : N ;
-fun polarimeter_N : N ;
-fun perimeter_N : N ;
-fun calorimeter_N : N ;
-fun colorimeter_N : N ;
-fun densimeter_N : N ;
-fun tensimeter_N : N ;
-fun altimeter_N : N ;
-fun centimeter_N : N ;
-fun gravimeter_N : N ;
-fun pelvimeter_N : N ;
-fun taximeter_N : N ;
-fun pleximeter_N : N ;
-fun oximeter_N : N ;
-fun ammeter_N : N ;
-fun milliammeter_N : N ;
-fun ohmmeter_N : N ;
-fun picometer_N : N ;
-fun viscometer_N : N ;
-fun speedometer_N : N ;
-fun pedometer_N : N ;
-fun odometer_N : N ;
-fun geometer_N : N ;
-fun rheometer_N : N ;
-fun mileometer_N : N ;
-fun algometer_N : N ;
-fun tachometer_N : N ;
-fun radiometer_N : N ;
-fun audiometer_N : N ;
-fun eudiometer_N : N ;
-fun heliometer_N : N ;
-fun craniometer_N : N ;
-fun goniometer_N : N ;
-fun variometer_N : N ;
-fun tensiometer_N : N ;
-fun potentiometer_N : N ;
-fun kilometer_N : N ;
-fun milometer_N : N ;
-fun bolometer_N : N ;
-fun dynamometer_N : N ;
-fun electrodynamometer_N : N ;
-fun anemometer_N : N ;
-fun thermometer_N : N ;
-fun telethermometer_N : N ;
-fun atmometer_N : N ;
-fun manometer_N : N ;
-fun sphygmomanometer_N : N ;
-fun nanometer_N : N ;
-fun galvanometer_N : N ;
-fun salinometer_N : N ;
-fun clinometer_N : N ;
-fun declinometer_N : N ;
-fun inclinometer_N : N ;
-fun actinometer_N : N ;
-fun chronometer_N : N ;
-fun tonometer_N : N ;
-fun barometer_N : N ;
-fun katharometer_N : N ;
-fun micrometer_N : N ;
-fun radiomicrometer_N : N ;
-fun hydrometer_N : N ;
-fun thermohydrometer_N : N ;
-fun interferometer_N : N ;
-fun spherometer_N : N ;
-fun sclerometer_N : N ;
-fun accelerometer_N : N ;
-fun hygrometer_N : N ;
-fun psychrometer_N : N ;
-fun spirometer_N : N ;
-fun electrometer_N : N ;
-fun pyrometer_N : N ;
-fun gasometer_N : N ;
-fun hypsometer_N : N ;
-fun refractometer_N : N ;
-fun hectometer_N : N ;
-fun reflectometer_N : N ;
-fun magnetometer_N : N ;
-fun densitometer_N : N ;
-fun sensitometer_N : N ;
-fun femtometer_N : N ;
-fun photometer_N : N ;
-fun microphotometer_N : N ;
-fun spectrophotometer_N : N ;
-fun cytophotometer_N : N ;
-fun cryometer_N : N ;
-fun piezometer_N : N ;
-fun voltmeter_N : N ;
-fun millivoltmeter_N : N ;
-fun wattmeter_N : N ;
-fun volumeter_N : N ;
-fun fluxmeter_N : N ;
-fun tachymeter_N : N ;
-fun bathymeter_N : N ;
-fun dasymeter_N : N ;
-fun trumpeter_N : N ;
-fun interpreter_N : N ;
-fun ureter_N : N ;
-fun masseter_N : N ;
-fun riveter_N : N ;
-fun rafter_N : N ;
-fun drafter_N : N ;
-fun 'scene-shifter_N' : N ;
-fun sceneshifter_N : N ;
-fun shoplifter_N : N ;
-fun weightlifter_N : N ;
-fun snifter_N : N ;
-fun drifter_N : N ;
-fun sifter_N : N ;
-fun crofter_N : N ;
-fun freighter_N : N ;
-fun fighter_N : N ;
-fun 'fire-fighter_N' : N ;
-fun prizefighter_N : N ;
-fun dogfighter_N : N ;
-fun bullfighter_N : N ;
-fun lighter_N : N ;
-fun blighter_N : N ;
-fun firelighter_N : N ;
-fun highlighter_N : N ;
-fun moonlighter_N : N ;
-fun lamplighter_N : N ;
-fun 'first-nighter_N' : N ;
-fun overnighter_N : N ;
-fun daughter_N : N ;
-fun granddaughter_N : N ;
-fun goddaughter_N : N ;
-fun stepdaughter_N : N ;
-fun laughter_N : N ;
-fun slaughter_N : N ;
-fun manslaughter_N : N ;
-fun gaiter_N : N ;
-fun plaiter_N : N ;
-fun waiter_N : N ;
-fun dumbwaiter_N : N ;
-fun biter_N : N ;
-fun backbiter_N : N ;
-fun arbiter_N : N ;
-fun reciter_N : N ;
-fun counterfeiter_N : N ;
-fun dekaliter_N : N ;
-fun deciliter_N : N ;
-fun milliliter_N : N ;
-fun centiliter_N : N ;
-fun kiloliter_N : N ;
-fun hectoliter_N : N ;
-fun miter_N : N ;
-fun dynamiter_N : N ;
-fun limiter_N : N ;
-fun vomiter_N : N ;
-fun igniter_N : N ;
-fun goiter_N : N ;
-fun exploiter_N : N ;
-fun writer_N : N ;
-fun 'ghost-writer_N' : N ;
-fun typewriter_N : N ;
-fun teletypewriter_N : N ;
-fun songwriter_N : N ;
-fun speechwriter_N : N ;
-fun screenwriter_N : N ;
-fun underwriter_N : N ;
-fun scriptwriter_N : N ;
-fun ghostwriter_N : N ;
-fun copywriter_N : N ;
-fun titer_N : N ;
-fun recruiter_N : N ;
-fun halter_N : N ;
-fun salter_N : N ;
-fun psalter_N : N ;
-fun shelter_N : N ;
-fun 'helter-skelter_N' : N ;
-fun melter_N : N ;
-fun smelter_N : N ;
-fun pelter_N : N ;
-fun spelter_N : N ;
-fun filter_N : N ;
-fun philter_N : N ;
-fun kilter_N : N ;
-fun tilter_N : N ;
-fun colter_N : N ;
-fun molter_N : N ;
-fun defaulter_N : N ;
-fun vaulter_N : N ;
-fun coulter_N : N ;
-fun banter_N : N ;
-fun canter_N : N ;
-fun decanter_N : N ;
-fun chanter_N : N ;
-fun enchanter_N : N ;
-fun trochanter_N : N ;
-fun 'tam-o\'-shanter_N' : N ;
-fun planter_N : N ;
-fun supplanter_N : N ;
-fun transplanter_N : N ;
-fun ranter_N : N ;
-fun granter_N : N ;
-fun levanter_N : N ;
-fun wanter_N : N ;
-fun center_N : N ;
-fun metacenter_N : N ;
-fun epicenter_N : N ;
-fun barycenter_N : N ;
-fun experimenter_N : N ;
-fun tormenter_N : N ;
-fun carpenter_N : N ;
-fun renter_N : N ;
-fun presenter_N : N ;
-fun assenter_N : N ;
-fun dissenter_N : N ;
-fun tenter_N : N ;
-fun venter_N : N ;
-fun painter_N : N ;
-fun 'word-painter_N' : N ;
-fun 'scene-painter_N' : N ;
-fun 'sign-painter_N' : N ;
-fun splinter_N : N ;
-fun jointer_N : N ;
-fun anointer_N : N ;
-fun pointer_N : N ;
-fun printer_N : N ;
-fun teleprinter_N : N ;
-fun sprinter_N : N ;
-fun tinter_N : N ;
-fun stinter_N : N ;
-fun squinter_N : N ;
-fun winter_N : N ;
-fun midwinter_N : N ;
-fun saunter_N : N ;
-fun vaunter_N : N ;
-fun bunter_N : N ;
-fun hunter_N : N ;
-fun 'head-hunter_N' : N ;
-fun 'bug-hunter_N' : N ;
-fun 'lion-hunter_N' : N ;
-fun headhunter_N : N ;
-fun shunter_N : N ;
-fun pothunter_N : N ;
-fun foxhunter_N : N ;
-fun counter_N : N ;
-fun 'snack-counter_N' : N ;
-fun encounter_N : N ;
-fun mounter_N : N ;
-fun punter_N : N ;
-fun grunter_N : N ;
-fun scoter_N : N ;
-fun rioter_N : N ;
-fun promoter_N : N ;
-fun freebooter_N : N ;
-fun cooter_N : N ;
-fun scooter_N : N ;
-fun footer_N : N ;
-fun 'six-footer_N' : N ;
-fun hooter_N : N ;
-fun shooter_N : N ;
-fun 'line-shooter_N' : N ;
-fun 'six-shooter_N' : N ;
-fun peashooter_N : N ;
-fun troubleshooter_N : N ;
-fun crapshooter_N : N ;
-fun trapshooter_N : N ;
-fun sharpshooter_N : N ;
-fun looter_N : N ;
-fun garroter_N : N ;
-fun quoter_N : N ;
-fun voter_N : N ;
-fun adapter_N : N ;
-fun chapter_N : N ;
-fun scepter_N : N ;
-fun tempter_N : N ;
-fun prompter_N : N ;
-fun teleprompter_N : N ;
-fun sumpter_N : N ;
-fun helicopter_N : N ;
-fun orthopter_N : N ;
-fun diopter_N : N ;
-fun thysanopter_N : N ;
-fun interrupter_N : N ;
-fun barter_N : N ;
-fun carter_N : N ;
-fun darter_N : N ;
-fun garter_N : N ;
-fun charter_N : N ;
-fun departer_N : N ;
-fun starter_N : N ;
-fun 'self-starter_N' : N ;
-fun 'kick-starter_N' : N ;
-fun nonstarter_N : N ;
-fun quarter_N : N ;
-fun 'three-quarter_N' : N ;
-fun headquarter_N : N ;
-fun hindquarter_N : N ;
-fun forequarter_N : N ;
-fun deserter_N : N ;
-fun asserter_N : N ;
-fun inverter_N : N ;
-fun converter_N : N ;
-fun comforter_N : N ;
-fun snorter_N : N ;
-fun porter_N : N ;
-fun 'night-porter_N' : N ;
-fun reporter_N : N ;
-fun importer_N : N ;
-fun supporter_N : N ;
-fun transporter_N : N ;
-fun exporter_N : N ;
-fun sorter_N : N ;
-fun ragsorter_N : N ;
-fun kicksorter_N : N ;
-fun mailsorter_N : N ;
-fun frankfurter_N : N ;
-fun aster_N : N ;
-fun baster_N : N ;
-fun alabaster_N : N ;
-fun caster_N : N ;
-fun broadcaster_N : N ;
-fun telecaster_N : N ;
-fun forecaster_N : N ;
-fun newscaster_N : N ;
-fun cadaster_N : N ;
-fun easter_N : N ;
-fun northeaster_N : N ;
-fun southeaster_N : N ;
-fun oleaster_N : N ;
-fun cotoneaster_N : N ;
-fun solenogaster_N : N ;
-fun piaster_N : N ;
-fun blaster_N : N ;
-fun sandblaster_N : N ;
-fun pilaster_N : N ;
-fun plaster_N : N ;
-fun 'sticking-plaster_N' : N ;
-fun shinplaster_N : N ;
-fun master_N : N ;
-fun 'riding-master_N' : N ;
-fun 'sailing-master_N' : N ;
-fun 'question-master_N' : N ;
-fun 'games-master_N' : N ;
-fun 'property-master_N' : N ;
-fun webmaster_N : N ;
-fun headmaster_N : N ;
-fun bandmaster_N : N ;
-fun grandmaster_N : N ;
-fun yardmaster_N : N ;
-fun whoremaster_N : N ;
-fun housemaster_N : N ;
-fun ringmaster_N : N ;
-fun lockmaster_N : N ;
-fun taskmaster_N : N ;
-fun schoolmaster_N : N ;
-fun stationmaster_N : N ;
-fun burgomaster_N : N ;
-fun quartermaster_N : N ;
-fun choirmaster_N : N ;
-fun toastmaster_N : N ;
-fun postmaster_N : N ;
-fun scoutmaster_N : N ;
-fun paymaster_N : N ;
-fun spymaster_N : N ;
-fun quizmaster_N : N ;
-fun boaster_N : N ;
-fun coaster_N : N ;
-fun hypercoaster_N : N ;
-fun roaster_N : N ;
-fun toaster_N : N ;
-fun paster_N : N ;
-fun raster_N : N ;
-fun disaster_N : N ;
-fun taster_N : N ;
-fun waster_N : N ;
-fun lobster_N : N ;
-fun mobster_N : N ;
-fun roadster_N : N ;
-fun oldster_N : N ;
-fun ester_N : N ;
-fun fester_N : N ;
-fun suggester_N : N ;
-fun digester_N : N ;
-fun jester_N : N ;
-fun molester_N : N ;
-fun semester_N : N ;
-fun bimester_N : N ;
-fun trimester_N : N ;
-fun rhymester_N : N ;
-fun nester_N : N ;
-fun rester_N : N ;
-fun forester_N : N ;
-fun arrester_N : N ;
-fun wrester_N : N ;
-fun tester_N : N ;
-fun contester_N : N ;
-fun protester_N : N ;
-fun attester_N : N ;
-fun harvester_N : N ;
-fun sou'wester_N : N ;
-fun 'sou\'-wester_N' : N ;
-fun northwester_N : N ;
-fun southwester_N : N ;
-fun polyester_N : N ;
-fun gangster_N : N ;
-fun songster_N : N ;
-fun youngster_N : N ;
-fun shirtwaister_N : N ;
-fun bister_N : N ;
-fun leister_N : N ;
-fun schlockmeister_N : N ;
-fun register_N : N ;
-fun lister_N : N ;
-fun blister_N : N ;
-fun 'water-blister_N' : N ;
-fun glister_N : N ;
-fun mister_N : N ;
-fun demister_N : N ;
-fun banister_N : N ;
-fun canister_N : N ;
-fun minister_N : N ;
-fun bannister_N : N ;
-fun hoister_N : N ;
-fun cloister_N : N ;
-fun chorister_N : N ;
-fun barrister_N : N ;
-fun sister_N : N ;
-fun 'half-sister_N' : N ;
-fun 'foster-sister_N' : N ;
-fun resister_N : N ;
-fun stepsister_N : N ;
-fun twister_N : N ;
-fun 'tongue-twister_N' : N ;
-fun supertwister_N : N ;
-fun trickster_N : N ;
-fun huckster_N : N ;
-fun prankster_N : N ;
-fun pollster_N : N ;
-fun bolster_N : N ;
-fun holster_N : N ;
-fun ulster_N : N ;
-fun teamster_N : N ;
-fun hamster_N : N ;
-fun minster_N : N ;
-fun spinster_N : N ;
-fun monster_N : N ;
-fun punster_N : N ;
-fun paternoster_N : N ;
-fun booster_N : N ;
-fun rooster_N : N ;
-fun poster_N : N ;
-fun 'bill-poster_N' : N ;
-fun 'four-poster_N' : N ;
-fun imposter_N : N ;
-fun roster_N : N ;
-fun defroster_N : N ;
-fun tapster_N : N ;
-fun tipster_N : N ;
-fun maltster_N : N ;
-fun buster_N : N ;
-fun filibuster_N : N ;
-fun blockbuster_N : N ;
-fun trustbuster_N : N ;
-fun duster_N : N ;
-fun adjuster_N : N ;
-fun luster_N : N ;
-fun baluster_N : N ;
-fun bluster_N : N ;
-fun cluster_N : N ;
-fun fluster_N : N ;
-fun muster_N : N ;
-fun ouster_N : N ;
-fun thruster_N : N ;
-fun throwster_N : N ;
-fun shyster_N : N ;
-fun oyster_N : N ;
-fun 'pearl-oyster_N' : N ;
-fun batter_N : N ;
-fun wildcatter_N : N ;
-fun scatter_N : N ;
-fun hatter_N : N ;
-fun chatter_N : N ;
-fun latter_N : N ;
-fun clatter_N : N ;
-fun platter_N : N ;
-fun matter_N : N ;
-fun antimatter_N : N ;
-fun patter_N : N ;
-fun 'pitter-patter_N' : N ;
-fun spatter_N : N ;
-fun ratter_N : N ;
-fun tatter_N : N ;
-fun squatter_N : N ;
-fun swatter_N : N ;
-fun 'fly-swatter_N' : N ;
-fun better_N : N ;
-fun fetter_N : N ;
-fun 'go-getter_N' : N ;
-fun begetter_N : N ;
-fun letter_N : N ;
-fun 'love-letter_N' : N ;
-fun 'chain-letter_N' : N ;
-fun newsletter_N : N ;
-fun petter_N : N ;
-fun setter_N : N ;
-fun 'trend-setter_N' : N ;
-fun 'bone-setter_N' : N ;
-fun pacesetter_N : N ;
-fun bonesetter_N : N ;
-fun typesetter_N : N ;
-fun upsetter_N : N ;
-fun wetter_N : N ;
-fun bedwetter_N : N ;
-fun bitter_N : N ;
-fun fitter_N : N ;
-fun 'gas-fitter_N' : N ;
-fun steamfitter_N : N ;
-fun outfitter_N : N ;
-fun hitter_N : N ;
-fun jitter_N : N ;
-fun litter_N : N ;
-fun glitter_N : N ;
-fun splitter_N : N ;
-fun hairsplitter_N : N ;
-fun submitter_N : N ;
-fun emitter_N : N ;
-fun transmitter_N : N ;
-fun neurotransmitter_N : N ;
-fun knitter_N : N ;
-fun spitter_N : N ;
-fun critter_N : N ;
-fun fritter_N : N ;
-fun sitter_N : N ;
-fun bedsitter_N : N ;
-fun babysitter_N : N ;
-fun titter_N : N ;
-fun quitter_N : N ;
-fun twitter_N : N ;
-fun otter_N : N ;
-fun cotter_N : N ;
-fun jotter_N : N ;
-fun blotter_N : N ;
-fun plotter_N : N ;
-fun potter_N : N ;
-fun spotter_N : N ;
-fun rotter_N : N ;
-fun trotter_N : N ;
-fun globetrotter_N : N ;
-fun butter_N : N ;
-fun 'nut-butter_N' : N ;
-fun abutter_N : N ;
-fun rebutter_N : N ;
-fun surrebutter_N : N ;
-fun cutter_N : N ;
-fun 'glass-cutter_N' : N ;
-fun woodcutter_N : N ;
-fun stonecutter_N : N ;
-fun gutter_N : N ;
-fun shutter_N : N ;
-fun clutter_N : N ;
-fun flutter_N : N ;
-fun splutter_N : N ;
-fun mutter_N : N ;
-fun nutter_N : N ;
-fun putter_N : N ;
-fun sputter_N : N ;
-fun stutter_N : N ;
-fun neuter_N : N ;
-fun polluter_N : N ;
-fun commuter_N : N ;
-fun spouter_N : N ;
-fun router_N : N ;
-fun computer_N : N ;
-fun minicomputer_N : N ;
-fun supercomputer_N : N ;
-fun pewter_N : N ;
-fun presbyter_N : N ;
-fun rescuer_N : N ;
-fun subduer_N : N ;
-fun haranguer_N : N ;
-fun valuer_N : N ;
-fun revenuer_N : N ;
-fun lacquer_N : N ;
-fun exchequer_N : N ;
-fun suer_N : N ;
-fun pursuer_N : N ;
-fun issuer_N : N ;
-fun cadaver_N : N ;
-fun beaver_N : N ;
-fun heaver_N : N ;
-fun cleaver_N : N ;
-fun weaver_N : N ;
-fun basketweaver_N : N ;
-fun shaver_N : N ;
-fun laver_N : N ;
-fun palaver_N : N ;
-fun slaver_N : N ;
-fun raver_N : N ;
-fun graver_N : N ;
-fun engraver_N : N ;
-fun saver_N : N ;
-fun 'face-saver_N' : N ;
-fun 'life-saver_N' : N ;
-fun quaver_N : N ;
-fun semiquaver_N : N ;
-fun waver_N : N ;
-fun fever_N : N ;
-fun achiever_N : N ;
-fun underachiever_N : N ;
-fun overachiever_N : N ;
-fun believer_N : N ;
-fun unbeliever_N : N ;
-fun disbeliever_N : N ;
-fun reliever_N : N ;
-fun retriever_N : N ;
-fun lever_N : N ;
-fun cantilever_N : N ;
-fun waiver_N : N ;
-fun diver_N : N ;
-fun 'pearl-diver_N' : N ;
-fun skydiver_N : N ;
-fun deceiver_N : N ;
-fun receiver_N : N ;
-fun perceiver_N : N ;
-fun fiver_N : N ;
-fun giver_N : N ;
-fun caregiver_N : N ;
-fun almsgiver_N : N ;
-fun lawgiver_N : N ;
-fun shiver_N : N ;
-fun liver_N : N ;
-fun 'free-liver_N' : N ;
-fun sliver_N : N ;
-fun miniver_N : N ;
-fun river_N : N ;
-fun driver_N : N ;
-fun 'pile-driver_N' : N ;
-fun 'engine-driver_N' : N ;
-fun 'slave-driver_N' : N ;
-fun 'owner-driver_N' : N ;
-fun taxidriver_N : N ;
-fun nondriver_N : N ;
-fun screwdriver_N : N ;
-fun contriver_N : N ;
-fun striver_N : N ;
-fun quiver_N : N ;
-fun salver_N : N ;
-fun elver_N : N ;
-fun shelver_N : N ;
-fun silver_N : N ;
-fun quicksilver_N : N ;
-fun absolver_N : N ;
-fun revolver_N : N ;
-fun over_N : N ;
-fun 'spread-over_N' : N ;
-fun 'going-over_N' : N ;
-fun 'look-over_N' : N ;
-fun 'call-over_N' : N ;
-fun cover_N : N ;
-fun groundcover_N : N ;
-fun hardcover_N : N ;
-fun slipcover_N : N ;
-fun holdover_N : N ;
-fun handover_N : N ;
-fun changeover_N : N ;
-fun makeover_N : N ;
-fun takeover_N : N ;
-fun hangover_N : N ;
-fun flashover_N : N ;
-fun pushover_N : N ;
-fun walkover_N : N ;
-fun lover_N : N ;
-fun clover_N : N ;
-fun spillover_N : N ;
-fun rollover_N : N ;
-fun pullover_N : N ;
-fun plover_N : N ;
-fun mover_N : N ;
-fun remover_N : N ;
-fun turnover_N : N ;
-fun hoover_N : N ;
-fun groover_N : N ;
-fun sleepover_N : N ;
-fun slipover_N : N ;
-fun popover_N : N ;
-fun stopover_N : N ;
-fun rover_N : N ;
-fun 'sea-rover_N' : N ;
-fun drover_N : N ;
-fun landrover_N : N ;
-fun improver_N : N ;
-fun approver_N : N ;
-fun passover_N : N ;
-fun crossover_N : N ;
-fun leftover_N : N ;
-fun stover_N : N ;
-fun layover_N : N ;
-fun flyover_N : N ;
-fun carver_N : N ;
-fun woodcarver_N : N ;
-fun server_N : N ;
-fun 'process-server_N' : N ;
-fun observer_N : N ;
-fun timeserver_N : N ;
-fun preserver_N : N ;
-fun 'life-preserver_N' : N ;
-fun maneuver_N : N ;
-fun louver_N : N ;
-fun pawer_N : N ;
-fun drawer_N : N ;
-fun withdrawer_N : N ;
-fun ewer_N : N ;
-fun hewer_N : N ;
-fun chewer_N : N ;
-fun woodhewer_N : N ;
-fun viewer_N : N ;
-fun reviewer_N : N ;
-fun interviewer_N : N ;
-fun skewer_N : N ;
-fun brewer_N : N ;
-fun sewer_N : N ;
-fun bower_N : N ;
-fun dower_N : N ;
-fun widower_N : N ;
-fun shower_N : N ;
-fun thundershower_N : N ;
-fun blower_N : N ;
-fun 'organ-blower_N' : N ;
-fun 'glass-blower_N' : N ;
-fun glassblower_N : N ;
-fun flower_N : N ;
-fun 'bell-flower_N' : N ;
-fun 'passion-flower_N' : N ;
-fun wildflower_N : N ;
-fun wandflower_N : N ;
-fun windflower_N : N ;
-fun globeflower_N : N ;
-fun coneflower_N : N ;
-fun tongueflower_N : N ;
-fun pasqueflower_N : N ;
-fun safflower_N : N ;
-fun cauliflower_N : N ;
-fun snailflower_N : N ;
-fun wallflower_N : N ;
-fun shellflower_N : N ;
-fun foamflower_N : N ;
-fun twinflower_N : N ;
-fun passionflower_N : N ;
-fun moonflower_N : N ;
-fun cornflower_N : N ;
-fun sunflower_N : N ;
-fun cupflower_N : N ;
-fun starflower_N : N ;
-fun spiderflower_N : N ;
-fun helmetflower_N : N ;
-fun mistflower_N : N ;
-fun strawflower_N : N ;
-fun waxflower_N : N ;
-fun honeyflower_N : N ;
-fun follower_N : N ;
-fun 'camp-follower_N' : N ;
-fun mower_N : N ;
-fun 'lawn-mower_N' : N ;
-fun knower_N : N ;
-fun power_N : N ;
-fun 'sea-power_N' : N ;
-fun 'candle-power_N' : N ;
-fun 'fire-power_N' : N ;
-fun 'lung-power_N' : N ;
-fun 'water-power_N' : N ;
-fun candlepower_N : N ;
-fun firepower_N : N ;
-fun willpower_N : N ;
-fun manpower_N : N ;
-fun waterpower_N : N ;
-fun rower_N : N ;
-fun grower_N : N ;
-fun thrower_N : N ;
-fun flamethrower_N : N ;
-fun borrower_N : N ;
-fun sower_N : N ;
-fun tower_N : N ;
-fun 'cooling-tower_N' : N ;
-fun 'clock-tower_N' : N ;
-fun 'water-tower_N' : N ;
-fun 'shot-tower_N' : N ;
-fun watchtower_N : N ;
-fun vower_N : N ;
-fun avower_N : N ;
-fun answer_N : N ;
-fun relaxer_N : N ;
-fun hoaxer_N : N ;
-fun taxer_N : N ;
-fun indexer_N : N ;
-fun multiplexer_N : N ;
-fun fixer_N : N ;
-fun mixer_N : N ;
-fun 'cement-mixer_N' : N ;
-fun boxer_N : N ;
-fun 'bobby-soxer_N' : N ;
-fun bobbysoxer_N : N ;
-fun layer_N : N ;
-fun delayer_N : N ;
-fun minelayer_N : N ;
-fun platelayer_N : N ;
-fun bricklayer_N : N ;
-fun player_N : N ;
-fun 'billiard-player_N' : N ;
-fun 'record-player_N' : N ;
-fun ballplayer_N : N ;
-fun interlayer_N : N ;
-fun slayer_N : N ;
-fun payer_N : N ;
-fun ratepayer_N : N ;
-fun taxpayer_N : N ;
-fun prayer_N : N ;
-fun sprayer_N : N ;
-fun betrayer_N : N ;
-fun soothsayer_N : N ;
-fun assayer_N : N ;
-fun naysayer_N : N ;
-fun stayer_N : N ;
-fun dyer_N : N ;
-fun conveyer_N : N ;
-fun flyer_N : N ;
-fun highflyer_N : N ;
-fun foyer_N : N ;
-fun enjoyer_N : N ;
-fun employer_N : N ;
-fun destroyer_N : N ;
-fun dryer_N : N ;
-fun fryer_N : N ;
-fun buyer_N : N ;
-fun lawyer_N : N ;
-fun sawyer_N : N ;
-fun stargazer_N : N ;
-fun blazer_N : N ;
-fun trailblazer_N : N ;
-fun mazer_N : N ;
-fun geezer_N : N ;
-fun sneezer_N : N ;
-fun freezer_N : N ;
-fun squeezer_N : N ;
-fun plasticizer_N : N ;
-fun subsidizer_N : N ;
-fun liquidizer_N : N ;
-fun standardizer_N : N ;
-fun energizer_N : N ;
-fun philosophizer_N : N ;
-fun sympathizer_N : N ;
-fun subvocalizer_N : N ;
-fun socializer_N : N ;
-fun normalizer_N : N ;
-fun tantalizer_N : N ;
-fun equalizer_N : N ;
-fun visualizer_N : N ;
-fun stabilizer_N : N ;
-fun gyrostabilizer_N : N ;
-fun fertilizer_N : N ;
-fun utilizer_N : N ;
-fun tranquilizer_N : N ;
-fun tranquillizer_N : N ;
-fun idolizer_N : N ;
-fun victimizer_N : N ;
-fun economizer_N : N ;
-fun atomizer_N : N ;
-fun vulcanizer_N : N ;
-fun organizer_N : N ;
-fun womanizer_N : N ;
-fun galvanizer_N : N ;
-fun scrutinizer_N : N ;
-fun colonizer_N : N ;
-fun harmonizer_N : N ;
-fun vulgarizer_N : N ;
-fun popularizer_N : N ;
-fun tenderizer_N : N ;
-fun allegorizer_N : N ;
-fun authorizer_N : N ;
-fun memorizer_N : N ;
-fun vaporizer_N : N ;
-fun temporizer_N : N ;
-fun synthesizer_N : N ;
-fun alphabetizer_N : N ;
-fun appetizer_N : N ;
-fun digitizer_N : N ;
-fun sensitizer_N : N ;
-fun panzer_N : N ;
-fun 'angle-dozer_N' : N ;
-fun angledozer_N : N ;
-fun bulldozer_N : N ;
-fun boozer_N : N ;
-fun patzer_N : N ;
-fun kibitzer_N : N ;
-fun spritzer_N : N ;
-fun howitzer_N : N ;
-fun waltzer_N : N ;
-fun seltzer_N : N ;
-fun schnauzer_N : N ;
-fun breathalyzer_N : N ;
-fun dialyzer_N : N ;
-fun analyzer_N : N ;
-fun buzzer_N : N ;
-fun air_N : N ;
-fun midair_N : N ;
-fun fair_N : N ;
-fun affair_N : N ;
-fun 'love-affair_N' : N ;
-fun funfair_N : N ;
-fun hair_N : N ;
-fun 'camel-hair_N' : N ;
-fun chair_N : N ;
-fun 'lounge-chair_N' : N ;
-fun 'rocking-chair_N' : N ;
-fun 'bath-chair_N' : N ;
-fun 'sedan-chair_N' : N ;
-fun 'camp-chair_N' : N ;
-fun highchair_N : N ;
-fun pushchair_N : N ;
-fun wheelchair_N : N ;
-fun armchair_N : N ;
-fun wirehair_N : N ;
-fun horsehair_N : N ;
-fun maidenhair_N : N ;
-fun mohair_N : N ;
-fun lair_N : N ;
-fun éclair_N : N ;
-fun flair_N : N ;
-fun pair_N : N ;
-fun 'au pair_N' : N ;
-fun repair_N : N ;
-fun disrepair_N : N ;
-fun despair_N : N ;
-fun corsair_N : N ;
-fun stair_N : N ;
-fun dir_N : N ;
-fun nadir_N : N ;
-fun heir_N : N ;
-fun weir_N : N ;
-fun fir_N : N ;
-fun kaffir_N : N ;
-fun menhir_N : N ;
-fun fakir_N : N ;
-fun amir_N : N ;
-fun emir_N : N ;
-fun souvenir_N : N ;
-fun coir_N : N ;
-fun boudoir_N : N ;
-fun choir_N : N ;
-fun loir_N : N ;
-fun memoir_N : N ;
-fun peignoir_N : N ;
-fun voussoir_N : N ;
-fun abattoir_N : N ;
-fun devoir_N : N ;
-fun reservoir_N : N ;
-fun diapir_N : N ;
-fun tapir_N : N ;
-fun eyrir_N : N ;
-fun sir_N : N ;
-fun stir_N : N ;
-fun indinavir_N : N ;
-fun nelfinavir_N : N ;
-fun saquinavir_N : N ;
-fun ritonavir_N : N ;
-fun triumvir_N : N ;
-fun acyclovir_N : N ;
-fun elixir_N : N ;
-fun labor_N : N ;
-fun tabor_N : N ;
-fun neighbor_N : N ;
-fun arbor_N : N ;
-fun rancor_N : N ;
-fun mucor_N : N ;
-fun décor_N : N ;
-fun picador_N : N ;
-fun toreador_N : N ;
-fun chador_N : N ;
-fun ambassador_N : N ;
-fun matador_N : N ;
-fun conquistador_N : N ;
-fun cuspidor_N : N ;
-fun corridor_N : N ;
-fun stridor_N : N ;
-fun candor_N : N ;
-fun vendor_N : N ;
-fun newsvendor_N : N ;
-fun condor_N : N ;
-fun komondor_N : N ;
-fun malodor_N : N ;
-fun ardor_N : N ;
-fun meteor_N : N ;
-fun 'what-for_N' : N ;
-fun mortgagor_N : N ;
-fun vigor_N : N ;
-fun turgor_N : N ;
-fun ichor_N : N ;
-fun anchor_N : N ;
-fun 'sheet-anchor_N' : N ;
-fun markhor_N : N ;
-fun anaphor_N : N ;
-fun metaphor_N : N ;
-fun camphor_N : N ;
-fun phosphor_N : N ;
-fun author_N : N ;
-fun coauthor_N : N ;
-fun senior_N : N ;
-fun seignior_N : N ;
-fun junior_N : N ;
-fun inferior_N : N ;
-fun superior_N : N ;
-fun interior_N : N ;
-fun posterior_N : N ;
-fun exterior_N : N ;
-fun prior_N : N ;
-fun warrior_N : N ;
-fun excelsior_N : N ;
-fun behavior_N : N ;
-fun misbehavior_N : N ;
-fun pavior_N : N ;
-fun savior_N : N ;
-fun major_N : N ;
-fun 'drum-major_N' : N ;
-fun 'sergeant-major_N' : N ;
-fun kwashiorkor_N : N ;
-fun squalor_N : N ;
-fun bachelor_N : N ;
-fun counselor_N : N ;
-fun bailor_N : N ;
-fun jailor_N : N ;
-fun sailor_N : N ;
-fun tailor_N : N ;
-fun pallor_N : N ;
-fun chancellor_N : N ;
-fun counsellor_N : N ;
-fun councillor_N : N ;
-fun color_N : N ;
-fun technicolor_N : N ;
-fun tricolor_N : N ;
-fun watercolor_N : N ;
-fun dolor_N : N ;
-fun parlor_N : N ;
-fun settlor_N : N ;
-fun clamor_N : N ;
-fun glamor_N : N ;
-fun tremor_N : N ;
-fun armor_N : N ;
-fun humor_N : N ;
-fun rumor_N : N ;
-fun tumor_N : N ;
-fun demeanor_N : N ;
-fun misdemeanor_N : N ;
-fun athanor_N : N ;
-fun manor_N : N ;
-fun alienor_N : N ;
-fun tenor_N : N ;
-fun countertenor_N : N ;
-fun intervenor_N : N ;
-fun signor_N : N ;
-fun consignor_N : N ;
-fun monsignor_N : N ;
-fun assignor_N : N ;
-fun minor_N : N ;
-fun donor_N : N ;
-fun 'blood-donor_N' : N ;
-fun honor_N : N ;
-fun dishonor_N : N ;
-fun governor_N : N ;
-fun guvnor_N : N ;
-fun boor_N : N ;
-fun door_N : N ;
-fun 'barn-door_N' : N ;
-fun 'trap-door_N' : N ;
-fun 'wicket-door_N' : N ;
-fun backdoor_N : N ;
-fun tandoor_N : N ;
-fun barndoor_N : N ;
-fun floor_N : N ;
-fun 'threshing-floor_N' : N ;
-fun moor_N : N ;
-fun blackamoor_N : N ;
-fun spoor_N : N ;
-fun vapor_N : N ;
-fun torpor_N : N ;
-fun stupor_N : N ;
-fun transferor_N : N ;
-fun emperor_N : N ;
-fun conqueror_N : N ;
-fun error_N : N ;
-fun terror_N : N ;
-fun mirror_N : N ;
-fun horror_N : N ;
-fun furor_N : N ;
-fun juror_N : N ;
-fun conjuror_N : N ;
-fun incisor_N : N ;
-fun visor_N : N ;
-fun 'sun-visor_N' : N ;
-fun devisor_N : N ;
-fun divisor_N : N ;
-fun supervisor_N : N ;
-fun censor_N : N ;
-fun prehensor_N : N ;
-fun tensor_N : N ;
-fun sponsor_N : N ;
-fun cursor_N : N ;
-fun precursor_N : N ;
-fun successor_N : N ;
-fun predecessor_N : N ;
-fun processor_N : N ;
-fun multiprocessor_N : N ;
-fun microprocessor_N : N ;
-fun confessor_N : N ;
-fun professor_N : N ;
-fun lessor_N : N ;
-fun aggressor_N : N ;
-fun transgressor_N : N ;
-fun depressor_N : N ;
-fun repressor_N : N ;
-fun compressor_N : N ;
-fun vasopressor_N : N ;
-fun oppressor_N : N ;
-fun suppressor_N : N ;
-fun stressor_N : N ;
-fun assessor_N : N ;
-fun possessor_N : N ;
-fun tor_N : N ;
-fun abator_N : N ;
-fun masturbator_N : N ;
-fun incubator_N : N ;
-fun defecator_N : N ;
-fun abdicator_N : N ;
-fun predicator_N : N ;
-fun indicator_N : N ;
-fun 'speed-indicator_N' : N ;
-fun syndicator_N : N ;
-fun adjudicator_N : N ;
-fun trafficator_N : N ;
-fun applicator_N : N ;
-fun duplicator_N : N ;
-fun communicator_N : N ;
-fun locator_N : N ;
-fun allocator_N : N ;
-fun educator_N : N ;
-fun predator_N : N ;
-fun invalidator_N : N ;
-fun liquidator_N : N ;
-fun mandator_N : N ;
-fun laudator_N : N ;
-fun creator_N : N ;
-fun propagator_N : N ;
-fun abnegator_N : N ;
-fun segregator_N : N ;
-fun alligator_N : N ;
-fun fumigator_N : N ;
-fun investigator_N : N ;
-fun instigator_N : N ;
-fun navigator_N : N ;
-fun promulgator_N : N ;
-fun abrogator_N : N ;
-fun arrogator_N : N ;
-fun interrogator_N : N ;
-fun astrogator_N : N ;
-fun expurgator_N : N ;
-fun subjugator_N : N ;
-fun appreciator_N : N ;
-fun annunciator_N : N ;
-fun gladiator_N : N ;
-fun radiator_N : N ;
-fun mediator_N : N ;
-fun conciliator_N : N ;
-fun defoliator_N : N ;
-fun appropriator_N : N ;
-fun differentiator_N : N ;
-fun negotiator_N : N ;
-fun aviator_N : N ;
-fun alleviator_N : N ;
-fun escalator_N : N ;
-fun deflator_N : N ;
-fun dilator_N : N ;
-fun bronchodilator_N : N ;
-fun vasodilator_N : N ;
-fun invigilator_N : N ;
-fun annihilator_N : N ;
-fun ventilator_N : N ;
-fun mutilator_N : N ;
-fun oscillator_N : N ;
-fun defibrillator_N : N ;
-fun instillator_N : N ;
-fun percolator_N : N ;
-fun violator_N : N ;
-fun legislator_N : N ;
-fun translator_N : N ;
-fun tabulator_N : N ;
-fun perambulator_N : N ;
-fun ejaculator_N : N ;
-fun speculator_N : N ;
-fun articulator_N : N ;
-fun calculator_N : N ;
-fun inoculator_N : N ;
-fun photocoagulator_N : N ;
-fun regulator_N : N ;
-fun simulator_N : N ;
-fun accumulator_N : N ;
-fun manipulator_N : N ;
-fun insulator_N : N ;
-fun postulator_N : N ;
-fun amalgamator_N : N ;
-fun collimator_N : N ;
-fun animator_N : N ;
-fun alienator_N : N ;
-fun senator_N : N ;
-fun coordinator_N : N ;
-fun originator_N : N ;
-fun pollinator_N : N ;
-fun laminator_N : N ;
-fun eliminator_N : N ;
-fun abominator_N : N ;
-fun nominator_N : N ;
-fun denominator_N : N ;
-fun exterminator_N : N ;
-fun supinator_N : N ;
-fun procrastinator_N : N ;
-fun pronator_N : N ;
-fun resonator_N : N ;
-fun impersonator_N : N ;
-fun detonator_N : N ;
-fun alternator_N : N ;
-fun anticipator_N : N ;
-fun emancipator_N : N ;
-fun syncopator_N : N ;
-fun separator_N : N ;
-fun vibrator_N : N ;
-fun aerator_N : N ;
-fun liberator_N : N ;
-fun moderator_N : N ;
-fun vociferator_N : N ;
-fun refrigerator_N : N ;
-fun accelerator_N : N ;
-fun agglomerator_N : N ;
-fun numerator_N : N ;
-fun generator_N : N ;
-fun turbogenerator_N : N ;
-fun venerator_N : N ;
-fun incinerator_N : N ;
-fun operator_N : N ;
-fun cooperator_N : N ;
-fun obliterator_N : N ;
-fun alliterator_N : N ;
-fun adulterator_N : N ;
-fun integrator_N : N ;
-fun migrator_N : N ;
-fun aspirator_N : N ;
-fun respirator_N : N ;
-fun conspirator_N : N ;
-fun orator_N : N ;
-fun collaborator_N : N ;
-fun decorator_N : N ;
-fun barrator_N : N ;
-fun narrator_N : N ;
-fun penetrator_N : N ;
-fun perpetrator_N : N ;
-fun arbitrator_N : N ;
-fun titrator_N : N ;
-fun infiltrator_N : N ;
-fun orchestrator_N : N ;
-fun administrator_N : N ;
-fun demonstrator_N : N ;
-fun counterdemonstrator_N : N ;
-fun illustrator_N : N ;
-fun curator_N : N ;
-fun procurator_N : N ;
-fun obturator_N : N ;
-fun spectator_N : N ;
-fun dictator_N : N ;
-fun resuscitator_N : N ;
-fun agitator_N : N ;
-fun prestidigitator_N : N ;
-fun excogitator_N : N ;
-fun facilitator_N : N ;
-fun imitator_N : N ;
-fun precipitator_N : N ;
-fun commentator_N : N ;
-fun annotator_N : N ;
-fun stator_N : N ;
-fun testator_N : N ;
-fun commutator_N : N ;
-fun sternutator_N : N ;
-fun amputator_N : N ;
-fun disambiguator_N : N ;
-fun evaluator_N : N ;
-fun attenuator_N : N ;
-fun equator_N : N ;
-fun actuator_N : N ;
-fun excavator_N : N ;
-fun aggravator_N : N ;
-fun levator_N : N ;
-fun elevator_N : N ;
-fun activator_N : N ;
-fun cultivator_N : N ;
-fun renovator_N : N ;
-fun innovator_N : N ;
-fun conservator_N : N ;
-fun totalizator_N : N ;
-fun debtor_N : N ;
-fun actor_N : N ;
-fun 'play-actor_N' : N ;
-fun reactor_N : N ;
-fun factor_N : N ;
-fun 'safety-factor_N' : N ;
-fun malefactor_N : N ;
-fun benefactor_N : N ;
-fun cofactor_N : N ;
-fun reenactor_N : N ;
-fun chiropractor_N : N ;
-fun tractor_N : N ;
-fun detractor_N : N ;
-fun retractor_N : N ;
-fun contractor_N : N ;
-fun subcontractor_N : N ;
-fun protractor_N : N ;
-fun abstractor_N : N ;
-fun attractor_N : N ;
-fun extractor_N : N ;
-fun transactor_N : N ;
-fun defector_N : N ;
-fun effector_N : N ;
-fun objector_N : N ;
-fun ejector_N : N ;
-fun injector_N : N ;
-fun autoinjector_N : N ;
-fun projector_N : N ;
-fun 'cine-projector_N' : N ;
-fun lector_N : N ;
-fun elector_N : N ;
-fun selector_N : N ;
-fun deflector_N : N ;
-fun reflector_N : N ;
-fun collector_N : N ;
-fun 'refuse-collector_N' : N ;
-fun 'stamp-collector_N' : N ;
-fun 'ticket-collector_N' : N ;
-fun 'rent-collector_N' : N ;
-fun 'tax-collector_N' : N ;
-fun inspector_N : N ;
-fun prospector_N : N ;
-fun rector_N : N ;
-fun director_N : N ;
-fun sector_N : N ;
-fun detector_N : N ;
-fun 'lie-detector_N' : N ;
-fun 'mine-detector_N' : N ;
-fun protector_N : N ;
-fun vector_N : N ;
-fun convector_N : N ;
-fun predictor_N : N ;
-fun constrictor_N : N ;
-fun 'boa-constrictor_N' : N ;
-fun vasoconstrictor_N : N ;
-fun victor_N : N ;
-fun doctor_N : N ;
-fun 'witch-doctor_N' : N ;
-fun proctor_N : N ;
-fun abductor_N : N ;
-fun adductor_N : N ;
-fun inductor_N : N ;
-fun conductor_N : N ;
-fun 'lightning-conductor_N' : N ;
-fun semiconductor_N : N ;
-fun nonconductor_N : N ;
-fun instructor_N : N ;
-fun constructor_N : N ;
-fun praetor_N : N ;
-fun proprietor_N : N ;
-fun pretor_N : N ;
-fun carburetor_N : N ;
-fun traitor_N : N ;
-fun inhibitor_N : N ;
-fun exhibitor_N : N ;
-fun capacitor_N : N ;
-fun solicitor_N : N ;
-fun editor_N : N ;
-fun 'sports-editor_N' : N ;
-fun subeditor_N : N ;
-fun creditor_N : N ;
-fun auditor_N : N ;
-fun janitor_N : N ;
-fun genitor_N : N ;
-fun progenitor_N : N ;
-fun monitor_N : N ;
-fun inheritor_N : N ;
-fun inquisitor_N : N ;
-fun visitor_N : N ;
-fun depositor_N : N ;
-fun ovipositor_N : N ;
-fun compositor_N : N ;
-fun expositor_N : N ;
-fun competitor_N : N ;
-fun suitor_N : N ;
-fun servitor_N : N ;
-fun realtor_N : N ;
-fun cantor_N : N ;
-fun guarantor_N : N ;
-fun grantor_N : N ;
-fun warrantor_N : N ;
-fun accentor_N : N ;
-fun precentor_N : N ;
-fun mentor_N : N ;
-fun tormentor_N : N ;
-fun stentor_N : N ;
-fun inventor_N : N ;
-fun motor_N : N ;
-fun oculomotor_N : N ;
-fun rotor_N : N ;
-fun captor_N : N ;
-fun adaptor_N : N ;
-fun utahraptor_N : N ;
-fun velociraptor_N : N ;
-fun maniraptor_N : N ;
-fun eoraptor_N : N ;
-fun acceptor_N : N ;
-fun receptor_N : N ;
-fun chemoreceptor_N : N ;
-fun thermoreceptor_N : N ;
-fun osmoreceptor_N : N ;
-fun baroreceptor_N : N ;
-fun preceptor_N : N ;
-fun proprioceptor_N : N ;
-fun interoceptor_N : N ;
-fun exteroceptor_N : N ;
-fun interceptor_N : N ;
-fun descriptor_N : N ;
-fun sculptor_N : N ;
-fun preemptor_N : N ;
-fun castor_N : N ;
-fun pastor_N : N ;
-fun quaestor_N : N ;
-fun ancestor_N : N ;
-fun investor_N : N ;
-fun thermistor_N : N ;
-fun resistor_N : N ;
-fun transistor_N : N ;
-fun impostor_N : N ;
-fun bettor_N : N ;
-fun abettor_N : N ;
-fun carburettor_N : N ;
-fun contributor_N : N ;
-fun distributor_N : N ;
-fun prosecutor_N : N ;
-fun persecutor_N : N ;
-fun executor_N : N ;
-fun interlocutor_N : N ;
-fun coadjutor_N : N ;
-fun tutor_N : N ;
-fun languor_N : N ;
-fun liquor_N : N ;
-fun favor_N : N ;
-fun disfavor_N : N ;
-fun flavor_N : N ;
-fun survivor_N : N ;
-fun plexor_N : N ;
-fun uxor_N : N ;
-fun mayor_N : N ;
-fun conveyor_N : N ;
-fun purveyor_N : N ;
-fun surveyor_N : N ;
-fun razor_N : N ;
-fun 'safety-razor_N' : N ;
-fun pr_N : N ;
-fun parr_N : N ;
-fun birr_N : N ;
-fun torr_N : N ;
-fun burr_N : N ;
-fun purr_N : N ;
-fun ussr_N : N ;
-fun gaur_N : N ;
-fun herrerasaur_N : N ;
-fun styracosaur_N : N ;
-fun psittacosaur_N : N ;
-fun pelycosaur_N : N ;
-fun ictodosaur_N : N ;
-fun dromaeosaur_N : N ;
-fun stegosaur_N : N ;
-fun archosaur_N : N ;
-fun nothosaur_N : N ;
-fun corythosaur_N : N ;
-fun plesiosaur_N : N ;
-fun staurikosaur_N : N ;
-fun megalosaur_N : N ;
-fun pachycephalosaur_N : N ;
-fun allosaur_N : N ;
-fun ankylosaur_N : N ;
-fun pisanosaur_N : N ;
-fun titanosaur_N : N ;
-fun dinosaur_N : N ;
-fun argentinosaur_N : N ;
-fun tyrannosaur_N : N ;
-fun carnosaur_N : N ;
-fun barosaur_N : N ;
-fun hadrosaur_N : N ;
-fun pterosaur_N : N ;
-fun apatosaur_N : N ;
-fun ceratosaur_N : N ;
-fun ichthyosaur_N : N ;
-fun centaur_N : N ;
-fun minotaur_N : N ;
-fun bur_N : N ;
-fun sandbur_N : N ;
-fun cocklebur_N : N ;
-fun butterbur_N : N ;
-fun cur_N : N ;
-fun grandeur_N : N ;
-fun coiffeur_N : N ;
-fun chauffeur_N : N ;
-fun arbitrageur_N : N ;
-fun bonheur_N : N ;
-fun entrepreneur_N : N ;
-fun carillonneur_N : N ;
-fun danseur_N : N ;
-fun poseur_N : N ;
-fun masseur_N : N ;
-fun connoisseur_N : N ;
-fun 'agent provocateur_N' : N ;
-fun amateur_N : N ;
-fun restaurateur_N : N ;
-fun restauranteur_N : N ;
-fun raconteur_N : N ;
-fun saboteur_N : N ;
-fun rapporteur_N : N ;
-fun frotteur_N : N ;
-fun auteur_N : N ;
-fun hauteur_N : N ;
-fun longueur_N : N ;
-fun liqueur_N : N ;
-fun voyeur_N : N ;
-fun fur_N : N ;
-fun sulfur_N : N ;
-fun regur_N : N ;
-fun bulgur_N : N ;
-fun langur_N : N ;
-fun augur_N : N ;
-fun sulphur_N : N ;
-fun blur_N : N ;
-fun slur_N : N ;
-fun demur_N : N ;
-fun femur_N : N ;
-fun lemur_N : N ;
-fun murmur_N : N ;
-fun labour_N : N ;
-fun neighbour_N : N ;
-fun tambour_N : N ;
-fun arbour_N : N ;
-fun harbour_N : N ;
-fun succour_N : N ;
-fun rancour_N : N ;
-fun scour_N : N ;
-fun troubadour_N : N ;
-fun pompadour_N : N ;
-fun candour_N : N ;
-fun splendour_N : N ;
-fun odour_N : N ;
-fun ardour_N : N ;
-fun rigour_N : N ;
-fun vigour_N : N ;
-fun clangour_N : N ;
-fun hour_N : N ;
-fun 'half-hour_N' : N ;
-fun 'man-hour_N' : N ;
-fun behaviour_N : N ;
-fun misbehaviour_N : N ;
-fun saviour_N : N ;
-fun valour_N : N ;
-fun velour_N : N ;
-fun flour_N : N ;
-fun 'pea-flour_N' : N ;
-fun cornflour_N : N ;
-fun colour_N : N ;
-fun 'snuff-colour_N' : N ;
-fun tricolour_N : N ;
-fun watercolour_N : N ;
-fun dolour_N : N ;
-fun parlour_N : N ;
-fun 'sun-parlour_N' : N ;
-fun 'beauty-parlour_N' : N ;
-fun amour_N : N ;
-fun clamour_N : N ;
-fun glamour_N : N ;
-fun paramour_N : N ;
-fun armour_N : N ;
-fun 'ring-armour_N' : N ;
-fun 'chain-armour_N' : N ;
-fun humour_N : N ;
-fun rumour_N : N ;
-fun tumour_N : N ;
-fun demeanour_N : N ;
-fun misdemeanour_N : N ;
-fun honour_N : N ;
-fun dishonour_N : N ;
-fun vapour_N : N ;
-fun downpour_N : N ;
-fun sour_N : N ;
-fun tour_N : N ;
-fun detour_N : N ;
-fun contour_N : N ;
-fun endeavour_N : N ;
-fun favour_N : N ;
-fun disfavour_N : N ;
-fun flavour_N : N ;
-fun savour_N : N ;
-fun fervour_N : N ;
-fun rangpur_N : N ;
-fun jodhpur_N : N ;
-fun spur_N : N ;
-fun cockspur_N : N ;
-fun larkspur_N : N ;
-fun hotspur_N : N ;
-fun imprimatur_N : N ;
-fun 'non sequitur_N' : N ;
-fun yr_N : N ;
-fun zephyr_N : N ;
-fun satyr_N : N ;
-fun martyr_N : N ;
-fun paterfamilias_N : N ;
-fun 'sober-sides_N' : N ;
-fun jakes_N : N ;
-fun shambles_N : N ;
-fun lazybones_N : N ;
-fun 'square-toes_N' : N ;
-fun jackanapes_N : N ;
-fun 'chargé d\'affaires_N' : N ;
-fun 'spindle-shanks_N' : N ;
-fun 'cat-o\'-nine-tails_N' : N ;
-fun 'homo sapiens_N' : N ;
-fun dickens_N : N ;
-fun 'delirium tremens_N' : N ;
-fun 'locum tenens_N' : N ;
-fun pharos_N : N ;
-fun 'esprit de corps_N' : N ;
-fun revers_N : N ;
-fun puss_N : N ;
-fun ethos_2_N : N ;
-fun corpus_N : N ;
-fun ethos_1_N : N ;
-fun cosmos_1_N : N ;
-fun streptococcus_N : N ;
-fun 'locus classicus_N' : N ;
-fun locus_N : N ;
-fun nucleus_N : N ;
-fun sarcophagus_N : N ;
-fun bronchus_N : N ;
-fun radius_N : N ;
-fun bacillus_N : N ;
-fun stimulus_N : N ;
-fun cumulus_N : N ;
-fun tumulus_N : N ;
-fun genus_N : N ;
-fun alumnus_N : N ;
-fun onus_N : N ;
-fun subconscious_N : N ;
-fun rumpus_N : N ;
-fun opus_N : N ;
-fun 'magnum opus_N' : N ;
-fun lazarus_N : N ;
-fun consensus_N : N ;
-fun tarsus_N : N ;
-fun missus_N : N ;
-fun colossus_N : N ;
-fun impetus_N : N ;
-fun 'ignis fatuus_N' : N ;
-fun 'solar plexus_N' : N ;
-fun fracas_1_N : N ;
-fun 'faux pas_N' : N ;
-fun 'mardi gras_N' : N ;
-fun baas_N : N ;
-fun meshugaas_N : N ;
-fun fracas_2_N : N ;
-fun judas_N : N ;
-fun pancreas_N : N ;
-fun treas_N : N ;
-fun gas_N : N ;
-fun 'laughing-gas_N' : N ;
-fun 'coal-gas_N' : N ;
-fun 'poison-gas_N' : N ;
-fun 'town-gas_N' : N ;
-fun 'tear-gas_N' : N ;
-fun 'sewer-gas_N' : N ;
-fun phytelephas_N : N ;
-fun bias_N : N ;
-fun epispadias_N : N ;
-fun hypospadias_N : N ;
-fun alias_N : N ;
-fun balas_N : N ;
-fun erysipelas_N : N ;
-fun atlas_N : N ;
-fun cutlas_N : N ;
-fun camas_N : N ;
-fun michaelmas_N : N ;
-fun dolmas_N : N ;
-fun lammas_N : N ;
-fun Christmas_N : N ;
-fun xmas_N : N ;
-fun psoas_N : N ;
-fun pas_N : N ;
-fun pampas_N : N ;
-fun madras_N : N ;
-fun ceras_N : N ;
-fun dinoceras_N : N ;
-fun sassafras_N : N ;
-fun 'pate de foie gras_N' : N ;
-fun arras_N : N ;
-fun patas_N : N ;
-fun litas_N : N ;
-fun centas_N : N ;
-fun canvas_N : N ;
-fun eyas_N : N ;
-fun dibs_N : N ;
-fun spareribs_N : N ;
-fun iambics_N : N ;
-fun orthopaedics_N : N ;
-fun orthopedics_N : N ;
-fun strategics_N : N ;
-fun graphics_N : N ;
-fun hieroglyphics_N : N ;
-fun bucolics_N : N ;
-fun hydraulics_N : N ;
-fun thermodynamics_N : N ;
-fun aerodynamics_N : N ;
-fun ceramics_N : N ;
-fun phonemics_N : N ;
-fun eurhythmics_N : N ;
-fun eurythmics_N : N ;
-fun economics_N : N ;
-fun ergonomics_N : N ;
-fun mechanics_N : N ;
-fun eugenics_N : N ;
-fun calisthenics_N : N ;
-fun callisthenics_N : N ;
-fun phonics_N : N ;
-fun histrionics_N : N ;
-fun mnemonics_N : N ;
-fun hydroponics_N : N ;
-fun electronics_N : N ;
-fun microelectronics_N : N ;
-fun heroics_N : N ;
-fun atmospherics_N : N ;
-fun hysterics_N : N ;
-fun paediatrics_N : N ;
-fun pediatrics_N : N ;
-fun geriatrics_N : N ;
-fun obstetrics_N : N ;
-fun classics_N : N ;
-fun physics_N : N ;
-fun metaphysics_N : N ;
-fun geophysics_N : N ;
-fun astrophysics_N : N ;
-fun acrobatics_N : N ;
-fun aerobatics_N : N ;
-fun dramatics_N : N ;
-fun mathematics_N : N ;
-fun numismatics_N : N ;
-fun statics_N : N ;
-fun apologetics_N : N ;
-fun esthetics_N : N ;
-fun aesthetics_N : N ;
-fun athletics_N : N ;
-fun homiletics_N : N ;
-fun genetics_N : N ;
-fun kinetics_N : N ;
-fun phonetics_N : N ;
-fun cybernetics_N : N ;
-fun dietetics_N : N ;
-fun politics_N : N ;
-fun geopolitics_N : N ;
-fun semantics_N : N ;
-fun orthodontics_N : N ;
-fun optics_N : N ;
-fun plastics_N : N ;
-fun gymnastics_N : N ;
-fun logistics_N : N ;
-fun ballistics_N : N ;
-fun heuristics_N : N ;
-fun statistics_N : N ;
-fun linguistics_N : N ;
-fun acoustics_N : N ;
-fun aeronautics_N : N ;
-fun astronautics_N : N ;
-fun therapeutics_N : N ;
-fun civics_N : N ;
-fun aerobics_N : N ;
-fun liturgics_N : N ;
-fun dermatoglyphics_N : N ;
-fun ethics_N : N ;
-fun bioethics_N : N ;
-fun neuroethics_N : N ;
-fun dynamics_N : N ;
-fun psychodynamics_N : N ;
-fun hemodynamics_N : N ;
-fun hydrodynamics_N : N ;
-fun magnetohydrodynamics_N : N ;
-fun astrodynamics_N : N ;
-fun polemics_N : N ;
-fun morphophonemics_N : N ;
-fun proxemics_N : N ;
-fun proteomics_N : N ;
-fun genomics_N : N ;
-fun macroeconomics_N : N ;
-fun microeconomics_N : N ;
-fun aeromechanics_N : N ;
-fun photomechanics_N : N ;
-fun cryogenics_N : N ;
-fun dysgenics_N : N ;
-fun euthenics_N : N ;
-fun pyrotechnics_N : N ;
-fun bionics_N : N ;
-fun thermionics_N : N ;
-fun avionics_N : N ;
-fun harmonics_N : N ;
-fun animatronics_N : N ;
-fun tectonics_N : N ;
-fun architectonics_N : N ;
-fun cryonics_N : N ;
-fun subtropics_N : N ;
-fun alphanumerics_N : N ;
-fun biometrics_N : N ;
-fun econometrics_N : N ;
-fun isometrics_N : N ;
-fun catoptrics_N : N ;
-fun basics_N : N ;
-fun forensics_N : N ;
-fun psychophysics_N : N ;
-fun biophysics_N : N ;
-fun metamathematics_N : N ;
-fun kinematics_N : N ;
-fun systematics_N : N ;
-fun biosystematics_N : N ;
-fun pragmatics_N : N ;
-fun pneumatics_N : N ;
-fun quadratics_N : N ;
-fun thermostatics_N : N ;
-fun hydrostatics_N : N ;
-fun electrostatics_N : N ;
-fun tactics_N : N ;
-fun dialectics_N : N ;
-fun prosthetics_N : N ;
-fun pharmacogenetics_N : N ;
-fun cytogenetics_N : N ;
-fun pharmacokinetics_N : N ;
-fun poetics_N : N ;
-fun endodontics_N : N ;
-fun prosthodontics_N : N ;
-fun periodontics_N : N ;
-fun exodontics_N : N ;
-fun robotics_N : N ;
-fun telerobotics_N : N ;
-fun macrobiotics_N : N ;
-fun bibliotics_N : N ;
-fun semiotics_N : N ;
-fun orthoptics_N : N ;
-fun glyptics_N : N ;
-fun onomastics_N : N ;
-fun cladistics_N : N ;
-fun patristics_N : N ;
-fun lexicostatistics_N : N ;
-fun psycholinguistics_N : N ;
-fun sociolinguistics_N : N ;
-fun neurolinguistics_N : N ;
-fun hermeneutics_N : N ;
-fun odds_N : N ;
-fun billiards_N : N ;
-fun beads_N : N ;
-fun skinheads_N : N ;
-fun loggerheads_N : N ;
-fun roads_N : N ;
-fun crossroads_N : N ;
-fun weeds_N : N ;
-fun aids_N : N ;
-fun goldfields_N : N ;
-fun hands_N : N ;
-fun scablands_N : N ;
-fun badlands_N : N ;
-fun funds_N : N ;
-fun grounds_N : N ;
-fun mods_N : N ;
-fun drygoods_N : N ;
-fun backwoods_N : N ;
-fun fantods_N : N ;
-fun collards_N : N ;
-fun boards_N : N ;
-fun cords_N : N ;
-fun words_N : N ;
-fun suds_N : N ;
-fun soapsuds_N : N ;
-fun tabes_N : N ;
-fun pubes_N : N ;
-fun auspices_N : N ;
-fun circumstances_N : N ;
-fun fasces_N : N ;
-fun fauces_N : N ;
-fun actinomyces_N : N ;
-fun streptomyces_N : N ;
-fun des_N : N ;
-fun rhagades_N : N ;
-fun charades_N : N ;
-fun antitrades_N : N ;
-fun ides_N : N ;
-fun aerides_N : N ;
-fun sobersides_N : N ;
-fun silversides_N : N ;
-fun antipodes_N : N ;
-fun lees_N : N ;
-fun ambages_N : N ;
-fun damages_N : N ;
-fun wages_N : N ;
-fun bilges_N : N ;
-fun leptomeninges_N : N ;
-fun breeches_N : N ;
-fun starches_N : N ;
-fun britches_N : N ;
-fun ommastrephes_N : N ;
-fun bedclothes_N : N ;
-fun species_N : N ;
-fun superficies_N : N ;
-fun series_N : N ;
-fun scabies_N : N ;
-fun rabies_N : N ;
-fun subspecies_N : N ;
-fun undies_N : N ;
-fun flies_N : N ;
-fun allies_N : N ;
-fun willies_N : N ;
-fun follies_N : N ;
-fun jimmies_N : N ;
-fun deVries_N : N ;
-fun caries_N : N ;
-fun sundries_N : N ;
-fun liabilities_N : N ;
-fun hostilities_N : N ;
-fun civies_N : N ;
-fun sweepstakes_N : N ;
-fun anopheles_N : N ;
-fun shingles_N : N ;
-fun piles_N : N ;
-fun measles_N : N ;
-fun skittles_N : N ;
-fun durables_N : N ;
-fun ratables_N : N ;
-fun trembles_N : N ;
-fun marbles_N : N ;
-fun doubles_N : N ;
-fun spectacles_N : N ;
-fun hurdles_N : N ;
-fun goggles_N : N ;
-fun singles_N : N ;
-fun peoples_N : N ;
-fun times_N : N ;
-fun achimenes_N : N ;
-fun bones_N : N ;
-fun crossbones_N : N ;
-fun nones_N : N ;
-fun aloes_N : N ;
-fun dominoes_N : N ;
-fun throes_N : N ;
-fun stapes_N : N ;
-fun herpes_N : N ;
-fun res_N : N ;
-fun teres_N : N ;
-fun mores_N : N ;
-fun pres_N : N ;
-fun premises_N : N ;
-fun sunglasses_N : N ;
-fun molasses_N : N ;
-fun rates_N : N ;
-fun diabetes_N : N ;
-fun ascites_N : N ;
-fun crudites_N : N ;
-fun tympanites_N : N ;
-fun sprites_N : N ;
-fun pyrites_N : N ;
-fun minutes_N : N ;
-fun litotes_N : N ;
-fun fatigues_N : N ;
-fun blues_N : N ;
-fun eaves_N : N ;
-fun heaves_N : N ;
-fun greaves_N : N ;
-fun shirtsleeves_N : N ;
-fun chives_N : N ;
-fun archives_N : N ;
-fun elves_N : N ;
-fun nerves_N : N ;
-fun fives_N : N ;
-fun eyes_N : N ;
-fun assizes_N : N ;
-fun latitudes_N : N ;
-fun intangibles_N : N ;
-fun cgs_N : N ;
-fun legs_N : N ;
-fun spindlelegs_N : N ;
-fun yellowlegs_N : N ;
-fun dregs_N : N ;
-fun findings_N : N ;
-fun diggings_N : N ;
-fun things_N : N ;
-fun nothings_N : N ;
-fun pickings_N : N ;
-fun dealings_N : N ;
-fun feelings_N : N ;
-fun cracklings_N : N ;
-fun chitterlings_N : N ;
-fun cummings_N : N ;
-fun winnings_N : N ;
-fun drippings_N : N ;
-fun droppings_N : N ;
-fun rings_N : N ;
-fun heartstrings_N : N ;
-fun losings_N : N ;
-fun hustings_N : N ;
-fun savings_N : N ;
-fun wings_N : N ;
-fun fixings_N : N ;
-fun tongs_N : N ;
-fun togs_N : N ;
-fun 'daddy-longlegs_N' : N ;
-fun innings_N : N ;
-fun blahs_N : N ;
-fun aurochs_N : N ;
-fun nhs_N : N ;
-fun maths_N : N ;
-fun 'cor anglais_N' : N ;
-fun dais_N : N ;
-fun beaujolais_N : N ;
-fun cannabis_N : N ;
-fun ibis_N : N ;
-fun pubis_N : N ;
-fun proboscis_N : N ;
-fun aegis_N : N ;
-fun haggis_N : N ;
-fun aphis_N : N ;
-fun rachis_N : N ;
-fun orchis_N : N ;
-fun architeuthis_N : N ;
-fun khakis_N : N ;
-fun 'fleur-de-lis_N' : N ;
-fun corydalis_N : N ;
-fun tibialis_N : N ;
-fun chrysalis_N : N ;
-fun digitalis_N : N ;
-fun oxalis_N : N ;
-fun eblis_N : N ;
-fun stelis_N : N ;
-fun syphilis_N : N ;
-fun neurosyphilis_N : N ;
-fun challis_N : N ;
-fun pleurothallis_N : N ;
-fun trellis_N : N ;
-fun torticollis_N : N ;
-fun cullis_N : N ;
-fun portcullis_N : N ;
-fun amaryllis_N : N ;
-fun megalopolis_N : N ;
-fun acropolis_N : N ;
-fun necropolis_N : N ;
-fun metropolis_N : N ;
-fun phlomis_N : N ;
-fun dermis_N : N ;
-fun epidermis_N : N ;
-fun hypodermis_N : N ;
-fun vermis_N : N ;
-fun kumis_N : N ;
-fun epididymis_N : N ;
-fun finis_N : N ;
-fun penis_N : N ;
-fun micropenis_N : N ;
-fun lychnis_N : N ;
-fun tennis_N : N ;
-fun adonis_N : N ;
-fun archaeornis_N : N ;
-fun notornis_N : N ;
-fun 'petit bourgeois_N' : N ;
-fun patois_N : N ;
-fun chamois_N : N ;
-fun malinois_N : N ;
-fun avoirdupois_N : N ;
-fun allantois_N : N ;
-fun chorioallantois_N : N ;
-fun sinopis_N : N ;
-fun drypis_N : N ;
-fun polaris_N : N ;
-fun naris_N : N ;
-fun liparis_N : N ;
-fun debris_N : N ;
-fun hubris_N : N ;
-fun débris_N : N ;
-fun epacris_N : N ;
-fun ephemeris_N : N ;
-fun pecopteris_N : N ;
-fun angiopteris_N : N ;
-fun lecanopteris_N : N ;
-fun thyrsopteris_N : N ;
-fun verdigris_N : N ;
-fun ambergris_N : N ;
-fun iris_N : N ;
-fun siris_N : N ;
-fun kris_N : N ;
-fun tsoris_N : N ;
-fun clitoris_N : N ;
-fun derris_N : N ;
-fun tsuris_N : N ;
-fun basis_N : N ;
-fun emphasis_N : N ;
-fun oasis_N : N ;
-fun periphrasis_N : N ;
-fun overemphasis_N : N ;
-fun apophasis_N : N ;
-fun amebiasis_N : N ;
-fun enterobiasis_N : N ;
-fun onchocerciasis_N : N ;
-fun candidiasis_N : N ;
-fun giardiasis_N : N ;
-fun opisthorchiasis_N : N ;
-fun lithiasis_N : N ;
-fun cholelithiasis_N : N ;
-fun enterolithiasis_N : N ;
-fun nephrolithiasis_N : N ;
-fun helminthiasis_N : N ;
-fun fascioliasis_N : N ;
-fun trombiculiasis_N : N ;
-fun schistosomiasis_N : N ;
-fun leishmaniasis_N : N ;
-fun trichomoniasis_N : N ;
-fun acariasis_N : N ;
-fun ascariasis_N : N ;
-fun filariasis_N : N ;
-fun mydriasis_N : N ;
-fun psoriasis_N : N ;
-fun trichuriasis_N : N ;
-fun satyriasis_N : N ;
-fun pityriasis_N : N ;
-fun fasciolopsiasis_N : N ;
-fun elephantiasis_N : N ;
-fun costiasis_N : N ;
-fun myiasis_N : N ;
-fun osteoclasis_N : N ;
-fun antiphrasis_N : N ;
-fun arteriectasis_N : N ;
-fun atelectasis_N : N ;
-fun entasis_N : N ;
-fun stasis_N : N ;
-fun diastasis_N : N ;
-fun metastasis_N : N ;
-fun homeostasis_N : N ;
-fun bacteriostasis_N : N ;
-fun hemostasis_N : N ;
-fun hypostasis_N : N ;
-fun thesis_N : N ;
-fun antithesis_N : N ;
-fun parenthesis_N : N ;
-fun synthesis_N : N ;
-fun hypothesis_N : N ;
-fun nemesis_N : N ;
-fun genesis_N : N ;
-fun diaeresis_N : N ;
-fun dieresis_N : N ;
-fun diapedesis_N : N ;
-fun arthrodesis_N : N ;
-fun eisegesis_N : N ;
-fun exegesis_N : N ;
-fun catechesis_N : N ;
-fun aphesis_N : N ;
-fun diathesis_N : N ;
-fun metathesis_N : N ;
-fun epenthesis_N : N ;
-fun nucleosynthesis_N : N ;
-fun biosynthesis_N : N ;
-fun chemosynthesis_N : N ;
-fun photosynthesis_N : N ;
-fun kinesthesis_N : N ;
-fun spondylolisthesis_N : N ;
-fun prosthesis_N : N ;
-fun lymphopoiesis_N : N ;
-fun erythropoiesis_N : N ;
-fun hematopoiesis_N : N ;
-fun hyperemesis_N : N ;
-fun hematemesis_N : N ;
-fun mimesis_N : N ;
-fun agenesis_N : N ;
-fun metagenesis_N : N ;
-fun mutagenesis_N : N ;
-fun epigenesis_N : N ;
-fun palingenesis_N : N ;
-fun cacogenesis_N : N ;
-fun glycogenesis_N : N ;
-fun psychogenesis_N : N ;
-fun morphogenesis_N : N ;
-fun pathogenesis_N : N ;
-fun biogenesis_N : N ;
-fun abiogenesis_N : N ;
-fun angiogenesis_N : N ;
-fun amelogenesis_N : N ;
-fun cenogenesis_N : N ;
-fun parthenogenesis_N : N ;
-fun monogenesis_N : N ;
-fun hypnogenesis_N : N ;
-fun gynogenesis_N : N ;
-fun oogenesis_N : N ;
-fun anthropogenesis_N : N ;
-fun androgenesis_N : N ;
-fun atherogenesis_N : N ;
-fun neurogenesis_N : N ;
-fun spermatogenesis_N : N ;
-fun teratogenesis_N : N ;
-fun gametogenesis_N : N ;
-fun blastogenesis_N : N ;
-fun cytogenesis_N : N ;
-fun dysgenesis_N : N ;
-fun kinesis_N : N ;
-fun akinesis_N : N ;
-fun diakinesis_N : N ;
-fun telekinesis_N : N ;
-fun cytokinesis_N : N ;
-fun karyokinesis_N : N ;
-fun ecphonesis_N : N ;
-fun aposiopesis_N : N ;
-fun paresis_N : N ;
-fun paraparesis_N : N ;
-fun aphaeresis_N : N ;
-fun apheresis_N : N ;
-fun plasmapheresis_N : N ;
-fun plateletpheresis_N : N ;
-fun leresis_N : N ;
-fun syneresis_N : N ;
-fun hysteresis_N : N ;
-fun catachresis_N : N ;
-fun electrophoresis_N : N ;
-fun immunoelectrophoresis_N : N ;
-fun iontophoresis_N : N ;
-fun encopresis_N : N ;
-fun lithuresis_N : N ;
-fun diuresis_N : N ;
-fun kaliuresis_N : N ;
-fun natriuresis_N : N ;
-fun anuresis_N : N ;
-fun enuresis_N : N ;
-fun antipyresis_N : N ;
-fun centesis_N : N ;
-fun thoracocentesis_N : N ;
-fun celiocentesis_N : N ;
-fun amniocentesis_N : N ;
-fun abdominocentesis_N : N ;
-fun arthrocentesis_N : N ;
-fun auxesis_N : N ;
-fun synizesis_N : N ;
-fun phthisis_N : N ;
-fun anaclisis_N : N ;
-fun crisis_N : N ;
-fun anastalsis_N : N ;
-fun peristalsis_N : N ;
-fun amanuensis_N : N ;
-fun thrombosis_N : N ;
-fun phlebothrombosis_N : N ;
-fun anthracosis_N : N ;
-fun psittacosis_N : N ;
-fun echinococcosis_N : N ;
-fun cryptococcosis_N : N ;
-fun silicosis_N : N ;
-fun varicosis_N : N ;
-fun narcosis_N : N ;
-fun phycomycosis_N : N ;
-fun coccidioidomycosis_N : N ;
-fun actinomycosis_N : N ;
-fun dermatomycosis_N : N ;
-fun keratomycosis_N : N ;
-fun blastomycosis_N : N ;
-fun chromoblastomycosis_N : N ;
-fun acidosis_N : N ;
-fun ketoacidosis_N : N ;
-fun sarcoidosis_N : N ;
-fun amyloidosis_N : N ;
-fun lipidosis_N : N ;
-fun mucopolysaccharidosis_N : N ;
-fun lordosis_N : N ;
-fun sporotrichosis_N : N ;
-fun onychosis_N : N ;
-fun metempsychosis_N : N ;
-fun anamorphosis_N : N ;
-fun hemimetamorphosis_N : N ;
-fun kyphosis_N : N ;
-fun cirrhosis_N : N ;
-fun acanthosis_N : N ;
-fun xanthosis_N : N ;
-fun epanorthosis_N : N ;
-fun anabiosis_N : N ;
-fun catabiosis_N : N ;
-fun antibiosis_N : N ;
-fun symbiosis_N : N ;
-fun trophobiosis_N : N ;
-fun necrobiosis_N : N ;
-fun aerobiosis_N : N ;
-fun cryptobiosis_N : N ;
-fun coccidiosis_N : N ;
-fun rhinosporidiosis_N : N ;
-fun ateleiosis_N : N ;
-fun meiosis_N : N ;
-fun verticilliosis_N : N ;
-fun scoliosis_N : N ;
-fun poliosis_N : N ;
-fun pneumoconiosis_N : N ;
-fun listeriosis_N : N ;
-fun endometriosis_N : N ;
-fun alkalosis_N : N ;
-fun cyclosis_N : N ;
-fun cheilosis_N : N ;
-fun psilosis_N : N ;
-fun brucellosis_N : N ;
-fun shigellosis_N : N ;
-fun salmonellosis_N : N ;
-fun aspergillosis_N : N ;
-fun anadiplosis_N : N ;
-fun pediculosis_N : N ;
-fun diverticulosis_N : N ;
-fun furunculosis_N : N ;
-fun tuberculosis_N : N ;
-fun ankylosis_N : N ;
-fun anastylosis_N : N ;
-fun chemosis_N : N ;
-fun phimosis_N : N ;
-fun gummosis_N : N ;
-fun anastomosis_N : N ;
-fun anaplasmosis_N : N ;
-fun toxoplasmosis_N : N ;
-fun osmosis_N : N ;
-fun ecchymosis_N : N ;
-fun zymosis_N : N ;
-fun melanosis_N : N ;
-fun cyanosis_N : N ;
-fun acrocyanosis_N : N ;
-fun pycnosis_N : N ;
-fun enosis_N : N ;
-fun stenosis_N : N ;
-fun laryngostenosis_N : N ;
-fun rhinostenosis_N : N ;
-fun ureterostenosis_N : N ;
-fun enterostenosis_N : N ;
-fun gnosis_N : N ;
-fun telegnosis_N : N ;
-fun astereognosis_N : N ;
-fun nephrocalcinosis_N : N ;
-fun hallucinosis_N : N ;
-fun trichinosis_N : N ;
-fun avitaminosis_N : N ;
-fun hypervitaminosis_N : N ;
-fun zoonosis_N : N ;
-fun ochronosis_N : N ;
-fun keratonosis_N : N ;
-fun fibrosis_N : N ;
-fun myelofibrosis_N : N ;
-fun necrosis_N : N ;
-fun myonecrosis_N : N ;
-fun anhidrosis_N : N ;
-fun hyperhidrosis_N : N ;
-fun siderosis_N : N ;
-fun hemosiderosis_N : N ;
-fun sclerosis_N : N ;
-fun osteosclerosis_N : N ;
-fun arteriosclerosis_N : N ;
-fun arteriolosclerosis_N : N ;
-fun atherosclerosis_N : N ;
-fun nephrosclerosis_N : N ;
-fun otosclerosis_N : N ;
-fun heterosis_N : N ;
-fun colpoxerosis_N : N ;
-fun hydronephrosis_N : N ;
-fun hydrarthrosis_N : N ;
-fun chlorosis_N : N ;
-fun osteoporosis_N : N ;
-fun fluorosis_N : N ;
-fun osteopetrosis_N : N ;
-fun amaurosis_N : N ;
-fun kraurosis_N : N ;
-fun aponeurosis_N : N ;
-fun bagassosis_N : N ;
-fun xanthomatosis_N : N ;
-fun lipomatosis_N : N ;
-fun neurofibromatosis_N : N ;
-fun hemochromatosis_N : N ;
-fun myxomatosis_N : N ;
-fun dermatosis_N : N ;
-fun keratosis_N : N ;
-fun galactosis_N : N ;
-fun athetosis_N : N ;
-fun halitosis_N : N ;
-fun mitosis_N : N ;
-fun amitosis_N : N ;
-fun ptosis_N : N ;
-fun apoptosis_N : N ;
-fun enteroptosis_N : N ;
-fun nephroptosis_N : N ;
-fun metroptosis_N : N ;
-fun glossoptosis_N : N ;
-fun erythroblastosis_N : N ;
-fun elastosis_N : N ;
-fun asbestosis_N : N ;
-fun pycnodysostosis_N : N ;
-fun exostosis_N : N ;
-fun thrombocytosis_N : N ;
-fun phagocytosis_N : N ;
-fun lymphocytosis_N : N ;
-fun acanthocytosis_N : N ;
-fun histiocytosis_N : N ;
-fun leukocytosis_N : N ;
-fun agranulocytosis_N : N ;
-fun pneumocytosis_N : N ;
-fun pinocytosis_N : N ;
-fun monocytosis_N : N ;
-fun macrocytosis_N : N ;
-fun microcytosis_N : N ;
-fun ichthyosis_N : N ;
-fun apotheosis_N : N ;
-fun psychosis_N : N ;
-fun metamorphosis_N : N ;
-fun diagnosis_N : N ;
-fun prognosis_N : N ;
-fun hypnosis_N : N ;
-fun neurosis_N : N ;
-fun periapsis_N : N ;
-fun synapsis_N : N ;
-fun apoapsis_N : N ;
-fun omphaloskepsis_N : N ;
-fun epanalepsis_N : N ;
-fun paralepsis_N : N ;
-fun metalepsis_N : N ;
-fun syllepsis_N : N ;
-fun prolepsis_N : N ;
-fun sepsis_N : N ;
-fun asepsis_N : N ;
-fun antisepsis_N : N ;
-fun coreopsis_N : N ;
-fun heliopsis_N : N ;
-fun calliopsis_N : N ;
-fun thanatopsis_N : N ;
-fun ellipsis_N : N ;
-fun synopsis_N : N ;
-fun catharsis_N : N ;
-fun salpiglossis_N : N ;
-fun missis_N : N ;
-fun hyperacusis_N : N ;
-fun diaphysis_N : N ;
-fun paraphysis_N : N ;
-fun metaphysis_N : N ;
-fun epiphysis_N : N ;
-fun symphysis_N : N ;
-fun coelophysis_N : N ;
-fun apophysis_N : N ;
-fun lysis_N : N ;
-fun dialysis_N : N ;
-fun hemodialysis_N : N ;
-fun psychoanalysis_N : N ;
-fun hypnoanalysis_N : N ;
-fun cryptanalysis_N : N ;
-fun urinalysis_N : N ;
-fun paralysis_N : N ;
-fun catalysis_N : N ;
-fun autocatalysis_N : N ;
-fun thrombolysis_N : N ;
-fun glycolysis_N : N ;
-fun proteolysis_N : N ;
-fun osteolysis_N : N ;
-fun onycholysis_N : N ;
-fun acantholysis_N : N ;
-fun radiolysis_N : N ;
-fun bacteriolysis_N : N ;
-fun amylolysis_N : N ;
-fun hemolysis_N : N ;
-fun spasmolysis_N : N ;
-fun fibrinolysis_N : N ;
-fun necrolysis_N : N ;
-fun hydrolysis_N : N ;
-fun electrolysis_N : N ;
-fun pyrolysis_N : N ;
-fun autolysis_N : N ;
-fun cytolysis_N : N ;
-fun karyolysis_N : N ;
-fun hemoptysis_N : N ;
-fun analysis_N : N ;
-fun clematis_N : N ;
-fun chaenactis_N : N ;
-fun phlebitis_N : N ;
-fun thrombophlebitis_N : N ;
-fun appendicitis_N : N ;
-fun cervicitis_N : N ;
-fun endocervicitis_N : N ;
-fun thyroiditis_N : N ;
-fun mastoiditis_N : N ;
-fun carditis_N : N ;
-fun pericarditis_N : N ;
-fun pancarditis_N : N ;
-fun endocarditis_N : N ;
-fun corditis_N : N ;
-fun chorditis_N : N ;
-fun tracheitis_N : N ;
-fun rhinotracheitis_N : N ;
-fun ileitis_N : N ;
-fun jejunoileitis_N : N ;
-fun osteitis_N : N ;
-fun uveitis_N : N ;
-fun esophagitis_N : N ;
-fun lymphangitis_N : N ;
-fun phalangitis_N : N ;
-fun cholangitis_N : N ;
-fun meningitis_N : N ;
-fun choriomeningitis_N : N ;
-fun leptomeningitis_N : N ;
-fun salpingitis_N : N ;
-fun pharyngitis_N : N ;
-fun laryngopharyngitis_N : N ;
-fun laryngitis_N : N ;
-fun rachitis_N : N ;
-fun bronchitis_N : N ;
-fun tracheobronchitis_N : N ;
-fun laryngotracheobronchitis_N : N ;
-fun orchitis_N : N ;
-fun mephitis_N : N ;
-fun labyrinthitis_N : N ;
-fun posthitis_N : N ;
-fun balanoposthitis_N : N ;
-fun angiitis_N : N ;
-fun encephalitis_N : N ;
-fun panencephalitis_N : N ;
-fun meningoencephalitis_N : N ;
-fun leukoencephalitis_N : N ;
-fun iridocyclitis_N : N ;
-fun myelitis_N : N ;
-fun osteomyelitis_N : N ;
-fun poliomyelitis_N : N ;
-fun encephalomyelitis_N : N ;
-fun pyelitis_N : N ;
-fun cheilitis_N : N ;
-fun tonsillitis_N : N ;
-fun colitis_N : N ;
-fun alveolitis_N : N ;
-fun bronchiolitis_N : N ;
-fun ulitis_N : N ;
-fun radiculitis_N : N ;
-fun folliculitis_N : N ;
-fun funiculitis_N : N ;
-fun vesiculitis_N : N ;
-fun vasovesiculitis_N : N ;
-fun diverticulitis_N : N ;
-fun vasculitis_N : N ;
-fun cellulitis_N : N ;
-fun valvulitis_N : N ;
-fun uvulitis_N : N ;
-fun epicondylitis_N : N ;
-fun spondylitis_N : N ;
-fun epididymitis_N : N ;
-fun balanitis_N : N ;
-fun tympanitis_N : N ;
-fun adenitis_N : N ;
-fun lymphadenitis_N : N ;
-fun sialadenitis_N : N ;
-fun splenitis_N : N ;
-fun tendinitis_N : N ;
-fun vaginitis_N : N ;
-fun vulvovaginitis_N : N ;
-fun rhinitis_N : N ;
-fun laminitis_N : N ;
-fun retinitis_N : N ;
-fun chorioretinitis_N : N ;
-fun photoretinitis_N : N ;
-fun pneumonitis_N : N ;
-fun peritonitis_N : N ;
-fun jejunitis_N : N ;
-fun colpitis_N : N ;
-fun blepharitis_N : N ;
-fun ovaritis_N : N ;
-fun costochondritis_N : N ;
-fun scleritis_N : N ;
-fun episcleritis_N : N ;
-fun keratoscleritis_N : N ;
-fun ureteritis_N : N ;
-fun enteritis_N : N ;
-fun gastroenteritis_N : N ;
-fun arteritis_N : N ;
-fun endarteritis_N : N ;
-fun periarteritis_N : N ;
-fun polyarteritis_N : N ;
-fun nephritis_N : N ;
-fun pyelonephritis_N : N ;
-fun glomerulonephritis_N : N ;
-fun urethritis_N : N ;
-fun arthritis_N : N ;
-fun spondylarthritis_N : N ;
-fun osteoarthritis_N : N ;
-fun iritis_N : N ;
-fun keratoiritis_N : N ;
-fun oophoritis_N : N ;
-fun metritis_N : N ;
-fun parametritis_N : N ;
-fun myometritis_N : N ;
-fun gastritis_N : N ;
-fun neuritis_N : N ;
-fun polyneuritis_N : N ;
-fun fibrositis_N : N ;
-fun myositis_N : N ;
-fun fibromyositis_N : N ;
-fun dermatomyositis_N : N ;
-fun polymyositis_N : N ;
-fun tarsitis_N : N ;
-fun bursitis_N : N ;
-fun glossitis_N : N ;
-fun sinusitis_N : N ;
-fun pansinusitis_N : N ;
-fun pancreatitis_N : N ;
-fun stomatitis_N : N ;
-fun dermatitis_N : N ;
-fun neurodermatitis_N : N ;
-fun hepatitis_N : N ;
-fun keratitis_N : N ;
-fun iridokeratitis_N : N ;
-fun prostatitis_N : N ;
-fun proctitis_N : N ;
-fun otitis_N : N ;
-fun parotitis_N : N ;
-fun aortitis_N : N ;
-fun mastitis_N : N ;
-fun cystitis_N : N ;
-fun cholecystitis_N : N ;
-fun colpocystitis_N : N ;
-fun dacryocystitis_N : N ;
-fun epiglottitis_N : N ;
-fun gingivitis_N : N ;
-fun conjunctivitis_N : N ;
-fun keratoconjunctivitis_N : N ;
-fun vulvitis_N : N ;
-fun synovitis_N : N ;
-fun tenosynovitis_N : N ;
-fun mantis_N : N ;
-fun stephanotis_N : N ;
-fun 'rigor mortis_N' : N ;
-fun pastis_N : N ;
-fun ovotestis_N : N ;
-fun abattis_N : N ;
-fun glottis_N : N ;
-fun epiglottis_N : N ;
-fun nephthytis_N : N ;
-fun testis_N : N ;
-fun marquis_N : N ;
-fun maquis_N : N ;
-fun mavis_N : N ;
-fun protoavis_N : N ;
-fun pavis_N : N ;
-fun clevis_N : N ;
-fun pelvis_N : N ;
-fun parvis_N : N ;
-fun morphallaxis_N : N ;
-fun anaphylaxis_N : N ;
-fun prophylaxis_N : N ;
-fun taxis_N : N ;
-fun chemotaxis_N : N ;
-fun cathexis_N : N ;
-fun acathexis_N : N ;
-fun lexis_N : N ;
-fun catalexis_N : N ;
-fun epiplexis_N : N ;
-fun deixis_N : N ;
-fun amphimixis_N : N ;
-fun apomixis_N : N ;
-fun hypozeuxis_N : N ;
-fun pyxis_N : N ;
-fun axis_N : N ;
-fun précis_N : N ;
-fun bourgeois_N : N ;
-fun seychellois_N : N ;
-fun chassis_N : N ;
-fun jacks_N : N ;
-fun slacks_N : N ;
-fun stacks_N : N ;
-fun goldilocks_N : N ;
-fun stocks_N : N ;
-fun buttocks_N : N ;
-fun shucks_N : N ;
-fun silks_N : N ;
-fun folks_N : N ;
-fun jinks_N : N ;
-fun blinks_N : N ;
-fun punks_N : N ;
-fun hooks_N : N ;
-fun works_N : N ;
-fun links_N : N ;
-fun 'golf-links_N' : N ;
-fun tiddlywinks_N : N ;
-fun 'sewage-works_N' : N ;
-fun 'dye-works_N' : N ;
-fun steelworks_N : N ;
-fun ironworks_N : N ;
-fun waterworks_N : N ;
-fun gasworks_N : N ;
-fun glassworks_N : N ;
-fun saltworks_N : N ;
-fun 'marking-inks_N' : N ;
-fun bifocals_N : N ;
-fun ringhals_N : N ;
-fun annals_N : N ;
-fun fundamentals_N : N ;
-fun regimentals_N : N ;
-fun coevals_N : N ;
-fun hornfels_N : N ;
-fun channels_N : N ;
-fun barrels_N : N ;
-fun bowels_N : N ;
-fun fils_N : N ;
-fun falls_N : N ;
-fun coralbells_N : N ;
-fun polls_N : N ;
-fun bowls_N : N ;
-fun ms_N : N ;
-fun anagrams_N : N ;
-fun santims_N : N ;
-fun alms_N : N ;
-fun customs_N : N ;
-fun doldrums_N : N ;
-fun 'gentleman-at-arms_N' : N ;
-fun 'man-at-arms_N' : N ;
-fun 'master-at-arms_N' : N ;
-fun 'serjeant-at-arms_N' : N ;
-fun Afrikaans_N : N ;
-fun means_N : N ;
-fun glans_N : N ;
-fun explanans_N : N ;
-fun smithereens_N : N ;
-fun greens_N : N ;
-fun teens_N : N ;
-fun lens_N : N ;
-fun avens_N : N ;
-fun remains_N : N ;
-fun cremains_N : N ;
-fun afterpains_N : N ;
-fun muggins_N : N ;
-fun buckskins_N : N ;
-fun collins_N : N ;
-fun loins_N : N ;
-fun candlepins_N : N ;
-fun duckpins_N : N ;
-fun tenpins_N : N ;
-fun matins_N : N ;
-fun twins_N : N ;
-fun banns_N : N ;
-fun occasions_N : N ;
-fun communications_N : N ;
-fun operations_N : N ;
-fun corrections_N : N ;
-fun conditions_N : N ;
-fun nylons_N : N ;
-fun mons_N : N ;
-fun commons_N : N ;
-fun summons_N : N ;
-fun pons_N : N ;
-fun irons_N : N ;
-fun environs_N : N ;
-fun tons_N : N ;
-fun wrns_N : N ;
-fun ninepins_N : N ;
-fun os_N : N ;
-fun chaos_N : N ;
-fun rooibos_N : N ;
-fun intrados_N : N ;
-fun extrados_N : N ;
-fun tournedos_N : N ;
-fun reredos_N : N ;
-fun eidos_N : N ;
-fun epanodos_N : N ;
-fun kudos_N : N ;
-fun chlorpyrifos_N : N ;
-fun bigos_N : N ;
-fun bathos_N : N ;
-fun pathos_N : N ;
-fun benthos_N : N ;
-fun pothos_N : N ;
-fun hydramnios_N : N ;
-fun kos_N : N ;
-fun exomphalos_N : N ;
-fun peplos_N : N ;
-fun lagophthalmos_N : N ;
-fun nanophthalmos_N : N ;
-fun exophthalmos_N : N ;
-fun thermos_N : N ;
-fun cosmos_2_N : N ;
-fun opisthotonos_N : N ;
-fun epos_N : N ;
-fun tripos_N : N ;
-fun hematocolpos_N : N ;
-fun topos_N : N ;
-fun encephalartos_N : N ;
-fun asbestos_N : N ;
-fun cos_N : N ;
-fun rhinoceros_N : N ;
-fun sos_N : N ;
-fun taps_N : N ;
-fun quadriceps_N : N ;
-fun triceps_N : N ;
-fun forceps_N : N ;
-fun creeps_N : N ;
-fun reps_N : N ;
-fun steps_N : N ;
-fun chips_N : N ;
-fun snips_N : N ;
-fun thrips_N : N ;
-fun tidytips_N : N ;
-fun yips_N : N ;
-fun dumps_N : N ;
-fun lithops_N : N ;
-fun anomalops_N : N ;
-fun cyclops_N : N ;
-fun slops_N : N ;
-fun rollmops_N : N ;
-fun paratroops_N : N ;
-fun sundrops_N : N ;
-fun props_N : N ;
-fun triceratops_N : N ;
-fun protoceratops_N : N ;
-fun schnapps_N : N ;
-fun turps_N : N ;
-fun creamcups_N : N ;
-fun craps_N : N ;
-fun biceps_N : N ;
-fun contretemps_N : N ;
-fun mumps_N : N ;
-fun corps_N : N ;
-fun boxcars_N : N ;
-fun churidars_N : N ;
-fun shears_N : N ;
-fun arrears_N : N ;
-fun binoculars_N : N ;
-fun limbers_N : N ;
-fun lancers_N : N ;
-fun waders_N : N ;
-fun glanders_N : N ;
-fun flinders_N : N ;
-fun rounders_N : N ;
-fun snuffers_N : N ;
-fun staggers_N : N ;
-fun bleachers_N : N ;
-fun withers_N : N ;
-fun pliers_N : N ;
-fun rockers_N : N ;
-fun cobblers_N : N ;
-fun bloomers_N : N ;
-fun cleaners_N : N ;
-fun manners_N : N ;
-fun vespers_N : N ;
-fun summercaters_N : N ;
-fun hindquarters_N : N ;
-fun letters_N : N ;
-fun bitters_N : N ;
-fun jitters_N : N ;
-fun cleavers_N : N ;
-fun leftovers_N : N ;
-fun drawers_N : N ;
-fun frs_N : N ;
-fun airs_N : N ;
-fun affairs_N : N ;
-fun crosshairs_N : N ;
-fun backstairs_N : N ;
-fun upstairs_N : N ;
-fun outdoors_N : N ;
-fun scissors_N : N ;
-fun secateurs_N : N ;
-fun scours_N : N ;
-fun hours_N : N ;
-fun jodhpurs_N : N ;
-fun butterfingers_N : N ;
-fun checkers_N : N ;
-fun ss_N : N ;
-fun ass_N : N ;
-fun bass_N : N ;
-fun 'double-bass_N' : N ;
-fun contrabass_N : N ;
-fun carcass_N : N ;
-fun jackass_N : N ;
-fun lass_N : N ;
-fun class_N : N ;
-fun 'second-class_N' : N ;
-fun subclass_N : N ;
-fun superclass_N : N ;
-fun windlass_N : N ;
-fun glass_N : N ;
-fun 'cheval glass_N' : N ;
-fun 'plate-glass_N' : N ;
-fun 'looking-glass_N' : N ;
-fun 'watch-glass_N' : N ;
-fun 'weather-glass_N' : N ;
-fun 'pier-glass_N' : N ;
-fun 'water-glass_N' : N ;
-fun sandglass_N : N ;
-fun wineglass_N : N ;
-fun fibreglass_N : N ;
-fun eyeglass_N : N ;
-fun isinglass_N : N ;
-fun sunglass_N : N ;
-fun fiberglass_N : N ;
-fun weatherglass_N : N ;
-fun hourglass_N : N ;
-fun spyglass_N : N ;
-fun cutlass_N : N ;
-fun mass_N : N ;
-fun admass_N : N ;
-fun landmass_N : N ;
-fun groundmass_N : N ;
-fun biomass_N : N ;
-fun pass_N : N ;
-fun compass_N : N ;
-fun gyrocompass_N : N ;
-fun underpass_N : N ;
-fun overpass_N : N ;
-fun trespass_N : N ;
-fun bypass_N : N ;
-fun brass_N : N ;
-fun grass_N : N ;
-fun 'couch-grass_N' : N ;
-fun 'pampas-grass_N' : N ;
-fun seagrass_N : N ;
-fun crabgrass_N : N ;
-fun midgrass_N : N ;
-fun yardgrass_N : N ;
-fun cordgrass_N : N ;
-fun ricegrass_N : N ;
-fun bristlegrass_N : N ;
-fun bluegrass_N : N ;
-fun hardinggrass_N : N ;
-fun bunchgrass_N : N ;
-fun witchgrass_N : N ;
-fun eelgrass_N : N ;
-fun tallgrass_N : N ;
-fun lemongrass_N : N ;
-fun supergrass_N : N ;
-fun burgrass_N : N ;
-fun dallisgrass_N : N ;
-fun wheatgrass_N : N ;
-fun knotgrass_N : N ;
-fun shortgrass_N : N ;
-fun nutgrass_N : N ;
-fun meadowgrass_N : N ;
-fun cuirass_N : N ;
-fun morass_N : N ;
-fun sass_N : N ;
-fun kvass_N : N ;
-fun canvass_N : N ;
-fun dss_N : N ;
-fun abbess_N : N ;
-fun access_N : N ;
-fun success_N : N ;
-fun recess_N : N ;
-fun princess_N : N ;
-fun process_N : N ;
-fun abscess_N : N ;
-fun excess_N : N ;
-fun goddess_N : N ;
-fun leopardess_N : N ;
-fun stewardess_N : N ;
-fun shepherdess_N : N ;
-fun largess_N : N ;
-fun burgess_N : N ;
-fun chess_N : N ;
-fun duchess_N : N ;
-fun archduchess_N : N ;
-fun tubeless_N : N ;
-fun homeless_N : N ;
-fun wireless_N : N ;
-fun strapless_N : N ;
-fun mess_N : N ;
-fun ness_N : N ;
-fun drabness_N : N ;
-fun glibness_N : N ;
-fun dumbness_N : N ;
-fun numbness_N : N ;
-fun badness_N : N ;
-fun deadness_N : N ;
-fun gladness_N : N ;
-fun madness_N : N ;
-fun broadness_N : N ;
-fun sadness_N : N ;
-fun oddness_N : N ;
-fun shamefacedness_N : N ;
-fun 'pig-headedness_N' : N ;
-fun 'light-headedness_N' : N ;
-fun lightheadedness_N : N ;
-fun lopsidedness_N : N ;
-fun handedness_N : N ;
-fun 'broad-mindedness_N' : N ;
-fun 'noble-mindedness_N' : N ;
-fun 'high-mindedness_N' : N ;
-fun 'light-mindedness_N' : N ;
-fun 'absent-mindedness_N' : N ;
-fun 'narrow-mindedness_N' : N ;
-fun feeblemindedness_N : N ;
-fun absentmindedness_N : N ;
-fun 'long-windedness_N' : N ;
-fun roundedness_N : N ;
-fun agedness_N : N ;
-fun jaggedness_N : N ;
-fun raggedness_N : N ;
-fun doggedness_N : N ;
-fun ruggedness_N : N ;
-fun wretchedness_N : N ;
-fun variedness_N : N ;
-fun unvariedness_N : N ;
-fun nakedness_N : N ;
-fun wickedness_N : N ;
-fun crookedness_N : N ;
-fun redness_N : N ;
-fun preparedness_N : N ;
-fun sacredness_N : N ;
-fun tiredness_N : N ;
-fun assuredness_N : N ;
-fun blessedness_N : N ;
-fun cussedness_N : N ;
-fun complicatedness_N : N ;
-fun relatedness_N : N ;
-fun unrelatedness_N : N ;
-fun indebtedness_N : N ;
-fun abstractedness_N : N ;
-fun affectedness_N : N ;
-fun unaffectedness_N : N ;
-fun unconnectedness_N : N ;
-fun interconnectedness_N : N ;
-fun expectedness_N : N ;
-fun unexpectedness_N : N ;
-fun contentedness_N : N ;
-fun disjointedness_N : N ;
-fun pointedness_N : N ;
-fun unpointedness_N : N ;
-fun footedness_N : N ;
-fun 'light-heartedness_N' : N ;
-fun kindheartedness_N : N ;
-fun wholeheartedness_N : N ;
-fun bigheartedness_N : N ;
-fun warmheartedness_N : N ;
-fun downheartedness_N : N ;
-fun softheartedness_N : N ;
-fun faintheartedness_N : N ;
-fun stoutheartedness_N : N ;
-fun heavyheartedness_N : N ;
-fun interestedness_N : N ;
-fun disinterestedness_N : N ;
-fun committedness_N : N ;
-fun fixedness_N : N ;
-fun eyedness_N : N ;
-fun staidness_N : N ;
-fun morbidness_N : N ;
-fun turbidness_N : N ;
-fun rancidness_N : N ;
-fun pellucidness_N : N ;
-fun sordidness_N : N ;
-fun pallidness_N : N ;
-fun solidness_N : N ;
-fun stolidness_N : N ;
-fun timidness_N : N ;
-fun vapidness_N : N ;
-fun tepidness_N : N ;
-fun insipidness_N : N ;
-fun torpidness_N : N ;
-fun horridness_N : N ;
-fun luridness_N : N ;
-fun lividness_N : N ;
-fun vividness_N : N ;
-fun baldness_N : N ;
-fun mildness_N : N ;
-fun wildness_N : N ;
-fun oldness_N : N ;
-fun boldness_N : N ;
-fun coldness_N : N ;
-fun blandness_N : N ;
-fun kindness_N : N ;
-fun 'loving-kindness_N' : N ;
-fun unkindness_N : N ;
-fun blindness_N : N ;
-fun snowblindness_N : N ;
-fun fondness_N : N ;
-fun profoundness_N : N ;
-fun roundness_N : N ;
-fun soundness_N : N ;
-fun unsoundness_N : N ;
-fun goodness_N : N ;
-fun hardness_N : N ;
-fun awkwardness_N : N ;
-fun inwardness_N : N ;
-fun forwardness_N : N ;
-fun outwardness_N : N ;
-fun weirdness_N : N ;
-fun loudness_N : N ;
-fun lewdness_N : N ;
-fun shrewdness_N : N ;
-fun niceness_N : N ;
-fun fierceness_N : N ;
-fun spruceness_N : N ;
-fun wideness_N : N ;
-fun rudeness_N : N ;
-fun crudeness_N : N ;
-fun carefreeness_N : N ;
-fun safeness_N : N ;
-fun averageness_N : N ;
-fun savageness_N : N ;
-fun strangeness_N : N ;
-fun largeness_N : N ;
-fun likeness_N : N ;
-fun unlikeness_N : N ;
-fun ladylikeness_N : N ;
-fun maleness_N : N ;
-fun femaleness_N : N ;
-fun paleness_N : N ;
-fun staleness_N : N ;
-fun impracticableness_N : N ;
-fun peaceableness_N : N ;
-fun irreplaceableness_N : N ;
-fun unnoticeableness_N : N ;
-fun agreeableness_N : N ;
-fun disagreeableness_N : N ;
-fun changeableness_N : N ;
-fun variableness_N : N ;
-fun breakableness_N : N ;
-fun unbreakableness_N : N ;
-fun unattainableness_N : N ;
-fun reasonableness_N : N ;
-fun seasonableness_N : N ;
-fun unseasonableness_N : N ;
-fun personableness_N : N ;
-fun innumerableness_N : N ;
-fun honorableness_N : N ;
-fun dishonorableness_N : N ;
-fun favorableness_N : N ;
-fun unfavorableness_N : N ;
-fun honourableness_N : N ;
-fun profitableness_N : N ;
-fun unprofitableness_N : N ;
-fun hospitableness_N : N ;
-fun inhospitableness_N : N ;
-fun charitableness_N : N ;
-fun suitableness_N : N ;
-fun comfortableness_N : N ;
-fun invaluableness_N : N ;
-fun conceivableness_N : N ;
-fun enjoyableness_N : N ;
-fun feebleness_N : N ;
-fun sensibleness_N : N ;
-fun nimbleness_N : N ;
-fun humbleness_N : N ;
-fun ignobleness_N : N ;
-fun idleness_N : N ;
-fun singleness_N : N ;
-fun worthwhileness_N : N ;
-fun vileness_N : N ;
-fun fickleness_N : N ;
-fun wholeness_N : N ;
-fun ampleness_N : N ;
-fun suppleness_N : N ;
-fun gentleness_N : N ;
-fun littleness_N : N ;
-fun brittleness_N : N ;
-fun lameness_N : N ;
-fun sameness_N : N ;
-fun selfsameness_N : N ;
-fun tameness_N : N ;
-fun extremeness_N : N ;
-fun handsomeness_N : N ;
-fun troublesomeness_N : N ;
-fun wholesomeness_N : N ;
-fun unwholesomeness_N : N ;
-fun mettlesomeness_N : N ;
-fun gruesomeness_N : N ;
-fun loathsomeness_N : N ;
-fun quarrelsomeness_N : N ;
-fun fulsomeness_N : N ;
-fun burdensomeness_N : N ;
-fun winsomeness_N : N ;
-fun flavorsomeness_N : N ;
-fun lissomeness_N : N ;
-fun lightsomeness_N : N ;
-fun profaneness_N : N ;
-fun germaneness_N : N ;
-fun humaneness_N : N ;
-fun inhumaneness_N : N ;
-fun fineness_N : N ;
-fun genuineness_N : N ;
-fun oneness_N : N ;
-fun aloneness_N : N ;
-fun proneness_N : N ;
-fun jejuneness_N : N ;
-fun opportuneness_N : N ;
-fun inopportuneness_N : N ;
-fun ripeness_N : N ;
-fun bareness_N : N ;
-fun spareness_N : N ;
-fun rareness_N : N ;
-fun squareness_N : N ;
-fun awareness_N : N ;
-fun sombreness_N : N ;
-fun hereness_N : N ;
-fun thereness_N : N ;
-fun sereness_N : N ;
-fun austereness_N : N ;
-fun meagreness_N : N ;
-fun soreness_N : N ;
-fun secureness_N : N ;
-fun insecureness_N : N ;
-fun obscureness_N : N ;
-fun demureness_N : N ;
-fun pureness_N : N ;
-fun sureness_N : N ;
-fun prematureness_N : N ;
-fun baseness_N : N ;
-fun preciseness_N : N ;
-fun impreciseness_N : N ;
-fun conciseness_N : N ;
-fun falseness_N : N ;
-fun denseness_N : N ;
-fun tenseness_N : N ;
-fun verboseness_N : N ;
-fun jocoseness_N : N ;
-fun closeness_N : N ;
-fun looseness_N : N ;
-fun moroseness_N : N ;
-fun coarseness_N : N ;
-fun hoarseness_N : N ;
-fun sparseness_N : N ;
-fun terseness_N : N ;
-fun diverseness_N : N ;
-fun perverseness_N : N ;
-fun diffuseness_N : N ;
-fun profuseness_N : N ;
-fun abstruseness_N : N ;
-fun obtuseness_N : N ;
-fun sedateness_N : N ;
-fun appropriateness_N : N ;
-fun inappropriateness_N : N ;
-fun lateness_N : N ;
-fun oblateness_N : N ;
-fun animateness_N : N ;
-fun inanimateness_N : N ;
-fun subordinateness_N : N ;
-fun determinateness_N : N ;
-fun innateness_N : N ;
-fun dispassionateness_N : N ;
-fun affectionateness_N : N ;
-fun ornateness_N : N ;
-fun separateness_N : N ;
-fun disparateness_N : N ;
-fun considerateness_N : N ;
-fun temperateness_N : N ;
-fun elaborateness_N : N ;
-fun commensurateness_N : N ;
-fun effeteness_N : N ;
-fun obsoleteness_N : N ;
-fun completeness_N : N ;
-fun incompleteness_N : N ;
-fun concreteness_N : N ;
-fun discreteness_N : N ;
-fun reconditeness_N : N ;
-fun eruditeness_N : N ;
-fun whiteness_N : N ;
-fun politeness_N : N ;
-fun impoliteness_N : N ;
-fun finiteness_N : N ;
-fun indefiniteness_N : N ;
-fun infiniteness_N : N ;
-fun triteness_N : N ;
-fun requisiteness_N : N ;
-fun exquisiteness_N : N ;
-fun compositeness_N : N ;
-fun remoteness_N : N ;
-fun chasteness_N : N ;
-fun cuteness_N : N ;
-fun acuteness_N : N ;
-fun absoluteness_N : N ;
-fun resoluteness_N : N ;
-fun irresoluteness_N : N ;
-fun dissoluteness_N : N ;
-fun muteness_N : N ;
-fun minuteness_N : N ;
-fun hirsuteness_N : N ;
-fun astuteness_N : N ;
-fun vagueness_N : N ;
-fun opaqueness_N : N ;
-fun obliqueness_N : N ;
-fun uniqueness_N : N ;
-fun picturesqueness_N : N ;
-fun grotesqueness_N : N ;
-fun brusqueness_N : N ;
-fun trueness_N : N ;
-fun graveness_N : N ;
-fun forgiveness_N : N ;
-fun abrasiveness_N : N ;
-fun persuasiveness_N : N ;
-fun unpersuasiveness_N : N ;
-fun evasiveness_N : N ;
-fun pervasiveness_N : N ;
-fun adhesiveness_N : N ;
-fun cohesiveness_N : N ;
-fun decisiveness_N : N ;
-fun indecisiveness_N : N ;
-fun incisiveness_N : N ;
-fun impulsiveness_N : N ;
-fun compulsiveness_N : N ;
-fun expansiveness_N : N ;
-fun defensiveness_N : N ;
-fun offensiveness_N : N ;
-fun comprehensiveness_N : N ;
-fun pensiveness_N : N ;
-fun expensiveness_N : N ;
-fun inexpensiveness_N : N ;
-fun responsiveness_N : N ;
-fun unresponsiveness_N : N ;
-fun discursiveness_N : N ;
-fun massiveness_N : N ;
-fun passiveness_N : N ;
-fun impassiveness_N : N ;
-fun aggressiveness_N : N ;
-fun progressiveness_N : N ;
-fun impressiveness_N : N ;
-fun expressiveness_N : N ;
-fun obsessiveness_N : N ;
-fun possessiveness_N : N ;
-fun submissiveness_N : N ;
-fun permissiveness_N : N ;
-fun unpermissiveness_N : N ;
-fun effusiveness_N : N ;
-fun reclusiveness_N : N ;
-fun inconclusiveness_N : N ;
-fun elusiveness_N : N ;
-fun allusiveness_N : N ;
-fun obtrusiveness_N : N ;
-fun unobtrusiveness_N : N ;
-fun intrusiveness_N : N ;
-fun combativeness_N : N ;
-fun communicativeness_N : N ;
-fun uncommunicativeness_N : N ;
-fun creativeness_N : N ;
-fun uncreativeness_N : N ;
-fun speculativeness_N : N ;
-fun affirmativeness_N : N ;
-fun nativeness_N : N ;
-fun imperativeness_N : N ;
-fun decorativeness_N : N ;
-fun demonstrativeness_N : N ;
-fun innovativeness_N : N ;
-fun activeness_N : N ;
-fun inactiveness_N : N ;
-fun attractiveness_N : N ;
-fun unattractiveness_N : N ;
-fun defectiveness_N : N ;
-fun effectiveness_N : N ;
-fun ineffectiveness_N : N ;
-fun reflectiveness_N : N ;
-fun introspectiveness_N : N ;
-fun protectiveness_N : N ;
-fun vindictiveness_N : N ;
-fun restrictiveness_N : N ;
-fun distinctiveness_N : N ;
-fun productiveness_N : N ;
-fun unproductiveness_N : N ;
-fun destructiveness_N : N ;
-fun constructiveness_N : N ;
-fun secretiveness_N : N ;
-fun primitiveness_N : N ;
-fun acquisitiveness_N : N ;
-fun inquisitiveness_N : N ;
-fun oversensitiveness_N : N ;
-fun positiveness_N : N ;
-fun repetitiveness_N : N ;
-fun competitiveness_N : N ;
-fun retentiveness_N : N ;
-fun attentiveness_N : N ;
-fun inattentiveness_N : N ;
-fun inventiveness_N : N ;
-fun plaintiveness_N : N ;
-fun deceptiveness_N : N ;
-fun receptiveness_N : N ;
-fun perceptiveness_N : N ;
-fun unperceptiveness_N : N ;
-fun assertiveness_N : N ;
-fun unassertiveness_N : N ;
-fun sportiveness_N : N ;
-fun furtiveness_N : N ;
-fun restiveness_N : N ;
-fun diminutiveness_N : N ;
-fun deafness_N : N ;
-fun briefness_N : N ;
-fun stiffness_N : N ;
-fun bluffness_N : N ;
-fun gruffness_N : N ;
-fun aloofness_N : N ;
-fun convincingness_N : N ;
-fun nothingness_N : N ;
-fun unfeelingness_N : N ;
-fun willingness_N : N ;
-fun unwillingness_N : N ;
-fun becomingness_N : N ;
-fun unbecomingness_N : N ;
-fun easygoingness_N : N ;
-fun boringness_N : N ;
-fun pleasingness_N : N ;
-fun unpleasingness_N : N ;
-fun lastingness_N : N ;
-fun everlastingness_N : N ;
-fun uninterestingness_N : N ;
-fun disgustingness_N : N ;
-fun forgivingness_N : N ;
-fun lovingness_N : N ;
-fun deservingness_N : N ;
-fun knowingness_N : N ;
-fun unknowingness_N : N ;
-fun appetizingness_N : N ;
-fun unappetizingness_N : N ;
-fun longness_N : N ;
-fun wrongness_N : N ;
-fun youngness_N : N ;
-fun smugness_N : N ;
-fun snugness_N : N ;
-fun richness_N : N ;
-fun staunchness_N : N ;
-fun muchness_N : N ;
-fun highness_N : N ;
-fun roughness_N : N ;
-fun thoroughness_N : N ;
-fun toughness_N : N ;
-fun rashness_N : N ;
-fun brashness_N : N ;
-fun freshness_N : N ;
-fun snobbishness_N : N ;
-fun childishness_N : N ;
-fun outlandishness_N : N ;
-fun standoffishness_N : N ;
-fun selfishness_N : N ;
-fun unselfishness_N : N ;
-fun dwarfishness_N : N ;
-fun waggishness_N : N ;
-fun piggishness_N : N ;
-fun priggishness_N : N ;
-fun sluggishness_N : N ;
-fun freakishness_N : N ;
-fun rakishness_N : N ;
-fun brackishness_N : N ;
-fun prankishness_N : N ;
-fun bookishness_N : N ;
-fun hawkishness_N : N ;
-fun mawkishness_N : N ;
-fun foolishness_N : N ;
-fun girlishness_N : N ;
-fun mulishness_N : N ;
-fun stylishness_N : N ;
-fun squeamishness_N : N ;
-fun greenishness_N : N ;
-fun clannishness_N : N ;
-fun sheepishness_N : N ;
-fun impishness_N : N ;
-fun snappishness_N : N ;
-fun foppishness_N : N ;
-fun uppishness_N : N ;
-fun garishness_N : N ;
-fun boorishness_N : N ;
-fun amateurishness_N : N ;
-fun pettishness_N : N ;
-fun skittishness_N : N ;
-fun sottishness_N : N ;
-fun roguishness_N : N ;
-fun lavishness_N : N ;
-fun peevishness_N : N ;
-fun thievishness_N : N ;
-fun dovishness_N : N ;
-fun shrewishness_N : N ;
-fun boyishness_N : N ;
-fun harshness_N : N ;
-fun smoothness_N : N ;
-fun uncouthness_N : N ;
-fun shabbiness_N : N ;
-fun flabbiness_N : N ;
-fun crabbiness_N : N ;
-fun chubbiness_N : N ;
-fun grubbiness_N : N ;
-fun raciness_N : N ;
-fun spiciness_N : N ;
-fun juiciness_N : N ;
-fun sauciness_N : N ;
-fun readiness_N : N ;
-fun steadiness_N : N ;
-fun unsteadiness_N : N ;
-fun shadiness_N : N ;
-fun giddiness_N : N ;
-fun shoddiness_N : N ;
-fun ruddiness_N : N ;
-fun neediness_N : N ;
-fun greediness_N : N ;
-fun seediness_N : N ;
-fun tweediness_N : N ;
-fun tidiness_N : N ;
-fun untidiness_N : N ;
-fun unwieldiness_N : N ;
-fun handiness_N : N ;
-fun sandiness_N : N ;
-fun windiness_N : N ;
-fun bloodiness_N : N ;
-fun moodiness_N : N ;
-fun woodiness_N : N ;
-fun hardiness_N : N ;
-fun foolhardiness_N : N ;
-fun tardiness_N : N ;
-fun wordiness_N : N ;
-fun sturdiness_N : N ;
-fun cloudiness_N : N ;
-fun dowdiness_N : N ;
-fun rowdiness_N : N ;
-fun huffiness_N : N ;
-fun puffiness_N : N ;
-fun stuffiness_N : N ;
-fun staginess_N : N ;
-fun edginess_N : N ;
-fun stodginess_N : N ;
-fun shagginess_N : N ;
-fun grogginess_N : N ;
-fun sogginess_N : N ;
-fun bugginess_N : N ;
-fun mugginess_N : N ;
-fun slanginess_N : N ;
-fun dinginess_N : N ;
-fun stinginess_N : N ;
-fun sponginess_N : N ;
-fun loginess_N : N ;
-fun paunchiness_N : N ;
-fun patchiness_N : N ;
-fun sketchiness_N : N ;
-fun tetchiness_N : N ;
-fun touchiness_N : N ;
-fun flashiness_N : N ;
-fun fleshiness_N : N ;
-fun mushiness_N : N ;
-fun lengthiness_N : N ;
-fun filthiness_N : N ;
-fun frothiness_N : N ;
-fun worthiness_N : N ;
-fun 'credit-worthiness_N' : N ;
-fun seaworthiness_N : N ;
-fun roadworthiness_N : N ;
-fun blameworthiness_N : N ;
-fun praiseworthiness_N : N ;
-fun unworthiness_N : N ;
-fun airworthiness_N : N ;
-fun praisworthiness_N : N ;
-fun newsworthiness_N : N ;
-fun creditworthiness_N : N ;
-fun trustworthiness_N : N ;
-fun untrustworthiness_N : N ;
-fun leakiness_N : N ;
-fun shakiness_N : N ;
-fun flakiness_N : N ;
-fun trickiness_N : N ;
-fun stickiness_N : N ;
-fun rockiness_N : N ;
-fun balkiness_N : N ;
-fun silkiness_N : N ;
-fun bulkiness_N : N ;
-fun sulkiness_N : N ;
-fun lankiness_N : N ;
-fun crankiness_N : N ;
-fun jerkiness_N : N ;
-fun perkiness_N : N ;
-fun riskiness_N : N ;
-fun friskiness_N : N ;
-fun huskiness_N : N ;
-fun muskiness_N : N ;
-fun gawkiness_N : N ;
-fun scaliness_N : N ;
-fun bubbliness_N : N ;
-fun crumbliness_N : N ;
-fun deadliness_N : N ;
-fun worldliness_N : N ;
-fun friendliness_N : N ;
-fun unfriendliness_N : N ;
-fun kindliness_N : N ;
-fun godliness_N : N ;
-fun ungodliness_N : N ;
-fun niggardliness_N : N ;
-fun dastardliness_N : N ;
-fun lordliness_N : N ;
-fun timeliness_N : N ;
-fun comeliness_N : N ;
-fun homeliness_N : N ;
-fun loneliness_N : N ;
-fun leisureliness_N : N ;
-fun stateliness_N : N ;
-fun liveliness_N : N ;
-fun loveliness_N : N ;
-fun wiggliness_N : N ;
-fun ugliness_N : N ;
-fun oiliness_N : N ;
-fun prickliness_N : N ;
-fun hilliness_N : N ;
-fun chilliness_N : N ;
-fun silliness_N : N ;
-fun seemliness_N : N ;
-fun unseemliness_N : N ;
-fun cleanliness_N : N ;
-fun uncleanliness_N : N ;
-fun manliness_N : N ;
-fun womanliness_N : N ;
-fun maidenliness_N : N ;
-fun slovenliness_N : N ;
-fun slatternliness_N : N ;
-fun holiness_N : N ;
-fun unholiness_N : N ;
-fun earliness_N : N ;
-fun orderliness_N : N ;
-fun disorderliness_N : N ;
-fun weatherliness_N : N ;
-fun fatherliness_N : N ;
-fun motherliness_N : N ;
-fun miserliness_N : N ;
-fun neighborliness_N : N ;
-fun unneighborliness_N : N ;
-fun curliness_N : N ;
-fun neighbourliness_N : N ;
-fun 'good-neighbourliness_N' : N ;
-fun surliness_N : N ;
-fun sprightliness_N : N ;
-fun unsightliness_N : N ;
-fun saintliness_N : N ;
-fun courtliness_N : N ;
-fun beastliness_N : N ;
-fun ghastliness_N : N ;
-fun costliness_N : N ;
-fun ghostliness_N : N ;
-fun unruliness_N : N ;
-fun lowliness_N : N ;
-fun creaminess_N : N ;
-fun gaminess_N : N ;
-fun foaminess_N : N ;
-fun sliminess_N : N ;
-fun griminess_N : N ;
-fun balminess_N : N ;
-fun chumminess_N : N ;
-fun gloominess_N : N ;
-fun storminess_N : N ;
-fun shininess_N : N ;
-fun brininess_N : N ;
-fun skinniness_N : N ;
-fun funniness_N : N ;
-fun sunniness_N : N ;
-fun horniness_N : N ;
-fun puniness_N : N ;
-fun scrawniness_N : N ;
-fun tawniness_N : N ;
-fun downiness_N : N ;
-fun soapiness_N : N ;
-fun sleepiness_N : N ;
-fun creepiness_N : N ;
-fun weepiness_N : N ;
-fun bumpiness_N : N ;
-fun dumpiness_N : N ;
-fun jumpiness_N : N ;
-fun grumpiness_N : N ;
-fun happiness_N : N ;
-fun unhappiness_N : N ;
-fun scrappiness_N : N ;
-fun drippiness_N : N ;
-fun choppiness_N : N ;
-fun sloppiness_N : N ;
-fun chirpiness_N : N ;
-fun dreariness_N : N ;
-fun weariness_N : N ;
-fun vinegariness_N : N ;
-fun sugariness_N : N ;
-fun ordinariness_N : N ;
-fun extraordinariness_N : N ;
-fun stationariness_N : N ;
-fun hoariness_N : N ;
-fun temporariness_N : N ;
-fun contrariness_N : N ;
-fun sanitariness_N : N ;
-fun unsanitariness_N : N ;
-fun wariness_N : N ;
-fun unwariness_N : N ;
-fun tawdriness_N : N ;
-fun eeriness_N : N ;
-fun fieriness_N : N ;
-fun slipperiness_N : N ;
-fun wateriness_N : N ;
-fun jitteriness_N : N ;
-fun airiness_N : N ;
-fun hairiness_N : N ;
-fun wiriness_N : N ;
-fun dilatoriness_N : N ;
-fun satisfactoriness_N : N ;
-fun unsatisfactoriness_N : N ;
-fun refractoriness_N : N ;
-fun contradictoriness_N : N ;
-fun paltriness_N : N ;
-fun sultriness_N : N ;
-fun easiness_N : N ;
-fun uneasiness_N : N ;
-fun greasiness_N : N ;
-fun queasiness_N : N ;
-fun noisiness_N : N ;
-fun flimsiness_N : N ;
-fun clumsiness_N : N ;
-fun cosiness_N : N ;
-fun nosiness_N : N ;
-fun prosiness_N : N ;
-fun messiness_N : N ;
-fun glossiness_N : N ;
-fun fussiness_N : N ;
-fun gutsiness_N : N ;
-fun business_N : N ;
-fun 'show-business_N' : N ;
-fun agribusiness_N : N ;
-fun drowsiness_N : N ;
-fun craftiness_N : N ;
-fun shiftiness_N : N ;
-fun loftiness_N : N ;
-fun weightiness_N : N ;
-fun flightiness_N : N ;
-fun haughtiness_N : N ;
-fun naughtiness_N : N ;
-fun saltiness_N : N ;
-fun guiltiness_N : N ;
-fun scantiness_N : N ;
-fun daintiness_N : N ;
-fun jauntiness_N : N ;
-fun snootiness_N : N ;
-fun emptiness_N : N ;
-fun heartiness_N : N ;
-fun dirtiness_N : N ;
-fun hastiness_N : N ;
-fun nastiness_N : N ;
-fun testiness_N : N ;
-fun mistiness_N : N ;
-fun frostiness_N : N ;
-fun bloodthirstiness_N : N ;
-fun dustiness_N : N ;
-fun mustiness_N : N ;
-fun rustiness_N : N ;
-fun cattiness_N : N ;
-fun pettiness_N : N ;
-fun prettiness_N : N ;
-fun smuttiness_N : N ;
-fun heaviness_N : N ;
-fun waviness_N : N ;
-fun showiness_N : N ;
-fun waxiness_N : N ;
-fun sleaziness_N : N ;
-fun haziness_N : N ;
-fun laziness_N : N ;
-fun craziness_N : N ;
-fun wheeziness_N : N ;
-fun breeziness_N : N ;
-fun coziness_N : N ;
-fun dizziness_N : N ;
-fun bleakness_N : N ;
-fun weakness_N : N ;
-fun blackness_N : N ;
-fun slackness_N : N ;
-fun thickness_N : N ;
-fun slickness_N : N ;
-fun sickness_N : N ;
-fun 'sleeping-sickness_N' : N ;
-fun 'air-sickness_N' : N ;
-fun seasickness_N : N ;
-fun homesickness_N : N ;
-fun lovesickness_N : N ;
-fun carsickness_N : N ;
-fun airsickness_N : N ;
-fun quickness_N : N ;
-fun sleekness_N : N ;
-fun meekness_N : N ;
-fun dankness_N : N ;
-fun blankness_N : N ;
-fun rankness_N : N ;
-fun frankness_N : N ;
-fun pinkness_N : N ;
-fun darkness_N : N ;
-fun semidarkness_N : N ;
-fun starkness_N : N ;
-fun illogicalness_N : N ;
-fun historicalness_N : N ;
-fun congenialness_N : N ;
-fun partialness_N : N ;
-fun literalness_N : N ;
-fun naturalness_N : N ;
-fun unnaturalness_N : N ;
-fun vitalness_N : N ;
-fun gradualness_N : N ;
-fun casualness_N : N ;
-fun usualness_N : N ;
-fun unusualness_N : N ;
-fun effectualness_N : N ;
-fun smallness_N : N ;
-fun tallness_N : N ;
-fun illness_N : N ;
-fun shrillness_N : N ;
-fun stillness_N : N ;
-fun dullness_N : N ;
-fun fullness_N : N ;
-fun coolness_N : N ;
-fun dreadfulness_N : N ;
-fun mindfulness_N : N ;
-fun unmindfulness_N : N ;
-fun peacefulness_N : N ;
-fun gracefulness_N : N ;
-fun forcefulness_N : N ;
-fun resourcefulness_N : N ;
-fun wakefulness_N : N ;
-fun dolefulness_N : N ;
-fun shamefulness_N : N ;
-fun tunefulness_N : N ;
-fun hopefulness_N : N ;
-fun carefulness_N : N ;
-fun purposefulness_N : N ;
-fun usefulness_N : N ;
-fun hatefulness_N : N ;
-fun gratefulness_N : N ;
-fun ungratefulness_N : N ;
-fun spitefulness_N : N ;
-fun tastefulness_N : N ;
-fun distastefulness_N : N ;
-fun meaningfulness_N : N ;
-fun watchfulness_N : N ;
-fun wishfulness_N : N ;
-fun faithfulness_N : N ;
-fun unfaithfulness_N : N ;
-fun healthfulness_N : N ;
-fun unhealthfulness_N : N ;
-fun youthfulness_N : N ;
-fun truthfulness_N : N ;
-fun untruthfulness_N : N ;
-fun mercifulness_N : N ;
-fun dutifulness_N : N ;
-fun undutifulness_N : N ;
-fun thankfulness_N : N ;
-fun wilfulness_N : N ;
-fun skillfulness_N : N ;
-fun unskillfulness_N : N ;
-fun harmfulness_N : N ;
-fun manfulness_N : N ;
-fun painfulness_N : N ;
-fun sinfulness_N : N ;
-fun mournfulness_N : N ;
-fun helpfulness_N : N ;
-fun unhelpfulness_N : N ;
-fun fearfulness_N : N ;
-fun cheerfulness_N : N ;
-fun uncheerfulness_N : N ;
-fun neglectfulness_N : N ;
-fun forgetfulness_N : N ;
-fun rightfulness_N : N ;
-fun frightfulness_N : N ;
-fun insightfulness_N : N ;
-fun thoughtfulness_N : N ;
-fun unthoughtfulness_N : N ;
-fun deceitfulness_N : N ;
-fun fitfulness_N : N ;
-fun fruitfulness_N : N ;
-fun artfulness_N : N ;
-fun effortfulness_N : N ;
-fun boastfulness_N : N ;
-fun restfulness_N : N ;
-fun wistfulness_N : N ;
-fun distrustfulness_N : N ;
-fun awfulness_N : N ;
-fun lawfulness_N : N ;
-fun unlawfulness_N : N ;
-fun playfulness_N : N ;
-fun joyfulness_N : N ;
-fun foulness_N : N ;
-fun dimness_N : N ;
-fun slimness_N : N ;
-fun grimness_N : N ;
-fun primness_N : N ;
-fun calmness_N : N ;
-fun randomness_N : N ;
-fun lissomness_N : N ;
-fun buxomness_N : N ;
-fun lukewarmness_N : N ;
-fun firmness_N : N ;
-fun glumness_N : N ;
-fun leanness_N : N ;
-fun cleanness_N : N ;
-fun meanness_N : N ;
-fun humanness_N : N ;
-fun wanness_N : N ;
-fun hiddenness_N : N ;
-fun suddenness_N : N ;
-fun woodenness_N : N ;
-fun keenness_N : N ;
-fun greenness_N : N ;
-fun drunkenness_N : N ;
-fun outspokenness_N : N ;
-fun sullenness_N : N ;
-fun openness_N : N ;
-fun barrenness_N : N ;
-fun rottenness_N : N ;
-fun cravenness_N : N ;
-fun evenness_N : N ;
-fun unevenness_N : N ;
-fun givenness_N : N ;
-fun foreignness_N : N ;
-fun plainness_N : N ;
-fun thinness_N : N ;
-fun guinness_N : N ;
-fun solemnness_N : N ;
-fun commonness_N : N ;
-fun uncommonness_N : N ;
-fun wantonness_N : N ;
-fun northernness_N : N ;
-fun southernness_N : N ;
-fun sternness_N : N ;
-fun stubbornness_N : N ;
-fun forlornness_N : N ;
-fun deaconess_N : N ;
-fun pythoness_N : N ;
-fun marchioness_N : N ;
-fun lioness_N : N ;
-fun baroness_N : N ;
-fun patroness_N : N ;
-fun cheapness_N : N ;
-fun deepness_N : N ;
-fun steepness_N : N ;
-fun dampness_N : N ;
-fun limpness_N : N ;
-fun plumpness_N : N ;
-fun sharpness_N : N ;
-fun crispness_N : N ;
-fun dearness_N : N ;
-fun clearness_N : N ;
-fun unclearness_N : N ;
-fun nearness_N : N ;
-fun farness_N : N ;
-fun harness_N : N ;
-fun soberness_N : N ;
-fun wilderness_N : N ;
-fun slenderness_N : N ;
-fun tenderness_N : N ;
-fun queerness_N : N ;
-fun eagerness_N : N ;
-fun meagerness_N : N ;
-fun togetherness_N : N ;
-fun otherness_N : N ;
-fun bitterness_N : N ;
-fun cleverness_N : N ;
-fun governess_N : N ;
-fun fairness_N : N ;
-fun unfairness_N : N ;
-fun poorness_N : N ;
-fun sourness_N : N ;
-fun crassness_N : N ;
-fun heedlessness_N : N ;
-fun childlessness_N : N ;
-fun endlessness_N : N ;
-fun friendlessness_N : N ;
-fun mindlessness_N : N ;
-fun groundlessness_N : N ;
-fun godlessness_N : N ;
-fun cloudlessness_N : N ;
-fun gracelessness_N : N ;
-fun voicelessness_N : N ;
-fun defencelessness_N : N ;
-fun agelessness_N : N ;
-fun changelessness_N : N ;
-fun shamelessness_N : N ;
-fun blamelessness_N : N ;
-fun homelessness_N : N ;
-fun spinelessness_N : N ;
-fun shapelessness_N : N ;
-fun hopelessness_N : N ;
-fun carelessness_N : N ;
-fun noiselessness_N : N ;
-fun defenselessness_N : N ;
-fun senselessness_N : N ;
-fun purposelessness_N : N ;
-fun uselessness_N : N ;
-fun tastelessness_N : N ;
-fun valuelessness_N : N ;
-fun eyelessness_N : N ;
-fun selflessness_N : N ;
-fun meaninglessness_N : N ;
-fun speechlessness_N : N ;
-fun faithlessness_N : N ;
-fun worthlessness_N : N ;
-fun ruthlessness_N : N ;
-fun mercilessness_N : N ;
-fun pitilessness_N : N ;
-fun fecklessness_N : N ;
-fun recklessness_N : N ;
-fun risklessness_N : N ;
-fun bottomlessness_N : N ;
-fun sinlessness_N : N ;
-fun motionlessness_N : N ;
-fun emotionlessness_N : N ;
-fun sleeplessness_N : N ;
-fun helplessness_N : N ;
-fun fearlessness_N : N ;
-fun cheerlessness_N : N ;
-fun powerlessness_N : N ;
-fun hairlessness_N : N ;
-fun colorlessness_N : N ;
-fun flavorlessness_N : N ;
-fun colourlessness_N : N ;
-fun tactlessness_N : N ;
-fun shiftlessness_N : N ;
-fun thriftlessness_N : N ;
-fun weightlessness_N : N ;
-fun thoughtlessness_N : N ;
-fun fruitlessness_N : N ;
-fun faultlessness_N : N ;
-fun talentlessness_N : N ;
-fun relentlessness_N : N ;
-fun dauntlessness_N : N ;
-fun spotlessness_N : N ;
-fun artlessness_N : N ;
-fun heartlessness_N : N ;
-fun effortlessness_N : N ;
-fun restlessness_N : N ;
-fun listlessness_N : N ;
-fun gutlessness_N : N ;
-fun lawlessness_N : N ;
-fun joylessness_N : N ;
-fun remissness_N : N ;
-fun crossness_N : N ;
-fun grossness_N : N ;
-fun hazardousness_N : N ;
-fun curvaceousness_N : N ;
-fun hideousness_N : N ;
-fun outrageousness_N : N ;
-fun extraneousness_N : N ;
-fun simultaneousness_N : N ;
-fun spontaneousness_N : N ;
-fun erroneousness_N : N ;
-fun gaseousness_N : N ;
-fun righteousness_N : N ;
-fun unrighteousness_N : N ;
-fun dubiousness_N : N ;
-fun salaciousness_N : N ;
-fun fallaciousness_N : N ;
-fun tenaciousness_N : N ;
-fun capaciousness_N : N ;
-fun spaciousness_N : N ;
-fun graciousness_N : N ;
-fun ungraciousness_N : N ;
-fun loquaciousness_N : N ;
-fun speciousness_N : N ;
-fun preciousness_N : N ;
-fun judiciousness_N : N ;
-fun injudiciousness_N : N ;
-fun officiousness_N : N ;
-fun perniciousness_N : N ;
-fun auspiciousness_N : N ;
-fun inauspiciousness_N : N ;
-fun capriciousness_N : N ;
-fun meretriciousness_N : N ;
-fun viciousness_N : N ;
-fun precociousness_N : N ;
-fun ferociousness_N : N ;
-fun consciousness_N : N ;
-fun 'self-consciousness_N' : N ;
-fun subconsciousness_N : N ;
-fun unselfconsciousness_N : N ;
-fun unconsciousness_N : N ;
-fun lusciousness_N : N ;
-fun tediousness_N : N ;
-fun perfidiousness_N : N ;
-fun insidiousness_N : N ;
-fun fastidiousness_N : N ;
-fun melodiousness_N : N ;
-fun studiousness_N : N ;
-fun sacrilegiousness_N : N ;
-fun religiousness_N : N ;
-fun irreligiousness_N : N ;
-fun litigiousness_N : N ;
-fun biliousness_N : N ;
-fun superciliousness_N : N ;
-fun punctiliousness_N : N ;
-fun rebelliousness_N : N ;
-fun abstemiousness_N : N ;
-fun ceremoniousness_N : N ;
-fun unceremoniousness_N : N ;
-fun sanctimoniousness_N : N ;
-fun impecuniousness_N : N ;
-fun precariousness_N : N ;
-fun nefariousness_N : N ;
-fun gregariousness_N : N ;
-fun lugubriousness_N : N ;
-fun imperiousness_N : N ;
-fun seriousness_N : N ;
-fun laboriousness_N : N ;
-fun uxoriousness_N : N ;
-fun curiousness_N : N ;
-fun penuriousness_N : N ;
-fun spuriousness_N : N ;
-fun fractiousness_N : N ;
-fun facetiousness_N : N ;
-fun nutritiousness_N : N ;
-fun licentiousness_N : N ;
-fun tendentiousness_N : N ;
-fun conscientiousness_N : N ;
-fun unconscientiousness_N : N ;
-fun pretentiousness_N : N ;
-fun unpretentiousness_N : N ;
-fun bumptiousness_N : N ;
-fun obsequiousness_N : N ;
-fun obviousness_N : N ;
-fun deviousness_N : N ;
-fun lasciviousness_N : N ;
-fun obliviousness_N : N ;
-fun anxiousness_N : N ;
-fun noxiousness_N : N ;
-fun obnoxiousness_N : N ;
-fun scandalousness_N : N ;
-fun callousness_N : N ;
-fun meticulousness_N : N ;
-fun credulousness_N : N ;
-fun scrupulousness_N : N ;
-fun unscrupulousness_N : N ;
-fun querulousness_N : N ;
-fun enormousness_N : N ;
-fun indigenousness_N : N ;
-fun multitudinousness_N : N ;
-fun heinousness_N : N ;
-fun abdominousness_N : N ;
-fun gelatinousness_N : N ;
-fun ponderousness_N : N ;
-fun murderousness_N : N ;
-fun dangerousness_N : N ;
-fun lecherousness_N : N ;
-fun numerousness_N : N ;
-fun obstreperousness_N : N ;
-fun boisterousness_N : N ;
-fun malodorousness_N : N ;
-fun amorousness_N : N ;
-fun porousness_N : N ;
-fun adventurousness_N : N ;
-fun covetousness_N : N ;
-fun fortuitousness_N : N ;
-fun momentousness_N : N ;
-fun vacuousness_N : N ;
-fun conspicuousness_N : N ;
-fun inconspicuousness_N : N ;
-fun perspicuousness_N : N ;
-fun arduousness_N : N ;
-fun ingenuousness_N : N ;
-fun disingenuousness_N : N ;
-fun strenuousness_N : N ;
-fun continuousness_N : N ;
-fun sensuousness_N : N ;
-fun fatuousness_N : N ;
-fun impetuousness_N : N ;
-fun contemptuousness_N : N ;
-fun sumptuousness_N : N ;
-fun voluptuousness_N : N ;
-fun tempestuousness_N : N ;
-fun mischievousness_N : N ;
-fun nervousness_N : N ;
-fun joyousness_N : N ;
-fun neatness_N : N ;
-fun greatness_N : N ;
-fun fatness_N : N ;
-fun flatness_N : N ;
-fun squatness_N : N ;
-fun compactness_N : N ;
-fun abstractness_N : N ;
-fun intactness_N : N ;
-fun exactness_N : N ;
-fun inexactness_N : N ;
-fun erectness_N : N ;
-fun directness_N : N ;
-fun indirectness_N : N ;
-fun correctness_N : N ;
-fun incorrectness_N : N ;
-fun strictness_N : N ;
-fun succinctness_N : N ;
-fun distinctness_N : N ;
-fun indistinctness_N : N ;
-fun fleetness_N : N ;
-fun sweetness_N : N ;
-fun quietness_N : N ;
-fun wetness_N : N ;
-fun deftness_N : N ;
-fun swiftness_N : N ;
-fun softness_N : N ;
-fun straightness_N : N ;
-fun lightness_N : N ;
-fun slightness_N : N ;
-fun rightness_N : N ;
-fun brightness_N : N ;
-fun downrightness_N : N ;
-fun uprightness_N : N ;
-fun tightness_N : N ;
-fun licitness_N : N ;
-fun illicitness_N : N ;
-fun implicitness_N : N ;
-fun explicitness_N : N ;
-fun inexplicitness_N : N ;
-fun fitness_N : N ;
-fun unfitness_N : N ;
-fun adroitness_N : N ;
-fun maladroitness_N : N ;
-fun witness_N : N ;
-fun eyewitness_N : N ;
-fun ignorantness_N : N ;
-fun pleasantness_N : N ;
-fun unpleasantness_N : N ;
-fun ancientness_N : N ;
-fun apparentness_N : N ;
-fun currentness_N : N ;
-fun concurrentness_N : N ;
-fun presentness_N : N ;
-fun intentness_N : N ;
-fun faintness_N : N ;
-fun quaintness_N : N ;
-fun gauntness_N : N ;
-fun bluntness_N : N ;
-fun hotness_N : N ;
-fun aptness_N : N ;
-fun inaptness_N : N ;
-fun adeptness_N : N ;
-fun promptness_N : N ;
-fun abruptness_N : N ;
-fun corruptness_N : N ;
-fun incorruptness_N : N ;
-fun smartness_N : N ;
-fun tartness_N : N ;
-fun alertness_N : N ;
-fun inertness_N : N ;
-fun pertness_N : N ;
-fun expertness_N : N ;
-fun shortness_N : N ;
-fun curtness_N : N ;
-fun fastness_N : N ;
-fun steadfastness_N : N ;
-fun pastness_N : N ;
-fun vastness_N : N ;
-fun earnestness_N : N ;
-fun robustness_N : N ;
-fun justness_N : N ;
-fun tautness_N : N ;
-fun stoutness_N : N ;
-fun devoutness_N : N ;
-fun rawness_N : N ;
-fun fewness_N : N ;
-fun newness_N : N ;
-fun lowness_N : N ;
-fun callowness_N : N ;
-fun shallowness_N : N ;
-fun sallowness_N : N ;
-fun mellowness_N : N ;
-fun yellowness_N : N ;
-fun hollowness_N : N ;
-fun slowness_N : N ;
-fun narrowness_N : N ;
-fun laxness_N : N ;
-fun gayness_N : N ;
-fun awayness_N : N ;
-fun shyness_N : N ;
-fun slyness_N : N ;
-fun bonyness_N : N ;
-fun coyness_N : N ;
-fun dryness_N : N ;
-fun busyness_N : N ;
-fun uppityness_N : N ;
-fun loess_N : N ;
-fun caress_N : N ;
-fun cress_N : N ;
-fun stonecress_N : N ;
-fun watercress_N : N ;
-fun bittercress_N : N ;
-fun pennycress_N : N ;
-fun dress_N : N ;
-fun 'diving-dress_N' : N ;
-fun 'ball-dress_N' : N ;
-fun ambassadress_N : N ;
-fun address_N : N ;
-fun headdress_N : N ;
-fun battledress_N : N ;
-fun redress_N : N ;
-fun balldress_N : N ;
-fun undress_N : N ;
-fun laundress_N : N ;
-fun foundress_N : N ;
-fun sundress_N : N ;
-fun wardress_N : N ;
-fun coatdress_N : N ;
-fun nightdress_N : N ;
-fun shirtdress_N : N ;
-fun sorceress_N : N ;
-fun embroideress_N : N ;
-fun murderess_N : N ;
-fun peeress_N : N ;
-fun manageress_N : N ;
-fun adulteress_N : N ;
-fun egress_N : N ;
-fun negress_N : N ;
-fun regress_N : N ;
-fun tigress_N : N ;
-fun ingress_N : N ;
-fun congress_N : N ;
-fun ogress_N : N ;
-fun progress_N : N ;
-fun heiress_N : N ;
-fun authoress_N : N ;
-fun prioress_N : N ;
-fun mayoress_N : N ;
-fun press_N : N ;
-fun 'printing-press_N' : N ;
-fun winepress_N : N ;
-fun empress_N : N ;
-fun impress_N : N ;
-fun compress_N : N ;
-fun ciderpress_N : N ;
-fun letterpress_N : N ;
-fun express_N : N ;
-fun cypress_N : N ;
-fun tress_N : N ;
-fun negotiatress_N : N ;
-fun idolatress_N : N ;
-fun actress_N : N ;
-fun benefactress_N : N ;
-fun seductress_N : N ;
-fun conductress_N : N ;
-fun instructress_N : N ;
-fun proprietress_N : N ;
-fun traitress_N : N ;
-fun waitress_N : N ;
-fun enchantress_N : N ;
-fun huntress_N : N ;
-fun sculptress_N : N ;
-fun temptress_N : N ;
-fun fortress_N : N ;
-fun stress_N : N ;
-fun ancestress_N : N ;
-fun songstress_N : N ;
-fun distress_N : N ;
-fun mistress_N : N ;
-fun 'games-mistress_N' : N ;
-fun headmistress_N : N ;
-fun taskmistress_N : N ;
-fun schoolmistress_N : N ;
-fun postmistress_N : N ;
-fun seamstress_N : N ;
-fun sempstress_N : N ;
-fun mattress_N : N ;
-fun 'spring-mattress_N' : N ;
-fun buttress_N : N ;
-fun procuress_N : N ;
-fun duress_N : N ;
-fun adventuress_N : N ;
-fun prophetess_N : N ;
-fun poetess_N : N ;
-fun giantess_N : N ;
-fun countess_N : N ;
-fun viscountess_N : N ;
-fun priestess_N : N ;
-fun hostess_N : N ;
-fun guess_N : N ;
-fun marquess_N : N ;
-fun jewess_N : N ;
-fun prowess_N : N ;
-fun gneiss_N : N ;
-fun edelweiss_N : N ;
-fun hiss_N : N ;
-fun kiss_N : N ;
-fun bliss_N : N ;
-fun miss_N : N ;
-fun premiss_N : N ;
-fun koumiss_N : N ;
-fun piss_N : N ;
-fun boss_N : N ;
-fun underboss_N : N ;
-fun joss_N : N ;
-fun loss_N : N ;
-fun floss_N : N ;
-fun 'candy-floss_N' : N ;
-fun gloss_N : N ;
-fun semigloss_N : N ;
-fun bugloss_N : N ;
-fun moss_N : N ;
-fun spikemoss_N : N ;
-fun cross_N : N ;
-fun 'double-cross_N' : N ;
-fun 'market-cross_N' : N ;
-fun crisscross_N : N ;
-fun testcross_N : N ;
-fun dross_N : N ;
-fun albatross_N : N ;
-fun toss_N : N ;
-fun uss_N : N ;
-fun gauss_N : N ;
-fun microgauss_N : N ;
-fun blunderbuss_N : N ;
-fun cuss_N : N ;
-fun fuss_N : N ;
-fun muss_N : N ;
-fun sourpuss_N : N ;
-fun truss_N : N ;
-fun abyss_N : N ;
-fun villainess_N : N ;
-fun millionairess_N : N ;
-fun swiss_N : N ;
-fun gross_N : N ;
-fun cleats_N : N ;
-fun lats_N : N ;
-fun flats_N : N ;
-fun groats_N : N ;
-fun effects_N : N ;
-fun analects_N : N ;
-fun respects_N : N ;
-fun starets_N : N ;
-fun assets_N : N ;
-fun houselights_N : N ;
-fun footlights_N : N ;
-fun sights_N : N ;
-fun tights_N : N ;
-fun credits_N : N ;
-fun quoits_N : N ;
-fun wits_N : N ;
-fun blewits_N : N ;
-fun descendants_N : N ;
-fun underpants_N : N ;
-fun ancients_N : N ;
-fun muniments_N : N ;
-fun contents_N : N ;
-fun roots_N : N ;
-fun darts_N : N ;
-fun hearts_N : N ;
-fun parts_N : N ;
-fun deserts_N : N ;
-fun outskirts_N : N ;
-fun comforts_N : N ;
-fun costs_N : N ;
-fun peanuts_N : N ;
-fun whereabouts_N : N ;
-fun rickets_N : N ;
-fun draughts_N : N ;
-fun grits_N : N ;
-fun 'santa claus_N' : N ;
-fun bus_N : N ;
-fun syllabus_N : N ;
-fun rebus_N : N ;
-fun arquebus_N : N ;
-fun minibus_N : N ;
-fun omnibus_N : N ;
-fun iambus_N : N ;
-fun limbus_N : N ;
-fun nimbus_N : N ;
-fun cumulonimbus_N : N ;
-fun rhombus_N : N ;
-fun thrombus_N : N ;
-fun colobus_N : N ;
-fun airbus_N : N ;
-fun succubus_N : N ;
-fun incubus_N : N ;
-fun trolleybus_N : N ;
-fun abacus_N : N ;
-fun coccus_N : N ;
-fun diplococcus_N : N ;
-fun staphylococcus_N : N ;
-fun pneumococcus_N : N ;
-fun echinococcus_N : N ;
-fun gonococcus_N : N ;
-fun rudapithecus_N : N ;
-fun sulcus_N : N ;
-fun incus_N : N ;
-fun iridoncus_N : N ;
-fun uncus_N : N ;
-fun diplodocus_N : N ;
-fun focus_N : N ;
-fun autofocus_N : N ;
-fun 'hocus-pocus_N' : N ;
-fun crocus_N : N ;
-fun arcus_N : N ;
-fun circus_N : N ;
-fun ascus_N : N ;
-fun hibiscus_N : N ;
-fun discus_N : N ;
-fun meniscus_N : N ;
-fun lemniscus_N : N ;
-fun cuscus_N : N ;
-fun caucus_N : N ;
-fun fucus_N : N ;
-fun mucus_N : N ;
-fun solidus_N : N ;
-fun nidus_N : N ;
-fun fundus_N : N ;
-fun ceratodus_N : N ;
-fun exodus_N : N ;
-fun calceus_N : N ;
-fun caduceus_N : N ;
-fun pronucleus_N : N ;
-fun basileus_N : N ;
-fun malleus_N : N ;
-fun coleus_N : N ;
-fun soleus_N : N ;
-fun aculeus_N : N ;
-fun peroneus_N : N ;
-fun clypeus_N : N ;
-fun gluteus_N : N ;
-fun esophagus_N : N ;
-fun oesophagus_N : N ;
-fun magus_N : N ;
-fun asparagus_N : N ;
-fun choragus_N : N ;
-fun tragus_N : N ;
-fun vagus_N : N ;
-fun negus_N : N ;
-fun pemphigus_N : N ;
-fun valgus_N : N ;
-fun cunnilingus_N : N ;
-fun fungus_N : N ;
-fun argus_N : N ;
-fun rhonchus_N : N ;
-fun deinonychus_N : N ;
-fun philadelphus_N : N ;
-fun tophus_N : N ;
-fun scyphus_N : N ;
-fun typhus_N : N ;
-fun compsognathus_N : N ;
-fun canthus_N : N ;
-fun acanthus_N : N ;
-fun epicanthus_N : N ;
-fun strophanthus_N : N ;
-fun ailanthus_N : N ;
-fun aeschynanthus_N : N ;
-fun agapanthus_N : N ;
-fun plectranthus_N : N ;
-fun polyanthus_N : N ;
-fun bryanthus_N : N ;
-fun phaius_N : N ;
-fun stenopterygius_N : N ;
-fun gastrocnemius_N : N ;
-fun genius_N : N ;
-fun splenius_N : N ;
-fun abecedarius_N : N ;
-fun sartorius_N : N ;
-fun trapezius_N : N ;
-fun ankus_N : N ;
-fun hydrocephalus_N : N ;
-fun leptocephalus_N : N ;
-fun acromphalus_N : N ;
-fun talus_N : N ;
-fun angelus_N : N ;
-fun hilus_N : N ;
-fun acidophilus_N : N ;
-fun pilus_N : N ;
-fun nautilus_N : N ;
-fun callus_N : N ;
-fun phallus_N : N ;
-fun amorphophallus_N : N ;
-fun thallus_N : N ;
-fun nucellus_N : N ;
-fun entellus_N : N ;
-fun coccobacillus_N : N ;
-fun thiobacillus_N : N ;
-fun lactobacillus_N : N ;
-fun streptobacillus_N : N ;
-fun villus_N : N ;
-fun bolus_N : N ;
-fun embolus_N : N ;
-fun obolus_N : N ;
-fun nucleolus_N : N ;
-fun alveolus_N : N ;
-fun gladiolus_N : N ;
-fun modiolus_N : N ;
-fun plus_N : N ;
-fun overplus_N : N ;
-fun surplus_N : N ;
-fun galbulus_N : N ;
-fun canaliculus_N : N ;
-fun funiculus_N : N ;
-fun calculus_N : N ;
-fun homunculus_N : N ;
-fun calyculus_N : N ;
-fun modulus_N : N ;
-fun famulus_N : N ;
-fun cirrocumulus_N : N ;
-fun altocumulus_N : N ;
-fun annulus_N : N ;
-fun glomerulus_N : N ;
-fun rivulus_N : N ;
-fun volvulus_N : N ;
-fun convolvulus_N : N ;
-fun acervulus_N : N ;
-fun stylus_N : N ;
-fun mandamus_N : N ;
-fun calamus_N : N ;
-fun thalamus_N : N ;
-fun subthalamus_N : N ;
-fun hypothalamus_N : N ;
-fun ramus_N : N ;
-fun ignoramus_N : N ;
-fun hippopotamus_N : N ;
-fun bmus_N : N ;
-fun nystagmus_N : N ;
-fun isthmus_N : N ;
-fun struthiomimus_N : N ;
-fun animus_N : N ;
-fun minimus_N : N ;
-fun primus_N : N ;
-fun mumpsimus_N : N ;
-fun sumpsimus_N : N ;
-fun hummus_N : N ;
-fun chiasmus_N : N ;
-fun marasmus_N : N ;
-fun tenesmus_N : N ;
-fun strabismus_N : N ;
-fun laryngismus_N : N ;
-fun vaginismus_N : N ;
-fun trismus_N : N ;
-fun litmus_N : N ;
-fun humus_N : N ;
-fun anus_N : N ;
-fun pandanus_N : N ;
-fun tetanus_N : N ;
-fun subgenus_N : N ;
-fun scalenus_N : N ;
-fun silenus_N : N ;
-fun acinus_N : N ;
-fun echinus_N : N ;
-fun botulinus_N : N ;
-fun minus_N : N ;
-fun dominus_N : N ;
-fun terminus_N : N ;
-fun sinus_N : N ;
-fun bonus_N : N ;
-fun keratoconus_N : N ;
-fun clonus_N : N ;
-fun myoclonus_N : N ;
-fun couscous_N : N ;
-fun scabious_N : N ;
-fun unconscious_N : N ;
-fun nous_N : N ;
-fun burnous_N : N ;
-fun pus_N : N ;
-fun campus_N : N ;
-fun hippocampus_N : N ;
-fun grampus_N : N ;
-fun octopus_N : N ;
-fun rhizopus_N : N ;
-fun pappus_N : N ;
-fun eohippus_N : N ;
-fun mesohippus_N : N ;
-fun protohippus_N : N ;
-fun metacarpus_N : N ;
-fun streptocarpus_N : N ;
-fun 'habeas corpus_N' : N ;
-fun lupus_N : N ;
-fun polypus_N : N ;
-fun platypus_N : N ;
-fun acarus_N : N ;
-fun varus_N : N ;
-fun crus_N : N ;
-fun humerus_N : N ;
-fun kernicterus_N : N ;
-fun uterus_N : N ;
-fun deinocheirus_N : N ;
-fun virus_N : N ;
-fun alphavirus_N : N ;
-fun hepadnavirus_N : N ;
-fun arenavirus_N : N ;
-fun picornavirus_N : N ;
-fun lyssavirus_N : N ;
-fun rotavirus_N : N ;
-fun papovavirus_N : N ;
-fun bunyavirus_N : N ;
-fun coxsackievirus_N : N ;
-fun flavivirus_N : N ;
-fun arbovirus_N : N ;
-fun rhabdovirus_N : N ;
-fun reovirus_N : N ;
-fun echovirus_N : N ;
-fun poliovirus_N : N ;
-fun cytomegalovirus_N : N ;
-fun filovirus_N : N ;
-fun vesiculovirus_N : N ;
-fun adenovirus_N : N ;
-fun rhinovirus_N : N ;
-fun enterovirus_N : N ;
-fun provirus_N : N ;
-fun retrovirus_N : N ;
-fun parvovirus_N : N ;
-fun myxovirus_N : N ;
-fun paramyxovirus_N : N ;
-fun orthomyxovirus_N : N ;
-fun poxvirus_N : N ;
-fun walrus_N : N ;
-fun chorus_N : N ;
-fun corchorus_N : N ;
-fun electrophorus_N : N ;
-fun phosphorus_N : N ;
-fun pylorus_N : N ;
-fun sorus_N : N ;
-fun torus_N : N ;
-fun cirrus_N : N ;
-fun citrus_N : N ;
-fun estrus_N : N ;
-fun diestrus_N : N ;
-fun anestrus_N : N ;
-fun thesaurus_N : N ;
-fun edaphosaurus_N : N ;
-fun edmontosaurus_N : N ;
-fun ichthyosaurus_N : N ;
-fun kurus_N : N ;
-fun gyrus_N : N ;
-fun papyrus_N : N ;
-fun rhesus_N : N ;
-fun census_N : N ;
-fun keratonosus_N : N ;
-fun metatarsus_N : N ;
-fun narcissus_N : N ;
-fun byssus_N : N ;
-fun meatus_N : N ;
-fun hiatus_N : N ;
-fun afflatus_N : N ;
-fun apparatus_N : N ;
-fun serratus_N : N ;
-fun stratus_N : N ;
-fun cirrostratus_N : N ;
-fun altostratus_N : N ;
-fun status_N : N ;
-fun cactus_N : N ;
-fun echinocactus_N : N ;
-fun conspectus_N : N ;
-fun prospectus_N : N ;
-fun rectus_N : N ;
-fun rictus_N : N ;
-fun fetus_N : N ;
-fun quietus_N : N ;
-fun foetus_N : N ;
-fun eptatretus_N : N ;
-fun habitus_N : N ;
-fun cubitus_N : N ;
-fun decubitus_N : N ;
-fun halitus_N : N ;
-fun tinnitus_N : N ;
-fun coitus_N : N ;
-fun introitus_N : N ;
-fun emeritus_N : N ;
-fun detritus_N : N ;
-fun pruritus_N : N ;
-fun propositus_N : N ;
-fun lotus_N : N ;
-fun melilotus_N : N ;
-fun macrotus_N : N ;
-fun eucalyptus_N : N ;
-fun abortus_N : N ;
-fun arbutus_N : N ;
-fun favus_N : N ;
-fun nexus_N : N ;
-fun ruckus_N : N ;
-fun religious_N : N ;
-fun rendezvous_N : N ;
-fun plexus_N : N ;
-fun jackstraws_N : N ;
-fun yaws_N : N ;
-fun clews_N : N ;
-fun news_N : N ;
-fun trews_N : N ;
-fun gallows_N : N ;
-fun bellows_N : N ;
-fun mews_N : N ;
-fun days_N : N ;
-fun schooldays_N : N ;
-fun ways_N : N ;
-fun longways_N : N ;
-fun hendiadys_N : N ;
-fun 'fleur-de-lys_N' : N ;
-fun chlamys_N : N ;
-fun phenacomys_N : N ;
-fun lepidobotrys_N : N ;
-fun breakaways_N : N ;
-fun 'coup d\'etat_N' : N ;
-fun imperfect_N : N ;
-fun 'corps de ballet_N' : N ;
-fun 'wagon-lit_N' : N ;
-fun occult_N : N ;
-fun gunpoint_N : N ;
-fun 'bon mot_N' : N ;
-fun overcast_N : N ;
-fun least_N : N ;
-fun midst_N : N ;
-fun 'chucker-out_N' : N ;
-fun output_N : N ;
-fun at_N : N ;
-fun bat_N : N ;
-fun sabbat_N : N ;
-fun dingbat_N : N ;
-fun brickbat_N : N ;
-fun combat_N : N ;
-fun wombat_N : N ;
-fun numbat_N : N ;
-fun acrobat_N : N ;
-fun cat_N : N ;
-fun 'civet-cat_N' : N ;
-fun 'tabby-cat_N' : N ;
-fun bobcat_N : N ;
-fun wildcat_N : N ;
-fun polecat_N : N ;
-fun magnificat_N : N ;
-fun hellcat_N : N ;
-fun tomcat_N : N ;
-fun scat_N : N ;
-fun requiescat_N : N ;
-fun muscat_N : N ;
-fun ducat_N : N ;
-fun copycat_N : N ;
-fun pussycat_N : N ;
-fun concordat_N : N ;
-fun samizdat_N : N ;
-fun beat_N : N ;
-fun 'up-beat_N' : N ;
-fun backbeat_N : N ;
-fun drumbeat_N : N ;
-fun downbeat_N : N ;
-fun upbeat_N : N ;
-fun heartbeat_N : N ;
-fun feat_N : N ;
-fun defeat_N : N ;
-fun heat_N : N ;
-fun 'blood-heat_N' : N ;
-fun 'steam-heat_N' : N ;
-fun cheat_N : N ;
-fun escheat_N : N ;
-fun wheat_N : N ;
-fun 'whole-wheat_N' : N ;
-fun buckwheat_N : N ;
-fun bleat_N : N ;
-fun cleat_N : N ;
-fun pleat_N : N ;
-fun meat_N : N ;
-fun 'sausage-meat_N' : N ;
-fun mincemeat_N : N ;
-fun forcemeat_N : N ;
-fun horsemeat_N : N ;
-fun sweetmeat_N : N ;
-fun peat_N : N ;
-fun repeat_N : N ;
-fun great_N : N ;
-fun threat_N : N ;
-fun treat_N : N ;
-fun retreat_N : N ;
-fun seat_N : N ;
-fun 'love-seat_N' : N ;
-fun 'ejector-seat_N' : N ;
-fun 'dicky-seat_N' : N ;
-fun 'country-seat_N' : N ;
-fun backseat_N : N ;
-fun countryseat_N : N ;
-fun teat_N : N ;
-fun caveat_N : N ;
-fun sweat_N : N ;
-fun fat_N : N ;
-fun butterfat_N : N ;
-fun gat_N : N ;
-fun nougat_N : N ;
-fun hat_N : N ;
-fun 'opera-hat_N' : N ;
-fun 'slouch-hat_N' : N ;
-fun chat_N : N ;
-fun 'chit-chat_N' : N ;
-fun stonechat_N : N ;
-fun backchat_N : N ;
-fun whinchat_N : N ;
-fun chitchat_N : N ;
-fun ghat_N : N ;
-fun sunhat_N : N ;
-fun fiat_N : N ;
-fun lariat_N : N ;
-fun commissariat_N : N ;
-fun proletariat_N : N ;
-fun lumpenproletariat_N : N ;
-fun secretariat_N : N ;
-fun kat_N : N ;
-fun zakat_N : N ;
-fun meerkat_N : N ;
-fun lat_N : N ;
-fun salat_N : N ;
-fun éclat_N : N ;
-fun flat_N : N ;
-fun plat_N : N ;
-fun splat_N : N ;
-fun slat_N : N ;
-fun mat_N : N ;
-fun 'prayer-mat_N' : N ;
-fun tablemat_N : N ;
-fun anastigmat_N : N ;
-fun diplomat_N : N ;
-fun dichromat_N : N ;
-fun monochromat_N : N ;
-fun automat_N : N ;
-fun format_N : N ;
-fun doormat_N : N ;
-fun manat_N : N ;
-fun gnat_N : N ;
-fun oat_N : N ;
-fun boat_N : N ;
-fun 'sea-boat_N' : N ;
-fun 'guard-boat_N' : N ;
-fun 'sauce-boat_N' : N ;
-fun 'pleasure-boat_N' : N ;
-fun 'sailing-boat_N' : N ;
-fun 'rowing-boat_N' : N ;
-fun 'torpedo-boat_N' : N ;
-fun 'packet-boat_N' : N ;
-fun 'pilot-boat_N' : N ;
-fun 'u-boat_N' : N ;
-fun 'gravy-boat_N' : N ;
-fun speedboat_N : N ;
-fun iceboat_N : N ;
-fun lifeboat_N : N ;
-fun whaleboat_N : N ;
-fun bareboat_N : N ;
-fun fireboat_N : N ;
-fun houseboat_N : N ;
-fun surfboat_N : N ;
-fun pigboat_N : N ;
-fun longboat_N : N ;
-fun tugboat_N : N ;
-fun keelboat_N : N ;
-fun mailboat_N : N ;
-fun sailboat_N : N ;
-fun steamboat_N : N ;
-fun bumboat_N : N ;
-fun gunboat_N : N ;
-fun powerboat_N : N ;
-fun motorboat_N : N ;
-fun catboat_N : N ;
-fun showboat_N : N ;
-fun rowboat_N : N ;
-fun jollyboat_N : N ;
-fun ferryboat_N : N ;
-fun coat_N : N ;
-fun 'frock-coat_N' : N ;
-fun 'tail-coat_N' : N ;
-fun 'sports-coat_N' : N ;
-fun 'dust-coat_N' : N ;
-fun redcoat_N : N ;
-fun housecoat_N : N ;
-fun bluecoat_N : N ;
-fun petticoat_N : N ;
-fun raincoat_N : N ;
-fun turncoat_N : N ;
-fun topcoat_N : N ;
-fun undercoat_N : N ;
-fun overcoat_N : N ;
-fun surcoat_N : N ;
-fun greatcoat_N : N ;
-fun waistcoat_N : N ;
-fun goat_N : N ;
-fun 'he-goat_N' : N ;
-fun 'she-goat_N' : N ;
-fun 'billy-goat_N' : N ;
-fun 'nanny-goat_N' : N ;
-fun scapegoat_N : N ;
-fun bloat_N : N ;
-fun float_N : N ;
-fun gloat_N : N ;
-fun moat_N : N ;
-fun 'serbo-croat_N' : N ;
-fun groat_N : N ;
-fun throat_N : N ;
-fun 'cut-throat_N' : N ;
-fun bluethroat_N : N ;
-fun cutthroat_N : N ;
-fun yellowthroat_N : N ;
-fun stoat_N : N ;
-fun pat_N : N ;
-fun spat_N : N ;
-fun rat_N : N ;
-fun 'water-rat_N' : N ;
-fun 'sewer-rat_N' : N ;
-fun carat_N : N ;
-fun baccarat_N : N ;
-fun karat_N : N ;
-fun brat_N : N ;
-fun firebrat_N : N ;
-fun democrat_N : N ;
-fun technocrat_N : N ;
-fun aristocrat_N : N ;
-fun autocrat_N : N ;
-fun plutocrat_N : N ;
-fun bureaucrat_N : N ;
-fun packrat_N : N ;
-fun muskrat_N : N ;
-fun sprat_N : N ;
-fun ziggurat_N : N ;
-fun tat_N : N ;
-fun 'rat-tat_N' : N ;
-fun 'rat-a-tat-tat_N' : N ;
-fun habitat_N : N ;
-fun rheostat_N : N ;
-fun bacteriostat_N : N ;
-fun coelostat_N : N ;
-fun hemostat_N : N ;
-fun thermostat_N : N ;
-fun pyrostat_N : N ;
-fun photostat_N : N ;
-fun cryostat_N : N ;
-fun paraquat_N : N ;
-fun kumquat_N : N ;
-fun loquat_N : N ;
-fun squat_N : N ;
-fun vat_N : N ;
-fun avadavat_N : N ;
-fun cravat_N : N ;
-fun swat_N : N ;
-fun 'fly-swat_N' : N ;
-fun bayat_N : N ;
-fun panchayat_N : N ;
-fun kyat_N : N ;
-fun debt_N : N ;
-fun doubt_N : N ;
-fun redoubt_N : N ;
-fun act_N : N ;
-fun redact_N : N ;
-fun autodidact_N : N ;
-fun fact_N : N ;
-fun artefact_N : N ;
-fun artifact_N : N ;
-fun pact_N : N ;
-fun impact_N : N ;
-fun compact_N : N ;
-fun subcompact_N : N ;
-fun cataract_N : N ;
-fun bract_N : N ;
-fun tesseract_N : N ;
-fun tract_N : N ;
-fun contract_N : N ;
-fun subcontract_N : N ;
-fun abstract_N : N ;
-fun extract_N : N ;
-fun tact_N : N ;
-fun contact_N : N ;
-fun defect_N : N ;
-fun prefect_N : N ;
-fun affect_N : N ;
-fun effect_N : N ;
-fun aftereffect_N : N ;
-fun pluperfect_N : N ;
-fun object_N : N ;
-fun subject_N : N ;
-fun reject_N : N ;
-fun project_N : N ;
-fun introject_N : N ;
-fun dialect_N : N ;
-fun neglect_N : N ;
-fun intellect_N : N ;
-fun collect_N : N ;
-fun idiolect_N : N ;
-fun aspect_N : N ;
-fun respect_N : N ;
-fun 'self-respect_N' : N ;
-fun disrespect_N : N ;
-fun prospect_N : N ;
-fun retrospect_N : N ;
-fun suspect_N : N ;
-fun sect_N : N ;
-fun insect_N : N ;
-fun architect_N : N ;
-fun addict_N : N ;
-fun edict_N : N ;
-fun interdict_N : N ;
-fun verdict_N : N ;
-fun relict_N : N ;
-fun derelict_N : N ;
-fun conflict_N : N ;
-fun apomict_N : N ;
-fun district_N : N ;
-fun convict_N : N ;
-fun precinct_N : N ;
-fun instinct_N : N ;
-fun adjunct_N : N ;
-fun ectoproct_N : N ;
-fun entoproct_N : N ;
-fun infarct_N : N ;
-fun duct_N : N ;
-fun 'bile-duct_N' : N ;
-fun viaduct_N : N ;
-fun adduct_N : N ;
-fun aqueduct_N : N ;
-fun oviduct_N : N ;
-fun conduct_N : N ;
-fun 'safe-conduct_N' : N ;
-fun misconduct_N : N ;
-fun product_N : N ;
-fun byproduct_N : N ;
-fun usufruct_N : N ;
-fun ddt_N : N ;
-fun bet_N : N ;
-fun 'place-bet_N' : N ;
-fun alphabet_N : N ;
-fun 'finger-alphabet_N' : N ;
-fun analphabet_N : N ;
-fun rabbet_N : N ;
-fun gibbet_N : N ;
-fun flibbertigibbet_N : N ;
-fun gobbet_N : N ;
-fun quodlibet_N : N ;
-fun barbet_N : N ;
-fun sherbet_N : N ;
-fun sorbet_N : N ;
-fun facet_N : N ;
-fun lancet_N : N ;
-fun avocet_N : N ;
-fun faucet_N : N ;
-fun cadet_N : N ;
-fun bidet_N : N ;
-fun beet_N : N ;
-fun sheet_N : N ;
-fun 'balance-sheet_N' : N ;
-fun 'charge-sheet_N' : N ;
-fun 'time-sheet_N' : N ;
-fun 'winding-sheet_N' : N ;
-fun 'dust-sheet_N' : N ;
-fun spreadsheet_N : N ;
-fun broadsheet_N : N ;
-fun groundsheet_N : N ;
-fun worksheet_N : N ;
-fun newssheet_N : N ;
-fun paysheet_N : N ;
-fun parakeet_N : N ;
-fun lorikeet_N : N ;
-fun skeet_N : N ;
-fun fleet_N : N ;
-fun gleet_N : N ;
-fun sleet_N : N ;
-fun meet_N : N ;
-fun helpmeet_N : N ;
-fun street_N : N ;
-fun sweet_N : N ;
-fun bittersweet_N : N ;
-fun tweet_N : N ;
-fun buffet_N : N ;
-fun get_N : N ;
-fun gadget_N : N ;
-fun fidget_N : N ;
-fun midget_N : N ;
-fun budget_N : N ;
-fun nugget_N : N ;
-fun drugget_N : N ;
-fun parget_N : N ;
-fun target_N : N ;
-fun gorget_N : N ;
-fun cachet_N : N ;
-fun sachet_N : N ;
-fun planchet_N : N ;
-fun ricochet_N : N ;
-fun crochet_N : N ;
-fun hatchet_N : N ;
-fun latchet_N : N ;
-fun matchet_N : N ;
-fun ratchet_N : N ;
-fun crotchet_N : N ;
-fun nymphet_N : N ;
-fun prophet_N : N ;
-fun freshet_N : N ;
-fun epithet_N : N ;
-fun diet_N : N ;
-fun quiet_N : N ;
-fun disquiet_N : N ;
-fun Soviet_N : N ;
-fun jet_N : N ;
-fun ramjet_N : N ;
-fun fanjet_N : N ;
-fun twinjet_N : N ;
-fun jumbojet_N : N ;
-fun turbojet_N : N ;
-fun propjet_N : N ;
-fun jacket_N : N ;
-fun 'pea-jacket_N' : N ;
-fun 'life-jacket_N' : N ;
-fun 'blue-jacket_N' : N ;
-fun 'leather-jacket_N' : N ;
-fun 'dinner-jacket_N' : N ;
-fun 'water-jacket_N' : N ;
-fun 'mess-jacket_N' : N ;
-fun 'sports-jacket_N' : N ;
-fun 'dust-jacket_N' : N ;
-fun 'donkey-jacket_N' : N ;
-fun 'monkey-jacket_N' : N ;
-fun bluejacket_N : N ;
-fun leatherjacket_N : N ;
-fun straitjacket_N : N ;
-fun placket_N : N ;
-fun packet_N : N ;
-fun 'pay-packet_N' : N ;
-fun racket_N : N ;
-fun bracket_N : N ;
-fun 'age-bracket_N' : N ;
-fun 'gas-bracket_N' : N ;
-fun becket_N : N ;
-fun thicket_N : N ;
-fun picket_N : N ;
-fun cricket_N : N ;
-fun pricket_N : N ;
-fun ticket_N : N ;
-fun 'season-ticket_N' : N ;
-fun 'pawn-ticket_N' : N ;
-fun wicket_N : N ;
-fun docket_N : N ;
-fun locket_N : N ;
-fun pocket_N : N ;
-fun 'patch-pocket_N' : N ;
-fun 'hip-pocket_N' : N ;
-fun pickpocket_N : N ;
-fun rocket_N : N ;
-fun 'space-rocket_N' : N ;
-fun brocket_N : N ;
-fun crocket_N : N ;
-fun retrorocket_N : N ;
-fun sprocket_N : N ;
-fun skyrocket_N : N ;
-fun socket_N : N ;
-fun bucket_N : N ;
-fun blanket_N : N ;
-fun trinket_N : N ;
-fun junket_N : N ;
-fun market_N : N ;
-fun supermarket_N : N ;
-fun hypermarket_N : N ;
-fun newmarket_N : N ;
-fun basket_N : N ;
-fun 'waste-paper-basket_N' : N ;
-fun 'litter-basket_N' : N ;
-fun 'clothes-basket_N' : N ;
-fun breadbasket_N : N ;
-fun wastebasket_N : N ;
-fun workbasket_N : N ;
-fun casket_N : N ;
-fun gasket_N : N ;
-fun brisket_N : N ;
-fun musket_N : N ;
-fun let_N : N ;
-fun chalet_N : N ;
-fun valet_N : N ;
-fun tablet_N : N ;
-fun giblet_N : N ;
-fun driblet_N : N ;
-fun bomblet_N : N ;
-fun goblet_N : N ;
-fun doublet_N : N ;
-fun shrublet_N : N ;
-fun circlet_N : N ;
-fun bracelet_N : N ;
-fun lancelet_N : N ;
-fun rondelet_N : N ;
-fun treelet_N : N ;
-fun omelet_N : N ;
-fun drupelet_N : N ;
-fun corselet_N : N ;
-fun platelet_N : N ;
-fun mantelet_N : N ;
-fun eyelet_N : N ;
-fun leaflet_N : N ;
-fun aglet_N : N ;
-fun eaglet_N : N ;
-fun piglet_N : N ;
-fun kinglet_N : N ;
-fun ringlet_N : N ;
-fun singlet_N : N ;
-fun branchlet_N : N ;
-fun pamphlet_N : N ;
-fun filet_N : N ;
-fun toilet_N : N ;
-fun necklet_N : N ;
-fun anklet_N : N ;
-fun booklet_N : N ;
-fun brooklet_N : N ;
-fun auklet_N : N ;
-fun ballet_N : N ;
-fun mallet_N : N ;
-fun pallet_N : N ;
-fun sallet_N : N ;
-fun wallet_N : N ;
-fun pellet_N : N ;
-fun billet_N : N ;
-fun fillet_N : N ;
-fun skillet_N : N ;
-fun millet_N : N ;
-fun willet_N : N ;
-fun collet_N : N ;
-fun bullet_N : N ;
-fun gullet_N : N ;
-fun mullet_N : N ;
-fun pullet_N : N ;
-fun camlet_N : N ;
-fun streamlet_N : N ;
-fun hamlet_N : N ;
-fun gimlet_N : N ;
-fun armlet_N : N ;
-fun inlet_N : N ;
-fun flageolet_N : N ;
-fun violet_N : N ;
-fun ultraviolet_N : N ;
-fun chaplet_N : N ;
-fun triplet_N : N ;
-fun templet_N : N ;
-fun droplet_N : N ;
-fun applet_N : N ;
-fun couplet_N : N ;
-fun quadruplet_N : N ;
-fun quintuplet_N : N ;
-fun scarlet_N : N ;
-fun starlet_N : N ;
-fun varlet_N : N ;
-fun coverlet_N : N ;
-fun haslet_N : N ;
-fun islet_N : N ;
-fun corslet_N : N ;
-fun flatlet_N : N ;
-fun swiftlet_N : N ;
-fun fruitlet_N : N ;
-fun gantlet_N : N ;
-fun plantlet_N : N ;
-fun frontlet_N : N ;
-fun gauntlet_N : N ;
-fun rootlet_N : N ;
-fun tartlet_N : N ;
-fun wristlet_N : N ;
-fun cutlet_N : N ;
-fun nutlet_N : N ;
-fun outlet_N : N ;
-fun epaulet_N : N ;
-fun piculet_N : N ;
-fun amulet_N : N ;
-fun annulet_N : N ;
-fun rivulet_N : N ;
-fun owlet_N : N ;
-fun playlet_N : N ;
-fun stylet_N : N ;
-fun helmet_N : N ;
-fun 'space-helmet_N' : N ;
-fun 'crash-helmet_N' : N ;
-fun 'sun-helmet_N' : N ;
-fun 'gas-helmet_N' : N ;
-fun pelmet_N : N ;
-fun plummet_N : N ;
-fun comet_N : N ;
-fun armet_N : N ;
-fun gourmet_N : N ;
-fun kismet_N : N ;
-fun calumet_N : N ;
-fun net_N : N ;
-fun 'landing-net_N' : N ;
-fun 'trawl-net_N' : N ;
-fun 'mosquito-net_N' : N ;
-fun 'drift-net_N' : N ;
-fun toucanet_N : N ;
-fun planet_N : N ;
-fun intranet_N : N ;
-fun wordnet_N : N ;
-fun sarcenet_N : N ;
-fun genet_N : N ;
-fun tenet_N : N ;
-fun magnet_N : N ;
-fun diamagnet_N : N ;
-fun paramagnet_N : N ;
-fun electromagnet_N : N ;
-fun dragnet_N : N ;
-fun signet_N : N ;
-fun cygnet_N : N ;
-fun fishnet_N : N ;
-fun cabinet_N : N ;
-fun stockinet_N : N ;
-fun estaminet_N : N ;
-fun spinet_N : N ;
-fun clarinet_N : N ;
-fun basinet_N : N ;
-fun bassinet_N : N ;
-fun satinet_N : N ;
-fun martinet_N : N ;
-fun gannet_N : N ;
-fun bennet_N : N ;
-fun jennet_N : N ;
-fun rennet_N : N ;
-fun linnet_N : N ;
-fun bonnet_N : N ;
-fun 'poke-bonnet_N' : N ;
-fun bluebonnet_N : N ;
-fun sunbonnet_N : N ;
-fun sonnet_N : N ;
-fun punnet_N : N ;
-fun jaconet_N : N ;
-fun dragonet_N : N ;
-fun lionet_N : N ;
-fun baronet_N : N ;
-fun coronet_N : N ;
-fun bayonet_N : N ;
-fun garnet_N : N ;
-fun ethernet_N : N ;
-fun internet_N : N ;
-fun hairnet_N : N ;
-fun cornet_N : N ;
-fun hornet_N : N ;
-fun brunet_N : N ;
-fun poet_N : N ;
-fun pet_N : N ;
-fun parapet_N : N ;
-fun pipet_N : N ;
-fun limpet_N : N ;
-fun crumpet_N : N ;
-fun trumpet_N : N ;
-fun 'speaking-trumpet_N' : N ;
-fun 'ear-trumpet_N' : N ;
-fun strumpet_N : N ;
-fun lappet_N : N ;
-fun tappet_N : N ;
-fun whippet_N : N ;
-fun snippet_N : N ;
-fun tippet_N : N ;
-fun moppet_N : N ;
-fun poppet_N : N ;
-fun puppet_N : N ;
-fun carpet_N : N ;
-fun 'stair-carpet_N' : N ;
-fun cabaret_N : N ;
-fun caret_N : N ;
-fun claret_N : N ;
-fun imaret_N : N ;
-fun minaret_N : N ;
-fun lazaret_N : N ;
-fun secret_N : N ;
-fun beret_N : N ;
-fun solleret_N : N ;
-fun swimmeret_N : N ;
-fun leveret_N : N ;
-fun fret_N : N ;
-fun pomfret_N : N ;
-fun egret_N : N ;
-fun regret_N : N ;
-fun aigret_N : N ;
-fun taboret_N : N ;
-fun floret_N : N ;
-fun garret_N : N ;
-fun ferret_N : N ;
-fun skirret_N : N ;
-fun turret_N : N ;
-fun set_N : N ;
-fun 'tea-set_N' : N ;
-fun 'receiving-set_N' : N ;
-fun 'radio-set_N' : N ;
-fun 'dinner-set_N' : N ;
-fun subset_N : N ;
-fun headset_N : N ;
-fun handset_N : N ;
-fun boneset_N : N ;
-fun reset_N : N ;
-fun offset_N : N ;
-fun quickset_N : N ;
-fun inset_N : N ;
-fun onset_N : N ;
-fun quonset_N : N ;
-fun sunset_N : N ;
-fun synset_N : N ;
-fun closet_N : N ;
-fun 'china-closet_N' : N ;
-fun 'earth-closet_N' : N ;
-fun 'water-closet_N' : N ;
-fun marmoset_N : N ;
-fun upset_N : N ;
-fun gearset_N : N ;
-fun corset_N : N ;
-fun asset_N : N ;
-fun basset_N : N ;
-fun tasset_N : N ;
-fun knesset_N : N ;
-fun posset_N : N ;
-fun gusset_N : N ;
-fun russet_N : N ;
-fun outset_N : N ;
-fun octet_N : N ;
-fun quintet_N : N ;
-fun motet_N : N ;
-fun septet_N : N ;
-fun quartet_N : N ;
-fun sestet_N : N ;
-fun sextet_N : N ;
-fun duet_N : N ;
-fun baguet_N : N ;
-fun minuet_N : N ;
-fun racquet_N : N ;
-fun tourniquet_N : N ;
-fun piquet_N : N ;
-fun briquet_N : N ;
-fun sobriquet_N : N ;
-fun soubriquet_N : N ;
-fun banquet_N : N ;
-fun paroquet_N : N ;
-fun croquet_N : N ;
-fun parquet_N : N ;
-fun casquet_N : N ;
-fun bouquet_N : N ;
-fun cruet_N : N ;
-fun suet_N : N ;
-fun vet_N : N ;
-fun brevet_N : N ;
-fun civet_N : N ;
-fun rivet_N : N ;
-fun grivet_N : N ;
-fun privet_N : N ;
-fun trivet_N : N ;
-fun swivet_N : N ;
-fun velvet_N : N ;
-fun vervet_N : N ;
-fun curvet_N : N ;
-fun duvet_N : N ;
-fun wet_N : N ;
-fun haft_N : N ;
-fun shaft_N : N ;
-fun 'air-shaft_N' : N ;
-fun mineshaft_N : N ;
-fun driveshaft_N : N ;
-fun crankshaft_N : N ;
-fun camshaft_N : N ;
-fun aftershaft_N : N ;
-fun raft_N : N ;
-fun 'life-raft_N' : N ;
-fun craft_N : N ;
-fun 'pleasure-craft_N' : N ;
-fun woodcraft_N : N ;
-fun tradecraft_N : N ;
-fun stagecraft_N : N ;
-fun needlecraft_N : N ;
-fun housecraft_N : N ;
-fun statecraft_N : N ;
-fun witchcraft_N : N ;
-fun handicraft_N : N ;
-fun watercraft_N : N ;
-fun antiaircraft_N : N ;
-fun priestcraft_N : N ;
-fun draft_N : N ;
-fun 'bank-draft_N' : N ;
-fun redraft_N : N ;
-fun downdraft_N : N ;
-fun updraft_N : N ;
-fun overdraft_N : N ;
-fun graft_N : N ;
-fun 'skin-graft_N' : N ;
-fun homograft_N : N ;
-fun heterograft_N : N ;
-fun autograft_N : N ;
-fun kraft_N : N ;
-fun waft_N : N ;
-fun eft_N : N ;
-fun heft_N : N ;
-fun theft_N : N ;
-fun left_N : N ;
-fun cleft_N : N ;
-fun weft_N : N ;
-fun gift_N : N ;
-fun shift_N : N ;
-fun makeshift_N : N ;
-fun downshift_N : N ;
-fun gearshift_N : N ;
-fun lift_N : N ;
-fun 'face-lift_N' : N ;
-fun 'ski-lift_N' : N ;
-fun 'chair-lift_N' : N ;
-fun forklift_N : N ;
-fun uplift_N : N ;
-fun airlift_N : N ;
-fun chairlift_N : N ;
-fun weightlift_N : N ;
-fun rift_N : N ;
-fun drift_N : N ;
-fun spindrift_N : N ;
-fun snowdrift_N : N ;
-fun festschrift_N : N ;
-fun shrift_N : N ;
-fun thrift_N : N ;
-fun spendthrift_N : N ;
-fun swift_N : N ;
-fun delft_N : N ;
-fun loft_N : N ;
-fun 'organ-loft_N' : N ;
-fun cockloft_N : N ;
-fun hayloft_N : N ;
-fun croft_N : N ;
-fun tuft_N : N ;
-fun candytuft_N : N ;
-fun baht_N : N ;
-fun fastnacht_N : N ;
-fun yacht_N : N ;
-fun straight_N : N ;
-fun bight_N : N ;
-fun height_N : N ;
-fun sleight_N : N ;
-fun freight_N : N ;
-fun weight_N : N ;
-fun hundredweight_N : N ;
-fun makeweight_N : N ;
-fun middleweight_N : N ;
-fun bantamweight_N : N ;
-fun featherweight_N : N ;
-fun paperweight_N : N ;
-fun welterweight_N : N ;
-fun counterweight_N : N ;
-fun overweight_N : N ;
-fun lightweight_N : N ;
-fun flyweight_N : N ;
-fun pennyweight_N : N ;
-fun heavyweight_N : N ;
-fun 'light-heavyweight_N' : N ;
-fun fight_N : N ;
-fun 'prize-fight_N' : N ;
-fun 'pillow-fight_N' : N ;
-fun prizefight_N : N ;
-fun dogfight_N : N ;
-fun cockfight_N : N ;
-fun bullfight_N : N ;
-fun bunfight_N : N ;
-fun gunfight_N : N ;
-fun fistfight_N : N ;
-fun light_N : N ;
-fun 'arc-light_N' : N ;
-fun 'riding-light_N' : N ;
-fun 'tail-light_N' : N ;
-fun 'beacon-light_N' : N ;
-fun 'night-light_N' : N ;
-fun 'pilot-light_N' : N ;
-fun blight_N : N ;
-fun deadlight_N : N ;
-fun headlight_N : N ;
-fun delight_N : N ;
-fun sidelight_N : N ;
-fun candlelight_N : N ;
-fun limelight_N : N ;
-fun firelight_N : N ;
-fun flight_N : N ;
-fun spaceflight_N : N ;
-fun overflight_N : N ;
-fun searchlight_N : N ;
-fun torchlight_N : N ;
-fun highlight_N : N ;
-fun flashlight_N : N ;
-fun rushlight_N : N ;
-fun twilight_N : N ;
-fun jacklight_N : N ;
-fun taillight_N : N ;
-fun fanlight_N : N ;
-fun penlight_N : N ;
-fun moonlight_N : N ;
-fun sunlight_N : N ;
-fun plight_N : N ;
-fun lamplight_N : N ;
-fun stoplight_N : N ;
-fun starlight_N : N ;
-fun quarterlight_N : N ;
-fun slight_N : N ;
-fun gaslight_N : N ;
-fun streetlight_N : N ;
-fun spotlight_N : N ;
-fun daylight_N : N ;
-fun skylight_N : N ;
-fun might_N : N ;
-fun night_N : N ;
-fun 'twelfth-night_N' : N ;
-fun 'guest-night_N' : N ;
-fun midnight_N : N ;
-fun knight_N : N ;
-fun 'carpet-knight_N' : N ;
-fun weeknight_N : N ;
-fun tonight_N : N ;
-fun fortnight_N : N ;
-fun right_N : N ;
-fun fright_N : N ;
-fun birthright_N : N ;
-fun upright_N : N ;
-fun wright_N : N ;
-fun wheelwright_N : N ;
-fun millwright_N : N ;
-fun wagonwright_N : N ;
-fun shipwright_N : N ;
-fun cartwright_N : N ;
-fun plowwright_N : N ;
-fun playwright_N : N ;
-fun copyright_N : N ;
-fun sight_N : N ;
-fun 'bomb-sight_N' : N ;
-fun bombsight_N : N ;
-fun hindsight_N : N ;
-fun foresight_N : N ;
-fun eyesight_N : N ;
-fun insight_N : N ;
-fun gunsight_N : N ;
-fun oversight_N : N ;
-fun sticktight_N : N ;
-fun wight_N : N ;
-fun aught_N : N ;
-fun onslaught_N : N ;
-fun naught_N : N ;
-fun 'good-for-naught_N' : N ;
-fun draught_N : N ;
-fun 'sleeping-draught_N' : N ;
-fun thought_N : N ;
-fun 'free-thought_N' : N ;
-fun forethought_N : N ;
-fun afterthought_N : N ;
-fun nought_N : N ;
-fun dreadnought_N : N ;
-fun drought_N : N ;
-fun bait_N : N ;
-fun 'ground-bait_N' : N ;
-fun whitebait_N : N ;
-fun crowbait_N : N ;
-fun parfait_N : N ;
-fun gait_N : N ;
-fun 'cafe-au-lait_N' : N ;
-fun plait_N : N ;
-fun krait_N : N ;
-fun trait_N : N ;
-fun portrait_N : N ;
-fun strait_N : N ;
-fun wait_N : N ;
-fun bit_N : N ;
-fun 'snaffle-bit_N' : N ;
-fun 'centre-bit_N' : N ;
-fun megabit_N : N ;
-fun gigabit_N : N ;
-fun habit_N : N ;
-fun 'riding-habit_N' : N ;
-fun terabit_N : N ;
-fun petabit_N : N ;
-fun zettabit_N : N ;
-fun yottabit_N : N ;
-fun exabit_N : N ;
-fun rabbit_N : N ;
-fun jackrabbit_N : N ;
-fun hobbit_N : N ;
-fun tidbit_N : N ;
-fun debit_N : N ;
-fun rarebit_N : N ;
-fun frogbit_N : N ;
-fun mebibit_N : N ;
-fun pebibit_N : N ;
-fun tebibit_N : N ;
-fun zebibit_N : N ;
-fun gibibit_N : N ;
-fun kibibit_N : N ;
-fun yobibit_N : N ;
-fun exbibit_N : N ;
-fun exhibit_N : N ;
-fun hawkbit_N : N ;
-fun ambit_N : N ;
-fun gambit_N : N ;
-fun henbit_N : N ;
-fun kilobit_N : N ;
-fun orbit_N : N ;
-fun cucurbit_N : N ;
-fun titbit_N : N ;
-fun cubit_N : N ;
-fun deficit_N : N ;
-fun adit_N : N ;
-fun credit_N : N ;
-fun discredit_N : N ;
-fun bandit_N : N ;
-fun pundit_N : N ;
-fun audit_N : N ;
-fun plaudit_N : N ;
-fun deceit_N : N ;
-fun conceit_N : N ;
-fun counterfeit_N : N ;
-fun forfeit_N : N ;
-fun surfeit_N : N ;
-fun spinnbarkeit_N : N ;
-fun fit_N : N ;
-fun benefit_N : N ;
-fun 'sick-benefit_N' : N ;
-fun refit_N : N ;
-fun soffit_N : N ;
-fun comfit_N : N ;
-fun confit_N : N ;
-fun profit_N : N ;
-fun retrofit_N : N ;
-fun misfit_N : N ;
-fun outfit_N : N ;
-fun ringgit_N : N ;
-fun digit_N : N ;
-fun hit_N : N ;
-fun chit_N : N ;
-fun shit_N : N ;
-fun bullshit_N : N ;
-fun chickenshit_N : N ;
-fun whit_N : N ;
-fun kit_N : N ;
-fun identikit_N : N ;
-fun skit_N : N ;
-fun flit_N : N ;
-fun split_N : N ;
-fun slit_N : N ;
-fun remit_N : N ;
-fun limit_N : N ;
-fun 'speed-limit_N' : N ;
-fun 'time-limit_N' : N ;
-fun summit_N : N ;
-fun vomit_N : N ;
-fun hermit_N : N ;
-fun permit_N : N ;
-fun nit_N : N ;
-fun knit_N : N ;
-fun sennit_N : N ;
-fun snit_N : N ;
-fun unit_N : N ;
-fun whodunit_N : N ;
-fun dacoit_N : N ;
-fun exploit_N : N ;
-fun introit_N : N ;
-fun quoit_N : N ;
-fun pit_N : N ;
-fun 'stone-pit_N' : N ;
-fun 'saw-pit_N' : N ;
-fun fleapit_N : N ;
-fun sandpit_N : N ;
-fun pipit_N : N ;
-fun cockpit_N : N ;
-fun chalkpit_N : N ;
-fun coalpit_N : N ;
-fun pulpit_N : N ;
-fun armpit_N : N ;
-fun spit_N : N ;
-fun turnspit_N : N ;
-fun cesspit_N : N ;
-fun sawpit_N : N ;
-fun brit_N : N ;
-fun hematocrit_N : N ;
-fun merit_N : N ;
-fun demerit_N : N ;
-fun preterit_N : N ;
-fun grit_N : N ;
-fun spirit_N : N ;
-fun 'party-spirit_N' : N ;
-fun sanskrit_N : N ;
-fun culprit_N : N ;
-fun sprit_N : N ;
-fun esprit_N : N ;
-fun bowsprit_N : N ;
-fun writ_N : N ;
-fun bedsit_N : N ;
-fun visit_N : N ;
-fun transit_N : N ;
-fun deposit_N : N ;
-fun 'safe-deposit_N' : N ;
-fun tit_N : N ;
-fun bushtit_N : N ;
-fun tomtit_N : N ;
-fun circuit_N : N ;
-fun 'short-circuit_N' : N ;
-fun biscuit_N : N ;
-fun 'soda-biscuit_N' : N ;
-fun 'dog-biscuit_N' : N ;
-fun 'water-biscuit_N' : N ;
-fun conduit_N : N ;
-fun recruit_N : N ;
-fun fruit_N : N ;
-fun 'stone-fruit_N' : N ;
-fun jackfruit_N : N ;
-fun suit_N : N ;
-fun 'zoot suit_N' : N ;
-fun 'lounge-suit_N' : N ;
-fun 'bathing-suit_N' : N ;
-fun 'diving-suit_N' : N ;
-fun spacesuit_N : N ;
-fun jesuit_N : N ;
-fun swimsuit_N : N ;
-fun sunsuit_N : N ;
-fun boilersuit_N : N ;
-fun countersuit_N : N ;
-fun pursuit_N : N ;
-fun lawsuit_N : N ;
-fun snowsuit_N : N ;
-fun playsuit_N : N ;
-fun davit_N : N ;
-fun affidavit_N : N ;
-fun aquavit_N : N ;
-fun wit_N : N ;
-fun godwit_N : N ;
-fun peewit_N : N ;
-fun pewit_N : N ;
-fun halfwit_N : N ;
-fun dimwit_N : N ;
-fun twit_N : N ;
-fun nitwit_N : N ;
-fun exit_N : N ;
-fun 'ipse dixit_N' : N ;
-fun cobalt_N : N ;
-fun halt_N : N ;
-fun asphalt_N : N ;
-fun malt_N : N ;
-fun salt_N : N ;
-fun 'pepper-and-salt_N' : N ;
-fun 'rock-salt_N' : N ;
-fun basalt_N : N ;
-fun gestalt_N : N ;
-fun belt_N : N ;
-fun 'cartridge-belt_N' : N ;
-fun 'driving-belt_N' : N ;
-fun 'fan-belt_N' : N ;
-fun 'conveyer-belt_N' : N ;
-fun 'seat-belt_N' : N ;
-fun 'safety-belt_N' : N ;
-fun lifebelt_N : N ;
-fun greenbelt_N : N ;
-fun celt_N : N ;
-fun felt_N : N ;
-fun underfelt_N : N ;
-fun kelt_N : N ;
-fun smelt_N : N ;
-fun jacksmelt_N : N ;
-fun pelt_N : N ;
-fun spelt_N : N ;
-fun welt_N : N ;
-fun gilt_N : N ;
-fun hilt_N : N ;
-fun jilt_N : N ;
-fun kilt_N : N ;
-fun lilt_N : N ;
-fun milt_N : N ;
-fun silt_N : N ;
-fun tilt_N : N ;
-fun stilt_N : N ;
-fun guilt_N : N ;
-fun bloodguilt_N : N ;
-fun quilt_N : N ;
-fun wilt_N : N ;
-fun bolt_N : N ;
-fun 'safety-bolt_N' : N ;
-fun kingbolt_N : N ;
-fun thunderbolt_N : N ;
-fun colt_N : N ;
-fun dolt_N : N ;
-fun porkholt_N : N ;
-fun jolt_N : N ;
-fun molt_N : N ;
-fun volt_N : N ;
-fun abvolt_N : N ;
-fun revolt_N : N ;
-fun millivolt_N : N ;
-fun picovolt_N : N ;
-fun kilovolt_N : N ;
-fun nanovolt_N : N ;
-fun microvolt_N : N ;
-fun femtovolt_N : N ;
-fun fault_N : N ;
-fun default_N : N ;
-fun footfault_N : N ;
-fun somersault_N : N ;
-fun assault_N : N ;
-fun vault_N : N ;
-fun 'pole-vault_N' : N ;
-fun cult_N : N ;
-fun adult_N : N ;
-fun tumult_N : N ;
-fun penult_N : N ;
-fun antepenult_N : N ;
-fun moult_N : N ;
-fun catapult_N : N ;
-fun result_N : N ;
-fun insult_N : N ;
-fun nt_N : N ;
-fun ant_N : N ;
-fun cant_N : N ;
-fun desiccant_N : N ;
-fun secant_N : N ;
-fun cosecant_N : N ;
-fun mendicant_N : N ;
-fun applicant_N : N ;
-fun supplicant_N : N ;
-fun communicant_N : N ;
-fun lubricant_N : N ;
-fun vesicant_N : N ;
-fun intoxicant_N : N ;
-fun descant_N : N ;
-fun pedant_N : N ;
-fun confidant_N : N ;
-fun oxidant_N : N ;
-fun antioxidant_N : N ;
-fun commandant_N : N ;
-fun ascendant_N : N ;
-fun descendant_N : N ;
-fun defendant_N : N ;
-fun codefendant_N : N ;
-fun pendant_N : N ;
-fun dependant_N : N ;
-fun attendant_N : N ;
-fun fondant_N : N ;
-fun retardant_N : N ;
-fun mordant_N : N ;
-fun pageant_N : N ;
-fun sergeant_N : N ;
-fun serjeant_N : N ;
-fun recreant_N : N ;
-fun miscreant_N : N ;
-fun bouffant_N : N ;
-fun infant_N : N ;
-fun termagant_N : N ;
-fun congregant_N : N ;
-fun fumigant_N : N ;
-fun litigant_N : N ;
-fun chant_N : N ;
-fun bacchant_N : N ;
-fun penchant_N : N ;
-fun merchant_N : N ;
-fun elephant_N : N ;
-fun 'rogue-elephant_N' : N ;
-fun sycophant_N : N ;
-fun officiant_N : N ;
-fun mediant_N : N ;
-fun submediant_N : N ;
-fun affiant_N : N ;
-fun giant_N : N ;
-fun supergiant_N : N ;
-fun defoliant_N : N ;
-fun suppliant_N : N ;
-fun variant_N : N ;
-fun invariant_N : N ;
-fun euphoriant_N : N ;
-fun deviant_N : N ;
-fun sealant_N : N ;
-fun inhalant_N : N ;
-fun assailant_N : N ;
-fun sibilant_N : N ;
-fun gallant_N : N ;
-fun topgallant_N : N ;
-fun flagellant_N : N ;
-fun propellant_N : N ;
-fun appellant_N : N ;
-fun coolant_N : N ;
-fun plant_N : N ;
-fun 'rock-plant_N' : N ;
-fun 'cotton-plant_N' : N ;
-fun leadplant_N : N ;
-fun pieplant_N : N ;
-fun houseplant_N : N ;
-fun eggplant_N : N ;
-fun implant_N : N ;
-fun transplant_N : N ;
-fun xenotransplant_N : N ;
-fun slant_N : N ;
-fun inoculant_N : N ;
-fun coagulant_N : N ;
-fun anticoagulant_N : N ;
-fun stimulant_N : N ;
-fun postulant_N : N ;
-fun adamant_N : N ;
-fun polysemant_N : N ;
-fun claimant_N : N ;
-fun informant_N : N ;
-fun tenant_N : N ;
-fun cotenant_N : N ;
-fun lieutenant_N : N ;
-fun sublieutenant_N : N ;
-fun revenant_N : N ;
-fun covenant_N : N ;
-fun complainant_N : N ;
-fun recombinant_N : N ;
-fun contaminant_N : N ;
-fun dominant_N : N ;
-fun subdominant_N : N ;
-fun determinant_N : N ;
-fun illuminant_N : N ;
-fun ruminant_N : N ;
-fun remnant_N : N ;
-fun pennant_N : N ;
-fun sonant_N : N ;
-fun consonant_N : N ;
-fun pant_N : N ;
-fun participant_N : N ;
-fun nonparticipant_N : N ;
-fun occupant_N : N ;
-fun rant_N : N ;
-fun brant_N : N ;
-fun celebrant_N : N ;
-fun quadrant_N : N ;
-fun hydrant_N : N ;
-fun refrigerant_N : N ;
-fun itinerant_N : N ;
-fun adulterant_N : N ;
-fun grant_N : N ;
-fun vagrant_N : N ;
-fun migrant_N : N ;
-fun emigrant_N : N ;
-fun immigrant_N : N ;
-fun aspirant_N : N ;
-fun antiperspirant_N : N ;
-fun deodorant_N : N ;
-fun cormorant_N : N ;
-fun expectorant_N : N ;
-fun warrant_N : N ;
-fun 'dividend-warrant_N' : N ;
-fun 'search-warrant_N' : N ;
-fun 'death-warrant_N' : N ;
-fun aberrant_N : N ;
-fun currant_N : N ;
-fun blackcurrant_N : N ;
-fun entrant_N : N ;
-fun registrant_N : N ;
-fun ministrant_N : N ;
-fun restaurant_N : N ;
-fun denaturant_N : N ;
-fun tyrant_N : N ;
-fun malfeasant_N : N ;
-fun pheasant_N : N ;
-fun peasant_N : N ;
-fun anticonvulsant_N : N ;
-fun antidepressant_N : N ;
-fun suppressant_N : N ;
-fun immunosuppressant_N : N ;
-fun discussant_N : N ;
-fun recusant_N : N ;
-fun combatant_N : N ;
-fun noncombatant_N : N ;
-fun retreatant_N : N ;
-fun supernatant_N : N ;
-fun reactant_N : N ;
-fun disinfectant_N : N ;
-fun humectant_N : N ;
-fun octant_N : N ;
-fun inhabitant_N : N ;
-fun militant_N : N ;
-fun concomitant_N : N ;
-fun precipitant_N : N ;
-fun irritant_N : N ;
-fun counterirritant_N : N ;
-fun visitant_N : N ;
-fun annuitant_N : N ;
-fun resultant_N : N ;
-fun consultant_N : N ;
-fun accountant_N : N ;
-fun decongestant_N : N ;
-fun contestant_N : N ;
-fun protestant_N : N ;
-fun assistant_N : N ;
-fun 'shop-assistant_N' : N ;
-fun instant_N : N ;
-fun constant_N : N ;
-fun executant_N : N ;
-fun adjutant_N : N ;
-fun dilutant_N : N ;
-fun pollutant_N : N ;
-fun mutant_N : N ;
-fun disputant_N : N ;
-fun sextant_N : N ;
-fun oxtant_N : N ;
-fun aliquant_N : N ;
-fun truant_N : N ;
-fun savant_N : N ;
-fun 'tableau vivant_N' : N ;
-fun servant_N : N ;
-fun 'body-servant_N' : N ;
-fun maidservant_N : N ;
-fun manservant_N : N ;
-fun adjuvant_N : N ;
-fun want_N : N ;
-fun relaxant_N : N ;
-fun clairvoyant_N : N ;
-fun bezant_N : N ;
-fun bent_N : N ;
-fun incumbent_N : N ;
-fun sorbent_N : N ;
-fun absorbent_N : N ;
-fun adsorbent_N : N ;
-fun cent_N : N ;
-fun accent_N : N ;
-fun demulcent_N : N ;
-fun docent_N : N ;
-fun innocent_N : N ;
-fun scent_N : N ;
-fun ascent_N : N ;
-fun descent_N : N ;
-fun convalescent_N : N ;
-fun adolescent_N : N ;
-fun crescent_N : N ;
-fun fluorescent_N : N ;
-fun abducent_N : N ;
-fun dent_N : N ;
-fun decadent_N : N ;
-fun precedent_N : N ;
-fun antecedent_N : N ;
-fun accident_N : N ;
-fun incident_N : N ;
-fun trident_N : N ;
-fun resident_N : N ;
-fun nonresident_N : N ;
-fun president_N : N ;
-fun dissident_N : N ;
-fun ascendent_N : N ;
-fun dependent_N : N ;
-fun independent_N : N ;
-fun superintendent_N : N ;
-fun indent_N : N ;
-fun respondent_N : N ;
-fun 'co-respondent_N' : N ;
-fun corespondent_N : N ;
-fun correspondent_N : N ;
-fun rodent_N : N ;
-fun student_N : N ;
-fun gent_N : N ;
-fun agent_N : N ;
-fun 'land-agent_N' : N ;
-fun 'shipping-agent_N' : N ;
-fun 'press-agent_N' : N ;
-fun reagent_N : N ;
-fun newsagent_N : N ;
-fun regent_N : N ;
-fun tangent_N : N ;
-fun cotangent_N : N ;
-fun astringent_N : N ;
-fun contingent_N : N ;
-fun argent_N : N ;
-fun detergent_N : N ;
-fun insurgent_N : N ;
-fun rubefacient_N : N ;
-fun abortifacient_N : N ;
-fun coefficient_N : N ;
-fun ancient_N : N ;
-fun gradient_N : N ;
-fun expedient_N : N ;
-fun ingredient_N : N ;
-fun salient_N : N ;
-fun client_N : N ;
-fun recipient_N : N ;
-fun aperient_N : N ;
-fun orient_N : N ;
-fun nutrient_N : N ;
-fun micronutrient_N : N ;
-fun transient_N : N ;
-fun patient_N : N ;
-fun 'in-patient_N' : N ;
-fun inpatient_N : N ;
-fun outpatient_N : N ;
-fun quotient_N : N ;
-fun lent_N : N ;
-fun talent_N : N ;
-fun equivalent_N : N ;
-fun milliequivalent_N : N ;
-fun repellent_N : N ;
-fun propellent_N : N ;
-fun succulent_N : N ;
-fun antiflatulent_N : N ;
-fun medicament_N : N ;
-fun predicament_N : N ;
-fun lineament_N : N ;
-fun ligament_N : N ;
-fun parliament_N : N ;
-fun lament_N : N ;
-fun filament_N : N ;
-fun armament_N : N ;
-fun rearmament_N : N ;
-fun disarmament_N : N ;
-fun firmament_N : N ;
-fun ornament_N : N ;
-fun tournament_N : N ;
-fun sacrament_N : N ;
-fun temperament_N : N ;
-fun arbitrament_N : N ;
-fun hereditament_N : N ;
-fun testament_N : N ;
-fun enjambment_N : N ;
-fun oddment_N : N ;
-fun weldment_N : N ;
-fun disbandment_N : N ;
-fun commandment_N : N ;
-fun amendment_N : N ;
-fun secondment_N : N ;
-fun abscondment_N : N ;
-fun impoundment_N : N ;
-fun bombardment_N : N ;
-fun counterbombardment_N : N ;
-fun cement_N : N ;
-fun defacement_N : N ;
-fun effacement_N : N ;
-fun placement_N : N ;
-fun replacement_N : N ;
-fun emplacement_N : N ;
-fun displacement_N : N ;
-fun enticement_N : N ;
-fun enhancement_N : N ;
-fun entrancement_N : N ;
-fun advancement_N : N ;
-fun commencement_N : N ;
-fun announcement_N : N ;
-fun pronouncement_N : N ;
-fun enforcement_N : N ;
-fun reinforcement_N : N ;
-fun inducement_N : N ;
-fun debridement_N : N ;
-fun agreement_N : N ;
-fun disagreement_N : N ;
-fun engagement_N : N ;
-fun disengagement_N : N ;
-fun management_N : N ;
-fun mismanagement_N : N ;
-fun disparagement_N : N ;
-fun encouragement_N : N ;
-fun discouragement_N : N ;
-fun acknowledgement_N : N ;
-fun abridgement_N : N ;
-fun lodgement_N : N ;
-fun dislodgement_N : N ;
-fun judgement_N : N ;
-fun prejudgement_N : N ;
-fun derangement_N : N ;
-fun arrangement_N : N ;
-fun rearrangement_N : N ;
-fun prearrangement_N : N ;
-fun disarrangement_N : N ;
-fun estrangement_N : N ;
-fun impingement_N : N ;
-fun infringement_N : N ;
-fun enlargement_N : N ;
-fun engorgement_N : N ;
-fun rapprochement_N : N ;
-fun accouchement_N : N ;
-fun impalement_N : N ;
-fun disablement_N : N ;
-fun ennoblement_N : N ;
-fun encirclement_N : N ;
-fun element_N : N ;
-fun entanglement_N : N ;
-fun disentanglement_N : N ;
-fun defilement_N : N ;
-fun beguilement_N : N ;
-fun implement_N : N ;
-fun complement_N : N ;
-fun supplement_N : N ;
-fun entitlement_N : N ;
-fun dismantlement_N : N ;
-fun disgruntlement_N : N ;
-fun battlement_N : N ;
-fun settlement_N : N ;
-fun resettlement_N : N ;
-fun embezzlement_N : N ;
-fun puzzlement_N : N ;
-fun tenement_N : N ;
-fun refinement_N : N ;
-fun confinement_N : N ;
-fun postponement_N : N ;
-fun dethronement_N : N ;
-fun enthronement_N : N ;
-fun atonement_N : N ;
-fun escapement_N : N ;
-fun elopement_N : N ;
-fun increment_N : N ;
-fun excrement_N : N ;
-fun retirement_N : N ;
-fun acquirement_N : N ;
-fun requirement_N : N ;
-fun procurement_N : N ;
-fun disfigurement_N : N ;
-fun allurement_N : N ;
-fun measurement_N : N ;
-fun basement_N : N ;
-fun abasement_N : N ;
-fun 'self-abasement_N' : N ;
-fun debasement_N : N ;
-fun casement_N : N ;
-fun encasement_N : N ;
-fun easement_N : N ;
-fun appeasement_N : N ;
-fun enfranchisement_N : N ;
-fun disenfranchisement_N : N ;
-fun disfranchisement_N : N ;
-fun advertisement_N : N ;
-fun chastisement_N : N ;
-fun endorsement_N : N ;
-fun reimbursement_N : N ;
-fun disbursement_N : N ;
-fun amusement_N : N ;
-fun abatement_N : N ;
-fun statement_N : N ;
-fun restatement_N : N ;
-fun reinstatement_N : N ;
-fun understatement_N : N ;
-fun overstatement_N : N ;
-fun misstatement_N : N ;
-fun incitement_N : N ;
-fun excitement_N : N ;
-fun tapotement_N : N ;
-fun ballottement_N : N ;
-fun dénouement_N : N ;
-fun bereavement_N : N ;
-fun enslavement_N : N ;
-fun pavement_N : N ;
-fun achievement_N : N ;
-fun underachievement_N : N ;
-fun overachievement_N : N ;
-fun involvement_N : N ;
-fun movement_N : N ;
-fun improvement_N : N ;
-fun amazement_N : N ;
-fun aggrandizement_N : N ;
-fun enfeoffment_N : N ;
-fun fragment_N : N ;
-fun acknowledgment_N : N ;
-fun abridgment_N : N ;
-fun lodgment_N : N ;
-fun dislodgment_N : N ;
-fun judgment_N : N ;
-fun prejudgment_N : N ;
-fun segment_N : N ;
-fun figment_N : N ;
-fun pigment_N : N ;
-fun photopigment_N : N ;
-fun impeachment_N : N ;
-fun encroachment_N : N ;
-fun detachment_N : N ;
-fun attachment_N : N ;
-fun enrichment_N : N ;
-fun retrenchment_N : N ;
-fun entrenchment_N : N ;
-fun parchment_N : N ;
-fun catchment_N : N ;
-fun abashment_N : N ;
-fun refreshment_N : N ;
-fun blandishment_N : N ;
-fun establishment_N : N ;
-fun disestablishment_N : N ;
-fun embellishment_N : N ;
-fun accomplishment_N : N ;
-fun nonaccomplishment_N : N ;
-fun banishment_N : N ;
-fun replenishment_N : N ;
-fun astonishment_N : N ;
-fun garnishment_N : N ;
-fun punishment_N : N ;
-fun impoverishment_N : N ;
-fun nourishment_N : N ;
-fun undernourishment_N : N ;
-fun relinquishment_N : N ;
-fun ravishment_N : N ;
-fun raiment_N : N ;
-fun pediment_N : N ;
-fun impediment_N : N ;
-fun sediment_N : N ;
-fun condiment_N : N ;
-fun embodiment_N : N ;
-fun rudiment_N : N ;
-fun regiment_N : N ;
-fun compliment_N : N ;
-fun accompaniment_N : N ;
-fun liniment_N : N ;
-fun orpiment_N : N ;
-fun experiment_N : N ;
-fun merriment_N : N ;
-fun detriment_N : N ;
-fun nutriment_N : N ;
-fun sentiment_N : N ;
-fun presentiment_N : N ;
-fun embankment_N : N ;
-fun concealment_N : N ;
-fun congealment_N : N ;
-fun instalment_N : N ;
-fun disembowelment_N : N ;
-fun ailment_N : N ;
-fun bailment_N : N ;
-fun derailment_N : N ;
-fun curtailment_N : N ;
-fun fulfilment_N : N ;
-fun devilment_N : N ;
-fun bedevilment_N : N ;
-fun installment_N : N ;
-fun fulfillment_N : N ;
-fun enrolment_N : N ;
-fun annulment_N : N ;
-fun befoulment_N : N ;
-fun embalmment_N : N ;
-fun comment_N : N ;
-fun enlightenment_N : N ;
-fun unenlightenment_N : N ;
-fun disheartenment_N : N ;
-fun arraignment_N : N ;
-fun alignment_N : N ;
-fun dealignment_N : N ;
-fun nonalignment_N : N ;
-fun misalignment_N : N ;
-fun consignment_N : N ;
-fun assignment_N : N ;
-fun reassignment_N : N ;
-fun obtainment_N : N ;
-fun militainment_N : N ;
-fun containment_N : N ;
-fun entertainment_N : N ;
-fun attainment_N : N ;
-fun edutainment_N : N ;
-fun abandonment_N : N ;
-fun disillusionment_N : N ;
-fun apportionment_N : N ;
-fun environment_N : N ;
-fun imprisonment_N : N ;
-fun cantonment_N : N ;
-fun discernment_N : N ;
-fun internment_N : N ;
-fun government_N : N ;
-fun misgovernment_N : N ;
-fun adornment_N : N ;
-fun adjournment_N : N ;
-fun disownment_N : N ;
-fun loment_N : N ;
-fun moment_N : N ;
-fun entrapment_N : N ;
-fun shipment_N : N ;
-fun reshipment_N : N ;
-fun transshipment_N : N ;
-fun equipment_N : N ;
-fun decampment_N : N ;
-fun encampment_N : N ;
-fun development_N : N ;
-fun redevelopment_N : N ;
-fun nondevelopment_N : N ;
-fun underdevelopment_N : N ;
-fun envelopment_N : N ;
-fun escarpment_N : N ;
-fun debarment_N : N ;
-fun disbarment_N : N ;
-fun endearment_N : N ;
-fun garment_N : N ;
-fun undergarment_N : N ;
-fun overgarment_N : N ;
-fun dismemberment_N : N ;
-fun bewilderment_N : N ;
-fun wonderment_N : N ;
-fun ferment_N : N ;
-fun deferment_N : N ;
-fun preferment_N : N ;
-fun conferment_N : N ;
-fun determent_N : N ;
-fun interment_N : N ;
-fun disinterment_N : N ;
-fun betterment_N : N ;
-fun embitterment_N : N ;
-fun impairment_N : N ;
-fun torment_N : N ;
-fun encompassment_N : N ;
-fun harassment_N : N ;
-fun embarrassment_N : N ;
-fun disembarrassment_N : N ;
-fun assessment_N : N ;
-fun reassessment_N : N ;
-fun treatment_N : N ;
-fun 'ill-treatment_N' : N ;
-fun maltreatment_N : N ;
-fun mistreatment_N : N ;
-fun enactment_N : N ;
-fun reenactment_N : N ;
-fun indictment_N : N ;
-fun abetment_N : N ;
-fun revetment_N : N ;
-fun fitment_N : N ;
-fun commitment_N : N ;
-fun recruitment_N : N ;
-fun enchantment_N : N ;
-fun disenchantment_N : N ;
-fun resentment_N : N ;
-fun presentment_N : N ;
-fun contentment_N : N ;
-fun discontentment_N : N ;
-fun ointment_N : N ;
-fun anointment_N : N ;
-fun appointment_N : N ;
-fun disappointment_N : N ;
-fun allotment_N : N ;
-fun reallotment_N : N ;
-fun apartment_N : N ;
-fun department_N : N ;
-fun compartment_N : N ;
-fun 'glove-compartment_N' : N ;
-fun 'smoking-compartment_N' : N ;
-fun deportment_N : N ;
-fun comportment_N : N ;
-fun assortment_N : N ;
-fun vestment_N : N ;
-fun investment_N : N ;
-fun disinvestment_N : N ;
-fun enlistment_N : N ;
-fun reenlistment_N : N ;
-fun adjustment_N : N ;
-fun readjustment_N : N ;
-fun maladjustment_N : N ;
-fun abutment_N : N ;
-fun hutment_N : N ;
-fun document_N : N ;
-fun tegument_N : N ;
-fun integument_N : N ;
-fun argument_N : N ;
-fun counterargument_N : N ;
-fun emolument_N : N ;
-fun monument_N : N ;
-fun instrument_N : N ;
-fun endowment_N : N ;
-fun payment_N : N ;
-fun repayment_N : N ;
-fun prepayment_N : N ;
-fun nonpayment_N : N ;
-fun underpayment_N : N ;
-fun overpayment_N : N ;
-fun defrayment_N : N ;
-fun enjoyment_N : N ;
-fun deployment_N : N ;
-fun redeployment_N : N ;
-fun employment_N : N ;
-fun unemployment_N : N ;
-fun continent_N : N ;
-fun subcontinent_N : N ;
-fun deponent_N : N ;
-fun component_N : N ;
-fun proponent_N : N ;
-fun opponent_N : N ;
-fun exponent_N : N ;
-fun arpent_N : N ;
-fun serpent_N : N ;
-fun rent_N : N ;
-fun 'ground-rent_N' : N ;
-fun 'rack-rent_N' : N ;
-fun parent_N : N ;
-fun 'foster-parent_N' : N ;
-fun grandparent_N : N ;
-fun godparent_N : N ;
-fun stepparent_N : N ;
-fun referent_N : N ;
-fun vicegerent_N : N ;
-fun belligerent_N : N ;
-fun adherent_N : N ;
-fun deterrent_N : N ;
-fun torrent_N : N ;
-fun current_N : N ;
-fun undercurrent_N : N ;
-fun countercurrent_N : N ;
-fun crosscurrent_N : N ;
-fun sent_N : N ;
-fun present_N : N ;
-fun wisent_N : N ;
-fun consent_N : N ;
-fun assent_N : N ;
-fun dissent_N : N ;
-fun tent_N : N ;
-fun 'bell-tent_N' : N ;
-fun patent_N : N ;
-fun incompetent_N : N ;
-fun penitent_N : N ;
-fun intent_N : N ;
-fun content_N : N ;
-fun malcontent_N : N ;
-fun discontent_N : N ;
-fun portent_N : N ;
-fun stent_N : N ;
-fun extent_N : N ;
-fun unguent_N : N ;
-fun affluent_N : N ;
-fun effluent_N : N ;
-fun delinquent_N : N ;
-fun obstruent_N : N ;
-fun constituent_N : N ;
-fun vent_N : N ;
-fun advent_N : N ;
-fun event_N : N ;
-fun nonevent_N : N ;
-fun solvent_N : N ;
-fun insolvent_N : N ;
-fun convent_N : N ;
-fun faint_N : N ;
-fun plaint_N : N ;
-fun complaint_N : N ;
-fun paint_N : N ;
-fun greasepaint_N : N ;
-fun warpaint_N : N ;
-fun restraint_N : N ;
-fun unrestraint_N : N ;
-fun distraint_N : N ;
-fun constraint_N : N ;
-fun saint_N : N ;
-fun taint_N : N ;
-fun dint_N : N ;
-fun feint_N : N ;
-fun septuagint_N : N ;
-fun hint_N : N ;
-fun lint_N : N ;
-fun flint_N : N ;
-fun skinflint_N : N ;
-fun gunflint_N : N ;
-fun glint_N : N ;
-fun splint_N : N ;
-fun mint_N : N ;
-fun calamint_N : N ;
-fun horsemint_N : N ;
-fun spearmint_N : N ;
-fun varmint_N : N ;
-fun peppermint_N : N ;
-fun catmint_N : N ;
-fun joint_N : N ;
-fun 'mitre-joint_N' : N ;
-fun 'clip-joint_N' : N ;
-fun point_N : N ;
-fun 'vantage-point_N' : N ;
-fun 'talking-point_N' : N ;
-fun 'boiling-point_N' : N ;
-fun 'turning-point_N' : N ;
-fun 'melting-point_N' : N ;
-fun 'starting-point_N' : N ;
-fun 'freezing-point_N' : N ;
-fun 'match-point_N' : N ;
-fun 'power-point_N' : N ;
-fun standpoint_N : N ;
-fun chokepoint_N : N ;
-fun needlepoint_N : N ;
-fun bluepoint_N : N ;
-fun flashpoint_N : N ;
-fun checkpoint_N : N ;
-fun ballpoint_N : N ;
-fun pinpoint_N : N ;
-fun embonpoint_N : N ;
-fun counterpoint_N : N ;
-fun silverpoint_N : N ;
-fun viewpoint_N : N ;
-fun pint_N : N ;
-fun cuckoopint_N : N ;
-fun forint_N : N ;
-fun print_N : N ;
-fun thumbprint_N : N ;
-fun voiceprint_N : N ;
-fun reprint_N : N ;
-fun blueprint_N : N ;
-fun offprint_N : N ;
-fun hoofprint_N : N ;
-fun imprint_N : N ;
-fun fingerprint_N : N ;
-fun overprint_N : N ;
-fun sprint_N : N ;
-fun misprint_N : N ;
-fun newsprint_N : N ;
-fun footprint_N : N ;
-fun tint_N : N ;
-fun aquatint_N : N ;
-fun mezzotint_N : N ;
-fun stint_N : N ;
-fun squint_N : N ;
-fun thecodont_N : N ;
-fun labyrinthodont_N : N ;
-fun cyprinodont_N : N ;
-fun conodont_N : N ;
-fun cynodont_N : N ;
-fun dicynodont_N : N ;
-fun acrodont_N : N ;
-fun pleurodont_N : N ;
-fun font_N : N ;
-fun biont_N : N ;
-fun piedmont_N : N ;
-fun front_N : N ;
-fun 'shop-front_N' : N ;
-fun 'shirt-front_N' : N ;
-fun seafront_N : N ;
-fun lakefront_N : N ;
-fun battlefront_N : N ;
-fun forefront_N : N ;
-fun affront_N : N ;
-fun beachfront_N : N ;
-fun oceanfront_N : N ;
-fun shopfront_N : N ;
-fun waterfront_N : N ;
-fun shirtfront_N : N ;
-fun wont_N : N ;
-fun tnt_N : N ;
-fun aunt_N : N ;
-fun grandaunt_N : N ;
-fun haunt_N : N ;
-fun jaunt_N : N ;
-fun flaunt_N : N ;
-fun taunt_N : N ;
-fun vaunt_N : N ;
-fun bunt_N : N ;
-fun cunt_N : N ;
-fun hunt_N : N ;
-fun 'witch-hunt_N' : N ;
-fun manhunt_N : N ;
-fun shunt_N : N ;
-fun foxhunt_N : N ;
-fun count_N : N ;
-fun 're-count_N' : N ;
-fun account_N : N ;
-fun 'charge-account_N' : N ;
-fun recount_N : N ;
-fun discount_N : N ;
-fun miscount_N : N ;
-fun viscount_N : N ;
-fun fount_N : N ;
-fun mount_N : N ;
-fun amount_N : N ;
-fun seamount_N : N ;
-fun remount_N : N ;
-fun dismount_N : N ;
-fun punt_N : N ;
-fun runt_N : N ;
-fun brunt_N : N ;
-fun grunt_N : N ;
-fun stunt_N : N ;
-fun ot_N : N ;
-fun bot_N : N ;
-fun jabot_N : N ;
-fun sabot_N : N ;
-fun abbot_N : N ;
-fun robot_N : N ;
-fun burbot_N : N ;
-fun cot_N : N ;
-fun dicot_N : N ;
-fun picot_N : N ;
-fun haricot_N : N ;
-fun apricot_N : N ;
-fun tricot_N : N ;
-fun massicot_N : N ;
-fun plumcot_N : N ;
-fun monocot_N : N ;
-fun scot_N : N ;
-fun ascot_N : N ;
-fun mascot_N : N ;
-fun wainscot_N : N ;
-fun carrycot_N : N ;
-fun dot_N : N ;
-fun peridot_N : N ;
-fun microdot_N : N ;
-fun fagot_N : N ;
-fun faggot_N : N ;
-fun maggot_N : N ;
-fun bigot_N : N ;
-fun spigot_N : N ;
-fun ingot_N : N ;
-fun argot_N : N ;
-fun escargot_N : N ;
-fun ergot_N : N ;
-fun phot_N : N ;
-fun shot_N : N ;
-fun 'round-shot_N' : N ;
-fun 'rifle-shot_N' : N ;
-fun 'pot-shot_N' : N ;
-fun headshot_N : N ;
-fun grapeshot_N : N ;
-fun eyeshot_N : N ;
-fun slingshot_N : N ;
-fun longshot_N : N ;
-fun buckshot_N : N ;
-fun bullshot_N : N ;
-fun gunshot_N : N ;
-fun slapshot_N : N ;
-fun snapshot_N : N ;
-fun upshot_N : N ;
-fun earshot_N : N ;
-fun countershot_N : N ;
-fun potshot_N : N ;
-fun idiot_N : N ;
-fun riot_N : N ;
-fun chariot_N : N ;
-fun griot_N : N ;
-fun cypriot_N : N ;
-fun patriot_N : N ;
-fun compatriot_N : N ;
-fun jot_N : N ;
-fun lot_N : N ;
-fun zealot_N : N ;
-fun blot_N : N ;
-fun inkblot_N : N ;
-fun clot_N : N ;
-fun feedlot_N : N ;
-fun sandlot_N : N ;
-fun ocelot_N : N ;
-fun helot_N : N ;
-fun polyglot_N : N ;
-fun pilot_N : N ;
-fun copilot_N : N ;
-fun autopilot_N : N ;
-fun ballot_N : N ;
-fun shallot_N : N ;
-fun maillot_N : N ;
-fun plot_N : N ;
-fun counterplot_N : N ;
-fun harlot_N : N ;
-fun slot_N : N ;
-fun bergamot_N : N ;
-fun guillemot_N : N ;
-fun marmot_N : N ;
-fun motmot_N : N ;
-fun 'forget-me-not_N' : N ;
-fun huguenot_N : N ;
-fun knot_N : N ;
-fun 'love-knot_N' : N ;
-fun 'reef-knot_N' : N ;
-fun slipknot_N : N ;
-fun topknot_N : N ;
-fun snot_N : N ;
-fun whatnot_N : N ;
-fun boot_N : N ;
-fun 'top-boot_N' : N ;
-fun jackboot_N : N ;
-fun gumboot_N : N ;
-fun coot_N : N ;
-fun bandicoot_N : N ;
-fun webfoot_N : N ;
-fun hindfoot_N : N ;
-fun spadefoot_N : N ;
-fun goosefoot_N : N ;
-fun tenderfoot_N : N ;
-fun goatsfoot_N : N ;
-fun coltsfoot_N : N ;
-fun flatfoot_N : N ;
-fun hotfoot_N : N ;
-fun clawfoot_N : N ;
-fun hoot_N : N ;
-fun cahoot_N : N ;
-fun shoot_N : N ;
-fun offshoot_N : N ;
-fun crapshoot_N : N ;
-fun overshoot_N : N ;
-fun loot_N : N ;
-fun galoot_N : N ;
-fun moot_N : N ;
-fun root_N : N ;
-fun colicroot_N : N ;
-fun breadroot_N : N ;
-fun bloodroot_N : N ;
-fun cheroot_N : N ;
-fun crinkleroot_N : N ;
-fun pinkroot_N : N ;
-fun balsamroot_N : N ;
-fun alumroot_N : N ;
-fun taproot_N : N ;
-fun briarroot_N : N ;
-fun bitterroot_N : N ;
-fun feverroot_N : N ;
-fun orrisroot_N : N ;
-fun costusroot_N : N ;
-fun beetroot_N : N ;
-fun arrowroot_N : N ;
-fun puttyroot_N : N ;
-fun soot_N : N ;
-fun toot_N : N ;
-fun pot_N : N ;
-fun 'melting-pot_N' : N ;
-fun 'ink-pot_N' : N ;
-fun 'pepper-pot_N' : N ;
-fun 'lobster-pot_N' : N ;
-fun teapot_N : N ;
-fun saucepot_N : N ;
-fun depot_N : N ;
-fun coffeepot_N : N ;
-fun entrepot_N : N ;
-fun talipot_N : N ;
-fun jackpot_N : N ;
-fun crackpot_N : N ;
-fun stockpot_N : N ;
-fun jampot_N : N ;
-fun chamberpot_N : N ;
-fun flowerpot_N : N ;
-fun spot_N : N ;
-fun 'plague-spot_N' : N ;
-fun 'beauty-spot_N' : N ;
-fun despot_N : N ;
-fun eyespot_N : N ;
-fun sunspot_N : N ;
-fun silverspot_N : N ;
-fun fusspot_N : N ;
-fun heatspot_N : N ;
-fun chimneypot_N : N ;
-fun honeypot_N : N ;
-fun rot_N : N ;
-fun 'foot-rot_N' : N ;
-fun 'tommy-rot_N' : N ;
-fun lerot_N : N ;
-fun grot_N : N ;
-fun carrot_N : N ;
-fun parrot_N : N ;
-fun pierrot_N : N ;
-fun trot_N : N ;
-fun 'jog-trot_N' : N ;
-fun dogtrot_N : N ;
-fun heartrot_N : N ;
-fun foxtrot_N : N ;
-fun sot_N : N ;
-fun tot_N : N ;
-fun aliquot_N : N ;
-fun divot_N : N ;
-fun pivot_N : N ;
-fun swot_N : N ;
-fun guyot_N : N ;
-fun pt_N : N ;
-fun precept_N : N ;
-fun concept_N : N ;
-fun etanercept_N : N ;
-fun percept_N : N ;
-fun intercept_N : N ;
-fun adept_N : N ;
-fun nympholept_N : N ;
-fun transept_N : N ;
-fun receipt_N : N ;
-fun script_N : N ;
-fun subscript_N : N ;
-fun nondescript_N : N ;
-fun typescript_N : N ;
-fun rescript_N : N ;
-fun prescript_N : N ;
-fun transcript_N : N ;
-fun conscript_N : N ;
-fun superscript_N : N ;
-fun postscript_N : N ;
-fun manuscript_N : N ;
-fun contempt_N : N ;
-fun attempt_N : N ;
-fun prompt_N : N ;
-fun copt_N : N ;
-fun excerpt_N : N ;
-fun bankrupt_N : N ;
-fun interrupt_N : N ;
-fun crypt_N : N ;
-fun art_N : N ;
-fun 'op art_N' : N ;
-fun cart_N : N ;
-fun 'watering-cart_N' : N ;
-fun 'dog-cart_N' : N ;
-fun 'go-cart_N' : N ;
-fun 'water-cart_N' : N ;
-fun handcart_N : N ;
-fun applecart_N : N ;
-fun golfcart_N : N ;
-fun dogcart_N : N ;
-fun pushcart_N : N ;
-fun dumpcart_N : N ;
-fun dustcart_N : N ;
-fun oxcart_N : N ;
-fun dart_N : N ;
-fun heart_N : N ;
-fun blackheart_N : N ;
-fun sweetheart_N : N ;
-fun fart_N : N ;
-fun braggart_N : N ;
-fun hart_N : N ;
-fun chart_N : N ;
-fun 'weather-chart_N' : N ;
-fun 'go-kart_N' : N ;
-fun mart_N : N ;
-fun smart_N : N ;
-fun part_N : N ;
-fun 'name-part_N' : N ;
-fun subpart_N : N ;
-fun mouthpart_N : N ;
-fun rampart_N : N ;
-fun underpart_N : N ;
-fun counterpart_N : N ;
-fun cyberart_N : N ;
-fun tart_N : N ;
-fun start_N : N ;
-fun 'kick-start_N' : N ;
-fun redstart_N : N ;
-fun jumpstart_N : N ;
-fun upstart_N : N ;
-fun quart_N : N ;
-fun wart_N : N ;
-fun thwart_N : N ;
-fun stalwart_N : N ;
-fun filbert_N : N ;
-fun gilbert_N : N ;
-fun lambert_N : N ;
-fun camembert_N : N ;
-fun sherbert_N : N ;
-fun cert_N : N ;
-fun concert_N : N ;
-fun chert_N : N ;
-fun alert_N : N ;
-fun expert_N : N ;
-fun desert_N : N ;
-fun semidesert_N : N ;
-fun insert_N : N ;
-fun dessert_N : N ;
-fun advert_N : N ;
-fun culvert_N : N ;
-fun convert_N : N ;
-fun covert_N : N ;
-fun introvert_N : N ;
-fun extrovert_N : N ;
-fun pervert_N : N ;
-fun dirt_N : N ;
-fun paydirt_N : N ;
-fun shirt_N : N ;
-fun 'tee-shirt_N' : N ;
-fun 'hair-shirt_N' : N ;
-fun 't-shirt_N' : N ;
-fun blackshirt_N : N ;
-fun sweatshirt_N : N ;
-fun nightshirt_N : N ;
-fun skirt_N : N ;
-fun 'hobble-skirt_N' : N ;
-fun 'ballet-skirt_N' : N ;
-fun miniskirt_N : N ;
-fun hoopskirt_N : N ;
-fun underskirt_N : N ;
-fun overskirt_N : N ;
-fun outskirt_N : N ;
-fun flirt_N : N ;
-fun spirt_N : N ;
-fun quirt_N : N ;
-fun squirt_N : N ;
-fun abort_N : N ;
-fun escort_N : N ;
-fun fort_N : N ;
-fun roquefort_N : N ;
-fun effort_N : N ;
-fun comfort_N : N ;
-fun discomfort_N : N ;
-fun cohort_N : N ;
-fun short_N : N ;
-fun snort_N : N ;
-fun port_N : N ;
-fun seaport_N : N ;
-fun report_N : N ;
-fun heliport_N : N ;
-fun import_N : N ;
-fun davenport_N : N ;
-fun rapport_N : N ;
-fun support_N : N ;
-fun carport_N : N ;
-fun airport_N : N ;
-fun purport_N : N ;
-fun sport_N : N ;
-fun spoilsport_N : N ;
-fun transport_N : N ;
-fun passport_N : N ;
-fun outport_N : N ;
-fun export_N : N ;
-fun sort_N : N ;
-fun resort_N : N ;
-fun consort_N : N ;
-fun tort_N : N ;
-fun retort_N : N ;
-fun wort_N : N ;
-fun fleawort_N : N ;
-fun umbrellawort_N : N ;
-fun leadwort_N : N ;
-fun sandwort_N : N ;
-fun bloodwort_N : N ;
-fun fumewort_N : N ;
-fun stonewort_N : N ;
-fun pipewort_N : N ;
-fun rupturewort_N : N ;
-fun ragwort_N : N ;
-fun figwort_N : N ;
-fun mugwort_N : N ;
-fun stitchwort_N : N ;
-fun birthwort_N : N ;
-fun milkwort_N : N ;
-fun felwort_N : N ;
-fun bellwort_N : N ;
-fun pillwort_N : N ;
-fun quillwort_N : N ;
-fun pearlwort_N : N ;
-fun awlwort_N : N ;
-fun spleenwort_N : N ;
-fun barrenwort_N : N ;
-fun moonwort_N : N ;
-fun hornwort_N : N ;
-fun soapwort_N : N ;
-fun bladderwort_N : N ;
-fun madderwort_N : N ;
-fun spiderwort_N : N ;
-fun motherwort_N : N ;
-fun miterwort_N : N ;
-fun butterwort_N : N ;
-fun liverwort_N : N ;
-fun glasswort_N : N ;
-fun throatwort_N : N ;
-fun saltwort_N : N ;
-fun sawwort_N : N ;
-fun whitlowwort_N : N ;
-fun moneywort_N : N ;
-fun gipsywort_N : N ;
-fun yogurt_N : N ;
-fun hurt_N : N ;
-fun yoghurt_N : N ;
-fun court_N : N ;
-fun 'tennis-court_N' : N ;
-fun forecourt_N : N ;
-fun yoghourt_N : N ;
-fun spurt_N : N ;
-fun yurt_N : N ;
-fun East_N : N ;
-fun bast_N : N ;
-fun bombast_N : N ;
-fun cast_N : N ;
-fun broadcast_N : N ;
-fun rebroadcast_N : N ;
-fun telecast_N : N ;
-fun forecast_N : N ;
-fun roughcast_N : N ;
-fun simulcast_N : N ;
-fun wormcast_N : N ;
-fun downcast_N : N ;
-fun upcast_N : N ;
-fun colorcast_N : N ;
-fun sportscast_N : N ;
-fun newscast_N : N ;
-fun outcast_N : N ;
-fun 'nor\'-east_N' : N ;
-fun 'nor\'-nor\'-east_N' : N ;
-fun 'sou\'-east_N' : N ;
-fun 'sou\'-sou\'-east_N' : N ;
-fun beast_N : N ;
-fun feast_N : N ;
-fun 'love-feast_N' : N ;
-fun beanfeast_N : N ;
-fun northeast_N : N ;
-fun 'north-northeast_N' : N ;
-fun southeast_N : N ;
-fun 'south-southeast_N' : N ;
-fun breast_N : N ;
-fun redbreast_N : N ;
-fun chimneybreast_N : N ;
-fun yeast_N : N ;
-fun fast_N : N ;
-fun headfast_N : N ;
-fun breakfast_N : N ;
-fun scholiast_N : N ;
-fun symposiast_N : N ;
-fun enthusiast_N : N ;
-fun last_N : N ;
-fun blast_N : N ;
-fun plasmablast_N : N ;
-fun sandblast_N : N ;
-fun backblast_N : N ;
-fun osteoblast_N : N ;
-fun lymphoblast_N : N ;
-fun trophoblast_N : N ;
-fun spongioblast_N : N ;
-fun megaloblast_N : N ;
-fun ameloblast_N : N ;
-fun myeloblast_N : N ;
-fun melanoblast_N : N ;
-fun monoblast_N : N ;
-fun fibroblast_N : N ;
-fun sideroblast_N : N ;
-fun erythroblast_N : N ;
-fun neuroblast_N : N ;
-fun counterblast_N : N ;
-fun clast_N : N ;
-fun osteoclast_N : N ;
-fun iconoclast_N : N ;
-fun ballast_N : N ;
-fun chromoplast_N : N ;
-fun chloroplast_N : N ;
-fun elastoplast_N : N ;
-fun cytoplast_N : N ;
-fun mast_N : N ;
-fun 'mooring-mast_N' : N ;
-fun 'mizzen-mast_N' : N ;
-fun 'jury-mast_N' : N ;
-fun foremast_N : N ;
-fun mizzenmast_N : N ;
-fun mainmast_N : N ;
-fun topmast_N : N ;
-fun jiggermast_N : N ;
-fun durmast_N : N ;
-fun gymnast_N : N ;
-fun dynast_N : N ;
-fun oast_N : N ;
-fun boast_N : N ;
-fun coast_N : N ;
-fun roast_N : N ;
-fun toast_N : N ;
-fun past_N : N ;
-fun repast_N : N ;
-fun flypast_N : N ;
-fun pederast_N : N ;
-fun contrast_N : N ;
-fun fantast_N : N ;
-fun West_N : N ;
-fun anapaest_N : N ;
-fun best_N : N ;
-fun 'second-best_N' : N ;
-fun incest_N : N ;
-fun wildebeest_N : N ;
-fun hartebeest_N : N ;
-fun manifest_N : N ;
-fun digest_N : N ;
-fun alkahest_N : N ;
-fun chest_N : N ;
-fun 'tea-chest_N' : N ;
-fun 'medicine-chest_N' : N ;
-fun behest_N : N ;
-fun priest_N : N ;
-fun archpriest_N : N ;
-fun jest_N : N ;
-fun nest_N : N ;
-fun 'crow\'s-nest_N' : N ;
-fun earnest_N : N ;
-fun pest_N : N ;
-fun anapest_N : N ;
-fun fowlpest_N : N ;
-fun tempest_N : N ;
-fun rinderpest_N : N ;
-fun rest_N : N ;
-fun dearest_N : N ;
-fun crest_N : N ;
-fun goldcrest_N : N ;
-fun headrest_N : N ;
-fun bedrest_N : N ;
-fun handrest_N : N ;
-fun interest_N : N ;
-fun 'self-interest_N' : N ;
-fun disinterest_N : N ;
-fun armrest_N : N ;
-fun unrest_N : N ;
-fun forest_N : N ;
-fun arrest_N : N ;
-fun palimpsest_N : N ;
-fun test_N : N ;
-fun latest_N : N ;
-fun contest_N : N ;
-fun protest_N : N ;
-fun guest_N : N ;
-fun quest_N : N ;
-fun bequest_N : N ;
-fun request_N : N ;
-fun inquest_N : N ;
-fun conquest_N : N ;
-fun vest_N : N ;
-fun harvest_N : N ;
-fun 'nor\'-west_N' : N ;
-fun 'nor\'-nor\'-west_N' : N ;
-fun 'sou\'-west_N' : N ;
-fun 'sou\'-sou\'-west_N' : N ;
-fun northwest_N : N ;
-fun 'north-northwest_N' : N ;
-fun southwest_N : N ;
-fun 'south-southwest_N' : N ;
-fun zest_N : N ;
-fun angst_N : N ;
-fun archaist_N : N ;
-fun algebraist_N : N ;
-fun waist_N : N ;
-fun shirtwaist_N : N ;
-fun arabist_N : N ;
-fun vibist_N : N ;
-fun gambist_N : N ;
-fun cubist_N : N ;
-fun supremacist_N : N ;
-fun pharmacist_N : N ;
-fun racist_N : N ;
-fun ethicist_N : N ;
-fun publicist_N : N ;
-fun polemicist_N : N ;
-fun empiricist_N : N ;
-fun lyricist_N : N ;
-fun classicist_N : N ;
-fun neoclassicist_N : N ;
-fun physicist_N : N ;
-fun geophysicist_N : N ;
-fun psychophysicist_N : N ;
-fun biophysicist_N : N ;
-fun astrophysicist_N : N ;
-fun geneticist_N : N ;
-fun cytogeneticist_N : N ;
-fun semanticist_N : N ;
-fun romanticist_N : N ;
-fun exorcist_N : N ;
-fun fascist_N : N ;
-fun sadist_N : N ;
-fun faddist_N : N ;
-fun orthopedist_N : N ;
-fun encyclopedist_N : N ;
-fun propagandist_N : N ;
-fun odist_N : N ;
-fun methodist_N : N ;
-fun chiropodist_N : N ;
-fun parodist_N : N ;
-fun keyboardist_N : N ;
-fun harpsichordist_N : N ;
-fun nudist_N : N ;
-fun deist_N : N ;
-fun feist_N : N ;
-fun poltergeist_N : N ;
-fun heist_N : N ;
-fun theist_N : N ;
-fun atheist_N : N ;
-fun tritheist_N : N ;
-fun pantheist_N : N ;
-fun monotheist_N : N ;
-fun polytheist_N : N ;
-fun canoeist_N : N ;
-fun fist_N : N ;
-fun pacifist_N : N ;
-fun gist_N : N ;
-fun mycophagist_N : N ;
-fun suffragist_N : N ;
-fun elegist_N : N ;
-fun strategist_N : N ;
-fun druggist_N : N ;
-fun falangist_N : N ;
-fun genealogist_N : N ;
-fun mammalogist_N : N ;
-fun analogist_N : N ;
-fun mineralogist_N : N ;
-fun syllogist_N : N ;
-fun tribologist_N : N ;
+fun malabsorption_N : N ;
+fun malacca_N : N ;
+fun malachite_N : N ;
+fun malacia_N : N ;
fun malacologist_N : N ;
-fun pharmacologist_N : N ;
-fun ecologist_N : N ;
-fun gynaecologist_N : N ;
-fun gynecologist_N : N ;
-fun musicologist_N : N ;
-fun toxicologist_N : N ;
-fun oncologist_N : N ;
-fun mycologist_N : N ;
-fun pteridologist_N : N ;
-fun archaeologist_N : N ;
-fun spelaeologist_N : N ;
-fun ideologist_N : N ;
-fun geologist_N : N ;
-fun archeologist_N : N ;
-fun speleologist_N : N ;
-fun teleologist_N : N ;
-fun neologist_N : N ;
-fun venereologist_N : N ;
-fun osteologist_N : N ;
-fun conchologist_N : N ;
-fun psychologist_N : N ;
-fun parapsychologist_N : N ;
-fun graphologist_N : N ;
-fun psephologist_N : N ;
-fun pathologist_N : N ;
-fun ethologist_N : N ;
-fun ornithologist_N : N ;
-fun anthologist_N : N ;
-fun mythologist_N : N ;
-fun biologist_N : N ;
-fun sociobiologist_N : N ;
-fun radiobiologist_N : N ;
-fun microbiologist_N : N ;
-fun neurobiologist_N : N ;
-fun sociologist_N : N ;
-fun radiologist_N : N ;
-fun cardiologist_N : N ;
-fun angiologist_N : N ;
-fun epidemiologist_N : N ;
-fun bacteriologist_N : N ;
-fun anesthesiologist_N : N ;
-fun physiologist_N : N ;
-fun etiologist_N : N ;
-fun philologist_N : N ;
-fun epistemologist_N : N ;
-fun ophthalmologist_N : N ;
-fun pomologist_N : N ;
-fun entomologist_N : N ;
-fun seismologist_N : N ;
-fun cosmologist_N : N ;
-fun etymologist_N : N ;
-fun enzymologist_N : N ;
-fun enologist_N : N ;
-fun penologist_N : N ;
-fun phrenologist_N : N ;
-fun technologist_N : N ;
-fun ethnologist_N : N ;
-fun criminologist_N : N ;
-fun endocrinologist_N : N ;
-fun sinologist_N : N ;
-fun limnologist_N : N ;
-fun phonologist_N : N ;
-fun monologist_N : N ;
-fun immunologist_N : N ;
-fun zoologist_N : N ;
-fun protozoologist_N : N ;
-fun apologist_N : N ;
-fun escapologist_N : N ;
-fun anthropologist_N : N ;
-fun hydrologist_N : N ;
-fun numerologist_N : N ;
-fun serologist_N : N ;
-fun gastroenterologist_N : N ;
-fun virologist_N : N ;
-fun orologist_N : N ;
-fun meteorologist_N : N ;
-fun electrologist_N : N ;
-fun urologist_N : N ;
-fun neurologist_N : N ;
-fun eschatologist_N : N ;
-fun hematologist_N : N ;
-fun climatologist_N : N ;
-fun dermatologist_N : N ;
-fun rheumatologist_N : N ;
-fun perinatologist_N : N ;
-fun proctologist_N : N ;
-fun cosmetologist_N : N ;
-fun herpetologist_N : N ;
-fun palaeontologist_N : N ;
-fun paleontologist_N : N ;
-fun gerontologist_N : N ;
-fun histologist_N : N ;
-fun cytologist_N : N ;
-fun ichthyologist_N : N ;
-fun embryologist_N : N ;
-fun eulogist_N : N ;
-fun allergist_N : N ;
-fun synergist_N : N ;
-fun metallurgist_N : N ;
-fun liturgist_N : N ;
-fun catechist_N : N ;
-fun masochist_N : N ;
-fun 'sado-masochist_N' : N ;
-fun sadomasochist_N : N ;
-fun anarchist_N : N ;
-fun monarchist_N : N ;
-fun schist_N : N ;
-fun buddhist_N : N ;
-fun telegraphist_N : N ;
-fun sophist_N : N ;
-fun theosophist_N : N ;
-fun gymnosophist_N : N ;
-fun deipnosophist_N : N ;
-fun fetishist_N : N ;
-fun telepathist_N : N ;
-fun whist_N : N ;
-fun stockist_N : N ;
-fun list_N : N ;
-fun 'free-list_N' : N ;
-fun 'mailing-list_N' : N ;
-fun 'waiting-list_N' : N ;
-fun 'sick-list_N' : N ;
-fun 'stock-list_N' : N ;
-fun 'class-list_N' : N ;
-fun cabalist_N : N ;
-fun cymbalist_N : N ;
-fun herbalist_N : N ;
-fun syndicalist_N : N ;
-fun clericalist_N : N ;
-fun vocalist_N : N ;
-fun medalist_N : N ;
-fun sodalist_N : N ;
-fun idealist_N : N ;
-fun realist_N : N ;
-fun surrealist_N : N ;
-fun madrigalist_N : N ;
-fun racialist_N : N ;
-fun specialist_N : N ;
-fun socialist_N : N ;
-fun colonialist_N : N ;
-fun aerialist_N : N ;
-fun imperialist_N : N ;
-fun materialist_N : N ;
-fun industrialist_N : N ;
-fun controversialist_N : N ;
-fun existentialist_N : N ;
-fun minimalist_N : N ;
-fun anomalist_N : N ;
-fun finalist_N : N ;
-fun semifinalist_N : N ;
-fun nominalist_N : N ;
-fun annalist_N : N ;
-fun educationalist_N : N ;
-fun nationalist_N : N ;
-fun internationalist_N : N ;
-fun rationalist_N : N ;
-fun sensationalist_N : N ;
-fun conversationalist_N : N ;
-fun functionalist_N : N ;
-fun traditionalist_N : N ;
-fun constitutionalist_N : N ;
-fun journalist_N : N ;
-fun photojournalist_N : N ;
-fun federalist_N : N ;
-fun unilateralist_N : N ;
-fun moralist_N : N ;
-fun amoralist_N : N ;
-fun neutralist_N : N ;
-fun pluralist_N : N ;
-fun muralist_N : N ;
-fun ruralist_N : N ;
-fun naturalist_N : N ;
-fun fatalist_N : N ;
-fun recitalist_N : N ;
-fun capitalist_N : N ;
-fun vitalist_N : N ;
-fun transcendentalist_N : N ;
-fun orientalist_N : N ;
-fun fundamentalist_N : N ;
-fun sentimentalist_N : N ;
-fun environmentalist_N : N ;
-fun instrumentalist_N : N ;
-fun dualist_N : N ;
-fun individualist_N : N ;
-fun sensualist_N : N ;
-fun ritualist_N : N ;
-fun spiritualist_N : N ;
-fun revivalist_N : N ;
-fun survivalist_N : N ;
-fun loyalist_N : N ;
-fun royalist_N : N ;
-fun cyclist_N : N ;
-fun unicyclist_N : N ;
-fun motorcyclist_N : N ;
-fun pricelist_N : N ;
-fun evangelist_N : N ;
-fun televangelist_N : N ;
-fun panelist_N : N ;
-fun philatelist_N : N ;
-fun duelist_N : N ;
-fun novelist_N : N ;
-fun pugilist_N : N ;
-fun nihilist_N : N ;
-fun blacklist_N : N ;
-fun checklist_N : N ;
-fun medallist_N : N ;
-fun bimetallist_N : N ;
-fun cellist_N : N ;
-fun duellist_N : N ;
-fun pointillist_N : N ;
-fun symbolist_N : N ;
-fun violist_N : N ;
-fun monopolist_N : N ;
-fun shortlist_N : N ;
-fun fabulist_N : N ;
-fun somnambulist_N : N ;
-fun funambulist_N : N ;
-fun noctambulist_N : N ;
-fun oculist_N : N ;
-fun populist_N : N ;
-fun playlist_N : N ;
-fun stylist_N : N ;
-fun hairstylist_N : N ;
-fun mist_N : N ;
-fun bigamist_N : N ;
-fun monogamist_N : N ;
-fun misogamist_N : N ;
-fun polygamist_N : N ;
-fun chemist_N : N ;
-fun alchemist_N : N ;
-fun biochemist_N : N ;
-fun phytochemist_N : N ;
-fun extremist_N : N ;
-fun totemist_N : N ;
-fun animist_N : N ;
-fun pessimist_N : N ;
-fun optimist_N : N ;
-fun palmist_N : N ;
-fun psalmist_N : N ;
-fun economist_N : N ;
-fun macroeconomist_N : N ;
-fun microeconomist_N : N ;
-fun agronomist_N : N ;
-fun taxonomist_N : N ;
-fun anatomist_N : N ;
-fun phlebotomist_N : N ;
-fun alarmist_N : N ;
-fun taxidermist_N : N ;
-fun conformist_N : N ;
-fun nonconformist_N : N ;
-fun synonymist_N : N ;
-fun tobogganist_N : N ;
-fun organist_N : N ;
-fun mechanist_N : N ;
-fun pianist_N : N ;
-fun arianist_N : N ;
-fun humanist_N : N ;
-fun timpanist_N : N ;
-fun accompanist_N : N ;
-fun tympanist_N : N ;
-fun botanist_N : N ;
-fun lutanist_N : N ;
-fun larcenist_N : N ;
-fun abiogenist_N : N ;
-fun hygienist_N : N ;
-fun alienist_N : N ;
-fun lutenist_N : N ;
-fun machinist_N : N ;
-fun violinist_N : N ;
-fun feminist_N : N ;
-fun antifeminist_N : N ;
-fun alpinist_N : N ;
-fun latinist_N : N ;
-fun calvinist_N : N ;
-fun chauvinist_N : N ;
-fun columnist_N : N ;
-fun trombonist_N : N ;
-fun tobacconist_N : N ;
-fun hedonist_N : N ;
-fun agonist_N : N ;
-fun antagonist_N : N ;
-fun protagonist_N : N ;
-fun telephonist_N : N ;
-fun symphonist_N : N ;
-fun xylophonist_N : N ;
-fun saxophonist_N : N ;
-fun accordionist_N : N ;
-fun religionist_N : N ;
-fun coreligionist_N : N ;
-fun irreligionist_N : N ;
-fun unionist_N : N ;
-fun 'trade-unionist_N' : N ;
-fun revisionist_N : N ;
-fun diversionist_N : N ;
-fun excursionist_N : N ;
-fun secessionist_N : N ;
-fun impressionist_N : N ;
-fun expressionist_N : N ;
-fun percussionist_N : N ;
-fun illusionist_N : N ;
-fun vacationist_N : N ;
-fun educationist_N : N ;
-fun deviationist_N : N ;
-fun isolationist_N : N ;
-fun moderationist_N : N ;
-fun collaborationist_N : N ;
-fun preservationist_N : N ;
-fun abstractionist_N : N ;
-fun perfectionist_N : N ;
-fun projectionist_N : N ;
-fun vivisectionist_N : N ;
-fun protectionist_N : N ;
-fun obstructionist_N : N ;
-fun prohibitionist_N : N ;
-fun exhibitionist_N : N ;
-fun abolitionist_N : N ;
-fun partitionist_N : N ;
-fun receptionist_N : N ;
-fun abortionist_N : N ;
-fun contortionist_N : N ;
-fun distortionist_N : N ;
-fun elocutionist_N : N ;
-fun evolutionist_N : N ;
-fun revolutionist_N : N ;
-fun counterrevolutionist_N : N ;
-fun zionist_N : N ;
-fun colonist_N : N ;
-fun mnemonist_N : N ;
-fun canonist_N : N ;
-fun balloonist_N : N ;
-fun bassoonist_N : N ;
-fun cartoonist_N : N ;
-fun arsonist_N : N ;
-fun modernist_N : N ;
-fun internist_N : N ;
-fun hornist_N : N ;
-fun communist_N : N ;
-fun opportunist_N : N ;
-fun misogynist_N : N ;
-fun polygynist_N : N ;
-fun maoist_N : N ;
-fun oboist_N : N ;
-fun egoist_N : N ;
-fun jingoist_N : N ;
-fun hoist_N : N ;
-fun joist_N : N ;
-fun soloist_N : N ;
-fun landscapist_N : N ;
-fun escapist_N : N ;
-fun papist_N : N ;
-fun rapist_N : N ;
-fun therapist_N : N ;
-fun psychotherapist_N : N ;
-fun radiotherapist_N : N ;
-fun physiotherapist_N : N ;
-fun electrotherapist_N : N ;
-fun orthoepist_N : N ;
-fun microscopist_N : N ;
-fun philanthropist_N : N ;
-fun trappist_N : N ;
-fun harpist_N : N ;
-fun typist_N : N ;
-fun eucharist_N : N ;
-fun diarist_N : N ;
-fun plagiarist_N : N ;
-fun apiarist_N : N ;
-fun secularist_N : N ;
-fun scenarist_N : N ;
-fun seminarist_N : N ;
-fun glossarist_N : N ;
-fun monetarist_N : N ;
-fun militarist_N : N ;
-fun guitarist_N : N ;
-fun polyandrist_N : N ;
-fun careerist_N : N ;
-fun mesmerist_N : N ;
-fun preterist_N : N ;
-fun lepidopterist_N : N ;
-fun grist_N : N ;
-fun satirist_N : N ;
-fun aorist_N : N ;
-fun theorist_N : N ;
-fun aphorist_N : N ;
-fun behaviorist_N : N ;
-fun florist_N : N ;
-fun colorist_N : N ;
-fun watercolorist_N : N ;
-fun amorist_N : N ;
-fun humorist_N : N ;
-fun terrorist_N : N ;
-fun counterterrorist_N : N ;
-fun motorist_N : N ;
-fun psychiatrist_N : N ;
-fun photometrist_N : N ;
-fun optometrist_N : N ;
-fun centrist_N : N ;
-fun manicurist_N : N ;
-fun jurist_N : N ;
-fun behaviourist_N : N ;
-fun watercolourist_N : N ;
-fun humourist_N : N ;
-fun tourist_N : N ;
-fun purist_N : N ;
-fun caricaturist_N : N ;
-fun miniaturist_N : N ;
-fun naturist_N : N ;
-fun sericulturist_N : N ;
-fun agriculturist_N : N ;
-fun viticulturist_N : N ;
-fun horticulturist_N : N ;
-fun futurist_N : N ;
-fun wrist_N : N ;
-fun fantasist_N : N ;
-fun synthesist_N : N ;
-fun assist_N : N ;
-fun bassist_N : N ;
-fun narcissist_N : N ;
-fun defeatist_N : N ;
-fun dramatist_N : N ;
-fun suprematist_N : N ;
-fun pragmatist_N : N ;
-fun dogmatist_N : N ;
-fun diplomatist_N : N ;
-fun numismatist_N : N ;
-fun separatist_N : N ;
-fun corporatist_N : N ;
-fun protoctist_N : N ;
-fun anaesthetist_N : N ;
-fun anesthetist_N : N ;
-fun prosthetist_N : N ;
-fun quietist_N : N ;
-fun clarinetist_N : N ;
-fun leftist_N : N ;
-fun rightist_N : N ;
-fun portraitist_N : N ;
-fun elitist_N : N ;
-fun cultist_N : N ;
-fun occultist_N : N ;
-fun obscurantist_N : N ;
-fun dentist_N : N ;
-fun irredentist_N : N ;
-fun scientist_N : N ;
-fun neuroscientist_N : N ;
-fun presentist_N : N ;
-fun adventist_N : N ;
-fun pedodontist_N : N ;
-fun endodontist_N : N ;
-fun orthodontist_N : N ;
-fun prosthodontist_N : N ;
-fun periodontist_N : N ;
-fun exodontist_N : N ;
-fun contrapuntist_N : N ;
-fun anecdotist_N : N ;
-fun egotist_N : N ;
-fun bibliotist_N : N ;
-fun hypnotist_N : N ;
-fun nepotist_N : N ;
-fun protist_N : N ;
-fun baptist_N : N ;
-fun orthoptist_N : N ;
-fun artist_N : N ;
-fun chartist_N : N ;
-fun clarinettist_N : N ;
-fun librettist_N : N ;
-fun flautist_N : N ;
-fun parachutist_N : N ;
-fun lutist_N : N ;
-fun flutist_N : N ;
-fun absolutist_N : N ;
-fun linguist_N : N ;
-fun psycholinguist_N : N ;
-fun sociolinguist_N : N ;
-fun neurolinguist_N : N ;
-fun somniloquist_N : N ;
-fun ventriloquist_N : N ;
-fun altruist_N : N ;
-fun casuist_N : N ;
-fun atavist_N : N ;
-fun recidivist_N : N ;
-fun archivist_N : N ;
-fun negativist_N : N ;
-fun nativist_N : N ;
-fun activist_N : N ;
-fun subjectivist_N : N ;
-fun collectivist_N : N ;
-fun constructivist_N : N ;
-fun positivist_N : N ;
-fun reservist_N : N ;
-fun twist_N : N ;
-fun sexist_N : N ;
-fun marxist_N : N ;
-fun essayist_N : N ;
-fun hobbyist_N : N ;
-fun lobbyist_N : N ;
-fun copyist_N : N ;
-fun cost_N : N ;
-fun pentecost_N : N ;
-fun host_N : N ;
-fun ghost_N : N ;
-fun uttermost_N : N ;
-fun utmost_N : N ;
-fun anagnost_N : N ;
-fun glasnost_N : N ;
-fun boost_N : N ;
-fun roost_N : N ;
-fun henroost_N : N ;
-fun post_N : N ;
-fun 'winning-post_N' : N ;
-fun 'whipping-post_N' : N ;
-fun 'starting-post_N' : N ;
-fun 'telegraph-post_N' : N ;
-fun 'finger-post_N' : N ;
-fun bedpost_N : N ;
-fun guidepost_N : N ;
-fun gatepost_N : N ;
-fun goalpost_N : N ;
-fun compost_N : N ;
-fun signpost_N : N ;
-fun sternpost_N : N ;
-fun lamppost_N : N ;
-fun rudderpost_N : N ;
-fun fingerpost_N : N ;
-fun doorpost_N : N ;
-fun outpost_N : N ;
-fun frost_N : N ;
-fun permafrost_N : N ;
-fun hoarfrost_N : N ;
-fun provost_N : N ;
-fun verst_N : N ;
-fun 'double-first_N' : N ;
-fun thirst_N : N ;
-fun horst_N : N ;
-fun worst_N : N ;
-fun burst_N : N ;
-fun cloudburst_N : N ;
-fun sunburst_N : N ;
-fun airburst_N : N ;
-fun outburst_N : N ;
-fun knackwurst_N : N ;
-fun liverwurst_N : N ;
-fun bratwurst_N : N ;
-fun asst_N : N ;
-fun holocaust_N : N ;
-fun exhaust_N : N ;
-fun bust_N : N ;
-fun locust_N : N ;
-fun dust_N : N ;
-fun 'gold-dust_N' : N ;
-fun stardust_N : N ;
-fun sawdust_N : N ;
-fun gust_N : N ;
-fun disgust_N : N ;
-fun August_N : N ;
-fun lust_N : N ;
-fun bloodlust_N : N ;
-fun wanderlust_N : N ;
-fun must_N : N ;
-fun joust_N : N ;
-fun rust_N : N ;
-fun crust_N : N ;
-fun 'pie-crust_N' : N ;
-fun thrust_N : N ;
-fun 'rapier-thrust_N' : N ;
-fun outthrust_N : N ;
-fun trust_N : N ;
-fun distrust_N : N ;
-fun mistrust_N : N ;
-fun cyst_N : N ;
-fun blastocyst_N : N ;
-fun amethyst_N : N ;
-fun analyst_N : N ;
-fun psychoanalyst_N : N ;
-fun cryptanalyst_N : N ;
-fun catalyst_N : N ;
-fun anticatalyst_N : N ;
-fun biocatalyst_N : N ;
-fun tryst_N : N ;
-fun gatt_N : N ;
-fun watt_N : N ;
-fun megawatt_N : N ;
-fun abwatt_N : N ;
-fun milliwatt_N : N ;
-fun kilowatt_N : N ;
-fun bartlett_N : N ;
-fun sett_N : N ;
-fun dlitt_N : N ;
-fun mitt_N : N ;
-fun boycott_N : N ;
-fun butt_N : N ;
-fun 'water-butt_N' : N ;
-fun mutt_N : N ;
-fun putt_N : N ;
-fun ablaut_N : N ;
-fun umlaut_N : N ;
-fun aquanaut_N : N ;
-fun argonaut_N : N ;
-fun cosmonaut_N : N ;
-fun aeronaut_N : N ;
-fun astronaut_N : N ;
-fun cybernaut_N : N ;
-fun juggernaut_N : N ;
-fun sauerkraut_N : N ;
-fun debut_N : N ;
-fun sackbut_N : N ;
-fun début_N : N ;
-fun cut_N : N ;
-fun 'sword-cut_N' : N ;
-fun 'crew-cut_N' : N ;
-fun woodcut_N : N ;
-fun linecut_N : N ;
-fun linocut_N : N ;
-fun undercut_N : N ;
-fun uppercut_N : N ;
-fun haircut_N : N ;
-fun scut_N : N ;
-fun crosscut_N : N ;
-fun shortcut_N : N ;
-fun gut_N : N ;
-fun hindgut_N : N ;
-fun pinchgut_N : N ;
-fun catgut_N : N ;
-fun rotgut_N : N ;
-fun hut_N : N ;
-fun glut_N : N ;
-fun slut_N : N ;
-fun gamut_N : N ;
-fun smut_N : N ;
-fun cornsmut_N : N ;
-fun nut_N : N ;
-fun 'kola-nut_N' : N ;
-fun 'cob-nut_N' : N ;
-fun 'wing-nut_N' : N ;
-fun 'betel-nut_N' : N ;
-fun 'monkey-nut_N' : N ;
-fun peanut_N : N ;
-fun thumbnut_N : N ;
-fun cobnut_N : N ;
-fun groundnut_N : N ;
-fun candlenut_N : N ;
-fun pignut_N : N ;
-fun beechnut_N : N ;
-fun doughnut_N : N ;
-fun earthnut_N : N ;
-fun locknut_N : N ;
-fun walnut_N : N ;
-fun hazelnut_N : N ;
-fun coconut_N : N ;
-fun mockernut_N : N ;
-fun bitternut_N : N ;
-fun butternut_N : N ;
-fun chestnut_N : N ;
-fun 'horse-chestnut_N' : N ;
-fun out_N : N ;
-fun 'comb-out_N' : N ;
-fun 'down-and-out_N' : N ;
-fun 'hand-out_N' : N ;
-fun 'hide-out_N' : N ;
-fun 'share-out_N' : N ;
-fun 'working-out_N' : N ;
-fun 'freak-out_N' : N ;
-fun 'work-out_N' : N ;
-fun 'pull-out_N' : N ;
-fun 'turn-out_N' : N ;
-fun 'cop-out_N' : N ;
-fun 'cut-out_N' : N ;
-fun 'lay-out_N' : N ;
-fun 'try-out_N' : N ;
-fun bout_N : N ;
-fun 'drinking-bout_N' : N ;
-fun gadabout_N : N ;
-fun roundabout_N : N ;
-fun raceabout_N : N ;
-fun knockabout_N : N ;
-fun walkabout_N : N ;
-fun layabout_N : N ;
-fun scout_N : N ;
-fun readout_N : N ;
-fun foldout_N : N ;
-fun holdout_N : N ;
-fun handout_N : N ;
-fun fadeout_N : N ;
-fun hideout_N : N ;
-fun shakeout_N : N ;
-fun takeout_N : N ;
-fun stakeout_N : N ;
-fun strikeout_N : N ;
-fun wipeout_N : N ;
-fun closeout_N : N ;
-fun whiteout_N : N ;
-fun gout_N : N ;
-fun ragout_N : N ;
-fun rigout_N : N ;
-fun dugout_N : N ;
-fun mahout_N : N ;
-fun shout_N : N ;
-fun washout_N : N ;
-fun blackout_N : N ;
-fun checkout_N : N ;
-fun lockout_N : N ;
-fun knockout_N : N ;
-fun walkout_N : N ;
-fun cookout_N : N ;
-fun lookout_N : N ;
-fun lout_N : N ;
-fun 'litter-lout_N' : N ;
-fun clout_N : N ;
-fun fallout_N : N ;
-fun sellout_N : N ;
-fun knout_N : N ;
-fun turnout_N : N ;
-fun snout_N : N ;
-fun pout_N : N ;
-fun eelpout_N : N ;
-fun copout_N : N ;
-fun dropout_N : N ;
-fun spout_N : N ;
-fun waterspout_N : N ;
-fun rout_N : N ;
-fun grout_N : N ;
-fun sprout_N : N ;
-fun tout_N : N ;
-fun printout_N : N ;
-fun passepartout_N : N ;
-fun surtout_N : N ;
-fun stout_N : N ;
-fun cutout_N : N ;
-fun shutout_N : N ;
-fun putout_N : N ;
-fun blowout_N : N ;
-fun layout_N : N ;
-fun buyout_N : N ;
-fun put_N : N ;
-fun 'shot-put_N' : N ;
-fun caput_N : N ;
-fun throughput_N : N ;
-fun occiput_N : N ;
-fun sinciput_N : N ;
-fun input_N : N ;
-fun rut_N : N ;
-fun strut_N : N ;
-fun butut_N : N ;
-fun govt_N : N ;
-fun wt_N : N ;
-fun newt_N : N ;
-fun sext_N : N ;
-fun text_N : N ;
-fun pretext_N : N ;
-fun context_N : N ;
-fun hypertext_N : N ;
-fun 'sugar-beet_N' : N ;
-fun 'landing-craft_N' : N ;
-fun 'mosquito-craft_N' : N ;
-fun spacecraft_N : N ;
-fun hovercraft_N : N ;
-fun aircraft_N : N ;
-fun breadfruit_N : N ;
-fun grapefruit_N : N ;
-fun 'knight-errant_N' : N ;
-fun percent_N : N ;
-fun foot_N : N ;
-fun clubfoot_N : N ;
-fun forefoot_N : N ;
-fun splayfoot_N : N ;
-fun turbot_N : N ;
-fun qt_N : N ;
-fun halibut_N : N ;
-fun trout_N : N ;
-fun cwt_N : N ;
-fun next_N : N ;
-fun landau_N : N ;
-fun flambeau_N : N ;
-fun morceau_N : N ;
-fun fricandeau_N : N ;
-fun rondeau_N : N ;
-fun rouleau_N : N ;
-fun 'weather-bureau_N' : N ;
-fun reseau_N : N ;
-fun trousseau_N : N ;
-fun plateau_N : N ;
-fun portmanteau_N : N ;
-fun gâteau_N : N ;
-fun pilau_N : N ;
-fun oau_N : N ;
-fun tamarau_N : N ;
-fun frau_N : N ;
-fun tau_N : N ;
-fun luau_N : N ;
-fun babu_N : N ;
-fun zebu_N : N ;
-fun ombu_N : N ;
-fun barbu_N : N ;
-fun sabicu_N : N ;
-fun apercu_N : N ;
-fun timucu_N : N ;
-fun hindu_N : N ;
-fun urdu_N : N ;
-fun kudu_N : N ;
-fun 'prie-dieu_N' : N ;
-fun adieu_N : N ;
-fun lieu_N : N ;
-fun milieu_N : N ;
-fun leu_N : N ;
-fun bleu_N : N ;
-fun 'kung fu_N' : N ;
-fun snafu_N : N ;
-fun fugu_N : N ;
-fun catechu_N : N ;
-fun fichu_N : N ;
-fun sadhu_N : N ;
-fun teju_N : N ;
-fun juju_N : N ;
-fun haiku_N : N ;
-fun sodoku_N : N ;
-fun sudoku_N : N ;
-fun puku_N : N ;
-fun flu_N : N ;
-fun poilu_N : N ;
-fun shallu_N : N ;
-fun ormolu_N : N ;
-fun tolu_N : N ;
-fun mu_N : N ;
-fun emu_N : N ;
-fun rimu_N : N ;
-fun nu_N : N ;
-fun menu_N : N ;
-fun parvenu_N : N ;
-fun gnu_N : N ;
-fun cornu_N : N ;
-fun miaou_N : N ;
-fun marabou_N : N ;
-fun congou_N : N ;
-fun cachou_N : N ;
-fun kinkajou_N : N ;
-fun bijou_N : N ;
-fun anjou_N : N ;
-fun tinamou_N : N ;
-fun sou_N : N ;
-fun bayou_N : N ;
-fun napu_N : N ;
-fun tipu_N : N ;
-fun quipu_N : N ;
-fun coypu_N : N ;
-fun grugru_N : N ;
-fun jabiru_N : N ;
-fun guru_N : N ;
-fun kuru_N : N ;
-fun tiramisu_N : N ;
-fun babassu_N : N ;
-fun 'ju-jitsu_N' : N ;
-fun ninjutsu_N : N ;
-fun jujutsu_N : N ;
-fun impromptu_N : N ;
-fun virtu_N : N ;
-fun tutu_N : N ;
-fun kudzu_N : N ;
-fun kanzu_N : N ;
-fun caribou_N : N ;
-fun bantu_N : N ;
-fun beau_N : N ;
-fun bandeau_N : N ;
-fun tableau_N : N ;
-fun bureau_N : N ;
-fun château_N : N ;
-fun moshav_N : N ;
-fun lav_N : N ;
-fun slav_N : N ;
-fun yugoslav_N : N ;
-fun lev_N : N ;
-fun rev_N : N ;
-fun shiv_N : N ;
-fun spiv_N : N ;
-fun leitmotiv_N : N ;
-fun derv_N : N ;
-fun itv_N : N ;
-fun raw_N : N ;
-fun glow_N : N ;
-fun 'jim crow_N' : N ;
-fun caw_N : N ;
-fun macaw_N : N ;
-fun daw_N : N ;
-fun jackdaw_N : N ;
-fun guffaw_N : N ;
-fun haw_N : N ;
-fun 'haw-haw_N' : N ;
-fun chaw_N : N ;
-fun heehaw_N : N ;
-fun rickshaw_N : N ;
-fun scrimshaw_N : N ;
-fun cushaw_N : N ;
-fun thaw_N : N ;
-fun mayhaw_N : N ;
-fun jaw_N : N ;
-fun lockjaw_N : N ;
-fun law_N : N ;
-fun 'case-law_N' : N ;
-fun 'bye-law_N' : N ;
-fun claw_N : N ;
-fun flaw_N : N ;
-fun scofflaw_N : N ;
-fun slaw_N : N ;
-fun coleslaw_N : N ;
-fun outlaw_N : N ;
-fun bylaw_N : N ;
-fun maw_N : N ;
-fun mackinaw_N : N ;
-fun paw_N : N ;
-fun papaw_N : N ;
-fun forepaw_N : N ;
-fun southpaw_N : N ;
-fun pawpaw_N : N ;
-fun craw_N : N ;
-fun draw_N : N ;
-fun straw_N : N ;
-fun bedstraw_N : N ;
-fun jackstraw_N : N ;
-fun saw_N : N ;
-fun 'band-saw_N' : N ;
-fun 'pruning-saw_N' : N ;
-fun bandsaw_N : N ;
-fun handsaw_N : N ;
-fun seesaw_N : N ;
-fun jigsaw_N : N ;
-fun gangsaw_N : N ;
-fun backsaw_N : N ;
-fun hacksaw_N : N ;
-fun bucksaw_N : N ;
-fun ripsaw_N : N ;
-fun fretsaw_N : N ;
-fun pitsaw_N : N ;
-fun taw_N : N ;
-fun squaw_N : N ;
-fun waw_N : N ;
-fun yaw_N : N ;
-fun Jew_N : N ;
-fun dew_N : N ;
-fun mildew_N : N ;
-fun sundew_N : N ;
-fun honeydew_N : N ;
-fun few_N : N ;
-fun feverfew_N : N ;
-fun curfew_N : N ;
-fun chew_N : N ;
-fun clerihew_N : N ;
-fun nephew_N : N ;
-fun grandnephew_N : N ;
-fun cashew_N : N ;
-fun view_N : N ;
-fun 'side-view_N' : N ;
-fun review_N : N ;
-fun preview_N : N ;
-fun interview_N : N ;
-fun overview_N : N ;
-fun purview_N : N ;
-fun clew_N : N ;
-fun curlew_N : N ;
-fun mew_N : N ;
-fun smew_N : N ;
-fun sinew_N : N ;
-fun pew_N : N ;
-fun brew_N : N ;
-fun hebrew_N : N ;
-fun crew_N : N ;
-fun aircrew_N : N ;
-fun screw_N : N ;
-fun 'wing-screw_N' : N ;
-fun thumbscrew_N : N ;
-fun woodscrew_N : N ;
-fun jackscrew_N : N ;
-fun corkscrew_N : N ;
-fun airscrew_N : N ;
-fun setscrew_N : N ;
-fun shrew_N : N ;
-fun stew_N : N ;
-fun yew_N : N ;
-fun miaow_N : N ;
-fun bow_N : N ;
-fun handbow_N : N ;
-fun longbow_N : N ;
-fun elbow_N : N ;
-fun 'tennis-elbow_N' : N ;
-fun rainbow_N : N ;
-fun crossbow_N : N ;
-fun oxbow_N : N ;
-fun cow_N : N ;
-fun 'sea-cow_N' : N ;
-fun 'moo-cow_N' : N ;
-fun scow_N : N ;
-fun meadow_N : N ;
-fun shadow_N : N ;
-fun 'eye-shadow_N' : N ;
-fun eyeshadow_N : N ;
-fun widow_N : N ;
-fun 'war-widow_N' : N ;
-fun window_N : N ;
-fun 'transom-window_N' : N ;
-fun 'dormer-window_N' : N ;
-fun 'show-window_N' : N ;
-fun shopwindow_N : N ;
-fun meow_N : N ;
-fun hoosegow_N : N ;
-fun 'know-how_N' : N ;
-fun chow_N : N ;
-fun chowchow_N : N ;
-fun dhow_N : N ;
-fun show_N : N ;
-fun 'ice-show_N' : N ;
-fun 'strip-show_N' : N ;
-fun sideshow_N : N ;
-fun horseshow_N : N ;
-fun peepshow_N : N ;
-fun low_N : N ;
-fun bungalow_N : N ;
-fun blow_N : N ;
-fun deathblow_N : N ;
-fun counterblow_N : N ;
-fun furbelow_N : N ;
-fun flow_N : N ;
-fun backflow_N : N ;
-fun inflow_N : N ;
-fun overflow_N : N ;
-fun airflow_N : N ;
-fun outflow_N : N ;
-fun afterglow_N : N ;
-fun counterglow_N : N ;
-fun fallow_N : N ;
-fun hallow_N : N ;
-fun shallow_N : N ;
-fun mallow_N : N ;
-fun marshmallow_N : N ;
-fun waxmallow_N : N ;
-fun sallow_N : N ;
-fun tallow_N : N ;
-fun wallow_N : N ;
-fun swallow_N : N ;
-fun bellow_N : N ;
-fun fellow_N : N ;
-fun 'class-fellow_N' : N ;
-fun bedfellow_N : N ;
-fun schoolfellow_N : N ;
-fun playfellow_N : N ;
-fun yellow_N : N ;
-fun billow_N : N ;
-fun pillow_N : N ;
-fun willow_N : N ;
-fun hollow_N : N ;
-fun plow_N : N ;
-fun snowplow_N : N ;
-fun 'go-slow_N' : N ;
-fun whitlow_N : N ;
-fun mow_N : N ;
-fun haymow_N : N ;
-fun now_N : N ;
-fun know_N : N ;
-fun 'don\'t-know_N' : N ;
-fun minnow_N : N ;
-fun topminnow_N : N ;
-fun winnow_N : N ;
-fun snow_N : N ;
-fun pow_N : N ;
-fun row_N : N ;
-fun brow_N : N ;
-fun middlebrow_N : N ;
-fun eyebrow_N : N ;
-fun highbrow_N : N ;
-fun lowbrow_N : N ;
-fun crow_N : N ;
-fun 'cock-crow_N' : N ;
-fun 'carrion-crow_N' : N ;
-fun scarecrow_N : N ;
-fun escrow_N : N ;
-fun hedgerow_N : N ;
-fun serow_N : N ;
-fun throw_N : N ;
-fun overthrow_N : N ;
-fun prow_N : N ;
-fun arrow_N : N ;
-fun barrow_N : N ;
-fun 'hand-barrow_N' : N ;
-fun handbarrow_N : N ;
-fun wheelbarrow_N : N ;
-fun farrow_N : N ;
-fun harrow_N : N ;
-fun restharrow_N : N ;
-fun marrow_N : N ;
-fun narrow_N : N ;
-fun sparrow_N : N ;
-fun 'hedge-sparrow_N' : N ;
-fun yarrow_N : N ;
-fun morrow_N : N ;
-fun tomorrow_N : N ;
-fun sorrow_N : N ;
-fun burrow_N : N ;
-fun 'rabbit-burrow_N' : N ;
-fun furrow_N : N ;
-fun sow_N : N ;
-fun curassow_N : N ;
-fun tow_N : N ;
-fun kotow_N : N ;
-fun undertow_N : N ;
-fun kowtow_N : N ;
-fun vow_N : N ;
-fun wow_N : N ;
-fun 'bow-wow_N' : N ;
-fun powwow_N : N ;
-fun 'son-in-law_N' : N ;
-fun 'father-in-law_N' : N ;
-fun 'mother-in-law_N' : N ;
-fun 'brother-in-law_N' : N ;
-fun 'daughter-in-law_N' : N ;
-fun 'sister-in-law_N' : N ;
-fun kw_N : N ;
-fun ox_N : N ;
-fun pox_N : N ;
-fun vox_N : N ;
-fun ax_N : N ;
-fun broadax_N : N ;
-fun addax_N : N ;
-fun poleax_N : N ;
-fun breakax_N : N ;
-fun galax_N : N ;
-fun flax_N : N ;
-fun toadflax_N : N ;
-fun smilax_N : N ;
-fun parallax_N : N ;
-fun max_N : N ;
-fun climax_N : N ;
-fun anticlimax_N : N ;
-fun opopanax_N : N ;
-fun hoax_N : N ;
-fun pax_N : N ;
-fun anthrax_N : N ;
-fun borax_N : N ;
-fun thorax_N : N ;
-fun hemothorax_N : N ;
-fun pneumothorax_N : N ;
-fun hydrothorax_N : N ;
-fun prothorax_N : N ;
-fun storax_N : N ;
-fun hyrax_N : N ;
-fun styrax_N : N ;
-fun sax_N : N ;
-fun tax_N : N ;
-fun 'income-tax_N' : N ;
-fun 'poll-tax_N' : N ;
-fun syntax_N : N ;
-fun supertax_N : N ;
-fun surtax_N : N ;
-fun wax_N : N ;
-fun 'sealing-wax_N' : N ;
-fun earwax_N : N ;
-fun beeswax_N : N ;
-fun ibex_N : N ;
-fun codex_N : N ;
-fun spandex_N : N ;
-fun index_N : N ;
-fun 'cross-index_N' : N ;
-fun caudex_N : N ;
-fun pontifex_N : N ;
-fun hex_N : N ;
-fun narthex_N : N ;
-fun telex_N : N ;
-fun flex_N : N ;
-fun reflex_N : N ;
-fun circumflex_N : N ;
-fun ilex_N : N ;
-fun silex_N : N ;
-fun multiplex_N : N ;
-fun googolplex_N : N ;
-fun complex_N : N ;
-fun kleenex_N : N ;
-fun annex_N : N ;
-fun apex_N : N ;
-fun antapex_N : N ;
-fun perspex_N : N ;
-fun centrex_N : N ;
-fun sex_N : N ;
-fun cybersex_N : N ;
-fun vertex_N : N ;
-fun cortex_N : N ;
-fun latex_N : N ;
-fun aertex_N : N ;
-fun vortex_N : N ;
-fun silvex_N : N ;
-fun spadix_N : N ;
-fun appendix_N : N ;
-fun fix_N : N ;
-fun prefix_N : N ;
-fun antefix_N : N ;
-fun affix_N : N ;
-fun suffix_N : N ;
-fun crucifix_N : N ;
-fun infix_N : N ;
-fun helix_N : N ;
-fun kylix_N : N ;
-fun mix_N : N ;
-fun nix_N : N ;
-fun phoenix_N : N ;
-fun vernix_N : N ;
-fun fornix_N : N ;
-fun 'grand prix_N' : N ;
-fun cicatrix_N : N ;
-fun varix_N : N ;
-fun mediatrix_N : N ;
-fun aviatrix_N : N ;
-fun matrix_N : N ;
-fun dominatrix_N : N ;
-fun testatrix_N : N ;
-fun executrix_N : N ;
-fun cervix_N : N ;
-fun phalanx_N : N ;
-fun manx_N : N ;
-fun sphinx_N : N ;
-fun jinx_N : N ;
-fun minx_N : N ;
-fun meninx_N : N ;
-fun salpinx_N : N ;
-fun syrinx_N : N ;
-fun lynx_N : N ;
-fun pharynx_N : N ;
-fun laryngopharynx_N : N ;
-fun oropharynx_N : N ;
-fun nasopharynx_N : N ;
-fun larynx_N : N ;
-fun box_N : N ;
-fun 'music-box_N' : N ;
-fun 'deed-box_N' : N ;
-fun 'dice-box_N' : N ;
-fun 'jack-in-the-box_N' : N ;
-fun 'paddle-box_N' : N ;
-fun 'goggle-box_N' : N ;
-fun 'shooting-box_N' : N ;
-fun 'dispatch-box_N' : N ;
-fun 'musical-box_N' : N ;
-fun 'signal-box_N' : N ;
-fun 'call-box_N' : N ;
-fun 'pillar-box_N' : N ;
-fun 'letter-box_N' : N ;
-fun 'poor-box_N' : N ;
-fun 'christmas-box_N' : N ;
-fun 'alms-box_N' : N ;
-fun 'witness-box_N' : N ;
-fun 'press-box_N' : N ;
-fun 'ballot-box_N' : N ;
-fun 'prompt-box_N' : N ;
-fun 'window-box_N' : N ;
-fun 'play-box_N' : N ;
-fun 'sentry-box_N' : N ;
-fun 'jury-box_N' : N ;
-fun bandbox_N : N ;
-fun sandbox_N : N ;
-fun soundbox_N : N ;
-fun icebox_N : N ;
-fun jukebox_N : N ;
-fun shoebox_N : N ;
-fun firebox_N : N ;
-fun horsebox_N : N ;
-fun snuffbox_N : N ;
-fun strongbox_N : N ;
-fun matchbox_N : N ;
-fun cashbox_N : N ;
-fun workbox_N : N ;
-fun mailbox_N : N ;
-fun pillbox_N : N ;
-fun toolbox_N : N ;
-fun homeobox_N : N ;
-fun soapbox_N : N ;
-fun gearbox_N : N ;
-fun tinderbox_N : N ;
-fun chatterbox_N : N ;
-fun sweatbox_N : N ;
-fun hatbox_N : N ;
-fun saltbox_N : N ;
-fun paintbox_N : N ;
-fun hotbox_N : N ;
-fun postbox_N : N ;
-fun playbox_N : N ;
-fun moneybox_N : N ;
-fun skybox_N : N ;
-fun cox_N : N ;
-fun paradox_N : N ;
-fun fox_N : N ;
-fun 'flying-fox_N' : N ;
-fun lox_N : N ;
-fun phlox_N : N ;
-fun equinox_N : N ;
-fun rickettsialpox_N : N ;
-fun camelpox_N : N ;
-fun smallpox_N : N ;
-fun chickenpox_N : N ;
-fun cowpox_N : N ;
-fun xerox_N : N ;
-fun detox_N : N ;
-fun bordeaux_N : N ;
-fun lux_N : N ;
-fun flux_N : N ;
-fun reflux_N : N ;
-fun efflux_N : N ;
-fun influx_N : N ;
-fun roux_N : N ;
-fun crux_N : N ;
-fun coccyx_N : N ;
-fun calyx_N : N ;
-fun epicalyx_N : N ;
-fun onyx_N : N ;
-fun sardonyx_N : N ;
-fun pyx_N : N ;
-fun archaeopteryx_N : N ;
-fun anomalopteryx_N : N ;
-fun oryx_N : N ;
-fun 'billet-doux_N' : N ;
-fun sioux_N : N ;
-fun heyday_N : N ;
-fun say_N : N ;
-fun 'quai d\'orsay_N' : N ;
-fun 'go-by_N' : N ;
-fun 'passer-by_N' : N ;
-fun mickey_N : N ;
-fun 'sir roger de coverley_N' : N ;
-fun prey_N : N ;
-fun hooky_N : N ;
-fun nelly_N : N ;
-fun tammany_N : N ;
-fun ca'canny_N : N ;
-fun skullduggery_N : N ;
-fun soldiery_N : N ;
-fun penny_1_N : N ;
-fun May_N : N ;
-fun bay_N : N ;
-fun rosebay_N : N ;
-fun sickbay_N : N ;
-fun decay_N : N ;
-fun day_N : N ;
-fun 'boxing day_N' : N ;
-fun 'name-day_N' : N ;
-fun 'fete-day_N' : N ;
-fun 'off-day_N' : N ;
-fun 'flag-day_N' : N ;
-fun 'rag-day_N' : N ;
-fun 'washing-day_N' : N ;
-fun 'polling-day_N' : N ;
-fun 'speech-day_N' : N ;
-fun 'quarter-day_N' : N ;
-fun 'saint\'s-day_N' : N ;
-fun 'market-day_N' : N ;
-fun 'feast-day_N' : N ;
-fun 'rest-day_N' : N ;
-fun midday_N : N ;
-fun washday_N : N ;
-fun birthday_N : N ;
-fun holiday_N : N ;
-fun 'half-holiday_N' : N ;
-fun Friday_N : N ;
-fun weekday_N : N ;
-fun workday_N : N ;
-fun caranday_N : N ;
-fun Monday_N : N ;
-fun Sunday_N : N ;
-fun today_N : N ;
-fun yesterday_N : N ;
-fun Saturday_N : N ;
-fun Wednesday_N : N ;
-fun Tuesday_N : N ;
-fun 'shrove tuesday_N' : N ;
-fun Thursday_N : N ;
-fun 'maundy thursday_N' : N ;
-fun mayday_N : N ;
-fun payday_N : N ;
-fun gay_N : N ;
-fun nosegay_N : N ;
-fun margay_N : N ;
-fun hay_N : N ;
-fun sashay_N : N ;
-fun jay_N : N ;
-fun popinjay_N : N ;
-fun tokay_N : N ;
-fun lay_N : N ;
-fun malay_N : N ;
-fun clay_N : N ;
-fun pipeclay_N : N ;
-fun fireclay_N : N ;
-fun belay_N : N ;
-fun delay_N : N ;
-fun roundelay_N : N ;
-fun relay_N : N ;
-fun inlay_N : N ;
-fun play_N : N ;
-fun 'child\'s-play_N' : N ;
-fun swordplay_N : N ;
-fun replay_N : N ;
-fun foreplay_N : N ;
-fun horseplay_N : N ;
-fun screenplay_N : N ;
-fun gunplay_N : N ;
-fun interplay_N : N ;
-fun splay_N : N ;
-fun display_N : N ;
-fun byplay_N : N ;
-fun parlay_N : N ;
-fun underlay_N : N ;
-fun overlay_N : N ;
-fun outlay_N : N ;
-fun dismay_N : N ;
-fun nay_N : N ;
-fun hogmanay_N : N ;
-fun pay_N : N ;
-fun 'strike-pay_N' : N ;
-fun 'half-pay_N' : N ;
-fun 'sick-pay_N' : N ;
-fun ray_N : N ;
-fun 'x-ray_N' : N ;
-fun bray_N : N ;
-fun chambray_N : N ;
-fun dray_N : N ;
-fun fray_N : N ;
-fun affray_N : N ;
-fun gray_N : N ;
-fun stingray_N : N ;
-fun sunray_N : N ;
-fun foray_N : N ;
-fun moray_N : N ;
-fun spray_N : N ;
-fun array_N : N ;
-fun disarray_N : N ;
-fun tray_N : N ;
-fun 'tea-tray_N' : N ;
-fun 'ice-tray_N' : N ;
-fun 'in-tray_N' : N ;
-fun 'out-tray_N' : N ;
-fun icetray_N : N ;
-fun ashtray_N : N ;
-fun stray_N : N ;
-fun hearsay_N : N ;
-fun assay_N : N ;
-fun bioassay_N : N ;
-fun immunoassay_N : N ;
-fun radioimmunoassay_N : N ;
-fun essay_N : N ;
-fun stay_N : N ;
-fun forestay_N : N ;
-fun backstay_N : N ;
-fun mainstay_N : N ;
-fun tatouay_N : N ;
-fun quay_N : N ;
-fun way_N : N ;
-fun hideaway_N : N ;
-fun takeaway_N : N ;
-fun areaway_N : N ;
-fun seaway_N : N ;
-fun giveaway_N : N ;
-fun breakaway_N : N ;
-fun walkaway_N : N ;
-fun runaway_N : N ;
-fun caraway_N : N ;
-fun tearaway_N : N ;
-fun getaway_N : N ;
-fun straightaway_N : N ;
-fun castaway_N : N ;
-fun cutaway_N : N ;
-fun throwaway_N : N ;
-fun stowaway_N : N ;
-fun subway_N : N ;
-fun headway_N : N ;
-fun roadway_N : N ;
-fun speedway_N : N ;
-fun midway_N : N ;
-fun raceway_N : N ;
-fun tideway_N : N ;
-fun leeway_N : N ;
-fun freeway_N : N ;
-fun carriageway_N : N ;
-fun steerageway_N : N ;
-fun passageway_N : N ;
-fun ropeway_N : N ;
-fun causeway_N : N ;
-fun gateway_N : N ;
-fun driveway_N : N ;
-fun gangway_N : N ;
-fun archway_N : N ;
-fun hatchway_N : N ;
-fun highway_N : N ;
-fun superhighway_N : N ;
-fun throughway_N : N ;
-fun pathway_N : N ;
-fun taxiway_N : N ;
-fun railway_N : N ;
-fun 'cable-railway_N' : N ;
-fun 'rack-railway_N' : N ;
-fun hallway_N : N ;
-fun spillway_N : N ;
-fun tramway_N : N ;
-fun companionway_N : N ;
-fun runway_N : N ;
-fun mulloway_N : N ;
-fun shipway_N : N ;
-fun slipway_N : N ;
-fun clearway_N : N ;
-fun waterway_N : N ;
-fun airway_N : N ;
-fun fairway_N : N ;
-fun stairway_N : N ;
-fun doorway_N : N ;
-fun motorway_N : N ;
-fun sway_N : N ;
-fun expressway_N : N ;
-fun beltway_N : N ;
-fun byway_N : N ;
-fun alleyway_N : N ;
-fun baby_N : N ;
-fun 'war-baby_N' : N ;
-fun crybaby_N : N ;
-fun wallaby_N : N ;
-fun lullaby_N : N ;
-fun sassaby_N : N ;
-fun cabby_N : N ;
-fun tabby_N : N ;
-fun bobby_N : N ;
-fun hobby_N : N ;
-fun lobby_N : N ;
-fun cubby_N : N ;
-fun hubby_N : N ;
-fun grubby_N : N ;
-fun rugby_N : N ;
-fun trilby_N : N ;
-fun 'namby-pamby_N' : N ;
-fun goby_N : N ;
-fun booby_N : N ;
-fun toby_N : N ;
-fun derby_N : N ;
-fun passerby_N : N ;
-fun busby_N : N ;
-fun ruby_N : N ;
-fun standby_N : N ;
-fun layby_N : N ;
-fun abbacy_N : N ;
-fun celibacy_N : N ;
-fun efficacy_N : N ;
-fun inefficacy_N : N ;
-fun delicacy_N : N ;
-fun indelicacy_N : N ;
-fun intricacy_N : N ;
-fun advocacy_N : N ;
-fun candidacy_N : N ;
-fun legacy_N : N ;
-fun delegacy_N : N ;
-fun profligacy_N : N ;
-fun mediacy_N : N ;
-fun immediacy_N : N ;
-fun prelacy_N : N ;
-fun fallacy_N : N ;
-fun supremacy_N : N ;
-fun primacy_N : N ;
-fun legitimacy_N : N ;
-fun illegitimacy_N : N ;
-fun ultimacy_N : N ;
-fun intimacy_N : N ;
-fun diplomacy_N : N ;
-fun dichromacy_N : N ;
-fun monochromacy_N : N ;
-fun pharmacy_N : N ;
-fun contumacy_N : N ;
-fun effeminacy_N : N ;
-fun indeterminacy_N : N ;
-fun obstinacy_N : N ;
-fun lunacy_N : N ;
-fun papacy_N : N ;
-fun episcopacy_N : N ;
-fun mobocracy_N : N ;
-fun gynecocracy_N : N ;
-fun theocracy_N : N ;
-fun adhocracy_N : N ;
-fun democracy_N : N ;
-fun technocracy_N : N ;
-fun hierocracy_N : N ;
-fun meritocracy_N : N ;
-fun gerontocracy_N : N ;
-fun aristocracy_N : N ;
-fun autocracy_N : N ;
-fun plutocracy_N : N ;
-fun bureaucracy_N : N ;
-fun confederacy_N : N ;
-fun numeracy_N : N ;
-fun degeneracy_N : N ;
-fun literacy_N : N ;
-fun illiteracy_N : N ;
-fun piracy_N : N ;
-fun biopiracy_N : N ;
-fun conspiracy_N : N ;
-fun magistracy_N : N ;
-fun curacy_N : N ;
-fun accuracy_N : N ;
-fun inaccuracy_N : N ;
-fun obduracy_N : N ;
-fun intestacy_N : N ;
-fun adequacy_N : N ;
-fun inadequacy_N : N ;
-fun privacy_N : N ;
-fun baccy_N : N ;
-fun prophecy_N : N ;
-fun secrecy_N : N ;
-fun theodicy_N : N ;
-fun policy_N : N ;
-fun normalcy_N : N ;
-fun vacancy_N : N ;
-fun ascendancy_N : N ;
-fun redundancy_N : N ;
-fun verdancy_N : N ;
-fun fancy_N : N ;
-fun infancy_N : N ;
-fun trenchancy_N : N ;
-fun sycophancy_N : N ;
-fun brilliancy_N : N ;
-fun pliancy_N : N ;
-fun arithmancy_N : N ;
-fun geomancy_N : N ;
-fun lithomancy_N : N ;
-fun onomancy_N : N ;
-fun necromancy_N : N ;
-fun hydromancy_N : N ;
-fun oneiromancy_N : N ;
-fun pyromancy_N : N ;
-fun dormancy_N : N ;
-fun tenancy_N : N ;
-fun lieutenancy_N : N ;
-fun stagnancy_N : N ;
-fun pregnancy_N : N ;
-fun malignancy_N : N ;
-fun poignancy_N : N ;
-fun discrepancy_N : N ;
-fun flippancy_N : N ;
-fun occupancy_N : N ;
-fun preoccupancy_N : N ;
-fun vagrancy_N : N ;
-fun errancy_N : N ;
-fun inerrancy_N : N ;
-fun recalcitrancy_N : N ;
-fun recusancy_N : N ;
-fun blatancy_N : N ;
-fun expectancy_N : N ;
-fun inhabitancy_N : N ;
-fun oscitancy_N : N ;
-fun militancy_N : N ;
-fun hesitancy_N : N ;
-fun consultancy_N : N ;
-fun accountancy_N : N ;
-fun constancy_N : N ;
-fun inconstancy_N : N ;
-fun piquancy_N : N ;
-fun truancy_N : N ;
-fun relevancy_N : N ;
-fun irrelevancy_N : N ;
-fun conservancy_N : N ;
-fun buoyancy_N : N ;
-fun lambency_N : N ;
-fun incumbency_N : N ;
-fun absorbency_N : N ;
-fun nonabsorbency_N : N ;
-fun adjacency_N : N ;
-fun complacency_N : N ;
-fun 'self-complacency_N' : N ;
-fun decency_N : N ;
-fun indecency_N : N ;
-fun recency_N : N ;
-fun innocency_N : N ;
-fun translucency_N : N ;
-fun residency_N : N ;
-fun presidency_N : N ;
-fun ascendency_N : N ;
-fun transcendency_N : N ;
-fun resplendency_N : N ;
-fun dependency_N : N ;
-fun tendency_N : N ;
-fun despondency_N : N ;
-fun agency_N : N ;
-fun 'press-agency_N' : N ;
-fun regency_N : N ;
-fun intransigency_N : N ;
-fun exigency_N : N ;
-fun plangency_N : N ;
-fun tangency_N : N ;
-fun stringency_N : N ;
-fun astringency_N : N ;
-fun contingency_N : N ;
-fun pungency_N : N ;
-fun cogency_N : N ;
-fun emergency_N : N ;
-fun detergency_N : N ;
-fun divergency_N : N ;
-fun urgency_N : N ;
-fun insurgency_N : N ;
-fun deficiency_N : N ;
-fun immunodeficiency_N : N ;
-fun efficiency_N : N ;
-fun inefficiency_N : N ;
-fun sufficiency_N : N ;
-fun 'self-sufficiency_N' : N ;
-fun insufficiency_N : N ;
-fun proficiency_N : N ;
-fun expediency_N : N ;
-fun inexpediency_N : N ;
-fun resiliency_N : N ;
-fun leniency_N : N ;
-fun incipiency_N : N ;
-fun pruriency_N : N ;
-fun parturiency_N : N ;
-fun transiency_N : N ;
-fun valency_N : N ;
-fun excellency_N : N ;
-fun truculency_N : N ;
-fun clemency_N : N ;
-fun inclemency_N : N ;
-fun permanency_N : N ;
-fun transparency_N : N ;
-fun belligerency_N : N ;
-fun coherency_N : N ;
-fun currency_N : N ;
-fun latency_N : N ;
-fun patency_N : N ;
-fun incompetency_N : N ;
-fun potency_N : N ;
-fun totipotency_N : N ;
-fun consistency_N : N ;
-fun inconsistency_N : N ;
-fun fluency_N : N ;
-fun disfluency_N : N ;
-fun frequency_N : N ;
-fun 'high-frequency_N' : N ;
-fun infrequency_N : N ;
-fun delinquency_N : N ;
-fun constituency_N : N ;
-fun solvency_N : N ;
-fun insolvency_N : N ;
-fun fervency_N : N ;
-fun chaplaincy_N : N ;
-fun chieftaincy_N : N ;
-fun idiocy_N : N ;
-fun mercy_N : N ;
-fun baronetcy_N : N ;
-fun viscountcy_N : N ;
-fun paramountcy_N : N ;
-fun bankruptcy_N : N ;
-fun ready_N : N ;
-fun makeready_N : N ;
-fun steady_N : N ;
-fun lady_N : N ;
-fun malady_N : N ;
-fun landlady_N : N ;
-fun milady_N : N ;
-fun charlady_N : N ;
-fun toady_N : N ;
-fun caddy_N : N ;
-fun 'tea-caddy_N' : N ;
-fun daddy_N : N ;
-fun 'sugar-daddy_N' : N ;
-fun paddy_N : N ;
-fun eddy_N : N ;
-fun teddy_N : N ;
-fun kiddy_N : N ;
-fun middy_N : N ;
-fun shoddy_N : N ;
-fun toddy_N : N ;
-fun buddy_N : N ;
-fun cuddy_N : N ;
-fun 'fuddy-duddy_N' : N ;
-fun needy_N : N ;
-fun tragedy_N : N ;
-fun remedy_N : N ;
-fun comedy_N : N ;
-fun tragicomedy_N : N ;
-fun seriocomedy_N : N ;
-fun perfidy_N : N ;
-fun cryptorchidy_N : N ;
-fun haploidy_N : N ;
-fun diploidy_N : N ;
-fun amphidiploidy_N : N ;
-fun heteroploidy_N : N ;
-fun aneuploidy_N : N ;
-fun polyploidy_N : N ;
-fun subsidy_N : N ;
-fun tidy_N : N ;
-fun candy_N : N ;
-fun 'sugar-candy_N' : N ;
-fun dandy_N : N ;
-fun jimdandy_N : N ;
-fun organdy_N : N ;
-fun shandy_N : N ;
-fun brandy_N : N ;
-fun shindy_N : N ;
-fun lindy_N : N ;
-fun burgundy_N : N ;
-fun body_N : N ;
-fun antibody_N : N ;
-fun isoantibody_N : N ;
-fun autoantibody_N : N ;
-fun dogsbody_N : N ;
-fun busybody_N : N ;
-fun melody_N : N ;
-fun psalmody_N : N ;
-fun threnody_N : N ;
-fun goody_N : N ;
-fun 'goody-goody_N' : N ;
-fun chiropody_N : N ;
-fun polypody_N : N ;
-fun parody_N : N ;
-fun prosody_N : N ;
-fun rhapsody_N : N ;
-fun tody_N : N ;
-fun custody_N : N ;
-fun jeopardy_N : N ;
-fun bastardy_N : N ;
-fun 'hurdy-gurdy_N' : N ;
-fun gaudy_N : N ;
-fun study_N : N ;
-fun 'work-study_N' : N ;
-fun understudy_N : N ;
-fun bawdy_N : N ;
-fun dowdy_N : N ;
-fun rowdy_N : N ;
-fun bey_N : N ;
-fun mangabey_N : N ;
-fun abbey_N : N ;
-fun wincey_N : N ;
-fun bogey_N : N ;
-fun fogey_N : N ;
-fun whey_N : N ;
-fun key_N : N ;
-fun 'watch-key_N' : N ;
-fun 'ash-key_N' : N ;
-fun 'master-key_N' : N ;
-fun lackey_N : N ;
-fun dickey_N : N ;
-fun hickey_N : N ;
-fun rickey_N : N ;
-fun hockey_N : N ;
-fun jockey_N : N ;
-fun latchkey_N : N ;
-fun donkey_N : N ;
-fun monkey_N : N ;
-fun turnkey_N : N ;
-fun flunkey_N : N ;
-fun chokey_N : N ;
-fun darkey_N : N ;
-fun Turkey_N : N ;
-fun whiskey_N : N ;
-fun passkey_N : N ;
-fun ley_N : N ;
-fun medley_N : N ;
-fun ridley_N : N ;
-fun langley_N : N ;
-fun bailey_N : N ;
-fun smiley_N : N ;
-fun alley_N : N ;
-fun 'tin pan alley_N' : N ;
-fun galley_N : N ;
-fun tomalley_N : N ;
-fun valley_N : N ;
-fun 'rift-valley_N' : N ;
-fun trolley_N : N ;
-fun 'tea-trolley_N' : N ;
-fun volley_N : N ;
-fun 'half-volley_N' : N ;
-fun pulley_N : N ;
-fun barley_N : N ;
-fun 'pearl-barley_N' : N ;
-fun parley_N : N ;
-fun paisley_N : N ;
-fun parsley_N : N ;
-fun motley_N : N ;
-fun doyley_N : N ;
-fun mamey_N : N ;
-fun limey_N : N ;
-fun garganey_N : N ;
-fun kidney_N : N ;
-fun hackney_N : N ;
-fun cockney_N : N ;
-fun chimney_N : N ;
-fun spinney_N : N ;
-fun coney_N : N ;
-fun honey_N : N ;
-fun phoney_N : N ;
-fun baloney_N : N ;
-fun boloney_N : N ;
-fun money_N : N ;
-fun 'blood-money_N' : N ;
-fun 'entrance-money_N' : N ;
-fun 'prize-money_N' : N ;
-fun 'hush-money_N' : N ;
-fun 'pin-money_N' : N ;
-fun 'pocket-money_N' : N ;
-fun 'earnest-money_N' : N ;
-fun blarney_N : N ;
-fun attorney_N : N ;
-fun gurney_N : N ;
-fun journey_N : N ;
-fun tourney_N : N ;
-fun jitney_N : N ;
-fun chutney_N : N ;
-fun hooey_N : N ;
-fun drey_N : N ;
-fun palfrey_N : N ;
-fun comfrey_N : N ;
-fun grey_N : N ;
-fun 'dapple-grey_N' : N ;
-fun 'iron-grey_N' : N ;
-fun orphrey_N : N ;
-fun storey_N : N ;
-fun lamprey_N : N ;
-fun osprey_N : N ;
-fun surrey_N : N ;
-fun trey_N : N ;
-fun 'linsey-woolsey_N' : N ;
-fun whimsey_N : N ;
-fun malmsey_N : N ;
-fun jersey_N : N ;
-fun odyssey_N : N ;
-fun curtsey_N : N ;
-fun whitey_N : N ;
-fun chantey_N : N ;
-fun maguey_N : N ;
-fun 'chop suey_N' : N ;
-fun peavey_N : N ;
-fun slavey_N : N ;
-fun covey_N : N ;
-fun survey_N : N ;
-fun resurvey_N : N ;
-fun taffy_N : N ;
-fun jiffy_N : N ;
-fun salsify_N : N ;
-fun mycophagy_N : N ;
-fun geophagy_N : N ;
-fun anthropophagy_N : N ;
-fun coprophagy_N : N ;
-fun scatophagy_N : N ;
-fun elegy_N : N ;
-fun strategy_N : N ;
-fun geostrategy_N : N ;
-fun piggy_N : N ;
-fun doggy_N : N ;
-fun buggy_N : N ;
-fun prodigy_N : N ;
-fun effigy_N : N ;
-fun bogy_N : N ;
-fun pedagogy_N : N ;
-fun demagogy_N : N ;
-fun genealogy_N : N ;
-fun mammalogy_N : N ;
-fun paleomammalogy_N : N ;
-fun analogy_N : N ;
-fun mineralogy_N : N ;
-fun tetralogy_N : N ;
-fun trilogy_N : N ;
-fun ology_N : N ;
-fun amphibology_N : N ;
-fun tribology_N : N ;
-fun symbology_N : N ;
-fun garbology_N : N ;
fun malacology_N : N ;
-fun pharmacology_N : N ;
-fun psychopharmacology_N : N ;
-fun ecology_N : N ;
-fun gynaecology_N : N ;
-fun gynecology_N : N ;
-fun paleoecology_N : N ;
-fun musicology_N : N ;
-fun lexicology_N : N ;
-fun toxicology_N : N ;
-fun oncology_N : N ;
-fun phycology_N : N ;
-fun mycology_N : N ;
-fun pteridology_N : N ;
-fun methodology_N : N ;
-fun archaeology_N : N ;
-fun spelaeology_N : N ;
-fun ideology_N : N ;
-fun geology_N : N ;
-fun paleogeology_N : N ;
-fun archeology_N : N ;
-fun protoarcheology_N : N ;
-fun rheology_N : N ;
-fun theology_N : N ;
-fun paleology_N : N ;
-fun speleology_N : N ;
-fun teleology_N : N ;
-fun venereology_N : N ;
-fun phraseology_N : N ;
-fun osteology_N : N ;
-fun rhinolaryngology_N : N ;
-fun allergology_N : N ;
-fun conchology_N : N ;
-fun psychology_N : N ;
-fun graphology_N : N ;
-fun nephology_N : N ;
-fun psephology_N : N ;
-fun morphology_N : N ;
-fun pathology_N : N ;
-fun paleopathology_N : N ;
-fun immunopathology_N : N ;
-fun ethology_N : N ;
-fun ornithology_N : N ;
-fun paleornithology_N : N ;
-fun anthology_N : N ;
-fun mythology_N : N ;
-fun biology_N : N ;
-fun paleobiology_N : N ;
-fun sociobiology_N : N ;
-fun radiobiology_N : N ;
-fun microbiology_N : N ;
-fun agrobiology_N : N ;
-fun neurobiology_N : N ;
-fun exobiology_N : N ;
-fun cryobiology_N : N ;
-fun sociology_N : N ;
-fun radiology_N : N ;
-fun cardiology_N : N ;
-fun audiology_N : N ;
-fun hagiology_N : N ;
-fun angiology_N : N ;
-fun epidemiology_N : N ;
-fun craniology_N : N ;
-fun bacteriology_N : N ;
-fun soteriology_N : N ;
-fun anesthesiology_N : N ;
-fun ecclesiology_N : N ;
-fun kinesiology_N : N ;
-fun physiology_N : N ;
-fun neurophysiology_N : N ;
-fun etiology_N : N ;
-fun aetiology_N : N ;
-fun paletiology_N : N ;
-fun axiology_N : N ;
-fun angelology_N : N ;
-fun philology_N : N ;
-fun epistemology_N : N ;
-fun ophthalmology_N : N ;
-fun homology_N : N ;
-fun pomology_N : N ;
-fun entomology_N : N ;
-fun seismology_N : N ;
-fun cosmology_N : N ;
-fun etymology_N : N ;
-fun zymology_N : N ;
-fun enzymology_N : N ;
-fun volcanology_N : N ;
-fun enology_N : N ;
-fun selenology_N : N ;
-fun phenomenology_N : N ;
-fun penology_N : N ;
-fun phrenology_N : N ;
-fun technology_N : N ;
-fun biotechnology_N : N ;
-fun nanotechnology_N : N ;
-fun ethnology_N : N ;
-fun criminology_N : N ;
-fun terminology_N : N ;
-fun endocrinology_N : N ;
-fun sinology_N : N ;
-fun limnology_N : N ;
-fun iconology_N : N ;
-fun phonology_N : N ;
-fun chronology_N : N ;
-fun glottochronology_N : N ;
-fun immunology_N : N ;
-fun oology_N : N ;
-fun zoology_N : N ;
-fun paleozoology_N : N ;
-fun protozoology_N : N ;
-fun apology_N : N ;
-fun escapology_N : N ;
-fun anthropology_N : N ;
-fun paleoanthropology_N : N ;
-fun topology_N : N ;
-fun typology_N : N ;
-fun necrology_N : N ;
-fun paleodendrology_N : N ;
-fun hydrology_N : N ;
-fun aerology_N : N ;
-fun numerology_N : N ;
-fun serology_N : N ;
-fun heterology_N : N ;
-fun gastroenterology_N : N ;
-fun lepidopterology_N : N ;
-fun agrology_N : N ;
-fun nephrology_N : N ;
-fun virology_N : N ;
-fun orology_N : N ;
-fun meteorology_N : N ;
-fun horology_N : N ;
-fun metrology_N : N ;
-fun petrology_N : N ;
-fun astrology_N : N ;
-fun urology_N : N ;
-fun neurology_N : N ;
-fun futurology_N : N ;
-fun misology_N : N ;
-fun parisology_N : N ;
-fun nosology_N : N ;
-fun posology_N : N ;
-fun scatology_N : N ;
-fun eschatology_N : N ;
-fun hematology_N : N ;
-fun climatology_N : N ;
-fun paleoclimatology_N : N ;
-fun bioclimatology_N : N ;
-fun primatology_N : N ;
-fun stemmatology_N : N ;
-fun dermatology_N : N ;
-fun traumatology_N : N ;
-fun rheumatology_N : N ;
-fun thanatology_N : N ;
-fun perinatology_N : N ;
-fun neonatology_N : N ;
-fun teratology_N : N ;
-fun dialectology_N : N ;
-fun proctology_N : N ;
-fun fetology_N : N ;
-fun cosmetology_N : N ;
-fun herpetology_N : N ;
-fun ontology_N : N ;
-fun palaeontology_N : N ;
-fun paleontology_N : N ;
-fun micropaleontology_N : N ;
-fun gerontology_N : N ;
-fun otology_N : N ;
-fun protology_N : N ;
-fun histology_N : N ;
-fun tautology_N : N ;
-fun cytology_N : N ;
-fun reflexology_N : N ;
-fun mixology_N : N ;
-fun doxology_N : N ;
-fun ichthyology_N : N ;
-fun myology_N : N ;
-fun embryology_N : N ;
-fun eulogy_N : N ;
-fun stogy_N : N ;
-fun lethargy_N : N ;
-fun clergy_N : N ;
-fun allergy_N : N ;
-fun anergy_N : N ;
-fun energy_N : N ;
-fun synergy_N : N ;
-fun asynergy_N : N ;
-fun orgy_N : N ;
-fun porgy_N : N ;
-fun theurgy_N : N ;
-fun metallurgy_N : N ;
-fun dramaturgy_N : N ;
-fun liturgy_N : N ;
-fun syzygy_N : N ;
-fun logomachy_N : N ;
-fun naumachy_N : N ;
-fun entelechy_N : N ;
-fun squirearchy_N : N ;
-fun oligarchy_N : N ;
-fun diarchy_N : N ;
-fun matriarchy_N : N ;
-fun patriarchy_N : N ;
-fun anarchy_N : N ;
-fun monarchy_N : N ;
-fun eparchy_N : N ;
-fun hierarchy_N : N ;
-fun autarchy_N : N ;
-fun dyarchy_N : N ;
-fun duchy_N : N ;
-fun archduchy_N : N ;
-fun dinghy_N : N ;
-fun telegraphy_N : N ;
-fun calligraphy_N : N ;
-fun epigraphy_N : N ;
-fun serigraphy_N : N ;
-fun stratigraphy_N : N ;
-fun lexicography_N : N ;
-fun discography_N : N ;
-fun ideography_N : N ;
-fun geography_N : N ;
-fun paleogeography_N : N ;
-fun biogeography_N : N ;
-fun paleography_N : N ;
-fun choreography_N : N ;
-fun lithography_N : N ;
-fun chromolithography_N : N ;
-fun photolithography_N : N ;
-fun orthography_N : N ;
-fun biography_N : N ;
-fun autobiography_N : N ;
-fun radiography_N : N ;
-fun xeroradiography_N : N ;
-fun autoradiography_N : N ;
-fun cardiography_N : N ;
-fun echocardiography_N : N ;
-fun hagiography_N : N ;
-fun angiography_N : N ;
-fun lymphangiography_N : N ;
-fun cholangiography_N : N ;
-fun bibliography_N : N ;
-fun arteriography_N : N ;
-fun historiography_N : N ;
-fun encephalography_N : N ;
-fun echoencephalography_N : N ;
-fun myelography_N : N ;
-fun pyelography_N : N ;
-fun crystallography_N : N ;
-fun holography_N : N ;
-fun demography_N : N ;
-fun anemography_N : N ;
-fun mammography_N : N ;
-fun thermography_N : N ;
-fun mammothermography_N : N ;
-fun seismography_N : N ;
-fun cosmography_N : N ;
-fun oceanography_N : N ;
-fun roentgenography_N : N ;
-fun stenography_N : N ;
-fun venography_N : N ;
-fun ethnography_N : N ;
-fun paleoethnography_N : N ;
-fun iconography_N : N ;
-fun sonography_N : N ;
-fun pornography_N : N ;
-fun topography_N : N ;
-fun typography_N : N ;
-fun polarography_N : N ;
-fun hydrography_N : N ;
-fun xerography_N : N ;
-fun arthrography_N : N ;
-fun pyrography_N : N ;
-fun hypsography_N : N ;
-fun cinematography_N : N ;
-fun chromatography_N : N ;
-fun photography_N : N ;
-fun telephotography_N : N ;
-fun radiophotography_N : N ;
-fun glyptography_N : N ;
-fun cryptography_N : N ;
-fun cartography_N : N ;
-fun adoxography_N : N ;
-fun electromyography_N : N ;
-fun trophy_N : N ;
-fun atrophy_N : N ;
-fun abiotrophy_N : N ;
-fun hypertrophy_N : N ;
-fun dystrophy_N : N ;
-fun osteodystrophy_N : N ;
-fun theosophy_N : N ;
-fun philosophy_N : N ;
-fun gymnosophy_N : N ;
-fun anthroposophy_N : N ;
-fun endomorphy_N : N ;
-fun murphy_N : N ;
-fun anaglyphy_N : N ;
-fun shy_N : N ;
-fun chrestomathy_N : N ;
-fun apathy_N : N ;
-fun naprapathy_N : N ;
-fun telepathy_N : N ;
-fun antipathy_N : N ;
-fun empathy_N : N ;
-fun sympathy_N : N ;
-fun homeopathy_N : N ;
-fun homoeopathy_N : N ;
-fun osteopathy_N : N ;
-fun angiopathy_N : N ;
-fun allopathy_N : N ;
-fun gammopathy_N : N ;
-fun adenopathy_N : N ;
-fun lymphadenopathy_N : N ;
-fun hemoglobinopathy_N : N ;
-fun rhinopathy_N : N ;
-fun retinopathy_N : N ;
-fun hydropathy_N : N ;
-fun enteropathy_N : N ;
-fun arthropathy_N : N ;
-fun uropathy_N : N ;
-fun neuropathy_N : N ;
-fun mononeuropathy_N : N ;
-fun naturopathy_N : N ;
-fun mastopathy_N : N ;
-fun myopathy_N : N ;
-fun cardiomyopathy_N : N ;
-fun smithy_N : N ;
-fun withy_N : N ;
-fun timothy_N : N ;
-fun worthy_N : N ;
-fun why_N : N ;
-fun diy_N : N ;
-fun dicky_N : N ;
-fun jabberwocky_N : N ;
-fun ducky_N : N ;
-fun droshky_N : N ;
-fun sulky_N : N ;
-fun hanky_N : N ;
-fun 'hanky-panky_N' : N ;
-fun dinky_N : N ;
-fun junky_N : N ;
-fun flunky_N : N ;
-fun choky_N : N ;
-fun cooky_N : N ;
-fun darky_N : N ;
-fun autarky_N : N ;
-fun jerky_N : N ;
-fun sky_N : N ;
-fun whisky_N : N ;
-fun buttinsky_N : N ;
-fun husky_N : N ;
-fun cardiomegaly_N : N ;
-fun dactylomegaly_N : N ;
-fun adenomegaly_N : N ;
-fun splenomegaly_N : N ;
-fun acromegaly_N : N ;
-fun hepatomegaly_N : N ;
-fun anencephaly_N : N ;
-fun macrencephaly_N : N ;
-fun dolichocephaly_N : N ;
-fun scaphocephaly_N : N ;
-fun plagiocephaly_N : N ;
-fun clinocephaly_N : N ;
-fun macrocephaly_N : N ;
-fun microcephaly_N : N ;
-fun brachycephaly_N : N ;
-fun oxycephaly_N : N ;
-fun bialy_N : N ;
-fun anomaly_N : N ;
-fun bubbly_N : N ;
-fun assembly_N : N ;
-fun reassembly_N : N ;
-fun friendly_N : N ;
-fun contumely_N : N ;
-fun philately_N : N ;
-fun aerophilately_N : N ;
-fun fly_N : N ;
-fun 'crane-fly_N' : N ;
-fun 'tsetse-fly_N' : N ;
-fun 'ichneumon-fly_N' : N ;
-fun 'fruit-fly_N' : N ;
-fun gadfly_N : N ;
-fun sandfly_N : N ;
-fun spongefly_N : N ;
-fun snakefly_N : N ;
-fun stonefly_N : N ;
-fun firefly_N : N ;
-fun horsefly_N : N ;
-fun housefly_N : N ;
-fun whitefly_N : N ;
-fun blackfly_N : N ;
-fun damselfly_N : N ;
-fun gallfly_N : N ;
-fun greenfly_N : N ;
-fun dragonfly_N : N ;
-fun shoofly_N : N ;
-fun alderfly_N : N ;
-fun butterfly_N : N ;
-fun botfly_N : N ;
-fun sawfly_N : N ;
-fun blowfly_N : N ;
-fun mayfly_N : N ;
-fun googly_N : N ;
-fun monthly_N : N ;
-fun bimonthly_N : N ;
-fun semimonthly_N : N ;
-fun daily_N : N ;
-fun lily_N : N ;
-fun 'tiger-lily_N' : N ;
-fun 'water-lily_N' : N ;
-fun family_N : N ;
-fun subfamily_N : N ;
-fun superfamily_N : N ;
-fun homily_N : N ;
-fun doily_N : N ;
-fun weekly_N : N ;
-fun biweekly_N : N ;
-fun semiweekly_N : N ;
-fun ally_N : N ;
-fun shillyshally_N : N ;
-fun lally_N : N ;
-fun rally_N : N ;
-fun sally_N : N ;
-fun tally_N : N ;
-fun wally_N : N ;
-fun belly_N : N ;
-fun underbelly_N : N ;
-fun potbelly_N : N ;
-fun sowbelly_N : N ;
-fun jelly_N : N ;
-fun telly_N : N ;
-fun billy_N : N ;
-fun 'hill-billy_N' : N ;
-fun rockabilly_N : N ;
-fun hillbilly_N : N ;
-fun filly_N : N ;
-fun chilly_N : N ;
-fun skilly_N : N ;
-fun silly_N : N ;
-fun dolly_N : N ;
-fun folly_N : N ;
-fun holly_N : N ;
-fun jolly_N : N ;
-fun lolly_N : N ;
-fun 'ice-lolly_N' : N ;
-fun blolly_N : N ;
-fun loblolly_N : N ;
-fun brolly_N : N ;
-fun bully_N : N ;
-fun gully_N : N ;
-fun holy_N : N ;
-fun melancholy_N : N ;
-fun wooly_N : N ;
-fun 'roly-poly_N' : N ;
-fun oligopoly_N : N ;
-fun monopoly_N : N ;
-fun reply_N : N ;
-fun panoply_N : N ;
-fun supply_N : N ;
-fun 'water-supply_N' : N ;
-fun rly_N : N ;
-fun orderly_N : N ;
-fun quarterly_N : N ;
-fun 'hurly-burly_N' : N ;
-fun doyly_N : N ;
-fun syndactyly_N : N ;
-fun oligodactyly_N : N ;
-fun clinodactyly_N : N ;
-fun ectrodactyly_N : N ;
-fun brachydactyly_N : N ;
-fun polydactyly_N : N ;
-fun grizzly_N : N ;
-fun poly_N : N ;
-fun infamy_N : N ;
-fun bigamy_N : N ;
-fun endogamy_N : N ;
-fun allogamy_N : N ;
-fun monogamy_N : N ;
-fun apogamy_N : N ;
-fun isogamy_N : N ;
-fun misogamy_N : N ;
-fun anisogamy_N : N ;
-fun cleistogamy_N : N ;
-fun autogamy_N : N ;
-fun exogamy_N : N ;
-fun polygamy_N : N ;
-fun academy_N : N ;
-fun alchemy_N : N ;
-fun blasphemy_N : N ;
-fun enemy_N : N ;
-fun monosemy_N : N ;
-fun polysemy_N : N ;
-fun pigmy_N : N ;
-fun pygmy_N : N ;
-fun eurythmy_N : N ;
-fun shammy_N : N ;
-fun whammy_N : N ;
-fun mammy_N : N ;
-fun tammy_N : N ;
-fun jemmy_N : N ;
-fun shimmy_N : N ;
-fun jimmy_N : N ;
-fun pommy_N : N ;
-fun dummy_N : N ;
-fun thingummy_N : N ;
-fun mummy_N : N ;
-fun rummy_N : N ;
-fun tummy_N : N ;
-fun sodomy_N : N ;
-fun physiognomy_N : N ;
-fun antinomy_N : N ;
-fun economy_N : N ;
-fun agronomy_N : N ;
-fun astronomy_N : N ;
-fun gastronomy_N : N ;
-fun autonomy_N : N ;
-fun taxonomy_N : N ;
-fun gastromy_N : N ;
-fun trisomy_N : N ;
-fun monosomy_N : N ;
-fun polysomy_N : N ;
-fun anatomy_N : N ;
-fun neuroanatomy_N : N ;
-fun phlebectomy_N : N ;
-fun thrombectomy_N : N ;
-fun lobectomy_N : N ;
-fun meniscectomy_N : N ;
-fun stapedectomy_N : N ;
-fun orchidectomy_N : N ;
-fun hemorrhoidectomy_N : N ;
-fun sigmoidectomy_N : N ;
-fun adenoidectomy_N : N ;
-fun thyroidectomy_N : N ;
-fun mastoidectomy_N : N ;
-fun iridectomy_N : N ;
-fun clitoridectomy_N : N ;
-fun appendectomy_N : N ;
-fun salpingectomy_N : N ;
-fun oophorosalpingectomy_N : N ;
-fun myringectomy_N : N ;
-fun laryngectomy_N : N ;
-fun sympathectomy_N : N ;
-fun adrenalectomy_N : N ;
-fun tonsillectomy_N : N ;
-fun embolectomy_N : N ;
-fun ophthalmectomy_N : N ;
-fun splenectomy_N : N ;
-fun laminectomy_N : N ;
-fun pneumonectomy_N : N ;
-fun lipectomy_N : N ;
-fun lumpectomy_N : N ;
-fun polypectomy_N : N ;
-fun endarterectomy_N : N ;
-fun hysterectomy_N : N ;
-fun nephrectomy_N : N ;
-fun oophorectomy_N : N ;
-fun vitrectomy_N : N ;
-fun gastrectomy_N : N ;
-fun neurectomy_N : N ;
-fun vasectomy_N : N ;
-fun hypophysectomy_N : N ;
-fun pancreatectomy_N : N ;
-fun prostatectomy_N : N ;
-fun septectomy_N : N ;
-fun mastectomy_N : N ;
-fun cholecystectomy_N : N ;
-fun vulvectomy_N : N ;
-fun strabotomy_N : N ;
-fun lobotomy_N : N ;
-fun thoracotomy_N : N ;
-fun iridotomy_N : N ;
-fun perineotomy_N : N ;
-fun osteotomy_N : N ;
-fun myringotomy_N : N ;
-fun dichotomy_N : N ;
-fun trichotomy_N : N ;
-fun orchotomy_N : N ;
-fun lithotomy_N : N ;
-fun cholelithotomy_N : N ;
-fun craniotomy_N : N ;
-fun episiotomy_N : N ;
-fun amygdalotomy_N : N ;
-fun rhinotomy_N : N ;
-fun laparotomy_N : N ;
-fun sclerotomy_N : N ;
-fun hysterotomy_N : N ;
-fun nephrotomy_N : N ;
-fun vasotomy_N : N ;
-fun callosotomy_N : N ;
-fun keratotomy_N : N ;
-fun autotomy_N : N ;
-fun valvotomy_N : N ;
-fun myotomy_N : N ;
-fun rhizotomy_N : N ;
-fun ostomy_N : N ;
-fun tracheostomy_N : N ;
-fun ileostomy_N : N ;
-fun colostomy_N : N ;
-fun jejunostomy_N : N ;
-fun enterostomy_N : N ;
-fun gastroenterostomy_N : N ;
-fun gastrostomy_N : N ;
-fun vasovasostomy_N : N ;
-fun army_N : N ;
-fun taxidermy_N : N ;
-fun diathermy_N : N ;
-fun holonymy_N : N ;
-fun homonymy_N : N ;
-fun synonymy_N : N ;
-fun eponymy_N : N ;
-fun troponymy_N : N ;
-fun toponymy_N : N ;
-fun hyponymy_N : N ;
-fun meronymy_N : N ;
-fun metonymy_N : N ;
-fun antonymy_N : N ;
-fun hypernymy_N : N ;
-fun meany_N : N ;
-fun mahogany_N : N ;
-fun epiphany_N : N ;
-fun theophany_N : N ;
-fun miscellany_N : N ;
-fun romany_N : N ;
-fun company_N : N ;
-fun tetany_N : N ;
-fun litany_N : N ;
-fun botany_N : N ;
-fun paleobotany_N : N ;
-fun zany_N : N ;
-fun larceny_N : N ;
-fun endogeny_N : N ;
-fun homogeny_N : N ;
-fun orogeny_N : N ;
-fun lysogeny_N : N ;
-fun neoteny_N : N ;
-fun villainy_N : N ;
-fun hominy_N : N ;
-fun ignominy_N : N ;
-fun destiny_N : N ;
-fun mutiny_N : N ;
-fun scrutiny_N : N ;
-fun calumny_N : N ;
-fun fanny_N : N ;
-fun shanny_N : N ;
-fun nanny_N : N ;
-fun cranny_N : N ;
-fun granny_N : N ;
-fun tyranny_N : N ;
-fun jenny_N : N ;
-fun blenny_N : N ;
-fun snakeblenny_N : N ;
-fun pikeblenny_N : N ;
-fun eelblenny_N : N ;
-fun penny_2_N : N ;
-fun ha'penny_N : N ;
-fun 'shove-ha\'penny_N' : N ;
-fun halfpenny_N : N ;
-fun hinny_N : N ;
-fun shinny_N : N ;
-fun whinny_N : N ;
-fun skinny_N : N ;
-fun ninny_N : N ;
-fun piccaninny_N : N ;
-fun pickaninny_N : N ;
-fun pinny_N : N ;
-fun sonny_N : N ;
-fun bunny_N : N ;
-fun gunny_N : N ;
-fun ebony_N : N ;
-fun cony_N : N ;
-fun balcony_N : N ;
-fun chalcedony_N : N ;
-fun paeony_N : N ;
-fun peony_N : N ;
-fun agony_N : N ;
-fun theogony_N : N ;
-fun cosmogony_N : N ;
-fun schizogony_N : N ;
-fun phony_N : N ;
-fun quadraphony_N : N ;
-fun telephony_N : N ;
-fun antiphony_N : N ;
-fun symphony_N : N ;
-fun cacophony_N : N ;
-fun colophony_N : N ;
-fun homophony_N : N ;
-fun monophony_N : N ;
-fun acrophony_N : N ;
-fun quadrophony_N : N ;
-fun euphony_N : N ;
-fun polyphony_N : N ;
-fun felony_N : N ;
-fun colony_N : N ;
-fun polony_N : N ;
-fun hegemony_N : N ;
-fun ceremony_N : N ;
-fun alimony_N : N ;
-fun palimony_N : N ;
-fun acrimony_N : N ;
-fun matrimony_N : N ;
-fun patrimony_N : N ;
-fun simony_N : N ;
-fun parsimony_N : N ;
-fun antimony_N : N ;
-fun testimony_N : N ;
-fun scammony_N : N ;
-fun harmony_N : N ;
-fun disharmony_N : N ;
-fun loony_N : N ;
-fun pony_N : N ;
-fun barony_N : N ;
-fun crony_N : N ;
-fun synchrony_N : N ;
-fun irony_N : N ;
-fun monopsony_N : N ;
-fun neotony_N : N ;
-fun monotony_N : N ;
-fun gluttony_N : N ;
-fun bryony_N : N ;
-fun amphictyony_N : N ;
-fun mulligatawny_N : N ;
-fun philogyny_N : N ;
-fun monogyny_N : N ;
-fun androgyny_N : N ;
-fun misogyny_N : N ;
-fun polygyny_N : N ;
-fun boy_N : N ;
-fun 'teddy boy_N' : N ;
-fun 'office-boy_N' : N ;
-fun 'whipping-boy_N' : N ;
-fun 'shop-boy_N' : N ;
-fun 'barrow-boy_N' : N ;
-fun sandboy_N : N ;
-fun pageboy_N : N ;
-fun stableboy_N : N ;
-fun homeboy_N : N ;
-fun highboy_N : N ;
-fun doughboy_N : N ;
-fun ploughboy_N : N ;
-fun linkboy_N : N ;
-fun tallboy_N : N ;
-fun bellboy_N : N ;
-fun schoolboy_N : N ;
-fun tomboy_N : N ;
-fun carboy_N : N ;
-fun paperboy_N : N ;
-fun choirboy_N : N ;
-fun busboy_N : N ;
-fun newsboy_N : N ;
-fun potboy_N : N ;
-fun hautboy_N : N ;
-fun cowboy_N : N ;
-fun lowboy_N : N ;
-fun plowboy_N : N ;
-fun dayboy_N : N ;
-fun playboy_N : N ;
-fun bullyboy_N : N ;
-fun decoy_N : N ;
-fun hobbledehoy_N : N ;
-fun joy_N : N ;
-fun killjoy_N : N ;
-fun saveloy_N : N ;
-fun alloy_N : N ;
-fun ploy_N : N ;
-fun employ_N : N ;
-fun tannoy_N : N ;
-fun viceroy_N : N ;
-fun troy_N : N ;
-fun corduroy_N : N ;
-fun soy_N : N ;
-fun toy_N : N ;
-fun buoy_N : N ;
-fun 'life-buoy_N' : N ;
-fun 'bell-buoy_N' : N ;
-fun 'breeches-buoy_N' : N ;
-fun lifebuoy_N : N ;
-fun savoy_N : N ;
-fun envoy_N : N ;
-fun convoy_N : N ;
-fun therapy_N : N ;
-fun aromatherapy_N : N ;
-fun psychotherapy_N : N ;
-fun radiotherapy_N : N ;
-fun heliotherapy_N : N ;
-fun physiotherapy_N : N ;
-fun chemotherapy_N : N ;
-fun thermotherapy_N : N ;
-fun hypnotherapy_N : N ;
-fun immunotherapy_N : N ;
-fun electrotherapy_N : N ;
-fun chrysotherapy_N : N ;
-fun phototherapy_N : N ;
-fun phytotherapy_N : N ;
-fun orthoepy_N : N ;
-fun kelpy_N : N ;
-fun scrumpy_N : N ;
-fun copy_N : N ;
-fun 'prompt-copy_N' : N ;
-fun photocopy_N : N ;
-fun telescopy_N : N ;
-fun sigmoidoscopy_N : N ;
-fun culdoscopy_N : N ;
-fun endoscopy_N : N ;
-fun radioscopy_N : N ;
-fun celioscopy_N : N ;
-fun gonioscopy_N : N ;
-fun ophthalmoscopy_N : N ;
-fun rhinoscopy_N : N ;
-fun colonoscopy_N : N ;
-fun laparoscopy_N : N ;
-fun microscopy_N : N ;
-fun hysteroscopy_N : N ;
-fun arthroscopy_N : N ;
-fun horoscopy_N : N ;
-fun fluoroscopy_N : N ;
-fun spectroscopy_N : N ;
-fun gastroscopy_N : N ;
-fun keratoscopy_N : N ;
-fun proctoscopy_N : N ;
-fun fetoscopy_N : N ;
-fun jalopy_N : N ;
-fun canopy_N : N ;
-fun lycanthropy_N : N ;
-fun philanthropy_N : N ;
-fun zoanthropy_N : N ;
-fun misanthropy_N : N ;
-fun allotropy_N : N ;
-fun isotropy_N : N ;
-fun anisotropy_N : N ;
-fun extropy_N : N ;
-fun nappy_N : N ;
-fun hippy_N : N ;
-fun poppy_N : N ;
-fun guppy_N : N ;
-fun puppy_N : N ;
-fun parthenocarpy_N : N ;
-fun harpy_N : N ;
-fun spy_N : N ;
-fun counterspy_N : N ;
-fun syllabary_N : N ;
-fun peccary_N : N ;
-fun apothecary_N : N ;
-fun dromedary_N : N ;
-fun lapidary_N : N ;
-fun quandary_N : N ;
-fun prebendary_N : N ;
-fun secondary_N : N ;
-fun boundary_N : N ;
-fun deary_N : N ;
-fun vagary_N : N ;
-fun beggary_N : N ;
-fun judiciary_N : N ;
-fun beneficiary_N : N ;
-fun justiciary_N : N ;
-fun fiduciary_N : N ;
-fun diary_N : N ;
-fun intermediary_N : N ;
-fun subsidiary_N : N ;
-fun incendiary_N : N ;
-fun stipendiary_N : N ;
-fun auxiliary_N : N ;
-fun apiary_N : N ;
-fun topiary_N : N ;
-fun friary_N : N ;
-fun penitentiary_N : N ;
-fun plenipotentiary_N : N ;
-fun bestiary_N : N ;
-fun aviary_N : N ;
-fun breviary_N : N ;
-fun salary_N : N ;
-fun clary_N : N ;
-fun burglary_N : N ;
-fun capillary_N : N ;
-fun fritillary_N : N ;
-fun corollary_N : N ;
-fun vocabulary_N : N ;
-fun constabulary_N : N ;
-fun formulary_N : N ;
-fun rosemary_N : N ;
-fun primary_N : N ;
-fun summary_N : N ;
-fun infirmary_N : N ;
-fun costmary_N : N ;
-fun decumary_N : N ;
-fun canary_N : N ;
-fun granary_N : N ;
-fun mercenary_N : N ;
-fun millenary_N : N ;
-fun catenary_N : N ;
-fun centenary_N : N ;
-fun bicentenary_N : N ;
-fun quincentenary_N : N ;
-fun tercentenary_N : N ;
-fun quatercentenary_N : N ;
-fun binary_N : N ;
-fun ordinary_N : N ;
-fun consuetudinary_N : N ;
-fun seminary_N : N ;
-fun preliminary_N : N ;
-fun luminary_N : N ;
-fun antiphonary_N : N ;
-fun legionary_N : N ;
-fun visionary_N : N ;
-fun missionary_N : N ;
-fun reactionary_N : N ;
-fun dictionary_N : N ;
-fun functionary_N : N ;
-fun 'counter-revolutionary_N' : N ;
-fun coronary_N : N ;
-fun library_N : N ;
-fun 'lending-library_N' : N ;
-fun supernumerary_N : N ;
-fun itinerary_N : N ;
-fun contemporary_N : N ;
-fun contrary_N : N ;
-fun caravansary_N : N ;
-fun dispensary_N : N ;
-fun rosary_N : N ;
-fun adversary_N : N ;
-fun anniversary_N : N ;
-fun bursary_N : N ;
-fun accessary_N : N ;
-fun necessary_N : N ;
-fun pessary_N : N ;
-fun emissary_N : N ;
-fun commissary_N : N ;
-fun janissary_N : N ;
-fun glossary_N : N ;
-fun mandatary_N : N ;
-fun nectary_N : N ;
-fun dietary_N : N ;
-fun secretary_N : N ;
-fun undersecretary_N : N ;
-fun military_N : N ;
-fun paramilitary_N : N ;
-fun dignitary_N : N ;
-fun pituitary_N : N ;
-fun commentary_N : N ;
-fun documentary_N : N ;
-fun voluntary_N : N ;
-fun notary_N : N ;
-fun rotary_N : N ;
-fun votary_N : N ;
-fun tributary_N : N ;
-fun distributary_N : N ;
-fun January_N : N ;
-fun reliquary_N : N ;
-fun antiquary_N : N ;
-fun February_N : N ;
-fun ossuary_N : N ;
-fun statuary_N : N ;
-fun actuary_N : N ;
-fun sanctuary_N : N ;
-fun usufructuary_N : N ;
-fun obituary_N : N ;
-fun voluptuary_N : N ;
-fun mortuary_N : N ;
-fun estuary_N : N ;
-fun calvary_N : N ;
-fun ovary_N : N ;
-fun cassowary_N : N ;
-fun cry_N : N ;
-fun 'war-cry_N' : N ;
-fun mimicry_N : N ;
-fun outcry_N : N ;
-fun dry_N : N ;
-fun ribaldry_N : N ;
-fun heraldry_N : N ;
-fun cuckoldry_N : N ;
-fun husbandry_N : N ;
-fun monandry_N : N ;
-fun polyandry_N : N ;
-fun laundry_N : N ;
-fun foundry_N : N ;
-fun 'bell-foundry_N' : N ;
-fun 'iron-foundry_N' : N ;
-fun wizardry_N : N ;
-fun bawdry_N : N ;
-fun aery_N : N ;
-fun faery_N : N ;
-fun jobbery_N : N ;
-fun snobbery_N : N ;
-fun robbery_N : N ;
-fun shrubbery_N : N ;
-fun bribery_N : N ;
-fun tracery_N : N ;
-fun chancery_N : N ;
-fun grocery_N : N ;
-fun greengrocery_N : N ;
-fun sorcery_N : N ;
-fun embroidery_N : N ;
-fun bindery_N : N ;
-fun bookbindery_N : N ;
-fun gaudery_N : N ;
-fun prudery_N : N ;
-fun veery_N : N ;
-fun puffery_N : N ;
-fun midwifery_N : N ;
-fun housewifery_N : N ;
-fun imagery_N : N ;
-fun savagery_N : N ;
-fun drudgery_N : N ;
-fun jaggery_N : N ;
-fun waggery_N : N ;
-fun piggery_N : N ;
-fun buggery_N : N ;
-fun thuggery_N : N ;
-fun snuggery_N : N ;
-fun orangery_N : N ;
-fun ironmongery_N : N ;
-fun forgery_N : N ;
-fun surgery_N : N ;
-fun psychosurgery_N : N ;
-fun chemosurgery_N : N ;
-fun microsurgery_N : N ;
-fun electrosurgery_N : N ;
-fun neurosurgery_N : N ;
-fun cryosurgery_N : N ;
-fun treachery_N : N ;
-fun lechery_N : N ;
-fun archery_N : N ;
-fun hatchery_N : N ;
-fun bitchery_N : N ;
-fun witchery_N : N ;
-fun bewitchery_N : N ;
-fun butchery_N : N ;
-fun debauchery_N : N ;
-fun periphery_N : N ;
-fun haberdashery_N : N ;
-fun fishery_N : N ;
-fun 'pearl-fishery_N' : N ;
-fun tushery_N : N ;
-fun colliery_N : N ;
-fun hosiery_N : N ;
-fun bakery_N : N ;
-fun fakery_N : N ;
-fun quackery_N : N ;
-fun trickery_N : N ;
-fun mockery_N : N ;
-fun rockery_N : N ;
-fun crockery_N : N ;
-fun cookery_N : N ;
-fun rookery_N : N ;
-fun 'jiggery-pokery_N' : N ;
-fun saddlery_N : N ;
-fun chandlery_N : N ;
-fun celery_N : N ;
-fun jugglery_N : N ;
-fun gallery_N : N ;
-fun 'picture-gallery_N' : N ;
-fun 'whispering-gallery_N' : N ;
-fun 'shooting-gallery_N' : N ;
-fun 'press-gallery_N' : N ;
-fun chancellery_N : N ;
-fun jewellery_N : N ;
-fun raillery_N : N ;
-fun artillery_N : N ;
-fun distillery_N : N ;
-fun drollery_N : N ;
-fun scullery_N : N ;
-fun cajolery_N : N ;
-fun foolery_N : N ;
-fun tomfoolery_N : N ;
-fun cutlery_N : N ;
-fun creamery_N : N ;
-fun emery_N : N ;
-fun flummery_N : N ;
-fun mummery_N : N ;
-fun perfumery_N : N ;
-fun chicanery_N : N ;
-fun deanery_N : N ;
-fun scenery_N : N ;
-fun greenery_N : N ;
-fun finery_N : N ;
-fun refinery_N : N ;
-fun 'sugar-refinery_N' : N ;
-fun enginery_N : N ;
-fun machinery_N : N ;
-fun millinery_N : N ;
-fun joinery_N : N ;
-fun vinery_N : N ;
-fun winery_N : N ;
-fun cannery_N : N ;
-fun tannery_N : N ;
-fun gunnery_N : N ;
-fun nunnery_N : N ;
-fun stationery_N : N ;
-fun confectionery_N : N ;
-fun buffoonery_N : N ;
-fun poltroonery_N : N ;
-fun turnery_N : N ;
-fun apery_N : N ;
-fun napery_N : N ;
-fun drapery_N : N ;
-fun popery_N : N ;
-fun frippery_N : N ;
-fun orrery_N : N ;
-fun lamasery_N : N ;
-fun misery_N : N ;
-fun nursery_N : N ;
-fun phylactery_N : N ;
-fun cemetery_N : N ;
-fun psaltery_N : N ;
-fun adultery_N : N ;
-fun mesentery_N : N ;
-fun dysentery_N : N ;
-fun effrontery_N : N ;
-fun artery_N : N ;
-fun mastery_N : N ;
-fun monastery_N : N ;
-fun phrontistery_N : N ;
-fun upholstery_N : N ;
-fun mystery_N : N ;
-fun battery_N : N ;
-fun flattery_N : N ;
-fun lottery_N : N ;
-fun pottery_N : N ;
-fun buttery_N : N ;
-fun cautery_N : N ;
-fun thermocautery_N : N ;
-fun electrocautery_N : N ;
-fun cryocautery_N : N ;
-fun presbytery_N : N ;
-fun demagoguery_N : N ;
-fun roguery_N : N ;
-fun query_N : N ;
-fun slavery_N : N ;
-fun knavery_N : N ;
-fun bravery_N : N ;
-fun thievery_N : N ;
-fun livery_N : N ;
-fun delivery_N : N ;
-fun recovery_N : N ;
-fun discovery_N : N ;
-fun rediscovery_N : N ;
-fun brewery_N : N ;
-fun microbrewery_N : N ;
-fun belfry_N : N ;
-fun dairy_N : N ;
-fun fairy_N : N ;
-fun expiry_N : N ;
-fun enquiry_N : N ;
-fun inquiry_N : N ;
-fun gimmickry_N : N ;
-fun cavalry_N : N ;
-fun chivalry_N : N ;
-fun rivalry_N : N ;
-fun hostelry_N : N ;
-fun revelry_N : N ;
-fun jewelry_N : N ;
-fun devilry_N : N ;
-fun daredevilry_N : N ;
-fun yeomanry_N : N ;
-fun henry_N : N ;
-fun abhenry_N : N ;
-fun millihenry_N : N ;
-fun citizenry_N : N ;
-fun archdeaconry_N : N ;
-fun falconry_N : N ;
-fun weaponry_N : N ;
-fun heronry_N : N ;
-fun masonry_N : N ;
-fun freemasonry_N : N ;
-fun blazonry_N : N ;
-fun chicory_N : N ;
-fun dory_N : N ;
-fun theory_N : N ;
-fun allegory_N : N ;
-fun beaugregory_N : N ;
-fun category_N : N ;
-fun amphigory_N : N ;
-fun seigniory_N : N ;
-fun priory_N : N ;
-fun hickory_N : N ;
-fun lory_N : N ;
-fun glory_N : N ;
-fun 'morning-glory_N' : N ;
-fun vainglory_N : N ;
-fun pillory_N : N ;
-fun memory_N : N ;
-fun armory_N : N ;
-fun homospory_N : N ;
-fun heterospory_N : N ;
-fun advisory_N : N ;
-fun suspensory_N : N ;
-fun accessory_N : N ;
-fun tory_N : N ;
-fun mandatory_N : N ;
-fun feudatory_N : N ;
-fun purgatory_N : N ;
-fun depilatory_N : N ;
-fun ambulatory_N : N ;
-fun crematory_N : N ;
-fun reformatory_N : N ;
-fun signatory_N : N ;
-fun cosignatory_N : N ;
-fun oratory_N : N ;
-fun laboratory_N : N ;
-fun lavatory_N : N ;
-fun observatory_N : N ;
-fun conservatory_N : N ;
-fun factory_N : N ;
-fun refectory_N : N ;
-fun trajectory_N : N ;
-fun rectory_N : N ;
-fun directory_N : N ;
-fun subdirectory_N : N ;
-fun contradictory_N : N ;
-fun victory_N : N ;
-fun pellitory_N : N ;
-fun vomitory_N : N ;
-fun dormitory_N : N ;
-fun fumitory_N : N ;
-fun territory_N : N ;
-fun depository_N : N ;
-fun repository_N : N ;
-fun suppository_N : N ;
-fun inventory_N : N ;
-fun promontory_N : N ;
-fun offertory_N : N ;
-fun repertory_N : N ;
-fun story_N : N ;
-fun 'love-story_N' : N ;
-fun clerestory_N : N ;
-fun history_N : N ;
-fun 'case-history_N' : N ;
-fun prehistory_N : N ;
-fun protohistory_N : N ;
-fun consistory_N : N ;
-fun savory_N : N ;
-fun ivory_N : N ;
-fun bishopry_N : N ;
-fun carry_N : N ;
-fun glengarry_N : N ;
-fun gharry_N : N ;
-fun parry_N : N ;
-fun quarry_N : N ;
-fun berry_N : N ;
-fun 'spindle-berry_N' : N ;
-fun 'rowan-berry_N' : N ;
-fun teaberry_N : N ;
-fun chinaberry_N : N ;
-fun redberry_N : N ;
-fun bloodberry_N : N ;
-fun cloudberry_N : N ;
-fun blaeberry_N : N ;
-fun coffeeberry_N : N ;
-fun partridgeberry_N : N ;
+fun maladaptive_A : A ;
+fun maladjusted_A : A ;
+fun maladjustive_A : A ;
+fun maladjustment_N : N ;
+fun maladroit_A : A ;
+fun maladroitness_N : N ;
+fun malady_N : N ;
+fun malahini_N : N ;
+fun malaise_N : N ;
+fun malamute_N : N ;
+fun malapropism_N : N ;
+fun malapropos_A : A ;
+fun malapropos_Adv : Adv ;
+fun malaria_N : N ;
+fun malarial_A : A ;
+fun malawian_A : A ;
+fun malawian_N : N ;
+fun malay_A : A ;
+fun malay_N : N ;
+fun malayan_A : A ;
+fun malayan_N : N ;
+fun malaysian_A : A ;
+fun malaysian_N : N ;
+fun malcontent_A : A ;
+fun malcontent_N : N ;
+fun male_A : A ;
+fun male_N : N ;
+fun maleate_N : N ;
fun maleberry_N : N ;
-fun dangleberry_N : N ;
-fun huckleberry_N : N ;
-fun farkleberry_N : N ;
-fun baneberry_N : N ;
-fun wineberry_N : N ;
-fun gooseberry_N : N ;
-fun grouseberry_N : N ;
-fun blueberry_N : N ;
-fun hagberry_N : N ;
-fun bunchberry_N : N ;
-fun hackberry_N : N ;
-fun blackberry_N : N ;
-fun inkberry_N : N ;
-fun coralberry_N : N ;
-fun bilberry_N : N ;
-fun marlberry_N : N ;
-fun mulberry_N : N ;
-fun longanberry_N : N ;
-fun loganberry_N : N ;
-fun cranberry_N : N ;
-fun rowanberry_N : N ;
-fun boysenberry_N : N ;
-fun twinberry_N : N ;
-fun lingonberry_N : N ;
-fun salmonberry_N : N ;
-fun soapberry_N : N ;
-fun raspberry_N : N ;
-fun barberry_N : N ;
-fun bearberry_N : N ;
-fun sugarberry_N : N ;
-fun elderberry_N : N ;
-fun deerberry_N : N ;
-fun silverberry_N : N ;
-fun burberry_N : N ;
-fun strawberry_N : N ;
-fun dewberry_N : N ;
-fun cowberry_N : N ;
-fun snowberry_N : N ;
-fun crowberry_N : N ;
-fun bayberry_N : N ;
-fun ferry_N : N ;
-fun 'car-ferry_N' : N ;
-fun cherry_N : N ;
-fun chokecherry_N : N ;
-fun sherry_N : N ;
-fun wherry_N : N ;
-fun jerry_N : N ;
-fun perry_N : N ;
-fun terry_N : N ;
-fun equerry_N : N ;
-fun lorry_N : N ;
-fun worry_N : N ;
-fun curry_N : N ;
-fun scurry_N : N ;
-fun hurry_N : N ;
-fun flurry_N : N ;
-fun slurry_N : N ;
-fun try_N : N ;
-fun podiatry_N : N ;
-fun psychiatry_N : N ;
-fun neuropsychiatry_N : N ;
-fun diabolatry_N : N ;
-fun symbolatry_N : N ;
-fun verbolatry_N : N ;
-fun idolatry_N : N ;
-fun bardolatry_N : N ;
-fun lordolatry_N : N ;
-fun gyneolatry_N : N ;
-fun idiolatry_N : N ;
-fun hagiolatry_N : N ;
-fun ophiolatry_N : N ;
-fun bibliolatry_N : N ;
-fun heliolatry_N : N ;
-fun cosmolatry_N : N ;
-fun iconolatry_N : N ;
-fun monolatry_N : N ;
-fun zoolatry_N : N ;
-fun anthropolatry_N : N ;
-fun topolatry_N : N ;
-fun arborolatry_N : N ;
-fun astrolatry_N : N ;
-fun pyrolatry_N : N ;
-fun thaumatolatry_N : N ;
-fun ichthyolatry_N : N ;
-fun sympatry_N : N ;
-fun allopatry_N : N ;
-fun barratry_N : N ;
-fun gadgetry_N : N ;
-fun rocketry_N : N ;
-fun trinketry_N : N ;
-fun basketry_N : N ;
-fun musketry_N : N ;
-fun toiletry_N : N ;
-fun telemetry_N : N ;
-fun acidimetry_N : N ;
-fun alkalimetry_N : N ;
-fun calorimetry_N : N ;
-fun colorimetry_N : N ;
-fun dosimetry_N : N ;
-fun thermogravimetry_N : N ;
-fun pelvimetry_N : N ;
-fun symmetry_N : N ;
-fun asymmetry_N : N ;
-fun supersymmetry_N : N ;
-fun viscometry_N : N ;
-fun geometry_N : N ;
-fun algometry_N : N ;
-fun psychometry_N : N ;
-fun sociometry_N : N ;
-fun audiometry_N : N ;
-fun stoichiometry_N : N ;
-fun craniometry_N : N ;
-fun cephalometry_N : N ;
-fun allometry_N : N ;
-fun anemometry_N : N ;
-fun thermometry_N : N ;
-fun actinometry_N : N ;
-fun trigonometry_N : N ;
-fun tonometry_N : N ;
-fun anthropometry_N : N ;
-fun micrometry_N : N ;
-fun hydrometry_N : N ;
-fun spirometry_N : N ;
-fun astrometry_N : N ;
-fun isometry_N : N ;
-fun hypsometry_N : N ;
-fun fetometry_N : N ;
-fun densitometry_N : N ;
-fun photometry_N : N ;
-fun cytophotometry_N : N ;
-fun optometry_N : N ;
-fun bathymetry_N : N ;
-fun poetry_N : N ;
-fun puppetry_N : N ;
-fun coquetry_N : N ;
-fun marquetry_N : N ;
-fun parquetry_N : N ;
-fun banditry_N : N ;
-fun circuitry_N : N ;
-fun deviltry_N : N ;
-fun poultry_N : N ;
-fun pedantry_N : N ;
-fun pageantry_N : N ;
-fun infantry_N : N ;
-fun gantry_N : N ;
-fun chantry_N : N ;
-fun gallantry_N : N ;
-fun tenantry_N : N ;
-fun pantry_N : N ;
-fun pleasantry_N : N ;
-fun peasantry_N : N ;
-fun entry_N : N ;
-fun 'double-entry_N' : N ;
-fun 're-entry_N' : N ;
-fun reentry_N : N ;
-fun carpentry_N : N ;
-fun sentry_N : N ;
-fun country_N : N ;
-fun bigotry_N : N ;
-fun zealotry_N : N ;
-fun pastry_N : N ;
-fun ancestry_N : N ;
-fun tapestry_N : N ;
-fun forestry_N : N ;
-fun vestry_N : N ;
-fun registry_N : N ;
-fun sophistry_N : N ;
-fun chemistry_N : N ;
-fun geochemistry_N : N ;
-fun biochemistry_N : N ;
-fun radiochemistry_N : N ;
-fun thermochemistry_N : N ;
-fun immunochemistry_N : N ;
-fun electrochemistry_N : N ;
-fun femtochemistry_N : N ;
-fun photochemistry_N : N ;
-fun immunohistochemistry_N : N ;
-fun phytochemistry_N : N ;
-fun palmistry_N : N ;
-fun ministry_N : N ;
-fun dentistry_N : N ;
-fun artistry_N : N ;
-fun casuistry_N : N ;
-fun industry_N : N ;
-fun saury_N : N ;
-fun centaury_N : N ;
-fun mercury_N : N ;
-fun seigneury_N : N ;
-fun fury_N : N ;
-fun augury_N : N ;
-fun jury_N : N ;
-fun injury_N : N ;
-fun perjury_N : N ;
-fun penury_N : N ;
-fun armoury_N : N ;
-fun savoury_N : N ;
-fun treasury_N : N ;
-fun subtreasury_N : N ;
-fun usury_N : N ;
-fun century_N : N ;
-fun luxury_N : N ;
-fun outlawry_N : N ;
-fun dowry_N : N ;
-fun eyry_N : N ;
-fun porphyry_N : N ;
-fun revolutionary_N : N ;
-fun speakeasy_N : N ;
-fun idiosyncrasy_N : N ;
-fun fantasy_N : N ;
-fun phantasy_N : N ;
-fun ecstasy_N : N ;
-fun apostasy_N : N ;
-fun isostasy_N : N ;
-fun geodesy_N : N ;
-fun poesy_N : N ;
-fun heresy_N : N ;
-fun courtesy_N : N ;
-fun discourtesy_N : N ;
-fun daisy_N : N ;
-fun hypocrisy_N : N ;
-fun pleurisy_N : N ;
-fun palsy_N : N ;
-fun minstrelsy_N : N ;
-fun whimsy_N : N ;
-fun flimsy_N : N ;
-fun pansy_N : N ;
-fun tansy_N : N ;
-fun quinsy_N : N ;
-fun cosy_N : N ;
-fun 'tea-cosy_N' : N ;
-fun argosy_N : N ;
-fun posy_N : N ;
-fun leprosy_N : N ;
-fun catalepsy_N : N ;
-fun hysterocatalepsy_N : N ;
-fun epilepsy_N : N ;
-fun narcolepsy_N : N ;
-fun nympholepsy_N : N ;
-fun gipsy_N : N ;
-fun biopsy_N : N ;
-fun dropsy_N : N ;
-fun autopsy_N : N ;
-fun gypsy_N : N ;
-fun controversy_N : N ;
-fun embassy_N : N ;
-fun cissy_N : N ;
-fun missy_N : N ;
-fun sissy_N : N ;
-fun glossy_N : N ;
-fun hussy_N : N ;
-fun pussy_N : N ;
-fun curtsy_N : N ;
-fun jealousy_N : N ;
-fun treaty_N : N ;
-fun entreaty_N : N ;
-fun platy_N : N ;
-fun nicety_N : N ;
-fun safety_N : N ;
-fun biosafety_N : N ;
-fun gaiety_N : N ;
-fun ubiety_N : N ;
-fun dubiety_N : N ;
-fun society_N : N ;
-fun 'building-society_N' : N ;
-fun moiety_N : N ;
-fun piety_N : N ;
-fun impiety_N : N ;
-fun contrariety_N : N ;
-fun variety_N : N ;
-fun inebriety_N : N ;
-fun sobriety_N : N ;
-fun notoriety_N : N ;
-fun propriety_N : N ;
-fun impropriety_N : N ;
-fun satiety_N : N ;
-fun anxiety_N : N ;
-fun overanxiety_N : N ;
-fun subtlety_N : N ;
-fun entirety_N : N ;
-fun surety_N : N ;
-fun naivety_N : N ;
-fun softy_N : N ;
-fun blighty_N : N ;
-fun almighty_N : N ;
-fun laity_N : N ;
-fun probity_N : N ;
-fun acerbity_N : N ;
-fun city_N : N ;
-fun perspicacity_N : N ;
-fun edacity_N : N ;
-fun mendacity_N : N ;
-fun mordacity_N : N ;
-fun audacity_N : N ;
-fun sagacity_N : N ;
-fun fugacity_N : N ;
-fun salacity_N : N ;
-fun tenacity_N : N ;
-fun pugnacity_N : N ;
-fun pertinacity_N : N ;
-fun capacity_N : N ;
-fun incapacity_N : N ;
-fun rapacity_N : N ;
-fun opacity_N : N ;
-fun radiopacity_N : N ;
-fun veracity_N : N ;
-fun voracity_N : N ;
-fun loquacity_N : N ;
-fun vivacity_N : N ;
-fun syllabicity_N : N ;
-fun hydrophobicity_N : N ;
-fun cubicity_N : N ;
-fun ergodicity_N : N ;
-fun specificity_N : N ;
-fun publicity_N : N ;
-fun cyclicity_N : N ;
-fun felicity_N : N ;
-fun infelicity_N : N ;
-fun catholicity_N : N ;
-fun triplicity_N : N ;
-fun multiplicity_N : N ;
-fun simplicity_N : N ;
-fun complicity_N : N ;
-fun duplicity_N : N ;
-fun rhythmicity_N : N ;
-fun immunogenicity_N : N ;
-fun ethnicity_N : N ;
-fun 'multi-ethnicity_N' : N ;
-fun tonicity_N : N ;
-fun atonicity_N : N ;
-fun hypotonicity_N : N ;
-fun hypertonicity_N : N ;
-fun sphericity_N : N ;
-fun electricity_N : N ;
-fun bioelectricity_N : N ;
-fun thermoelectricity_N : N ;
-fun hydroelectricity_N : N ;
-fun pyroelectricity_N : N ;
-fun photoelectricity_N : N ;
-fun piezoelectricity_N : N ;
-fun eccentricity_N : N ;
-fun concentricity_N : N ;
-fun authenticity_N : N ;
-fun elasticity_N : N ;
-fun inelasticity_N : N ;
-fun plasticity_N : N ;
-fun spasticity_N : N ;
-fun domesticity_N : N ;
-fun rusticity_N : N ;
-fun analyticity_N : N ;
-fun toxicity_N : N ;
-fun cytotoxicity_N : N ;
-fun precocity_N : N ;
-fun velocity_N : N ;
-fun 'muzzle-velocity_N' : N ;
-fun hypervelocity_N : N ;
-fun ferocity_N : N ;
-fun reciprocity_N : N ;
-fun atrocity_N : N ;
-fun scarcity_N : N ;
-fun paucity_N : N ;
-fun quiddity_N : N ;
-fun oddity_N : N ;
-fun heredity_N : N ;
-fun morbidity_N : N ;
-fun turbidity_N : N ;
-fun acidity_N : N ;
-fun placidity_N : N ;
-fun hyperacidity_N : N ;
-fun flaccidity_N : N ;
-fun rancidity_N : N ;
-fun lucidity_N : N ;
-fun rigidity_N : N ;
-fun frigidity_N : N ;
-fun algidity_N : N ;
-fun turgidity_N : N ;
-fun validity_N : N ;
-fun invalidity_N : N ;
-fun solidity_N : N ;
-fun stolidity_N : N ;
-fun timidity_N : N ;
-fun humidity_N : N ;
-fun tumidity_N : N ;
-fun rapidity_N : N ;
-fun sapidity_N : N ;
-fun vapidity_N : N ;
-fun intrepidity_N : N ;
-fun tepidity_N : N ;
-fun insipidity_N : N ;
-fun limpidity_N : N ;
-fun torpidity_N : N ;
-fun cupidity_N : N ;
-fun stupidity_N : N ;
-fun aridity_N : N ;
-fun acridity_N : N ;
-fun torridity_N : N ;
-fun putridity_N : N ;
-fun fluidity_N : N ;
-fun semifluidity_N : N ;
-fun liquidity_N : N ;
-fun avidity_N : N ;
-fun gravidity_N : N ;
-fun lividity_N : N ;
-fun fecundity_N : N ;
-fun jocundity_N : N ;
-fun profundity_N : N ;
-fun rotundity_N : N ;
-fun commodity_N : N ;
-fun absurdity_N : N ;
-fun nudity_N : N ;
-fun crudity_N : N ;
-fun deity_N : N ;
-fun velleity_N : N ;
-fun contemporaneity_N : N ;
-fun simultaneity_N : N ;
-fun spontaneity_N : N ;
-fun homogeneity_N : N ;
-fun inhomogeneity_N : N ;
-fun heterogeneity_N : N ;
-fun logicality_N : N ;
-fun illogicality_N : N ;
-fun comicality_N : N ;
-fun technicality_N : N ;
-fun topicality_N : N ;
-fun typicality_N : N ;
-fun atypicality_N : N ;
-fun cylindricality_N : N ;
-fun lyricality_N : N ;
-fun whimsicality_N : N ;
-fun musicality_N : N ;
-fun practicality_N : N ;
-fun impracticality_N : N ;
-fun criticality_N : N ;
-fun verticality_N : N ;
-fun locality_N : N ;
-fun reciprocality_N : N ;
-fun rascality_N : N ;
-fun sesquipedality_N : N ;
-fun modality_N : N ;
-fun ideality_N : N ;
-fun reality_N : N ;
-fun unreality_N : N ;
-fun egality_N : N ;
-fun legality_N : N ;
-fun illegality_N : N ;
-fun prodigality_N : N ;
-fun frugality_N : N ;
-fun speciality_N : N ;
-fun artificiality_N : N ;
-fun superficiality_N : N ;
-fun sociality_N : N ;
-fun cordiality_N : N ;
-fun geniality_N : N ;
-fun congeniality_N : N ;
-fun uncongeniality_N : N ;
-fun materiality_N : N ;
-fun immateriality_N : N ;
-fun territoriality_N : N ;
-fun substantiality_N : N ;
-fun insubstantiality_N : N ;
-fun confidentiality_N : N ;
-fun essentiality_N : N ;
-fun inessentiality_N : N ;
-fun potentiality_N : N ;
-fun partiality_N : N ;
-fun impartiality_N : N ;
-fun bestiality_N : N ;
-fun triviality_N : N ;
-fun conviviality_N : N ;
-fun joviality_N : N ;
-fun molality_N : N ;
-fun animality_N : N ;
-fun primality_N : N ;
-fun formality_N : N ;
-fun informality_N : N ;
-fun normality_N : N ;
-fun abnormality_N : N ;
-fun subnormality_N : N ;
-fun banality_N : N ;
-fun venality_N : N ;
-fun cardinality_N : N ;
-fun finality_N : N ;
-fun originality_N : N ;
-fun unoriginality_N : N ;
-fun marginality_N : N ;
-fun orthogonality_N : N ;
-fun dimensionality_N : N ;
-fun nationality_N : N ;
-fun internationality_N : N ;
-fun rationality_N : N ;
-fun irrationality_N : N ;
-fun directionality_N : N ;
-fun functionality_N : N ;
-fun conditionality_N : N ;
-fun intentionality_N : N ;
-fun conventionality_N : N ;
-fun unconventionality_N : N ;
-fun emotionality_N : N ;
-fun unemotionality_N : N ;
-fun proportionality_N : N ;
-fun commonality_N : N ;
-fun personality_N : N ;
-fun tonality_N : N ;
-fun atonality_N : N ;
-fun polytonality_N : N ;
-fun municipality_N : N ;
-fun principality_N : N ;
-fun liberality_N : N ;
-fun illiberality_N : N ;
-fun ephemerality_N : N ;
-fun generality_N : N ;
-fun laterality_N : N ;
-fun bilaterality_N : N ;
-fun morality_N : N ;
-fun amorality_N : N ;
-fun immorality_N : N ;
-fun temporality_N : N ;
-fun centrality_N : N ;
-fun neutrality_N : N ;
-fun plurality_N : N ;
-fun rurality_N : N ;
-fun nasality_N : N ;
-fun universality_N : N ;
-fun causality_N : N ;
-fun fatality_N : N ;
-fun hospitality_N : N ;
-fun inhospitality_N : N ;
-fun vitality_N : N ;
-fun mentality_N : N ;
-fun sentimentality_N : N ;
-fun instrumentality_N : N ;
-fun horizontality_N : N ;
-fun totality_N : N ;
-fun mortality_N : N ;
-fun immortality_N : N ;
-fun brutality_N : N ;
-fun duality_N : N ;
-fun graduality_N : N ;
-fun individuality_N : N ;
-fun quality_N : N ;
-fun equality_N : N ;
-fun inequality_N : N ;
-fun sensuality_N : N ;
-fun actuality_N : N ;
-fun factuality_N : N ;
-fun counterfactuality_N : N ;
-fun effectuality_N : N ;
-fun ineffectuality_N : N ;
-fun punctuality_N : N ;
-fun spirituality_N : N ;
-fun eventuality_N : N ;
-fun mutuality_N : N ;
-fun sexuality_N : N ;
-fun asexuality_N : N ;
-fun bisexuality_N : N ;
-fun psychosexuality_N : N ;
-fun homosexuality_N : N ;
-fun heterosexuality_N : N ;
-fun fidelity_N : N ;
-fun 'high-fidelity_N' : N ;
-fun infidelity_N : N ;
-fun ability_N : N ;
-fun probability_N : N ;
-fun improbability_N : N ;
-fun imperturbability_N : N ;
-fun impeccability_N : N ;
-fun applicability_N : N ;
-fun inapplicability_N : N ;
-fun amicability_N : N ;
-fun practicability_N : N ;
-fun impracticability_N : N ;
-fun readability_N : N ;
-fun formidability_N : N ;
-fun bendability_N : N ;
-fun dependability_N : N ;
-fun undependability_N : N ;
-fun replaceability_N : N ;
-fun serviceability_N : N ;
-fun marriageability_N : N ;
-fun manageability_N : N ;
-fun knowledgeability_N : N ;
-fun exchangeability_N : N ;
-fun unexchangeability_N : N ;
-fun malleability_N : N ;
-fun unmalleability_N : N ;
-fun permeability_N : N ;
-fun impermeability_N : N ;
-fun rateability_N : N ;
-fun affability_N : N ;
-fun fatigability_N : N ;
-fun indefatigability_N : N ;
-fun navigability_N : N ;
-fun impeachability_N : N ;
-fun approachability_N : N ;
-fun unapproachability_N : N ;
-fun perishability_N : N ;
-fun imperishability_N : N ;
-fun sociability_N : N ;
-fun unsociability_N : N ;
-fun associability_N : N ;
-fun quantifiability_N : N ;
-fun liability_N : N ;
-fun reliability_N : N ;
-fun pliability_N : N ;
-fun amiability_N : N ;
-fun variability_N : N ;
-fun invariability_N : N ;
-fun friability_N : N ;
-fun viability_N : N ;
-fun scalability_N : N ;
-fun salability_N : N ;
-fun assailability_N : N ;
-fun availability_N : N ;
-fun manipulability_N : N ;
-fun flammability_N : N ;
-fun amenability_N : N ;
-fun tenability_N : N ;
-fun impregnability_N : N ;
-fun inability_N : N ;
-fun stainability_N : N ;
-fun sustainability_N : N ;
-fun spinnability_N : N ;
-fun companionability_N : N ;
-fun discernability_N : N ;
-fun capability_N : N ;
-fun incapability_N : N ;
-fun culpability_N : N ;
-fun arability_N : N ;
-fun separability_N : N ;
-fun comparability_N : N ;
-fun transferability_N : N ;
-fun venerability_N : N ;
-fun vulnerability_N : N ;
-fun invulnerability_N : N ;
-fun interoperability_N : N ;
-fun alterability_N : N ;
-fun unalterability_N : N ;
-fun maneuverability_N : N ;
-fun admirability_N : N ;
-fun desirability_N : N ;
-fun undesirability_N : N ;
-fun adorability_N : N ;
-fun memorability_N : N ;
-fun penetrability_N : N ;
-fun impenetrability_N : N ;
-fun demonstrability_N : N ;
-fun curability_N : N ;
-fun incurability_N : N ;
-fun durability_N : N ;
-fun perdurability_N : N ;
-fun insurability_N : N ;
-fun uninsurability_N : N ;
-fun manoeuvrability_N : N ;
-fun disability_N : N ;
-fun advisability_N : N ;
-fun inadvisability_N : N ;
-fun dispensability_N : N ;
-fun indispensability_N : N ;
-fun palatability_N : N ;
-fun unpalatability_N : N ;
-fun ratability_N : N ;
-fun equatability_N : N ;
-fun tractability_N : N ;
-fun intractability_N : N ;
-fun delectability_N : N ;
-fun respectability_N : N ;
-fun unrespectability_N : N ;
-fun predictability_N : N ;
-fun unpredictability_N : N ;
-fun ineluctability_N : N ;
-fun habitability_N : N ;
-fun excitability_N : N ;
-fun indomitability_N : N ;
-fun irritability_N : N ;
-fun suitability_N : N ;
-fun unsuitability_N : N ;
-fun inevitability_N : N ;
-fun merchantability_N : N ;
-fun accountability_N : N ;
-fun notability_N : N ;
-fun quotability_N : N ;
-fun adaptability_N : N ;
-fun unadaptability_N : N ;
-fun acceptability_N : N ;
-fun unacceptability_N : N ;
-fun portability_N : N ;
-fun stability_N : N ;
-fun metastability_N : N ;
-fun instability_N : N ;
-fun executability_N : N ;
-fun mutability_N : N ;
-fun immutability_N : N ;
-fun commutability_N : N ;
-fun incommutability_N : N ;
-fun permutability_N : N ;
-fun indisputability_N : N ;
-fun inscrutability_N : N ;
-fun achievability_N : N ;
-fun inconceivability_N : N ;
-fun solvability_N : N ;
-fun unsolvability_N : N ;
-fun movability_N : N ;
-fun immovability_N : N ;
-fun taxability_N : N ;
-fun debility_N : N ;
-fun invincibility_N : N ;
-fun irascibility_N : N ;
-fun reproducibility_N : N ;
-fun irreproducibility_N : N ;
-fun edibility_N : N ;
-fun credibility_N : N ;
-fun incredibility_N : N ;
-fun audibility_N : N ;
-fun inaudibility_N : N ;
-fun legibility_N : N ;
-fun illegibility_N : N ;
-fun eligibility_N : N ;
-fun ineligibility_N : N ;
-fun intelligibility_N : N ;
-fun unintelligibility_N : N ;
-fun tangibility_N : N ;
-fun intangibility_N : N ;
-fun fallibility_N : N ;
-fun infallibility_N : N ;
-fun gullibility_N : N ;
-fun feasibility_N : N ;
-fun infeasibility_N : N ;
-fun risibility_N : N ;
-fun visibility_N : N ;
-fun divisibility_N : N ;
-fun invisibility_N : N ;
-fun defensibility_N : N ;
-fun reprehensibility_N : N ;
-fun comprehensibility_N : N ;
-fun incomprehensibility_N : N ;
-fun sensibility_N : N ;
-fun insensibility_N : N ;
-fun responsibility_N : N ;
-fun irresponsibility_N : N ;
-fun reversibility_N : N ;
-fun irreversibility_N : N ;
-fun accessibility_N : N ;
-fun inaccessibility_N : N ;
-fun irrepressibility_N : N ;
-fun compressibility_N : N ;
-fun incompressibility_N : N ;
-fun admissibility_N : N ;
-fun inadmissibility_N : N ;
-fun permissibility_N : N ;
-fun impermissibility_N : N ;
-fun possibility_N : N ;
-fun impossibility_N : N ;
-fun plausibility_N : N ;
-fun implausibility_N : N ;
-fun compatibility_N : N ;
-fun incompatibility_N : N ;
-fun histoincompatibility_N : N ;
-fun histocompatibility_N : N ;
-fun perfectibility_N : N ;
-fun imperfectibility_N : N ;
-fun destructibility_N : N ;
-fun indestructibility_N : N ;
-fun perceptibility_N : N ;
-fun imperceptibility_N : N ;
-fun susceptibility_N : N ;
-fun unsusceptibility_N : N ;
-fun corruptibility_N : N ;
-fun incorruptibility_N : N ;
-fun convertibility_N : N ;
-fun inconvertibility_N : N ;
-fun incontrovertibility_N : N ;
-fun suggestibility_N : N ;
-fun digestibility_N : N ;
-fun indigestibility_N : N ;
-fun irresistibility_N : N ;
-fun combustibility_N : N ;
-fun flexibility_N : N ;
-fun inflexibility_N : N ;
-fun mobility_N : N ;
-fun immobility_N : N ;
-fun nobility_N : N ;
-fun solubility_N : N ;
-fun insolubility_N : N ;
-fun dissolubility_N : N ;
-fun volubility_N : N ;
-fun facility_N : N ;
-fun imbecility_N : N ;
-fun docility_N : N ;
-fun agility_N : N ;
-fun fragility_N : N ;
-fun humility_N : N ;
-fun senility_N : N ;
-fun sterility_N : N ;
-fun puerility_N : N ;
-fun virility_N : N ;
-fun scurrility_N : N ;
-fun volatility_N : N ;
-fun versatility_N : N ;
-fun contractility_N : N ;
-fun ductility_N : N ;
-fun gentility_N : N ;
-fun motility_N : N ;
-fun immotility_N : N ;
-fun hypermotility_N : N ;
-fun fertility_N : N ;
-fun infertility_N : N ;
-fun hostility_N : N ;
-fun utility_N : N ;
-fun futility_N : N ;
-fun inutility_N : N ;
-fun tranquility_N : N ;
-fun civility_N : N ;
-fun incivility_N : N ;
-fun servility_N : N ;
-fun tranquillity_N : N ;
-fun jollity_N : N ;
-fun nullity_N : N ;
-fun polity_N : N ;
-fun frivolity_N : N ;
-fun credulity_N : N ;
-fun incredulity_N : N ;
-fun overcredulity_N : N ;
-fun sedulity_N : N ;
-fun garrulity_N : N ;
-fun amity_N : N ;
-fun calamity_N : N ;
-fun extremity_N : N ;
-fun dimity_N : N ;
-fun sublimity_N : N ;
-fun pusillanimity_N : N ;
-fun magnanimity_N : N ;
-fun unanimity_N : N ;
-fun equanimity_N : N ;
-fun proximity_N : N ;
-fun enmity_N : N ;
-fun comity_N : N ;
-fun infirmity_N : N ;
-fun deformity_N : N ;
-fun uniformity_N : N ;
-fun nonuniformity_N : N ;
-fun conformity_N : N ;
-fun nonconformity_N : N ;
-fun enormity_N : N ;
-fun anonymity_N : N ;
-fun urbanity_N : N ;
-fun profanity_N : N ;
-fun Christianity_N : N ;
-fun humanity_N : N ;
-fun inhumanity_N : N ;
-fun inanity_N : N ;
-fun sanity_N : N ;
-fun insanity_N : N ;
-fun vanity_N : N ;
-fun obscenity_N : N ;
-fun lenity_N : N ;
-fun amenity_N : N ;
-fun serenity_N : N ;
-fun dignity_N : N ;
-fun indignity_N : N ;
-fun malignity_N : N ;
-fun benignity_N : N ;
-fun vicinity_N : N ;
-fun affinity_N : N ;
-fun infinity_N : N ;
-fun virginity_N : N ;
-fun alkalinity_N : N ;
-fun salinity_N : N ;
-fun masculinity_N : N ;
-fun femininity_N : N ;
-fun asininity_N : N ;
-fun saccharinity_N : N ;
-fun chlorinity_N : N ;
-fun trinity_N : N ;
-fun sanguinity_N : N ;
-fun consanguinity_N : N ;
-fun divinity_N : N ;
-fun indemnity_N : N ;
-fun solemnity_N : N ;
-fun moronity_N : N ;
-fun modernity_N : N ;
-fun maternity_N : N ;
-fun paternity_N : N ;
-fun fraternity_N : N ;
-fun eternity_N : N ;
-fun taciturnity_N : N ;
-fun unity_N : N ;
-fun jejunity_N : N ;
-fun immunity_N : N ;
-fun autoimmunity_N : N ;
-fun community_N : N ;
-fun impunity_N : N ;
-fun disunity_N : N ;
-fun importunity_N : N ;
-fun opportunity_N : N ;
-fun dacoity_N : N ;
-fun pity_N : N ;
-fun 'self-pity_N' : N ;
-fun serendipity_N : N ;
-fun arity_N : N ;
-fun barbarity_N : N ;
-fun solidarity_N : N ;
-fun multicollinearity_N : N ;
-fun vulgarity_N : N ;
-fun charity_N : N ;
-fun familiarity_N : N ;
-fun unfamiliarity_N : N ;
-fun peculiarity_N : N ;
-fun clarity_N : N ;
-fun hilarity_N : N ;
-fun similarity_N : N ;
-fun dissimilarity_N : N ;
-fun capillarity_N : N ;
-fun molarity_N : N ;
-fun polarity_N : N ;
-fun lobularity_N : N ;
-fun perpendicularity_N : N ;
-fun particularity_N : N ;
-fun jocularity_N : N ;
-fun circularity_N : N ;
-fun vascularity_N : N ;
-fun muscularity_N : N ;
-fun regularity_N : N ;
-fun irregularity_N : N ;
-fun angularity_N : N ;
-fun triangularity_N : N ;
-fun rectangularity_N : N ;
-fun singularity_N : N ;
-fun cellularity_N : N ;
-fun hypocellularity_N : N ;
-fun hypercellularity_N : N ;
-fun granularity_N : N ;
-fun popularity_N : N ;
-fun unpopularity_N : N ;
-fun insularity_N : N ;
-fun parity_N : N ;
-fun fissiparity_N : N ;
-fun disparity_N : N ;
-fun rarity_N : N ;
-fun complementarity_N : N ;
-fun celebrity_N : N ;
-fun salubrity_N : N ;
-fun insalubrity_N : N ;
-fun alacrity_N : N ;
-fun mediocrity_N : N ;
-fun sincerity_N : N ;
-fun insincerity_N : N ;
-fun celerity_N : N ;
-fun temerity_N : N ;
-fun asperity_N : N ;
-fun prosperity_N : N ;
-fun posterity_N : N ;
-fun austerity_N : N ;
-fun dexterity_N : N ;
-fun ambidexterity_N : N ;
-fun verity_N : N ;
-fun severity_N : N ;
-fun integrity_N : N ;
-fun authority_N : N ;
-fun seniority_N : N ;
-fun inferiority_N : N ;
-fun superiority_N : N ;
-fun ulteriority_N : N ;
-fun anteriority_N : N ;
-fun posteriority_N : N ;
-fun priority_N : N ;
-fun majority_N : N ;
-fun minority_N : N ;
-fun sonority_N : N ;
-fun sorority_N : N ;
-fun security_N : N ;
-fun insecurity_N : N ;
-fun obscurity_N : N ;
-fun purity_N : N ;
-fun impurity_N : N ;
-fun maturity_N : N ;
-fun immaturity_N : N ;
-fun futurity_N : N ;
-fun obesity_N : N ;
-fun falsity_N : N ;
-fun density_N : N ;
-fun immensity_N : N ;
-fun propensity_N : N ;
-fun tensity_N : N ;
-fun intensity_N : N ;
-fun verbosity_N : N ;
-fun bellicosity_N : N ;
-fun varicosity_N : N ;
-fun jocosity_N : N ;
-fun viscosity_N : N ;
-fun homozygosity_N : N ;
-fun heterozygosity_N : N ;
-fun preciosity_N : N ;
-fun grandiosity_N : N ;
-fun religiosity_N : N ;
-fun curiosity_N : N ;
-fun callosity_N : N ;
-fun animosity_N : N ;
-fun luminosity_N : N ;
-fun adiposity_N : N ;
-fun pomposity_N : N ;
-fun fibrosity_N : N ;
-fun tuberosity_N : N ;
-fun generosity_N : N ;
-fun porosity_N : N ;
-fun monstrosity_N : N ;
-fun sinuosity_N : N ;
-fun impetuosity_N : N ;
-fun virtuosity_N : N ;
-fun tortuosity_N : N ;
-fun sparsity_N : N ;
-fun varsity_N : N ;
-fun adversity_N : N ;
-fun diversity_N : N ;
-fun biodiversity_N : N ;
-fun university_N : N ;
-fun multiversity_N : N ;
-fun perversity_N : N ;
-fun necessity_N : N ;
-fun sanctity_N : N ;
-fun quantity_N : N ;
-fun entity_N : N ;
-fun identity_N : N ;
-fun nonentity_N : N ;
-fun chastity_N : N ;
-fun acuity_N : N ;
-fun vacuity_N : N ;
-fun perspicuity_N : N ;
-fun promiscuity_N : N ;
-fun assiduity_N : N ;
-fun ambiguity_N : N ;
-fun unambiguity_N : N ;
-fun contiguity_N : N ;
-fun superfluity_N : N ;
-fun ingenuity_N : N ;
-fun tenuity_N : N ;
-fun continuity_N : N ;
-fun discontinuity_N : N ;
-fun annuity_N : N ;
-fun equity_N : N ;
-fun inequity_N : N ;
-fun ubiquity_N : N ;
-fun obliquity_N : N ;
-fun iniquity_N : N ;
-fun antiquity_N : N ;
-fun propinquity_N : N ;
-fun congruity_N : N ;
-fun incongruity_N : N ;
-fun fatuity_N : N ;
-fun gratuity_N : N ;
-fun perpetuity_N : N ;
-fun cavity_N : N ;
-fun concavity_N : N ;
-fun gravity_N : N ;
-fun depravity_N : N ;
-fun suavity_N : N ;
-fun longevity_N : N ;
-fun levity_N : N ;
-fun brevity_N : N ;
-fun acclivity_N : N ;
-fun declivity_N : N ;
-fun proclivity_N : N ;
-fun passivity_N : N ;
-fun impassivity_N : N ;
-fun creativity_N : N ;
-fun negativity_N : N ;
-fun electronegativity_N : N ;
-fun relativity_N : N ;
-fun nativity_N : N ;
-fun activity_N : N ;
-fun reactivity_N : N ;
-fun inactivity_N : N ;
-fun radioactivity_N : N ;
-fun hyperactivity_N : N ;
-fun overactivity_N : N ;
-fun refractivity_N : N ;
-fun objectivity_N : N ;
-fun subjectivity_N : N ;
-fun selectivity_N : N ;
-fun connectivity_N : N ;
-fun directivity_N : N ;
-fun conductivity_N : N ;
-fun photoconductivity_N : N ;
-fun superconductivity_N : N ;
-fun productivity_N : N ;
-fun reluctivity_N : N ;
-fun transitivity_N : N ;
-fun intransitivity_N : N ;
-fun sensitivity_N : N ;
-fun insensitivity_N : N ;
-fun photosensitivity_N : N ;
-fun hypersensitivity_N : N ;
-fun positivity_N : N ;
-fun captivity_N : N ;
-fun receptivity_N : N ;
-fun absorptivity_N : N ;
-fun festivity_N : N ;
-fun resistivity_N : N ;
-fun reflexivity_N : N ;
-fun laxity_N : N ;
-fun complexity_N : N ;
-fun perplexity_N : N ;
-fun convexity_N : N ;
-fun prolixity_N : N ;
-fun fealty_N : N ;
-fun realty_N : N ;
-fun specialty_N : N ;
-fun penalty_N : N ;
-fun commonalty_N : N ;
-fun personalty_N : N ;
-fun severalty_N : N ;
-fun admiralty_N : N ;
-fun temporalty_N : N ;
-fun mayoralty_N : N ;
-fun casualty_N : N ;
-fun spiritualty_N : N ;
-fun loyalty_N : N ;
-fun disloyalty_N : N ;
-fun royalty_N : N ;
-fun viceroyalty_N : N ;
-fun cruelty_N : N ;
-fun novelty_N : N ;
-fun frailty_N : N ;
-fun faculty_N : N ;
-fun difficulty_N : N ;
-fun shanty_N : N ;
-fun guaranty_N : N ;
-fun warranty_N : N ;
-fun plenty_N : N ;
-fun frumenty_N : N ;
-fun sovereignty_N : N ;
-fun dainty_N : N ;
-fun suzerainty_N : N ;
-fun certainty_N : N ;
-fun uncertainty_N : N ;
-fun aunty_N : N ;
-fun bounty_N : N ;
-fun county_N : N ;
-fun viscounty_N : N ;
-fun booty_N : N ;
-fun empty_N : N ;
-fun party_N : N ;
-fun 'tea-party_N' : N ;
-fun 'house-party_N' : N ;
-fun 'fatigue-party_N' : N ;
-fun 'stag-party_N' : N ;
-fun 'landing-party_N' : N ;
-fun 'firing-party_N' : N ;
-fun 'search-party_N' : N ;
-fun 'hen-party_N' : N ;
-fun 'stretcher-party_N' : N ;
-fun 'dinner-party_N' : N ;
-fun 'charter-party_N' : N ;
-fun liberty_N : N ;
-fun puberty_N : N ;
-fun prepuberty_N : N ;
-fun champerty_N : N ;
-fun property_N : N ;
-fun poverty_N : N ;
-fun forty_N : N ;
-fun sty_N : N ;
-fun myringoplasty_N : N ;
-fun palatopharyngoplasty_N : N ;
-fun angioplasty_N : N ;
-fun phalloplasty_N : N ;
-fun tympanoplasty_N : N ;
-fun uranoplasty_N : N ;
-fun abdominoplasty_N : N ;
-fun arthroplasty_N : N ;
-fun neuroplasty_N : N ;
-fun keratoplasty_N : N ;
-fun proctoplasty_N : N ;
-fun otoplasty_N : N ;
-fun autoplasty_N : N ;
-fun dynasty_N : N ;
-fun pasty_N : N ;
-fun paederasty_N : N ;
-fun pederasty_N : N ;
-fun modesty_N : N ;
-fun immodesty_N : N ;
-fun majesty_N : N ;
-fun 'lese majesty_N' : N ;
-fun amnesty_N : N ;
-fun honesty_N : N ;
-fun dishonesty_N : N ;
-fun travesty_N : N ;
-fun pigsty_N : N ;
-fun sacristy_N : N ;
-fun trusty_N : N ;
-fun catty_N : N ;
-fun patty_N : N ;
-fun jetty_N : N ;
-fun pretty_N : N ;
-fun ditty_N : N ;
-fun kitty_N : N ;
-fun 'nitty-gritty_N' : N ;
-fun potty_N : N ;
-fun butty_N : N ;
-fun putty_N : N ;
-fun beauty_N : N ;
-fun duty_N : N ;
-fun 'stamp-duty_N' : N ;
-fun 'point-duty_N' : N ;
-fun deputy_N : N ;
-fun zloty_N : N ;
-fun soliloquy_N : N ;
-fun colloquy_N : N ;
-fun buy_N : N ;
-fun guy_N : N ;
-fun obloquy_N : N ;
-fun cavy_N : N ;
-fun heavy_N : N ;
-fun navy_N : N ;
-fun gravy_N : N ;
-fun bevy_N : N ;
-fun levy_N : N ;
-fun ivy_N : N ;
-fun 'poison-ivy_N' : N ;
-fun privy_N : N ;
-fun envy_N : N ;
-fun muscovy_N : N ;
-fun anchovy_N : N ;
-fun scurvy_N : N ;
-fun navvy_N : N ;
-fun savvy_N : N ;
-fun divvy_N : N ;
-fun skivvy_N : N ;
-fun galaxy_N : N ;
-fun epitaxy_N : N ;
-fun apoplexy_N : N ;
-fun orchiopexy_N : N ;
-fun mastopexy_N : N ;
-fun pixy_N : N ;
-fun orthodoxy_N : N ;
-fun unorthodoxy_N : N ;
-fun heterodoxy_N : N ;
-fun epoxy_N : N ;
-fun proxy_N : N ;
-fun crazy_N : N ;
-fun frenzy_N : N ;
-fun floozy_N : N ;
-fun tizzy_N : N ;
-fun ply_N : N ;
-fun tunny_N : N ;
-fun fry_N : N ;
-fun gentry_N : N ;
-fun swiz_N : N ;
-fun kibbutz_N : N ;
-fun topaz_N : N ;
-fun adz_N : N ;
-fun kameez_N : N ;
-fun fez_N : N ;
-fun biz_N : N ;
-fun showbiz_N : N ;
-fun whiz_N : N ;
-fun quiz_N : N ;
-fun schmalz_N : N ;
-fun guanabenz_N : N ;
-fun kolkhoz_N : N ;
-fun mittelschmerz_N : N ;
-fun kuvasz_N : N ;
-fun grosz_N : N ;
-fun ersatz_N : N ;
-fun shegetz_N : N ;
-fun blitz_N : N ;
-fun spitz_N : N ;
-fun ritz_N : N ;
-fun spritz_N : N ;
-fun slivovitz_N : N ;
-fun schmaltz_N : N ;
-fun waltz_N : N ;
-fun chintz_N : N ;
-fun blintz_N : N ;
-fun quartz_N : N ;
-fun megahertz_N : N ;
-fun gigahertz_N : N ;
-fun terahertz_N : N ;
-fun kilohertz_N : N ;
-fun klutz_N : N ;
-fun putz_N : N ;
-fun jazz_N : N ;
-fun fizz_N : N ;
-fun frizz_N : N ;
-fun zizz_N : N ;
-fun buzz_N : N ;
-fun fuzz_N : N ;
-fun 'pince-nez_N' : N ;
-fun oz_N : N ;
-fun doz_N : N ;
-fun hertz_N : N ;
-fun pietà_N : N ;
-fun abbé_N : N ;
-fun fiancé_N : N ;
-fun 'auto-da-fé_1_N' : N ;
-fun café_N : N ;
-fun réchauffé_N : N ;
-fun négligé_N : N ;
-fun congé_N : N ;
-fun protégé_N : N ;
-fun attaché_N : N ;
-fun cliché_N : N ;
-fun 'papier-mâché_N' : N ;
-fun saké_N : N ;
-fun soufflé_N : N ;
-fun déshabillé_N : N ;
-fun lamé_N : N ;
-fun consommé_N : N ;
-fun résumé_N : N ;
-fun cloisonné_N : N ;
-fun canapé_N : N ;
-fun coupé_N : N ;
-fun émigré_N : N ;
-fun curé_N : N ;
-fun exposé_N : N ;
-fun maté_N : N ;
-fun naiveté_N : N ;
-fun pâté_N : N ;
-fun roué_N : N ;
-fun appliqué_N : N ;
-fun communiqué_N : N ;
-fun habitué_N : N ;
-fun 'auto-da-fé_2_N' : N ;
-fun 'vs._Prep' : Prep ;
-fun 'a/k/a_Prep' : Prep ;
-fun circa_Prep : Prep ;
-fun via_Prep : Prep ;
-fun contra_Prep : Prep ;
-fun qua_Prep : Prep ;
-fun mid_Prep : Prep ;
-fun amid_Prep : Prep ;
-fun behind_Prep : Prep ;
-fun beyond_Prep : Prep ;
-fun round_Prep : Prep ;
-fun around_Prep : Prep ;
-fun aboard_Prep : Prep ;
-fun fromward_Prep : Prep ;
-fun froward_Prep : Prep ;
-fun toward_Prep : Prep ;
-fun apud_Prep : Prep ;
-fun pace_Prep : Prep ;
-fun vice_Prep : Prep ;
-fun since_Prep : Prep ;
-fun once_Prep : Prep ;
-fun astride_Prep : Prep ;
-fun beside_Prep : Prep ;
-fun alongside_Prep : Prep ;
-fun inside_Prep : Prep ;
-fun outside_Prep : Prep ;
-fun like_Prep : Prep ;
-fun unlike_Prep : Prep ;
-fun re_Prep : Prep ;
-fun 'in re_Prep' : Prep ;
-fun ere_Prep : Prep ;
-fun afore_Prep : Prep ;
-fun before_Prep : Prep ;
-fun despite_Prep : Prep ;
-fun opposite_Prep : Prep ;
-fun above_Prep : Prep ;
-fun off_Prep : Prep ;
-fun of_Prep : Prep ;
-fun 'ahead of_Prep' : Prep ;
-fun 'instead of_Prep' : Prep ;
-fun 'in place of_Prep' : Prep ;
-fun 'inside of_Prep' : Prep ;
-fun 'outside of_Prep' : Prep ;
-fun 'for the sake of_Prep' : Prep ;
-fun 'in case of_Prep' : Prep ;
-fun 'because of_Prep' : Prep ;
-fun 'in spite of_Prep' : Prep ;
-fun 'by virtue of_Prep' : Prep ;
-fun 'on behalf of_Prep' : Prep ;
-fun 'on top of_Prep' : Prep ;
-fun 'as of_Prep' : Prep ;
-fun 'by means of_Prep' : Prep ;
-fun 'regardless of_Prep' : Prep ;
-fun 'that of_Prep' : Prep ;
-fun 'left of_Prep' : Prep ;
-fun 'right of_Prep' : Prep ;
-fun 'in point of_Prep' : Prep ;
-fun 'in front of_Prep' : Prep ;
-fun 'on account of_Prep' : Prep ;
-fun 'at the behest of_Prep' : Prep ;
-fun 'out of_Prep' : Prep ;
-fun 'in lieu of_Prep' : Prep ;
-fun notwithstanding_Prep : Prep ;
-fun pending_Prep : Prep ;
-fun during_Prep : Prep ;
-fun along_Prep : Prep ;
-fun among_Prep : Prep ;
-fun though_Prep : Prep ;
-fun through_Prep : Prep ;
-fun beneath_Prep : Prep ;
-fun underneath_Prep : Prep ;
-fun with_Prep : Prep ;
-fun 'in accordance with_Prep' : Prep ;
-fun outwith_Prep : Prep ;
-fun worth_Prep : Prep ;
-fun anti_Prep : Prep ;
-fun W_'til_Prep : Prep ;
-fun until_Prep : Prep ;
-fun till_Prep : Prep ;
-fun from_Prep : Prep ;
-fun 'aside from_Prep' : Prep ;
-fun 'far from_Prep' : Prep ;
-fun 'apart from_Prep' : Prep ;
-fun 'out from_Prep' : Prep ;
-fun cum_Prep : Prep ;
-fun than_Prep : Prep ;
-fun 'rather than_Prep' : Prep ;
-fun between_Prep : Prep ;
-fun then_Prep : Prep ;
-fun betwixen_Prep : Prep ;
-fun in_Prep : Prep ;
-fun agin_Prep : Prep ;
-fun within_Prep : Prep ;
-fun on_Prep : Prep ;
-fun upon_Prep : Prep ;
-fun down_Prep : Prep ;
-fun ago_Prep : Prep ;
-fun modulo_Prep : Prep ;
-fun pro_Prep : Prep ;
-fun to_Prep : Prep ;
-fun 'as opposed to_Prep' : Prep ;
-fun 'with regard to_Prep' : Prep ;
-fun 'close to_Prep' : Prep ;
-fun 'due to_Prep' : Prep ;
-fun 'according to_Prep' : Prep ;
-fun 'owing to_Prep' : Prep ;
-fun 'back to_Prep' : Prep ;
-fun 'in addition to_Prep' : Prep ;
-fun 'up to_Prep' : Prep ;
-fun 'near to_Prep' : Prep ;
-fun 'in order to_Prep' : Prep ;
-fun 'prior to_Prep' : Prep ;
-fun 'thanks to_Prep' : Prep ;
-fun 'subject to_Prep' : Prep ;
-fun 'with respect to_Prep' : Prep ;
-fun 'pursuant to_Prep' : Prep ;
-fun 'next to_Prep' : Prep ;
-fun 'with a view to_Prep' : Prep ;
-fun into_Prep : Prep ;
-fun onto_Prep : Prep ;
-fun unto_Prep : Prep ;
-fun atop_Prep : Prep ;
-fun up_Prep : Prep ;
-fun bar_Prep : Prep ;
-fun near_Prep : Prep ;
-fun under_Prep : Prep ;
-fun whether_Prep : Prep ;
-fun neither_Prep : Prep ;
-fun behither_Prep : Prep ;
-fun per_Prep : Prep ;
-fun 'as per_Prep' : Prep ;
-fun nearer_Prep : Prep ;
-fun after_Prep : Prep ;
-fun over_Prep : Prep ;
-fun for_Prep : Prep ;
-fun 'as for_Prep' : Prep ;
-fun 'except for_Prep' : Prep ;
-fun as_Prep : Prep ;
-fun 'where as_Prep' : Prep ;
-fun 'such as_Prep' : Prep ;
-fun whereas_Prep : Prep ;
-fun 'as regards_Prep' : Prep ;
-fun frowards_Prep : Prep ;
-fun towards_Prep : Prep ;
-fun besides_Prep : Prep ;
-fun times_Prep : Prep ;
-fun 'vis-a-vis_Prep' : Prep ;
-fun 'vis-à-vis_Prep' : Prep ;
-fun sans_Prep : Prep ;
-fun apropos_Prep : Prep ;
-fun across_Prep : Prep ;
-fun minus_Prep : Prep ;
-fun versus_Prep : Prep ;
-fun at_Prep : Prep ;
-fun abaft_Prep : Prep ;
-fun anent_Prep : Prep ;
-fun fornent_Prep : Prep ;
-fun absent_Prep : Prep ;
-fun except_Prep : Prep ;
-fun athwart_Prep : Prep ;
-fun overthwart_Prep : Prep ;
-fun past_Prep : Prep ;
-fun midst_Prep : Prep ;
-fun amidst_Prep : Prep ;
-fun lest_Prep : Prep ;
-fun nearest_Prep : Prep ;
-fun amongst_Prep : Prep ;
-fun anenst_Prep : Prep ;
-fun forenenst_Prep : Prep ;
-fun fornenst_Prep : Prep ;
-fun against_Prep : Prep ;
-fun post_Prep : Prep ;
-fun but_Prep : Prep ;
-fun out_Prep : Prep ;
-fun about_Prep : Prep ;
-fun throughout_Prep : Prep ;
-fun without_Prep : Prep ;
-fun next_Prep : Prep ;
-fun twixt_Prep : Prep ;
-fun betwixt_Prep : Prep ;
-fun below_Prep : Prep ;
-fun by_Prep : Prep ;
-fun forby_Prep : Prep ;
-fun chez_Prep : Prep ;
-fun baa_V : V ;
-fun subpoena_V : V ;
-fun visa_V : V ;
-fun dab_V : V ;
-fun confab_V : V ;
-fun jab_V : V ;
-fun blab_V : V ;
-fun nab_V : V ;
-fun crab_V : V ;
-fun grab_V : V ;
-fun stab_V : V ;
-fun swab_V : V ;
-fun ebb_V : V ;
-fun bib_V : V ;
-fun fib_V : V ;
-fun jib_V : V ;
-fun 'ad-lib_V' : V ;
-fun rib_V : V ;
-fun crib_V : V ;
-fun lamb_V : V ;
-fun climb_V : V ;
-fun bomb_V : V ;
-fun 'dive-bomb_V' : V ;
-fun comb_V : V ;
-fun honeycomb_V : V ;
-fun entomb_V : V ;
-fun succumb_V : V ;
-fun dumb_V : V ;
-fun thumb_V : V ;
-fun plumb_V : V ;
-fun numb_V : V ;
-fun crumb_V : V ;
-fun bob_V : V ;
-fun dob_V : V ;
-fun fob_V : V ;
-fun job_V : V ;
-fun lob_V : V ;
-fun slob_V : V ;
-fun mob_V : V ;
-fun demob_V : V ;
-fun hobnob_V : V ;
-fun boob_V : V ;
-fun rob_V : V ;
-fun throb_V : V ;
-fun sob_V : V ;
-fun swob_V : V ;
-fun garb_V : V ;
-fun absorb_V : V ;
-fun curb_V : V ;
-fun perturb_V : V ;
-fun disturb_V : V ;
-fun daub_V : V ;
-fun dub_V : V ;
-fun club_V : V ;
-fun snub_V : V ;
-fun rub_V : V ;
-fun scrub_V : V ;
-fun drub_V : V ;
-fun grub_V : V ;
-fun sub_V : V ;
-fun stub_V : V ;
-fun shellac_V : V ;
-fun tarmac_V : V ;
-fun traffic_V : V ;
-fun mimic_V : V ;
-fun bivouac_V : V ;
-fun magic_V : V ;
-fun frolic_V : V ;
-fun panic_V : V ;
-fun picnic_V : V ;
-fun rend_V : V ;
-fun read_V : V ;
-fun 'lip-read_V' : V ;
-fun reread_V : V ;
-fun proofread_V : V ;
-fun spread_1_V : V ;
-fun misread_V : V ;
-fun clad_V : V ;
-fun head_V : V ;
-fun behead_V : V ;
-fun spearhead_V : V ;
-fun lead_1_V : V ;
-fun 'black-lead_V' : V ;
-fun plead_1_V : V ;
-fun knead_V : V ;
-fun dread_V : V ;
-fun thread_V : V ;
-fun spread_2_V : V ;
-fun retread_V : V ;
-fun lead_2_V : V ;
-fun plead_2_V : V ;
-fun mislead_V : V ;
-fun gad_V : V ;
-fun goad_V : V ;
-fun load_V : V ;
-fun unload_V : V ;
-fun overload_V : V ;
-fun railroad_V : V ;
-fun pad_V : V ;
-fun wad_V : V ;
-fun add_V : V ;
-fun bed_V : V ;
-fun embed_V : V ;
-fun imbed_V : V ;
-fun featherbed_V : V ;
-fun succeed_V : V ;
-fun proceed_V : V ;
-fun exceed_V : V ;
-fun overfeed_V : V ;
-fun heed_V : V ;
-fun bleed_2_V : V ;
-fun need_V : V ;
-fun speed_V : V ;
-fun seed_V : V ;
-fun reseed_V : V ;
-fun weed_V : V ;
-fun feed_V : V ;
-fun 'force-feed_V' : V ;
-fun spoonfeed_V : V ;
-fun breastfeed_V : V ;
-fun bleed_1_V : V ;
-fun breed_V : V ;
-fun interbreed_V : V ;
-fun crossbreed_V : V ;
-fun fed_V : V ;
-fun shed_V : V ;
-fun carried_V : V ;
-fun shred_V : V ;
-fun wed_V : V ;
-fun aid_V : V ;
-fun raid_V : V ;
-fun braid_V : V ;
-fun upbraid_V : V ;
-fun bid_5_V : V ;
-fun kid_V : V ;
-fun skid_V : V ;
-fun invalid_V : V ;
-fun void_V : V ;
-fun avoid_V : V ;
-fun rid_2_V : V ;
-fun bid_3_V : V ;
-fun underbid_3_V : V ;
-fun overbid_3_V : V ;
-fun outbid_3_V : V ;
-fun rid_1_V : V ;
-fun scald_V : V ;
-fun herald_V : V ;
-fun geld_V : V ;
-fun field_V : V ;
-fun shield_V : V ;
-fun wield_V : V ;
-fun yield_V : V ;
-fun meld_V : V ;
-fun weld_V : V ;
-fun gild_V : V ;
-fun scold_V : V ;
-fun fold_V : V ;
-fun blindfold_V : V ;
-fun manifold_V : V ;
-fun enfold_V : V ;
-fun unfold_V : V ;
-fun cuckold_V : V ;
-fun mold_V : V ;
-fun resold_V : V ;
-fun mould_V : V ;
-fun remould_V : V ;
-fun hold_V : V ;
-fun behold_V : V ;
-fun withhold_V : V ;
-fun uphold_V : V ;
-fun band_V : V ;
-fun disband_V : V ;
-fun husband_V : V ;
-fun hand_V : V ;
-fun unhand_V : V ;
-fun land_V : V ;
-fun 'force-land_V' : V ;
-fun 'crash-land_V' : V ;
-fun garland_V : V ;
-fun softland_V : V ;
-fun bellyland_V : V ;
-fun demand_V : V ;
-fun remand_V : V ;
-fun reprimand_V : V ;
-fun command_V : V ;
-fun countermand_V : V ;
-fun expand_V : V ;
-fun brand_V : V ;
-fun strand_V : V ;
-fun sand_V : V ;
-fun end_V : V ;
-fun bend_1_V : V ;
-fun unbend_V : V ;
-fun ascend_V : V ;
-fun descend_V : V ;
-fun condescend_V : V ;
-fun transcend_V : V ;
-fun fend_V : V ;
-fun defend_V : V ;
-fun offend_V : V ;
-fun reprehend_V : V ;
-fun comprehend_V : V ;
-fun apprehend_V : V ;
-fun misapprehend_V : V ;
-fun befriend_V : V ;
-fun weekend_V : V ;
-fun lend_1_V : V ;
-fun blend_V : V ;
-fun mend_V : V ;
-fun amend_V : V ;
-fun emend_V : V ;
-fun commend_V : V ;
-fun recommend_V : V ;
-fun pend_V : V ;
-fun depend_V : V ;
-fun impend_V : V ;
-fun append_V : V ;
-fun suspend_V : V ;
-fun expend_V : V ;
-fun trend_V : V ;
-fun tend_V : V ;
-fun subtend_V : V ;
-fun pretend_V : V ;
-fun intend_V : V ;
-fun superintend_V : V ;
-fun contend_V : V ;
-fun portend_V : V ;
-fun distend_V : V ;
-fun attend_V : V ;
-fun extend_V : V ;
-fun vend_V : V ;
-fun wend_V : V ;
-fun rescind_V : V ;
-fun blind_V : V ;
-fun mind_V : V ;
-fun remind_V : V ;
-fun mastermind_V : V ;
-fun wind_1_V : V ;
-fun bond_V : V ;
-fun second_V : V ;
-fun abscond_V : V ;
-fun repond_V : V ;
-fun respond_V : V ;
-fun correspond_V : V ;
-fun fund_V : V ;
-fun refund_V : V ;
-fun underfund_V : V ;
-fun bound_V : V ;
-fun abound_V : V ;
-fun rebound_V : V ;
-fun redound_V : V ;
-fun found_V : V ;
-fun 'co-found_V' : V ;
-fun dumbfound_V : V ;
-fun confound_V : V ;
-fun hound_V : V ;
-fun pound_V : V ;
-fun impound_V : V ;
-fun compound_V : V ;
-fun propound_V : V ;
-fun expound_V : V ;
-fun round_V : V ;
-fun ground_V : V ;
-fun surround_V : V ;
-fun sound_V : V ;
-fun resound_V : V ;
-fun astound_V : V ;
-fun wound_V : V ;
-fun bind_V : V ;
-fun rebind_V : V ;
-fun unbind_V : V ;
-fun find_V : V ;
-fun grind_V : V ;
-fun wind_2_V : V ;
-fun unwind_V : V ;
-fun stand_V : V ;
-fun withstand_V : V ;
-fun understand_V : V ;
-fun misunderstand_V : V ;
-fun cod_V : V ;
-fun plod_V : V ;
-fun nod_V : V ;
-fun hood_V : V ;
-fun blood_1_V : V ;
-fun flood_V : V ;
-fun brood_V : V ;
-fun blood_2_V : V ;
-fun pod_V : V ;
-fun 'out-herod_V' : V ;
-fun prod_V : V ;
-fun sod_V : V ;
-fun bombard_V : V ;
-fun card_V : V ;
-fun placard_V : V ;
-fun discard_V : V ;
-fun beard_V : V ;
-fun regard_V : V ;
-fun disregard_V : V ;
-fun poniard_V : V ;
-fun lard_V : V ;
-fun pollard_V : V ;
-fun interlard_V : V ;
-fun board_V : V ;
-fun starboard_V : V ;
-fun hoard_V : V ;
-fun retard_V : V ;
-fun guard_V : V ;
-fun safeguard_V : V ;
-fun blackguard_V : V ;
-fun ward_V : V ;
-fun award_V : V ;
-fun reward_V : V ;
-fun forward_V : V ;
-fun hazard_V : V ;
-fun herd_V : V ;
-fun shepherd_V : V ;
-fun nerd_V : V ;
-fun weird_V : V ;
-fun gird_V : V ;
-fun cord_V : V ;
-fun accord_V : V ;
-fun record_V : V ;
-fun prerecord_V : V ;
-fun ford_V : V ;
-fun afford_V : V ;
-fun lord_V : V ;
-fun word_V : V ;
-fun reword_V : V ;
-fun laud_V : V ;
-fun applaud_V : V ;
-fun maraud_V : V ;
-fun defraud_V : V ;
-fun bud_V : V ;
-fun disbud_V : V ;
-fun scud_V : V ;
-fun thud_V : V ;
-fun mud_V : V ;
-fun cloud_V : V ;
-fun overcloud_V : V ;
-fun shroud_V : V ;
-fun enshroud_V : V ;
-fun stud_V : V ;
-fun crowd_V : V ;
-fun overcrowd_V : V ;
-fun tread_V : V ;
-fun bid_4_V : V ;
-fun underbid_4_V : V ;
-fun overbid_4_V : V ;
-fun outbid_4_V : V ;
-fun bid_1_V : V ;
-fun underbid_1_V : V ;
-fun overbid_1_V : V ;
-fun outbid_1_V : V ;
-fun bid_2_V : V ;
-fun underbid_2_V : V ;
-fun overbid_2_V : V ;
-fun forbid_V : V ;
-fun outbid_2_V : V ;
-fun build_V : V ;
-fun rebuild_V : V ;
-fun bend_2_V : V ;
-fun lend_2_V : V ;
-fun spend_V : V ;
-fun underspend_V : V ;
-fun overspend_V : V ;
-fun misspend_V : V ;
-fun send_V : V ;
-fun lade_V : V ;
-fun fee_V : V ;
-fun squeegee_V : V ;
-fun referee_V : V ;
-fun tree_V : V ;
-fun tee_1_V : V ;
-fun singe_V : V ;
-fun hie_V : V ;
-fun stymie_V : V ;
-fun untie_V : V ;
-fun vie_V : V ;
-fun outvie_V : V ;
-fun hoe_V : V ;
-fun toe_V : V ;
-fun tiptoe_V : V ;
-fun beware_V : V ;
-fun glue_1_V : V ;
-fun grave_V : V ;
-fun imbibe_V : V ;
-fun gibe_V : V ;
-fun jibe_V : V ;
-fun bribe_V : V ;
-fun decribe_V : V ;
-fun ascribe_V : V ;
-fun subscribe_V : V ;
-fun oversubscribe_V : V ;
-fun describe_V : V ;
-fun prescribe_V : V ;
-fun circumscribe_V : V ;
-fun transcribe_V : V ;
-fun inscribe_V : V ;
-fun proscribe_V : V ;
-fun robe_V : V ;
-fun probe_V : V ;
-fun disrobe_V : V ;
-fun cube_V : V ;
-fun gybe_V : V ;
-fun face_V : V ;
-fun 'about-face_V' : V ;
-fun deface_V : V ;
-fun reface_V : V ;
-fun preface_V : V ;
-fun efface_V : V ;
-fun surface_V : V ;
-fun resurface_V : V ;
-fun outface_V : V ;
-fun lace_V : V ;
-fun solace_V : V ;
-fun place_V : V ;
-fun replace_V : V ;
-fun displace_V : V ;
-fun misplace_V : V ;
-fun interlace_V : V ;
-fun grimace_V : V ;
-fun menace_V : V ;
-fun pace_V : V ;
-fun space_V : V ;
-fun backspace_V : V ;
-fun outpace_V : V ;
-fun race_V : V ;
-fun brace_V : V ;
-fun embrace_V : V ;
-fun grace_V : V ;
-fun disgrace_V : V ;
-fun terrace_V : V ;
-fun trace_V : V ;
-fun retrace_V : V ;
-fun fleece_V : V ;
-fun piece_V : V ;
-fun ice_V : V ;
-fun 'de-ice_V' : V ;
-fun dice_V : V ;
-fun jaundice_V : V ;
-fun prejudice_V : V ;
-fun suffice_V : V ;
-fun sacrifice_V : V ;
-fun police_V : V ;
-fun splice_V : V ;
-fun slice_V : V ;
-fun rejoice_V : V ;
-fun voice_V : V ;
-fun invoice_V : V ;
-fun spice_V : V ;
-fun price_V : V ;
-fun overprice_V : V ;
-fun trice_V : V ;
-fun practice_V : V ;
-fun poultice_V : V ;
-fun entice_V : V ;
-fun apprentice_V : V ;
-fun notice_V : V ;
-fun mortice_V : V ;
-fun juice_V : V ;
-fun sluice_V : V ;
-fun service_V : V ;
-fun dance_V : V ;
-fun chance_V : V ;
-fun enhance_V : V ;
-fun affiance_V : V ;
-fun lance_V : V ;
-fun balance_V : V ;
-fun unbalance_V : V ;
-fun counterbalance_V : V ;
-fun overbalance_V : V ;
-fun outbalance_V : V ;
-fun freelance_V : V ;
-fun glance_V : V ;
-fun romance_V : V ;
-fun countenance_V : V ;
-fun discountenance_V : V ;
-fun finance_V : V ;
-fun refinance_V : V ;
-fun prance_V : V ;
-fun entrance_V : V ;
-fun distance_V : V ;
-fun outdistance_V : V ;
-fun instance_V : V ;
-fun advance_V : V ;
-fun licence_V : V ;
-fun evidence_V : V ;
-fun fence_V : V ;
-fun inconvenience_V : V ;
-fun experience_V : V ;
-fun silence_V : V ;
-fun commence_V : V ;
-fun reverence_V : V ;
-fun sentence_V : V ;
-fun influence_V : V ;
-fun mince_V : V ;
-fun evince_V : V ;
-fun convince_V : V ;
-fun wince_V : V ;
-fun ensconce_V : V ;
-fun bounce_V : V ;
-fun flounce_V : V ;
-fun denounce_V : V ;
-fun renounce_V : V ;
-fun announce_V : V ;
-fun pronounce_V : V ;
-fun mispronounce_V : V ;
-fun pounce_V : V ;
-fun trounce_V : V ;
-fun pierce_V : V ;
-fun coerce_V : V ;
-fun force_V : V ;
-fun enforce_V : V ;
-fun reinforce_V : V ;
-fun divorce_V : V ;
-fun acquiesce_V : V ;
-fun coalesce_V : V ;
-fun convalesce_V : V ;
-fun effervesce_V : V ;
-fun reminisce_V : V ;
-fun sauce_V : V ;
-fun traduce_V : V ;
-fun adduce_V : V ;
-fun educe_V : V ;
-fun deduce_V : V ;
-fun reduce_V : V ;
-fun seduce_V : V ;
-fun induce_V : V ;
-fun conduce_V : V ;
-fun produce_V : V ;
-fun 'mass-produce_V' : V ;
-fun reproduce_V : V ;
-fun overproduce_V : V ;
-fun introduce_V : V ;
-fun reintroduce_V : V ;
-fun spruce_V : V ;
-fun barricade_V : V ;
-fun brocade_V : V ;
-fun cascade_V : V ;
-fun ambuscade_V : V ;
-fun fade_V : V ;
-fun renegade_V : V ;
-fun shade_V : V ;
-fun blockade_V : V ;
-fun stockade_V : V ;
-fun pomade_V : V ;
-fun promenade_V : V ;
-fun serenade_V : V ;
-fun marinade_V : V ;
-fun spade_V : V ;
-fun parade_V : V ;
-fun abrade_V : V ;
-fun masquerade_V : V ;
-fun grade_V : V ;
-fun degrade_V : V ;
-fun downgrade_V : V ;
-fun retrograde_V : V ;
-fun upgrade_V : V ;
-fun trade_V : V ;
-fun 'out-trade_V' : V ;
-fun palisade_V : V ;
-fun glissade_V : V ;
-fun crusade_V : V ;
-fun persuade_V : V ;
-fun dissuade_V : V ;
-fun evade_V : V ;
-fun invade_V : V ;
-fun pervade_V : V ;
-fun wade_V : V ;
-fun cede_V : V ;
-fun accede_V : V ;
-fun recede_V : V ;
-fun precede_V : V ;
-fun secede_V : V ;
-fun concede_V : V ;
-fun supercede_V : V ;
-fun intercede_V : V ;
-fun stampede_V : V ;
-fun impede_V : V ;
-fun supersede_V : V ;
-fun bide_V : V ;
-fun abide_V : V ;
-fun decide_V : V ;
-fun coincide_V : V ;
-fun confide_V : V ;
-fun chide_V : V ;
-fun elide_V : V ;
-fun glide_V : V ;
-fun collide_V : V ;
-fun deride_V : V ;
-fun pride_V : V ;
-fun side_V : V ;
-fun subside_V : V ;
-fun reside_V : V ;
-fun preside_V : V ;
-fun tide_V : V ;
-fun betide_V : V ;
-fun guide_V : V ;
-fun misguide_V : V ;
-fun divide_V : V ;
-fun subdivide_V : V ;
-fun provide_V : V ;
-fun bode_V : V ;
-fun forebode_V : V ;
-fun code_V : V ;
-fun 'color-code_V' : V ;
-fun 'colour-code_V' : V ;
-fun decode_V : V ;
-fun encode_V : V ;
-fun explode_V : V ;
-fun incommode_V : V ;
-fun discommode_V : V ;
-fun erode_V : V ;
-fun corrode_V : V ;
-fun feude_V : V ;
-fun preclude_V : V ;
-fun seclude_V : V ;
-fun include_V : V ;
-fun conclude_V : V ;
-fun exclude_V : V ;
-fun elude_V : V ;
-fun delude_V : V ;
-fun prelude_V : V ;
-fun allude_V : V ;
-fun denude_V : V ;
-fun obtrude_V : V ;
-fun intrude_V : V ;
-fun protrude_V : V ;
-fun extrude_V : V ;
-fun coextrude_V : V ;
-fun exude_V : V ;
-fun slide_V : V ;
-fun backslide_V : V ;
-fun flee_V : V ;
-fun pee_V : V ;
-fun decree_V : V ;
-fun free_V : V ;
-fun agree_V : V ;
-fun disagree_V : V ;
-fun tee_2_V : V ;
-fun guarantee_V : V ;
-fun wee_V : V ;
-fun chafe_V : V ;
-fun strafe_V : V ;
-fun vouchsafe_V : V ;
-fun knife_V : V ;
-fun 'jack-knife_V' : V ;
-fun age_V : V ;
-fun cage_V : V ;
-fun bandage_V : V ;
-fun gage_V : V ;
-fun engage_V : V ;
-fun disengage_V : V ;
-fun mortgage_V : V ;
-fun hemorrhage_V : V ;
-fun package_V : V ;
-fun repackage_V : V ;
-fun camouflage_V : V ;
-fun pillage_V : V ;
-fun damage_V : V ;
-fun image_V : V ;
-fun scrimmage_V : V ;
-fun rummage_V : V ;
-fun manage_V : V ;
-fun 'co-manage_V' : V ;
-fun mismanage_V : V ;
-fun page_V : V ;
-fun rampage_V : V ;
-fun rage_V : V ;
-fun garage_V : V ;
-fun disparage_V : V ;
-fun average_V : V ;
-fun enrage_V : V ;
-fun forage_V : V ;
-fun outrage_V : V ;
-fun encourage_V : V ;
-fun discourage_V : V ;
-fun presage_V : V ;
-fun envisage_V : V ;
-fun massage_V : V ;
-fun advantage_V : V ;
-fun sabotage_V : V ;
-fun stage_V : V ;
-fun upstage_V : V ;
-fun assuage_V : V ;
-fun ravage_V : V ;
-fun savage_V : V ;
-fun salvage_V : V ;
-fun wage_V : V ;
-fun voyage_V : V ;
-fun cadge_V : V ;
-fun edge_V : V ;
-fun hedge_V : V ;
-fun pledge_V : V ;
-fun sledge_V : V ;
-fun acknowledge_V : V ;
-fun dredge_V : V ;
-fun wedge_V : V ;
-fun ridge_V : V ;
-fun bridge_V : V ;
-fun abridge_V : V ;
-fun dodge_V : V ;
-fun lodge_V : V ;
-fun dislodge_V : V ;
-fun budge_V : V ;
-fun fudge_V : V ;
-fun judge_V : V ;
-fun adjudge_V : V ;
-fun prejudge_V : V ;
-fun misjudge_V : V ;
-fun smudge_V : V ;
-fun nudge_V : V ;
-fun drudge_V : V ;
-fun grudge_V : V ;
-fun begrudge_V : V ;
-fun trudge_V : V ;
-fun besiege_V : V ;
-fun allege_V : V ;
-fun renege_V : V ;
-fun 'jury-rigge_V' : V ;
-fun oblige_V : V ;
-fun disoblige_V : V ;
-fun bulge_V : V ;
-fun indulge_V : V ;
-fun overindulge_V : V ;
-fun divulge_V : V ;
-fun change_V : V ;
-fun 'short-change_V' : V ;
-fun interchange_V : V ;
-fun exchange_V : V ;
-fun range_V : V ;
-fun derange_V : V ;
-fun arrange_V : V ;
-fun rearrange_V : V ;
-fun prearrange_V : V ;
-fun disarrange_V : V ;
-fun estrange_V : V ;
-fun outrange_V : V ;
-fun challenge_V : V ;
-fun avenge_V : V ;
-fun scavenge_V : V ;
-fun revenge_V : V ;
-fun hinge_V : V ;
-fun unhinge_V : V ;
-fun impinge_V : V ;
-fun cringe_V : V ;
-fun fringe_V : V ;
-fun infringe_V : V ;
-fun syringe_V : V ;
-fun tinge_V : V ;
-fun swinge_V : V ;
-fun sponge_V : V ;
-fun lunge_V : V ;
-fun plunge_V : V ;
-fun lounge_V : V ;
-fun scrounge_V : V ;
-fun expunge_V : V ;
-fun stooge_V : V ;
-fun barge_V : V ;
-fun charge_V : V ;
-fun undercharge_V : V ;
-fun overcharge_V : V ;
-fun surcharge_V : V ;
-fun discharge_V : V ;
-fun large_V : V ;
-fun enlarge_V : V ;
-fun merge_V : V ;
-fun submerge_V : V ;
-fun emerge_V : V ;
-fun 're-emerge_V' : V ;
-fun verge_V : V ;
-fun diverge_V : V ;
-fun converge_V : V ;
-fun forge_V : V ;
-fun gorge_V : V ;
-fun disgorge_V : V ;
-fun urge_V : V ;
-fun splurge_V : V ;
-fun scourge_V : V ;
-fun purge_V : V ;
-fun surge_V : V ;
-fun gauge_V : V ;
-fun deluge_V : V ;
-fun gouge_V : V ;
-fun rouge_V : V ;
-fun ache_V : V ;
-fun cache_V : V ;
-fun bellyache_V : V ;
-fun bathe_V : V ;
-fun sunbathe_V : V ;
-fun sheathe_V : V ;
-fun unsheathe_V : V ;
-fun breathe_V : V ;
-fun wreathe_V : V ;
-fun loathe_V : V ;
-fun swathe_V : V ;
-fun seethe_V : V ;
-fun teethe_V : V ;
-fun writhe_V : V ;
-fun clothe_V : V ;
-fun overclothe_V : V ;
-fun soothe_V : V ;
-fun scythe_V : V ;
-fun die_V : V ;
-fun lie_2_V : V ;
-fun tie_V : V ;
-fun bake_V : V ;
-fun cake_V : V ;
-fun fake_V : V ;
-fun flake_V : V ;
-fun slake_V : V ;
-fun snake_V : V ;
-fun rake_V : V ;
-fun brake_V : V ;
-fun take_1_V : V ;
-fun stake_V : V ;
-fun quake_V : V ;
-fun wake_V : V ;
-fun eke_V : V ;
-fun bike_V : V ;
-fun dike_V : V ;
-fun hike_V : V ;
-fun hitchhike_V : V ;
-fun like_V : V ;
-fun dislike_V : V ;
-fun spike_V : V ;
-fun strike_1_V : V ;
-fun coke_V : V ;
-fun decoke_V : V ;
-fun choke_V : V ;
-fun joke_V : V ;
-fun smoke_V : V ;
-fun poke_V : V ;
-fun stroke_V : V ;
-fun stoke_V : V ;
-fun evoke_V : V ;
-fun revoke_V : V ;
-fun invoke_V : V ;
-fun convoke_V : V ;
-fun provoke_V : V ;
-fun yoke_V : V ;
-fun marke_V : V ;
-fun burke_V : V ;
-fun rebuke_V : V ;
-fun puke_V : V ;
-fun dyke_V : V ;
-fun bale_V : V ;
-fun scale_V : V ;
-fun descale_V : V ;
-fun conceale_V : V ;
-fun regale_V : V ;
-fun inhale_V : V ;
-fun whale_V : V ;
-fun exhale_V : V ;
-fun signale_V : V ;
-fun pale_V : V ;
-fun empale_V : V ;
-fun impale_V : V ;
-fun wholesale_V : V ;
-fun stale_V : V ;
-fun cable_V : V ;
-fun enable_V : V ;
-fun disable_V : V ;
-fun table_V : V ;
-fun stable_V : V ;
-fun babble_V : V ;
-fun dabble_V : V ;
-fun gabble_V : V ;
-fun scrabble_V : V ;
-fun squabble_V : V ;
-fun dibble_V : V ;
-fun nibble_V : V ;
-fun scribble_V : V ;
-fun dribble_V : V ;
-fun quibble_V : V ;
-fun cobble_V : V ;
-fun gobble_V : V ;
-fun hobble_V : V ;
-fun nobble_V : V ;
-fun wobble_V : V ;
-fun bubble_V : V ;
-fun enfeeble_V : V ;
-fun treble_V : V ;
-fun amble_V : V ;
-fun gamble_V : V ;
-fun shamble_V : V ;
-fun ramble_V : V ;
-fun scramble_V : V ;
-fun unscramble_V : V ;
-fun tremble_V : V ;
-fun resemble_V : V ;
-fun assemble_V : V ;
-fun reassemble_V : V ;
-fun dissemble_V : V ;
-fun fumble_V : V ;
-fun humble_V : V ;
-fun jumble_V : V ;
-fun mumble_V : V ;
-fun rumble_V : V ;
-fun crumble_V : V ;
-fun grumble_V : V ;
-fun tumble_V : V ;
-fun stumble_V : V ;
-fun ennoble_V : V ;
-fun garble_V : V ;
-fun warble_V : V ;
-fun burble_V : V ;
-fun double_V : V ;
-fun redouble_V : V ;
-fun trouble_V : V ;
-fun manacle_V : V ;
-fun pinnacle_V : V ;
-fun chronicle_V : V ;
-fun article_V : V ;
-fun circle_V : V ;
-fun encircle_V : V ;
-fun muscle_V : V ;
-fun cycle_V : V ;
-fun recycle_V : V ;
-fun bicycle_V : V ;
-fun treadle_V : V ;
-fun ladle_V : V ;
-fun cradle_V : V ;
-fun addle_V : V ;
-fun skedaddle_V : V ;
-fun paddle_V : V ;
-fun straddle_V : V ;
-fun saddle_V : V ;
-fun unsaddle_V : V ;
-fun waddle_V : V ;
-fun swaddle_V : V ;
-fun twaddle_V : V ;
-fun meddle_V : V ;
-fun peddle_V : V ;
-fun diddle_V : V ;
-fun fiddle_V : V ;
-fun piddle_V : V ;
-fun riddle_V : V ;
-fun twiddle_V : V ;
-fun coddle_V : V ;
-fun mollycoddle_V : V ;
-fun toddle_V : V ;
-fun cuddle_V : V ;
-fun fuddle_V : V ;
-fun huddle_V : V ;
-fun muddle_V : V ;
-fun puddle_V : V ;
-fun ruddle_V : V ;
-fun wheedle_V : V ;
-fun needle_V : V ;
-fun idle_V : V ;
-fun bridle_V : V ;
-fun sidle_V : V ;
-fun dandle_V : V ;
-fun handle_V : V ;
-fun manhandle_V : V ;
-fun panhandle_V : V ;
-fun mishandle_V : V ;
-fun kindle_V : V ;
-fun rekindle_V : V ;
-fun enkindle_V : V ;
-fun dwindle_V : V ;
-fun swindle_V : V ;
-fun fondle_V : V ;
-fun bundle_V : V ;
-fun trundle_V : V ;
-fun doodle_V : V ;
-fun girdle_V : V ;
-fun curdle_V : V ;
-fun hurdle_V : V ;
-fun dawdle_V : V ;
-fun baffle_V : V ;
-fun snaffle_V : V ;
-fun raffle_V : V ;
-fun waffle_V : V ;
-fun sniffle_V : V ;
-fun piffle_V : V ;
-fun riffle_V : V ;
-fun scuffle_V : V ;
-fun shuffle_V : V ;
-fun reshuffle_V : V ;
-fun muffle_V : V ;
-fun snuffle_V : V ;
-fun ruffle_V : V ;
-fun rifle_V : V ;
-fun trifle_V : V ;
-fun stifle_V : V ;
-fun spreadeagle_V : V ;
-fun finagle_V : V ;
-fun haggle_V : V ;
-fun straggle_V : V ;
-fun waggle_V : V ;
-fun giggle_V : V ;
-fun jiggle_V : V ;
-fun niggle_V : V ;
-fun wriggle_V : V ;
-fun wiggle_V : V ;
-fun boggle_V : V ;
-fun goggle_V : V ;
-fun joggle_V : V ;
-fun juggle_V : V ;
-fun smuggle_V : V ;
-fun snuggle_V : V ;
-fun struggle_V : V ;
-fun inveigle_V : V ;
-fun angle_V : V ;
-fun dangle_V : V ;
-fun jangle_V : V ;
-fun mangle_V : V ;
-fun spangle_V : V ;
-fun strangle_V : V ;
-fun wrangle_V : V ;
-fun tangle_V : V ;
-fun entangle_V : V ;
-fun disentangle_V : V ;
-fun wangle_V : V ;
-fun shingle_V : V ;
-fun jingle_V : V ;
-fun mingle_V : V ;
-fun commingle_V : V ;
-fun intermingle_V : V ;
-fun single_V : V ;
-fun tingle_V : V ;
-fun bungle_V : V ;
-fun ogle_V : V ;
-fun gargle_V : V ;
-fun burgle_V : V ;
-fun gurgle_V : V ;
-fun reconcile_V : V ;
-fun file_V : V ;
-fun defile_V : V ;
-fun refile_V : V ;
-fun profile_V : V ;
-fun while_V : V ;
-fun smile_V : V ;
-fun pile_V : V ;
-fun stockpile_V : V ;
-fun compile_V : V ;
-fun rile_V : V ;
-fun imperile_V : V ;
-fun tile_V : V ;
-fun beguile_V : V ;
-fun revile_V : V ;
-fun exile_V : V ;
-fun cackle_V : V ;
-fun shackle_V : V ;
-fun crackle_V : V ;
-fun tackle_V : V ;
-fun heckle_V : V ;
-fun freckle_V : V ;
-fun pickle_V : V ;
-fun prickle_V : V ;
-fun trickle_V : V ;
-fun tickle_V : V ;
-fun buckle_V : V ;
-fun unbuckle_V : V ;
-fun chuckle_V : V ;
-fun knuckle_V : V ;
-fun truckle_V : V ;
-fun suckle_V : V ;
-fun rankle_V : V ;
-fun crinkle_V : V ;
-fun sprinkle_V : V ;
-fun wrinkle_V : V ;
-fun tinkle_V : V ;
-fun winkle_V : V ;
-fun twinkle_V : V ;
-fun sparkle_V : V ;
-fun dole_V : V ;
-fun condole_V : V ;
-fun hole_V : V ;
-fun pigeonhole_V : V ;
-fun buttonhole_V : V ;
-fun cajole_V : V ;
-fun parole_V : V ;
-fun sole_V : V ;
-fun resole_V : V ;
-fun console_V : V ;
-fun staple_V : V ;
-fun triple_V : V ;
-fun trample_V : V ;
-fun sample_V : V ;
-fun dimple_V : V ;
-fun rumple_V : V ;
-fun crumple_V : V ;
-fun people_V : V ;
-fun dapple_V : V ;
-fun grapple_V : V ;
-fun ripple_V : V ;
-fun cripple_V : V ;
-fun tipple_V : V ;
-fun stipple_V : V ;
-fun topple_V : V ;
-fun couple_V : V ;
-fun uncouple_V : V ;
-fun scruple_V : V ;
-fun quadruple_V : V ;
-fun hassle_V : V ;
-fun tussle_V : V ;
-fun tousle_V : V ;
-fun beetle_V : V ;
-fun entitle_V : V ;
-fun mantle_V : V ;
-fun dismantle_V : V ;
-fun footle_V : V ;
-fun pootle_V : V ;
-fun rootle_V : V ;
-fun tootle_V : V ;
-fun startle_V : V ;
-fun chortle_V : V ;
-fun hurtle_V : V ;
-fun castle_V : V ;
-fun nestle_V : V ;
-fun pestle_V : V ;
-fun wrestle_V : V ;
-fun whistle_V : V ;
-fun bristle_V : V ;
-fun jostle_V : V ;
-fun bustle_V : V ;
-fun hustle_V : V ;
-fun rustle_V : V ;
-fun battle_V : V ;
-fun rattle_V : V ;
-fun prattle_V : V ;
-fun tattle_V : V ;
-fun 'tittle-tattle_V' : V ;
-fun nettle_V : V ;
-fun settle_V : V ;
-fun resettle_V : V ;
-fun unsettle_V : V ;
-fun whittle_V : V ;
-fun skittle_V : V ;
-fun belittle_V : V ;
-fun bottle_V : V ;
-fun mottle_V : V ;
-fun throttle_V : V ;
-fun scuttle_V : V ;
-fun shuttle_V : V ;
-fun ridicule_V : V ;
-fun schedule_V : V ;
-fun reschedule_V : V ;
-fun mule_V : V ;
-fun pule_V : V ;
-fun rule_V : V ;
-fun overrule_V : V ;
-fun style_V : V ;
-fun cyclostyle_V : V ;
-fun bamboozle_V : V ;
-fun dazzle_V : V ;
-fun embezzle_V : V ;
-fun fizzle_V : V ;
-fun mizzle_V : V ;
-fun drizzle_V : V ;
-fun frizzle_V : V ;
-fun grizzle_V : V ;
-fun sizzle_V : V ;
-fun guzzle_V : V ;
-fun muzzle_V : V ;
-fun nuzzle_V : V ;
-fun puzzle_V : V ;
-fun fame_V : V ;
-fun defame_V : V ;
-fun game_V : V ;
-fun shame_V : V ;
-fun lame_V : V ;
-fun blame_V : V ;
-fun flame_V : V ;
-fun inflame_V : V ;
-fun name_V : V ;
-fun rename_V : V ;
-fun nickname_V : V ;
-fun misname_V : V ;
-fun frame_V : V ;
-fun tame_V : V ;
-fun scheme_V : V ;
-fun blaspheme_V : V ;
-fun chime_V : V ;
-fun lime_V : V ;
-fun mime_V : V ;
-fun rime_V : V ;
-fun crime_V : V ;
-fun grime_V : V ;
-fun prime_V : V ;
-fun time_V : V ;
-fun mistime_V : V ;
-fun calme_V : V ;
-fun programme_V : V ;
-fun come_2_V : V ;
-fun welcome_V : V ;
-fun overcome_2_V : V ;
-fun home_V : V ;
-fun fume_V : V ;
-fun perfume_V : V ;
-fun exhume_V : V ;
-fun illume_V : V ;
-fun plume_V : V ;
-fun subsume_V : V ;
-fun resume_V : V ;
-fun presume_V : V ;
-fun consume_V : V ;
-fun assume_V : V ;
-fun reassume_V : V ;
-fun rhyme_V : V ;
-fun cane_V : V ;
-fun profane_V : V ;
-fun plane_V : V ;
-fun aquaplane_V : V ;
-fun deplane_V : V ;
-fun emplane_V : V ;
-fun enplane_V : V ;
-fun crane_V : V ;
-fun wane_V : V ;
-fun damascene_V : V ;
-fun gangrene_V : V ;
-fun contravene_V : V ;
-fun convene_V : V ;
-fun supervene_V : V ;
-fun intervene_V : V ;
-fun combine_V : V ;
-fun calcine_V : V ;
-fun dine_V : V ;
-fun seine_V : V ;
-fun fine_V : V ;
-fun define_V : V ;
-fun redefine_V : V ;
-fun refine_V : V ;
-fun confine_V : V ;
-fun imagine_V : V ;
-fun machine_V : V ;
-fun trephine_V : V ;
-fun whine_V : V ;
-fun line_V : V ;
-fun decline_V : V ;
-fun recline_V : V ;
-fun incline_V : V ;
-fun disincline_V : V ;
-fun redline_V : V ;
-fun sideline_V : V ;
-fun reline_V : V ;
-fun streamline_V : V ;
-fun discipline_V : V ;
-fun underline_V : V ;
-fun outline_V : V ;
-fun mine_V : V ;
-fun examine_V : V ;
-fun 're-examine_V' : V ;
-fun 'cross-examine_V' : V ;
-fun reexamine_V : V ;
-fun undermine_V : V ;
-fun determine_V : V ;
-fun predetermine_V : V ;
-fun countermine_V : V ;
-fun illumine_V : V ;
-fun pine_V : V ;
-fun repine_V : V ;
-fun opine_V : V ;
-fun shrine_V : V ;
-fun enshrine_V : V ;
-fun quarantine_V : V ;
-fun guillotine_V : V ;
-fun destine_V : V ;
-fun predestine_V : V ;
-fun divine_V : V ;
-fun wine_V : V ;
-fun twine_V : V ;
-fun entwine_V : V ;
-fun intertwine_V : V ;
-fun 'over-magazine_V' : V ;
-fun bone_V : V ;
-fun cone_V : V ;
-fun condone_V : V ;
-fun hone_V : V ;
-fun phone_V : V ;
-fun telephone_V : V ;
-fun siphone_V : V ;
-fun clone_V : V ;
-fun postpone_V : V ;
-fun drone_V : V ;
-fun dethrone_V : V ;
-fun enthrone_V : V ;
-fun tone_V : V ;
-fun atone_V : V ;
-fun intone_V : V ;
-fun stone_V : V ;
-fun holystone_V : V ;
-fun zone_V : V ;
-fun commune_V : V ;
-fun prune_V : V ;
-fun tune_V : V ;
-fun importune_V : V ;
-fun attune_V : V ;
-fun shoe_2_V : V ;
-fun canoe_V : V ;
-fun shoe_1_V : V ;
-fun ape_V : V ;
-fun landscape_V : V ;
-fun escape_V : V ;
-fun gape_V : V ;
-fun shape_V : V ;
-fun reshape_V : V ;
-fun rape_V : V ;
-fun scrape_V : V ;
-fun drape_V : V ;
-fun tape_V : V ;
-fun videotape_V : V ;
-fun snipe_V : V ;
-fun pipe_V : V ;
-fun wipe_V : V ;
-fun swipe_V : V ;
-fun cope_V : V ;
-fun telescope_V : V ;
-fun dope_V : V ;
-fun hope_V : V ;
-fun lope_V : V ;
-fun elope_V : V ;
-fun slope_V : V ;
-fun mope_V : V ;
-fun rope_V : V ;
-fun grope_V : V ;
-fun tope_V : V ;
-fun dupe_V : V ;
-fun hype_V : V ;
-fun type_V : V ;
-fun 'touch-type_V' : V ;
-fun stereotype_V : V ;
-fun bare_V : V ;
-fun care_V : V ;
-fun scare_V : V ;
-fun dare_V : V ;
-fun fare_V : V ;
-fun hare_V : V ;
-fun share_V : V ;
-fun blare_V : V ;
-fun declare_V : V ;
-fun flare_V : V ;
-fun glare_V : V ;
-fun snare_V : V ;
-fun ensnare_V : V ;
-fun pare_V : V ;
-fun prepare_V : V ;
-fun compare_V : V ;
-fun spare_V : V ;
-fun stare_V : V ;
-fun square_V : V ;
-fun ware_V : V ;
-fun sabre_V : V ;
-fun massacre_V : V ;
-fun interfere_V : V ;
-fun adhere_V : V ;
-fun cohere_V : V ;
-fun premiere_V : V ;
-fun revere_V : V ;
-fun persevere_V : V ;
-fun fire_V : V ;
-fun backfire_V : V ;
-fun misfire_V : V ;
-fun hire_V : V ;
-fun mire_V : V ;
-fun admire_V : V ;
-fun umpire_V : V ;
-fun aspire_V : V ;
-fun respire_V : V ;
-fun transpire_V : V ;
-fun inspire_V : V ;
-fun conspire_V : V ;
-fun perspire_V : V ;
-fun expire_V : V ;
-fun sire_V : V ;
-fun desire_V : V ;
-fun tire_V : V ;
-fun retire_V : V ;
-fun attire_V : V ;
-fun acquire_V : V ;
-fun require_V : V ;
-fun enquire_V : V ;
-fun inquire_V : V ;
-fun squire_V : V ;
-fun wire_V : V ;
-fun rewire_V : V ;
-fun bore_V : V ;
-fun core_V : V ;
-fun encore_V : V ;
-fun score_V : V ;
-fun underscore_V : V ;
-fun adore_V : V ;
-fun gore_V : V ;
-fun semaphore_V : V ;
-fun shore_V : V ;
-fun authore_V : V ;
-fun deplore_V : V ;
-fun implore_V : V ;
-fun explore_V : V ;
-fun ignore_V : V ;
-fun snore_V : V ;
-fun pore_V : V ;
-fun tore_V : V ;
-fun store_V : V ;
-fun restore_V : V ;
-fun savore_V : V ;
-fun swore_V : V ;
-fun reconnoitre_V : V ;
-fun centre_V : V ;
-fun cure_V : V ;
-fun secure_V : V ;
-fun manicure_V : V ;
-fun procure_V : V ;
-fun obscure_V : V ;
-fun endure_V : V ;
-fun figure_V : V ;
-fun prefigure_V : V ;
-fun configure_V : V ;
-fun disfigure_V : V ;
-fun transfigure_V : V ;
-fun abjure_V : V ;
-fun adjure_V : V ;
-fun injure_V : V ;
-fun conjure_V : V ;
-fun perjure_V : V ;
-fun lure_V : V ;
-fun allure_V : V ;
-fun immure_V : V ;
-fun manure_V : V ;
-fun inure_V : V ;
-fun measure_V : V ;
-fun treasure_V : V ;
-fun ensure_V : V ;
-fun censure_V : V ;
-fun insure_V : V ;
-fun 'self-insure_V' : V ;
-fun reinsure_V : V ;
-fun tonsure_V : V ;
-fun assure_V : V ;
-fun reassure_V : V ;
-fun pressure_V : V ;
-fun caricature_V : V ;
-fun feature_V : V ;
-fun mature_V : V ;
-fun manufacture_V : V ;
-fun fracture_V : V ;
-fun conjecture_V : V ;
-fun lecture_V : V ;
-fun picture_V : V ;
-fun tincture_V : V ;
-fun puncture_V : V ;
-fun structure_V : V ;
-fun restructure_V : V ;
-fun indenture_V : V ;
-fun venture_V : V ;
-fun adventure_V : V ;
-fun capture_V : V ;
-fun recapture_V : V ;
-fun enrapture_V : V ;
-fun sculpture_V : V ;
-fun rupture_V : V ;
-fun torture_V : V ;
-fun nurture_V : V ;
-fun pasture_V : V ;
-fun gesture_V : V ;
-fun vesture_V : V ;
-fun posture_V : V ;
-fun manoeuvre_V : V ;
-fun outmanoeuvre_V : V ;
-fun compère_V : V ;
-fun base_V : V ;
-fun abase_V : V ;
-fun debase_V : V ;
-fun case_V : V ;
-fun encase_V : V ;
-fun ease_V : V ;
-fun cease_V : V ;
-fun decease_V : V ;
-fun predecease_V : V ;
-fun lease_V : V ;
-fun sublease_V : V ;
-fun release_V : V ;
-fun please_V : V ;
-fun displease_V : V ;
-fun appease_V : V ;
-fun crease_V : V ;
-fun decrease_V : V ;
-fun increase_V : V ;
-fun grease_V : V ;
-fun tease_V : V ;
-fun chase_V : V ;
-fun purchase_V : V ;
-fun repurchase_V : V ;
-fun phase_V : V ;
-fun rase_V : V ;
-fun erase_V : V ;
-fun phrase_V : V ;
-fun paraphrase_V : V ;
-fun liaise_V : V ;
-fun raise_V : V ;
-fun braise_V : V ;
-fun praise_V : V ;
-fun appraise_V : V ;
-fun reappraise_V : V ;
-fun overpraise_V : V ;
-fun circumcise_V : V ;
-fun incise_V : V ;
-fun exercise_V : V ;
-fun exorcise_V : V ;
-fun excise_V : V ;
-fun affranchise_V : V ;
-fun enfranchise_V : V ;
-fun disenfranchise_V : V ;
-fun disfranchise_V : V ;
-fun premise_V : V ;
-fun promise_V : V ;
-fun compromise_V : V ;
-fun surmise_V : V ;
-fun organise_V : V ;
-fun noise_V : V ;
-fun poise_V : V ;
-fun counterpoise_V : V ;
-fun despise_V : V ;
-fun prise_V : V ;
-fun comprise_V : V ;
-fun apprise_V : V ;
-fun surprise_V : V ;
-fun practise_V : V ;
-fun advertise_V : V ;
-fun mortise_V : V ;
-fun chastise_V : V ;
-fun disguise_V : V ;
-fun bruise_V : V ;
-fun cruise_V : V ;
-fun advise_V : V ;
-fun misadvise_V : V ;
-fun devise_V : V ;
-fun televise_V : V ;
-fun revise_V : V ;
-fun improvise_V : V ;
-fun supervise_V : V ;
-fun wise_V : V ;
-fun pulse_V : V ;
-fun repulse_V : V ;
-fun convulse_V : V ;
-fun cleanse_V : V ;
-fun license_V : V ;
-fun incense_V : V ;
-fun condense_V : V ;
-fun recompense_V : V ;
-fun dispense_V : V ;
-fun sense_V : V ;
-fun tense_V : V ;
-fun rinse_V : V ;
-fun dose_V : V ;
-fun overdose_V : V ;
-fun hose_V : V ;
-fun metamorphose_V : V ;
-fun lose_1_V : V ;
-fun close_V : V ;
-fun foreclose_V : V ;
-fun enclose_V : V ;
-fun inclose_V : V ;
-fun disclose_V : V ;
-fun nose_V : V ;
-fun diagnose_V : V ;
-fun loose_V : V ;
-fun unloose_V : V ;
-fun vamoose_V : V ;
-fun noose_V : V ;
-fun pose_V : V ;
-fun juxtapose_V : V ;
-fun depose_V : V ;
-fun repose_V : V ;
-fun impose_V : V ;
-fun reimpose_V : V ;
-fun superimpose_V : V ;
-fun compose_V : V ;
-fun decompose_V : V ;
-fun discompose_V : V ;
-fun propose_V : V ;
-fun oppose_V : V ;
-fun suppose_V : V ;
-fun presuppose_V : V ;
-fun interpose_V : V ;
-fun purpose_V : V ;
-fun dispose_V : V ;
-fun predispose_V : V ;
-fun transpose_V : V ;
-fun expose_V : V ;
-fun underexpose_V : V ;
-fun overexpose_V : V ;
-fun rose_V : V ;
-fun arose_V : V ;
-fun lapse_V : V ;
-fun elapse_V : V ;
-fun relapse_V : V ;
-fun collapse_V : V ;
-fun prolapse_V : V ;
-fun traipse_V : V ;
-fun eclipse_V : V ;
-fun glimpse_V : V ;
-fun rehearse_V : V ;
-fun parse_V : V ;
-fun immerse_V : V ;
-fun asperse_V : V ;
-fun disperse_V : V ;
-fun intersperse_V : V ;
-fun traverse_V : V ;
-fun reverse_V : V ;
-fun converse_V : V ;
-fun endorse_V : V ;
-fun indorse_V : V ;
-fun horse_V : V ;
-fun unhorse_V : V ;
-fun reimburse_V : V ;
-fun disburse_V : V ;
-fun curse_V : V ;
-fun nurse_V : V ;
-fun course_V : V ;
-fun discourse_V : V ;
-fun purse_V : V ;
-fun finesse_V : V ;
-fun use_V : V ;
-fun 'ill-use_V' : V ;
-fun cause_V : V ;
-fun pause_V : V ;
-fun abuse_V : V ;
-fun disabuse_V : V ;
-fun accuse_V : V ;
-fun excuse_V : V ;
-fun fuse_V : V ;
-fun defuse_V : V ;
-fun refuse_V : V ;
-fun diffuse_V : V ;
-fun suffuse_V : V ;
-fun infuse_V : V ;
-fun confuse_V : V ;
-fun transfuse_V : V ;
-fun enthuse_V : V ;
-fun muse_V : V ;
-fun amuse_V : V ;
-fun douse_V : V ;
-fun house_V : V ;
-fun 'rough-house_V' : V ;
-fun rehouse_V : V ;
-fun delouse_V : V ;
-fun mouse_V : V ;
-fun espouse_V : V ;
-fun rouse_V : V ;
-fun arouse_V : V ;
-fun carouse_V : V ;
-fun grouse_V : V ;
-fun souse_V : V ;
-fun rendezvouse_V : V ;
-fun peruse_V : V ;
-fun misuse_V : V ;
-fun contuse_V : V ;
-fun dowse_V : V ;
-fun browse_V : V ;
-fun drowse_V : V ;
-fun analyse_V : V ;
-fun psychoanalyse_V : V ;
-fun paralyse_V : V ;
-fun bate_V : V ;
-fun abate_V : V ;
-fun debate_V : V ;
-fun probate_V : V ;
-fun reprobate_V : V ;
-fun exacerbate_V : V ;
-fun masturbate_V : V ;
-fun incubate_V : V ;
-fun placate_V : V ;
-fun vacate_V : V ;
-fun desiccate_V : V ;
-fun defecate_V : V ;
-fun hypothecate_V : V ;
-fun deprecate_V : V ;
-fun imprecate_V : V ;
-fun syllabicate_V : V ;
-fun eradicate_V : V ;
-fun abdicate_V : V ;
-fun dedicate_V : V ;
-fun medicate_V : V ;
-fun predicate_V : V ;
-fun indicate_V : V ;
-fun vindicate_V : V ;
-fun syndicate_V : V ;
-fun adjudicate_V : V ;
-fun pontificate_V : V ;
-fun certificate_V : V ;
-fun replicate_V : V ;
-fun triplicate_V : V ;
-fun implicate_V : V ;
-fun complicate_V : V ;
-fun supplicate_V : V ;
-fun duplicate_V : V ;
-fun reduplicate_V : V ;
-fun quadruplicate_V : V ;
-fun explicate_V : V ;
-fun fornicate_V : V ;
-fun communicate_V : V ;
-fun intercommunicate_V : V ;
-fun excommunicate_V : V ;
-fun prevaricate_V : V ;
-fun fabricate_V : V ;
-fun prefabricate_V : V ;
-fun lubricate_V : V ;
-fun extricate_V : V ;
-fun authenticate_V : V ;
-fun masticate_V : V ;
-fun domesticate_V : V ;
-fun prognosticate_V : V ;
-fun rusticate_V : V ;
-fun intoxicate_V : V ;
-fun inculcate_V : V ;
-fun truncate_V : V ;
-fun suffocate_V : V ;
-fun locate_V : V ;
-fun relocate_V : V ;
-fun allocate_V : V ;
-fun collocate_V : V ;
-fun dislocate_V : V ;
-fun reciprocate_V : V ;
-fun advocate_V : V ;
-fun demarcate_V : V ;
-fun bifurcate_V : V ;
-fun confiscate_V : V ;
-fun obfuscate_V : V ;
-fun coruscate_V : V ;
-fun educate_V : V ;
-fun date_V : V ;
-fun predate_V : V ;
-fun sedate_V : V ;
-fun antedate_V : V ;
-fun elucidate_V : V ;
-fun validate_V : V ;
-fun invalidate_V : V ;
-fun consolidate_V : V ;
-fun intimidate_V : V ;
-fun fluoridate_V : V ;
-fun liquidate_V : V ;
-fun backdate_V : V ;
-fun mandate_V : V ;
-fun inundate_V : V ;
-fun accommodate_V : V ;
-fun update_V : V ;
-fun misdate_V : V ;
-fun postdate_V : V ;
-fun permeate_V : V ;
-fun delineate_V : V ;
-fun create_V : V ;
-fun 're-create_V' : V ;
-fun recreate_V : V ;
-fun procreate_V : V ;
-fun nauseate_V : V ;
-fun fate_V : V ;
-fun gate_V : V ;
-fun propagate_V : V ;
-fun divagate_V : V ;
-fun delegate_V : V ;
-fun relegate_V : V ;
-fun negate_V : V ;
-fun segregate_V : V ;
-fun desegregate_V : V ;
-fun aggregate_V : V ;
-fun congregate_V : V ;
-fun obligate_V : V ;
-fun fumigate_V : V ;
-fun irrigate_V : V ;
-fun litigate_V : V ;
-fun mitigate_V : V ;
-fun castigate_V : V ;
-fun investigate_V : V ;
-fun instigate_V : V ;
-fun navigate_V : V ;
-fun circumnavigate_V : V ;
-fun promulgate_V : V ;
-fun elongate_V : V ;
-fun abrogate_V : V ;
-fun derogate_V : V ;
-fun arrogate_V : V ;
-fun interrogate_V : V ;
-fun objurgate_V : V ;
-fun expurgate_V : V ;
-fun subjugate_V : V ;
-fun conjugate_V : V ;
-fun corrugate_V : V ;
-fun hate_V : V ;
-fun emaciate_V : V ;
-fun syndciate_V : V ;
-fun depreciate_V : V ;
-fun appreciate_V : V ;
-fun officiate_V : V ;
-fun enunciate_V : V ;
-fun annunciate_V : V ;
-fun associate_V : V ;
-fun disassociate_V : V ;
-fun dissociate_V : V ;
-fun radiate_V : V ;
-fun irradiate_V : V ;
-fun mediate_V : V ;
-fun repudiate_V : V ;
-fun retaliate_V : V ;
-fun conciliate_V : V ;
-fun affiliate_V : V ;
-fun humiliate_V : V ;
-fun palliate_V : V ;
-fun defoliate_V : V ;
-fun calumniate_V : V ;
-fun expiate_V : V ;
-fun inebriate_V : V ;
-fun excoriate_V : V ;
-fun appropriate_V : V ;
-fun misappropriate_V : V ;
-fun expropriate_V : V ;
-fun repatriate_V : V ;
-fun expatriate_V : V ;
-fun infuriate_V : V ;
-fun luxuriate_V : V ;
-fun expatiate_V : V ;
-fun ingratiate_V : V ;
-fun satiate_V : V ;
-fun initiate_V : V ;
-fun propitiate_V : V ;
-fun vitiate_V : V ;
-fun substantiate_V : V ;
-fun differentiate_V : V ;
-fun negotiate_V : V ;
-fun renegotiate_V : V ;
-fun obviate_V : V ;
-fun deviate_V : V ;
-fun alleviate_V : V ;
-fun abbreviate_V : V ;
-fun asphyxiate_V : V ;
-fun skate_V : V ;
-fun 'ice-skate_V' : V ;
-fun escalate_V : V ;
-fun 'de-escalate_V' : V ;
-fun elate_V : V ;
-fun relate_V : V ;
-fun interrelate_V : V ;
-fun correlate_V : V ;
-fun deflate_V : V ;
-fun reflate_V : V ;
-fun inflate_V : V ;
-fun dilate_V : V ;
-fun invigilate_V : V ;
-fun annihilate_V : V ;
-fun assimilate_V : V ;
-fun ventilate_V : V ;
-fun mutilate_V : V ;
-fun flagellate_V : V ;
-fun interpellate_V : V ;
-fun vacillate_V : V ;
-fun oscillate_V : V ;
-fun titillate_V : V ;
-fun scintillate_V : V ;
-fun collate_V : V ;
-fun percolate_V : V ;
-fun violate_V : V ;
-fun immolate_V : V ;
-fun interpolate_V : V ;
-fun desolate_V : V ;
-fun isolate_V : V ;
-fun plate_V : V ;
-fun contemplate_V : V ;
-fun electroplate_V : V ;
-fun slate_V : V ;
-fun legislate_V : V ;
-fun translate_V : V ;
-fun mistranslate_V : V ;
-fun confabulate_V : V ;
-fun tabulate_V : V ;
-fun perambulate_V : V ;
-fun ejaculate_V : V ;
-fun peculate_V : V ;
-fun speculate_V : V ;
-fun matriculate_V : V ;
-fun reticulate_V : V ;
-fun articulate_V : V ;
-fun gesticulate_V : V ;
-fun calculate_V : V ;
-fun recalculate_V : V ;
-fun miscalculate_V : V ;
-fun inoculate_V : V ;
-fun circulate_V : V ;
-fun emasculate_V : V ;
-fun stridulate_V : V ;
-fun undulate_V : V ;
-fun modulate_V : V ;
-fun coagulate_V : V ;
-fun regulate_V : V ;
-fun deregulate_V : V ;
-fun pullulate_V : V ;
-fun ululate_V : V ;
-fun emulate_V : V ;
-fun simulate_V : V ;
-fun dissimulate_V : V ;
-fun stimulate_V : V ;
-fun formulate_V : V ;
-fun reformulate_V : V ;
-fun accumulate_V : V ;
-fun granulate_V : V ;
-fun manipulate_V : V ;
-fun stipulate_V : V ;
-fun copulate_V : V ;
-fun populate_V : V ;
-fun depopulate_V : V ;
-fun insulate_V : V ;
-fun congratulate_V : V ;
-fun capitulate_V : V ;
-fun recapitulate_V : V ;
-fun postulate_V : V ;
-fun expostulate_V : V ;
-fun mate_V : V ;
-fun amalgamate_V : V ;
-fun stalemate_V : V ;
-fun cremate_V : V ;
-fun decimate_V : V ;
-fun sublimate_V : V ;
-fun acclimate_V : V ;
-fun animate_V : V ;
-fun reanimate_V : V ;
-fun intimate_V : V ;
-fun estimate_V : V ;
-fun underestimate_V : V ;
-fun overestimate_V : V ;
-fun approximate_V : V ;
-fun checkmate_V : V ;
-fun consummate_V : V ;
-fun automate_V : V ;
-fun emanate_V : V ;
-fun oxygenate_V : V ;
-fun hyphenate_V : V ;
-fun alienate_V : V ;
-fun rejuvenate_V : V ;
-fun stagnate_V : V ;
-fun impregnate_V : V ;
-fun designate_V : V ;
-fun vaccinate_V : V ;
-fun fascinate_V : V ;
-fun subordinate_V : V ;
-fun coordinate_V : V ;
-fun originate_V : V ;
-fun desalinate_V : V ;
-fun pollinate_V : V ;
-fun laminate_V : V ;
-fun contaminate_V : V ;
-fun decontaminate_V : V ;
-fun inseminate_V : V ;
-fun disseminate_V : V ;
-fun eliminate_V : V ;
-fun recriminate_V : V ;
-fun incriminate_V : V ;
-fun discriminate_V : V ;
-fun culminate_V : V ;
-fun fulminate_V : V ;
-fun abominate_V : V ;
-fun dominate_V : V ;
-fun predominate_V : V ;
-fun nominate_V : V ;
-fun denominate_V : V ;
-fun germinate_V : V ;
-fun terminate_V : V ;
-fun exterminate_V : V ;
-fun illuminate_V : V ;
-fun ruminate_V : V ;
-fun marinate_V : V ;
-fun chlorinate_V : V ;
-fun indoctrinate_V : V ;
-fun urinate_V : V ;
-fun assassinate_V : V ;
-fun procrastinate_V : V ;
-fun predestinate_V : V ;
-fun agglutinate_V : V ;
-fun donate_V : V ;
-fun resonate_V : V ;
-fun personate_V : V ;
-fun impersonate_V : V ;
-fun detonate_V : V ;
-fun incarnate_V : V ;
-fun reincarnate_V : V ;
-fun hibernate_V : V ;
-fun alternate_V : V ;
-fun anticipate_V : V ;
-fun participate_V : V ;
-fun emancipate_V : V ;
-fun dissipate_V : V ;
-fun constipate_V : V ;
-fun inculpate_V : V ;
-fun exculpate_V : V ;
-fun syncopate_V : V ;
-fun extirpate_V : V ;
-fun rate_V : V ;
-fun exhilarate_V : V ;
-fun separate_V : V ;
-fun celebrate_V : V ;
-fun calibrate_V : V ;
-fun vibrate_V : V ;
-fun adumbrate_V : V ;
-fun crate_V : V ;
-fun desecrate_V : V ;
-fun consecrate_V : V ;
-fun reconsecrate_V : V ;
-fun execrate_V : V ;
-fun hydrate_V : V ;
-fun dehydrate_V : V ;
-fun aerate_V : V ;
-fun berate_V : V ;
-fun liberate_V : V ;
-fun deliberate_V : V ;
-fun reverberate_V : V ;
-fun lacerate_V : V ;
-fun macerate_V : V ;
-fun ulcerate_V : V ;
-fun incarcerate_V : V ;
-fun eviscerate_V : V ;
-fun derate_V : V ;
-fun federate_V : V ;
-fun confederate_V : V ;
-fun preponderate_V : V ;
-fun moderate_V : V ;
-fun vociferate_V : V ;
-fun proliferate_V : V ;
-fun exaggerate_V : V ;
-fun refrigerate_V : V ;
-fun accelerate_V : V ;
-fun decelerate_V : V ;
-fun tolerate_V : V ;
-fun agglomerate_V : V ;
-fun conglomerate_V : V ;
-fun enumerate_V : V ;
-fun ennumerate_V : V ;
-fun generate_V : V ;
-fun degenerate_V : V ;
-fun regenerate_V : V ;
-fun venerate_V : V ;
-fun incinerate_V : V ;
-fun exonerate_V : V ;
-fun remunerate_V : V ;
-fun operate_V : V ;
-fun cooperate_V : V ;
-fun exasperate_V : V ;
-fun recuperate_V : V ;
-fun vituperate_V : V ;
-fun commiserate_V : V ;
-fun iterate_V : V ;
-fun reiterate_V : V ;
-fun obliterate_V : V ;
-fun transliterate_V : V ;
-fun adulterate_V : V ;
-fun asseverate_V : V ;
-fun grate_V : V ;
-fun integrate_V : V ;
-fun reintegrate_V : V ;
-fun disintegrate_V : V ;
-fun migrate_V : V ;
-fun emigrate_V : V ;
-fun immigrate_V : V ;
-fun denigrate_V : V ;
-fun pirate_V : V ;
-fun aspirate_V : V ;
-fun orate_V : V ;
-fun elaborate_V : V ;
-fun collaborate_V : V ;
-fun corroborate_V : V ;
-fun decorate_V : V ;
-fun redecorate_V : V ;
-fun perforate_V : V ;
-fun invigorate_V : V ;
-fun reinvigorate_V : V ;
-fun meliorate_V : V ;
-fun ameliorate_V : V ;
-fun deteriorate_V : V ;
-fun commemorate_V : V ;
-fun evaporate_V : V ;
-fun incorporate_V : V ;
-fun expectorate_V : V ;
-fun prate_V : V ;
-fun narrate_V : V ;
-fun underrate_V : V ;
-fun overrate_V : V ;
-fun penetrate_V : V ;
-fun perpetrate_V : V ;
-fun arbitrate_V : V ;
-fun filtrate_V : V ;
-fun infiltrate_V : V ;
-fun concentrate_V : V ;
-fun castrate_V : V ;
-fun orchestrate_V : V ;
-fun sequestrate_V : V ;
-fun demonstrate_V : V ;
-fun remonstrate_V : V ;
-fun prostrate_V : V ;
-fun illustrate_V : V ;
-fun frustrate_V : V ;
-fun inaugurate_V : V ;
-fun suppurate_V : V ;
-fun maturate_V : V ;
-fun saturate_V : V ;
-fun gyrate_V : V ;
-fun sate_V : V ;
-fun pulsate_V : V ;
-fun compensate_V : V ;
-fun tergiversate_V : V ;
-fun dictate_V : V ;
-fun vegetate_V : V ;
-fun incapacitate_V : V ;
-fun felicitate_V : V ;
-fun resuscitate_V : V ;
-fun meditate_V : V ;
-fun premeditate_V : V ;
-fun agitate_V : V ;
-fun cogitate_V : V ;
-fun excogitate_V : V ;
-fun regurgitate_V : V ;
-fun rehabilitate_V : V ;
-fun debilitate_V : V ;
-fun facilitate_V : V ;
-fun militate_V : V ;
-fun imitate_V : V ;
-fun delimitate_V : V ;
-fun decapitate_V : V ;
-fun crepitate_V : V ;
-fun precipitate_V : V ;
-fun palpitate_V : V ;
-fun irritate_V : V ;
-fun hesitate_V : V ;
-fun necessitate_V : V ;
-fun gravitate_V : V ;
-fun levitate_V : V ;
-fun orientate_V : V ;
-fun reorientate_V : V ;
-fun disorientate_V : V ;
-fun commentate_V : V ;
-fun annotate_V : V ;
-fun rotate_V : V ;
-fun state_V : V ;
-fun devastate_V : V ;
-fun restate_V : V ;
-fun reinstate_V : V ;
-fun understate_V : V ;
-fun overstate_V : V ;
-fun misstate_V : V ;
-fun amputate_V : V ;
-fun evacuate_V : V ;
-fun graduate_V : V ;
-fun evaluate_V : V ;
-fun 're-evaluate_V' : V ;
-fun devaluate_V : V ;
-fun attenuate_V : V ;
-fun extenuate_V : V ;
-fun insinuate_V : V ;
-fun superannuate_V : V ;
-fun equate_V : V ;
-fun menstruate_V : V ;
-fun infatuate_V : V ;
-fun actuate_V : V ;
-fun punctuate_V : V ;
-fun fluctuate_V : V ;
-fun perpetuate_V : V ;
-fun habituate_V : V ;
-fun situate_V : V ;
-fun accentuate_V : V ;
-fun excavate_V : V ;
-fun aggravate_V : V ;
-fun elevate_V : V ;
-fun salivate_V : V ;
-fun activate_V : V ;
-fun deactivate_V : V ;
-fun reactivate_V : V ;
-fun inactivate_V : V ;
-fun titivate_V : V ;
-fun cultivate_V : V ;
-fun motivate_V : V ;
-fun captivate_V : V ;
-fun tittivate_V : V ;
-fun renovate_V : V ;
-fun innovate_V : V ;
-fun enervate_V : V ;
-fun fixate_V : V ;
-fun delete_V : V ;
-fun deplete_V : V ;
-fun complete_V : V ;
-fun mete_V : V ;
-fun compete_V : V ;
-fun secrete_V : V ;
-fun concrete_V : V ;
-fun excrete_V : V ;
-fun cite_V : V ;
-fun recite_V : V ;
-fun incite_V : V ;
-fun excite_V : V ;
-fun extradite_V : V ;
-fun expedite_V : V ;
-fun indite_V : V ;
-fun white_V : V ;
-fun dynamite_V : V ;
-fun ignite_V : V ;
-fun reignite_V : V ;
-fun unite_V : V ;
-fun reunite_V : V ;
-fun disunite_V : V ;
-fun spite_V : V ;
-fun respite_V : V ;
-fun underwrite_1_V : V ;
-fun 'sub-underwrite_V' : V ;
-fun site_V : V ;
-fun requite_V : V ;
-fun invite_V : V ;
-fun dote_V : V ;
-fun demote_V : V ;
-fun promote_V : V ;
-fun note_V : V ;
-fun denote_V : V ;
-fun connote_V : V ;
-fun tote_V : V ;
-fun quote_V : V ;
-fun underquote_V : V ;
-fun misquote_V : V ;
-fun vote_V : V ;
-fun devote_V : V ;
-fun outvote_V : V ;
-fun baste_V : V ;
-fun lambaste_V : V ;
-fun paste_V : V ;
-fun taste_V : V ;
-fun waste_V : V ;
-fun riposte_V : V ;
-fun silhouette_V : V ;
-fun pirouette_V : V ;
-fun gazette_V : V ;
-fun garotte_V : V ;
-fun garrotte_V : V ;
-fun contribute_V : V ;
-fun distribute_V : V ;
-fun redistribute_V : V ;
-fun attribute_V : V ;
-fun reattribute_V : V ;
-fun prosecute_V : V ;
-fun persecute_V : V ;
-fun execute_V : V ;
-fun electrocute_V : V ;
-fun refute_V : V ;
-fun confute_V : V ;
-fun parachute_V : V ;
-fun salute_V : V ;
-fun flute_V : V ;
-fun dilute_V : V ;
-fun pollute_V : V ;
-fun mute_V : V ;
-fun commute_V : V ;
-fun permute_V : V ;
-fun transmute_V : V ;
-fun minute_V : V ;
-fun route_V : V ;
-fun reroute_V : V ;
-fun depute_V : V ;
-fun repute_V : V ;
-fun impute_V : V ;
-fun compute_V : V ;
-fun dispute_V : V ;
-fun substitute_V : V ;
-fun institute_V : V ;
-fun reinstitute_V : V ;
-fun constitute_V : V ;
-fun prostitute_V : V ;
-fun fête_V : V ;
-fun imbue_V : V ;
-fun barbecue_V : V ;
-fun rescue_V : V ;
-fun subdue_V : V ;
-fun endue_V : V ;
-fun indue_V : V ;
-fun queue_V : V ;
-fun league_V : V ;
-fun plague_V : V ;
-fun renegue_V : V ;
-fun intrigue_V : V ;
-fun fatigue_V : V ;
-fun harangue_V : V ;
-fun catalogue_V : V ;
-fun prorogue_V : V ;
-fun argue_V : V ;
-fun value_V : V ;
-fun devalue_V : V ;
-fun revalue_V : V ;
-fun undervalue_V : V ;
-fun overvalue_V : V ;
-fun blue_V : V ;
-fun glue_2_V : V ;
-fun continue_V : V ;
-fun discontinue_V : V ;
-fun spue_V : V ;
-fun pique_V : V ;
-fun burlesque_V : V ;
-fun rue_V : V ;
-fun accrue_V : V ;
-fun true_V : V ;
-fun construe_V : V ;
-fun misconstrue_V : V ;
-fun sue_V : V ;
-fun ensue_V : V ;
-fun pursue_V : V ;
-fun issue_V : V ;
-fun reissue_V : V ;
-fun have_V : V ;
-fun cave_V : V ;
-fun heave_V : V ;
-fun leave_1_V : V ;
-fun cleave_V : V ;
-fun interleave_V : V ;
-fun bereave_V : V ;
-fun weave_1_V : V ;
-fun interweave_1_V : V ;
-fun behave_V : V ;
-fun misbehave_V : V ;
-fun shave_1_V : V ;
-fun lave_V : V ;
-fun slave_V : V ;
-fun enslave_V : V ;
-fun pave_V : V ;
-fun rave_V : V ;
-fun brave_V : V ;
-fun outbrave_V : V ;
-fun crave_V : V ;
-fun engrave_V : V ;
-fun deprave_V : V ;
-fun save_V : V ;
-fun stave_V : V ;
-fun wave_V : V ;
-fun peeve_V : V ;
-fun achieve_V : V ;
-fun thieve_V : V ;
-fun believe_V : V ;
-fun disbelieve_V : V ;
-fun relieve_V : V ;
-fun grieve_V : V ;
-fun aggrieve_V : V ;
-fun reprieve_V : V ;
-fun retrieve_V : V ;
-fun sieve_V : V ;
-fun waive_V : V ;
-fun dive_1_V : V ;
-fun 'crash-dive_V' : V ;
-fun 'power-dive_V' : V ;
-fun nosedive_V : V ;
-fun deceive_V : V ;
-fun undeceive_V : V ;
-fun receive_V : V ;
-fun conceive_V : V ;
-fun preconceive_V : V ;
-fun misconceive_V : V ;
-fun perceive_V : V ;
-fun give_2_V : V ;
-fun hive_V : V ;
-fun jive_V : V ;
-fun skive_V : V ;
-fun live_V : V ;
-fun relive_V : V ;
-fun outlive_V : V ;
-fun connive_V : V ;
-fun rive_V : V ;
-fun drive_1_V : V ;
-fun derive_V : V ;
-fun shrive_V : V ;
-fun thrive_V : V ;
-fun deprive_V : V ;
-fun arrive_V : V ;
-fun contrive_V : V ;
-fun negative_V : V ;
-fun revive_V : V ;
-fun survive_V : V ;
-fun wive_V : V ;
-fun calve_V : V ;
-fun halve_V : V ;
-fun salve_V : V ;
-fun delve_V : V ;
-fun shelve_V : V ;
-fun solve_V : V ;
-fun absolve_V : V ;
-fun resolve_V : V ;
-fun dissolve_V : V ;
-fun evolve_V : V ;
-fun devolve_V : V ;
-fun revolve_V : V ;
-fun involve_V : V ;
-fun behove_V : V ;
-fun shove_V : V ;
-fun love_V : V ;
-fun move_V : V ;
-fun remove_V : V ;
-fun groove_V : V ;
-fun rove_V : V ;
-fun reprove_V : V ;
-fun improve_V : V ;
-fun approve_V : V ;
-fun 'pre-approve_V' : V ;
-fun disapprove_V : V ;
-fun disprove_V : V ;
-fun carve_V : V ;
-fun starve_V : V ;
-fun nerve_V : V ;
-fun unnerve_V : V ;
-fun serve_V : V ;
-fun observe_V : V ;
-fun subserve_V : V ;
-fun deserve_V : V ;
-fun reserve_V : V ;
-fun preserve_V : V ;
-fun conserve_V : V ;
-fun swerve_V : V ;
-fun curve_V : V ;
-fun recurve_V : V ;
-fun awe_V : V ;
-fun overawe_V : V ;
-fun owe_V : V ;
-fun axe_V : V ;
-fun poleaxe_V : V ;
-fun dye_V : V ;
-fun eye_V : V ;
-fun daze_V : V ;
-fun unfaze_V : V ;
-fun gaze_V : V ;
-fun haze_V : V ;
-fun laze_V : V ;
-fun blaze_V : V ;
-fun glaze_V : V ;
-fun amaze_V : V ;
-fun raze_V : V ;
-fun braze_V : V ;
-fun graze_V : V ;
-fun wheeze_V : V ;
-fun sneeze_V : V ;
-fun breeze_V : V ;
-fun freeze_1_V : V ;
-fun squeeze_V : V ;
-fun syllabize_V : V ;
-fun ostracize_V : V ;
-fun laicize_V : V ;
-fun italicize_V : V ;
-fun publicize_V : V ;
-fun anglicize_V : V ;
-fun historicize_V : V ;
-fun metricize_V : V ;
-fun politicize_V : V ;
-fun criticize_V : V ;
-fun romanticize_V : V ;
-fun exorcize_V : V ;
-fun hybridize_V : V ;
-fun fluoridize_V : V ;
-fun subsidize_V : V ;
-fun liquidize_V : V ;
-fun oxidize_V : V ;
-fun propagandize_V : V ;
-fun gormandize_V : V ;
-fun aggrandize_V : V ;
-fun rhapsodize_V : V ;
-fun standardize_V : V ;
-fun jeopardize_V : V ;
-fun bastardize_V : V ;
-fun seize_V : V ;
-fun apologize_V : V ;
-fun eulogize_V : V ;
-fun catechize_V : V ;
-fun apostrophize_V : V ;
-fun philosophize_V : V ;
-fun empathize_V : V ;
-fun sympathize_V : V ;
-fun cannibalize_V : V ;
-fun detribalize_V : V ;
-fun verbalize_V : V ;
-fun localize_V : V ;
-fun vocalize_V : V ;
-fun scandalize_V : V ;
-fun idealize_V : V ;
-fun realize_V : V ;
-fun legalize_V : V ;
-fun specialize_V : V ;
-fun socialize_V : V ;
-fun commercialize_V : V ;
-fun serialize_V : V ;
-fun materialize_V : V ;
-fun memorialize_V : V ;
-fun industrialize_V : V ;
-fun trivialize_V : V ;
-fun decimalize_V : V ;
-fun formalize_V : V ;
-fun normalize_V : V ;
-fun canalize_V : V ;
-fun penalize_V : V ;
-fun signalize_V : V ;
-fun finalize_V : V ;
-fun marginalize_V : V ;
-fun criminalize_V : V ;
-fun nationalize_V : V ;
-fun denationalize_V : V ;
-fun internationalize_V : V ;
-fun rationalize_V : V ;
-fun institutionalize_V : V ;
-fun constitutionalize_V : V ;
-fun personalize_V : V ;
-fun internalize_V : V ;
-fun externalize_V : V ;
-fun liberalize_V : V ;
-fun generalize_V : V ;
-fun moralize_V : V ;
-fun demoralize_V : V ;
-fun centralize_V : V ;
-fun decentralize_V : V ;
-fun recentralize_V : V ;
-fun neutralize_V : V ;
-fun naturalize_V : V ;
-fun nasalize_V : V ;
-fun capitalize_V : V ;
-fun overcapitalize_V : V ;
-fun hospitalize_V : V ;
-fun vitalize_V : V ;
-fun devitalize_V : V ;
-fun revitalize_V : V ;
-fun tantalize_V : V ;
-fun sentimentalize_V : V ;
-fun compartmentalize_V : V ;
-fun immortalize_V : V ;
-fun brutalize_V : V ;
-fun individualize_V : V ;
-fun equalize_V : V ;
-fun visualize_V : V ;
-fun spiritualize_V : V ;
-fun stabilize_V : V ;
-fun mobilize_V : V ;
-fun demobilize_V : V ;
-fun immobilize_V : V ;
-fun sterilize_V : V ;
-fun fossilize_V : V ;
-fun fertilize_V : V ;
-fun 'cross-fertilize_V' : V ;
-fun utilize_V : V ;
-fun tranquilize_V : V ;
-fun civilize_V : V ;
-fun crystallize_V : V ;
-fun tranquillize_V : V ;
-fun metabolize_V : V ;
-fun symbolize_V : V ;
-fun idolize_V : V ;
-fun monopolize_V : V ;
-fun stylize_V : V ;
-fun macadamize_V : V ;
-fun itemize_V : V ;
-fun minimize_V : V ;
-fun victimize_V : V ;
-fun legitimize_V : V ;
-fun maximize_V : V ;
-fun economize_V : V ;
-fun atomize_V : V ;
-fun epitomize_V : V ;
-fun customize_V : V ;
-fun urbanize_V : V ;
-fun americanize_V : V ;
-fun vulcanize_V : V ;
-fun organize_V : V ;
-fun reorganize_V : V ;
-fun disorganize_V : V ;
-fun mechanize_V : V ;
-fun womanize_V : V ;
-fun humanize_V : V ;
-fun dehumanize_V : V ;
-fun botanize_V : V ;
-fun galvanize_V : V ;
-fun homogenize_V : V ;
-fun oxygenize_V : V ;
-fun recognize_V : V ;
-fun attitudinize_V : V ;
-fun desalinize_V : V ;
-fun latinize_V : V ;
-fun scrutinize_V : V ;
-fun solemnize_V : V ;
-fun tyrannize_V : V ;
-fun carbonize_V : V ;
-fun decarbonize_V : V ;
-fun agonize_V : V ;
-fun antagonize_V : V ;
-fun ionize_V : V ;
-fun lionize_V : V ;
-fun revolutionize_V : V ;
-fun colonize_V : V ;
-fun decolonize_V : V ;
-fun demonize_V : V ;
-fun harmonize_V : V ;
-fun sermonize_V : V ;
-fun canonize_V : V ;
-fun synchronize_V : V ;
-fun patronize_V : V ;
-fun modernize_V : V ;
-fun fraternize_V : V ;
-fun westernize_V : V ;
-fun immunize_V : V ;
-fun barbarize_V : V ;
-fun vulgarize_V : V ;
-fun plagiarize_V : V ;
-fun familiarize_V : V ;
-fun polarize_V : V ;
-fun secularize_V : V ;
-fun particularize_V : V ;
-fun circularize_V : V ;
-fun regularize_V : V ;
-fun singularize_V : V ;
-fun popularize_V : V ;
-fun summarize_V : V ;
-fun demilitarize_V : V ;
-fun remilitarize_V : V ;
-fun rubberize_V : V ;
-fun mercerize_V : V ;
-fun slenderize_V : V ;
-fun bowdlerize_V : V ;
-fun mesmerize_V : V ;
-fun pauperize_V : V ;
-fun characterize_V : V ;
-fun cauterize_V : V ;
-fun computerize_V : V ;
-fun pulverize_V : V ;
-fun satirize_V : V ;
-fun deodorize_V : V ;
-fun theorize_V : V ;
-fun categorize_V : V ;
-fun authorize_V : V ;
-fun exteriorize_V : V ;
-fun glamorize_V : V ;
-fun memorize_V : V ;
-fun vaporize_V : V ;
-fun temporize_V : V ;
-fun terrorize_V : V ;
-fun factorize_V : V ;
-fun motorize_V : V ;
-fun prize_V : V ;
-fun pasteurize_V : V ;
-fun miniaturize_V : V ;
-fun size_V : V ;
-fun emphasize_V : V ;
-fun 'de-emphasize_V' : V ;
-fun 're-emphasize_V' : V ;
-fun overemphasize_V : V ;
-fun fantasize_V : V ;
-fun synthesize_V : V ;
-fun hypothesize_V : V ;
-fun downsize_V : V ;
-fun capsize_V : V ;
-fun dramatize_V : V ;
-fun anathematize_V : V ;
-fun systematize_V : V ;
-fun stigmatize_V : V ;
-fun dogmatize_V : V ;
-fun acclimatize_V : V ;
-fun legitimatize_V : V ;
-fun democratize_V : V ;
-fun privatize_V : V ;
-fun anaesthetize_V : V ;
-fun anesthetize_V : V ;
-fun sovietize_V : V ;
-fun magnetize_V : V ;
-fun demagnetize_V : V ;
-fun monetize_V : V ;
-fun demonetize_V : V ;
-fun sanitize_V : V ;
-fun sensitize_V : V ;
-fun desensitize_V : V ;
-fun photosensitize_V : V ;
-fun hypnotize_V : V ;
-fun baptize_V : V ;
-fun amortize_V : V ;
-fun deputize_V : V ;
-fun proselytize_V : V ;
-fun soliloquize_V : V ;
-fun collectivize_V : V ;
-fun bronze_V : V ;
-fun doze_V : V ;
-fun bulldoze_V : V ;
-fun ooze_V : V ;
-fun booze_V : V ;
-fun snooze_V : V ;
-fun analyze_V : V ;
-fun psychoanalyze_V : V ;
-fun paralyze_V : V ;
-fun hide_V : V ;
-fun stride_V : V ;
-fun bestride_V : V ;
-fun weave_2_V : V ;
-fun interweave_2_V : V ;
-fun shave_2_V : V ;
-fun prove_V : V ;
-fun weave_3_V : V ;
-fun interweave_3_V : V ;
-fun dive_2_V : V ;
-fun make_V : V ;
-fun remake_V : V ;
-fun come_1_V : V ;
-fun become_V : V ;
-fun overcome_1_V : V ;
-fun shine_V : V ;
-fun outshine_V : V ;
-fun extrapolate_V : V ;
-fun extemporize_V : V ;
-fun ride_V : V ;
-fun override_V : V ;
-fun outride_V : V ;
-fun awake_V : V ;
-fun rise_V : V ;
-fun arise_V : V ;
-fun choose_V : V ;
-fun smite_V : V ;
-fun write_V : V ;
-fun rewrite_V : V ;
-fun underwrite_2_V : V ;
-fun weave_4_V : V ;
-fun interweave_4_V : V ;
-fun give_1_V : V ;
-fun forgive_V : V ;
-fun misgive_V : V ;
-fun drive_2_V : V ;
-fun 'test-drive_V' : V ;
-fun strive_V : V ;
-fun freeze_2_V : V ;
-fun 'quick-freeze_V' : V ;
-fun 'deep-freeze_V' : V ;
-fun strike_2_V : V ;
-fun shake_V : V ;
-fun forsake_V : V ;
-fun take_2_V : V ;
-fun betake_V : V ;
-fun retake_V : V ;
-fun partake_V : V ;
-fun undertake_V : V ;
-fun overtake_V : V ;
-fun mistake_V : V ;
-fun bite_V : V ;
-fun backbite_V : V ;
-fun lose_2_V : V ;
-fun leave_2_V : V ;
-fun see_V : V ;
-fun foresee_V : V ;
-fun oversee_V : V ;
-fun fricassee_V : V ;
-fun lie_1_V : V ;
-fun belie_V : V ;
-fun underlie_V : V ;
-fun overlie_V : V ;
-fun leaf_V : V ;
-fun loaf_V : V ;
-fun beef_V : V ;
-fun reef_V : V ;
-fun brief_V : V ;
-fun debrief_V : V ;
-fun faff_V : V ;
-fun chaff_V : V ;
-fun naff_V : V ;
-fun spaff_V : V ;
-fun staff_V : V ;
-fun quaff_V : V ;
-fun eff_V : V ;
-fun biff_V : V ;
-fun miff_V : V ;
-fun sniff_V : V ;
-fun scoff_V : V ;
-fun doff_V : V ;
-fun buff_V : V ;
-fun rebuff_V : V ;
-fun cuff_V : V ;
-fun handcuff_V : V ;
-fun scuff_V : V ;
-fun duff_V : V ;
-fun huff_V : V ;
-fun luff_V : V ;
-fun bluff_V : V ;
-fun fluff_V : V ;
-fun muff_V : V ;
-fun snuff_V : V ;
-fun puff_V : V ;
-fun ruff_V : V ;
-fun stuff_V : V ;
-fun golf_V : V ;
-fun wolf_V : V ;
-fun engulf_V : V ;
-fun goof_V : V ;
-fun spoof_V : V ;
-fun roof_V : V ;
-fun proof_V : V ;
-fun soundproof_V : V ;
-fun reproof_V : V ;
-fun mothproof_V : V ;
-fun waterproof_V : V ;
-fun scarf_V : V ;
-fun dwarf_V : V ;
-fun turf_V : V ;
-fun bag_V : V ;
-fun debag_V : V ;
-fun fag_V : V ;
-fun gag_V : V ;
-fun shag_V : V ;
-fun jag_V : V ;
-fun lag_V : V ;
-fun clag_V : V ;
-fun flag_V : V ;
-fun slag_V : V ;
-fun nag_V : V ;
-fun snag_V : V ;
-fun rag_V : V ;
-fun brag_V : V ;
-fun scrag_V : V ;
-fun drag_V : V ;
-fun sag_V : V ;
-fun tag_V : V ;
-fun wag_V : V ;
-fun zigzag_V : V ;
-fun beg_V : V ;
-fun blackleg_V : V ;
-fun bootleg_V : V ;
-fun peg_V : V ;
-fun veg_V : V ;
-fun egg_V : V ;
-fun rigg_V : V ;
-fun big_V : V ;
-fun jig_V : V ;
-fun rejig_V : V ;
-fun pig_V : V ;
-fun rig_V : V ;
-fun wig_V : V ;
-fun swig_V : V ;
-fun twig_V : V ;
-fun bang_V : V ;
-fun gang_V : V ;
-fun hang_1_V : V ;
-fun whang_V : V ;
-fun clang_V : V ;
-fun slang_V : V ;
-fun rang_V : V ;
-fun twang_V : V ;
-fun 'rubber-necking_V' : V ;
-fun backpedaling_V : V ;
-fun ping_V : V ;
-fun ring_2_V : V ;
-fun ting_V : V ;
-fun countersuing_V : V ;
-fun wing_V : V ;
-fun swing_1_V : V ;
-fun gong_V : V ;
-fun long_V : V ;
-fun belong_V : V ;
-fun prolong_V : V ;
-fun throng_V : V ;
-fun wrong_V : V ;
-fun bung_V : V ;
-fun hung_V : V ;
-fun bog_V : V ;
-fun dog_V : V ;
-fun fog_V : V ;
-fun hog_V : V ;
-fun jog_V : V ;
-fun log_V : V ;
-fun catalog_V : V ;
-fun clog_V : V ;
-fun flog_V : V ;
-fun slog_V : V ;
-fun footslog_V : V ;
-fun snog_V : V ;
-fun leapfrog_V : V ;
-fun tog_V : V ;
-fun bug_V : V ;
-fun debug_V : V ;
-fun humbug_V : V ;
-fun dug_V : V ;
-fun hug_V : V ;
-fun chug_V : V ;
-fun jug_V : V ;
-fun lug_V : V ;
-fun plug_V : V ;
-fun unplug_V : V ;
-fun slug_V : V ;
-fun mug_V : V ;
-fun drug_V : V ;
-fun shrug_V : V ;
-fun tug_V : V ;
-fun dig_V : V ;
-fun hang_2_V : V ;
-fun overhang_V : V ;
-fun ring_1_V : V ;
-fun spring_1_V : V ;
-fun sing_V : V ;
-fun cling_V : V ;
-fun fling_V : V ;
-fun sling_V : V ;
-fun spring_2_V : V ;
-fun string_V : V ;
-fun hamstring_V : V ;
-fun wring_V : V ;
-fun sting_V : V ;
-fun swing_2_V : V ;
-fun bring_V : V ;
-fun hurrah_V : V ;
-fun beach_V : V ;
-fun leach_V : V ;
-fun bleach_V : V ;
-fun pleach_V : V ;
-fun peach_V : V ;
-fun impeach_V : V ;
-fun reach_V : V ;
-fun breach_V : V ;
-fun preach_V : V ;
-fun overreach_V : V ;
-fun stomach_V : V ;
-fun coach_V : V ;
-fun poach_V : V ;
-fun broach_V : V ;
-fun encroach_V : V ;
-fun reproach_V : V ;
-fun approach_V : V ;
-fun detach_V : V ;
-fun attach_V : V ;
-fun screech_V : V ;
-fun beseech_V : V ;
-fun enrich_V : V ;
-fun sandwich_V : V ;
-fun belch_V : V ;
-fun squelch_V : V ;
-fun filch_V : V ;
-fun mulch_V : V ;
-fun blanch_V : V ;
-fun branch_V : V ;
-fun stanch_V : V ;
-fun blench_V : V ;
-fun clench_V : V ;
-fun drench_V : V ;
-fun trench_V : V ;
-fun retrench_V : V ;
-fun entrench_V : V ;
-fun intrench_V : V ;
-fun wrench_V : V ;
-fun quench_V : V ;
-fun wench_V : V ;
-fun inch_V : V ;
-fun cinch_V : V ;
-fun clinch_V : V ;
-fun flinch_V : V ;
-fun pinch_V : V ;
-fun winch_V : V ;
-fun launch_V : V ;
-fun staunch_V : V ;
-fun bunch_V : V ;
-fun hunch_V : V ;
-fun lunch_V : V ;
-fun munch_V : V ;
-fun punch_V : V ;
-fun crunch_V : V ;
-fun scrunch_V : V ;
-fun lynch_V : V ;
-fun mooch_V : V ;
-fun arch_V : V ;
-fun search_V : V ;
-fun research_V : V ;
-fun march_V : V ;
-fun frogmarch_V : V ;
-fun outmarch_V : V ;
-fun parch_V : V ;
-fun overarch_V : V ;
-fun starch_V : V ;
-fun perch_V : V ;
-fun birch_V : V ;
-fun smirch_V : V ;
-fun besmirch_V : V ;
-fun scorch_V : V ;
-fun torch_V : V ;
-fun lurch_V : V ;
-fun hatch_V : V ;
-fun thatch_V : V ;
-fun latch_V : V ;
-fun match_V : V ;
-fun outmatch_V : V ;
-fun snatch_V : V ;
-fun patch_V : V ;
-fun despatch_V : V ;
-fun dispatch_V : V ;
-fun scratch_V : V ;
-fun watch_V : V ;
-fun etch_V : V ;
-fun fetch_V : V ;
-fun sketch_V : V ;
-fun retch_V : V ;
-fun stretch_V : V ;
-fun itch_V : V ;
-fun bitch_V : V ;
-fun ditch_V : V ;
-fun hitch_V : V ;
-fun unhitch_V : V ;
-fun snitch_V : V ;
-fun pitch_V : V ;
-fun stitch_V : V ;
-fun hemstitch_V : V ;
-fun bewitch_V : V ;
-fun switch_V : V ;
-fun twitch_V : V ;
-fun botch_V : V ;
-fun scotch_V : V ;
-fun hopscotch_V : V ;
-fun notch_V : V ;
-fun clutch_V : V ;
-fun declutch_V : V ;
-fun debauch_V : V ;
-fun debouch_V : V ;
-fun couch_V : V ;
-fun slouch_V : V ;
-fun pouch_V : V ;
-fun crouch_V : V ;
-fun grouch_V : V ;
-fun touch_V : V ;
-fun retouch_V : V ;
-fun vouch_V : V ;
-fun avouch_V : V ;
-fun psych_V : V ;
-fun sleigh_V : V ;
-fun neigh_V : V ;
-fun inveigh_V : V ;
-fun weigh_V : V ;
-fun outweigh_V : V ;
-fun sigh_V : V ;
-fun laugh_V : V ;
-fun bellylaugh_V : V ;
-fun cough_V : V ;
-fun hiccough_V : V ;
-fun plough_V : V ;
-fun slough_V : V ;
-fun rough_V : V ;
-fun trough_V : V ;
-fun sough_V : V ;
-fun 'pooh-pooh_V' : V ;
-fun paragraph_V : V ;
-fun telegraph_V : V ;
-fun mimeograph_V : V ;
-fun lithograph_V : V ;
-fun heliograph_V : V ;
-fun photograph_V : V ;
-fun autograph_V : V ;
-fun triumph_V : V ;
-fun galumph_V : V ;
-fun bash_V : V ;
-fun abash_V : V ;
-fun cash_V : V ;
-fun dash_V : V ;
-fun unleash_V : V ;
-fun gash_V : V ;
-fun hash_V : V ;
-fun rehash_V : V ;
-fun lash_V : V ;
-fun clash_V : V ;
-fun flash_V : V ;
-fun plash_V : V ;
-fun splash_V : V ;
-fun slash_V : V ;
-fun mash_V : V ;
-fun smash_V : V ;
-fun gnash_V : V ;
-fun crash_V : V ;
-fun gatecrash_V : V ;
-fun thrash_V : V ;
-fun trash_V : V ;
-fun stash_V : V ;
-fun quash_V : V ;
-fun squash_V : V ;
-fun wash_V : V ;
-fun whitewash_V : V ;
-fun brainwash_V : V ;
-fun flesh_V : V ;
-fun mesh_V : V ;
-fun enmesh_V : V ;
-fun refresh_V : V ;
-fun thresh_V : V ;
-fun rubbish_V : V ;
-fun furbish_V : V ;
-fun refurbish_V : V ;
-fun dish_V : V ;
-fun brandish_V : V ;
-fun fish_V : V ;
-fun 'fly-fish_V' : V ;
-fun establish_V : V ;
-fun 're-establish_V' : V ;
-fun disestablish_V : V ;
-fun publish_V : V ;
-fun relish_V : V ;
-fun embellish_V : V ;
-fun abolish_V : V ;
-fun demolish_V : V ;
-fun polish_V : V ;
-fun accomplish_V : V ;
-fun famish_V : V ;
-fun blemish_V : V ;
-fun skirmish_V : V ;
-fun banish_V : V ;
-fun vanish_V : V ;
-fun replenish_V : V ;
-fun finish_V : V ;
-fun diminish_V : V ;
-fun admonish_V : V ;
-fun astonish_V : V ;
-fun garnish_V : V ;
-fun tarnish_V : V ;
-fun varnish_V : V ;
-fun burnish_V : V ;
-fun furnish_V : V ;
-fun refurnish_V : V ;
-fun punish_V : V ;
-fun cherish_V : V ;
-fun perish_V : V ;
-fun impoverish_V : V ;
-fun flourish_V : V ;
-fun nourish_V : V ;
-fun languish_V : V ;
-fun distinguish_V : V ;
-fun contradistinguish_V : V ;
-fun extinguish_V : V ;
-fun vanquish_V : V ;
-fun relinquish_V : V ;
-fun lavish_V : V ;
-fun ravish_V : V ;
-fun wish_V : V ;
-fun swish_V : V ;
-fun welsh_V : V ;
-fun cosh_V : V ;
-fun splosh_V : V ;
-fun slosh_V : V ;
-fun nosh_V : V ;
-fun posh_V : V ;
-fun ambush_V : V ;
-fun gush_V : V ;
-fun hush_V : V ;
-fun shush_V : V ;
-fun blush_V : V ;
-fun flush_V : V ;
-fun push_V : V ;
-fun rush_V : V ;
-fun brush_V : V ;
-fun crush_V : V ;
-fun bath_V : V ;
-fun bequeath_V : V ;
-fun giveth_V : V ;
-fun smooth_V : V ;
-fun froth_V : V ;
-fun betroth_V : V ;
-fun earth_V : V ;
-fun unearth_V : V ;
-fun berth_V : V ;
-fun mouth_V : V ;
-fun teach_V : V ;
-fun catch_V : V ;
-fun ski_V : V ;
-fun shanghai_V : V ;
-fun taxi_V : V ;
-fun slink_V : V ;
-fun leak_V : V ;
-fun sneak_V : V ;
-fun peak_V : V ;
-fun break_1_V : V ;
-fun creak_V : V ;
-fun freak_V : V ;
-fun streak_V : V ;
-fun wreak_V : V ;
-fun squeak_V : V ;
-fun tweak_V : V ;
-fun cloak_V : V ;
-fun croak_V : V ;
-fun soak_V : V ;
-fun yak_V : V ;
-fun back_V : V ;
-fun piggyback_V : V ;
-fun hack_V : V ;
-fun shack_V : V ;
-fun whack_V : V ;
-fun jack_V : V ;
-fun highjack_V : V ;
-fun hijack_V : V ;
-fun lack_V : V ;
-fun black_V : V ;
-fun clack_V : V ;
-fun slack_V : V ;
-fun smack_V : V ;
-fun pack_V : V ;
-fun jampack_V : V ;
-fun unpack_V : V ;
-fun rack_V : V ;
-fun crack_V : V ;
-fun wisecrack_V : V ;
-fun barrack_V : V ;
-fun track_V : V ;
-fun sidetrack_V : V ;
-fun wrack_V : V ;
-fun sack_V : V ;
-fun ransack_V : V ;
-fun tack_V : V ;
-fun stack_V : V ;
-fun attack_V : V ;
-fun counterattack_V : V ;
-fun quack_V : V ;
-fun thwack_V : V ;
-fun yack_V : V ;
-fun deck_V : V ;
-fun check_V : V ;
-fun 'double-check_V' : V ;
-fun crosscheck_V : V ;
-fun fleck_V : V ;
-fun neck_V : V ;
-fun rubberneck_V : V ;
-fun peck_V : V ;
-fun wreck_V : V ;
-fun shipwreck_V : V ;
-fun maffick_V : V ;
-fun kick_V : V ;
-fun lick_V : V ;
-fun click_V : V ;
-fun flick_V : V ;
-fun nick_V : V ;
-fun snick_V : V ;
-fun pick_V : V ;
-fun unpick_V : V ;
-fun rick_V : V ;
-fun brick_V : V ;
-fun crick_V : V ;
-fun prick_V : V ;
-fun trick_V : V ;
-fun wrick_V : V ;
-fun sick_V : V ;
-fun tick_V : V ;
-fun politick_V : V ;
-fun stick_1_V : V ;
-fun cock_V : V ;
-fun spatchcock_V : V ;
-fun dock_V : V ;
-fun undock_V : V ;
-fun hock_V : V ;
-fun chock_V : V ;
-fun shock_V : V ;
-fun lock_V : V ;
-fun block_V : V ;
-fun unblock_V : V ;
-fun clock_V : V ;
-fun deadlock_V : V ;
-fun padlock_V : V ;
-fun flock_V : V ;
-fun unlock_V : V ;
-fun interlock_V : V ;
-fun mock_V : V ;
-fun knock_V : V ;
-fun rock_V : V ;
-fun crock_V : V ;
-fun defrock_V : V ;
-fun unfrock_V : V ;
-fun sock_V : V ;
-fun stock_V : V ;
-fun restock_V : V ;
-fun understock_V : V ;
-fun overstock_V : V ;
-fun buck_V : V ;
-fun duck_V : V ;
-fun fuck_V : V ;
-fun chuck_V : V ;
-fun shuck_V : V ;
-fun luck_V : V ;
-fun cluck_V : V ;
-fun pluck_V : V ;
-fun muck_V : V ;
-fun ruck_V : V ;
-fun suck_V : V ;
-fun tuck_V : V ;
-fun stuck_V : V ;
-fun geek_V : V ;
-fun cheek_V : V ;
-fun sleek_V : V ;
-fun peek_V : V ;
-fun reek_V : V ;
-fun seek_1_V : V ;
-fun shriek_V : V ;
-fun trek_1_V : V ;
-fun trek_2_V : V ;
-fun balk_V : V ;
-fun calk_V : V ;
-fun chalk_V : V ;
-fun talk_V : V ;
-fun stalk_V : V ;
-fun walk_V : V ;
-fun jaywalk_V : V ;
-fun bilk_V : V ;
-fun milk_V : V ;
-fun baulk_V : V ;
-fun caulk_V : V ;
-fun bulk_V : V ;
-fun skulk_V : V ;
-fun sulk_V : V ;
-fun bank_V : V ;
-fun scrimshank_V : V ;
-fun thank_V : V ;
-fun blank_V : V ;
-fun clank_V : V ;
-fun flank_V : V ;
-fun outflank_V : V ;
-fun plank_V : V ;
-fun spank_V : V ;
-fun rank_V : V ;
-fun crank_V : V ;
-fun frank_V : V ;
-fun outrank_V : V ;
-fun tank_V : V ;
-fun wank_V : V ;
-fun swank_V : V ;
-fun yank_V : V ;
-fun ink_V : V ;
-fun fink_V : V ;
-fun chink_V : V ;
-fun kink_V : V ;
-fun link_V : V ;
-fun blink_V : V ;
-fun clink_V : V ;
-fun interlink_V : V ;
-fun pink_V : V ;
-fun prink_V : V ;
-fun wink_V : V ;
-fun hoodwink_V : V ;
-fun conk_V : V ;
-fun honk_V : V ;
-fun plonk_V : V ;
-fun zonk_V : V ;
-fun bunk_V : V ;
-fun debunk_V : V ;
-fun dunk_V : V ;
-fun 'slam-dunk_V' : V ;
-fun funk_V : V ;
-fun junk_V : V ;
-fun clunk_V : V ;
-fun flunk_V : V ;
-fun book_V : V ;
-fun cook_V : V ;
-fun overcook_V : V ;
-fun hook_V : V ;
-fun unhook_V : V ;
-fun look_V : V ;
-fun overlook_V : V ;
-fun spook_V : V ;
-fun rook_V : V ;
-fun brook_V : V ;
-fun crook_V : V ;
-fun bark_V : V ;
-fun debark_V : V ;
-fun embark_V : V ;
-fun disembark_V : V ;
-fun hark_V : V ;
-fun lark_V : V ;
-fun skylark_V : V ;
-fun mark_V : V ;
-fun remark_V : V ;
-fun earmark_V : V ;
-fun postmark_V : V ;
-fun nark_V : V ;
-fun park_V : V ;
-fun 'double-park_V' : V ;
-fun 'angle-park_V' : V ;
-fun spark_V : V ;
-fun jerk_V : V ;
-fun clerk_V : V ;
-fun perk_V : V ;
-fun irk_V : V ;
-fun shirk_V : V ;
-fun smirk_V : V ;
-fun cork_V : V ;
-fun uncork_V : V ;
-fun fork_V : V ;
-fun pitchfork_V : V ;
-fun work_V : V ;
-fun rework_V : V ;
-fun overwork_V : V ;
-fun lurk_V : V ;
-fun ask_V : V ;
-fun bask_V : V ;
-fun mask_V : V ;
-fun unmask_V : V ;
-fun task_V : V ;
-fun whisk_V : V ;
-fun risk_V : V ;
-fun frisk_V : V ;
-fun husk_V : V ;
-fun hawk_V : V ;
-fun tomahawk_V : V ;
-fun squawk_V : V ;
-fun speak_V : V ;
-fun bespeak_V : V ;
-fun break_2_V : V ;
-fun stick_2_V : V ;
-fun drink_V : V ;
-fun shrink_V : V ;
-fun sink_V : V ;
-fun countersink_V : V ;
-fun stink_V : V ;
-fun seek_2_V : V ;
-fun think_V : V ;
-fun bethink_V : V ;
-fun rethink_V : V ;
-fun pedal_V : V ;
-fun 'soft-pedal_V' : V ;
-fun backpedal_V : V ;
-fun conceal_V : V ;
-fun congeal_V : V ;
-fun heal_V : V ;
-fun anneal_V : V ;
-fun peal_V : V ;
-fun repeal_V : V ;
-fun appeal_V : V ;
-fun seal_V : V ;
-fun squeal_V : V ;
-fun reveal_V : V ;
-fun marshal_V : V ;
-fun dial_1_V : V ;
-fun dial_2_V : V ;
-fun 'court-martial_V' : V ;
-fun initial_V : V ;
-fun signal_V : V ;
-fun coal_V : V ;
-fun foal_V : V ;
-fun shoal_V : V ;
-fun pal_1_V : V ;
-fun pal_2_V : V ;
-fun appal_V : V ;
-fun enthral_V : V ;
-fun spiral_V : V ;
-fun corral_V : V ;
-fun metal_V : V ;
-fun total_1_V : V ;
-fun total_2_V : V ;
-fun equal_1_V : V ;
-fun equal_2_V : V ;
-fun victual_V : V ;
-fun rival_V : V ;
-fun outrival_V : V ;
-fun label_1_V : V ;
-fun label_2_V : V ;
-fun rebel_V : V ;
-fun libel_V : V ;
-fun cancel_1_V : V ;
-fun cancel_2_V : V ;
-fun parcel_1_V : V ;
-fun parcel_2_V : V ;
-fun excel_V : V ;
-fun model_1_V : V ;
-fun remodel_1_V : V ;
-fun model_2_V : V ;
-fun remodel_2_V : V ;
-fun yodel_V : V ;
-fun feel_1_V : V ;
-fun heel_V : V ;
-fun wheel_V : V ;
-fun freewheel_V : V ;
-fun keel_V : V ;
-fun kneel_V : V ;
-fun peel_V : V ;
-fun reel_V : V ;
-fun steel_V : V ;
-fun gel_V : V ;
-fun cudgel_V : V ;
-fun spiel_V : V ;
-fun nickel_V : V ;
-fun parallel_V : V ;
-fun enamel_V : V ;
-fun trammel_V : V ;
-fun pommel_V : V ;
-fun pummel_V : V ;
-fun panel_V : V ;
-fun empanel_V : V ;
-fun impanel_V : V ;
-fun channel_V : V ;
-fun kennel_V : V ;
-fun funnel_V : V ;
-fun tunnel_V : V ;
-fun repel_V : V ;
-fun impel_V : V ;
-fun compel_V : V ;
-fun propel_V : V ;
-fun dispel_V : V ;
-fun expel_V : V ;
-fun apparel_V : V ;
-fun quarrel_1_V : V ;
-fun barrel_V : V ;
-fun quarrel_2_V : V ;
-fun chisel_V : V ;
-fun tinsel_V : V ;
-fun counsel_V : V ;
-fun duel_V : V ;
-fun fuel_1_V : V ;
-fun fuel_2_V : V ;
-fun refuel_V : V ;
-fun travel_V : V ;
-fun ravel_V : V ;
-fun gravel_V : V ;
-fun unravel_V : V ;
-fun level_1_V : V ;
-fun revel_V : V ;
-fun bevel_V : V ;
-fun level_2_V : V ;
-fun snivel_V : V ;
-fun drivel_V : V ;
-fun shrivel_V : V ;
-fun swivel_V : V ;
-fun shovel_V : V ;
-fun grovel_V : V ;
-fun marvel_V : V ;
-fun jewel_V : V ;
-fun disembowel_V : V ;
-fun towel_V : V ;
-fun ail_V : V ;
-fun bail_V : V ;
-fun fail_V : V ;
-fun hail_V : V ;
-fun jail_V : V ;
-fun flail_V : V ;
-fun mail_V : V ;
-fun blackmail_V : V ;
-fun nail_V : V ;
-fun rail_V : V ;
-fun derail_V : V ;
-fun trail_V : V ;
-fun sail_V : V ;
-fun assail_V : V ;
-fun outsail_V : V ;
-fun tail_V : V ;
-fun 'end-tail_V' : V ;
-fun detail_V : V ;
-fun retail_V : V ;
-fun dovetail_V : V ;
-fun entail_V : V ;
-fun curtail_V : V ;
-fun quail_V : V ;
-fun avail_V : V ;
-fun prevail_V : V ;
-fun countervail_V : V ;
-fun wail_V : V ;
-fun bewail_V : V ;
-fun pencil_1_V : V ;
-fun pencil_2_V : V ;
-fun 'blue-pencil_V' : V ;
-fun stencil_V : V ;
-fun veil_V : V ;
-fun unveil_V : V ;
-fun fulfil_V : V ;
-fun oil_V : V ;
-fun boil_V : V ;
-fun parboil_V : V ;
-fun coil_V : V ;
-fun recoil_V : V ;
-fun foil_V : V ;
-fun moil_V : V ;
-fun spoil_V : V ;
-fun despoil_V : V ;
-fun roil_V : V ;
-fun broil_V : V ;
-fun embroil_V : V ;
-fun soil_V : V ;
-fun toil_V : V ;
-fun peril_V : V ;
-fun imperil_V : V ;
-fun distil_V : V ;
-fun instil_V : V ;
-fun cavil_V : V ;
-fun devil_V : V ;
-fun bedevil_V : V ;
-fun ball_V : V ;
-fun eyeball_V : V ;
-fun blackball_V : V ;
-fun snowball_V : V ;
-fun call_V : V ;
-fun recall_V : V ;
-fun overcall_V : V ;
-fun miscall_V : V ;
-fun catcall_V : V ;
-fun gall_V : V ;
-fun pall_V : V ;
-fun enthrall_V : V ;
-fun stall_V : V ;
-fun forestall_V : V ;
-fun install_V : V ;
-fun reinstall_V : V ;
-fun squall_V : V ;
-fun wall_V : V ;
-fun stonewall_V : V ;
-fun bell_V : V ;
-fun fell_V : V ;
-fun shell_V : V ;
-fun jell_V : V ;
-fun smell_V : V ;
-fun spell_V : V ;
-fun misspell_V : V ;
-fun sell_1_V : V ;
-fun oversell_V : V ;
-fun outsell_V : V ;
-fun quell_V : V ;
-fun well_V : V ;
-fun dwell_1_V : V ;
-fun swell_V : V ;
-fun yell_V : V ;
-fun bill_V : V ;
-fun fill_V : V ;
-fun refill_V : V ;
-fun fulfill_V : V ;
-fun chill_V : V ;
-fun kill_V : V ;
-fun mill_V : V ;
-fun spill_1_V : V ;
-fun drill_V : V ;
-fun grill_V : V ;
-fun shrill_V : V ;
-fun thrill_V : V ;
-fun trill_V : V ;
-fun till_V : V ;
-fun still_V : V ;
-fun will_V : V ;
-fun swill_V : V ;
-fun doll_V : V ;
-fun loll_V : V ;
-fun poll_V : V ;
-fun roll_V : V ;
-fun enroll_V : V ;
-fun unroll_V : V ;
-fun troll_V : V ;
-fun stroll_V : V ;
-fun toll_V : V ;
-fun cull_V : V ;
-fun scull_V : V ;
-fun dull_V : V ;
-fun gull_V : V ;
-fun hull_V : V ;
-fun lull_V : V ;
-fun mull_V : V ;
-fun pull_V : V ;
-fun sell_2_V : V ;
-fun resell_V : V ;
-fun undersell_V : V ;
-fun tell_V : V ;
-fun retell_V : V ;
-fun foretell_V : V ;
-fun gaol_V : V ;
-fun gambol_V : V ;
-fun cool_V : V ;
-fun fool_V : V ;
-fun school_V : V ;
-fun pool_V : V ;
-fun drool_V : V ;
-fun tool_V : V ;
-fun retool_V : V ;
-fun carol_V : V ;
-fun enrol_V : V ;
-fun patrol_V : V ;
-fun control_2_V : V ;
-fun decontrol_V : V ;
-fun control_1_V : V ;
-fun extol_V : V ;
-fun frivol_V : V ;
-fun pearl_V : V ;
-fun snarl_V : V ;
-fun whirl_V : V ;
-fun swirl_V : V ;
-fun twirl_V : V ;
-fun curl_V : V ;
-fun uncurl_V : V ;
-fun furl_V : V ;
-fun unfurl_V : V ;
-fun hurl_V : V ;
-fun purl_V : V ;
-fun haul_V : V ;
-fun overhaul_V : V ;
-fun maul_V : V ;
-fun caterwaul_V : V ;
-fun annul_V : V ;
-fun foul_V : V ;
-fun befoul_V : V ;
-fun bawl_V : V ;
-fun brawl_V : V ;
-fun crawl_V : V ;
-fun 'pub-crawl_V' : V ;
-fun scrawl_V : V ;
-fun drawl_V : V ;
-fun sprawl_V : V ;
-fun trawl_V : V ;
-fun bowl_V : V ;
-fun scowl_V : V ;
-fun fowl_V : V ;
-fun howl_V : V ;
-fun growl_V : V ;
-fun prowl_V : V ;
-fun yowl_V : V ;
-fun spill_2_V : V ;
-fun steal_V : V ;
-fun fall_V : V ;
-fun befall_V : V ;
-fun spill_3_V : V ;
-fun deal_V : V ;
-fun misdeal_V : V ;
-fun feel_2_V : V ;
-fun dwell_2_V : V ;
-fun spill_4_V : V ;
-fun h'm_V : V ;
-fun salaam_V : V ;
-fun scam_V : V ;
-fun dam_V : V ;
-fun beam_V : V ;
-fun gleam_V : V ;
-fun cream_V : V ;
-fun scream_V : V ;
-fun dream_1_V : V ;
-fun daydream_V : V ;
-fun stream_V : V ;
-fun seam_V : V ;
-fun team_V : V ;
-fun steam_V : V ;
-fun ham_V : V ;
-fun sham_V : V ;
-fun jam_V : V ;
-fun lam_V : V ;
-fun clam_V : V ;
-fun slam_V : V ;
-fun foam_V : V ;
-fun roam_V : V ;
-fun ram_V : V ;
-fun cram_V : V ;
-fun scram_V : V ;
-fun program_V : V ;
-fun deem_V : V ;
-fun redeem_V : V ;
-fun seem_V : V ;
-fun beseem_V : V ;
-fun teem_V : V ;
-fun esteem_V : V ;
-fun hem_V : V ;
-fun stem_V : V ;
-fun aim_V : V ;
-fun claim_V : V ;
-fun acclaim_V : V ;
-fun declaim_V : V ;
-fun reclaim_V : V ;
-fun proclaim_V : V ;
-fun disclaim_V : V ;
-fun exclaim_V : V ;
-fun maim_V : V ;
-fun dim_V : V ;
-fun skim_V : V ;
-fun slim_V : V ;
-fun rim_V : V ;
-fun brim_V : V ;
-fun prim_V : V ;
-fun trim_V : V ;
-fun embalm_V : V ;
-fun calm_V : V ;
-fun palm_V : V ;
-fun underwhelm_V : V ;
-fun overwhelm_V : V ;
-fun film_V : V ;
-fun microfilm_V : V ;
-fun fathom_2_V : V ;
-fun fathom_1_V : V ;
-fun envenom_V : V ;
-fun boom_V : V ;
-fun doom_V : V ;
-fun foredoom_V : V ;
-fun loom_V : V ;
-fun bloom_V : V ;
-fun room_V : V ;
-fun groom_V : V ;
-fun mushroom_V : V ;
-fun zoom_V : V ;
-fun ransom_V : V ;
-fun unbosom_V : V ;
-fun blossom_V : V ;
-fun accustom_V : V ;
-fun bottom_2_V : V ;
-fun bottom_1_V : V ;
-fun 'copper-bottom_V' : V ;
-fun arm_V : V ;
-fun rearm_V : V ;
-fun forearm_V : V ;
-fun farm_V : V ;
-fun harm_V : V ;
-fun charm_V : V ;
-fun alarm_V : V ;
-fun disarm_V : V ;
-fun warm_V : V ;
-fun swarm_V : V ;
-fun perm_V : V ;
-fun term_V : V ;
-fun firm_V : V ;
-fun affirm_V : V ;
-fun reaffirm_V : V ;
-fun confirm_V : V ;
-fun squirm_V : V ;
-fun form_V : V ;
-fun 're-form_V' : V ;
-fun deform_V : V ;
-fun reform_V : V ;
-fun inform_V : V ;
-fun misinform_V : V ;
-fun conform_V : V ;
-fun perform_V : V ;
-fun underperform_V : V ;
-fun outperform_V : V ;
-fun transform_V : V ;
-fun storm_V : V ;
-fun barnstorm_V : V ;
-fun worm_V : V ;
-fun bum_V : V ;
-fun gum_V : V ;
-fun regum_V : V ;
-fun hum_V : V ;
-fun chum_V : V ;
-fun slum_V : V ;
-fun drum_V : V ;
-fun thrum_V : V ;
-fun strum_V : V ;
-fun sum_V : V ;
-fun costum_V : V ;
-fun vacuum_V : V ;
-fun dream_2_V : V ;
-fun swim_V : V ;
-fun dream_3_V : V ;
-fun dream_4_V : V ;
-fun ban_V : V ;
-fun can_V : V ;
-fun scan_V : V ;
-fun lean_V : V ;
-fun clean_V : V ;
-fun 'spring-clean_V' : V ;
-fun 'dry-clean_V' : V ;
-fun glean_V : V ;
-fun demean_V : V ;
-fun wean_V : V ;
-fun fan_V : V ;
-fun toboggan_V : V ;
-fun orphan_V : V ;
-fun plan_V : V ;
-fun man_V : V ;
-fun unman_V : V ;
-fun loan_V : V ;
-fun moan_V : V ;
-fun bemoan_V : V ;
-fun groan_V : V ;
-fun pan_V : V ;
-fun japan_V : V ;
-fun trepan_V : V ;
-fun span_V : V ;
-fun inspan_V : V ;
-fun outspan_V : V ;
-fun tan_V : V ;
-fun swan_V : V ;
-fun deaden_V : V ;
-fun broaden_V : V ;
-fun gladden_V : V ;
-fun madden_V : V ;
-fun sadden_V : V ;
-fun redden_V : V ;
-fun widen_V : V ;
-fun embolden_V : V ;
-fun garden_V : V ;
-fun harden_V : V ;
-fun burden_V : V ;
-fun unburden_V : V ;
-fun overburden_V : V ;
-fun disburden_V : V ;
-fun keen_V : V ;
-fun careen_V : V ;
-fun screen_V : V ;
-fun preen_V : V ;
-fun queen_V : V ;
-fun deafen_V : V ;
-fun stiffen_1_V : V ;
-fun stiffen_2_V : V ;
-fun gen_V : V ;
-fun roughen_V : V ;
-fun toughen_V : V ;
-fun hyphen_V : V ;
-fun freshen_1_V : V ;
-fun freshen_2_V : V ;
-fun lengthen_V : V ;
-fun strengthen_V : V ;
-fun burthen_V : V ;
-fun ken_V : V ;
-fun weaken_V : V ;
-fun waken_V : V ;
-fun awaken_V : V ;
-fun blacken_V : V ;
-fun slacken_1_V : V ;
-fun thicken_V : V ;
-fun sicken_V : V ;
-fun quicken_V : V ;
-fun slacken_2_V : V ;
-fun chicken_V : V ;
-fun liken_V : V ;
-fun betoken_V : V ;
-fun darken_V : V ;
-fun hearken_V : V ;
-fun omen_V : V ;
-fun pen_V : V ;
-fun cheapen_V : V ;
-fun deepen_V : V ;
-fun steepen_V : V ;
-fun ripen_V : V ;
-fun dampen_V : V ;
-fun open_1_V : V ;
-fun reopen_V : V ;
-fun open_2_V : V ;
-fun happen_V : V ;
-fun sharpen_V : V ;
-fun loosen_1_V : V ;
-fun loosen_2_V : V ;
-fun coarsen_V : V ;
-fun worsen_V : V ;
-fun lessen_V : V ;
-fun threaten_V : V ;
-fun sweeten_V : V ;
-fun quieten_1_V : V ;
-fun quieten_2_V : V ;
-fun soften_1_V : V ;
-fun soften_2_V : V ;
-fun straighten_1_V : V ;
-fun heighten_V : V ;
-fun lighten_1_V : V ;
-fun enlighten_V : V ;
-fun brighten_1_V : V ;
-fun frighten_1_V : V ;
-fun tighten_1_V : V ;
-fun straighten_2_V : V ;
-fun lighten_2_V : V ;
-fun brighten_2_V : V ;
-fun frighten_2_V : V ;
-fun tighten_2_V : V ;
-fun straiten_V : V ;
-fun whiten_V : V ;
-fun hearten_V : V ;
-fun dishearten_V : V ;
-fun smarten_V : V ;
-fun shorten_V : V ;
-fun foreshorten_V : V ;
-fun fasten_1_V : V ;
-fun unfasten_V : V ;
-fun hasten_V : V ;
-fun chasten_V : V ;
-fun listen_1_V : V ;
-fun glisten_V : V ;
-fun moisten_V : V ;
-fun christen_V : V ;
-fun fasten_2_V : V ;
-fun listen_2_V : V ;
-fun batten_V : V ;
-fun fatten_1_V : V ;
-fun flatten_V : V ;
-fun fatten_2_V : V ;
-fun leaven_V : V ;
-fun even_1_V : V ;
-fun even_2_V : V ;
-fun liven_V : V ;
-fun enliven_V : V ;
-fun yen_V : V ;
-fun brazen_V : V ;
-fun cozen_V : V ;
-fun campaign_V : V ;
-fun arraign_V : V ;
-fun deign_V : V ;
-fun feign_V : V ;
-fun reign_V : V ;
-fun align_V : V ;
-fun realign_V : V ;
-fun malign_V : V ;
-fun sign_V : V ;
-fun 'pre-sign_V' : V ;
-fun design_V : V ;
-fun redesign_V : V ;
-fun resign_V : V ;
-fun consign_V : V ;
-fun undersign_V : V ;
-fun countersign_V : V ;
-fun assign_V : V ;
-fun reassign_V : V ;
-fun impugn_V : V ;
-fun oppugn_V : V ;
-fun ordain_V : V ;
-fun foreordain_V : V ;
-fun preordain_V : V ;
-fun disdain_V : V ;
-fun gain_V : V ;
-fun regain_V : V ;
-fun bargain_V : V ;
-fun outgain_V : V ;
-fun chain_V : V ;
-fun enchain_V : V ;
-fun unchain_V : V ;
-fun plain_V : V ;
-fun complain_V : V ;
-fun explain_V : V ;
-fun remain_V : V ;
-fun pain_V : V ;
-fun rain_V : V ;
-fun brain_V : V ;
-fun drain_V : V ;
-fun refrain_V : V ;
-fun sprain_V : V ;
-fun train_V : V ;
-fun detrain_V : V ;
-fun entrain_V : V ;
-fun strain_V : V ;
-fun restrain_V : V ;
-fun distrain_V : V ;
-fun constrain_V : V ;
-fun overstrain_V : V ;
-fun obtain_V : V ;
-fun detain_V : V ;
-fun retain_V : V ;
-fun maintain_V : V ;
-fun contain_V : V ;
-fun captain_V : V ;
-fun ascertain_V : V ;
-fun pertain_V : V ;
-fun appertain_V : V ;
-fun entertain_V : V ;
-fun curtain_V : V ;
-fun stain_V : V ;
-fun abstain_V : V ;
-fun sustain_V : V ;
-fun attain_V : V ;
-fun din_V : V ;
-fun rein_V : V ;
-fun gin_V : V ;
-fun begin_2_V : V ;
-fun shin_V : V ;
-fun thin_V : V ;
-fun skin_V : V ;
-fun coin_V : V ;
-fun join_V : V ;
-fun 're-join_V' : V ;
-fun subjoin_V : V ;
-fun adjoin_V : V ;
-fun rejoin_V : V ;
-fun enjoin_V : V ;
-fun conjoin_V : V ;
-fun purloin_V : V ;
-fun groin_V : V ;
-fun pin_V : V ;
-fun underpin_V : V ;
-fun chagrin_V : V ;
-fun grin_V : V ;
-fun sin_V : V ;
-fun rosin_V : V ;
-fun tin_V : V ;
-fun ruin_V : V ;
-fun win_1_V : V ;
-fun twin_V : V ;
-fun entwin_V : V ;
-fun damn_V : V ;
-fun condemn_V : V ;
-fun contemn_V : V ;
-fun limn_V : V ;
-fun hymn_V : V ;
-fun con_V : V ;
-fun don_V : V ;
-fun abandon_V : V ;
-fun pardon_V : V ;
-fun cordon_V : V ;
-fun bludgeon_V : V ;
-fun burgeon_V : V ;
-fun syphon_2_V : V ;
-fun siphon_V : V ;
-fun syphon_1_V : V ;
-fun fashion_V : V ;
-fun refashion_V : V ;
-fun cushion_V : V ;
-fun pinion_V : V ;
-fun champion_V : V ;
-fun envision_V : V ;
-fun occasion_V : V ;
-fun provision_V : V ;
-fun pension_V : V ;
-fun commission_V : V ;
-fun disillusion_V : V ;
-fun auction_2_V : V ;
-fun audition_2_V : V ;
-fun reposition_V : V ;
-fun vacation_V : V ;
-fun ration_V : V ;
-fun station_V : V ;
-fun sanction_V : V ;
-fun function_V : V ;
+fun malediction_N : N ;
+fun malefactor_N : N ;
+fun malefic_A : A ;
+fun maleficence_N : N ;
+fun maleficent_A : A ;
+fun maleness_N : N ;
+fun maleo_N : N ;
+fun malevolence_N : N ;
+fun malevolent_A : A ;
+fun malfeasance_N : N ;
+fun malfeasant_N : N ;
+fun malformation_N : N ;
+fun malformed_A : A ;
+fun malfunction_N : N ;
fun malfunction_V : V ;
-fun auction_1_V : V ;
-fun condition_V : V ;
-fun recondition_V : V ;
-fun audition_1_V : V ;
-fun munition_V : V ;
-fun requisition_V : V ;
-fun derequisition_V : V ;
-fun position_V : V ;
-fun proposition_V : V ;
-fun petition_V : V ;
-fun partition_V : V ;
-fun mention_V : V ;
-fun motion_V : V ;
-fun portion_V : V ;
-fun proportion_V : V ;
-fun apportion_V : V ;
-fun question_V : V ;
-fun 'cross-question_V' : V ;
-fun caution_V : V ;
-fun reckon_2_V : V ;
-fun beckon_V : V ;
-fun reckon_1_V : V ;
-fun summon_2_V : V ;
-fun summon_1_V : V ;
-fun cocoon_V : V ;
-fun dragoon_V : V ;
-fun hoon_V : V ;
-fun balloon_V : V ;
-fun moon_V : V ;
-fun honeymoon_V : V ;
-fun lampoon_V : V ;
-fun harpoon_V : V ;
-fun spoon_V : V ;
-fun maroon_V : V ;
-fun croon_V : V ;
-fun cartoon_V : V ;
-fun festoon_V : V ;
-fun swoon_V : V ;
-fun chaperon_V : V ;
-fun iron_2_V : V ;
-fun iron_1_V : V ;
-fun environ_V : V ;
-fun reason_2_V : V ;
-fun reason_1_V : V ;
-fun season_V : V ;
-fun poison_V : V ;
-fun caparison_V : V ;
-fun imprison_V : V ;
-fun garrison_V : V ;
-fun jettison_V : V ;
-fun crimson_V : V ;
-fun ton_V : V ;
-fun wanton_V : V ;
-fun cotton_2_V : V ;
-fun cotton_1_V : V ;
-fun button_V : V ;
-fun unbutton_V : V ;
-fun crayon_V : V ;
-fun blazon_V : V ;
-fun emblazon_V : V ;
-fun darn_V : V ;
-fun earn_V : V ;
-fun learn_V : V ;
-fun unlearn_V : V ;
-fun yearn_V : V ;
-fun larn_V : V ;
-fun warn_V : V ;
-fun forewarn_V : V ;
-fun yarn_V : V ;
-fun concern_V : V ;
-fun discern_V : V ;
-fun intern_V : V ;
-fun pattern_V : V ;
-fun govern_V : V ;
-fun misgovern_V : V ;
-fun suborn_V : V ;
-fun corn_V : V ;
-fun scorn_V : V ;
-fun adorn_V : V ;
-fun horn_V : V ;
-fun dehorn_V : V ;
-fun shoehorn_V : V ;
-fun shorn_V : V ;
-fun burn_1_V : V ;
-fun churn_V : V ;
-fun adjourn_V : V ;
-fun sojourn_V : V ;
-fun mourn_V : V ;
-fun spurn_V : V ;
-fun turn_V : V ;
-fun return_V : V ;
-fun overturn_V : V ;
-fun dun_V : V ;
-fun gun_V : V ;
-fun shun_V : V ;
-fun pun_V : V ;
-fun run_2_V : V ;
-fun sun_V : V ;
-fun stun_V : V ;
-fun dawn_V : V ;
-fun fawn_V : V ;
-fun pawn_V : V ;
-fun spawn_V : V ;
-fun prawn_V : V ;
-fun yawn_V : V ;
-fun own_V : V ;
-fun down_V : V ;
-fun gown_V : V ;
-fun clown_V : V ;
-fun brown_V : V ;
-fun crown_V : V ;
-fun drown_V : V ;
-fun frown_V : V ;
-fun disown_V : V ;
-fun burn_2_V : V ;
-fun begin_1_V : V ;
-fun win_2_V : V ;
-fun spin_V : V ;
-fun run_1_V : V ;
-fun rerun_V : V ;
-fun overrun_V : V ;
-fun outrun_V : V ;
-fun burn_3_V : V ;
-fun mean_V : V ;
-fun burn_4_V : V ;
-fun stucco_V : V ;
-fun fresco_V : V ;
-fun bastinado_V : V ;
-fun torpedo_V : V ;
-fun roneo_V : V ;
-fun go_1_V : V ;
-fun tango_V : V ;
-fun embargo_V : V ;
-fun echo_V : V ;
-fun 're-echo_V' : V ;
-fun radio_V : V ;
-fun boo_V : V ;
-fun taboo_V : V ;
-fun coo_V : V ;
-fun hoodoo_V : V ;
-fun shoo_V : V ;
-fun halloo_V : V ;
-fun moo_V : V ;
-fun shampoo_V : V ;
-fun tattoo_V : V ;
-fun woo_V : V ;
-fun zero_V : V ;
-fun lasso_V : V ;
-fun veto_V : V ;
-fun do_V : V ;
-fun redo_V : V ;
-fun undo_V : V ;
-fun overdo_V : V ;
-fun outdo_V : V ;
-fun go_2_V : V ;
-fun forego_V : V ;
-fun undergo_V : V ;
-fun forgo_V : V ;
-fun outgo_V : V ;
-fun cap_V : V ;
-fun recap_V : V ;
-fun handicap_V : V ;
-fun heap_V : V ;
-fun leap_1_V : V ;
-fun overleap_V : V ;
-fun outleap_V : V ;
-fun reap_V : V ;
-fun hap_V : V ;
-fun chap_V : V ;
-fun lap_V : V ;
-fun clap_V : V ;
-fun flap_V : V ;
-fun overlap_V : V ;
-fun slap_V : V ;
-fun map_V : V ;
-fun nap_V : V ;
-fun kidnap_V : V ;
-fun knap_V : V ;
-fun snap_V : V ;
-fun soap_V : V ;
-fun 'soft-soap_V' : V ;
-fun rap_V : V ;
-fun crap_V : V ;
-fun scrap_V : V ;
-fun trap_V : V ;
-fun entrap_V : V ;
-fun strap_V : V ;
-fun wrap_V : V ;
-fun enwrap_V : V ;
-fun unwrap_V : V ;
-fun sap_V : V ;
-fun tap_V : V ;
-fun swap_V : V ;
-fun yap_V : V ;
-fun zap_V : V ;
-fun cheep_V : V ;
-fun keep_1_V : V ;
-fun bleep_V : V ;
-fun peep_V : V ;
-fun creep_1_V : V ;
-fun seep_V : V ;
-fun steep_V : V ;
-fun pep_V : V ;
-fun step_V : V ;
-fun sidestep_V : V ;
-fun overstep_V : V ;
-fun dip_V : V ;
-fun chip_V : V ;
-fun ship_V : V ;
-fun worship_V : V ;
-fun transship_V : V ;
-fun whip_V : V ;
-fun horsewhip_V : V ;
-fun kip_V : V ;
-fun skip_V : V ;
-fun clip_V : V ;
-fun flip_V : V ;
-fun slip_V : V ;
-fun 'side-slip_V' : V ;
-fun nip_V : V ;
-fun snip_V : V ;
-fun pip_V : V ;
-fun rip_V : V ;
-fun drip_V : V ;
-fun grip_V : V ;
-fun trip_V : V ;
-fun egotrip_V : V ;
-fun strip_V : V ;
-fun outstrip_V : V ;
-fun sip_V : V ;
-fun gossip_V : V ;
-fun tip_V : V ;
-fun quip_V : V ;
-fun equip_V : V ;
-fun zip_V : V ;
-fun unzip_V : V ;
-fun scalp_V : V ;
-fun help_V : V ;
-fun whelp_V : V ;
-fun yelp_V : V ;
-fun gulp_V : V ;
-fun pulp_V : V ;
-fun camp_V : V ;
-fun decamp_V : V ;
-fun encamp_V : V ;
-fun scamp_V : V ;
-fun damp_V : V ;
-fun champ_V : V ;
-fun clamp_V : V ;
-fun ramp_V : V ;
-fun cramp_V : V ;
-fun tramp_V : V ;
-fun tamp_V : V ;
-fun stamp_V : V ;
-fun 'rubber-stamp_V' : V ;
-fun vamp_V : V ;
-fun revamp_V : V ;
-fun swamp_V : V ;
-fun skimp_V : V ;
-fun limp_V : V ;
-fun pimp_V : V ;
-fun crimp_V : V ;
-fun scrimp_V : V ;
-fun shrimp_V : V ;
-fun primp_V : V ;
-fun wimp_V : V ;
-fun romp_V : V ;
-fun stomp_V : V ;
-fun bump_V : V ;
-fun dump_V : V ;
-fun hump_V : V ;
-fun thump_V : V ;
-fun jump_V : V ;
-fun lump_V : V ;
-fun clump_V : V ;
-fun plump_V : V ;
-fun slump_V : V ;
-fun pump_V : V ;
-fun trump_V : V ;
-fun overtrump_V : V ;
-fun stump_V : V ;
-fun gazump_V : V ;
-fun cop_V : V ;
-fun hop_V : V ;
-fun chop_V : V ;
-fun hedgehop_V : V ;
-fun shop_V : V ;
-fun whop_V : V ;
-fun lop_V : V ;
-fun develop_V : V ;
-fun redevelop_V : V ;
-fun envelop_V : V ;
-fun flop_V : V ;
-fun scallop_V : V ;
-fun gallop_V : V ;
-fun wallop_V : V ;
-fun scollop_V : V ;
-fun plop_V : V ;
-fun slop_V : V ;
-fun mop_V : V ;
-fun coop_V : V ;
-fun scoop_V : V ;
-fun hoop_V : V ;
-fun whoop_V : V ;
-fun loop_V : V ;
-fun snoop_V : V ;
-fun poop_V : V ;
-fun droop_V : V ;
-fun troop_V : V ;
-fun stoop_V : V ;
-fun swoop_V : V ;
-fun pop_V : V ;
-fun crop_V : V ;
-fun overcrop_V : V ;
-fun drop_V : V ;
-fun 'name-drop_V' : V ;
-fun eavesdrop_V : V ;
-fun prop_V : V ;
-fun strop_V : V ;
-fun sop_V : V ;
-fun top_V : V ;
-fun overtop_V : V ;
-fun stop_V : V ;
-fun swop_V : V ;
-fun carp_V : V ;
-fun harp_V : V ;
-fun warp_V : V ;
-fun chirp_V : V ;
-fun burp_V : V ;
-fun usurp_V : V ;
-fun gasp_V : V ;
-fun clasp_V : V ;
-fun rasp_V : V ;
-fun grasp_V : V ;
-fun lisp_V : V ;
-fun crisp_V : V ;
-fun up_V : V ;
-fun cup_V : V ;
-fun hiccup_V : V ;
-fun recoup_V : V ;
-fun group_V : V ;
-fun regroup_V : V ;
-fun soup_V : V ;
-fun chirrup_V : V ;
-fun sup_V : V ;
-fun gawp_V : V ;
-fun gyp_V : V ;
-fun leap_2_V : V ;
-fun leap_3_V : V ;
-fun leap_4_V : V ;
-fun keep_2_V : V ;
-fun sleep_V : V ;
-fun oversleep_V : V ;
-fun creep_2_V : V ;
-fun weep_V : V ;
-fun sweep_V : V ;
-fun bar_V : V ;
-fun debar_V : V ;
-fun unbar_V : V ;
-fun scar_V : V ;
-fun endear_V : V ;
-fun fear_V : V ;
-fun gear_V : V ;
-fun shear_V : V ;
-fun clear_V : V ;
-fun smear_V : V ;
-fun besmear_V : V ;
-fun near_V : V ;
-fun appear_V : V ;
-fun reappear_V : V ;
-fun disappear_V : V ;
-fun spear_V : V ;
-fun rear_V : V ;
-fun sear_V : V ;
-fun wear_1_V : V ;
-fun swear_1_V : V ;
-fun far_V : V ;
-fun beggar_V : V ;
-fun sugar_V : V ;
-fun char_V : V ;
-fun jar_V : V ;
-fun collar_V : V ;
-fun mar_V : V ;
-fun roar_V : V ;
-fun soar_V : V ;
-fun par_V : V ;
-fun spar_V : V ;
-fun tar_V : V ;
-fun mortar_V : V ;
-fun star_V : V ;
-fun 'co-star_V' : V ;
-fun war_V : V ;
-fun hear_V : V ;
-fun rehear_V : V ;
-fun overhear_V : V ;
-fun jabber_V : V ;
-fun blabber_V : V ;
-fun gibber_V : V ;
-fun clobber_V : V ;
-fun slobber_V : V ;
-fun blubber_V : V ;
-fun rubber_V : V ;
-fun camber_V : V ;
-fun clamber_V : V ;
-fun remember_V : V ;
-fun dismember_V : V ;
-fun limber_V : V ;
-fun cumber_V : V ;
-fun encumber_V : V ;
-fun disencumber_V : V ;
-fun lumber_V : V ;
-fun slumber_V : V ;
-fun number_V : V ;
-fun outnumber_V : V ;
-fun sober_V : V ;
-fun ladder_V : V ;
-fun dodder_V : V ;
-fun shudder_V : V ;
-fun judder_V : V ;
-fun embroider_V : V ;
-fun consider_V : V ;
-fun reconsider_V : V ;
-fun bewilder_V : V ;
-fun solder_V : V ;
-fun 'soft-solder_V' : V ;
-fun shoulder_V : V ;
-fun 'cold-shoulder_V' : V ;
-fun moulder_V : V ;
-fun smoulder_V : V ;
-fun meander_V : V ;
-fun philander_V : V ;
-fun slander_V : V ;
-fun gerrymander_V : V ;
-fun pander_V : V ;
-fun squander_V : V ;
-fun wander_V : V ;
-fun engender_V : V ;
-fun calender_V : V ;
-fun render_V : V ;
-fun surrender_V : V ;
-fun tender_V : V ;
-fun hinder_V : V ;
-fun ponder_V : V ;
-fun wonder_V : V ;
-fun launder_V : V ;
-fun maunder_V : V ;
-fun thunder_V : V ;
-fun blunder_V : V ;
-fun plunder_V : V ;
-fun founder_V : V ;
-fun flounder_V : V ;
-fun sunder_V : V ;
-fun order_V : V ;
-fun border_V : V ;
-fun disorder_V : V ;
-fun murder_V : V ;
-fun powder_V : V ;
-fun commandeer_V : V ;
-fun cheer_V : V ;
-fun sheer_V : V ;
-fun jeer_V : V ;
-fun leer_V : V ;
-fun veneer_V : V ;
-fun engineer_V : V ;
-fun domineer_V : V ;
-fun pioneer_V : V ;
-fun sneer_V : V ;
-fun peer_V : V ;
-fun career_V : V ;
-fun profiteer_V : V ;
-fun volunteer_V : V ;
-fun steer_V : V ;
-fun queer_V : V ;
-fun veer_V : V ;
-fun defer_V : V ;
-fun refer_V : V ;
-fun prefer_V : V ;
-fun differ_V : V ;
-fun offer_V : V ;
-fun reoffer_V : V ;
-fun proffer_V : V ;
-fun buffer_V : V ;
-fun suffer_V : V ;
-fun pilfer_V : V ;
-fun infer_V : V ;
-fun confer_V : V ;
-fun transfer_V : V ;
-fun wager_V : V ;
-fun badger_V : V ;
-fun stagger_V : V ;
-fun swagger_V : V ;
-fun snigger_V : V ;
-fun trigger_V : V ;
-fun bugger_V : V ;
-fun anger_V : V ;
-fun endanger_V : V ;
-fun finger_V : V ;
-fun ginger_V : V ;
-fun linger_V : V ;
+fun malian_A : A ;
+fun malian_N : N ;
+fun malice_N : N ;
+fun malicious_A : A ;
+fun malign_A : A ;
+fun malign_V : V ;
+fun malignancy_N : N ;
+fun malignant_A : A ;
+fun malignity_N : N ;
+fun malik_N : N ;
fun malinger_V : V ;
-fun hunger_V : V ;
-fun butcher_V : V ;
-fun cipher_V : V ;
-fun decipher_V : V ;
-fun cypher_V : V ;
-fun usher_V : V ;
-fun feather_V : V ;
-fun weather_V : V ;
-fun father_V : V ;
-fun gather_V : V ;
-fun foregather_V : V ;
-fun forgather_V : V ;
-fun lather_V : V ;
-fun blather_V : V ;
-fun blether_V : V ;
-fun tether_V : V ;
-fun dither_V : V ;
-fun slither_V : V ;
-fun wither_V : V ;
-fun bother_V : V ;
-fun mother_V : V ;
-fun smother_V : V ;
-fun further_V : V ;
-fun soldier_V : V ;
-fun cashier_V : V ;
-fun checker_V : V ;
-fun bicker_V : V ;
-fun dicker_V : V ;
-fun flicker_V : V ;
-fun snicker_V : V ;
-fun pucker_V : V ;
-fun canker_V : V ;
-fun hanker_V : V ;
-fun tinker_V : V ;
-fun bunker_V : V ;
-fun hunker_V : V ;
-fun holler_V : V ;
-fun steamroller_V : V ;
-fun hammer_V : V ;
-fun stammer_V : V ;
-fun yammer_V : V ;
-fun shimmer_V : V ;
-fun glimmer_V : V ;
-fun simmer_V : V ;
-fun summer_V : V ;
-fun homer_V : V ;
-fun garner_V : V ;
-fun corner_V : V ;
-fun partner_V : V ;
-fun caper_V : V ;
-fun paper_V : V ;
-fun sandpaper_V : V ;
-fun taper_V : V ;
-fun scamper_V : V ;
-fun hamper_V : V ;
-fun pamper_V : V ;
-fun tamper_V : V ;
-fun temper_V : V ;
-fun distemper_V : V ;
-fun whimper_V : V ;
-fun simper_V : V ;
-fun pepper_V : V ;
-fun skipper_V : V ;
-fun copper_V : V ;
-fun scupper_V : V ;
-fun scarper_V : V ;
-fun whisper_V : V ;
-fun prosper_V : V ;
-fun cater_V : V ;
-fun crater_1_V : V ;
-fun water_V : V ;
-fun crater_2_V : V ;
-fun teeter_V : V ;
-fun peter_V : V ;
-fun deter_V : V ;
-fun lighter_V : V ;
-fun slaughter_V : V ;
-fun loiter_V : V ;
-fun alter_V : V ;
-fun falter_V : V ;
-fun palter_V : V ;
-fun shelter_V : V ;
-fun welter_V : V ;
-fun swelter_V : V ;
-fun filter_V : V ;
-fun banter_V : V ;
-fun canter_V : V ;
-fun enter_V : V ;
-fun 're-enter_V' : V ;
-fun center_V : V ;
-fun splinter_V : V ;
-fun winter_V : V ;
-fun saunter_V : V ;
-fun counter_V : V ;
-fun encounter_V : V ;
-fun inter_V : V ;
-fun disinter_V : V ;
-fun barter_V : V ;
-fun charter_V : V ;
-fun quarter_V : V ;
-fun plaster_V : V ;
-fun replaster_V : V ;
-fun master_V : V ;
-fun overmaster_V : V ;
-fun fester_V : V ;
-fun pester_V : V ;
-fun sequester_V : V ;
-fun register_V : V ;
-fun 'pre-register_V' : V ;
-fun blister_V : V ;
-fun glister_V : V ;
-fun minister_V : V ;
-fun administer_V : V ;
-fun cloister_V : V ;
-fun bolster_V : V ;
-fun upholster_V : V ;
-fun foster_V : V ;
-fun filibuster_V : V ;
-fun bluster_V : V ;
-fun cluster_V : V ;
-fun fluster_V : V ;
-fun muster_V : V ;
-fun batter_V : V ;
-fun scatter_V : V ;
-fun chatter_V : V ;
-fun shatter_V : V ;
-fun clatter_V : V ;
-fun flatter_V : V ;
-fun matter_V : V ;
-fun natter_V : V ;
-fun patter_V : V ;
-fun spatter_V : V ;
-fun better_V : V ;
-fun fetter_V : V ;
-fun embitter_V : V ;
-fun skitter_V : V ;
-fun litter_V : V ;
-fun glitter_V : V ;
-fun fritter_V : V ;
-fun titter_V : V ;
-fun twitter_V : V ;
-fun potter_V : V ;
-fun totter_V : V ;
-fun utter_V : V ;
-fun butter_V : V ;
-fun gutter_V : V ;
-fun shutter_V : V ;
-fun clutter_V : V ;
-fun flutter_V : V ;
-fun splutter_V : V ;
-fun mutter_V : V ;
-fun putter_V : V ;
-fun sputter_V : V ;
-fun stutter_V : V ;
-fun neuter_V : V ;
-fun beleaguer_V : V ;
-fun lacquer_V : V ;
-fun chequer_V : V ;
-fun conquer_V : V ;
-fun beaver_V : V ;
-fun palaver_V : V ;
-fun slaver_V : V ;
-fun quaver_V : V ;
-fun waver_V : V ;
-fun aver_V : V ;
-fun lever_V : V ;
-fun sever_V : V ;
-fun dissever_V : V ;
-fun waiver_V : V ;
-fun shiver_V : V ;
-fun deliver_V : V ;
-fun sliver_V : V ;
-fun quiver_V : V ;
-fun silver_V : V ;
-fun cover_V : V ;
-fun 're-cover_V' : V ;
-fun recover_V : V ;
-fun uncover_V : V ;
-fun discover_V : V ;
-fun rediscover_V : V ;
-fun hover_V : V ;
-fun hoover_V : V ;
-fun maneuver_V : V ;
-fun skewer_V : V ;
-fun cower_V : V ;
-fun dower_V : V ;
-fun shower_V : V ;
-fun lower_V : V ;
-fun flower_V : V ;
-fun deflower_V : V ;
-fun glower_V : V ;
-fun power_V : V ;
-fun empower_V : V ;
-fun overpower_V : V ;
-fun tower_V : V ;
-fun answer_V : V ;
-fun layer_V : V ;
-fun air_V : V ;
-fun chair_V : V ;
-fun pair_V : V ;
-fun repair_V : V ;
-fun impair_V : V ;
-fun despair_V : V ;
-fun whir_V : V ;
-fun stir_V : V ;
-fun bestir_V : V ;
-fun labor_V : V ;
-fun neighbor_V : V ;
-fun abhor_V : V ;
-fun anchor_V : V ;
-fun 'co-author_V' : V ;
-fun major_V : V ;
-fun tailor_V : V ;
-fun color_1_V : V ;
-fun color_2_V : V ;
-fun rumor_V : V ;
-fun honor_V : V ;
-fun floor_V : V ;
-fun moor_V : V ;
-fun mirror_V : V ;
-fun censor_V : V ;
-fun sponsor_V : V ;
-fun 'co-sponsor_V' : V ;
-fun hector_V : V ;
-fun doctor_V : V ;
-fun factor_V : V ;
-fun monitor_V : V ;
-fun motor_V : V ;
-fun tutor_V : V ;
-fun favor_V : V ;
-fun razor_V : V ;
-fun err_V : V ;
-fun whirr_V : V ;
-fun occurr_V : V ;
-fun purr_V : V ;
-fun occur_V : V ;
-fun recur_V : V ;
-fun incur_V : V ;
-fun concur_V : V ;
-fun chauffeur_V : V ;
-fun augur_V : V ;
-fun blur_V : V ;
-fun slur_V : V ;
-fun demur_V : V ;
-fun murmur_V : V ;
-fun labour_V : V ;
-fun belabour_V : V ;
-fun neighbour_V : V ;
-fun harbour_V : V ;
-fun succour_V : V ;
-fun scour_V : V ;
-fun lour_V : V ;
-fun flour_V : V ;
-fun colour_V : V ;
-fun discolour_V : V ;
-fun clamour_V : V ;
-fun enamour_V : V ;
-fun humour_V : V ;
-fun rumour_V : V ;
-fun honour_V : V ;
-fun dishonour_V : V ;
-fun pour_V : V ;
-fun sour_V : V ;
-fun tour_V : V ;
-fun detour_V : V ;
-fun contour_V : V ;
-fun endeavour_V : V ;
-fun favour_V : V ;
-fun disfavour_V : V ;
-fun flavour_V : V ;
-fun savour_V : V ;
-fun devour_V : V ;
-fun spur_V : V ;
-fun martyr_V : V ;
-fun bear_V : V ;
-fun overbear_V : V ;
-fun forbear_V : V ;
-fun tear_V : V ;
-fun wear_2_V : V ;
-fun swear_2_V : V ;
-fun foreswear_V : V ;
-fun forswear_V : V ;
-fun outwear_V : V ;
-fun précis_V : V ;
-fun rendezvous_V : V ;
-fun gas_V : V ;
-fun bias_V : V ;
-fun trellis_V : V ;
-fun balls_V : V ;
-fun summons_V : V ;
-fun class_V : V ;
-fun outclass_V : V ;
-fun glass_V : V ;
-fun mass_V : V ;
-fun amass_V : V ;
-fun pass_V : V ;
-fun repass_V : V ;
-fun compass_V : V ;
-fun encompass_V : V ;
-fun surpass_V : V ;
-fun trespass_V : V ;
-fun bypass_V : V ;
-fun harass_V : V ;
-fun grass_V : V ;
-fun embarrass_V : V ;
-fun disembarrass_V : V ;
-fun canvass_V : V ;
-fun access_V : V ;
-fun recess_V : V ;
-fun process_V : V ;
-fun fess_V : V ;
-fun confess_V : V ;
-fun profess_V : V ;
-fun bless_V : V ;
-fun mess_V : V ;
-fun harness_V : V ;
-fun witness_V : V ;
-fun caress_V : V ;
-fun dress_V : V ;
-fun 'top-dress_V' : V ;
-fun address_V : V ;
-fun 're-address_V' : V ;
-fun redress_V : V ;
-fun undress_V : V ;
-fun overdress_V : V ;
-fun regress_V : V ;
-fun digress_V : V ;
-fun progress_V : V ;
-fun retrogress_V : V ;
-fun transgress_V : V ;
-fun press_V : V ;
-fun depress_V : V ;
-fun repress_V : V ;
-fun impress_V : V ;
-fun compress_V : V ;
-fun decompress_V : V ;
-fun oppress_V : V ;
-fun suppress_V : V ;
-fun express_V : V ;
-fun stress_V : V ;
-fun distress_V : V ;
-fun buttress_V : V ;
-fun obsess_V : V ;
-fun assess_V : V ;
-fun reassess_V : V ;
-fun possess_V : V ;
-fun repossess_V : V ;
-fun prepossess_V : V ;
-fun dispossess_V : V ;
-fun guess_V : V ;
-fun 'second-guess_V' : V ;
-fun hiss_V : V ;
-fun kiss_V : V ;
-fun bliss_V : V ;
-fun miss_V : V ;
-fun premiss_V : V ;
-fun dismiss_V : V ;
-fun piss_V : V ;
-fun boss_V : V ;
-fun emboss_V : V ;
-fun doss_V : V ;
-fun gloss_V : V ;
-fun cross_V : V ;
-fun 'double-cross_V' : V ;
-fun 'criss-cross_V' : V ;
-fun uncross_V : V ;
-fun crisscross_V : V ;
-fun gross_V : V ;
-fun engross_V : V ;
-fun toss_V : V ;
-fun degauss_V : V ;
-fun concuss_V : V ;
-fun discuss_V : V ;
-fun fuss_V : V ;
-fun muss_V : V ;
-fun truss_V : V ;
-fun suss_V : V ;
-fun bus_V : V ;
-fun focus_V : V ;
-fun refocus_V : V ;
-fun nonplus_2_V : V ;
-fun nonplus_1_V : V ;
-fun chorus_V : V ;
-fun bat_V : V ;
-fun combat_V : V ;
-fun beat_2_V : V ;
-fun defeat_V : V ;
-fun heat_V : V ;
-fun 'steam-heat_V' : V ;
-fun cheat_V : V ;
-fun preheat_V : V ;
-fun overheat_V : V ;
-fun bleat_V : V ;
-fun pleat_V : V ;
-fun repeat_V : V ;
-fun treat_V : V ;
-fun 'ill-treat_V' : V ;
-fun retreat_V : V ;
-fun maltreat_V : V ;
-fun entreat_V : V ;
-fun mistreat_V : V ;
-fun seat_V : V ;
-fun reseat_V : V ;
-fun unseat_V : V ;
-fun sweat_V : V ;
-fun fat_V : V ;
-fun chat_V : V ;
-fun mat_V : V ;
-fun boat_V : V ;
-fun coat_V : V ;
-fun float_V : V ;
-fun refloat_V : V ;
-fun gloat_V : V ;
-fun pat_V : V ;
-fun spat_V : V ;
-fun rat_V : V ;
-fun drat_V : V ;
-fun sat_V : V ;
-fun tat_V : V ;
-fun photostat_V : V ;
-fun squat_V : V ;
-fun swat_V : V ;
-fun doubt_V : V ;
-fun act_V : V ;
-fun redact_V : V ;
-fun react_V : V ;
-fun overreact_V : V ;
-fun enact_V : V ;
-fun impact_V : V ;
-fun compact_V : V ;
-fun underact_V : V ;
-fun interact_V : V ;
-fun counteract_V : V ;
-fun overact_V : V ;
-fun refract_V : V ;
-fun diffract_V : V ;
-fun subtract_V : V ;
-fun detract_V : V ;
-fun retract_V : V ;
-fun contract_V : V ;
-fun subcontract_V : V ;
-fun protract_V : V ;
-fun abstract_V : V ;
-fun distract_V : V ;
-fun attract_V : V ;
-fun extract_V : V ;
-fun transact_V : V ;
-fun contact_V : V ;
-fun exact_V : V ;
-fun defect_V : V ;
-fun affect_V : V ;
-fun effect_V : V ;
-fun infect_V : V ;
-fun disinfect_V : V ;
-fun perfect_V : V ;
-fun object_V : V ;
-fun subject_V : V ;
-fun eject_V : V ;
-fun deject_V : V ;
-fun reject_V : V ;
-fun inject_V : V ;
-fun project_V : V ;
-fun interject_V : V ;
-fun elect_V : V ;
-fun 're-elect_V' : V ;
-fun select_V : V ;
-fun deflect_V : V ;
-fun reflect_V : V ;
-fun inflect_V : V ;
-fun genuflect_V : V ;
-fun neglect_V : V ;
-fun collect_V : V ;
-fun recollect_V : V ;
-fun connect_V : V ;
-fun interconnect_V : V ;
-fun disconnect_V : V ;
-fun respect_V : V ;
-fun inspect_V : V ;
-fun prospect_V : V ;
-fun introspect_V : V ;
-fun suspect_V : V ;
-fun expect_V : V ;
-fun erect_V : V ;
-fun direct_V : V ;
-fun misdirect_V : V ;
-fun correct_V : V ;
-fun resurrect_V : V ;
-fun bisect_V : V ;
-fun trisect_V : V ;
-fun vivisect_V : V ;
-fun intersect_V : V ;
-fun dissect_V : V ;
-fun detect_V : V ;
-fun protect_V : V ;
-fun contradict_V : V ;
-fun addict_V : V ;
-fun predict_V : V ;
-fun indict_V : V ;
-fun reindict_V : V ;
-fun interdict_V : V ;
-fun afflict_V : V ;
-fun inflict_V : V ;
-fun conflict_V : V ;
-fun depict_V : V ;
-fun restrict_V : V ;
-fun derestrict_V : V ;
-fun constrict_V : V ;
-fun evict_V : V ;
-fun convict_V : V ;
-fun reconvict_V : V ;
-fun mulct_V : V ;
-fun concoct_V : V ;
-fun abduct_V : V ;
-fun deduct_V : V ;
-fun induct_V : V ;
-fun conduct_V : V ;
-fun misconduct_V : V ;
-fun obstruct_V : V ;
-fun 'self-destruct_V' : V ;
-fun instruct_V : V ;
-fun construct_V : V ;
-fun reconstruct_V : V ;
-fun bet_V : V ;
-fun abet_V : V ;
-fun gibbet_V : V ;
-fun sleet_V : V ;
-fun meet_1_V : V ;
-fun greet_V : V ;
-fun tweet_V : V ;
-fun buffet_V : V ;
-fun get_1_V : V ;
-fun fidget_V : V ;
-fun budget_V : V ;
-fun target_1_V : V ;
-fun target_2_V : V ;
-fun ricochet_V : V ;
-fun crochet_V : V ;
-fun ratchet_V : V ;
-fun whet_V : V ;
-fun diet_V : V ;
-fun quiet_1_V : V ;
-fun disquiet_V : V ;
-fun quiet_2_V : V ;
-fun jet_V : V ;
-fun racket_V : V ;
-fun bracket_V : V ;
-fun picket_V : V ;
-fun ticket_V : V ;
-fun docket_V : V ;
-fun pocket_V : V ;
-fun rocket_V : V ;
-fun skyrocket_V : V ;
-fun bucket_1_V : V ;
-fun bucket_2_V : V ;
-fun blanket_V : V ;
-fun junket_V : V ;
-fun market_V : V ;
-fun valet_V : V ;
-fun billet_V : V ;
-fun fillet_V : V ;
-fun met_V : V ;
-fun plummet_V : V ;
-fun net_V : V ;
-fun bayonet_V : V ;
-fun pet_V : V ;
-fun trumpet_V : V ;
-fun carpet_V : V ;
-fun ret_V : V ;
-fun fret_V : V ;
-fun regret_V : V ;
-fun interpret_V : V ;
-fun reinterpret_V : V ;
-fun misinterpret_V : V ;
-fun ferret_1_V : V ;
-fun ferret_2_V : V ;
-fun set_2_V : V ;
-fun reset_2_V : V ;
-fun closet_V : V ;
-fun cosset_V : V ;
-fun banquet_V : V ;
-fun vet_V : V ;
-fun rivet_1_V : V ;
-fun rivet_2_V : V ;
-fun covet_V : V ;
-fun wet_V : V ;
-fun raft_V : V ;
-fun craft_V : V ;
-fun draft_V : V ;
-fun graft_V : V ;
-fun engraft_V : V ;
-fun ingraft_V : V ;
-fun waft_V : V ;
-fun gift_V : V ;
-fun shift_V : V ;
-fun lift_V : V ;
-fun shoplift_V : V ;
-fun uplift_V : V ;
-fun drift_V : V ;
-fun sift_V : V ;
-fun loft_V : V ;
-fun yacht_V : V ;
-fun freight_V : V ;
-fun weight_V : V ;
-fun light_1_V : V ;
-fun alight_V : V ;
-fun blight_V : V ;
-fun floodlight_V : V ;
-fun delight_V : V ;
-fun flight_V : V ;
-fun highlight_V : V ;
-fun plight_V : V ;
-fun slight_V : V ;
-fun spotlight_V : V ;
-fun knight_V : V ;
-fun right_V : V ;
-fun fright_V : V ;
-fun copyright_V : V ;
-fun sight_V : V ;
-fun draught_V : V ;
-fun brought_V : V ;
-fun bait_V : V ;
-fun plait_V : V ;
-fun wait_V : V ;
-fun await_V : V ;
-fun inhabit_V : V ;
-fun cohabit_V : V ;
-fun rabbit_V : V ;
-fun debit_V : V ;
-fun inhibit_V : V ;
-fun prohibit_1_V : V ;
-fun exhibit_V : V ;
-fun prohibit_2_V : V ;
-fun orbit_V : V ;
-fun elicit_V : V ;
-fun solicit_V : V ;
-fun edit_V : V ;
-fun subedit_V : V ;
-fun credit_V : V ;
-fun accredit_V : V ;
-fun discredit_V : V ;
-fun 'co-edit_V' : V ;
-fun audit_V : V ;
-fun counterfeit_V : V ;
-fun forfeit_V : V ;
-fun surfeit_V : V ;
-fun fit_2_V : V ;
-fun benefit_V : V ;
-fun befit_V : V ;
-fun refit_V : V ;
-fun discomfit_V : V ;
-fun unfit_V : V ;
-fun profit_V : V ;
-fun retrofit_V : V ;
-fun outfit_V : V ;
-fun shit_V : V ;
-fun bullshit_V : V ;
-fun kit_V : V ;
-fun flit_V : V ;
-fun submit_V : V ;
-fun admit_V : V ;
-fun readmit_V : V ;
-fun emit_V : V ;
-fun remit_V : V ;
-fun limit_V : V ;
-fun delimit_V : V ;
-fun commit_V : V ;
-fun recommit_V : V ;
-fun overcommit_V : V ;
-fun vomit_V : V ;
-fun omit_V : V ;
-fun permit_V : V ;
-fun transmit_V : V ;
-fun retransmit_V : V ;
-fun manumit_V : V ;
-fun knit_V : V ;
-fun exploit_V : V ;
-fun pit_V : V ;
-fun inherit_V : V ;
-fun disinherit_V : V ;
-fun merit_V : V ;
-fun grit_V : V ;
-fun spirit_1_V : V ;
-fun dispirit_V : V ;
-fun spirit_2_V : V ;
-fun sit_2_V : V ;
-fun visit_V : V ;
-fun revisit_V : V ;
-fun posit_V : V ;
-fun deposit_V : V ;
-fun 'short-circuit_V' : V ;
-fun quit_2_V : V ;
-fun acquit_V : V ;
-fun bruit_V : V ;
-fun recruit_V : V ;
-fun fruit_V : V ;
-fun suit_1_V : V ;
-fun suit_2_V : V ;
-fun intuit_V : V ;
-fun twit_V : V ;
-fun outwit_V : V ;
-fun exit_V : V ;
-fun halt_V : V ;
-fun asphalt_V : V ;
+fun malingerer_N : N ;
+fun malingering_N : N ;
+fun malinois_N : N ;
+fun mallard_N : N ;
+fun malleability_N : N ;
+fun malleable_A : A ;
+fun mallee_N : N ;
+fun mallet_N : N ;
+fun malleus_N : N ;
+fun mallow_N : N ;
+fun malmsey_N : N ;
+fun malnourished_A : A ;
+fun malnutrition_N : N ;
+fun malocclusion_N : N ;
+fun malodor_N : N ;
+fun malodorous_A : A ;
+fun malodorousness_N : N ;
+fun malope_N : N ;
+fun malposed_A : A ;
+fun malposition_N : N ;
+fun malpractice_N : N ;
+fun malt_N : N ;
fun malt_V : V ;
-fun salt_V : V ;
-fun desalt_V : V ;
-fun exalt_V : V ;
-fun belt_V : V ;
-fun melt_V : V ;
-fun smelt_V : V ;
-fun pelt_V : V ;
-fun jilt_V : V ;
-fun lilt_V : V ;
-fun silt_V : V ;
-fun tilt_V : V ;
-fun quilt_V : V ;
-fun wilt_V : V ;
-fun bolt_V : V ;
-fun unbolt_V : V ;
-fun jolt_V : V ;
-fun revolt_V : V ;
-fun fault_V : V ;
-fun default_V : V ;
-fun somersault_V : V ;
-fun assault_V : V ;
-fun vault_V : V ;
-fun moult_V : V ;
-fun catapult_V : V ;
-fun result_V : V ;
-fun insult_V : V ;
-fun consult_V : V ;
-fun exult_V : V ;
-fun bant_V : V ;
-fun cant_V : V ;
-fun decant_V : V ;
-fun recant_V : V ;
-fun scant_V : V ;
-fun descant_V : V ;
-fun chant_V : V ;
-fun enchant_V : V ;
-fun disenchant_V : V ;
-fun plant_V : V ;
-fun replant_V : V ;
-fun implant_V : V ;
-fun supplant_V : V ;
-fun overplant_V : V ;
-fun transplant_V : V ;
-fun slant_V : V ;
-fun tenant_V : V ;
-fun covenant_V : V ;
-fun pant_V : V ;
-fun rant_V : V ;
-fun grant_V : V ;
-fun warrant_V : V ;
-fun levant_V : V ;
-fun gallivant_V : V ;
-fun want_V : V ;
-fun accent_V : V ;
-fun scent_V : V ;
-fun dent_V : V ;
-fun indent_V : V ;
-fun orient_V : V ;
-fun reorient_V : V ;
-fun disorient_V : V ;
-fun relent_V : V ;
-fun lament_V : V ;
-fun ornament_V : V ;
-fun cement_V : V ;
-fun implement_V : V ;
-fun complement_V : V ;
-fun supplement_V : V ;
-fun fragment_V : V ;
-fun segment_V : V ;
-fun augment_V : V ;
-fun regiment_V : V ;
-fun compliment_V : V ;
-fun experiment_V : V ;
-fun comment_V : V ;
-fun foment_V : V ;
-fun ferment_V : V ;
-fun torment_V : V ;
-fun document_V : V ;
-fun repent_V : V ;
-fun rent_V : V ;
-fun absent_V : V ;
-fun resent_V : V ;
-fun present_V : V ;
-fun represent_V : V ;
-fun misrepresent_V : V ;
-fun consent_V : V ;
-fun assent_V : V ;
-fun dissent_V : V ;
-fun patent_V : V ;
-fun content_V : V ;
-fun discontent_V : V ;
-fun frequent_V : V ;
-fun vent_V : V ;
-fun prevent_V : V ;
-fun circumvent_V : V ;
-fun invent_V : V ;
-fun reinvent_V : V ;
-fun faint_V : V ;
-fun paint_V : V ;
-fun repaint_V : V ;
-fun taint_V : V ;
-fun acquaint_V : V ;
-fun feint_V : V ;
-fun hint_V : V ;
-fun glint_V : V ;
-fun mint_V : V ;
-fun joint_V : V ;
-fun disjoint_V : V ;
-fun anoint_V : V ;
-fun point_V : V ;
-fun 'pin-point_V' : V ;
-fun repoint_V : V ;
-fun pinpoint_V : V ;
-fun appoint_V : V ;
-fun reappoint_V : V ;
-fun disappoint_V : V ;
-fun outpoint_V : V ;
-fun print_V : V ;
-fun reprint_V : V ;
-fun imprint_V : V ;
-fun overprint_V : V ;
-fun sprint_V : V ;
-fun misprint_V : V ;
-fun tint_V : V ;
-fun stint_V : V ;
-fun squint_V : V ;
-fun front_V : V ;
-fun affront_V : V ;
-fun confront_V : V ;
-fun daunt_V : V ;
-fun haunt_V : V ;
-fun jaunt_V : V ;
-fun flaunt_V : V ;
-fun taunt_V : V ;
-fun vaunt_V : V ;
-fun hunt_V : V ;
-fun shunt_V : V ;
-fun foxhunt_V : V ;
-fun blunt_V : V ;
-fun count_V : V ;
-fun 're-count_V' : V ;
-fun account_V : V ;
-fun recount_V : V ;
-fun discount_V : V ;
-fun miscount_V : V ;
-fun mount_V : V ;
-fun amount_V : V ;
-fun remount_V : V ;
-fun surmount_V : V ;
-fun dismount_V : V ;
-fun punt_V : V ;
-fun grunt_V : V ;
-fun stunt_V : V ;
-fun dot_V : V ;
-fun hot_V : V ;
-fun shot_V : V ;
-fun riot_V : V ;
-fun jot_V : V ;
-fun blot_V : V ;
-fun clot_V : V ;
-fun pilot_V : V ;
-fun ballot_V : V ;
-fun allot_V : V ;
-fun plot_V : V ;
-fun counterplot_V : V ;
-fun slot_V : V ;
-fun knot_V : V ;
-fun boot_V : V ;
-fun scoot_V : V ;
-fun foot_V : V ;
-fun hotfoot_V : V ;
-fun pussyfoot_V : V ;
-fun hoot_V : V ;
-fun loot_V : V ;
-fun moot_V : V ;
-fun root_V : V ;
-fun uproot_V : V ;
-fun soot_V : V ;
-fun toot_V : V ;
-fun pot_V : V ;
-fun repot_V : V ;
-fun spot_V : V ;
-fun rot_V : V ;
-fun trot_V : V ;
-fun globetrot_V : V ;
-fun tot_V : V ;
-fun quot_V : V ;
-fun pivot_V : V ;
-fun swot_V : V ;
-fun adapt_V : V ;
-fun accept_V : V ;
-fun intercept_V : V ;
-fun except_V : V ;
-fun receipt_V : V ;
-fun conscript_V : V ;
-fun sculpt_V : V ;
-fun 'pre-empt_V' : V ;
-fun tempt_V : V ;
-fun attempt_V : V ;
-fun exempt_V : V ;
-fun prompt_V : V ;
-fun opt_V : V ;
-fun 'co-opt_V' : V ;
-fun adopt_V : V ;
-fun erupt_V : V ;
-fun bankrupt_V : V ;
-fun interrupt_V : V ;
-fun corrupt_V : V ;
-fun disrupt_V : V ;
-fun encrypt_V : V ;
-fun cart_V : V ;
-fun dart_V : V ;
-fun fart_V : V ;
-fun chart_V : V ;
-fun smart_V : V ;
-fun outsmart_V : V ;
-fun part_V : V ;
-fun depart_V : V ;
-fun impart_V : V ;
-fun tart_V : V ;
-fun start_V : V ;
-fun restart_V : V ;
-fun thwart_V : V ;
-fun concert_V : V ;
-fun disconcert_V : V ;
-fun alert_V : V ;
-fun desert_V : V ;
-fun insert_V : V ;
-fun assert_V : V ;
-fun reassert_V : V ;
-fun avert_V : V ;
-fun subvert_V : V ;
-fun advert_V : V ;
-fun animadvert_V : V ;
-fun revert_V : V ;
-fun divert_V : V ;
-fun invert_V : V ;
-fun convert_V : V ;
-fun introvert_V : V ;
-fun controvert_V : V ;
-fun pervert_V : V ;
-fun exert_V : V ;
-fun overexert_V : V ;
-fun skirt_V : V ;
-fun flirt_V : V ;
-fun spirt_V : V ;
-fun squirt_V : V ;
-fun abort_V : V ;
-fun escort_V : V ;
-fun comfort_V : V ;
-fun short_V : V ;
-fun exhort_V : V ;
-fun snort_V : V ;
-fun port_V : V ;
-fun deport_V : V ;
-fun report_V : V ;
-fun import_V : V ;
-fun comport_V : V ;
-fun support_V : V ;
-fun purport_V : V ;
-fun sport_V : V ;
-fun disport_V : V ;
-fun transport_V : V ;
-fun export_V : V ;
-fun sort_V : V ;
-fun resort_V : V ;
-fun consort_V : V ;
-fun retort_V : V ;
-fun contort_V : V ;
-fun distort_V : V ;
-fun extort_V : V ;
-fun cavort_V : V ;
-fun blurt_V : V ;
-fun court_V : V ;
-fun spurt_V : V ;
-fun cast_2_V : V ;
-fun broadcast_V : V ;
-fun forecast_V : V ;
-fun feast_V : V ;
-fun breast_V : V ;
-fun fast_V : V ;
-fun breakfast_V : V ;
-fun flabbergast_V : V ;
-fun last_V : V ;
-fun blast_V : V ;
-fun sandblast_V : V ;
-fun ballast_V : V ;
-fun outlast_V : V ;
-fun boast_V : V ;
-fun coast_V : V ;
-fun roast_V : V ;
-fun toast_V : V ;
-fun contrast_V : V ;
-fun best_V : V ;
+fun malted_N : N ;
+fun maltese_A : A ;
+fun maltese_N : N ;
+fun maltha_N : N ;
+fun malthusian_A : A ;
+fun maltose_N : N ;
+fun maltreat_V : V ;
+fun maltreatment_N : N ;
+fun maltster_N : N ;
+fun malvasia_N : N ;
+fun malversation_N : N ;
+fun mama_N : N ;
+fun mamba_N : N ;
+fun mambo_N : N ;
+fun mamey_N : N ;
+fun mamma_N : N ;
+fun mammal_N : N ;
+fun mammalian_A : A ;
+fun mammalogist_N : N ;
+fun mammalogy_N : N ;
+fun mammary_A : A ;
+fun mammillaria_N : N ;
+fun mammogram_N : N ;
+fun mammography_N : N ;
+fun mammon_N : N ;
+fun mammoth_N : N ;
+fun mammothermography_N : N ;
+fun mammy_N : N ;
+fun mamo_N : N ;
+fun man_N : N ;
+fun man_V : V ;
+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_V : V ;
+fun manage_V : V ;
+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 managership_N : N ;
+fun manakin_N : N ;
+fun manana_N : N ;
+fun manat_N : N ;
+fun manatee_N : N ;
+fun mancunian_A : A ;
+fun mancunian_N : N ;
+fun mandala_N : N ;
+fun mandamus_N : N ;
+fun mandarin_N : N ;
+fun mandatary_N : N ;
+fun mandate_N : N ;
+fun mandate_V : V ;
+fun mandator_N : N ;
+fun mandatory_A : A ;
+fun mandatory_N : N ;
+fun mandible_N : N ;
+fun mandibular_A : A ;
+fun mandibulate_A : A ;
+fun mandibulofacial_A : A ;
+fun mandola_N : N ;
+fun mandolin_N : N ;
+fun mandragora_N : N ;
+fun mandrake_N : N ;
+fun mandrill_N : N ;
+fun mane_N : N ;
+fun maneuver_N : N ;
+fun maneuver_V : V ;
+fun maneuverability_N : N ;
+fun maneuverable_A : A ;
+fun maneuverer_N : N ;
+fun manful_A : A ;
+fun manfulness_N : N ;
+fun mangabey_N : N ;
+fun manganate_N : N ;
+fun manganese_N : N ;
+fun manganite_N : N ;
+fun mange_N : N ;
+fun mangel_wurzel_N : N ;
+fun manger_N : N ;
+fun mangle_N : N ;
+fun mangle_V : V ;
+fun manglietia_N : N ;
+fun mango_N : N ;
+fun mangosteen_N : N ;
+fun mangrove_N : N ;
+fun mangy_A : A ;
+fun manhandle_V : V ;
+fun manhole_N : N ;
+fun manhood_N : N ;
+fun manhunt_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 maniclike_A : A ;
+fun manicotti_N : N ;
+fun manicure_N : N ;
+fun manicure_V : V ;
+fun manicurist_N : N ;
+fun manifest_A : A ;
+fun manifest_N : N ;
fun manifest_V : V ;
-fun infest_V : V ;
-fun disinfest_V : V ;
-fun suggest_V : V ;
-fun digest_V : V ;
-fun predigest_V : V ;
-fun ingest_V : V ;
-fun jest_V : V ;
-fun molest_V : V ;
-fun nest_V : V ;
-fun rest_V : V ;
-fun crest_V : V ;
-fun interest_V : V ;
-fun deforest_V : V ;
-fun reforest_V : V ;
-fun afforest_V : V ;
-fun 're-afforest_V' : V ;
-fun disafforest_V : V ;
-fun disforest_V : V ;
-fun arrest_V : V ;
-fun wrest_V : V ;
-fun test_V : V ;
-fun 'pre-test_V' : V ;
-fun detest_V : V ;
-fun contest_V : V ;
-fun protest_V : V ;
-fun attest_V : V ;
-fun quest_V : V ;
-fun request_V : V ;
-fun vest_V : V ;
-fun divest_V : V ;
-fun invest_V : V ;
-fun reinvest_V : V ;
-fun harvest_V : V ;
-fun list_V : V ;
-fun blacklist_V : V ;
-fun enlist_V : V ;
-fun shortlist_V : V ;
-fun mist_V : V ;
-fun demist_V : V ;
-fun foist_V : V ;
-fun hoist_V : V ;
-fun subsist_V : V ;
-fun desist_V : V ;
-fun resist_V : V ;
-fun insist_V : V ;
-fun consist_V : V ;
-fun persist_V : V ;
-fun assist_V : V ;
-fun twist_V : V ;
-fun exist_V : V ;
-fun 'pre-exist_V' : V ;
-fun 'co-exist_V' : V ;
-fun coexist_V : V ;
-fun cost_2_V : V ;
-fun accost_V : V ;
-fun host_V : V ;
-fun ghost_V : V ;
-fun boost_V : V ;
-fun roost_V : V ;
-fun post_V : V ;
-fun compost_V : V ;
-fun signpost_V : V ;
-fun frost_V : V ;
-fun defrost_V : V ;
-fun thirst_V : V ;
-fun worst_V : V ;
-fun exhaust_V : V ;
-fun bust_V : V ;
-fun dust_V : V ;
-fun disgust_V : V ;
-fun adjust_V : V ;
-fun readjust_V : V ;
-fun lust_V : V ;
-fun oust_V : V ;
-fun joust_V : V ;
-fun rust_V : V ;
-fun crust_V : V ;
-fun encrust_V : V ;
-fun thrust_2_V : V ;
-fun trust_V : V ;
-fun entrust_V : V ;
-fun intrust_V : V ;
-fun distrust_V : V ;
-fun mistrust_V : V ;
-fun nett_V : V ;
-fun boycott_V : V ;
-fun butt_V : V ;
-fun putt_V : V ;
-fun abut_V : V ;
-fun debut_V : V ;
-fun rebut_V : V ;
-fun cut_2_V : V ;
-fun gut_V : V ;
-fun shut_2_V : V ;
-fun jut_V : V ;
-fun glut_V : V ;
-fun smut_V : V ;
-fun nut_V : V ;
-fun out_V : V ;
-fun scout_V : V ;
-fun shout_V : V ;
-fun clout_V : V ;
-fun flout_V : V ;
-fun pout_V : V ;
-fun spout_V : V ;
-fun rout_V : V ;
-fun sprout_V : V ;
-fun tout_V : V ;
-fun rut_V : V ;
-fun strut_V : V ;
-fun tut_V : V ;
-fun text_V : V ;
-fun eat_V : V ;
-fun overeat_V : V ;
-fun light_2_V : V ;
-fun beat_1_V : V ;
-fun browbeat_V : V ;
-fun get_2_V : V ;
-fun beget_V : V ;
-fun forget_V : V ;
-fun meet_2_V : V ;
-fun let_V : V ;
-fun sublet_V : V ;
-fun set_1_V : V ;
-fun beset_V : V ;
-fun reset_1_V : V ;
-fun offset_V : V ;
-fun inset_V : V ;
-fun upset_V : V ;
-fun fight_V : V ;
-fun outfight_V : V ;
-fun sit_1_V : V ;
-fun babysit_V : V ;
-fun spit_1_V : V ;
-fun fit_1_V : V ;
-fun hit_V : V ;
-fun lit_V : V ;
-fun split_V : V ;
-fun slit_V : V ;
-fun spit_2_V : V ;
-fun quit_1_V : V ;
-fun shoot_V : V ;
-fun undershoot_V : V ;
-fun overshoot_V : V ;
-fun hurt_V : V ;
-fun cast_1_V : V ;
-fun telecast_V : V ;
-fun typecast_V : V ;
-fun recast_V : V ;
-fun roughcast_V : V ;
-fun miscast_V : V ;
-fun cost_1_V : V ;
-fun burst_V : V ;
-fun thrust_1_V : V ;
-fun cut_1_V : V ;
-fun undercut_V : V ;
-fun shut_1_V : V ;
-fun put_V : V ;
-fun miaou_V : V ;
-fun rev_V : V ;
-fun caw_V : V ;
-fun guffaw_V : V ;
-fun haw_V : V ;
-fun chaw_V : V ;
-fun thaw_V : V ;
-fun jaw_V : V ;
-fun claw_V : V ;
-fun flaw_V : V ;
-fun outlaw_V : V ;
-fun gnaw_V : V ;
-fun paw_V : V ;
-fun draw_1_V : V ;
-fun redraw_V : V ;
-fun straw_V : V ;
-fun saw_1_V : V ;
-fun seesaw_V : V ;
-fun whipsaw_V : V ;
-fun yaw_V : V ;
-fun mildew_V : V ;
-fun hew_V : V ;
-fun chew_V : V ;
-fun eschew_V : V ;
-fun shew_V : V ;
-fun view_V : V ;
-fun review_V : V ;
-fun preview_V : V ;
-fun interview_V : V ;
-fun skew_V : V ;
-fun clew_V : V ;
-fun slew_V : V ;
-fun mew_V : V ;
-fun renew_V : V ;
-fun spew_V : V ;
-fun brew_V : V ;
-fun crew_V : V ;
-fun screw_V : V ;
-fun unscrew_V : V ;
-fun beshrew_V : V ;
-fun strew_V : V ;
-fun bestrew_V : V ;
-fun sew_1_V : V ;
-fun oversew_1_V : V ;
-fun stew_V : V ;
-fun miaow_V : V ;
-fun bow_V : V ;
-fun elbow_V : V ;
-fun cow_V : V ;
-fun shadow_V : V ;
-fun foreshadow_V : V ;
-fun overshadow_V : V ;
-fun endow_V : V ;
-fun chow_V : V ;
-fun show_1_V : V ;
-fun low_V : V ;
-fun blow_2_V : V ;
-fun flow_V : V ;
-fun overflow_V : V ;
-fun glow_V : V ;
-fun allow_V : V ;
-fun hallow_V : V ;
-fun shallow_V : V ;
-fun sallow_V : V ;
-fun disallow_V : V ;
-fun wallow_V : V ;
-fun swallow_V : V ;
-fun bellow_V : V ;
-fun mellow_V : V ;
-fun yellow_V : V ;
-fun billow_V : V ;
-fun pillow_V : V ;
-fun follow_V : V ;
-fun hollow_V : V ;
-fun plow_V : V ;
-fun slow_V : V ;
-fun mow_V : V ;
-fun winnow_V : V ;
-fun snow_V : V ;
-fun row_V : V ;
-fun crow_V : V ;
-fun throw_2_V : V ;
-fun farrow_V : V ;
-fun harrow_V : V ;
-fun narrow_V : V ;
-fun borrow_V : V ;
-fun sorrow_V : V ;
-fun burrow_V : V ;
-fun furrow_V : V ;
-fun sow_V : V ;
-fun tow_V : V ;
-fun kotow_V : V ;
-fun stow_V : V ;
-fun bestow_V : V ;
-fun kowtow_V : V ;
-fun vow_V : V ;
-fun avow_V : V ;
-fun disavow_V : V ;
-fun powwow_V : V ;
-fun saw_2_V : V ;
-fun sew_2_V : V ;
-fun oversew_2_V : V ;
-fun show_2_V : V ;
-fun draw_2_V : V ;
-fun withdraw_V : V ;
-fun overdraw_V : V ;
-fun blow_1_V : V ;
-fun know_V : V ;
-fun foreknow_V : V ;
-fun grow_V : V ;
-fun outgrow_V : V ;
-fun throw_1_V : V ;
-fun overthrow_V : V ;
-fun ax_V : V ;
-fun poleax_V : V ;
-fun relax_V : V ;
-fun max_V : V ;
-fun climax_V : V ;
-fun coax_V : V ;
-fun hoax_V : V ;
-fun tax_V : V ;
-fun overtax_V : V ;
-fun surtax_V : V ;
-fun wax_V : V ;
-fun beeswax_V : V ;
-fun index_V : V ;
-fun 'cross-index_V' : V ;
-fun flex_V : V ;
-fun perplex_V : V ;
-fun annex_V : V ;
-fun sex_V : V ;
-fun unsex_V : V ;
-fun vex_V : V ;
-fun fix_V : V ;
-fun prefix_V : V ;
-fun affix_V : V ;
-fun transfix_V : V ;
-fun mix_V : V ;
-fun admix_V : V ;
-fun intermix_V : V ;
-fun nix_V : V ;
-fun box_V : V ;
-fun cox_V : V ;
-fun fox_V : V ;
-fun outfox_V : V ;
-fun flummox_V : V ;
-fun xerox_V : V ;
-fun savvy_V : V ;
-fun bay_V : V ;
-fun decay_V : V ;
-fun holiday_V : V ;
-fun okay_V : V ;
-fun lay_2_V : V ;
-fun belay_V : V ;
-fun delay_V : V ;
-fun flay_V : V ;
-fun allay_V : V ;
-fun play_V : V ;
-fun replay_V : V ;
-fun downplay_V : V ;
-fun overplay_V : V ;
-fun splay_V : V ;
-fun display_V : V ;
-fun outplay_V : V ;
-fun dismay_V : V ;
-fun pay_2_V : V ;
-fun overpay_2_V : V ;
-fun spay_V : V ;
-fun ray_V : V ;
-fun 'x-ray_V' : V ;
-fun bray_V : V ;
-fun fray_V : V ;
-fun defray_V : V ;
-fun gray_V : V ;
-fun foray_V : V ;
-fun pray_V : V ;
-fun spray_V : V ;
-fun array_V : V ;
-fun disarray_V : V ;
-fun betray_V : V ;
-fun portray_V : V ;
-fun stray_V : V ;
-fun assay_V : V ;
-fun essay_V : V ;
-fun naysay_V : V ;
-fun stay_V : V ;
-fun overstay_V : V ;
-fun outstay_V : V ;
-fun sway_V : V ;
-fun lay_1_V : V ;
-fun relay_V : V ;
-fun inlay_V : V ;
-fun overlay_V : V ;
-fun waylay_V : V ;
-fun pay_1_V : V ;
-fun repay_V : V ;
-fun prepay_V : V ;
-fun underpay_V : V ;
-fun overpay_1_V : V ;
-fun say_V : V ;
-fun gainsay_V : V ;
-fun unsay_V : V ;
-fun baby_V : V ;
-fun lobby_V : V ;
-fun fancy_V : V ;
-fun ready_V : V ;
-fun steady_V : V ;
-fun toady_V : V ;
-fun eddy_V : V ;
-fun muddy_V : V ;
-fun remedy_V : V ;
-fun tidy_V : V ;
-fun bandy_V : V ;
-fun candy_V : V ;
-fun embody_V : V ;
-fun disembody_V : V ;
-fun parody_V : V ;
-fun study_V : V ;
-fun understudy_V : V ;
-fun obey_V : V ;
-fun disobey_V : V ;
-fun key_V : V ;
-fun jockey_V : V ;
-fun monkey_V : V ;
-fun volley_V : V ;
-fun parley_V : V ;
-fun journey_V : V ;
-fun grey_V : V ;
-fun prey_V : V ;
-fun mosey_V : V ;
-fun curtsey_V : V ;
-fun convey_V : V ;
-fun purvey_V : V ;
-fun survey_V : V ;
-fun defy_V : V ;
-fun stupefy_V : V ;
-fun rarefy_V : V ;
-fun putrefy_V : V ;
-fun liquefy_V : V ;
-fun syllabify_V : V ;
-fun pacify_V : V ;
-fun specify_V : V ;
-fun calcify_V : V ;
-fun crucify_V : V ;
-fun edify_V : V ;
-fun acidify_V : V ;
-fun solidify_V : V ;
-fun humidify_V : V ;
-fun codify_V : V ;
-fun modify_V : V ;
-fun deify_V : V ;
-fun preachify_V : V ;
-fun speechify_V : V ;
-fun qualify_V : V ;
-fun disqualify_V : V ;
-fun uglify_V : V ;
-fun vilify_V : V ;
-fun mollify_V : V ;
-fun nullify_V : V ;
-fun amplify_V : V ;
-fun exemplify_V : V ;
-fun simplify_V : V ;
-fun oversimplify_V : V ;
-fun ramify_V : V ;
-fun mummify_V : V ;
-fun magnify_V : V ;
-fun dignify_V : V ;
-fun signify_V : V ;
-fun indemnify_V : V ;
-fun personify_V : V ;
-fun unify_V : V ;
-fun stupify_V : V ;
-fun typify_V : V ;
-fun scarify_V : V ;
-fun clarify_V : V ;
-fun verify_V : V ;
-fun transmogrify_V : V ;
-fun glorify_V : V ;
-fun terrify_V : V ;
-fun horrify_V : V ;
-fun electrify_V : V ;
-fun petrify_V : V ;
-fun vitrify_V : V ;
-fun purify_V : V ;
-fun gasify_V : V ;
-fun falsify_V : V ;
-fun emulsify_V : V ;
-fun intensify_V : V ;
-fun versify_V : V ;
-fun diversify_V : V ;
-fun classify_V : V ;
-fun declassify_V : V ;
-fun reclassify_V : V ;
-fun ossify_V : V ;
-fun beatify_V : V ;
-fun ratify_V : V ;
-fun gratify_V : V ;
-fun stratify_V : V ;
-fun rectify_V : V ;
-fun sanctify_V : V ;
-fun fructify_V : V ;
-fun stultify_V : V ;
-fun quantify_V : V ;
-fun identify_V : V ;
-fun notify_V : V ;
-fun certify_V : V ;
-fun fortify_V : V ;
-fun mortify_V : V ;
-fun testify_V : V ;
-fun justify_V : V ;
-fun mystify_V : V ;
-fun prettify_V : V ;
-fun beautify_V : V ;
-fun revivify_V : V ;
-fun satisfy_V : V ;
-fun dissatisfy_V : V ;
-fun moggy_V : V ;
-fun atrophy_V : V ;
-fun shy_V : V ;
-fun sky_V : V ;
-fun rely_V : V ;
-fun fly_2_V : V ;
-fun outfly_V : V ;
-fun ally_V : V ;
-fun dally_V : V ;
-fun 'dilly-dally_V' : V ;
-fun shillyshally_V : V ;
-fun rally_V : V ;
-fun sally_V : V ;
-fun tally_V : V ;
-fun belly_V : V ;
-fun jelly_V : V ;
-fun jolly_V : V ;
-fun bully_V : V ;
-fun sully_V : V ;
-fun ply_V : V ;
-fun reply_V : V ;
-fun multiply_V : V ;
-fun imply_V : V ;
-fun comply_V : V ;
-fun apply_V : V ;
-fun misapply_V : V ;
-fun supply_V : V ;
-fun 're-supply_V' : V ;
-fun stymy_V : V ;
-fun accompany_V : V ;
-fun deny_V : V ;
-fun mutiny_V : V ;
-fun whinny_V : V ;
-fun pony_V : V ;
-fun decoy_V : V ;
-fun joy_V : V ;
-fun enjoy_V : V ;
-fun cloy_V : V ;
-fun alloy_V : V ;
-fun deploy_V : V ;
-fun redeploy_V : V ;
-fun employ_V : V ;
-fun annoy_V : V ;
-fun destroy_V : V ;
-fun toy_V : V ;
-fun buoy_V : V ;
-fun convoy_V : V ;
-fun copy_V : V ;
-fun photocopy_V : V ;
-fun spy_V : V ;
-fun espy_V : V ;
-fun occupy_V : V ;
-fun preoccupy_V : V ;
-fun weary_V : V ;
-fun vary_V : V ;
-fun cry_V : V ;
-fun decry_V : V ;
-fun descry_V : V ;
-fun dry_V : V ;
-fun 'rough-dry_V' : V ;
-fun 'spin-dry_V' : V ;
-fun 'drip-dry_V' : V ;
-fun 'blow-dry_V' : V ;
-fun query_V : V ;
-fun fry_V : V ;
-fun glory_V : V ;
-fun pillory_V : V ;
-fun pry_V : V ;
-fun carry_V : V ;
-fun 'hand-carry_V' : V ;
-fun miscarry_V : V ;
-fun harry_V : V ;
+fun manifestation_N : N ;
+fun manifesto_N : N ;
+fun manifold_A : A ;
+fun manifold_N : N ;
+fun manifold_V : V ;
+fun manikin_N : N ;
+fun manila_N : N ;
+fun manilla_N : N ;
+fun manipulability_N : N ;
+fun manipulate_V : V ;
+fun manipulation_N : N ;
+fun manipulative_A : A ;
+fun manipulator_N : N ;
+fun maniraptor_N : N ;
+fun mankind_N : N ;
+fun manky_A : A ;
+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 manners_N : N ;
+fun mannish_A : A ;
+fun mannitol_N : N ;
+fun manoeuvrability_N : N ;
+fun manoeuvrable_A : A ;
+fun manoeuvre_N : N ;
+fun manoeuvre_V : V ;
+fun manoeuvrer_N : N ;
+fun manometer_N : N ;
+fun manor_N : N ;
+fun manor_house_N : N ;
+fun manorial_A : A ;
+fun manpower_N : N ;
+fun manque_A : A ;
+fun mansard_A : A ;
+fun mansard_N : N ;
+fun manse_N : N ;
+fun manservant_N : N ;
+fun mansion_N : N ;
+fun manslaughter_N : N ;
+fun manta_N : N ;
+fun mantel_N : N ;
+fun mantelet_N : N ;
+fun mantelpiece_N : N ;
+fun manticore_N : N ;
+fun mantilla_N : N ;
+fun mantis_N : N ;
+fun mantispid_N : N ;
+fun mantissa_N : N ;
+fun mantle_N : N ;
+fun mantle_V : V ;
+fun mantra_N : N ;
+fun mantrap_N : N ;
+fun mantua_N : N ;
+fun manual_A : A ;
+fun manual_N : N ;
+fun manubrium_N : N ;
+fun manufacture_N : N ;
+fun manufacture_V : V ;
+fun manufacturer_N : N ;
+fun manul_N : N ;
+fun manumission_N : N ;
+fun manumit_V : V ;
+fun manure_N : N ;
+fun manure_V : V ;
+fun manuscript_N : N ;
+fun manx_A : A ;
+fun manx_N : N ;
+fun many_A : A ;
+fun many_sided_A : A ;
+fun manzanita_N : N ;
+fun maoism_N : N ;
+fun maoist_N : N ;
+fun maori_N : N ;
+fun map_N : N ;
+fun map_V : V ;
+fun map_reader_N : N ;
+fun mapinguari_N : N ;
+fun maple_N : N ;
+fun maple_leaf_N : N ;
+fun maplelike_A : A ;
+fun mapmaking_N : N ;
+fun mapping_N : N ;
+fun maquiladora_N : N ;
+fun maquis_N : N ;
+fun mar_V : V ;
+fun mara_N : N ;
+fun marabou_N : N ;
+fun maraca_N : N ;
+fun marang_N : N ;
+fun maranta_N : N ;
+fun marasca_N : N ;
+fun maraschino_N : N ;
+fun marasmus_N : N ;
+fun marathon_N : N ;
+fun marathoner_N : N ;
+fun maraud_V : V ;
+fun marauder_N : N ;
+fun marble_N : N ;
+fun marbled_A : A ;
+fun marbleization_N : N ;
+fun marbles_N : N ;
+fun marblewood_N : N ;
+fun marbling_N : N ;
+fun marc_N : N ;
+fun marcel_N : N ;
+fun march_V : V ;
+fun marcher_N : N ;
+fun marchioness_N : N ;
+fun mardi_gras_N : N ;
+fun mare_N : N ;
+fun margarin_N : N ;
+fun margarine_N : N ;
+fun margarita_N : N ;
+fun margate_N : N ;
+fun margay_N : N ;
+fun marge_N : N ;
+fun margin_N : N ;
+fun marginal_A : A ;
+fun marginalia_N : N ;
+fun marginalisation_N : N ;
+fun marginality_N : N ;
+fun marginalization_N : N ;
+fun marginalize_V : V ;
+fun margrave_N : N ;
+fun marguerite_N : N ;
+fun mariachi_N : N ;
+fun marigold_N : N ;
+fun marihuana_N : N ;
+fun marijuana_N : N ;
+fun marimba_N : N ;
+fun marina_N : N ;
+fun marinade_N : N ;
+fun marinade_V : V ;
+fun marinara_N : N ;
+fun marinate_V : V ;
+fun marine_A : A ;
+fun marine_N : N ;
+fun mariner_N : N ;
+fun marionette_N : N ;
+fun mariposa_N : N ;
+fun marital_A : A ;
+fun mariticide_N : N ;
+fun maritime_A : A ;
+fun marjoram_N : N ;
+fun mark_N : N ;
+fun mark_V : V ;
+fun mark_up_N : N ;
+fun marke_V : V ;
+fun marked_A : A ;
+fun marker_N : N ;
+fun market_N : N ;
+fun market_V : V ;
+fun market_cross_N : N ;
+fun market_day_N : N ;
+fun market_garden_N : N ;
+fun market_gardening_N : N ;
+fun market_square_N : N ;
+fun market_town_N : N ;
+fun marketable_A : A ;
+fun marketing_N : N ;
+fun marketplace_N : N ;
+fun markhor_N : N ;
+fun marking_N : N ;
+fun marking_ink_N : N ;
+fun marking_inks_N : N ;
+fun markka_N : N ;
+fun marksman_N : N ;
+fun marksmanship_N : N ;
+fun markup_N : N ;
+fun marl_N : N ;
+fun marlberry_N : N ;
+fun marlin_N : N ;
+fun marline_N : N ;
+fun marlinespike_N : N ;
+fun marlite_N : N ;
+fun marly_A : A ;
+fun marmalade_N : N ;
+fun marmite_N : N ;
+fun marmoreal_A : A ;
+fun marmorean_A : A ;
+fun marmoset_N : N ;
+fun marmot_N : N ;
+fun marocain_N : N ;
+fun maroon_A : A ;
+fun maroon_N : N ;
+fun maroon_V : V ;
+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_N : N ;
+fun marrow_N : N ;
+fun marrowbone_N : N ;
fun marry_V : V ;
-fun remarry_V : V ;
-fun intermarry_V : V ;
-fun parry_V : V ;
-fun tarry_V : V ;
-fun quarry_V : V ;
-fun ferry_V : V ;
-fun worry_V : V ;
-fun curry_V : V ;
-fun scurry_V : V ;
-fun hurry_V : V ;
-fun flurry_V : V ;
-fun try_V : V ;
-fun bury_V : V ;
-fun prophesy_V : V ;
-fun palsy_V : V ;
-fun gussy_V : V ;
-fun curtsy_V : V ;
-fun busy_V : V ;
-fun pity_V : V ;
-fun empty_V : V ;
-fun dirty_V : V ;
-fun travesty_V : V ;
-fun putty_V : V ;
-fun buy_2_V : V ;
-fun guy_V : V ;
-fun levy_V : V ;
-fun chivy_V : V ;
-fun envy_V : V ;
-fun divvy_V : V ;
-fun chivvy_V : V ;
-fun cozy_V : V ;
-fun dizzy_V : V ;
-fun buy_1_V : V ;
-fun 'impulse-buy_V' : V ;
-fun slay_V : V ;
+fun marsala_N : N ;
+fun marseillaise_N : N ;
+fun marseille_N : N ;
+fun marsh_N : N ;
+fun marshal_N : N ;
+fun marshal_V : V ;
+fun marshalling_yard_N : N ;
+fun marshalship_N : N ;
+fun marshmallow_N : N ;
+fun marshy_A : A ;
+fun marsupial_A : A ;
+fun marsupial_N : N ;
+fun marsupium_N : N ;
+fun mart_N : N ;
+fun marten_N : N ;
+fun martensite_N : N ;
+fun martial_A : A ;
+fun martian_A : A ;
+fun martian_N : N ;
+fun martin_N : N ;
+fun martinet_N : N ;
+fun martingale_N : N ;
+fun martini_N : N ;
+fun martynia_N : N ;
+fun martyr_N : N ;
+fun martyr_V : V ;
+fun martyrdom_N : N ;
+fun marumi_N : N ;
+fun marupa_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 marzipan_N : N ;
+fun mascara_N : N ;
+fun mascarpone_N : N ;
+fun mascot_N : N ;
+fun masculine_A : A ;
+fun masculine_N : N ;
+fun masculinity_N : N ;
+fun masculinization_N : N ;
+fun masdevallia_N : N ;
+fun maser_N : N ;
+fun mash_N : N ;
+fun mash_V : V ;
+fun masher_N : N ;
+fun mashie_N : N ;
+fun masjid_N : N ;
+fun mask_N : N ;
+fun mask_V : V ;
+fun masking_N : N ;
+fun masochism_N : N ;
+fun masochist_N : N ;
+fun masochistic_A : A ;
+fun masochistically_Adv : Adv ;
+fun mason_N : N ;
+fun masonic_A : A ;
+fun masonry_N : N ;
+fun masque_N : N ;
+fun masquerade_N : N ;
+fun masquerade_V : V ;
+fun masquerader_N : N ;
+fun mass_N : N ;
+fun mass_V : V ;
+fun mass_produce_V : V ;
+fun massacre_N : N ;
+fun massacre_V : V ;
+fun massage_N : N ;
+fun massage_V : V ;
+fun massager_N : N ;
+fun massasauga_N : N ;
+fun masse_N : N ;
+fun masseter_N : N ;
+fun masseur_N : N ;
+fun masseuse_N : N ;
+fun massicot_N : N ;
+fun massif_N : N ;
+fun massive_A : A ;
+fun massiveness_N : N ;
+fun massy_A : A ;
+fun mast_N : N ;
+fun mastaba_N : N ;
+fun mastalgia_N : N ;
+fun mastectomy_N : N ;
+fun masted_A : A ;
+fun master_N : N ;
+fun master_V : V ;
+fun master_at_arms_N : N ;
+fun master_key_N : N ;
+fun masterful_A : A ;
+fun mastering_N : N ;
+fun masterless_A : A ;
+fun masterly_A : A ;
+fun mastermind_N : N ;
+fun mastermind_V : V ;
+fun masterpiece_N : N ;
+fun mastership_N : N ;
+fun masterstroke_N : N ;
+fun mastery_N : N ;
+fun masthead_N : N ;
+fun mastic_N : N ;
+fun masticate_V : V ;
+fun mastication_N : N ;
+fun mastiff_N : N ;
+fun mastitis_N : N ;
+fun mastodon_N : N ;
+fun mastoid_A : A ;
+fun mastoid_N : N ;
+fun mastoidale_N : N ;
+fun mastoidectomy_N : N ;
+fun mastoiditis_N : N ;
+fun mastopathy_N : N ;
+fun mastopexy_N : N ;
+fun masturbate_V : V ;
+fun masturbation_N : N ;
+fun masturbator_N : N ;
+fun mat_A : A ;
+fun mat_N : N ;
+fun mat_V : V ;
+fun matador_N : N ;
+fun matai_N : N ;
+fun match_N : N ;
+fun match_V : V ;
+fun match_point_N : N ;
+fun matchboard_N : N ;
+fun matchbook_N : N ;
+fun matchbox_N : N ;
+fun matchet_N : N ;
+fun matchless_A : A ;
+fun matchlock_N : N ;
+fun matchmaker_N : N ;
+fun matchmaking_N : N ;
+fun matchstick_N : N ;
+fun matchweed_N : N ;
+fun matchwood_N : N ;
+fun mate_N : N ;
+fun mate_V : V ;
+fun mateless_A : A ;
+fun matelote_N : N ;
+fun mater_N : N ;
+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 materiality_N : N ;
+fun materialization_N : N ;
+fun materialize_V : V ;
+fun materiel_N : N ;
+fun maternal_A : A ;
+fun maternalism_N : N ;
+fun maternalistic_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 matins_N : N ;
+fun matinée_N : N ;
+fun matriarch_N : N ;
+fun matriarchal_A : A ;
+fun matriarchic_A : A ;
+fun matriarchy_N : N ;
+fun matric_N : N ;
+fun matricentric_A : A ;
+fun matricide_N : N ;
+fun matriculate_N : N ;
+fun matriculate_V : V ;
+fun matriculation_N : N ;
+fun matrilineage_N : N ;
+fun matrilineal_A : A ;
+fun matrimonial_A : A ;
+fun matrimony_N : N ;
+fun matrix_N : N ;
+fun matron_N : N ;
+fun matronly_A : A ;
+fun matronymic_N : N ;
+fun matsyendra_N : N ;
+fun matt_A : A ;
+fun matte_N : N ;
+fun matter_N : N ;
+fun matter_V : V ;
+fun matter_of_course_A : A ;
+fun matter_of_fact_A : A ;
+fun matting_N : N ;
+fun mattock_N : N ;
+fun mattress_N : N ;
+fun maturate_V : V ;
+fun maturation_N : N ;
+fun maturational_A : A ;
+fun mature_A : A ;
+fun mature_V : V ;
+fun maturity_N : N ;
+fun matutinal_A : A ;
+fun matzo_N : N ;
+fun maté_N : N ;
+fun maudlin_A : A ;
+fun maul_N : N ;
+fun maul_V : V ;
+fun mauler_N : N ;
+fun maulstick_N : N ;
+fun maund_N : N ;
+fun maunder_V : V ;
+fun maundy_thursday_N : N ;
+fun mauritanian_A : A ;
+fun mauritanian_N : N ;
+fun mauritian_A : A ;
+fun mauritian_N : N ;
+fun mausoleum_N : N ;
+fun mauve_A : A ;
+fun mauve_N : N ;
+fun maverick_N : N ;
+fun mavis_N : N ;
+fun maw_N : N ;
+fun mawkish_A : A ;
+fun mawkishness_N : N ;
+fun max_N : N ;
+fun max_V : V ;
+fun maxi_A : A ;
+fun maxi_N : N ;
+fun maxillaria_N : N ;
+fun maxillary_A : A ;
+fun maxillodental_A : A ;
+fun maxillofacial_A : A ;
+fun maxillomandibular_A : A ;
+fun maxim_N : N ;
+fun maximal_A : A ;
+fun maximization_N : N ;
+fun maximize_V : V ;
+fun maximizing_A : A ;
+fun maximum_A : A ;
+fun maximum_N : N ;
+fun maxwell_N : N ;
+fun may_beetle_N : N ;
+fun may_bug_N : N ;
+fun mayapple_N : N ;
+fun maybe_Adv : Adv ;
+fun mayday_N : N ;
+fun mayeng_N : N ;
+fun mayfly_N : N ;
+fun mayhaw_N : N ;
+fun mayhem_N : N ;
+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 maypop_N : N ;
+fun mayweed_N : N ;
+fun maze_N : N ;
+fun mazed_A : A ;
+fun mazer_N : N ;
+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 meadowgrass_N : N ;
+fun meadowlark_N : N ;
+fun meager_A : A ;
+fun meagerness_N : N ;
+fun meagre_A : A ;
+fun meagreness_N : N ;
+fun meal_N : N ;
+fun mealie_N : N ;
+fun mealtime_N : N ;
+fun mealworm_N : N ;
+fun mealy_A : A ;
+fun mealy_bug_N : N ;
+fun mealy_mouthed_A : A ;
+fun mealybug_N : N ;
+fun mealymouthed_A : A ;
+fun mean_A : A ;
+fun mean_N : N ;
+fun mean_V : V ;
+fun meander_N : N ;
+fun meander_V : V ;
+fun meanderingly_Adv : Adv ;
+fun meanie_N : N ;
+fun meaning_N : N ;
+fun meaningful_A : A ;
+fun meaningfulness_N : N ;
+fun meaningless_A : A ;
+fun meaninglessness_N : N ;
+fun meanness_N : N ;
+fun means_N : N ;
+fun meanspiritedly_Adv : Adv ;
+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 measuredly_Adv : Adv ;
+fun measureless_A : A ;
+fun measurement_N : N ;
+fun measurer_N : N ;
+fun meat_N : N ;
+fun meat_safe_N : N ;
+fun meatball_N : N ;
+fun meatless_A : A ;
+fun meatpacking_N : N ;
+fun meatus_N : N ;
+fun meaty_A : A ;
+fun mebendazole_N : N ;
+fun mebibit_N : N ;
+fun mecca_N : N ;
+fun mechanic_A : A ;
+fun mechanic_N : N ;
+fun mechanical_A : A ;
+fun mechanics_N : N ;
+fun mechanism_N : N ;
+fun mechanist_N : N ;
+fun mechanistic_A : A ;
+fun mechanistically_Adv : Adv ;
+fun mechanization_N : N ;
+fun mechanize_V : V ;
+fun meclizine_N : N ;
+fun meclofenamate_N : N ;
+fun meconium_N : N ;
+fun mecopteran_N : N ;
+fun mecopterous_A : A ;
+fun med_N : N ;
+fun medal_N : N ;
+fun medalist_N : N ;
+fun medallion_N : N ;
+fun medallist_N : N ;
+fun meddle_V : V ;
+fun meddler_N : N ;
+fun meddlesome_A : A ;
+fun meddling_N : N ;
+fun media_N : N ;
+fun mediacy_N : N ;
+fun mediaeval_A : A ;
+fun medial_A : A ;
+fun median_A : A ;
+fun median_N : N ;
+fun mediant_N : N ;
+fun mediastinum_N : N ;
+fun mediate_A : A ;
+fun mediate_V : V ;
+fun mediation_N : N ;
+fun mediator_N : N ;
+fun mediatorial_A : A ;
+fun mediatory_A : A ;
+fun mediatrix_N : N ;
+fun medic_N : N ;
+fun medical_A : A ;
+fun medical_N : N ;
+fun medicament_N : N ;
+fun medicare_N : N ;
+fun medicate_V : V ;
+fun medication_N : N ;
+fun medicative_A : A ;
+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 medicolegal_A : A ;
+fun medieval_A : A ;
+fun medina_N : N ;
+fun mediocre_A : A ;
+fun mediocrity_N : N ;
+fun meditate_V : V ;
+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 medroxyprogesterone_N : N ;
+fun medulla_N : N ;
+fun medullary_A : A ;
+fun medusa_N : N ;
+fun medusoid_A : A ;
+fun meed_N : N ;
+fun meek_A : A ;
+fun meekness_N : N ;
+fun meerkat_N : N ;
+fun meerschaum_N : N ;
+fun meet_A : A ;
+fun meet_N : N ;
+fun meet_meeted_V : V ;
+fun meet_met_V : V ;
+fun meeting_N : N ;
+fun meeting_house_N : N ;
+fun meeting_place_N : N ;
+fun mefloquine_N : N ;
+fun megabit_N : N ;
+fun megabyte_N : N ;
+fun megacolon_N : N ;
+fun megacycle_N : N ;
+fun megadeath_N : N ;
+fun megaflop_N : N ;
+fun megagametophyte_N : N ;
+fun megahertz_N : N ;
+fun megakaryocyte_N : N ;
+fun megakaryocytic_A : A ;
+fun megalith_N : N ;
+fun megalithic_A : A ;
+fun megaloblast_N : N ;
+fun megaloblastic_A : A ;
+fun megalocyte_N : N ;
+fun megalomania_N : N ;
+fun megalomaniac_N : N ;
+fun megalomaniacal_A : A ;
+fun megalopolis_N : N ;
+fun megalosaur_N : N ;
+fun megaphone_N : N ;
+fun megapode_N : N ;
+fun megascopic_A : A ;
+fun megasporangium_N : N ;
+fun megaspore_N : N ;
+fun megasporophyll_N : N ;
+fun megatherian_N : N ;
+fun megaton_N : N ;
+fun megawatt_N : N ;
+fun megestrol_N : N ;
+fun megillah_N : N ;
+fun megilp_N : N ;
+fun megohm_N : N ;
+fun megrim_N : N ;
+fun meiosis_N : N ;
+fun meiotic_A : A ;
+fun meitnerium_N : N ;
+fun melagra_N : N ;
+fun melamine_N : N ;
+fun melancholia_N : N ;
+fun melancholic_A : A ;
+fun melancholic_N : N ;
+fun melancholy_A : A ;
+fun melancholy_N : N ;
+fun melanin_N : N ;
+fun melanoblast_N : N ;
+fun melanocyte_N : N ;
+fun melanoderma_N : N ;
+fun melanoma_N : N ;
+fun melanosis_N : N ;
+fun melatonin_N : N ;
+fun meld_V : V ;
+fun melena_N : N ;
+fun melilotus_N : N ;
+fun meliorate_V : V ;
+fun melioration_N : N ;
+fun meliorism_N : N ;
+fun mellifluous_A : A ;
+fun mellow_A : A ;
+fun mellow_V : V ;
+fun mellowing_N : N ;
+fun mellowingly_Adv : Adv ;
+fun mellowness_N : N ;
+fun melodic_A : A ;
+fun melodically_Adv : Adv ;
+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 melosa_N : N ;
+fun melphalan_N : N ;
+fun melt_V : V ;
+fun meltable_A : A ;
+fun meltdown_N : N ;
+fun melter_N : N ;
+fun melting_point_N : N ;
+fun melting_pot_N : N ;
+fun meltwater_N : N ;
+fun mem_N : N ;
+fun member_N : N ;
+fun membered_A : A ;
+fun memberless_A : A ;
+fun membership_N : N ;
+fun membrane_N : N ;
+fun membranous_A : A ;
+fun meme_N : N ;
+fun memento_N : N ;
+fun memo_N : N ;
+fun memoir_N : N ;
+fun memorabilia_N : N ;
+fun memorability_N : N ;
+fun memorable_A : A ;
+fun memorandum_N : N ;
+fun memorial_N : N ;
+fun memorialize_V : V ;
+fun memorization_N : N ;
+fun memorize_V : V ;
+fun memorizer_N : N ;
+fun memory_N : N ;
+fun memsahib_N : N ;
+fun menace_N : N ;
+fun menace_V : V ;
+fun menacingly_Adv : Adv ;
+fun menagerie_N : N ;
+fun menarche_N : N ;
+fun mend_N : N ;
+fun mend_V : V ;
+fun mendacious_A : A ;
+fun mendacity_N : N ;
+fun mendelevium_N : N ;
+fun mendelian_A : A ;
+fun mender_N : N ;
+fun mendicant_A : A ;
+fun mendicant_N : N ;
+fun mending_N : N ;
+fun menhaden_N : N ;
+fun menhir_N : N ;
+fun menial_A : A ;
+fun menial_N : N ;
+fun meningeal_A : A ;
+fun meningioma_N : N ;
+fun meningism_N : N ;
+fun meningitis_N : N ;
+fun meningocele_N : N ;
+fun meningoencephalitis_N : N ;
+fun meninx_N : N ;
+fun meniscectomy_N : N ;
+fun meniscus_N : N ;
+fun menopausal_A : A ;
+fun menopause_N : N ;
+fun menorah_N : N ;
+fun menorrhagia_N : N ;
+fun menorrhea_N : N ;
+fun mensal_A : A ;
+fun mensch_N : N ;
+fun menstrual_A : A ;
+fun menstruate_V : V ;
+fun menstruation_N : N ;
+fun menstruum_N : N ;
+fun mensurable_A : A ;
+fun mensural_A : A ;
+fun mensuration_N : N ;
+fun mental_A : A ;
+fun mentalism_N : N ;
+fun mentality_N : N ;
+fun menthol_N : N ;
+fun mentholated_A : A ;
+fun mention_N : N ;
+fun mention_V : V ;
+fun mentioner_N : N ;
+fun mentor_N : N ;
+fun mentum_N : N ;
+fun menu_N : N ;
+fun meow_N : N ;
+fun meperidine_N : N ;
+fun mephenytoin_N : N ;
+fun mephistophelian_A : A ;
+fun mephitis_N : N ;
+fun mephobarbital_N : N ;
+fun meprobamate_N : N ;
+fun meralgia_N : N ;
+fun merbromine_N : N ;
+fun mercantile_A : A ;
+fun mercantilism_N : N ;
+fun mercaptopurine_N : N ;
+fun mercenary_A : A ;
+fun mercenary_N : N ;
+fun mercer_N : N ;
+fun mercerize_V : V ;
+fun merchandise_N : N ;
+fun merchant_N : N ;
+fun merchantability_N : N ;
+fun merchantman_N : N ;
+fun merciful_A : A ;
+fun mercifulness_N : N ;
+fun merciless_A : A ;
+fun mercilessness_N : N ;
+fun mercurial_A : A ;
+fun mercuric_A : A ;
+fun mercury_N : N ;
+fun mercy_N : N ;
+fun mere_A : A ;
+fun mere_N : N ;
+fun merestone_N : N ;
+fun meretricious_A : A ;
+fun meretriciousness_N : N ;
+fun merganser_N : N ;
+fun merge_V : V ;
+fun merger_N : N ;
+fun merging_N : N ;
+fun mericarp_N : N ;
+fun meridian_A : A ;
+fun meridian_N : N ;
+fun meridional_A : A ;
+fun meringue_N : N ;
+fun merino_N : N ;
+fun merino_sheep_N : N ;
+fun meristem_N : N ;
+fun merit_N : N ;
+fun merit_V : V ;
+fun meritocracy_N : N ;
+fun meritocratic_A : A ;
+fun meritorious_A : A ;
+fun merlon_N : N ;
+fun mermaid_N : N ;
+fun merman_N : N ;
+fun meromelia_N : N ;
+fun meronym_N : N ;
+fun meronymy_N : N ;
+fun merozoite_N : N ;
+fun merriment_N : N ;
+fun merry_A : A ;
+fun merry_go_round_N : N ;
+fun merrymaker_N : N ;
+fun merrymaking_N : N ;
+fun mesa_N : N ;
+fun mescal_N : N ;
+fun mescaline_N : N ;
+fun meseems_Adv : Adv ;
+fun mesenchyme_N : N ;
+fun mesenteric_A : A ;
+fun mesentery_N : N ;
+fun mesh_N : N ;
+fun mesh_V : V ;
+fun meshugaas_N : N ;
+fun meshugge_A : A ;
+fun meshuggeneh_N : N ;
+fun mesial_A : A ;
+fun mesic_A : A ;
+fun mesmeric_A : A ;
+fun mesmerism_N : N ;
+fun mesmerist_N : N ;
+fun mesmerize_V : V ;
+fun mesoblastic_A : A ;
+fun mesocarp_N : N ;
+fun mesocolon_N : N ;
+fun mesoderm_N : N ;
+fun mesohippus_N : N ;
+fun mesolithic_A : A ;
+fun mesomorph_N : N ;
+fun mesomorphic_A : A ;
+fun meson_N : N ;
+fun mesonic_A : A ;
+fun mesophyte_N : N ;
+fun mesophytic_A : A ;
+fun mesosphere_N : N ;
+fun mesothelioma_N : N ;
+fun mesothelium_N : N ;
+fun mesquite_N : N ;
+fun mess_N : N ;
+fun mess_V : V ;
+fun mess_jacket_N : N ;
+fun mess_up_N : N ;
+fun message_N : N ;
+fun messaging_N : N ;
+fun messenger_N : N ;
+fun messiah_N : N ;
+fun messiahship_N : N ;
+fun messianic_A : A ;
+fun messiness_N : N ;
+fun messmate_N : N ;
+fun messuage_N : N ;
+fun messy_A : A ;
+fun mestiza_N : N ;
+fun mestizo_N : N ;
+fun mestranol_N : N ;
+fun met_V : V ;
+fun metabolic_A : A ;
+fun metabolically_Adv : Adv ;
+fun metabolism_N : N ;
+fun metabolite_N : N ;
+fun metabolize_V : V ;
+fun metacarpal_A : A ;
+fun metacarpal_N : N ;
+fun metacarpus_N : N ;
+fun metacenter_N : N ;
+fun metacentric_A : A ;
+fun metadata_N : N ;
+fun metagenesis_N : N ;
+fun metagrobolized_A : A ;
+fun metaknowledge_N : N ;
+fun metal_N : N ;
+fun metal_V : V ;
+fun metalanguage_N : N ;
+fun metalepsis_N : N ;
+fun metalhead_N : N ;
+fun metallic_A : A ;
+fun metallic_N : N ;
+fun metallike_A : A ;
+fun metalloid_A : A ;
+fun metallurgical_A : A ;
+fun metallurgist_N : N ;
+fun metallurgy_N : N ;
+fun metalware_N : N ;
+fun metalwork_N : N ;
+fun metalworker_N : N ;
+fun metalworking_N : N ;
+fun metamathematics_N : N ;
+fun metamere_N : N ;
+fun metameric_A : A ;
+fun metamorphic_A : A ;
+fun metamorphism_N : N ;
+fun metamorphopsia_N : N ;
+fun metamorphose_V : V ;
+fun metamorphosis_N : N ;
+fun metamorphous_A : A ;
+fun metaphase_N : N ;
+fun metaphor_N : N ;
+fun metaphorical_A : A ;
+fun metaphysical_A : A ;
+fun metaphysics_N : N ;
+fun metaphysis_N : N ;
+fun metaproterenol_N : N ;
+fun metarule_N : N ;
+fun metasequoia_N : N ;
+fun metastability_N : N ;
+fun metastable_A : A ;
+fun metastasis_N : N ;
+fun metastatic_A : A ;
+fun metatarsal_A : A ;
+fun metatarsal_N : N ;
+fun metatarsus_N : N ;
+fun metatherian_N : N ;
+fun metathesis_N : N ;
+fun metazoan_N : N ;
+fun mete_V : V ;
+fun metempsychosis_N : N ;
+fun metencephalon_N : N ;
+fun meteor_N : N ;
+fun meteoric_A : A ;
+fun meteorite_N : N ;
+fun meteoritic_A : A ;
+fun meteoroid_N : N ;
+fun meteorologic_A : A ;
+fun meteorological_A : A ;
+fun meteorologist_N : N ;
+fun meteorology_N : N ;
+fun meteortropism_N : N ;
+fun meter_N : N ;
+fun meterstick_N : N ;
+fun metformin_N : N ;
+fun methacholine_N : N ;
+fun methadone_N : N ;
+fun methamphetamine_N : N ;
+fun methane_N : N ;
+fun methanogen_N : N ;
+fun methanol_N : N ;
+fun methapyrilene_N : N ;
+fun methaqualone_N : N ;
+fun metharbital_N : N ;
+fun metheglin_N : N ;
+fun methenamine_N : N ;
+fun methicillin_N : N ;
+fun methinks_Adv : Adv ;
+fun methionine_N : N ;
+fun methocarbamol_N : N ;
+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 methotrexate_N : N ;
+fun methought_Adv : Adv ;
+fun methyl_N : N ;
+fun methylated_A : A ;
+fun methyldopa_N : N ;
+fun methylenedioxymethamphetamine_N : N ;
+fun methylphenidate_N : N ;
+fun methyltestosterone_N : N ;
+fun metic_N : N ;
+fun metical_N : N ;
+fun meticulous_A : A ;
+fun meticulousness_N : N ;
+fun metonym_N : N ;
+fun metonymic_A : A ;
+fun metonymically_Adv : Adv ;
+fun metonymy_N : N ;
+fun metopion_N : N ;
+fun metoprolol_N : N ;
+fun metralgia_N : N ;
+fun metre_N : N ;
+fun metric_A : A ;
+fun metrical_A : A ;
+fun metrication_N : N ;
+fun metricize_V : V ;
+fun metrification_N : N ;
+fun metritis_N : N ;
+fun metro_N : N ;
+fun metrological_A : A ;
+fun metrology_N : N ;
+fun metronidazole_N : N ;
+fun metronome_N : N ;
+fun metropolis_N : N ;
+fun metropolitan_A : A ;
+fun metropolitan_N : N ;
+fun metroptosis_N : N ;
+fun metrorrhagia_N : N ;
+fun mettle_N : N ;
+fun mettlesome_A : A ;
+fun mettlesomeness_N : N ;
+fun mew_N : N ;
+fun mew_V : V ;
+fun mews_N : N ;
+fun mexican_A : A ;
+fun mexican_N : N ;
+fun mexiletine_N : N ;
+fun mezereon_N : N ;
+fun mezereum_N : N ;
+fun mezuzah_N : N ;
+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 mho_N : N ;
+fun mi_N : N ;
+fun miaou_N : N ;
+fun miaou_V : V ;
+fun miaow_N : N ;
+fun miaow_V : V ;
+fun miasma_N : N ;
+fun miasmal_A : A ;
+fun miasmic_A : A ;
+fun mica_N : N ;
+fun micaceous_A : A ;
+fun micelle_N : N ;
+fun michaelmas_N : N ;
+fun mickey_N : N ;
+fun mickle_N : N ;
+fun miconazole_N : N ;
+fun micro_A : A ;
+fun micro_organism_N : N ;
+fun microbalance_N : N ;
+fun microbe_N : N ;
+fun microbial_A : A ;
+fun microbiologist_N : N ;
+fun microbiology_N : N ;
+fun microbrachia_N : N ;
+fun microbrewery_N : N ;
+fun microcephalic_A : A ;
+fun microcephaly_N : N ;
+fun microcosm_N : N ;
+fun microcosmic_A : A ;
+fun microcrystalline_A : A ;
+fun microcyte_N : N ;
+fun microcytosis_N : N ;
+fun microdot_N : N ;
+fun microeconomic_A : A ;
+fun microeconomics_N : N ;
+fun microeconomist_N : N ;
+fun microelectronic_A : A ;
+fun microelectronics_N : N ;
+fun microevolution_N : N ;
+fun microfarad_N : N ;
+fun microfiche_N : N ;
+fun microfilm_N : N ;
+fun microfilm_V : V ;
+fun microflora_N : N ;
+fun microfossil_N : N ;
+fun microgametophyte_N : N ;
+fun microgauss_N : N ;
+fun microglia_N : N ;
+fun microgliacyte_N : N ;
+fun microgram_N : N ;
+fun micrometeoric_A : A ;
+fun micrometeorite_N : N ;
+fun micrometeoritic_A : A ;
+fun micrometer_N : N ;
+fun micrometry_N : N ;
+fun micron_N : N ;
+fun micronutrient_N : N ;
+fun microorganism_N : N ;
+fun micropaleontology_N : N ;
+fun micropenis_N : N ;
+fun microphage_N : N ;
+fun microphone_N : N ;
+fun microphoning_N : N ;
+fun microphotometer_N : N ;
+fun microprocessor_N : N ;
+fun micropylar_A : A ;
+fun micropyle_N : N ;
+fun microradian_N : N ;
+fun microscope_N : N ;
+fun microscopic_A : A ;
+fun microscopical_A : A ;
+fun microscopist_N : N ;
+fun microscopy_N : N ;
+fun microsecond_N : N ;
+fun microsomal_A : A ;
+fun microsome_N : N ;
+fun microsporangium_N : N ;
+fun microspore_N : N ;
+fun microsporidian_N : N ;
+fun microsporophyll_N : N ;
+fun microsurgery_N : N ;
+fun microtome_N : N ;
+fun microtubule_N : N ;
+fun microvolt_N : N ;
+fun microwave_N : N ;
+fun micturition_N : N ;
+fun mid_A : A ;
+fun mid_Prep : Prep ;
+fun mid_off_N : N ;
+fun mid_on_N : N ;
+fun midafternoon_N : N ;
+fun midair_N : N ;
+fun midazolam_N : N ;
+fun midbrain_N : N ;
+fun midday_N : N ;
+fun midden_N : N ;
+fun middle_A : A ;
+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 middlebrow_N : N ;
+fun middleman_N : N ;
+fun middlemost_A : A ;
+fun middleweight_A : A ;
+fun middleweight_N : N ;
+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 midgrass_N : N ;
+fun midi_A : A ;
+fun midinette_N : N ;
+fun midiron_N : N ;
+fun midland_N : N ;
+fun midmost_A : A ;
+fun midmost_Adv : Adv ;
+fun midnight_N : N ;
+fun midplane_N : N ;
+fun midrib_N : N ;
+fun midriff_N : N ;
+fun midshipman_N : N ;
+fun midships_Adv : Adv ;
+fun midst_N : N ;
+fun midst_Prep : Prep ;
+fun midstream_N : N ;
+fun midsummer_N : N ;
+fun midterm_N : N ;
+fun midway_A : A ;
+fun midway_Adv : Adv ;
+fun midway_N : N ;
+fun midweek_A : A ;
+fun midweek_Adv : Adv ;
+fun midweek_N : N ;
+fun midweekly_A : A ;
+fun midwestern_A : A ;
+fun midwife_N : N ;
+fun midwifery_N : N ;
+fun midwinter_N : N ;
+fun mien_N : N ;
+fun miff_V : V ;
+fun might_N : N ;
+fun might_have_been_N : N ;
+fun mighty_A : A ;
+fun mighty_Adv : Adv ;
+fun mignonette_N : N ;
+fun migraine_N : N ;
+fun migrant_A : A ;
+fun migrant_N : N ;
+fun migrate_V : V ;
+fun migration_N : N ;
+fun migrational_A : A ;
+fun migrator_N : N ;
+fun migratory_A : A ;
+fun mihrab_N : N ;
+fun mikado_N : N ;
+fun mike_N : N ;
+fun mikvah_N : N ;
+fun mil_N : N ;
+fun milady_N : N ;
+fun milage_N : N ;
+fun milch_A : A ;
+fun mild_A : A ;
+fun mildew_N : N ;
+fun mildew_V : V ;
+fun mildness_N : N ;
+fun mile_N : N ;
+fun mileage_N : N ;
+fun mileometer_N : N ;
+fun miler_N : N ;
+fun milestone_N : N ;
+fun milieu_N : N ;
+fun militainment_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 militarized_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_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 milkcap_N : N ;
+fun milking_machine_N : N ;
+fun milkless_A : A ;
+fun milkmaid_N : N ;
+fun milkman_N : N ;
+fun milkshake_N : N ;
+fun milksop_N : N ;
+fun milkweed_N : N ;
+fun milkwort_N : N ;
+fun milky_A : A ;
+fun mill_N : N ;
+fun mill_V : V ;
+fun mill_dam_N : N ;
+fun mill_girl_N : N ;
+fun mill_hand_N : N ;
+fun millboard_N : N ;
+fun milldam_N : N ;
+fun millenarian_A : A ;
+fun millenarian_N : N ;
+fun millenarianism_N : N ;
+fun millenary_A : A ;
+fun millenary_N : N ;
+fun millennial_A : A ;
+fun millennium_N : N ;
+fun millepede_N : N ;
+fun miller_N : N ;
+fun millerite_N : N ;
+fun millet_N : N ;
+fun millettia_N : N ;
+fun milliammeter_N : N ;
+fun milliampere_N : N ;
+fun milliard_N : N ;
+fun millibar_N : N ;
+fun millicurie_N : N ;
+fun millidegree_N : N ;
+fun milliequivalent_N : N ;
+fun millifarad_N : N ;
+fun milligram_N : N ;
+fun millihenry_N : N ;
+fun milliliter_N : N ;
+fun millime_N : N ;
+fun millimeter_N : N ;
+fun millimetre_N : N ;
+fun milline_N : N ;
+fun milliner_N : N ;
+fun millinery_N : N ;
+fun milling_N : N ;
+fun million_A : A ;
+fun million_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 milliradian_N : N ;
+fun millisecond_N : N ;
+fun millivolt_N : N ;
+fun millivoltmeter_N : N ;
+fun milliwatt_N : N ;
+fun millpond_N : N ;
+fun millrace_N : N ;
+fun millstone_N : N ;
+fun millwheel_N : N ;
+fun millwork_N : N ;
+fun millwright_N : N ;
+fun milo_N : N ;
+fun milometer_N : N ;
+fun milord_N : N ;
+fun milt_N : N ;
+fun mime_N : N ;
+fun mime_V : V ;
+fun mimeograph_N : N ;
+fun mimeograph_V : V ;
+fun mimesis_N : N ;
+fun mimetic_A : A ;
+fun mimic_A : A ;
+fun mimic_N : N ;
+fun mimic_V : V ;
+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_pie_N : N ;
+fun mincemeat_N : N ;
+fun mincer_N : N ;
+fun mincingly_Adv : Adv ;
+fun mind_N : N ;
+fun mind_V : V ;
+fun mind_bending_A : A ;
+fun mind_blowing_A : A ;
+fun mind_boggling_A : A ;
+fun mind_reader_N : N ;
+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_detector_N : N ;
+fun mine_disposal_N : N ;
+fun minefield_N : N ;
+fun minelayer_N : N ;
+fun minelaying_N : N ;
+fun miner_N : N ;
+fun mineral_A : A ;
+fun mineral_N : N ;
+fun mineralocorticoid_N : N ;
+fun mineralogist_N : N ;
+fun mineralogy_N : N ;
+fun mineshaft_N : N ;
+fun minestrone_N : N ;
+fun minesweeper_N : N ;
+fun minesweeping_N : N ;
+fun mineworker_N : N ;
+fun minge_N : N ;
+fun mingle_V : V ;
+fun mingling_N : N ;
+fun mingy_A : A ;
+fun mini_A : A ;
+fun miniature_A : A ;
+fun miniature_N : N ;
+fun miniaturist_N : N ;
+fun miniaturization_N : N ;
+fun miniaturize_V : V ;
+fun minibar_N : N ;
+fun minibike_N : N ;
+fun minibus_N : N ;
+fun minicab_N : N ;
+fun minicar_N : N ;
+fun minicomputer_N : N ;
+fun minim_N : N ;
+fun minimal_A : A ;
+fun minimalism_N : N ;
+fun minimalist_A : A ;
+fun minimalist_N : N ;
+fun minimization_N : N ;
+fun minimize_V : V ;
+fun minimum_A : A ;
+fun minimum_N : N ;
+fun minimus_N : N ;
+fun mining_N : N ;
+fun minion_N : N ;
+fun miniskirt_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 minisub_N : N ;
+fun minivan_N : N ;
+fun miniver_N : N ;
+fun mink_N : N ;
+fun minniebush_N : N ;
+fun minnow_N : N ;
+fun minocycline_N : N ;
+fun minor_A : A ;
+fun minor_N : N ;
+fun minority_N : N ;
+fun minotaur_N : N ;
+fun minoxidil_N : N ;
+fun minster_N : N ;
+fun minstrel_N : N ;
+fun minstrelsy_N : N ;
+fun mint_N : N ;
+fun mint_V : V ;
+fun mintage_N : N ;
+fun mintmark_N : N ;
+fun minty_A : A ;
+fun minuend_N : N ;
+fun minuet_N : N ;
+fun minus_A : A ;
+fun minus_N : N ;
+fun minus_Prep : Prep ;
+fun minuscule_A : A ;
+fun minuscule_N : N ;
+fun minute_A : A ;
+fun minute_N : N ;
+fun minute_V : V ;
+fun minute_book_N : N ;
+fun minute_gun_N : N ;
+fun minute_hand_N : N ;
+fun minuteman_N : N ;
+fun minuteness_N : N ;
+fun minutes_N : N ;
+fun minutia_N : N ;
+fun minx_N : N ;
+fun minyan_N : N ;
+fun miotic_A : A ;
+fun miracle_N : N ;
+fun miraculous_A : A ;
+fun mirage_N : N ;
+fun mire_N : N ;
+fun mire_V : V ;
+fun miro_N : N ;
+fun mirror_N : N ;
+fun mirror_V : V ;
+fun mirrorlike_A : A ;
+fun mirth_N : N ;
+fun mirthful_A : A ;
+fun mirthless_A : A ;
+fun miry_A : A ;
+fun misadventure_N : N ;
+fun misadvise_V : V ;
+fun misalignment_N : N ;
+fun misalliance_N : N ;
+fun misanthrope_N : N ;
+fun misanthropic_A : A ;
+fun misanthropy_N : N ;
+fun misapplication_N : N ;
+fun misapply_V : V ;
+fun misapprehend_V : V ;
+fun misapprehension_N : N ;
+fun misappropriate_V : V ;
+fun misappropriation_N : N ;
+fun misbegotten_A : A ;
+fun misbehave_V : V ;
+fun misbehavior_N : N ;
+fun misbehaviour_N : N ;
+fun misbranded_A : A ;
+fun miscalculate_V : V ;
+fun miscalculation_N : N ;
+fun miscall_V : V ;
+fun miscarriage_N : N ;
+fun miscarry_V : V ;
+fun miscast_V : V ;
+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 miscible_A : A ;
+fun misconceive_V : V ;
+fun misconception_N : N ;
+fun misconduct_N : N ;
+fun misconduct_V : V ;
+fun misconstrual_N : N ;
+fun misconstruction_N : N ;
+fun misconstrue_V : V ;
+fun miscount_N : N ;
+fun miscount_V : V ;
+fun miscreant_N : N ;
+fun miscue_N : N ;
+fun misdate_V : V ;
+fun misdeal_N : N ;
+fun misdeal_V : V ;
+fun misdeed_N : N ;
+fun misdemeanor_N : N ;
+fun misdemeanour_N : N ;
+fun misdirect_V : V ;
+fun misdirection_N : N ;
+fun misdoing_N : N ;
+fun mise_en_scène_N : N ;
+fun miser_N : N ;
+fun miserable_A : A ;
+fun miserliness_N : N ;
+fun miserly_A : A ;
+fun misery_N : N ;
+fun misfeasance_N : N ;
+fun misfire_N : N ;
+fun misfire_V : V ;
+fun misfit_N : N ;
+fun misfortune_N : N ;
+fun misgive_V : V ;
+fun misgiving_N : N ;
+fun misgovern_V : V ;
+fun misgovernment_N : N ;
+fun misguide_V : V ;
+fun mishandle_V : V ;
+fun mishap_N : N ;
+fun mishmash_N : N ;
+fun mishpocha_N : N ;
+fun misinform_V : V ;
+fun misinformation_N : N ;
+fun misinterpret_V : V ;
+fun misinterpretation_N : N ;
+fun misjudge_V : V ;
+fun mislaid_A : A ;
fun mislay_V : V ;
-fun fly_1_V : V ;
+fun mislead_V : V ;
+fun misleader_N : N ;
+fun mismanage_V : V ;
+fun mismanagement_N : N ;
+fun mismatch_N : N ;
+fun mismatched_A : A ;
+fun misname_V : V ;
+fun misnomer_N : N ;
+fun miso_N : N ;
+fun misocainea_N : N ;
+fun misogamist_N : N ;
+fun misogamy_N : N ;
+fun misogynic_A : A ;
+fun misogynist_N : N ;
+fun misogynous_A : A ;
+fun misogyny_N : N ;
+fun misology_N : N ;
+fun misoneism_N : N ;
+fun misopedia_N : N ;
+fun misplace_V : V ;
+fun misprint_N : N ;
+fun misprint_V : V ;
+fun mispronounce_V : V ;
+fun mispronunciation_N : N ;
+fun misquotation_N : N ;
+fun misquote_V : V ;
+fun misread_V : V ;
+fun misreading_N : N ;
+fun misrelated_A : A ;
+fun misrepresent_V : V ;
+fun misrepresentation_N : N ;
+fun misrule_N : N ;
+fun miss_N : N ;
+fun miss_V : V ;
+fun missal_N : N ;
+fun misshapen_A : A ;
+fun missile_N : N ;
+fun mission_N : N ;
+fun missionary_A : A ;
+fun missionary_N : N ;
+fun missis_N : N ;
+fun missive_N : N ;
+fun misspell_V : V ;
+fun misspelling_N : N ;
+fun misspend_V : V ;
+fun misstate_V : V ;
+fun misstatement_N : N ;
+fun missus_N : N ;
+fun missy_N : N ;
+fun mist_N : N ;
+fun mist_V : V ;
+fun mistake_N : N ;
+fun mistake_V : V ;
+fun mistaken_A : A ;
+fun mister_N : N ;
+fun mistflower_N : N ;
+fun mistime_V : V ;
+fun mistiness_N : N ;
+fun mistletoe_N : N ;
+fun mistral_N : N ;
+fun mistranslate_V : V ;
+fun mistranslation_N : N ;
+fun mistreat_V : V ;
+fun mistreatment_N : N ;
+fun mistress_N : N ;
+fun mistrial_N : N ;
+fun mistrust_N : N ;
+fun mistrust_V : V ;
+fun mistrustful_A : A ;
+fun misty_A : A ;
+fun misunderstand_V : V ;
+fun misunderstanding_N : N ;
+fun misuse_N : N ;
+fun misuse_V : V ;
+fun mite_N : N ;
+fun miter_N : N ;
+fun miterwort_N : N ;
+fun mithraic_A : A ;
+fun mithramycin_N : N ;
+fun mitigable_A : A ;
+fun mitigate_V : V ;
+fun mitigation_N : N ;
+fun mitochondrion_N : N ;
+fun mitogen_N : N ;
+fun mitomycin_N : N ;
+fun mitosis_N : N ;
+fun mitotic_A : A ;
+fun mitral_A : A ;
+fun mitre_N : N ;
+fun mitre_joint_N : N ;
+fun mitt_N : N ;
+fun mittelschmerz_N : N ;
+fun mitten_N : N ;
+fun mitzvah_N : N ;
+fun mix_N : N ;
+fun mix_V : V ;
+fun mix_up_N : N ;
+fun mixed_up_A : A ;
+fun mixer_N : N ;
+fun mixology_N : N ;
+fun mixture_N : N ;
+fun mizen_N : N ;
+fun mizzen_N : N ;
+fun mizzen_mast_N : N ;
+fun mizzenmast_N : N ;
+fun mizzle_V : V ;
+fun ml_N : N ;
+fun mm_N : N ;
+fun mnemonic_A : A ;
+fun mnemonic_N : N ;
+fun mnemonics_N : N ;
+fun mnemonist_N : N ;
+fun mo_N : N ;
+fun moa_N : N ;
+fun moan_N : N ;
+fun moan_V : V ;
+fun moat_N : N ;
+fun moated_A : A ;
+fun mob_N : N ;
+fun mob_V : V ;
+fun mobbish_A : A ;
+fun mobcap_N : N ;
+fun mobile_A : A ;
+fun mobile_N : N ;
+fun mobilisation_N : N ;
+fun mobility_N : N ;
+fun mobilization_N : N ;
+fun mobilize_V : V ;
+fun mobocracy_N : N ;
+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_up_N : N ;
+fun mocker_N : N ;
+fun mockernut_N : N ;
+fun mockery_N : N ;
+fun mockingbird_N : N ;
+fun mockingly_Adv : Adv ;
+fun mod_A : A ;
+fun mod_N : N ;
+fun mod_con_N : N ;
+fun modal_A : A ;
+fun modality_N : N ;
+fun mode_N : N ;
+fun model_N : N ;
+fun model_modeled_V : V ;
+fun model_modelled_V : V ;
+fun modeler_N : N ;
+fun modeling_N : N ;
+fun modeller_N : N ;
+fun modelling_N : N ;
+fun modem_N : N ;
+fun moderate_A : A ;
+fun moderate_N : N ;
+fun moderate_V : V ;
+fun moderation_N : N ;
+fun moderationism_N : N ;
+fun moderationist_N : N ;
+fun moderato_A : A ;
+fun moderator_N : N ;
+fun moderatorship_N : N ;
+fun modern_A : A ;
+fun modern_N : N ;
+fun moderne_A : A ;
+fun modernisation_N : N ;
+fun modernism_N : N ;
+fun modernist_N : N ;
+fun modernistic_A : A ;
+fun modernity_N : N ;
+fun modernization_N : N ;
+fun modernize_V : V ;
+fun modest_A : A ;
+fun modesty_N : N ;
+fun modicum_N : N ;
+fun modifiable_A : A ;
+fun modification_N : N ;
+fun modifier_N : N ;
+fun modify_V : V ;
+fun modillion_N : N ;
+fun modiolus_N : N ;
+fun modish_A : A ;
+fun modiste_N : N ;
+fun mods_N : N ;
+fun modular_A : A ;
+fun modulate_V : V ;
+fun modulation_N : N ;
+fun module_N : N ;
+fun modulo_Prep : Prep ;
+fun modulus_N : N ;
+fun modus_operandi_N : N ;
+fun modus_vivendi_N : N ;
+fun moggy_V : V ;
+fun mogul_N : N ;
+fun mohair_N : N ;
+fun mohammedan_N : N ;
+fun mohawk_N : N ;
+fun moiety_N : N ;
+fun moil_V : V ;
+fun moire_A : A ;
+fun moire_N : N ;
+fun moist_A : A ;
+fun moisten_V : V ;
+fun moistening_N : N ;
+fun moisture_N : N ;
+fun mojarra_N : N ;
+fun mojo_N : N ;
+fun moke_N : N ;
+fun moksa_N : N ;
+fun molal_A : A ;
+fun molality_N : N ;
+fun molar_A : A ;
+fun molar_N : N ;
+fun molarity_N : N ;
+fun molasses_N : N ;
+fun mold_N : N ;
+fun mold_V : V ;
+fun moldboard_N : N ;
+fun molding_N : N ;
+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_V : V ;
+fun molestation_N : N ;
+fun molester_N : N ;
+fun molindone_N : N ;
+fun moll_N : N ;
+fun mollie_N : N ;
+fun mollification_N : N ;
+fun mollify_V : V ;
+fun mollusc_N : N ;
+fun molluscum_N : N ;
+fun mollusk_N : N ;
+fun mollycoddle_N : N ;
+fun mollycoddle_V : V ;
+fun moloch_N : N ;
+fun molt_N : N ;
+fun molten_A : A ;
+fun molter_N : N ;
+fun molto_Adv : Adv ;
+fun molybdenite_N : N ;
+fun molybdenum_N : N ;
+fun mombin_N : N ;
+fun moment_N : N ;
+fun momentary_A : A ;
+fun momentous_A : A ;
+fun momentousness_N : N ;
+fun momentum_N : N ;
+fun momism_N : N ;
+fun monad_N : N ;
+fun monal_N : N ;
+fun monandrous_A : A ;
+fun monandry_N : N ;
+fun monarch_N : N ;
+fun monarchal_A : A ;
+fun monarchic_A : A ;
+fun monarchism_N : N ;
+fun monarchist_N : N ;
+fun monarchy_N : N ;
+fun monarda_N : N ;
+fun monastery_N : N ;
+fun monastic_A : A ;
+fun monasticism_N : N ;
+fun monatomic_A : A ;
+fun monaural_A : A ;
+fun monazite_N : N ;
+fun monegasque_A : A ;
+fun monegasque_N : N ;
+fun moneran_A : A ;
+fun moneran_N : N ;
+fun monestrous_A : A ;
+fun monetarism_N : N ;
+fun monetarist_N : N ;
+fun monetary_A : A ;
+fun monetization_N : N ;
+fun monetize_V : V ;
+fun money_N : N ;
+fun money_grubber_N : N ;
+fun money_order_N : N ;
+fun money_spinner_N : N ;
+fun moneybag_N : N ;
+fun moneybox_N : N ;
+fun moneychanger_N : N ;
+fun moneyed_A : A ;
+fun moneygrubber_N : N ;
+fun moneylender_N : N ;
+fun moneyless_A : A ;
+fun moneymaker_N : N ;
+fun moneymaking_N : N ;
+fun moneywort_N : N ;
+fun monger_N : N ;
+fun mongo_N : N ;
+fun mongol_A : A ;
+fun mongol_N : N ;
+fun mongolian_A : A ;
+fun mongolian_N : N ;
+fun mongolism_N : N ;
+fun mongoloid_A : A ;
+fun mongoloid_N : N ;
+fun mongoose_N : N ;
+fun mongrel_A : A ;
+fun mongrel_N : N ;
+fun monilia_N : N ;
+fun monism_N : N ;
+fun monistic_A : A ;
+fun monition_N : N ;
+fun monitor_N : N ;
+fun monitor_V : V ;
+fun monitoring_N : N ;
+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 monkfish_N : N ;
+fun monkish_A : A ;
+fun monkshood_N : N ;
+fun mono_A : A ;
+fun monoamine_N : N ;
+fun monoblast_N : N ;
+fun monocarboxylic_A : A ;
+fun monocarp_N : N ;
+fun monocarpic_A : A ;
+fun monochromacy_N : N ;
+fun monochromat_N : N ;
+fun monochromatic_A : A ;
+fun monochrome_A : A ;
+fun monochrome_N : N ;
+fun monocle_N : N ;
+fun monocled_A : A ;
+fun monoclinal_A : A ;
+fun monocline_N : N ;
+fun monoclinic_A : A ;
+fun monoclinous_A : A ;
+fun monoclonal_A : A ;
+fun monocot_N : N ;
+fun monocotyledonous_A : A ;
+fun monoculture_N : N ;
+fun monocyte_N : N ;
+fun monocytosis_N : N ;
+fun monodic_A : A ;
+fun monoecious_A : A ;
+fun monogamist_N : N ;
+fun monogamous_A : A ;
+fun monogamy_N : N ;
+fun monogenesis_N : N ;
+fun monogenic_A : A ;
+fun monogram_N : N ;
+fun monograph_N : N ;
+fun monogynous_A : A ;
+fun monogyny_N : N ;
+fun monohybrid_N : N ;
+fun monohydrate_N : N ;
+fun monolatry_N : N ;
+fun monolingual_A : A ;
+fun monolingual_N : N ;
+fun monolith_N : N ;
+fun monolithic_A : A ;
+fun monologist_N : N ;
+fun monologue_N : N ;
+fun monomania_N : N ;
+fun monomaniac_N : N ;
+fun monomaniacal_A : A ;
+fun monomer_N : N ;
+fun monometallic_A : A ;
+fun monomorphemic_A : A ;
+fun mononeuropathy_N : N ;
+fun mononuclear_A : A ;
+fun monophonic_A : A ;
+fun monophony_N : N ;
+fun monoplane_N : N ;
+fun monoplegia_N : N ;
+fun monopolist_N : N ;
+fun monopolistic_A : A ;
+fun monopolization_N : N ;
+fun monopolize_V : V ;
+fun monopoly_N : N ;
+fun monopsony_N : N ;
+fun monopteral_A : A ;
+fun monorail_N : N ;
+fun monorchism_N : N ;
+fun monosaccharide_N : N ;
+fun monosemous_A : A ;
+fun monosemy_N : N ;
+fun monosomy_N : N ;
+fun monosyllabic_A : A ;
+fun monosyllabically_Adv : Adv ;
+fun monosyllable_N : N ;
+fun monotheism_N : N ;
+fun monotheist_N : N ;
+fun monotheistic_A : A ;
+fun monotone_N : N ;
+fun monotonic_A : A ;
+fun monotonous_A : A ;
+fun monotony_N : N ;
+fun monotreme_N : N ;
+fun monotype_N : N ;
+fun monotypic_A : A ;
+fun monounsaturated_A : A ;
+fun monovalent_A : A ;
+fun monoxide_N : N ;
+fun monozygotic_A : A ;
+fun mons_N : N ;
+fun monsieur_N : N ;
+fun monsignor_N : N ;
+fun monsoon_N : N ;
+fun monster_N : N ;
+fun monstera_N : N ;
+fun monstrance_N : N ;
+fun monstrosity_N : N ;
+fun monstrous_A : A ;
+fun montage_N : N ;
+fun montane_A : A ;
+fun monte_N : N ;
+fun month_N : N ;
+fun monthlong_A : A ;
+fun monthly_A : A ;
+fun monthly_Adv : Adv ;
+fun monthly_N : N ;
+fun montserratian_A : A ;
+fun montserratian_N : N ;
+fun monument_N : N ;
+fun monumental_A : A ;
+fun moo_N : N ;
+fun moo_V : V ;
+fun moo_cow_N : N ;
+fun mooch_V : V ;
+fun moocher_N : N ;
+fun mood_N : N ;
+fun moodiness_N : N ;
+fun moody_A : A ;
+fun moon_N : N ;
+fun moon_V : V ;
+fun moonbeam_N : N ;
+fun moonfish_N : N ;
+fun moonflower_N : N ;
+fun moonless_A : A ;
+fun moonlight_N : N ;
+fun moonlighter_N : N ;
+fun moonlike_A : A ;
+fun moonlit_A : A ;
+fun moonseed_N : N ;
+fun moonshine_N : N ;
+fun moonstone_N : N ;
+fun moonstruck_A : A ;
+fun moonwalk_N : N ;
+fun moonwort_N : N ;
+fun moony_A : A ;
+fun moor_N : N ;
+fun moor_V : V ;
+fun moorage_N : N ;
+fun moorcock_N : N ;
+fun moorfowl_N : N ;
+fun moorgame_N : N ;
+fun moorhen_N : N ;
+fun mooring_N : N ;
+fun mooring_mast_N : N ;
+fun moorish_A : A ;
+fun moorland_N : N ;
+fun moose_N : N ;
+fun moosewood_N : N ;
+fun moot_A : A ;
+fun moot_N : N ;
+fun moot_V : V ;
+fun mop_N : N ;
+fun mop_V : V ;
+fun mope_N : N ;
+fun mope_V : V ;
+fun moped_N : N ;
+fun mopper_N : N ;
+fun moppet_N : N ;
+fun moquette_N : N ;
+fun moraceous_A : A ;
+fun moraine_N : N ;
+fun moral_A : A ;
+fun moral_N : N ;
+fun morale_N : N ;
+fun moralism_N : N ;
+fun moralist_N : N ;
+fun moralistic_A : A ;
+fun morality_N : N ;
+fun moralization_N : N ;
+fun moralize_V : V ;
+fun moralizing_N : N ;
+fun morass_N : N ;
+fun moratorium_N : N ;
+fun moray_N : N ;
+fun morbid_A : A ;
+fun morbidity_N : N ;
+fun morbidness_N : N ;
+fun morbilliform_A : A ;
+fun morceau_N : N ;
+fun mordacious_A : A ;
+fun mordacity_N : N ;
+fun mordant_A : A ;
+fun mordant_N : N ;
+fun more_Adv : Adv ;
+fun more_N : N ;
+fun moreen_N : N ;
+fun morel_N : N ;
+fun morello_N : N ;
+fun moreover_Adv : Adv ;
+fun mores_N : N ;
+fun moresque_A : A ;
+fun morganatic_A : A ;
+fun morganite_N : N ;
+fun morgen_N : N ;
+fun morgue_N : N ;
+fun moribund_A : A ;
+fun morion_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 moron_N : N ;
+fun moronic_A : A ;
+fun moronity_N : N ;
+fun morose_A : A ;
+fun moroseness_N : N ;
+fun morosoph_N : N ;
+fun morphallaxis_N : N ;
+fun morphea_N : N ;
+fun morpheme_N : N ;
+fun morphemic_A : A ;
+fun morphia_N : N ;
+fun morphine_N : N ;
+fun morphogenesis_N : N ;
+fun morphologic_A : A ;
+fun morphological_A : A ;
+fun morphology_N : N ;
+fun morphophoneme_N : N ;
+fun morphophonemic_A : A ;
+fun morphophonemics_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_V : V ;
+fun mortarboard_N : N ;
+fun mortgage_N : N ;
+fun mortgage_V : V ;
+fun mortgagee_N : N ;
+fun mortgagor_N : N ;
+fun mortice_N : N ;
+fun mortice_V : V ;
+fun mortician_N : N ;
+fun mortification_N : N ;
+fun mortify_V : V ;
+fun mortise_N : N ;
+fun mortise_V : V ;
+fun mortmain_N : N ;
+fun mortuary_A : A ;
+fun mortuary_N : N ;
+fun morula_N : N ;
+fun mosaic_A : A ;
+fun mosaic_N : N ;
+fun mosaicism_N : N ;
+fun moselle_N : N ;
+fun mosey_V : V ;
+fun moshav_N : N ;
+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 mosquitofish_N : N ;
+fun moss_N : N ;
+fun moss_grown_A : A ;
+fun mossback_N : N ;
+fun mossy_A : A ;
+fun most_Adv : Adv ;
+fun mostaccioli_N : N ;
+fun mostly_Adv : Adv ;
+fun mote_N : N ;
+fun motel_N : N ;
+fun motet_N : N ;
+fun moth_N : N ;
+fun moth_eaten_A : A ;
+fun mothball_N : N ;
+fun mother_N : N ;
+fun mother_V : V ;
+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 motherwort_N : N ;
+fun mothproof_A : A ;
+fun mothproof_V : V ;
+fun mothy_A : A ;
+fun motif_N : N ;
+fun motile_A : A ;
+fun motile_N : N ;
+fun motilin_N : N ;
+fun motility_N : N ;
+fun motion_N : N ;
+fun motion_V : V ;
+fun motional_A : A ;
+fun motionless_A : A ;
+fun motionlessness_N : N ;
+fun motivate_V : V ;
+fun motivation_N : N ;
+fun motivational_A : A ;
+fun motive_A : A ;
+fun motive_N : N ;
+fun motiveless_A : A ;
+fun motley_A : A ;
+fun motley_N : N ;
+fun motmot_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 motorcycling_N : N ;
+fun motorcyclist_N : N ;
+fun motoring_N : N ;
+fun motorist_N : N ;
+fun motorization_N : N ;
+fun motorize_V : V ;
+fun motorman_N : N ;
+fun motormouth_N : N ;
+fun motorway_N : N ;
+fun mottle_N : N ;
+fun mottle_V : V ;
+fun mottling_N : N ;
+fun motto_N : N ;
+fun mouflon_N : N ;
+fun moujik_N : N ;
+fun mould_N : N ;
+fun mould_V : V ;
+fun moulder_V : V ;
+fun moulding_N : N ;
+fun mouldy_A : A ;
+fun moult_N : N ;
+fun moult_V : V ;
+fun mound_N : N ;
+fun mount_N : N ;
+fun mount_V : V ;
+fun mountain_N : N ;
+fun mountaineer_N : N ;
+fun mountaineering_N : N ;
+fun mountainous_A : A ;
+fun mountainside_N : N ;
+fun mountebank_N : N ;
+fun mounter_N : N ;
+fun mountie_N : N ;
+fun mounting_N : N ;
+fun mourn_V : V ;
+fun mourner_N : N ;
+fun mournful_A : A ;
+fun mournfulness_N : N ;
+fun mourning_N : N ;
+fun mourning_band_N : N ;
+fun mourning_ring_N : N ;
+fun mouse_N : N ;
+fun mouse_V : V ;
+fun mousepad_N : N ;
+fun mouser_N : N ;
+fun mousetrap_N : N ;
+fun moussaka_N : N ;
+fun mousse_N : N ;
+fun moustache_N : N ;
+fun mousy_A : A ;
+fun mouth_N : N ;
+fun mouth_V : V ;
+fun mouth_organ_N : N ;
+fun mouth_watering_A : A ;
+fun mouthbreeder_N : N ;
+fun mouthful_N : N ;
+fun mouthlike_A : A ;
+fun mouthpart_N : N ;
+fun mouthpiece_N : N ;
+fun mouton_N : N ;
+fun movability_N : N ;
+fun movable_A : A ;
+fun move_N : N ;
+fun move_V : V ;
+fun movement_N : N ;
+fun mover_N : N ;
+fun movie_N : N ;
+fun moviegoer_N : N ;
+fun moviemaking_N : N ;
+fun movingly_Adv : Adv ;
+fun mow_N : N ;
+fun mow_V : V ;
+fun mower_N : N ;
+fun mown_A : A ;
+fun mozambican_A : A ;
+fun mozambican_N : N ;
+fun mozzarella_N : N ;
+fun mp_N : N ;
+fun mpg_N : N ;
+fun mph_N : N ;
+fun ms_N : N ;
+fun msasa_N : N ;
+fun msc_N : N ;
+fun mu_N : N ;
+fun much_Adv : Adv ;
+fun much_N : N ;
+fun muchness_N : N ;
+fun muciferous_A : A ;
+fun mucilage_N : N ;
+fun mucin_N : N ;
+fun mucinoid_A : A ;
+fun mucinous_A : A ;
+fun muck_N : N ;
+fun muck_V : V ;
+fun muck_heap_N : N ;
+fun muckle_N : N ;
+fun muckraker_N : N ;
+fun muckraking_N : N ;
+fun mucky_A : A ;
+fun mucocutaneous_A : A ;
+fun mucoid_A : A ;
+fun mucoid_N : N ;
+fun mucopolysaccharide_N : N ;
+fun mucopolysaccharidosis_N : N ;
+fun mucopurulent_A : A ;
+fun mucor_N : N ;
+fun mucosal_A : A ;
+fun mucous_A : A ;
+fun mucuna_N : N ;
+fun mucus_N : N ;
+fun mud_N : N ;
+fun mud_V : V ;
+fun mud_bath_N : N ;
+fun mudder_N : N ;
+fun muddle_N : N ;
+fun muddle_V : V ;
+fun muddle_headed_A : A ;
+fun muddy_A : A ;
+fun muddy_V : V ;
+fun mudguard_N : N ;
+fun mudhif_N : N ;
+fun mudra_N : N ;
+fun mudskipper_N : N ;
+fun mudslide_N : N ;
+fun mudslinger_N : N ;
+fun muesli_N : N ;
+fun muezzin_N : N ;
+fun muff_N : N ;
+fun muff_V : V ;
+fun muffin_N : N ;
+fun muffin_man_N : N ;
+fun muffle_N : N ;
+fun muffle_V : V ;
+fun muffler_N : N ;
+fun mufti_N : N ;
+fun mug_N : N ;
+fun mug_V : V ;
+fun muggee_N : N ;
+fun mugger_N : N ;
+fun mugginess_N : N ;
+fun mugging_N : N ;
+fun muggins_N : N ;
+fun muggy_A : A ;
+fun mugwort_N : N ;
+fun mugwump_N : N ;
+fun muhammadan_A : A ;
+fun muhammadan_N : N ;
+fun muhammadanism_N : N ;
+fun muishond_N : N ;
+fun mujahid_N : N ;
+fun mujahidin_N : N ;
+fun mujtihad_N : N ;
+fun mukataa_N : N ;
+fun mulatto_N : N ;
+fun mulberry_N : N ;
+fun mulch_N : N ;
+fun mulch_V : V ;
+fun mulct_V : V ;
+fun mule_N : N ;
+fun mule_V : V ;
+fun muleteer_N : N ;
+fun mulish_A : A ;
+fun mulishness_N : N ;
+fun mull_N : N ;
+fun mull_V : V ;
+fun mullah_N : N ;
+fun mullein_N : N ;
+fun muller_N : N ;
+fun mullet_N : N ;
+fun mulligatawny_N : N ;
+fun mullion_N : N ;
+fun mullioned_A : A ;
+fun mulloway_N : N ;
+fun multi_ethnicity_N : N ;
+fun multi_lingual_A : A ;
+fun multicellular_A : A ;
+fun multicollinearity_N : N ;
+fun multicultural_A : A ;
+fun multiculturalism_N : N ;
+fun multidimensional_A : A ;
+fun multiethnic_A : A ;
+fun multifactorial_A : A ;
+fun multifarious_A : A ;
+fun multiflora_N : N ;
+fun multiform_A : A ;
+fun multilane_A : A ;
+fun multilateral_A : A ;
+fun multilevel_A : A ;
+fun multilingual_A : A ;
+fun multimedia_N : N ;
+fun multinational_A : A ;
+fun multinucleate_A : A ;
+fun multiparous_A : A ;
+fun multipartite_A : A ;
+fun multiphase_A : A ;
+fun multiple_A : A ;
+fun multiple_N : N ;
+fun multiplex_A : A ;
+fun multiplex_N : N ;
+fun multiplexer_N : N ;
+fun multiplicand_N : N ;
+fun multiplication_N : N ;
+fun multiplicative_A : A ;
+fun multiplicity_N : N ;
+fun multiplier_N : N ;
+fun multiply_Adv : Adv ;
+fun multiply_V : V ;
+fun multipotent_A : A ;
+fun multiprocessing_N : N ;
+fun multiprocessor_N : N ;
+fun multiprogramming_N : N ;
+fun multipurpose_A : A ;
+fun multiracial_A : A ;
+fun multistage_N : N ;
+fun multistory_A : A ;
+fun multitude_N : N ;
+fun multitudinous_A : A ;
+fun multitudinousness_N : N ;
+fun multivalent_A : A ;
+fun multivariate_A : A ;
+fun multiversity_N : N ;
+fun multivitamin_N : N ;
+fun multum_in_parvo_N : N ;
+fun mum_A : A ;
+fun mum_N : N ;
+fun mumble_N : N ;
+fun mumble_V : V ;
+fun mumbling_N : N ;
+fun mumbo_jumbo_N : N ;
+fun mummer_N : N ;
+fun mummery_N : N ;
+fun mummichog_N : N ;
+fun mummification_N : N ;
+fun mummify_V : V ;
+fun mummy_N : N ;
+fun mumps_N : N ;
+fun mumpsimus_N : N ;
+fun munch_N : N ;
+fun munch_V : V ;
+fun muncher_N : N ;
+fun mundane_A : A ;
+fun mung_N : N ;
+fun municipal_A : A ;
+fun municipality_N : N ;
+fun munificence_N : N ;
+fun munificent_A : A ;
+fun muniments_N : N ;
+fun munition_N : N ;
+fun munition_V : V ;
+fun munj_N : N ;
+fun muntjac_N : N ;
+fun muon_N : N ;
+fun mural_A : A ;
+fun mural_N : N ;
+fun muralist_N : N ;
+fun murder_N : N ;
+fun murder_V : V ;
+fun murderee_N : N ;
+fun murderer_N : N ;
+fun murderess_N : N ;
+fun murderous_A : A ;
+fun murderousness_N : N ;
+fun murine_A : A ;
+fun murine_N : N ;
+fun murk_N : N ;
+fun murky_A : A ;
+fun murmur_N : N ;
+fun murmur_V : V ;
+fun murmurous_A : A ;
+fun murphy_N : N ;
+fun murrain_N : N ;
+fun murre_N : N ;
+fun muscadine_N : N ;
+fun muscat_N : N ;
+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 muscularity_N : N ;
+fun musculoskeletal_A : A ;
+fun muse_N : N ;
+fun muse_V : V ;
+fun muser_N : N ;
+fun musette_N : N ;
+fun museum_N : N ;
+fun mush_N : N ;
+fun musher_N : N ;
+fun mushiness_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 musicality_N : N ;
+fun musician_N : N ;
+fun musicianship_N : N ;
+fun musicological_A : A ;
+fun musicologist_N : N ;
+fun musicology_N : N ;
+fun musingly_Adv : Adv ;
+fun musk_N : N ;
+fun musk_deer_N : N ;
+fun musk_rose_N : N ;
+fun muskellunge_N : N ;
+fun musket_N : N ;
+fun musketeer_N : N ;
+fun musketry_N : N ;
+fun muskiness_N : N ;
+fun muskmelon_N : N ;
+fun muskrat_N : N ;
+fun muskwood_N : N ;
+fun musky_A : A ;
+fun muslin_N : N ;
+fun musnud_N : N ;
+fun musophobia_N : N ;
+fun musquash_N : N ;
+fun muss_N : N ;
+fun muss_V : V ;
+fun mussel_N : N ;
+fun must_N : N ;
+fun mustache_N : N ;
+fun mustachio_N : N ;
+fun mustachioed_A : A ;
+fun mustang_N : N ;
+fun mustard_N : N ;
+fun muster_N : N ;
+fun muster_V : V ;
+fun musth_N : N ;
+fun mustiness_N : N ;
+fun musty_A : A ;
+fun mutability_N : N ;
+fun mutable_A : A ;
+fun mutafacient_A : A ;
+fun mutagen_N : N ;
+fun mutagenesis_N : N ;
+fun mutagenic_A : A ;
+fun mutant_A : A ;
+fun mutant_N : N ;
+fun mutation_N : N ;
+fun mutational_A : A ;
+fun mutatis_mutandis_Adv : Adv ;
+fun mutative_A : A ;
+fun mutchkin_N : N ;
+fun mute_A : A ;
+fun mute_N : N ;
+fun mute_V : V ;
+fun muteness_N : N ;
+fun mutilate_V : V ;
+fun mutilation_N : N ;
+fun mutilator_N : N ;
+fun mutineer_N : N ;
+fun mutinous_A : A ;
+fun mutiny_N : N ;
+fun mutiny_V : V ;
+fun mutisia_N : N ;
+fun mutism_N : N ;
+fun muton_N : N ;
+fun mutt_N : N ;
+fun mutter_N : N ;
+fun mutter_V : V ;
+fun mutterer_N : N ;
+fun mutton_N : N ;
+fun mutton_head_N : N ;
+fun mutual_A : A ;
+fun mutuality_N : N ;
+fun muzhik_N : N ;
+fun muzzle_N : N ;
+fun muzzle_V : V ;
+fun muzzle_velocity_N : N ;
+fun muzzler_N : N ;
+fun muzzy_A : A ;
+fun myalgia_N : N ;
+fun myalgic_A : A ;
+fun myasthenia_N : N ;
+fun mycelium_N : N ;
+fun mycobacteria_N : N ;
+fun mycologist_N : N ;
+fun mycology_N : N ;
+fun mycomycin_N : N ;
+fun mycophagist_N : N ;
+fun mycophagy_N : N ;
+fun mycoplasma_N : N ;
+fun mycotoxin_N : N ;
+fun mydriasis_N : N ;
+fun mydriatic_N : N ;
+fun myelatelia_N : N ;
+fun myelencephalon_N : N ;
+fun myelic_A : A ;
+fun myelin_N : N ;
+fun myelinated_A : A ;
+fun myelinic_A : A ;
+fun myelinization_N : N ;
+fun myelitis_N : N ;
+fun myeloblast_N : N ;
+fun myelocyte_N : N ;
+fun myelofibrosis_N : N ;
+fun myelogram_N : N ;
+fun myelography_N : N ;
+fun myeloid_A : A ;
+fun myeloma_N : N ;
+fun myelomeningocele_N : N ;
+fun myiasis_N : N ;
+fun mylodon_N : N ;
+fun mylodontid_N : N ;
+fun myna_N : N ;
+fun mynah_N : N ;
+fun myocardial_A : A ;
+fun myocardium_N : N ;
+fun myoclonus_N : N ;
+fun myofibril_N : N ;
+fun myoglobin_N : N ;
+fun myoglobinuria_N : N ;
+fun myogram_N : N ;
+fun myoid_A : A ;
+fun myology_N : N ;
+fun myoma_N : N ;
+fun myometritis_N : N ;
+fun myometrium_N : N ;
+fun myonecrosis_N : N ;
+fun myopathic_A : A ;
+fun myopathy_N : N ;
+fun myope_N : N ;
+fun myopia_N : N ;
+fun myopic_A : A ;
+fun myosarcoma_N : N ;
+fun myosin_N : N ;
+fun myositis_N : N ;
+fun myotomy_N : N ;
+fun myotonia_N : N ;
+fun myotonic_A : A ;
+fun myriad_A : A ;
+fun myriad_N : N ;
+fun myriagram_N : N ;
+fun myriameter_N : N ;
+fun myriapod_N : N ;
+fun myringectomy_N : N ;
+fun myringoplasty_N : N ;
+fun myringotomy_N : N ;
+fun myrmecophagous_A : A ;
+fun myrmecophile_N : N ;
+fun myrmecophilous_A : A ;
+fun myrmecophyte_N : N ;
+fun myrmecophytic_A : A ;
+fun myrmidon_N : N ;
+fun myrrh_N : N ;
+fun myrtle_N : N ;
+fun mysophilia_N : N ;
+fun mysophobia_N : N ;
+fun mysophobic_A : A ;
+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_V : V ;
+fun mystique_N : N ;
+fun myth_N : N ;
+fun mythic_A : A ;
+fun mythical_A : A ;
+fun mythological_A : A ;
+fun mythologist_N : N ;
+fun mythologization_N : N ;
+fun mythology_N : N ;
+fun myxedema_N : N ;
+fun myxobacteria_N : N ;
+fun myxoma_N : N ;
+fun myxomatosis_N : N ;
+fun myxosporidian_N : N ;
+fun myxovirus_N : N ;
+fun mélange_N : N ;
+fun ménage_N : N ;
+fun mésalliance_N : N ;
+fun métier_N : N ;
+fun mêlée_N : N ;
+fun naafi_N : N ;
+fun nab_V : V ;
+fun nabob_N : N ;
+fun naboom_N : N ;
+fun nabumetone_N : N ;
+fun nacelle_N : N ;
+fun nacho_N : N ;
+fun nacre_N : N ;
+fun nacreous_A : A ;
+fun nadir_N : N ;
+fun nadolol_N : N ;
+fun nafcillin_N : N ;
+fun naff_V : V ;
+fun nag_N : N ;
+fun nag_V : V ;
+fun nagami_N : N ;
+fun nagger_N : N ;
+fun nagi_N : N ;
+fun naiad_N : N ;
+fun naiant_A : A ;
+fun naif_N : N ;
+fun nail_N : N ;
+fun nail_V : V ;
+fun nail_polish_N : N ;
+fun nail_varnish_N : N ;
+fun nailbrush_N : N ;
+fun nailer_N : N ;
+fun nailfile_N : N ;
+fun nailhead_N : N ;
+fun nainsook_N : N ;
+fun naira_N : N ;
+fun naive_DUMMY_A : A ;
+fun naive_naiver_A : A ;
+fun naivety_N : N ;
+fun naiveté_N : N ;
+fun naked_A : A ;
+fun nakedness_N : N ;
+fun nakedwood_N : N ;
+fun nalorphine_N : N ;
+fun naloxone_N : N ;
+fun naltrexone_N : N ;
+fun namby_pamby_A : A ;
+fun namby_pamby_N : N ;
+fun name_N : N ;
+fun name_V : V ;
+fun name_day_N : N ;
+fun name_drop_V : V ;
+fun name_dropping_N : N ;
+fun name_part_N : N ;
+fun nameko_N : N ;
+fun nameless_A : A ;
+fun namely_Adv : Adv ;
+fun nameplate_N : N ;
+fun namer_N : N ;
+fun namesake_N : N ;
+fun naming_N : N ;
+fun nan_N : N ;
+fun nandrolone_N : N ;
+fun nankeen_N : N ;
+fun nanny_N : N ;
+fun nanny_goat_N : N ;
+fun nanogram_N : N ;
+fun nanometer_N : N ;
+fun nanomia_N : N ;
+fun nanophthalmos_N : N ;
+fun nanosecond_N : N ;
+fun nanotechnology_N : N ;
+fun nanovolt_N : N ;
+fun nap_N : N ;
+fun nap_V : V ;
+fun napalm_N : N ;
+fun nape_N : N ;
+fun napery_N : N ;
+fun naphazoline_N : N ;
+fun naphtha_N : N ;
+fun naphthalene_N : N ;
+fun naphthol_N : N ;
+fun napkin_N : N ;
+fun napkin_ring_N : N ;
+fun napoleon_N : N ;
+fun napoleonic_A : A ;
+fun nappy_N : N ;
+fun naprapath_N : N ;
+fun naprapathy_N : N ;
+fun naproxen_N : N ;
+fun napu_N : N ;
+fun naranjilla_N : N ;
+fun narc_N : N ;
+fun narcissism_N : N ;
+fun narcissist_N : N ;
+fun narcissus_N : N ;
+fun narcolepsy_N : N ;
+fun narcoleptic_A : A ;
+fun narcoleptic_N : N ;
+fun narcosis_N : N ;
+fun narcoterrorism_N : N ;
+fun narcotic_A : A ;
+fun narcotic_N : N ;
+fun nard_N : N ;
+fun nardoo_N : N ;
+fun narial_A : A ;
+fun naris_N : N ;
+fun nark_N : N ;
+fun nark_V : V ;
+fun narrate_V : V ;
+fun narration_N : N ;
+fun narrative_A : A ;
+fun narrative_N : N ;
+fun narrator_N : N ;
+fun narrow_A : A ;
+fun narrow_N : N ;
+fun narrow_V : V ;
+fun narrow_minded_A : A ;
+fun narrow_mindedness_N : N ;
+fun narrowing_N : N ;
+fun narrowness_N : N ;
+fun narthex_N : N ;
+fun narwhal_N : N ;
+fun nasal_A : A ;
+fun nasal_N : N ;
+fun nasality_N : N ;
+fun nasalization_N : N ;
+fun nasalize_V : V ;
+fun nascent_A : A ;
+fun nasion_N : N ;
+fun nasopharyngeal_A : A ;
+fun nasopharynx_N : N ;
+fun nastiness_N : N ;
+fun nasturtium_N : N ;
+fun nasty_A : A ;
+fun natal_A : A ;
+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_V : V ;
+fun nationhood_N : N ;
+fun nationwide_A : A ;
+fun nationwide_Adv : Adv ;
+fun native_A : A ;
+fun native_N : N ;
+fun nativeness_N : N ;
+fun nativism_N : N ;
+fun nativist_A : A ;
+fun nativist_N : N ;
+fun nativity_N : N ;
+fun natriuresis_N : N ;
+fun natriuretic_A : A ;
+fun natrolite_N : N ;
+fun natter_V : V ;
+fun natterjack_N : N ;
+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 naturalness_N : N ;
+fun nature_N : N ;
+fun naturism_N : N ;
+fun naturist_N : N ;
+fun naturistic_A : A ;
+fun naturopath_N : N ;
+fun naturopathy_N : N ;
+fun naught_N : N ;
+fun naughtiness_N : N ;
+fun naughty_A : A ;
+fun naumachy_N : N ;
+fun nauruan_A : A ;
+fun nauruan_N : N ;
+fun nausea_N : N ;
+fun nauseate_V : V ;
+fun nauseating_A : A ;
+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 navicular_A : A ;
+fun navigability_N : N ;
+fun navigable_A : A ;
+fun navigate_V : V ;
+fun navigation_N : N ;
+fun navigational_A : A ;
+fun navigator_N : N ;
+fun navvy_N : N ;
+fun navy_N : N ;
+fun nawab_N : N ;
+fun nay_Adv : Adv ;
+fun nay_N : N ;
+fun naysay_V : V ;
+fun naysayer_N : N ;
+fun naysaying_N : N ;
+fun nazi_A : A ;
+fun nazi_N : N ;
+fun nazism_N : N ;
+fun naïve_A : A ;
+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_sighted_A : A ;
+fun near_to_Prep : Prep ;
+fun nearby_A : A ;
+fun nearby_Adv : Adv ;
+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 nearsighted_A : A ;
+fun neat_A : A ;
+fun neatness_N : N ;
+fun nebbish_N : N ;
+fun nebuchadnezzar_N : N ;
+fun nebula_N : N ;
+fun nebular_A : A ;
+fun nebule_N : N ;
+fun nebulous_A : A ;
+fun necessary_A : A ;
+fun necessary_N : N ;
+fun necessitarian_N : N ;
+fun necessitate_V : V ;
+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 necked_A : A ;
+fun necker_N : N ;
+fun neckerchief_N : N ;
+fun necklace_N : N ;
+fun neckless_A : A ;
+fun necklet_N : N ;
+fun necklike_A : A ;
+fun neckline_N : N ;
+fun neckpiece_N : N ;
+fun necktie_N : N ;
+fun neckwear_N : N ;
+fun necrobiosis_N : N ;
+fun necrology_N : N ;
+fun necrolysis_N : N ;
+fun necromancer_N : N ;
+fun necromancy_N : N ;
+fun necromantic_A : A ;
+fun necrophagia_N : N ;
+fun necrophilia_N : N ;
+fun necropolis_N : N ;
+fun necrosis_N : N ;
+fun necrotic_A : A ;
+fun nectar_N : N ;
+fun nectariferous_A : A ;
+fun nectarine_N : N ;
+fun nectary_N : N ;
+fun need_N : N ;
+fun need_V : V ;
+fun needful_A : A ;
+fun neediness_N : N ;
+fun needle_N : N ;
+fun needle_V : V ;
+fun needlebush_N : N ;
+fun needlecraft_N : N ;
+fun needlefish_N : N ;
+fun needlepoint_N : N ;
+fun needless_A : A ;
+fun needlewoman_N : N ;
+fun needlewood_N : N ;
+fun needlework_N : N ;
+fun needleworker_N : N ;
+fun needs_Adv : Adv ;
+fun needy_A : A ;
+fun needy_N : N ;
+fun neem_N : N ;
+fun neencephalon_N : N ;
+fun nefarious_A : A ;
+fun nefariousness_N : N ;
+fun nefazodone_N : N ;
+fun negate_V : V ;
+fun negation_N : N ;
+fun negative_A : A ;
+fun negative_N : N ;
+fun negative_V : V ;
+fun negativist_N : N ;
+fun negativity_N : N ;
+fun neglect_N : N ;
+fun neglect_V : V ;
+fun neglecter_N : N ;
+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 negotiation_N : N ;
+fun negotiator_N : N ;
+fun negotiatress_N : N ;
+fun negress_N : N ;
+fun negro_A : A ;
+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 neighbor_N : N ;
+fun neighbor_V : V ;
+fun neighborhood_N : N ;
+fun neighborliness_N : N ;
+fun neighborly_A : A ;
+fun neighbour_N : N ;
+fun neighbour_V : V ;
+fun neighbourhood_N : N ;
+fun neighbourliness_N : N ;
+fun neighbourly_A : A ;
+fun neither_A : A ;
+fun neither_Adv : Adv ;
+fun neither_Prep : Prep ;
+fun nekton_N : N ;
+fun nelfinavir_N : N ;
+fun nelly_N : N ;
+fun nelson_N : N ;
+fun nem_con_Adv : Adv ;
+fun nematode_N : N ;
+fun nemesis_N : N ;
+fun nemophila_N : N ;
+fun neo_A : A ;
+fun neoclassic_A : A ;
+fun neoclassicism_N : N ;
+fun neoclassicist_A : A ;
+fun neoclassicist_N : N ;
+fun neocolonialism_N : N ;
+fun neoconservatism_N : N ;
+fun neoconservative_N : N ;
+fun neocortical_A : A ;
+fun neodymium_N : N ;
+fun neoexpressionism_N : N ;
+fun neoliberal_A : A ;
+fun neoliberal_N : N ;
+fun neoliberalism_N : N ;
+fun neolith_N : N ;
+fun neolithic_A : A ;
+fun neologism_N : N ;
+fun neologist_N : N ;
+fun neomycin_N : N ;
+fun neon_N : N ;
+fun neonatal_A : A ;
+fun neonate_N : N ;
+fun neonatology_N : N ;
+fun neopallium_N : N ;
+fun neophobia_N : N ;
+fun neophyte_N : N ;
+fun neoplasia_N : N ;
+fun neoplasm_N : N ;
+fun neoplastic_A : A ;
+fun neoprene_N : N ;
+fun neoromanticism_N : N ;
+fun neostigmine_N : N ;
+fun neotenic_A : A ;
+fun neoteny_N : N ;
+fun neotony_N : N ;
+fun nepalese_A : A ;
+fun nepalese_N : N ;
+fun nepali_A : A ;
+fun nepali_N : N ;
+fun nepheline_N : N ;
+fun nephelinite_N : N ;
+fun nephew_N : N ;
+fun nephology_N : N ;
+fun nephoscope_N : N ;
+fun nephralgia_N : N ;
+fun nephrectomy_N : N ;
+fun nephrite_N : N ;
+fun nephritic_A : A ;
+fun nephritis_N : N ;
+fun nephrocalcinosis_N : N ;
+fun nephrolithiasis_N : N ;
+fun nephrology_N : N ;
+fun nephron_N : N ;
+fun nephroptosis_N : N ;
+fun nephrosclerosis_N : N ;
+fun nephrotomy_N : N ;
+fun nephrotoxic_A : A ;
+fun nephrotoxin_N : N ;
+fun nephthytis_N : N ;
+fun nepotism_N : N ;
+fun nepotist_N : N ;
+fun neptunium_N : N ;
+fun nerd_N : N ;
+fun nerd_V : V ;
+fun nereid_N : N ;
+fun nerita_N : N ;
+fun neritic_A : A ;
+fun neritid_N : N ;
+fun neritina_N : N ;
+fun nerve_N : N ;
+fun nerve_V : V ;
+fun nerve_cell_N : N ;
+fun nerve_centre_N : N ;
+fun nerve_racking_A : A ;
+fun nerveless_A : A ;
+fun nerves_N : N ;
+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 nester_N : N ;
+fun nestle_V : V ;
+fun nestling_N : N ;
+fun net_A : A ;
+fun net_N : N ;
+fun net_V : V ;
+fun netball_N : N ;
+fun nether_A : A ;
+fun netherlander_N : N ;
+fun nethermost_A : A ;
+fun nett_A : A ;
+fun nett_V : V ;
+fun netting_N : N ;
+fun nettle_N : N ;
+fun nettle_V : V ;
+fun nettlerash_N : N ;
+fun network_N : N ;
+fun networklike_A : A ;
+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 neurectomy_N : N ;
+fun neurinoma_N : N ;
+fun neuritis_N : N ;
+fun neuroanatomic_A : A ;
+fun neuroanatomy_N : N ;
+fun neurobiological_A : A ;
+fun neurobiological_Adv : Adv ;
+fun neurobiologist_N : N ;
+fun neurobiology_N : N ;
+fun neuroblast_N : N ;
+fun neuroblastoma_N : N ;
+fun neurochemical_N : N ;
+fun neurodermatitis_N : N ;
+fun neuroendocrine_A : A ;
+fun neuroepithelioma_N : N ;
+fun neuroepithelium_N : N ;
+fun neuroethics_N : N ;
+fun neurofibroma_N : N ;
+fun neurofibromatosis_N : N ;
+fun neurogenesis_N : N ;
+fun neurogenic_A : A ;
+fun neuroglia_N : N ;
+fun neurogliacyte_N : N ;
+fun neuroglial_A : A ;
+fun neurohormone_N : N ;
+fun neurolemma_N : N ;
+fun neurolinguist_N : N ;
+fun neurolinguistics_N : N ;
+fun neurological_A : A ;
+fun neurologist_N : N ;
+fun neurology_N : N ;
+fun neuroma_N : N ;
+fun neuromatous_A : A ;
+fun neuromotor_A : A ;
+fun neuromuscular_A : A ;
+fun neuropathy_N : N ;
+fun neurophysiological_A : A ;
+fun neurophysiology_N : N ;
+fun neuropil_N : N ;
+fun neuroplasty_N : N ;
+fun neuropsychiatric_A : A ;
+fun neuropsychiatry_N : N ;
+fun neuropsychological_A : A ;
+fun neuropteron_N : N ;
+fun neurosarcoma_N : N ;
+fun neuroscience_N : N ;
+fun neuroscientist_N : N ;
+fun neurosis_N : N ;
+fun neurosurgeon_N : N ;
+fun neurosurgery_N : N ;
+fun neurosyphilis_N : N ;
+fun neurotic_A : A ;
+fun neurotic_N : N ;
+fun neurotically_Adv : Adv ;
+fun neurotoxic_A : A ;
+fun neurotoxin_N : N ;
+fun neurotransmitter_N : N ;
+fun neurotropic_A : A ;
+fun neurotropism_N : N ;
+fun neuter_A : A ;
+fun neuter_N : N ;
+fun neuter_V : V ;
+fun neutering_N : N ;
+fun neutral_A : A ;
+fun neutral_N : N ;
+fun neutralism_N : N ;
+fun neutralist_N : N ;
+fun neutrality_N : N ;
+fun neutralization_N : N ;
+fun neutralize_V : V ;
+fun neutrino_N : N ;
+fun neutron_N : N ;
+fun neutropenia_N : N ;
+fun neutrophil_N : N ;
+fun neve_N : N ;
+fun never_Adv : Adv ;
+fun nevermore_Adv : Adv ;
+fun nevertheless_Adv : Adv ;
+fun nevirapine_N : N ;
+fun new_A : A ;
+fun new_Adv : Adv ;
+fun newborn_A : A ;
+fun newcomer_N : N ;
+fun newel_N : N ;
+fun newfangled_A : A ;
+fun newfound_A : A ;
+fun newlywed_N : N ;
+fun newmarket_N : N ;
+fun newness_N : N ;
+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 newspapering_N : N ;
+fun newspaperman_N : N ;
+fun newspeak_N : N ;
+fun newsprint_N : N ;
+fun newsreader_N : N ;
+fun newsreel_N : N ;
+fun newsroom_N : N ;
+fun newssheet_N : N ;
+fun newsstand_N : N ;
+fun newsvendor_N : N ;
+fun newswoman_N : N ;
+fun newsworthiness_N : N ;
+fun newsworthy_A : A ;
+fun newsy_A : A ;
+fun newt_N : N ;
+fun newton_N : N ;
+fun newtonian_A : A ;
+fun newtonian_N : N ;
+fun next_A : A ;
+fun next_N : N ;
+fun next_Prep : Prep ;
+fun next_to_Prep : Prep ;
+fun nexus_N : N ;
+fun ngultrum_N : N ;
+fun ngwee_N : N ;
+fun nhs_N : N ;
+fun niacin_N : N ;
+fun nib_N : N ;
+fun nibbed_A : A ;
+fun nibble_N : N ;
+fun nibble_V : V ;
+fun nibbler_N : N ;
+fun niblick_N : N ;
+fun nicad_N : N ;
+fun nicaraguan_A : A ;
+fun nicaraguan_N : N ;
+fun nice_A : A ;
+fun niceness_N : N ;
+fun nicety_N : N ;
+fun niche_N : N ;
+fun nick_N : N ;
+fun nick_V : V ;
+fun nickel_N : N ;
+fun nickel_V : V ;
+fun nicknack_N : N ;
+fun nickname_N : N ;
+fun nickname_V : V ;
+fun nicotine_N : N ;
+fun nidicolous_A : A ;
+fun nidifugous_A : A ;
+fun nidus_N : N ;
+fun niece_N : N ;
+fun nifedipine_N : N ;
+fun niff_N : N ;
+fun niffy_A : A ;
+fun nifty_A : A ;
+fun nigella_N : N ;
+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 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 nighthawk_N : N ;
+fun nightie_N : N ;
+fun nightingale_N : N ;
+fun nightjar_N : N ;
+fun nightlife_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 nightwear_N : N ;
+fun nightwork_N : N ;
+fun nihil_N : N ;
+fun nihilism_N : N ;
+fun nihilist_N : N ;
+fun nihilistic_A : A ;
+fun nil_N : N ;
+fun nilgai_N : N ;
+fun nilotic_A : A ;
+fun nilpotent_A : A ;
+fun nim_N : N ;
+fun nimble_A : A ;
+fun nimbleness_N : N ;
+fun nimblewill_N : N ;
+fun nimbus_N : N ;
+fun niminy_piminy_A : A ;
+fun nincompoop_N : N ;
+fun ninefold_A : A ;
+fun ninefold_Adv : Adv ;
+fun ninepence_N : N ;
+fun ninepenny_A : A ;
+fun ninepin_N : N ;
+fun ninepins_N : N ;
+fun ninja_N : N ;
+fun ninjutsu_N : N ;
+fun ninny_N : N ;
+fun ninon_N : N ;
+fun ninth_A : A ;
+fun ninth_N : N ;
+fun niobite_N : N ;
+fun niobium_N : N ;
+fun nip_N : N ;
+fun nip_V : V ;
+fun nipa_N : N ;
+fun nipper_N : N ;
+fun nipple_N : N ;
+fun nipponese_A : A ;
+fun nippy_A : A ;
+fun niqaabi_N : N ;
+fun niqab_N : N ;
+fun nirvana_N : N ;
+fun nisi_A : A ;
+fun nit_N : N ;
+fun nitpicker_N : N ;
+fun nitrate_N : N ;
+fun nitrazepam_N : N ;
+fun nitre_N : N ;
+fun nitric_A : A ;
+fun nitride_N : N ;
+fun nitrification_N : N ;
+fun nitrile_N : N ;
+fun nitrite_N : N ;
+fun nitrobacterium_N : N ;
+fun nitrobenzene_N : N ;
+fun nitrocalcite_N : N ;
+fun nitrochalk_N : N ;
+fun nitrochloromethane_N : N ;
+fun nitrofuran_N : N ;
+fun nitrofurantoin_N : N ;
+fun nitrogen_N : N ;
+fun nitrogenase_N : N ;
+fun nitrogenous_A : A ;
+fun nitroglycerin_N : N ;
+fun nitroglycerine_N : N ;
+fun nitrosobacteria_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_V : V ;
+fun no_ball_N : N ;
+fun no_go_A : A ;
+fun no_man's_land_N : N ;
+fun nob_N : N ;
+fun nobble_V : V ;
+fun nobelium_N : N ;
+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 nocent_A : A ;
+fun nociceptive_A : A ;
+fun noctambulist_N : N ;
+fun noctiluca_N : N ;
+fun noctilucent_A : A ;
+fun nocturia_N : N ;
+fun nocturnal_A : A ;
+fun nocturne_N : N ;
+fun nod_N : N ;
+fun nod_V : V ;
+fun noddle_N : N ;
+fun node_N : N ;
+fun nodular_A : A ;
+fun nodulated_A : A ;
+fun nodule_N : N ;
+fun nodulose_A : A ;
+fun noel_N : N ;
+fun nog_N : N ;
+fun noggin_N : N ;
+fun nogging_N : N ;
+fun nohow_Adv : Adv ;
+fun noise_N : N ;
+fun noise_V : V ;
+fun noiseless_A : A ;
+fun noiselessness_N : N ;
+fun noisemaker_N : N ;
+fun noisiness_N : N ;
+fun noisome_A : A ;
+fun noisy_A : A ;
+fun nom_de_plume_N : N ;
+fun noma_N : N ;
+fun nomad_N : N ;
+fun nomadic_A : A ;
+fun nombril_N : N ;
+fun nomenclature_N : N ;
+fun nomenklatura_N : N ;
+fun nomia_N : N ;
+fun nominal_A : A ;
+fun nominalism_N : N ;
+fun nominalist_N : N ;
+fun nominalistic_A : A ;
+fun nominate_V : V ;
+fun nomination_N : N ;
+fun nominative_A : A ;
+fun nominative_N : N ;
+fun nominator_N : N ;
+fun nominee_N : N ;
+fun nomogram_N : N ;
+fun nomothetic_A : A ;
+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 nonabsorbency_N : N ;
+fun nonabsorbent_A : A ;
+fun nonacceptance_N : N ;
+fun nonaccomplishment_N : N ;
+fun nonaddictive_A : A ;
+fun nonadhesive_A : A ;
+fun nonadjacent_A : A ;
+fun nonadsorbent_A : A ;
+fun nonage_N : N ;
+fun nonagenarian_A : A ;
+fun nonagenarian_N : N ;
+fun nonaggression_N : N ;
+fun nonagon_N : N ;
+fun nonalcoholic_A : A ;
+fun nonaligned_A : A ;
+fun nonalignment_N : N ;
+fun nonallele_N : N ;
+fun nonappearance_N : N ;
+fun nonappointive_A : A ;
+fun nonarbitrable_A : A ;
+fun nonarbitrary_A : A ;
+fun nonarboreal_A : A ;
+fun nonassertive_A : A ;
+fun nonassociative_A : A ;
+fun nonastringent_A : A ;
+fun nonattendance_N : N ;
+fun nonautonomous_A : A ;
+fun nonbearing_A : A ;
+fun nonbeing_N : N ;
+fun nonbelligerent_A : A ;
+fun noncaloric_A : A ;
+fun noncandidate_N : N ;
+fun noncarbonated_A : A ;
+fun noncausative_A : A ;
+fun nonce_N : N ;
+fun nonce_word_N : N ;
+fun noncellular_A : A ;
+fun nonchalance_N : N ;
+fun nonchalant_A : A ;
+fun noncivilized_A : A ;
+fun nonclassical_A : A ;
+fun noncollapsible_A : A ;
+fun noncolumned_A : A ;
+fun noncombatant_A : A ;
+fun noncombatant_N : N ;
+fun noncombinative_A : A ;
+fun noncombining_A : A ;
+fun noncombustible_A : A ;
+fun noncommercial_A : A ;
+fun noncommissioned_A : A ;
+fun noncommittal_A : A ;
+fun noncommunicable_A : A ;
+fun noncompetitive_A : A ;
+fun noncomprehensive_A : A ;
+fun nonconductive_A : A ;
+fun nonconductor_N : N ;
+fun nonconforming_A : A ;
+fun nonconformism_N : N ;
+fun nonconformist_A : A ;
+fun nonconformist_N : N ;
+fun nonconformity_N : N ;
+fun nonconscious_A : A ;
+fun noncontentious_A : A ;
+fun nonconvergent_A : A ;
+fun noncritical_A : A ;
+fun noncrucial_A : A ;
+fun noncrystalline_A : A ;
+fun noncurrent_A : A ;
+fun noncyclic_A : A ;
+fun nondeductible_A : A ;
+fun nondenominational_A : A ;
+fun nondescript_A : A ;
+fun nondescript_N : N ;
+fun nondevelopment_N : N ;
+fun nondigestible_A : A ;
+fun nondisjunction_N : N ;
+fun nondisposable_A : A ;
+fun nondriver_N : N ;
+fun none_A : A ;
+fun none_Adv : Adv ;
+fun nonechoic_A : A ;
+fun noneffervescent_A : A ;
+fun nonelective_A : A ;
+fun nonentity_N : N ;
+fun nonenzymatic_A : A ;
+fun nonequivalence_N : N ;
+fun nonequivalent_A : A ;
+fun nones_N : N ;
+fun nonesuch_N : N ;
+fun nonevent_N : N ;
+fun nonexempt_A : A ;
+fun nonexistence_N : N ;
+fun nonexistent_A : A ;
+fun nonexploratory_A : A ;
+fun nonexplosive_A : A ;
+fun nonextant_A : A ;
+fun nonextensile_A : A ;
+fun nonfat_A : A ;
+fun nonfatal_A : A ;
+fun nonfeasance_N : N ;
+fun nonfiction_N : N ;
+fun nonfictional_A : A ;
+fun nonfinancial_A : A ;
+fun nonfissile_A : A ;
+fun nonfissionable_A : A ;
+fun nonflammable_A : A ;
+fun nonfunctional_A : A ;
+fun nonglutinous_A : A ;
+fun nongranular_A : A ;
+fun nongregarious_A : A ;
+fun nonhairy_A : A ;
+fun nonharmonic_A : A ;
+fun nonhereditary_A : A ;
+fun nonhierarchical_A : A ;
+fun nonhuman_A : A ;
+fun nonimitative_A : A ;
+fun nonindulgent_A : A ;
+fun nonindustrial_A : A ;
+fun noninfectious_A : A ;
+fun noninflammatory_A : A ;
+fun noninheritable_A : A ;
+fun noninstitutional_A : A ;
+fun noninstitutionalized_A : A ;
+fun nonintegrated_A : A ;
+fun nonintellectual_A : A ;
+fun noninterchangeable_A : A ;
+fun nonintervention_N : N ;
+fun noninvasive_A : A ;
+fun nonionic_A : A ;
+fun nonionized_A : A ;
+fun nonjudgmental_A : A ;
+fun nonkosher_A : A ;
+fun nonlethal_A : A ;
+fun nonlexical_A : A ;
+fun nonlinear_A : A ;
+fun nonlinguistic_A : A ;
+fun nonmagnetic_A : A ;
+fun nonmandatory_A : A ;
+fun nonmechanical_A : A ;
+fun nonmechanistic_A : A ;
+fun nonmember_N : N ;
+fun nonmetal_N : N ;
+fun nonmetallic_A : A ;
+fun nonmetamorphic_A : A ;
+fun nonmigratory_A : A ;
+fun nonmodern_A : A ;
+fun nonmonotonic_A : A ;
+fun nonmoral_A : A ;
+fun nonmotile_A : A ;
+fun nonmoving_A : A ;
+fun nonnative_A : A ;
+fun nonnatural_A : A ;
+fun nonnegative_A : A ;
+fun nonnomadic_A : A ;
+fun nonnormative_A : A ;
+fun nonobservance_N : N ;
+fun nonobservant_A : A ;
+fun nonoccurrence_N : N ;
+fun nonopening_A : A ;
+fun nonoperational_A : A ;
+fun nonoscillatory_A : A ;
+fun nonparallel_A : A ;
+fun nonparametric_A : A ;
+fun nonpareil_A : A ;
+fun nonpareil_N : N ;
+fun nonparticipant_N : N ;
+fun nonparticulate_A : A ;
+fun nonpartisan_A : A ;
+fun nonpartisan_N : N ;
+fun nonpasserine_A : A ;
+fun nonpayment_N : N ;
+fun nonperson_N : N ;
+fun nonpersonal_A : A ;
+fun nonphotosynthetic_A : A ;
+fun nonplus_nonplused_V : V ;
+fun nonplus_nonplussed_V : V ;
+fun nonpoisonous_A : A ;
+fun nonpolitical_A : A ;
+fun nonporous_A : A ;
+fun nonpregnant_A : A ;
+fun nonprehensile_A : A ;
+fun nonproductive_A : A ;
+fun nonprofessional_A : A ;
+fun nonprofit_A : A ;
+fun nonprognosticative_A : A ;
+fun nonproliferation_N : N ;
+fun nonproprietary_A : A ;
+fun nonpsychoactive_A : A ;
+fun nonpublic_A : A ;
+fun nonpurulent_A : A ;
+fun nonracial_A : A ;
+fun nonradioactive_A : A ;
+fun nonrandom_A : A ;
+fun nonrational_A : A ;
+fun nonreader_N : N ;
+fun nonreciprocal_A : A ;
+fun nonreciprocating_A : A ;
+fun nonrecreational_A : A ;
+fun nonreflective_A : A ;
+fun nonrepetitive_A : A ;
+fun nonrepresentational_A : A ;
+fun nonrepresentative_A : A ;
+fun nonresident_A : A ;
+fun nonresident_N : N ;
+fun nonresidential_A : A ;
+fun nonresilient_A : A ;
+fun nonresinous_A : A ;
+fun nonresistance_N : N ;
+fun nonresistant_A : A ;
+fun nonrestrictive_A : A ;
+fun nonreticulate_A : A ;
+fun nonretractile_A : A ;
+fun nonreturnable_A : A ;
+fun nonreversible_A : A ;
+fun nonrhythmic_A : A ;
+fun nonrigid_A : A ;
+fun nonruminant_A : A ;
+fun nonsectarian_A : A ;
+fun nonsense_N : N ;
+fun nonsensical_A : A ;
+fun nonsensitive_A : A ;
+fun nonsignificant_A : A ;
+fun nonskid_A : A ;
+fun nonslip_A : A ;
+fun nonslippery_A : A ;
+fun nonsmoker_N : N ;
+fun nonspatial_A : A ;
+fun nonspeaking_A : A ;
+fun nonspecific_A : A ;
+fun nonspecifically_Adv : Adv ;
+fun nonspherical_A : A ;
+fun nonstandard_A : A ;
+fun nonstarter_N : N ;
+fun nonsteroid_N : N ;
+fun nonsteroidal_A : A ;
+fun nonstick_A : A ;
+fun nonstop_A : A ;
+fun nonstop_Adv : Adv ;
+fun nonstructural_A : A ;
+fun nonsubmersible_A : A ;
+fun nonsuch_N : N ;
+fun nonsuppurative_A : A ;
+fun nonsurgical_A : A ;
+fun nonsyllabic_A : A ;
+fun nonsynchronous_A : A ;
+fun nonsynthetic_A : A ;
+fun nontaxable_A : A ;
+fun nontechnical_A : A ;
+fun nontelescopic_A : A ;
+fun nonterritorial_A : A ;
+fun nonthermal_A : A ;
+fun nontoxic_A : A ;
+fun nontraditional_A : A ;
+fun nontransferable_A : A ;
+fun nontranslational_A : A ;
+fun nontricyclic_N : N ;
+fun nonturbulent_A : A ;
+fun nonuniformity_N : N ;
+fun nonunion_A : A ;
+fun nonuple_A : A ;
+fun nonvenomous_A : A ;
+fun nonverbal_A : A ;
+fun nonviable_A : A ;
+fun nonviolence_N : N ;
+fun nonviolent_A : A ;
+fun nonvisual_A : A ;
+fun nonvolatile_A : A ;
+fun nonwashable_A : A ;
+fun nonwoody_A : A ;
+fun nonworker_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_V : V ;
+fun nopal_N : N ;
+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 noradrenaline_N : N ;
+fun nordic_A : A ;
+fun nordic_N : N ;
+fun norethindrone_N : N ;
+fun norethynodrel_N : N ;
+fun norgestrel_N : N ;
+fun noria_N : N ;
+fun norm_N : N ;
+fun normal_A : A ;
+fun normal_N : N ;
+fun normalcy_N : N ;
+fun normalisation_N : N ;
+fun normality_N : N ;
+fun normalization_N : N ;
+fun normalize_V : V ;
+fun normalizer_N : N ;
+fun norman_A : A ;
+fun norman_N : N ;
+fun normative_A : A ;
+fun normotensive_A : A ;
+fun normothermia_N : N ;
+fun norse_A : A ;
+fun norse_N : N ;
+fun north_northeast_Adv : Adv ;
+fun north_northeast_N : N ;
+fun north_northwest_Adv : Adv ;
+fun north_northwest_N : N ;
+fun northbound_A : A ;
+fun northeast_Adv : Adv ;
+fun northeast_N : N ;
+fun northeaster_N : N ;
+fun northeasterly_A : A ;
+fun northeastern_A : A ;
+fun northeastward_A : A ;
+fun northeastward_Adv : Adv ;
+fun northerly_A : A ;
+fun northerly_Adv : Adv ;
+fun northerner_N : N ;
+fun northernmost_A : A ;
+fun northernness_N : N ;
+fun northland_N : N ;
+fun northman_N : N ;
+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 northwestward_A : A ;
+fun northwestward_Adv : Adv ;
+fun nortriptyline_N : N ;
+fun norwegian_A : A ;
+fun norwegian_N : N ;
+fun nose_N : N ;
+fun nose_V : V ;
+fun nose_flute_N : N ;
+fun nose_wheel_N : N ;
+fun nosebag_N : N ;
+fun noseband_N : N ;
+fun nosebleed_N : N ;
+fun nosecone_N : N ;
+fun nosedive_N : N ;
+fun nosedive_V : V ;
+fun nosegay_N : N ;
+fun noseless_A : A ;
+fun nosepiece_N : N ;
+fun nosering_N : N ;
+fun nosewheel_N : N ;
+fun nosey_A : A ;
+fun nosh_N : N ;
+fun nosh_V : V ;
+fun nosh_up_N : N ;
+fun nosher_N : N ;
+fun nosiness_N : N ;
+fun nosocomial_A : A ;
+fun nosohusial_A : A ;
+fun nosology_N : N ;
+fun nostalgia_N : N ;
+fun nostalgic_A : A ;
+fun nostalgically_Adv : Adv ;
+fun nostoc_N : N ;
+fun nostril_N : N ;
+fun nostrum_N : N ;
+fun nosy_A : A ;
+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_V : V ;
+fun note_N : N ;
+fun note_V : V ;
+fun notebook_N : N ;
+fun notecase_N : N ;
+fun notepad_N : N ;
+fun notepaper_N : N ;
+fun noteworthy_A : A ;
+fun nothing_Adv : Adv ;
+fun nothing_N : N ;
+fun nothingness_N : N ;
+fun nothings_N : N ;
+fun nothosaur_N : N ;
+fun notice_N : N ;
+fun notice_V : V ;
+fun notice_board_N : N ;
+fun noticeable_A : A ;
+fun noticer_N : N ;
+fun notifiable_A : A ;
+fun notification_N : N ;
+fun notify_V : V ;
+fun notion_N : N ;
+fun notional_A : A ;
+fun notochord_N : N ;
+fun notoriety_N : N ;
+fun notorious_A : A ;
+fun notornis_N : N ;
+fun notwithstanding_Adv : Adv ;
+fun notwithstanding_Prep : Prep ;
+fun nougat_N : N ;
+fun nought_N : N ;
+fun noumenon_N : N ;
+fun noun_N : N ;
+fun nourish_V : V ;
+fun nourishment_N : N ;
+fun nous_N : N ;
+fun nouveau_riche_N : N ;
+fun nova_N : N ;
+fun novation_N : N ;
+fun novel_A : A ;
+fun novel_N : N ;
+fun novelette_N : N ;
+fun novelist_N : N ;
+fun novelization_N : N ;
+fun novelty_N : N ;
+fun novena_N : N ;
+fun novice_N : N ;
+fun noviciate_N : N ;
+fun novillada_N : N ;
+fun novillero_N : N ;
+fun novitiate_N : N ;
+fun novobiocin_N : N ;
+fun now_Adv : Adv ;
+fun now_N : N ;
+fun nowadays_Adv : Adv ;
+fun nowhere_Adv : Adv ;
+fun nowhere_N : N ;
+fun nowise_Adv : Adv ;
+fun noxious_A : A ;
+fun noxiousness_N : N ;
+fun nozzle_N : N ;
+fun nspcc_N : N ;
+fun nt_N : N ;
+fun nth_A : A ;
+fun nu_N : N ;
+fun nuance_N : N ;
+fun nub_N : N ;
+fun nubbin_N : N ;
+fun nubile_A : A ;
+fun nucellus_N : N ;
+fun nuclear_A : A ;
+fun nuclease_N : N ;
+fun nucleated_A : A ;
+fun nucleic_A : A ;
+fun nucleolus_N : N ;
+fun nucleon_N : N ;
+fun nucleoplasm_N : N ;
+fun nucleoprotein_N : N ;
+fun nucleoside_N : N ;
+fun nucleosynthesis_N : N ;
+fun nucleotide_N : N ;
+fun nucleus_N : N ;
+fun nude_A : A ;
+fun nude_N : N ;
+fun nudge_N : N ;
+fun nudge_V : V ;
+fun nudger_N : N ;
+fun nudism_N : N ;
+fun nudist_N : N ;
+fun nudity_N : N ;
+fun nudnik_N : N ;
+fun nugatory_A : A ;
+fun nugget_N : N ;
+fun nuisance_N : N ;
+fun null_A : A ;
+fun nullah_N : N ;
+fun nullification_N : N ;
+fun nullifier_N : N ;
+fun nullify_V : V ;
+fun nullipara_N : N ;
+fun nullity_N : N ;
+fun numb_A : A ;
+fun numb_V : V ;
+fun numbat_N : N ;
+fun number_N : N ;
+fun number_V : V ;
+fun numberless_A : A ;
+fun numberplate_N : N ;
+fun numbing_A : A ;
+fun numbness_N : N ;
+fun numdah_N : N ;
+fun numen_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 numerological_A : A ;
+fun numerologist_N : N ;
+fun numerology_N : N ;
+fun numerous_A : A ;
+fun numerousness_N : N ;
+fun numinous_A : A ;
+fun numismatics_N : N ;
+fun numismatist_N : N ;
+fun nummulite_N : N ;
+fun numskull_N : N ;
+fun nun_N : N ;
+fun nuncio_N : N ;
+fun nunnery_N : N ;
+fun nuptial_A : A ;
+fun nurse_N : N ;
+fun nurse_V : V ;
+fun nurseling_N : N ;
+fun nursemaid_N : N ;
+fun nurser_N : N ;
+fun nursery_N : N ;
+fun nurseryman_N : N ;
+fun nursing_N : N ;
+fun nursing_home_N : N ;
+fun nursling_N : N ;
+fun nurtural_A : A ;
+fun nurturance_N : N ;
+fun nurturant_A : A ;
+fun nurture_N : N ;
+fun nurture_V : V ;
+fun nut_N : N ;
+fun nut_V : V ;
+fun nut_brown_A : A ;
+fun nut_butter_N : N ;
+fun nutation_N : N ;
+fun nutbrown_A : A ;
+fun nutcracker_N : N ;
+fun nutgrass_N : N ;
+fun nuthatch_N : N ;
+fun nuthouse_N : N ;
+fun nutlet_N : N ;
+fun nutlike_A : A ;
+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 nutritiousness_N : N ;
+fun nutritive_A : A ;
+fun nuts_A : A ;
+fun nutshell_N : N ;
+fun nutter_N : N ;
+fun nutty_A : A ;
+fun nuzzle_V : V ;
+fun nyala_N : N ;
+fun nybble_N : N ;
+fun nyctalopia_N : N ;
+fun nyctophobia_N : N ;
+fun nylon_N : N ;
+fun nylons_N : N ;
+fun nymph_N : N ;
+fun nymphalid_N : N ;
+fun nymphet_N : N ;
+fun nympho_N : N ;
+fun nympholepsy_N : N ;
+fun nympholept_N : N ;
+fun nymphomania_N : N ;
+fun nymphomaniac_A : A ;
+fun nymphomaniac_N : N ;
+fun nymphomaniacal_A : A ;
+fun nystagmus_N : N ;
+fun nystatin_N : N ;
+fun née_A : A ;
+fun négligé_N : N ;
+fun o'clock_Adv : Adv ;
+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 oakum_N : N ;
+fun oar_N : N ;
+fun oarfish_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 oaten_A : A ;
+fun oath_N : N ;
+fun oatmeal_N : N ;
+fun oau_N : N ;
+fun obbligato_N : N ;
+fun obduracy_N : N ;
+fun obdurate_A : A ;
+fun obeah_N : N ;
+fun obeche_N : N ;
+fun obedience_N : N ;
+fun obedient_A : A ;
+fun obeisance_N : N ;
+fun obelion_N : N ;
+fun obelisk_N : N ;
+fun obese_A : A ;
+fun obesity_N : N ;
+fun obey_V : V ;
+fun obfuscate_V : V ;
+fun obfuscation_N : N ;
+fun obi_N : N ;
+fun obiism_N : N ;
+fun obiter_dictum_N : N ;
+fun obituary_N : N ;
+fun object_N : N ;
+fun object_V : V ;
+fun objectification_N : N ;
+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_V : V ;
+fun objurgation_N : N ;
+fun oblanceolate_A : A ;
+fun oblate_A : A ;
+fun oblate_N : N ;
+fun oblateness_N : N ;
+fun oblation_N : N ;
+fun obligate_A : A ;
+fun obligate_V : V ;
+fun obligation_N : N ;
+fun obligational_A : A ;
+fun obligatory_A : A ;
+fun oblige_V : V ;
+fun obliger_N : N ;
+fun obliging_A : A ;
+fun oblique_A : A ;
+fun oblique_N : N ;
+fun obliqueness_N : N ;
+fun obliquity_N : N ;
+fun obliterable_A : A ;
+fun obliterate_V : V ;
+fun obliteration_N : N ;
+fun obliterator_N : N ;
+fun oblivion_N : N ;
+fun oblivious_A : A ;
+fun obliviousness_N : N ;
+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 obolus_N : N ;
+fun obovate_A : A ;
+fun obscene_A : A ;
+fun obscenity_N : N ;
+fun obscurantism_N : N ;
+fun obscurantist_N : N ;
+fun obscure_A : A ;
+fun obscure_V : V ;
+fun obscureness_N : N ;
+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 observer_N : N ;
+fun obsess_V : V ;
+fun obsession_N : N ;
+fun obsessional_A : A ;
+fun obsessive_A : A ;
+fun obsessive_N : N ;
+fun obsessiveness_N : N ;
+fun obsidian_N : N ;
+fun obsolescence_N : N ;
+fun obsolescent_A : A ;
+fun obsolete_A : A ;
+fun obsoleteness_N : N ;
+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 obstipation_N : N ;
+fun obstreperous_A : A ;
+fun obstreperousness_N : N ;
+fun obstruct_V : V ;
+fun obstruction_N : N ;
+fun obstructionism_N : N ;
+fun obstructionist_N : N ;
+fun obstructive_A : A ;
+fun obstruent_N : N ;
+fun obtain_V : V ;
+fun obtainable_A : A ;
+fun obtainment_N : N ;
+fun obtrude_V : V ;
+fun obtrusive_A : A ;
+fun obtrusiveness_N : N ;
+fun obturator_N : N ;
+fun obtuse_A : A ;
+fun obtuseness_N : N ;
+fun obverse_N : N ;
+fun obviate_V : V ;
+fun obviation_N : N ;
+fun obvious_A : A ;
+fun obviousness_N : N ;
+fun oca_N : N ;
+fun ocarina_N : N ;
+fun occasion_N : N ;
+fun occasion_V : V ;
+fun occasional_A : A ;
+fun occasions_N : N ;
+fun occidental_A : A ;
+fun occidental_N : N ;
+fun occidentalism_N : N ;
+fun occipital_A : A ;
+fun occiput_N : N ;
+fun occluded_A : A ;
+fun occlusion_N : N ;
+fun occlusive_A : A ;
+fun occult_A : A ;
+fun occult_N : N ;
+fun occultism_N : N ;
+fun occultist_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 occur_V : V ;
+fun occurr_V : V ;
+fun occurrence_N : N ;
+fun occurrent_A : A ;
+fun ocean_N : N ;
+fun oceanfront_N : N ;
+fun oceangoing_A : A ;
+fun oceanic_A : A ;
+fun oceanographer_N : N ;
+fun oceanography_N : N ;
+fun ocellated_A : A ;
+fun ocelot_N : N ;
+fun ocher_A : A ;
+fun ocher_N : N ;
+fun ochre_N : N ;
+fun ochronosis_N : N ;
+fun ocotillo_N : N ;
+fun octagon_N : N ;
+fun octagonal_A : A ;
+fun octahedron_N : N ;
+fun octal_A : A ;
+fun octameter_N : N ;
+fun octane_N : N ;
+fun octangular_A : A ;
+fun octant_N : N ;
+fun octave_N : N ;
+fun octavo_N : N ;
+fun octet_N : N ;
+fun octette_N : N ;
+fun octillion_N : N ;
+fun octogenarian_A : A ;
+fun octogenarian_N : N ;
+fun octopod_N : N ;
+fun octopus_N : N ;
+fun octoroon_N : N ;
+fun octosyllabic_A : A ;
+fun octosyllable_N : N ;
+fun octroi_N : N ;
+fun octuple_A : A ;
+fun ocular_A : A ;
+fun oculism_N : N ;
+fun oculist_N : N ;
+fun oculomotor_N : N ;
+fun odalisque_N : N ;
+fun odd_A : A ;
+fun odd_job_A : A ;
+fun oddish_A : A ;
+fun oddity_N : N ;
+fun oddment_N : N ;
+fun oddness_N : N ;
+fun odds_N : N ;
+fun odds_on_A : A ;
+fun odds_on_Adv : Adv ;
+fun ode_N : N ;
+fun odious_A : A ;
+fun odist_N : N ;
+fun odium_N : N ;
+fun odometer_N : N ;
+fun odonate_N : N ;
+fun odontoglossum_N : N ;
+fun odoriferous_A : A ;
+fun odorless_A : A ;
+fun odorous_A : A ;
+fun odour_N : N ;
+fun odourless_A : A ;
+fun odynophagia_N : N ;
+fun odyssey_N : N ;
+fun oecd_N : N ;
+fun oecumenical_A : A ;
+fun oed_N : N ;
+fun oenomel_N : N ;
+fun oersted_N : N ;
+fun oesophagus_N : N ;
+fun oeuvre_N : N ;
+fun of_Prep : Prep ;
+fun of_course_Adv : Adv ;
+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 offbeat_A : A ;
+fun offence_N : N ;
+fun offenceless_A : A ;
+fun offend_V : V ;
+fun offender_N : N ;
+fun offense_N : N ;
+fun offenseless_A : A ;
+fun offensive_A : A ;
+fun offensive_N : N ;
+fun offensiveness_N : N ;
+fun offer_N : N ;
+fun offer_V : V ;
+fun offerer_N : N ;
+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 officeholder_N : N ;
+fun officer_N : N ;
+fun official_A : A ;
+fun official_N : N ;
+fun officialdom_N : N ;
+fun officialese_N : N ;
+fun officiant_N : N ;
+fun officiate_V : V ;
+fun officiation_N : N ;
+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_V : V ;
+fun offshoot_N : N ;
+fun offshore_A : A ;
+fun offshore_Adv : Adv ;
+fun offside_A : A ;
+fun offside_Adv : Adv ;
+fun offside_N : N ;
+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 ogee_N : N ;
+fun ogle_V : V ;
+fun ogler_N : N ;
+fun ogre_N : N ;
+fun ogreish_A : A ;
+fun ogress_N : N ;
+fun ohm_N : N ;
+fun ohmage_N : N ;
+fun ohmic_A : A ;
+fun ohmmeter_N : N ;
+fun oil_N : N ;
+fun oil_V : V ;
+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 oilbird_N : N ;
+fun oilcan_N : N ;
+fun oilcloth_N : N ;
+fun oiler_N : N ;
+fun oilfield_N : N ;
+fun oilfired_A : A ;
+fun oilfish_N : N ;
+fun oiliness_N : N ;
+fun oilman_N : N ;
+fun oilpaper_N : N ;
+fun oilseed_N : N ;
+fun oilskin_N : N ;
+fun oilstone_N : N ;
+fun oily_A : A ;
+fun ointment_N : N ;
+fun oka_N : N ;
+fun okapi_N : N ;
+fun okay_A : A ;
+fun okay_Adv : Adv ;
+fun okay_V : V ;
+fun okra_N : N ;
+fun ola_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_womanish_A : A ;
+fun old_world_A : A ;
+fun olden_A : A ;
+fun oldie_N : N ;
+fun oldish_A : A ;
+fun oldline_A : A ;
+fun oldness_N : N ;
+fun oldster_N : N ;
+fun oleaceous_A : A ;
+fun oleaginous_A : A ;
+fun oleander_N : N ;
+fun oleaster_N : N ;
+fun olecranon_N : N ;
+fun oleophilic_A : A ;
+fun oleophobic_A : A ;
+fun oleoresin_N : N ;
+fun olfactory_A : A ;
+fun oligarch_N : N ;
+fun oligarchic_A : A ;
+fun oligarchy_N : N ;
+fun oligochaete_N : N ;
+fun oligodactyly_N : N ;
+fun oligodendrocyte_N : N ;
+fun oligodendroglia_N : N ;
+fun oligodontia_N : N ;
+fun oligomenorrhea_N : N ;
+fun oligopoly_N : N ;
+fun oligosaccharide_N : N ;
+fun oligospermia_N : N ;
+fun oliguria_N : N ;
+fun olive_A : A ;
+fun olive_N : N ;
+fun olive_tree_N : N ;
+fun olivelike_A : A ;
+fun olivenite_N : N ;
+fun olivine_N : N ;
+fun olm_N : N ;
+fun ology_N : N ;
+fun olympiad_N : N ;
+fun olympian_A : A ;
+fun olympian_N : N ;
+fun olympic_A : A ;
+fun omani_A : A ;
+fun omani_N : N ;
+fun ombu_N : N ;
+fun ombudsman_N : N ;
+fun omega_N : N ;
+fun omelet_N : N ;
+fun omelette_N : N ;
+fun omen_N : N ;
+fun omen_V : V ;
+fun omentum_N : N ;
+fun omeprazole_N : N ;
+fun omerta_N : N ;
+fun omicron_N : N ;
+fun ominous_A : A ;
+fun omissible_A : A ;
+fun omission_N : N ;
+fun omissive_A : A ;
+fun omit_V : V ;
+fun ommastrephes_N : N ;
+fun ommatidium_N : N ;
+fun omnibus_N : N ;
+fun omnidirectional_A : A ;
+fun omnifarious_A : A ;
+fun omnipotence_N : N ;
+fun omnipotent_A : A ;
+fun omnipresent_A : A ;
+fun omnirange_N : N ;
+fun omniscience_N : N ;
+fun omniscient_A : A ;
+fun omnivore_N : N ;
+fun omnivorous_A : A ;
+fun omophagia_N : N ;
+fun omphaloskepsis_N : N ;
+fun on_Adv : Adv ;
+fun on_Prep : Prep ;
+fun on_account_of_Prep : Prep ;
+fun on_behalf_of_Prep : Prep ;
+fun on_licence_N : N ;
+fun on_top_of_Prep : Prep ;
+fun onager_N : N ;
+fun once_Adv : Adv ;
+fun once_Prep : Prep ;
+fun onchocerciasis_N : N ;
+fun oncidium_N : N ;
+fun oncogene_N : N ;
+fun oncological_A : A ;
+fun oncologist_N : N ;
+fun oncology_N : N ;
+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 oneiric_A : A ;
+fun oneiromancer_N : N ;
+fun oneiromancy_N : N ;
+fun oneness_N : N ;
+fun onerous_A : A ;
+fun ongoing_A : A ;
+fun onion_N : N ;
+fun onionskin_N : N ;
+fun onlooker_N : N ;
+fun only_Adv : Adv ;
+fun onomancer_N : N ;
+fun onomancy_N : N ;
+fun onomastic_A : A ;
+fun onomasticon_N : N ;
+fun onomastics_N : N ;
+fun onomatomania_N : N ;
+fun onomatopoeia_N : N ;
+fun onomatopoeic_A : A ;
+fun onrush_N : N ;
+fun onset_N : N ;
+fun onshore_A : A ;
+fun onshore_Adv : Adv ;
+fun onside_A : A ;
+fun onslaught_N : N ;
+fun onstage_A : A ;
+fun onstage_Adv : Adv ;
+fun onto_Prep : Prep ;
+fun ontogenetic_A : A ;
+fun ontological_A : A ;
+fun ontology_N : N ;
+fun onus_N : N ;
+fun onward_A : A ;
+fun onward_Adv : Adv ;
+fun onwards_Adv : Adv ;
+fun onycholysis_N : N ;
+fun onychophoran_N : N ;
+fun onychosis_N : N ;
+fun onymous_A : A ;
+fun onyx_N : N ;
+fun oocyte_N : N ;
+fun oogenesis_N : N ;
+fun oology_N : N ;
+fun oolong_N : N ;
+fun oomph_N : N ;
+fun oophorectomy_N : N ;
+fun oophoritis_N : N ;
+fun oophorosalpingectomy_N : N ;
+fun oosphere_N : N ;
+fun oospore_N : N ;
+fun ootid_N : N ;
+fun ooze_N : N ;
+fun ooze_V : V ;
+fun oozy_A : A ;
+fun op_art_N : N ;
+fun opacification_N : N ;
+fun opacity_N : N ;
+fun opah_N : N ;
+fun opal_N : N ;
+fun opalescence_N : N ;
+fun opalescent_A : A ;
+fun opaque_A : A ;
+fun opaqueness_N : N ;
+fun open_A : A ;
+fun open_N : N ;
+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 open_opened_V : V ;
+fun open_openned_V : V ;
+fun openbill_N : N ;
+fun opencast_A : A ;
+fun opener_N : N ;
+fun openhearted_A : A ;
+fun opening_N : N ;
+fun openness_N : N ;
+fun openwork_N : N ;
+fun opepe_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 operagoer_N : N ;
+fun operand_N : N ;
+fun operant_A : A ;
+fun operate_V : V ;
+fun operatic_A : A ;
+fun operating_table_N : N ;
+fun operating_theatre_N : N ;
+fun operation_N : N ;
+fun operational_A : A ;
+fun operationalism_N : N ;
+fun operationalist_A : A ;
+fun operations_N : N ;
+fun operative_A : A ;
+fun operative_N : N ;
+fun operator_N : N ;
+fun operculate_A : A ;
+fun operculum_N : N ;
+fun operetta_N : N ;
+fun operon_N : N ;
+fun ophidism_N : N ;
+fun ophiolatry_N : N ;
+fun ophryon_N : N ;
+fun ophthalmectomy_N : N ;
+fun ophthalmia_N : N ;
+fun ophthalmic_A : A ;
+fun ophthalmologist_N : N ;
+fun ophthalmology_N : N ;
+fun ophthalmoplegia_N : N ;
+fun ophthalmoscope_N : N ;
+fun ophthalmoscopy_N : N ;
+fun opiate_N : N ;
+fun opine_V : V ;
+fun opinion_N : N ;
+fun opinionated_A : A ;
+fun opinionative_A : A ;
+fun opisthognathous_A : A ;
+fun opisthorchiasis_N : N ;
+fun opisthotonos_N : N ;
+fun opium_N : N ;
+fun opium_den_N : N ;
+fun opopanax_N : N ;
+fun opossum_N : N ;
+fun opponent_A : A ;
+fun opponent_N : N ;
+fun opportune_A : A ;
+fun opportuneness_N : N ;
+fun opportunism_N : N ;
+fun opportunist_A : A ;
+fun opportunist_N : N ;
+fun opportunity_N : N ;
+fun opposable_A : A ;
+fun oppose_V : V ;
+fun opposite_A : A ;
+fun opposite_N : N ;
+fun opposite_Prep : Prep ;
+fun opposition_N : N ;
+fun oppress_V : V ;
+fun oppression_N : N ;
+fun oppressive_A : A ;
+fun oppressor_N : N ;
+fun opprobrious_A : A ;
+fun opprobrium_N : N ;
+fun oppugn_V : V ;
+fun opsin_N : N ;
+fun opsonin_N : N ;
+fun opsonization_N : N ;
+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 optimisation_N : N ;
+fun optimism_N : N ;
+fun optimist_N : N ;
+fun optimistic_A : A ;
+fun optimistically_Adv : Adv ;
+fun optimization_N : N ;
+fun optimum_A : A ;
+fun optimum_N : N ;
+fun option_N : N ;
+fun optional_A : A ;
+fun optometrist_N : N ;
+fun optometry_N : N ;
+fun opulence_N : N ;
+fun opulent_A : A ;
+fun opus_N : N ;
+fun orach_N : N ;
+fun oracle_N : N ;
+fun oracular_A : A ;
+fun orad_Adv : Adv ;
+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 orangery_N : N ;
+fun orangewood_N : N ;
+fun orangutan_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 orbiculate_A : A ;
+fun orbit_N : N ;
+fun orbit_V : V ;
+fun orbital_A : A ;
+fun orbitale_N : N ;
+fun orchard_N : N ;
+fun orchestra_N : N ;
+fun orchestral_A : A ;
+fun orchestrate_V : V ;
+fun orchestration_N : N ;
+fun orchestrator_N : N ;
+fun orchid_N : N ;
+fun orchidalgia_N : N ;
+fun orchidectomy_N : N ;
+fun orchil_N : N ;
+fun orchiopexy_N : N ;
+fun orchis_N : N ;
+fun orchitis_N : N ;
+fun orchotomy_N : N ;
+fun ordain_V : V ;
+fun ordainer_N : N ;
+fun ordeal_N : N ;
+fun order_N : N ;
+fun order_V : V ;
+fun order_book_N : N ;
+fun order_form_N : N ;
+fun order_paper_N : N ;
+fun orderer_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 ordinariness_N : N ;
+fun ordinary_A : A ;
+fun ordinary_N : N ;
+fun ordinate_N : N ;
+fun ordination_N : N ;
+fun ordnance_N : N ;
+fun ordure_N : N ;
+fun ore_N : N ;
+fun oregano_N : N ;
+fun oreo_N : N ;
+fun organ_N : N ;
+fun organ_blower_N : N ;
+fun organ_grinder_N : N ;
+fun organ_loft_N : N ;
+fun organdie_N : N ;
+fun organdy_N : N ;
+fun organelle_N : N ;
+fun organic_A : A ;
+fun organic_N : N ;
+fun organically_Adv : Adv ;
+fun organicism_N : N ;
+fun organicistic_A : A ;
+fun organification_N : N ;
+fun organisation_N : N ;
+fun organise_V : V ;
+fun organiser_N : N ;
+fun organism_N : N ;
+fun organismal_A : A ;
+fun organist_N : N ;
+fun organization_N : N ;
+fun organizational_A : A ;
+fun organize_V : V ;
+fun organizer_N : N ;
+fun organon_N : N ;
+fun organophosphate_N : N ;
+fun organza_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_V : V ;
+fun oriental_A : A ;
+fun oriental_N : N ;
+fun orientalism_N : N ;
+fun orientalist_N : N ;
+fun orientate_V : V ;
+fun orientation_N : N ;
+fun orienting_A : A ;
+fun orifice_N : N ;
+fun oriflamme_N : N ;
+fun origami_N : N ;
+fun origanum_N : N ;
+fun origin_N : N ;
+fun original_A : A ;
+fun original_N : N ;
+fun originalism_N : N ;
+fun originality_N : N ;
+fun originate_V : V ;
+fun originator_N : N ;
+fun oriole_N : N ;
+fun orison_N : N ;
+fun orlop_N : N ;
+fun ormer_N : N ;
+fun ormolu_N : N ;
+fun ornament_N : N ;
+fun ornament_V : V ;
+fun ornamental_A : A ;
+fun ornamental_N : N ;
+fun ornamentalism_N : N ;
+fun ornamentation_N : N ;
+fun ornate_A : A ;
+fun ornateness_N : N ;
+fun ornery_A : A ;
+fun ornithine_N : N ;
+fun ornithischian_N : N ;
+fun ornithological_A : A ;
+fun ornithologist_N : N ;
+fun ornithology_N : N ;
+fun ornithomimid_N : N ;
+fun ornithopod_N : N ;
+fun orogeny_N : N ;
+fun oroide_N : N ;
+fun orologist_N : N ;
+fun orology_N : N ;
+fun oropharyngeal_A : A ;
+fun oropharynx_N : N ;
+fun orotund_A : A ;
+fun orphan_N : N ;
+fun orphan_V : V ;
+fun orphanage_N : N ;
+fun orphenadrine_N : N ;
+fun orphrey_N : N ;
+fun orpiment_N : N ;
+fun orpine_N : N ;
+fun orrery_N : N ;
+fun orrisroot_N : N ;
+fun orthicon_N : N ;
+fun orthochorea_N : N ;
+fun orthoclase_N : N ;
+fun orthodontic_A : A ;
+fun orthodontics_N : N ;
+fun orthodontist_N : N ;
+fun orthodox_A : A ;
+fun orthodoxy_N : N ;
+fun orthoepist_N : N ;
+fun orthoepy_N : N ;
+fun orthogonal_A : A ;
+fun orthogonality_N : N ;
+fun orthographic_A : A ;
+fun orthography_N : N ;
+fun orthomolecular_A : A ;
+fun orthomyxovirus_N : N ;
+fun orthopaedic_A : A ;
+fun orthopaedics_N : N ;
+fun orthopedic_A : A ;
+fun orthopedics_N : N ;
+fun orthopedist_N : N ;
+fun orthopnea_N : N ;
+fun orthopter_N : N ;
+fun orthoptic_A : A ;
+fun orthoptics_N : N ;
+fun orthoptist_N : N ;
+fun orthoscope_N : N ;
+fun orthostatic_A : A ;
+fun orthotropous_A : A ;
+fun ortolan_N : N ;
+fun ortygan_N : N ;
+fun oryx_N : N ;
+fun orzo_N : N ;
+fun os_N : N ;
+fun oscar_N : N ;
+fun oscheocele_N : N ;
+fun oscillate_V : V ;
+fun oscillation_N : N ;
+fun oscillator_N : N ;
+fun oscillatory_A : A ;
+fun oscillogram_N : N ;
+fun oscillograph_N : N ;
+fun oscilloscope_N : N ;
+fun oscine_A : A ;
+fun oscine_N : N ;
+fun oscitancy_N : N ;
+fun osculation_N : N ;
+fun osier_N : N ;
+fun osmiridium_N : N ;
+fun osmium_N : N ;
+fun osmoreceptor_N : N ;
+fun osmosis_N : N ;
+fun osmotic_A : A ;
+fun osmotically_Adv : Adv ;
+fun osprey_N : N ;
+fun osseous_A : A ;
+fun ossicle_N : N ;
+fun ossicular_A : A ;
+fun ossiferous_A : A ;
+fun ossification_N : N ;
+fun ossify_V : V ;
+fun ossuary_N : N ;
+fun osteal_A : A ;
+fun osteitis_N : N ;
+fun ostensible_A : A ;
+fun ostensive_A : A ;
+fun ostentation_N : N ;
+fun ostentatious_A : A ;
+fun osteoarthritis_N : N ;
+fun osteoblast_N : N ;
+fun osteoblastoma_N : N ;
+fun osteochondroma_N : N ;
+fun osteoclasis_N : N ;
+fun osteoclast_N : N ;
+fun osteocyte_N : N ;
+fun osteodystrophy_N : N ;
+fun osteologist_N : N ;
+fun osteology_N : N ;
+fun osteolysis_N : N ;
+fun osteoma_N : N ;
+fun osteomalacia_N : N ;
+fun osteomyelitis_N : N ;
+fun osteopath_N : N ;
+fun osteopathy_N : N ;
+fun osteopetrosis_N : N ;
+fun osteophyte_N : N ;
+fun osteoporosis_N : N ;
+fun osteosarcoma_N : N ;
+fun osteosclerosis_N : N ;
+fun osteostracan_N : N ;
+fun osteotomy_N : N ;
+fun ostinato_N : N ;
+fun ostiole_N : N ;
+fun ostler_N : N ;
+fun ostomy_N : N ;
+fun ostracism_N : N ;
+fun ostracize_V : V ;
+fun ostracoderm_N : N ;
+fun ostrich_N : N ;
+fun ot_N : N ;
+fun other_A : A ;
+fun other_Adv : Adv ;
+fun other_N : N ;
+fun otherness_N : N ;
+fun otherwise_A : A ;
+fun otherwise_Adv : Adv ;
+fun otherworld_N : N ;
+fun otherworldly_A : A ;
+fun othonna_N : N ;
+fun otic_A : A ;
+fun otiose_A : A ;
+fun otitis_N : N ;
+fun otology_N : N ;
+fun otoplasty_N : N ;
+fun otorrhea_N : N ;
+fun otosclerosis_N : N ;
+fun otoscope_N : N ;
+fun ototoxic_A : A ;
+fun otter_N : N ;
+fun otterhound_N : N ;
+fun ottoman_N : N ;
+fun oubliette_N : N ;
+fun ouguiya_N : N ;
+fun ouija_N : N ;
+fun ouija_board_N : N ;
+fun ounce_N : N ;
+fun oust_V : V ;
+fun ouster_N : N ;
+fun out_A : A ;
+fun out_Adv : Adv ;
+fun out_N : N ;
+fun out_Prep : Prep ;
+fun out_V : V ;
+fun out_from_Prep : Prep ;
+fun out_herod_V : V ;
+fun out_of_Prep : Prep ;
+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_V : V ;
+fun out_tray_N : N ;
+fun outage_N : N ;
+fun outback_A : A ;
+fun outback_N : N ;
+fun outbalance_V : V ;
+fun outbid_outbade_outbid_V : V ;
+fun outbid_outbade_outbidden_V : V ;
+fun outbid_outbid_outbid_V : V ;
+fun outbid_outbid_outbidden_V : V ;
+fun outboard_A : A ;
+fun outbound_A : A ;
+fun outbrave_V : V ;
+fun outbreak_N : N ;
+fun outbred_A : A ;
+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_V : V ;
+fun outcome_N : N ;
+fun outcrop_N : N ;
+fun outcry_N : N ;
+fun outdated_A : A ;
+fun outdistance_V : V ;
+fun outdo_V : V ;
+fun outdoor_A : A ;
+fun outdoors_Adv : Adv ;
+fun outdoors_N : N ;
+fun outdoorsman_N : N ;
+fun outdoorswoman_N : N ;
+fun outdoorsy_A : A ;
+fun outer_A : A ;
+fun outercourse_N : N ;
+fun outermost_A : A ;
+fun outerwear_N : N ;
+fun outface_V : V ;
+fun outfall_N : N ;
+fun outfield_N : N ;
+fun outfielder_N : N ;
+fun outfight_V : V ;
+fun outfit_N : N ;
+fun outfit_V : V ;
+fun outfitter_N : N ;
+fun outfitting_N : N ;
+fun outflank_V : V ;
+fun outflow_N : N ;
+fun outfly_V : V ;
+fun outfox_V : V ;
+fun outgain_V : V ;
+fun outgo_N : N ;
+fun outgo_V : V ;
+fun outgrow_V : V ;
+fun outgrowth_N : N ;
+fun outhouse_N : N ;
+fun outing_N : N ;
+fun outlandish_A : A ;
+fun outlandishness_N : N ;
+fun outlast_V : V ;
+fun outlaw_N : N ;
+fun outlaw_V : V ;
+fun outlawry_N : N ;
+fun outlay_N : N ;
+fun outleap_V : V ;
+fun outlet_N : N ;
+fun outlier_N : N ;
+fun outline_N : N ;
+fun outline_V : V ;
+fun outlive_V : V ;
+fun outlook_N : N ;
+fun outlying_A : A ;
+fun outmanoeuvre_V : V ;
+fun outmarch_V : V ;
+fun outmatch_V : V ;
+fun outmoded_A : A ;
+fun outmost_A : A ;
+fun outnumber_V : V ;
+fun outpace_V : V ;
+fun outpatient_N : N ;
+fun outperform_V : V ;
+fun outplay_V : V ;
+fun outpoint_V : V ;
+fun outport_N : N ;
+fun outpost_N : N ;
+fun outpouring_N : N ;
+fun output_N : N ;
+fun outrage_N : N ;
+fun outrage_V : V ;
+fun outrageous_A : A ;
+fun outrageousness_N : N ;
+fun outrange_V : V ;
+fun outrank_V : V ;
+fun outreach_N : N ;
+fun outride_V : V ;
+fun outrider_N : N ;
+fun outrigged_A : A ;
+fun outrigger_N : N ;
+fun outright_A : A ;
+fun outright_Adv : Adv ;
+fun outrival_V : V ;
+fun outrun_V : V ;
+fun outré_A : A ;
+fun outsail_V : V ;
+fun outsell_V : V ;
+fun outset_N : N ;
+fun outshine_V : V ;
+fun outside_A : A ;
+fun outside_Adv : Adv ;
+fun outside_N : N ;
+fun outside_Prep : Prep ;
+fun outside_of_Prep : Prep ;
+fun outsider_N : N ;
+fun outsize_A : A ;
+fun outsize_N : N ;
+fun outskirt_N : N ;
+fun outskirts_N : N ;
+fun outsmart_V : V ;
+fun outsole_N : N ;
+fun outspan_V : V ;
+fun outspoken_A : A ;
+fun outspokenness_N : N ;
+fun outspread_A : A ;
+fun outstanding_A : A ;
+fun outstation_N : N ;
+fun outstay_V : V ;
+fun outstretched_A : A ;
+fun outstrip_V : V ;
+fun outstroke_N : N ;
+fun outtake_N : N ;
+fun outthrust_N : N ;
+fun outvie_V : V ;
+fun outvote_V : V ;
+fun outward_A : A ;
+fun outward_Adv : Adv ;
+fun outwardness_N : N ;
+fun outwards_Adv : Adv ;
+fun outwear_V : V ;
+fun outweigh_V : V ;
+fun outwit_V : V ;
+fun outwith_Prep : Prep ;
+fun outwork_N : N ;
+fun ouzel_N : N ;
+fun ouzo_N : N ;
+fun oval_A : A ;
+fun oval_N : N ;
+fun ovarian_A : A ;
+fun ovaritis_N : N ;
+fun ovary_N : N ;
+fun ovate_A : A ;
+fun ovation_N : N ;
+fun oven_N : N ;
+fun ovenbird_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_V : V ;
+fun over_ripe_A : A ;
+fun overabundance_N : N ;
+fun overabundant_A : A ;
+fun overachievement_N : N ;
+fun overachiever_N : N ;
+fun overact_V : V ;
+fun overactive_A : A ;
+fun overactivity_N : N ;
+fun overage_A : A ;
+fun overage_N : N ;
+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 overarm_A : A ;
+fun overarm_Adv : Adv ;
+fun overawe_V : V ;
+fun overbalance_V : V ;
+fun overbear_V : V ;
+fun overbearing_A : A ;
+fun overbid_N : N ;
+fun overbid_overbade_overbid_V : V ;
+fun overbid_overbade_overbidden_V : V ;
+fun overbid_overbid_overbid_V : V ;
+fun overbid_overbid_overbidden_V : V ;
+fun overbite_N : N ;
+fun overblown_A : A ;
+fun overboard_Adv : Adv ;
+fun overbold_A : A ;
+fun overburden_N : N ;
+fun overburden_V : V ;
+fun overbusy_A : A ;
+fun overcall_V : V ;
+fun overcapitalization_N : N ;
+fun overcapitalize_V : V ;
+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 overclothe_V : V ;
+fun overcloud_V : V ;
+fun overcoat_N : N ;
+fun overcome_overcame_V : V ;
+fun overcome_overcomed_V : V ;
+fun overcommit_V : V ;
+fun overcompensation_N : N ;
+fun overconfidence_N : N ;
+fun overconfident_A : A ;
+fun overcook_V : V ;
+fun overcredulity_N : N ;
+fun overcredulous_A : A ;
+fun overcritical_A : A ;
+fun overcrop_V : V ;
+fun overcrowd_V : V ;
+fun overcurious_A : A ;
+fun overdelicate_A : A ;
+fun overdo_V : V ;
+fun overdose_V : V ;
+fun overdraft_N : N ;
+fun overdraw_V : V ;
+fun overdress_V : V ;
+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 overenthusiastic_A : A ;
+fun overestimate_N : N ;
+fun overestimate_V : V ;
+fun overexcited_A : A ;
+fun overexert_V : V ;
+fun overexertion_N : N ;
+fun overexploitation_N : N ;
+fun overexpose_V : V ;
+fun overexposure_N : N ;
+fun overfamiliar_A : A ;
+fun overfed_A : A ;
+fun overfeed_V : V ;
+fun overfeeding_N : N ;
+fun overflight_N : N ;
+fun overflow_N : N ;
+fun overflow_V : V ;
fun overfly_V : V ;
-fun whiz_V : V ;
+fun overfond_A : A ;
+fun overfull_A : A ;
+fun overgarment_N : N ;
+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 overhasty_A : A ;
+fun overhaul_N : N ;
+fun overhaul_V : V ;
+fun overhead_A : A ;
+fun overhead_Adv : Adv ;
+fun overhead_N : N ;
+fun overhear_V : V ;
+fun overheat_V : V ;
+fun overheating_N : N ;
+fun overindulge_V : V ;
+fun overindulgence_N : N ;
+fun overindulgent_A : A ;
+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 overlarge_A : A ;
+fun overlay_N : N ;
+fun overlay_V : V ;
+fun overleaf_Adv : Adv ;
+fun overleap_V : V ;
+fun overlie_V : V ;
+fun overlip_N : N ;
+fun overload_N : N ;
+fun overload_V : V ;
+fun overlook_N : N ;
+fun overlook_V : V ;
+fun overlord_N : N ;
+fun overlordship_N : N ;
+fun overly_Adv : Adv ;
+fun overmantel_N : N ;
+fun overmaster_V : V ;
+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 overnighter_N : N ;
+fun overpass_N : N ;
+fun overpay_overpaid_V : V ;
+fun overpay_overpayed_V : V ;
+fun overpayment_N : N ;
+fun overplant_V : V ;
+fun overplay_V : V ;
+fun overplus_N : N ;
+fun overpopulation_N : N ;
+fun overpower_V : V ;
+fun overpowering_A : A ;
+fun overpraise_V : V ;
+fun overpressure_N : N ;
+fun overprice_V : V ;
+fun overprint_N : N ;
+fun overprint_V : V ;
+fun overproduce_V : V ;
+fun overproduction_N : N ;
+fun overprotective_A : A ;
+fun overproud_A : A ;
+fun overrate_V : V ;
+fun overreach_V : V ;
+fun overreaching_A : A ;
+fun overreact_V : V ;
+fun overreaction_N : N ;
+fun overrefined_A : A ;
+fun override_N : N ;
+fun override_V : V ;
+fun overriding_A : A ;
+fun overripe_A : A ;
+fun overrule_V : V ;
+fun overrun_V : V ;
+fun oversea_A : A ;
+fun oversea_Adv : Adv ;
+fun overseas_A : A ;
+fun overseas_Adv : Adv ;
+fun oversee_V : V ;
+fun overseer_N : N ;
+fun oversell_V : V ;
+fun oversensitive_A : A ;
+fun oversensitiveness_N : N ;
+fun overserious_A : A ;
+fun oversew_oversewed_V : V ;
+fun oversew_oversewn_V : V ;
+fun oversewn_A : A ;
+fun oversexed_A : A ;
+fun overshadow_V : V ;
+fun overshoe_N : N ;
+fun overshoot_N : N ;
+fun overshoot_V : V ;
+fun overside_Adv : Adv ;
+fun oversight_N : N ;
+fun oversimplification_N : N ;
+fun oversimplify_V : V ;
+fun oversize_A : A ;
+fun overskirt_N : N ;
+fun oversleep_V : V ;
+fun oversolicitous_A : A ;
+fun overspend_V : V ;
+fun overspill_N : N ;
+fun overstate_V : V ;
+fun overstatement_N : N ;
+fun overstay_V : V ;
+fun overstep_V : V ;
+fun overstock_V : V ;
+fun overstrain_N : N ;
+fun overstrain_V : V ;
+fun overstrung_A : A ;
+fun overstuffed_A : A ;
+fun oversubscribe_V : V ;
+fun oversuspicious_A : A ;
+fun overt_A : A ;
+fun overtake_V : V ;
+fun overtax_V : V ;
+fun overthrow_N : N ;
+fun overthrow_V : V ;
+fun overthwart_Prep : Prep ;
+fun overtime_Adv : Adv ;
+fun overtime_N : N ;
+fun overtolerance_N : N ;
+fun overtone_N : N ;
+fun overtop_V : V ;
+fun overtrump_V : V ;
+fun overture_N : N ;
+fun overturn_N : N ;
+fun overturn_V : V ;
+fun overvaliant_A : A ;
+fun overvaluation_N : N ;
+fun overvalue_V : V ;
+fun overview_N : N ;
+fun overweening_A : A ;
+fun overweight_A : A ;
+fun overweight_N : N ;
+fun overweighted_A : A ;
+fun overwhelm_V : V ;
+fun overwhelmingly_Adv : Adv ;
+fun overwork_N : N ;
+fun overwork_V : V ;
+fun overwrought_A : A ;
+fun overzealous_A : A ;
+fun oviduct_N : N ;
+fun ovine_A : A ;
+fun oviparous_A : A ;
+fun ovipositor_N : N ;
+fun oviraptorid_N : N ;
+fun ovoid_A : A ;
+fun ovoid_N : N ;
+fun ovolo_N : N ;
+fun ovotestis_N : N ;
+fun ovoviviparous_A : A ;
+fun ovular_A : A ;
+fun ovulation_N : N ;
+fun ovule_N : N ;
+fun ovum_N : N ;
+fun owe_V : V ;
+fun owing_to_Prep : Prep ;
+fun owl_N : N ;
+fun owlet_N : N ;
+fun owlish_A : A ;
+fun own_A : A ;
+fun own_V : V ;
+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 oxacillin_N : N ;
+fun oxalacetate_N : N ;
+fun oxalate_N : N ;
+fun oxalis_N : N ;
+fun oxaprozin_N : N ;
+fun oxazepam_N : N ;
+fun oxbow_N : N ;
+fun oxcart_N : N ;
+fun oxeye_N : N ;
+fun oxeyed_A : A ;
+fun oxford_N : N ;
+fun oxidant_N : N ;
+fun oxidase_N : N ;
+fun oxidation_N : N ;
+fun oxidative_A : A ;
+fun oxide_N : N ;
+fun oxidizable_A : A ;
+fun oxidization_N : N ;
+fun oxidize_V : V ;
+fun oxidoreductase_N : N ;
+fun oxime_N : N ;
+fun oximeter_N : N ;
+fun oxlip_N : N ;
+fun oxonian_A : A ;
+fun oxonian_N : N ;
+fun oxtail_N : N ;
+fun oxtant_N : N ;
+fun oxtongue_N : N ;
+fun oxyacetylene_A : A ;
+fun oxyacetylene_N : N ;
+fun oxyacid_N : N ;
+fun oxycephaly_N : N ;
+fun oxygen_N : N ;
+fun oxygenase_N : N ;
+fun oxygenate_V : V ;
+fun oxygenation_N : N ;
+fun oxygenize_V : V ;
+fun oxyhemoglobin_N : N ;
+fun oxymoron_N : N ;
+fun oxyopia_N : N ;
+fun oxyphenbutazone_N : N ;
+fun oxyphencyclimine_N : N ;
+fun oxytetracycline_N : N ;
+fun oxytocic_N : N ;
+fun oxytocin_N : N ;
+fun oxytone_N : N ;
+fun oyabun_N : N ;
+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 oystercatcher_N : N ;
+fun oz_N : N ;
+fun ozena_N : N ;
+fun ozone_N : N ;
+fun ozonide_N : N ;
+fun pH_N : N ;
+fun p_N : N ;
+fun pa'anga_N : N ;
+fun pa_N : N ;
+fun pabulum_N : N ;
+fun paca_N : N ;
+fun pace_N : N ;
+fun pace_Prep : Prep ;
+fun pace_V : V ;
+fun pacemaker_N : N ;
+fun pacer_N : N ;
+fun pacesetter_N : N ;
+fun pachinko_N : N ;
+fun pachisi_N : N ;
+fun pachuco_N : N ;
+fun pachycephalosaur_N : N ;
+fun pachycheilia_N : N ;
+fun pachyderm_N : N ;
+fun pachydermatous_A : A ;
+fun pachysandra_N : N ;
+fun pachytene_N : N ;
+fun pacific_A : A ;
+fun pacifically_Adv : Adv ;
+fun pacification_N : N ;
+fun pacifier_N : N ;
+fun pacifism_N : N ;
+fun pacifist_N : N ;
+fun pacifistically_Adv : Adv ;
+fun pacify_V : V ;
+fun pacing_N : N ;
+fun pack_N : N ;
+fun pack_V : V ;
+fun pack_animal_N : N ;
+fun pack_saddle_N : N ;
+fun pack_thread_N : N ;
+fun packable_A : A ;
+fun package_N : N ;
+fun package_V : V ;
+fun packaging_N : N ;
+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 packinghouse_N : N ;
+fun packrat_N : N ;
+fun packsaddle_N : N ;
+fun packthread_N : N ;
+fun pact_N : N ;
+fun pad_N : N ;
+fun pad_V : V ;
+fun padauk_N : N ;
+fun padding_N : N ;
+fun paddle_N : N ;
+fun paddle_V : V ;
+fun paddle_box_N : N ;
+fun paddle_steamer_N : N ;
+fun paddle_wheel_N : N ;
+fun paddlefish_N : N ;
+fun paddlewheel_N : N ;
+fun paddock_N : N ;
+fun paddy_N : N ;
+fun paddy_field_N : N ;
+fun paddy_wagon_N : N ;
+fun pademelon_N : N ;
+fun padlock_N : N ;
+fun padlock_V : V ;
+fun padre_N : N ;
+fun padrone_N : N ;
+fun paean_N : N ;
+fun paederasty_N : N ;
+fun paediatrics_N : N ;
+fun paella_N : N ;
+fun paeony_N : N ;
+fun pagan_A : A ;
+fun pagan_N : N ;
+fun paganism_N : N ;
+fun page_N : N ;
+fun page_V : V ;
+fun pageant_N : N ;
+fun pageantry_N : N ;
+fun pageboy_N : N ;
+fun pagination_N : N ;
+fun paging_N : N ;
+fun pagoda_N : N ;
+fun pahautea_N : N ;
+fun pahoehoe_N : N ;
+fun pail_N : N ;
+fun pailful_N : N ;
+fun paillasse_N : N ;
+fun pailliasse_N : N ;
+fun pain_N : N ;
+fun pain_V : V ;
+fun painful_A : A ;
+fun painfulness_N : N ;
+fun painkiller_N : N ;
+fun painless_A : A ;
+fun painstaking_A : A ;
+fun paint_N : N ;
+fun paint_V : V ;
+fun paintable_A : A ;
+fun paintball_N : N ;
+fun paintbox_N : N ;
+fun paintbrush_N : N ;
+fun painter_N : N ;
+fun painterly_A : A ;
+fun painting_N : N ;
+fun pair_N : N ;
+fun pair_V : V ;
+fun pairing_N : N ;
+fun paisa_N : N ;
+fun paisley_N : N ;
+fun pajama_N : N ;
+fun pal_N : N ;
+fun pal_paled_V : V ;
+fun pal_palled_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 palatability_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 palatine_A : A ;
+fun palatine_N : N ;
+fun palatoglossal_A : A ;
+fun palatopharyngoplasty_N : N ;
+fun palaver_N : N ;
+fun palaver_V : V ;
+fun pale_A : A ;
+fun pale_N : N ;
+fun pale_V : V ;
+fun paleencephalon_N : N ;
+fun paleface_N : N ;
+fun paleness_N : N ;
+fun paleoanthropological_A : A ;
+fun paleoanthropology_N : N ;
+fun paleobiology_N : N ;
+fun paleobotany_N : N ;
+fun paleocerebellum_N : N ;
+fun paleoclimatology_N : N ;
+fun paleocortical_A : A ;
+fun paleodendrology_N : N ;
+fun paleoecology_N : N ;
+fun paleoethnography_N : N ;
+fun paleogeography_N : N ;
+fun paleogeology_N : N ;
+fun paleographer_N : N ;
+fun paleography_N : N ;
+fun paleolith_N : N ;
+fun paleolithic_A : A ;
+fun paleology_N : N ;
+fun paleomammalogy_N : N ;
+fun paleontological_A : A ;
+fun paleontologist_N : N ;
+fun paleontology_N : N ;
+fun paleopathology_N : N ;
+fun paleornithology_N : N ;
+fun paleozoology_N : N ;
+fun palestinian_A : A ;
+fun palestinian_N : N ;
+fun palestra_N : N ;
+fun paletiology_N : N ;
+fun palette_N : N ;
+fun palette_knife_N : N ;
+fun palfrey_N : N ;
+fun palilalia_N : N ;
+fun palimony_N : N ;
+fun palimpsest_N : N ;
+fun palindrome_N : N ;
+fun paling_N : N ;
+fun palingenesis_N : N ;
+fun palingenetic_A : A ;
+fun palisade_N : N ;
+fun palisade_V : V ;
+fun palish_A : A ;
+fun pall_N : N ;
+fun pall_V : V ;
+fun palladium_N : N ;
+fun pallasite_N : N ;
+fun pallbearer_N : N ;
+fun pallet_N : N ;
+fun pallette_N : N ;
+fun palliasse_N : N ;
+fun palliate_V : V ;
+fun palliation_N : N ;
+fun palliative_A : A ;
+fun palliative_N : N ;
+fun pallid_A : A ;
+fun pallidness_N : N ;
+fun pallidum_N : N ;
+fun pallium_N : N ;
+fun pallone_N : N ;
+fun pallor_N : N ;
+fun pally_A : A ;
+fun palm_N : N ;
+fun palm_V : V ;
+fun palm_oil_N : N ;
+fun palmar_A : A ;
+fun palmate_A : A ;
+fun palmatifid_A : A ;
+fun palmature_N : N ;
+fun palmer_N : N ;
+fun palmetto_N : N ;
+fun palmist_N : N ;
+fun palmistry_N : N ;
+fun palmitin_N : N ;
+fun palmlike_A : A ;
+fun palmy_A : A ;
+fun palmyra_N : N ;
+fun palometa_N : N ;
+fun palomino_N : N ;
+fun paloverde_N : N ;
+fun palpable_A : A ;
+fun palpation_N : N ;
+fun palpatory_A : A ;
+fun palpebrate_A : A ;
+fun palpebration_N : N ;
+fun palpitant_A : A ;
+fun palpitate_V : V ;
+fun palpitation_N : N ;
+fun palsy_N : N ;
+fun palsy_V : V ;
+fun palter_V : V ;
+fun paltriness_N : N ;
+fun paltry_A : A ;
+fun pampas_N : N ;
+fun pampas_grass_N : N ;
+fun pamper_V : V ;
+fun pamperer_N : N ;
+fun pamphlet_N : N ;
+fun pamphleteer_N : N ;
+fun pan_N : N ;
+fun pan_V : V ;
+fun panacea_N : N ;
+fun panache_N : N ;
+fun panama_N : N ;
+fun panamanian_A : A ;
+fun panamanian_N : N ;
+fun panatela_N : N ;
+fun panatella_N : N ;
+fun pancake_N : N ;
+fun pancarditis_N : N ;
+fun panchayat_N : N ;
+fun panchromatic_A : A ;
+fun pancreas_N : N ;
+fun pancreatectomy_N : N ;
+fun pancreatic_A : A ;
+fun pancreatin_N : N ;
+fun pancreatitis_N : N ;
+fun pancytopenia_N : N ;
+fun panda_N : N ;
+fun pandanus_N : N ;
+fun pandemic_A : A ;
+fun pandemic_N : N ;
+fun pandemonium_N : N ;
+fun pander_N : N ;
+fun pander_V : V ;
+fun panderer_N : N ;
+fun pandiculation_N : N ;
+fun pandurate_A : A ;
+fun pane_N : N ;
+fun panegyric_N : N ;
+fun panel_N : N ;
+fun panel_V : V ;
+fun paneled_A : A ;
+fun paneling_N : N ;
+fun panelist_N : N ;
+fun panelling_N : N ;
+fun panencephalitis_N : N ;
+fun panfish_N : N ;
+fun pang_N : N ;
+fun panga_N : N ;
+fun pangolin_N : N ;
+fun panhandle_N : N ;
+fun panhandle_V : V ;
+fun panhandler_N : N ;
+fun panic_N : N ;
+fun panic_V : V ;
+fun panic_stricken_A : A ;
+fun panicky_A : A ;
+fun panicle_N : N ;
+fun panicled_A : A ;
+fun paniculate_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 panopticon_N : N ;
+fun panorama_N : N ;
+fun panoramic_A : A ;
+fun panpipe_N : N ;
+fun pansexual_N : N ;
+fun pansinusitis_N : N ;
+fun pansy_N : N ;
+fun pant_N : N ;
+fun pant_V : V ;
+fun pantaloon_N : N ;
+fun pantechnicon_N : N ;
+fun pantheism_N : N ;
+fun pantheist_A : A ;
+fun pantheist_N : N ;
+fun pantheistic_A : A ;
+fun pantheon_N : N ;
+fun panther_N : N ;
+fun pantie_N : N ;
+fun pantile_N : N ;
+fun panting_N : N ;
+fun pantingly_Adv : Adv ;
+fun panto_N : N ;
+fun pantograph_N : N ;
+fun pantomime_N : N ;
+fun pantropical_A : A ;
+fun pantry_N : N ;
+fun pantryman_N : N ;
+fun panty_hose_N : N ;
+fun pantyhose_N : N ;
+fun panzer_A : A ;
+fun panzer_N : N ;
+fun pap_N : N ;
+fun papa_N : N ;
+fun papacy_N : N ;
+fun papain_N : N ;
+fun papal_A : A ;
+fun paparazzo_N : N ;
+fun papaverine_N : N ;
+fun papaw_N : N ;
+fun papaya_N : N ;
+fun paper_N : N ;
+fun paper_V : V ;
+fun paper_chase_N : N ;
+fun paperback_A : A ;
+fun paperback_N : N ;
+fun paperbacked_A : A ;
+fun paperboard_N : N ;
+fun paperboy_N : N ;
+fun paperclip_N : N ;
+fun paperhanger_N : N ;
+fun papering_N : N ;
+fun paperknife_N : N ;
+fun paperless_A : A ;
+fun papermaking_N : N ;
+fun papermill_N : N ;
+fun paperweight_N : N ;
+fun paperwork_N : N ;
+fun papery_A : A ;
+fun papier_mâché_N : N ;
+fun papilla_N : N ;
+fun papillary_A : A ;
+fun papillate_A : A ;
+fun papilledema_N : N ;
+fun papilliform_A : A ;
+fun papilloma_N : N ;
+fun papillon_N : N ;
+fun papist_A : A ;
+fun papist_N : N ;
+fun papoose_N : N ;
+fun papovavirus_N : N ;
+fun pappose_A : A ;
+fun pappus_N : N ;
+fun paprika_N : N ;
+fun papuan_A : A ;
+fun papuan_N : N ;
+fun papule_N : N ;
+fun papulovesicle_N : N ;
+fun papyrus_N : N ;
+fun par_N : N ;
+fun par_V : V ;
+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 paraboloid_N : N ;
+fun paraboloidal_A : A ;
+fun parachute_N : N ;
+fun parachute_V : V ;
+fun parachutist_N : N ;
+fun paracosm_N : N ;
+fun parade_N : N ;
+fun parade_V : V ;
+fun parade_ground_N : N ;
+fun paradiddle_N : N ;
+fun paradigm_N : N ;
+fun paradigmatic_A : A ;
+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 parafovea_N : N ;
+fun paragon_N : N ;
+fun paragonite_N : N ;
+fun paragraph_N : N ;
+fun paragraph_V : V ;
+fun paragrapher_N : N ;
+fun paraguayan_A : A ;
+fun paraguayan_N : N ;
+fun parakeet_N : N ;
+fun paralanguage_N : N ;
+fun paraldehyde_N : N ;
+fun paralegal_N : N ;
+fun paralepsis_N : N ;
+fun parallax_N : N ;
+fun parallel_A : A ;
+fun parallel_N : N ;
+fun parallel_V : V ;
+fun parallelepiped_N : N ;
+fun parallelism_N : N ;
+fun parallelogram_N : N ;
+fun paralogism_N : N ;
+fun paralyse_V : V ;
+fun paralysis_N : N ;
+fun paralytic_A : A ;
+fun paralytic_N : N ;
+fun paralyze_V : V ;
+fun paramagnet_N : N ;
+fun paramagnetic_A : A ;
+fun paramagnetism_N : N ;
+fun paramecium_N : N ;
+fun paramedic_N : N ;
+fun paramedical_A : A ;
+fun parameter_N : N ;
+fun parametric_A : A ;
+fun parametritis_N : N ;
+fun paramilitary_A : A ;
+fun paramilitary_N : N ;
+fun paramnesia_N : N ;
+fun paramount_A : A ;
+fun paramountcy_N : N ;
+fun paramour_N : N ;
+fun paramyxovirus_N : N ;
+fun paranasal_A : A ;
+fun parang_N : N ;
+fun paranoia_N : N ;
+fun paranoiac_N : N ;
+fun paranoid_A : A ;
+fun paranoid_N : N ;
+fun paranormal_A : A ;
+fun paraparesis_N : N ;
+fun parapet_N : N ;
+fun paraph_N : N ;
+fun paraphernalia_N : N ;
+fun paraphilia_N : N ;
+fun paraphrase_N : N ;
+fun paraphrase_V : V ;
+fun paraphrastic_A : A ;
+fun paraphysis_N : N ;
+fun paraplegia_N : N ;
+fun paraplegic_A : A ;
+fun paraplegic_N : N ;
+fun parapodium_N : N ;
+fun paraprofessional_N : N ;
+fun parapsychological_A : A ;
+fun parapsychologist_N : N ;
+fun paraquat_N : N ;
+fun parasail_N : N ;
+fun parasailing_N : N ;
+fun parasite_N : N ;
+fun parasitemia_N : N ;
+fun parasitic_A : A ;
+fun parasitical_A : A ;
+fun parasitism_N : N ;
+fun parasol_N : N ;
+fun parasympathetic_A : A ;
+fun parasympathomimetic_A : A ;
+fun parathion_N : N ;
+fun paratrooper_N : N ;
+fun paratroops_N : N ;
+fun paratyphoid_N : N ;
+fun parboil_V : V ;
+fun parcel_N : N ;
+fun parcel_parceled_V : V ;
+fun parcel_parcelled_V : V ;
+fun parcellation_N : N ;
+fun parch_V : V ;
+fun parchment_N : N ;
+fun pardon_N : N ;
+fun pardon_V : V ;
+fun pardonable_A : A ;
+fun pardoner_N : N ;
+fun pare_V : V ;
+fun paregmenon_N : N ;
+fun paregoric_N : N ;
+fun parenchyma_N : N ;
+fun parent_N : N ;
+fun parentage_N : N ;
+fun parental_A : A ;
+fun parented_A : A ;
+fun parenteral_A : A ;
+fun parenthesis_N : N ;
+fun parenthetic_A : A ;
+fun parenthetical_A : A ;
+fun parenthood_N : N ;
+fun parer_N : N ;
+fun paresis_N : N ;
+fun paresthesia_N : N ;
+fun paretic_N : N ;
+fun pareve_A : A ;
+fun parfait_N : N ;
+fun parget_N : N ;
+fun pargeting_N : N ;
+fun parhelic_A : A ;
+fun parhelion_N : N ;
+fun pari_mutuel_N : N ;
+fun pari_passu_Adv : Adv ;
+fun pariah_N : N ;
+fun pariah_dog_N : N ;
+fun parietal_A : A ;
+fun parimutuel_N : N ;
+fun paring_N : N ;
+fun parish_N : N ;
+fun parishioner_N : N ;
+fun parisian_A : A ;
+fun parisian_N : N ;
+fun parisology_N : N ;
+fun parity_N : N ;
+fun park_N : N ;
+fun park_V : V ;
+fun parka_N : N ;
+fun parking_N : N ;
+fun parkinson's_A : A ;
+fun parky_A : A ;
+fun parlance_N : N ;
+fun parlay_N : N ;
+fun parley_N : N ;
+fun parley_V : V ;
+fun parliament_N : N ;
+fun parliamentarian_N : N ;
+fun parliamentary_A : A ;
+fun parlor_N : N ;
+fun parlormaid_N : N ;
+fun parlour_N : N ;
+fun parlour_car_N : N ;
+fun parlous_A : A ;
+fun parmesan_N : N ;
+fun parnassia_N : N ;
+fun parochial_A : A ;
+fun parochialism_N : N ;
+fun parodist_N : N ;
+fun parody_N : N ;
+fun parody_V : V ;
+fun paroicous_A : A ;
+fun parole_N : N ;
+fun parole_V : V ;
+fun paronychia_N : N ;
+fun paroquet_N : N ;
+fun parotid_A : A ;
+fun parotitis_N : N ;
+fun parous_A : A ;
+fun paroxetime_N : N ;
+fun paroxysm_N : N ;
+fun paroxysmal_A : A ;
+fun paroxytone_N : N ;
+fun parquet_N : N ;
+fun parquetry_N : N ;
+fun parr_N : N ;
+fun parricide_N : N ;
+fun parrot_N : N ;
+fun parrotfish_N : N ;
+fun parrotlike_A : A ;
+fun parry_N : N ;
+fun parry_V : V ;
+fun parse_V : V ;
+fun parsec_N : N ;
+fun parsee_N : N ;
+fun parser_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_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 partaker_N : N ;
+fun parterre_N : N ;
+fun parthenocarpy_N : N ;
+fun parthenogenesis_N : N ;
+fun parthenote_N : N ;
+fun parthian_A : A ;
+fun parti_coloured_A : A ;
+fun partial_A : A ;
+fun partiality_N : N ;
+fun partialness_N : N ;
+fun partible_A : A ;
+fun participant_N : N ;
+fun participate_V : V ;
+fun participation_N : N ;
+fun participatory_A : A ;
+fun participial_A : A ;
+fun participle_N : N ;
+fun particle_N : N ;
+fun particular_A : A ;
+fun particular_N : N ;
+fun particularism_N : N ;
+fun particularistic_A : A ;
+fun particularity_N : N ;
+fun particularization_N : N ;
+fun particularize_V : V ;
+fun particulate_A : A ;
+fun particulate_N : N ;
+fun parting_N : N ;
+fun partisan_A : A ;
+fun partisan_N : N ;
+fun partisanship_N : N ;
+fun partita_N : N ;
+fun partition_N : N ;
+fun partition_V : V ;
+fun partitionist_N : N ;
+fun partitive_A : A ;
+fun partitive_N : N ;
+fun partly_Adv : Adv ;
+fun partner_N : N ;
+fun partner_V : V ;
+fun partnership_N : N ;
+fun partridge_N : N ;
+fun partridgeberry_N : N ;
+fun parts_N : N ;
+fun partsong_N : N ;
+fun parturiency_N : N ;
+fun parturient_A : A ;
+fun parturition_N : N ;
+fun party_N : N ;
+fun party_spirit_N : N ;
+fun party_spirited_A : A ;
+fun party_wall_N : N ;
+fun partygoer_N : N ;
+fun parvenu_A : A ;
+fun parvenu_N : N ;
+fun parvis_N : N ;
+fun parvovirus_N : N ;
+fun pas_N : N ;
+fun pascal_N : N ;
+fun paschal_A : A ;
+fun pasha_N : N ;
+fun pashto_N : N ;
+fun pasqueflower_N : N ;
+fun pass_N : N ;
+fun pass_V : V ;
+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_N : N ;
+fun passer_by_N : N ;
+fun passerby_N : N ;
+fun passerine_A : A ;
+fun passerine_N : N ;
+fun passim_Adv : Adv ;
+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 passionflower_N : N ;
+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 passé_A : A ;
+fun passée_A : A ;
+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_V : V ;
+fun paste_up_N : N ;
+fun pasteboard_N : N ;
+fun pastel_A : A ;
+fun pastel_N : N ;
+fun paster_N : N ;
+fun pastern_N : N ;
+fun pasteurization_N : N ;
+fun pasteurize_V : V ;
+fun pastiche_N : N ;
+fun pastille_N : N ;
+fun pastime_N : N ;
+fun pasting_N : N ;
+fun pastis_N : N ;
+fun pastness_N : N ;
+fun pastor_N : N ;
+fun pastoral_A : A ;
+fun pastoral_N : N ;
+fun pastorale_N : N ;
+fun pastorate_N : N ;
+fun pastorship_N : N ;
+fun pastrami_N : N ;
+fun pastry_N : N ;
+fun pastry_cook_N : N ;
+fun pasturage_N : N ;
+fun pasture_N : N ;
+fun pasture_V : V ;
+fun pasty_A : A ;
+fun pasty_N : N ;
+fun pat_A : A ;
+fun pat_Adv : Adv ;
+fun pat_N : N ;
+fun pat_V : V ;
+fun pataca_N : N ;
+fun patas_N : N ;
+fun patch_N : N ;
+fun patch_V : V ;
+fun patch_pocket_N : N ;
+fun patchcord_N : N ;
+fun patchiness_N : N ;
+fun patching_N : N ;
+fun patchouli_N : N ;
+fun patchwork_N : N ;
+fun patchy_A : A ;
+fun pate_N : N ;
+fun pate_de_foie_gras_N : N ;
+fun patella_N : N ;
+fun patellar_A : A ;
+fun patency_N : N ;
+fun patent_A : A ;
+fun patent_N : N ;
+fun patent_V : V ;
+fun patentee_N : N ;
+fun pater_N : N ;
+fun paterfamilias_N : N ;
+fun paternal_A : A ;
+fun paternalism_N : N ;
+fun paternalistic_A : A ;
+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 pathogenesis_N : N ;
+fun pathogenically_Adv : Adv ;
+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 patient_A : A ;
+fun patient_N : N ;
+fun patina_N : N ;
+fun patio_N : N ;
+fun patisserie_N : N ;
+fun patka_N : N ;
+fun patois_N : N ;
+fun patrial_N : N ;
+fun patriarch_N : N ;
+fun patriarchal_A : A ;
+fun patriarchate_N : N ;
+fun patriarchic_A : A ;
+fun patriarchy_N : N ;
+fun patricentric_A : A ;
+fun patrician_A : A ;
+fun patrician_N : N ;
+fun patricide_N : N ;
+fun patrilineage_N : N ;
+fun patrilineal_A : A ;
+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 patristic_A : A ;
+fun patristics_N : N ;
+fun patrol_N : N ;
+fun patrol_V : V ;
+fun patroller_N : N ;
+fun patrolman_N : N ;
+fun patron_N : N ;
+fun patronage_N : N ;
+fun patroness_N : N ;
+fun patronize_V : V ;
+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 pattern_N : N ;
+fun pattern_V : V ;
+fun patternmaker_N : N ;
+fun patty_N : N ;
+fun patty_pan_N : N ;
+fun patzer_N : N ;
+fun paucity_N : N ;
+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_V : V ;
+fun pause_N : N ;
+fun pause_V : V ;
+fun pavage_N : N ;
+fun pavane_N : N ;
+fun pave_N : N ;
+fun pave_V : V ;
+fun pavement_N : N ;
+fun pavilion_N : N ;
+fun paving_N : N ;
+fun paving_stone_N : N ;
+fun pavior_N : N ;
+fun pavis_N : N ;
+fun pavlova_N : N ;
+fun pavonia_N : N ;
+fun paw_N : N ;
+fun paw_V : V ;
+fun pawer_N : N ;
+fun pawky_A : A ;
+fun pawl_N : N ;
+fun pawn_N : N ;
+fun pawn_V : V ;
+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_as_you_earn_N : N ;
+fun pay_claim_N : N ;
+fun pay_packet_N : N ;
+fun pay_paid_V : V ;
+fun pay_payed_V : V ;
+fun pay_station_N : N ;
+fun payable_A : A ;
+fun payable_N : N ;
+fun payback_N : N ;
+fun paycheck_N : N ;
+fun payday_N : N ;
+fun paydirt_N : N ;
+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 payola_N : N ;
+fun payphone_N : N ;
+fun payroll_N : N ;
+fun paysheet_N : N ;
+fun payslip_N : N ;
+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 peaceableness_N : N ;
+fun peaceful_A : A ;
+fun peacefulness_N : N ;
+fun peacekeeper_N : N ;
+fun peacekeeping_A : A ;
+fun peacekeeping_N : N ;
+fun peacemaker_N : N ;
+fun peacetime_N : N ;
+fun peach_N : N ;
+fun peach_V : V ;
+fun peachick_N : N ;
+fun peachy_A : A ;
+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 peaky_A : A ;
+fun peal_N : N ;
+fun peal_V : V ;
+fun peanut_N : N ;
+fun peanuts_N : N ;
+fun pear_N : N ;
+fun pearl_N : N ;
+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 pearlfish_N : N ;
+fun pearlite_N : N ;
+fun pearlwort_N : N ;
+fun pearly_A : A ;
+fun pearmain_N : N ;
+fun peasant_N : N ;
+fun peasanthood_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 peavey_N : N ;
+fun peba_N : N ;
+fun pebble_N : N ;
+fun pebbly_A : A ;
+fun pebibit_N : N ;
+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 pecker_N : N ;
+fun peckish_A : A ;
+fun pecopteris_N : N ;
+fun pectic_A : A ;
+fun pectin_N : N ;
+fun pectinate_A : A ;
+fun pectineal_A : A ;
+fun pectoral_A : A ;
+fun pectoral_N : N ;
+fun peculate_V : V ;
+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 pedaler_N : N ;
+fun pedant_N : N ;
+fun pedantic_A : A ;
+fun pedantically_Adv : Adv ;
+fun pedantry_N : N ;
+fun pedate_A : A ;
+fun peddle_V : V ;
+fun peddler_N : N ;
+fun pederast_N : N ;
+fun pederastic_A : A ;
+fun pederasty_N : N ;
+fun pedestal_N : N ;
+fun pedestrian_A : A ;
+fun pedestrian_N : N ;
+fun pediatric_A : A ;
+fun pediatrician_N : N ;
+fun pediatrics_N : N ;
+fun pedicab_N : N ;
+fun pedicel_N : N ;
+fun pediculicide_N : N ;
+fun pediculosis_N : N ;
+fun pedicure_N : N ;
+fun pedigree_N : N ;
+fun pediment_N : N ;
+fun pedlar_N : N ;
+fun pedodontist_N : N ;
+fun pedometer_N : N ;
+fun pedophile_N : N ;
+fun pedophilia_N : N ;
+fun peduncle_N : N ;
+fun pedunculate_A : A ;
+fun pee_N : N ;
+fun pee_V : V ;
+fun peeing_N : N ;
+fun peek_N : N ;
+fun peek_V : V ;
+fun peek_a_boo_N : N ;
+fun peekaboo_N : N ;
+fun peel_N : N ;
+fun peel_V : V ;
+fun peeler_N : N ;
+fun peen_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_N : N ;
+fun peeve_V : V ;
+fun peevish_A : A ;
+fun peevishness_N : N ;
+fun peewit_N : N ;
+fun peg_N : N ;
+fun peg_V : V ;
+fun pegboard_N : N ;
+fun pegmatite_N : N ;
+fun peignoir_N : N ;
+fun pejorative_A : A ;
+fun peke_N : N ;
+fun pekinese_N : N ;
+fun pekoe_N : N ;
+fun pelf_N : N ;
+fun pelican_N : N ;
+fun pelisse_N : N ;
+fun pell_mell_Adv : Adv ;
+fun pellagra_N : N ;
+fun pellet_N : N ;
+fun pellicle_N : N ;
+fun pellitory_N : N ;
+fun pellucid_A : A ;
+fun pellucidness_N : N ;
+fun pelmet_N : N ;
+fun pelota_N : N ;
+fun pelt_N : N ;
+fun pelt_V : V ;
+fun peltate_A : A ;
+fun pelter_N : N ;
+fun peludo_N : N ;
+fun pelvic_A : A ;
+fun pelvimeter_N : N ;
+fun pelvimetry_N : N ;
+fun pelvis_N : N ;
+fun pelycosaur_N : N ;
+fun pemmican_N : N ;
+fun pemphigous_A : A ;
+fun pemphigus_N : N ;
+fun pen_N : N ;
+fun pen_V : V ;
+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_V : V ;
+fun penalty_N : N ;
+fun penance_N : N ;
+fun penchant_N : N ;
+fun pencil_N : N ;
+fun pencil_penciled_V : V ;
+fun pencil_pencilled_V : V ;
+fun pend_V : V ;
+fun pendant_N : N ;
+fun pendent_A : A ;
+fun pending_Prep : Prep ;
+fun pendragon_N : N ;
+fun pendulous_A : A ;
+fun pendulum_N : N ;
+fun peneplain_N : N ;
+fun penetrability_N : N ;
+fun penetrable_A : A ;
+fun penetralia_N : N ;
+fun penetrate_V : V ;
+fun penetratingly_Adv : Adv ;
+fun penetration_N : N ;
+fun penetrative_A : A ;
+fun penetrator_N : N ;
+fun pengo_N : N ;
+fun penguin_N : N ;
+fun penicillamine_N : N ;
+fun penicillin_N : N ;
+fun penicillinase_N : N ;
+fun penile_A : A ;
+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 penknife_N : N ;
+fun penlight_N : N ;
+fun penmanship_N : N ;
+fun penn'orth_N : N ;
+fun pennant_N : N ;
+fun pennate_A : A ;
+fun penne_N : N ;
+fun penni_N : N ;
+fun penniless_A : A ;
+fun pennon_N : N ;
+fun pennoncel_N : N ;
+fun penny_pence_N : N ;
+fun penny_pennies_N : N ;
+fun pennycress_N : N ;
+fun pennyroyal_N : N ;
+fun pennyweight_N : N ;
+fun pennywhistle_N : N ;
+fun pennyworth_N : N ;
+fun penologist_N : N ;
+fun penology_N : N ;
+fun penpusher_N : N ;
+fun pension_N : N ;
+fun pension_V : V ;
+fun pensionable_A : A ;
+fun pensioner_N : N ;
+fun pensive_A : A ;
+fun pensiveness_N : N ;
+fun penstock_N : N ;
+fun pent_A : A ;
+fun pent_up_A : A ;
+fun pentacle_N : N ;
+fun pentaerythritol_N : N ;
+fun pentagon_N : N ;
+fun pentagonal_A : A ;
+fun pentahedron_N : N ;
+fun pentail_N : N ;
+fun pentamerous_A : A ;
+fun pentameter_N : N ;
+fun pentangular_A : A ;
+fun pentasyllabic_A : A ;
+fun pentateuch_N : N ;
+fun pentathlete_N : N ;
+fun pentathlon_N : N ;
+fun pentatonic_A : A ;
+fun pentavalent_A : A ;
+fun pentazocine_N : N ;
+fun pentecost_N : N ;
+fun pentecostal_A : A ;
+fun pentecostalism_N : N ;
+fun penthouse_N : N ;
+fun pentimento_N : N ;
+fun pentlandite_N : N ;
+fun pentode_N : N ;
+fun pentose_N : N ;
+fun pentoxide_N : N ;
+fun pentoxifylline_N : N ;
+fun pentylenetetrazol_N : N ;
+fun penuche_N : N ;
+fun penult_N : N ;
+fun penultimate_A : A ;
+fun penultimate_N : N ;
+fun penumbra_N : N ;
+fun penumbral_A : A ;
+fun penurious_A : A ;
+fun penuriousness_N : N ;
+fun penury_N : N ;
+fun peon_N : N ;
+fun peonage_N : N ;
+fun peony_N : N ;
+fun people_V : V ;
+fun people_people_N : N ;
+fun people_peoples_N : N ;
+fun peoples_N : N ;
+fun pep_N : N ;
+fun pep_V : V ;
+fun peperomia_N : N ;
+fun peplos_N : N ;
+fun peplum_N : N ;
+fun pepper_N : N ;
+fun pepper_V : V ;
+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 pepperoni_N : N ;
+fun peppery_A : A ;
+fun pepsin_N : N ;
+fun pepsinogen_N : N ;
+fun peptic_A : A ;
+fun peptide_N : N ;
+fun peptization_N : N ;
+fun peptone_N : N ;
+fun per_Prep : Prep ;
+fun peradventure_Adv : Adv ;
+fun peradventure_N : N ;
+fun perambulate_V : V ;
+fun perambulation_N : N ;
+fun perambulator_N : N ;
+fun percale_N : N ;
+fun perceivable_A : A ;
+fun perceive_V : V ;
+fun perceiver_N : N ;
+fun percent_N : N ;
+fun percentage_N : N ;
+fun percentile_N : N ;
+fun percept_N : N ;
+fun perceptibility_N : N ;
+fun perceptible_A : A ;
+fun perception_N : N ;
+fun perceptive_A : A ;
+fun perceptiveness_N : N ;
+fun perceptual_A : A ;
+fun perch_N : N ;
+fun perch_V : V ;
+fun perchance_Adv : Adv ;
+fun percher_N : N ;
+fun perchlorate_N : N ;
+fun perchloride_N : N ;
+fun percipient_A : A ;
+fun percolate_N : N ;
+fun percolate_V : V ;
+fun percolation_N : N ;
+fun percolator_N : N ;
+fun percussion_N : N ;
+fun percussionist_N : N ;
+fun percussive_A : A ;
+fun perdition_N : N ;
+fun perdurability_N : N ;
+fun peregrination_N : N ;
+fun peregrine_N : N ;
+fun peremptory_A : A ;
+fun perennation_N : N ;
+fun perennial_A : A ;
+fun perennial_N : N ;
+fun perestroika_N : N ;
+fun perfect_A : A ;
+fun perfect_V : V ;
+fun perfecter_N : N ;
+fun perfectibility_N : N ;
+fun perfectible_A : A ;
+fun perfection_N : N ;
+fun perfectionism_N : N ;
+fun perfectionist_N : N ;
+fun perfective_N : N ;
+fun perfervid_A : A ;
+fun perfidious_A : A ;
+fun perfidiousness_N : N ;
+fun perfidy_N : N ;
+fun perfluorocarbon_N : N ;
+fun perfoliate_A : A ;
+fun perforate_V : V ;
+fun perforation_N : N ;
+fun perforce_Adv : Adv ;
+fun perform_V : V ;
+fun performance_N : N ;
+fun performer_N : N ;
+fun perfume_N : N ;
+fun perfume_V : V ;
+fun perfumer_N : N ;
+fun perfumery_N : N ;
+fun perfunctory_A : A ;
+fun perfusion_N : N ;
+fun pergola_N : N ;
+fun perhaps_Adv : Adv ;
+fun peri_N : N ;
+fun perianal_A : A ;
+fun perianth_N : N ;
+fun periapsis_N : N ;
+fun periarteritis_N : N ;
+fun pericardial_A : A ;
+fun pericarditis_N : N ;
+fun pericardium_N : N ;
+fun pericarp_N : N ;
+fun pericementoclasia_N : N ;
+fun periclase_N : N ;
+fun peridinian_N : N ;
+fun peridium_N : N ;
+fun peridot_N : N ;
+fun peridotite_N : N ;
+fun perigee_N : N ;
+fun perigon_N : N ;
+fun perigonal_A : A ;
+fun perihelion_N : N ;
+fun perijove_N : N ;
+fun peril_N : N ;
+fun peril_V : V ;
+fun perilous_A : A ;
+fun perilymph_N : N ;
+fun perimeter_N : N ;
+fun perimysium_N : N ;
+fun perinasal_A : A ;
+fun perinatal_A : A ;
+fun perinatologist_N : N ;
+fun perinatology_N : N ;
+fun perineal_A : A ;
+fun perineotomy_N : N ;
+fun perineum_N : N ;
+fun perineurium_N : N ;
+fun period_N : N ;
+fun periodic_A : A ;
+fun periodical_A : A ;
+fun periodical_N : N ;
+fun periodontic_A : A ;
+fun periodontics_N : N ;
+fun periodontist_N : N ;
+fun periosteum_N : N ;
+fun peripatetic_A : A ;
+fun peripatetic_N : N ;
+fun peripeteia_N : N ;
+fun peripheral_A : A ;
+fun peripheral_N : N ;
+fun periphery_N : N ;
+fun periphrasis_N : N ;
+fun periphrastic_A : A ;
+fun peripteral_A : A ;
+fun periscope_N : N ;
+fun periselene_N : N ;
+fun perish_V : V ;
+fun perishability_N : N ;
+fun perishable_A : A ;
+fun perishable_N : N ;
+fun perisher_N : N ;
+fun perisperm_N : N ;
+fun peristalsis_N : N ;
+fun peristome_N : N ;
+fun peristylar_A : A ;
+fun peristyle_N : N ;
+fun perithecium_N : N ;
+fun perithelial_A : A ;
+fun perithelium_N : N ;
+fun peritoneal_A : A ;
+fun peritoneum_N : N ;
+fun peritonitis_N : N ;
+fun peritrichous_A : A ;
+fun periwig_N : N ;
+fun periwinkle_N : N ;
+fun perjure_V : V ;
+fun perjurer_N : N ;
+fun perjury_N : N ;
+fun perk_N : N ;
+fun perk_V : V ;
+fun perkiness_N : N ;
+fun perky_A : A ;
+fun perm_N : N ;
+fun perm_V : V ;
+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 permeant_A : A ;
+fun permeate_V : V ;
+fun permeation_N : N ;
+fun permissibility_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 permutability_N : N ;
+fun permutation_N : N ;
+fun permute_V : V ;
+fun pernicious_A : A ;
+fun perniciousness_N : N ;
+fun pernickety_A : A ;
+fun peroneal_A : A ;
+fun peroneus_N : N ;
+fun peroration_N : N ;
+fun peroxidase_N : N ;
+fun peroxide_N : N ;
+fun perpendicular_A : A ;
+fun perpendicular_N : N ;
+fun perpendicularity_N : N ;
+fun perpetrate_V : V ;
+fun perpetration_N : N ;
+fun perpetrator_N : N ;
+fun perpetual_A : A ;
+fun perpetuate_V : V ;
+fun perpetuation_N : N ;
+fun perpetuity_N : N ;
+fun perphenazine_N : N ;
+fun perplex_V : V ;
+fun perplexedly_Adv : Adv ;
+fun perplexity_N : N ;
+fun perquisite_N : N ;
+fun perry_N : N ;
+fun persecute_V : V ;
+fun persecution_N : N ;
+fun persecutor_N : N ;
+fun perseverance_N : N ;
+fun perseveration_N : N ;
+fun persevere_V : V ;
+fun perseveringly_Adv : Adv ;
+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 personableness_N : N ;
+fun personage_N : N ;
+fun personal_A : A ;
+fun personal_N : N ;
+fun personality_N : N ;
+fun personalize_V : V ;
+fun personalty_N : N ;
+fun personate_V : V ;
+fun personation_N : N ;
+fun personhood_N : N ;
+fun personification_N : N ;
+fun personify_V : V ;
+fun personnel_N : N ;
+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 perspirer_N : N ;
+fun persuadable_A : A ;
+fun persuade_V : V ;
+fun persuader_N : N ;
+fun persuasion_N : N ;
+fun persuasive_A : A ;
+fun persuasiveness_N : N ;
+fun pert_A : A ;
+fun pertain_V : V ;
+fun pertainym_N : N ;
+fun pertinacious_A : A ;
+fun pertinacity_N : N ;
+fun pertinence_N : N ;
+fun pertinent_A : A ;
+fun pertness_N : N ;
+fun perturb_V : V ;
+fun perturbation_N : N ;
+fun peruke_N : N ;
+fun peruked_A : A ;
+fun perusal_N : N ;
+fun peruse_V : V ;
+fun peruvian_A : A ;
+fun peruvian_N : N ;
+fun pervade_V : V ;
+fun pervaporation_N : N ;
+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_V : V ;
+fun pervious_A : A ;
+fun pesantran_N : N ;
+fun peseta_N : N ;
+fun pesewa_N : N ;
+fun peshmerga_N : N ;
+fun pesky_A : A ;
+fun peso_N : N ;
+fun pessary_N : N ;
+fun pessimal_A : A ;
+fun pessimism_N : N ;
+fun pessimist_N : N ;
+fun pessimistic_A : A ;
+fun pessimistically_Adv : Adv ;
+fun pest_N : N ;
+fun pester_V : V ;
+fun pesthole_N : N ;
+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_V : V ;
+fun pesto_N : N ;
+fun pet_N : N ;
+fun pet_V : V ;
+fun petabit_N : N ;
+fun petabyte_N : N ;
+fun petal_N : N ;
+fun petaled_A : A ;
+fun petalled_A : A ;
+fun petallike_A : A ;
+fun petaloid_A : A ;
+fun petalous_A : A ;
+fun petard_N : N ;
+fun petcock_N : N ;
+fun petechia_N : N ;
+fun peter_V : V ;
+fun petfood_N : N ;
+fun petiole_N : N ;
+fun petiolule_N : N ;
+fun petit_bourgeois_N : N ;
+fun petite_A : A ;
+fun petite_N : N ;
+fun petition_N : N ;
+fun petition_V : V ;
+fun petitionary_A : A ;
+fun petitioner_N : N ;
+fun petrel_N : N ;
+fun petrifaction_N : N ;
+fun petrify_V : V ;
+fun petrissage_N : N ;
+fun petro_chemical_N : N ;
+fun petrochemical_N : N ;
+fun petroglyph_N : N ;
+fun petrol_N : N ;
+fun petrolatum_N : N ;
+fun petroleum_N : N ;
+fun petrology_N : N ;
+fun petrous_A : A ;
+fun petter_N : N ;
+fun petticoat_N : N ;
+fun petticoated_A : A ;
+fun pettifogging_A : A ;
+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 pewee_N : N ;
+fun pewit_N : N ;
+fun pewter_N : N ;
+fun peyote_N : N ;
+fun pfannkuchen_N : N ;
+fun pfennig_N : N ;
+fun phacoemulsification_N : N ;
+fun phaeton_N : N ;
+fun phagocyte_N : N ;
+fun phagocytic_A : A ;
+fun phagocytosis_N : N ;
+fun phaius_N : N ;
+fun phalangeal_A : A ;
+fun phalanger_N : N ;
+fun phalangitis_N : N ;
+fun phalanx_N : N ;
+fun phalarope_N : N ;
+fun phallic_A : A ;
+fun phalloplasty_N : N ;
+fun phallus_N : N ;
+fun phalsa_N : N ;
+fun phaneromania_N : N ;
+fun phantasm_N : N ;
+fun phantasmagoria_N : N ;
+fun phantasmagoric_A : A ;
+fun phantasmal_A : A ;
+fun phantasy_N : N ;
+fun phantom_A : A ;
+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 pharmaceutical_N : N ;
+fun pharmacist_N : N ;
+fun pharmacogenetics_N : N ;
+fun pharmacokinetics_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 pharyngeal_A : A ;
+fun pharyngitis_N : N ;
+fun pharynx_N : N ;
+fun phase_N : N ;
+fun phase_V : V ;
+fun phasianid_N : N ;
+fun phasmid_N : N ;
+fun phd_N : N ;
+fun pheasant_N : N ;
+fun phellem_N : N ;
+fun phenacomys_N : N ;
+fun phenazopyridine_N : N ;
+fun phencyclidine_N : N ;
+fun phenelzine_N : N ;
+fun pheniramine_N : N ;
+fun phenobarbitone_N : N ;
+fun phenol_N : N ;
+fun phenolphthalein_N : N ;
+fun phenomenal_A : A ;
+fun phenomenology_N : N ;
+fun phenomenon_N : N ;
+fun phenothiazine_N : N ;
+fun phenotype_N : N ;
+fun phenotypical_A : A ;
+fun phensuximide_N : N ;
+fun phentolamine_N : N ;
+fun phenylalanine_N : N ;
+fun phenylbutazone_N : N ;
+fun phenylephrine_N : N ;
+fun phenylketonuria_N : N ;
+fun phenylpropanolamine_N : N ;
+fun phenyltoloxamine_N : N ;
+fun pheochromocytoma_N : N ;
+fun pheromone_N : N ;
+fun phi_N : N ;
+fun phial_N : N ;
+fun philadelphus_N : N ;
+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 philatelically_Adv : Adv ;
+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 philhellenism_N : N ;
+fun philistine_N : N ;
+fun philistinism_N : N ;
+fun phillipsite_N : N ;
+fun philodendron_N : N ;
+fun philogyny_N : N ;
+fun philological_A : A ;
+fun philologist_N : N ;
+fun philology_N : N ;
+fun philomath_N : N ;
+fun philosopher_N : N ;
+fun philosophic_A : A ;
+fun philosophical_A : A ;
+fun philosophize_V : V ;
+fun philosophizer_N : N ;
+fun philosophizing_N : N ;
+fun philosophy_N : N ;
+fun philter_N : N ;
+fun philtre_N : N ;
+fun phimosis_N : N ;
+fun phlebectomy_N : N ;
+fun phlebitis_N : N ;
+fun phlebothrombosis_N : N ;
+fun phlebotomist_N : N ;
+fun phlegm_N : N ;
+fun phlegmatic_A : A ;
+fun phlegmatically_Adv : Adv ;
+fun phlegmy_A : A ;
+fun phloem_N : N ;
+fun phlogiston_N : N ;
+fun phlogopite_N : N ;
+fun phlomis_N : N ;
+fun phlox_N : N ;
+fun phobia_N : N ;
+fun phobic_A : A ;
+fun phobophobia_N : N ;
+fun phocine_A : A ;
+fun phocomelia_N : N ;
+fun phoebe_N : N ;
+fun phoenicophorium_N : N ;
+fun phoenix_N : N ;
+fun phon_N : N ;
+fun phone_N : N ;
+fun phone_V : V ;
+fun phone_in_N : N ;
+fun phonebook_N : N ;
+fun phonebooth_N : N ;
+fun phonecall_N : N ;
+fun phoneme_N : N ;
+fun phonemic_A : A ;
+fun phonemic_Adv : Adv ;
+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 phonogram_N : N ;
+fun phonogramic_A : A ;
+fun phonograph_N : N ;
+fun phonological_A : A ;
+fun phonologist_N : N ;
+fun phonology_N : N ;
+fun phonophobia_N : N ;
+fun phony_A : A ;
+fun phony_N : N ;
+fun phoronid_N : N ;
+fun phosgene_N : N ;
+fun phosphatase_N : N ;
+fun phosphate_N : N ;
+fun phosphine_N : N ;
+fun phosphocreatine_N : N ;
+fun phospholipid_N : N ;
+fun phosphoprotein_N : N ;
+fun phosphor_N : N ;
+fun phosphorescence_N : N ;
+fun phosphorescent_A : A ;
+fun phosphoric_A : A ;
+fun phosphorous_A : A ;
+fun phosphorus_N : N ;
+fun phot_N : N ;
+fun photalgia_N : N ;
+fun photic_A : A ;
+fun photo_N : N ;
+fun photocathode_N : N ;
+fun photochemical_A : A ;
+fun photochemistry_N : N ;
+fun photocoagulation_N : N ;
+fun photocoagulator_N : N ;
+fun photoconductive_A : A ;
+fun photoconductivity_N : N ;
+fun photocopier_N : N ;
+fun photocopy_N : N ;
+fun photocopy_V : V ;
+fun photoelectric_A : A ;
+fun photoelectrically_Adv : Adv ;
+fun photoelectricity_N : N ;
+fun photoelectron_N : N ;
+fun photoemission_N : N ;
+fun photoemissive_A : A ;
+fun photoflash_N : N ;
+fun photogenic_A : A ;
+fun photograph_N : N ;
+fun photograph_V : V ;
+fun photographer_N : N ;
+fun photographic_A : A ;
+fun photographically_Adv : Adv ;
+fun photography_N : N ;
+fun photogravure_N : N ;
+fun photojournalism_N : N ;
+fun photojournalist_N : N ;
+fun photolithograph_N : N ;
+fun photolithography_N : N ;
+fun photomechanical_A : A ;
+fun photomechanics_N : N ;
+fun photometer_N : N ;
+fun photometric_A : A ;
+fun photometrically_Adv : Adv ;
+fun photometrist_N : N ;
+fun photometry_N : N ;
+fun photomicrograph_N : N ;
+fun photomontage_N : N ;
+fun photon_N : N ;
+fun photophobia_N : N ;
+fun photopigment_N : N ;
+fun photoretinitis_N : N ;
+fun photosensitivity_N : N ;
+fun photosensitize_V : V ;
+fun photosphere_N : N ;
+fun photostat_N : N ;
+fun photostat_V : V ;
+fun photosynthesis_N : N ;
+fun photosynthetic_A : A ;
+fun phototherapy_N : N ;
+fun phototropism_N : N ;
+fun photovoltaic_A : A ;
+fun phragmocone_N : N ;
+fun phrasal_A : A ;
+fun phrase_N : N ;
+fun phrase_V : V ;
+fun phrase_book_N : N ;
+fun phraseology_N : N ;
+fun phrasing_N : N ;
+fun phreatic_A : A ;
+fun phrenetic_A : A ;
+fun phrenic_A : A ;
+fun phrenological_A : A ;
+fun phrenologist_N : N ;
+fun phrenology_N : N ;
+fun phrontistery_N : N ;
+fun phthisis_N : N ;
+fun phut_Adv : Adv ;
+fun phycobilin_N : N ;
+fun phycocyanin_N : N ;
+fun phycoerythrin_N : N ;
+fun phycology_N : N ;
+fun phycomycosis_N : N ;
+fun phylactery_N : N ;
+fun phyle_N : N ;
+fun phylliform_A : A ;
+fun phyllo_N : N ;
+fun phyllode_N : N ;
+fun phyllodial_A : A ;
+fun phylogenetic_A : A ;
+fun phylogenetically_Adv : Adv ;
+fun phylum_N : N ;
+fun physa_N : N ;
+fun physic_N : N ;
+fun physical_A : A ;
+fun physician_N : N ;
+fun physicist_N : N ;
+fun physicochemical_A : A ;
+fun physics_N : N ;
+fun physiognomy_N : N ;
+fun physiologic_A : A ;
+fun physiological_A : A ;
+fun physiologist_N : N ;
+fun physiology_N : N ;
+fun physiotherapeutic_A : A ;
+fun physiotherapist_N : N ;
+fun physiotherapy_N : N ;
+fun physique_N : N ;
+fun physostegia_N : N ;
+fun physostigmine_N : N ;
+fun phytelephas_N : N ;
+fun phytochemical_N : N ;
+fun phytochemist_N : N ;
+fun phytochemistry_N : N ;
+fun phytohormone_N : N ;
+fun phytoplankton_N : N ;
+fun phytotherapy_N : N ;
+fun pi_N : N ;
+fun pia_N : N ;
+fun piaffe_N : N ;
+fun pianism_N : N ;
+fun pianissimo_A : A ;
+fun pianissimo_Adv : Adv ;
+fun pianist_N : N ;
+fun pianistic_A : A ;
+fun piano_A : A ;
+fun piano_Adv : Adv ;
+fun piano_N : N ;
+fun pianoforte_N : N ;
+fun pianola_N : N ;
+fun piaster_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 pichi_N : N ;
+fun pichiciago_N : N ;
+fun pick_N : N ;
+fun pick_V : V ;
+fun pick_me_up_N : N ;
+fun pick_up_N : N ;
+fun pickaback_Adv : Adv ;
+fun pickaninny_N : N ;
+fun pickaxe_N : N ;
+fun pickelhaube_N : N ;
+fun picker_N : N ;
+fun pickerel_N : N ;
+fun pickerelweed_N : N ;
+fun picket_N : N ;
+fun picket_V : V ;
+fun picking_N : N ;
+fun pickings_N : N ;
+fun pickle_N : N ;
+fun pickle_V : V ;
+fun pickpocket_N : N ;
+fun pickup_N : N ;
+fun picnic_N : N ;
+fun picnic_V : V ;
+fun picnicker_N : N ;
+fun picofarad_N : N ;
+fun picometer_N : N ;
+fun picornavirus_N : N ;
+fun picosecond_N : N ;
+fun picot_N : N ;
+fun picovolt_N : N ;
+fun picric_A : A ;
+fun pictograph_N : N ;
+fun pictographic_A : A ;
+fun pictorial_A : A ;
+fun pictorial_N : N ;
+fun picture_N : N ;
+fun picture_V : V ;
+fun picture_book_N : N ;
+fun picture_card_N : N ;
+fun picture_gallery_N : N ;
+fun picturesque_A : A ;
+fun picturesqueness_N : N ;
+fun picturing_N : N ;
+fun picul_N : N ;
+fun piculet_N : N ;
+fun piddle_N : N ;
+fun piddle_V : V ;
+fun piddock_N : N ;
+fun pidgin_N : N ;
+fun pie_N : N ;
+fun pie_crust_N : N ;
+fun piebald_A : A ;
+fun piece_N : N ;
+fun piece_V : V ;
+fun piecemeal_A : A ;
+fun piecemeal_Adv : Adv ;
+fun piecework_N : N ;
+fun pied_A : A ;
+fun pied_à_terre_N : N ;
+fun piedmont_N : N ;
+fun pieplant_N : N ;
+fun pier_N : N ;
+fun pier_glass_N : N ;
+fun pierce_V : V ;
+fun piercingly_Adv : Adv ;
+fun pierid_N : N ;
+fun pierrot_N : N ;
+fun pietistic_A : A ;
+fun piety_N : N ;
+fun pietà_N : N ;
+fun piezoelectric_A : A ;
+fun piezoelectricity_N : N ;
+fun piezometer_N : N ;
+fun piffle_N : N ;
+fun piffle_V : V ;
+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_V : V ;
+fun pigfish_N : N ;
+fun piggery_N : N ;
+fun piggish_A : A ;
+fun piggishness_N : N ;
+fun piggy_A : A ;
+fun piggy_N : N ;
+fun piggyback_Adv : Adv ;
+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 pignut_N : N ;
+fun pigskin_N : N ;
+fun pigsticking_N : N ;
+fun pigsty_N : N ;
+fun pigswill_N : N ;
+fun pigtail_N : N ;
+fun pigwash_N : N ;
+fun pigweed_N : N ;
+fun pika_N : N ;
+fun pike_N : N ;
+fun pikeblenny_N : N ;
+fun pikestaff_N : N ;
+fun pilaf_N : N ;
+fun pilaff_N : N ;
+fun pilar_A : A ;
+fun pilaster_N : N ;
+fun pilau_N : N ;
+fun pilchard_N : N ;
+fun pile_N : N ;
+fun pile_V : V ;
+fun pile_driver_N : N ;
+fun pile_dwelling_N : N ;
+fun pile_up_N : N ;
+fun piles_N : N ;
+fun pileup_N : N ;
+fun pilfer_V : V ;
+fun pilferage_N : N ;
+fun pilferer_N : N ;
+fun pilgrim_N : N ;
+fun pilgrimage_N : N ;
+fun pill_N : N ;
+fun pillage_N : N ;
+fun pillage_V : V ;
+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_V : V ;
+fun pillow_N : N ;
+fun pillow_V : V ;
+fun pillow_fight_N : N ;
+fun pillowcase_N : N ;
+fun pillowslip_N : N ;
+fun pillwort_N : N ;
+fun pilocarpine_N : N ;
+fun pilosebaceous_A : A ;
+fun pilot_N : N ;
+fun pilot_V : V ;
+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 pilotfish_N : N ;
+fun pilothouse_N : N ;
+fun piloting_N : N ;
+fun pilotless_A : A ;
+fun pilous_A : A ;
+fun pilus_N : N ;
+fun pimento_N : N ;
+fun pimozide_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_V : V ;
+fun pin_money_N : N ;
+fun pin_point_V : V ;
+fun pin_table_N : N ;
+fun pin_up_N : N ;
+fun pinafore_N : N ;
+fun pinata_N : N ;
+fun pinball_N : N ;
+fun pince_nez_N : N ;
+fun pincer_N : N ;
+fun pinch_N : N ;
+fun pinch_V : V ;
+fun pinchbeck_A : A ;
+fun pinchbeck_N : N ;
+fun pinche_N : N ;
+fun pinchgut_N : N ;
+fun pincushion_N : N ;
+fun pindolol_N : N ;
+fun pine_N : N ;
+fun pine_V : V ;
+fun pineal_A : A ;
+fun pinealoma_N : N ;
+fun pineapple_N : N ;
+fun pinecone_N : N ;
+fun pinesap_N : N ;
+fun pinetum_N : N ;
+fun pinfish_N : N ;
+fun pinfold_N : N ;
+fun ping_N : N ;
+fun ping_V : V ;
+fun pinger_N : N ;
+fun pingpong_N : N ;
+fun pinguecula_N : N ;
+fun pinhead_N : N ;
+fun pinhole_N : N ;
+fun pining_N : N ;
+fun pinion_N : N ;
+fun pinion_V : V ;
+fun pinite_N : N ;
+fun pink_A : A ;
+fun pink_N : N ;
+fun pink_V : V ;
+fun pinkish_A : A ;
+fun pinkness_N : N ;
+fun pinko_N : N ;
+fun pinkroot_N : N ;
+fun pinna_N : N ;
+fun pinnace_N : N ;
+fun pinnacle_N : N ;
+fun pinnacle_V : V ;
+fun pinnate_A : A ;
+fun pinnatifid_A : A ;
+fun pinnatisect_A : A ;
+fun pinner_N : N ;
+fun pinning_N : N ;
+fun pinny_N : N ;
+fun pinochle_N : N ;
+fun pinocytosis_N : N ;
+fun pinole_N : N ;
+fun pinon_N : N ;
+fun pinpoint_N : N ;
+fun pinpoint_V : V ;
+fun pinprick_N : N ;
+fun pinscher_N : N ;
+fun pinstripe_A : A ;
+fun pinstripe_N : N ;
+fun pinstriped_A : A ;
+fun pint_N : N ;
+fun pintail_N : N ;
+fun pintle_N : N ;
+fun pinto_N : N ;
+fun pinwheel_N : N ;
+fun pinworm_N : N ;
+fun pion_N : N ;
+fun pioneer_N : N ;
+fun pioneer_V : V ;
+fun pious_A : A ;
+fun pip_N : N ;
+fun pip_V : V ;
+fun pipage_N : N ;
+fun pipal_N : N ;
+fun pipe_N : N ;
+fun pipe_V : V ;
+fun pipe_organ_N : N ;
+fun pipe_rack_N : N ;
+fun pipeclay_N : N ;
+fun pipedream_N : N ;
+fun pipefish_N : N ;
+fun pipefitting_N : N ;
+fun pipeful_N : N ;
+fun pipeline_N : N ;
+fun piper_N : N ;
+fun piperacillin_N : N ;
+fun piperazine_N : N ;
+fun piperin_N : N ;
+fun piperocaine_N : N ;
+fun pipet_N : N ;
+fun pipette_N : N ;
+fun pipework_N : N ;
+fun pipewort_N : N ;
+fun piping_Adv : Adv ;
+fun piping_N : N ;
+fun pipistrelle_N : N ;
+fun pipit_N : N ;
+fun pippin_N : N ;
+fun pipsissewa_N : N ;
+fun pipsqueak_N : N ;
+fun piquancy_N : N ;
+fun piquant_A : A ;
+fun pique_N : N ;
+fun pique_V : V ;
+fun piquet_N : N ;
+fun piracy_N : N ;
+fun piranha_N : N ;
+fun pirate_N : N ;
+fun pirate_V : V ;
+fun piratical_A : A ;
+fun pirogi_N : N ;
+fun piroplasm_N : N ;
+fun pirouette_N : N ;
+fun pirouette_V : V ;
+fun piroxicam_N : N ;
+fun pis_aller_N : N ;
+fun pisanosaur_N : N ;
+fun piscatorial_A : A ;
+fun piscine_A : A ;
+fun piscivorous_A : A ;
+fun pisiform_N : N ;
+fun piss_N : N ;
+fun piss_V : V ;
+fun pisser_N : N ;
+fun pistachio_N : N ;
+fun piste_N : N ;
+fun pistia_N : N ;
+fun pistil_N : N ;
+fun pistillate_A : A ;
+fun pistillode_N : N ;
+fun pistol_N : N ;
+fun pistoleer_N : N ;
+fun piston_N : N ;
+fun pit_N : N ;
+fun pit_V : V ;
+fun pit_a_pat_Adv : Adv ;
+fun pit_prop_N : N ;
+fun pita_N : N ;
+fun pitahaya_N : N ;
+fun pitch_N : N ;
+fun pitch_V : V ;
+fun pitch_black_A : A ;
+fun pitch_dark_A : A ;
+fun pitchblende_N : N ;
+fun pitcher_N : N ;
+fun pitchfork_N : N ;
+fun pitchfork_V : V ;
+fun pitching_N : N ;
+fun pitchman_N : N ;
+fun pitchstone_N : N ;
+fun pitchy_A : A ;
+fun piteous_A : A ;
+fun pitfall_N : N ;
+fun pith_N : N ;
+fun pithead_N : N ;
+fun pithy_A : A ;
+fun pitiable_A : A ;
+fun pitiful_A : A ;
+fun pitiless_A : A ;
+fun pitilessness_N : N ;
+fun pitman_N : N ;
+fun piton_N : N ;
+fun pitprop_N : N ;
+fun pitsaw_N : N ;
+fun pitta_N : N ;
+fun pittance_N : N ;
+fun pitter_patter_N : N ;
+fun pitting_N : N ;
+fun pituitary_A : A ;
+fun pituitary_N : N ;
+fun pity_N : N ;
+fun pity_V : V ;
+fun pitying_A : A ;
+fun pityriasis_N : N ;
+fun pivot_N : N ;
+fun pivot_V : V ;
+fun pivotal_A : A ;
+fun pixel_N : N ;
+fun pixie_N : N ;
+fun pixilated_A : A ;
+fun pixy_N : N ;
+fun pizza_N : N ;
+fun pizzeria_N : N ;
+fun pizzicato_A : A ;
+fun pizzicato_Adv : Adv ;
+fun pizzicato_N : N ;
+fun placable_A : A ;
+fun placard_N : N ;
+fun placard_V : V ;
+fun placate_V : V ;
+fun placatingly_Adv : Adv ;
+fun placation_N : N ;
+fun place_N : N ;
+fun place_V : V ;
+fun place_bet_N : N ;
+fun place_name_N : N ;
+fun placebo_N : N ;
+fun placeholder_N : N ;
+fun placeman_N : N ;
+fun placement_N : N ;
+fun placenta_N : N ;
+fun placental_A : A ;
+fun placental_N : N ;
+fun placentation_N : N ;
+fun placer_N : N ;
+fun placeseeker_N : N ;
+fun placid_A : A ;
+fun placidity_N : N ;
+fun placing_N : N ;
+fun placket_N : N ;
+fun placoderm_N : N ;
+fun placoid_A : A ;
+fun plage_N : N ;
+fun plagiarism_N : N ;
+fun plagiarist_N : N ;
+fun plagiaristic_A : A ;
+fun plagiarize_V : V ;
+fun plagiocephaly_N : N ;
+fun plagioclase_N : N ;
+fun plagioclastic_A : A ;
+fun plague_N : N ;
+fun plague_V : V ;
+fun plague_spot_N : N ;
+fun plaguey_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_spoken_A : A ;
+fun plainclothesman_N : N ;
+fun plainness_N : N ;
+fun plainsman_N : N ;
+fun plainsong_N : N ;
+fun plainspoken_A : A ;
+fun plaint_N : N ;
+fun plaintiff_N : N ;
+fun plaintive_A : A ;
+fun plaintiveness_N : N ;
+fun plait_N : N ;
+fun plait_V : V ;
+fun plaiter_N : N ;
+fun plan_N : N ;
+fun plan_V : V ;
+fun planar_A : A ;
+fun planarian_N : N ;
+fun planate_A : A ;
+fun planation_N : N ;
+fun planchet_N : N ;
+fun planchette_N : N ;
+fun plane_N : N ;
+fun plane_V : V ;
+fun plane_tree_N : N ;
+fun planet_N : N ;
+fun planetal_A : A ;
+fun planetarium_N : N ;
+fun planetary_A : A ;
+fun planetesimal_N : N ;
+fun plangency_N : N ;
+fun plangent_A : A ;
+fun plank_N : N ;
+fun plank_V : V ;
+fun plank_bed_N : N ;
+fun planking_N : N ;
+fun plankton_N : N ;
+fun planktonic_A : A ;
+fun planless_A : A ;
+fun planner_N : N ;
+fun planning_N : N ;
+fun planoconcave_A : A ;
+fun planoconvex_A : A ;
+fun planographic_A : A ;
+fun plant_N : N ;
+fun plant_V : V ;
+fun plant_louse_N : N ;
+fun plantain_N : N ;
+fun plantal_A : A ;
+fun plantar_A : A ;
+fun plantation_N : N ;
+fun planter_N : N ;
+fun plantigrade_A : A ;
+fun planting_N : N ;
+fun plantlet_N : N ;
+fun planula_N : N ;
+fun plaque_N : N ;
+fun plash_N : N ;
+fun plash_V : V ;
+fun plasm_N : N ;
+fun plasma_N : N ;
+fun plasmablast_N : N ;
+fun plasmacytoma_N : N ;
+fun plasmapheresis_N : N ;
+fun plasmid_N : N ;
+fun plasmin_N : N ;
+fun plasminogen_N : N ;
+fun plasmodium_N : N ;
+fun plaster_N : N ;
+fun plaster_V : V ;
+fun plasterboard_N : N ;
+fun plasterer_N : N ;
+fun plastering_N : N ;
+fun plastic_A : A ;
+fun plastic_N : N ;
+fun plastic_bomb_N : N ;
+fun plastically_Adv : Adv ;
+fun plasticine_N : N ;
+fun plasticity_N : N ;
+fun plasticizer_N : N ;
+fun plastics_N : N ;
+fun plastid_N : N ;
+fun plastination_N : N ;
+fun plastron_N : N ;
+fun plat_N : N ;
+fun plate_N : N ;
+fun plate_V : V ;
+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 platelet_N : N ;
+fun plateletpheresis_N : N ;
+fun platen_N : N ;
+fun plater_N : N ;
+fun platform_N : N ;
+fun plating_N : N ;
+fun platinum_N : N ;
+fun platitude_N : N ;
+fun platitudinarian_N : N ;
+fun platitudinous_A : A ;
+fun platonic_A : A ;
+fun platoon_N : N ;
+fun platter_N : N ;
+fun platy_N : N ;
+fun platyctenean_N : N ;
+fun platypus_N : N ;
+fun platyrrhine_A : A ;
+fun platysma_N : N ;
+fun plaudit_N : N ;
+fun plausibility_N : N ;
+fun plausible_A : A ;
+fun play_N : N ;
+fun play_V : V ;
+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 playable_A : A ;
+fun playback_N : N ;
+fun playbill_N : N ;
+fun playbook_N : N ;
+fun playbox_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 playlist_N : N ;
+fun playmaker_N : N ;
+fun playmate_N : N ;
+fun playoff_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 plea_N : N ;
+fun pleach_V : V ;
+fun plead_pleaded_V : V ;
+fun plead_pled_V : V ;
+fun pleading_N : N ;
+fun pleadingly_Adv : Adv ;
+fun pleasance_N : N ;
+fun pleasant_A : A ;
+fun pleasantness_N : N ;
+fun pleasantry_N : N ;
+fun please_Adv : Adv ;
+fun please_V : V ;
+fun pleaser_N : N ;
+fun pleasing_N : N ;
+fun pleasingly_Adv : Adv ;
+fun pleasingness_N : N ;
+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_V : V ;
+fun pleb_N : N ;
+fun plebeian_A : A ;
+fun plebeian_N : N ;
+fun plebiscite_N : N ;
+fun plectognath_N : N ;
+fun plectranthus_N : N ;
+fun plectrum_N : N ;
+fun pledge_N : N ;
+fun pledge_V : V ;
+fun pledgee_N : N ;
+fun pledger_N : N ;
+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 plenum_N : N ;
+fun pleochroic_A : A ;
+fun pleochroism_N : N ;
+fun pleomorphic_A : A ;
+fun pleomorphism_N : N ;
+fun pleonasm_N : N ;
+fun pleonastic_A : A ;
+fun plesiosaur_N : N ;
+fun plethora_N : N ;
+fun plethysmograph_N : N ;
+fun pleura_N : N ;
+fun pleural_A : A ;
+fun pleurisy_N : N ;
+fun pleurocarp_N : N ;
+fun pleurocarpous_A : A ;
+fun pleurodont_N : N ;
+fun pleurodynia_N : N ;
+fun pleuropneumonia_N : N ;
+fun pleurothallis_N : N ;
+fun pleximeter_N : N ;
+fun plexor_N : N ;
+fun plexus_N : N ;
+fun pliability_N : N ;
+fun pliable_A : A ;
+fun pliancy_N : N ;
+fun pliant_A : A ;
+fun plication_N : N ;
+fun plier_N : N ;
+fun pliers_N : N ;
+fun plight_N : N ;
+fun plight_V : V ;
+fun plimsoll_N : N ;
+fun plinth_N : N ;
+fun ploce_N : N ;
+fun plod_V : V ;
+fun plodder_N : N ;
+fun plodding_N : N ;
+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 plosion_N : N ;
+fun plosive_A : A ;
+fun plosive_N : N ;
+fun plot_N : N ;
+fun plot_V : V ;
+fun plotter_N : N ;
+fun plough_N : N ;
+fun plough_V : V ;
+fun ploughboy_N : N ;
+fun ploughman_N : N ;
+fun ploughshare_N : N ;
+fun plover_N : N ;
+fun plow_N : N ;
+fun plow_V : V ;
+fun plowboy_N : N ;
+fun plowing_N : N ;
+fun plowman_N : N ;
+fun plowshare_N : N ;
+fun plowwright_N : N ;
+fun ploy_N : N ;
+fun pluck_N : N ;
+fun pluck_V : V ;
+fun plucky_A : A ;
+fun plug_N : N ;
+fun plug_V : V ;
+fun plughole_N : N ;
+fun plum_N : N ;
+fun plum_pudding_N : N ;
+fun plumage_N : N ;
+fun plumaged_A : A ;
+fun plumate_A : A ;
+fun plumb_A : A ;
+fun plumb_Adv : Adv ;
+fun plumb_N : N ;
+fun plumb_V : V ;
+fun plumbaginaceous_A : A ;
+fun plumbago_N : N ;
+fun plumber_N : N ;
+fun plumbic_A : A ;
+fun plumbing_N : N ;
+fun plumcot_N : N ;
+fun plume_N : N ;
+fun plume_V : V ;
+fun plumelike_A : A ;
+fun plumlike_A : A ;
+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 plumpness_N : N ;
+fun plumule_N : N ;
+fun plunder_N : N ;
+fun plunder_V : V ;
+fun plunderage_N : N ;
+fun plunderer_N : N ;
+fun plundering_N : N ;
+fun plunge_N : N ;
+fun plunge_V : V ;
+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 pluralistic_A : A ;
+fun plurality_N : N ;
+fun pluralization_N : N ;
+fun plus_A : A ;
+fun plus_N : N ;
+fun plush_A : A ;
+fun plush_N : N ;
+fun plushy_A : A ;
+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 plywood_N : N ;
+fun pneumatic_A : A ;
+fun pneumatically_Adv : Adv ;
+fun pneumatics_N : N ;
+fun pneumatophore_N : N ;
+fun pneumococcal_A : A ;
+fun pneumococcus_N : N ;
+fun pneumoconiosis_N : N ;
+fun pneumocytosis_N : N ;
+fun pneumogastric_A : A ;
+fun pneumonectomy_N : N ;
+fun pneumonia_N : N ;
+fun pneumonic_A : A ;
+fun pneumonitis_N : N ;
+fun pneumothorax_N : N ;
+fun po_N : N ;
+fun poach_V : V ;
+fun poacher_N : N ;
+fun poaching_N : N ;
+fun pochard_N : N ;
+fun pock_N : N ;
+fun pocked_A : A ;
+fun pocket_N : N ;
+fun pocket_V : V ;
+fun pocket_book_N : N ;
+fun pocket_handkerchief_N : N ;
+fun pocket_knife_N : N ;
+fun pocket_money_N : N ;
+fun pocketbook_N : N ;
+fun pocketcomb_N : N ;
+fun pocketful_N : N ;
+fun pocketknife_N : N ;
+fun pockmark_N : N ;
+fun pockmarked_A : A ;
+fun pod_N : N ;
+fun pod_V : V ;
+fun podalgia_N : N ;
+fun podetium_N : N ;
+fun podgy_A : A ;
+fun podiatry_N : N ;
+fun podium_N : N ;
+fun podlike_A : A ;
+fun podocarp_N : N ;
+fun podzol_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 poetics_N : N ;
+fun poetry_N : N ;
+fun pogge_N : N ;
+fun pogonia_N : N ;
+fun pogonion_N : N ;
+fun pogrom_N : N ;
+fun poi_N : N ;
+fun poignance_N : N ;
+fun poignancy_N : N ;
+fun poignant_A : A ;
+fun poikilotherm_N : N ;
+fun poikilothermic_A : A ;
+fun poilu_N : N ;
+fun poinsettia_N : N ;
+fun point_N : N ;
+fun point_V : V ;
+fun point_blank_A : A ;
+fun point_blank_Adv : Adv ;
+fun point_duty_N : N ;
+fun pointedly_Adv : Adv ;
+fun pointedness_N : N ;
+fun pointer_N : N ;
+fun pointillism_N : N ;
+fun pointillist_A : A ;
+fun pointillist_N : N ;
+fun pointless_A : A ;
+fun pointsman_N : N ;
+fun poise_N : N ;
+fun poise_V : V ;
+fun poison_N : N ;
+fun poison_V : V ;
+fun poison_gas_N : N ;
+fun poison_ivy_N : N ;
+fun poisoner_N : N ;
+fun poisoning_N : N ;
+fun poisonous_A : A ;
+fun poke_N : N ;
+fun poke_V : V ;
+fun poke_bonnet_N : N ;
+fun poker_N : N ;
+fun poker_face_N : N ;
+fun pokeweed_N : N ;
+fun poky_A : A ;
+fun polack_N : N ;
+fun polar_A : A ;
+fun polarimeter_N : N ;
+fun polaris_N : N ;
+fun polarity_N : N ;
+fun polarization_N : N ;
+fun polarize_V : V ;
+fun polarographic_A : A ;
+fun polarography_N : N ;
+fun polaroid_N : N ;
+fun polder_N : N ;
+fun pole_jumping_N : N ;
+fun pole_star_N : N ;
+fun pole_vault_N : N ;
+fun poleax_N : N ;
+fun poleax_V : V ;
+fun poleaxe_N : N ;
+fun poleaxe_V : V ;
+fun polecat_N : N ;
+fun polemic_A : A ;
+fun polemic_N : N ;
+fun polemically_Adv : Adv ;
+fun polemicist_N : N ;
+fun polemics_N : N ;
+fun polemoniaceous_A : A ;
+fun polemonium_N : N ;
+fun polenta_N : N ;
+fun police_N : N ;
+fun police_V : V ;
+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 policyholder_N : N ;
+fun polio_N : N ;
+fun poliomyelitis_N : N ;
+fun poliosis_N : N ;
+fun poliovirus_N : N ;
+fun polish_N : N ;
+fun polish_V : V ;
+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 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_tax_N : N ;
+fun pollack_N : N ;
+fun pollard_N : N ;
+fun pollard_V : V ;
+fun pollen_N : N ;
+fun pollinate_V : V ;
+fun pollination_N : N ;
+fun pollinator_N : N ;
+fun polling_booth_N : N ;
+fun polling_day_N : N ;
+fun polling_station_N : N ;
+fun pollinium_N : N ;
+fun polls_N : N ;
+fun pollster_N : N ;
+fun pollucite_N : N ;
+fun pollutant_N : N ;
+fun pollute_V : V ;
+fun polluter_N : N ;
+fun pollution_N : N ;
+fun polo_N : N ;
+fun polo_neck_A : A ;
+fun polonaise_N : N ;
+fun polonium_N : N ;
+fun polony_N : N ;
+fun poltergeist_N : N ;
+fun poltroon_A : A ;
+fun poltroon_N : N ;
+fun poltroonery_N : N ;
+fun poly_N : N ;
+fun polyamide_N : N ;
+fun polyandrist_N : N ;
+fun polyandrous_A : A ;
+fun polyandry_N : N ;
+fun polyanthus_N : N ;
+fun polyarteritis_N : N ;
+fun polyatomic_A : A ;
+fun polybutylene_N : N ;
+fun polychaete_N : N ;
+fun polychromatic_A : A ;
+fun polychrome_N : N ;
+fun polycrystalline_A : A ;
+fun polycythemia_N : N ;
+fun polydactyl_A : A ;
+fun polydactyly_N : N ;
+fun polydipsia_N : N ;
+fun polyelectrolyte_N : N ;
+fun polyester_N : N ;
+fun polyestrous_A : A ;
+fun polyethylene_N : N ;
+fun polyfoam_N : N ;
+fun polygamist_N : N ;
+fun polygamous_A : A ;
+fun polygamy_N : N ;
+fun polygene_N : N ;
+fun polygenic_A : A ;
+fun polyglot_A : A ;
+fun polyglot_N : N ;
+fun polygon_N : N ;
+fun polygonal_A : A ;
+fun polygraph_N : N ;
+fun polygynist_N : N ;
+fun polygynous_A : A ;
+fun polygyny_N : N ;
+fun polyhedral_A : A ;
+fun polyhedron_N : N ;
+fun polymastigote_N : N ;
+fun polymath_N : N ;
+fun polymer_N : N ;
+fun polymerase_N : N ;
+fun polymeric_A : A ;
+fun polymerization_N : N ;
+fun polymorph_N : N ;
+fun polymorphemic_A : A ;
+fun polymorphic_A : A ;
+fun polymorphism_N : N ;
+fun polymorphous_A : A ;
+fun polymyositis_N : N ;
+fun polymyxin_N : N ;
+fun polyneuritis_N : N ;
+fun polynomial_A : A ;
+fun polynomial_N : N ;
+fun polynya_N : N ;
+fun polyoma_N : N ;
+fun polyp_N : N ;
+fun polypectomy_N : N ;
+fun polypeptide_N : N ;
+fun polypetalous_A : A ;
+fun polyphone_N : N ;
+fun polyphonic_A : A ;
+fun polyphonically_Adv : Adv ;
+fun polyphony_N : N ;
+fun polyphosphate_N : N ;
+fun polyploid_A : A ;
+fun polyploid_N : N ;
+fun polyploidy_N : N ;
+fun polypody_N : N ;
+fun polypore_N : N ;
+fun polypropenonitrile_N : N ;
+fun polypropylene_N : N ;
+fun polyptoton_N : N ;
+fun polypus_N : N ;
+fun polysaccharide_N : N ;
+fun polysemant_N : N ;
+fun polysemous_A : A ;
+fun polysemy_N : N ;
+fun polysomy_N : N ;
+fun polystyrene_N : N ;
+fun polysyllabic_A : A ;
+fun polysyllabically_Adv : Adv ;
+fun polysyllable_N : N ;
+fun polysyndeton_N : N ;
+fun polytechnic_N : N ;
+fun polytheism_N : N ;
+fun polytheist_N : N ;
+fun polytheistic_A : A ;
+fun polythene_N : N ;
+fun polytonal_A : A ;
+fun polytonality_N : N ;
+fun polyunsaturated_A : A ;
+fun polyurethane_N : N ;
+fun polyuria_N : N ;
+fun polyvalence_N : N ;
+fun polyvalent_A : A ;
+fun pom_N : N ;
+fun pomade_N : N ;
+fun pomade_V : V ;
+fun pome_N : N ;
+fun pomegranate_N : N ;
+fun pomelo_N : N ;
+fun pomfret_N : N ;
+fun pommel_N : N ;
+fun pommel_V : V ;
+fun pommy_N : N ;
+fun pomologist_N : N ;
+fun pomology_N : N ;
+fun pomp_N : N ;
+fun pompadour_N : N ;
+fun pompano_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 ponderable_A : A ;
+fun ponderosa_N : N ;
+fun ponderous_A : A ;
+fun ponderousness_N : N ;
+fun pondweed_N : N ;
+fun pone_N : N ;
+fun pongee_N : N ;
+fun poniard_N : N ;
+fun poniard_V : V ;
+fun pons_N : N ;
+fun pontifex_N : N ;
+fun pontiff_N : N ;
+fun pontifical_A : A ;
+fun pontifical_N : N ;
+fun pontificate_N : N ;
+fun pontificate_V : V ;
+fun pontoon_N : N ;
+fun pony_N : N ;
+fun pony_V : V ;
+fun pony_trekking_N : N ;
+fun ponytail_N : N ;
+fun pooch_N : N ;
+fun pood_N : N ;
+fun poodle_N : N ;
+fun poof_N : N ;
+fun pooh_pooh_V : V ;
+fun pool_N : N ;
+fun pool_V : V ;
+fun pooler_N : N ;
+fun poolroom_N : N ;
+fun poon_N : N ;
+fun poop_N : N ;
+fun poop_V : V ;
+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 poorwill_N : N ;
+fun pootle_V : V ;
+fun pop_A : A ;
+fun pop_Adv : Adv ;
+fun pop_N : N ;
+fun pop_V : V ;
+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 popliteal_A : A ;
+fun popover_N : N ;
+fun poppa_N : N ;
+fun popper_N : N ;
+fun poppet_N : N ;
+fun poppy_N : N ;
+fun poppycock_N : N ;
+fun populace_N : N ;
+fun popular_A : A ;
+fun popularism_N : N ;
+fun popularity_N : N ;
+fun popularization_N : N ;
+fun popularize_V : V ;
+fun popularizer_N : N ;
+fun populate_V : V ;
+fun population_N : N ;
+fun populism_N : N ;
+fun populist_N : N ;
+fun populous_A : A ;
+fun porbeagle_N : N ;
+fun porcelain_N : N ;
+fun porch_N : N ;
+fun porcine_A : A ;
+fun porcupine_N : N ;
+fun porcupinefish_N : N ;
+fun pore_N : N ;
+fun pore_V : V ;
+fun porgy_N : N ;
+fun pork_N : N ;
+fun pork_barrel_N : N ;
+fun pork_butcher_N : N ;
+fun porkchop_N : N ;
+fun porker_N : N ;
+fun porkfish_N : N ;
+fun porkholt_N : N ;
+fun porkpie_N : N ;
+fun porn_N : N ;
+fun pornographer_N : N ;
+fun pornographic_A : A ;
+fun pornographically_Adv : Adv ;
+fun pornography_N : N ;
+fun porose_A : A ;
+fun porosity_N : N ;
+fun porous_A : A ;
+fun porousness_N : N ;
+fun porphyria_N : N ;
+fun porphyrin_N : N ;
+fun porphyritic_A : A ;
+fun porphyry_N : N ;
+fun porpoise_N : N ;
+fun porridge_N : N ;
+fun porringer_N : N ;
+fun port_A : A ;
+fun port_N : N ;
+fun port_V : V ;
+fun portability_N : N ;
+fun portable_A : A ;
+fun portable_N : N ;
+fun portage_N : N ;
+fun portal_N : N ;
+fun portcullis_N : N ;
+fun porte_cochère_N : N ;
+fun portend_V : V ;
+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 porthole_N : N ;
+fun portico_N : N ;
+fun portion_N : N ;
+fun portion_V : V ;
+fun portière_N : N ;
+fun portly_A : A ;
+fun portmanteau_N : N ;
+fun portrait_N : N ;
+fun portraitist_N : N ;
+fun portraiture_N : N ;
+fun portray_V : V ;
+fun portrayal_N : N ;
+fun portulaca_N : N ;
+fun portwatcher_N : N ;
+fun pose_N : N ;
+fun pose_V : V ;
+fun poser_N : N ;
+fun poseur_N : N ;
+fun poseuse_N : N ;
+fun posh_A : A ;
+fun posh_V : V ;
+fun posit_V : V ;
+fun position_N : N ;
+fun position_V : V ;
+fun positionable_A : A ;
+fun positional_A : A ;
+fun positive_A : A ;
+fun positive_N : N ;
+fun positiveness_N : N ;
+fun positivism_N : N ;
+fun positivist_A : A ;
+fun positivist_N : N ;
+fun positivity_N : N ;
+fun positron_N : N ;
+fun posology_N : N ;
+fun posse_N : N ;
+fun posseman_N : N ;
+fun possess_V : V ;
+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_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 postbiblical_A : A ;
+fun postbox_N : N ;
+fun postcard_N : N ;
+fun postcode_N : N ;
+fun postdate_V : V ;
+fun postdiluvian_A : A ;
+fun postdiluvian_N : N ;
+fun postdoc_N : N ;
+fun postdoctoral_A : A ;
+fun postdoctoral_N : N ;
+fun poste_restante_N : N ;
+fun poster_N : N ;
+fun posterior_A : A ;
+fun posterior_N : N ;
+fun posteriority_N : N ;
+fun posterity_N : N ;
+fun postern_N : N ;
+fun postexilic_A : A ;
+fun postganglionic_A : A ;
+fun postglacial_A : A ;
+fun postgraduate_A : A ;
+fun postgraduate_N : N ;
+fun posthitis_N : N ;
+fun posthole_N : N ;
+fun posthouse_N : N ;
+fun posthumous_A : A ;
+fun postictal_A : A ;
+fun postilion_N : N ;
+fun postillion_N : N ;
+fun postindustrial_A : A ;
+fun posting_N : N ;
+fun postlude_N : N ;
+fun postman_N : N ;
+fun postmark_N : N ;
+fun postmark_V : V ;
+fun postmaster_N : N ;
+fun postmenopausal_A : A ;
+fun postmeridian_A : A ;
+fun postmillennial_A : A ;
+fun postmistress_N : N ;
+fun postmodernism_N : N ;
+fun postmodernist_A : A ;
+fun postmortem_A : A ;
+fun postmortem_N : N ;
+fun postnatal_A : A ;
+fun postnuptial_A : A ;
+fun postoperative_A : A ;
+fun postpaid_A : A ;
+fun postpone_V : V ;
+fun postponement_N : N ;
+fun postposition_N : N ;
+fun postpositive_A : A ;
+fun postprandial_A : A ;
+fun postscript_N : N ;
+fun postulant_N : N ;
+fun postulate_N : N ;
+fun postulate_V : V ;
+fun postulation_N : N ;
+fun postulator_N : N ;
+fun postural_A : A ;
+fun posture_N : N ;
+fun posture_V : V ;
+fun posturer_N : N ;
+fun posturing_N : N ;
+fun postwar_A : A ;
+fun posy_N : N ;
+fun pot_N : N ;
+fun pot_V : V ;
+fun pot_shot_N : N ;
+fun pot_trained_A : A ;
+fun potable_A : A ;
+fun potage_N : N ;
+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 potentiation_N : N ;
+fun potentiometer_N : N ;
+fun pothead_N : N ;
+fun pother_N : N ;
+fun potherb_N : N ;
+fun potholder_N : N ;
+fun pothole_N : N ;
+fun potholer_N : N ;
+fun pothook_N : N ;
+fun pothos_N : N ;
+fun pothouse_N : N ;
+fun pothunter_N : N ;
+fun potion_N : N ;
+fun potlatch_N : N ;
+fun potluck_N : N ;
+fun potman_N : N ;
+fun potoroo_N : N ;
+fun potpie_N : N ;
+fun potpourri_N : N ;
+fun potsherd_N : N ;
+fun potshot_N : N ;
+fun pottage_N : N ;
+fun potter_N : N ;
+fun potter_V : V ;
+fun potterer_N : N ;
+fun pottery_N : N ;
+fun pottle_N : N ;
+fun potto_N : N ;
+fun potty_A : A ;
+fun potty_N : N ;
+fun pouch_N : N ;
+fun pouch_V : V ;
+fun pouf_N : N ;
+fun pouffe_N : N ;
+fun poulette_N : N ;
+fun poulterer_N : N ;
+fun poultice_N : N ;
+fun poultice_V : V ;
+fun poultry_N : N ;
+fun poultryman_N : N ;
+fun pounce_N : N ;
+fun pounce_V : V ;
+fun pound_N : N ;
+fun pound_V : V ;
+fun poundage_N : N ;
+fun poundal_N : N ;
+fun pounder_N : N ;
+fun pounding_N : N ;
+fun pour_V : V ;
+fun pout_N : N ;
+fun pout_V : V ;
+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_flask_N : N ;
+fun powder_horn_N : N ;
+fun powder_magazine_N : N ;
+fun powder_puff_N : N ;
+fun powder_room_N : N ;
+fun powderer_N : N ;
+fun powderpuff_N : N ;
+fun powdery_A : A ;
+fun power_N : N ;
+fun power_V : V ;
+fun power_dive_N : N ;
+fun power_dive_V : V ;
+fun power_point_N : N ;
+fun power_station_N : N ;
+fun powerboat_N : N ;
+fun powerful_A : A ;
+fun powerhouse_N : N ;
+fun powerless_A : A ;
+fun powerlessness_N : N ;
+fun powwow_N : N ;
+fun powwow_V : V ;
+fun pox_N : N ;
+fun poxvirus_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 practician_N : N ;
+fun practise_V : V ;
+fun practitioner_N : N ;
+fun praenomen_N : N ;
+fun praesidium_N : N ;
+fun praetor_N : N ;
+fun praetorian_A : A ;
+fun praetorium_N : N ;
+fun praetorship_N : N ;
+fun pragmatic_A : A ;
+fun pragmatically_Adv : Adv ;
+fun pragmatics_N : N ;
+fun pragmatism_N : N ;
+fun pragmatist_N : N ;
+fun prairie_N : N ;
+fun praise_N : N ;
+fun praise_V : V ;
+fun praiseworthiness_N : N ;
+fun praiseworthy_A : A ;
+fun praisworthiness_N : N ;
+fun praline_N : N ;
+fun pram_N : N ;
+fun prance_N : N ;
+fun prance_V : V ;
+fun prancer_N : N ;
+fun prandial_A : A ;
+fun prang_N : N ;
+fun prank_N : N ;
+fun prankishness_N : N ;
+fun prankster_N : N ;
+fun praseodymium_N : N ;
+fun prate_N : N ;
+fun prate_V : V ;
+fun pratfall_N : N ;
+fun pratincole_N : N ;
+fun prattle_N : N ;
+fun prattle_V : V ;
+fun prattler_N : N ;
+fun pravastatin_N : N ;
+fun prawn_N : N ;
+fun prawn_V : V ;
+fun pray_V : V ;
+fun praya_N : N ;
+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 prayerful_A : A ;
+fun prazosin_N : N ;
+fun pre_approve_V : V ;
+fun pre_eminence_N : N ;
+fun pre_eminent_A : A ;
+fun pre_empt_V : V ;
+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_V : V ;
+fun pre_sign_V : V ;
+fun pre_test_V : V ;
+fun preach_V : V ;
+fun preacher_N : N ;
+fun preachification_N : N ;
+fun preachify_V : V ;
+fun preachy_A : A ;
+fun preamble_N : N ;
+fun preanal_A : A ;
+fun prearrange_V : V ;
+fun prearrangement_N : N ;
+fun prebend_N : N ;
+fun prebendary_N : N ;
+fun precancerous_A : A ;
+fun precarious_A : A ;
+fun precariousness_N : N ;
+fun precast_A : A ;
+fun precatory_A : A ;
+fun precaution_N : N ;
+fun precautionary_A : A ;
+fun precede_V : V ;
+fun precedence_N : N ;
+fun precedent_A : A ;
+fun precedent_N : N ;
+fun precedented_A : A ;
+fun precedential_A : A ;
+fun preceding_A : A ;
+fun precentor_N : N ;
+fun precentorship_N : N ;
+fun precept_N : N ;
+fun preceptor_N : N ;
+fun preceptorship_N : N ;
+fun precession_N : N ;
+fun prechlorination_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 precipitant_N : N ;
+fun precipitate_A : A ;
+fun precipitate_N : N ;
+fun precipitate_V : V ;
+fun precipitation_N : N ;
+fun precipitator_N : N ;
+fun precipitin_N : N ;
+fun precipitous_A : A ;
+fun precise_A : A ;
+fun preciseness_N : N ;
+fun precision_N : N ;
+fun preclinical_A : A ;
+fun preclude_V : V ;
+fun preclusion_N : N ;
+fun preclusive_A : A ;
+fun precocial_A : A ;
+fun precocious_A : A ;
+fun precociousness_N : N ;
+fun precocity_N : N ;
+fun precognition_N : N ;
+fun preconceive_V : V ;
+fun preconception_N : N ;
+fun preconcerted_A : A ;
+fun precondition_N : N ;
+fun preconditioned_A : A ;
+fun precooked_A : A ;
+fun precooled_A : A ;
+fun precordial_A : A ;
+fun precordium_N : N ;
+fun precursor_N : N ;
+fun precursory_A : A ;
+fun predaceous_A : A ;
+fun predacious_A : A ;
+fun predate_V : V ;
+fun predation_N : N ;
+fun predator_N : N ;
+fun predatory_A : A ;
+fun predecease_V : V ;
+fun predecessor_N : N ;
+fun predestinarian_A : A ;
+fun predestinarianism_N : N ;
+fun predestinate_A : A ;
+fun predestinate_V : V ;
+fun predestination_N : N ;
+fun predestine_V : V ;
+fun predetermination_N : N ;
+fun predetermine_V : V ;
+fun predicament_N : N ;
+fun predicate_N : N ;
+fun predicate_V : V ;
+fun predicative_A : A ;
+fun predicator_N : N ;
+fun predict_V : V ;
+fun predictability_N : N ;
+fun predictable_A : A ;
+fun prediction_N : N ;
+fun predictive_A : A ;
+fun predictor_N : N ;
+fun predigest_V : V ;
+fun predilection_N : N ;
+fun predispose_V : V ;
+fun predisposition_N : N ;
+fun prednisolone_N : N ;
+fun prednisone_N : N ;
+fun predominance_N : N ;
+fun predominant_A : A ;
+fun predominate_V : V ;
+fun predomination_N : N ;
+fun preeclampsia_N : N ;
+fun preemption_N : N ;
+fun preemptive_A : A ;
+fun preemptor_N : N ;
+fun preen_V : V ;
+fun preexistence_N : N ;
+fun preexistent_A : A ;
+fun prefab_A : A ;
+fun prefab_N : N ;
+fun prefabricate_V : V ;
+fun prefabrication_N : N ;
+fun preface_N : N ;
+fun preface_V : V ;
+fun prefaded_A : A ;
+fun prefatory_A : A ;
+fun prefect_N : N ;
+fun prefectural_A : A ;
+fun prefecture_N : N ;
+fun prefer_V : V ;
+fun preferable_A : A ;
+fun preference_N : N ;
+fun preferential_A : A ;
+fun preferment_N : N ;
+fun prefiguration_N : N ;
+fun prefigure_V : V ;
+fun prefix_N : N ;
+fun prefix_V : V ;
+fun prefixation_N : N ;
+fun preformation_N : N ;
+fun prefrontal_A : A ;
+fun pregnancy_N : N ;
+fun pregnanediol_N : N ;
+fun pregnant_A : A ;
+fun preheat_V : V ;
+fun prehensile_A : A ;
+fun prehensor_N : N ;
+fun prehistoric_A : A ;
+fun prehistorical_A : A ;
+fun prehistory_N : N ;
+fun prejudge_V : V ;
+fun prejudgement_N : N ;
+fun prejudgment_N : N ;
+fun prejudice_N : N ;
+fun prejudice_V : V ;
+fun prejudicial_A : A ;
+fun prelacy_N : N ;
+fun prelapsarian_A : A ;
+fun prelate_N : N ;
+fun prelim_N : N ;
+fun preliminary_A : A ;
+fun preliminary_N : N ;
+fun preliterate_A : A ;
+fun prelude_N : N ;
+fun prelude_V : V ;
+fun premarital_A : A ;
+fun premature_A : A ;
+fun prematureness_N : N ;
+fun premedical_A : A ;
+fun premeditate_V : V ;
+fun premeditation_N : N ;
+fun premenopausal_A : A ;
+fun premenstrual_A : A ;
+fun premier_A : A ;
+fun premier_N : N ;
+fun premiere_V : V ;
+fun premiership_N : N ;
+fun premise_N : N ;
+fun premise_V : V ;
+fun premises_N : N ;
+fun premiss_N : N ;
+fun premiss_V : V ;
+fun premium_A : A ;
+fun premium_N : N ;
+fun première_N : N ;
+fun premolar_N : N ;
+fun premonition_N : N ;
+fun premonitory_A : A ;
+fun prenatal_A : A ;
+fun prentice_N : N ;
+fun prenuptial_A : A ;
+fun preoccupancy_N : N ;
+fun preoccupation_N : N ;
+fun preoccupy_V : V ;
+fun preoperative_A : A ;
+fun preordain_V : V ;
+fun prep_N : N ;
+fun prepackaged_A : A ;
+fun prepacked_A : A ;
+fun preparation_N : N ;
+fun preparatory_A : A ;
+fun prepare_V : V ;
+fun preparedness_N : N ;
+fun prepay_V : V ;
+fun prepayment_N : N ;
+fun preponderance_N : N ;
+fun preponderant_A : A ;
+fun preponderate_V : V ;
+fun preposition_N : N ;
+fun prepositional_A : A ;
+fun prepossess_V : V ;
+fun prepossessing_A : A ;
+fun prepossession_N : N ;
+fun preposterous_A : A ;
+fun preprandial_A : A ;
+fun prepuberty_N : N ;
+fun prepubescent_A : A ;
+fun prepuce_N : N ;
+fun prepupal_A : A ;
+fun prerecord_V : V ;
+fun prerequisite_A : A ;
+fun prerequisite_N : N ;
+fun prerogative_N : N ;
+fun pres_N : N ;
+fun presage_N : N ;
+fun presage_V : V ;
+fun presbyope_N : N ;
+fun presbyopia_N : N ;
+fun presbyter_N : N ;
+fun presbyterian_A : A ;
+fun presbyterian_N : N ;
+fun presbyterianism_N : N ;
+fun presbytery_N : N ;
+fun preschool_N : N ;
+fun preschooler_N : N ;
+fun prescience_N : N ;
+fun prescient_A : A ;
+fun prescribe_V : V ;
+fun prescript_N : N ;
+fun prescription_N : N ;
+fun prescriptive_A : A ;
+fun prescriptivism_N : N ;
+fun preseason_N : N ;
+fun presence_N : N ;
+fun present_A : A ;
+fun present_N : N ;
+fun present_V : V ;
+fun present_day_A : A ;
+fun presentable_A : A ;
+fun presentation_N : N ;
+fun presentational_A : A ;
+fun presenter_N : N ;
+fun presentiment_N : N ;
+fun presentism_N : N ;
+fun presentist_N : N ;
+fun presentment_N : N ;
+fun presentness_N : N ;
+fun preservable_A : A ;
+fun preservation_N : N ;
+fun preservationist_N : N ;
+fun preservative_A : A ;
+fun preservative_N : N ;
+fun preserve_N : N ;
+fun preserve_V : V ;
+fun preserver_N : N ;
+fun preset_A : A ;
+fun preside_V : V ;
+fun presidency_N : N ;
+fun president_N : N ;
+fun presidential_A : A ;
+fun presidio_N : N ;
+fun presidium_N : N ;
+fun presocratic_A : A ;
+fun press_N : N ;
+fun press_V : V ;
+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 pressor_A : A ;
+fun pressure_N : N ;
+fun pressure_V : V ;
+fun pressure_cooker_N : N ;
+fun pressure_gauge_N : N ;
+fun pressurized_A : A ;
+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 prestressed_A : A ;
+fun presumable_A : A ;
+fun presume_V : V ;
+fun presumption_N : N ;
+fun presumptive_A : A ;
+fun presumptuous_A : A ;
+fun presuppose_V : V ;
+fun presupposition_N : N ;
+fun preteen_A : A ;
+fun preteen_N : N ;
+fun pretence_N : N ;
+fun pretend_V : V ;
+fun pretendedly_Adv : Adv ;
+fun pretender_N : N ;
+fun pretense_N : N ;
+fun pretension_N : N ;
+fun pretentious_A : A ;
+fun pretentiousness_N : N ;
+fun preterist_N : N ;
+fun preterit_A : A ;
+fun preterit_N : N ;
+fun preterite_A : A ;
+fun preterite_N : N ;
+fun pretermission_N : N ;
+fun preternatural_A : A ;
+fun pretext_N : N ;
+fun pretor_N : N ;
+fun pretrial_N : N ;
+fun prettify_V : V ;
+fun prettily_Adv : Adv ;
+fun prettiness_N : N ;
+fun pretty_A : A ;
+fun pretty_N : N ;
+fun pretty_pretty_A : A ;
+fun pretzel_N : N ;
+fun prevail_V : V ;
+fun prevalence_N : N ;
+fun prevalent_A : A ;
+fun prevaricate_V : V ;
+fun prevarication_N : N ;
+fun prevent_V : V ;
+fun preventable_A : A ;
+fun preventative_N : N ;
+fun prevention_N : N ;
+fun preventive_A : A ;
+fun preventive_N : N ;
+fun preview_N : N ;
+fun preview_V : V ;
+fun previous_A : A ;
+fun prevision_N : N ;
+fun prewar_A : A ;
+fun prey_N : N ;
+fun prey_V : V ;
+fun priapic_A : A ;
+fun priapism_N : N ;
+fun price_N : N ;
+fun price_V : V ;
+fun price_control_N : N ;
+fun price_controlled_A : A ;
+fun priceless_A : A ;
+fun pricelist_N : N ;
+fun pricey_A : A ;
+fun pricing_N : N ;
+fun prick_N : N ;
+fun prick_V : V ;
+fun pricker_N : N ;
+fun pricket_N : N ;
+fun pricking_N : N ;
+fun prickle_N : N ;
+fun prickle_V : V ;
+fun prickleback_N : N ;
+fun prickliness_N : N ;
+fun prickling_N : N ;
+fun prickly_A : A ;
+fun pride_N : N ;
+fun pride_V : V ;
+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_V : V ;
+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 primality_N : N ;
+fun primaquine_N : N ;
+fun primary_A : A ;
+fun primary_N : N ;
+fun primate_N : N ;
+fun primateship_N : N ;
+fun primatology_N : N ;
+fun prime_A : A ;
+fun prime_N : N ;
+fun prime_V : V ;
+fun primer_N : N ;
+fun primeval_A : A ;
+fun primidone_N : N ;
+fun primigravida_N : N ;
+fun priming_N : N ;
+fun primipara_N : N ;
+fun primiparous_A : A ;
+fun primitive_A : A ;
+fun primitive_N : N ;
+fun primitiveness_N : N ;
+fun primitivism_N : N ;
+fun primness_N : N ;
+fun primo_A : A ;
+fun primo_N : N ;
+fun primogeniture_N : N ;
+fun primordial_A : A ;
+fun primordium_N : N ;
+fun primp_V : V ;
+fun primping_N : N ;
+fun primrose_N : N ;
+fun primula_N : N ;
+fun primus_N : N ;
+fun prince_N : N ;
+fun princedom_N : N ;
+fun princeling_N : N ;
+fun princely_A : A ;
+fun princess_N : N ;
+fun princewood_N : N ;
+fun principal_A : A ;
+fun principal_N : N ;
+fun principality_N : N ;
+fun principalship_N : N ;
+fun principle_N : N ;
+fun principled_A : A ;
+fun prink_V : V ;
+fun print_N : N ;
+fun print_V : V ;
+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 printmaker_N : N ;
+fun printmaking_N : N ;
+fun printout_N : N ;
+fun prion_N : N ;
+fun prior_A : A ;
+fun prior_N : N ;
+fun prior_to_Prep : Prep ;
+fun prioress_N : N ;
+fun priority_N : N ;
+fun priorship_N : N ;
+fun priory_N : N ;
+fun prise_V : V ;
+fun prism_N : N ;
+fun prismatic_A : A ;
+fun prismatoid_N : N ;
+fun prismoid_N : N ;
+fun prison_N : N ;
+fun prison_breaking_N : N ;
+fun prisoner_N : N ;
+fun prisonlike_A : A ;
+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 privatisation_N : N ;
+fun privatization_N : N ;
+fun privatize_V : V ;
+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_V : V ;
+fun prize_fight_N : N ;
+fun prize_money_N : N ;
+fun prize_ring_N : N ;
+fun prizefight_N : N ;
+fun prizefighter_N : N ;
+fun pro_A : A ;
+fun pro_Adv : Adv ;
+fun pro_N : N ;
+fun pro_Prep : Prep ;
+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 proaccelerin_N : N ;
+fun proactive_A : A ;
+fun probabilism_N : N ;
+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_V : V ;
+fun probation_N : N ;
+fun probationary_A : A ;
+fun probationer_N : N ;
+fun probative_A : A ;
+fun probe_N : N ;
+fun probe_V : V ;
+fun probenecid_N : N ;
+fun probiotic_N : N ;
+fun probity_N : N ;
+fun problem_N : N ;
+fun problematic_A : A ;
+fun problematically_Adv : Adv ;
+fun proboscidean_N : N ;
+fun proboscis_N : N ;
+fun procaine_N : N ;
+fun procarbazine_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_server_N : N ;
+fun processing_N : N ;
+fun procession_N : N ;
+fun processional_A : A ;
+fun processional_N : N ;
+fun processor_N : N ;
+fun prochlorperazine_N : N ;
+fun proclaim_V : V ;
+fun proclamation_N : N ;
+fun proclivity_N : N ;
+fun proconsul_N : N ;
+fun proconsular_A : A ;
+fun proconsulate_N : N ;
+fun proconsulship_N : N ;
+fun proconvertin_N : N ;
+fun procrastinate_V : V ;
+fun procrastination_N : N ;
+fun procrastinator_N : N ;
+fun procreate_V : V ;
+fun procreation_N : N ;
+fun proctalgia_N : N ;
+fun proctitis_N : N ;
+fun proctologist_N : N ;
+fun proctology_N : N ;
+fun proctoplasty_N : N ;
+fun proctor_N : N ;
+fun proctorship_N : N ;
+fun proctoscope_N : N ;
+fun proctoscopy_N : N ;
+fun procumbent_A : A ;
+fun procurable_A : A ;
+fun procurator_N : N ;
+fun procure_V : V ;
+fun procurement_N : N ;
+fun procurer_N : N ;
+fun procuress_N : N ;
+fun procyclidine_N : N ;
+fun procyonid_N : N ;
+fun prod_N : N ;
+fun prod_V : V ;
+fun prodigal_A : A ;
+fun prodigal_N : N ;
+fun prodigality_N : N ;
+fun prodigious_A : A ;
+fun prodigy_N : N ;
+fun prodromal_A : A ;
+fun prodrome_N : N ;
+fun produce_N : N ;
+fun produce_V : V ;
+fun producer_N : N ;
+fun product_N : N ;
+fun production_N : N ;
+fun productive_A : A ;
+fun productiveness_N : N ;
+fun productivity_N : N ;
+fun proenzyme_N : N ;
+fun profanation_N : N ;
+fun profanatory_A : A ;
+fun profane_A : A ;
+fun profane_V : V ;
+fun profaneness_N : N ;
+fun profanity_N : N ;
+fun profess_V : V ;
+fun professedly_Adv : Adv ;
+fun profession_N : N ;
+fun professional_A : A ;
+fun professional_N : N ;
+fun professionalism_N : N ;
+fun professionalization_N : N ;
+fun professor_N : N ;
+fun professorial_A : A ;
+fun professorship_N : N ;
+fun proffer_N : N ;
+fun proffer_V : V ;
+fun proficiency_N : N ;
+fun proficient_A : A ;
+fun profile_N : N ;
+fun profile_V : V ;
+fun profiling_N : N ;
+fun profit_N : N ;
+fun profit_V : V ;
+fun profit_margin_N : N ;
+fun profit_sharing_N : N ;
+fun profitable_A : A ;
+fun profitableness_N : N ;
+fun profiteer_N : N ;
+fun profiteer_V : V ;
+fun profiterole_N : N ;
+fun profitless_A : A ;
+fun profligacy_N : N ;
+fun profligate_A : A ;
+fun profligate_N : N ;
+fun profound_A : A ;
+fun profoundness_N : N ;
+fun profundity_N : N ;
+fun profuse_A : A ;
+fun profuseness_N : N ;
+fun profusion_N : N ;
+fun progenitor_N : N ;
+fun progeria_N : N ;
+fun progestational_A : A ;
+fun progesterone_N : N ;
+fun progestin_N : N ;
+fun prognathism_N : N ;
+fun prognathous_A : A ;
+fun prognosis_N : N ;
+fun prognostic_A : A ;
+fun prognostic_N : N ;
+fun prognosticate_V : V ;
+fun prognostication_N : N ;
+fun program_N : N ;
+fun program_V : V ;
+fun programma_N : N ;
+fun programme_N : N ;
+fun programme_V : V ;
+fun programmer_N : N ;
+fun programming_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 progressivism_N : N ;
+fun progymnosperm_N : N ;
+fun prohibit_prohibited_V : V ;
+fun prohibit_prohibitted_V : V ;
+fun prohibition_N : N ;
+fun prohibitionist_N : N ;
+fun prohibitive_A : A ;
+fun prohibitory_A : A ;
+fun proinflammatory_A : A ;
+fun project_N : N ;
+fun project_V : V ;
+fun projectile_A : A ;
+fun projectile_N : N ;
+fun projection_N : N ;
+fun projectionist_N : N ;
+fun projector_N : N ;
+fun prokaryote_N : N ;
+fun prokaryotic_A : A ;
+fun prolactin_N : N ;
+fun prolamine_N : N ;
+fun prolapse_N : N ;
+fun prolapse_V : V ;
+fun prolate_A : A ;
+fun prole_N : N ;
+fun prolegomenon_N : N ;
+fun prolepsis_N : N ;
+fun proletarian_A : A ;
+fun proletarian_N : N ;
+fun proletariat_N : N ;
+fun proliferate_V : V ;
+fun proliferation_N : N ;
+fun prolific_A : A ;
+fun proline_N : N ;
+fun prolix_A : A ;
+fun prolixity_N : N ;
+fun prologue_N : N ;
+fun prolong_V : V ;
+fun prolongation_N : N ;
+fun prolonge_N : N ;
+fun prolusory_A : A ;
+fun prom_N : N ;
+fun promenade_N : N ;
+fun promenade_V : V ;
+fun promethazine_N : N ;
+fun promethium_N : N ;
+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 promisee_N : N ;
+fun promiser_N : N ;
+fun promisingly_Adv : Adv ;
+fun promissory_A : A ;
+fun promontory_N : N ;
+fun promote_V : V ;
+fun promoter_N : N ;
+fun promotion_N : N ;
+fun promotional_A : A ;
+fun promotive_A : A ;
+fun prompt_A : A ;
+fun prompt_N : N ;
+fun prompt_V : V ;
+fun prompt_box_N : N ;
+fun prompt_copy_N : N ;
+fun promptbook_N : N ;
+fun prompter_N : N ;
+fun prompting_N : N ;
+fun promptitude_N : N ;
+fun promptness_N : N ;
+fun promulgate_V : V ;
+fun promulgation_N : N ;
+fun promulgator_N : N ;
+fun promycelium_N : N ;
+fun pronation_N : N ;
+fun pronator_N : N ;
+fun prone_A : A ;
+fun proneness_N : N ;
+fun prong_N : N ;
+fun pronged_A : A ;
+fun pronghorn_N : N ;
+fun pronominal_A : A ;
+fun pronoun_N : N ;
+fun pronounce_V : V ;
+fun pronounceable_A : A ;
+fun pronounced_A : A ;
+fun pronouncement_N : N ;
+fun pronto_Adv : Adv ;
+fun pronucleus_N : N ;
+fun pronunciamento_N : N ;
+fun pronunciation_N : N ;
+fun proof_A : A ;
+fun proof_N : N ;
+fun proof_V : V ;
+fun proofread_V : V ;
+fun proofreader_N : N ;
+fun prop_N : N ;
+fun prop_V : V ;
+fun propaedeutic_N : N ;
+fun propaganda_N : N ;
+fun propagandist_A : A ;
+fun propagandist_N : N ;
+fun propagandize_V : V ;
+fun propagate_V : V ;
+fun propagation_N : N ;
+fun propagative_A : A ;
+fun propagator_N : N ;
+fun propanal_N : N ;
+fun propane_N : N ;
+fun propanol_N : N ;
+fun propanolol_N : N ;
+fun proparoxytone_N : N ;
+fun propel_V : V ;
+fun propellant_A : A ;
+fun propellant_N : N ;
+fun propellent_A : A ;
+fun propellent_N : N ;
+fun propeller_N : N ;
+fun propenal_N : N ;
+fun propenoate_N : N ;
+fun propenonitrile_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 propertyless_A : A ;
+fun prophase_N : N ;
+fun prophecy_N : N ;
+fun prophesy_V : V ;
+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 prophyll_N : N ;
+fun propinquity_N : N ;
+fun propitiate_V : V ;
+fun propitiation_N : N ;
+fun propitiative_A : A ;
+fun propitiatory_A : A ;
+fun propitious_A : A ;
+fun propjet_N : N ;
+fun proponent_N : N ;
+fun proportion_N : N ;
+fun proportion_V : V ;
+fun proportionable_A : A ;
+fun proportional_A : A ;
+fun proportional_N : N ;
+fun proportionality_N : N ;
+fun proportionate_A : A ;
+fun proposal_N : N ;
+fun propose_V : V ;
+fun proposer_N : N ;
+fun proposition_N : N ;
+fun proposition_V : V ;
+fun propositus_N : N ;
+fun propound_V : V ;
+fun propoxyphene_N : N ;
+fun proprietary_A : A ;
+fun proprietor_N : N ;
+fun proprietorship_N : N ;
+fun proprietress_N : N ;
+fun propriety_N : N ;
+fun proprioception_N : N ;
+fun proprioceptive_A : A ;
+fun proprioceptor_N : N ;
+fun proprionamide_N : N ;
+fun props_N : N ;
+fun propulsion_N : N ;
+fun propulsive_A : A ;
+fun propyl_N : N ;
+fun propylene_N : N ;
+fun propylthiouracil_N : N ;
+fun proration_N : N ;
+fun prorogation_N : N ;
+fun prorogue_V : V ;
+fun prosaic_A : A ;
+fun prosaically_Adv : Adv ;
+fun proscenium_N : N ;
+fun prosciutto_N : N ;
+fun proscribe_V : V ;
+fun proscription_N : N ;
+fun prose_N : N ;
+fun prosecute_V : V ;
+fun prosecution_N : N ;
+fun prosecutor_N : N ;
+fun proselyte_N : N ;
+fun proselytism_N : N ;
+fun proselytize_V : V ;
+fun prosimian_N : N ;
+fun prosiness_N : N ;
+fun prosodic_A : A ;
+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 prosperity_N : N ;
+fun prosperous_A : A ;
+fun prostaglandin_N : N ;
+fun prostate_A : A ;
+fun prostate_N : N ;
+fun prostatectomy_N : N ;
+fun prostatitis_N : N ;
+fun prosthesis_N : N ;
+fun prosthetic_A : A ;
+fun prosthetics_N : N ;
+fun prosthetist_N : N ;
+fun prosthion_N : N ;
+fun prosthodontic_A : A ;
+fun prosthodontics_N : N ;
+fun prosthodontist_N : N ;
+fun prostitute_N : N ;
+fun prostitute_V : V ;
+fun prostitution_N : N ;
+fun prostrate_A : A ;
+fun prostrate_V : V ;
+fun prostration_N : N ;
+fun prostyle_A : A ;
+fun prosy_A : A ;
+fun protactinium_N : N ;
+fun protagonist_N : N ;
+fun protamine_N : N ;
+fun protanopia_N : N ;
+fun protanopic_A : A ;
+fun protea_N : N ;
+fun protean_A : A ;
+fun protease_N : N ;
+fun protect_V : V ;
+fun protection_N : N ;
+fun protectionism_N : N ;
+fun protectionist_N : N ;
+fun protective_A : A ;
+fun protectiveness_N : N ;
+fun protector_N : N ;
+fun protectorate_N : N ;
+fun protectorship_N : N ;
+fun protein_N : N ;
+fun proteinaceous_A : A ;
+fun proteolysis_N : N ;
+fun proteolytic_A : A ;
+fun proteome_N : N ;
+fun proteomics_N : N ;
+fun proterozoic_A : A ;
+fun protest_N : N ;
+fun protest_V : V ;
+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 prothalamion_N : N ;
+fun prothorax_N : N ;
+fun prothrombin_N : N ;
+fun prothrombinase_N : N ;
+fun protist_N : N ;
+fun protoarcheology_N : N ;
+fun protoavis_N : N ;
+fun protoceratops_N : N ;
+fun protocol_N : N ;
+fun protoctist_N : N ;
+fun protogeometric_A : A ;
+fun protohippus_N : N ;
+fun protohistory_N : N ;
+fun protology_N : N ;
+fun proton_N : N ;
+fun protoplasm_N : N ;
+fun prototherian_N : N ;
+fun prototype_N : N ;
+fun protozoal_A : A ;
+fun protozoan_N : N ;
+fun protozoological_A : A ;
+fun protozoologist_N : N ;
+fun protozoology_N : N ;
+fun protract_V : V ;
+fun protractile_A : A ;
+fun protraction_N : N ;
+fun protractor_N : N ;
+fun protriptyline_N : N ;
+fun protrude_V : V ;
+fun protrusile_A : A ;
+fun protrusion_N : N ;
+fun protrusive_A : A ;
+fun protuberance_N : N ;
+fun protuberant_A : A ;
+fun proturan_N : N ;
+fun protégé_N : N ;
+fun protégée_N : N ;
+fun proud_A : A ;
+fun provable_A : A ;
+fun prove_V : V ;
+fun provenance_N : N ;
+fun provencal_A : A ;
+fun provender_N : N ;
+fun proverb_N : N ;
+fun proverbial_A : A ;
+fun provide_V : V ;
+fun providence_N : N ;
+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 provirus_N : N ;
+fun provision_N : N ;
+fun provision_V : V ;
+fun provisional_A : A ;
+fun proviso_N : N ;
+fun provisory_A : A ;
+fun provitamin_N : N ;
+fun provocation_N : N ;
+fun provocative_A : A ;
+fun provoke_V : V ;
+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 prowler_N : N ;
+fun prox_Adv : Adv ;
+fun proxemics_N : N ;
+fun proximal_A : A ;
+fun proximate_A : A ;
+fun proximity_N : N ;
+fun proximo_A : A ;
+fun proxy_N : N ;
+fun prude_N : N ;
+fun prudence_N : N ;
+fun prudent_A : A ;
+fun prudential_A : A ;
+fun prudery_N : N ;
+fun prudish_A : A ;
+fun prune_N : N ;
+fun prune_V : V ;
+fun pruner_N : N ;
+fun pruning_N : N ;
+fun pruning_hook_N : N ;
+fun pruning_knife_N : N ;
+fun pruning_saw_N : N ;
+fun pruno_N : N ;
+fun prurience_N : N ;
+fun pruriency_N : N ;
+fun prurient_A : A ;
+fun prurigo_N : N ;
+fun pruritus_N : N ;
+fun prussic_A : A ;
+fun pry_V : V ;
+fun pryingly_Adv : Adv ;
+fun précis_N : N ;
+fun précis_V : V ;
+fun psalm_N : N ;
+fun psalmist_N : N ;
+fun psalmody_N : N ;
+fun psalter_N : N ;
+fun psalterium_N : N ;
+fun psaltery_N : N ;
+fun psammoma_N : N ;
+fun psephologist_N : N ;
+fun psephology_N : N ;
+fun pseud_N : N ;
+fun pseudo_A : A ;
+fun pseudo_N : N ;
+fun pseudobulb_N : N ;
+fun pseudoephedrine_N : N ;
+fun pseudohallucination_N : N ;
+fun pseudohermaphrodite_N : N ;
+fun pseudohermaphroditic_A : A ;
+fun pseudohermaphroditism_N : N ;
+fun pseudomonad_N : N ;
+fun pseudonym_N : N ;
+fun pseudonymous_A : A ;
+fun pseudophloem_N : N ;
+fun pseudopod_N : N ;
+fun pseudoscience_N : N ;
+fun pseudoscientific_A : A ;
+fun psi_N : N ;
+fun psilocybin_N : N ;
+fun psilomelane_N : N ;
+fun psilophyte_N : N ;
+fun psilophyton_N : N ;
+fun psilosis_N : N ;
+fun psittacosaur_N : N ;
+fun psittacosis_N : N ;
+fun psoas_N : N ;
+fun psocid_N : N ;
+fun psoriasis_N : N ;
+fun psych_V : V ;
+fun psyche_N : N ;
+fun psychedelia_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 psychoactive_A : A ;
+fun psychoanalyse_V : V ;
+fun psychoanalysis_N : N ;
+fun psychoanalyst_N : N ;
+fun psychoanalytic_A : A ;
+fun psychoanalytical_A : A ;
+fun psychoanalyze_V : V ;
+fun psychobabble_N : N ;
+fun psychodid_N : N ;
+fun psychodynamics_N : N ;
+fun psychogenesis_N : N ;
+fun psychogenetic_A : A ;
+fun psychogenic_A : A ;
+fun psychokinetic_A : A ;
+fun psycholinguist_N : N ;
+fun psycholinguistic_A : A ;
+fun psycholinguistics_N : N ;
+fun psychological_A : A ;
+fun psychologist_N : N ;
+fun psychology_N : N ;
+fun psychometric_A : A ;
+fun psychometry_N : N ;
+fun psychomotor_A : A ;
+fun psychopath_N : N ;
+fun psychopathic_A : A ;
+fun psychopharmacological_A : A ;
+fun psychopharmacology_N : N ;
+fun psychophysicist_N : N ;
+fun psychophysics_N : N ;
+fun psychopomp_N : N ;
+fun psychosexual_A : A ;
+fun psychosexuality_N : N ;
+fun psychosis_N : N ;
+fun psychosomatic_A : A ;
+fun psychosurgery_N : N ;
+fun psychotherapeutic_A : A ;
+fun psychotherapist_N : N ;
+fun psychotherapy_N : N ;
+fun psychotic_A : A ;
+fun psychotic_N : N ;
+fun psychrometer_N : N ;
+fun pt_N : N ;
+fun pta_N : N ;
+fun ptarmigan_N : N ;
+fun pteridological_A : A ;
+fun pteridologist_N : N ;
+fun pteridology_N : N ;
+fun pteridophyte_N : N ;
+fun pterion_N : N ;
+fun pterodactyl_N : N ;
+fun pteropogon_N : N ;
+fun pterosaur_N : N ;
+fun pterygium_N : N ;
+fun ptomaine_N : N ;
+fun ptosis_N : N ;
+fun ptyalin_N : N ;
+fun ptyalism_N : N ;
+fun ptyalith_N : N ;
+fun pub_N : N ;
+fun pub_crawl_N : N ;
+fun pub_crawl_V : V ;
+fun pubertal_A : A ;
+fun puberty_N : N ;
+fun pubes_N : N ;
+fun pubescent_A : A ;
+fun pubic_A : A ;
+fun pubis_N : N ;
+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_V : V ;
+fun publish_V : V ;
+fun publishable_A : A ;
+fun publisher_N : N ;
+fun publishing_A : A ;
+fun puccoon_N : N ;
+fun puce_N : N ;
+fun puck_N : N ;
+fun pucker_N : N ;
+fun pucker_V : V ;
+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 puddingwife_N : N ;
+fun puddle_N : N ;
+fun puddle_V : V ;
+fun puddler_N : N ;
+fun pudendal_A : A ;
+fun pudendum_N : N ;
+fun pudge_N : N ;
+fun pudgy_A : A ;
+fun pueblo_N : N ;
+fun puerile_A : A ;
+fun puerility_N : N ;
+fun puerpera_N : N ;
+fun puerperal_A : A ;
+fun puerperium_N : N ;
+fun puff_A : A ;
+fun puff_N : N ;
+fun puff_V : V ;
+fun puffball_N : N ;
+fun puffbird_N : N ;
+fun puffer_N : N ;
+fun puffery_N : N ;
+fun puffin_N : N ;
+fun puffiness_N : N ;
+fun puffing_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 puka_N : N ;
+fun puke_N : N ;
+fun puke_V : V ;
+fun pukka_A : A ;
+fun puku_N : N ;
+fun pul_N : N ;
+fun pula_N : N ;
+fun pulasan_N : N ;
+fun pulchritude_N : N ;
+fun pulchritudinous_A : A ;
+fun pule_V : V ;
+fun pull_N : N ;
+fun pull_V : V ;
+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 pullback_N : N ;
+fun puller_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 pullulation_N : N ;
+fun pulmonary_A : A ;
+fun pulp_N : N ;
+fun pulp_V : V ;
+fun pulpit_N : N ;
+fun pulpwood_N : N ;
+fun pulpy_A : A ;
+fun pulque_N : N ;
+fun pulsar_N : N ;
+fun pulsate_V : V ;
+fun pulsation_N : N ;
+fun pulse_N : N ;
+fun pulse_V : V ;
+fun pulverization_N : N ;
+fun pulverize_V : V ;
+fun puma_N : N ;
+fun pumice_N : N ;
+fun pumice_stone_N : N ;
+fun pummel_V : V ;
+fun pump_N : N ;
+fun pump_V : V ;
+fun pump_room_N : N ;
+fun pumpernickel_N : N ;
+fun pumpkin_N : N ;
+fun pumpkinseed_N : N ;
+fun pun_N : N ;
+fun pun_V : V ;
+fun punch_N : N ;
+fun punch_V : V ;
+fun punch_drunk_A : A ;
+fun punch_up_N : N ;
+fun punchball_N : N ;
+fun punchboard_N : N ;
+fun punchbowl_N : N ;
+fun puncher_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_V : V ;
+fun punctuation_N : N ;
+fun punctum_N : N ;
+fun puncturable_A : A ;
+fun puncture_N : N ;
+fun puncture_V : V ;
+fun punctureless_A : A ;
+fun pundit_N : N ;
+fun pung_N : N ;
+fun pungapung_N : N ;
+fun pungency_N : N ;
+fun pungent_A : A ;
+fun punic_A : A ;
+fun puniness_N : N ;
+fun punish_V : V ;
+fun punishable_A : A ;
+fun punishing_A : A ;
+fun punishment_N : N ;
+fun punitive_A : A ;
+fun punk_N : N ;
+fun punkah_N : N ;
+fun punkie_N : N ;
+fun punks_N : N ;
+fun punnet_N : N ;
+fun punster_N : N ;
+fun punt_N : N ;
+fun punt_V : V ;
+fun punter_N : N ;
+fun puny_A : A ;
+fun pup_N : N ;
+fun pupa_N : N ;
+fun pupal_A : A ;
+fun pupil_N : N ;
+fun pupillary_A : A ;
+fun puppet_N : N ;
+fun puppeteer_N : N ;
+fun puppetry_N : N ;
+fun puppy_N : N ;
+fun puppyish_A : A ;
+fun purblind_A : A ;
+fun purchasable_A : A ;
+fun purchase_N : N ;
+fun purchase_V : V ;
+fun purchaser_N : N ;
+fun purdah_N : N ;
+fun pure_A : A ;
+fun purebred_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_V : V ;
+fun purification_N : N ;
+fun purifier_N : N ;
+fun purify_V : V ;
+fun purifying_A : A ;
+fun purine_N : N ;
+fun purism_N : N ;
+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 purloin_V : V ;
+fun purloo_N : N ;
+fun purple_A : A ;
+fun purple_N : N ;
+fun purplish_A : A ;
+fun purport_N : N ;
+fun purport_V : V ;
+fun purportedly_Adv : Adv ;
+fun purpose_N : N ;
+fun purpose_V : V ;
+fun purpose_built_A : A ;
+fun purposeful_A : A ;
+fun purposefulness_N : N ;
+fun purposeless_A : A ;
+fun purposelessness_N : N ;
+fun purposely_Adv : Adv ;
+fun purposive_A : A ;
+fun purpura_N : N ;
+fun purr_N : N ;
+fun purr_V : V ;
+fun purse_N : N ;
+fun purse_V : V ;
+fun purse_proud_A : A ;
+fun purser_N : N ;
+fun purslane_N : N ;
+fun pursuance_N : N ;
+fun pursuant_A : A ;
+fun pursuant_to_Prep : Prep ;
+fun pursue_V : V ;
+fun pursued_N : N ;
+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 purveyance_N : N ;
+fun purveyor_N : N ;
+fun purview_N : N ;
+fun purée_N : N ;
+fun pus_N : N ;
+fun push_N : N ;
+fun push_V : V ;
+fun push_bike_N : N ;
+fun pushball_N : N ;
+fun pushcart_N : N ;
+fun pushchair_N : N ;
+fun pusher_N : N ;
+fun pushful_A : A ;
+fun pushover_N : N ;
+fun pushup_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_down_N : N ;
+fun put_on_N : N ;
+fun putamen_N : N ;
+fun putative_A : A ;
+fun putdownable_A : A ;
+fun putoff_N : N ;
+fun putout_N : N ;
+fun putrefaction_N : N ;
+fun putrefactive_A : A ;
+fun putrefy_V : V ;
+fun putrescence_N : N ;
+fun putrescent_A : A ;
+fun putrescine_N : N ;
+fun putrid_A : A ;
+fun putridity_N : N ;
+fun putsch_N : N ;
+fun putt_N : N ;
+fun putt_V : V ;
+fun puttee_N : N ;
+fun putter_N : N ;
+fun putter_V : V ;
+fun putterer_N : N ;
+fun putting_green_N : N ;
+fun putting_iron_N : N ;
+fun putty_N : N ;
+fun putty_V : V ;
+fun puttyroot_N : N ;
+fun putz_N : N ;
+fun puzzle_N : N ;
+fun puzzle_V : V ;
+fun puzzlement_N : N ;
+fun puzzler_N : N ;
+fun pya_N : N ;
+fun pycnidium_N : N ;
+fun pycnodysostosis_N : N ;
+fun pycnosis_N : N ;
+fun pyelitis_N : N ;
+fun pyelogram_N : N ;
+fun pyelography_N : N ;
+fun pyelonephritis_N : N ;
+fun pyemia_N : N ;
+fun pyemic_A : A ;
+fun pygmy_N : N ;
+fun pyinma_N : N ;
+fun pyjama_A : A ;
+fun pyknotic_A : A ;
+fun pylon_N : N ;
+fun pyloric_A : A ;
+fun pylorus_N : N ;
+fun pyocyanase_N : N ;
+fun pyocyanin_N : N ;
+fun pyogenic_A : A ;
+fun pyorrhea_N : N ;
+fun pyorrhoea_N : N ;
+fun pyralid_N : N ;
+fun pyramid_N : N ;
+fun pyramidal_A : A ;
+fun pyramidically_Adv : Adv ;
+fun pyramiding_N : N ;
+fun pyre_N : N ;
+fun pyrectic_A : A ;
+fun pyrene_N : N ;
+fun pyrethrum_N : N ;
+fun pyretic_A : A ;
+fun pyridine_N : N ;
+fun pyrilamine_N : N ;
+fun pyrimidine_N : N ;
+fun pyrite_N : N ;
+fun pyrites_N : N ;
+fun pyrocellulose_N : N ;
+fun pyrochemical_A : A ;
+fun pyroelectric_A : A ;
+fun pyroelectricity_N : N ;
+fun pyrogallic_A : A ;
+fun pyrogallol_N : N ;
+fun pyrogen_N : N ;
+fun pyrogenic_A : A ;
+fun pyrograph_N : N ;
+fun pyrographer_N : N ;
+fun pyrographic_A : A ;
+fun pyrography_N : N ;
+fun pyrolatry_N : N ;
+fun pyroligneous_A : A ;
+fun pyrolusite_N : N ;
+fun pyrolysis_N : N ;
+fun pyrolytic_A : A ;
+fun pyromancer_N : N ;
+fun pyromancy_N : N ;
+fun pyromania_N : N ;
+fun pyromaniac_N : N ;
+fun pyrometer_N : N ;
+fun pyromorphite_N : N ;
+fun pyrope_N : N ;
+fun pyrophobia_N : N ;
+fun pyrophosphate_N : N ;
+fun pyrophyllite_N : N ;
+fun pyrostat_N : N ;
+fun pyrotechnic_A : A ;
+fun pyrotechnics_N : N ;
+fun pyroxene_N : N ;
+fun pyroxylin_N : N ;
+fun pyrrhic_A : A ;
+fun pyrrhic_N : N ;
+fun pyrrhotite_N : N ;
+fun pyrrhuloxia_N : N ;
+fun pythium_N : N ;
+fun python_N : N ;
+fun pythoness_N : N ;
+fun pyuria_N : N ;
+fun pyx_N : N ;
+fun pyxidium_N : N ;
+fun pyxie_N : N ;
+fun pyxis_N : N ;
+fun pâté_N : N ;
+fun qadi_N : N ;
+fun qatari_A : A ;
+fun qatari_N : N ;
+fun qc_N : N ;
+fun qepiq_N : N ;
+fun qi_N : N ;
+fun qibla_N : N ;
+fun qindarka_N : N ;
+fun qoph_N : N ;
+fun qt_N : N ;
+fun qua_Prep : Prep ;
+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 quadrantanopia_N : N ;
+fun quadraphonic_A : A ;
+fun quadraphony_N : N ;
+fun quadrate_A : A ;
+fun quadrate_N : N ;
+fun quadratic_A : A ;
+fun quadratic_N : N ;
+fun quadratics_N : N ;
+fun quadrature_N : N ;
+fun quadrennium_N : N ;
+fun quadric_N : N ;
+fun quadriceps_N : N ;
+fun quadrilateral_A : A ;
+fun quadrilateral_N : N ;
+fun quadrille_N : N ;
+fun quadrillion_N : N ;
+fun quadrillionth_A : A ;
+fun quadripara_N : N ;
+fun quadripartite_A : A ;
+fun quadriplegia_N : N ;
+fun quadriplegic_N : N ;
+fun quadrivium_N : N ;
+fun quadroon_N : N ;
+fun quadrophonic_A : A ;
+fun quadrophony_N : N ;
+fun quadrumvirate_N : N ;
+fun quadruped_N : N ;
+fun quadrupedal_A : A ;
+fun quadruple_A : A ;
+fun quadruple_N : N ;
+fun quadruple_V : V ;
+fun quadruplet_N : N ;
+fun quadruplicate_A : A ;
+fun quadruplicate_N : N ;
+fun quadruplicate_V : V ;
+fun quadrupling_N : N ;
+fun quaestor_N : N ;
+fun quaff_N : N ;
+fun quaff_V : V ;
+fun quaffer_N : N ;
+fun quagga_N : N ;
+fun quagmire_N : N ;
+fun quahaug_N : N ;
+fun quahog_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 qualifier_N : N ;
+fun qualify_V : V ;
+fun qualitative_A : A ;
+fun quality_A : A ;
+fun quality_N : N ;
+fun qualm_N : N ;
+fun quandary_N : N ;
+fun quandong_N : N ;
+fun quango_N : N ;
+fun quantal_A : A ;
+fun quantic_N : N ;
+fun quantifiability_N : N ;
+fun quantifiable_A : A ;
+fun quantification_N : N ;
+fun quantifier_N : N ;
+fun quantify_V : V ;
+fun quantitative_A : A ;
+fun quantity_N : N ;
+fun quantization_N : N ;
+fun quantum_N : N ;
+fun quarantine_N : N ;
+fun quarantine_V : V ;
+fun quark_N : N ;
+fun quarrel_N : N ;
+fun quarrel_quarreled_V : V ;
+fun quarrel_quarrelled_V : V ;
+fun quarreler_N : N ;
+fun quarrelsome_A : A ;
+fun quarrelsomeness_N : N ;
+fun quarry_N : N ;
+fun quarry_V : V ;
+fun quarrying_N : N ;
+fun quarryman_N : N ;
+fun quart_N : N ;
+fun quartan_A : A ;
+fun quartan_N : N ;
+fun quarter_N : N ;
+fun quarter_V : V ;
+fun quarter_day_N : N ;
+fun quarter_deck_N : N ;
+fun quarter_plate_N : N ;
+fun quarterback_N : N ;
+fun quarterdeck_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 quartile_N : N ;
+fun quarto_N : N ;
+fun quartz_N : N ;
+fun quartzite_N : N ;
+fun quartzose_A : A ;
+fun quasar_N : N ;
+fun quash_V : V ;
+fun quasiparticle_N : N ;
+fun quassia_N : N ;
+fun quatercentenary_N : N ;
+fun quatercentennial_N : N ;
+fun quaternate_A : A ;
+fun quatrain_N : N ;
+fun quattrocento_N : N ;
+fun quaver_N : N ;
+fun quaver_V : V ;
+fun quaveringly_Adv : Adv ;
+fun quay_N : N ;
+fun queasiness_N : N ;
+fun queasy_A : A ;
+fun queen_N : N ;
+fun queen_V : V ;
+fun queenly_A : A ;
+fun queer_A : A ;
+fun queer_N : N ;
+fun queer_V : V ;
+fun queerness_N : N ;
+fun quell_V : V ;
+fun quellung_N : N ;
+fun quench_V : V ;
+fun quenchless_A : A ;
+fun quercitron_N : N ;
+fun quern_N : N ;
+fun querulous_A : A ;
+fun querulousness_N : N ;
+fun query_N : N ;
+fun query_V : V ;
+fun quesadilla_N : N ;
+fun quest_N : N ;
+fun quest_V : V ;
+fun question_N : N ;
+fun question_V : V ;
+fun question_mark_N : N ;
+fun question_master_N : N ;
+fun questionable_A : A ;
+fun questioner_N : N ;
+fun questioning_A : A ;
+fun questioning_N : N ;
+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 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_V : V ;
+fun quick_sighted_A : A ;
+fun quick_tempered_A : A ;
+fun quick_witted_A : A ;
+fun quicken_V : V ;
+fun quickener_N : N ;
+fun quickening_N : N ;
+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 quickset_N : N ;
+fun quicksilver_N : N ;
+fun quickstep_N : N ;
+fun quid_N : N ;
+fun quid_pro_quo_N : N ;
+fun quiddity_N : N ;
+fun quiescence_N : N ;
+fun quiescent_A : A ;
+fun quiet_A : A ;
+fun quiet_N : N ;
+fun quiet_quieted_V : V ;
+fun quiet_quietted_V : V ;
+fun quieten_quietened_V : V ;
+fun quieten_quietenned_V : V ;
+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 quillwort_N : N ;
+fun quilt_N : N ;
+fun quilt_V : V ;
+fun quilting_N : N ;
+fun quin_N : N ;
+fun quinacrine_N : N ;
+fun quince_N : N ;
+fun quincentenary_A : A ;
+fun quincentenary_N : N ;
+fun quincentennial_A : A ;
+fun quincentennial_N : N ;
+fun quinidine_N : N ;
+fun quinine_N : N ;
+fun quinone_N : N ;
+fun quinquagesima_N : N ;
+fun quinquefoliate_A : A ;
+fun quinquennium_N : N ;
+fun quinsy_N : N ;
+fun quintal_N : N ;
+fun quintessence_N : N ;
+fun quintessential_A : A ;
+fun quintet_N : N ;
+fun quintillion_N : N ;
+fun quintillionth_A : A ;
+fun quintipara_N : N ;
+fun quintuple_A : A ;
+fun quintuplet_N : N ;
+fun quintupling_N : N ;
+fun quip_N : N ;
+fun quip_V : V ;
+fun quipu_N : N ;
+fun quira_N : N ;
+fun quire_N : N ;
+fun quirk_N : N ;
+fun quirt_N : N ;
+fun quisling_N : N ;
+fun quit_quit_V : V ;
+fun quit_quitted_V : V ;
+fun quitclaim_N : N ;
+fun quite_Adv : Adv ;
+fun quits_A : A ;
+fun quittance_N : N ;
+fun quitter_N : N ;
+fun quiver_N : N ;
+fun quiver_V : V ;
+fun quixotic_A : A ;
+fun quixotically_Adv : Adv ;
+fun quiz_N : N ;
fun quiz_V : V ;
-fun blitz_V : V ;
-fun waltz_V : V ;
-fun jazz_V : V ;
-fun fizz_V : V ;
-fun frizz_V : V ;
-fun buzz_V : V ;
+fun quizmaster_N : N ;
+fun quizzical_A : A ;
+fun quodlibet_N : N ;
+fun quoin_N : N ;
+fun quoit_N : N ;
+fun quoits_N : N ;
+fun quonset_N : N ;
+fun quorum_N : N ;
+fun quot_V : V ;
+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 quoter_N : N ;
+fun quotidian_A : A ;
+fun quotient_N : N ;
+fun qurush_N : N ;
+fun ra_N : N ;
+fun rabato_N : N ;
+fun rabbet_N : N ;
+fun rabbi_N : N ;
+fun rabbinate_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 rabbitfish_N : N ;
+fun rabbitweed_N : N ;
+fun rabbitwood_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_meeting_N : N ;
+fun raceabout_N : N ;
+fun racecard_N : N ;
+fun racecourse_N : N ;
+fun racehorse_N : N ;
+fun raceme_N : N ;
+fun racemose_A : A ;
+fun racer_N : N ;
+fun racerunner_N : N ;
+fun racetrack_N : N ;
+fun raceway_N : N ;
+fun rachis_N : N ;
+fun rachitis_N : N ;
+fun racial_A : A ;
+fun racialism_N : N ;
+fun racialist_N : N ;
+fun raciness_N : N ;
+fun racing_N : N ;
+fun racism_N : N ;
+fun racist_A : A ;
+fun racist_N : N ;
+fun rack_N : N ;
+fun rack_V : V ;
+fun rack_railway_N : N ;
+fun rack_rent_N : N ;
+fun racker_N : N ;
+fun racket_N : N ;
+fun racket_V : V ;
+fun racketeer_N : N ;
+fun racketeering_N : N ;
+fun rackety_A : A ;
+fun raconteur_N : N ;
+fun racoon_N : N ;
+fun racquet_N : N ;
+fun racquetball_N : N ;
+fun racy_A : A ;
+fun rad_N : N ;
+fun radar_N : N ;
+fun raddled_A : A ;
+fun radial_A : A ;
+fun radial_N : N ;
+fun radian_N : N ;
+fun radiance_N : N ;
+fun radiant_A : A ;
+fun radiate_A : A ;
+fun radiate_V : V ;
+fun radiation_N : N ;
+fun radiator_N : N ;
+fun radical_A : A ;
+fun radical_N : N ;
+fun radicalism_N : N ;
+fun radicchio_N : N ;
+fun radicle_N : N ;
+fun radiculitis_N : N ;
+fun radio_A : A ;
+fun radio_N : N ;
+fun radio_V : V ;
+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 radiobiologist_N : N ;
+fun radiobiology_N : N ;
+fun radiocarbon_N : N ;
+fun radiochemistry_N : N ;
+fun radiochlorine_N : N ;
+fun radiogram_N : N ;
+fun radiograph_N : N ;
+fun radiographer_N : N ;
+fun radiographic_A : A ;
+fun radiography_N : N ;
+fun radioimmunoassay_N : N ;
+fun radioisotope_N : N ;
+fun radiolarian_N : N ;
+fun radiological_A : A ;
+fun radiologist_N : N ;
+fun radiology_N : N ;
+fun radiolucent_A : A ;
+fun radiolysis_N : N ;
+fun radiometer_N : N ;
+fun radiomicrometer_N : N ;
+fun radiopacity_N : N ;
+fun radiopaque_A : A ;
+fun radiopharmaceutical_N : N ;
+fun radiophotograph_N : N ;
+fun radiophotography_N : N ;
+fun radioprotection_N : N ;
+fun radioscopy_N : N ;
+fun radiosensitive_A : A ;
+fun radiotelegraph_N : N ;
+fun radiotelephone_N : N ;
+fun radiotelephonic_A : A ;
+fun radiotherapist_N : N ;
+fun radiotherapy_N : N ;
+fun radish_N : N ;
+fun radium_N : N ;
+fun radius_N : N ;
+fun radome_N : N ;
+fun radon_N : N ;
+fun raf_N : N ;
+fun raffia_N : N ;
+fun raffinose_N : N ;
+fun raffish_A : A ;
+fun raffle_N : N ;
+fun raffle_V : V ;
+fun raft_N : N ;
+fun raft_V : V ;
+fun rafter_N : N ;
+fun raftered_A : A ;
+fun raftsman_N : N ;
+fun rag_N : N ;
+fun rag_V : V ;
+fun rag_day_N : N ;
+fun ragamuffin_N : N ;
+fun ragbag_N : N ;
+fun rage_N : N ;
+fun rage_V : V ;
+fun raggedly_Adv : Adv ;
+fun raggedness_N : N ;
+fun raglan_N : N ;
+fun ragout_N : N ;
+fun ragpicker_N : N ;
+fun ragsorter_N : N ;
+fun ragtag_N : N ;
+fun ragtime_N : N ;
+fun ragweed_N : N ;
+fun ragwort_N : N ;
+fun raid_N : N ;
+fun raid_V : V ;
+fun raider_N : N ;
+fun rail_N : N ;
+fun rail_V : V ;
+fun railbird_N : N ;
+fun railcar_N : N ;
+fun railhead_N : N ;
+fun railing_N : N ;
+fun raillery_N : N ;
+fun railroad_N : N ;
+fun railroad_V : V ;
+fun railway_N : N ;
+fun railwayman_N : N ;
+fun raiment_N : N ;
+fun rain_N : N ;
+fun rain_V : V ;
+fun rain_gauge_N : N ;
+fun rainbow_N : N ;
+fun raincoat_N : N ;
+fun raindrop_N : N ;
+fun rainfall_N : N ;
+fun rainless_A : A ;
+fun rainmaker_N : N ;
+fun rainmaking_N : N ;
+fun rainproof_A : A ;
+fun rainstorm_N : N ;
+fun rainwater_N : N ;
+fun rainy_A : A ;
+fun raisable_A : A ;
+fun raise_N : N ;
+fun raise_V : V ;
+fun raiser_N : N ;
+fun raisin_N : N ;
+fun raising_A : A ;
+fun raising_N : N ;
+fun raison_d'être_N : N ;
+fun raita_N : N ;
+fun raj_N : N ;
+fun raja_N : N ;
+fun rajah_N : N ;
+fun rajanya_N : N ;
+fun rake_N : N ;
+fun rake_V : V ;
+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 rallying_N : N ;
+fun ram_N : N ;
+fun ram_V : V ;
+fun ramadan_N : N ;
+fun ramble_N : N ;
+fun ramble_V : V ;
+fun rambler_N : N ;
+fun rambunctious_A : A ;
+fun rambutan_N : N ;
+fun ramekin_N : N ;
+fun ramie_N : N ;
+fun ramification_N : N ;
+fun ramify_V : V ;
+fun ramipril_N : N ;
+fun ramjet_N : N ;
+fun rammer_N : N ;
+fun ramp_N : N ;
+fun ramp_V : V ;
+fun rampage_N : N ;
+fun rampage_V : V ;
+fun rampageous_A : A ;
+fun rampant_A : A ;
+fun rampart_N : N ;
+fun rampion_N : N ;
+fun ramrod_N : N ;
+fun ramshackle_A : A ;
+fun ramus_N : N ;
+fun ranch_N : N ;
+fun rancher_N : N ;
+fun ranching_N : N ;
+fun rancid_A : A ;
+fun rancidity_N : N ;
+fun rancidness_N : N ;
+fun rancor_N : N ;
+fun rancorous_A : A ;
+fun rancour_N : N ;
+fun rand_N : N ;
+fun random_A : A ;
+fun random_N : N ;
+fun randomization_N : N ;
+fun randomized_A : A ;
+fun randomness_N : N ;
+fun randy_A : A ;
+fun ranee_N : N ;
+fun rang_V : V ;
+fun range_N : N ;
+fun range_V : V ;
+fun rangefinder_N : N ;
+fun rangeland_N : N ;
+fun ranger_N : N ;
+fun rangpur_N : N ;
+fun rangy_A : A ;
+fun rani_N : N ;
+fun ranitidine_N : N ;
+fun rank_A : A ;
+fun rank_N : N ;
+fun rank_V : V ;
+fun ranker_N : N ;
+fun ranking_N : N ;
+fun rankle_V : V ;
+fun rankness_N : N ;
+fun ransack_V : V ;
+fun ransacking_N : N ;
+fun ransom_N : N ;
+fun ransom_V : V ;
+fun rant_N : N ;
+fun rant_V : V ;
+fun ranter_N : N ;
+fun ranula_N : N ;
+fun rap_N : N ;
+fun rap_V : V ;
+fun rapacious_A : A ;
+fun rapacity_N : N ;
+fun rape_N : N ;
+fun rape_V : V ;
+fun raper_N : N ;
+fun rapeseed_N : N ;
+fun raphe_N : N ;
+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 rappee_N : N ;
+fun rappel_N : N ;
+fun rapper_N : N ;
+fun rapport_N : N ;
+fun rapporteur_N : N ;
+fun rapprochement_N : N ;
+fun rapscallion_N : N ;
+fun rapt_A : A ;
+fun raptorial_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 rareness_N : N ;
+fun raring_A : A ;
+fun rariora_N : N ;
+fun rarity_N : N ;
+fun rascal_N : N ;
+fun rascality_N : N ;
+fun rascally_A : A ;
+fun rase_V : V ;
+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 raspberry_N : N ;
+fun raspingly_Adv : Adv ;
+fun raster_N : N ;
+fun rat_N : N ;
+fun rat_V : V ;
+fun rat_a_tat_tat_N : N ;
+fun rat_tat_N : N ;
+fun ratability_N : N ;
+fun ratable_A : A ;
+fun ratables_N : N ;
+fun ratafia_N : N ;
+fun ratan_N : N ;
+fun ratatouille_N : N ;
+fun ratch_N : N ;
+fun ratchet_N : N ;
+fun ratchet_V : V ;
+fun rate_N : N ;
+fun rate_V : V ;
+fun rateability_N : N ;
+fun rateable_A : A ;
+fun ratel_N : N ;
+fun ratepayer_N : N ;
+fun rates_N : N ;
+fun rather_Adv : Adv ;
+fun rather_than_Prep : Prep ;
+fun rathole_N : N ;
+fun rathskeller_N : N ;
+fun ratification_N : N ;
+fun ratify_V : V ;
+fun rating_N : N ;
+fun ratio_N : N ;
+fun ratiocination_N : N ;
+fun ratiocinative_A : A ;
+fun ration_N : N ;
+fun ration_V : V ;
+fun rational_A : A ;
+fun rationale_N : N ;
+fun rationalism_N : N ;
+fun rationalist_A : A ;
+fun rationalist_N : N ;
+fun rationalistic_A : A ;
+fun rationality_N : N ;
+fun rationalization_N : N ;
+fun rationalize_V : V ;
+fun rationing_N : N ;
+fun ratite_N : N ;
+fun ratlike_A : A ;
+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 rattlebrained_A : A ;
+fun rattlepated_A : A ;
+fun rattler_N : N ;
+fun rattlesnake_N : N ;
+fun rattling_Adv : Adv ;
+fun rattrap_N : N ;
+fun ratty_A : A ;
+fun raucous_A : A ;
+fun raunchy_A : A ;
+fun rauwolfia_N : N ;
+fun ravage_N : N ;
+fun ravage_V : V ;
+fun ravaging_N : N ;
+fun rave_N : N ;
+fun rave_V : V ;
+fun rave_up_N : N ;
+fun ravehook_N : N ;
+fun ravel_V : V ;
+fun raveling_N : N ;
+fun raven_N : N ;
+fun ravening_A : A ;
+fun ravenous_A : A ;
+fun raver_N : N ;
+fun ravigote_N : N ;
+fun ravine_N : N ;
+fun raving_Adv : Adv ;
+fun raving_N : N ;
+fun ravioli_N : N ;
+fun ravish_V : V ;
+fun ravishing_A : A ;
+fun ravishment_N : N ;
+fun raw_A : A ;
+fun raw_N : N ;
+fun rawboned_A : A ;
+fun rawhide_A : A ;
+fun rawhide_N : N ;
+fun rawness_N : N ;
+fun ray_N : N ;
+fun ray_V : V ;
+fun rayless_A : A ;
+fun rayon_N : N ;
+fun razbliuto_N : N ;
+fun raze_V : V ;
+fun razing_N : N ;
+fun razor_N : N ;
+fun razor_V : V ;
+fun razor_edge_N : N ;
+fun razorback_A : A ;
+fun razorback_N : N ;
+fun razorbacked_A : A ;
+fun razorbill_N : N ;
+fun razorblade_N : N ;
+fun razzle_N : N ;
+fun razzle_dazzle_N : N ;
+fun re_N : N ;
+fun re_Prep : Prep ;
+fun re_address_V : V ;
+fun re_afforest_V : V ;
+fun re_afforestation_N : N ;
+fun re_count_N : N ;
+fun re_count_V : V ;
+fun re_cover_V : V ;
+fun re_create_V : V ;
+fun re_echo_N : N ;
+fun re_echo_V : V ;
+fun re_elect_V : V ;
+fun re_emerge_V : V ;
+fun re_emphasize_V : V ;
+fun re_enter_V : V ;
+fun re_entry_N : N ;
+fun re_establish_V : V ;
+fun re_evaluate_V : V ;
+fun re_examine_V : V ;
+fun re_form_V : V ;
+fun re_formation_N : N ;
+fun re_join_V : V ;
+fun re_supply_V : V ;
+fun reach_N : N ;
+fun reach_V : V ;
+fun react_V : V ;
+fun reactance_N : N ;
+fun reactant_N : N ;
+fun reaction_N : N ;
+fun reactionary_A : A ;
+fun reactionary_N : N ;
+fun reactionism_N : N ;
+fun reactivate_V : V ;
+fun reactive_A : A ;
+fun reactivity_N : N ;
+fun reactor_N : N ;
+fun read_N : N ;
+fun read_V : V ;
+fun readability_N : N ;
+fun readable_A : A ;
+fun reader_N : N ;
+fun readership_N : N ;
+fun readiness_N : N ;
+fun reading_N : N ;
+fun reading_lamp_N : N ;
+fun reading_room_N : N ;
+fun readjust_V : V ;
+fun readjustment_N : N ;
+fun readmission_N : N ;
+fun readmit_V : V ;
+fun readout_N : N ;
+fun ready_A : A ;
+fun ready_N : N ;
+fun ready_V : V ;
+fun ready_made_A : A ;
+fun reaffiliation_N : N ;
+fun reaffirm_V : V ;
+fun reagent_N : N ;
+fun reagin_N : N ;
+fun real_A : A ;
+fun real_N : N ;
+fun realgar_N : N ;
+fun realign_V : V ;
+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_V : V ;
+fun reallocation_N : N ;
+fun reallotment_N : N ;
+fun realm_N : N ;
+fun realpolitik_N : N ;
+fun realtor_N : N ;
+fun realty_N : N ;
+fun ream_N : N ;
+fun reamer_N : N ;
+fun reanimate_V : V ;
+fun reap_V : V ;
+fun reaper_N : N ;
+fun reaping_hook_N : N ;
+fun reappear_V : V ;
+fun reappearance_N : N ;
+fun reappoint_V : V ;
+fun reappraisal_N : N ;
+fun reappraise_V : V ;
+fun rear_N : N ;
+fun rear_V : V ;
+fun rear_admiral_N : N ;
+fun rearguard_N : N ;
+fun rearm_V : V ;
+fun rearmament_N : N ;
+fun rearmost_A : A ;
+fun rearrange_V : V ;
+fun rearrangement_N : N ;
+fun rearward_A : A ;
+fun rearward_N : N ;
+fun rearwards_Adv : Adv ;
+fun reason_N : N ;
+fun reason_reasoned_V : V ;
+fun reason_reasonned_V : V ;
+fun reasonable_A : A ;
+fun reasonableness_N : N ;
+fun reasoner_N : N ;
+fun reasoning_N : N ;
+fun reasonless_A : A ;
+fun reassemble_V : V ;
+fun reassembly_N : N ;
+fun reassert_V : V ;
+fun reassertion_N : N ;
+fun reassess_V : V ;
+fun reassessment_N : N ;
+fun reassign_V : V ;
+fun reassignment_N : N ;
+fun reassume_V : V ;
+fun reassurance_N : N ;
+fun reassure_V : V ;
+fun reassuring_A : A ;
+fun reattribute_V : V ;
+fun rebarbative_A : A ;
+fun rebate_N : N ;
+fun rebel_N : N ;
+fun rebel_V : V ;
+fun rebellion_N : N ;
+fun rebellious_A : A ;
+fun rebelliousness_N : N ;
+fun rebind_V : V ;
+fun rebirth_N : N ;
+fun reborn_A : A ;
+fun rebound_N : N ;
+fun rebound_V : V ;
+fun reboxetine_N : N ;
+fun rebozo_N : N ;
+fun rebroadcast_N : N ;
+fun rebuff_N : N ;
+fun rebuff_V : V ;
+fun rebuild_V : V ;
+fun rebuilding_N : N ;
+fun rebuke_N : N ;
+fun rebuke_V : V ;
+fun rebukingly_Adv : Adv ;
+fun reburying_N : N ;
+fun rebus_N : N ;
+fun rebut_V : V ;
+fun rebuttal_N : N ;
+fun rebutter_N : N ;
+fun recalcitrance_N : N ;
+fun recalcitrancy_N : N ;
+fun recalcitrant_A : A ;
+fun recalculate_V : V ;
+fun recalculation_N : N ;
+fun recall_N : N ;
+fun recall_V : V ;
+fun recant_V : V ;
+fun recantation_N : N ;
+fun recap_N : N ;
+fun recap_V : V ;
+fun recapitulate_V : V ;
+fun recapitulation_N : N ;
+fun recapture_N : N ;
+fun recapture_V : V ;
+fun recast_V : V ;
+fun recce_N : N ;
+fun recede_V : V ;
+fun receding_N : N ;
+fun receipt_N : N ;
+fun receipt_V : V ;
+fun receivable_A : A ;
+fun receivable_N : N ;
+fun receive_V : V ;
+fun receiver_N : N ;
+fun receivership_N : N ;
+fun receiving_set_N : N ;
+fun recency_N : N ;
+fun recent_A : A ;
+fun recentralize_V : V ;
+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 receptor_N : N ;
+fun recess_N : N ;
+fun recess_V : V ;
+fun recession_N : N ;
+fun recessional_A : A ;
+fun recessional_N : N ;
+fun recessionary_A : A ;
+fun recessive_A : A ;
+fun rechargeable_A : A ;
+fun recherché_A : A ;
+fun recidivism_N : N ;
+fun recidivist_N : N ;
+fun recipe_N : N ;
+fun recipient_N : N ;
+fun reciprocal_A : A ;
+fun reciprocal_N : N ;
+fun reciprocality_N : N ;
+fun reciprocate_V : V ;
+fun reciprocation_N : N ;
+fun reciprocative_A : A ;
+fun reciprocity_N : N ;
+fun recirculation_N : N ;
+fun recission_N : N ;
+fun recital_N : N ;
+fun recitalist_N : N ;
+fun recitation_N : N ;
+fun recitative_N : N ;
+fun recite_V : V ;
+fun reciter_N : N ;
+fun reckless_A : A ;
+fun recklessness_N : N ;
+fun reckon_reckoned_V : V ;
+fun reckon_reckonned_V : V ;
+fun reckoner_N : N ;
+fun reckoning_N : N ;
+fun reclaim_V : V ;
+fun reclaimable_A : A ;
+fun reclamation_N : N ;
+fun reclassification_N : N ;
+fun reclassify_V : V ;
+fun recline_V : V ;
+fun recliner_N : N ;
+fun reclining_N : N ;
+fun recluse_A : A ;
+fun recluse_N : N ;
+fun reclusiveness_N : N ;
+fun recoding_N : N ;
+fun recognition_N : N ;
+fun recognizable_A : A ;
+fun recognizance_N : N ;
+fun recognize_V : V ;
+fun recoil_N : N ;
+fun recoil_V : V ;
+fun recoilless_A : A ;
+fun recollect_V : V ;
+fun recollection_N : N ;
+fun recombinant_A : A ;
+fun recombinant_N : N ;
+fun recombination_N : N ;
+fun recommend_V : V ;
+fun recommendation_N : N ;
+fun recommit_V : V ;
+fun recompense_N : N ;
+fun recompense_V : V ;
+fun reconcilable_A : A ;
+fun reconcile_V : V ;
+fun reconciliation_N : N ;
+fun recondite_A : A ;
+fun reconditeness_N : N ;
+fun recondition_V : V ;
+fun reconfiguration_N : N ;
+fun reconnaissance_N : N ;
+fun reconnoitre_V : V ;
+fun reconsecrate_V : V ;
+fun reconsider_V : V ;
+fun reconsideration_N : N ;
+fun reconstruct_V : V ;
+fun reconstruction_N : N ;
+fun reconstructive_A : A ;
+fun reconvict_V : V ;
+fun record_N : N ;
+fun record_V : V ;
+fun record_breaking_A : A ;
+fun record_player_N : N ;
+fun recorder_N : N ;
+fun recording_N : N ;
+fun recount_N : N ;
+fun recount_V : V ;
+fun recoup_V : V ;
+fun recourse_N : N ;
+fun recover_V : V ;
+fun recoverable_A : A ;
+fun recovery_N : N ;
+fun recreant_A : A ;
+fun recreant_N : N ;
+fun recreate_V : V ;
+fun recreation_N : N ;
+fun recreational_A : A ;
+fun recriminate_V : V ;
+fun recrimination_N : N ;
+fun recriminative_A : A ;
+fun recriminatory_A : A ;
+fun recrudescence_N : N ;
+fun recrudescent_A : A ;
+fun recruit_N : N ;
+fun recruit_V : V ;
+fun recruiter_N : N ;
+fun recruitment_N : N ;
+fun rectal_A : A ;
+fun rectangle_N : N ;
+fun rectangular_A : A ;
+fun rectangularity_N : N ;
+fun rectification_N : N ;
+fun rectifier_N : N ;
+fun rectify_V : V ;
+fun rectilinear_A : A ;
+fun rectitude_N : N ;
+fun recto_N : N ;
+fun rectocele_N : N ;
+fun rector_N : N ;
+fun rectorship_N : N ;
+fun rectory_N : N ;
+fun rectosigmoid_A : A ;
+fun rectum_N : N ;
+fun rectus_N : N ;
+fun recumbent_A : A ;
+fun recuperate_V : V ;
+fun recuperation_N : N ;
+fun recuperative_A : A ;
+fun recur_V : V ;
+fun recurrence_N : N ;
+fun recurrent_A : A ;
+fun recursion_N : N ;
+fun recursive_A : A ;
+fun recurve_V : V ;
+fun recusancy_N : N ;
+fun recusant_A : A ;
+fun recusant_N : N ;
+fun recusation_N : N ;
+fun recycle_V : V ;
+fun recycling_N : N ;
+fun red_A : A ;
+fun red_N : N ;
+fun red_hot_A : A ;
+fun red_rimmed_A : A ;
+fun redact_N : N ;
+fun redact_V : V ;
+fun redaction_N : N ;
+fun redberry_N : N ;
+fun redbone_N : N ;
+fun redbreast_N : N ;
+fun redbrick_A : A ;
+fun redbud_N : N ;
+fun redcap_N : N ;
+fun redcoat_N : N ;
+fun redden_V : V ;
+fun reddish_A : A ;
+fun redecorate_V : V ;
+fun rededication_N : N ;
+fun redeem_V : V ;
+fun redeemable_A : A ;
+fun redeemer_N : N ;
+fun redefine_V : V ;
+fun redefinition_N : N ;
+fun redemption_N : N ;
+fun redemptive_A : A ;
+fun redeploy_V : V ;
+fun redeployment_N : N ;
+fun redeposition_N : N ;
+fun redesign_V : V ;
+fun redetermination_N : N ;
+fun redevelop_V : V ;
+fun redevelopment_N : N ;
+fun redeye_N : N ;
+fun redfish_N : N ;
+fun redhead_N : N ;
+fun redheaded_A : A ;
+fun redhorse_N : N ;
+fun rediffusion_N : N ;
+fun rediscover_V : V ;
+fun rediscovery_N : N ;
+fun redisposition_N : N ;
+fun redistribute_V : V ;
+fun redistribution_N : N ;
+fun redline_V : V ;
+fun redneck_N : N ;
+fun redness_N : N ;
+fun redo_V : V ;
+fun redolence_N : N ;
+fun redolent_A : A ;
+fun redouble_V : V ;
+fun redoubt_N : N ;
+fun redoubtable_A : A ;
+fun redound_V : V ;
+fun redpoll_N : N ;
+fun redraft_N : N ;
+fun redraw_V : V ;
+fun redress_N : N ;
+fun redress_V : V ;
+fun redshank_N : N ;
+fun redskin_N : N ;
+fun redstart_N : N ;
+fun redtail_N : N ;
+fun reduce_V : V ;
+fun reducer_N : N ;
+fun reducible_A : A ;
+fun reducing_N : N ;
+fun reductase_N : N ;
+fun reductio_ad_absurdum_N : N ;
+fun reduction_N : N ;
+fun reductionism_N : N ;
+fun reductionist_A : A ;
+fun reductive_A : A ;
+fun redundance_N : N ;
+fun redundancy_N : N ;
+fun redundant_A : A ;
+fun reduplicate_V : V ;
+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_V : V ;
+fun reef_knot_N : N ;
+fun reefer_N : N ;
+fun reefy_A : A ;
+fun reek_N : N ;
+fun reek_V : V ;
+fun reel_N : N ;
+fun reel_V : V ;
+fun reelection_N : N ;
+fun reeler_N : N ;
+fun reenactment_N : N ;
+fun reenactor_N : N ;
+fun reenlistment_N : N ;
+fun reentry_N : N ;
+fun reevaluation_N : N ;
+fun reeve_N : N ;
+fun reexamine_V : V ;
+fun ref_N : N ;
+fun reface_V : V ;
+fun refashion_N : N ;
+fun refashion_V : V ;
+fun refection_N : N ;
+fun refectory_N : N ;
+fun refer_V : V ;
+fun referable_A : A ;
+fun referee_N : N ;
+fun referee_V : V ;
+fun reference_N : N ;
+fun referenced_A : A ;
+fun referendum_N : N ;
+fun referent_A : A ;
+fun referent_N : N ;
+fun referential_A : A ;
+fun referral_N : N ;
+fun refile_V : V ;
+fun refill_N : N ;
+fun refill_V : V ;
+fun refilling_N : N ;
+fun refinance_V : V ;
+fun refine_V : V ;
+fun refinement_N : N ;
+fun refiner_N : N ;
+fun refinery_N : N ;
+fun refining_N : N ;
+fun refinisher_N : N ;
+fun refit_N : N ;
+fun refit_V : V ;
+fun reflate_V : V ;
+fun reflation_N : N ;
+fun reflect_V : V ;
+fun reflection_N : N ;
+fun reflective_A : A ;
+fun reflectiveness_N : N ;
+fun reflectometer_N : N ;
+fun reflector_N : N ;
+fun reflex_A : A ;
+fun reflex_N : N ;
+fun reflexed_A : A ;
+fun reflexion_N : N ;
+fun reflexive_A : A ;
+fun reflexive_N : N ;
+fun reflexivity_N : N ;
+fun reflexology_N : N ;
+fun refloat_V : V ;
+fun reflux_N : N ;
+fun refocus_V : V ;
+fun refocusing_N : N ;
+fun reforest_V : V ;
+fun reforestation_N : N ;
+fun reform_N : N ;
+fun reform_V : V ;
+fun reformation_N : N ;
+fun reformative_A : A ;
+fun reformatory_A : A ;
+fun reformatory_N : N ;
+fun reformer_N : N ;
+fun reformism_N : N ;
+fun reformulate_V : V ;
+fun refract_V : V ;
+fun refraction_N : N ;
+fun refractive_A : A ;
+fun refractivity_N : N ;
+fun refractometer_N : N ;
+fun refractoriness_N : N ;
+fun refractory_A : A ;
+fun refrain_N : N ;
+fun refrain_V : V ;
+fun refresh_V : V ;
+fun refresher_N : N ;
+fun refreshing_A : A ;
+fun refreshment_N : N ;
+fun refrigerant_A : A ;
+fun refrigerant_N : N ;
+fun refrigerate_V : V ;
+fun refrigeration_N : N ;
+fun refrigerator_N : N ;
+fun refuel_V : V ;
+fun refuge_N : N ;
+fun refugee_N : N ;
+fun refulgence_N : N ;
+fun refulgent_A : A ;
+fun refund_N : N ;
+fun refund_V : V ;
+fun refurbish_V : V ;
+fun refurnish_V : V ;
+fun refusal_N : N ;
+fun refuse_N : N ;
+fun refuse_V : V ;
+fun refuse_collector_N : N ;
+fun refutable_A : A ;
+fun refutation_N : N ;
+fun refute_V : V ;
+fun regain_V : V ;
+fun regal_A : A ;
+fun regale_V : V ;
+fun regalia_N : N ;
+fun regard_N : N ;
+fun regard_V : V ;
+fun regardful_A : A ;
+fun regardless_A : A ;
+fun regardless_Adv : Adv ;
+fun regardless_of_Prep : Prep ;
+fun regatta_N : N ;
+fun regency_N : N ;
+fun regenerate_A : A ;
+fun regenerate_V : V ;
+fun regeneration_N : N ;
+fun regent_A : A ;
+fun regent_N : N ;
+fun reggae_N : N ;
+fun regicide_N : N ;
+fun regime_N : N ;
+fun regimen_N : N ;
+fun regiment_N : N ;
+fun regiment_V : V ;
+fun regimental_A : A ;
+fun regimentals_N : N ;
+fun regimentation_N : N ;
+fun region_N : N ;
+fun regional_A : A ;
+fun regionalism_N : N ;
+fun register_N : N ;
+fun register_V : V ;
+fun registrant_N : N ;
+fun registrar_N : N ;
+fun registration_N : N ;
+fun registry_N : N ;
+fun regnant_A : A ;
+fun regnellidium_N : N ;
+fun regosol_N : N ;
+fun regress_N : N ;
+fun regress_V : V ;
+fun regression_N : N ;
+fun regressive_A : A ;
+fun regret_N : N ;
+fun regret_V : V ;
+fun regretful_A : A ;
+fun regrettable_A : A ;
+fun regroup_V : V ;
+fun regular_A : A ;
+fun regular_N : N ;
+fun regularity_N : N ;
+fun regularization_N : N ;
+fun regularize_V : V ;
+fun regulate_V : V ;
+fun regulation_A : A ;
+fun regulation_N : N ;
+fun regulative_A : A ;
+fun regulator_N : N ;
+fun regum_V : V ;
+fun regur_N : N ;
+fun regurgitate_V : V ;
+fun regurgitation_N : N ;
+fun rehabilitate_V : V ;
+fun rehabilitation_N : N ;
+fun rehabilitative_A : A ;
+fun reharmonization_N : N ;
+fun rehash_N : N ;
+fun rehash_V : V ;
+fun rehear_V : V ;
+fun rehearing_N : N ;
+fun rehearsal_N : N ;
+fun rehearse_V : V ;
+fun rehouse_V : V ;
+fun reich_N : N ;
+fun reign_N : N ;
+fun reign_V : V ;
+fun reignite_V : V ;
+fun reimburse_V : V ;
+fun reimbursement_N : N ;
+fun reimpose_V : V ;
+fun reimposition_N : N ;
+fun rein_N : N ;
+fun rein_V : V ;
+fun reincarnate_A : A ;
+fun reincarnate_V : V ;
+fun reincarnation_N : N ;
+fun reincarnationism_N : N ;
+fun reindeer_N : N ;
+fun reindict_V : V ;
+fun reinforce_V : V ;
+fun reinforcement_N : N ;
+fun reinstall_V : V ;
+fun reinstate_V : V ;
+fun reinstatement_N : N ;
+fun reinstitute_V : V ;
+fun reinsurance_N : N ;
+fun reinsure_V : V ;
+fun reintegrate_V : V ;
+fun reintegration_N : N ;
+fun reinterpret_V : V ;
+fun reinterpretation_N : N ;
+fun reintroduce_V : V ;
+fun reintroduction_N : N ;
+fun reinvent_V : V ;
+fun reinvest_V : V ;
+fun reinvigorate_V : V ;
+fun reissue_N : N ;
+fun reissue_V : V ;
+fun reiterate_V : V ;
+fun reiteration_N : N ;
+fun reject_N : N ;
+fun reject_V : V ;
+fun rejection_N : N ;
+fun rejective_A : A ;
+fun rejig_V : V ;
+fun rejoice_V : V ;
+fun rejoicing_N : N ;
+fun rejoin_V : V ;
+fun rejoinder_N : N ;
+fun rejuvenate_V : V ;
+fun rejuvenation_N : N ;
+fun rekindle_V : V ;
+fun relapse_N : N ;
+fun relapse_V : V ;
+fun relate_V : V ;
+fun relatedness_N : N ;
+fun relation_N : N ;
+fun relational_A : A ;
+fun relationship_N : N ;
+fun relative_A : A ;
+fun relative_N : N ;
+fun relativism_N : N ;
+fun relativistic_A : A ;
+fun relativistically_Adv : Adv ;
+fun relativity_N : N ;
+fun relatum_N : N ;
+fun relax_V : V ;
+fun relaxant_A : A ;
+fun relaxant_N : N ;
+fun relaxation_N : N ;
+fun relaxer_N : N ;
+fun relaxin_N : N ;
+fun relay_N : N ;
+fun relay_V : V ;
+fun release_N : N ;
+fun release_V : V ;
+fun relegate_V : V ;
+fun relegation_N : N ;
+fun relent_V : V ;
+fun relentless_A : A ;
+fun relentlessness_N : N ;
+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_V : V ;
+fun reliever_N : N ;
+fun religion_N : N ;
+fun religionism_N : N ;
+fun religionist_N : N ;
+fun religiosity_N : N ;
+fun religious_A : A ;
+fun religious_N : N ;
+fun religiousness_N : N ;
+fun reline_V : V ;
+fun relinquish_V : V ;
+fun relinquishment_N : N ;
+fun reliquary_N : N ;
+fun relish_N : N ;
+fun relish_V : V ;
+fun relistening_N : N ;
+fun relive_V : V ;
+fun reliving_N : N ;
+fun relocate_V : V ;
+fun relocation_N : N ;
+fun reluctance_N : N ;
+fun reluctant_A : A ;
+fun reluctivity_N : N ;
+fun rely_V : V ;
+fun remain_V : V ;
+fun remainder_N : N ;
+fun remains_N : N ;
+fun remake_N : N ;
+fun remake_V : V ;
+fun remand_N : N ;
+fun remand_V : V ;
+fun remark_N : N ;
+fun remark_V : V ;
+fun remarkable_A : A ;
+fun remarriage_N : N ;
+fun remarry_V : V ;
+fun remediable_A : A ;
+fun remedial_A : A ;
+fun remedy_N : N ;
+fun remedy_V : V ;
+fun remember_V : V ;
+fun remembrance_N : N ;
+fun remilitarization_N : N ;
+fun remilitarize_V : V ;
+fun remind_V : V ;
+fun reminder_N : N ;
+fun reminisce_V : V ;
+fun reminiscence_N : N ;
+fun reminiscent_A : A ;
+fun remise_N : N ;
+fun remiss_A : A ;
+fun remission_N : N ;
+fun remissness_N : N ;
+fun remit_N : N ;
+fun remit_V : V ;
+fun remittance_N : N ;
+fun remittent_A : A ;
+fun remnant_N : N ;
+fun remodel_remodeled_V : V ;
+fun remodel_remodelled_V : V ;
+fun remonstrance_N : N ;
+fun remonstrate_V : V ;
+fun remora_N : N ;
+fun remorse_N : N ;
+fun remorseful_A : A ;
+fun remorseless_A : A ;
+fun remote_A : A ;
+fun remoteness_N : N ;
+fun remould_V : V ;
+fun remount_N : N ;
+fun remount_V : V ;
+fun removable_A : A ;
+fun removal_N : N ;
+fun remove_N : N ;
+fun remove_V : V ;
+fun remover_N : N ;
+fun remuda_N : N ;
+fun remunerate_V : V ;
+fun remuneration_N : N ;
+fun remunerative_A : A ;
+fun renaissance_N : N ;
+fun renal_A : A ;
+fun rename_V : V ;
+fun renascence_N : N ;
+fun renascent_A : A ;
+fun rend_V : V ;
+fun render_N : N ;
+fun render_V : V ;
+fun rendering_N : N ;
+fun rendezvous_N : N ;
+fun rendezvous_V : V ;
+fun rendezvouse_V : V ;
+fun rending_A : A ;
+fun rendition_N : N ;
+fun renegade_N : N ;
+fun renegade_V : V ;
+fun renege_V : V ;
+fun renegotiate_V : V ;
+fun renegue_V : V ;
+fun renew_V : V ;
+fun renewable_A : A ;
+fun renewal_N : N ;
+fun renewing_A : A ;
+fun reniform_A : A ;
+fun renin_N : N ;
+fun rennet_N : N ;
+fun rennin_N : N ;
+fun renounce_V : V ;
+fun renovate_V : V ;
+fun renovation_N : N ;
+fun renovator_N : N ;
+fun renown_N : N ;
+fun renowned_A : A ;
+fun rensselaerite_N : N ;
+fun rent_N : N ;
+fun rent_V : V ;
+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_A : A ;
+fun rental_N : N ;
+fun renter_N : N ;
+fun rentier_N : N ;
+fun renunciant_A : A ;
+fun renunciation_N : N ;
+fun reoffer_V : V ;
+fun reopen_V : V ;
+fun reorder_N : N ;
+fun reordering_N : N ;
+fun reorganisation_N : N ;
+fun reorganization_N : N ;
+fun reorganize_V : V ;
+fun reorient_V : V ;
+fun reorientate_V : V ;
+fun reorientation_N : N ;
+fun reovirus_N : N ;
+fun rep_N : N ;
+fun repackage_V : V ;
+fun repaint_V : V ;
+fun repair_N : N ;
+fun repair_V : V ;
+fun repairable_A : A ;
+fun repairer_N : N ;
+fun repairman_N : N ;
+fun repand_A : A ;
+fun reparable_A : A ;
+fun reparation_N : N ;
+fun repartee_N : N ;
+fun repass_V : V ;
+fun repast_N : N ;
+fun repatriate_N : N ;
+fun repatriate_V : V ;
+fun repatriation_N : N ;
+fun repay_V : V ;
+fun repayable_A : A ;
+fun repayment_N : N ;
+fun repeal_N : N ;
+fun repeal_V : V ;
+fun repeat_N : N ;
+fun repeat_V : V ;
+fun repeatable_A : A ;
+fun repeatedly_Adv : Adv ;
+fun repeater_N : N ;
+fun repechage_N : N ;
+fun repel_V : V ;
+fun repellent_A : A ;
+fun repellent_N : N ;
+fun repent_V : V ;
+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 repetitiveness_N : N ;
+fun repine_V : V ;
+fun replace_V : V ;
+fun replaceability_N : N ;
+fun replaceable_A : A ;
+fun replacement_N : N ;
+fun replant_V : V ;
+fun replaster_V : V ;
+fun replay_N : N ;
+fun replay_V : V ;
+fun replenish_V : V ;
+fun replenishment_N : N ;
+fun replete_A : A ;
+fun repletion_N : N ;
+fun replica_N : N ;
+fun replicate_V : V ;
+fun replication_N : N ;
+fun reply_N : N ;
+fun reply_V : V ;
+fun reply_paid_A : A ;
+fun repoint_V : V ;
+fun repond_V : V ;
+fun report_N : N ;
+fun report_V : V ;
+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 reposeful_A : A ;
+fun repositing_N : N ;
+fun reposition_V : V ;
+fun repositioning_N : N ;
+fun repository_N : N ;
+fun repossess_V : V ;
+fun repossession_N : N ;
+fun repot_V : V ;
+fun repp_N : N ;
+fun reprehend_V : V ;
+fun reprehensibility_N : N ;
+fun reprehensible_A : A ;
+fun represent_V : V ;
+fun representable_A : A ;
+fun representation_N : N ;
+fun representational_A : A ;
+fun representative_A : A ;
+fun representative_N : N ;
+fun repress_V : V ;
+fun repression_N : N ;
+fun repressive_A : A ;
+fun repressor_N : N ;
+fun reprieve_N : N ;
+fun reprieve_V : V ;
+fun reprimand_N : N ;
+fun reprimand_V : V ;
+fun reprint_N : N ;
+fun reprint_V : V ;
+fun reprisal_N : N ;
+fun reproach_N : N ;
+fun reproach_V : V ;
+fun reproachful_A : A ;
+fun reprobate_N : N ;
+fun reprobate_V : V ;
+fun reprobation_N : N ;
+fun reproduce_V : V ;
+fun reproducer_N : N ;
+fun reproducibility_N : N ;
+fun reproducible_A : A ;
+fun reproduction_N : N ;
+fun reproductive_A : A ;
+fun reproof_N : N ;
+fun reproof_V : V ;
+fun reprove_V : V ;
+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 republication_N : N ;
+fun repudiate_V : V ;
+fun repudiation_N : N ;
+fun repudiative_A : A ;
+fun repugnance_N : N ;
+fun repugnant_A : A ;
+fun repulse_N : N ;
+fun repulse_V : V ;
+fun repulsion_N : N ;
+fun repulsive_A : A ;
+fun repurchase_V : V ;
+fun reputable_A : A ;
+fun reputation_N : N ;
+fun repute_N : N ;
+fun repute_V : V ;
+fun reputedly_Adv : Adv ;
+fun request_N : N ;
+fun request_V : V ;
+fun requiem_N : N ;
+fun requiescat_N : N ;
+fun require_V : V ;
+fun requirement_N : N ;
+fun requisite_A : A ;
+fun requisite_N : N ;
+fun requisiteness_N : N ;
+fun requisition_N : N ;
+fun requisition_V : V ;
+fun requital_N : N ;
+fun requite_V : V ;
+fun reread_V : V ;
+fun rerebrace_N : N ;
+fun reredos_N : N ;
+fun reroute_V : V ;
+fun rerun_N : N ;
+fun rerun_V : V ;
+fun res_N : N ;
+fun resale_N : N ;
+fun reschedule_V : V ;
+fun rescind_V : V ;
+fun rescindable_A : A ;
+fun rescript_N : N ;
+fun rescue_N : N ;
+fun rescue_V : V ;
+fun rescuer_N : N ;
+fun research_N : N ;
+fun research_V : V ;
+fun researcher_N : N ;
+fun reseat_V : V ;
+fun reseau_N : N ;
+fun resection_N : N ;
+fun reseda_N : N ;
+fun reseed_V : V ;
+fun resell_V : V ;
+fun resemblance_N : N ;
+fun resemble_V : V ;
+fun resent_V : V ;
+fun resentful_A : A ;
+fun resentment_N : N ;
+fun reserpine_N : N ;
+fun reservation_N : N ;
+fun reserve_N : N ;
+fun reserve_V : V ;
+fun reservedly_Adv : Adv ;
+fun reservist_N : N ;
+fun reservoir_N : N ;
+fun reset_N : N ;
+fun reset_reset_V : V ;
+fun reset_resetted_V : V ;
+fun resettle_V : V ;
+fun resettlement_N : N ;
+fun resh_N : N ;
+fun reshape_V : V ;
+fun reshipment_N : N ;
+fun reshuffle_N : N ;
+fun reshuffle_V : V ;
+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 residual_N : N ;
+fun residuary_A : A ;
+fun residue_N : N ;
+fun resign_V : V ;
+fun resignation_N : N ;
+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 resinlike_A : A ;
+fun resinoid_N : N ;
+fun resinous_A : A ;
+fun resist_V : V ;
+fun resistance_N : N ;
+fun resistant_A : A ;
+fun resister_N : N ;
+fun resistible_A : A ;
+fun resistive_A : A ;
+fun resistivity_N : N ;
+fun resistless_A : A ;
+fun resistor_N : N ;
+fun resold_V : V ;
+fun resole_V : V ;
+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 resonance_N : N ;
+fun resonant_A : A ;
+fun resonate_V : V ;
+fun resonator_N : N ;
+fun resorcinol_N : N ;
+fun resorption_N : N ;
+fun resort_N : N ;
+fun resort_V : V ;
+fun resound_V : V ;
+fun resoundingly_Adv : Adv ;
+fun resource_N : N ;
+fun resourceful_A : A ;
+fun resourcefulness_N : N ;
+fun resourceless_A : A ;
+fun respect_N : N ;
+fun respect_V : V ;
+fun respectability_N : N ;
+fun respectable_A : A ;
+fun respecter_N : N ;
+fun respectful_A : A ;
+fun respective_A : A ;
+fun respects_N : N ;
+fun respiration_N : N ;
+fun respirator_N : N ;
+fun respiratory_A : A ;
+fun respire_V : V ;
+fun respite_N : N ;
+fun respite_V : V ;
+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_cure_N : N ;
+fun rest_day_N : N ;
+fun rest_home_N : N ;
+fun rest_house_N : N ;
+fun restart_V : V ;
+fun restate_V : V ;
+fun restatement_N : N ;
+fun restaurant_N : N ;
+fun restauranteur_N : N ;
+fun restaurateur_N : N ;
+fun rester_N : N ;
+fun restful_A : A ;
+fun restfulness_N : N ;
+fun restharrow_N : N ;
+fun restitution_N : N ;
+fun restive_A : A ;
+fun restiveness_N : N ;
+fun restless_A : A ;
+fun restlessness_N : N ;
+fun restock_V : V ;
+fun restoration_N : N ;
+fun restorative_A : A ;
+fun restorative_N : N ;
+fun restore_V : V ;
+fun restorer_N : N ;
+fun restrain_V : V ;
+fun restrainer_N : N ;
+fun restraint_N : N ;
+fun restrict_V : V ;
+fun restriction_N : N ;
+fun restrictive_A : A ;
+fun restrictiveness_N : N ;
+fun restructure_V : V ;
+fun result_N : N ;
+fun result_V : V ;
+fun resultant_A : A ;
+fun resultant_N : N ;
+fun resume_V : V ;
+fun resumption_N : N ;
+fun resurface_V : V ;
+fun resurgence_N : N ;
+fun resurgent_A : A ;
+fun resurrect_V : V ;
+fun resurrection_N : N ;
+fun resurvey_N : N ;
+fun resuscitate_V : V ;
+fun resuscitation_N : N ;
+fun resuscitator_N : N ;
+fun resuspension_N : N ;
+fun ret_V : V ;
+fun retail_Adv : Adv ;
+fun retail_N : N ;
+fun retail_V : V ;
+fun retailer_N : N ;
+fun retailing_N : N ;
+fun retain_V : V ;
+fun retainer_N : N ;
+fun retake_N : N ;
+fun retake_V : V ;
+fun retaliate_V : V ;
+fun retaliation_N : N ;
+fun retaliative_A : A ;
+fun retaliatory_A : A ;
+fun retard_V : V ;
+fun retardant_N : N ;
+fun retardation_N : N ;
+fun retch_V : V ;
+fun retell_V : V ;
+fun retem_N : N ;
+fun retention_N : N ;
+fun retentive_A : A ;
+fun retentiveness_N : N ;
+fun rethink_N : N ;
+fun rethink_V : V ;
+fun reticence_N : N ;
+fun reticent_A : A ;
+fun reticle_N : N ;
+fun reticulate_A : A ;
+fun reticulate_V : V ;
+fun reticulation_N : N ;
+fun reticule_N : N ;
+fun reticulocyte_N : N ;
+fun reticulum_N : N ;
+fun retina_N : N ;
+fun retinal_A : A ;
+fun retinene_N : N ;
+fun retinitis_N : N ;
+fun retinoblastoma_N : N ;
+fun retinopathy_N : N ;
+fun retinue_N : N ;
+fun retire_N : N ;
+fun retire_V : V ;
+fun retiree_N : N ;
+fun retirement_N : N ;
+fun retool_V : V ;
+fun retort_N : N ;
+fun retort_V : V ;
+fun retouch_V : V ;
+fun retrace_V : V ;
+fun retract_V : V ;
+fun retractable_A : A ;
+fun retractile_A : A ;
+fun retraction_N : N ;
+fun retractor_N : N ;
+fun retraining_N : N ;
+fun retral_A : A ;
+fun retransmit_V : V ;
+fun retread_N : N ;
+fun retread_V : V ;
+fun retreat_N : N ;
+fun retreat_V : V ;
+fun retreatant_N : N ;
+fun retreated_N : N ;
+fun retrench_V : V ;
+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 retriever_N : N ;
+fun retro_N : N ;
+fun retroactive_A : A ;
+fun retrofit_N : N ;
+fun retrofit_V : V ;
+fun retroflection_N : N ;
+fun retroflex_A : A ;
+fun retrograde_A : A ;
+fun retrograde_V : V ;
+fun retrogress_V : V ;
+fun retrogression_N : N ;
+fun retrogressive_A : A ;
+fun retronym_N : N ;
+fun retrorocket_N : N ;
+fun retrorse_A : A ;
+fun retrospect_N : N ;
+fun retrospection_N : N ;
+fun retrospective_A : A ;
+fun retrospective_N : N ;
+fun retroussé_A : A ;
+fun retroversion_N : N ;
+fun retrovirus_N : N ;
+fun retrovision_N : N ;
+fun retsina_N : N ;
+fun return_N : N ;
+fun return_V : V ;
+fun returnable_A : A ;
+fun reunification_N : N ;
+fun reunion_N : N ;
+fun reunite_V : V ;
+fun reuptake_N : N ;
+fun rev_N : N ;
+fun rev_V : V ;
+fun revaluation_N : N ;
+fun revalue_V : V ;
+fun revamp_V : V ;
+fun reveal_V : V ;
+fun revealing_A : A ;
+fun reveille_N : N ;
+fun revel_N : N ;
+fun revel_V : V ;
+fun revelation_N : N ;
+fun reveler_N : N ;
+fun reveller_N : N ;
+fun revelry_N : N ;
+fun revenant_A : A ;
+fun revenant_N : N ;
+fun revenge_N : N ;
+fun revenge_V : V ;
+fun revengeful_A : A ;
+fun revenue_N : N ;
+fun revenuer_N : N ;
+fun reverberant_A : A ;
+fun reverberate_V : V ;
+fun reverberation_N : N ;
+fun revere_V : V ;
+fun reverence_N : N ;
+fun reverence_V : V ;
+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 reversibility_N : N ;
+fun reversible_A : A ;
+fun reversible_N : N ;
+fun reversion_N : N ;
+fun reversionary_A : A ;
+fun reversioner_N : N ;
+fun revert_V : V ;
+fun revertible_A : A ;
+fun revetment_N : N ;
+fun review_N : N ;
+fun review_V : V ;
+fun reviewer_N : N ;
+fun revile_V : V ;
+fun revise_N : N ;
+fun revise_V : V ;
+fun reviser_N : N ;
+fun revision_N : N ;
+fun revisionism_N : N ;
+fun revisionist_N : N ;
+fun revisit_V : V ;
+fun revitalization_N : N ;
+fun revitalize_V : V ;
+fun revival_N : N ;
+fun revivalism_N : N ;
+fun revivalist_N : N ;
+fun revivalistic_A : A ;
+fun revive_V : V ;
+fun revivify_V : V ;
+fun revocable_A : A ;
+fun revocation_N : N ;
+fun revoke_N : N ;
+fun revoke_V : V ;
+fun revolt_N : N ;
+fun revolt_V : V ;
+fun revolution_N : N ;
+fun revolutionary_A : A ;
+fun revolutionary_N : N ;
+fun revolutionism_N : N ;
+fun revolutionist_N : N ;
+fun revolutionize_V : V ;
+fun revolve_V : V ;
+fun revolver_N : N ;
+fun revue_N : N ;
+fun revulsion_N : N ;
+fun reward_N : N ;
+fun reward_V : V ;
+fun rewardful_A : A ;
+fun rewarding_A : A ;
+fun rewire_V : V ;
+fun reword_V : V ;
+fun rewording_N : N ;
+fun rework_V : V ;
+fun rewrite_N : N ;
+fun rewrite_V : V ;
+fun rewriting_N : N ;
+fun rhabdomyoma_N : N ;
+fun rhabdomyosarcoma_N : N ;
+fun rhabdovirus_N : N ;
+fun rhagades_N : N ;
+fun rhapsodize_V : V ;
+fun rhapsody_N : N ;
+fun rhea_N : N ;
+fun rhenish_A : A ;
+fun rhenium_N : N ;
+fun rheologic_A : A ;
+fun rheology_N : N ;
+fun rheometer_N : N ;
+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 rheumatologist_N : N ;
+fun rheumatology_N : N ;
+fun rheumy_A : A ;
+fun rhinal_A : A ;
+fun rhinencephalon_N : N ;
+fun rhinestone_N : N ;
+fun rhinion_N : N ;
+fun rhinitis_N : N ;
+fun rhino_N : N ;
+fun rhinoceros_N : N ;
+fun rhinolaryngology_N : N ;
+fun rhinopathy_N : N ;
+fun rhinophyma_N : N ;
+fun rhinorrhea_N : N ;
+fun rhinoscope_N : N ;
+fun rhinoscopy_N : N ;
+fun rhinosporidiosis_N : N ;
+fun rhinostenosis_N : N ;
+fun rhinotomy_N : N ;
+fun rhinotracheitis_N : N ;
+fun rhinovirus_N : N ;
+fun rhizoctinia_N : N ;
+fun rhizoid_N : N ;
+fun rhizoidal_A : A ;
+fun rhizomatous_A : A ;
+fun rhizome_N : N ;
+fun rhizomorph_N : N ;
+fun rhizopod_N : N ;
+fun rhizopus_N : N ;
+fun rhizotomy_N : N ;
+fun rho_N : N ;
+fun rhodium_N : N ;
+fun rhodochrosite_N : N ;
+fun rhododendron_N : N ;
+fun rhodolite_N : N ;
+fun rhodonite_N : N ;
+fun rhomb_N : N ;
+fun rhombic_A : A ;
+fun rhombohedral_A : A ;
+fun rhombohedron_N : N ;
+fun rhomboid_A : A ;
+fun rhomboid_N : N ;
+fun rhombus_N : N ;
+fun rhonchus_N : N ;
+fun rhubarb_N : N ;
+fun rhyme_N : N ;
+fun rhyme_V : V ;
+fun rhymer_N : N ;
+fun rhymester_N : N ;
+fun rhyolite_N : N ;
+fun rhythm_N : N ;
+fun rhythmic_A : A ;
+fun rhythmical_A : A ;
+fun rhythmicity_N : N ;
+fun rib_N : N ;
+fun rib_V : V ;
+fun ribald_A : A ;
+fun ribald_N : N ;
+fun ribaldry_N : N ;
+fun riband_N : N ;
+fun ribavirin_N : N ;
+fun ribbing_N : N ;
+fun ribbon_N : N ;
+fun ribbonfish_N : N ;
+fun ribbonlike_A : A ;
+fun ribier_N : N ;
+fun ribless_A : A ;
+fun riblike_A : A ;
+fun riboflavin_N : N ;
+fun ribonuclease_N : N ;
+fun ribose_N : N ;
+fun ribosome_N : N ;
+fun rice_N : N ;
+fun rice_paper_N : N ;
+fun ricegrass_N : N ;
+fun ricer_N : N ;
+fun rich_A : A ;
+fun richness_N : N ;
+fun richweed_N : N ;
+fun ricin_N : N ;
+fun rick_N : N ;
+fun rick_V : V ;
+fun rickets_N : N ;
+fun rickettsia_N : N ;
+fun rickettsial_A : A ;
+fun rickettsialpox_N : N ;
+fun rickety_A : A ;
+fun rickey_N : N ;
+fun rickrack_N : N ;
+fun rickshaw_N : N ;
+fun ricochet_N : N ;
+fun ricochet_V : V ;
+fun ricotta_N : N ;
+fun rictus_N : N ;
+fun rid_rid_V : V ;
+fun rid_ridded_V : V ;
+fun riddance_N : N ;
+fun riddle_N : N ;
+fun riddle_V : V ;
+fun ride_N : N ;
+fun ride_V : V ;
+fun rider_N : N ;
+fun riderless_A : A ;
+fun ridge_N : N ;
+fun ridge_V : V ;
+fun ridge_tile_N : N ;
+fun ridgeling_N : N ;
+fun ridgepole_N : N ;
+fun ridicule_N : N ;
+fun ridicule_V : V ;
+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 ridley_N : N ;
+fun riel_N : N ;
+fun riesling_N : N ;
+fun rifampin_N : N ;
+fun rife_A : A ;
+fun riff_N : N ;
+fun riff_raff_N : N ;
+fun riffle_N : N ;
+fun riffle_V : V ;
+fun rifle_N : N ;
+fun rifle_V : V ;
+fun rifle_range_N : N ;
+fun rifle_shot_N : N ;
+fun riflebird_N : N ;
+fun rifleman_N : N ;
+fun rift_N : N ;
+fun rift_valley_N : N ;
+fun rig_N : N ;
+fun rig_V : V ;
+fun rigatoni_N : N ;
+fun rigg_V : V ;
+fun rigger_N : N ;
+fun rigging_N : N ;
+fun right_A : A ;
+fun right_Adv : Adv ;
+fun right_N : N ;
+fun right_V : V ;
+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_of_Prep : Prep ;
+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 rightish_A : A ;
+fun rightism_N : N ;
+fun rightist_A : A ;
+fun rightist_N : N ;
+fun rightmost_A : A ;
+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 rijsttaffel_N : N ;
+fun rile_V : V ;
+fun rill_N : N ;
+fun rim_N : N ;
+fun rim_V : V ;
+fun rima_N : N ;
+fun rime_N : N ;
+fun rime_V : V ;
+fun rimless_A : A ;
+fun rimose_A : A ;
+fun rimu_N : N ;
+fun rind_N : N ;
+fun rinderpest_N : N ;
+fun ring_N : N ;
+fun ring_armour_N : N ;
+fun ring_finger_N : N ;
+fun ring_mail_N : N ;
+fun ring_rang_V : V ;
+fun ring_ringed_V : V ;
+fun ring_road_N : N ;
+fun ringdove_N : N ;
+fun ringer_N : N ;
+fun ringgit_N : N ;
+fun ringhals_N : N ;
+fun ringing_N : N ;
+fun ringleader_N : N ;
+fun ringlet_N : N ;
+fun ringleted_A : A ;
+fun ringlike_A : A ;
+fun ringmaster_N : N ;
+fun rings_N : N ;
+fun ringside_N : N ;
+fun ringtail_N : N ;
+fun ringworm_N : N ;
+fun rink_N : N ;
+fun rinse_N : N ;
+fun rinse_V : V ;
+fun riot_N : N ;
+fun riot_V : V ;
+fun rioter_N : N ;
+fun rioting_N : N ;
+fun riotous_A : A ;
+fun rip_N : N ;
+fun rip_V : V ;
+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 ripeness_N : N ;
+fun ripening_N : N ;
+fun riposte_N : N ;
+fun riposte_V : V ;
+fun ripper_N : N ;
+fun ripple_N : N ;
+fun ripple_V : V ;
+fun ripsaw_N : N ;
+fun riptide_N : N ;
+fun rise_N : N ;
+fun rise_V : V ;
+fun riser_N : N ;
+fun risibility_N : N ;
+fun risible_A : A ;
+fun rising_N : N ;
+fun risk_N : N ;
+fun risk_V : V ;
+fun riskiness_N : N ;
+fun risklessness_N : N ;
+fun risky_A : A ;
+fun risotto_N : N ;
+fun risqué_A : A ;
+fun rissole_N : N ;
+fun rite_N : N ;
+fun ritonavir_N : N ;
+fun ritual_A : A ;
+fun ritual_N : N ;
+fun ritualism_N : N ;
+fun ritualist_N : N ;
+fun ritualistic_A : A ;
+fun ritz_N : N ;
+fun ritzy_A : A ;
+fun rival_N : N ;
+fun rival_V : V ;
+fun rivalry_N : N ;
+fun rive_V : V ;
+fun river_N : N ;
+fun river_basin_N : N ;
+fun river_bed_N : N ;
+fun riverbank_N : N ;
+fun riverbed_N : N ;
+fun riverside_N : N ;
+fun rivet_N : N ;
+fun rivet_riveted_V : V ;
+fun rivet_rivetted_V : V ;
+fun riveter_N : N ;
+fun rivulet_N : N ;
+fun rivulus_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 roadbook_N : N ;
+fun roadhouse_N : N ;
+fun roadkill_N : N ;
+fun roadless_A : A ;
+fun roadman_N : N ;
+fun roadmender_N : N ;
+fun roadrunner_N : N ;
+fun roads_N : N ;
+fun roadside_N : N ;
+fun roadstead_N : N ;
+fun roadster_N : N ;
+fun roadway_N : N ;
+fun roadworthiness_N : N ;
+fun roadworthy_A : A ;
+fun roam_V : V ;
+fun roan_A : A ;
+fun roan_N : N ;
+fun roar_N : N ;
+fun roar_V : V ;
+fun roarer_N : N ;
+fun roaring_Adv : Adv ;
+fun roast_A : A ;
+fun roast_N : N ;
+fun roast_V : V ;
+fun roaster_N : N ;
+fun roasting_N : N ;
+fun rob_V : V ;
+fun robalo_N : N ;
+fun robber_N : N ;
+fun robbery_N : N ;
+fun robe_N : N ;
+fun robe_V : V ;
+fun robin_N : N ;
+fun roble_N : N ;
+fun robot_N : N ;
+fun robotic_A : A ;
+fun robotics_N : N ;
+fun robust_A : A ;
+fun robustness_N : N ;
+fun roc_N : N ;
+fun roccella_N : N ;
+fun rock_'n_roll_N : N ;
+fun rock_N : N ;
+fun rock_V : V ;
+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 rockabilly_N : N ;
+fun rocker_N : N ;
+fun rockers_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 rockfish_N : N ;
+fun rockiness_N : N ;
+fun rocking_chair_N : N ;
+fun rocking_horse_N : N ;
+fun rockrose_N : N ;
+fun rockslide_N : N ;
+fun rockweed_N : N ;
+fun rocky_A : A ;
+fun rococo_A : A ;
+fun rococo_N : N ;
+fun rod_N : N ;
+fun rodent_N : N ;
+fun rodeo_N : N ;
+fun rodomontade_N : N ;
+fun roe_N : N ;
+fun roebuck_N : N ;
+fun roentgen_N : N ;
+fun roentgenium_N : N ;
+fun roentgenogram_N : N ;
+fun roentgenographic_A : A ;
+fun roentgenography_N : N ;
+fun rofecoxib_N : N ;
+fun rogation_N : N ;
+fun rogue_N : N ;
+fun rogue_elephant_N : N ;
+fun roguery_N : N ;
+fun roguish_A : A ;
+fun roguishness_N : N ;
+fun roil_V : V ;
+fun roisterer_N : N ;
+fun role_N : N ;
+fun roleplaying_N : N ;
+fun roll_N : N ;
+fun roll_V : V ;
+fun roll_call_N : N ;
+fun roll_on_N : N ;
+fun rollback_N : N ;
+fun roller_N : N ;
+fun roller_skate_N : N ;
+fun rollerblader_N : N ;
+fun rollerblading_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 rollmops_N : N ;
+fun rollover_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 romantic_A : A ;
+fun romantic_N : N ;
+fun romantically_Adv : Adv ;
+fun romanticism_N : N ;
+fun romanticist_N : N ;
+fun romanticize_V : V ;
+fun romany_A : A ;
+fun romany_N : N ;
+fun romish_A : A ;
+fun romp_N : N ;
+fun romp_V : V ;
+fun romper_N : N ;
+fun rondeau_N : N ;
+fun rondel_N : N ;
+fun rondelet_N : N ;
+fun rondo_N : N ;
+fun roneo_N : N ;
+fun roneo_V : V ;
+fun rood_N : N ;
+fun rood_tree_N : N ;
+fun roof_N : N ;
+fun roof_V : V ;
+fun roof_garden_N : N ;
+fun roof_tree_N : N ;
+fun roofer_N : N ;
+fun roofing_N : N ;
+fun roofless_A : A ;
+fun rooftop_N : N ;
+fun rooibos_N : N ;
+fun rook_N : N ;
+fun rook_V : V ;
+fun rookery_N : N ;
+fun rookie_N : N ;
+fun room_N : N ;
+fun room_V : V ;
+fun room_mate_N : N ;
+fun roomer_N : N ;
+fun roomette_N : N ;
+fun roomful_N : N ;
+fun roommate_N : N ;
+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 rootage_N : N ;
+fun rootbound_A : A ;
+fun rooting_N : N ;
+fun rootle_V : V ;
+fun rootless_A : A ;
+fun rootlet_N : N ;
+fun roots_N : N ;
+fun rootstock_N : N ;
+fun rope_N : N ;
+fun rope_V : V ;
+fun rope_dancer_N : N ;
+fun rope_ladder_N : N ;
+fun rope_yard_N : N ;
+fun rope_yarn_N : N ;
+fun ropemaker_N : N ;
+fun roper_N : N ;
+fun ropewalk_N : N ;
+fun ropewalker_N : N ;
+fun ropeway_N : N ;
+fun ropey_A : A ;
+fun roping_N : N ;
+fun ropy_A : A ;
+fun roquefort_N : N ;
+fun roridula_N : N ;
+fun rorqual_N : N ;
+fun rosaceous_A : A ;
+fun rosary_N : N ;
+fun rose_A : A ;
+fun rose_N : N ;
+fun rose_V : V ;
+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 rosebay_N : N ;
+fun rosebud_N : N ;
+fun rosefish_N : N ;
+fun roselle_N : N ;
+fun rosemaling_N : N ;
+fun rosemary_N : N ;
+fun rosette_N : N ;
+fun rosewood_N : N ;
+fun rosilla_N : N ;
+fun rosin_N : N ;
+fun rosin_V : V ;
+fun rosinweed_N : N ;
+fun rosita_N : N ;
+fun roster_N : N ;
+fun rostrate_A : A ;
+fun rostrum_N : N ;
+fun rosy_A : A ;
+fun rot_N : N ;
+fun rot_V : V ;
+fun rota_N : N ;
+fun rotarian_N : N ;
+fun rotary_A : A ;
+fun rotary_N : N ;
+fun rotatable_A : A ;
+fun rotate_V : V ;
+fun rotation_N : N ;
+fun rotational_A : A ;
+fun rotatory_A : A ;
+fun rotavirus_N : N ;
+fun rote_N : N ;
+fun rotenone_N : N ;
+fun rotgut_N : N ;
+fun rotifer_N : N ;
+fun rotisserie_N : N ;
+fun rotl_N : N ;
+fun rotogravure_N : N ;
+fun rotor_N : N ;
+fun rotten_A : A ;
+fun rottenness_N : N ;
+fun rottenstone_N : N ;
+fun rotter_N : N ;
+fun rotund_A : A ;
+fun rotunda_N : N ;
+fun rotundity_N : N ;
+fun rouble_N : N ;
+fun rouge_N : N ;
+fun rouge_V : V ;
+fun rough_A : A ;
+fun rough_Adv : Adv ;
+fun rough_N : N ;
+fun rough_V : V ;
+fun rough_and_tumble_A : A ;
+fun rough_and_tumble_N : N ;
+fun rough_dry_V : V ;
+fun rough_hewn_A : A ;
+fun rough_house_V : V ;
+fun rough_spoken_A : A ;
+fun roughage_N : N ;
+fun roughcast_N : N ;
+fun roughcast_V : V ;
+fun roughdried_A : A ;
+fun roughen_V : V ;
+fun roughhewn_A : A ;
+fun roughish_A : A ;
+fun roughneck_N : N ;
+fun roughness_N : N ;
+fun roughrider_N : N ;
+fun roughshod_A : A ;
+fun roulade_N : N ;
+fun rouleau_N : N ;
+fun roulette_N : N ;
+fun round_A : A ;
+fun round_Adv : Adv ;
+fun round_N : N ;
+fun round_Prep : Prep ;
+fun round_V : V ;
+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 roundedness_N : N ;
+fun roundel_N : N ;
+fun roundelay_N : N ;
+fun rounder_N : N ;
+fun rounders_N : N ;
+fun roundhead_N : N ;
+fun roundhouse_N : N ;
+fun rounding_N : N ;
+fun roundish_A : A ;
+fun roundness_N : N ;
+fun roundsman_N : N ;
+fun roundup_N : N ;
+fun rouse_V : V ;
+fun rout_N : N ;
+fun rout_V : V ;
+fun route_N : N ;
+fun route_V : V ;
+fun routemarch_N : N ;
+fun router_N : N ;
+fun routine_A : A ;
+fun routine_N : N ;
+fun roux_N : N ;
+fun roué_N : N ;
+fun rove_V : V ;
+fun rover_N : N ;
+fun row_N : N ;
+fun row_V : V ;
+fun rowan_N : N ;
+fun rowan_berry_N : N ;
+fun rowan_tree_N : N ;
+fun rowanberry_N : N ;
+fun rowboat_N : N ;
+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 rowlock_N : N ;
+fun royal_A : A ;
+fun royal_N : N ;
+fun royalism_N : N ;
+fun royalist_N : N ;
+fun royalty_N : N ;
+fun rpm_N : N ;
+fun rspca_N : N ;
+fun rub_N : N ;
+fun rub_V : V ;
+fun rub_a_dub_N : N ;
+fun rub_down_N : N ;
+fun rub_up_N : N ;
+fun rubato_N : N ;
+fun rubber_A : A ;
+fun rubber_N : N ;
+fun rubber_V : V ;
+fun rubber_necking_V : V ;
+fun rubber_stamp_V : V ;
+fun rubberize_V : V ;
+fun rubberneck_N : N ;
+fun rubberneck_V : V ;
+fun rubbery_A : A ;
+fun rubbing_N : N ;
+fun rubbish_N : N ;
+fun rubbish_V : V ;
+fun rubbishing_N : N ;
+fun rubbishy_A : A ;
+fun rubble_N : N ;
+fun rubdown_N : N ;
+fun rubefacient_N : N ;
+fun rubel_N : N ;
+fun rubicelle_N : N ;
+fun rubicon_N : N ;
+fun rubicund_A : A ;
+fun rubidium_N : N ;
+fun ruble_N : N ;
+fun rubric_N : N ;
+fun ruby_A : A ;
+fun ruby_N : N ;
+fun ruck_N : N ;
+fun ruck_V : V ;
+fun rucksack_N : N ;
+fun ruckus_N : N ;
+fun rudapithecus_N : N ;
+fun rudd_N : N ;
+fun rudder_N : N ;
+fun rudderfish_N : N ;
+fun rudderless_A : A ;
+fun rudderpost_N : N ;
+fun ruddiness_N : N ;
+fun ruddle_N : N ;
+fun ruddle_V : V ;
+fun ruddy_A : A ;
+fun rude_A : A ;
+fun rudeness_N : N ;
+fun rudiment_N : N ;
+fun rudimentary_A : A ;
+fun rue_N : N ;
+fun rue_V : V ;
+fun rueful_A : A ;
+fun ruff_N : N ;
+fun ruff_V : V ;
+fun ruffian_N : N ;
+fun ruffianism_N : N ;
+fun ruffianly_A : A ;
+fun ruffle_N : N ;
+fun ruffle_V : V ;
+fun rug_N : N ;
+fun ruga_N : N ;
+fun rugby_N : N ;
+fun rugged_A : A ;
+fun ruggedization_N : N ;
+fun ruggedness_N : N ;
+fun rugger_N : N ;
+fun rugose_A : A ;
+fun rugulah_N : N ;
+fun ruin_N : N ;
+fun ruin_V : V ;
+fun ruination_N : N ;
+fun ruinous_A : A ;
+fun rule_N : N ;
+fun rule_V : V ;
+fun ruler_N : N ;
+fun rulership_N : N ;
+fun ruling_N : N ;
+fun ruly_A : A ;
+fun rum_N : N ;
+fun rum_runner_N : N ;
+fun rumba_N : N ;
+fun rumble_N : N ;
+fun rumble_V : V ;
+fun rumbling_N : N ;
+fun rumbustious_A : A ;
+fun rumen_N : N ;
+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 rummer_N : N ;
+fun rummy_A : A ;
+fun rummy_N : N ;
+fun rumor_N : N ;
+fun rumor_V : V ;
+fun rumour_N : N ;
+fun rumour_V : V ;
+fun rumour_monger_N : N ;
+fun rump_N : N ;
+fun rump_steak_N : N ;
+fun rumple_V : V ;
+fun rumpus_N : N ;
+fun rumrunner_N : N ;
+fun run_N : N ;
+fun run_of_the_mill_A : A ;
+fun run_off_N : N ;
+fun run_ran_V : V ;
+fun run_runned_V : V ;
+fun run_through_N : N ;
+fun run_up_N : N ;
+fun runaway_A : A ;
+fun runaway_N : N ;
+fun runcinate_A : A ;
+fun rundle_N : N ;
+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_N : N ;
+fun running_board_N : N ;
+fun runny_A : A ;
+fun runoff_N : N ;
+fun runproof_A : A ;
+fun runt_N : N ;
+fun runup_N : N ;
+fun runway_N : N ;
+fun rupee_N : N ;
+fun rupestral_A : A ;
+fun rupiah_N : N ;
+fun rupture_N : N ;
+fun rupture_V : V ;
+fun rupturewort_N : N ;
+fun rural_A : A ;
+fun ruralism_N : N ;
+fun ruralist_N : N ;
+fun rurality_N : N ;
+fun ruritanian_A : A ;
+fun ruse_N : N ;
+fun rush_N : N ;
+fun rush_V : V ;
+fun rusher_N : N ;
+fun rushlight_N : N ;
+fun rushlike_A : A ;
+fun rushy_A : A ;
+fun rusk_N : N ;
+fun russet_A : A ;
+fun russet_N : N ;
+fun rust_A : A ;
+fun rust_N : N ;
+fun rust_V : V ;
+fun rustic_A : A ;
+fun rustic_N : N ;
+fun rusticate_V : V ;
+fun rustication_N : N ;
+fun rusticity_N : N ;
+fun rustiness_N : N ;
+fun rustle_N : N ;
+fun rustle_V : V ;
+fun rustler_N : N ;
+fun rustless_A : A ;
+fun rustling_N : N ;
+fun rustproof_A : A ;
+fun rusty_A : A ;
+fun rut_N : N ;
+fun rut_V : V ;
+fun rutabaga_N : N ;
+fun ruthenium_N : N ;
+fun rutherford_N : N ;
+fun rutherfordium_N : N ;
+fun ruthless_A : A ;
+fun ruthlessness_N : N ;
+fun rutile_N : N ;
+fun rwandan_A : A ;
+fun rwandan_N : N ;
+fun rya_N : N ;
+fun rydberg_N : N ;
+fun rye_N : N ;
+fun rye_bread_N : N ;
+fun réchauffé_N : N ;
+fun régime_N : N ;
+fun résumé_N : N ;
+fun rôle_N : N ;
+fun röntgen_N : N ;
+fun sabahan_A : A ;
+fun sabahan_N : N ;
+fun sabbat_N : N ;
+fun sabbatarian_A : A ;
+fun sabbatarian_N : N ;
+fun sabbath_N : N ;
+fun sabbatia_N : N ;
+fun sabbatical_A : A ;
+fun sabbatical_N : N ;
+fun saber_N : N ;
+fun sabicu_N : N ;
+fun sabin_N : N ;
+fun sable_A : A ;
+fun sable_N : N ;
+fun sabot_N : N ;
+fun sabotage_N : N ;
+fun sabotage_V : V ;
+fun saboteur_N : N ;
+fun sabra_N : N ;
+fun sabre_N : N ;
+fun sabre_V : V ;
+fun sabre_rattling_N : N ;
+fun sabre_toothed_A : A ;
+fun sac_N : N ;
+fun saccade_N : N ;
+fun saccadic_A : A ;
+fun saccharin_N : N ;
+fun saccharine_A : A ;
+fun saccharinity_N : N ;
+fun sacculated_A : A ;
+fun saccule_N : N ;
+fun sacerdotal_A : A ;
+fun sacerdotalism_N : N ;
+fun sachem_N : N ;
+fun sachet_N : N ;
+fun sack_N : N ;
+fun sack_V : V ;
+fun sack_race_N : N ;
+fun sackbut_N : N ;
+fun sackcloth_N : N ;
+fun sacking_N : N ;
+fun sacral_A : A ;
+fun sacrament_N : N ;
+fun sacramental_A : A ;
+fun sacred_A : A ;
+fun sacredness_N : N ;
+fun sacrifice_N : N ;
+fun sacrifice_V : V ;
+fun sacrificeable_A : A ;
+fun sacrificer_N : N ;
+fun sacrificial_A : A ;
+fun sacrilege_N : N ;
+fun sacrilegious_A : A ;
+fun sacrilegiousness_N : N ;
+fun sacristan_N : N ;
+fun sacristy_N : N ;
+fun sacrosanct_A : A ;
+fun sacrum_N : N ;
+fun sad_A : A ;
+fun sadden_V : V ;
+fun saddle_N : N ;
+fun saddle_V : V ;
+fun saddle_sore_A : A ;
+fun saddleback_N : N ;
+fun saddlebag_N : N ;
+fun saddlebill_N : N ;
+fun saddler_N : N ;
+fun saddlery_N : N ;
+fun sadhe_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 sadomasochist_N : N ;
+fun sadomasochistic_A : A ;
+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 safebreaker_N : N ;
+fun safecracker_N : N ;
+fun safeguard_N : N ;
+fun safeguard_V : V ;
+fun safehold_N : N ;
+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 safflower_N : N ;
+fun saffron_N : N ;
+fun safranine_N : N ;
+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 sagebrush_N : N ;
+fun sagitta_N : N ;
+fun sagittal_A : A ;
+fun sagittate_A : A ;
+fun sago_N : N ;
+fun saguaro_N : N ;
+fun sahib_N : N ;
+fun saiga_N : N ;
+fun sail_N : N ;
+fun sail_V : V ;
+fun sailboat_N : N ;
+fun sailcloth_N : N ;
+fun sailfish_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 sailmaker_N : N ;
+fun sailor_N : N ;
+fun sainfoin_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_N : N ;
+fun saki_N : N ;
+fun saké_N : N ;
+fun sal_volatile_N : N ;
+fun salaam_N : N ;
+fun salaam_V : V ;
+fun salability_N : N ;
+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 salai_N : N ;
+fun salal_N : N ;
+fun salamander_N : N ;
+fun salamandriform_A : A ;
+fun salami_N : N ;
+fun salaried_A : A ;
+fun salary_N : N ;
+fun salat_N : N ;
+fun sale_N : N ;
+fun saleable_A : A ;
+fun saleroom_N : N ;
+fun salesclerk_N : N ;
+fun salesgirl_N : N ;
+fun salesman_N : N ;
+fun salesmanship_N : N ;
+fun salesperson_N : N ;
+fun saleswoman_N : N ;
+fun salicylate_N : N ;
+fun salience_N : N ;
+fun salient_A : A ;
+fun salient_N : N ;
+fun saliferous_A : A ;
+fun saline_A : A ;
+fun saline_N : N ;
+fun salinity_N : N ;
+fun salinometer_N : N ;
+fun saliva_N : N ;
+fun salivary_A : A ;
+fun salivate_V : V ;
+fun salivation_N : N ;
+fun sallet_N : N ;
+fun sallow_A : A ;
+fun sallow_N : N ;
+fun sallow_V : V ;
+fun sallowness_N : N ;
+fun sally_N : N ;
+fun sally_V : V ;
+fun salmagundi_N : N ;
+fun salmi_N : N ;
+fun salmon_N : N ;
+fun salmonberry_N : N ;
+fun salmonella_N : N ;
+fun salmonellosis_N : N ;
+fun salmonid_N : N ;
+fun salol_N : N ;
+fun salon_N : N ;
+fun saloon_N : N ;
+fun salp_N : N ;
+fun salpiglossis_N : N ;
+fun salpingectomy_N : N ;
+fun salpingitis_N : N ;
+fun salpinx_N : N ;
+fun salsa_N : N ;
+fun salsify_N : N ;
+fun salsilla_N : N ;
+fun salt_A : A ;
+fun salt_N : N ;
+fun salt_V : V ;
+fun salt_cellar_N : N ;
+fun salt_lick_N : N ;
+fun saltation_N : N ;
+fun saltbox_N : N ;
+fun saltbush_N : N ;
+fun saltcellar_N : N ;
+fun salter_N : N ;
+fun saltine_N : N ;
+fun saltiness_N : N ;
+fun salting_N : N ;
+fun saltish_A : A ;
+fun saltlike_A : A ;
+fun saltpan_N : N ;
+fun saltpetre_N : N ;
+fun saltshaker_N : N ;
+fun saltwater_N : N ;
+fun saltworks_N : N ;
+fun saltwort_N : N ;
+fun salty_A : A ;
+fun salubrious_A : A ;
+fun salubrity_N : N ;
+fun salutary_A : A ;
+fun salutation_N : N ;
+fun salutatorian_N : N ;
+fun salute_N : N ;
+fun salute_V : V ;
+fun salvadorean_A : A ;
+fun salvadorean_N : N ;
+fun salvage_N : N ;
+fun salvage_V : V ;
+fun salvageable_A : A ;
+fun salvager_N : N ;
+fun salvation_N : N ;
+fun salve_N : N ;
+fun salve_V : V ;
+fun salver_N : N ;
+fun salverform_A : A ;
+fun salvia_N : N ;
+fun salvific_A : A ;
+fun salvinorin_N : N ;
+fun salvo_N : N ;
+fun salwar_N : N ;
+fun samara_N : N ;
+fun samaritan_N : N ;
+fun samarium_N : N ;
+fun samarskite_N : N ;
+fun samba_N : N ;
+fun sambar_N : N ;
+fun sambuca_N : N ;
+fun same_A : A ;
+fun same_Adv : Adv ;
+fun samekh_N : N ;
+fun sameness_N : N ;
+fun samisen_N : N ;
+fun samite_N : N ;
+fun samizdat_N : N ;
+fun samoan_A : A ;
+fun samoan_N : N ;
+fun samosa_N : N ;
+fun samovar_N : N ;
+fun sampan_N : N ;
+fun sample_N : N ;
+fun sample_V : V ;
+fun sampler_N : N ;
+fun sampling_N : N ;
+fun samsara_N : N ;
+fun samurai_N : N ;
+fun san_marinese_A : A ;
+fun san_marinese_N : N ;
+fun sanatorium_N : N ;
+fun sanctification_N : N ;
+fun sanctify_V : V ;
+fun sanctimonious_A : A ;
+fun sanctimoniousness_N : N ;
+fun sanction_N : N ;
+fun sanction_V : V ;
+fun sanctionative_A : A ;
+fun sanctity_N : N ;
+fun sanctuary_N : N ;
+fun sanctum_N : N ;
+fun sand_N : N ;
+fun sand_V : V ;
+fun sand_bar_N : N ;
+fun sandal_N : N ;
+fun sandaled_A : A ;
+fun sandalled_A : A ;
+fun sandalwood_N : N ;
+fun sandarac_N : N ;
+fun sandbag_N : N ;
+fun sandbagger_N : N ;
+fun sandbank_N : N ;
+fun sandbar_N : N ;
+fun sandblast_N : N ;
+fun sandblast_V : V ;
+fun sandblaster_N : N ;
+fun sandbox_N : N ;
+fun sandboy_N : N ;
+fun sandbur_N : N ;
+fun sanderling_N : N ;
+fun sandfish_N : N ;
+fun sandfly_N : N ;
+fun sandglass_N : N ;
+fun sandgrouse_N : N ;
+fun sandhi_N : N ;
+fun sandiness_N : N ;
+fun sandlot_N : N ;
+fun sandman_N : N ;
+fun sandpaper_N : N ;
+fun sandpaper_V : V ;
+fun sandpapery_A : A ;
+fun sandpiper_N : N ;
+fun sandpit_N : N ;
+fun sandstone_N : N ;
+fun sandstorm_N : N ;
+fun sandwich_N : N ;
+fun sandwich_V : V ;
+fun sandwich_board_N : N ;
+fun sandwichman_N : N ;
+fun sandwort_N : N ;
+fun sandy_A : A ;
+fun sane_A : A ;
+fun sang_froid_N : N ;
+fun sangapenum_N : N ;
+fun sangaree_N : N ;
+fun sango_N : N ;
+fun sangoma_N : N ;
+fun sanguinary_A : A ;
+fun sanguine_A : A ;
+fun sanguine_N : N ;
+fun sanguinity_N : N ;
+fun sanicle_N : N ;
+fun sanitariness_N : N ;
+fun sanitary_A : A ;
+fun sanitation_N : N ;
+fun sanitize_V : V ;
+fun sanity_N : N ;
+fun sannup_N : N ;
+fun sannyasi_N : N ;
+fun sans_Prep : Prep ;
+fun sansevieria_N : N ;
+fun sanskrit_N : N ;
+fun santa_claus_N : N ;
+fun santims_N : N ;
+fun sap_N : N ;
+fun sap_V : V ;
+fun saphead_N : N ;
+fun sapidity_N : N ;
+fun sapience_N : N ;
+fun sapiens_A : A ;
+fun sapient_A : A ;
+fun sapiential_A : A ;
+fun sapless_A : A ;
+fun sapling_N : N ;
+fun sapodilla_N : N ;
+fun saponaceous_A : A ;
+fun saponification_N : N ;
+fun saponified_A : A ;
+fun saponin_N : N ;
+fun sapote_N : N ;
+fun sapper_N : N ;
+fun sapphic_A : A ;
+fun sapphire_A : A ;
+fun sapphire_N : N ;
+fun sapphirine_A : A ;
+fun sapphirine_N : N ;
+fun sappy_A : A ;
+fun sapremia_N : N ;
+fun saprobe_N : N ;
+fun saprobic_A : A ;
+fun saprolite_N : N ;
+fun sapropel_N : N ;
+fun saprophagous_A : A ;
+fun saprophyte_N : N ;
+fun saprophytic_A : A ;
+fun sapsago_N : N ;
+fun sapsucker_N : N ;
+fun sapwood_N : N ;
+fun saquinavir_N : N ;
+fun saraband_N : N ;
+fun saracen_N : N ;
+fun saran_N : N ;
+fun sarawakian_A : A ;
+fun sarawakian_N : N ;
+fun sarcasm_N : N ;
+fun sarcastic_A : A ;
+fun sarcastically_Adv : Adv ;
+fun sarcenet_N : N ;
+fun sarcodinian_N : N ;
+fun sarcoidosis_N : N ;
+fun sarcolemma_N : N ;
+fun sarcolemmal_A : A ;
+fun sarcolemmic_A : A ;
+fun sarcoma_N : N ;
+fun sarcomere_N : N ;
+fun sarcophagus_N : N ;
+fun sarcoplasm_N : N ;
+fun sarcosine_N : N ;
+fun sarcosomal_A : A ;
+fun sarcosome_N : N ;
+fun sarcosporidian_N : N ;
+fun sard_N : N ;
+fun sardine_N : N ;
+fun sardonic_A : A ;
+fun sardonically_Adv : Adv ;
+fun sardonyx_N : N ;
+fun sari_N : N ;
+fun sarin_N : N ;
+fun sarong_N : N ;
+fun sarsaparilla_N : N ;
+fun sartorial_A : A ;
+fun sartorius_N : N ;
+fun sash_N : N ;
+fun sash_cord_N : N ;
+fun sash_line_N : N ;
+fun sashay_N : N ;
+fun sashimi_N : N ;
+fun saskatoon_N : N ;
+fun sass_N : N ;
+fun sassaby_N : N ;
+fun sassafras_N : N ;
+fun sassenach_N : N ;
+fun sat_V : V ;
+fun satan_N : N ;
+fun satang_N : N ;
+fun satanic_A : A ;
+fun satanophobia_N : N ;
+fun satchel_N : N ;
+fun sate_V : V ;
+fun sateen_N : N ;
+fun satellite_A : A ;
+fun satellite_N : N ;
+fun satiable_A : A ;
+fun satiate_A : A ;
+fun satiate_V : V ;
+fun satiation_N : N ;
+fun satiety_N : N ;
+fun satin_A : A ;
+fun satin_N : N ;
+fun satinet_N : N ;
+fun satinleaf_N : N ;
+fun satinwood_N : N ;
+fun satiny_A : A ;
+fun satire_N : N ;
+fun satirical_A : A ;
+fun satirist_N : N ;
+fun satirize_V : V ;
+fun satisfaction_N : N ;
+fun satisfactoriness_N : N ;
+fun satisfactory_A : A ;
+fun satisfied_A : A ;
+fun satisfier_N : N ;
+fun satisfy_V : V ;
+fun satori_N : N ;
+fun satrap_N : N ;
+fun satsuma_N : N ;
+fun saturate_V : V ;
+fun saturation_N : N ;
+fun saturnalia_N : N ;
+fun saturniid_N : N ;
+fun saturnine_A : A ;
+fun satyr_N : N ;
+fun satyriasis_N : N ;
+fun satyric_A : A ;
+fun sauce_N : N ;
+fun sauce_V : V ;
+fun sauce_boat_N : N ;
+fun saucepan_N : N ;
+fun saucepot_N : N ;
+fun saucer_N : N ;
+fun saucer_eyed_A : A ;
+fun sauciness_N : N ;
+fun saucy_A : A ;
+fun saudi_arabian_A : A ;
+fun saudi_arabian_N : N ;
+fun sauerbraten_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 saurischian_N : N ;
+fun sauropod_N : N ;
+fun saury_N : N ;
+fun sausage_N : N ;
+fun sausage_dog_N : N ;
+fun sausage_meat_N : N ;
+fun sausage_roll_N : N ;
+fun saute_N : N ;
+fun sauté_A : A ;
fun sauté_V : V ;
-fun appliqué_V : V ;
+fun savage_A : A ;
+fun savage_N : N ;
+fun savage_V : V ;
+fun savageness_N : N ;
+fun savagery_N : N ;
+fun savanna_N : N ;
+fun savannah_N : N ;
+fun savant_N : N ;
+fun savarin_N : N ;
+fun save_N : N ;
+fun save_V : V ;
+fun saveloy_N : N ;
+fun saver_N : N ;
+fun saving_N : N ;
+fun savings_N : N ;
+fun savings_bank_N : N ;
+fun savior_N : N ;
+fun saviour_N : N ;
+fun savoir_faire_N : N ;
+fun savore_V : V ;
+fun savory_A : A ;
+fun savory_N : N ;
+fun savour_N : N ;
+fun savour_V : V ;
+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_pit_N : N ;
+fun saw_sawed_V : V ;
+fun saw_sawn_V : V ;
+fun sawdust_N : N ;
+fun sawfish_N : N ;
+fun sawfly_N : N ;
+fun sawhorse_N : N ;
+fun sawm_N : N ;
+fun sawmill_N : N ;
+fun sawpit_N : N ;
+fun sawtooth_N : N ;
+fun sawwort_N : N ;
+fun sawyer_N : N ;
+fun sax_N : N ;
+fun saxhorn_N : N ;
+fun saxicolous_A : A ;
+fun saxifrage_N : N ;
+fun saxitoxin_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 saying_N : N ;
+fun scab_N : N ;
+fun scabbard_N : N ;
+fun scabby_A : A ;
+fun scabicide_N : N ;
+fun scabies_N : N ;
+fun scabious_N : N ;
+fun scablands_N : N ;
+fun scabrous_A : A ;
+fun scad_N : N ;
+fun scaffold_N : N ;
+fun scaffolding_N : N ;
+fun scalability_N : N ;
+fun scalable_A : A ;
+fun scalage_N : N ;
+fun scalar_A : A ;
+fun scalar_N : N ;
+fun scalawag_N : N ;
+fun scald_N : N ;
+fun scald_V : V ;
+fun scale_N : N ;
+fun scale_V : V ;
+fun scaleless_A : A ;
+fun scalelike_A : A ;
+fun scalene_A : A ;
+fun scalenus_N : N ;
+fun scaler_N : N ;
+fun scalic_A : A ;
+fun scaliness_N : N ;
+fun scaling_N : N ;
+fun scaling_ladder_N : N ;
+fun scallop_N : N ;
+fun scallop_V : V ;
+fun scallop_shell_N : N ;
+fun scallopine_N : N ;
+fun scallywag_N : N ;
+fun scalp_N : N ;
+fun scalp_V : V ;
+fun scalpel_N : N ;
+fun scalper_N : N ;
+fun scaly_A : A ;
+fun scam_N : N ;
+fun scam_V : V ;
+fun scammony_N : N ;
+fun scamp_N : N ;
+fun scamp_V : V ;
+fun scamper_N : N ;
+fun scamper_V : V ;
+fun scampi_N : N ;
+fun scan_N : N ;
+fun scan_V : V ;
+fun scandal_N : N ;
+fun scandalization_N : N ;
+fun scandalize_V : V ;
+fun scandalmonger_N : N ;
+fun scandalmongering_A : A ;
+fun scandalmongering_N : N ;
+fun scandalous_A : A ;
+fun scandalousness_N : N ;
+fun scandent_A : A ;
+fun scandium_N : N ;
+fun scanner_N : N ;
+fun scanning_N : N ;
+fun scansion_N : N ;
+fun scant_A : A ;
+fun scant_V : V ;
+fun scantiness_N : N ;
+fun scantling_N : N ;
+fun scanty_A : A ;
+fun scape_N : N ;
+fun scapegoat_N : N ;
+fun scapegrace_N : N ;
+fun scaphocephaly_N : N ;
+fun scaphopod_N : N ;
+fun scapose_A : A ;
+fun scapula_N : N ;
+fun scapular_A : A ;
+fun scapular_N : N ;
+fun scapulohumeral_A : A ;
+fun scar_N : N ;
+fun scar_V : V ;
+fun scarab_N : N ;
+fun scarce_A : A ;
+fun scarcity_N : N ;
+fun scare_N : N ;
+fun scare_V : V ;
+fun scarecrow_N : N ;
+fun scarecrowish_A : A ;
+fun scaremonger_N : N ;
+fun scarf_N : N ;
+fun scarf_V : V ;
+fun scarf_pin_N : N ;
+fun scarify_V : V ;
+fun scarlet_A : A ;
+fun scarlet_N : N ;
+fun scarp_N : N ;
+fun scarper_V : V ;
+fun scary_A : A ;
+fun scat_N : N ;
+fun scathing_A : A ;
+fun scatological_A : A ;
+fun scatology_N : N ;
+fun scatophagy_N : N ;
+fun scatter_N : N ;
+fun scatter_V : V ;
+fun scatterbrain_N : N ;
+fun scatterbrained_A : A ;
+fun scattering_N : N ;
+fun scattershot_A : A ;
+fun scatty_A : A ;
+fun scaup_N : N ;
+fun scauper_N : N ;
+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 sceneshifter_N : N ;
+fun scenic_A : A ;
+fun scenically_Adv : Adv ;
+fun scent_N : N ;
+fun scent_V : V ;
+fun scentless_A : A ;
+fun scepter_N : N ;
+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 scheduler_N : N ;
+fun scheduling_N : N ;
+fun scheelite_N : N ;
+fun schema_N : N ;
+fun schematic_A : A ;
+fun schematic_N : N ;
+fun schematically_Adv : Adv ;
+fun schematization_N : N ;
+fun scheme_N : N ;
+fun scheme_V : V ;
+fun schemer_N : N ;
+fun schemozzle_N : N ;
+fun scherzo_N : N ;
+fun schilling_N : N ;
+fun schipperke_N : N ;
+fun schism_N : N ;
+fun schismatic_A : A ;
+fun schismatically_Adv : Adv ;
+fun schist_N : N ;
+fun schistosome_N : N ;
+fun schistosomiasis_N : N ;
+fun schizocarp_N : N ;
+fun schizogony_N : N ;
+fun schizoid_A : A ;
+fun schizopetalon_N : N ;
+fun schizophrenia_N : N ;
+fun schizophrenic_A : A ;
+fun schizophrenic_N : N ;
+fun schizothymia_N : N ;
+fun schlemiel_N : N ;
+fun schlep_N : N ;
+fun schlepper_N : N ;
+fun schlimazel_N : N ;
+fun schlock_N : N ;
+fun schlockmeister_N : N ;
+fun schmaltz_N : N ;
+fun schmaltzy_A : A ;
+fun schmalz_N : N ;
+fun schmalzy_A : A ;
+fun schmeer_N : N ;
+fun schmuck_N : N ;
+fun schnapps_N : N ;
+fun schnauzer_N : N ;
+fun schnitzel_N : N ;
+fun schnook_N : N ;
+fun schnorkel_N : N ;
+fun schnorrer_N : N ;
+fun scholar_N : N ;
+fun scholarly_A : A ;
+fun scholarship_N : N ;
+fun scholastic_A : A ;
+fun scholastically_Adv : Adv ;
+fun scholasticism_N : N ;
+fun scholiast_N : N ;
+fun scholium_N : N ;
+fun school_N : N ;
+fun school_V : V ;
+fun school_board_N : N ;
+fun schoolbag_N : N ;
+fun schoolbook_N : N ;
+fun schoolboy_N : N ;
+fun schoolchild_N : N ;
+fun schooldays_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 schoolmarm_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 schoolwide_A : A ;
+fun schoolyard_N : N ;
+fun schooner_N : N ;
+fun schorl_N : N ;
+fun schottische_N : N ;
+fun schrod_N : N ;
+fun schwa_N : N ;
+fun sci_fi_N : N ;
+fun sciatic_A : A ;
+fun sciatica_N : N ;
+fun science_N : N ;
+fun scienter_Adv : Adv ;
+fun scientific_A : A ;
+fun scientifically_Adv : Adv ;
+fun scientist_N : N ;
+fun scilla_N : N ;
+fun scimitar_N : N ;
+fun scintilla_N : N ;
+fun scintillate_V : V ;
+fun scintillation_N : N ;
+fun sciolism_N : N ;
+fun scion_N : N ;
+fun scission_N : N ;
+fun scissors_N : N ;
+fun scissortail_N : N ;
+fun sclaff_N : N ;
+fun sclera_N : N ;
+fun scleredema_N : N ;
+fun sclerite_N : N ;
+fun scleritis_N : N ;
+fun scleroderma_N : N ;
+fun sclerometer_N : N ;
+fun scleroprotein_N : N ;
+fun sclerosis_N : N ;
+fun sclerotic_A : A ;
+fun sclerotinia_N : N ;
+fun sclerotium_N : N ;
+fun sclerotomy_N : N ;
+fun scoff_N : N ;
+fun scoff_V : V ;
+fun scoffer_N : N ;
+fun scoffingly_Adv : Adv ;
+fun scofflaw_N : N ;
+fun scold_N : N ;
+fun scold_V : V ;
+fun scolding_N : N ;
+fun scolion_N : N ;
+fun scoliosis_N : N ;
+fun scollop_N : N ;
+fun scollop_V : V ;
+fun scolopendrium_N : N ;
+fun scombroid_N : N ;
+fun sconce_N : N ;
+fun scone_N : N ;
+fun scoop_N : N ;
+fun scoop_V : V ;
+fun scoopful_N : N ;
+fun scoot_V : V ;
+fun scooter_N : N ;
+fun scopal_A : A ;
+fun scope_N : N ;
+fun scopolamine_N : N ;
+fun scorbutic_A : A ;
+fun scorch_N : N ;
+fun scorch_V : V ;
+fun scorcher_N : N ;
+fun scorching_Adv : Adv ;
+fun score_N : N ;
+fun score_V : V ;
+fun scoreboard_N : N ;
+fun scorebook_N : N ;
+fun scorecard_N : N ;
+fun scorekeeper_N : N ;
+fun scoreless_A : A ;
+fun scorer_N : N ;
+fun scorn_N : N ;
+fun scorn_V : V ;
+fun scornful_A : A ;
+fun scorpaenid_N : N ;
+fun scorpaenoid_N : N ;
+fun scorpion_N : N ;
+fun scorpionfish_N : N ;
+fun scorpionweed_N : N ;
+fun scorzonera_N : N ;
+fun scot_N : N ;
+fun scot_free_Adv : Adv ;
+fun scotch_A : A ;
+fun scotch_N : N ;
+fun scotch_V : V ;
+fun scotchman_N : N ;
+fun scotchwoman_N : N ;
+fun scoter_N : N ;
+fun scotoma_N : N ;
+fun scotomatous_A : A ;
+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 scourer_N : N ;
+fun scourge_N : N ;
+fun scourge_V : V ;
+fun scouring_N : N ;
+fun scours_N : N ;
+fun scout_N : N ;
+fun scout_V : V ;
+fun scouting_N : N ;
+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 scrabbly_A : A ;
+fun scrag_N : N ;
+fun scrag_V : V ;
+fun scrag_end_N : N ;
+fun scraggly_A : A ;
+fun scraggy_A : A ;
+fun scram_V : V ;
+fun scramble_N : N ;
+fun scramble_V : V ;
+fun scrambler_N : N ;
+fun scrap_N : N ;
+fun scrap_V : V ;
+fun scrap_iron_N : N ;
+fun scrapbook_N : N ;
+fun scrape_N : N ;
+fun scrape_V : V ;
+fun scraper_N : N ;
+fun scrapheap_N : N ;
+fun scrapie_N : N ;
+fun scraping_N : N ;
+fun scrappiness_N : N ;
+fun scrapple_N : N ;
+fun scrappy_A : A ;
+fun scratch_N : N ;
+fun scratch_V : V ;
+fun scratch_pad_N : N ;
+fun scratch_race_N : N ;
+fun scratcher_N : N ;
+fun scratchpad_N : N ;
+fun scratchy_A : A ;
+fun scrawl_N : N ;
+fun scrawl_V : V ;
+fun scrawler_N : N ;
+fun scrawniness_N : N ;
+fun scrawny_A : A ;
+fun screaky_A : A ;
+fun scream_N : N ;
+fun scream_V : V ;
+fun screamer_N : N ;
+fun screamingly_Adv : Adv ;
+fun scree_N : N ;
+fun screech_N : N ;
+fun screech_V : V ;
+fun screech_owl_N : N ;
+fun screed_N : N ;
+fun screen_N : N ;
+fun screen_V : V ;
+fun screener_N : N ;
+fun screening_N : N ;
+fun screenplay_N : N ;
+fun screenwriter_N : N ;
+fun screw_N : N ;
+fun screw_V : V ;
+fun screw_topped_A : A ;
+fun screwball_A : A ;
+fun screwball_N : N ;
+fun screwballer_N : N ;
+fun screwdriver_N : N ;
+fun screwtop_N : N ;
+fun screwup_N : N ;
+fun screwy_A : A ;
+fun scribble_N : N ;
+fun scribble_V : V ;
+fun scribbler_N : N ;
+fun scribbling_block_N : N ;
+fun scribe_N : N ;
+fun scriber_N : N ;
+fun scrim_N : N ;
+fun scrimmage_N : N ;
+fun scrimmage_V : V ;
+fun scrimp_V : V ;
+fun scrimshank_V : V ;
+fun scrimshanker_N : N ;
+fun scrimshaw_N : N ;
+fun scrimy_A : A ;
+fun scrip_N : N ;
+fun script_N : N ;
+fun scripted_A : A ;
+fun scriptorium_N : N ;
+fun scriptural_A : A ;
+fun scripture_N : N ;
+fun scriptwriter_N : N ;
+fun scrivened_A : A ;
+fun scrivener_N : N ;
+fun scrod_N : N ;
+fun scrofula_N : N ;
+fun scrofulous_A : A ;
+fun scroll_N : N ;
+fun scrooge_N : N ;
+fun scrotal_A : A ;
+fun scrotum_N : N ;
+fun scrounge_V : V ;
+fun scrounger_N : N ;
+fun scrub_A : A ;
+fun scrub_N : N ;
+fun scrub_V : V ;
+fun scrubber_N : N ;
+fun scrubbing_brush_N : N ;
+fun scrubbird_N : N ;
+fun scrubby_A : A ;
+fun scrubland_N : N ;
+fun scruff_N : N ;
+fun scruffy_A : A ;
+fun scrum_N : N ;
+fun scrummage_N : N ;
+fun scrumptious_A : A ;
+fun scrumpy_N : N ;
+fun scrunch_N : N ;
+fun scrunch_V : V ;
+fun scruple_N : N ;
+fun scruple_V : V ;
+fun scrupulous_A : A ;
+fun scrupulousness_N : N ;
+fun scrutineer_N : N ;
+fun scrutinize_V : V ;
+fun scrutinizer_N : N ;
+fun scrutiny_N : N ;
+fun scud_N : N ;
+fun scud_V : V ;
+fun scuff_N : N ;
+fun scuff_V : V ;
+fun scuffer_N : N ;
+fun scuffle_N : N ;
+fun scuffle_V : V ;
+fun scull_N : N ;
+fun scull_V : V ;
+fun sculler_N : N ;
+fun scullery_N : N ;
+fun sculling_N : N ;
+fun scullion_N : N ;
+fun sculpin_N : N ;
+fun sculpt_V : V ;
+fun sculptor_N : N ;
+fun sculptress_N : N ;
+fun sculptural_A : A ;
+fun sculpture_N : N ;
+fun sculpture_V : V ;
+fun scum_N : N ;
+fun scumble_N : N ;
+fun scummy_A : A ;
+fun scunner_N : N ;
+fun scup_N : N ;
+fun scupper_N : N ;
+fun scupper_V : V ;
+fun scuppernong_N : N ;
+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 scute_N : N ;
+fun scuttle_N : N ;
+fun scuttle_V : V ;
+fun scylla_N : N ;
+fun scyphozoan_N : N ;
+fun scyphus_N : N ;
+fun scythe_N : N ;
+fun scythe_V : V ;
+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 seabag_N : N ;
+fun seabed_N : N ;
+fun seabird_N : N ;
+fun seaboard_N : N ;
+fun seaborgium_N : N ;
+fun seaborne_A : A ;
+fun seafarer_N : N ;
+fun seafaring_A : A ;
+fun seafaring_N : N ;
+fun seafood_N : N ;
+fun seafront_N : N ;
+fun seagirt_A : A ;
+fun seagoing_A : A ;
+fun seagrass_N : N ;
+fun seagull_N : N ;
+fun seahorse_N : N ;
+fun seakale_N : N ;
+fun seal_N : N ;
+fun seal_V : V ;
+fun seal_ring_N : N ;
+fun sealant_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_V : V ;
+fun seaman_N : N ;
+fun seamanlike_A : A ;
+fun seamanship_N : N ;
+fun seamless_A : A ;
+fun seamount_N : N ;
+fun seamstress_N : N ;
+fun seamy_A : A ;
+fun seaplane_N : N ;
+fun seaport_N : N ;
+fun seaquake_N : N ;
+fun sear_A : A ;
+fun sear_V : V ;
+fun search_N : N ;
+fun search_V : V ;
+fun search_party_N : N ;
+fun search_warrant_N : N ;
+fun searcher_N : N ;
+fun searchingly_Adv : Adv ;
+fun searchlight_N : N ;
+fun searing_A : A ;
+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 seasnail_N : N ;
+fun season_N : N ;
+fun season_V : V ;
+fun season_ticket_N : N ;
+fun seasonable_A : A ;
+fun seasonableness_N : N ;
+fun seasonal_A : A ;
+fun seasoner_N : N ;
+fun seasoning_N : N ;
+fun seat_N : N ;
+fun seat_V : V ;
+fun seat_belt_N : N ;
+fun seating_N : N ;
+fun seating_room_N : N ;
+fun seaward_A : A ;
+fun seaward_Adv : Adv ;
+fun seaward_N : N ;
+fun seawards_Adv : Adv ;
+fun seawater_N : N ;
+fun seaway_N : N ;
+fun seaweed_N : N ;
+fun seaworthiness_N : N ;
+fun seaworthy_A : A ;
+fun seborrhea_N : N ;
+fun sebum_N : N ;
+fun sec_A : A ;
+fun sec_N : N ;
+fun secant_N : N ;
+fun secateurs_N : N ;
+fun secede_V : V ;
+fun secession_N : N ;
+fun secessionism_N : N ;
+fun secessionist_N : N ;
+fun seckel_N : N ;
+fun seclude_V : V ;
+fun seclusion_N : N ;
+fun second_N : N ;
+fun second_V : V ;
+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_V : V ;
+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 secondary_N : N ;
+fun seconder_N : N ;
+fun secondhand_A : A ;
+fun secondhand_Adv : Adv ;
+fun secondment_N : N ;
+fun secondo_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 secretaryship_N : N ;
+fun secretase_N : N ;
+fun secrete_V : V ;
+fun secretin_N : N ;
+fun secretion_N : N ;
+fun secretive_A : A ;
+fun secretiveness_N : N ;
+fun secretory_A : A ;
+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 sectional_N : N ;
+fun sectionalism_N : N ;
+fun sector_N : N ;
+fun sectorial_A : A ;
+fun secular_A : A ;
+fun secularism_N : N ;
+fun secularist_N : N ;
+fun secularization_N : N ;
+fun secularize_V : V ;
+fun secundigravida_N : N ;
+fun secure_A : A ;
+fun secure_V : V ;
+fun secureness_N : N ;
+fun security_N : N ;
+fun sedan_N : N ;
+fun sedan_chair_N : N ;
+fun sedate_A : A ;
+fun sedate_V : V ;
+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_V : V ;
+fun seducer_N : N ;
+fun seduction_N : N ;
+fun seductive_A : A ;
+fun seductress_N : N ;
+fun sedulity_N : N ;
+fun sedulous_A : A ;
+fun sedum_N : N ;
+fun see_N : N ;
+fun see_V : V ;
+fun see_through_A : A ;
+fun seed_N : N ;
+fun seed_V : V ;
+fun seed_corn_N : N ;
+fun seedbed_N : N ;
+fun seedcake_N : N ;
+fun seeder_N : N ;
+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_N : N ;
+fun seek_seeked_V : V ;
+fun seek_sought_V : V ;
+fun seeker_N : N ;
+fun seeking_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 segment_N : N ;
+fun segment_V : V ;
+fun segmental_A : A ;
+fun segmentation_N : N ;
+fun segno_N : N ;
+fun segregate_N : N ;
+fun segregate_V : V ;
+fun segregation_N : N ;
+fun segregationism_N : N ;
+fun segregator_N : N ;
+fun segue_N : N ;
+fun seiche_N : N ;
+fun seidel_N : N ;
+fun seigneury_N : N ;
+fun seignior_N : N ;
+fun seigniorage_N : N ;
+fun seigniory_N : N ;
+fun seine_N : N ;
+fun seine_V : V ;
+fun seismic_A : A ;
+fun seismogram_N : N ;
+fun seismograph_N : N ;
+fun seismography_N : N ;
+fun seismological_A : A ;
+fun seismologist_N : N ;
+fun seismology_N : N ;
+fun seize_V : V ;
+fun seizing_N : N ;
+fun seizure_N : N ;
+fun seldom_Adv : Adv ;
+fun select_A : A ;
+fun select_V : V ;
+fun selection_N : N ;
+fun selective_A : A ;
+fun selectivity_N : N ;
+fun selectman_N : N ;
+fun selector_N : N ;
+fun selectwoman_N : N ;
+fun selenium_N : N ;
+fun selenology_N : N ;
+fun self_A : A ;
+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 selflessness_N : N ;
+fun selfsameness_N : N ;
+fun sell_N : N ;
+fun sell_selled_V : V ;
+fun sell_sold_V : V ;
+fun seller_N : N ;
+fun selling_N : N ;
+fun selloff_N : N ;
+fun sellout_N : N ;
+fun selsyn_N : N ;
+fun seltzer_N : N ;
+fun selvage_N : N ;
+fun selvedge_N : N ;
+fun semantic_A : A ;
+fun semantically_Adv : Adv ;
+fun semanticist_N : N ;
+fun semantics_N : N ;
+fun semaphore_N : N ;
+fun semaphore_V : V ;
+fun semblance_N : N ;
+fun semen_N : N ;
+fun semester_N : N ;
+fun semestral_A : A ;
+fun semiabstract_A : A ;
+fun semiannual_A : A ;
+fun semiaquatic_A : A ;
+fun semiarid_A : A ;
+fun semiautobiographical_A : A ;
+fun semiautomatic_A : A ;
+fun semibreve_N : N ;
+fun semicentennial_A : A ;
+fun semicentennial_N : N ;
+fun semicircle_N : N ;
+fun semicircular_A : A ;
+fun semicolon_N : N ;
+fun semicoma_N : N ;
+fun semicomatose_A : A ;
+fun semiconducting_A : A ;
+fun semiconductor_N : N ;
+fun semiconscious_A : A ;
+fun semidark_A : A ;
+fun semidarkness_N : N ;
+fun semidesert_N : N ;
+fun semidetached_A : A ;
+fun semidiameter_N : N ;
+fun semiempirical_A : A ;
+fun semifinal_N : N ;
+fun semifinalist_N : N ;
+fun semifluidity_N : N ;
+fun semiformal_A : A ;
+fun semigloss_N : N ;
+fun semihard_A : A ;
+fun semiliquid_A : A ;
+fun semiliterate_A : A ;
+fun semimonthly_A : A ;
+fun semimonthly_Adv : Adv ;
+fun semimonthly_N : N ;
+fun seminal_A : A ;
+fun seminar_N : N ;
+fun seminarian_N : N ;
+fun seminarist_N : N ;
+fun seminary_N : N ;
+fun seminiferous_A : A ;
+fun seminoma_N : N ;
+fun seminude_A : A ;
+fun semiofficial_A : A ;
+fun semiopaque_A : A ;
+fun semiotic_A : A ;
+fun semiotics_N : N ;
+fun semiparasitic_A : A ;
+fun semipermeable_A : A ;
+fun semipolitical_A : A ;
+fun semiprecious_A : A ;
+fun semiprivate_A : A ;
+fun semiprofessional_N : N ;
+fun semipublic_A : A ;
+fun semiquaver_N : N ;
+fun semirigid_A : A ;
+fun semisolid_A : A ;
+fun semite_A : A ;
+fun semite_N : N ;
+fun semiterrestrial_A : A ;
+fun semitic_A : A ;
+fun semitone_N : N ;
+fun semitrailer_N : N ;
+fun semitrance_N : N ;
+fun semitropical_A : A ;
+fun semivowel_N : N ;
+fun semiweekly_A : A ;
+fun semiweekly_Adv : Adv ;
+fun semiweekly_N : N ;
+fun semolina_N : N ;
+fun sempstress_N : N ;
+fun sen_N : N ;
+fun senate_N : N ;
+fun senator_N : N ;
+fun senatorial_A : A ;
+fun senatorship_N : N ;
+fun send_V : V ;
+fun send_up_N : N ;
+fun sendee_N : N ;
+fun sender_N : N ;
+fun sending_N : N ;
+fun sendoff_N : N ;
+fun sene_N : N ;
+fun senega_N : N ;
+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 seniti_N : N ;
+fun senna_N : N ;
+fun sennit_N : N ;
+fun senora_N : N ;
+fun senorita_N : N ;
+fun sensate_A : A ;
+fun sensation_N : N ;
+fun sensational_A : A ;
+fun sensationalism_N : N ;
+fun sensationalist_N : N ;
+fun sense_N : N ;
+fun sense_V : V ;
+fun sense_organ_N : N ;
+fun senseless_A : A ;
+fun senselessness_N : N ;
+fun sensibility_N : N ;
+fun sensible_A : A ;
+fun sensibleness_N : N ;
+fun sensing_N : N ;
+fun sensitive_A : A ;
+fun sensitivity_N : N ;
+fun sensitization_N : N ;
+fun sensitize_V : V ;
+fun sensitizer_N : N ;
+fun sensitizing_A : A ;
+fun sensitizing_N : N ;
+fun sensitometer_N : N ;
+fun sensorimotor_A : A ;
+fun sensorineural_A : A ;
+fun sensorium_N : N ;
+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 sent_N : N ;
+fun sente_N : N ;
+fun sentence_N : N ;
+fun sentence_V : V ;
+fun sentential_A : A ;
+fun sententious_A : A ;
+fun sentience_N : N ;
+fun sentient_A : A ;
+fun sentiment_N : N ;
+fun sentimental_A : A ;
+fun sentimentalism_N : N ;
+fun sentimentalist_N : N ;
+fun sentimentality_N : N ;
+fun sentimentalization_N : N ;
+fun sentimentalize_V : V ;
+fun sentinel_N : N ;
+fun sentry_N : N ;
+fun sentry_box_N : N ;
+fun sentry_go_N : N ;
+fun sepal_N : N ;
+fun sepaloid_A : A ;
+fun separability_N : N ;
+fun separable_A : A ;
+fun separate_A : A ;
+fun separate_N : N ;
+fun separate_V : V ;
+fun separateness_N : N ;
+fun separation_N : N ;
+fun separationism_N : N ;
+fun separatism_N : N ;
+fun separatist_N : N ;
+fun separative_A : A ;
+fun separator_N : N ;
+fun sepia_N : N ;
+fun sepsis_N : N ;
+fun septal_A : A ;
+fun septation_N : N ;
+fun septectomy_N : N ;
+fun septet_N : N ;
+fun septic_A : A ;
+fun septicaemia_N : N ;
+fun septicemia_N : N ;
+fun septicemic_A : A ;
+fun septillion_N : N ;
+fun septrional_A : A ;
+fun septuagenarian_N : N ;
+fun septuagint_N : N ;
+fun septum_N : N ;
+fun septuple_A : A ;
+fun sepulchral_A : A ;
+fun sepulchre_N : N ;
+fun sepulture_N : N ;
+fun sequel_N : N ;
+fun sequela_N : N ;
+fun sequella_N : N ;
+fun sequence_N : N ;
+fun sequencer_N : N ;
+fun sequent_A : A ;
+fun sequential_A : A ;
+fun sequester_V : V ;
+fun sequestrate_V : V ;
+fun sequestration_N : N ;
+fun sequin_N : N ;
+fun sequoia_N : N ;
+fun seraglio_N : N ;
+fun serape_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_V : V ;
+fun serendipitous_A : A ;
+fun serendipity_N : N ;
+fun serene_A : A ;
+fun sereness_N : N ;
+fun serenity_N : N ;
+fun serf_N : N ;
+fun serfdom_N : N ;
+fun serflike_A : A ;
+fun serge_N : N ;
+fun sergeant_N : N ;
+fun sergeant_major_N : N ;
+fun serger_N : N ;
+fun serial_A : A ;
+fun serial_N : N ;
+fun serialism_N : N ;
+fun serialization_N : N ;
+fun serialize_V : V ;
+fun seriatim_Adv : Adv ;
+fun sericultural_A : A ;
+fun sericulture_N : N ;
+fun sericulturist_N : N ;
+fun series_N : N ;
+fun serif_N : N ;
+fun serigraphy_N : N ;
+fun serin_N : N ;
+fun serine_N : N ;
+fun seriocomedy_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 serologic_A : A ;
+fun serologist_N : N ;
+fun serology_N : N ;
+fun serotine_N : N ;
+fun serotonin_N : N ;
+fun serous_A : A ;
+fun serow_N : N ;
+fun serpent_N : N ;
+fun serpentine_A : A ;
+fun serrate_A : A ;
+fun serrated_A : A ;
+fun serration_N : N ;
+fun serratus_N : N ;
+fun serried_A : A ;
+fun serrulate_A : A ;
+fun sertraline_N : N ;
+fun sertularian_N : N ;
+fun serum_N : N ;
+fun serval_N : N ;
+fun servant_N : N ;
+fun serve_N : N ;
+fun serve_V : V ;
+fun server_N : N ;
+fun service_N : N ;
+fun service_V : V ;
+fun serviceability_N : N ;
+fun serviceable_A : A ;
+fun serviceman_N : N ;
+fun servicing_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 servo_N : N ;
+fun servomechanical_A : A ;
+fun sesame_N : N ;
+fun sesbania_N : N ;
+fun sesotho_N : N ;
+fun sesquicentennial_N : N ;
+fun sesquipedalian_A : A ;
+fun sesquipedalian_N : N ;
+fun sesquipedality_N : N ;
+fun sessile_A : A ;
+fun session_N : N ;
+fun sestet_N : N ;
+fun set_N : N ;
+fun set_set_V : V ;
+fun set_setted_V : V ;
+fun set_square_N : N ;
+fun set_to_N : N ;
+fun set_up_N : N ;
+fun seta_N : N ;
+fun setback_N : N ;
+fun setscrew_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 settlement_N : N ;
+fun settler_N : N ;
+fun settling_N : N ;
+fun settlor_N : N ;
+fun setup_N : N ;
+fun sevenfold_A : A ;
+fun sevenfold_Adv : Adv ;
+fun sever_V : V ;
+fun severally_Adv : Adv ;
+fun severalty_N : N ;
+fun severance_N : N ;
+fun severe_DUMMY_A : A ;
+fun severe_severer_A : A ;
+fun severity_N : N ;
+fun sew_sewed_V : V ;
+fun sew_sewn_V : V ;
+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_V : V ;
+fun sex_starved_A : A ;
+fun sexagenarian_A : A ;
+fun sexagenarian_N : N ;
+fun sexagesimal_A : A ;
+fun sexcapade_N : N ;
+fun sexism_N : N ;
+fun sexist_A : A ;
+fun sexist_N : N ;
+fun sexless_A : A ;
+fun sexploitation_N : N ;
+fun sext_N : N ;
+fun sextant_N : N ;
+fun sextet_N : N ;
+fun sextette_N : N ;
+fun sextillion_N : N ;
+fun sexton_N : N ;
+fun sextuple_A : A ;
+fun sexual_A : A ;
+fun sexuality_N : N ;
+fun sexy_A : A ;
+fun seychellois_A : A ;
+fun seychellois_N : N ;
+fun señor_N : N ;
+fun sforzando_N : N ;
+fun sgraffito_N : N ;
+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_V : V ;
+fun shad_N : N ;
+fun shaddock_N : N ;
+fun shade_N : N ;
+fun shade_V : V ;
+fun shade_tree_N : N ;
+fun shadiness_N : N ;
+fun shading_N : N ;
+fun shadow_N : N ;
+fun shadow_V : V ;
+fun shadow_boxing_N : N ;
+fun shadowboxing_N : N ;
+fun shadowing_N : N ;
+fun shadowy_A : A ;
+fun shady_A : A ;
+fun shaft_N : N ;
+fun shag_N : N ;
+fun shag_V : V ;
+fun shagbark_N : N ;
+fun shagginess_N : N ;
+fun shagging_N : N ;
+fun shaggy_A : A ;
+fun shaggymane_N : N ;
+fun shah_N : N ;
+fun shahadah_N : N ;
+fun shaheed_N : N ;
+fun shaitan_N : N ;
+fun shakable_A : A ;
+fun shake_N : N ;
+fun shake_V : V ;
+fun shake_up_N : N ;
+fun shakedown_A : A ;
+fun shakedown_N : N ;
+fun shakeout_N : N ;
+fun shaker_N : N ;
+fun shakespearian_A : A ;
+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 shallowness_N : N ;
+fun shallu_N : N ;
+fun sham_A : A ;
+fun sham_N : N ;
+fun sham_V : V ;
+fun shaman_N : N ;
+fun shamanism_N : N ;
+fun shamanist_A : A ;
+fun shamble_N : N ;
+fun shamble_V : V ;
+fun shambles_N : N ;
+fun shambolic_A : A ;
+fun shambolically_Adv : Adv ;
+fun shame_N : N ;
+fun shame_V : V ;
+fun shame_making_A : A ;
+fun shamefaced_A : A ;
+fun shamefacedness_N : N ;
+fun shameful_A : A ;
+fun shamefulness_N : N ;
+fun shameless_A : A ;
+fun shamelessness_N : N ;
+fun shammy_N : N ;
+fun shampoo_N : N ;
+fun shampoo_V : V ;
+fun shamrock_N : N ;
+fun shandy_N : N ;
+fun shandygaff_N : N ;
+fun shanghai_V : V ;
+fun shanghaier_N : N ;
+fun shank_N : N ;
+fun shanny_N : N ;
+fun shantung_N : N ;
+fun shanty_N : N ;
+fun shantytown_N : N ;
+fun shape_N : N ;
+fun shape_V : V ;
+fun shapeless_A : A ;
+fun shapelessness_N : N ;
+fun shapely_A : A ;
+fun shaper_N : N ;
+fun shaping_N : N ;
+fun shard_N : N ;
+fun share_N : N ;
+fun share_V : V ;
+fun share_out_N : N ;
+fun sharecropper_N : N ;
+fun shareholder_N : N ;
+fun shareholding_N : N ;
+fun shareware_N : N ;
+fun shariah_N : N ;
+fun sharing_N : N ;
+fun shark_N : N ;
+fun sharkskin_N : N ;
+fun sharksucker_N : N ;
+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 sharpener_N : N ;
+fun sharper_N : N ;
+fun sharpie_N : N ;
+fun sharpness_N : N ;
+fun sharpshooter_N : N ;
+fun shatter_V : V ;
+fun shatterproof_A : A ;
+fun shave_N : N ;
+fun shave_shaved_V : V ;
+fun shave_shaven_V : V ;
+fun shaven_A : A ;
+fun shaver_N : N ;
+fun shavian_A : A ;
+fun shavian_N : N ;
+fun shaving_brush_N : N ;
+fun shawl_N : N ;
+fun shawm_N : N ;
+fun she_goat_N : N ;
+fun sheaf_N : N ;
+fun shear_N : N ;
+fun shear_V : V ;
+fun shearer_N : N ;
+fun shearing_N : N ;
+fun shears_N : N ;
+fun shearwater_N : N ;
+fun sheath_N : N ;
+fun sheath_knife_N : N ;
+fun sheathe_V : V ;
+fun sheathing_N : N ;
+fun shebang_N : N ;
+fun shebeen_N : N ;
+fun shed_N : N ;
+fun shed_V : V ;
+fun shedder_N : N ;
+fun shedding_N : N ;
+fun sheen_N : N ;
+fun sheep_N : N ;
+fun sheepdog_N : N ;
+fun sheepfold_N : N ;
+fun sheepherder_N : N ;
+fun sheepish_A : A ;
+fun sheepishness_N : N ;
+fun sheeplike_A : A ;
+fun sheepman_N : N ;
+fun sheeprun_N : N ;
+fun sheepshank_N : N ;
+fun sheepshead_N : N ;
+fun sheepshearing_N : N ;
+fun sheepskin_N : N ;
+fun sheepwalk_N : N ;
+fun sheer_A : A ;
+fun sheer_Adv : Adv ;
+fun sheer_V : V ;
+fun sheet_N : N ;
+fun sheet_anchor_N : N ;
+fun sheet_lightning_N : N ;
+fun sheeting_N : N ;
+fun sheetlike_A : A ;
+fun shegetz_N : N ;
+fun sheik_N : N ;
+fun sheika_N : N ;
+fun sheikdom_N : N ;
+fun sheikh_N : N ;
+fun sheikhdom_N : N ;
+fun shekel_N : N ;
+fun sheldrake_N : N ;
+fun shelduck_N : N ;
+fun shelf_N : N ;
+fun shelfful_N : N ;
+fun shelflike_A : A ;
+fun shell_N : N ;
+fun shell_V : V ;
+fun shell_shock_N : N ;
+fun shellac_N : N ;
+fun shellac_V : V ;
+fun sheller_N : N ;
+fun shellfire_N : N ;
+fun shellfish_N : N ;
+fun shellflower_N : N ;
+fun shellproof_A : A ;
+fun shelter_N : N ;
+fun shelter_V : V ;
+fun shelve_V : V ;
+fun shelver_N : N ;
+fun shepherd_N : N ;
+fun shepherd_V : V ;
+fun shepherdess_N : N ;
+fun sheraton_N : N ;
+fun sherbert_N : N ;
+fun sherbet_N : N ;
+fun sheriff_N : N ;
+fun sherry_N : N ;
+fun shew_V : V ;
+fun shibboleth_N : N ;
+fun shield_N : N ;
+fun shield_V : V ;
+fun shielding_N : N ;
+fun shift_N : N ;
+fun shift_V : V ;
+fun shiftiness_N : N ;
+fun shiftless_A : A ;
+fun shiftlessness_N : N ;
+fun shifty_A : A ;
+fun shigella_N : N ;
+fun shigellosis_N : N ;
+fun shiitake_N : N ;
+fun shiksa_N : N ;
+fun shill_N : N ;
+fun shillelagh_N : N ;
+fun shilling_N : N ;
+fun shillyshally_N : N ;
+fun shillyshally_V : V ;
+fun shim_N : N ;
+fun shimmer_N : N ;
+fun shimmer_V : V ;
+fun shimmery_A : A ;
+fun shimmy_N : N ;
+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 shiner_N : N ;
+fun shingle_N : N ;
+fun shingle_V : V ;
+fun shingler_N : N ;
+fun shingles_N : N ;
+fun shingling_N : N ;
+fun shingly_A : A ;
+fun shinguard_N : N ;
+fun shininess_N : N ;
+fun shining_N : N ;
+fun shinny_N : N ;
+fun shinplaster_N : N ;
+fun shiny_A : A ;
+fun ship's_chandler_N : N ;
+fun ship_N : N ;
+fun ship_V : V ;
+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 shipside_N : N ;
+fun shipway_N : N ;
+fun shipworm_N : N ;
+fun shipwreck_N : N ;
+fun shipwreck_V : V ;
+fun shipwright_N : N ;
+fun shipyard_N : N ;
+fun shire_N : N ;
+fun shirk_V : V ;
+fun shirker_N : N ;
+fun shirking_N : N ;
+fun shirring_N : N ;
+fun shirt_N : N ;
+fun shirt_front_N : N ;
+fun shirtdress_N : N ;
+fun shirtfront_N : N ;
+fun shirting_N : N ;
+fun shirtmaker_N : N ;
+fun shirtsleeve_N : N ;
+fun shirtsleeves_N : N ;
+fun shirttail_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 shitless_A : A ;
+fun shittah_N : N ;
+fun shittimwood_N : N ;
+fun shiv_N : N ;
+fun shiva_N : N ;
+fun shivaree_N : N ;
+fun shiver_N : N ;
+fun shiver_V : V ;
+fun shivery_A : A ;
+fun shmegegge_N : N ;
+fun shmooze_N : N ;
+fun shoal_N : N ;
+fun shoal_V : V ;
+fun shock_Adv : Adv ;
+fun shock_N : N ;
+fun shock_V : V ;
+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 shod_A : A ;
+fun shoddiness_N : N ;
+fun shoddy_A : A ;
+fun shoddy_N : N ;
+fun shoe_N : N ;
+fun shoe_leather_N : N ;
+fun shoe_shod_V : V ;
+fun shoe_shoed_V : V ;
+fun shoebill_N : N ;
+fun shoeblack_N : N ;
+fun shoebox_N : N ;
+fun shoeful_N : N ;
+fun shoehorn_N : N ;
+fun shoehorn_V : V ;
+fun shoelace_N : N ;
+fun shoemaker_N : N ;
+fun shoemaking_N : N ;
+fun shoeshine_N : N ;
+fun shoestring_N : N ;
+fun shoetree_N : N ;
+fun shofar_N : N ;
+fun shogi_N : N ;
+fun shogun_N : N ;
+fun shoji_N : N ;
+fun shoo_V : V ;
+fun shoofly_N : N ;
+fun shook_N : N ;
+fun shoot_N : N ;
+fun shoot_V : V ;
+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 shopaholic_N : N ;
+fun shopfront_N : N ;
+fun shopkeeper_N : N ;
+fun shoplift_V : V ;
+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_V : V ;
+fun shorebird_N : N ;
+fun shoreline_N : N ;
+fun shoring_N : N ;
+fun shorn_V : V ;
+fun short_A : A ;
+fun short_Adv : Adv ;
+fun short_N : N ;
+fun short_V : V ;
+fun short_change_V : V ;
+fun short_circuit_N : N ;
+fun short_circuit_V : V ;
+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 shortcut_N : N ;
+fun shorten_V : V ;
+fun shortener_N : N ;
+fun shortening_N : N ;
+fun shortfall_N : N ;
+fun shortgrass_N : N ;
+fun shorthand_A : A ;
+fun shorthand_N : N ;
+fun shorthorn_N : N ;
+fun shortia_N : N ;
+fun shortish_A : A ;
+fun shortlist_N : N ;
+fun shortlist_V : V ;
+fun shortness_N : N ;
+fun shortstop_N : N ;
+fun shot_N : N ;
+fun shot_V : V ;
+fun shot_put_N : N ;
+fun shot_tower_N : N ;
+fun shotgun_N : N ;
+fun shoulder_N : N ;
+fun shoulder_V : V ;
+fun shoulder_blade_N : N ;
+fun shoulder_flash_N : N ;
+fun shoulder_strap_N : N ;
+fun shout_N : N ;
+fun shout_V : V ;
+fun shouting_N : N ;
+fun shove_N : N ;
+fun shove_V : V ;
+fun shove_ha'penny_N : N ;
+fun shovel_N : N ;
+fun shovel_V : V ;
+fun shovel_board_N : N ;
+fun shoveler_N : N ;
+fun shovelful_N : N ;
+fun shovelhead_N : N ;
+fun show_N : N ;
+fun show_business_N : N ;
+fun show_off_N : N ;
+fun show_showed_V : V ;
+fun show_shown_V : V ;
+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_bath_N : N ;
+fun showerhead_N : N ;
+fun showery_A : A ;
+fun showgirl_N : N ;
+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_V : V ;
+fun shredder_N : N ;
+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 shriek_N : N ;
+fun shriek_V : V ;
+fun shrift_N : N ;
+fun shrike_N : N ;
+fun shrill_A : A ;
+fun shrill_V : V ;
+fun shrilling_N : N ;
+fun shrillness_N : N ;
+fun shrimp_N : N ;
+fun shrimp_V : V ;
+fun shrimper_N : N ;
+fun shrimpfish_N : N ;
+fun shrine_N : N ;
+fun shrine_V : V ;
+fun shrink_N : N ;
+fun shrink_V : V ;
+fun shrinkable_A : A ;
+fun shrinkage_N : N ;
+fun shrinking_N : N ;
+fun shrive_V : V ;
+fun shrivel_V : V ;
+fun shriveled_A : A ;
+fun shroud_N : N ;
+fun shroud_V : V ;
+fun shrove_tuesday_N : N ;
+fun shrub_N : N ;
+fun shrubbery_N : N ;
+fun shrubby_A : A ;
+fun shrublet_N : N ;
+fun shrug_N : N ;
+fun shrug_V : V ;
+fun shtik_N : N ;
+fun shtikl_N : N ;
+fun shuck_N : N ;
+fun shuck_V : V ;
+fun shucks_N : N ;
+fun shudder_N : N ;
+fun shudder_V : V ;
+fun shudderingly_Adv : Adv ;
+fun shuffle_N : N ;
+fun shuffle_V : V ;
+fun shuffleboard_N : N ;
+fun shuffler_N : N ;
+fun shufti_N : N ;
+fun shun_V : V ;
+fun shunt_N : N ;
+fun shunt_V : V ;
+fun shunter_N : N ;
+fun shush_V : V ;
+fun shut_shut_V : V ;
+fun shut_shutted_V : V ;
+fun shutdown_N : N ;
+fun shuteye_N : N ;
+fun shutout_N : N ;
+fun shutter_N : N ;
+fun shutter_V : V ;
+fun shutterbug_N : N ;
+fun shutting_N : N ;
+fun shuttle_N : N ;
+fun shuttle_V : V ;
+fun shuttlecock_N : N ;
+fun shy_A : A ;
+fun shy_N : N ;
+fun shy_V : V ;
+fun shyly_Adv : Adv ;
+fun shyness_N : N ;
+fun shyster_N : N ;
+fun sial_N : N ;
+fun sialadenitis_N : N ;
+fun sialolith_N : N ;
+fun siamang_N : N ;
+fun siamese_A : A ;
+fun siamese_N : N ;
+fun siberian_A : A ;
+fun sibilant_A : A ;
+fun sibilant_N : N ;
+fun sibilation_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_N : N ;
+fun sick_V : V ;
+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 sickish_A : A ;
+fun sickle_N : N ;
+fun sicklepod_N : N ;
+fun sickly_A : A ;
+fun sickness_N : N ;
+fun sickroom_N : N ;
+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 sidearm_A : A ;
+fun sidearm_Adv : Adv ;
+fun sidebar_N : N ;
+fun sideboard_N : N ;
+fun sideburn_N : N ;
+fun sidecar_N : N ;
+fun sidelight_N : N ;
+fun sideline_N : N ;
+fun sideline_V : V ;
+fun sidelong_A : A ;
+fun sidelong_Adv : Adv ;
+fun sidereal_A : A ;
+fun siderite_N : N ;
+fun sideroblast_N : N ;
+fun siderocyte_N : N ;
+fun sideropenia_N : N ;
+fun siderosis_N : N ;
+fun sidesaddle_Adv : Adv ;
+fun sidesaddle_N : N ;
+fun sideshow_N : N ;
+fun sidesman_N : N ;
+fun sidestep_N : N ;
+fun sidestep_V : V ;
+fun sidestroke_N : N ;
+fun sideswipe_N : N ;
+fun sidetrack_N : N ;
+fun sidetrack_V : V ;
+fun sidewalk_N : N ;
+fun sidewall_N : N ;
+fun sideward_Adv : Adv ;
+fun sidewards_Adv : Adv ;
+fun sideway_Adv : Adv ;
+fun sideways_Adv : Adv ;
+fun sidewinder_N : N ;
+fun siding_N : N ;
+fun sidle_V : V ;
+fun siege_N : N ;
+fun sienna_N : N ;
+fun sierra_N : N ;
+fun sierra_leonian_A : A ;
+fun sierra_leonian_N : N ;
+fun siesta_N : N ;
+fun sieve_N : N ;
+fun sieve_V : V ;
+fun sift_V : V ;
+fun sifter_N : N ;
+fun sigeh_N : N ;
+fun sigh_N : N ;
+fun sigh_V : V ;
+fun sight_N : N ;
+fun sight_V : V ;
+fun sighting_N : N ;
+fun sightless_A : A ;
+fun sightreader_N : N ;
+fun sights_N : N ;
+fun sightseeing_N : N ;
+fun sightseer_N : N ;
+fun sigma_N : N ;
+fun sigmoid_A : A ;
+fun sigmoidectomy_N : N ;
+fun sigmoidoscope_N : N ;
+fun sigmoidoscopy_N : N ;
+fun sign_N : N ;
+fun sign_V : V ;
+fun sign_painter_N : N ;
+fun signage_N : N ;
+fun signal_A : A ;
+fun signal_N : N ;
+fun signal_V : V ;
+fun signal_box_N : N ;
+fun signale_V : V ;
+fun signaler_N : N ;
+fun signalization_N : N ;
+fun signalize_V : V ;
+fun signaller_N : N ;
+fun signalman_N : N ;
+fun signatory_N : N ;
+fun signature_N : N ;
+fun signboard_N : N ;
+fun signer_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 signor_N : N ;
+fun signora_N : N ;
+fun signore_N : N ;
+fun signorina_N : N ;
+fun signpost_N : N ;
+fun signpost_V : V ;
+fun sikh_N : N ;
+fun silage_N : N ;
+fun sild_N : N ;
+fun sildenafil_N : N ;
+fun silence_N : N ;
+fun silence_V : V ;
+fun silencer_N : N ;
+fun silene_N : N ;
+fun silent_A : A ;
+fun silenus_N : N ;
+fun silesia_N : N ;
+fun silex_N : N ;
+fun silhouette_N : N ;
+fun silhouette_V : V ;
+fun silica_N : N ;
+fun silicate_N : N ;
+fun siliceous_A : A ;
+fun silicide_N : N ;
+fun silicle_N : N ;
+fun silicon_N : N ;
+fun silicone_N : N ;
+fun silicosis_N : N ;
+fun silique_N : N ;
+fun silk_N : N ;
+fun silken_A : A ;
+fun silkiness_N : N ;
+fun silks_N : N ;
+fun silkscreen_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 siloxane_N : N ;
+fun silt_N : N ;
+fun silt_V : V ;
+fun siltstone_N : N ;
+fun silty_A : A ;
+fun silurid_N : N ;
+fun silva_N : N ;
+fun silvan_A : A ;
+fun silver_A : A ;
+fun silver_N : N ;
+fun silver_V : V ;
+fun silver_fish_N : N ;
+fun silverback_N : N ;
+fun silverberry_N : N ;
+fun silverfish_N : N ;
+fun silvern_A : A ;
+fun silverpoint_N : N ;
+fun silverrod_N : N ;
+fun silverside_N : N ;
+fun silversides_N : N ;
+fun silversmith_N : N ;
+fun silverspot_N : N ;
+fun silversword_N : N ;
+fun silvervine_N : N ;
+fun silverware_N : N ;
+fun silverweed_N : N ;
+fun silverwork_N : N ;
+fun silvery_A : A ;
+fun silvex_N : N ;
+fun silviculture_N : N ;
+fun sima_N : N ;
+fun simazine_N : N ;
+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 simnel_N : N ;
+fun simony_N : N ;
+fun simoom_N : N ;
+fun simoon_N : N ;
+fun simper_N : N ;
+fun simper_V : V ;
+fun simperer_N : N ;
+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 simplex_A : A ;
+fun simplicity_N : N ;
+fun simplification_N : N ;
+fun simplify_V : V ;
+fun simplistic_A : A ;
+fun simulacrum_N : N ;
+fun simulate_V : V ;
+fun simulation_N : N ;
+fun simulator_N : N ;
+fun simulcast_N : N ;
+fun simultaneity_N : N ;
+fun simultaneous_A : A ;
+fun simultaneousness_N : N ;
+fun simvastatin_N : N ;
+fun sin_N : N ;
+fun sin_V : V ;
+fun since_Adv : Adv ;
+fun since_Prep : Prep ;
+fun since_then_Adv : Adv ;
+fun sincere_A : A ;
+fun sincerity_N : N ;
+fun sinciput_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 singable_A : A ;
+fun singalong_N : N ;
+fun singe_N : N ;
+fun singe_V : V ;
+fun singer_N : N ;
+fun singhalese_A : A ;
+fun singing_N : N ;
+fun single_A : A ;
+fun single_N : N ;
+fun single_V : V ;
+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 singles_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_V : V ;
+fun sinhala_N : N ;
+fun sinhalese_A : A ;
+fun sinhalese_N : N ;
+fun sinister_A : A ;
+fun sinistral_A : A ;
+fun sinistrorse_A : A ;
+fun sink_N : N ;
+fun sink_V : V ;
+fun sinkable_A : A ;
+fun sinker_N : N ;
+fun sinkhole_N : N ;
+fun sinking_N : N ;
+fun sinking_fund_N : N ;
+fun sinless_A : A ;
+fun sinlessness_N : N ;
+fun sinner_N : N ;
+fun sinologist_N : N ;
+fun sinology_N : N ;
+fun sinopis_N : N ;
+fun sintered_A : A ;
+fun sinuate_A : A ;
+fun sinuosity_N : N ;
+fun sinuous_A : A ;
+fun sinus_N : N ;
+fun sinusitis_N : N ;
+fun sinusoid_N : N ;
+fun sinusoidal_A : A ;
+fun sioux_N : N ;
+fun sip_N : N ;
+fun sip_V : V ;
+fun siphon_N : N ;
+fun siphon_V : V ;
+fun siphone_V : V ;
+fun siphonophore_N : N ;
+fun sipper_N : N ;
+fun sir_N : N ;
+fun sir_roger_de_coverley_N : N ;
+fun sirdar_N : N ;
+fun sire_N : N ;
+fun sire_V : V ;
+fun siren_N : N ;
+fun siris_N : N ;
+fun sirloin_N : N ;
+fun sirocco_N : N ;
+fun sirrah_N : N ;
+fun sirup_N : N ;
+fun sisal_N : N ;
+fun siskin_N : N ;
+fun sissified_A : A ;
+fun sissoo_N : N ;
+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_in_N : N ;
+fun sit_sat_V : V ;
+fun sit_sitted_V : V ;
+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 situate_V : V ;
+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_A : A ;
+fun size_N : N ;
+fun size_V : V ;
+fun sizeable_A : A ;
+fun sizzle_N : N ;
+fun sizzle_V : V ;
+fun skank_N : N ;
+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_N : N ;
+fun skedaddle_V : V ;
+fun skeet_N : N ;
+fun skeg_N : N ;
+fun skein_N : N ;
+fun skeletal_A : A ;
+fun skeleton_N : N ;
+fun skep_N : N ;
+fun skepful_N : N ;
+fun skeptic_N : N ;
+fun skeptical_A : A ;
+fun skepticism_N : N ;
+fun sketch_N : N ;
+fun sketch_V : V ;
+fun sketch_block_N : N ;
+fun sketch_book_N : N ;
+fun sketch_map_N : N ;
+fun sketchbook_N : N ;
+fun sketcher_N : N ;
+fun sketchiness_N : N ;
+fun sketchy_A : A ;
+fun skew_A : A ;
+fun skew_V : V ;
+fun skew_eyed_A : A ;
+fun skewer_N : N ;
+fun skewer_V : V ;
+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 skibob_N : N ;
+fun skid_N : N ;
+fun skid_V : V ;
+fun skidder_N : N ;
+fun skidpan_N : N ;
+fun skier_N : N ;
+fun skiff_N : N ;
+fun skiffle_N : N ;
+fun skiffle_group_N : N ;
+fun skiing_N : N ;
+fun skilful_A : A ;
+fun skill_N : N ;
+fun skilled_A : A ;
+fun skillet_N : N ;
+fun skillfully_Adv : Adv ;
+fun skillfulness_N : N ;
+fun skilly_N : N ;
+fun skim_A : A ;
+fun skim_N : N ;
+fun skim_V : V ;
+fun skimmed_milk_N : N ;
+fun skimmer_N : N ;
+fun skimming_N : N ;
+fun skimp_V : V ;
+fun skimpy_A : A ;
+fun skin_N : N ;
+fun skin_V : V ;
+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 skinful_N : N ;
+fun skinhead_N : N ;
+fun skinheads_N : N ;
+fun skink_N : N ;
+fun skinless_A : A ;
+fun skinner_N : N ;
+fun skinniness_N : N ;
+fun skinny_A : A ;
+fun skinny_N : N ;
+fun skint_A : A ;
+fun skintight_A : A ;
+fun skip_N : N ;
+fun skip_V : V ;
+fun skipjack_N : N ;
+fun skipper_N : N ;
+fun skipper_V : V ;
+fun skipping_rope_N : N ;
+fun skirl_N : N ;
+fun skirmish_N : N ;
+fun skirmish_V : V ;
+fun skirmisher_N : N ;
+fun skirret_N : N ;
+fun skirt_N : N ;
+fun skirt_V : V ;
+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_V : V ;
+fun skittle_pin_N : N ;
+fun skittles_N : N ;
+fun skive_V : V ;
+fun skivvy_N : N ;
+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 skunkweed_N : N ;
+fun sky_N : N ;
+fun sky_V : V ;
+fun sky_blue_A : A ;
+fun sky_blue_N : N ;
+fun sky_high_Adv : Adv ;
+fun skybox_N : N ;
+fun skycap_N : N ;
+fun skydiver_N : N ;
+fun skydiving_N : N ;
+fun skyhook_N : N ;
+fun skylark_N : N ;
+fun skylark_V : V ;
+fun skylight_N : N ;
+fun skyline_N : N ;
+fun skyrocket_N : N ;
+fun skyrocket_V : V ;
+fun skysail_N : N ;
+fun skyscraper_N : N ;
+fun skywalk_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_slackened_V : V ;
+fun slacken_slackenned_V : V ;
+fun slacker_N : N ;
+fun slackness_N : N ;
+fun slacks_N : N ;
+fun slag_N : N ;
+fun slag_V : V ;
+fun slag_heap_N : N ;
+fun slagheap_N : N ;
+fun slain_N : N ;
+fun slake_V : V ;
+fun slalom_N : N ;
+fun slam_N : N ;
+fun slam_V : V ;
+fun slam_dunk_V : V ;
+fun slammer_N : N ;
+fun slander_N : N ;
+fun slander_V : V ;
+fun slanderer_N : N ;
+fun slanderous_A : A ;
+fun slang_N : N ;
+fun slang_V : V ;
+fun slanginess_N : N ;
+fun slanguage_N : N ;
+fun slangy_A : A ;
+fun slant_N : N ;
+fun slant_V : V ;
+fun slantingly_Adv : Adv ;
+fun slantwise_Adv : Adv ;
+fun slap_Adv : Adv ;
+fun slap_N : N ;
+fun slap_V : V ;
+fun slap_bang_Adv : Adv ;
+fun slap_happy_A : A ;
+fun slap_up_A : A ;
+fun slapdash_A : A ;
+fun slapdash_Adv : Adv ;
+fun slapper_N : N ;
+fun slapshot_N : N ;
+fun slapstick_A : A ;
+fun slapstick_N : N ;
+fun slash_N : N ;
+fun slash_V : V ;
+fun slasher_N : N ;
+fun slat_N : N ;
+fun slate_N : N ;
+fun slate_V : V ;
+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_V : V ;
+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 slaveholder_N : N ;
+fun slaveholding_A : A ;
+fun slavelike_A : A ;
+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_V : V ;
+fun slayer_N : N ;
+fun sleaziness_N : N ;
+fun sleazy_A : A ;
+fun sled_N : N ;
+fun sledder_N : N ;
+fun sledding_N : N ;
+fun sledge_N : N ;
+fun sledge_V : V ;
+fun sledgehammer_N : N ;
+fun sleek_A : A ;
+fun sleek_V : V ;
+fun sleekness_N : N ;
+fun sleep_N : N ;
+fun sleep_V : V ;
+fun sleeper_N : N ;
+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 sleepover_N : N ;
+fun sleepwalker_N : N ;
+fun sleepwalking_N : N ;
+fun sleepy_A : A ;
+fun sleepy_head_N : N ;
+fun sleepyhead_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_bell_N : N ;
+fun sleight_N : N ;
+fun slender_A : A ;
+fun slenderize_V : V ;
+fun slenderness_N : N ;
+fun sleuth_N : N ;
+fun sleuth_hound_N : N ;
+fun slew_V : V ;
+fun slice_N : N ;
+fun slice_V : V ;
+fun slicer_N : N ;
+fun slicing_N : N ;
+fun slick_A : A ;
+fun slick_Adv : Adv ;
+fun slick_N : N ;
+fun slicker_N : N ;
+fun slickness_N : N ;
+fun slide_N : N ;
+fun slide_V : V ;
+fun slide_rule_N : N ;
+fun slider_N : N ;
+fun slight_A : A ;
+fun slight_N : N ;
+fun slight_V : V ;
+fun slightingly_Adv : Adv ;
+fun slightness_N : N ;
+fun slim_A : A ;
+fun slim_V : V ;
+fun slime_N : N ;
+fun slimed_A : A ;
+fun sliminess_N : N ;
+fun slimness_N : N ;
+fun slimy_A : A ;
+fun sling_N : N ;
+fun sling_V : V ;
+fun slingback_N : N ;
+fun slinger_N : N ;
+fun slinging_N : N ;
+fun slingshot_N : N ;
+fun slink_V : V ;
+fun slip_N : N ;
+fun slip_V : V ;
+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 slippage_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_V : V ;
+fun slither_V : V ;
+fun slithery_A : A ;
+fun sliver_N : N ;
+fun sliver_V : V ;
+fun slivovitz_N : N ;
+fun slob_N : N ;
+fun slob_V : V ;
+fun slobber_N : N ;
+fun slobber_V : V ;
+fun sloe_N : N ;
+fun sloe_gin_N : N ;
+fun slog_V : V ;
+fun slogan_N : N ;
+fun sloganeer_N : N ;
+fun sloganeering_N : N ;
+fun slogger_N : N ;
+fun sloop_N : N ;
+fun slop_N : N ;
+fun slop_V : V ;
+fun slop_basin_N : N ;
+fun slop_pail_N : N ;
+fun slop_shop_N : N ;
+fun slope_N : N ;
+fun slope_V : V ;
+fun slopingly_Adv : Adv ;
+fun sloppiness_N : N ;
+fun sloppy_A : A ;
+fun slops_N : N ;
+fun slopseller_N : N ;
+fun slopshop_N : N ;
+fun slosh_V : V ;
+fun slot_N : N ;
+fun slot_V : V ;
+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 sloucher_N : N ;
+fun slouchingly_Adv : Adv ;
+fun slouchy_A : A ;
+fun slough_N : N ;
+fun slough_V : V ;
+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_worm_N : N ;
+fun slowcoach_N : N ;
+fun slowdown_N : N ;
+fun slower_Adv : Adv ;
+fun slowest_Adv : Adv ;
+fun slowgoing_A : A ;
+fun slowness_N : N ;
+fun slub_N : N ;
+fun sludge_N : N ;
+fun slug_N : N ;
+fun slug_V : V ;
+fun sluggard_N : N ;
+fun slugger_N : N ;
+fun sluggish_A : A ;
+fun sluggishness_N : N ;
+fun sluice_N : N ;
+fun sluice_V : V ;
+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 slumberer_N : N ;
+fun slumberous_A : A ;
+fun slumgullion_N : N ;
+fun slummy_A : A ;
+fun slump_N : N ;
+fun slump_V : V ;
+fun slur_N : N ;
+fun slur_V : V ;
+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 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 smaller_A : A ;
+fun smallholder_N : N ;
+fun smallholding_N : N ;
+fun smallish_A : A ;
+fun smallmouth_N : N ;
+fun smallness_N : N ;
+fun smallpox_N : N ;
+fun smalltime_A : A ;
+fun smaltite_N : N ;
+fun smarmy_A : A ;
+fun smart_A : A ;
+fun smart_N : N ;
+fun smart_V : V ;
+fun smarta_N : N ;
+fun smarten_V : V ;
+fun smartness_N : N ;
+fun smash_Adv : Adv ;
+fun smash_N : N ;
+fun smash_V : V ;
+fun smash_up_N : N ;
+fun smasher_N : N ;
+fun smashing_N : N ;
+fun smattering_N : N ;
+fun smear_N : N ;
+fun smear_V : V ;
+fun smear_word_N : N ;
+fun smegma_N : N ;
+fun smell_N : N ;
+fun smell_V : V ;
+fun smelling_bottle_N : N ;
+fun smelly_A : A ;
+fun smelt_N : N ;
+fun smelt_V : V ;
+fun smelter_N : N ;
+fun smew_N : N ;
+fun smilax_N : N ;
+fun smile_N : N ;
+fun smile_V : V ;
+fun smiler_N : N ;
+fun smiley_N : N ;
+fun smilingly_Adv : Adv ;
+fun smilo_N : N ;
+fun smirch_N : N ;
+fun smirch_V : V ;
+fun smirk_N : N ;
+fun smirk_V : V ;
+fun smirker_N : N ;
+fun smite_V : V ;
+fun smith_N : N ;
+fun smithereens_N : N ;
+fun smithy_N : N ;
+fun smock_N : N ;
+fun smocking_N : N ;
+fun smog_N : N ;
+fun smoggy_A : A ;
+fun smoke_N : N ;
+fun smoke_V : V ;
+fun smoke_bomb_N : N ;
+fun smoke_cured_A : A ;
+fun smoke_dried_A : A ;
+fun smoke_screen_N : N ;
+fun smokehouse_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 smoldering_A : A ;
+fun smooth_A : A ;
+fun smooth_N : N ;
+fun smooth_V : V ;
+fun smooth_bore_A : A ;
+fun smooth_faced_A : A ;
+fun smooth_spoken_A : A ;
+fun smooth_tongued_A : A ;
+fun smoothbark_N : N ;
+fun smoothbore_N : N ;
+fun smoothhound_N : N ;
+fun smoothie_N : N ;
+fun smoothing_iron_N : N ;
+fun smoothing_plane_N : N ;
+fun smoothness_N : N ;
+fun smorgasbord_N : N ;
+fun smother_N : N ;
+fun smother_V : V ;
+fun smothering_A : A ;
+fun smoulder_N : N ;
+fun smoulder_V : V ;
+fun smudge_N : N ;
+fun smudge_V : V ;
+fun smudgy_A : A ;
+fun smug_A : A ;
+fun smuggle_V : V ;
+fun smuggler_N : N ;
+fun smuggling_N : N ;
+fun smugness_N : N ;
+fun smut_N : N ;
+fun smut_V : V ;
+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_V : V ;
+fun snaffle_bit_N : N ;
+fun snafu_N : N ;
+fun snag_N : N ;
+fun snag_V : V ;
+fun snail_N : N ;
+fun snailfish_N : N ;
+fun snailflower_N : N ;
+fun snake_N : N ;
+fun snake_V : V ;
+fun snake_charmer_N : N ;
+fun snakebird_N : N ;
+fun snakebite_N : N ;
+fun snakeblenny_N : N ;
+fun snakefly_N : N ;
+fun snakewood_N : N ;
+fun snaky_A : A ;
+fun snap_N : N ;
+fun snap_V : V ;
+fun snap_fastener_N : N ;
+fun snapdragon_N : N ;
+fun snapper_N : N ;
+fun snappish_A : A ;
+fun snappishness_N : N ;
+fun snappy_A : A ;
+fun snapshot_N : N ;
+fun snare_N : N ;
+fun snare_V : V ;
+fun snare_drum_N : N ;
+fun snarer_N : N ;
+fun snarl_N : N ;
+fun snarl_V : V ;
+fun snarl_up_N : N ;
+fun snatch_N : N ;
+fun snatch_V : V ;
+fun snatcher_N : N ;
+fun snazzy_A : A ;
+fun sneak_N : N ;
+fun sneak_V : V ;
+fun sneak_thief_N : N ;
+fun sneakingly_Adv : Adv ;
+fun sneaky_A : A ;
+fun sneer_N : N ;
+fun sneer_V : V ;
+fun sneerer_N : N ;
+fun sneeringly_Adv : Adv ;
+fun sneeze_N : N ;
+fun sneeze_V : V ;
+fun sneezer_N : N ;
+fun sneezeweed_N : N ;
+fun sneezy_A : A ;
+fun snick_N : N ;
+fun snick_V : V ;
+fun snicker_N : N ;
+fun snicker_V : V ;
+fun snide_A : A ;
+fun sniff_N : N ;
+fun sniff_V : V ;
+fun sniffer_N : N ;
+fun sniffle_V : V ;
+fun sniffler_N : N ;
+fun sniffly_A : A ;
+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 snipe_N : N ;
+fun snipe_V : V ;
+fun snipefish_N : N ;
+fun sniper_N : N ;
+fun snippet_N : N ;
+fun snipping_N : N ;
+fun snips_N : N ;
+fun snit_N : N ;
+fun snitch_V : V ;
+fun snivel_N : N ;
+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_N : N ;
+fun snoop_V : V ;
+fun snooper_N : N ;
+fun snootiness_N : N ;
+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 snorkeling_N : N ;
+fun snort_N : N ;
+fun snort_V : V ;
+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_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 snowbank_N : N ;
+fun snowbell_N : N ;
+fun snowberry_N : N ;
+fun snowblind_A : A ;
+fun snowblindness_N : N ;
+fun snowboard_N : N ;
+fun snowboarder_N : N ;
+fun snowboarding_N : N ;
+fun snowbound_A : A ;
+fun snowcap_N : N ;
+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 snowmobile_N : N ;
+fun snowplough_N : N ;
+fun snowplow_N : N ;
+fun snowshoe_N : N ;
+fun snowstorm_N : N ;
+fun snowsuit_N : N ;
+fun snowy_A : A ;
+fun snub_A : A ;
+fun snub_N : N ;
+fun snub_V : V ;
+fun snub_nosed_A : A ;
+fun snuff_A : A ;
+fun snuff_N : N ;
+fun snuff_V : V ;
+fun snuff_colour_A : A ;
+fun snuff_colour_N : N ;
+fun snuff_coloured_A : A ;
+fun snuffbox_N : N ;
+fun snuffer_N : N ;
+fun snuffers_N : N ;
+fun snuffle_N : N ;
+fun snuffle_V : V ;
+fun snuffler_N : N ;
+fun snug_A : A ;
+fun snug_N : N ;
+fun snuggery_N : N ;
+fun snuggle_V : V ;
+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 soaker_N : N ;
+fun soaking_Adv : Adv ;
+fun soap_N : N ;
+fun soap_V : V ;
+fun soap_bubble_N : N ;
+fun soap_opera_N : N ;
+fun soapberry_N : N ;
+fun soapbox_N : N ;
+fun soapfish_N : N ;
+fun soapiness_N : N ;
+fun soapstone_N : N ;
+fun soapsuds_N : N ;
+fun soapweed_N : N ;
+fun soapwort_N : N ;
+fun soapy_A : A ;
+fun soar_N : N ;
+fun soar_V : V ;
+fun sob_N : N ;
+fun sob_V : V ;
+fun sob_stuff_N : N ;
+fun sobbingly_Adv : Adv ;
+fun sober_A : A ;
+fun sober_V : V ;
+fun sober_sides_N : N ;
+fun soberness_N : N ;
+fun sobersided_A : A ;
+fun sobersides_N : N ;
+fun sobralia_N : N ;
+fun sobriety_N : N ;
+fun sobriquet_N : N ;
+fun soc_N : N ;
+fun socage_N : N ;
+fun soccer_N : N ;
+fun sociability_N : N ;
+fun sociable_A : A ;
+fun sociable_N : N ;
+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 socialistic_A : A ;
+fun socialite_N : N ;
+fun sociality_N : N ;
+fun socialization_N : N ;
+fun socialize_V : V ;
+fun socializer_N : N ;
+fun society_N : N ;
+fun sociobiologic_A : A ;
+fun sociobiologically_Adv : Adv ;
+fun sociobiologist_N : N ;
+fun sociobiology_N : N ;
+fun sociocultural_A : A ;
+fun socioeconomic_A : A ;
+fun socioeconomically_Adv : Adv ;
+fun sociolinguist_N : N ;
+fun sociolinguistic_A : A ;
+fun sociolinguistically_Adv : Adv ;
+fun sociolinguistics_N : N ;
+fun sociological_A : A ;
+fun sociologist_N : N ;
+fun sociology_N : N ;
+fun sociometry_N : N ;
+fun sociopath_N : N ;
+fun sociopathic_A : A ;
+fun sock_Adv : Adv ;
+fun sock_N : N ;
+fun sock_V : V ;
+fun socket_N : N ;
+fun sockeye_N : N ;
+fun socle_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 sodalist_N : N ;
+fun sodalite_N : N ;
+fun sodden_A : A ;
+fun sodium_N : N ;
+fun sodoku_N : N ;
+fun sodom_N : N ;
+fun sodomite_N : N ;
+fun sodomy_N : N ;
+fun sofa_N : N ;
+fun soffit_N : N ;
+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_soap_V : V ;
+fun soft_solder_N : N ;
+fun soft_solder_V : V ;
+fun soft_spoken_A : A ;
+fun soft_witted_A : A ;
+fun softball_N : N ;
+fun soften_softened_V : V ;
+fun soften_softenned_V : V ;
+fun softener_N : N ;
+fun softening_N : N ;
+fun softhearted_A : A ;
+fun softheartedness_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 soignee_A : A ;
+fun soigné_A : A ;
+fun soil_N : N ;
+fun soil_V : V ;
+fun soil_pipe_N : N ;
+fun soiling_N : N ;
+fun soirée_N : N ;
+fun sojourn_N : N ;
+fun sojourn_V : V ;
+fun sojourner_N : N ;
+fun sol_N : N ;
+fun sol_fa_N : N ;
+fun solace_N : N ;
+fun solace_V : V ;
+fun solan_N : N ;
+fun solanaceous_A : A ;
+fun solar_A : A ;
+fun solar_plexus_N : N ;
+fun solarium_N : N ;
+fun solarization_N : N ;
+fun solder_N : N ;
+fun solder_V : V ;
+fun solderer_N : N ;
+fun soldering_iron_N : N ;
+fun soldier_N : N ;
+fun soldier_V : V ;
+fun soldierfish_N : N ;
+fun soldiering_N : N ;
+fun soldierly_A : A ;
+fun soldiery_N : N ;
+fun sole_A : A ;
+fun sole_N : N ;
+fun sole_V : V ;
+fun solecism_N : N ;
+fun soleless_A : A ;
+fun solemn_A : A ;
+fun solemnity_N : N ;
+fun solemnization_N : N ;
+fun solemnize_V : V ;
+fun solemnness_N : N ;
+fun solenogaster_N : N ;
+fun solenoid_N : N ;
+fun soleus_N : N ;
+fun solfege_N : N ;
+fun solferino_N : N ;
+fun solicit_V : V ;
+fun solicitation_N : N ;
+fun solicitor_N : N ;
+fun solicitor_general_N : N ;
+fun solicitorship_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 solidity_N : N ;
+fun solidness_N : N ;
+fun solidus_N : N ;
+fun soliloquize_V : V ;
+fun soliloquy_N : N ;
+fun solipsism_N : N ;
+fun solitaire_N : N ;
+fun solitary_A : A ;
+fun soliton_N : N ;
+fun solitude_N : N ;
+fun solleret_N : N ;
+fun solmization_N : N ;
+fun solo_A : A ;
+fun solo_N : N ;
+fun soloist_N : N ;
+fun solstice_N : N ;
+fun solubility_N : N ;
+fun soluble_A : A ;
+fun solute_N : N ;
+fun solution_N : N ;
+fun solvability_N : N ;
+fun solvable_A : A ;
+fun solvate_N : N ;
+fun solvation_N : N ;
+fun solve_V : V ;
+fun solvency_N : N ;
+fun solvent_A : A ;
+fun solvent_N : N ;
+fun som_N : N ;
+fun soma_N : N ;
+fun soman_N : N ;
+fun somatic_A : A ;
+fun somatogenic_A : A ;
+fun somatosense_N : N ;
+fun somatosensory_A : A ;
+fun somatotropin_N : N ;
+fun somber_A : A ;
+fun sombre_A : A ;
+fun sombreness_N : N ;
+fun sombrero_N : N ;
+fun some_A : A ;
+fun someday_Adv : Adv ;
+fun somehow_Adv : Adv ;
+fun someplace_Adv : Adv ;
+fun somersault_N : N ;
+fun somersault_V : V ;
+fun somesthesia_N : N ;
+fun sometime_Adv : Adv ;
+fun sometimes_Adv : Adv ;
+fun someway_Adv : Adv ;
+fun somewhat_Adv : Adv ;
+fun somewhere_Adv : Adv ;
+fun somewhere_N : N ;
+fun sommelier_N : N ;
+fun somnambulism_N : N ;
+fun somnambulist_N : N ;
+fun somniloquist_N : N ;
+fun somnolence_N : N ;
+fun somnolent_A : A ;
+fun son_N : N ;
+fun son_in_law_N : N ;
+fun sonant_N : N ;
+fun sonar_N : N ;
+fun sonata_N : N ;
+fun sonatina_N : N ;
+fun sone_N : N ;
+fun song_N : N ;
+fun songbird_N : N ;
+fun songbook_N : N ;
+fun songster_N : N ;
+fun songstress_N : N ;
+fun songwriter_N : N ;
+fun sonic_A : A ;
+fun sonnet_N : N ;
+fun sonneteer_N : N ;
+fun sonny_N : N ;
+fun sonogram_N : N ;
+fun sonograph_N : N ;
+fun sonography_N : N ;
+fun sonority_N : N ;
+fun sonorous_A : A ;
+fun sonsy_A : A ;
+fun soon_Adv : Adv ;
+fun sooner_Adv : Adv ;
+fun soonest_Adv : Adv ;
+fun soot_N : N ;
+fun soot_V : V ;
+fun sooth_N : N ;
+fun soothe_V : V ;
+fun soothing_A : A ;
+fun soothsayer_N : N ;
+fun sooty_A : A ;
+fun sop_N : N ;
+fun sop_V : V ;
+fun sophism_N : N ;
+fun sophist_N : N ;
+fun sophistic_A : A ;
+fun sophisticate_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 sopranino_A : A ;
+fun soprano_A : A ;
+fun soprano_N : N ;
+fun sorb_N : N ;
+fun sorbate_N : N ;
+fun sorbent_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 sorehead_N : N ;
+fun soreness_N : N ;
+fun sorghum_N : N ;
+fun sorgo_N : N ;
+fun sorority_N : N ;
+fun sorption_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 sorter_N : N ;
+fun sortie_N : N ;
+fun sorting_N : N ;
+fun sorus_N : N ;
+fun sos_N : N ;
+fun sot_N : N ;
+fun soteriological_A : A ;
+fun soteriology_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'wester_N : N ;
+fun sou_N : N ;
+fun souari_N : N ;
+fun soubrette_N : N ;
+fun soubriquet_N : N ;
+fun souchong_N : N ;
+fun soufflé_N : N ;
+fun sough_V : V ;
+fun soughingly_Adv : Adv ;
+fun souk_N : N ;
+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_film_N : N ;
+fun sound_recording_N : N ;
+fun sound_wave_N : N ;
+fun soundbox_N : N ;
+fun sounder_N : N ;
+fun sounding_N : N ;
+fun sounding_board_N : N ;
+fun soundless_A : A ;
+fun soundman_N : N ;
+fun soundness_N : N ;
+fun soundproof_A : A ;
+fun soundproof_V : V ;
+fun soundtrack_N : N ;
+fun soup_N : N ;
+fun soup_V : V ;
+fun soup_kitchen_N : N ;
+fun soupspoon_N : N ;
+fun soupy_A : A ;
+fun soupçon_N : N ;
+fun sour_A : A ;
+fun sour_N : N ;
+fun sour_V : V ;
+fun sourball_N : N ;
+fun source_N : N ;
+fun sourdine_N : N ;
+fun sourdough_N : N ;
+fun souring_N : N ;
+fun sourness_N : N ;
+fun sourpuss_N : N ;
+fun soursop_N : N ;
+fun souse_N : N ;
+fun souse_V : V ;
+fun soutache_N : N ;
+fun soutane_N : N ;
+fun south_southeast_Adv : Adv ;
+fun south_southeast_N : N ;
+fun south_southwest_Adv : Adv ;
+fun south_southwest_N : N ;
+fun southbound_A : A ;
+fun southeast_A : A ;
+fun southeast_Adv : Adv ;
+fun southeast_N : N ;
+fun southeaster_N : N ;
+fun southeasterly_A : A ;
+fun southeastern_A : A ;
+fun southeastward_A : A ;
+fun southeastward_Adv : Adv ;
+fun southerly_A : A ;
+fun southerly_Adv : Adv ;
+fun southerner_N : N ;
+fun southernism_N : N ;
+fun southernmost_A : A ;
+fun southernness_N : N ;
+fun southernwood_N : N ;
+fun southland_N : N ;
+fun southpaw_N : N ;
+fun southward_Adv : Adv ;
+fun southwards_Adv : Adv ;
+fun southwest_A : A ;
+fun southwest_Adv : Adv ;
+fun southwest_N : N ;
+fun southwester_N : N ;
+fun southwesterly_A : A ;
+fun southwestern_A : A ;
+fun southwestward_A : A ;
+fun southwestward_Adv : Adv ;
+fun souvenir_N : N ;
+fun souvlaki_N : N ;
+fun sovereign_A : A ;
+fun sovereign_N : N ;
+fun sovereignty_N : N ;
+fun sovietize_V : V ;
+fun sow_N : N ;
+fun sow_V : V ;
+fun sowbane_N : N ;
+fun sowbelly_N : N ;
+fun sowbread_N : N ;
+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_V : V ;
+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 spaceflight_N : N ;
+fun spaceship_N : N ;
+fun spacesuit_N : N ;
+fun spacewalker_N : N ;
+fun spaceward_Adv : Adv ;
+fun spacing_N : N ;
+fun spacious_A : A ;
+fun spaciousness_N : N ;
+fun spackle_N : N ;
+fun spade_N : N ;
+fun spade_V : V ;
+fun spadefish_N : N ;
+fun spadefoot_N : N ;
+fun spadeful_N : N ;
+fun spadework_N : N ;
+fun spadix_N : N ;
+fun spaff_V : V ;
+fun spaghetti_N : N ;
+fun spaghettini_N : N ;
+fun spall_N : N ;
+fun spallation_N : N ;
+fun spam_N : N ;
+fun spammer_N : N ;
+fun span_N : N ;
+fun span_V : V ;
+fun spandex_N : N ;
+fun spandrel_N : N ;
+fun spangle_N : N ;
+fun spangle_V : V ;
+fun spaniard_N : N ;
+fun spaniel_N : N ;
+fun spank_N : N ;
+fun spank_V : V ;
+fun spanker_N : N ;
+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_rib_N : N ;
+fun spareness_N : N ;
+fun sparer_N : N ;
+fun sparerib_N : N ;
+fun spareribs_N : N ;
+fun sparid_N : N ;
+fun sparing_A : A ;
+fun spark_N : N ;
+fun spark_V : V ;
+fun spark_plug_N : N ;
+fun sparking_plug_N : N ;
+fun sparkle_N : N ;
+fun sparkle_V : V ;
+fun sparkler_N : N ;
+fun sparling_N : N ;
+fun sparring_N : N ;
+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 spasmolysis_N : N ;
+fun spastic_A : A ;
+fun spastic_N : N ;
+fun spasticity_N : N ;
+fun spat_N : N ;
+fun spat_V : V ;
+fun spatchcock_N : N ;
+fun spatchcock_V : V ;
+fun spate_N : N ;
+fun spathe_N : N ;
+fun spathiphyllum_N : N ;
+fun spatial_A : A ;
+fun spatiotemporal_A : A ;
+fun spatter_N : N ;
+fun spatter_V : V ;
+fun spatterdock_N : N ;
+fun spatula_N : N ;
+fun spatulate_A : A ;
+fun spavin_N : N ;
+fun spavined_A : A ;
+fun spawn_N : N ;
+fun spawn_V : V ;
+fun spawner_N : N ;
+fun spay_V : V ;
+fun spaying_N : N ;
+fun speak_V : V ;
+fun speakable_A : A ;
+fun speakeasy_N : N ;
+fun speaker_N : N ;
+fun speakerphone_N : N ;
+fun speakership_N : N ;
+fun speaking_N : N ;
+fun speaking_trumpet_N : N ;
+fun speaking_tube_N : N ;
+fun spear_N : N ;
+fun spear_V : V ;
+fun spearfish_N : N ;
+fun spearhead_N : N ;
+fun spearhead_V : V ;
+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 specialistic_A : A ;
+fun speciality_N : N ;
+fun specialization_N : N ;
+fun specialize_V : V ;
+fun specialty_N : N ;
+fun speciation_N : N ;
+fun specie_N : N ;
+fun species_N : N ;
+fun specifiable_A : A ;
+fun specific_A : A ;
+fun specific_N : N ;
+fun specification_N : N ;
+fun specificity_N : N ;
+fun specifier_N : N ;
+fun specify_V : V ;
+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 spectacles_N : N ;
+fun spectacular_A : A ;
+fun spectacular_N : N ;
+fun spectator_N : N ;
+fun spectinomycin_N : N ;
+fun spectral_A : A ;
+fun spectre_N : N ;
+fun spectrogram_N : N ;
+fun spectrograph_N : N ;
+fun spectrographic_A : A ;
+fun spectrographically_Adv : Adv ;
+fun spectrometric_A : A ;
+fun spectrophotometer_N : N ;
+fun spectroscope_N : N ;
+fun spectroscopic_A : A ;
+fun spectroscopy_N : N ;
+fun spectrum_N : N ;
+fun speculate_V : V ;
+fun speculation_N : N ;
+fun speculative_A : A ;
+fun speculativeness_N : N ;
+fun speculator_N : N ;
+fun speculum_N : N ;
+fun speech_N : N ;
+fun speech_day_N : N ;
+fun speechify_V : V ;
+fun speechless_A : A ;
+fun speechlessness_N : N ;
+fun speechwriter_N : N ;
+fun speed_N : N ;
+fun speed_V : V ;
+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 speeder_N : N ;
+fun speeding_N : N ;
+fun speedometer_N : N ;
+fun speedskater_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 spellbinder_N : N ;
+fun spellbound_A : A ;
+fun speller_N : N ;
+fun spelling_N : N ;
+fun spelt_N : N ;
+fun spelter_N : N ;
+fun spend_V : V ;
+fun spender_N : N ;
+fun spending_N : N ;
+fun spendthrift_N : N ;
+fun sperm_N : N ;
+fun sperm_whale_N : N ;
+fun spermaceti_N : N ;
+fun spermatid_N : N ;
+fun spermatocele_N : N ;
+fun spermatocyte_N : N ;
+fun spermatogenesis_N : N ;
+fun spermatophyte_N : N ;
+fun spermatozoon_N : N ;
+fun spermicidal_A : A ;
+fun spermicide_N : N ;
+fun spermous_A : A ;
+fun spew_V : V ;
+fun sphagnum_N : N ;
+fun sphenion_N : N ;
+fun sphere_N : N ;
+fun spherical_A : A ;
+fun sphericity_N : N ;
+fun spherocyte_N : N ;
+fun spheroid_N : N ;
+fun spherometer_N : N ;
+fun spherule_N : N ;
+fun sphincter_N : N ;
+fun sphingine_A : A ;
+fun sphinx_N : N ;
+fun sphygmomanometer_N : N ;
+fun spic_N : N ;
+fun spicate_A : A ;
+fun spiccato_N : N ;
+fun spice_N : N ;
+fun spice_V : V ;
+fun spicebush_N : N ;
+fun spicemill_N : N ;
+fun spiciness_N : N ;
+fun spick_A : A ;
+fun spicule_N : N ;
+fun spicy_A : A ;
+fun spider_N : N ;
+fun spiderflower_N : N ;
+fun spiderwort_N : N ;
+fun spidery_A : A ;
+fun spiegeleisen_N : N ;
+fun spiel_N : N ;
+fun spiel_V : V ;
+fun spiff_N : N ;
+fun spiffing_A : A ;
+fun spigot_N : N ;
+fun spike_N : N ;
+fun spike_V : V ;
+fun spikelike_A : A ;
+fun spikemoss_N : N ;
+fun spikenard_N : N ;
+fun spiky_A : A ;
+fun spill_N : N ;
+fun spill_spilled_spilled_V : V ;
+fun spill_spilled_spilt_V : V ;
+fun spill_spilt_spilled_V : V ;
+fun spill_spilt_spilt_V : V ;
+fun spillage_N : N ;
+fun spillover_N : N ;
+fun spillway_N : N ;
+fun spin_N : N ;
+fun spin_V : V ;
+fun spin_drier_N : N ;
+fun spin_dry_V : V ;
+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 spindlelegs_N : N ;
+fun spindly_A : A ;
+fun spindrift_N : N ;
+fun spine_N : N ;
+fun spinel_N : N ;
+fun spineless_A : A ;
+fun spinelessness_N : N ;
+fun spinet_N : N ;
+fun spinnability_N : N ;
+fun spinnable_A : A ;
+fun spinnaker_N : N ;
+fun spinnbarkeit_N : N ;
+fun spinner_N : N ;
+fun spinney_N : N ;
+fun spinning_N : N ;
+fun spinning_wheel_N : N ;
+fun spinoff_N : N ;
+fun spinose_A : A ;
+fun spinous_A : A ;
+fun spinster_N : N ;
+fun spinsterhood_N : N ;
+fun spiny_A : A ;
+fun spiracle_N : N ;
+fun spiral_A : A ;
+fun spiral_N : N ;
+fun spiral_V : V ;
+fun spire_N : N ;
+fun spirea_N : N ;
+fun spirillum_N : N ;
+fun spirit_N : N ;
+fun spirit_lamp_N : N ;
+fun spirit_level_N : N ;
+fun spirit_rapper_N : N ;
+fun spirit_spirited_V : V ;
+fun spirit_spiritted_V : V ;
+fun spirit_stove_N : N ;
+fun spiritedly_Adv : Adv ;
+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_V : V ;
+fun spiritualty_N : N ;
+fun spirituous_A : A ;
+fun spirochete_N : N ;
+fun spirogram_N : N ;
+fun spirograph_N : N ;
+fun spirogyra_N : N ;
+fun spirometer_N : N ;
+fun spirometry_N : N ;
+fun spironolactone_N : N ;
+fun spirt_N : N ;
+fun spirt_V : V ;
+fun spirula_N : N ;
+fun spit_N : N ;
+fun spit_spat_V : V ;
+fun spit_spit_V : V ;
+fun spitball_N : N ;
+fun spite_N : N ;
+fun spite_V : V ;
+fun spiteful_A : A ;
+fun spitefulness_N : N ;
+fun spitfire_N : N ;
+fun spitter_N : N ;
+fun spitting_N : N ;
+fun spittle_N : N ;
+fun spittoon_N : N ;
+fun spitz_N : N ;
+fun spiv_N : N ;
+fun splash_N : N ;
+fun splash_V : V ;
+fun splashboard_N : N ;
+fun splashdown_N : N ;
+fun splasher_N : N ;
+fun splashy_A : A ;
+fun splat_N : N ;
+fun splay_A : A ;
+fun splay_N : N ;
+fun splay_V : V ;
+fun splayfoot_N : N ;
+fun splayfooted_A : A ;
+fun spleen_N : N ;
+fun spleenwort_N : N ;
+fun splendid_A : A ;
+fun splendiferous_A : A ;
+fun splendour_N : N ;
+fun splenectomy_N : N ;
+fun splenetic_A : A ;
+fun splenic_A : A ;
+fun splenitis_N : N ;
+fun splenius_N : N ;
+fun splenomegaly_N : N ;
+fun splice_N : N ;
+fun splice_V : V ;
+fun splicer_N : N ;
+fun spline_N : N ;
+fun splint_N : N ;
+fun splinter_N : N ;
+fun splinter_V : V ;
+fun splinter_proof_A : A ;
+fun splintery_A : A ;
+fun split_N : N ;
+fun split_V : V ;
+fun splitsville_N : N ;
+fun splitter_N : N ;
+fun splodge_N : N ;
+fun splosh_V : V ;
+fun splotch_N : N ;
+fun splurge_N : N ;
+fun splurge_V : V ;
+fun splutter_N : N ;
+fun splutter_V : V ;
+fun spode_N : N ;
+fun spodumene_N : N ;
+fun spoil_N : N ;
+fun spoil_V : V ;
+fun spoilage_N : N ;
+fun spoiler_N : N ;
+fun spoilsport_N : N ;
+fun spoke_N : N ;
+fun spokeshave_N : N ;
+fun spokesman_N : N ;
+fun spokesperson_N : N ;
+fun spokeswoman_N : N ;
+fun spoliation_N : N ;
+fun spondaic_A : A ;
+fun spondee_N : N ;
+fun spondylarthritis_N : N ;
+fun spondylitis_N : N ;
+fun spondylolisthesis_N : N ;
+fun sponge_N : N ;
+fun sponge_V : V ;
+fun sponge_cake_N : N ;
+fun spongefly_N : N ;
+fun sponger_N : N ;
+fun sponginess_N : N ;
+fun spongioblast_N : N ;
+fun spongy_A : A ;
+fun sponsor_N : N ;
+fun sponsor_V : V ;
+fun sponsorship_N : N ;
+fun spontaneity_N : N ;
+fun spontaneous_A : A ;
+fun spontaneousness_N : N ;
+fun spoof_N : N ;
+fun spoof_V : V ;
+fun spook_N : N ;
+fun spook_V : V ;
+fun spooky_A : A ;
+fun spool_N : N ;
+fun spoon_N : N ;
+fun spoon_V : V ;
+fun spoonbill_N : N ;
+fun spoonerism_N : N ;
+fun spoonfeed_V : V ;
+fun spoonfeeding_N : N ;
+fun spoonful_N : N ;
+fun spoor_N : N ;
+fun sporadic_A : A ;
+fun sporadically_Adv : Adv ;
+fun sporangiophore_N : N ;
+fun sporangium_N : N ;
+fun spore_N : N ;
+fun sporocarp_N : N ;
+fun sporogenous_A : A ;
+fun sporophore_N : N ;
+fun sporophyll_N : N ;
+fun sporophyte_N : N ;
+fun sporotrichosis_N : N ;
+fun sporozoan_N : N ;
+fun sporozoite_N : N ;
+fun sporran_N : N ;
+fun sport_N : N ;
+fun sport_V : V ;
+fun sportingly_Adv : Adv ;
+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 sportscast_N : N ;
+fun sportsman_N : N ;
+fun sportsmanlike_A : A ;
+fun sportsmanship_N : N ;
+fun sportswear_N : N ;
+fun sporty_A : A ;
+fun spot_N : N ;
+fun spot_V : V ;
+fun spotless_A : A ;
+fun spotlessness_N : N ;
+fun spotlight_N : N ;
+fun spotlight_V : V ;
+fun spotter_N : N ;
+fun spotty_A : A ;
+fun spousal_A : A ;
+fun spouse_N : N ;
+fun spout_N : N ;
+fun spout_V : V ;
+fun spouter_N : N ;
+fun sprachgefuhl_N : N ;
+fun sprag_N : N ;
+fun sprain_N : N ;
+fun sprain_V : V ;
+fun sprat_N : N ;
+fun sprawl_N : N ;
+fun sprawl_V : V ;
+fun sprawler_N : N ;
+fun sprawly_A : A ;
+fun spray_N : N ;
+fun spray_V : V ;
+fun spray_gun_N : N ;
+fun sprayer_N : N ;
+fun spraying_N : N ;
+fun spread_N : N ;
+fun spread_over_N : N ;
+fun spread_spread_V : V ;
+fun spread_spreaded_V : V ;
+fun spreadeagle_N : N ;
+fun spreadeagle_V : V ;
+fun spreader_N : N ;
+fun spreadsheet_N : N ;
+fun sprechgesang_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_balance_N : N ;
+fun spring_clean_N : N ;
+fun spring_clean_V : V ;
+fun spring_cleaning_N : N ;
+fun spring_gun_N : N ;
+fun spring_mattress_N : N ;
+fun spring_sprang_V : V ;
+fun spring_sprung_V : V ;
+fun springboard_N : N ;
+fun springbok_N : N ;
+fun springer_N : N ;
+fun springless_A : A ;
+fun springlike_A : A ;
+fun springtide_N : N ;
+fun springtime_N : N ;
+fun springy_A : A ;
+fun sprinkle_N : N ;
+fun sprinkle_V : V ;
+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 sprites_N : N ;
+fun spritsail_N : N ;
+fun spritz_N : N ;
+fun spritzer_N : N ;
+fun sprocket_N : N ;
+fun sprocket_wheel_N : N ;
+fun sprog_N : N ;
+fun sprout_N : N ;
+fun sprout_V : V ;
+fun spruce_A : A ;
+fun spruce_N : N ;
+fun spruce_V : V ;
+fun spruceness_N : N ;
+fun sprue_N : N ;
+fun spry_A : A ;
+fun spud_N : N ;
+fun spue_V : V ;
+fun spume_N : N ;
+fun spunk_N : N ;
+fun spunky_A : A ;
+fun spur_N : N ;
+fun spur_V : V ;
+fun spurge_N : N ;
+fun spurious_A : A ;
+fun spuriousness_N : N ;
+fun spurn_V : V ;
+fun spurner_N : N ;
+fun spurt_N : N ;
+fun spurt_V : V ;
+fun sputnik_N : N ;
+fun sputter_N : N ;
+fun sputter_V : V ;
+fun sputum_N : N ;
+fun spy_N : N ;
+fun spy_V : V ;
+fun spy_hole_N : N ;
+fun spyglass_N : N ;
+fun spying_N : N ;
+fun spymaster_N : N ;
+fun spyware_N : N ;
+fun squab_A : A ;
+fun squab_N : N ;
+fun squabble_N : N ;
+fun squabble_V : V ;
+fun squabbler_N : N ;
+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 squama_N : N ;
+fun squamule_N : N ;
+fun squamulose_A : A ;
+fun squander_V : V ;
+fun squandering_N : N ;
+fun squandermania_N : N ;
+fun square_A : A ;
+fun square_Adv : Adv ;
+fun square_N : N ;
+fun square_V : V ;
+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 squaretail_N : N ;
+fun squarish_A : A ;
+fun squash_N : N ;
+fun squash_V : V ;
+fun squashy_A : A ;
+fun squat_A : A ;
+fun squat_N : N ;
+fun squat_V : V ;
+fun squatness_N : N ;
+fun squatter_N : N ;
+fun squaw_N : N ;
+fun squawbush_N : N ;
+fun squawk_N : N ;
+fun squawk_V : V ;
+fun squawker_N : N ;
+fun squeak_N : N ;
+fun squeak_V : V ;
+fun squeaker_N : N ;
+fun squeaky_A : A ;
+fun squeal_N : N ;
+fun squeal_V : V ;
+fun squealer_N : N ;
+fun squeamish_A : A ;
+fun squeamishness_N : N ;
+fun squeegee_N : N ;
+fun squeegee_V : V ;
+fun squeeze_N : N ;
+fun squeeze_V : V ;
+fun squeezer_N : N ;
+fun squelch_N : N ;
+fun squelch_V : V ;
+fun squib_N : N ;
+fun squid_N : N ;
+fun squiffy_A : A ;
+fun squiggle_N : N ;
+fun squiggly_A : A ;
+fun squill_N : N ;
+fun squilla_N : N ;
+fun squinch_N : N ;
+fun squinched_A : A ;
+fun squint_N : N ;
+fun squint_V : V ;
+fun squint_eyed_A : A ;
+fun squinter_N : N ;
+fun squinty_A : A ;
+fun squire_N : N ;
+fun squire_V : V ;
+fun squirearchy_N : N ;
+fun squirm_N : N ;
+fun squirm_V : V ;
+fun squirrel_N : N ;
+fun squirrelfish_N : N ;
+fun squirt_N : N ;
+fun squirt_V : V ;
+fun squish_N : N ;
+fun sri_lankan_A : A ;
+fun sri_lankan_N : N ;
+fun srn_N : N ;
+fun ss_N : N ;
+fun stab_N : N ;
+fun stab_V : V ;
+fun stabber_N : N ;
+fun stabile_A : A ;
+fun stabile_N : N ;
+fun stability_N : N ;
+fun stabilization_N : N ;
+fun stabilize_V : V ;
+fun stabilizer_N : N ;
+fun stable_A : A ;
+fun stable_N : N ;
+fun stable_V : V ;
+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 stachyose_N : N ;
+fun stack_N : N ;
+fun stack_V : V ;
+fun stacker_N : N ;
+fun stacks_N : N ;
+fun stackup_N : N ;
+fun stacte_N : N ;
+fun staddle_N : N ;
+fun stadium_N : N ;
+fun staff_N : N ;
+fun staff_V : V ;
+fun staff_office_N : N ;
+fun stag_N : N ;
+fun stag_party_N : N ;
+fun stage_N : N ;
+fun stage_V : V ;
+fun stage_struck_A : A ;
+fun stage_whisper_N : N ;
+fun stagecoach_N : N ;
+fun stagecraft_N : N ;
+fun stagehand_N : N ;
+fun stager_N : N ;
+fun stagflation_N : N ;
+fun stagflationary_A : A ;
+fun stagger_N : N ;
+fun stagger_V : V ;
+fun staggerbush_N : N ;
+fun staggerer_N : N ;
+fun staggeringly_Adv : Adv ;
+fun staggers_N : N ;
+fun staghound_N : N ;
+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 stainability_N : N ;
+fun stainable_A : A ;
+fun stainer_N : N ;
+fun staining_N : N ;
+fun stainless_A : A ;
+fun stair_N : N ;
+fun stair_carpet_N : N ;
+fun stair_rod_N : N ;
+fun staircase_N : N ;
+fun stairhead_N : N ;
+fun stairway_N : N ;
+fun stairwell_N : N ;
+fun stake_N : N ;
+fun stake_V : V ;
+fun stake_holder_N : N ;
+fun stakeholder_N : N ;
+fun stakeout_N : N ;
+fun stalactite_N : N ;
+fun stalagmite_N : N ;
+fun stale_A : A ;
+fun stale_V : V ;
+fun stalemate_N : N ;
+fun stalemate_V : V ;
+fun staleness_N : N ;
+fun stalk_N : N ;
+fun stalk_V : V ;
+fun stalker_N : N ;
+fun stalking_horse_N : N ;
+fun stall_N : N ;
+fun stall_V : V ;
+fun stall_fed_A : A ;
+fun stallion_N : N ;
+fun stalwart_A : A ;
+fun stalwart_N : N ;
+fun stamen_N : N ;
+fun stamina_N : N ;
+fun stammel_N : N ;
+fun stammer_N : N ;
+fun stammer_V : V ;
+fun stammerer_N : N ;
+fun stammeringly_Adv : Adv ;
+fun stamp_N : N ;
+fun stamp_V : V ;
+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 stamper_N : N ;
+fun stamping_ground_N : N ;
+fun stance_N : N ;
+fun stanch_V : V ;
+fun stanchion_N : N ;
+fun stand_N : N ;
+fun stand_V : V ;
+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_V : V ;
+fun standardizer_N : N ;
+fun standby_A : A ;
+fun standby_N : N ;
+fun standdown_N : N ;
+fun standee_N : N ;
+fun stander_N : N ;
+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 stanhope_N : N ;
+fun stanhopea_N : N ;
+fun stannic_A : A ;
+fun stannite_N : N ;
+fun stanza_N : N ;
+fun stapedectomy_N : N ;
+fun stapelia_N : N ;
+fun stapes_N : N ;
+fun staphylococcal_A : A ;
+fun staphylococcus_N : N ;
+fun staple_A : A ;
+fun staple_N : N ;
+fun staple_V : V ;
+fun stapler_N : N ;
+fun stapling_machine_N : N ;
+fun star_N : N ;
+fun star_V : V ;
+fun starboard_A : A ;
+fun starboard_N : N ;
+fun starboard_V : V ;
+fun starch_N : N ;
+fun starch_V : V ;
+fun starches_N : N ;
+fun starchless_A : A ;
+fun starchlike_A : A ;
+fun starchy_A : A ;
+fun stardom_N : N ;
+fun stardust_N : N ;
+fun stare_N : N ;
+fun stare_V : V ;
+fun starer_N : N ;
+fun starets_N : N ;
+fun starfish_N : N ;
+fun starflower_N : N ;
+fun stargazer_N : N ;
+fun stargazing_N : N ;
+fun staring_Adv : Adv ;
+fun stark_A : A ;
+fun stark_Adv : Adv ;
+fun starkers_A : A ;
+fun starkness_N : N ;
+fun starless_A : A ;
+fun starlet_N : N ;
+fun starlight_N : N ;
+fun starlike_A : A ;
+fun starling_N : N ;
+fun starlit_A : A ;
+fun starry_A : A ;
+fun starry_eyed_A : A ;
+fun starship_N : N ;
+fun start_N : N ;
+fun start_V : V ;
+fun starter_N : N ;
+fun starting_gate_N : N ;
+fun starting_point_N : N ;
+fun starting_post_N : N ;
+fun startle_N : N ;
+fun startle_V : V ;
+fun startling_A : A ;
+fun startup_N : N ;
+fun starvation_N : N ;
+fun starve_V : V ;
+fun starveling_N : N ;
+fun stash_V : V ;
+fun stasis_N : N ;
+fun state_N : N ;
+fun state_V : V ;
+fun statecraft_N : N ;
+fun statehood_N : N ;
+fun statehouse_N : N ;
+fun stateless_A : A ;
+fun stateliness_N : N ;
+fun stately_A : A ;
+fun statement_N : N ;
+fun stater_N : N ;
+fun stateroom_N : N ;
+fun statesman_N : N ;
+fun statesmanlike_A : A ;
+fun statesmanship_N : N ;
+fun stateswoman_N : N ;
+fun statewide_A : A ;
+fun static_A : A ;
+fun static_N : N ;
+fun statically_Adv : Adv ;
+fun statics_N : N ;
+fun station_N : N ;
+fun station_V : V ;
+fun station_waggon_N : N ;
+fun stationariness_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 stative_A : A ;
+fun stator_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_V : V ;
+fun staunchness_N : N ;
+fun staurikosaur_N : N ;
+fun stave_N : N ;
+fun stave_V : V ;
+fun stay_N : N ;
+fun stay_V : V ;
+fun stay_at_home_N : N ;
+fun stayer_N : N ;
+fun staysail_N : N ;
+fun stead_N : N ;
+fun steadfast_A : A ;
+fun steadfastness_N : N ;
+fun steadiness_N : N ;
+fun steady_A : A ;
+fun steady_Adv : Adv ;
+fun steady_N : N ;
+fun steady_V : V ;
+fun steak_N : N ;
+fun steakhouse_N : N ;
+fun steal_N : N ;
+fun steal_V : V ;
+fun stealth_N : N ;
+fun stealthy_A : A ;
+fun steam_N : N ;
+fun steam_V : V ;
+fun steam_boiler_N : N ;
+fun steam_coal_N : N ;
+fun steam_engine_N : N ;
+fun steam_heat_N : N ;
+fun steam_heat_V : V ;
+fun steamboat_N : N ;
+fun steamer_N : N ;
+fun steamfitter_N : N ;
+fun steamroller_N : N ;
+fun steamroller_V : V ;
+fun steamship_N : N ;
+fun steamy_A : A ;
+fun stearic_A : A ;
+fun stearin_N : N ;
+fun steatopygia_N : N ;
+fun steatorrhea_N : N ;
+fun steed_N : N ;
+fun steel_N : N ;
+fun steel_V : V ;
+fun steel_clad_A : A ;
+fun steel_plated_A : A ;
+fun steelmaker_N : N ;
+fun steelworks_N : N ;
+fun steely_A : A ;
+fun steelyard_N : N ;
+fun steenbok_N : N ;
+fun steep_A : A ;
+fun steep_N : N ;
+fun steep_V : V ;
+fun steepen_V : V ;
+fun steeper_N : N ;
+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 steerable_A : A ;
+fun steerage_N : N ;
+fun steerageway_N : N ;
+fun steering_N : N ;
+fun steering_gear_N : N ;
+fun steering_wheel_N : N ;
+fun steersman_N : N ;
+fun stegosaur_N : N ;
+fun stele_N : N ;
+fun stelis_N : N ;
+fun stellar_A : A ;
+fun stem_N : N ;
+fun stem_V : V ;
+fun stemless_A : A ;
+fun stemma_N : N ;
+fun stemmatic_A : A ;
+fun stemmatology_N : N ;
+fun stemmer_N : N ;
+fun stench_N : N ;
+fun stencil_N : N ;
+fun stencil_V : V ;
+fun stenograph_N : N ;
+fun stenographer_N : N ;
+fun stenographic_A : A ;
+fun stenography_N : N ;
+fun stenopterygius_N : N ;
+fun stenosed_A : A ;
+fun stenosis_N : N ;
+fun stent_N : N ;
+fun stentor_N : N ;
+fun stentorian_A : A ;
+fun step_N : N ;
+fun step_V : V ;
+fun stepbrother_N : N ;
+fun stepchild_N : N ;
+fun stepdaughter_N : N ;
+fun stepfather_N : N ;
+fun stephanion_N : N ;
+fun stephanotis_N : N ;
+fun stepladder_N : N ;
+fun stepmother_N : N ;
+fun stepparent_N : N ;
+fun steppe_N : N ;
+fun stepper_N : N ;
+fun stepping_stone_N : N ;
+fun steprelationship_N : N ;
+fun steps_N : N ;
+fun stepsister_N : N ;
+fun stepson_N : N ;
+fun stepwise_Adv : Adv ;
+fun steradian_N : N ;
+fun sterculia_N : N ;
+fun stereo_N : N ;
+fun stereophonic_A : A ;
+fun stereoscope_N : N ;
+fun stereoscopic_A : A ;
+fun stereotype_N : N ;
+fun stereotype_V : V ;
+fun stereotypically_Adv : Adv ;
+fun sterile_A : A ;
+fun sterility_N : N ;
+fun sterilization_N : N ;
+fun sterilize_V : V ;
+fun sterling_A : A ;
+fun sterling_N : N ;
+fun stern_A : A ;
+fun stern_N : N ;
+fun sternal_A : A ;
+fun sternness_N : N ;
+fun sternocleidomastoid_N : N ;
+fun sternpost_N : N ;
+fun sternum_N : N ;
+fun sternutator_N : N ;
+fun sternutatory_A : A ;
+fun sternwheeler_N : N ;
+fun steroid_N : N ;
+fun steroidal_A : A ;
+fun sterol_N : N ;
+fun stertorous_A : A ;
+fun stethoscope_N : N ;
+fun stetson_N : N ;
+fun stevedore_N : N ;
+fun stevia_N : N ;
+fun stew_N : N ;
+fun stew_V : V ;
+fun steward_N : N ;
+fun stewardess_N : N ;
+fun stewardship_N : N ;
+fun stewing_N : N ;
+fun sthene_N : N ;
+fun stibnite_N : N ;
+fun stick_N : N ;
+fun stick_in_the_mud_A : A ;
+fun stick_in_the_mud_N : N ;
+fun stick_on_A : A ;
+fun stick_sticked_V : V ;
+fun stick_stuck_V : V ;
+fun stick_up_N : N ;
+fun stickball_N : N ;
+fun sticker_N : N ;
+fun stickiness_N : N ;
+fun sticking_plaster_N : N ;
+fun stickleback_N : N ;
+fun stickler_N : N ;
+fun stickpin_N : N ;
+fun sticktight_N : N ;
+fun stickweed_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_stiffened_V : V ;
+fun stiffen_stiffenned_V : V ;
+fun stiffener_N : N ;
+fun stiffening_N : N ;
+fun stiffness_N : N ;
+fun stifle_N : N ;
+fun stifle_V : V ;
+fun stifler_N : N ;
+fun stigma_N : N ;
+fun stigmata_N : N ;
+fun stigmatic_A : A ;
+fun stigmatic_N : N ;
+fun stigmatism_N : N ;
+fun stigmatization_N : N ;
+fun stigmatize_V : V ;
+fun stile_N : N ;
+fun stiletto_N : N ;
+fun still_A : A ;
+fun still_Adv : Adv ;
+fun still_N : N ;
+fun still_V : V ;
+fun still_life_N : N ;
+fun still_room_N : N ;
+fun stillbirth_N : N ;
+fun stillborn_A : A ;
+fun stillness_N : N ;
+fun stillroom_N : N ;
+fun stilly_A : A ;
+fun stilt_N : N ;
+fun stilted_A : A ;
+fun stilton_N : N ;
+fun stimulant_A : A ;
+fun stimulant_N : N ;
+fun stimulate_V : V ;
+fun stimulating_A : A ;
+fun stimulation_N : N ;
+fun stimulative_A : A ;
+fun stimulus_N : N ;
+fun sting_N : N ;
+fun sting_V : V ;
+fun stinger_N : N ;
+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 stinker_N : N ;
+fun stinkhorn_N : N ;
+fun stint_N : N ;
+fun stint_V : V ;
+fun stinter_N : N ;
+fun stipe_N : N ;
+fun stipend_N : N ;
+fun stipendiary_A : A ;
+fun stipendiary_N : N ;
+fun stipple_V : V ;
+fun stippler_N : N ;
+fun stipulate_V : V ;
+fun stipulation_N : N ;
+fun stipule_N : N ;
+fun stir_N : N ;
+fun stir_V : V ;
+fun stirk_N : N ;
+fun stirrer_N : N ;
+fun stirring_N : N ;
+fun stirringly_Adv : Adv ;
+fun stirrup_N : N ;
+fun stirrup_cup_N : N ;
+fun stitch_N : N ;
+fun stitch_V : V ;
+fun stitcher_N : N ;
+fun stitchwort_N : N ;
+fun stoat_N : N ;
+fun stob_N : N ;
+fun stochastic_A : A ;
+fun stochastically_Adv : Adv ;
+fun stock_A : A ;
+fun stock_N : N ;
+fun stock_V : V ;
+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_V : V ;
+fun stockbreeder_N : N ;
+fun stockbroker_N : N ;
+fun stockcar_N : N ;
+fun stocker_N : N ;
+fun stockfish_N : N ;
+fun stockholder_N : N ;
+fun stockholding_N : N ;
+fun stockinet_N : N ;
+fun stockinette_N : N ;
+fun stocking_N : N ;
+fun stockinged_A : A ;
+fun stockist_N : N ;
+fun stockjobber_N : N ;
+fun stockman_N : N ;
+fun stockpile_N : N ;
+fun stockpile_V : V ;
+fun stockpiling_N : N ;
+fun stockpot_N : N ;
+fun stockroom_N : N ;
+fun stocks_N : N ;
+fun stocktake_N : N ;
+fun stocktaker_N : N ;
+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 stogy_N : N ;
+fun stoic_A : A ;
+fun stoic_N : N ;
+fun stoical_A : A ;
+fun stoichiometric_A : A ;
+fun stoichiometry_N : N ;
+fun stoicism_N : N ;
+fun stoke_V : V ;
+fun stokehold_N : N ;
+fun stokehole_N : N ;
+fun stoker_N : N ;
+fun stole_N : N ;
+fun stolid_A : A ;
+fun stolidity_N : N ;
+fun stolidness_N : N ;
+fun stolon_N : N ;
+fun stoloniferous_A : A ;
+fun stoma_N : N ;
+fun stomach_N : N ;
+fun stomach_V : V ;
+fun stomach_ache_N : N ;
+fun stomach_pump_N : N ;
+fun stomachache_N : N ;
+fun stomacher_N : N ;
+fun stomatal_A : A ;
+fun stomatitis_N : N ;
+fun stomatopod_N : N ;
+fun stomatous_A : A ;
+fun stomp_N : N ;
+fun stomp_V : V ;
+fun stone_A : A ;
+fun stone_N : N ;
+fun stone_V : V ;
+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 stonechat_N : N ;
+fun stonecress_N : N ;
+fun stonecrop_N : N ;
+fun stonecutter_N : N ;
+fun stonefish_N : N ;
+fun stonefly_N : N ;
+fun stoneless_A : A ;
+fun stonemason_N : N ;
+fun stoner_N : N ;
+fun stonewall_V : V ;
+fun stonewaller_N : N ;
+fun stonewalling_N : N ;
+fun stoneware_N : N ;
+fun stonework_N : N ;
+fun stonewort_N : N ;
+fun stoning_N : N ;
+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 stooper_N : N ;
+fun stop_N : N ;
+fun stop_V : V ;
+fun stopcock_N : N ;
+fun stopgap_N : N ;
+fun stoplight_N : N ;
+fun stopover_N : N ;
+fun stoppable_A : A ;
+fun stoppage_N : N ;
+fun stopper_N : N ;
+fun stoppered_A : A ;
+fun stopping_N : N ;
+fun stopwatch_N : N ;
+fun storage_N : N ;
+fun storax_N : N ;
+fun store_N : N ;
+fun store_V : V ;
+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 storksbill_N : N ;
+fun storm_N : N ;
+fun storm_V : V ;
+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 stormbound_A : A ;
+fun storminess_N : N ;
+fun stormproof_A : A ;
+fun stormy_A : A ;
+fun story_N : N ;
+fun storybook_N : N ;
+fun storyline_N : N ;
+fun storyteller_N : N ;
+fun stotinka_N : N ;
+fun stoup_N : N ;
+fun stout_A : A ;
+fun stout_N : N ;
+fun stouthearted_A : A ;
+fun stoutheartedness_N : N ;
+fun stoutness_N : N ;
+fun stove_N : N ;
+fun stovepipe_N : N ;
+fun stovepiped_A : A ;
+fun stovepiping_N : N ;
+fun stover_N : N ;
+fun stow_V : V ;
+fun stowage_N : N ;
+fun stowaway_N : N ;
+fun strabismus_N : N ;
+fun strabotomy_N : N ;
+fun straddle_N : N ;
+fun straddle_V : V ;
+fun strafe_N : N ;
+fun strafe_V : V ;
+fun strafer_N : N ;
+fun straggle_N : N ;
+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 straightaway_N : N ;
+fun straightedge_N : N ;
+fun straighten_straightened_V : V ;
+fun straighten_straightenned_V : V ;
+fun straightener_N : N ;
+fun straightforward_A : A ;
+fun straightness_N : N ;
+fun straightway_Adv : Adv ;
+fun strain_N : N ;
+fun strain_V : V ;
+fun strainer_N : N ;
+fun strait_A : A ;
+fun strait_N : N ;
+fun strait_laced_A : A ;
+fun straiten_V : V ;
+fun straitjacket_N : N ;
+fun strand_N : N ;
+fun strand_V : V ;
+fun strange_A : A ;
+fun strangeness_N : N ;
+fun stranger_N : N ;
+fun strangle_V : V ;
+fun stranglehold_N : N ;
+fun strangler_N : N ;
+fun strangulation_N : N ;
+fun strap_N : N ;
+fun strap_V : V ;
+fun straphanger_N : N ;
+fun strapless_A : A ;
+fun strapless_N : N ;
+fun straplike_A : A ;
+fun strappado_N : N ;
+fun strapping_A : A ;
+fun strapping_N : N ;
+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 stratification_N : N ;
+fun stratify_V : V ;
+fun stratigraphy_N : N ;
+fun stratosphere_N : N ;
+fun stratum_N : N ;
+fun stratus_N : N ;
+fun straw_A : A ;
+fun straw_N : N ;
+fun straw_V : V ;
+fun straw_coloured_A : A ;
+fun strawberry_N : N ;
+fun strawboard_N : N ;
+fun strawflower_N : N ;
+fun strawworm_N : N ;
+fun stray_A : A ;
+fun stray_N : N ;
+fun stray_V : V ;
+fun streak_N : N ;
+fun streak_V : V ;
+fun streaker_N : N ;
+fun streaky_A : A ;
+fun stream_N : N ;
+fun stream_V : V ;
+fun streambed_N : N ;
+fun streamer_N : N ;
+fun streamlet_N : N ;
+fun streamline_V : V ;
+fun streamliner_N : N ;
+fun street_N : N ;
+fun street_girl_N : N ;
+fun street_urchin_N : N ;
+fun streetcar_N : N ;
+fun streetlight_N : N ;
+fun streetwalker_N : N ;
+fun streetwise_A : A ;
+fun strength_N : N ;
+fun strengthen_V : V ;
+fun strengthener_N : N ;
+fun strengthening_N : N ;
+fun strenuous_A : A ;
+fun strenuousness_N : N ;
+fun streptobacillus_N : N ;
+fun streptocarpus_N : N ;
+fun streptococcal_A : A ;
+fun streptococcus_N : N ;
+fun streptodornase_N : N ;
+fun streptokinase_N : N ;
+fun streptolysin_N : N ;
+fun streptomyces_N : N ;
+fun streptomycin_N : N ;
+fun streptothricin_N : N ;
+fun stress_N : N ;
+fun stress_V : V ;
+fun stress_mark_N : N ;
+fun stressor_N : N ;
+fun stretch_A : A ;
+fun stretch_N : N ;
+fun stretch_V : V ;
+fun stretchable_A : A ;
+fun stretcher_N : N ;
+fun stretcher_bearer_N : N ;
+fun stretcher_party_N : N ;
+fun stretching_N : N ;
+fun streusel_N : N ;
+fun strew_V : V ;
+fun stria_N : N ;
+fun striate_A : A ;
+fun striated_A : A ;
+fun stricken_A : A ;
+fun strickle_N : N ;
+fun strict_A : A ;
+fun strictness_N : N ;
+fun stricture_N : N ;
+fun stride_N : N ;
+fun stride_V : V ;
+fun strident_A : A ;
+fun strider_N : N ;
+fun stridor_N : N ;
+fun stridulate_V : V ;
+fun stridulation_N : N ;
+fun strife_N : N ;
+fun strike_N : N ;
+fun strike_leader_N : N ;
+fun strike_pay_N : N ;
+fun strike_striked_V : V ;
+fun strike_struck_V : V ;
+fun strikebound_A : A ;
+fun strikebreaker_N : N ;
+fun strikebreaking_N : N ;
+fun strikeout_N : N ;
+fun striker_N : N ;
+fun striking_A : A ;
+fun string_N : N ;
+fun string_V : V ;
+fun stringency_N : N ;
+fun stringent_A : A ;
+fun stringer_N : N ;
+fun stringy_A : A ;
+fun stringybark_N : N ;
+fun strip_N : N ;
+fun strip_V : V ;
+fun strip_lighting_N : N ;
+fun strip_poker_N : N ;
+fun strip_show_N : N ;
+fun stripe_N : N ;
+fun striped_A : A ;
+fun striper_N : N ;
+fun striping_N : N ;
+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 striving_N : N ;
+fun stroboscope_N : N ;
+fun stroke_N : N ;
+fun stroke_V : V ;
+fun stroll_N : N ;
+fun stroll_V : V ;
+fun stroller_N : N ;
+fun stroma_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 strongman_N : N ;
+fun strongroom_N : N ;
+fun strontianite_N : N ;
+fun strontium_N : N ;
+fun strop_N : N ;
+fun strop_V : V ;
+fun strophanthin_N : N ;
+fun strophanthus_N : N ;
+fun strophe_N : N ;
+fun stroppy_A : A ;
+fun structural_A : A ;
+fun structuralism_N : N ;
+fun structure_N : N ;
+fun structure_V : V ;
+fun strudel_N : N ;
+fun struggle_N : N ;
+fun struggle_V : V ;
+fun struggler_N : N ;
+fun strum_N : N ;
+fun strum_V : V ;
+fun strumpet_N : N ;
+fun strut_N : N ;
+fun strut_V : V ;
+fun struthiomimus_N : N ;
+fun strychnine_N : N ;
+fun stub_N : N ;
+fun stub_V : V ;
+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_V : V ;
+fun stuck_V : V ;
+fun stuck_up_A : A ;
+fun stud_N : N ;
+fun stud_V : V ;
+fun stud_farm_N : N ;
+fun stud_mare_N : N ;
+fun studbook_N : N ;
+fun student_N : N ;
+fun studentship_N : N ;
+fun studio_N : N ;
+fun studious_A : A ;
+fun studiousness_N : N ;
+fun study_N : N ;
+fun study_V : V ;
+fun stuff_N : N ;
+fun stuff_V : V ;
+fun stuffer_N : N ;
+fun stuffiness_N : N ;
+fun stuffing_N : N ;
+fun stuffy_A : A ;
+fun stultification_N : N ;
+fun stultify_V : V ;
+fun stumble_N : N ;
+fun stumble_V : V ;
+fun stumblebum_N : N ;
+fun stumbler_N : N ;
+fun stumbling_block_N : N ;
+fun stump_N : N ;
+fun stump_V : V ;
+fun stumper_N : N ;
+fun stumping_N : N ;
+fun stumpy_A : A ;
+fun stun_V : V ;
+fun stunner_N : N ;
+fun stunning_A : A ;
+fun stunt_N : N ;
+fun stunt_V : V ;
+fun stupa_N : N ;
+fun stupefaction_N : N ;
+fun stupefy_V : V ;
+fun stupefying_A : A ;
+fun stupendous_A : A ;
+fun stupid_A : A ;
+fun stupid_N : N ;
+fun stupidity_N : N ;
+fun stupify_V : V ;
+fun stupifying_A : A ;
+fun stupor_N : N ;
+fun sturdiness_N : N ;
+fun sturdy_A : A ;
+fun sturgeon_N : N ;
+fun stutter_N : N ;
+fun stutter_V : V ;
+fun stutterer_N : N ;
+fun stutteringly_Adv : Adv ;
+fun sty_N : N ;
+fun stye_N : N ;
+fun stygian_A : A ;
+fun style_N : N ;
+fun style_V : V ;
+fun styleless_A : A ;
+fun stylet_N : N ;
+fun stylish_A : A ;
+fun stylishness_N : N ;
+fun stylist_N : N ;
+fun stylistic_A : A ;
+fun stylistically_Adv : Adv ;
+fun stylite_N : N ;
+fun stylization_N : N ;
+fun stylize_V : V ;
+fun stylopodium_N : N ;
+fun stylus_N : N ;
+fun stymie_N : N ;
+fun stymie_V : V ;
+fun stymy_V : V ;
+fun styptic_A : A ;
+fun styptic_N : N ;
+fun styracosaur_N : N ;
+fun styrax_N : N ;
+fun styrene_N : N ;
+fun suasion_N : N ;
+fun suave_A : A ;
+fun suavity_N : N ;
+fun sub_N : N ;
+fun sub_V : V ;
+fun sub_judice_A : A ;
+fun sub_rosa_Adv : Adv ;
+fun sub_underwrite_V : V ;
+fun subacid_A : A ;
+fun subacute_A : A ;
+fun subaltern_N : N ;
+fun subaqueous_A : A ;
+fun subarctic_A : A ;
+fun subartesian_A : A ;
+fun subatomic_A : A ;
+fun subbase_N : N ;
+fun subbing_N : N ;
+fun subclass_N : N ;
+fun subclavian_A : A ;
+fun subclinical_A : A ;
+fun subcommittee_N : N ;
+fun subcompact_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 subcontractor_N : N ;
+fun subcortical_A : A ;
+fun subculture_N : N ;
+fun subcutaneous_A : A ;
+fun subdeacon_N : N ;
+fun subdirectory_N : N ;
+fun subdivide_V : V ;
+fun subdivider_N : N ;
+fun subdivision_N : N ;
+fun subdominant_N : N ;
+fun subduable_A : A ;
+fun subduction_N : N ;
+fun subdue_V : V ;
+fun subduer_N : N ;
+fun subdural_A : A ;
+fun subedit_V : V ;
+fun subeditor_N : N ;
+fun subfamily_N : N ;
+fun subfigure_N : N ;
+fun subfusc_A : A ;
+fun subgenus_N : N ;
+fun subgross_A : A ;
+fun subgroup_N : N ;
+fun subheading_N : N ;
+fun subhuman_A : A ;
+fun subjacent_A : A ;
+fun subject_A : A ;
+fun subject_N : N ;
+fun subject_V : V ;
+fun subject_to_Prep : Prep ;
+fun subjection_N : N ;
+fun subjective_A : A ;
+fun subjectivism_N : N ;
+fun subjectivist_N : N ;
+fun subjectivity_N : N ;
+fun subjoin_V : V ;
+fun subjugate_V : V ;
+fun subjugation_N : N ;
+fun subjugator_N : N ;
+fun subjunctive_A : A ;
+fun subjunctive_N : N ;
+fun subkingdom_N : N ;
+fun sublease_N : N ;
+fun sublease_V : V ;
+fun sublet_V : V ;
+fun sublieutenant_N : N ;
+fun sublimate_A : A ;
+fun sublimate_N : N ;
+fun sublimate_V : V ;
+fun sublimation_N : N ;
+fun sublime_A : A ;
+fun sublime_N : N ;
+fun sublimed_A : A ;
+fun subliminal_A : A ;
+fun sublimity_N : N ;
+fun sublingual_A : A ;
+fun subliterary_A : A ;
+fun sublittoral_A : A ;
+fun sublunar_A : A ;
+fun subluxation_N : N ;
+fun submarine_A : A ;
+fun submarine_N : N ;
+fun submariner_N : N ;
+fun submediant_N : N ;
+fun submerge_V : V ;
+fun submergence_N : N ;
+fun submersible_A : A ;
+fun submersible_N : N ;
+fun submersion_N : N ;
+fun submission_N : N ;
+fun submissive_A : A ;
+fun submissiveness_N : N ;
+fun submit_V : V ;
+fun submitter_N : N ;
+fun submucosa_N : N ;
+fun subnormal_A : A ;
+fun subnormal_N : N ;
+fun subnormality_N : N ;
+fun suboceanic_A : A ;
+fun suborbital_A : A ;
+fun suborder_N : N ;
+fun subordinate_A : A ;
+fun subordinate_N : N ;
+fun subordinate_V : V ;
+fun subordinateness_N : N ;
+fun subordination_N : N ;
+fun subordinative_A : A ;
+fun suborn_V : V ;
+fun subornation_N : N ;
+fun subpart_N : N ;
+fun subphylum_N : N ;
+fun subpoena_N : N ;
+fun subpoena_V : V ;
+fun subpopulation_N : N ;
+fun subrogation_N : N ;
+fun subscribe_V : V ;
+fun subscriber_N : N ;
+fun subscript_A : A ;
+fun subscript_N : N ;
+fun subscription_N : N ;
+fun subsection_N : N ;
+fun subsequent_A : A ;
+fun subserve_V : V ;
+fun subservience_N : N ;
+fun subservient_A : A ;
+fun subset_N : N ;
+fun subshrub_N : N ;
+fun subside_V : V ;
+fun subsidence_N : N ;
+fun subsidiary_A : A ;
+fun subsidiary_N : N ;
+fun subsidization_N : N ;
+fun subsidize_V : V ;
+fun subsidizer_N : N ;
+fun subsidy_N : N ;
+fun subsist_V : V ;
+fun subsistence_N : N ;
+fun subsoil_N : N ;
+fun subsonic_A : A ;
+fun subspace_N : N ;
+fun subspecies_N : N ;
+fun substance_N : N ;
+fun substandard_A : A ;
+fun substantial_A : A ;
+fun substantiality_N : N ;
+fun substantiate_V : V ;
+fun substantiation_N : N ;
+fun substantival_A : A ;
+fun substantive_A : A ;
+fun substantive_N : N ;
+fun substation_N : N ;
+fun substitutable_A : A ;
+fun substitute_N : N ;
+fun substitute_V : V ;
+fun substitution_N : N ;
+fun substrate_N : N ;
+fun substratum_N : N ;
+fun substring_N : N ;
+fun substructure_N : N ;
+fun subsume_V : V ;
+fun subsumption_N : N ;
+fun subsurface_A : A ;
+fun subsystem_N : N ;
+fun subtend_V : V ;
+fun subterfuge_N : N ;
+fun subterminal_A : A ;
+fun subterranean_A : A ;
+fun subthalamus_N : N ;
+fun subtilin_N : N ;
+fun subtitle_N : N ;
+fun subtle_A : A ;
+fun subtlety_N : N ;
+fun subtly_Adv : Adv ;
+fun subtonic_N : N ;
+fun subtopia_N : N ;
+fun subtotal_N : N ;
+fun subtract_V : V ;
+fun subtracter_N : N ;
+fun subtraction_N : N ;
+fun subtractive_A : A ;
+fun subtrahend_N : N ;
+fun subtreasury_N : N ;
+fun subtropical_A : A ;
+fun subtropics_N : N ;
+fun suburb_N : N ;
+fun suburban_A : A ;
+fun suburbanite_N : N ;
+fun suburbanized_A : A ;
+fun suburbia_N : N ;
+fun subvention_N : N ;
+fun subversion_N : N ;
+fun subversive_A : A ;
+fun subversive_N : N ;
+fun subvert_V : V ;
+fun subvocalizer_N : N ;
+fun subway_N : N ;
+fun subwoofer_N : N ;
+fun succedaneum_N : N ;
+fun succeed_V : V ;
+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 succinic_A : A ;
+fun succinylcholine_N : N ;
+fun succorer_N : N ;
+fun succotash_N : N ;
+fun succour_N : N ;
+fun succour_V : V ;
+fun succubus_N : N ;
+fun succulence_N : N ;
+fun succulent_A : A ;
+fun succulent_N : N ;
+fun succumb_V : V ;
+fun succussion_N : N ;
+fun such_Adv : Adv ;
+fun such_as_Prep : Prep ;
+fun suchlike_A : A ;
+fun suck_N : N ;
+fun suck_V : V ;
+fun sucker_N : N ;
+fun sucking_N : N ;
+fun sucking_pig_N : N ;
+fun suckle_V : V ;
+fun suckling_N : N ;
+fun sucralfate_N : N ;
+fun sucre_N : N ;
+fun sucrose_N : N ;
+fun suction_N : N ;
+fun suctorial_A : A ;
+fun sudanese_A : A ;
+fun sudanese_N : N ;
+fun sudatorium_N : N ;
+fun sudden_A : A ;
+fun sudden_N : N ;
+fun suddenness_N : N ;
+fun sudoku_N : N ;
+fun sudorific_N : N ;
+fun sudra_N : N ;
+fun suds_N : N ;
+fun sue_V : V ;
+fun suede_N : N ;
+fun suer_N : N ;
+fun suet_N : N ;
+fun suety_A : A ;
+fun suffer_V : V ;
+fun sufferable_A : A ;
+fun sufferance_N : N ;
+fun sufferer_N : N ;
+fun suffering_N : N ;
+fun suffice_V : V ;
+fun sufficiency_N : N ;
+fun sufficient_A : A ;
+fun suffix_N : N ;
+fun suffixation_N : N ;
+fun suffocate_V : V ;
+fun suffocation_N : N ;
+fun suffragan_N : N ;
+fun suffrage_N : N ;
+fun suffragette_N : N ;
+fun suffragism_N : N ;
+fun suffragist_N : N ;
+fun suffrutescent_A : A ;
+fun suffuse_V : V ;
+fun suffusion_N : N ;
+fun suffusive_A : A ;
+fun sugar_N : N ;
+fun sugar_V : V ;
+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 sugarberry_N : N ;
+fun sugarcane_N : N ;
+fun sugariness_N : N ;
+fun sugarless_A : A ;
+fun sugarloaf_N : N ;
+fun sugarlump_N : N ;
+fun sugarplum_N : N ;
+fun sugary_A : A ;
+fun suggest_V : V ;
+fun suggester_N : N ;
+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_suited_V : V ;
+fun suit_suitted_V : V ;
+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 sukiyaki_N : N ;
+fun suksdorfia_N : N ;
+fun sulcate_A : A ;
+fun sulcus_N : N ;
+fun sulfacetamide_N : N ;
+fun sulfadiazine_N : N ;
+fun sulfamethazine_N : N ;
+fun sulfamethoxazole_N : N ;
+fun sulfanilamide_N : N ;
+fun sulfapyridine_N : N ;
+fun sulfate_N : N ;
+fun sulfide_N : N ;
+fun sulfisoxazole_N : N ;
+fun sulfonate_N : N ;
+fun sulfonylurea_N : N ;
+fun sulfur_N : N ;
+fun sulfurous_A : A ;
+fun sulindac_N : N ;
+fun sulk_N : N ;
+fun sulk_V : V ;
+fun sulkiness_N : N ;
+fun sulky_A : A ;
+fun sulky_N : N ;
+fun sullen_A : A ;
+fun sullenness_N : N ;
+fun sully_V : V ;
+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 sultriness_N : N ;
+fun sultry_A : A ;
+fun sum_N : N ;
+fun sum_V : V ;
+fun sumac_N : N ;
+fun sumach_N : N ;
+fun sumatran_A : A ;
+fun sumatran_N : N ;
+fun summarization_N : N ;
+fun summarize_V : V ;
+fun summary_A : A ;
+fun summary_N : N ;
+fun summation_N : N ;
+fun summational_A : A ;
+fun summer_N : N ;
+fun summer_V : V ;
+fun summercaters_N : N ;
+fun summerhouse_N : N ;
+fun summertime_N : N ;
+fun summery_A : A ;
+fun summing_up_N : N ;
+fun summit_N : N ;
+fun summon_summoned_V : V ;
+fun summon_summonned_V : V ;
+fun summons_N : N ;
+fun summons_V : V ;
+fun sumo_N : N ;
+fun sump_N : N ;
+fun sumpsimus_N : N ;
+fun sumpter_N : N ;
+fun sumptuary_A : A ;
+fun sumptuous_A : A ;
+fun sumptuousness_N : N ;
+fun sun_N : N ;
+fun sun_V : V ;
+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 sunbather_N : N ;
+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 sunder_N : N ;
+fun sunder_V : V ;
+fun sundew_N : N ;
+fun sundial_N : N ;
+fun sundown_N : N ;
+fun sundowner_N : N ;
+fun sundress_N : N ;
+fun sundries_N : N ;
+fun sundrops_N : N ;
+fun sundry_A : A ;
+fun sunfish_N : N ;
+fun sunflower_N : N ;
+fun sunglass_N : N ;
+fun sunglasses_N : N ;
+fun sunhat_N : N ;
+fun sunlamp_N : N ;
+fun sunless_A : A ;
+fun sunlight_N : N ;
+fun sunlit_A : A ;
+fun sunniness_N : N ;
+fun sunny_A : A ;
+fun sunray_A : A ;
+fun sunray_N : N ;
+fun sunrise_N : N ;
+fun sunroof_N : N ;
+fun sunscreen_N : N ;
+fun sunset_A : A ;
+fun sunset_N : N ;
+fun sunshade_N : N ;
+fun sunshine_N : N ;
+fun sunshine_roof_N : N ;
+fun sunspot_N : N ;
+fun sunstone_N : N ;
+fun sunstroke_N : N ;
+fun sunsuit_N : N ;
+fun suntan_N : N ;
+fun suntrap_N : N ;
+fun sup_N : N ;
+fun sup_V : V ;
+fun super_A : A ;
+fun super_N : N ;
+fun superabundance_N : N ;
+fun superabundant_A : A ;
+fun superannuate_V : V ;
+fun superannuation_N : N ;
+fun superb_A : A ;
+fun superbug_N : N ;
+fun supercargo_N : N ;
+fun supercede_V : V ;
+fun supercharged_A : A ;
+fun supercharger_N : N ;
+fun supercilious_A : A ;
+fun superciliousness_N : N ;
+fun superclass_N : N ;
+fun supercomputer_N : N ;
+fun superconductivity_N : N ;
+fun supercritical_A : A ;
+fun superego_N : N ;
+fun supererogation_N : N ;
+fun superfamily_N : N ;
+fun superfatted_A : A ;
+fun superfecta_N : N ;
+fun superfecundation_N : N ;
+fun superfetation_N : N ;
+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 supergiant_N : N ;
+fun supergrass_N : N ;
+fun superhighway_N : N ;
+fun superhuman_A : A ;
+fun superimpose_V : V ;
+fun superincumbent_A : A ;
+fun superinfection_N : N ;
+fun superintend_V : V ;
+fun superintendence_N : N ;
+fun superintendent_N : N ;
+fun superior_A : A ;
+fun superior_N : N ;
+fun superiority_N : N ;
+fun superjacent_A : A ;
+fun superlative_A : A ;
+fun superlative_N : N ;
+fun superman_N : N ;
+fun supermarket_N : N ;
+fun supermarketer_N : N ;
+fun supermodel_N : N ;
+fun supermom_N : N ;
+fun supernal_A : A ;
+fun supernatant_A : A ;
+fun supernatant_N : N ;
+fun supernatural_A : A ;
+fun supernatural_N : N ;
+fun supernaturalism_N : N ;
+fun supernaturalist_A : A ;
+fun supernormal_A : A ;
+fun supernova_N : N ;
+fun supernumerary_N : N ;
+fun superorder_N : N ;
+fun superordinate_A : A ;
+fun superoxide_N : N ;
+fun superphylum_N : N ;
+fun superposition_N : N ;
+fun supersaturated_A : A ;
+fun superscript_A : A ;
+fun superscript_N : N ;
+fun superscription_N : N ;
+fun supersede_V : V ;
+fun supersedure_N : N ;
+fun supersession_N : N ;
+fun supersonic_A : A ;
+fun superstition_N : N ;
+fun superstitious_A : A ;
+fun superstrate_N : N ;
+fun superstring_N : N ;
+fun superstructure_N : N ;
+fun supersymmetry_N : N ;
+fun supertanker_N : N ;
+fun supertax_N : N ;
+fun supertitle_N : N ;
+fun supertonic_N : N ;
+fun supertwister_N : N ;
+fun supervene_V : V ;
+fun supervention_N : N ;
+fun supervise_V : V ;
+fun supervision_N : N ;
+fun supervisor_N : N ;
+fun supervisory_A : A ;
+fun supination_N : N ;
+fun supinator_N : N ;
+fun supine_A : A ;
+fun supper_N : N ;
+fun supperless_A : A ;
+fun supping_N : N ;
+fun supplant_V : V ;
+fun supplanter_N : N ;
+fun supplanting_N : N ;
+fun supple_A : A ;
+fun supplejack_N : N ;
+fun supplement_N : N ;
+fun supplement_V : V ;
+fun supplementary_A : A ;
+fun supplementation_N : N ;
+fun suppleness_N : N ;
+fun suppliant_A : A ;
+fun suppliant_N : N ;
+fun supplicant_N : N ;
+fun supplicate_V : V ;
+fun supplication_N : N ;
+fun supplier_N : N ;
+fun supply_N : N ;
+fun supply_V : V ;
+fun support_N : N ;
+fun support_V : V ;
+fun supportable_A : A ;
+fun supporter_N : N ;
+fun supportive_A : A ;
+fun suppose_V : V ;
+fun supposed_A : A ;
+fun supposition_N : N ;
+fun suppository_N : N ;
+fun suppress_V : V ;
+fun suppressant_N : N ;
+fun suppression_N : N ;
+fun suppressive_A : A ;
+fun suppressor_N : N ;
+fun suppurate_V : V ;
+fun suppuration_N : N ;
+fun suppurative_A : A ;
+fun supra_Adv : Adv ;
+fun suprainfection_N : N ;
+fun supranational_A : A ;
+fun supraorbital_A : A ;
+fun suprasegmental_A : A ;
+fun supremacism_N : N ;
+fun supremacist_N : N ;
+fun supremacy_N : N ;
+fun suprematism_N : N ;
+fun suprematist_N : N ;
+fun supreme_A : A ;
+fun supremo_N : N ;
+fun sura_N : N ;
+fun surbase_N : N ;
+fun surcharge_N : N ;
+fun surcharge_V : V ;
+fun surcoat_N : N ;
+fun surd_N : N ;
+fun sure_A : A ;
+fun sure_Adv : Adv ;
+fun sure_footed_A : A ;
+fun surefooted_A : A ;
+fun sureness_N : N ;
+fun surety_N : N ;
+fun surf_N : N ;
+fun surface_A : A ;
+fun surface_N : N ;
+fun surface_V : V ;
+fun surface_to_air_A : A ;
+fun surfacing_N : N ;
+fun surfbird_N : N ;
+fun surfboard_N : N ;
+fun surfboat_N : N ;
+fun surfeit_N : N ;
+fun surfeit_V : V ;
+fun surfer_N : N ;
+fun surficial_A : A ;
+fun surfing_N : N ;
+fun surfperch_N : N ;
+fun surfriding_N : N ;
+fun surge_N : N ;
+fun surge_V : V ;
+fun surgeon_N : N ;
+fun surgeonfish_N : N ;
+fun surgery_N : N ;
+fun surgical_A : A ;
+fun suricate_N : N ;
+fun surliness_N : N ;
+fun surly_A : A ;
+fun surmise_N : N ;
+fun surmise_V : V ;
+fun surmount_V : V ;
+fun surmountable_A : A ;
+fun surname_N : N ;
+fun surpass_V : V ;
+fun surpassing_A : A ;
+fun surplice_N : N ;
+fun surpliced_A : A ;
+fun surplus_N : N ;
+fun surprise_N : N ;
+fun surprise_V : V ;
+fun surprisedly_Adv : Adv ;
+fun surpriser_N : N ;
+fun surprising_A : A ;
+fun surrealism_N : N ;
+fun surrealist_N : N ;
+fun surrealistic_A : A ;
+fun surrebutter_N : N ;
+fun surrejoinder_N : N ;
+fun surrender_N : N ;
+fun surrender_V : V ;
+fun surrenderer_N : N ;
+fun surreptitious_A : A ;
+fun surrey_N : N ;
+fun surrogate_A : A ;
+fun surrogate_N : N ;
+fun surround_N : N ;
+fun surround_V : V ;
+fun surrounding_A : A ;
+fun surtax_N : N ;
+fun surtax_V : V ;
+fun surtout_N : N ;
+fun surveillance_N : N ;
+fun survey_N : N ;
+fun survey_V : V ;
+fun surveying_N : N ;
+fun surveyor_N : N ;
+fun survival_N : N ;
+fun survivalist_N : N ;
+fun survive_V : V ;
+fun survivor_N : N ;
+fun susceptibility_N : N ;
+fun susceptible_A : A ;
+fun sushi_N : N ;
+fun suslik_N : N ;
+fun suspect_A : A ;
+fun suspect_N : N ;
+fun suspect_V : V ;
+fun suspend_V : V ;
+fun suspender_N : N ;
+fun suspense_N : N ;
+fun suspension_N : N ;
+fun suspensive_A : A ;
+fun suspensory_N : N ;
+fun suspicion_N : N ;
+fun suspicious_A : A ;
+fun suss_V : V ;
+fun sustain_V : V ;
+fun sustainability_N : N ;
+fun sustainable_A : A ;
+fun sustenance_N : N ;
+fun sustentacular_A : A ;
+fun susurration_N : N ;
+fun sutler_N : N ;
+fun sutra_N : N ;
+fun suttee_N : N ;
+fun suture_N : N ;
+fun suturing_N : N ;
+fun suzerain_N : N ;
+fun suzerainty_N : N ;
+fun svelte_A : A ;
+fun svoboda_N : N ;
+fun swab_N : N ;
+fun swab_V : V ;
+fun swabbing_N : N ;
+fun swad_N : N ;
+fun swaddle_V : V ;
+fun swag_N : N ;
+fun swagger_A : A ;
+fun swagger_N : N ;
+fun swagger_V : V ;
+fun swaggerer_N : N ;
+fun swagman_N : N ;
+fun swahili_N : N ;
+fun swain_N : N ;
+fun swale_N : N ;
+fun swallow_N : N ;
+fun swallow_V : V ;
+fun swallow_tailed_A : A ;
+fun swami_N : N ;
+fun swamp_N : N ;
+fun swamp_V : V ;
+fun swampy_A : A ;
+fun swan's_down_N : N ;
+fun swan_N : N ;
+fun swan_V : V ;
+fun swan_song_N : N ;
+fun swank_A : A ;
+fun swank_N : N ;
+fun swank_V : V ;
+fun swanky_A : A ;
+fun swap_N : N ;
+fun swap_V : V ;
+fun sward_N : N ;
+fun swarm_N : N ;
+fun swarm_V : V ;
+fun swarthy_A : A ;
+fun swash_N : N ;
+fun swashbuckler_N : N ;
+fun swashbuckling_A : A ;
+fun swashbuckling_N : N ;
+fun swastika_N : N ;
+fun swat_N : N ;
+fun swat_V : V ;
+fun swatch_N : N ;
+fun swath_N : N ;
+fun swathe_N : N ;
+fun swathe_V : V ;
+fun swathing_N : N ;
+fun swatter_N : N ;
+fun sway_N : N ;
+fun sway_V : V ;
+fun swazi_A : A ;
+fun swazi_N : N ;
+fun swear_sweared_V : V ;
+fun swear_swore_V : V ;
+fun swearer_N : N ;
+fun swearing_N : N ;
+fun swearword_N : N ;
+fun sweat_N : N ;
+fun sweat_V : V ;
+fun sweatband_N : N ;
+fun sweatbox_N : N ;
+fun sweater_N : N ;
+fun sweatshirt_N : N ;
+fun sweatshop_N : N ;
+fun sweaty_A : A ;
+fun sweep_N : N ;
+fun sweep_V : V ;
+fun sweeper_N : N ;
+fun sweeping_A : A ;
+fun sweeping_N : N ;
+fun sweepstakes_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 sweetening_N : N ;
+fun sweetheart_A : A ;
+fun sweetheart_N : N ;
+fun sweetie_N : N ;
+fun sweetish_A : A ;
+fun sweetleaf_N : N ;
+fun sweetmeat_N : N ;
+fun sweetness_N : N ;
+fun sweetsop_N : N ;
+fun swell_A : A ;
+fun swell_N : N ;
+fun swell_V : V ;
+fun swelling_N : N ;
+fun swelter_V : V ;
+fun sweptback_A : A ;
+fun sweptwing_A : A ;
+fun swerve_N : N ;
+fun swerve_V : V ;
+fun swift_A : A ;
+fun swift_N : N ;
+fun swiftlet_N : N ;
+fun swiftness_N : N ;
+fun swig_N : N ;
+fun swig_V : V ;
+fun swill_N : N ;
+fun swill_V : V ;
+fun swim_N : N ;
+fun swim_V : V ;
+fun swimmer_N : N ;
+fun swimmeret_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 swindler_N : N ;
+fun swine_N : N ;
+fun swineherd_N : N ;
+fun swing_N : N ;
+fun swing_swinged_V : V ;
+fun swing_swung_V : V ;
+fun swinge_V : V ;
+fun swingeing_A : A ;
+fun swinger_N : N ;
+fun swinish_A : A ;
+fun swipe_N : N ;
+fun swipe_V : V ;
+fun swirl_N : N ;
+fun swirl_V : V ;
+fun swish_A : A ;
+fun swish_N : N ;
+fun swish_V : V ;
+fun swishy_A : A ;
+fun swiss_N : N ;
+fun switch_N : N ;
+fun switch_V : V ;
+fun switchblade_N : N ;
+fun switchboard_N : N ;
+fun switcher_N : N ;
+fun switcheroo_N : N ;
+fun switchman_N : N ;
+fun swivel_N : N ;
+fun swivel_V : V ;
+fun swivet_N : N ;
+fun swiz_N : N ;
+fun swizzle_N : N ;
+fun swizzle_stick_N : N ;
+fun swob_N : N ;
+fun swob_V : V ;
+fun swollen_headed_A : A ;
+fun swoon_N : N ;
+fun swoon_V : V ;
+fun swoop_N : N ;
+fun swoop_V : V ;
+fun swoosh_N : N ;
+fun swop_N : N ;
+fun swop_V : V ;
+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 swordtail_N : N ;
+fun swore_V : V ;
+fun swot_N : N ;
+fun swot_V : V ;
+fun sybarite_N : N ;
+fun sybaritic_A : A ;
+fun sycamore_N : N ;
+fun syconium_N : N ;
+fun sycophancy_N : N ;
+fun sycophant_N : N ;
+fun sycophantic_A : A ;
+fun syllabary_N : N ;
+fun syllabic_A : A ;
+fun syllabically_Adv : Adv ;
+fun syllabicate_V : V ;
+fun syllabication_N : N ;
+fun syllabicity_N : N ;
+fun syllabification_N : N ;
+fun syllabify_V : V ;
+fun syllabize_V : V ;
+fun syllable_N : N ;
+fun syllabled_A : A ;
+fun syllabub_N : N ;
+fun syllabus_N : N ;
+fun syllepsis_N : N ;
+fun syllogism_N : N ;
+fun syllogist_N : N ;
+fun syllogistic_A : A ;
+fun sylph_N : N ;
+fun sylph_like_A : A ;
+fun sylvan_A : A ;
+fun sylvan_N : N ;
+fun sylvanite_N : N ;
+fun sylvite_N : N ;
+fun symbiosis_N : N ;
+fun symbiotic_A : A ;
+fun symbiotically_Adv : Adv ;
+fun symbol_N : N ;
+fun symbolatry_N : N ;
+fun symbolic_A : A ;
+fun symbolical_A : A ;
+fun symbolism_N : N ;
+fun symbolist_N : N ;
+fun symbolization_N : N ;
+fun symbolize_V : V ;
+fun symbolizing_N : N ;
+fun symbology_N : N ;
+fun symmetric_A : A ;
+fun symmetrical_A : A ;
+fun symmetry_N : N ;
+fun sympathectomy_N : N ;
+fun sympathetic_A : A ;
+fun sympathetically_Adv : Adv ;
+fun sympathize_V : V ;
+fun sympathizer_N : N ;
+fun sympathy_N : N ;
+fun sympatric_A : A ;
+fun sympatry_N : N ;
+fun symphonic_A : A ;
+fun symphonist_N : N ;
+fun symphony_N : N ;
+fun symphysion_N : N ;
+fun symphysis_N : N ;
+fun symploce_N : N ;
+fun symposiast_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 synapse_N : N ;
+fun synapsid_N : N ;
+fun synapsis_N : N ;
+fun synaptic_A : A ;
+fun syncarpous_A : A ;
+fun syncategorem_N : N ;
+fun syncategorematic_A : A ;
+fun synchrocyclotron_N : N ;
+fun synchroflash_N : N ;
+fun synchromesh_N : N ;
+fun synchronic_A : A ;
+fun synchronism_N : N ;
+fun synchronization_N : N ;
+fun synchronize_V : V ;
+fun synchronous_A : A ;
+fun synchrony_N : N ;
+fun synchroscope_N : N ;
+fun synchrotron_N : N ;
+fun synclinal_A : A ;
+fun syncopate_V : V ;
+fun syncopation_N : N ;
+fun syncopator_N : N ;
+fun syncope_N : N ;
+fun syncretic_A : A ;
+fun syncretism_N : N ;
+fun syncytium_N : N ;
+fun syndactyly_N : N ;
+fun syndciate_V : V ;
+fun syndetic_A : A ;
+fun syndic_N : N ;
+fun syndicalism_N : N ;
+fun syndicalist_N : N ;
+fun syndicate_N : N ;
+fun syndicate_V : V ;
+fun syndication_N : N ;
+fun syndicator_N : N ;
+fun syndrome_N : N ;
+fun synecdoche_N : N ;
+fun synecdochic_A : A ;
+fun synechia_N : N ;
+fun syneresis_N : N ;
+fun synergetic_A : A ;
+fun synergism_N : N ;
+fun synergist_N : N ;
+fun synergistic_A : A ;
+fun synergistically_Adv : Adv ;
+fun synergy_N : N ;
+fun synesthesia_N : N ;
+fun synesthetic_A : A ;
+fun synizesis_N : N ;
+fun synod_N : N ;
+fun synoicous_A : A ;
+fun synonym_N : N ;
+fun synonymist_N : N ;
+fun synonymous_A : A ;
+fun synonymy_N : N ;
+fun synopsis_N : N ;
+fun synoptic_A : A ;
+fun synoptically_Adv : Adv ;
+fun synovia_N : N ;
+fun synovial_A : A ;
+fun synovitis_N : N ;
+fun synsemantic_A : A ;
+fun synset_N : N ;
+fun syntactic_A : A ;
+fun syntactically_Adv : Adv ;
+fun syntagma_N : N ;
+fun syntagmatic_A : A ;
+fun syntax_N : N ;
+fun synthesis_N : N ;
+fun synthesist_N : N ;
+fun synthesize_V : V ;
+fun synthesizer_N : N ;
+fun synthetic_A : A ;
+fun synthetic_N : N ;
+fun synthetically_Adv : Adv ;
+fun synthetism_N : N ;
+fun syphilis_N : N ;
+fun syphilitic_A : A ;
+fun syphilitic_N : N ;
+fun syphon_N : N ;
+fun syphon_syphoned_V : V ;
+fun syphon_syphonned_V : V ;
+fun syringa_N : N ;
+fun syringe_N : N ;
+fun syringe_V : V ;
+fun syrinx_N : N ;
+fun syrup_N : N ;
+fun syrupy_A : A ;
+fun system_N : N ;
+fun systematic_A : A ;
+fun systematically_Adv : Adv ;
+fun systematics_N : N ;
+fun systematism_N : N ;
+fun systematization_N : N ;
+fun systematize_V : V ;
+fun systemic_A : A ;
+fun systole_N : N ;
+fun systolic_A : A ;
+fun syzygy_N : N ;
+fun séance_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 tabasco_N : N ;
+fun tabbouleh_N : N ;
+fun tabby_A : A ;
+fun tabby_N : N ;
+fun tabby_cat_N : N ;
+fun tabernacle_N : N ;
+fun tabes_N : N ;
+fun tabi_N : N ;
+fun tablature_N : N ;
+fun table_N : N ;
+fun table_V : V ;
+fun table_d'hôte_A : A ;
+fun table_d'hôte_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 tablefork_N : N ;
+fun tableland_N : N ;
+fun tablemat_N : N ;
+fun tablemate_N : N ;
+fun tablespoon_N : N ;
+fun tablespoonful_N : N ;
+fun tablet_N : N ;
+fun tabletop_N : N ;
+fun tableware_N : N ;
+fun tabloid_N : N ;
+fun taboo_A : A ;
+fun taboo_N : N ;
+fun taboo_V : V ;
+fun tabor_N : N ;
+fun taboret_N : N ;
+fun tabular_A : A ;
+fun tabulate_V : V ;
+fun tabulation_N : N ;
+fun tabulator_N : N ;
+fun tabun_N : N ;
+fun tachistoscope_N : N ;
+fun tachogram_N : N ;
+fun tachograph_N : N ;
+fun tachometer_N : N ;
+fun tachycardia_N : N ;
+fun tachylite_N : N ;
+fun tachymeter_N : N ;
+fun tacit_A : A ;
+fun taciturn_A : A ;
+fun taciturnity_N : N ;
+fun tack_N : N ;
+fun tack_V : V ;
+fun tacker_N : N ;
+fun tackle_N : N ;
+fun tackle_V : V ;
+fun tackler_N : N ;
+fun tacky_A : A ;
+fun taco_N : N ;
+fun taconite_N : N ;
+fun tact_N : N ;
+fun tactful_A : A ;
+fun tactic_N : N ;
+fun tactical_A : A ;
+fun tactician_N : N ;
+fun tactics_N : N ;
+fun tactile_A : A ;
+fun tactless_A : A ;
+fun tactlessness_N : N ;
+fun tactual_A : A ;
+fun tad_N : N ;
+fun tadalafil_N : N ;
+fun tadpole_N : N ;
+fun tael_N : N ;
+fun taenia_N : N ;
+fun taffeta_N : N ;
+fun taffrail_N : N ;
+fun taffy_N : N ;
+fun tag_N : N ;
+fun tag_V : V ;
+fun tagalong_N : N ;
+fun tagasaste_N : N ;
+fun tagger_N : N ;
+fun tagliatelle_N : N ;
+fun taguan_N : N ;
+fun tahini_N : N ;
+fun tahitian_A : A ;
+fun tahitian_N : N ;
+fun tail_N : N ;
+fun tail_V : V ;
+fun tail_coat_N : N ;
+fun tail_end_N : N ;
+fun tail_light_N : N ;
+fun tailback_N : N ;
+fun tailboard_N : N ;
+fun tailgate_N : N ;
+fun tailgater_N : N ;
+fun tailless_A : A ;
+fun taillight_N : N ;
+fun tailor_N : N ;
+fun tailor_V : V ;
+fun tailor_made_A : A ;
+fun tailorbird_N : N ;
+fun tailoring_N : N ;
+fun tailpiece_N : N ;
+fun tailpipe_N : N ;
+fun tailplane_N : N ;
+fun tailrace_N : N ;
+fun tailspin_N : N ;
+fun tailstock_N : N ;
+fun tailwind_N : N ;
+fun taint_N : N ;
+fun taint_V : V ;
+fun taintless_A : A ;
+fun taipan_N : N ;
+fun taka_N : N ;
+fun take_N : N ;
+fun take_home_A : A ;
+fun take_off_N : N ;
+fun take_taked_V : V ;
+fun take_took_V : V ;
+fun take_up_N : N ;
+fun takeaway_A : A ;
+fun takeaway_N : N ;
+fun takedown_N : N ;
+fun takeoff_N : N ;
+fun takeout_A : A ;
+fun takeout_N : N ;
+fun takeover_N : N ;
+fun taker_N : N ;
+fun takin_N : N ;
+fun tala_N : N ;
+fun talapoin_N : N ;
+fun talaria_N : N ;
+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 talentlessness_N : N ;
+fun talipot_N : N ;
+fun talisman_N : N ;
+fun talismanic_A : A ;
+fun talk_N : N ;
+fun talk_V : V ;
+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 tall_N : N ;
+fun tallboy_N : N ;
+fun tallgrass_N : N ;
+fun tallish_A : A ;
+fun tallness_N : N ;
+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_N : N ;
+fun tam_o'_shanter_N : N ;
+fun tamable_A : A ;
+fun tamale_N : N ;
+fun tamandua_N : N ;
+fun tamarau_N : N ;
+fun tamarin_N : N ;
+fun tamarind_N : N ;
+fun tamarisk_N : N ;
+fun tambala_N : N ;
+fun tambour_N : N ;
+fun tambourine_N : N ;
+fun tame_A : A ;
+fun tame_V : V ;
+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_N : N ;
+fun tamp_V : V ;
+fun tamper_V : V ;
+fun tampion_N : N ;
+fun tampon_N : N ;
+fun tamponade_N : N ;
+fun tan_A : A ;
+fun tan_N : N ;
+fun tan_V : V ;
+fun tanager_N : N ;
+fun tanbark_N : N ;
+fun tandem_Adv : Adv ;
+fun tandem_N : N ;
+fun tandoor_N : N ;
+fun tanekaha_N : N ;
+fun tang_N : N ;
+fun tanga_N : N ;
+fun tangelo_N : N ;
+fun tangency_N : N ;
+fun tangent_N : N ;
+fun tangential_A : A ;
+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 tanglebush_N : N ;
+fun tango_N : N ;
+fun tango_V : V ;
+fun tangram_N : N ;
+fun tangy_A : A ;
+fun tank_N : N ;
+fun tank_V : V ;
+fun tank_car_N : N ;
+fun tanka_N : N ;
+fun tankage_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 tanning_N : N ;
+fun tannish_A : A ;
+fun tannoy_N : N ;
+fun tansy_N : N ;
+fun tantalite_N : N ;
+fun tantalize_V : V ;
+fun tantalizer_N : N ;
+fun tantalizing_A : A ;
+fun tantalum_N : N ;
+fun tantamount_A : A ;
+fun tantra_N : N ;
+fun tantrum_N : N ;
+fun tanzanian_A : A ;
+fun tanzanian_N : N ;
+fun taoiseach_N : N ;
+fun tap_N : N ;
+fun tap_V : V ;
+fun tap_dancing_N : N ;
+fun tapa_N : N ;
+fun tape_N : N ;
+fun tape_V : V ;
+fun tape_measure_N : N ;
+fun tape_recorder_N : N ;
+fun tapenade_N : N ;
+fun taper_N : N ;
+fun taper_V : V ;
+fun tapering_N : N ;
+fun tapestried_A : A ;
+fun tapestry_N : N ;
+fun tapeworm_N : N ;
+fun taphephobia_N : N ;
+fun tapioca_N : N ;
+fun tapir_N : N ;
+fun tapotement_N : N ;
+fun tapper_N : N ;
+fun tappet_N : N ;
+fun tapping_N : N ;
+fun taproom_N : N ;
+fun taproot_N : N ;
+fun taps_N : N ;
+fun tapster_N : N ;
+fun tar_N : N ;
+fun tar_V : V ;
+fun tar_macadam_N : N ;
+fun taradiddle_N : N ;
+fun tarantella_N : N ;
+fun tarantelle_N : N ;
+fun tarantism_N : N ;
+fun tarantula_N : N ;
+fun tarboosh_N : N ;
+fun tardigrade_N : N ;
+fun tardiness_N : N ;
+fun tardive_A : A ;
+fun tardy_A : A ;
+fun tare_N : N ;
+fun target_N : N ;
+fun target_targeted_V : V ;
+fun target_targetted_V : V ;
+fun tariff_N : N ;
+fun tarmac_N : N ;
+fun tarmac_V : V ;
+fun tarmacadam_N : N ;
+fun tarn_N : N ;
+fun tarnish_N : N ;
+fun tarnish_V : V ;
+fun taro_N : N ;
+fun tarpan_N : N ;
+fun tarpaulin_N : N ;
+fun tarpon_N : N ;
+fun tarradiddle_N : N ;
+fun tarragon_N : N ;
+fun tarriance_N : N ;
+fun tarry_A : A ;
+fun tarry_V : V ;
+fun tarsal_A : A ;
+fun tarsal_N : N ;
+fun tarsier_N : N ;
+fun tarsitis_N : N ;
+fun tarsus_N : N ;
+fun tart_A : A ;
+fun tart_N : N ;
+fun tart_V : V ;
+fun tartan_N : N ;
+fun tartar_N : N ;
+fun tartaric_A : A ;
+fun tartlet_N : N ;
+fun tartness_N : N ;
+fun tartrate_N : N ;
+fun tarweed_N : N ;
+fun tarwood_N : N ;
+fun task_N : N ;
+fun task_V : V ;
+fun task_force_N : N ;
+fun taskmaster_N : N ;
+fun taskmistress_N : N ;
+fun tassel_N : N ;
+fun tasseled_A : A ;
+fun tasselled_A : A ;
+fun tasset_N : N ;
+fun taste_N : N ;
+fun taste_V : V ;
+fun tastebud_N : N ;
+fun tasteful_A : A ;
+fun tastefulness_N : N ;
+fun tasteless_A : A ;
+fun tastelessness_N : N ;
+fun taster_N : N ;
+fun tasting_N : N ;
+fun tasty_A : A ;
+fun tat_N : N ;
+fun tat_V : V ;
+fun tatouay_N : N ;
+fun tatter_N : N ;
+fun tatterdemalion_N : N ;
+fun tattered_A : A ;
+fun tatting_N : N ;
+fun tattle_N : N ;
+fun tattle_V : V ;
+fun tattler_N : N ;
+fun tattletale_N : N ;
+fun tattoo_N : N ;
+fun tattoo_V : V ;
+fun tatty_A : A ;
+fun tau_N : N ;
+fun taunt_N : N ;
+fun taunt_V : V ;
+fun tauntingly_Adv : Adv ;
+fun tauon_N : N ;
+fun taupe_N : N ;
+fun taurine_A : A ;
+fun taurine_N : N ;
+fun taut_A : A ;
+fun tautness_N : N ;
+fun tautog_N : N ;
+fun tautological_A : A ;
+fun tautology_N : N ;
+fun tavern_N : N ;
+fun taw_N : N ;
+fun tawdriness_N : N ;
+fun tawdry_A : A ;
+fun tawniness_N : N ;
+fun tawny_A : A ;
+fun tawse_N : N ;
+fun tax_N : N ;
+fun tax_V : V ;
+fun tax_collector_N : N ;
+fun tax_free_A : A ;
+fun taxability_N : N ;
+fun taxable_A : A ;
+fun taxation_N : N ;
+fun taxer_N : N ;
+fun taxi_N : N ;
+fun taxi_V : V ;
+fun taxicab_N : N ;
+fun taxidermist_N : N ;
+fun taxidermy_N : N ;
+fun taxidriver_N : N ;
+fun taximeter_N : N ;
+fun taxis_N : N ;
+fun taxiway_N : N ;
+fun taxonomic_A : A ;
+fun taxonomically_Adv : Adv ;
+fun taxonomist_N : N ;
+fun taxonomy_N : N ;
+fun taxpayer_N : N ;
+fun taxpaying_A : A ;
+fun tayra_N : N ;
+fun tb_N : N ;
+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 teaberry_N : N ;
+fun teacake_N : N ;
+fun teach_V : V ;
+fun teach_in_N : N ;
+fun teachable_A : A ;
+fun teacher_N : N ;
+fun teachership_N : N ;
+fun teaching_N : N ;
+fun teacup_N : N ;
+fun teahouse_N : N ;
+fun teak_N : N ;
+fun teakettle_N : N ;
+fun teal_N : N ;
+fun team_N : N ;
+fun team_V : V ;
+fun teammate_N : N ;
+fun teamster_N : N ;
+fun teamwork_N : N ;
+fun teapot_N : N ;
+fun tear_N : N ;
+fun tear_V : V ;
+fun tear_drop_N : N ;
+fun tear_gas_N : N ;
+fun tearaway_A : A ;
+fun tearaway_N : N ;
+fun teardrop_N : N ;
+fun tearful_A : A ;
+fun tearing_N : N ;
+fun tearjerker_N : N ;
+fun tearless_A : A ;
+fun tearoom_N : N ;
+fun teary_A : A ;
+fun tease_N : N ;
+fun tease_V : V ;
+fun teasel_N : N ;
+fun teaser_N : N ;
+fun teashop_N : N ;
+fun teasing_A : A ;
+fun teasing_N : N ;
+fun teaspoon_N : N ;
+fun teaspoonful_N : N ;
+fun teat_N : N ;
+fun teazel_N : N ;
+fun teazle_N : N ;
+fun tebibit_N : N ;
+fun tec_N : N ;
+fun tech_N : N ;
+fun techie_N : N ;
+fun technetium_N : N ;
+fun technical_A : A ;
+fun technical_N : N ;
+fun technicality_N : N ;
+fun technician_N : N ;
+fun technicolor_N : N ;
+fun technique_N : N ;
+fun techno_N : N ;
+fun technobabble_N : N ;
+fun technocracy_N : N ;
+fun technocrat_N : N ;
+fun technological_A : A ;
+fun technologist_N : N ;
+fun technology_N : N ;
+fun technophile_N : N ;
+fun technophilia_N : N ;
+fun technophilic_A : A ;
+fun technophobe_N : N ;
+fun technophobia_N : N ;
+fun technophobic_A : A ;
+fun techy_A : A ;
+fun tectonic_A : A ;
+fun tectonics_N : N ;
+fun ted_N : N ;
+fun teddy_N : N ;
+fun teddy_boy_N : N ;
+fun tedious_A : A ;
+fun tediousness_N : N ;
+fun tedium_N : N ;
+fun tee_IRREG_V : V ;
+fun tee_N : N ;
+fun tee_shirt_N : N ;
+fun tee_teed_V : V ;
+fun teem_V : V ;
+fun teenage_A : A ;
+fun teenager_N : N ;
+fun teens_N : N ;
+fun teeny_A : A ;
+fun teeoff_N : N ;
+fun teeter_V : V ;
+fun teethe_V : V ;
+fun teething_N : N ;
+fun teetotal_A : A ;
+fun teetotaler_N : N ;
+fun teetotaling_N : N ;
+fun teetotaller_N : N ;
+fun teetotum_N : N ;
+fun teff_N : N ;
+fun teg_N : N ;
+fun tegular_A : A ;
+fun tegument_N : N ;
+fun teju_N : N ;
+fun tektite_N : N ;
+fun telecast_N : N ;
+fun telecast_V : V ;
+fun telecaster_N : N ;
+fun telecommunication_N : N ;
+fun telecommuting_N : N ;
+fun teleconference_N : N ;
+fun telefilm_N : N ;
+fun telegnosis_N : N ;
+fun telegnostic_A : A ;
+fun telegram_N : N ;
+fun telegraph_N : N ;
+fun telegraph_V : V ;
+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 telekinesis_N : N ;
+fun telemark_N : N ;
+fun telemarketing_N : N ;
+fun telemeter_N : N ;
+fun telemetered_A : A ;
+fun telemetry_N : N ;
+fun telencephalon_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 telephonic_A : A ;
+fun telephonist_N : N ;
+fun telephony_N : N ;
+fun telephoto_N : N ;
+fun telephotograph_N : N ;
+fun telephotography_N : N ;
+fun teleportation_N : N ;
+fun teleprinter_N : N ;
+fun teleprompter_N : N ;
+fun telerobotics_N : N ;
+fun telescope_N : N ;
+fun telescope_V : V ;
+fun telescopic_A : A ;
+fun telescopically_Adv : Adv ;
+fun telescopy_N : N ;
+fun telethermometer_N : N ;
+fun teletypewriter_N : N ;
+fun televangelism_N : N ;
+fun televangelist_N : N ;
+fun televise_V : V ;
+fun television_N : N ;
+fun telex_N : N ;
+fun telfer_N : N ;
+fun teliospore_N : N ;
+fun tell_V : V ;
+fun teller_N : N ;
+fun telling_A : A ;
+fun telling_N : N ;
+fun telltale_N : N ;
+fun tellurian_A : A ;
+fun tellurian_N : N ;
+fun telluric_A : A ;
+fun telluride_N : N ;
+fun tellurium_N : N ;
+fun telly_N : N ;
+fun telocentric_A : A ;
+fun telomerase_N : N ;
+fun telomere_N : N ;
+fun telophase_N : N ;
+fun telpher_N : N ;
+fun telpherage_N : N ;
+fun temazepam_N : N ;
+fun temerity_N : N ;
+fun temp_N : N ;
+fun temper_N : N ;
+fun temper_V : V ;
+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 tempest_N : N ;
+fun tempest_swept_A : A ;
+fun tempest_tossed_A : A ;
+fun tempestuous_A : A ;
+fun tempestuousness_N : N ;
+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 temporizer_N : N ;
+fun tempt_V : V ;
+fun temptable_A : A ;
+fun temptation_N : N ;
+fun tempter_N : N ;
+fun temptingly_Adv : Adv ;
+fun temptress_N : N ;
+fun tempura_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_V : V ;
+fun tenantry_N : N ;
+fun tench_N : N ;
+fun tend_V : V ;
+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 tenderfoot_N : N ;
+fun tendergreen_N : N ;
+fun tenderhearted_A : A ;
+fun tenderization_N : N ;
+fun tenderized_A : A ;
+fun tenderizer_N : N ;
+fun tenderloin_N : N ;
+fun tenderness_N : N ;
+fun tendinitis_N : N ;
+fun tendinous_A : A ;
+fun tendon_N : N ;
+fun tendril_N : N ;
+fun tenebrous_A : A ;
+fun tenement_N : N ;
+fun tenement_house_N : N ;
+fun tenesmus_N : N ;
+fun tenet_N : N ;
+fun tenfold_A : A ;
+fun tenfold_Adv : Adv ;
+fun tenge_N : N ;
+fun tenner_N : N ;
+fun tennis_N : N ;
+fun tennis_court_N : N ;
+fun tennis_elbow_N : N ;
+fun tenon_N : N ;
+fun tenor_A : A ;
+fun tenor_N : N ;
+fun tenoroon_N : N ;
+fun tenosynovitis_N : N ;
+fun tenpence_N : N ;
+fun tenpin_N : N ;
+fun tenpins_N : N ;
+fun tenrec_N : N ;
+fun tense_A : A ;
+fun tense_N : N ;
+fun tense_V : V ;
+fun tenseness_N : N ;
+fun tensile_A : A ;
+fun tensimeter_N : N ;
+fun tensiometer_N : N ;
+fun tension_N : N ;
+fun tensional_A : A ;
+fun tensionless_A : A ;
+fun tensity_N : N ;
+fun tensor_N : N ;
+fun tent_N : N ;
+fun tent_peg_N : N ;
+fun tentacle_N : N ;
+fun tentacled_A : A ;
+fun tentacular_A : A ;
+fun tentative_A : A ;
+fun tenter_N : N ;
+fun tenterhook_N : N ;
+fun tenth_N : N ;
+fun tentmaker_N : N ;
+fun tentorium_N : N ;
+fun tenuity_N : N ;
+fun tenuous_A : A ;
+fun tenure_N : N ;
+fun tenured_A : A ;
+fun tepal_N : N ;
+fun tepee_N : N ;
+fun tepid_A : A ;
+fun tepidity_N : N ;
+fun tepidness_N : N ;
+fun tequila_N : N ;
+fun terabit_N : N ;
+fun terabyte_N : N ;
+fun teraflop_N : N ;
+fun terahertz_N : N ;
+fun teratogen_N : N ;
+fun teratogenesis_N : N ;
+fun teratogenic_A : A ;
+fun teratology_N : N ;
+fun teratoma_N : N ;
+fun terazosin_N : N ;
+fun terbinafine_N : N ;
+fun terbium_N : N ;
+fun terce_N : N ;
+fun tercentenary_N : N ;
+fun tercentennial_N : N ;
+fun terebinth_N : N ;
+fun teredo_N : N ;
+fun teres_N : N ;
+fun terete_A : A ;
+fun tergiversate_V : V ;
+fun tergiversation_N : N ;
+fun teriyaki_N : N ;
+fun term_N : N ;
+fun term_V : V ;
+fun termagant_N : N ;
+fun termer_N : N ;
+fun terminable_A : A ;
+fun terminal_A : A ;
+fun terminal_N : N ;
+fun terminate_V : V ;
+fun termination_N : N ;
+fun terminative_A : A ;
+fun terminological_A : A ;
+fun terminology_N : N ;
+fun terminus_N : N ;
+fun termite_N : N ;
+fun tern_N : N ;
+fun ternary_A : A ;
+fun ternate_A : A ;
+fun terpene_N : N ;
+fun terpsichorean_A : A ;
+fun terra_cotta_N : N ;
+fun terra_firma_N : N ;
+fun terra_incognita_N : N ;
+fun terrace_N : N ;
+fun terrace_V : V ;
+fun terrain_N : N ;
+fun terrapin_N : N ;
+fun terrarium_N : N ;
+fun terreplein_N : N ;
+fun terrestrial_A : A ;
+fun terrible_A : A ;
+fun terrier_N : N ;
+fun terrific_A : A ;
+fun terrifically_Adv : Adv ;
+fun terrify_V : V ;
+fun terrine_N : N ;
+fun territorial_A : A ;
+fun territorial_N : N ;
+fun territoriality_N : N ;
+fun territorialization_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 terrorization_N : N ;
+fun terrorize_V : V ;
+fun terry_N : N ;
+fun terse_A : A ;
+fun terseness_N : N ;
+fun tertian_A : A ;
+fun tertiary_A : A ;
+fun tertigravida_N : N ;
+fun terylene_N : N ;
+fun tesla_N : N ;
+fun tessella_N : N ;
+fun tessellated_A : A ;
+fun tessellation_N : N ;
+fun tessera_N : N ;
+fun tesseract_N : N ;
+fun test_N : N ;
+fun test_V : V ;
+fun test_drive_N : N ;
+fun test_drive_V : V ;
+fun test_tube_N : N ;
+fun testa_N : N ;
+fun testacean_N : N ;
+fun testaceous_A : A ;
+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 testcross_N : N ;
+fun testee_N : N ;
+fun tester_N : N ;
+fun testicle_N : N ;
+fun testicular_A : A ;
+fun testifier_N : N ;
+fun testify_V : V ;
+fun testimonial_A : A ;
+fun testimonial_N : N ;
+fun testimony_N : N ;
+fun testiness_N : N ;
+fun testing_N : N ;
+fun testis_N : N ;
+fun testosterone_N : N ;
+fun testudo_N : N ;
+fun testy_A : A ;
+fun tetanic_A : A ;
+fun tetanus_N : N ;
+fun tetany_N : N ;
+fun tetartanopia_N : N ;
+fun tetchiness_N : N ;
+fun tetchy_A : A ;
+fun teth_N : N ;
+fun tether_N : N ;
+fun tether_V : V ;
+fun tetherball_N : N ;
+fun tetra_N : N ;
+fun tetracaine_N : N ;
+fun tetrachlorethylene_N : N ;
+fun tetrachloride_N : N ;
+fun tetracycline_N : N ;
+fun tetrafluoroethylene_N : N ;
+fun tetragonal_A : A ;
+fun tetragram_N : N ;
+fun tetrahalide_N : N ;
+fun tetrahedron_N : N ;
+fun tetrahydrocannabinol_N : N ;
+fun tetrahymena_N : N ;
+fun tetralogy_N : N ;
+fun tetramerous_A : A ;
+fun tetrameter_N : N ;
+fun tetrametric_A : A ;
+fun tetrapod_N : N ;
+fun tetrasaccharide_N : N ;
+fun tetraskelion_N : N ;
+fun tetrasporangium_N : N ;
+fun tetraspore_N : N ;
+fun tetravalent_A : A ;
+fun tetri_N : N ;
+fun tetrode_N : N ;
+fun tetrodotoxin_N : N ;
+fun tetrose_N : N ;
+fun tetroxide_N : N ;
+fun tetryl_N : N ;
+fun teuton_N : N ;
+fun teutonic_A : A ;
+fun texan_A : A ;
+fun texan_N : N ;
+fun text_N : N ;
+fun text_V : V ;
+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_N : N ;
+fun thalamocortical_A : A ;
+fun thalamus_N : N ;
+fun thalassemia_N : N ;
+fun thalassic_A : A ;
+fun thalidomide_N : N ;
+fun thallium_N : N ;
+fun thalloid_A : A ;
+fun thallophyte_N : N ;
+fun thallophytic_A : A ;
+fun thallus_N : N ;
+fun thalweg_N : N ;
+fun than_Prep : Prep ;
+fun thanatology_N : N ;
+fun thanatophobia_N : N ;
+fun thanatopsis_N : N ;
+fun thane_N : N ;
+fun thaneship_N : N ;
+fun thank_V : V ;
+fun thank_offering_N : N ;
+fun thankful_A : A ;
+fun thankfulness_N : N ;
+fun thankless_A : A ;
+fun thanks_to_Prep : Prep ;
+fun thanksgiving_N : N ;
+fun that_of_Prep : Prep ;
+fun thatch_N : N ;
+fun thatch_V : V ;
+fun thatcher_N : N ;
+fun thaumatolatry_N : N ;
+fun thaw_N : N ;
+fun thaw_V : V ;
+fun theanthropism_N : N ;
+fun theater_N : N ;
+fun theatre_N : N ;
+fun theatregoer_N : N ;
+fun theatrical_A : A ;
+fun theatrical_N : N ;
+fun thebe_N : N ;
+fun theca_N : N ;
+fun thecodont_N : N ;
+fun theft_N : N ;
+fun theism_N : N ;
+fun theist_A : A ;
+fun theist_N : N ;
+fun theistic_A : A ;
+fun theistical_A : A ;
+fun thelarche_N : N ;
+fun thematic_A : A ;
+fun thematically_Adv : Adv ;
+fun theme_N : N ;
+fun then_Adv : Adv ;
+fun then_N : N ;
+fun then_Prep : Prep ;
+fun thenal_A : A ;
+fun thenar_N : N ;
+fun thence_Adv : Adv ;
+fun thenceforth_Adv : Adv ;
+fun thenceforward_Adv : Adv ;
+fun theocracy_N : N ;
+fun theocratic_A : A ;
+fun theodicy_N : N ;
+fun theodolite_N : N ;
+fun theogony_N : N ;
+fun theologian_N : N ;
+fun theological_A : A ;
+fun theology_N : N ;
+fun theophany_N : N ;
+fun theophylline_N : N ;
+fun theorem_N : N ;
+fun theoretic_A : A ;
+fun theoretical_A : A ;
+fun theoretician_N : N ;
+fun theorist_N : N ;
+fun theorization_N : N ;
+fun theorize_V : V ;
+fun theory_N : N ;
+fun theosophical_A : A ;
+fun theosophism_N : N ;
+fun theosophist_N : N ;
+fun theosophy_N : N ;
+fun theoterrorism_N : N ;
+fun therapeutic_A : A ;
+fun therapeutical_A : A ;
+fun therapeutics_N : N ;
+fun therapist_N : N ;
+fun therapsid_N : N ;
+fun therapy_N : N ;
+fun there_Adv : Adv ;
+fun thereabout_Adv : Adv ;
+fun thereabouts_Adv : Adv ;
+fun thereafter_Adv : Adv ;
+fun thereby_Adv : Adv ;
+fun therefor_Adv : Adv ;
+fun therefore_Adv : Adv ;
+fun therefrom_Adv : Adv ;
+fun therein_Adv : Adv ;
+fun thereinafter_Adv : Adv ;
+fun theremin_N : N ;
+fun thereness_N : N ;
+fun thereof_Adv : Adv ;
+fun thereon_Adv : Adv ;
+fun thereto_Adv : Adv ;
+fun theretofore_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 thermalgesia_N : N ;
+fun thermion_N : N ;
+fun thermionic_A : A ;
+fun thermionics_N : N ;
+fun thermistor_N : N ;
+fun thermoacidophile_N : N ;
+fun thermocautery_N : N ;
+fun thermochemistry_N : N ;
+fun thermocoagulation_N : N ;
+fun thermocouple_N : N ;
+fun thermodynamic_A : A ;
+fun thermodynamically_Adv : Adv ;
+fun thermodynamics_N : N ;
+fun thermoelectric_A : A ;
+fun thermoelectricity_N : N ;
+fun thermogram_N : N ;
+fun thermograph_N : N ;
+fun thermography_N : N ;
+fun thermogravimetry_N : N ;
+fun thermohydrometer_N : N ;
+fun thermohydrometric_A : A ;
+fun thermojunction_N : N ;
+fun thermolabile_A : A ;
+fun thermometer_N : N ;
+fun thermometric_A : A ;
+fun thermometry_N : N ;
+fun thermonuclear_A : A ;
+fun thermopile_N : N ;
+fun thermoplastic_A : A ;
+fun thermoplastic_N : N ;
+fun thermoreceptor_N : N ;
+fun thermos_N : N ;
+fun thermosetting_A : A ;
+fun thermosphere_N : N ;
+fun thermostat_N : N ;
+fun thermostatic_A : A ;
+fun thermostatically_Adv : Adv ;
+fun thermostatics_N : N ;
+fun thermotherapy_N : N ;
+fun thermotropism_N : N ;
+fun theropod_N : N ;
+fun thesaurus_N : N ;
+fun thesis_N : N ;
+fun thespian_A : A ;
+fun thespian_N : N ;
+fun theta_N : N ;
+fun theurgy_N : N ;
+fun thiabendazole_N : N ;
+fun thiazide_N : N ;
+fun thiazine_N : N ;
+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 thickening_N : N ;
+fun thicket_N : N ;
+fun thickhead_N : N ;
+fun thickness_N : N ;
+fun thickset_A : A ;
+fun thickspread_A : A ;
+fun thief_N : N ;
+fun thieve_V : V ;
+fun thievery_N : N ;
+fun thievish_A : A ;
+fun thievishness_N : N ;
+fun thigh_N : N ;
+fun thighbone_N : N ;
+fun thill_N : N ;
+fun thimble_N : N ;
+fun thimbleful_N : N ;
+fun thimbleweed_N : N ;
+fun thimerosal_N : N ;
+fun thin_A : A ;
+fun thin_Adv : Adv ;
+fun thin_V : V ;
+fun thin_skinned_A : A ;
+fun thine_A : A ;
+fun thing_N : N ;
+fun thingmabob_N : N ;
+fun thingmajig_N : N ;
+fun things_N : N ;
+fun thingumabob_N : N ;
+fun thingumajig_N : N ;
+fun thingummy_N : N ;
+fun think_N : N ;
+fun think_V : V ;
+fun think_tank_N : N ;
+fun thinkable_A : A ;
+fun thinker_N : N ;
+fun thinking_N : N ;
+fun thinness_N : N ;
+fun thiobacillus_N : N ;
+fun thiobacteria_N : N ;
+fun thiocyanate_N : N ;
+fun thioguanine_N : N ;
+fun thiopental_N : N ;
+fun thioridazine_N : N ;
+fun thiotepa_N : N ;
+fun thiothixene_N : N ;
+fun thiouracil_N : N ;
+fun third_rate_A : A ;
+fun third_rater_N : N ;
+fun thirdhand_A : A ;
+fun thirdhand_Adv : Adv ;
+fun thirst_N : N ;
+fun thirst_V : V ;
+fun thirsty_A : A ;
+fun thistle_N : N ;
+fun thistledown_N : N ;
+fun thistlelike_A : A ;
+fun thither_Adv : Adv ;
+fun tho'_Adv : Adv ;
+fun thole_N : N ;
+fun tholepin_N : N ;
+fun thong_N : N ;
+fun thoracocentesis_N : N ;
+fun thoracotomy_N : N ;
+fun thorax_N : N ;
+fun thoriated_A : A ;
+fun thorite_N : N ;
+fun thorium_N : N ;
+fun thorn_N : N ;
+fun thornbill_N : N ;
+fun thornless_A : A ;
+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 thortveitite_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 thraldom_N : N ;
+fun thrall_N : N ;
+fun thrash_N : N ;
+fun thrash_V : V ;
+fun thrasher_N : N ;
+fun thrashing_N : N ;
+fun thread_N : N ;
+fun thread_V : V ;
+fun threadbare_A : A ;
+fun threadfin_N : N ;
+fun threadfish_N : N ;
+fun threadlike_A : A ;
+fun threat_N : N ;
+fun threaten_V : V ;
+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 threescore_N : N ;
+fun threesome_N : N ;
+fun threnody_N : N ;
+fun threonine_N : N ;
+fun thresh_V : V ;
+fun thresher_N : N ;
+fun threshing_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 thriftless_A : A ;
+fun thriftlessness_N : N ;
+fun thriftshop_N : N ;
+fun thrifty_A : A ;
+fun thrill_N : N ;
+fun thrill_V : V ;
+fun thriller_N : N ;
+fun thrillful_A : A ;
+fun thrips_N : N ;
+fun thrive_V : V ;
+fun throat_N : N ;
+fun throated_A : A ;
+fun throatwort_N : N ;
+fun throaty_A : A ;
+fun throb_N : N ;
+fun throb_V : V ;
+fun throbbing_N : N ;
+fun throe_N : N ;
+fun throes_N : N ;
+fun thrombasthenia_N : N ;
+fun thrombectomy_N : N ;
+fun thrombin_N : N ;
+fun thrombocytopenia_N : N ;
+fun thrombocytosis_N : N ;
+fun thromboembolism_N : N ;
+fun thrombolysis_N : N ;
+fun thrombolytic_N : N ;
+fun thrombophlebitis_N : N ;
+fun thromboplastin_N : N ;
+fun thrombosed_A : A ;
+fun thrombosis_N : N ;
+fun thrombus_N : N ;
+fun throne_N : N ;
+fun throng_N : N ;
+fun throng_V : V ;
+fun throstle_N : N ;
+fun throttle_N : N ;
+fun throttle_V : V ;
+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_in_N : N ;
+fun throw_threw_V : V ;
+fun throw_throwed_V : V ;
+fun throwaway_N : N ;
+fun throwback_N : N ;
+fun thrower_N : N ;
+fun throwster_N : N ;
+fun thrum_N : N ;
+fun thrum_V : V ;
+fun thrush_N : N ;
+fun thrust_N : N ;
+fun thrust_thrust_V : V ;
+fun thrust_thrusted_V : V ;
+fun thruster_N : N ;
+fun thud_N : N ;
+fun thud_V : V ;
+fun thug_N : N ;
+fun thuggee_N : N ;
+fun thuggery_N : N ;
+fun thulium_N : N ;
+fun thumb_N : N ;
+fun thumb_V : V ;
+fun thumbhole_N : N ;
+fun thumbnail_N : N ;
+fun thumbnut_N : N ;
+fun thumbprint_N : N ;
+fun thumbscrew_N : N ;
+fun thumbstall_N : N ;
+fun thumbtack_N : N ;
+fun thump_N : N ;
+fun thump_V : V ;
+fun thunder_N : N ;
+fun thunder_V : V ;
+fun thunderbird_N : N ;
+fun thunderbolt_N : N ;
+fun thunderclap_N : N ;
+fun thunderer_N : N ;
+fun thunderhead_N : N ;
+fun thunderous_A : A ;
+fun thundershower_N : N ;
+fun thunderstorm_N : N ;
+fun thunderstruck_A : A ;
+fun thundery_A : A ;
+fun thunk_N : N ;
+fun thurible_N : N ;
+fun thurifer_N : N ;
+fun thus_Adv : Adv ;
+fun thwack_N : N ;
+fun thwack_V : V ;
+fun thwart_N : N ;
+fun thwart_V : V ;
+fun thy_A : A ;
+fun thylacine_N : N ;
+fun thyme_N : N ;
+fun thymine_N : N ;
+fun thymol_N : N ;
+fun thymosin_N : N ;
+fun thyroglobulin_N : N ;
+fun thyroid_A : A ;
+fun thyroid_N : N ;
+fun thyroidectomy_N : N ;
+fun thyroiditis_N : N ;
+fun thyronine_N : N ;
+fun thyroprotein_N : N ;
+fun thyrotoxic_A : A ;
+fun thyrotropin_N : N ;
+fun thyroxine_N : N ;
+fun thyrse_N : N ;
+fun thyrsopteris_N : N ;
+fun thysanopter_N : N ;
+fun ti_N : N ;
+fun tiara_N : N ;
+fun tibia_N : N ;
+fun tibial_A : A ;
+fun tibialis_N : N ;
+fun tic_N : N ;
+fun tick_N : N ;
+fun tick_V : V ;
+fun tick_tock_N : N ;
+fun ticker_N : N ;
+fun ticker_tape_N : N ;
+fun ticket_N : N ;
+fun ticket_V : V ;
+fun ticket_collector_N : N ;
+fun ticking_N : N ;
+fun tickle_N : N ;
+fun tickle_V : V ;
+fun tickler_N : N ;
+fun ticklish_A : A ;
+fun ticktack_N : N ;
+fun ticktacktoe_N : N ;
+fun ticktock_N : N ;
+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_V : V ;
+fun tideland_N : N ;
+fun tidemark_N : N ;
+fun tidewater_N : N ;
+fun tideway_N : N ;
+fun tidiness_N : N ;
+fun tidy_A : A ;
+fun tidy_N : N ;
+fun tidy_V : V ;
+fun tidytips_N : N ;
+fun tie_N : N ;
+fun tie_V : V ;
+fun tie_on_A : A ;
+fun tie_up_N : N ;
+fun tiebreaker_N : N ;
+fun tier_N : N ;
+fun tiercel_N : N ;
+fun tiered_A : A ;
+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_tightened_V : V ;
+fun tighten_tightenned_V : V ;
+fun tightening_N : N ;
+fun tightness_N : N ;
+fun tightrope_N : N ;
+fun tights_N : N ;
+fun tiglon_N : N ;
+fun tigress_N : N ;
+fun tike_N : N ;
+fun tilde_N : N ;
+fun tile_N : N ;
+fun tile_V : V ;
+fun tilefish_N : N ;
+fun tiler_N : N ;
+fun tiling_N : N ;
+fun till_N : N ;
+fun till_Prep : Prep ;
+fun till_V : V ;
+fun tillage_N : N ;
+fun tiller_N : N ;
+fun tilling_N : N ;
+fun tilt_N : N ;
+fun tilt_V : V ;
+fun tilter_N : N ;
+fun tilth_N : N ;
+fun tiltyard_N : N ;
+fun timbale_N : N ;
+fun timber_N : N ;
+fun timbered_A : A ;
+fun timberman_N : N ;
+fun timbre_N : N ;
+fun timbrel_N : N ;
+fun time_N : N ;
+fun time_V : V ;
+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 timeline_N : N ;
+fun timeliness_N : N ;
+fun timely_A : A ;
+fun timepiece_N : N ;
+fun timer_N : N ;
+fun times_N : N ;
+fun times_Prep : Prep ;
+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 timid_N : N ;
+fun timidity_N : N ;
+fun timidness_N : N ;
+fun timing_N : N ;
+fun timolol_N : N ;
+fun timorous_A : A ;
+fun timothy_N : N ;
+fun timpanist_N : N ;
+fun timucu_N : N ;
+fun tin_N : N ;
+fun tin_V : V ;
+fun tin_opener_N : N ;
+fun tin_pan_alley_N : N ;
+fun tin_plate_N : N ;
+fun tinamou_N : N ;
+fun tincture_N : N ;
+fun tincture_V : V ;
+fun tinder_N : N ;
+fun tinderbox_N : N ;
+fun tine_N : N ;
+fun tinea_N : N ;
+fun tined_A : A ;
+fun tineid_N : N ;
+fun tineoid_N : N ;
+fun tinfoil_N : N ;
+fun ting_N : N ;
+fun ting_V : V ;
+fun tinge_N : N ;
+fun tinge_V : V ;
+fun tingle_N : N ;
+fun tingle_V : V ;
+fun tinker_N : N ;
+fun tinker_V : V ;
+fun tinkerer_N : N ;
+fun tinkle_N : N ;
+fun tinkle_V : V ;
+fun tinning_N : N ;
+fun tinnitus_N : N ;
+fun tinny_A : A ;
+fun tinsel_N : N ;
+fun tinsel_V : V ;
+fun tinselly_A : A ;
+fun tinsmith_N : N ;
+fun tint_N : N ;
+fun tint_V : V ;
+fun tintack_N : N ;
+fun tinter_N : N ;
+fun tinting_N : N ;
+fun tintinnabulation_N : N ;
+fun tinware_N : N ;
+fun tiny_A : A ;
+fun tip_N : N ;
+fun tip_V : V ;
+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 tipper_N : N ;
+fun tippet_N : N ;
+fun tipple_N : N ;
+fun tipple_V : V ;
+fun tippler_N : N ;
+fun tipstaff_N : N ;
+fun tipster_N : N ;
+fun tipsy_A : A ;
+fun tiptoe_A : A ;
+fun tiptoe_Adv : Adv ;
+fun tiptoe_N : N ;
+fun tiptoe_V : V ;
+fun tiptop_N : N ;
+fun tipu_N : N ;
+fun tirade_N : N ;
+fun tiramisu_N : N ;
+fun tire_N : N ;
+fun tire_V : V ;
+fun tiredly_Adv : Adv ;
+fun tiredness_N : N ;
+fun tireless_A : A ;
+fun tiresome_A : A ;
+fun tiring_Adv : Adv ;
+fun tiro_N : N ;
+fun tisane_N : N ;
+fun tissue_N : N ;
+fun tit_N : N ;
+fun titan_N : N ;
+fun titanic_A : A ;
+fun titanium_N : N ;
+fun titanosaur_N : N ;
+fun titbit_N : N ;
+fun titer_N : N ;
+fun titfer_N : N ;
+fun tithe_N : N ;
+fun tithe_barn_N : N ;
+fun tither_N : N ;
+fun titi_N : N ;
+fun titillate_V : V ;
+fun titillating_A : A ;
+fun titillation_N : N ;
+fun titivate_V : V ;
+fun titivation_N : N ;
+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 titration_N : N ;
+fun titrator_N : N ;
+fun titter_N : N ;
+fun titter_V : V ;
+fun titterer_N : N ;
+fun tittivate_V : V ;
+fun tittle_N : N ;
+fun tittle_tattle_N : N ;
+fun tittle_tattle_V : V ;
+fun titular_A : A ;
+fun tiyin_N : N ;
+fun tizzy_N : N ;
+fun tnt_N : N ;
+fun to_Adv : Adv ;
+fun to_Prep : Prep ;
+fun to_date_Adv : Adv ;
+fun to_do_N : N ;
+fun toad_N : N ;
+fun toad_in_the_hole_N : N ;
+fun toadfish_N : N ;
+fun toadflax_N : N ;
+fun toadstool_N : N ;
+fun toady_N : N ;
+fun toady_V : V ;
+fun toast_N : N ;
+fun toast_V : V ;
+fun toaster_N : N ;
+fun toasting_N : N ;
+fun toasting_fork_N : N ;
+fun toastmaster_N : N ;
+fun toastrack_N : N ;
+fun tobacco_N : N ;
+fun tobacconist_N : N ;
+fun tobagonian_A : A ;
+fun tobagonian_N : N ;
+fun toboggan_N : N ;
+fun toboggan_V : V ;
+fun tobogganing_N : N ;
+fun tobogganist_N : N ;
+fun tobramycin_N : N ;
+fun toby_N : N ;
+fun toby_jug_N : N ;
+fun tocainide_N : N ;
+fun toccata_N : N ;
+fun tocsin_N : N ;
+fun tod_A : A ;
+fun tod_N : N ;
+fun today_Adv : Adv ;
+fun today_N : N ;
+fun toddle_V : V ;
+fun toddler_N : N ;
+fun toddy_N : N ;
+fun tody_N : N ;
+fun toe_N : N ;
+fun toe_V : V ;
+fun toea_N : N ;
+fun toecap_N : N ;
+fun toed_A : A ;
+fun toehold_N : N ;
+fun toeless_A : A ;
+fun toenail_N : N ;
+fun toetoe_N : N ;
+fun toff_N : N ;
+fun toffee_N : N ;
+fun tog_V : V ;
+fun toga_N : N ;
+fun together_A : A ;
+fun together_Adv : Adv ;
+fun togetherness_N : N ;
+fun toggle_N : N ;
+fun togolese_A : A ;
+fun togolese_N : N ;
+fun togs_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 toiletry_N : N ;
+fun toilsome_A : A ;
+fun tokamak_N : N ;
+fun tokay_N : N ;
+fun toke_N : N ;
+fun token_N : N ;
+fun tolazamide_N : N ;
+fun tolazoline_N : N ;
+fun tolbutamide_N : N ;
+fun tole_N : N ;
+fun tolerable_A : A ;
+fun tolerance_N : N ;
+fun tolerant_A : A ;
+fun tolerate_V : V ;
+fun toleration_N : N ;
+fun toll_N : N ;
+fun toll_V : V ;
+fun tollbar_N : N ;
+fun tollbooth_N : N ;
+fun toller_N : N ;
+fun tollgate_N : N ;
+fun tollhouse_N : N ;
+fun tollkeeper_N : N ;
+fun tolu_N : N ;
+fun toluene_N : N ;
+fun tom_N : N ;
+fun tomahawk_N : N ;
+fun tomahawk_V : V ;
+fun tomalley_N : N ;
+fun tomatillo_N : N ;
+fun tomato_N : N ;
+fun tomb_N : N ;
+fun tombac_N : N ;
+fun tombola_N : N ;
+fun tomboy_N : N ;
+fun tombstone_N : N ;
+fun tomcat_N : N ;
+fun tome_N : N ;
+fun tomentose_A : A ;
+fun tomentum_N : N ;
+fun tomfool_N : N ;
+fun tomfoolery_N : N ;
+fun tommy_gun_N : N ;
+fun tommy_rot_N : N ;
+fun tomograph_N : N ;
+fun tomorrow_Adv : Adv ;
+fun tomorrow_N : N ;
+fun tomtate_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 tone_N : N ;
+fun tone_V : V ;
+fun tone_deaf_A : A ;
+fun tone_poem_N : N ;
+fun toneless_A : A ;
+fun toner_N : N ;
+fun tongan_A : A ;
+fun tongan_N : N ;
+fun tongs_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 tonguefish_N : N ;
+fun tongueflower_N : N ;
+fun tongueless_A : A ;
+fun tonguelike_A : A ;
+fun tonic_A : A ;
+fun tonic_N : N ;
+fun tonic_sol_fa_N : N ;
+fun tonicity_N : N ;
+fun tonight_Adv : Adv ;
+fun tonight_N : N ;
+fun tonnage_N : N ;
+fun tonne_N : N ;
+fun tonometer_N : N ;
+fun tonometry_N : N ;
+fun tons_N : N ;
+fun tonsil_N : N ;
+fun tonsillectomy_N : N ;
+fun tonsillitis_N : N ;
+fun tonsorial_A : A ;
+fun tonsure_N : N ;
+fun tonsure_V : V ;
+fun tontine_N : N ;
+fun too_Adv : Adv ;
+fun tool_N : N ;
+fun tool_V : V ;
+fun toolbox_N : N ;
+fun toolmaker_N : N ;
+fun toolshed_N : N ;
+fun toot_N : N ;
+fun toot_V : V ;
+fun tooth_N : N ;
+fun toothache_N : N ;
+fun toothbrush_N : N ;
+fun toothed_A : A ;
+fun toothless_A : A ;
+fun toothlike_A : A ;
+fun toothpaste_N : N ;
+fun toothpick_N : N ;
+fun toothpowder_N : N ;
+fun toothsome_A : A ;
+fun toothy_A : A ;
+fun tootle_N : N ;
+fun tootle_V : V ;
+fun top_N : N ;
+fun top_V : V ;
+fun top_boot_N : N ;
+fun top_dress_V : V ;
+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 toper_N : N ;
+fun topgallant_A : A ;
+fun topgallant_N : N ;
+fun tophus_N : N ;
+fun topi_N : N ;
+fun topiary_N : N ;
+fun topic_N : N ;
+fun topical_A : A ;
+fun topicality_N : N ;
+fun topicalization_N : N ;
+fun topknot_N : N ;
+fun topless_A : A ;
+fun topmast_N : N ;
+fun topminnow_N : N ;
+fun topmost_A : A ;
+fun topnotch_A : A ;
+fun topognosia_N : N ;
+fun topographical_A : A ;
+fun topography_N : N ;
+fun topolatry_N : N ;
+fun topological_A : A ;
+fun topology_N : N ;
+fun toponymy_N : N ;
+fun topos_N : N ;
+fun topper_N : N ;
+fun topping_N : N ;
+fun topple_V : V ;
+fun topsail_N : N ;
+fun topside_N : N ;
+fun topsoil_N : N ;
+fun topspin_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 torch_N : N ;
+fun torch_V : V ;
+fun torch_race_N : N ;
+fun torch_singer_N : N ;
+fun torchbearer_N : N ;
+fun torchlight_N : N ;
+fun tore_V : V ;
+fun toreador_N : N ;
+fun torero_N : N ;
+fun torment_N : N ;
+fun torment_V : V ;
+fun tormenter_N : N ;
+fun tormentor_N : N ;
+fun tornado_N : N ;
+fun toroid_N : N ;
+fun toroidal_A : A ;
+fun torpedo_N : N ;
+fun torpedo_V : V ;
+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 torr_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 torte_N : N ;
+fun tortellini_N : N ;
+fun torticollis_N : N ;
+fun tortilla_N : N ;
+fun tortious_A : A ;
+fun tortoise_N : N ;
+fun tortoiseshell_N : N ;
+fun tortricid_N : N ;
+fun tortuosity_N : N ;
+fun tortuous_A : A ;
+fun torture_N : N ;
+fun torture_V : V ;
+fun torturer_N : N ;
+fun torulose_A : A ;
+fun torus_N : N ;
+fun tory_N : N ;
+fun tosh_N : N ;
+fun toss_N : N ;
+fun toss_V : V ;
+fun toss_up_N : N ;
+fun tosser_N : N ;
+fun tossup_N : N ;
+fun tostada_N : N ;
+fun tot_N : N ;
+fun tot_V : V ;
+fun total_A : A ;
+fun total_N : N ;
+fun total_totaled_V : V ;
+fun total_totalled_V : V ;
+fun totalitarian_A : A ;
+fun totalitarian_N : N ;
+fun totalitarianism_N : N ;
+fun totality_N : N ;
+fun totalizator_N : N ;
+fun totara_N : N ;
+fun tote_N : N ;
+fun tote_V : V ;
+fun totem_N : N ;
+fun totem_pole_N : N ;
+fun totemic_A : A ;
+fun totemism_N : N ;
+fun totemist_N : N ;
+fun totipotency_N : N ;
+fun totipotent_A : A ;
+fun totter_V : V ;
+fun tottery_A : A ;
+fun toucan_N : N ;
+fun toucanet_N : N ;
+fun touch_N : N ;
+fun touch_V : V ;
+fun touch_and_go_A : A ;
+fun touch_type_V : V ;
+fun touchable_A : A ;
+fun touchback_N : N ;
+fun touchdown_N : N ;
+fun toucher_N : N ;
+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 toughie_N : N ;
+fun toughness_N : N ;
+fun toupee_N : N ;
+fun toupeed_A : A ;
+fun tour_N : N ;
+fun tour_V : V ;
+fun tour_de_force_N : N ;
+fun touraco_N : N ;
+fun touring_N : N ;
+fun tourism_N : N ;
+fun tourist_N : N ;
+fun touristed_A : A ;
+fun tourmaline_N : N ;
+fun tournament_N : N ;
+fun tournedos_N : N ;
+fun tourney_N : N ;
+fun tourniquet_N : N ;
+fun tourtiere_N : N ;
+fun tousle_V : V ;
+fun tout_N : N ;
+fun tout_V : V ;
+fun tout_ensemble_Adv : Adv ;
+fun tout_ensemble_N : N ;
+fun tovarich_N : N ;
+fun tow_N : N ;
+fun tow_V : V ;
+fun toward_Prep : Prep ;
+fun towards_Prep : Prep ;
+fun towel_N : N ;
+fun towel_V : V ;
+fun towel_horse_N : N ;
+fun towel_rack_N : N ;
+fun towel_rail_N : N ;
+fun toweling_N : N ;
+fun towelling_N : N ;
+fun tower_N : N ;
+fun tower_V : V ;
+fun tower_block_N : N ;
+fun towhead_N : N ;
+fun towhee_N : N ;
+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 townie_N : N ;
+fun township_N : N ;
+fun townsman_N : N ;
+fun towpath_N : N ;
+fun towrope_N : N ;
+fun toxaemia_N : N ;
+fun toxemia_N : N ;
+fun toxic_A : A ;
+fun toxicity_N : N ;
+fun toxicognath_N : N ;
+fun toxicological_A : A ;
+fun toxicologist_N : N ;
+fun toxicology_N : N ;
+fun toxin_N : N ;
+fun toxoplasmosis_N : N ;
+fun toy_N : N ;
+fun toy_V : V ;
+fun toyon_N : N ;
+fun toyshop_N : N ;
+fun trabeated_A : A ;
+fun trabecula_N : N ;
+fun trabecular_A : A ;
+fun trace_N : N ;
+fun trace_V : V ;
+fun traceable_A : A ;
+fun tracer_N : N ;
+fun tracery_N : N ;
+fun trachea_N : N ;
+fun tracheal_A : A ;
+fun tracheid_N : N ;
+fun tracheitis_N : N ;
+fun tracheobronchitis_N : N ;
+fun tracheostomy_N : N ;
+fun trachodon_N : N ;
+fun trachoma_N : N ;
+fun tracing_N : N ;
+fun tracing_paper_N : N ;
+fun track_N : N ;
+fun track_V : V ;
+fun trackball_N : N ;
+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 tractive_A : A ;
+fun tractor_N : N ;
+fun trad_N : N ;
+fun trade_N : N ;
+fun trade_V : V ;
+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 tradecraft_N : N ;
+fun trademark_N : N ;
+fun trademarked_A : A ;
+fun tradeoff_N : N ;
+fun trader_N : N ;
+fun trades_union_N : N ;
+fun tradesman_N : N ;
+fun tradespeople_N : N ;
+fun trading_N : N ;
+fun tradition_N : N ;
+fun traditional_A : A ;
+fun traditionalism_N : N ;
+fun traditionalist_N : N ;
+fun traditionalistic_A : A ;
+fun traduce_V : V ;
+fun traducer_N : N ;
+fun traffic_N : N ;
+fun traffic_V : V ;
+fun trafficator_N : N ;
+fun trafficker_N : N ;
+fun tragacanth_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 tragopan_N : N ;
+fun tragus_N : N ;
+fun trail_N : N ;
+fun trail_V : V ;
+fun trailblazer_N : N ;
+fun trailer_N : N ;
+fun trailing_N : N ;
+fun train_N : N ;
+fun train_V : V ;
+fun trainband_N : N ;
+fun trainbandsman_N : N ;
+fun trainbearer_N : N ;
+fun trainee_N : N ;
+fun traineeship_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 tram_N : N ;
+fun tram_car_N : N ;
+fun tramcar_N : N ;
+fun tramline_N : N ;
+fun trammel_N : N ;
+fun trammel_V : V ;
+fun tramontane_A : A ;
+fun tramontane_N : N ;
+fun tramp_N : N ;
+fun tramp_V : V ;
+fun tramp_steamer_N : N ;
+fun trample_N : N ;
+fun trample_V : V ;
+fun trampler_N : N ;
+fun trampoline_N : N ;
+fun tramway_N : N ;
+fun trance_N : N ;
+fun trancelike_A : A ;
+fun tranche_N : N ;
+fun trandolapril_N : N ;
+fun tranquil_A : A ;
+fun tranquility_N : N ;
+fun tranquilize_V : V ;
+fun tranquilizer_N : N ;
+fun tranquillity_N : N ;
+fun tranquillize_V : V ;
+fun tranquillizer_N : N ;
+fun transact_V : V ;
+fun transactinide_A : A ;
+fun transactinide_N : N ;
+fun transaction_N : N ;
+fun transactor_N : N ;
+fun transalpine_A : A ;
+fun transalpine_N : N ;
+fun transaminase_N : N ;
+fun transamination_N : N ;
+fun transatlantic_A : A ;
+fun transcend_V : V ;
+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_V : V ;
+fun transcriber_N : N ;
+fun transcript_N : N ;
+fun transcriptase_N : N ;
+fun transcription_N : N ;
+fun transcultural_A : A ;
+fun transdermal_A : A ;
+fun transducer_N : N ;
+fun transduction_N : N ;
+fun transept_N : N ;
+fun transeunt_A : A ;
+fun transfer_N : N ;
+fun transfer_V : V ;
+fun transferability_N : N ;
+fun transferable_A : A ;
+fun transferase_N : N ;
+fun transferee_N : N ;
+fun transference_N : N ;
+fun transferer_N : N ;
+fun transferor_N : N ;
+fun transferrin_N : N ;
+fun transfiguration_N : N ;
+fun transfigure_V : V ;
+fun transfix_V : V ;
+fun transform_V : V ;
+fun transformable_A : A ;
+fun transformation_N : N ;
+fun transformer_N : N ;
+fun transfuse_V : V ;
+fun transfusion_N : N ;
+fun transgender_A : A ;
+fun transgene_N : N ;
+fun transgress_V : V ;
+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 transitivity_N : N ;
+fun transitory_A : A ;
+fun translatable_A : A ;
+fun translate_V : V ;
+fun translation_N : N ;
+fun translational_A : A ;
+fun translator_N : N ;
+fun transliterate_V : V ;
+fun transliteration_N : N ;
+fun translocation_N : N ;
+fun translucence_N : N ;
+fun translucency_N : N ;
+fun translucent_A : A ;
+fun translunar_A : A ;
+fun transmigrante_N : N ;
+fun transmigration_N : N ;
+fun transmission_N : N ;
+fun transmit_V : V ;
+fun transmittance_N : N ;
+fun transmitter_N : N ;
+fun transmogrification_N : N ;
+fun transmogrify_V : V ;
+fun transmundane_A : A ;
+fun transmutable_A : A ;
+fun transmutation_N : N ;
+fun transmute_V : V ;
+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 transplacental_A : A ;
+fun transplant_N : N ;
+fun transplant_V : V ;
+fun transplantable_A : A ;
+fun transplantation_N : N ;
+fun transplanter_N : N ;
+fun transpolar_A : A ;
+fun transponder_N : N ;
+fun transport_N : N ;
+fun transport_V : V ;
+fun transportable_A : A ;
+fun transportation_N : N ;
+fun transporter_N : N ;
+fun transposable_A : A ;
+fun transpose_N : N ;
+fun transpose_V : V ;
+fun transposition_N : N ;
+fun transposon_N : N ;
+fun transsexual_N : N ;
+fun transsexualism_N : N ;
+fun transship_V : V ;
+fun transshipment_N : N ;
+fun transubstantiation_N : N ;
+fun transudate_N : N ;
+fun transuranic_A : A ;
+fun transverse_A : A ;
+fun transvestic_A : A ;
+fun transvestism_N : N ;
+fun transvestite_N : N ;
+fun tranylcypromine_N : N ;
+fun trap_N : N ;
+fun trap_V : V ;
+fun trap_door_N : N ;
+fun trap_shooting_N : N ;
+fun trapeze_N : N ;
+fun trapezium_N : N ;
+fun trapezius_N : N ;
+fun trapezohedron_N : N ;
+fun trapezoid_N : N ;
+fun trapezoidal_A : A ;
+fun trapper_N : N ;
+fun trappist_N : N ;
+fun trapshooter_N : N ;
+fun trash_N : N ;
+fun trash_V : V ;
+fun trashy_A : A ;
+fun trauma_N : N ;
+fun traumatic_A : A ;
+fun traumatology_N : N ;
+fun traumatophobia_N : N ;
+fun travail_N : N ;
+fun trave_N : N ;
+fun travel_N : N ;
+fun travel_V : V ;
+fun travel_soiled_A : A ;
+fun travel_stained_A : A ;
+fun travel_worn_A : A ;
+fun traveler_N : N ;
+fun travelled_A : A ;
+fun traveller_N : N ;
+fun travelling_N : N ;
+fun travelogue_N : N ;
+fun traversable_A : A ;
+fun traversal_N : N ;
+fun traverse_N : N ;
+fun traverse_V : V ;
+fun traverser_N : N ;
+fun travesty_N : N ;
+fun travesty_V : V ;
+fun trawl_N : N ;
+fun trawl_V : V ;
+fun trawl_net_N : N ;
+fun trawler_N : N ;
+fun tray_N : N ;
+fun tray_cloth_N : N ;
+fun trazodone_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 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_V : V ;
+fun treasure_house_N : N ;
+fun treasure_trove_N : N ;
+fun treasurer_N : N ;
+fun treasurership_N : N ;
+fun treasury_N : N ;
+fun treat_N : N ;
+fun treat_V : V ;
+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 tree_N : N ;
+fun tree_V : V ;
+fun tree_fern_N : N ;
+fun treehopper_N : N ;
+fun treeless_A : A ;
+fun treelet_N : N ;
+fun treenail_N : N ;
+fun trefoil_N : N ;
+fun trek_N : N ;
+fun trek_treked_V : V ;
+fun trek_trekked_V : V ;
+fun trekker_N : N ;
+fun trellis_N : N ;
+fun trellis_V : V ;
+fun tremble_N : N ;
+fun tremble_V : V ;
+fun trembles_N : N ;
+fun tremendous_A : A ;
+fun tremolite_N : N ;
+fun tremolo_N : N ;
+fun tremor_N : N ;
+fun tremulous_A : A ;
+fun trench_N : N ;
+fun trench_V : V ;
+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 trendsetting_A : A ;
+fun trendy_A : A ;
+fun trepan_N : N ;
+fun trepan_V : V ;
+fun trepang_N : N ;
+fun trephination_N : N ;
+fun trephine_N : N ;
+fun trephine_V : V ;
+fun trepidation_N : N ;
+fun treponema_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 trestlework_N : N ;
+fun trews_N : N ;
+fun trey_N : N ;
+fun triad_N : N ;
+fun triage_N : N ;
+fun trial_N : N ;
+fun triamcinolone_N : N ;
+fun triangle_N : N ;
+fun triangular_A : A ;
+fun triangularity_N : N ;
+fun triangulate_A : A ;
+fun triangulation_N : N ;
+fun triazine_N : N ;
+fun triazolam_N : N ;
+fun tribadism_N : N ;
+fun tribadistic_A : A ;
+fun tribal_A : A ;
+fun tribalism_N : N ;
+fun tribalization_N : N ;
+fun tribe_N : N ;
+fun tribesman_N : N ;
+fun tribologist_N : N ;
+fun tribology_N : N ;
+fun tribromoethanol_N : N ;
+fun tribulation_N : N ;
+fun tribunal_N : N ;
+fun tribune_N : N ;
+fun tribuneship_N : N ;
+fun tributary_A : A ;
+fun tributary_N : N ;
+fun tribute_N : N ;
+fun tributyrin_N : N ;
+fun trice_N : N ;
+fun trice_V : V ;
+fun tricentenary_A : A ;
+fun triceps_N : N ;
+fun triceratops_N : N ;
+fun trichina_N : N ;
+fun trichinosis_N : N ;
+fun trichion_N : N ;
+fun trichloride_N : N ;
+fun trichlormethiazide_N : N ;
+fun trichloroethylene_N : N ;
+fun trichodesmium_N : N ;
+fun trichomonad_N : N ;
+fun trichomoniasis_N : N ;
+fun trichotillomania_N : N ;
+fun trichotomy_N : N ;
+fun trichroism_N : N ;
+fun trichromatic_A : A ;
+fun trichuriasis_N : N ;
+fun trick_N : N ;
+fun trick_V : V ;
+fun trickery_N : N ;
+fun trickiness_N : N ;
+fun trickle_N : N ;
+fun trickle_V : V ;
+fun trickster_N : N ;
+fun tricksy_A : A ;
+fun tricky_A : A ;
+fun triclinic_A : A ;
+fun triclinium_N : N ;
+fun tricolor_N : N ;
+fun tricolour_N : N ;
+fun tricorn_N : N ;
+fun tricot_N : N ;
+fun tricuspid_A : A ;
+fun tricycle_N : N ;
+fun tricyclic_N : N ;
+fun trident_N : N ;
+fun tridymite_N : N ;
+fun triennial_A : A ;
+fun triennial_N : N ;
+fun trier_N : N ;
+fun trifid_A : A ;
+fun trifle_N : N ;
+fun trifle_V : V ;
+fun trifler_N : N ;
+fun trifoliate_A : A ;
+fun trifurcation_N : N ;
+fun trigeminal_N : N ;
+fun trigger_N : N ;
+fun trigger_V : V ;
+fun trigger_happy_A : A ;
+fun triggerfish_N : N ;
+fun triglyceride_N : N ;
+fun trigon_N : N ;
+fun trigonometric_A : A ;
+fun trigonometrician_N : N ;
+fun trigonometry_N : N ;
+fun trigram_N : N ;
+fun trihydroxy_A : A ;
+fun triiodothyronine_N : N ;
+fun trilateral_A : A ;
+fun trilby_N : N ;
+fun trilingual_A : A ;
+fun trill_N : N ;
+fun trill_V : V ;
+fun trillion_A : A ;
+fun trillion_N : N ;
+fun trillionth_A : A ;
+fun trillionth_N : N ;
+fun trillium_N : N ;
+fun trilobate_A : A ;
+fun trilobite_N : N ;
+fun trilogy_N : N ;
+fun trim_A : A ;
+fun trim_N : N ;
+fun trim_V : V ;
+fun trimaran_N : N ;
+fun trimer_N : N ;
+fun trimester_N : N ;
+fun trimipramine_N : N ;
+fun trimmer_N : N ;
+fun trimming_N : N ;
+fun trimotored_A : A ;
+fun trinidadian_A : A ;
+fun trinidadian_N : N ;
+fun trinitrotoluene_N : N ;
+fun trinity_N : N ;
+fun trinket_N : N ;
+fun trinketry_N : N ;
+fun trinucleate_A : A ;
+fun trio_N : N ;
+fun triode_N : N ;
+fun triolein_N : N ;
+fun triose_N : N ;
+fun trioxide_N : N ;
+fun trip_N : N ;
+fun trip_V : V ;
+fun tripalmitin_N : N ;
+fun tripartite_A : A ;
+fun tripe_N : N ;
+fun triphammer_N : N ;
+fun triphosphopyridine_N : N ;
+fun tripinnate_A : A ;
+fun tripinnatifid_A : A ;
+fun triple_A : A ;
+fun triple_N : N ;
+fun triple_V : V ;
+fun triplet_N : N ;
+fun tripletail_N : N ;
+fun triplex_A : A ;
+fun triplicate_A : A ;
+fun triplicate_N : N ;
+fun triplicate_V : V ;
+fun triplicity_N : N ;
+fun tripling_N : N ;
+fun triploid_A : A ;
+fun tripod_N : N ;
+fun tripos_N : N ;
+fun tripper_N : N ;
+fun triptych_N : N ;
+fun triquetral_N : N ;
+fun trireme_N : N ;
+fun trisaccharide_N : N ;
+fun trisect_V : V ;
+fun triskaidekaphobia_N : N ;
+fun triskaidekaphobic_A : A ;
+fun triskelion_N : N ;
+fun trismus_N : N ;
+fun trisomy_N : N ;
+fun tristearin_N : N ;
+fun trisyllable_N : N ;
+fun tritanopia_N : N ;
+fun tritanopic_A : A ;
+fun trite_A : A ;
+fun triteness_N : N ;
+fun tritheism_N : N ;
+fun tritheist_N : N ;
+fun tritium_N : N ;
+fun triton_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 trivalent_A : A ;
+fun trivet_N : N ;
+fun trivial_A : A ;
+fun triviality_N : N ;
+fun trivialize_V : V ;
+fun trivium_N : N ;
+fun trochaic_A : A ;
+fun trochanter_N : N ;
+fun trochee_N : N ;
+fun trochlear_N : N ;
+fun troglodyte_N : N ;
+fun trogon_N : N ;
+fun troika_N : N ;
+fun trojan_A : A ;
+fun trojan_N : N ;
+fun troll_N : N ;
+fun troll_V : V ;
+fun trolley_N : N ;
+fun trolley_car_N : N ;
+fun trolleybus_N : N ;
+fun trollop_N : N ;
+fun trombiculiasis_N : N ;
+fun trombiculid_N : N ;
+fun trombidiid_N : N ;
+fun trombone_N : N ;
+fun trombonist_N : N ;
+fun trompillo_N : N ;
+fun troop_N : N ;
+fun troop_V : V ;
+fun troop_carrier_N : N ;
+fun trooper_N : N ;
+fun troopship_N : N ;
+fun trope_N : N ;
+fun trophic_A : A ;
+fun trophobiosis_N : N ;
+fun trophoblast_N : N ;
+fun trophoblastic_A : A ;
+fun trophotropic_A : A ;
+fun trophotropism_N : N ;
+fun trophozoite_N : N ;
+fun trophy_N : N ;
+fun tropic_N : N ;
+fun tropical_A : A ;
+fun tropism_N : N ;
+fun troponym_N : N ;
+fun troponymy_N : N ;
+fun tropopause_N : N ;
+fun troposphere_N : N ;
+fun trot_N : N ;
+fun trot_V : V ;
+fun troth_N : N ;
+fun trotter_N : N ;
+fun troubadour_N : N ;
+fun trouble_N : N ;
+fun trouble_V : V ;
+fun troublemaker_N : N ;
+fun troubleshooter_N : N ;
+fun troublesome_A : A ;
+fun troublesomeness_N : N ;
+fun troublous_A : A ;
+fun trough_N : N ;
+fun trough_V : V ;
+fun trounce_V : V ;
+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 trowel_N : N ;
+fun troy_N : N ;
+fun truancy_N : N ;
+fun truant_A : A ;
+fun truant_N : N ;
+fun truce_N : N ;
+fun truck_N : N ;
+fun truckage_N : N ;
+fun truckle_N : N ;
+fun truckle_V : V ;
+fun truckle_bed_N : N ;
+fun truckling_N : N ;
+fun truculence_N : N ;
+fun truculency_N : N ;
+fun truculent_A : A ;
+fun trudge_N : N ;
+fun trudge_V : V ;
+fun trudger_N : N ;
+fun true_A : A ;
+fun true_N : N ;
+fun true_V : V ;
+fun true_blue_A : A ;
+fun true_blue_N : N ;
+fun true_hearted_A : A ;
+fun truelove_N : N ;
+fun trueness_N : N ;
+fun truffle_N : N ;
+fun truism_N : N ;
+fun trump_N : N ;
+fun trump_V : V ;
+fun trumpery_A : A ;
+fun trumpet_N : N ;
+fun trumpet_V : V ;
+fun trumpeter_N : N ;
+fun trumpetfish_N : N ;
+fun trumpetwood_N : N ;
+fun truncate_A : A ;
+fun truncate_V : V ;
+fun truncation_N : N ;
+fun truncheon_N : N ;
+fun trundle_N : N ;
+fun trundle_V : V ;
+fun trunk_N : N ;
+fun trunk_call_N : N ;
+fun trunk_line_N : N ;
+fun trunk_road_N : N ;
+fun trunking_N : N ;
+fun truss_N : N ;
+fun truss_V : V ;
+fun trust_N : N ;
+fun trust_V : V ;
+fun trustbuster_N : N ;
+fun trustee_N : N ;
+fun trusteeship_N : N ;
+fun trustful_A : A ;
+fun trustworthiness_N : N ;
+fun trustworthy_A : A ;
+fun trusty_A : A ;
+fun trusty_N : N ;
+fun truth_N : N ;
+fun truthful_A : A ;
+fun truthfulness_N : N ;
+fun try_N : N ;
+fun try_V : V ;
+fun try_on_N : N ;
+fun try_out_N : N ;
+fun trypsin_N : N ;
+fun trypsinogen_N : N ;
+fun tryptophan_N : N ;
+fun tryst_N : N ;
+fun tsar_N : N ;
+fun tsarina_N : N ;
+fun tsetse_N : N ;
+fun tsetse_fly_N : N ;
+fun tsoris_N : N ;
+fun tsunami_N : N ;
+fun tsuris_N : N ;
+fun tswana_A : A ;
+fun tswana_N : N ;
+fun tuatara_N : N ;
+fun tub_N : N ;
+fun tub_thumper_N : N ;
+fun tuba_N : N ;
+fun tubal_A : A ;
+fun tubby_A : A ;
+fun tube_N : N ;
+fun tube_well_N : N ;
+fun tubed_A : A ;
+fun tubeless_A : A ;
+fun tubeless_N : N ;
+fun tuber_N : N ;
+fun tubercle_N : N ;
+fun tubercular_A : A ;
+fun tuberculate_A : A ;
+fun tuberculin_N : N ;
+fun tuberculoid_A : A ;
+fun tuberculosis_N : N ;
+fun tuberculous_A : A ;
+fun tuberose_N : N ;
+fun tuberosity_N : N ;
+fun tuberous_A : A ;
+fun tubful_N : N ;
+fun tubing_N : N ;
+fun tubocurarine_N : N ;
+fun tubular_A : A ;
+fun tubule_N : N ;
+fun tuc_N : N ;
+fun tuck_N : N ;
+fun tuck_V : V ;
+fun tuck_in_N : N ;
+fun tuck_shop_N : N ;
+fun tucker_N : N ;
+fun tudung_N : N ;
+fun tufa_N : N ;
+fun tuff_N : N ;
+fun tuft_N : N ;
+fun tufted_A : A ;
+fun tug_N : N ;
+fun tug_V : V ;
+fun tugboat_N : N ;
+fun tugrik_N : N ;
+fun tuille_N : N ;
+fun tuition_N : N ;
+fun tularemia_N : N ;
+fun tulip_N : N ;
+fun tulipwood_N : N ;
+fun tulle_N : N ;
+fun tumble_N : N ;
+fun tumble_V : V ;
+fun tumble_down_A : A ;
+fun tumblebug_N : N ;
+fun tumbler_N : N ;
+fun tumbleweed_N : N ;
+fun tumbrel_N : N ;
+fun tumbril_N : N ;
+fun tumefaction_N : N ;
+fun tumescence_N : N ;
+fun tumescent_A : A ;
+fun tumid_A : A ;
+fun tumidity_N : N ;
+fun tummy_N : N ;
+fun tumor_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 tunaburger_N : N ;
+fun tundra_N : N ;
+fun tune_N : N ;
+fun tune_V : V ;
+fun tuneful_A : A ;
+fun tunefulness_N : N ;
+fun tuneless_A : A ;
+fun tuner_N : N ;
+fun tung_oil_N : N ;
+fun tungstate_N : N ;
+fun tungsten_N : N ;
+fun tunic_N : N ;
+fun tunicate_N : N ;
+fun tuning_N : N ;
+fun tuning_fork_N : N ;
+fun tunisian_A : A ;
+fun tunisian_N : N ;
+fun tunnel_N : N ;
+fun tunnel_V : V ;
+fun tunny_N : N ;
+fun tup_N : N ;
+fun tupelo_N : N ;
+fun tupik_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 turbinate_A : A ;
+fun turbine_N : N ;
+fun turbogenerator_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_V : V ;
+fun turgid_A : A ;
+fun turgidity_N : N ;
+fun turgor_N : N ;
+fun turmeric_N : N ;
+fun turmoil_N : N ;
+fun turn_N : N ;
+fun turn_V : V ;
+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 turnaround_N : N ;
+fun turnbuckle_N : N ;
+fun turncoat_N : N ;
+fun turncock_N : N ;
+fun turner_N : N ;
+fun turnery_N : N ;
+fun turning_N : N ;
+fun turning_point_N : N ;
+fun turnip_N : N ;
+fun turnkey_N : N ;
+fun turnoff_N : N ;
+fun turnout_N : N ;
+fun turnover_N : N ;
+fun turnpike_N : N ;
+fun turnspit_N : N ;
+fun turnstile_N : N ;
+fun turnstone_N : N ;
+fun turntable_N : N ;
+fun turnverein_N : N ;
+fun turpentine_N : N ;
+fun turpitude_N : N ;
+fun turps_N : N ;
+fun turquoise_N : N ;
+fun turreae_N : N ;
+fun turret_N : N ;
+fun turtle_N : N ;
+fun turtledove_N : N ;
+fun turtleneck_A : A ;
+fun turtleneck_N : N ;
+fun turtlenecked_A : A ;
+fun turtler_N : N ;
+fun tushery_N : N ;
+fun tusk_N : N ;
+fun tusked_A : A ;
+fun tusker_N : N ;
+fun tussah_N : N ;
+fun tussle_N : N ;
+fun tussle_V : V ;
+fun tussock_N : N ;
+fun tut_V : V ;
+fun tutee_N : N ;
+fun tutelage_N : N ;
+fun tutelary_A : A ;
+fun tutor_N : N ;
+fun tutor_V : V ;
+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 tuxedoed_A : A ;
+fun twaddle_N : N ;
+fun twaddle_V : V ;
+fun twaddler_N : N ;
+fun twain_N : N ;
+fun twang_N : N ;
+fun twang_V : V ;
+fun twayblade_N : N ;
+fun tweak_N : N ;
+fun tweak_V : V ;
+fun twee_A : A ;
+fun tweed_N : N ;
+fun tweediness_N : N ;
+fun tweedy_A : A ;
+fun tweet_N : N ;
+fun tweet_V : V ;
+fun tweeter_N : N ;
+fun twelfth_night_N : N ;
+fun twelvemonth_N : N ;
+fun twerp_N : N ;
+fun twice_Adv : Adv ;
+fun twiddle_N : N ;
+fun twiddle_V : V ;
+fun twiddler_N : N ;
+fun twiddly_A : A ;
+fun twig_N : N ;
+fun twig_V : V ;
+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_V : V ;
+fun twinberry_N : N ;
+fun twine_N : N ;
+fun twine_V : V ;
+fun twiner_N : N ;
+fun twinflower_N : N ;
+fun twinge_N : N ;
+fun twinjet_N : N ;
+fun twinkle_N : N ;
+fun twinkle_V : V ;
+fun twinkler_N : N ;
+fun twinkling_N : N ;
+fun twins_N : N ;
+fun twirl_N : N ;
+fun twirl_V : V ;
+fun twirlingly_Adv : Adv ;
+fun twist_N : N ;
+fun twist_V : V ;
+fun twister_N : N ;
+fun twisty_A : A ;
+fun twit_N : N ;
+fun twit_V : V ;
+fun twitch_N : N ;
+fun twitch_V : V ;
+fun twitter_N : N ;
+fun twitter_V : V ;
+fun twitterer_N : N ;
+fun twixt_Prep : Prep ;
+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 twofer_N : N ;
+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 tying_N : N ;
+fun tyiyn_N : N ;
+fun tyke_N : N ;
+fun tympanic_A : A ;
+fun tympanist_N : N ;
+fun tympanites_N : N ;
+fun tympanitic_A : A ;
+fun tympanitis_N : N ;
+fun tympanoplasty_N : N ;
+fun tympanum_N : N ;
+fun type_N : N ;
+fun type_V : V ;
+fun typecast_V : V ;
+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 typicality_N : N ;
+fun typification_N : N ;
+fun typify_V : V ;
+fun typing_N : N ;
+fun typist_N : N ;
+fun typographer_N : N ;
+fun typographic_A : A ;
+fun typographically_Adv : Adv ;
+fun typography_N : N ;
+fun typology_N : N ;
+fun tyramine_N : N ;
+fun tyrannical_A : A ;
+fun tyrannicide_N : N ;
+fun tyrannid_N : N ;
+fun tyrannize_V : V ;
+fun tyrannosaur_N : N ;
+fun tyrannous_A : A ;
+fun tyranny_N : N ;
+fun tyrant_N : N ;
+fun tyre_N : N ;
+fun tyro_N : N ;
+fun tyrocidine_N : N ;
+fun tyrolean_N : N ;
+fun tyrosine_N : N ;
+fun tyrosinemia_N : N ;
+fun tyrothricin_N : N ;
+fun tzar_N : N ;
+fun tzarina_N : N ;
+fun tête_à_tête_Adv : Adv ;
+fun tête_à_tête_N : N ;
+fun u_A : A ;
+fun u_boat_N : N ;
+fun u_turn_N : N ;
+fun uakari_N : N ;
+fun ubiety_N : N ;
+fun ubiquinone_N : N ;
+fun ubiquitous_A : A ;
+fun ubiquity_N : N ;
+fun udder_N : N ;
+fun ugandan_A : A ;
+fun ugandan_N : N ;
+fun uglify_V : V ;
+fun ugliness_N : N ;
+fun ugly_A : A ;
+fun ukase_N : N ;
+fun uke_N : N ;
+fun ukulele_N : N ;
+fun ulalgia_N : N ;
+fun ulatrophia_N : N ;
+fun ulcer_N : N ;
+fun ulcerate_V : V ;
+fun ulceration_N : N ;
+fun ulcerative_A : A ;
+fun ulcerous_A : A ;
+fun ulema_N : N ;
+fun ulemorrhagia_N : N ;
+fun ulitis_N : N ;
+fun ullage_N : N ;
+fun ulna_N : N ;
+fun ulnar_A : A ;
+fun ulster_N : N ;
+fun ulterior_A : A ;
+fun ulteriority_N : N ;
+fun ultima_N : N ;
+fun ultimacy_N : N ;
+fun ultimate_A : A ;
+fun ultimate_N : N ;
+fun ultimatum_N : N ;
+fun ultimo_A : A ;
+fun ultra_vires_A : A ;
+fun ultra_vires_Adv : Adv ;
+fun ultracentrifugation_N : N ;
+fun ultracentrifuge_N : N ;
+fun ultraconservative_A : A ;
+fun ultramarine_A : A ;
+fun ultramarine_N : N ;
+fun ultramicroscope_N : N ;
+fun ultramicroscopic_A : A ;
+fun ultramodern_A : A ;
+fun ultramontane_A : A ;
+fun ultramontane_N : N ;
+fun ultramontanism_N : N ;
+fun ultrasonic_A : A ;
+fun ultrasonically_Adv : Adv ;
+fun ultrasound_N : N ;
+fun ultraviolet_A : A ;
+fun ultraviolet_N : N ;
+fun ululate_V : V ;
+fun ululation_N : N ;
+fun umbel_N : N ;
+fun umbellate_A : A ;
+fun umbellifer_N : N ;
+fun umbelliferous_A : A ;
+fun umbelliform_A : A ;
+fun umber_A : A ;
+fun umber_N : N ;
+fun umbilical_A : A ;
+fun umbilicate_A : A ;
+fun umbo_N : N ;
+fun umbra_N : N ;
+fun umbrage_N : N ;
+fun umbrella_A : A ;
+fun umbrella_N : N ;
+fun umbrellalike_A : A ;
+fun umbrellawort_N : N ;
+fun umlaut_N : N ;
+fun umpirage_N : N ;
+fun umpire_N : N ;
+fun umpire_V : V ;
+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 unabused_A : A ;
+fun unaccented_A : A ;
+fun unacceptability_N : N ;
+fun unacceptable_A : A ;
+fun unaccommodating_A : A ;
+fun unaccompanied_A : A ;
+fun unaccountable_A : A ;
+fun unaccounted_A : A ;
+fun unaccredited_A : A ;
+fun unaccustomed_A : A ;
+fun unachievable_A : A ;
+fun unacknowledged_A : A ;
+fun unacquainted_A : A ;
+fun unacquisitive_A : A ;
+fun unactable_A : A ;
+fun unadaptability_N : N ;
+fun unadaptable_A : A ;
+fun unadapted_A : A ;
+fun unaddicted_A : A ;
+fun unaddressed_A : A ;
+fun unadjustable_A : A ;
+fun unadjusted_A : A ;
+fun unadoptable_A : A ;
+fun unadorned_A : A ;
+fun unadulterated_A : A ;
+fun unadventurous_A : A ;
+fun unadvised_A : A ;
+fun unaerated_A : A ;
+fun unaffected_A : A ;
+fun unaffectedness_N : N ;
+fun unaffecting_A : A ;
+fun unaffiliated_A : A ;
+fun unaffixed_A : A ;
+fun unafraid_A : A ;
+fun unaged_A : A ;
+fun unaggressive_A : A ;
+fun unagitated_A : A ;
+fun unaided_A : A ;
+fun unairworthy_A : A ;
+fun unalarming_A : A ;
+fun unalert_A : A ;
+fun unalienable_A : A ;
+fun unaligned_A : A ;
+fun unalike_A : A ;
+fun unalloyed_A : A ;
+fun unalterability_N : N ;
+fun unalterable_A : A ;
+fun unaltered_A : A ;
+fun unambiguity_N : N ;
+fun unambiguous_A : A ;
+fun unambitious_A : A ;
+fun unamended_A : A ;
+fun unanalyzable_A : A ;
+fun unanalyzed_A : A ;
+fun unanimated_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 unapologetic_A : A ;
+fun unappareled_A : A ;
+fun unapparent_A : A ;
+fun unappealable_A : A ;
+fun unappealing_A : A ;
+fun unappendaged_A : A ;
+fun unappetizing_A : A ;
+fun unappetizingness_N : N ;
+fun unappreciated_A : A ;
+fun unappreciative_A : A ;
+fun unapprehensive_A : A ;
+fun unapproachability_N : N ;
+fun unapproachable_A : A ;
+fun unarguable_A : A ;
+fun unargumentative_A : A ;
+fun unarmed_A : A ;
+fun unarmored_A : A ;
+fun unarticulated_A : A ;
+fun unary_A : A ;
+fun unascertainable_A : A ;
+fun unashamed_A : A ;
+fun unasked_A : A ;
+fun unassailable_A : A ;
+fun unassertive_A : A ;
+fun unassertiveness_N : N ;
+fun unassigned_A : A ;
+fun unassisted_A : A ;
+fun unassuming_A : A ;
+fun unassured_A : A ;
+fun unasterisked_A : A ;
+fun unattached_A : A ;
+fun unattainable_A : A ;
+fun unattainableness_N : N ;
+fun unattended_A : A ;
+fun unattractive_A : A ;
+fun unattractiveness_N : N ;
+fun unattributable_A : A ;
+fun unauthorized_A : A ;
+fun unavailable_A : A ;
+fun unavailing_A : A ;
+fun unavenged_A : A ;
+fun unavoidable_A : A ;
+fun unavowed_A : A ;
+fun unawakened_A : A ;
+fun unaware_A : A ;
+fun unawares_Adv : Adv ;
+fun unawed_A : A ;
+fun unbacked_A : A ;
+fun unbaffled_A : A ;
+fun unbalance_V : V ;
+fun unbalconied_A : A ;
+fun unbanded_A : A ;
+fun unbaptized_A : A ;
+fun unbar_V : V ;
+fun unbarreled_A : A ;
+fun unbearable_A : A ;
+fun unbeatable_A : A ;
+fun unbeaten_A : A ;
+fun unbecoming_A : A ;
+fun unbecomingness_N : N ;
+fun unbefitting_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 unbelted_A : A ;
+fun unbend_V : V ;
+fun unbeneficed_A : A ;
+fun unbent_A : A ;
+fun unbiased_A : A ;
+fun unbiassed_A : A ;
+fun unbidden_A : A ;
+fun unbigoted_A : A ;
+fun unbind_V : V ;
+fun unbitter_A : A ;
+fun unbleached_A : A ;
+fun unblemished_A : A ;
+fun unblended_A : A ;
+fun unblessed_A : A ;
+fun unblinking_A : A ;
+fun unblock_V : V ;
+fun unblushing_A : A ;
+fun unbodied_A : A ;
+fun unbolt_V : V ;
+fun unbooked_A : A ;
+fun unbordered_A : A ;
+fun unborn_A : A ;
+fun unbosom_V : V ;
+fun unbounded_A : A ;
+fun unbowed_A : A ;
+fun unbraced_A : A ;
+fun unbrainwashed_A : A ;
+fun unbranched_A : A ;
+fun unbranded_A : A ;
+fun unbreakable_A : A ;
+fun unbreakableness_N : N ;
+fun unbridgeable_A : A ;
+fun unbridled_A : A ;
+fun unbroken_A : A ;
+fun unbrushed_A : A ;
+fun unbuckle_V : V ;
+fun unburden_V : V ;
+fun unburied_A : A ;
+fun unburnished_A : A ;
+fun unbutton_V : V ;
+fun uncalled_for_A : A ;
+fun uncamphorated_A : A ;
+fun uncanny_A : A ;
+fun uncapped_A : A ;
+fun uncared_for_A : A ;
+fun uncarpeted_A : A ;
+fun uncarved_A : A ;
+fun uncastrated_A : A ;
+fun uncategorized_A : A ;
+fun uncaulked_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 uncertified_A : A ;
+fun unchain_V : V ;
+fun unchallengeable_A : A ;
+fun unchallenged_A : A ;
+fun unchangeable_A : A ;
+fun unchanged_A : A ;
+fun unchanging_A : A ;
+fun uncharacteristic_A : A ;
+fun uncharacteristically_Adv : Adv ;
+fun uncharged_A : A ;
+fun uncharitable_A : A ;
+fun uncharted_A : A ;
+fun unchartered_A : A ;
+fun unchaste_A : A ;
+fun uncheckable_A : A ;
+fun unchecked_A : A ;
+fun uncheerfulness_N : N ;
+fun unchivalrously_Adv : Adv ;
+fun unchristian_A : A ;
+fun unchristianly_A : A ;
+fun uncial_A : A ;
+fun uncial_N : N ;
+fun uncivil_A : A ;
+fun uncivilized_A : A ;
+fun unclaimed_A : A ;
+fun unclassifiable_A : A ;
+fun unclassified_A : A ;
+fun uncle_N : N ;
+fun unclean_A : A ;
+fun uncleanliness_N : N ;
+fun uncleanly_A : A ;
+fun unclear_A : A ;
+fun uncleared_A : A ;
+fun unclearness_N : N ;
+fun unclipped_A : A ;
+fun unclogged_A : A ;
+fun unclothed_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 uncoated_A : A ;
+fun uncoerced_A : A ;
+fun uncoiled_A : A ;
+fun uncollected_A : A ;
+fun uncolored_A : A ;
+fun uncoloured_A : A ;
+fun uncombable_A : A ;
+fun uncombed_A : A ;
+fun uncombined_A : A ;
+fun uncomfortable_A : A ;
+fun uncommercial_A : A ;
+fun uncommercialized_A : A ;
+fun uncommitted_A : A ;
+fun uncommon_A : A ;
+fun uncommonness_N : N ;
+fun uncommunicative_A : A ;
+fun uncommunicativeness_N : N ;
+fun uncompartmented_A : A ;
+fun uncompassionate_A : A ;
+fun uncompensated_A : A ;
+fun uncompetitive_A : A ;
+fun uncomplaining_A : A ;
+fun uncompleted_A : A ;
+fun uncomplicated_A : A ;
+fun uncomplimentary_A : A ;
+fun uncompounded_A : A ;
+fun uncomprehended_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 unconfessed_A : A ;
+fun unconfessed_N : N ;
+fun unconfined_A : A ;
+fun unconfirmed_A : A ;
+fun unconformable_A : A ;
+fun uncongenial_A : A ;
+fun uncongeniality_N : N ;
+fun unconnected_A : A ;
+fun unconnectedness_N : N ;
+fun unconquerable_A : A ;
+fun unconquered_A : A ;
+fun unconscientious_A : A ;
+fun unconscientiousness_N : N ;
+fun unconscionable_A : A ;
+fun unconscious_A : A ;
+fun unconscious_N : N ;
+fun unconsciousness_N : N ;
+fun unconsidered_A : A ;
+fun unconsolidated_A : A ;
+fun unconstipated_A : A ;
+fun unconstitutional_A : A ;
+fun unconstrained_A : A ;
+fun unconstricted_A : A ;
+fun unconstructive_A : A ;
+fun unconsumed_A : A ;
+fun unconsummated_A : A ;
+fun uncontaminated_A : A ;
+fun uncontested_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 uncool_A : A ;
+fun uncooperative_A : A ;
+fun uncoordinated_A : A ;
+fun uncordial_A : A ;
+fun uncork_V : V ;
+fun uncorrected_A : A ;
+fun uncorrelated_A : A ;
+fun uncorroborated_A : A ;
+fun uncorrupted_A : A ;
+fun uncouple_V : V ;
+fun uncousinly_A : A ;
+fun uncouth_A : A ;
+fun uncouthness_N : N ;
+fun uncover_V : V ;
+fun uncrannied_A : A ;
+fun uncreative_A : A ;
+fun uncreativeness_N : N ;
+fun uncritical_A : A ;
+fun uncropped_A : A ;
+fun uncross_V : V ;
+fun uncrowded_A : A ;
+fun uncrowned_A : A ;
+fun uncrystallized_A : A ;
+fun unction_N : N ;
+fun unctuous_A : A ;
+fun uncultivable_A : A ;
+fun uncultivated_A : A ;
+fun uncultured_A : A ;
+fun uncured_A : A ;
+fun uncurl_V : V ;
+fun uncurved_A : A ;
+fun uncus_N : N ;
+fun uncut_A : A ;
+fun undamaged_A : A ;
+fun undatable_A : A ;
+fun undated_A : A ;
+fun undaunted_A : A ;
+fun undecagon_N : N ;
+fun undeceive_V : V ;
+fun undecided_A : A ;
+fun undeciphered_A : A ;
+fun undeclared_A : A ;
+fun undedicated_A : A ;
+fun undefeated_A : A ;
+fun undefended_A : A ;
+fun undeferential_A : A ;
+fun undefinable_A : A ;
+fun undefined_A : A ;
+fun undelineated_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 undependability_N : N ;
+fun undependable_A : A ;
+fun undepicted_A : A ;
+fun under_Adv : Adv ;
+fun under_Prep : Prep ;
+fun under_the_counter_A : A ;
+fun underachievement_N : N ;
+fun underachiever_N : N ;
+fun underact_V : V ;
+fun underage_A : A ;
+fun underarm_A : A ;
+fun underarm_Adv : Adv ;
+fun underbelly_N : N ;
+fun underbid_underbade_underbid_V : V ;
+fun underbid_underbade_underbidden_V : V ;
+fun underbid_underbid_underbid_V : V ;
+fun underbid_underbid_underbidden_V : V ;
+fun underboss_N : N ;
+fun underbred_A : A ;
+fun underbrush_N : N ;
+fun undercarriage_N : N ;
+fun undercharge_N : N ;
+fun undercharge_V : V ;
+fun underclothing_N : N ;
+fun undercoat_N : N ;
+fun undercoated_A : A ;
+fun undercover_A : A ;
+fun undercurrent_N : N ;
+fun undercut_N : N ;
+fun undercut_V : V ;
+fun underdeveloped_A : A ;
+fun underdevelopment_N : N ;
+fun underdog_N : N ;
+fun underdone_A : A ;
+fun underdressed_A : A ;
+fun undereducated_A : A ;
+fun underemployed_A : A ;
+fun underestimate_N : N ;
+fun underestimate_V : V ;
+fun underestimation_N : N ;
+fun underevaluation_N : N ;
+fun underexpose_V : V ;
+fun underexposure_N : N ;
+fun underfed_A : A ;
+fun underfelt_N : N ;
+fun underfloor_A : A ;
+fun underfoot_Adv : Adv ;
+fun underfund_V : V ;
+fun undergarment_N : N ;
+fun undergo_V : V ;
+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 underivative_A : A ;
+fun underived_A : A ;
+fun underlay_N : N ;
+fun underlie_V : V ;
+fun underline_N : N ;
+fun underline_V : V ;
+fun underling_N : N ;
+fun underlip_N : N ;
+fun underlying_A : A ;
+fun undermanned_A : A ;
+fun undermentioned_A : A ;
+fun undermine_V : V ;
+fun underneath_Adv : Adv ;
+fun underneath_Prep : Prep ;
+fun undernourished_A : A ;
+fun undernourishment_N : N ;
+fun underpants_N : N ;
+fun underpart_N : N ;
+fun underpass_N : N ;
+fun underpay_V : V ;
+fun underpayment_N : N ;
+fun underperform_V : V ;
+fun underperformer_N : N ;
+fun underpin_V : V ;
+fun underpopulated_A : A ;
+fun underprivileged_A : A ;
+fun underproduction_N : N ;
+fun underquote_V : V ;
+fun underrate_V : V ;
+fun underscore_N : N ;
+fun underscore_V : V ;
+fun undersea_A : A ;
+fun underseal_N : N ;
+fun undersealed_A : A ;
+fun undersecretary_N : N ;
+fun undersell_V : V ;
+fun underseller_N : N ;
+fun undersexed_A : A ;
+fun undershoot_V : V ;
+fun undershrub_N : N ;
+fun underside_N : N ;
+fun undersign_V : V ;
+fun undersize_A : A ;
+fun undersized_A : A ;
+fun underskirt_N : N ;
+fun underslung_A : A ;
+fun underspend_V : V ;
+fun understaffed_A : A ;
+fun understand_V : V ;
+fun understandable_A : A ;
+fun understanding_N : N ;
+fun understate_V : V ;
+fun understatement_N : N ;
+fun understock_V : V ;
+fun understudy_N : N ;
+fun understudy_V : V ;
+fun undersurface_N : N ;
+fun undertake_V : V ;
+fun undertaker_N : N ;
+fun undertaking_N : N ;
+fun undertide_N : N ;
+fun undertone_N : N ;
+fun undertow_N : N ;
+fun undervaluation_N : N ;
+fun undervalue_V : V ;
+fun underwater_A : A ;
+fun underwear_N : N ;
+fun underweight_A : A ;
+fun underwhelm_V : V ;
+fun underwing_N : N ;
+fun underworld_N : N ;
+fun underwrite_underwrited_V : V ;
+fun underwrite_underwrote_V : V ;
+fun underwriter_N : N ;
+fun undescended_A : A ;
+fun undescriptive_A : A ;
+fun undeserved_A : A ;
+fun undeserving_A : A ;
+fun undesigned_A : A ;
+fun undesirability_N : N ;
+fun undesirable_A : A ;
+fun undesirable_N : N ;
+fun undesired_A : A ;
+fun undesirous_A : A ;
+fun undestroyable_A : A ;
+fun undetectable_A : A ;
+fun undetected_A : A ;
+fun undetermined_A : A ;
+fun undeterred_A : A ;
+fun undeveloped_A : A ;
+fun undeviating_A : A ;
+fun undiagnosable_A : A ;
+fun undiagnosed_A : A ;
+fun undies_N : N ;
+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 undine_N : N ;
+fun undiplomatic_A : A ;
+fun undiplomatically_Adv : Adv ;
+fun undiscerning_A : A ;
+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 undistorted_A : A ;
+fun undistributed_A : A ;
+fun undisturbed_A : A ;
+fun undiversified_A : A ;
+fun undividable_A : A ;
+fun undivided_A : A ;
+fun undo_V : V ;
+fun undock_V : V ;
+fun undocumented_A : A ;
+fun undoer_N : N ;
+fun undogmatic_A : A ;
+fun undoing_N : N ;
+fun undomestic_A : A ;
+fun undomesticated_A : A ;
+fun undoubted_A : A ;
+fun undrained_A : A ;
+fun undramatic_A : A ;
+fun undramatically_Adv : Adv ;
+fun undraped_A : A ;
+fun undrawn_A : A ;
+fun undreamed_A : A ;
+fun undreamed_of_A : A ;
+fun undreamt_A : A ;
+fun undress_N : N ;
+fun undress_V : V ;
+fun undried_A : A ;
+fun undrinkable_A : A ;
+fun undue_A : A ;
+fun undulate_A : A ;
+fun undulate_V : V ;
+fun undulation_N : N ;
+fun undulatory_A : A ;
+fun unduly_Adv : Adv ;
+fun undutifulness_N : N ;
+fun undying_A : A ;
+fun undynamic_A : A ;
+fun uneager_A : A ;
+fun unearned_A : A ;
+fun unearth_V : V ;
+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 unemotionality_N : N ;
+fun unemphatic_A : A ;
+fun unemployable_A : A ;
+fun unemployed_A : A ;
+fun unemployment_N : N ;
+fun unenclosed_A : A ;
+fun unencouraging_A : A ;
+fun unencumbered_A : A ;
+fun unended_A : A ;
+fun unending_A : A ;
+fun unendowed_A : A ;
+fun unendurable_A : A ;
+fun unenforceable_A : A ;
+fun unenforced_A : A ;
+fun unengaged_A : A ;
+fun unenlightened_A : A ;
+fun unenlightening_A : A ;
+fun unenlightenment_N : N ;
+fun unenlivened_A : A ;
+fun unenterprising_A : A ;
+fun unenthusiastic_A : A ;
+fun unenthusiastically_Adv : Adv ;
+fun unentitled_A : A ;
+fun unenviable_A : A ;
+fun unequal_A : A ;
+fun unequalized_A : A ;
+fun unequalled_A : A ;
+fun unequipped_A : A ;
+fun unequivocal_A : A ;
+fun unerect_A : A ;
+fun unerring_A : A ;
+fun unestablished_A : A ;
+fun unethical_A : A ;
+fun uneven_A : A ;
+fun unevenness_N : N ;
+fun uneventful_A : A ;
+fun unexacting_A : A ;
+fun unexampled_A : A ;
+fun unexceeded_A : A ;
+fun unexcelled_A : A ;
+fun unexceptionable_A : A ;
+fun unexceptional_A : A ;
+fun unexchangeability_N : N ;
+fun unexchangeable_A : A ;
+fun unexcitable_A : A ;
+fun unexcited_A : A ;
+fun unexciting_A : A ;
+fun unexclusive_A : A ;
+fun unexcused_A : A ;
+fun unexhausted_A : A ;
+fun unexpansive_A : A ;
+fun unexpected_A : A ;
+fun unexpectedness_N : N ;
+fun unexpendable_A : A ;
+fun unexpired_A : A ;
+fun unexplained_A : A ;
+fun unexploited_A : A ;
+fun unexplored_A : A ;
+fun unexportable_A : A ;
+fun unexposed_A : A ;
+fun unexpressed_A : A ;
+fun unexpurgated_A : A ;
+fun unextended_A : A ;
+fun unfaceted_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 unfastidious_A : A ;
+fun unfathomable_A : A ;
+fun unfathomed_A : A ;
+fun unfattened_A : A ;
+fun unfavorable_A : A ;
+fun unfavorableness_N : N ;
+fun unfavourable_A : A ;
+fun unfaze_V : V ;
+fun unfeathered_A : A ;
+fun unfed_A : A ;
+fun unfeeling_A : A ;
+fun unfeelingness_N : N ;
+fun unfeigned_A : A ;
+fun unfeminine_A : A ;
+fun unfenced_A : A ;
+fun unfermented_A : A ;
+fun unfertilized_A : A ;
+fun unfettered_A : A ;
+fun unfilled_A : A ;
+fun unfilmed_A : A ;
+fun unfinished_A : A ;
+fun unfirm_A : A ;
+fun unfit_A : A ;
+fun unfit_V : V ;
+fun unfitness_N : N ;
+fun unfixed_A : A ;
+fun unflagging_A : A ;
+fun unflappable_A : A ;
+fun unflattering_A : A ;
+fun unflavored_A : A ;
+fun unfledged_A : A ;
+fun unflinching_A : A ;
+fun unflurried_A : A ;
+fun unfocused_A : A ;
+fun unfold_V : V ;
+fun unfolding_N : N ;
+fun unforbearing_A : A ;
+fun unforced_A : A ;
+fun unforeseeable_A : A ;
+fun unforeseen_A : A ;
+fun unforested_A : A ;
+fun unforethoughtful_A : A ;
+fun unforfeitable_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 unfree_A : A ;
+fun unfrequented_A : A ;
+fun unfretted_A : A ;
+fun unfriendliness_N : N ;
+fun unfriendly_A : A ;
+fun unfrightened_A : A ;
+fun unfrock_V : V ;
+fun unfrosted_A : A ;
+fun unfrozen_A : A ;
+fun unfruitful_A : A ;
+fun unfueled_A : A ;
+fun unfulfilled_A : A ;
+fun unfunctional_A : A ;
+fun unfunded_A : A ;
+fun unfunny_A : A ;
+fun unfurl_V : V ;
+fun unfurnished_A : A ;
+fun unfurrowed_A : A ;
+fun ungainly_A : A ;
+fun ungeared_A : A ;
+fun ungenerous_A : A ;
+fun ungentle_A : A ;
+fun ungentlemanly_A : A ;
+fun unglazed_A : A ;
+fun ungodliness_N : N ;
+fun ungodly_A : A ;
+fun ungovernable_A : A ;
+fun ungraceful_A : A ;
+fun ungracious_A : A ;
+fun ungraciousness_N : N ;
+fun ungraded_A : A ;
+fun ungrammatical_A : A ;
+fun ungrasped_A : A ;
+fun ungrateful_A : A ;
+fun ungratefulness_N : N ;
+fun ungregarious_A : A ;
+fun ungroomed_A : A ;
+fun ungrudging_A : A ;
+fun ungual_A : A ;
+fun unguaranteed_A : A ;
+fun unguarded_A : A ;
+fun unguent_N : N ;
+fun unguiculate_A : A ;
+fun unguiculate_N : N ;
+fun unguided_A : A ;
+fun ungulate_A : A ;
+fun ungulate_N : N ;
+fun ungummed_A : A ;
+fun ungusseted_A : A ;
+fun unhallowed_A : A ;
+fun unhampered_A : A ;
+fun unhand_V : V ;
+fun unhappiness_N : N ;
+fun unhappy_A : A ;
+fun unharmed_A : A ;
+fun unhatched_A : A ;
+fun unheaded_A : A ;
+fun unhealed_A : A ;
+fun unhealthful_A : A ;
+fun unhealthfulness_N : N ;
+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 unhelpfulness_N : N ;
+fun unheralded_A : A ;
+fun unhesitating_A : A ;
+fun unhewn_A : A ;
+fun unhindered_A : A ;
+fun unhinge_V : V ;
+fun unhitch_V : V ;
+fun unholiness_N : N ;
+fun unholy_A : A ;
+fun unhomogenized_A : A ;
+fun unhook_V : V ;
+fun unhoped_A : A ;
+fun unhoped_for_A : A ;
+fun unhorse_V : V ;
+fun unhurried_A : A ;
+fun unhurt_A : A ;
+fun unhygienic_A : A ;
+fun unhygienically_Adv : Adv ;
+fun unicameral_A : A ;
+fun unicellular_A : A ;
+fun unicorn_N : N ;
+fun unicuspid_A : A ;
+fun unicycle_N : N ;
+fun unicyclist_N : N ;
+fun unidentifiable_A : A ;
+fun unidentified_A : A ;
+fun unidimensional_A : A ;
+fun unidirectional_A : A ;
+fun unifacial_A : A ;
+fun unification_N : N ;
+fun unifilar_A : A ;
+fun unifoliate_A : A ;
+fun uniform_A : A ;
+fun uniform_N : N ;
+fun uniformed_A : A ;
+fun uniformity_N : N ;
+fun unify_V : V ;
+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 unimodal_A : A ;
+fun unimpaired_A : A ;
+fun unimpassioned_A : A ;
+fun unimpeachable_A : A ;
+fun unimpeded_A : A ;
+fun unimportance_N : N ;
+fun unimportant_A : A ;
+fun unimposing_A : A ;
+fun unimpressed_A : A ;
+fun unimpressionable_A : A ;
+fun unimpressive_A : A ;
+fun unimproved_A : A ;
+fun unincorporated_A : A ;
+fun unindustrialized_A : A ;
+fun uninebriated_A : A ;
+fun uninfected_A : A ;
+fun uninflected_A : A ;
+fun uninfluenced_A : A ;
+fun uninfluential_A : A ;
+fun uninformative_A : A ;
+fun uninformed_A : A ;
+fun uninhabitable_A : A ;
+fun uninhabited_A : A ;
+fun uninhibited_A : A ;
+fun uninitiate_A : A ;
+fun uninitiate_N : N ;
+fun uninitiated_A : A ;
+fun uninjectable_A : A ;
+fun uninjured_A : A ;
+fun uninominal_A : A ;
+fun uninquiring_A : A ;
+fun uninspired_A : A ;
+fun uninspiring_A : A ;
+fun uninstructed_A : A ;
+fun uninstructive_A : A ;
+fun uninsurability_N : N ;
+fun uninsurable_A : A ;
+fun uninsured_A : A ;
+fun unintelligent_A : A ;
+fun unintelligibility_N : N ;
+fun unintelligible_A : A ;
+fun unintended_A : A ;
+fun unintentional_A : A ;
+fun uninterested_A : A ;
+fun uninteresting_A : A ;
+fun uninterestingness_N : N ;
+fun uninterrupted_A : A ;
+fun unintrusive_A : A ;
+fun uninucleate_A : A ;
+fun uninvited_A : A ;
+fun uninviting_A : A ;
+fun uninvolved_A : A ;
+fun union_A : A ;
+fun union_N : N ;
+fun unionism_N : N ;
+fun unionist_N : N ;
+fun unionization_N : N ;
+fun uniovular_A : A ;
+fun uniparous_A : A ;
+fun unipolar_A : A ;
+fun unique_A : A ;
+fun uniqueness_N : N ;
+fun unironed_A : A ;
+fun unisex_A : A ;
+fun unisexual_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 unitization_N : N ;
+fun unity_N : N ;
+fun univalent_A : A ;
+fun univalve_A : A ;
+fun universal_A : A ;
+fun universal_N : N ;
+fun universalism_N : N ;
+fun universalistic_A : A ;
+fun universality_N : N ;
+fun universe_N : N ;
+fun university_N : N ;
+fun unjointed_A : A ;
+fun unjust_A : A ;
+fun unjustifiable_A : A ;
+fun unjustified_A : A ;
+fun unkempt_A : A ;
+fun unkind_A : A ;
+fun unkindled_A : A ;
+fun unkindly_A : A ;
+fun unkindness_N : N ;
+fun unkissed_A : A ;
+fun unknowable_A : A ;
+fun unknowing_A : A ;
+fun unknowingness_N : N ;
+fun unknown_A : A ;
+fun unknown_N : N ;
+fun unlabeled_A : A ;
+fun unlabelled_A : A ;
+fun unlaced_A : A ;
+fun unladylike_A : A ;
+fun unlamented_A : A ;
+fun unlatched_A : A ;
+fun unlaureled_A : A ;
+fun unlawful_A : A ;
+fun unlawfulness_N : N ;
+fun unleaded_A : A ;
+fun unlearn_V : V ;
+fun unleash_V : V ;
+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 unlike_Prep : Prep ;
+fun unlikelihood_N : N ;
+fun unlikely_A : A ;
+fun unlikeness_N : N ;
+fun unlimited_A : A ;
+fun unlined_A : A ;
+fun unlisted_A : A ;
+fun unlit_A : A ;
+fun unliterary_A : A ;
+fun unlivable_A : A ;
+fun unliveried_A : A ;
+fun unload_V : V ;
+fun unloading_N : N ;
+fun unlobed_A : A ;
+fun unlocated_A : A ;
+fun unlock_V : V ;
+fun unlooked_for_A : A ;
+fun unloose_V : V ;
+fun unlovable_A : A ;
+fun unloved_A : A ;
+fun unlovely_A : A ;
+fun unloving_A : A ;
+fun unlubricated_A : A ;
+fun unlucky_A : A ;
+fun unmade_A : A ;
+fun unmalicious_A : A ;
+fun unmalleability_N : N ;
+fun unmalleable_A : A ;
+fun unmalted_A : A ;
+fun unman_V : V ;
+fun unmanageable_A : A ;
+fun unmanfully_Adv : Adv ;
+fun unmanly_A : A ;
+fun unmannered_A : A ;
+fun unmannerly_A : A ;
+fun unmarked_A : A ;
+fun unmarketable_A : A ;
+fun unmarried_A : A ;
+fun unmask_V : V ;
+fun unmatchable_A : A ;
+fun unmatched_A : A ;
+fun unmated_A : A ;
+fun unmeasured_A : A ;
+fun unmechanical_A : A ;
+fun unmechanized_A : A ;
+fun unmedicinal_A : A ;
+fun unmelodious_A : A ;
+fun unmelted_A : A ;
+fun unmemorable_A : A ;
+fun unmentionable_A : A ;
+fun unmercenary_A : A ;
+fun unmerciful_A : A ;
+fun unmerited_A : A ;
+fun unmeritorious_A : A ;
+fun unmethodical_A : A ;
+fun unmilitary_A : A ;
+fun unmindful_A : A ;
+fun unmindfulness_N : N ;
+fun unmined_A : A ;
+fun unmingled_A : A ;
+fun unmistakable_A : A ;
+fun unmitigable_A : A ;
+fun unmitigated_A : A ;
+fun unmixed_A : A ;
+fun unmoderated_A : A ;
+fun unmodernized_A : A ;
+fun unmodifiable_A : A ;
+fun unmodified_A : A ;
+fun unmodulated_A : A ;
+fun unmolested_A : A ;
+fun unmotivated_A : A ;
+fun unmotorized_A : A ;
+fun unmourned_A : A ;
+fun unmovable_A : A ;
+fun unmoved_A : A ;
+fun unmoving_A : A ;
+fun unmown_A : A ;
+fun unmusical_A : A ;
+fun unmyelinated_A : A ;
+fun unnamed_A : A ;
+fun unnatural_A : A ;
+fun unnaturalized_A : A ;
+fun unnaturalness_N : N ;
+fun unnavigable_A : A ;
+fun unnecessary_A : A ;
+fun unneighborliness_N : N ;
+fun unneighborly_A : A ;
+fun unnerve_V : V ;
+fun unneurotic_A : A ;
+fun unnotched_A : A ;
+fun unnoticeable_A : A ;
+fun unnoticeableness_N : N ;
+fun unnoticed_A : A ;
+fun unnourished_A : A ;
+fun unnumbered_A : A ;
+fun unobjectionable_A : A ;
+fun unobjective_A : A ;
+fun unobligated_A : A ;
+fun unobservable_A : A ;
+fun unobservant_A : A ;
+fun unobserved_A : A ;
+fun unobstructed_A : A ;
+fun unobtainable_A : A ;
+fun unobtrusive_A : A ;
+fun unobtrusiveness_N : N ;
+fun unobvious_A : A ;
+fun unoccupied_A : A ;
+fun unoffending_A : A ;
+fun unofficial_A : A ;
+fun unoiled_A : A ;
+fun unopen_A : A ;
+fun unopened_A : A ;
+fun unopposable_A : A ;
+fun unopposed_A : A ;
+fun unorganized_A : A ;
+fun unoriented_A : A ;
+fun unoriginal_A : A ;
+fun unoriginality_N : N ;
+fun unorthodox_A : A ;
+fun unorthodoxy_N : N ;
+fun unostentatious_A : A ;
+fun unowned_A : A ;
+fun unpack_V : V ;
+fun unpackaged_A : A ;
+fun unpaid_A : A ;
+fun unpaintable_A : A ;
+fun unpainted_A : A ;
+fun unpalatability_N : N ;
+fun unpalatable_A : A ;
+fun unparallel_A : A ;
+fun unparalleled_A : A ;
+fun unpardonable_A : A ;
+fun unparented_A : A ;
+fun unparliamentary_A : A ;
+fun unpartitioned_A : A ;
+fun unpasteurized_A : A ;
+fun unpatented_A : A ;
+fun unpatriotic_A : A ;
+fun unpatriotically_Adv : Adv ;
+fun unpatronized_A : A ;
+fun unpaved_A : A ;
+fun unpeaceable_A : A ;
+fun unpeaceful_A : A ;
+fun unpeopled_A : A ;
+fun unperceived_A : A ;
+fun unperceptive_A : A ;
+fun unperceptiveness_N : N ;
+fun unperformed_A : A ;
+fun unpermed_A : A ;
+fun unpermissive_A : A ;
+fun unpermissiveness_N : N ;
+fun unperplexed_A : A ;
+fun unpersuadable_A : A ;
+fun unpersuaded_A : A ;
+fun unpersuasive_A : A ;
+fun unpersuasiveness_N : N ;
+fun unperturbed_A : A ;
+fun unpick_V : V ;
+fun unpierced_A : A ;
+fun unpigmented_A : A ;
+fun unpillared_A : A ;
+fun unplaced_A : A ;
+fun unplanned_A : A ;
+fun unplanted_A : A ;
+fun unplayable_A : A ;
+fun unplayful_A : A ;
+fun unpleasant_A : A ;
+fun unpleasantness_N : N ;
+fun unpleasingness_N : N ;
+fun unplowed_A : A ;
+fun unplug_V : V ;
+fun unplumbed_A : A ;
+fun unpointedness_N : N ;
+fun unpolished_A : A ;
+fun unpolluted_A : A ;
+fun unpompous_A : A ;
+fun unpopular_A : A ;
+fun unpopularity_N : N ;
+fun unportable_A : A ;
+fun unposed_A : A ;
+fun unpotted_A : A ;
+fun unpowered_A : A ;
+fun unpracticed_A : A ;
+fun unpractised_A : A ;
+fun unprecedented_A : A ;
+fun unpredictability_N : N ;
+fun unpredictable_A : A ;
+fun unpredicted_A : A ;
+fun unpredictive_A : A ;
+fun unprejudiced_A : A ;
+fun unpremeditated_A : A ;
+fun unprepared_A : A ;
+fun unprepossessing_A : A ;
+fun unpresidential_A : A ;
+fun unpressed_A : A ;
+fun unpretentious_A : A ;
+fun unpretentiousness_N : N ;
+fun unpreventable_A : A ;
+fun unpriestly_A : A ;
+fun unprincipled_A : A ;
+fun unprintable_A : A ;
+fun unprocessed_A : A ;
+fun unproductive_A : A ;
+fun unproductiveness_N : N ;
+fun unprofessional_A : A ;
+fun unprofitable_A : A ;
+fun unprofitableness_N : N ;
+fun unpromising_A : A ;
+fun unprompted_A : A ;
+fun unpronounceable_A : A ;
+fun unprophetic_A : A ;
+fun unpropitious_A : A ;
+fun unprotected_A : A ;
+fun unprotective_A : A ;
+fun unprovable_A : A ;
+fun unproved_A : A ;
+fun unproven_A : A ;
+fun unprovided_A : A ;
+fun unprovocative_A : A ;
+fun unprovoked_A : A ;
+fun unpublishable_A : A ;
+fun unpublished_A : A ;
+fun unpunctual_A : A ;
+fun unpunished_A : A ;
+fun unpurified_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 unratable_A : A ;
+fun unratified_A : A ;
+fun unravel_V : V ;
+fun unreached_A : A ;
+fun unreactive_A : A ;
+fun unread_A : A ;
+fun unreadable_A : A ;
+fun unready_A : A ;
+fun unreal_A : A ;
+fun unrealistic_unrealistically_A : A ;
+fun unrealistic_unrealisticly_A : A ;
+fun unreality_N : N ;
+fun unrealized_A : A ;
+fun unreasonable_A : A ;
+fun unreasoning_A : A ;
+fun unreassuring_A : A ;
+fun unreceptive_A : A ;
+fun unreciprocated_A : A ;
+fun unrecognizable_A : A ;
+fun unrecognized_A : A ;
+fun unreconciled_A : A ;
+fun unreconstructed_A : A ;
+fun unrecorded_A : A ;
+fun unrecoverable_A : A ;
+fun unredeemable_A : A ;
+fun unreduced_A : A ;
+fun unrefined_A : A ;
+fun unreflected_A : A ;
+fun unreflective_A : A ;
+fun unreformable_A : A ;
+fun unreformed_A : A ;
+fun unrefreshed_A : A ;
+fun unregenerate_A : A ;
+fun unregistered_A : A ;
+fun unregretful_A : A ;
+fun unregulated_A : A ;
+fun unrehearsed_A : A ;
+fun unrelated_A : A ;
+fun unrelatedness_N : N ;
+fun unrelaxed_A : A ;
+fun unreleased_A : A ;
+fun unrelenting_A : A ;
+fun unreliable_A : A ;
+fun unrelieved_A : A ;
+fun unremarkable_A : A ;
+fun unremedied_A : A ;
+fun unremitting_A : A ;
+fun unremunerative_A : A ;
+fun unrenewable_A : A ;
+fun unrentable_A : A ;
+fun unrepaired_A : A ;
+fun unrepeatable_A : A ;
+fun unrepentant_A : A ;
+fun unreportable_A : A ;
+fun unreported_A : A ;
+fun unrepresentative_A : A ;
+fun unrepressed_A : A ;
+fun unreproducible_A : A ;
+fun unrequested_A : A ;
+fun unrequited_A : A ;
+fun unresentful_A : A ;
+fun unreserved_A : A ;
+fun unresisting_A : A ;
+fun unresolvable_A : A ;
+fun unresolved_A : A ;
+fun unrespectability_N : N ;
+fun unrespectable_A : A ;
+fun unresponsive_A : A ;
+fun unresponsiveness_N : N ;
+fun unrest_N : N ;
+fun unrestrained_A : A ;
+fun unrestraint_N : N ;
+fun unrestricted_A : A ;
+fun unrestrictive_A : A ;
+fun unretentive_A : A ;
+fun unreverberant_A : A ;
+fun unrevised_A : A ;
+fun unrevived_A : A ;
+fun unrewarded_A : A ;
+fun unrewarding_A : A ;
+fun unrhetorical_A : A ;
+fun unrhymed_A : A ;
+fun unrhythmical_A : A ;
+fun unrifled_A : A ;
+fun unrigged_A : A ;
+fun unrighteous_A : A ;
+fun unrighteousness_N : N ;
+fun unripe_A : A ;
+fun unripened_A : A ;
+fun unrivalled_A : A ;
+fun unroll_V : V ;
+fun unromantic_A : A ;
+fun unromantically_Adv : Adv ;
+fun unroofed_A : A ;
+fun unrouged_A : A ;
+fun unruffled_A : A ;
+fun unruliness_N : N ;
+fun unruly_A : A ;
+fun unsaddle_V : V ;
+fun unsafe_A : A ;
+fun unsalable_A : A ;
+fun unsaleable_A : A ;
+fun unsalted_A : A ;
+fun unsanctioned_A : A ;
+fun unsanitariness_N : N ;
+fun unsanitary_A : A ;
+fun unsaponified_A : A ;
+fun unsarcastic_A : A ;
+fun unsated_A : A ;
+fun unsatisfactoriness_N : N ;
+fun unsatisfactory_A : A ;
+fun unsatisfiable_A : A ;
+fun unsatisfied_A : A ;
+fun unsatisfying_A : A ;
+fun unsaturated_A : A ;
+fun unsavory_A : A ;
+fun unsavoury_A : A ;
+fun unsay_V : V ;
+fun unscalable_A : A ;
+fun unscathed_A : A ;
+fun unscheduled_A : A ;
+fun unscholarly_A : A ;
+fun unschooled_A : A ;
+fun unscientific_A : A ;
+fun unscientifically_Adv : Adv ;
+fun unscramble_V : V ;
+fun unscrew_V : V ;
+fun unscripted_A : A ;
+fun unscrupulous_A : A ;
+fun unscrupulousness_N : N ;
+fun unsealed_A : A ;
+fun unseamanlike_A : A ;
+fun unseamed_A : A ;
+fun unseasonable_A : A ;
+fun unseasonableness_N : N ;
+fun unseasoned_A : A ;
+fun unseat_V : V ;
+fun unseaworthy_A : A ;
+fun unsecured_A : A ;
+fun unseductive_A : A ;
+fun unseeded_A : A ;
+fun unseeing_A : A ;
+fun unseemliness_N : N ;
+fun unseemly_A : A ;
+fun unseen_A : A ;
+fun unseen_N : N ;
+fun unseeyn_A : A ;
+fun unsegmented_A : A ;
+fun unselected_A : A ;
+fun unselective_A : A ;
+fun unselfconscious_A : A ;
+fun unselfconsciousness_N : N ;
+fun unselfish_A : A ;
+fun unselfishness_N : N ;
+fun unsensational_A : A ;
+fun unsent_A : A ;
+fun unsentimentally_Adv : Adv ;
+fun unserviceable_A : A ;
+fun unservile_A : A ;
+fun unsettle_V : V ;
+fun unsex_V : V ;
+fun unsexy_A : A ;
+fun unshaded_A : A ;
+fun unshadowed_A : A ;
+fun unshakable_A : A ;
+fun unshaped_A : A ;
+fun unshapely_A : A ;
+fun unshared_A : A ;
+fun unsharpened_A : A ;
+fun unshaved_A : A ;
+fun unshaven_A : A ;
+fun unsheared_A : A ;
+fun unsheathe_V : V ;
+fun unshelled_A : A ;
+fun unshielded_A : A ;
+fun unshockable_A : A ;
+fun unshod_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 unsized_A : A ;
+fun unskilled_A : A ;
+fun unskillfulness_N : N ;
+fun unsleeping_A : A ;
+fun unsmiling_A : A ;
+fun unsmoothed_A : A ;
+fun unsnarling_N : N ;
+fun unsociability_N : N ;
+fun unsociable_A : A ;
+fun unsocial_A : A ;
+fun unsoiled_A : A ;
+fun unsold_A : A ;
+fun unsoldierly_A : A ;
+fun unsolicited_A : A ;
+fun unsolvability_N : N ;
+fun unsolved_A : A ;
+fun unsophisticated_A : A ;
+fun unsorted_A : A ;
+fun unsound_A : A ;
+fun unsoundable_A : A ;
+fun unsoundness_N : N ;
+fun unsoured_A : A ;
+fun unspaced_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 unspent_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 unstaged_A : A ;
+fun unstained_A : A ;
+fun unstartling_A : A ;
+fun unstated_A : A ;
+fun unstatesmanlike_A : A ;
+fun unsteadiness_N : N ;
+fun unsteady_A : A ;
+fun unsterilized_A : A ;
+fun unstilted_A : A ;
+fun unstimulating_A : A ;
+fun unstintingly_Adv : Adv ;
+fun unstirred_A : A ;
+fun unstoppable_A : A ;
+fun unstoppered_A : A ;
+fun unstrained_A : A ;
+fun unstratified_A : A ;
+fun unstressed_A : A ;
+fun unstructured_A : A ;
+fun unstrung_A : A ;
+fun unstuck_A : A ;
+fun unstudied_A : A ;
+fun unstudious_A : A ;
+fun unsubdued_A : A ;
+fun unsubtle_A : A ;
+fun unsuccessful_A : A ;
+fun unsugared_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 unsupportable_A : A ;
+fun unsupported_A : A ;
+fun unsupportive_A : A ;
+fun unsuppressed_A : A ;
+fun unsure_A : A ;
+fun unsurmountable_A : A ;
+fun unsurpassable_A : A ;
+fun unsurpassed_A : A ;
+fun unsurprised_A : A ;
+fun unsurprising_A : A ;
+fun unsusceptibility_N : N ;
+fun unsusceptible_A : A ;
+fun unsuspected_A : A ;
+fun unsuspecting_A : A ;
+fun unsuspicious_A : A ;
+fun unswayed_A : A ;
+fun unsweet_A : A ;
+fun unsweetened_A : A ;
+fun unswept_A : A ;
+fun unswerving_A : A ;
+fun unsworn_A : A ;
+fun unsyllabic_A : A ;
+fun unsyllabled_A : A ;
+fun unsymmetric_A : A ;
+fun unsympathetic_A : A ;
+fun unsympathetically_Adv : Adv ;
+fun unsympathizing_A : A ;
+fun unsystematic_A : A ;
+fun unsystematically_Adv : Adv ;
+fun untainted_A : A ;
+fun untalented_A : A ;
+fun untamed_A : A ;
+fun untangled_A : A ;
+fun untanned_A : A ;
+fun untapped_A : A ;
+fun untarnished_A : A ;
+fun untaxed_A : A ;
+fun untempered_A : A ;
+fun untenable_A : A ;
+fun untenanted_A : A ;
+fun untended_A : A ;
+fun untested_A : A ;
+fun untethered_A : A ;
+fun unthawed_A : A ;
+fun untheatrical_A : A ;
+fun unthematic_A : A ;
+fun unthinkable_A : A ;
+fun unthinking_A : A ;
+fun unthought_of_A : A ;
+fun unthoughtfulness_N : N ;
+fun untidiness_N : N ;
+fun untidy_A : A ;
+fun untie_V : V ;
+fun untied_A : A ;
+fun until_Prep : Prep ;
+fun untilled_A : A ;
+fun untimbered_A : A ;
+fun untimely_A : A ;
+fun untipped_A : A ;
+fun untired_A : A ;
+fun untiring_A : A ;
+fun untitled_A : A ;
+fun unto_Prep : Prep ;
+fun untoasted_A : A ;
+fun untold_A : A ;
+fun untouchable_A : A ;
+fun untouchable_N : N ;
+fun untouched_A : A ;
+fun untoward_A : A ;
+fun untraceable_A : A ;
+fun untrained_A : A ;
+fun untrammeled_A : A ;
+fun untrammelled_A : A ;
+fun untranslatable_A : A ;
+fun untraveled_A : A ;
+fun untraversable_A : A ;
+fun untraversed_A : A ;
+fun untreated_A : A ;
+fun untried_A : A ;
+fun untrimmed_A : A ;
+fun untroubled_A : A ;
+fun untrue_A : A ;
+fun untruly_Adv : Adv ;
+fun untrustworthiness_N : N ;
+fun untrustworthy_A : A ;
+fun untruth_N : N ;
+fun untruthful_A : A ;
+fun untruthfulness_N : N ;
+fun untucked_A : A ;
+fun untufted_A : A ;
+fun unturned_A : A ;
+fun untutored_A : A ;
+fun untwisted_A : A ;
+fun untying_N : N ;
+fun untypical_A : A ;
+fun ununbium_N : N ;
+fun ununderstood_A : A ;
+fun ununhexium_N : N ;
+fun ununpentium_N : N ;
+fun ununquadium_N : N ;
+fun ununtrium_N : N ;
+fun unused_A : A ;
+fun unusual_A : A ;
+fun unusualness_N : N ;
+fun unutterable_A : A ;
+fun unvaccinated_A : A ;
+fun unvaried_A : A ;
+fun unvariedness_N : N ;
+fun unvarnished_A : A ;
+fun unvarying_A : A ;
+fun unveil_V : V ;
+fun unveiling_N : N ;
+fun unvented_A : A ;
+fun unventilated_A : A ;
+fun unverified_A : A ;
+fun unversed_A : A ;
+fun unvigilant_A : A ;
+fun unvindictive_A : A ;
+fun unvitrified_A : A ;
+fun unvoiced_A : A ;
+fun unvulcanized_A : A ;
+fun unwanted_A : A ;
+fun unwariness_N : N ;
+fun unwarrantably_Adv : Adv ;
+fun unwarranted_A : A ;
+fun unwary_A : A ;
+fun unwashed_A : A ;
+fun unwavering_A : A ;
+fun unwaxed_A : A ;
+fun unweaned_A : A ;
+fun unwearable_A : A ;
+fun unwearied_A : A ;
+fun unweathered_A : A ;
+fun unwebbed_A : A ;
+fun unwed_A : A ;
+fun unwelcome_A : A ;
+fun unwell_A : A ;
+fun unwholesome_A : A ;
+fun unwholesomeness_N : N ;
+fun unwieldiness_N : N ;
+fun unwieldy_A : A ;
+fun unwilled_A : A ;
+fun unwilling_A : A ;
+fun unwillingness_N : N ;
+fun unwind_V : V ;
+fun unwise_A : A ;
+fun unwitnessed_A : A ;
+fun unwitting_A : A ;
+fun unwomanly_A : A ;
+fun unwonted_A : A ;
+fun unwooded_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 unwounded_A : A ;
+fun unwoven_A : A ;
+fun unwrap_V : V ;
+fun unwrinkled_A : A ;
+fun unwritten_A : A ;
+fun unyielding_A : A ;
+fun unzip_V : V ;
+fun up_A : A ;
+fun up_Adv : Adv ;
+fun up_Prep : Prep ;
+fun up_V : V ;
+fun up_and_coming_A : A ;
+fun up_beat_N : N ;
+fun up_market_A : A ;
+fun up_to_Prep : Prep ;
+fun up_to_date_A : A ;
+fun up_to_the_minute_A : A ;
+fun upbeat_N : N ;
+fun upbound_A : A ;
+fun upbraid_V : V ;
+fun upbraider_N : N ;
+fun upbraiding_N : N ;
+fun upbringing_N : N ;
+fun upcast_N : N ;
+fun upcountry_A : A ;
+fun upcountry_Adv : Adv ;
+fun upcurved_A : A ;
+fun update_N : N ;
+fun update_V : V ;
+fun updating_N : N ;
+fun updraft_N : N ;
+fun upended_A : A ;
+fun upfield_A : A ;
+fun upfront_A : A ;
+fun upgrade_N : N ;
+fun upgrade_V : V ;
+fun upheaval_N : N ;
+fun uphill_A : A ;
+fun uphill_Adv : Adv ;
+fun uphill_N : N ;
+fun uphold_V : V ;
+fun upholder_N : N ;
+fun upholster_V : V ;
+fun upholsterer_N : N ;
+fun upholstery_N : N ;
+fun upkeep_N : N ;
+fun upland_A : A ;
+fun upland_N : N ;
+fun uplift_N : N ;
+fun uplift_V : V ;
+fun uplifting_N : N ;
+fun uplink_N : N ;
+fun upmarket_A : A ;
+fun upmost_A : A ;
+fun upon_Prep : Prep ;
+fun upper_A : A ;
+fun upper_N : N ;
+fun uppercase_A : A ;
+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 uppityness_N : N ;
+fun upraised_A : A ;
+fun upright_A : A ;
+fun upright_N : N ;
+fun uprightness_N : N ;
+fun uprising_N : N ;
+fun upriver_Adv : Adv ;
+fun uproar_N : N ;
+fun uproarious_A : A ;
+fun uproot_V : V ;
+fun upscale_A : A ;
+fun upset_N : N ;
+fun upset_V : V ;
+fun upsetter_N : N ;
+fun upshot_N : N ;
+fun upside_down_Adv : Adv ;
+fun upsilon_N : N ;
+fun upstage_A : A ;
+fun upstage_Adv : Adv ;
+fun upstage_N : N ;
+fun upstage_V : V ;
+fun upstager_N : N ;
+fun upstairs_A : A ;
+fun upstairs_Adv : Adv ;
+fun upstairs_N : N ;
+fun upstanding_A : A ;
+fun upstart_A : A ;
+fun upstart_N : N ;
+fun upstate_Adv : Adv ;
+fun upstream_A : A ;
+fun upstream_Adv : Adv ;
+fun upstroke_N : N ;
+fun upsurge_N : N ;
+fun uptake_N : N ;
+fun uptick_N : N ;
+fun uptight_A : A ;
+fun uptime_N : N ;
+fun uptown_A : A ;
+fun uptown_Adv : Adv ;
+fun uptown_N : N ;
+fun upturn_N : N ;
+fun upturned_A : A ;
+fun upward_A : A ;
+fun upward_Adv : Adv ;
+fun upwards_Adv : Adv ;
+fun upwind_A : A ;
+fun upwind_Adv : Adv ;
+fun uracil_N : N ;
+fun uraninite_N : N ;
+fun uranium_N : N ;
+fun uranoplasty_N : N ;
+fun uranyl_N : N ;
+fun urate_N : N ;
+fun uratemia_N : N ;
+fun uraturia_N : N ;
+fun urban_A : A ;
+fun urbane_A : A ;
+fun urbanity_N : N ;
+fun urbanization_N : N ;
+fun urbanize_V : V ;
+fun urceolate_A : A ;
+fun urceole_N : N ;
+fun urchin_N : N ;
+fun urdu_A : A ;
+fun urdu_N : N ;
+fun urea_N : N ;
+fun urease_N : N ;
+fun uremia_N : N ;
+fun ureter_N : N ;
+fun ureteritis_N : N ;
+fun ureterocele_N : N ;
+fun ureterostenosis_N : N ;
+fun urethane_N : N ;
+fun urethra_N : N ;
+fun urethral_A : A ;
+fun urethritis_N : N ;
+fun urethrocele_N : N ;
+fun urge_N : N ;
+fun urge_V : V ;
+fun urgency_N : N ;
+fun urgent_A : A ;
+fun urging_N : N ;
+fun urial_N : N ;
+fun uric_A : A ;
+fun uricaciduria_N : N ;
+fun uricosuric_A : A ;
+fun urinal_N : N ;
+fun urinalysis_N : N ;
+fun urinary_A : A ;
+fun urinate_V : V ;
+fun urine_N : N ;
+fun urn_N : N ;
+fun urobilin_N : N ;
+fun urobilinogen_N : N ;
+fun urocele_N : N ;
+fun urochesia_N : N ;
+fun urochord_N : N ;
+fun urodele_N : N ;
+fun urodynia_N : N ;
+fun urogenital_A : A ;
+fun urolith_N : N ;
+fun urologist_N : N ;
+fun urology_N : N ;
+fun uropathy_N : N ;
+fun uropygium_N : N ;
+fun ursine_A : A ;
+fun ursinia_N : N ;
+fun urtication_N : N ;
+fun uruguayan_A : A ;
+fun uruguayan_N : N ;
+fun usable_A : A ;
+fun usaf_N : N ;
+fun usage_N : N ;
+fun usance_N : N ;
+fun use_N : N ;
+fun use_V : V ;
+fun useable_A : A ;
+fun useful_A : A ;
+fun usefulness_N : N ;
+fun useless_A : A ;
+fun uselessness_N : N ;
+fun user_N : N ;
+fun usher_N : N ;
+fun usher_V : V ;
+fun usherette_N : N ;
+fun usn_N : N ;
+fun uss_N : N ;
+fun ussr_N : N ;
+fun usual_A : A ;
+fun usualness_N : N ;
+fun usufruct_N : N ;
+fun usufructuary_A : A ;
+fun usufructuary_N : N ;
+fun usurer_N : N ;
+fun usurious_A : A ;
+fun usurp_V : V ;
+fun usurpation_N : N ;
+fun usurper_N : N ;
+fun usury_N : N ;
+fun utahraptor_N : N ;
+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_V : V ;
+fun utilizer_N : N ;
+fun utmost_A : A ;
+fun utmost_N : N ;
+fun utopia_N : N ;
+fun utopian_A : A ;
+fun utricle_N : N ;
+fun utter_A : A ;
+fun utter_V : V ;
+fun utterance_N : N ;
+fun utterer_N : N ;
+fun uttermost_A : A ;
+fun uttermost_N : N ;
+fun uvea_N : N ;
+fun uveal_A : A ;
+fun uveitis_N : N ;
+fun uvula_N : N ;
+fun uvular_A : A ;
+fun uvulitis_N : N ;
+fun uxor_N : N ;
+fun uxoricide_N : N ;
+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_V : V ;
+fun vacation_N : N ;
+fun vacation_V : V ;
+fun vacationer_N : N ;
+fun vacationing_N : N ;
+fun vacationist_N : N ;
+fun vaccinate_V : V ;
+fun vaccination_N : N ;
+fun vaccine_N : N ;
+fun vaccinee_N : N ;
+fun vaccinia_N : N ;
+fun vacillant_A : A ;
+fun vacillate_V : V ;
+fun vacillation_N : N ;
+fun vacuity_N : N ;
+fun vacuolate_A : A ;
+fun vacuole_N : N ;
+fun vacuolization_N : N ;
+fun vacuous_A : A ;
+fun vacuousness_N : N ;
+fun vacuum_N : N ;
+fun vacuum_V : V ;
+fun vade_mecum_N : N ;
+fun vagabond_A : A ;
+fun vagabond_N : N ;
+fun vagal_A : A ;
+fun vagary_N : N ;
+fun vagile_A : A ;
+fun vagina_N : N ;
+fun vaginal_A : A ;
+fun vaginismus_N : N ;
+fun vaginitis_N : N ;
+fun vagrancy_N : N ;
+fun vagrant_A : A ;
+fun vagrant_N : N ;
+fun vague_A : A ;
+fun vagueness_N : N ;
+fun vagus_N : N ;
+fun vain_A : A ;
+fun vainglorious_A : A ;
+fun vainglory_N : N ;
+fun vaisya_N : N ;
+fun valance_N : N ;
+fun valdecoxib_N : N ;
+fun vale_N : N ;
+fun valediction_N : N ;
+fun valedictorian_N : N ;
+fun valedictory_A : A ;
+fun valence_N : N ;
+fun valency_N : N ;
+fun valent_A : A ;
+fun valentine_N : N ;
+fun valerian_N : N ;
+fun valet_N : N ;
+fun valet_V : V ;
+fun valetudinarian_A : A ;
+fun valetudinarian_N : N ;
+fun valgus_N : N ;
+fun valiant_A : A ;
+fun valid_A : A ;
+fun validate_V : V ;
+fun validation_N : N ;
+fun validity_N : N ;
+fun valine_N : N ;
+fun valise_N : N ;
+fun valley_N : N ;
+fun valorous_A : A ;
+fun valour_N : N ;
+fun valsartan_N : N ;
+fun valuable_A : A ;
+fun valuable_N : N ;
+fun valuation_N : N ;
+fun value_N : N ;
+fun value_V : V ;
+fun value_added_A : A ;
+fun valueless_A : A ;
+fun valuelessness_N : N ;
+fun valuer_N : N ;
+fun valve_N : N ;
+fun valved_A : A ;
+fun valvotomy_N : N ;
+fun valvular_A : A ;
+fun valvule_N : N ;
+fun valvulitis_N : N ;
+fun vambrace_N : N ;
+fun vamoose_V : V ;
+fun vamp_N : N ;
+fun vamp_V : V ;
+fun vampire_N : N ;
+fun vampirism_N : N ;
+fun van_N : N ;
+fun vanadate_N : N ;
+fun vanadinite_N : N ;
+fun vanadium_N : N ;
+fun vancomycin_N : N ;
+fun vanda_N : N ;
+fun vandal_N : N ;
+fun vandalism_N : N ;
+fun vane_N : N ;
+fun vanguard_N : N ;
+fun vanilla_A : A ;
+fun vanilla_N : N ;
+fun vanillin_N : N ;
+fun vanish_V : V ;
+fun vanished_A : A ;
+fun vanisher_N : N ;
+fun vanishing_N : N ;
+fun vanishingly_Adv : Adv ;
+fun vanity_N : N ;
+fun vanquish_V : V ;
+fun vantage_N : N ;
+fun vantage_point_N : N ;
+fun vapid_A : A ;
+fun vapidity_N : N ;
+fun vapidness_N : N ;
+fun vapor_N : N ;
+fun vaporific_A : A ;
+fun vaporization_N : N ;
+fun vaporize_V : V ;
+fun vaporizer_N : N ;
+fun vaporous_A : A ;
+fun vapour_N : N ;
+fun vapour_bath_N : N ;
+fun vaquero_N : N ;
+fun vaquita_N : N ;
+fun vara_N : N ;
+fun vardenafil_N : N ;
+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 varicelliform_A : A ;
+fun varicocele_N : N ;
+fun varicolored_A : A ;
+fun varicoloured_A : A ;
+fun varicose_A : A ;
+fun varicosis_N : N ;
+fun varicosity_N : N ;
+fun variedness_N : N ;
+fun variegated_A : A ;
+fun variegation_N : N ;
+fun varietal_N : N ;
+fun variety_N : N ;
+fun variform_A : A ;
+fun variolar_A : A ;
+fun variolation_N : N ;
+fun variometer_N : N ;
+fun variorum_A : A ;
+fun variorum_N : N ;
+fun various_A : A ;
+fun varix_N : N ;
+fun varlet_N : N ;
+fun varmint_N : N ;
+fun varna_N : N ;
+fun varnish_N : N ;
+fun varnish_V : V ;
+fun varnisher_N : N ;
+fun varsity_N : N ;
+fun varus_N : N ;
+fun vary_V : V ;
+fun vascular_A : A ;
+fun vascularity_N : N ;
+fun vascularization_N : N ;
+fun vasculitis_N : N ;
+fun vase_N : N ;
+fun vasectomy_N : N ;
+fun vaseline_N : N ;
+fun vasoconstriction_N : N ;
+fun vasoconstrictor_N : N ;
+fun vasodilation_N : N ;
+fun vasodilator_N : N ;
+fun vasomotor_A : A ;
+fun vasopressin_N : N ;
+fun vasopressor_N : N ;
+fun vasotomy_N : N ;
+fun vasovasostomy_N : N ;
+fun vasovesiculitis_N : N ;
+fun vassal_N : N ;
+fun vassalage_N : N ;
+fun vast_A : A ;
+fun vastness_N : N ;
+fun vat_N : N ;
+fun vatican_N : N ;
+fun vaudeville_N : N ;
+fun vaudevillian_N : N ;
+fun vault_N : N ;
+fun vault_V : V ;
+fun vaulter_N : N ;
+fun vaulting_N : N ;
+fun vaulting_horse_N : N ;
+fun vaunt_N : N ;
+fun vaunt_V : V ;
+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 vedalia_N : N ;
+fun veer_V : V ;
+fun veery_N : N ;
+fun veg_V : V ;
+fun vegan_N : N ;
+fun vegetable_A : A ;
+fun vegetable_N : N ;
+fun vegetal_A : A ;
+fun vegetarian_N : N ;
+fun vegetarianism_N : N ;
+fun vegetate_V : V ;
+fun vegetation_N : N ;
+fun vegetative_A : A ;
+fun vehemence_N : N ;
+fun vehement_A : A ;
+fun vehicle_N : N ;
+fun vehicular_A : A ;
+fun veil_N : N ;
+fun veil_V : V ;
+fun veiling_N : N ;
+fun vein_N : N ;
+fun veinal_A : A ;
+fun veined_A : A ;
+fun velar_A : A ;
+fun velar_N : N ;
+fun veld_N : N ;
+fun velleity_N : N ;
+fun vellum_N : N ;
+fun velocipede_N : N ;
+fun velociraptor_N : N ;
+fun velocity_N : N ;
+fun velodrome_N : N ;
+fun velour_N : N ;
+fun veloute_N : N ;
+fun velvet_A : A ;
+fun velvet_N : N ;
+fun velveteen_N : N ;
+fun velvetleaf_N : N ;
+fun velvety_A : A ;
+fun venal_A : A ;
+fun venality_N : N ;
+fun venation_N : N ;
+fun vend_V : V ;
+fun vendee_N : N ;
+fun vender_N : N ;
+fun vendetta_N : N ;
+fun vending_N : N ;
+fun vendor_N : N ;
+fun veneer_N : N ;
+fun veneer_V : V ;
+fun veneering_N : N ;
+fun venerability_N : N ;
+fun venerable_A : A ;
+fun venerate_V : V ;
+fun veneration_N : N ;
+fun venerator_N : N ;
+fun venereal_A : A ;
+fun venereologist_N : N ;
+fun venereology_N : N ;
+fun venesection_N : N ;
+fun venetian_A : A ;
+fun venezuelan_A : A ;
+fun venezuelan_N : N ;
+fun vengeance_N : N ;
+fun vengeful_A : A ;
+fun venial_A : A ;
+fun venipuncture_N : N ;
+fun venison_N : N ;
+fun venogram_N : N ;
+fun venography_N : N ;
+fun venom_N : N ;
+fun venomed_A : A ;
+fun venomous_A : A ;
+fun venous_A : A ;
+fun vent_N : N ;
+fun vent_V : V ;
+fun vent_hole_N : N ;
+fun venter_N : N ;
+fun ventilate_V : V ;
+fun ventilation_N : N ;
+fun ventilator_N : N ;
+fun ventilatory_A : A ;
+fun ventral_A : A ;
+fun ventricle_N : N ;
+fun ventricose_A : A ;
+fun ventricular_A : A ;
+fun ventriloquism_N : N ;
+fun ventriloquist_N : N ;
+fun venture_N : N ;
+fun venture_V : V ;
+fun venturer_N : N ;
+fun venturesome_A : A ;
+fun venturi_N : N ;
+fun venturous_A : A ;
+fun venue_N : N ;
+fun venule_N : N ;
+fun veracious_A : A ;
+fun veracity_N : N ;
+fun veranda_N : N ;
+fun verandah_N : N ;
+fun verapamil_N : N ;
+fun verb_N : N ;
+fun verbal_A : A ;
+fun verbalization_N : N ;
+fun verbalize_V : V ;
+fun verbatim_A : A ;
+fun verbatim_Adv : Adv ;
+fun verbena_N : N ;
+fun verbiage_N : N ;
+fun verbolatry_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 verdin_N : N ;
+fun verdure_N : N ;
+fun verey_A : A ;
+fun verge_N : N ;
+fun verge_V : V ;
+fun verger_N : N ;
+fun veridical_A : A ;
+fun verifiable_A : A ;
+fun verification_N : N ;
+fun verify_V : V ;
+fun verily_Adv : Adv ;
+fun verisimilar_A : A ;
+fun verisimilitude_N : N ;
+fun veritable_A : A ;
+fun verity_N : N ;
+fun vermicelli_N : N ;
+fun vermicide_N : N ;
+fun vermicular_A : A ;
+fun vermiculate_A : A ;
+fun vermiculation_N : N ;
+fun vermiculite_N : N ;
+fun vermiform_A : A ;
+fun vermifuge_N : N ;
+fun vermilion_A : A ;
+fun vermilion_N : N ;
+fun vermin_N : N ;
+fun verminous_A : A ;
+fun vermis_N : N ;
+fun vermouth_N : N ;
+fun vernacular_A : A ;
+fun vernacular_N : N ;
+fun vernal_A : A ;
+fun vernation_N : N ;
+fun vernix_N : N ;
+fun veronica_N : N ;
+fun verruca_N : N ;
+fun verrucose_A : A ;
+fun versatile_A : A ;
+fun versatility_N : N ;
+fun verse_N : N ;
+fun versed_A : A ;
+fun versicle_N : N ;
+fun versification_N : N ;
+fun versifier_N : N ;
+fun versify_V : V ;
+fun version_N : N ;
+fun verso_N : N ;
+fun verst_N : N ;
+fun versus_Prep : Prep ;
+fun vertebra_N : N ;
+fun vertebral_A : A ;
+fun vertebrate_A : A ;
+fun vertebrate_N : N ;
+fun vertex_N : N ;
+fun vertical_A : A ;
+fun vertical_N : N ;
+fun verticality_N : N ;
+fun verticil_N : N ;
+fun verticillate_A : A ;
+fun verticilliosis_N : N ;
+fun verticillium_N : N ;
+fun vertiginous_A : A ;
+fun vertigo_N : N ;
+fun verve_N : N ;
+fun vervet_N : N ;
+fun vesical_A : A ;
+fun vesicant_N : N ;
+fun vesicatory_A : A ;
+fun vesicle_N : N ;
+fun vesicular_A : A ;
+fun vesiculation_N : N ;
+fun vesiculitis_N : N ;
+fun vesiculovirus_N : N ;
+fun vesper_N : N ;
+fun vespers_N : N ;
+fun vespid_N : N ;
+fun vessel_N : N ;
+fun vest_N : N ;
+fun vest_V : V ;
+fun vestal_A : A ;
+fun vestal_N : N ;
+fun vestiary_A : A ;
+fun vestibular_A : A ;
+fun vestibule_N : N ;
+fun vestige_N : N ;
+fun vestigial_A : A ;
+fun vestiture_N : N ;
+fun vestment_N : N ;
+fun vestmental_A : A ;
+fun vestmented_A : A ;
+fun vestry_N : N ;
+fun vestryman_N : N ;
+fun vestrywoman_N : N ;
+fun vesture_N : N ;
+fun vesture_V : V ;
+fun vesuvianite_N : N ;
+fun vet_N : N ;
+fun vet_V : V ;
+fun vetch_N : N ;
+fun vetchling_N : N ;
+fun veteran_N : N ;
+fun veterinarian_N : N ;
+fun veterinary_A : A ;
+fun veto_N : N ;
+fun veto_V : V ;
+fun vex_V : V ;
+fun vexation_N : N ;
+fun vexatious_A : A ;
+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 viand_N : N ;
+fun viatical_A : A ;
+fun viatication_N : N ;
+fun vibist_N : N ;
+fun vibrant_A : A ;
+fun vibraphone_N : N ;
+fun vibrate_V : V ;
+fun vibration_N : N ;
+fun vibrational_A : A ;
+fun vibrato_N : N ;
+fun vibrator_N : N ;
+fun vibratory_A : A ;
+fun vibrio_N : N ;
+fun vibrionic_A : A ;
+fun vicar_N : N ;
+fun vicarage_N : N ;
+fun vicarial_A : A ;
+fun vicariate_N : N ;
+fun vicarious_A : A ;
+fun vice_N : N ;
+fun vice_Prep : Prep ;
+fun vice_versa_Adv : Adv ;
+fun vicegerent_N : N ;
+fun vicenary_A : A ;
+fun vicennial_A : A ;
+fun viceregal_A : A ;
+fun vicereine_N : N ;
+fun viceroy_N : N ;
+fun viceroyalty_N : N ;
+fun viceroyship_N : N ;
+fun vichyssoise_N : N ;
+fun vicinal_A : A ;
+fun vicinity_N : N ;
+fun vicious_A : A ;
+fun viciousness_N : N ;
+fun vicissitude_N : N ;
+fun victim_N : N ;
+fun victimization_N : N ;
+fun victimize_V : V ;
+fun victimizer_N : N ;
+fun victor_N : N ;
+fun victoria_N : N ;
+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 victualer_N : N ;
+fun victualler_N : N ;
+fun vicuña_N : N ;
+fun videlicet_Adv : Adv ;
+fun video_N : N ;
+fun videocassette_N : N ;
+fun videodisk_N : N ;
+fun videotape_N : N ;
+fun videotape_V : V ;
+fun vie_V : V ;
+fun view_N : N ;
+fun view_V : V ;
+fun viewable_A : A ;
+fun viewer_N : N ;
+fun viewfinder_N : N ;
+fun viewgraph_N : N ;
+fun viewless_A : A ;
+fun viewpoint_N : N ;
+fun vigesimal_A : A ;
+fun vigil_N : N ;
+fun vigilance_N : N ;
+fun vigilant_A : A ;
+fun vigilante_N : N ;
+fun vigilantism_N : N ;
+fun vignette_N : N ;
+fun vigor_N : N ;
+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_V : V ;
+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 villus_N : N ;
+fun vim_N : N ;
+fun vinaceous_A : A ;
+fun vinaigrette_N : N ;
+fun vinblastine_N : N ;
+fun vincristine_N : N ;
+fun vindicate_V : V ;
+fun vindication_N : N ;
+fun vindictive_A : A ;
+fun vindictiveness_N : N ;
+fun vine_N : N ;
+fun vinegar_N : N ;
+fun vinegariness_N : N ;
+fun vinegarroon_N : N ;
+fun vinegary_A : A ;
+fun vinery_N : N ;
+fun vineyard_N : N ;
+fun vinifera_N : N ;
+fun vinification_N : N ;
+fun vino_N : N ;
+fun vinous_A : A ;
+fun vintage_N : N ;
+fun vintager_N : N ;
+fun vintner_N : N ;
+fun vinyl_N : N ;
+fun viol_N : N ;
+fun viola_N : N ;
+fun violable_A : A ;
+fun violate_V : V ;
+fun violation_N : N ;
+fun violator_N : N ;
+fun violence_N : N ;
+fun violent_A : A ;
+fun violet_N : N ;
+fun violin_N : N ;
+fun violinist_N : N ;
+fun violist_N : N ;
+fun viomycin_N : N ;
+fun vip_N : N ;
+fun viper_N : N ;
+fun virago_N : N ;
+fun viral_A : A ;
+fun viremia_N : N ;
+fun vireo_N : N ;
+fun virga_N : N ;
+fun virgin_A : A ;
+fun virgin_N : N ;
+fun virginal_A : A ;
+fun virginal_N : N ;
+fun virginia_N : N ;
+fun virginity_N : N ;
+fun virgule_N : N ;
+fun viricidal_A : A ;
+fun viricide_N : N ;
+fun virile_A : A ;
+fun virilism_N : N ;
+fun virility_N : N ;
+fun virino_N : N ;
+fun virion_N : N ;
+fun viroid_N : N ;
+fun virological_A : A ;
+fun virologist_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_Prep : Prep ;
+fun vis_à_vis_Adv : Adv ;
+fun vis_à_vis_Prep : Prep ;
+fun visa_N : N ;
+fun visa_V : V ;
+fun visage_N : N ;
+fun visaged_A : A ;
+fun viscacha_N : N ;
+fun viscera_N : N ;
+fun visceral_A : A ;
+fun viscid_A : A ;
+fun viscoelastic_A : A ;
+fun viscometer_N : N ;
+fun viscometric_A : A ;
+fun viscometry_N : N ;
+fun viscosity_N : N ;
+fun viscount_N : N ;
+fun viscountcy_N : N ;
+fun viscountess_N : N ;
+fun viscounty_N : N ;
+fun viscous_A : A ;
+fun vise_N : N ;
+fun viselike_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 visitant_N : N ;
+fun visitation_N : N ;
+fun visiting_N : N ;
+fun visitor_N : N ;
+fun visor_N : N ;
+fun visored_A : A ;
+fun vista_N : N ;
+fun visual_A : A ;
+fun visualization_N : N ;
+fun visualize_V : V ;
+fun visualizer_N : N ;
+fun vital_A : A ;
+fun vitalism_N : N ;
+fun vitalist_N : N ;
+fun vitality_N : N ;
+fun vitalization_N : N ;
+fun vitalize_V : V ;
+fun vitalness_N : N ;
+fun vitamin_N : N ;
+fun vitiate_V : V ;
+fun vitiation_N : N ;
+fun viticulture_N : N ;
+fun viticulturist_N : N ;
+fun vitiliginous_A : A ;
+fun vitiligo_N : N ;
+fun vitrectomy_N : N ;
+fun vitreous_A : A ;
+fun vitrification_N : N ;
+fun vitrify_V : V ;
+fun vitriol_N : N ;
+fun vitriolic_A : A ;
+fun vituperate_V : V ;
+fun vituperation_N : N ;
+fun vituperative_A : A ;
+fun viva_N : N ;
+fun viva_voce_A : A ;
+fun viva_voce_Adv : Adv ;
+fun viva_voce_N : N ;
+fun vivace_A : A ;
+fun vivace_Adv : Adv ;
+fun vivacious_A : A ;
+fun vivacity_N : N ;
+fun vivarium_N : N ;
+fun viverrine_N : N ;
+fun vivid_A : A ;
+fun vividness_N : N ;
+fun vivification_N : N ;
+fun viviparous_A : A ;
+fun vivisect_V : V ;
+fun vivisection_N : N ;
+fun vivisectionist_N : N ;
+fun vixen_N : N ;
+fun vixenish_A : A ;
+fun vizier_N : N ;
+fun viziership_N : N ;
+fun vizsla_N : N ;
+fun vocable_N : N ;
+fun vocabulary_N : N ;
+fun vocal_A : A ;
+fun vocalic_A : A ;
+fun vocalist_N : N ;
+fun vocalize_V : V ;
+fun vocation_N : N ;
+fun vocational_A : A ;
+fun vocative_A : A ;
+fun vocative_N : N ;
+fun vociferate_V : V ;
+fun vociferation_N : N ;
+fun vociferator_N : N ;
+fun vociferous_A : A ;
+fun vodka_N : N ;
+fun vogue_N : N ;
+fun voice_N : N ;
+fun voice_V : V ;
+fun voiceless_A : A ;
+fun voicelessness_N : N ;
+fun voiceprint_N : N ;
+fun voicer_N : N ;
+fun voicing_N : N ;
+fun void_A : A ;
+fun void_N : N ;
+fun void_V : V ;
+fun voider_N : N ;
+fun voile_N : N ;
+fun vol_N : N ;
+fun volatile_A : A ;
+fun volatile_N : N ;
+fun volatility_N : N ;
+fun volcanic_A : A ;
+fun volcanically_Adv : Adv ;
+fun volcanism_N : N ;
+fun volcano_N : N ;
+fun volcanology_N : N ;
+fun vole_N : N ;
+fun volition_N : N ;
+fun volitional_A : A ;
+fun volley_N : N ;
+fun volley_V : V ;
+fun volleyball_N : N ;
+fun volt_N : N ;
+fun voltage_N : N ;
+fun voltaic_A : A ;
+fun volte_face_N : N ;
+fun voltmeter_N : N ;
+fun volubility_N : N ;
+fun voluble_A : A ;
+fun volume_N : N ;
+fun volumed_A : A ;
+fun volumeter_N : N ;
+fun volumetric_A : A ;
+fun volumetrically_Adv : Adv ;
+fun voluminous_A : A ;
+fun voluntary_A : A ;
+fun voluntary_N : N ;
+fun volunteer_N : N ;
+fun volunteer_V : V ;
+fun voluptuary_N : N ;
+fun voluptuous_A : A ;
+fun voluptuousness_N : N ;
+fun volute_N : N ;
+fun voluted_A : A ;
+fun volution_N : N ;
+fun volva_N : N ;
+fun volvulus_N : N ;
+fun vomer_N : N ;
+fun vomit_N : N ;
+fun vomit_V : V ;
+fun vomiter_N : N ;
+fun vomitory_N : N ;
+fun voodoo_N : N ;
+fun voodooism_N : N ;
+fun voracious_A : A ;
+fun voracity_N : N ;
+fun vortex_N : N ;
+fun vorticella_N : N ;
+fun votary_N : N ;
+fun vote_N : N ;
+fun vote_V : V ;
+fun voteless_A : A ;
+fun voter_N : N ;
+fun votive_A : A ;
+fun vouch_V : V ;
+fun vouchee_N : N ;
+fun voucher_N : N ;
+fun vouchsafe_V : V ;
+fun vouge_N : N ;
+fun voussoir_N : N ;
+fun vow_N : N ;
+fun vow_V : V ;
+fun vowel_N : N ;
+fun vowellike_A : A ;
+fun vower_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 vroom_N : N ;
+fun vulcanite_N : N ;
+fun vulcanization_N : N ;
+fun vulcanize_V : V ;
+fun vulcanizer_N : N ;
+fun vulgar_A : A ;
+fun vulgarian_N : N ;
+fun vulgarism_N : N ;
+fun vulgarity_N : N ;
+fun vulgarization_N : N ;
+fun vulgarize_V : V ;
+fun vulgarizer_N : N ;
+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 vulvar_A : A ;
+fun vulvectomy_N : N ;
+fun vulvitis_N : N ;
+fun vulvovaginitis_N : N ;
+fun wad_N : N ;
+fun wad_V : V ;
+fun wadding_N : N ;
+fun waddle_N : N ;
+fun waddle_V : V ;
+fun waddler_N : N ;
+fun wade_V : V ;
+fun wader_N : N ;
+fun waders_N : N ;
+fun wadi_N : N ;
+fun wading_N : N ;
+fun wafer_N : N ;
+fun waffle_N : N ;
+fun waffle_V : V ;
+fun waffler_N : N ;
+fun waft_N : N ;
+fun waft_V : V ;
+fun wag_N : N ;
+fun wag_V : V ;
+fun wage_N : N ;
+fun wage_V : V ;
+fun wage_claim_N : N ;
+fun wage_earner_N : N ;
+fun wage_freeze_N : N ;
+fun wager_N : N ;
+fun wager_V : V ;
+fun wages_N : N ;
+fun waggery_N : N ;
+fun waggish_A : A ;
+fun waggishness_N : N ;
+fun waggle_V : V ;
+fun waggon_N : N ;
+fun waggoner_N : N ;
+fun wagon_N : N ;
+fun wagon_lit_N : N ;
+fun wagoner_N : N ;
+fun wagonwright_N : N ;
+fun wagtail_N : N ;
+fun wahoo_N : N ;
+fun waif_N : N ;
+fun wail_N : N ;
+fun wail_V : V ;
+fun wailer_N : N ;
+fun wailing_N : N ;
+fun wain_N : N ;
+fun wainscot_N : N ;
+fun wainscoted_A : A ;
+fun wainscoting_N : N ;
+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 waiter_N : N ;
+fun waiting_list_N : N ;
+fun waiting_room_N : N ;
+fun waitress_N : N ;
+fun waive_V : V ;
+fun waiver_N : N ;
+fun waiver_V : V ;
+fun wake_N : N ;
+fun wake_V : V ;
+fun wakeful_A : A ;
+fun wakefulness_N : N ;
+fun waken_V : V ;
+fun waker_N : N ;
+fun waking_N : N ;
+fun wale_N : N ;
+fun walk_N : N ;
+fun walk_V : V ;
+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_V : V ;
+fun wall_eyed_A : A ;
+fun wall_painting_N : N ;
+fun wallaby_N : N ;
+fun wallah_N : N ;
+fun wallboard_N : N ;
+fun wallet_N : N ;
+fun walleye_N : N ;
+fun walleyed_A : A ;
+fun wallflower_N : N ;
+fun wallop_N : N ;
+fun wallop_V : V ;
+fun walloper_N : N ;
+fun walloping_A : A ;
+fun wallow_N : N ;
+fun wallow_V : V ;
+fun wallpaper_N : N ;
+fun wallpaperer_N : N ;
+fun wally_N : N ;
+fun walnut_N : N ;
+fun walrus_N : N ;
+fun waltz_N : N ;
+fun waltz_V : V ;
+fun waltzer_N : N ;
+fun wampum_N : N ;
+fun wan_A : A ;
+fun wand_N : N ;
+fun wander_V : V ;
+fun wanderer_N : N ;
+fun wandering_N : N ;
+fun wanderlust_N : N ;
+fun wandflower_N : N ;
+fun wane_N : N ;
+fun wane_V : V ;
+fun wangle_N : N ;
+fun wangle_V : V ;
+fun waning_N : N ;
+fun wank_N : N ;
+fun wank_V : V ;
+fun wanness_N : N ;
+fun want_N : N ;
+fun want_V : V ;
+fun want_ad_N : N ;
+fun wanter_N : N ;
+fun wanton_A : A ;
+fun wanton_N : N ;
+fun wanton_V : V ;
+fun wantonness_N : N ;
+fun wapiti_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 waratah_N : N ;
+fun warble_N : N ;
+fun warble_V : V ;
+fun warbler_N : N ;
+fun ward_N : N ;
+fun ward_V : V ;
+fun warden_N : N ;
+fun wardenship_N : N ;
+fun warder_N : N ;
+fun wardership_N : N ;
+fun wardress_N : N ;
+fun wardrobe_N : N ;
+fun wardroom_N : N ;
+fun ware_N : N ;
+fun ware_V : V ;
+fun warehouse_N : N ;
+fun warehouser_N : N ;
+fun warehousing_N : N ;
+fun warfare_N : N ;
+fun warfarin_N : N ;
+fun warhead_N : N ;
+fun warhorse_N : N ;
+fun wariness_N : N ;
+fun warlike_A : A ;
+fun warlock_N : N ;
+fun warlord_N : N ;
+fun warm_A : A ;
+fun warm_V : V ;
+fun warm_blooded_A : A ;
+fun warm_hearted_A : A ;
+fun warmer_N : N ;
+fun warmhearted_A : A ;
+fun warmheartedness_N : N ;
+fun warming_pan_N : N ;
+fun warmonger_N : N ;
+fun warmongering_N : N ;
+fun warmth_N : N ;
+fun warn_V : V ;
+fun warner_N : N ;
+fun warning_N : N ;
+fun warp_N : N ;
+fun warp_V : V ;
+fun warpaint_N : N ;
+fun warpath_N : N ;
+fun warplane_N : N ;
+fun warrant_N : N ;
+fun warrant_V : V ;
+fun warrantee_N : N ;
+fun warrantor_N : N ;
+fun warranty_N : N ;
+fun warren_N : N ;
+fun warrener_N : N ;
+fun warrigal_N : N ;
+fun warrior_N : N ;
+fun warship_N : N ;
+fun wart_N : N ;
+fun warthog_N : N ;
+fun wartime_N : N ;
+fun wary_A : A ;
+fun wasabi_N : N ;
+fun wash_N : N ;
+fun wash_V : V ;
+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 washerman_N : N ;
+fun washerwoman_N : N ;
+fun washhouse_N : N ;
+fun washing_N : N ;
+fun washing_day_N : N ;
+fun washing_machine_N : N ;
+fun washing_up_N : N ;
+fun washman_N : N ;
+fun washout_N : N ;
+fun washroom_N : N ;
+fun washstand_N : N ;
+fun washtub_N : N ;
+fun washup_N : N ;
+fun washwoman_N : N ;
+fun washy_A : A ;
+fun wasp_N : N ;
+fun wasp_waisted_A : A ;
+fun waspish_A : A ;
+fun wassail_N : N ;
+fun wassailer_N : N ;
+fun wastage_N : N ;
+fun waste_A : A ;
+fun waste_N : N ;
+fun waste_V : V ;
+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_chain_N : N ;
+fun watch_glass_N : N ;
+fun watch_guard_N : N ;
+fun watch_key_N : N ;
+fun watchband_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_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 waterbuck_N : N ;
+fun watercannon_N : N ;
+fun waterchute_N : N ;
+fun watercolor_N : N ;
+fun watercolorist_N : N ;
+fun watercolour_N : N ;
+fun watercolourist_N : N ;
+fun watercourse_N : N ;
+fun watercraft_N : N ;
+fun watercress_N : N ;
+fun waterdog_N : N ;
+fun waterer_N : N ;
+fun waterfall_N : N ;
+fun waterfowl_N : N ;
+fun waterfront_N : N ;
+fun waterhen_N : N ;
+fun waterhyacinth_N : N ;
+fun wateriness_N : N ;
+fun watering_N : N ;
+fun watering_can_N : N ;
+fun watering_cart_N : N ;
+fun waterleaf_N : N ;
+fun waterless_A : A ;
+fun waterline_N : N ;
+fun waterlogged_A : A ;
+fun waterloo_N : N ;
+fun waterman_N : N ;
+fun watermark_N : N ;
+fun watermeal_N : N ;
+fun watermelon_N : N ;
+fun watermill_N : N ;
+fun waterpower_N : N ;
+fun waterproof_A : A ;
+fun waterproof_N : N ;
+fun waterproof_V : V ;
+fun waterproofing_N : N ;
+fun watershed_N : N ;
+fun waterside_N : N ;
+fun waterskin_N : N ;
+fun waterspout_N : N ;
+fun watertable_N : N ;
+fun watertight_A : A ;
+fun waterway_N : N ;
+fun waterweed_N : N ;
+fun waterwheel_N : N ;
+fun waterworks_N : N ;
+fun waterworn_A : A ;
+fun watery_A : A ;
+fun watt_N : N ;
+fun wattage_N : N ;
+fun wattle_N : N ;
+fun wattmeter_N : N ;
+fun wave_N : N ;
+fun wave_V : V ;
+fun waveguide_N : N ;
+fun wavelength_N : N ;
+fun waver_N : N ;
+fun waver_V : V ;
+fun waverer_N : N ;
+fun waviness_N : N ;
+fun wavy_A : A ;
+fun waw_N : N ;
+fun wax_N : N ;
+fun wax_V : V ;
+fun wax_chandler_N : N ;
+fun wax_paper_N : N ;
+fun waxen_A : A ;
+fun waxflower_N : N ;
+fun waxiness_N : N ;
+fun waxing_N : N ;
+fun waxmallow_N : N ;
+fun waxwing_N : N ;
+fun waxwork_N : N ;
+fun waxy_A : A ;
+fun waxycap_N : N ;
+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 wayfaring_N : N ;
+fun waylay_V : V ;
+fun ways_N : N ;
+fun wayside_N : N ;
+fun wayward_A : A ;
+fun weak_A : A ;
+fun weak_kneed_A : A ;
+fun weaken_V : V ;
+fun weakener_N : N ;
+fun weakening_N : N ;
+fun weakfish_N : N ;
+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 wealthy_A : A ;
+fun wean_V : V ;
+fun weaning_N : N ;
+fun weapon_N : N ;
+fun weaponless_A : A ;
+fun weaponry_N : N ;
+fun wear_N : N ;
+fun wear_weared_V : V ;
+fun wear_wore_V : V ;
+fun wearable_A : A ;
+fun wearer_N : N ;
+fun weariness_N : N ;
+fun wearisome_A : A ;
+fun weary_A : A ;
+fun weary_V : V ;
+fun weasel_N : N ;
+fun weather_N : N ;
+fun weather_V : V ;
+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 weatherglass_N : N ;
+fun weatherliness_N : N ;
+fun weatherly_A : A ;
+fun weatherman_N : N ;
+fun weatherproof_A : A ;
+fun weathervane_N : N ;
+fun weave_N : N ;
+fun weave_weaved_weaved_V : V ;
+fun weave_weaved_woven_V : V ;
+fun weave_wove_weaved_V : V ;
+fun weave_wove_woven_V : V ;
+fun weaver_N : N ;
+fun weaverbird_N : N ;
+fun weaving_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 webcam_N : N ;
+fun weber_N : N ;
+fun webfoot_N : N ;
+fun webmaster_N : N ;
+fun webworm_N : N ;
+fun wed_A : A ;
+fun wed_V : V ;
+fun wedding_N : N ;
+fun wedding_cake_N : N ;
+fun wedding_ring_N : N ;
+fun wedge_N : N ;
+fun wedge_V : V ;
+fun wedgie_N : N ;
+fun wedlock_N : N ;
+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 weeder_N : N ;
+fun weedkiller_N : N ;
+fun weedless_A : A ;
+fun weeds_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 weeklong_A : A ;
+fun weekly_A : A ;
+fun weekly_Adv : Adv ;
+fun weekly_N : N ;
+fun weeknight_N : N ;
+fun weeny_A : A ;
+fun weep_V : V ;
+fun weeper_N : N ;
+fun weepiness_N : N ;
+fun weepy_A : A ;
+fun weevil_N : N ;
+fun weft_N : N ;
+fun weigela_N : N ;
+fun weigh_V : V ;
+fun weighbridge_N : N ;
+fun weigher_N : N ;
+fun weighing_machine_N : N ;
+fun weight_N : N ;
+fun weight_V : V ;
+fun weightiness_N : N ;
+fun weightless_A : A ;
+fun weightlessness_N : N ;
+fun weightlift_N : N ;
+fun weightlifter_N : N ;
+fun weightlifting_N : N ;
+fun weighty_A : A ;
+fun weir_N : N ;
+fun weird_A : A ;
+fun weird_V : V ;
+fun weirdie_N : N ;
+fun weirdness_N : N ;
+fun weka_N : N ;
+fun welcher_N : N ;
+fun welcome_A : A ;
+fun welcome_N : N ;
+fun welcome_V : V ;
+fun welcoming_A : A ;
+fun weld_N : N ;
+fun weld_V : V ;
+fun welder_N : N ;
+fun welding_N : N ;
+fun weldment_N : N ;
+fun welfare_N : N ;
+fun welfarist_A : A ;
+fun welkin_N : N ;
+fun well_A : A ;
+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 wellbeing_N : N ;
+fun wellborn_A : A ;
+fun wellerism_N : N ;
+fun wellhead_N : N ;
+fun wellington_N : N ;
+fun welsh_A : A ;
+fun welsh_N : N ;
+fun welsh_V : V ;
+fun welsher_N : N ;
+fun welshman_N : N ;
+fun welt_N : N ;
+fun welter_A : A ;
+fun welter_N : N ;
+fun welter_V : V ;
+fun welterweight_N : N ;
+fun welwitschia_N : N ;
+fun wen_N : N ;
+fun wench_N : N ;
+fun wench_V : V ;
+fun wencher_N : N ;
+fun wend_V : V ;
+fun werewolf_N : N ;
+fun wesleyan_A : A ;
+fun wesleyan_N : N ;
+fun west_country_A : A ;
+fun west_end_A : A ;
+fun westbound_A : A ;
+fun westerly_A : A ;
+fun westerly_Adv : Adv ;
+fun western_N : N ;
+fun westerner_N : N ;
+fun westernization_N : N ;
+fun westernize_V : V ;
+fun westernmost_A : A ;
+fun westside_A : A ;
+fun westward_A : A ;
+fun westward_Adv : Adv ;
+fun westwards_Adv : Adv ;
+fun wet_A : A ;
+fun wet_N : N ;
+fun wet_V : V ;
+fun wet_nurse_N : N ;
+fun wether_N : N ;
+fun wetland_N : N ;
+fun wetness_N : N ;
+fun wetter_N : N ;
+fun wetting_N : N ;
+fun whack_N : N ;
+fun whack_V : V ;
+fun whacker_N : N ;
+fun whacking_Adv : Adv ;
+fun whacking_N : N ;
+fun whale_N : N ;
+fun whale_V : V ;
+fun whaleboat_N : N ;
+fun whalebone_N : N ;
+fun whaler_N : N ;
+fun whaling_gun_N : N ;
+fun whammy_N : N ;
+fun whang_Adv : Adv ;
+fun whang_N : N ;
+fun whang_V : V ;
+fun wharf_N : N ;
+fun wharfage_N : N ;
+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 wheatear_N : N ;
+fun wheaten_A : A ;
+fun wheatfield_N : N ;
+fun wheatflake_N : N ;
+fun wheatgrass_N : N ;
+fun wheatworm_N : N ;
+fun wheedle_V : V ;
+fun wheedler_N : N ;
+fun wheel_N : N ;
+fun wheel_V : V ;
+fun wheelbarrow_N : N ;
+fun wheelbase_N : N ;
+fun wheelchair_N : N ;
+fun wheeler_N : N ;
+fun wheelhouse_N : N ;
+fun wheeling_N : N ;
+fun wheelless_A : A ;
+fun wheelwork_N : N ;
+fun wheelwright_N : N ;
+fun wheeze_N : N ;
+fun wheeze_V : V ;
+fun wheeziness_N : N ;
+fun wheezy_A : A ;
+fun whelk_N : N ;
+fun whelp_N : N ;
+fun whelp_V : V ;
+fun whence_Adv : Adv ;
+fun whencesoever_A : A ;
+fun whenever_Adv : Adv ;
+fun where_as_Prep : Prep ;
+fun whereabouts_Adv : Adv ;
+fun whereabouts_N : N ;
+fun whereas_Prep : Prep ;
+fun whereat_Adv : Adv ;
+fun whereby_Adv : Adv ;
+fun wherefore_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_V : V ;
+fun whether_Prep : Prep ;
+fun whetstone_N : N ;
+fun whey_N : N ;
+fun whichever_A : A ;
+fun whichsoever_A : A ;
+fun whiff_N : N ;
+fun whiffer_N : N ;
+fun whiffletree_N : N ;
+fun whig_N : N ;
+fun while_N : N ;
+fun while_V : V ;
+fun whim_N : N ;
+fun whimper_N : N ;
+fun whimper_V : V ;
+fun whimsey_N : N ;
+fun whimsical_A : A ;
+fun whimsicality_N : N ;
+fun whimsy_N : N ;
+fun whin_N : N ;
+fun whinchat_N : N ;
+fun whine_N : N ;
+fun whine_V : V ;
+fun whiner_N : N ;
+fun whinny_N : N ;
+fun whinny_V : V ;
+fun whinstone_N : N ;
+fun whip_N : N ;
+fun whip_V : V ;
+fun whip_round_N : N ;
+fun whipcord_N : N ;
+fun whiplash_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_V : V ;
+fun whipstitch_N : N ;
+fun whiptail_N : N ;
+fun whir_N : N ;
+fun whir_V : V ;
+fun whirl_N : N ;
+fun whirl_V : V ;
+fun whirler_N : N ;
+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 whisker_N : N ;
+fun whiskered_A : A ;
+fun whiskey_N : N ;
+fun whisky_N : N ;
+fun whisper_N : N ;
+fun whisper_V : V ;
+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_stop_N : N ;
+fun whistler_N : N ;
+fun whistling_N : N ;
+fun whit_N : N ;
+fun white_A : A ;
+fun white_N : N ;
+fun white_V : V ;
+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 whitecap_N : N ;
+fun whitecup_N : N ;
+fun whiteface_N : N ;
+fun whitefish_N : N ;
+fun whitefly_N : N ;
+fun whitehead_N : N ;
+fun whitelash_N : N ;
+fun whiten_V : V ;
+fun whiteness_N : N ;
+fun whitening_N : N ;
+fun whiteout_N : N ;
+fun whitethorn_N : N ;
+fun whitewash_N : N ;
+fun whitewash_V : V ;
+fun whitey_N : N ;
+fun whither_Adv : Adv ;
+fun whithersoever_Adv : Adv ;
+fun whiting_N : N ;
+fun whitish_A : A ;
+fun whitlow_N : N ;
+fun whitlowwort_N : N ;
+fun whitsun_N : N ;
+fun whitsuntide_N : N ;
+fun whittle_V : V ;
+fun whittler_N : N ;
+fun whiz_N : N ;
+fun whiz_V : V ;
+fun whizbang_N : N ;
+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 wholeness_N : N ;
+fun wholesale_A : A ;
+fun wholesale_Adv : Adv ;
+fun wholesale_N : N ;
+fun wholesale_V : V ;
+fun wholesaler_N : N ;
+fun wholesome_A : A ;
+fun wholesomeness_N : N ;
+fun wholly_Adv : Adv ;
+fun whoop_N : N ;
+fun whoop_V : V ;
+fun whooper_N : N ;
+fun whooping_cough_N : N ;
+fun whop_V : V ;
+fun whopper_N : N ;
+fun whopping_A : A ;
+fun whopping_Adv : Adv ;
+fun whore_N : N ;
+fun whorehouse_N : N ;
+fun whoremaster_N : N ;
+fun whoremonger_N : N ;
+fun whorl_N : N ;
+fun whorled_A : A ;
+fun why_N : N ;
+fun whydah_N : N ;
+fun wi_N : N ;
+fun wick_N : N ;
+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 wickiup_N : N ;
+fun wide_A : A ;
+fun wide_Adv : Adv ;
+fun wide_awake_A : A ;
+fun widen_V : V ;
+fun wideness_N : N ;
+fun widening_N : N ;
+fun widespread_A : A ;
+fun widgeon_N : N ;
+fun widow_N : N ;
+fun widowed_A : A ;
+fun widower_N : N ;
+fun widowhood_N : N ;
+fun width_N : N ;
+fun wield_V : V ;
+fun wieldy_A : A ;
+fun wiesenboden_N : N ;
+fun wife_N : N ;
+fun wifelike_A : A ;
+fun wifely_A : A ;
+fun wig_N : N ;
+fun wig_V : V ;
+fun wigged_A : A ;
+fun wigging_N : N ;
+fun wiggle_N : N ;
+fun wiggle_V : V ;
+fun wiggler_N : N ;
+fun wiggliness_N : N ;
+fun wiggly_A : A ;
+fun wight_N : N ;
+fun wigless_A : A ;
+fun wigmaker_N : N ;
+fun wigwam_N : N ;
+fun wild_A : A ;
+fun wild_Adv : Adv ;
+fun wild_N : N ;
+fun wildcat_A : A ;
+fun wildcat_N : N ;
+fun wildcatter_N : N ;
+fun wildebeest_N : N ;
+fun wilderness_N : N ;
+fun wildfire_N : N ;
+fun wildflower_N : N ;
+fun wildfowl_N : N ;
+fun wilding_N : N ;
+fun wildlife_N : N ;
+fun wildness_N : N ;
+fun wile_N : N ;
+fun wilful_A : A ;
+fun wilfulness_N : N ;
+fun will_N : N ;
+fun will_V : V ;
+fun will_o'_the_wisp_N : N ;
+fun willet_N : N ;
+fun willful_A : A ;
+fun willies_N : N ;
+fun willing_A : A ;
+fun willingness_N : N ;
+fun willow_N : N ;
+fun willow_pattern_N : N ;
+fun willow_tree_N : N ;
+fun willowherb_N : N ;
+fun willowware_N : N ;
+fun willowy_A : A ;
+fun willpower_N : N ;
+fun willy_nilly_Adv : Adv ;
+fun wilt_N : N ;
+fun wilt_V : V ;
+fun wilton_N : N ;
+fun wily_A : A ;
+fun wimp_N : N ;
+fun wimp_V : V ;
+fun wimpish_A : A ;
+fun wimple_N : N ;
+fun win_N : N ;
+fun win_winned_V : V ;
+fun win_won_V : V ;
+fun wince_N : N ;
+fun wince_V : V ;
+fun wincey_N : N ;
+fun winceyette_N : N ;
+fun winch_N : N ;
+fun winch_V : V ;
+fun wind_N : N ;
+fun wind_gauge_N : N ;
+fun wind_tunnel_N : N ;
+fun wind_winded_V : V ;
+fun wind_wound_V : V ;
+fun windage_N : N ;
+fun windbag_N : N ;
+fun windblown_A : A ;
+fun windbreak_N : N ;
+fun windbreaker_N : N ;
+fun windburn_N : N ;
+fun windburned_A : A ;
+fun windcheater_N : N ;
+fun winder_N : N ;
+fun windfall_N : N ;
+fun windflower_N : N ;
+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 windstorm_N : N ;
+fun windswept_A : A ;
+fun windward_A : A ;
+fun windward_Adv : Adv ;
+fun windward_N : N ;
+fun windy_A : A ;
+fun wine_N : N ;
+fun wine_V : V ;
+fun wineberry_N : N ;
+fun wineglass_N : N ;
+fun winemaking_N : N ;
+fun winepress_N : N ;
+fun winery_N : N ;
+fun wineskin_N : N ;
+fun wing_N : N ;
+fun wing_V : V ;
+fun wing_commander_N : N ;
+fun wing_nut_N : N ;
+fun wing_screw_N : N ;
+fun wingback_N : N ;
+fun winger_N : N ;
+fun wingless_A : A ;
+fun winglike_A : A ;
+fun wingman_N : N ;
+fun wings_N : N ;
+fun wingspan_N : N ;
+fun wingspread_N : N ;
+fun wingstem_N : N ;
+fun wink_N : N ;
+fun wink_V : V ;
+fun winker_N : N ;
+fun winkle_N : N ;
+fun winkle_V : V ;
+fun winless_A : A ;
+fun winner_N : N ;
+fun winning_N : N ;
+fun winning_post_N : N ;
+fun winnings_N : N ;
+fun winnow_N : N ;
+fun winnow_V : V ;
+fun winsome_A : A ;
+fun winsomeness_N : N ;
+fun winter_N : N ;
+fun winter_V : V ;
+fun wintergreen_N : N ;
+fun wintery_A : A ;
+fun wintry_A : A ;
+fun winy_A : A ;
+fun wipe_N : N ;
+fun wipe_V : V ;
+fun wipeout_N : N ;
+fun wiper_N : N ;
+fun wire_N : N ;
+fun wire_V : V ;
+fun wire_haired_A : A ;
+fun wirehair_N : N ;
+fun wireless_A : A ;
+fun wireless_N : N ;
+fun wireman_N : N ;
+fun wirepuller_N : N ;
+fun wirer_N : N ;
+fun wiretap_N : N ;
+fun wirework_N : N ;
+fun wireworm_N : N ;
+fun wiriness_N : N ;
+fun wiring_N : N ;
+fun wiry_A : A ;
+fun wisdom_N : N ;
+fun wisdom_tooth_N : N ;
+fun wise_A : A ;
+fun wise_N : N ;
+fun wise_V : V ;
+fun wiseacre_N : N ;
+fun wisecrack_N : N ;
+fun wisecrack_V : V ;
+fun wisent_N : N ;
+fun wish_N : N ;
+fun wish_V : V ;
+fun wishbone_N : N ;
+fun wishful_A : A ;
+fun wishfulness_N : N ;
+fun wishing_cap_N : N ;
+fun wishy_washy_A : A ;
+fun wisp_N : N ;
+fun wisplike_A : A ;
+fun wispy_A : A ;
+fun wisteria_N : N ;
+fun wistful_A : A ;
+fun wistfulness_N : N ;
+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 witchgrass_N : N ;
+fun witching_A : A ;
+fun witching_N : N ;
+fun witchlike_A : A ;
+fun with_Prep : Prep ;
+fun with_a_view_to_Prep : Prep ;
+fun with_regard_to_Prep : Prep ;
+fun with_respect_to_Prep : Prep ;
+fun withal_Adv : Adv ;
+fun withdraw_V : V ;
+fun withdrawal_N : N ;
+fun withdrawer_N : N ;
+fun withe_N : N ;
+fun wither_V : V ;
+fun witheringly_Adv : Adv ;
+fun withers_N : N ;
+fun withhold_V : V ;
+fun withholder_N : N ;
+fun withholding_N : N ;
+fun within_Prep : Prep ;
+fun without_Prep : Prep ;
+fun withstand_V : V ;
+fun withstander_N : N ;
+fun withy_N : N ;
+fun witless_A : A ;
+fun witness_N : N ;
+fun witness_V : V ;
+fun witness_box_N : N ;
+fun witness_stand_N : N ;
+fun wits_N : N ;
+fun witticism_N : N ;
+fun witting_A : A ;
+fun wittol_N : N ;
+fun witty_A : A ;
+fun wive_V : V ;
+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_N : N ;
+fun wobble_V : V ;
+fun wobbler_N : N ;
+fun wobbly_A : A ;
+fun woe_N : N ;
+fun woebegone_A : A ;
+fun woeful_A : A ;
+fun wog_N : N ;
+fun wok_N : N ;
+fun wold_N : N ;
+fun wolf's_bane_N : N ;
+fun wolf_N : N ;
+fun wolf_V : V ;
+fun wolf_cub_N : N ;
+fun wolffish_N : N ;
+fun wolfhound_N : N ;
+fun wolfish_A : A ;
+fun wolflike_A : A ;
+fun wolfram_N : N ;
+fun wolframite_N : N ;
+fun wolfsbane_N : N ;
+fun wollastonite_N : N ;
+fun wolverine_N : N ;
+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 womanliness_N : N ;
+fun womanly_A : A ;
+fun womb_N : N ;
+fun wombat_N : N ;
+fun wonder_N : N ;
+fun wonder_V : V ;
+fun wonder_struck_A : A ;
+fun wonderer_N : N ;
+fun wonderful_A : A ;
+fun wonderingly_Adv : Adv ;
+fun wonderland_N : N ;
+fun wonderment_N : N ;
+fun wonderworking_A : A ;
+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_V : V ;
+fun wood_N : N ;
+fun wood_block_N : N ;
+fun wood_pulp_N : N ;
+fun woodbine_N : N ;
+fun woodborer_N : N ;
+fun woodcarver_N : N ;
+fun woodcarving_N : N ;
+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 woodenness_N : N ;
+fun woodenware_N : N ;
+fun woodhewer_N : N ;
+fun woodiness_N : N ;
+fun woodland_N : N ;
+fun woodlouse_N : N ;
+fun woodman_N : N ;
+fun woodpecker_N : N ;
+fun woodpile_N : N ;
+fun woodruff_N : N ;
+fun woodscrew_N : N ;
+fun woodshed_N : N ;
+fun woodsia_N : N ;
+fun woodsman_N : N ;
+fun woodsy_A : A ;
+fun woodwaxen_N : N ;
+fun woodwind_N : N ;
+fun woodwork_N : N ;
+fun woodworker_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 wop_N : N ;
+fun word_N : N ;
+fun word_V : V ;
+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 wordiness_N : N ;
+fun wording_N : N ;
+fun wordless_A : A ;
+fun wordmonger_N : N ;
+fun wordnet_N : N ;
+fun words_N : N ;
+fun wordsmith_N : N ;
+fun wordy_A : A ;
+fun work_N : N ;
+fun work_V : V ;
+fun work_in_N : N ;
+fun work_out_N : N ;
+fun work_study_N : N ;
+fun workable_A : A ;
+fun workaday_A : A ;
+fun workaholic_N : N ;
+fun workaholism_N : N ;
+fun workbag_N : N ;
+fun workbasket_N : N ;
+fun workbench_N : N ;
+fun workboard_N : N ;
+fun workbook_N : N ;
+fun workbox_N : N ;
+fun workday_N : N ;
+fun worker_N : N ;
+fun workhorse_N : N ;
+fun workhouse_N : N ;
+fun working_N : N ;
+fun working_class_A : A ;
+fun working_out_N : N ;
+fun workload_N : N ;
+fun workman_N : N ;
+fun workmanlike_A : A ;
+fun workmanship_N : N ;
+fun workmate_N : N ;
+fun workpiece_N : N ;
+fun workplace_N : N ;
+fun workroom_N : N ;
+fun works_N : N ;
+fun worksheet_N : N ;
+fun workshop_N : N ;
+fun workshy_A : A ;
+fun workspace_N : N ;
+fun workstation_N : N ;
+fun worktable_N : N ;
+fun workwear_N : N ;
+fun workweek_N : N ;
+fun world_N : N ;
+fun world_weary_A : A ;
+fun worldliness_N : N ;
+fun worldling_N : N ;
+fun worldly_A : A ;
+fun worldwide_A : A ;
+fun worm_N : N ;
+fun worm_V : V ;
+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 worriedly_Adv : Adv ;
+fun worrier_N : N ;
+fun worrisome_A : A ;
+fun worry_N : N ;
+fun worry_V : V ;
+fun worrying_N : N ;
+fun worryingly_Adv : Adv ;
+fun worse_A : A ;
+fun worse_Adv : Adv ;
+fun worse_N : N ;
+fun worsen_V : V ;
+fun worsening_N : N ;
+fun worship_N : N ;
+fun worship_V : V ;
+fun worshiper_N : N ;
+fun worshipful_A : A ;
+fun worshipper_N : N ;
+fun worst_A : A ;
+fun worst_Adv : Adv ;
+fun worst_N : N ;
+fun worst_V : V ;
+fun worsted_N : N ;
+fun wort_N : N ;
+fun worth_A : A ;
+fun worth_N : N ;
+fun worth_Prep : Prep ;
+fun worthiness_N : N ;
+fun worthless_A : A ;
+fun worthlessness_N : N ;
+fun worthwhile_A : A ;
+fun worthwhileness_N : N ;
+fun worthy_A : A ;
+fun worthy_N : N ;
+fun would_be_A : A ;
+fun wound_N : N ;
+fun wound_V : V ;
+fun wounded_N : N ;
+fun woven_A : A ;
+fun wow_N : N ;
+fun wpb_N : N ;
+fun wpm_N : N ;
+fun wrac_N : N ;
+fun wrack_N : N ;
+fun wrack_V : V ;
+fun wraf_N : N ;
+fun wraith_N : N ;
+fun wrangle_N : N ;
+fun wrangle_V : V ;
+fun wrangler_N : N ;
+fun wrap_N : N ;
+fun wrap_V : V ;
+fun wraparound_N : N ;
+fun wrapper_N : N ;
+fun wrapping_N : N ;
+fun wrasse_N : N ;
+fun wrath_N : N ;
+fun wrathful_A : A ;
+fun wreak_V : V ;
+fun wreath_N : N ;
+fun wreathe_V : V ;
+fun wreck_N : N ;
+fun wreck_V : V ;
+fun wreckage_N : N ;
+fun wrecker_N : N ;
+fun wren_N : N ;
+fun wrench_N : N ;
+fun wrench_V : V ;
+fun wrest_V : V ;
+fun wrester_N : N ;
+fun wrestle_N : N ;
+fun wrestle_V : V ;
+fun wrestler_N : N ;
+fun wrestling_N : N ;
+fun wretch_N : N ;
+fun wretched_A : A ;
+fun wretchedness_N : N ;
+fun wrick_N : N ;
+fun wrick_V : V ;
+fun wriggle_N : N ;
+fun wriggle_V : V ;
+fun wriggler_N : N ;
+fun wright_N : N ;
+fun wring_N : N ;
+fun wring_V : V ;
+fun wringer_N : N ;
+fun wrinkle_N : N ;
+fun wrinkle_V : V ;
+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_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 wrns_N : N ;
+fun wrong_A : A ;
+fun wrong_Adv : Adv ;
+fun wrong_N : N ;
+fun wrong_V : V ;
+fun wrong_headed_A : A ;
+fun wrongdoer_N : N ;
+fun wrongdoing_N : N ;
+fun wrongful_A : A ;
+fun wrongheaded_A : A ;
+fun wrongness_N : N ;
+fun wroth_A : A ;
+fun wry_A : A ;
+fun wryly_Adv : Adv ;
+fun wrymouth_N : N ;
+fun wryneck_N : N ;
+fun wt_N : N ;
+fun wulfenite_N : N ;
+fun wurtzite_N : N ;
+fun wyvern_N : N ;
+fun x_ray_N : N ;
+fun x_ray_V : V ;
+fun xanthate_N : N ;
+fun xanthelasma_N : N ;
+fun xanthine_N : N ;
+fun xanthoma_N : N ;
+fun xanthomatosis_N : N ;
+fun xanthomonad_N : N ;
+fun xanthophyll_N : N ;
+fun xanthopsia_N : N ;
+fun xanthosis_N : N ;
+fun xenogeneic_A : A ;
+fun xenolith_N : N ;
+fun xenon_N : N ;
+fun xenophobia_N : N ;
+fun xenophobic_A : A ;
+fun xenotime_N : N ;
+fun xenotransplant_N : N ;
+fun xeranthemum_N : N ;
+fun xeric_A : A ;
+fun xeroderma_N : N ;
+fun xerographic_A : A ;
+fun xerography_N : N ;
+fun xerophthalmia_N : N ;
+fun xerophytic_A : A ;
+fun xeroradiography_N : N ;
+fun xerostomia_N : N ;
+fun xerox_N : N ;
+fun xerox_V : V ;
+fun xi_N : N ;
+fun xmas_N : N ;
+fun xylem_N : N ;
+fun xylene_N : N ;
+fun xylophone_N : N ;
+fun xylophonist_N : N ;
+fun xylosma_N : N ;
+fun yacca_N : N ;
+fun yacht_N : N ;
+fun yacht_V : V ;
+fun yacht_club_N : N ;
+fun yachting_N : N ;
+fun yachtsman_N : N ;
+fun yack_V : V ;
+fun yagi_N : N ;
+fun yahoo_N : N ;
+fun yak_N : N ;
+fun yak_V : V ;
+fun yakuza_N : N ;
+fun yam_N : N ;
+fun yammer_V : V ;
+fun yang_N : N ;
+fun yank_N : N ;
+fun yank_V : V ;
+fun yankee_N : N ;
+fun yanker_N : N ;
+fun yap_N : N ;
+fun yap_V : V ;
+fun yard_N : N ;
+fun yard_measure_N : N ;
+fun yardage_N : N ;
+fun yardarm_N : N ;
+fun yarder_N : N ;
+fun yardgrass_N : N ;
+fun yardie_N : N ;
+fun yardman_N : N ;
+fun yardmaster_N : N ;
+fun yardstick_N : N ;
+fun yarmulke_N : N ;
+fun yarn_N : N ;
+fun yarn_V : V ;
+fun yarrow_N : N ;
+fun yashmak_N : N ;
+fun yataghan_N : N ;
+fun yautia_N : N ;
+fun yaw_N : N ;
+fun yaw_V : V ;
+fun yawl_N : N ;
+fun yawn_N : N ;
+fun yawn_V : V ;
+fun yawner_N : N ;
+fun yaws_N : N ;
+fun yea_Adv : Adv ;
+fun yea_N : N ;
+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 yelling_N : N ;
+fun yellow_A : A ;
+fun yellow_N : N ;
+fun yellow_V : V ;
+fun yellow_bellied_A : A ;
+fun yellow_flag_N : N ;
+fun yellowcake_N : N ;
+fun yellowfin_N : N ;
+fun yellowhammer_N : N ;
+fun yellowish_A : A ;
+fun yellowlegs_N : N ;
+fun yellowness_N : N ;
+fun yellowtail_N : N ;
+fun yellowthroat_N : N ;
+fun yellowwood_N : N ;
+fun yelp_V : V ;
+fun yemeni_A : A ;
+fun yemeni_N : N ;
+fun yen_N : N ;
+fun yen_V : V ;
+fun yenta_N : N ;
+fun yeoman_N : N ;
+fun yeomanry_N : N ;
+fun yeshiva_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 yin_N : N ;
+fun yip_N : N ;
+fun yips_N : N ;
+fun ylem_N : N ;
+fun ymca_N : N ;
+fun yo_yo_N : N ;
+fun yob_N : N ;
+fun yobibit_N : N ;
+fun yobo_N : N ;
+fun yodel_N : N ;
+fun yodel_V : V ;
+fun yodeling_N : N ;
+fun yodeller_N : N ;
+fun yodh_N : N ;
+fun yoga_N : N ;
+fun yoghourt_N : N ;
+fun yoghurt_N : N ;
+fun yogi_N : N ;
+fun yogistic_A : A ;
+fun yogurt_N : N ;
+fun yoke_N : N ;
+fun yoke_V : V ;
+fun yokel_N : N ;
+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 yottabit_N : N ;
+fun yottabyte_N : N ;
+fun young_A : A ;
+fun young_N : N ;
+fun younger_A : A ;
+fun youngish_A : A ;
+fun youngness_N : N ;
+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 ytterbium_N : N ;
+fun yttrium_N : N ;
+fun yuan_N : N ;
+fun yucca_N : N ;
+fun yugoslav_A : A ;
+fun yugoslav_N : N ;
+fun yugoslavian_A : A ;
+fun yugoslavian_N : N ;
+fun yule_N : N ;
+fun yule_log_N : N ;
+fun yuletide_N : N ;
+fun yuppie_N : N ;
+fun yurt_N : N ;
+fun ywca_N : N ;
+fun zabaglione_N : N ;
+fun zaire_N : N ;
+fun zairean_A : A ;
+fun zairean_N : N ;
+fun zakat_N : N ;
+fun zambian_A : A ;
+fun zambian_N : N ;
+fun zamia_N : N ;
+fun zany_A : A ;
+fun zany_N : N ;
+fun zap_N : N ;
+fun zap_V : V ;
+fun zapper_N : N ;
+fun zarf_N : N ;
+fun zayin_N : N ;
+fun zeal_N : N ;
+fun zealander_A : A ;
+fun zealander_N : N ;
+fun zealot_N : N ;
+fun zealotry_N : N ;
+fun zealous_A : A ;
+fun zeaxanthin_N : N ;
+fun zebibit_N : N ;
+fun zebra_N : N ;
+fun zebrawood_N : N ;
+fun zebu_N : N ;
+fun zee_N : N ;
+fun zen_N : N ;
+fun zenith_N : N ;
+fun zenithal_A : A ;
+fun zeolite_N : N ;
+fun zephyr_N : N ;
+fun zeppelin_N : N ;
+fun zero_A : A ;
+fun zero_N : N ;
+fun zero_V : V ;
+fun zeroth_A : A ;
+fun zest_N : N ;
+fun zestful_A : A ;
+fun zeta_N : N ;
+fun zettabit_N : N ;
+fun zettabyte_N : N ;
+fun zeugma_N : N ;
+fun zidovudine_N : N ;
+fun ziggurat_N : N ;
+fun zigzag_A : A ;
+fun zigzag_Adv : Adv ;
+fun zigzag_N : N ;
+fun zigzag_V : V ;
+fun zill_N : N ;
+fun zillion_A : A ;
+fun zinc_N : N ;
+fun zinfandel_N : N ;
+fun zing_N : N ;
+fun zinger_N : N ;
+fun zinkenite_N : N ;
+fun zinnia_N : N ;
+fun zinnwaldite_N : N ;
+fun zion_N : N ;
+fun zionism_N : N ;
+fun zionist_A : A ;
+fun zionist_N : N ;
+fun zip_N : N ;
+fun zip_V : V ;
+fun zip_code_N : N ;
+fun zip_fastener_N : N ;
+fun zipper_N : N ;
+fun zircon_N : N ;
+fun zirconium_N : N ;
+fun zither_N : N ;
+fun ziti_N : N ;
+fun zizz_N : N ;
+fun zloty_N : N ;
+fun zoanthropy_N : N ;
+fun zodiac_N : N ;
+fun zodiacal_A : A ;
+fun zoic_A : A ;
+fun zombi_N : N ;
+fun zombie_N : N ;
+fun zonal_A : A ;
+fun zone_N : N ;
+fun zone_V : V ;
+fun zoning_N : N ;
+fun zonk_V : V ;
+fun zonule_N : N ;
+fun zoo_N : N ;
+fun zooid_N : N ;
+fun zoolatry_N : N ;
+fun zoological_A : A ;
+fun zoologist_N : N ;
+fun zoology_N : N ;
+fun zoom_N : N ;
+fun zoom_V : V ;
+fun zoomastigote_N : N ;
+fun zoomorphism_N : N ;
+fun zoonosis_N : N ;
+fun zoonotic_A : A ;
+fun zoophilia_N : N ;
+fun zoophobia_N : N ;
+fun zoophyte_N : N ;
+fun zooplankton_N : N ;
+fun zoopsia_N : N ;
+fun zoospore_N : N ;
+fun zoot_suit_N : N ;
+fun zoril_N : N ;
+fun zoysia_N : N ;
+fun zucchini_N : N ;
+fun zwieback_N : N ;
+fun zydeco_N : N ;
+fun zygodactyl_A : A ;
+fun zygoma_N : N ;
+fun zygomatic_A : A ;
+fun zygomorphic_A : A ;
+fun zygospore_N : N ;
+fun zygote_N : N ;
+fun zygotene_N : N ;
+fun zygotic_A : A ;
+fun zymase_N : N ;
+fun zymoid_A : A ;
+fun zymology_N : N ;
+fun zymosis_N : N ;
+fun zymotic_A : A ;
+fun à_la_carte_Adv : Adv ;
+fun à_la_mode_Adv : Adv ;
+fun éclair_N : N ;
+fun éclat_N : N ;
+fun élan_N : N ;
+fun élite_N : N ;
+fun émigré_N : N ;
+fun épée_N : N ;
}
\ No newline at end of file
diff --git a/src/morphodict/utils/fixAMost.sh b/src/morphodict/utils/fixAMost.sh
new file mode 100755
index 00000000..482a05d3
--- /dev/null
+++ b/src/morphodict/utils/fixAMost.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+cp MorphoDictEng.gf{,.bak}
+sed -E 's/mkA "(.*)" "DUMMY" "DUMMY" "(.*)"/mkAMost "\1" "\2"/g' < MorphoDictEng.gf.bak > MorphoDictEng.gf
+
+# If you need to recreate the morphodict, do this.
+# ResEng.gf line 162 and ParadigmsEng.gf line 514, fill the inflection table with the word DUMMY instead of nonExist.
+# Then recompile RGL and MorphoDictEng.
+# Then run MkMorphodict, and it will output a file with "DUMMY" in it.
\ No newline at end of file